diff --git a/loongarch64/arch_step b/loongarch64/arch_step index 1a4ef5d8..17411863 100644 --- a/loongarch64/arch_step +++ b/loongarch64/arch_step @@ -1,6 +1,9 @@ +%step/target_base/linux-header| %step/cross-tools/grub| %step/target_base/valgrind| %step/base_support/jdk20|g_opt +%step/base_support/perf|g_opt +%step/boot/linux-kernel| %step/boot/grub| %step/computer_language/golang|g_opt,target-dist,golang diff --git a/loongarch64/build.sh b/loongarch64/build.sh index bb91679d..90fbaf24 100755 --- a/loongarch64/build.sh +++ b/loongarch64/build.sh @@ -11,13 +11,14 @@ BASE_DIR="${PWD}" declare FORCE_BUILD=0 declare FORCE_ALL_BUILD=0 declare OPT_SET_STR="" +declare OPT_SET_ENV="" declare ONLY_BUILD=0 declare REQUIRES_BUILD=0 declare SINGLE_PACKAGE=0 declare FORCE_ALL_DOWNLOAD=0 declare DATA_SUFF="" -while getopts 'fao:rsdh' OPT; do +while getopts 'fao:rsde:h' OPT; do case $OPT in f) FORCE_BUILD=1 @@ -37,6 +38,9 @@ while getopts 'fao:rsdh' OPT; do d) FORCE_ALL_DOWNLOAD=1 ;; + e) + OPT_SET_ENV=$OPTARG + ;; h|?) echo "目标系统构建命令。" echo "" @@ -61,6 +65,60 @@ done shift $(($OPTIND - 1)) +function set_build_env +{ + declare -a SET_ENV + declare SET_COUNT=0 + declare SET_STR="${2}" + declare -a USE_ENV=(${1}) + declare USE_ENV_COUNT=${#USE_ENV[@]} + + for i in $(echo "${SET_STR}" | tr "," "\\n") + do + SET_ENV[${SET_COUNT}]=${i} + ((SET_COUNT++)) + done + + for i in ${SET_ENV[*]} + do + USE_ENV[${USE_ENV_COUNT}]=${i} + ((USE_ENV_COUNT++)) + done + echo "${USE_ENV[@]}" +} + + + +function get_all_can_set_env_str +{ + declare -a SET_ENV + declare SET_COUNT=0 + declare GET_ENV_VALUE="" + declare SET_STR="${1}" + declare -a USE_ENV=("") + declare USE_ENV_COUNT=${#USE_ENV[@]} + + for i in $(echo "${SET_STR}" | tr "," "\\n") + do + if [ "x${i:0:1}" == "x%" ]; then + SET_ENV[${SET_COUNT}]=${i:1} + ((SET_COUNT++)) + fi + done + + for i in ${SET_ENV[*]} + do + GET_ENV_VALUE="" + GET_ENV_VALUE="$(cat ${NEW_TARGET_SYSDIR}/set_env.conf | grep "^export YONGBAO_SET_ENV_${i}=" | awk -F'=' '{ print $2 }')" + if [ "x${GET_ENV_VALUE}" != "x" ]; then + USE_ENV[${USE_ENV_COUNT}]=${GET_ENV_VALUE} + ((USE_ENV_COUNT++)) + fi + done + echo $(IFS=_; echo "${USE_ENV[*]}") +} + + function create_date_suff { if [ ! -f ${NEW_TARGET_SYSDIR}/datetime_stemp ]; then @@ -440,7 +498,9 @@ function set_to_default_opt if [ "x${i:0:1}" == "x+" ]; then USE_OPT[${USE_COUNT}]=${i:1} else - USE_OPT[${USE_COUNT}]=${i} + if [ "x${i:0:1}" != "x%" ]; then + USE_OPT[${USE_COUNT}]=${i} + fi fi ((USE_COUNT++)) fi @@ -484,10 +544,17 @@ function test_opt_can_run OPT=${i:1} INVERT=1 else - OPT=${i} - INVERT=0 + if [ "x${i:0:1}" == "x%" ]; then + continue + else + OPT=${i} + INVERT=0 + fi fi fi + if [ "x${INVERT}" == "x1" ]; then + TEST_STATUS=1 + fi for j in $(echo ${USE_OPT[*]}) do if [ "x${j}" == "x" ]; then @@ -504,6 +571,7 @@ function test_opt_can_run break; fi done +# if [ "x${TEST_STATUS}" == "x0" ] && [ "x${INVERT}" == "x0" ]; then if [ "x${TEST_STATUS}" == "x0" ]; then # ${i} 标记没有找到,${1} 测试不通过" echo "1" @@ -589,8 +657,6 @@ function step_to_index USE_OPT=($(set_to_default_opt "$(echo ${USE_OPT[@]})" "${OPT_SET_STR}")) USE_COUNT=${#USE_OPT[@]} - - if [ "x${STEP_PKG_STR}" != "x" ]; then FORMAT_STRING=$(format_step_str "${STEP_PKG_STR}") echo "指定了编译步骤:${FORMAT_STRING}" @@ -644,6 +710,7 @@ function step_to_index COUNT_NAME=${TMP_NAME/-/_}_COUNT printf -v SHOW_COUNT "%05d" ${!COUNT_NAME} + #echo "test_opt_can_run" "$(echo ${USE_OPT[@]})" "${STEP_OPT}" if [ "x$(test_opt_can_run "$(echo ${USE_OPT[@]})" "${STEP_OPT}")" == "x0" ]; then if [ "x${GREP_STR}" == "x" ]; then echo -n "${SHOW_COUNT} " @@ -689,6 +756,22 @@ function step_to_index mkdir -p ${NEW_TARGET_SYSDIR} + +declare -a USE_SET_ENV +declare USE_SET_ENV_COUNT=0 + +USE_SET_ENV=($(set_build_env "" "${OPT_SET_ENV}")) +USE_SET_ENV_COUNT=${#USE_SET_ENV[@]} + +echo -n "" > ${NEW_TARGET_SYSDIR}/set_env.conf +for set_env in ${USE_SET_ENV[*]} +do + ENV_KEY=$(echo ${set_env} | awk -F'=' '{ print $1 }') + ENV_VALUE=$(echo ${set_env} | awk -F'=' '{ print $2 }') + echo "export YONGBAO_SET_ENV_${ENV_KEY}=${ENV_VALUE}" >> ${NEW_TARGET_SYSDIR}/set_env.conf +done + + create_date_suff echo "创将索引文件......" step_to_index "${1}" @@ -761,13 +844,25 @@ echo -n "" > ${NEW_TARGET_SYSDIR}/logs/step_overlay_before_run_save echo -n "" > ${NEW_TARGET_SYSDIR}/logs/step_overlay_after_run_save echo -n "" > ${NEW_TARGET_SYSDIR}/logs/step_overlay_temp_fix_run_save -cat ${STEP_FILE} | awk -F'|' '{ print $1 }' | while read line + +if [ -f ${NEW_TARGET_SYSDIR}/logs/info_pool ]; then + mv ${NEW_TARGET_SYSDIR}/logs/info_pool{,.$(date +%Y%m%d%H%M%S)} +fi +touch ${NEW_TARGET_SYSDIR}/logs/info_pool + +# cat ${STEP_FILE} | awk -F'|' '{ print $1 }' | while read line +cat ${STEP_FILE} | while read line_all do + line=$(echo "${line_all}" | awk -F'|' '{ print $1 }') + PACKAGE_ALL_OPT="$(echo "${line_all}" | awk -F'|' '{ print $2 }')" RET_VAL=0 PACKAGE_INDEX=$(echo "${line}" | sed "s@ *step@@g" | awk -F'/' '{ print $1 }') STEP_STAGE=$(echo "${line}" | sed "s@ *step@@g" | awk -F'/' '{ print $2 }') PACKAGE_NAME=$(echo "${line}" | sed "s@ *step@@g" | awk -F'/' '{ print $3 }') - STATUS_FILE="${PACKAGE_NAME}_${STEP_STAGE}_${PACKAGE_INDEX}" + + PACKAGE_SET_ENV=$(get_all_can_set_env_str "${PACKAGE_ALL_OPT}") + + STATUS_FILE="${PACKAGE_NAME}${PACKAGE_SET_ENV}_${STEP_STAGE}_${PACKAGE_INDEX}" SCRIPT_FILE=$(echo "${line}" | awk -F' ' '{ print $2 }' | sed "s@ *step\/@@g") if [ "x${PACKAGE_NAME}" == "xbegin_run" ] || [ "x${PACKAGE_NAME}" == "xoverlay_before_run" ] || [ "x${PACKAGE_NAME}" == "xoverlay_after_run" ] || [ "x${PACKAGE_NAME}" == "xoverlay_temp_fix_run" ]; then echo "${STEP_STAGE}" >> ${NEW_TARGET_SYSDIR}/logs/step_${PACKAGE_NAME}_save @@ -884,6 +979,9 @@ done if [ "x$?" == "x0" ]; then echo -e "\r编译制作过程完成。\033[0K\n" + + cat ${NEW_TARGET_SYSDIR}/logs/info_pool + if [ "x${1}" == "x" ]; then echo "接下来可以使用./strip_os.sh脚本来清除调试信息,使用./install_os_run.sh安装系统启动脚本,以及使用./pack_os.sh脚本来打包系统。" fi diff --git a/loongarch64/env/DE-KDE/config b/loongarch64/env/DE-KDE/config index 89eb9f35..96ebb92b 100644 --- a/loongarch64/env/DE-KDE/config +++ b/loongarch64/env/DE-KDE/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/base_support/config b/loongarch64/env/base_support/config index 89eb9f35..96ebb92b 100644 --- a/loongarch64/env/base_support/config +++ b/loongarch64/env/base_support/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/boot/config b/loongarch64/env/boot/config index 4407cb12..fe0f399d 100644 --- a/loongarch64/env/boot/config +++ b/loongarch64/env/boot/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/bootstrap/config b/loongarch64/env/bootstrap/config index 3e1b6e94..bcb7774b 100644 --- a/loongarch64/env/bootstrap/config +++ b/loongarch64/env/bootstrap/config @@ -14,3 +14,4 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 diff --git a/loongarch64/env/computer_language/config b/loongarch64/env/computer_language/config index f74b4cd3..0de389cd 100644 --- a/loongarch64/env/computer_language/config +++ b/loongarch64/env/computer_language/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/cross-toolchains/config b/loongarch64/env/cross-toolchains/config index e18afc71..deaa8244 100644 --- a/loongarch64/env/cross-toolchains/config +++ b/loongarch64/env/cross-toolchains/config @@ -14,10 +14,12 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export CROSS_TOOLS_PREFIX=${SYSDIR}/cross-toolchains export PREFIX=${CROSS_TOOLS_PREFIX} export MINGW_HOST=x86_64-w64-mingw32ucrt export X86_64_HOST=x86_64-unknown-linux-gnu +export X86_HOST=i686-unknown-linux-gnu export MAKE_AND_INSTALL="make -j${JOBS} && make install" export YONGBAO_TARGET_ARCH=loongarch64 export YONGBAO_TARGET_ARCH_NAME=loongarch diff --git a/loongarch64/env/cross-tools/config b/loongarch64/env/cross-tools/config index 31ae8288..dccee1ed 100644 --- a/loongarch64/env/cross-tools/config +++ b/loongarch64/env/cross-tools/config @@ -14,11 +14,13 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export CROSS_TOOLS_PREFIX=${CROSSTOOLS_DIR} export PREFIX=${CROSSTOOLS_DIR} export COMMON_CONFIG="--prefix=${PREFIX}" export PKG_CONFIG_PATH="${CROSSTOOLS_DIR}/lib64/pkgconfig:${CROSSTOOLS_DIR}/lib/pkgconfig:${CROSSTOOLS_DIR}/share/pkgconfig" export MAKE_AND_INSTALL="make -j${JOBS} && make install" +export LD_LIBRARY_PATH=${CROSSTOOLS_DIR}/lib64:${CROSSTOOLS_DIR}/lib export YONGBAO_TARGET_ARCH=loongarch64 export YONGBAO_TARGET_ARCH_NAME=loongarch export TARGET_ABI=lp64 diff --git a/loongarch64/env/desktop-app/config b/loongarch64/env/desktop-app/config index 65df404a..b8ea4dc9 100644 --- a/loongarch64/env/desktop-app/config +++ b/loongarch64/env/desktop-app/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/distro.info b/loongarch64/env/distro.info index 029e5ab6..ed46ac28 100644 --- a/loongarch64/env/distro.info +++ b/loongarch64/env/distro.info @@ -1,8 +1,8 @@ DISTRO_ARCH=loongarch64 DISTRO_ARCH_NAME=loongarch64 DISTRO_NAME=Yongbao -DISTRO_VERSION=1.2 +DISTRO_VERSION=1.0 DISTRO_ARCHIVE_MODE=squashfs DISTRO_DEFAULT_USER=loongarch -DISTRO_DEFAULT_USER_PASSWD=loongson +DISTRO_DEFAULT_USER_PASSWD=loongarch export DISTRO_ARCH DISTRO_ARCH_NAME DISTRO_NAME DISTRO_VERSION DISTRO_ARCHIVE_MODE DISTRO_DEFAULT_USER diff --git a/loongarch64/env/function.sh b/loongarch64/env/function.sh index a6c98e7d..0850d2d5 100644 --- a/loongarch64/env/function.sh +++ b/loongarch64/env/function.sh @@ -27,3 +27,153 @@ function os_start_run echo "${1}" >> ${NEW_TARGET_SYSDIR}/scripts/os_start_run/${STEP_BUILDNAME}.${STEP_PACKAGENAME}.run return } + +function info_pool +{ + if [ "x${1}" != "x" ]; then + echo "${1}" >> ${NEW_TARGET_SYSDIR}/logs/info_pool + fi +} + + +function get_user_set_env +{ + if [ "x${1}" == "x" ]; then + echo "" + else + ENV_NAME_TEMP_STR="YONGBAO_SET_ENV_${1}" + if [ "x${!ENV_NAME_TEMP_STR}" == "x" ]; then + echo "${2}" + else + echo "${!ENV_NAME_TEMP_STR}" + fi + fi + return +} + +function archname_to_linuxname +{ + if [ "x${1}" == "x" ]; then + if [ "x${2}" == "x" ]; then + exit 1 + else + echo "${2}" + fi + else + if [ "x${1}" == "x${2}" ]; then + echo "${2}" + else + if [ ! -f ${NEW_TARGET_SYSDIR}/../env/arch.data ]; then + echo "无法识别名称: ${1}" + exit 1 + fi + RET_VAL="$(cat ${NEW_TARGET_SYSDIR}/../env/arch.data | grep "^${1}=" | awk -F"=" '{ print $2 }' | sed "s@[[:space:]]@@g")" + if [ "x${RET_VAL}" == "x" ]; then + echo "无法识别名称: ${1}" + exit 1 + else + echo "${RET_VAL}" + fi + fi + fi + return +} + +function archname_to_triple +{ + if [ "x${1}" == "x" ]; then + if [ "x${2}" == "x" ]; then + exit 1 + else + echo "${2}" + fi + else + if [ "x${1}" == "x${2}" ]; then + echo "${2}" + else + if [ ! -f ${NEW_TARGET_SYSDIR}/../env/arch.data ]; then + echo "无法识别名称: ${1}" + exit 1 + fi + # RET_VAL="$(cat ${NEW_TARGET_SYSDIR}/../env/arch.data | grep "^${1}[[:space:]]" | awk -F"^${1}" '{ print $2 }' | sed "s@[[:space:]]@@g")" + RET_VAL="$(cat ${NEW_TARGET_SYSDIR}/../env/arch.data | grep "^${1}=" | awk -F"=" '{ print $3 }' | sed "s@[[:space:]]@@g")" + if [ "x${RET_VAL}" == "x" ]; then + echo "无法识别名称: ${1}" + exit 1 + else + echo "${RET_VAL}" + fi + fi + fi + return +} + +function archname_to_archbit +{ + if [ "x${1}" == "x" ]; then + if [ "x${2}" == "x" ]; then + exit 1 + else + echo "${2}" + fi + else + if [ "x${1}" == "x${2}" ]; then + echo "${2}" + else + if [ ! -f ${NEW_TARGET_SYSDIR}/../env/arch.data ]; then + echo "无法识别名称: ${1}" + exit 1 + fi + RET_VAL="$(cat ${NEW_TARGET_SYSDIR}/../env/arch.data | grep "^${1}=" | awk -F"=" '{ print $4 }' | sed "s@[[:space:]]@@g")" + if [ "x${RET_VAL}" == "x" ]; then + echo "无法识别名称: ${1}" + exit 1 + else + echo "${RET_VAL}" + fi + fi + fi + return +} + +function archbit_to_lib_suff +{ + case "${1}" in + 64) + echo "64" + ;; + *) + echo "" + ;; + esac +} + +function archname_to_archabi +{ + if [ "x${1}" == "x" ]; then + if [ "x${2}" == "x" ]; then + exit 1 + else + echo "${2}" + fi + else + if [ "x${1}" == "x${2}" ]; then + echo "${2}" + else + if [ ! -f ${NEW_TARGET_SYSDIR}/../env/arch.data ]; then + echo "无法识别名称: ${1}" + exit 1 + fi + RET_VAL="$(cat ${NEW_TARGET_SYSDIR}/../env/arch.data | grep "^${1}=" | awk -F"=" '{ print $5 }' | sed "s@[[:space:]]@@g")" + if [ "x${RET_VAL}" == "x" ]; then + echo "无法识别名称: ${1}" + exit 1 + else + echo "${RET_VAL}" + fi + fi + fi + return +} + +source ${NEW_TARGET_SYSDIR}/set_env.conf diff --git a/loongarch64/env/host-tools/config b/loongarch64/env/host-tools/config index a0e051a0..d6f4e827 100644 --- a/loongarch64/env/host-tools/config +++ b/loongarch64/env/host-tools/config @@ -14,8 +14,9 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=${CROSSTOOLS_DIR} export COMMON_CONFIG="--prefix=${PREFIX}" -export PKG_CONFIG_PATH="${CROSSTOOLS_DIR}/lib/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig" -export LDFLAGS="-Wl,-rpath-link=${CROSSTOOLS_DIR}/lib -Wl,-rpath=${CROSSTOOLS_DIR}/lib" +export PKG_CONFIG_PATH="${CROSSTOOLS_DIR}/lib/pkgconfig:${CROSSTOOLS_DIR}/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig" +export LDFLAGS="-Wl,-rpath-link=${CROSSTOOLS_DIR}/lib:${CROSSTOOLS_DIR}/lib64 -Wl,-rpath=${CROSSTOOLS_DIR}/lib:${CROSSTOOLS_DIR}/lib64" export MAKE_AND_INSTALL="make -j${JOBS} && make install" diff --git a/loongarch64/env/lightdm/config b/loongarch64/env/lightdm/config index 89eb9f35..96ebb92b 100644 --- a/loongarch64/env/lightdm/config +++ b/loongarch64/env/lightdm/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/mingw_sysroot/config b/loongarch64/env/mingw_sysroot/config index 47e0e0f6..0db83887 100644 --- a/loongarch64/env/mingw_sysroot/config +++ b/loongarch64/env/mingw_sysroot/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/mingw export PKG_CONFIG_SYSROOT_DIR="${SYSROOT_DIR}/usr/lib/mingw/sys-root" export MINGW_SYSROOT_DIR="${SYSROOT_DIR}/usr/lib/mingw/sys-root" diff --git a/loongarch64/env/sddm/config b/loongarch64/env/sddm/config index 89eb9f35..96ebb92b 100644 --- a/loongarch64/env/sddm/config +++ b/loongarch64/env/sddm/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/simulate/config b/loongarch64/env/simulate/config index 89eb9f35..96ebb92b 100644 --- a/loongarch64/env/simulate/config +++ b/loongarch64/env/simulate/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/target_base/config b/loongarch64/env/target_base/config index 89eb9f35..96ebb92b 100644 --- a/loongarch64/env/target_base/config +++ b/loongarch64/env/target_base/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/env/toolchain/config b/loongarch64/env/toolchain/config index 1773c816..a329322a 100644 --- a/loongarch64/env/toolchain/config +++ b/loongarch64/env/toolchain/config @@ -14,11 +14,13 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=${SYSDIR}/build/toolchain export MINGW_HOST=x86_64-w64-mingw32ucrt export X86_64_LINUX_HOST=x86_64-unknown-linux-gnu export CROSS_TOOLS_PREFIX=${SYSDIR}/mingw-tools export COMMON_CONFIG="--prefix=${SYSDIR}/cross-tools/toolchains" +export CROSS_TOOLCHAIN_PREFIX="/opt/yongbao-cross" export ARCH_NAME=loongarch64 export ARCH_FAMILY=loongarch export ARCH_ABI=lp64d diff --git a/loongarch64/env/wine_runtime/config b/loongarch64/env/wine_runtime/config index ba54e086..f60c8d58 100644 --- a/loongarch64/env/wine_runtime/config +++ b/loongarch64/env/wine_runtime/config @@ -14,19 +14,23 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr -export PKG_CONFIG_SYSROOT_DIR="${SYSROOT_DIR}/usr/lib/x86_64/sys-root" -export X86_64_SYSROOT_DIR="${SYSROOT_DIR}/usr/lib/x86_64/sys-root" -export PKG_CONFIG_PATH="${X86_64_SYSROOT_DIR}/usr/lib64/pkgconfig:${X86_64_SYSROOT_DIR}/usr/share/pkgconfig" -export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib/x86_64/sys-root/usr/lib64" -export X86_64_HOST=x86_64-unknown-linux-gnu -export COMMON_CONFIG="--prefix=/usr --build=${CROSS_HOST} --host=${X86_64_HOST} --libdir=/usr/lib64 --sysconfdir=/etc" -export MAKE_AND_INSTALL="make -j${JOBS} && make DESTDIR=${X86_64_SYSROOT_DIR} install && rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la" -export MESON_CONFIG="--prefix=/usr --libdir=/usr/lib${LIB_SUFF} --buildtype=release --cross-file ${COMMON_DIR}/meson-cross-x86_64.txt" -export NINJA_AND_INSTALL="CC=${X86_64_HOST}-gcc ninja && DESTDIR=${X86_64_SYSROOT_DIR} ninja install" +export LIB_SUFF="" +export PKG_CONFIG_SYSROOT_DIR="${SYSROOT_DIR}/usr/lib/i686/sys-root" +export X86_SYSROOT_DIR="${SYSROOT_DIR}/usr/lib/i686/sys-root" +export PKG_CONFIG_PATH="${X86_SYSROOT_DIR}/usr/lib/pkgconfig:${X86_SYSROOT_DIR}/usr/share/pkgconfig" +export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib/i686/sys-root/usr/lib" +export X86_HOST=i686-unknown-linux-gnu +export COMMON_CONFIG="--prefix=/usr --build=${CROSS_HOST} --host=${X86_HOST} --libdir=/usr/lib --sysconfdir=/etc" +export MAKE_AND_INSTALL="make -j${JOBS} && make DESTDIR=${X86_SYSROOT_DIR} install && rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la" +export MESON_CONFIG="--prefix=/usr --libdir=/usr/lib${LIB_SUFF} --buildtype=release --cross-file ${COMMON_DIR}/meson-cross-i686.txt" +export NINJA_AND_INSTALL="CC=${X86_HOST}-gcc ninja && DESTDIR=${X86_SYSROOT_DIR} ninja install" -export CROSS_TOOLS_PREFIX=${SYSDIR}/cross-toolchains/${X86_64_HOST} +export CROSS_TARGET=${X86_HOST} + +export CROSS_TOOLS_PREFIX=${SYSDIR}/cross-toolchains/${X86_HOST} export PATH=${CROSS_TOOLS_PREFIX}/bin:$PATH -export ARCH_NAME=x86_64 +export ARCH_NAME=i686 export ARCH_FAMILY=x86 -export ARCH_ABI=64 +export ARCH_ABI=32 diff --git a/loongarch64/env/wine_runtime/custom b/loongarch64/env/wine_runtime/custom new file mode 100644 index 00000000..e69de29b diff --git a/loongarch64/env/wm-lxde/config b/loongarch64/env/wm-lxde/config index 89eb9f35..96ebb92b 100644 --- a/loongarch64/env/wm-lxde/config +++ b/loongarch64/env/wm-lxde/config @@ -14,6 +14,7 @@ export PATH=${CROSSTOOLS_DIR}/bin:/usr/bin:/bin export CROSS_TARGET="loongarch64-unknown-linux-gnu" export MABI="lp64d" export LIB_SUFF="64" +export ARCH_BIT=64 export PREFIX=/usr export LDFLAGS="-Wl,-rpath-link=${SYSROOT_DIR}/usr/lib${LIB_SUFF}" export PKG_CONFIG_SYSROOT_DIR=${SYSROOT_DIR} diff --git a/loongarch64/files/step/base_support/SPIRV-LLVM-Translator/16.0.0/headers.url b/loongarch64/files/step/base_support/SPIRV-LLVM-Translator/16.0.0-default/headers.url similarity index 100% rename from loongarch64/files/step/base_support/SPIRV-LLVM-Translator/16.0.0/headers.url rename to loongarch64/files/step/base_support/SPIRV-LLVM-Translator/16.0.0-default/headers.url diff --git a/loongarch64/files/step/base_support/Vulkan-Headers/1.3.257/patches/0001-Vulkan-Headers-fix-VK_FALSE-and-VK_TRUE-define.patch b/loongarch64/files/step/base_support/Vulkan-Headers/1.3.257/patches/0001-Vulkan-Headers-fix-VK_FALSE-and-VK_TRUE-define.patch deleted file mode 100644 index 5776f80b..00000000 --- a/loongarch64/files/step/base_support/Vulkan-Headers/1.3.257/patches/0001-Vulkan-Headers-fix-VK_FALSE-and-VK_TRUE-define.patch +++ /dev/null @@ -1,34 +0,0 @@ -From d0670b3dc5ae43ea845f7b7718c89089716672b3 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Thu, 6 Jul 2023 15:31:31 +0000 -Subject: [PATCH] Vulkan Headers fix VK_FALSE and VK_TRUE define. - ---- - include/vulkan/vulkan.hpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/include/vulkan/vulkan.hpp b/include/vulkan/vulkan.hpp -index fa021e2..98cb7ef 100644 ---- a/include/vulkan/vulkan.hpp -+++ b/include/vulkan/vulkan.hpp -@@ -6864,7 +6864,7 @@ namespace VULKAN_HPP_NAMESPACE - //=== CONSTEXPR CONSTANTs AND FUNCTIONs === - //========================================= - VULKAN_HPP_CONSTEXPR uint32_t AttachmentUnused = VK_ATTACHMENT_UNUSED; -- VULKAN_HPP_CONSTEXPR uint32_t False = VK_FALSE; -+ VULKAN_HPP_CONSTEXPR uint32_t FALSE = VK_FALSE; - VULKAN_HPP_CONSTEXPR float LodClampNone = VK_LOD_CLAMP_NONE; - VULKAN_HPP_CONSTEXPR uint32_t LuidSize = VK_LUID_SIZE; - VULKAN_HPP_CONSTEXPR uint32_t MaxDescriptionSize = VK_MAX_DESCRIPTION_SIZE; -@@ -6885,7 +6885,7 @@ namespace VULKAN_HPP_NAMESPACE - VULKAN_HPP_CONSTEXPR uint32_t RemainingMipLevels = VK_REMAINING_MIP_LEVELS; - VULKAN_HPP_CONSTEXPR uint32_t ShaderUnusedKhr = VK_SHADER_UNUSED_KHR; - VULKAN_HPP_CONSTEXPR uint32_t SubpassExternal = VK_SUBPASS_EXTERNAL; -- VULKAN_HPP_CONSTEXPR uint32_t True = VK_TRUE; -+ VULKAN_HPP_CONSTEXPR uint32_t TRUE = VK_TRUE; - VULKAN_HPP_CONSTEXPR uint32_t UuidSize = VK_UUID_SIZE; - VULKAN_HPP_CONSTEXPR uint64_t WholeSize = VK_WHOLE_SIZE; - VULKAN_HPP_CONSTEXPR uint32_t HeaderVersion = VK_HEADER_VERSION; --- -2.31.1 - diff --git a/loongarch64/files/step/base_support/alsa-utils/1.2.9/patches/0001-fix-for-glibc-2.38.patch b/loongarch64/files/step/base_support/alsa-utils/1.2.9/patches/0001-fix-for-glibc-2.38.patch new file mode 100644 index 00000000..fdfa037f --- /dev/null +++ b/loongarch64/files/step/base_support/alsa-utils/1.2.9/patches/0001-fix-for-glibc-2.38.patch @@ -0,0 +1,25 @@ +From 4409e98013c404eff54bca91d3fe7c4adef33799 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Tue, 1 Aug 2023 10:30:46 +0000 +Subject: [PATCH] fix for glibc 2.38. + +--- + alsactl/init_sysdeps.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/alsactl/init_sysdeps.c b/alsactl/init_sysdeps.c +index 3aca1b4..dc7fd41 100644 +--- a/alsactl/init_sysdeps.c ++++ b/alsactl/init_sysdeps.c +@@ -17,7 +17,7 @@ + * + */ + +-#if defined(__GLIBC__) && !(defined(__UCLIBC__) && defined(__USE_BSD)) ++#if 0 //defined(__GLIBC__) && !(defined(__UCLIBC__) && defined(__USE_BSD)) + static size_t strlcpy(char *dst, const char *src, size_t size) + { + size_t bytes = 0; +-- +2.31.1 + diff --git a/loongarch64/files/step/target_base/linux-header/6.4.3/linux-config-6 b/loongarch64/files/step/base_support/perf/6.5/linux-config-6 similarity index 97% rename from loongarch64/files/step/target_base/linux-header/6.4.3/linux-config-6 rename to loongarch64/files/step/base_support/perf/6.5/linux-config-6 index d307f2b0..851eff00 100644 --- a/loongarch64/files/step/target_base/linux-header/6.4.3/linux-config-6 +++ b/loongarch64/files/step/base_support/perf/6.5/linux-config-6 @@ -1,15 +1,15 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/loongarch 6.3.0-rc7 Kernel Configuration +# Linux/loongarch 6.5.0-rc2 Kernel Configuration # -CONFIG_CC_VERSION_TEXT="loongarch64-unknown-linux-gnu-gcc (GCC) 13.0.1 20230316 (experimental)" +CONFIG_CC_VERSION_TEXT="loongarch64-unknown-linux-gnu-gcc (GCC) 14.0.0 20230707 (experimental)" CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=130001 +CONFIG_GCC_VERSION=140000 CONFIG_CLANG_VERSION=0 CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=24050 +CONFIG_AS_VERSION=24150 CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=24050 +CONFIG_LD_VERSION=24150 CONFIG_LLD_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_CAN_LINK_STATIC=y @@ -98,6 +98,7 @@ CONFIG_PREEMPT_BUILD=y CONFIG_PREEMPT=y CONFIG_PREEMPT_COUNT=y CONFIG_PREEMPTION=y +# CONFIG_SCHED_CORE is not set # # CPU/Task time and stats accounting @@ -122,7 +123,6 @@ CONFIG_CPU_ISOLATION=y CONFIG_TREE_RCU=y CONFIG_PREEMPT_RCU=y # CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y CONFIG_TREE_SRCU=y CONFIG_TASKS_RCU_GENERIC=y CONFIG_TASKS_RCU=y @@ -135,7 +135,6 @@ CONFIG_RCU_NEED_SEGCBLIST=y # CONFIG_IKHEADERS is not set CONFIG_LOG_BUF_SHIFT=18 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 CONFIG_GENERIC_SCHED_CLOCK=y # @@ -147,7 +146,7 @@ CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_CC_HAS_INT128=y CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" CONFIG_GCC11_NO_ARRAY_BOUNDS=y -CONFIG_GCC12_NO_ARRAY_BOUNDS=y +CONFIG_CC_NO_ARRAY_BOUNDS=y CONFIG_NUMA_BALANCING=y CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y CONFIG_CGROUPS=y @@ -177,14 +176,13 @@ CONFIG_CGROUP_BPF=y CONFIG_SOCK_CGROUP_DATA=y CONFIG_NAMESPACES=y CONFIG_UTS_NS=y +CONFIG_TIME_NS=y CONFIG_IPC_NS=y CONFIG_USER_NS=y CONFIG_PID_NS=y CONFIG_NET_NS=y CONFIG_CHECKPOINT_RESTORE=y CONFIG_SCHED_AUTOGROUP=y -CONFIG_SYSFS_DEPRECATED=y -# CONFIG_SYSFS_DEPRECATED_V2 is not set CONFIG_RELAY=y CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" @@ -232,6 +230,7 @@ CONFIG_KALLSYMS=y CONFIG_KALLSYMS_BASE_RELATIVE=y CONFIG_KCMP=y CONFIG_RSEQ=y +CONFIG_CACHESTAT_SYSCALL=y # CONFIG_DEBUG_RSEQ is not set # CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y @@ -251,8 +250,6 @@ CONFIG_SYSTEM_DATA_VERIFICATION=y CONFIG_LOONGARCH=y CONFIG_64BIT=y -CONFIG_CPU_HAS_FPU=y -CONFIG_CPU_HAS_PREFETCH=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_GENERIC_CALIBRATE_DELAY=y @@ -268,6 +265,10 @@ CONFIG_PGTABLE_3LEVEL=y CONFIG_PGTABLE_LEVELS=3 CONFIG_SCHED_OMIT_FRAME_POINTER=y CONFIG_AS_HAS_EXPLICIT_RELOCS=y +CONFIG_AS_HAS_FCSR_CLASS=y +CONFIG_AS_HAS_LSX_EXTENSION=y +CONFIG_AS_HAS_LASX_EXTENSION=y +CONFIG_AS_HAS_LBT_EXTENSION=y # # Kernel type and options @@ -291,6 +292,7 @@ CONFIG_CMDLINE_BOOTLOADER=y CONFIG_DMI=y CONFIG_EFI=y CONFIG_EFI_STUB=y +CONFIG_SCHED_SMT=y CONFIG_SMP=y CONFIG_HOTPLUG_CPU=y CONFIG_NR_CPUS=64 @@ -298,7 +300,13 @@ CONFIG_NUMA=y CONFIG_NODES_SHIFT=6 CONFIG_ARCH_FORCE_MAX_ORDER=12 # CONFIG_ARCH_IOREMAP is not set +# CONFIG_ARCH_WRITECOMBINE is not set CONFIG_ARCH_STRICT_ALIGN=y +CONFIG_CPU_HAS_FPU=y +CONFIG_CPU_HAS_LSX=y +CONFIG_CPU_HAS_LASX=y +CONFIG_CPU_HAS_LBT=y +CONFIG_CPU_HAS_PREFETCH=y CONFIG_KEXEC=y # CONFIG_CRASH_DUMP is not set CONFIG_RELOCATABLE=y @@ -314,6 +322,7 @@ CONFIG_ARCH_MEMORY_PROBE=y CONFIG_MMU=y CONFIG_ARCH_MMAP_RND_BITS_MIN=12 CONFIG_ARCH_MMAP_RND_BITS_MAX=18 +CONFIG_ARCH_SUPPORTS_UPROBES=y # # Power management options @@ -368,6 +377,7 @@ CONFIG_ACPI_NUMA=y # CONFIG_ACPI_HMAT is not set # CONFIG_ACPI_CONFIGFS is not set # CONFIG_ACPI_PFRUT is not set +CONFIG_ACPI_PPTT=y CONFIG_ACPI_PCC=y # CONFIG_ACPI_FFH is not set # CONFIG_PMIC_OPREGION is not set @@ -422,17 +432,21 @@ CONFIG_CRASH_CORE=y CONFIG_KEXEC_CORE=y CONFIG_GENERIC_ENTRY=y # CONFIG_KPROBES is not set +# CONFIG_JUMP_LABEL is not set CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y CONFIG_ARCH_USE_BUILTIN_BSWAP=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y CONFIG_HAVE_NMI=y CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_CPU_FINALIZE_INIT=y CONFIG_ARCH_WANTS_NO_INSTR=y CONFIG_HAVE_ASM_MODVERSIONS=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y @@ -441,7 +455,10 @@ CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y CONFIG_MMU_GATHER_MERGE_VMAS=y +CONFIG_MMU_LAZY_TLB_REFCOUNT=y CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS=y CONFIG_HAVE_ARCH_SECCOMP=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y @@ -450,6 +467,8 @@ CONFIG_SECCOMP_FILTER=y CONFIG_HAVE_STACKPROTECTOR=y CONFIG_STACKPROTECTOR=y CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y CONFIG_LTO_NONE=y CONFIG_HAVE_CONTEXT_TRACKING_USER=y CONFIG_HAVE_TIF_NOHZ=y @@ -475,6 +494,9 @@ CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y # # end of GCOV-based kernel profiling +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_GCC_PLUGINS=y +# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set CONFIG_FUNCTION_ALIGNMENT=0 # end of General architecture-dependent options @@ -500,6 +522,7 @@ CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y CONFIG_BLOCK_LEGACY_AUTOLOAD=y CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_CGROUP_PUNT_BIO=y CONFIG_BLK_DEV_BSG_COMMON=y CONFIG_BLK_ICQ=y CONFIG_BLK_DEV_BSGLIB=y @@ -543,7 +566,6 @@ CONFIG_EFI_PARTITION=y CONFIG_BLK_MQ_PCI=y CONFIG_BLK_MQ_VIRTIO=y -CONFIG_BLK_MQ_RDMA=y CONFIG_BLK_PM=y CONFIG_BLOCK_HOLDER_DEPRECATED=y CONFIG_BLK_MQ_STACKING=y @@ -590,6 +612,7 @@ CONFIG_ZPOOL=y CONFIG_SWAP=y CONFIG_ZSWAP=y # CONFIG_ZSWAP_DEFAULT_ON is not set +# CONFIG_ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set @@ -610,9 +633,8 @@ CONFIG_ZSMALLOC_CHAIN_SIZE=8 # # SLAB allocator options # -# CONFIG_SLAB is not set +# CONFIG_SLAB_DEPRECATED is not set CONFIG_SLUB=y -# CONFIG_SLOB_DEPRECATED is not set # CONFIG_SLUB_TINY is not set CONFIG_SLAB_MERGE_DEFAULT=y # CONFIG_SLAB_FREELIST_RANDOM is not set @@ -629,6 +651,7 @@ CONFIG_SPARSEMEM=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP=y CONFIG_HAVE_FAST_GUP=y CONFIG_ARCH_KEEP_MEMBLOCK=y CONFIG_NUMA_KEEP_MEMINFO=y @@ -670,10 +693,12 @@ CONFIG_VM_EVENT_COUNTERS=y # # GUP_TEST needs to have DEBUG_FS enabled # +# CONFIG_DMAPOOL_TEST is not set CONFIG_ARCH_HAS_PTE_SPECIAL=y # CONFIG_ANON_VMA_NAME is not set CONFIG_USERFAULTFD=y # CONFIG_LRU_GEN is not set +CONFIG_LOCK_MM_AND_FIND_VMA=y # # Data Access Monitoring @@ -712,6 +737,7 @@ CONFIG_NET_KEY=y # CONFIG_SMC is not set CONFIG_XDP_SOCKETS=y # CONFIG_XDP_SOCKETS_DIAG is not set +CONFIG_NET_HANDSHAKE=y CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y @@ -814,6 +840,7 @@ CONFIG_NETFILTER_SKIP_EGRESS=y CONFIG_NETFILTER_NETLINK=m CONFIG_NETFILTER_FAMILY_BRIDGE=y CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_BPF_LINK=y # CONFIG_NETFILTER_NETLINK_HOOK is not set CONFIG_NETFILTER_NETLINK_ACCT=m CONFIG_NETFILTER_NETLINK_QUEUE=m @@ -1272,6 +1299,7 @@ CONFIG_NET_L3_MASTER_DEV=y # CONFIG_QRTR is not set # CONFIG_NET_NCSI is not set CONFIG_PCPU_DEV_REFCNT=y +CONFIG_MAX_SKB_FRAGS=17 CONFIG_RPS=y CONFIG_RFS_ACCEL=y CONFIG_SOCK_RX_QUEUE_MAPPING=y @@ -1449,28 +1477,28 @@ CONFIG_HOTPLUG_PCI_SHPC=y # # CONFIG_PCI_FTPCI100 is not set # CONFIG_PCI_HOST_GENERIC is not set -# CONFIG_PCIE_XILINX is not set CONFIG_PCI_LOONGSON=y # CONFIG_PCIE_MICROCHIP_HOST is not set +# CONFIG_PCIE_XILINX is not set # -# DesignWare PCI Core Support +# Cadence-based PCIe controllers # -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support +# CONFIG_PCIE_CADENCE_PLAT_HOST is not set +# CONFIG_PCI_J721E_HOST is not set +# end of Cadence-based PCIe controllers # -# Mobiveil PCIe Core Support +# DesignWare-based PCIe controllers # -# end of Mobiveil PCIe Core Support +# CONFIG_PCI_MESON is not set +# CONFIG_PCIE_DW_PLAT_HOST is not set +# end of DesignWare-based PCIe controllers # -# Cadence PCIe controllers support +# Mobiveil-based PCIe controllers # -# CONFIG_PCIE_CADENCE_PLAT_HOST is not set -# CONFIG_PCI_J721E_HOST is not set -# end of Cadence PCIe controllers support +# end of Mobiveil-based PCIe controllers # end of PCI controller drivers # @@ -1559,6 +1587,7 @@ CONFIG_REGMAP_I2C=m CONFIG_REGMAP_MMIO=y CONFIG_DMA_SHARED_BUFFER=y # CONFIG_DMA_FENCE_TRACE is not set +# CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT is not set # end of Generic Driver Options # @@ -1961,7 +1990,6 @@ CONFIG_SATA_MOBILE_LPM_POLICY=0 CONFIG_SATA_AHCI_PLATFORM=y # CONFIG_AHCI_DWC is not set # CONFIG_AHCI_CEVA is not set -# CONFIG_AHCI_QORIQ is not set # CONFIG_SATA_INIC162X is not set # CONFIG_SATA_ACARD_AHCI is not set # CONFIG_SATA_SIL24 is not set @@ -2103,6 +2131,7 @@ CONFIG_LOOPBACK_TARGET=m # CONFIG_TCM_FC is not set CONFIG_ISCSI_TARGET=m # CONFIG_ISCSI_TARGET_CXGB4 is not set +# CONFIG_REMOTE_TARGET is not set # CONFIG_FUSION is not set # @@ -2212,7 +2241,6 @@ CONFIG_E1000E=y CONFIG_IGB=y CONFIG_IGB_HWMON=y # CONFIG_IGBVF is not set -CONFIG_IXGB=y CONFIG_IXGBE=y CONFIG_IXGBE_HWMON=y # CONFIG_IXGBEVF is not set @@ -2221,9 +2249,6 @@ CONFIG_IXGBE_HWMON=y # CONFIG_ICE is not set # CONFIG_FM10K is not set # CONFIG_IGC is not set -CONFIG_NET_VENDOR_WANGXUN=y -# CONFIG_NGBE is not set -# CONFIG_TXGBE is not set # CONFIG_JME is not set CONFIG_NET_VENDOR_ADI=y CONFIG_NET_VENDOR_LITEX=y @@ -2292,6 +2317,9 @@ CONFIG_NET_VENDOR_SYNOPSYS=y CONFIG_NET_VENDOR_VERTEXCOM=y # CONFIG_MSE102X is not set # CONFIG_NET_VENDOR_VIA is not set +CONFIG_NET_VENDOR_WANGXUN=y +# CONFIG_NGBE is not set +# CONFIG_TXGBE is not set # CONFIG_NET_VENDOR_WIZNET is not set # CONFIG_NET_VENDOR_XILINX is not set CONFIG_NET_VENDOR_XIRCOM=y @@ -2303,6 +2331,7 @@ CONFIG_PHYLINK=y CONFIG_PHYLIB=y CONFIG_SWPHY=y # CONFIG_LED_TRIGGER_PHY is not set +CONFIG_PHYLIB_LEDS=y CONFIG_FIXED_PHY=y # CONFIG_SFP is not set @@ -2332,11 +2361,13 @@ CONFIG_FIXED_PHY=y # CONFIG_MAXLINEAR_GPHY is not set # CONFIG_MEDIATEK_GE_PHY is not set # CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_T1S_PHY is not set # CONFIG_MICROCHIP_PHY is not set # CONFIG_MICROCHIP_T1_PHY is not set # CONFIG_MICROSEMI_PHY is not set # CONFIG_MOTORCOMM_PHY is not set # CONFIG_NATIONAL_PHY is not set +# CONFIG_NXP_CBTX_PHY is not set # CONFIG_NXP_C45_TJA11XX_PHY is not set # CONFIG_NXP_TJA11XX_PHY is not set # CONFIG_NCN26000_PHY is not set @@ -2394,6 +2425,11 @@ CONFIG_PPP_FILTER=y CONFIG_PPP_MPPE=m CONFIG_PPP_MULTILINK=y CONFIG_PPPOE=m +# CONFIG_PPPOE_HASH_BITS_1 is not set +# CONFIG_PPPOE_HASH_BITS_2 is not set +CONFIG_PPPOE_HASH_BITS_4=y +# CONFIG_PPPOE_HASH_BITS_8 is not set +CONFIG_PPPOE_HASH_BITS=4 CONFIG_PPTP=m CONFIG_PPPOL2TP=m CONFIG_PPP_ASYNC=m @@ -2483,6 +2519,7 @@ CONFIG_WLAN_VENDOR_BROADCOM=y # CONFIG_BRCMSMAC is not set # CONFIG_BRCMFMAC is not set CONFIG_WLAN_VENDOR_CISCO=y +# CONFIG_AIRO is not set # CONFIG_AIRO_CS is not set CONFIG_WLAN_VENDOR_INTEL=y # CONFIG_IPW2100 is not set @@ -2597,6 +2634,7 @@ CONFIG_RTW89_CORE=m CONFIG_RTW89_PCI=m CONFIG_RTW89_8852A=m CONFIG_RTW89_8852C=m +# CONFIG_RTW89_8851BE is not set CONFIG_RTW89_8852AE=m # CONFIG_RTW89_8852BE is not set CONFIG_RTW89_8852CE=m @@ -2621,8 +2659,8 @@ CONFIG_WLAN_VENDOR_QUANTENNA=y # CONFIG_QTNFMAC_PCIE is not set # CONFIG_PCMCIA_RAYCS is not set # CONFIG_PCMCIA_WL3501 is not set -# CONFIG_MAC80211_HWSIM is not set CONFIG_USB_NET_RNDIS_WLAN=m +# CONFIG_MAC80211_HWSIM is not set # CONFIG_VIRT_WIFI is not set # CONFIG_WAN is not set @@ -2845,6 +2883,7 @@ CONFIG_SERIAL_NONSTANDARD=y # CONFIG_MOXA_SMARTIO is not set # CONFIG_SYNCLINK_GT is not set # CONFIG_N_HDLC is not set +# CONFIG_IPWIRELESS is not set # CONFIG_N_GSM is not set # CONFIG_NOZOMI is not set # CONFIG_NULL_TTY is not set @@ -2871,17 +2910,6 @@ CONFIG_HW_RANDOM_VIRTIO=m # CONFIG_HW_RANDOM_CCTRNG is not set # CONFIG_HW_RANDOM_XIPHERA is not set # CONFIG_APPLICOM is not set - -# -# PCMCIA character devices -# -# CONFIG_SYNCLINK_CS is not set -# CONFIG_CARDMAN_4000 is not set -# CONFIG_CARDMAN_4040 is not set -# CONFIG_SCR24X is not set -# CONFIG_IPWIRELESS is not set -# end of PCMCIA character devices - CONFIG_DEVMEM=y CONFIG_DEVPORT=y # CONFIG_TCG_TPM is not set @@ -2985,7 +3013,6 @@ CONFIG_SPI_MASTER=y # CONFIG_SPI_BUTTERFLY is not set # CONFIG_SPI_CADENCE is not set # CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set # CONFIG_SPI_GPIO is not set # CONFIG_SPI_LM70_LLP is not set # CONFIG_SPI_FSL_SPI is not set @@ -2994,7 +3021,6 @@ CONFIG_SPI_MASTER=y # CONFIG_SPI_OC_TINY is not set # CONFIG_SPI_PCI1XXXX is not set # CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set # CONFIG_SPI_SC18IS602 is not set # CONFIG_SPI_SIFIVE is not set # CONFIG_SPI_MXIC is not set @@ -3069,6 +3095,8 @@ CONFIG_GPIO_CDEV_V1=y # CONFIG_GPIO_GRGPIO is not set # CONFIG_GPIO_HLWD is not set # CONFIG_GPIO_LOGICVC is not set +# CONFIG_GPIO_LOONGSON is not set +# CONFIG_GPIO_LOONGSON_64BIT is not set # CONFIG_GPIO_MB86S7X is not set # CONFIG_GPIO_SIFIVE is not set # CONFIG_GPIO_SYSCON is not set @@ -3080,6 +3108,7 @@ CONFIG_GPIO_CDEV_V1=y # I2C GPIO expanders # # CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_FXL6408 is not set # CONFIG_GPIO_GW_PLD is not set # CONFIG_GPIO_MAX7300 is not set # CONFIG_GPIO_MAX732X is not set @@ -3236,6 +3265,7 @@ CONFIG_HWMON_VID=m # CONFIG_SENSORS_MAX31722 is not set # CONFIG_SENSORS_MAX31730 is not set # CONFIG_SENSORS_MAX31760 is not set +# CONFIG_MAX31827 is not set # CONFIG_SENSORS_MAX6620 is not set # CONFIG_SENSORS_MAX6621 is not set # CONFIG_SENSORS_MAX6639 is not set @@ -3372,6 +3402,7 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_BD9571MWV is not set # CONFIG_MFD_AXP20X_I2C is not set # CONFIG_MFD_MADERA is not set +# CONFIG_MFD_MAX5970 is not set # CONFIG_PMIC_DA903X is not set # CONFIG_MFD_DA9052_SPI is not set # CONFIG_MFD_DA9052_I2C is not set @@ -3394,6 +3425,7 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_88PM805 is not set # CONFIG_MFD_88PM860X is not set # CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77541 is not set # CONFIG_MFD_MAX77620 is not set # CONFIG_MFD_MAX77650 is not set # CONFIG_MFD_MAX77686 is not set @@ -3421,7 +3453,8 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_RT5033 is not set # CONFIG_MFD_RT5120 is not set # CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set +# CONFIG_MFD_RK8XX_I2C is not set +# CONFIG_MFD_RK8XX_SPI is not set # CONFIG_MFD_RN5T618 is not set # CONFIG_MFD_SEC_CORE is not set # CONFIG_MFD_SI476X_CORE is not set @@ -3448,6 +3481,8 @@ CONFIG_MFD_SYSCON=y # CONFIG_MFD_TPS65910 is not set # CONFIG_MFD_TPS65912_I2C is not set # CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS6594_I2C is not set +# CONFIG_MFD_TPS6594_SPI is not set # CONFIG_TWL4030_CORE is not set # CONFIG_TWL6040_CORE is not set # CONFIG_MFD_WL1273_CORE is not set @@ -3580,7 +3615,7 @@ CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y # CONFIG_VIDEO_GO7007 is not set # CONFIG_VIDEO_HDPVR is not set # CONFIG_VIDEO_PVRUSB2 is not set -# CONFIG_VIDEO_STK1160_COMMON is not set +# CONFIG_VIDEO_STK1160 is not set # # Analog/digital TV USB devices @@ -3806,16 +3841,14 @@ CONFIG_VIDEO_IR_I2C=m # CONFIG_VIDEO_IMX412 is not set # CONFIG_VIDEO_IMX415 is not set # CONFIG_VIDEO_MT9M001 is not set -# CONFIG_VIDEO_MT9M032 is not set # CONFIG_VIDEO_MT9M111 is not set # CONFIG_VIDEO_MT9P031 is not set -# CONFIG_VIDEO_MT9T001 is not set # CONFIG_VIDEO_MT9T112 is not set # CONFIG_VIDEO_MT9V011 is not set # CONFIG_VIDEO_MT9V032 is not set # CONFIG_VIDEO_MT9V111 is not set -# CONFIG_VIDEO_NOON010PC30 is not set # CONFIG_VIDEO_OG01A1B is not set +# CONFIG_VIDEO_OV01A10 is not set # CONFIG_VIDEO_OV02A10 is not set # CONFIG_VIDEO_OV08D10 is not set # CONFIG_VIDEO_OV08X40 is not set @@ -3854,13 +3887,9 @@ CONFIG_VIDEO_IR_I2C=m # CONFIG_VIDEO_S5C73M3 is not set # CONFIG_VIDEO_S5K5BAF is not set # CONFIG_VIDEO_S5K6A3 is not set -# CONFIG_VIDEO_S5K6AA is not set -# CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_ST_VGXY61 is not set -# CONFIG_VIDEO_VS6624 is not set # CONFIG_VIDEO_CCS is not set # CONFIG_VIDEO_ET8EK8 is not set -# CONFIG_VIDEO_M5MOLS is not set # end of Camera sensor devices # @@ -3944,7 +3973,6 @@ CONFIG_VIDEO_IR_I2C=m # # Video encoders # -# CONFIG_VIDEO_AD9389B is not set # CONFIG_VIDEO_ADV7170 is not set # CONFIG_VIDEO_ADV7175 is not set # CONFIG_VIDEO_ADV7343 is not set @@ -4201,6 +4229,7 @@ CONFIG_DVB_SP2=m # Graphics support # CONFIG_APERTURE_HELPERS=y +CONFIG_VIDEO_CMDLINE=y CONFIG_VIDEO_NOMODESET=y CONFIG_DRM=y # CONFIG_DRM_DEBUG_MM is not set @@ -4221,6 +4250,7 @@ CONFIG_DRM_TTM=m CONFIG_DRM_BUDDY=m CONFIG_DRM_TTM_HELPER=m CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_SUBALLOC_HELPER=m CONFIG_DRM_SCHED=m # @@ -4244,6 +4274,7 @@ CONFIG_DRM_AMDGPU=m CONFIG_DRM_AMDGPU_SI=y CONFIG_DRM_AMDGPU_CIK=y CONFIG_DRM_AMDGPU_USERPTR=y +# CONFIG_DRM_AMDGPU_WERROR is not set # # ACP (Audio CoProcessor) Configuration @@ -4255,7 +4286,7 @@ CONFIG_DRM_AMDGPU_USERPTR=y # Display Engine Configuration # CONFIG_DRM_AMD_DC=y -# CONFIG_DRM_AMD_DC_HDCP is not set +CONFIG_DRM_AMD_DC_FP=y # CONFIG_DRM_AMD_DC_SI is not set # end of Display Engine Configuration @@ -4264,9 +4295,11 @@ CONFIG_DRM_AMD_DC=y # CONFIG_DRM_VKMS is not set # CONFIG_DRM_UDL is not set CONFIG_DRM_AST=y +# CONFIG_DRM_LOONGSON is not set # CONFIG_DRM_MGAG200 is not set CONFIG_DRM_QXL=m CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_VIRTIO_GPU_KMS=y CONFIG_DRM_PANEL=y # @@ -4292,6 +4325,7 @@ CONFIG_DRM_PANEL=y # CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 is not set # CONFIG_DRM_PANEL_SAMSUNG_DB7430 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6D27A1 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D7AA0 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set @@ -4324,6 +4358,7 @@ CONFIG_DRM_PANEL_BRIDGE=y # CONFIG_DRM_NXP_PTN3460 is not set # CONFIG_DRM_PARADE_PS8622 is not set # CONFIG_DRM_PARADE_PS8640 is not set +# CONFIG_DRM_SAMSUNG_DSIM is not set # CONFIG_DRM_SIL_SII8620 is not set # CONFIG_DRM_SII902X is not set # CONFIG_DRM_SII9234 is not set @@ -4372,7 +4407,6 @@ CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y # # Frame buffer Devices # -CONFIG_FB_CMDLINE=y CONFIG_FB_NOTIFY=y CONFIG_FB=y # CONFIG_FIRMWARE_EDID is not set @@ -4386,6 +4420,9 @@ CONFIG_FB_SYS_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_SYS_FOPS=y CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_IO_HELPERS=y +CONFIG_FB_SYS_HELPERS=y +CONFIG_FB_SYS_HELPERS_DEFERRED=y CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y @@ -4505,9 +4542,11 @@ CONFIG_SND_SEQUENCER=m CONFIG_SND_SEQ_DUMMY=m CONFIG_SND_SEQ_MIDI_EVENT=m CONFIG_SND_SEQ_MIDI=m +# CONFIG_SND_SEQ_UMP is not set CONFIG_SND_DRIVERS=y # CONFIG_SND_DUMMY is not set # CONFIG_SND_ALOOP is not set +# CONFIG_SND_PCMTEST is not set # CONFIG_SND_VIRMIDI is not set # CONFIG_SND_MTPAV is not set # CONFIG_SND_MTS64 is not set @@ -4607,6 +4646,7 @@ CONFIG_SND_INTEL_SOUNDWIRE_ACPI=y CONFIG_SND_SPI=y CONFIG_SND_USB=y CONFIG_SND_USB_AUDIO=m +# CONFIG_SND_USB_AUDIO_MIDI_V2 is not set CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y # CONFIG_SND_USB_UA101 is not set # CONFIG_SND_USB_CAIAQ is not set @@ -4701,6 +4741,7 @@ CONFIG_HID_MULTITOUCH=m # CONFIG_HID_NINTENDO is not set # CONFIG_HID_NTI is not set # CONFIG_HID_NTRIG is not set +# CONFIG_HID_NVIDIA_SHIELD is not set # CONFIG_HID_ORTEK is not set # CONFIG_HID_PANTHERLORD is not set # CONFIG_HID_PENMOUNT is not set @@ -4872,7 +4913,6 @@ CONFIG_USB_DWC2_HOST=y # # USB port drivers # -# CONFIG_USB_USS720 is not set CONFIG_USB_SERIAL=m # CONFIG_USB_SERIAL_GENERIC is not set # CONFIG_USB_SERIAL_SIMPLE is not set @@ -4931,6 +4971,7 @@ CONFIG_USB_SERIAL_OPTION=m # # USB Miscellaneous drivers # +# CONFIG_USB_USS720 is not set # CONFIG_USB_EMI62 is not set # CONFIG_USB_EMI26 is not set # CONFIG_USB_ADUTUX is not set @@ -4940,7 +4981,6 @@ CONFIG_USB_SERIAL_OPTION=m # CONFIG_USB_CYPRESS_CY7C63 is not set # CONFIG_USB_CYTHERM is not set # CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set # CONFIG_USB_APPLEDISPLAY is not set # CONFIG_APPLE_MFI_FASTCHARGE is not set # CONFIG_USB_SISUSBVGA is not set @@ -4991,6 +5031,7 @@ CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 # CONFIG_USB_EG20T is not set # CONFIG_USB_GADGET_XILINX is not set # CONFIG_USB_MAX3420_UDC is not set +# CONFIG_USB_CDNS2_UDC is not set # CONFIG_USB_DUMMY_HCD is not set # end of USB Peripheral Controller @@ -5042,6 +5083,7 @@ CONFIG_UCSI_ACPI=m # CONFIG_TYPEC_MUX_FSA4480 is not set # CONFIG_TYPEC_MUX_GPIO_SBU is not set # CONFIG_TYPEC_MUX_PI3USB30532 is not set +# CONFIG_TYPEC_MUX_NB7VPQ904M is not set # end of USB Type-C Multiplexer/DeMultiplexer Switch support # @@ -5064,6 +5106,7 @@ CONFIG_LEDS_CLASS=y # LED drivers # # CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW200XX is not set # CONFIG_LEDS_AW2013 is not set # CONFIG_LEDS_BCM6328 is not set # CONFIG_LEDS_BCM6358 is not set @@ -5084,6 +5127,7 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_PCA963X is not set # CONFIG_LEDS_DAC124S085 is not set # CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_BD2606MVV is not set # CONFIG_LEDS_BD2802 is not set # CONFIG_LEDS_LT3593 is not set # CONFIG_LEDS_TCA6507 is not set @@ -5100,7 +5144,7 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_MLXREG is not set # CONFIG_LEDS_USER is not set # CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set +# CONFIG_LEDS_LM3697 is not set # # Flash and Torch LED drivers @@ -5122,7 +5166,6 @@ CONFIG_LEDS_TRIGGERS=y # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set # CONFIG_LEDS_TRIGGER_CPU is not set # CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set # @@ -5263,6 +5306,7 @@ CONFIG_RTC_I2C_AND_SPI=y # # CONFIG_RTC_DRV_CADENCE is not set # CONFIG_RTC_DRV_FTRTC010 is not set +# CONFIG_RTC_DRV_LOONGSON is not set # CONFIG_RTC_DRV_R7301 is not set # @@ -5326,10 +5370,16 @@ CONFIG_VFIO=m CONFIG_VFIO_CONTAINER=y # CONFIG_VFIO_NOIOMMU is not set CONFIG_VFIO_VIRQFD=y + +# +# VFIO support for PCI devices +# CONFIG_VFIO_PCI_CORE=m CONFIG_VFIO_PCI_MMAP=y CONFIG_VFIO_PCI_INTX=y CONFIG_VFIO_PCI=m +# end of VFIO support for PCI devices + CONFIG_IRQ_BYPASS_MANAGER=m # CONFIG_VIRT_DRIVERS is not set CONFIG_VIRTIO_ANCHOR=y @@ -5346,6 +5396,7 @@ CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y CONFIG_VIRTIO_DMA_SHARED_BUFFER=m # CONFIG_VDPA is not set CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_TASK=y CONFIG_VHOST=m CONFIG_VHOST_MENU=y CONFIG_VHOST_NET=m @@ -5364,7 +5415,6 @@ CONFIG_COMEDI=m CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 # CONFIG_COMEDI_MISC_DRIVERS is not set -# CONFIG_COMEDI_ISA_DRIVERS is not set CONFIG_COMEDI_PCI_DRIVERS=m CONFIG_COMEDI_8255_PCI=m # CONFIG_COMEDI_ADDI_APCI_1032 is not set @@ -5380,21 +5430,13 @@ CONFIG_COMEDI_8255_PCI=m CONFIG_COMEDI_ADL_PCI6208=m CONFIG_COMEDI_ADL_PCI7X3X=m CONFIG_COMEDI_ADL_PCI8164=m -CONFIG_COMEDI_ADL_PCI9111=m -CONFIG_COMEDI_ADL_PCI9118=m -CONFIG_COMEDI_ADV_PCI1710=m CONFIG_COMEDI_ADV_PCI1720=m CONFIG_COMEDI_ADV_PCI1723=m CONFIG_COMEDI_ADV_PCI1724=m CONFIG_COMEDI_ADV_PCI1760=m -CONFIG_COMEDI_ADV_PCI_DIO=m -# CONFIG_COMEDI_AMPLC_DIO200_PCI is not set # CONFIG_COMEDI_AMPLC_PC236_PCI is not set # CONFIG_COMEDI_AMPLC_PC263_PCI is not set -# CONFIG_COMEDI_AMPLC_PCI224 is not set -# CONFIG_COMEDI_AMPLC_PCI230 is not set # CONFIG_COMEDI_CONTEC_PCI_DIO is not set -# CONFIG_COMEDI_DAS08_PCI is not set # CONFIG_COMEDI_DT3000 is not set # CONFIG_COMEDI_DYNA_PCI10XX is not set # CONFIG_COMEDI_GSC_HPDI is not set @@ -5404,30 +5446,23 @@ CONFIG_COMEDI_ADV_PCI_DIO=m # CONFIG_COMEDI_JR3_PCI is not set # CONFIG_COMEDI_KE_COUNTER is not set # CONFIG_COMEDI_CB_PCIDAS64 is not set -# CONFIG_COMEDI_CB_PCIDAS is not set # CONFIG_COMEDI_CB_PCIDDA is not set -# CONFIG_COMEDI_CB_PCIMDAS is not set # CONFIG_COMEDI_CB_PCIMDDA is not set -# CONFIG_COMEDI_ME4000 is not set # CONFIG_COMEDI_ME_DAQ is not set # CONFIG_COMEDI_NI_6527 is not set # CONFIG_COMEDI_NI_65XX is not set # CONFIG_COMEDI_NI_660X is not set # CONFIG_COMEDI_NI_670X is not set -CONFIG_COMEDI_NI_LABPC_PCI=m CONFIG_COMEDI_NI_PCIDIO=m CONFIG_COMEDI_NI_PCIMIO=m -# CONFIG_COMEDI_RTD520 is not set # CONFIG_COMEDI_S626 is not set CONFIG_COMEDI_MITE=m CONFIG_COMEDI_NI_TIOCMD=m # CONFIG_COMEDI_PCMCIA_DRIVERS is not set # CONFIG_COMEDI_USB_DRIVERS is not set -CONFIG_COMEDI_8254=m CONFIG_COMEDI_8255=m # CONFIG_COMEDI_8255_SA is not set # CONFIG_COMEDI_KCOMEDILIB is not set -CONFIG_COMEDI_NI_LABPC=m CONFIG_COMEDI_NI_TIO=m CONFIG_COMEDI_NI_ROUTING=m # CONFIG_COMEDI_TESTS is not set @@ -5449,6 +5484,7 @@ CONFIG_STAGING=y # CONFIG_FIELDBUS_DEV is not set # CONFIG_QLGE is not set # CONFIG_VME_BUS is not set +CONFIG_CPU_HWMON=y CONFIG_LOONGARCH_PLATFORM_DEVICES=y CONFIG_LOONGSON_LAPTOP=y # CONFIG_GOLDFISH is not set @@ -5466,8 +5502,10 @@ CONFIG_COMMON_CLK=y # CONFIG_COMMON_CLK_CDCE925 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set # CONFIG_COMMON_CLK_AXI_CLKGEN is not set +# CONFIG_COMMON_CLK_LOONGSON2 is not set # CONFIG_COMMON_CLK_PWM is not set # CONFIG_COMMON_CLK_RS9_PCIE is not set +# CONFIG_COMMON_CLK_SI521XX is not set # CONFIG_COMMON_CLK_VC5 is not set # CONFIG_COMMON_CLK_VC7 is not set # CONFIG_COMMON_CLK_FIXED_MMIO is not set @@ -5661,6 +5699,14 @@ CONFIG_RAS=y # CONFIG_DAX is not set CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y + +# +# Layout Types +# +# CONFIG_NVMEM_LAYOUT_SL28_VPD is not set +# CONFIG_NVMEM_LAYOUT_ONIE_TLV is not set +# end of Layout Types + # CONFIG_NVMEM_RMEM is not set # CONFIG_NVMEM_U_BOOT_ENV is not set @@ -5707,6 +5753,7 @@ CONFIG_FS_MBCACHE=y # CONFIG_JFS_FS is not set CONFIG_XFS_FS=y CONFIG_XFS_SUPPORT_V4=y +CONFIG_XFS_SUPPORT_ASCII_CI=y CONFIG_XFS_QUOTA=y CONFIG_XFS_POSIX_ACL=y # CONFIG_XFS_RT is not set @@ -5737,7 +5784,6 @@ CONFIG_FANOTIFY=y CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y CONFIG_QUOTA=y # CONFIG_QUOTA_NETLINK_INTERFACE is not set -# CONFIG_PRINT_QUOTA_WARNING is not set # CONFIG_QUOTA_DEBUG is not set CONFIG_QUOTA_TREE=m CONFIG_QFMT_V1=m @@ -5806,7 +5852,6 @@ CONFIG_TMPFS_XATTR=y CONFIG_ARCH_SUPPORTS_HUGETLBFS=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y -CONFIG_ARCH_WANT_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y # CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set CONFIG_MEMFD_CREATE=y @@ -5911,7 +5956,7 @@ CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y # CONFIG_CIFS_SMB_DIRECT is not set # CONFIG_CIFS_FSCACHE is not set # CONFIG_SMB_SERVER is not set -CONFIG_SMBFS_COMMON=m +CONFIG_SMBFS=m # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set CONFIG_9P_FS=y @@ -5985,22 +6030,19 @@ CONFIG_KEYS=y CONFIG_KEY_DH_OPERATIONS=y # CONFIG_SECURITY_DMESG_RESTRICT is not set CONFIG_SECURITY=y -CONFIG_SECURITY_WRITABLE_HOOKS=y CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y # CONFIG_SECURITY_INFINIBAND is not set # CONFIG_SECURITY_NETWORK_XFRM is not set CONFIG_SECURITY_PATH=y CONFIG_LSM_MMAP_MIN_ADDR=65536 -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y # CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set # CONFIG_STATIC_USERMODEHELPER is not set CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_SELINUX_BOOTPARAM=y -CONFIG_SECURITY_SELINUX_DISABLE=y CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0 CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 # CONFIG_SECURITY_SMACK is not set @@ -6047,6 +6089,8 @@ CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y # end of Memory initialization CONFIG_RANDSTRUCT_NONE=y +# CONFIG_RANDSTRUCT_FULL is not set +# CONFIG_RANDSTRUCT_PERFORMANCE is not set # end of Kernel hardening options # end of Security options @@ -6065,6 +6109,7 @@ CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=m CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SIG2=y CONFIG_CRYPTO_SKCIPHER=y CONFIG_CRYPTO_SKCIPHER2=y CONFIG_CRYPTO_HASH=y @@ -6083,7 +6128,7 @@ CONFIG_CRYPTO_USER=m # CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set # CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set CONFIG_CRYPTO_NULL=m -CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_NULL2=m CONFIG_CRYPTO_PCRYPT=m CONFIG_CRYPTO_CRYPTD=m CONFIG_CRYPTO_AUTHENC=m @@ -6155,6 +6200,7 @@ CONFIG_CRYPTO_ECB=m CONFIG_CRYPTO_CHACHA20POLY1305=m CONFIG_CRYPTO_CCM=m CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_GENIV=m CONFIG_CRYPTO_SEQIV=m CONFIG_CRYPTO_ECHAINIV=m CONFIG_CRYPTO_ESSIV=m @@ -6175,7 +6221,7 @@ CONFIG_CRYPTO_POLY1305=m CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=m -# CONFIG_CRYPTO_SHA3 is not set +CONFIG_CRYPTO_SHA3=m # CONFIG_CRYPTO_SM3_GENERIC is not set # CONFIG_CRYPTO_STREEBOG is not set CONFIG_CRYPTO_VMAC=m @@ -6214,6 +6260,7 @@ CONFIG_CRYPTO_DRBG_HMAC=y # CONFIG_CRYPTO_DRBG_CTR is not set CONFIG_CRYPTO_DRBG=m CONFIG_CRYPTO_JITTERENTROPY=m +# CONFIG_CRYPTO_JITTERENTROPY_TESTINTERFACE is not set CONFIG_CRYPTO_KDF800108_CTR=y # end of Random number generation @@ -6231,9 +6278,17 @@ CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y # end of Userspace interface CONFIG_CRYPTO_HASH_INFO=y + +# +# Accelerated Cryptographic Algorithms for CPU (loongarch) +# +# CONFIG_CRYPTO_CRC32_LOONGARCH is not set +# end of Accelerated Cryptographic Algorithms for CPU (loongarch) + CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set # CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set # CONFIG_CRYPTO_DEV_QAT_C3XXX is not set # CONFIG_CRYPTO_DEV_QAT_C62X is not set @@ -6241,7 +6296,6 @@ CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set # CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set # CONFIG_CRYPTO_DEV_CHELSIO is not set CONFIG_CRYPTO_DEV_VIRTIO=m # CONFIG_CRYPTO_DEV_SAFEXCEL is not set @@ -6362,6 +6416,7 @@ CONFIG_INTERVAL_TREE=y CONFIG_XARRAY_MULTI=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y CONFIG_NEED_DMA_MAP_STATE=y @@ -6386,11 +6441,11 @@ CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y CONFIG_FONT_SUPPORT=y CONFIG_FONTS=y # CONFIG_FONT_8x8 is not set -# CONFIG_FONT_8x16 is not set -CONFIG_FONT_UTF8x16=y +CONFIG_FONT_8x16=y # CONFIG_FONT_6x11 is not set # CONFIG_FONT_7x14 is not set # CONFIG_FONT_PEARL_8x8 is not set @@ -6402,6 +6457,7 @@ CONFIG_FONT_UTF8x16=y # CONFIG_FONT_SUN12x22 is not set # CONFIG_FONT_TER16x32 is not set # CONFIG_FONT_6x8 is not set +CONFIG_FONT_AUTOSELECT=y CONFIG_SG_POOL=y CONFIG_ARCH_STACKWALK=y CONFIG_STACKDEPOT=y @@ -6486,6 +6542,8 @@ CONFIG_SLUB_DEBUG=y # CONFIG_SLUB_DEBUG_ON is not set # CONFIG_PAGE_OWNER is not set # CONFIG_PAGE_POISONING is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set # CONFIG_DEBUG_OBJECTS is not set # CONFIG_DEBUG_STACK_USAGE is not set # CONFIG_SCHED_STACK_END_CHECK is not set @@ -6494,8 +6552,11 @@ CONFIG_SLUB_DEBUG=y # CONFIG_DEBUG_PER_CPU_MAPS is not set CONFIG_HAVE_DEBUG_STACKOVERFLOW=y # CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_ARCH_DISABLE_KASAN_INLINE=y CONFIG_CC_HAS_KASAN_GENERIC=y CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set # end of Memory Debugging # CONFIG_DEBUG_SHIRQ is not set @@ -6507,8 +6568,11 @@ CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y CONFIG_PANIC_ON_OOPS_VALUE=0 CONFIG_PANIC_TIMEOUT=0 # CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY=y +# CONFIG_HARDLOCKUP_DETECTOR is not set # CONFIG_DETECT_HUNG_TASK is not set # CONFIG_WQ_WATCHDOG is not set +# CONFIG_WQ_CPU_INTENSIVE_REPORT is not set # CONFIG_TEST_LOCKUP is not set # end of Debug Oops, Lockups and Hangs @@ -6576,10 +6640,13 @@ CONFIG_RCU_TRACE=y # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_RETHOOK=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_RETVAL=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y @@ -6588,6 +6655,8 @@ CONFIG_TRACE_CLOCK=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_SAMPLES is not set +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y # CONFIG_STRICT_DEVMEM is not set # @@ -6603,7 +6672,9 @@ CONFIG_UNWINDER_PROLOGUE=y # CONFIG_KUNIT is not set # CONFIG_NOTIFIER_ERROR_INJECTION is not set # CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_DHRY is not set # CONFIG_TEST_MIN_HEAP is not set diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0001-UniVT-Add-Chinese-fonts-support-in-console.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0001-UniVT-Add-Chinese-fonts-support-in-console.patch deleted file mode 100644 index 55fa662d..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0001-UniVT-Add-Chinese-fonts-support-in-console.patch +++ /dev/null @@ -1,135296 +0,0 @@ -From 0d7704f1f2024a537f3f20c374c6e556463c32a1 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 03:23:06 +0000 -Subject: [PATCH] UniVT: Add Chinese fonts support in console -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 增加字库文件以及字体配置。 ---- - include/linux/font.h | 4 +- - lib/fonts/Kconfig | 11 + - lib/fonts/Makefile | 1 + - lib/fonts/font_utf8x16.c | 135192 ++++++++++++++++++++++++++++++++++++ - lib/fonts/fonts.c | 3 + - 5 files changed, 135210 insertions(+), 1 deletion(-) - create mode 100644 lib/fonts/font_utf8x16.c - -diff --git a/include/linux/font.h b/include/linux/font.h -index abf1442ce..d127c43a1 100644 ---- a/include/linux/font.h -+++ b/include/linux/font.h -@@ -35,6 +35,7 @@ struct font_desc { - #define FONT6x10_IDX 10 - #define TER16x32_IDX 11 - #define FONT6x8_IDX 12 -+#define UTF8x16_IDX 13 - - extern const struct font_desc font_vga_8x8, - font_vga_8x16, -@@ -48,7 +49,8 @@ extern const struct font_desc font_vga_8x8, - font_mini_4x6, - font_6x10, - font_ter_16x32, -- font_6x8; -+ font_6x8, -+ font_utf8_8x16; - - /* Find a font with a specific name */ - -diff --git a/lib/fonts/Kconfig b/lib/fonts/Kconfig -index c035fde66..c982fb969 100644 ---- a/lib/fonts/Kconfig -+++ b/lib/fonts/Kconfig -@@ -44,6 +44,16 @@ config FONT_8x16 - - If unsure, say Y. - -+config FONT_UTF8x16 -+ bool "UTF-8 8x16 font" if FONTS -+ depends on FRAMEBUFFER_CONSOLE -+ default y -+ help -+ This is the "high resolution" font for the VGA frame buffer (the one -+ provided by the VGA text console 80x25 mode. -+ -+ If unsure, say Y. -+ - config FONT_6x11 - bool "Mac console 6x11 font (not supported by all drivers)" if FONTS - depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE -@@ -139,6 +149,7 @@ config FONT_AUTOSELECT - depends on !FONT_10x18 - depends on !FONT_TER16x32 - depends on !FONT_6x8 -+ depends on !FONT_UTF8x16 - select FONT_8x16 - - endif # FONT_SUPPORT -diff --git a/lib/fonts/Makefile b/lib/fonts/Makefile -index e16f68492..e2bb3ce70 100644 ---- a/lib/fonts/Makefile -+++ b/lib/fonts/Makefile -@@ -16,6 +16,7 @@ font-objs-$(CONFIG_FONT_MINI_4x6) += font_mini_4x6.o - font-objs-$(CONFIG_FONT_6x10) += font_6x10.o - font-objs-$(CONFIG_FONT_TER16x32) += font_ter16x32.o - font-objs-$(CONFIG_FONT_6x8) += font_6x8.o -+font-objs-$(CONFIG_FONT_UTF8x16) += font_utf8x16.o - - font-objs += $(font-objs-y) - -diff --git a/lib/fonts/font_utf8x16.c b/lib/fonts/font_utf8x16.c -new file mode 100644 -index 000000000..790a7a106 ---- /dev/null -+++ b/lib/fonts/font_utf8x16.c -@@ -0,0 +1,135192 @@ -+/* -+ * Font data of UTF-8 characters within 3 bytes is provided. -+ * -- Create by Sun Haiyong 06-2006 -+ */ -+ -+#include -+#include -+ -+#define FONTDATAMAX 2097152 -+ -+static const struct font_data font_utf8 = { -+ { 0, 0, FONTDATAMAX, 0 }, { -+ /* 0 0x00 '^@' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 1 0x01 '^A' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x81, /* 10000001 */ -+ 0xa5, /* 10100101 */ -+ 0x81, /* 10000001 */ -+ 0x81, /* 10000001 */ -+ 0xbd, /* 10111101 */ -+ 0x99, /* 10011001 */ -+ 0x81, /* 10000001 */ -+ 0x81, /* 10000001 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 2 0x02 '^B' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0xff, /* 11111111 */ -+ 0xdb, /* 11011011 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xc3, /* 11000011 */ -+ 0xe7, /* 11100111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 3 0x03 '^C' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x6c, /* 01101100 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0x7c, /* 01111100 */ -+ 0x38, /* 00111000 */ -+ 0x10, /* 00010000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 4 0x04 '^D' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x7c, /* 01111100 */ -+ 0xfe, /* 11111110 */ -+ 0x7c, /* 01111100 */ -+ 0x38, /* 00111000 */ -+ 0x10, /* 00010000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 5 0x05 '^E' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x3c, /* 00111100 */ -+ 0xe7, /* 11100111 */ -+ 0xe7, /* 11100111 */ -+ 0xe7, /* 11100111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 6 0x06 '^F' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x7e, /* 01111110 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 7 0x07 '^G' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 8 0x08 '^H' */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xe7, /* 11100111 */ -+ 0xc3, /* 11000011 */ -+ 0xc3, /* 11000011 */ -+ 0xe7, /* 11100111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ -+ /* 9 0x09 '^I' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0x42, /* 01000010 */ -+ 0x42, /* 01000010 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 10 0x0a '^J' */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xc3, /* 11000011 */ -+ 0x99, /* 10011001 */ -+ 0xbd, /* 10111101 */ -+ 0xbd, /* 10111101 */ -+ 0x99, /* 10011001 */ -+ 0xc3, /* 11000011 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ -+ /* 11 0x0b '^K' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1e, /* 00011110 */ -+ 0x0e, /* 00001110 */ -+ 0x1a, /* 00011010 */ -+ 0x32, /* 00110010 */ -+ 0x78, /* 01111000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x78, /* 01111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 12 0x0c '^L' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 13 0x0d '^M' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3f, /* 00111111 */ -+ 0x33, /* 00110011 */ -+ 0x3f, /* 00111111 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x70, /* 01110000 */ -+ 0xf0, /* 11110000 */ -+ 0xe0, /* 11100000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 14 0x0e '^N' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7f, /* 01111111 */ -+ 0x63, /* 01100011 */ -+ 0x7f, /* 01111111 */ -+ 0x63, /* 01100011 */ -+ 0x63, /* 01100011 */ -+ 0x63, /* 01100011 */ -+ 0x63, /* 01100011 */ -+ 0x67, /* 01100111 */ -+ 0xe7, /* 11100111 */ -+ 0xe6, /* 11100110 */ -+ 0xc0, /* 11000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 15 0x0f '^O' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xdb, /* 11011011 */ -+ 0x3c, /* 00111100 */ -+ 0xe7, /* 11100111 */ -+ 0x3c, /* 00111100 */ -+ 0xdb, /* 11011011 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 16 0x10 '^P' */ -+ 0x00, /* 00000000 */ -+ 0x80, /* 10000000 */ -+ 0xc0, /* 11000000 */ -+ 0xe0, /* 11100000 */ -+ 0xf0, /* 11110000 */ -+ 0xf8, /* 11111000 */ -+ 0xfe, /* 11111110 */ -+ 0xf8, /* 11111000 */ -+ 0xf0, /* 11110000 */ -+ 0xe0, /* 11100000 */ -+ 0xc0, /* 11000000 */ -+ 0x80, /* 10000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 17 0x11 '^Q' */ -+ 0x00, /* 00000000 */ -+ 0x02, /* 00000010 */ -+ 0x06, /* 00000110 */ -+ 0x0e, /* 00001110 */ -+ 0x1e, /* 00011110 */ -+ 0x3e, /* 00111110 */ -+ 0xfe, /* 11111110 */ -+ 0x3e, /* 00111110 */ -+ 0x1e, /* 00011110 */ -+ 0x0e, /* 00001110 */ -+ 0x06, /* 00000110 */ -+ 0x02, /* 00000010 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 18 0x12 '^R' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 19 0x13 '^S' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 20 0x14 '^T' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7f, /* 01111111 */ -+ 0xdb, /* 11011011 */ -+ 0xdb, /* 11011011 */ -+ 0xdb, /* 11011011 */ -+ 0x7b, /* 01111011 */ -+ 0x1b, /* 00011011 */ -+ 0x1b, /* 00011011 */ -+ 0x1b, /* 00011011 */ -+ 0x1b, /* 00011011 */ -+ 0x1b, /* 00011011 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 21 0x15 '^U' */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0x60, /* 01100000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x0c, /* 00001100 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 22 0x16 '^V' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 23 0x17 '^W' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 24 0x18 '^X' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 25 0x19 '^Y' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 26 0x1a '^Z' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0xfe, /* 11111110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 27 0x1b '^[' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xfe, /* 11111110 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 28 0x1c '^\' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 29 0x1d '^]' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x28, /* 00101000 */ -+ 0x6c, /* 01101100 */ -+ 0xfe, /* 11111110 */ -+ 0x6c, /* 01101100 */ -+ 0x28, /* 00101000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 30 0x1e '^^' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x38, /* 00111000 */ -+ 0x7c, /* 01111100 */ -+ 0x7c, /* 01111100 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 31 0x1f '^_' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0x7c, /* 01111100 */ -+ 0x7c, /* 01111100 */ -+ 0x38, /* 00111000 */ -+ 0x38, /* 00111000 */ -+ 0x10, /* 00010000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 32 0x20 ' ' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 33 0x21 '!' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x3c, /* 00111100 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 34 0x22 '"' */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x24, /* 00100100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 35 0x23 '#' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0xfe, /* 11111110 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0xfe, /* 11111110 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 36 0x24 '$' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc2, /* 11000010 */ -+ 0xc0, /* 11000000 */ -+ 0x7c, /* 01111100 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x86, /* 10000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 37 0x25 '%' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc2, /* 11000010 */ -+ 0xc6, /* 11000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xc6, /* 11000110 */ -+ 0x86, /* 10000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 38 0x26 '&' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 39 0x27 ''' */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 40 0x28 '(' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 41 0x29 ')' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 42 0x2a '*' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0xff, /* 11111111 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 43 0x2b '+' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 44 0x2c ',' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 45 0x2d '-' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 46 0x2e '.' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 47 0x2f '/' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x02, /* 00000010 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xc0, /* 11000000 */ -+ 0x80, /* 10000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 48 0x30 '0' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 49 0x31 '1' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x38, /* 00111000 */ -+ 0x78, /* 01111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 50 0x32 '2' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 51 0x33 '3' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x3c, /* 00111100 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 52 0x34 '4' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x0c, /* 00001100 */ -+ 0x1c, /* 00011100 */ -+ 0x3c, /* 00111100 */ -+ 0x6c, /* 01101100 */ -+ 0xcc, /* 11001100 */ -+ 0xfe, /* 11111110 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x1e, /* 00011110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 53 0x35 '5' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xfc, /* 11111100 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 54 0x36 '6' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x60, /* 01100000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xfc, /* 11111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 55 0x37 '7' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 56 0x38 '8' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 57 0x39 '9' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7e, /* 01111110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x78, /* 01111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 58 0x3a ':' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 59 0x3b ';' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 60 0x3c '<' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x06, /* 00000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 61 0x3d '=' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 62 0x3e '>' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 63 0x3f '?' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 64 0x40 '@' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xde, /* 11011110 */ -+ 0xde, /* 11011110 */ -+ 0xde, /* 11011110 */ -+ 0xdc, /* 11011100 */ -+ 0xc0, /* 11000000 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 65 0x41 'A' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 66 0x42 'B' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfc, /* 11111100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x7c, /* 01111100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0xfc, /* 11111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 67 0x43 'C' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0xc2, /* 11000010 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc2, /* 11000010 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 68 0x44 'D' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xf8, /* 11111000 */ -+ 0x6c, /* 01101100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x6c, /* 01101100 */ -+ 0xf8, /* 11111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 69 0x45 'E' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x66, /* 01100110 */ -+ 0x62, /* 01100010 */ -+ 0x68, /* 01101000 */ -+ 0x78, /* 01111000 */ -+ 0x68, /* 01101000 */ -+ 0x60, /* 01100000 */ -+ 0x62, /* 01100010 */ -+ 0x66, /* 01100110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 70 0x46 'F' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x66, /* 01100110 */ -+ 0x62, /* 01100010 */ -+ 0x68, /* 01101000 */ -+ 0x78, /* 01111000 */ -+ 0x68, /* 01101000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0xf0, /* 11110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 71 0x47 'G' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0xc2, /* 11000010 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xde, /* 11011110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x66, /* 01100110 */ -+ 0x3a, /* 00111010 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 72 0x48 'H' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 73 0x49 'I' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 74 0x4a 'J' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1e, /* 00011110 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x78, /* 01111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 75 0x4b 'K' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xe6, /* 11100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x6c, /* 01101100 */ -+ 0x78, /* 01111000 */ -+ 0x78, /* 01111000 */ -+ 0x6c, /* 01101100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0xe6, /* 11100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 76 0x4c 'L' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xf0, /* 11110000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x62, /* 01100010 */ -+ 0x66, /* 01100110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 77 0x4d 'M' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xee, /* 11101110 */ -+ 0xfe, /* 11111110 */ -+ 0xfe, /* 11111110 */ -+ 0xd6, /* 11010110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 78 0x4e 'N' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xe6, /* 11100110 */ -+ 0xf6, /* 11110110 */ -+ 0xfe, /* 11111110 */ -+ 0xde, /* 11011110 */ -+ 0xce, /* 11001110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 79 0x4f 'O' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 80 0x50 'P' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfc, /* 11111100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x7c, /* 01111100 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0xf0, /* 11110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 81 0x51 'Q' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xd6, /* 11010110 */ -+ 0xde, /* 11011110 */ -+ 0x7c, /* 01111100 */ -+ 0x0c, /* 00001100 */ -+ 0x0e, /* 00001110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 82 0x52 'R' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfc, /* 11111100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x7c, /* 01111100 */ -+ 0x6c, /* 01101100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0xe6, /* 11100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 83 0x53 'S' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x60, /* 01100000 */ -+ 0x38, /* 00111000 */ -+ 0x0c, /* 00001100 */ -+ 0x06, /* 00000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 84 0x54 'T' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x7e, /* 01111110 */ -+ 0x5a, /* 01011010 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 85 0x55 'U' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 86 0x56 'V' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x10, /* 00010000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 87 0x57 'W' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xfe, /* 11111110 */ -+ 0xee, /* 11101110 */ -+ 0x6c, /* 01101100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 88 0x58 'X' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x7c, /* 01111100 */ -+ 0x38, /* 00111000 */ -+ 0x38, /* 00111000 */ -+ 0x7c, /* 01111100 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 89 0x59 'Y' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 90 0x5a 'Z' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0x86, /* 10000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xc2, /* 11000010 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 91 0x5b '[' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 92 0x5c '\' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x80, /* 10000000 */ -+ 0xc0, /* 11000000 */ -+ 0xe0, /* 11100000 */ -+ 0x70, /* 01110000 */ -+ 0x38, /* 00111000 */ -+ 0x1c, /* 00011100 */ -+ 0x0e, /* 00001110 */ -+ 0x06, /* 00000110 */ -+ 0x02, /* 00000010 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 93 0x5d ']' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 94 0x5e '^' */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 95 0x5f '_' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 96 0x60 '`' */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 97 0x61 'a' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x78, /* 01111000 */ -+ 0x0c, /* 00001100 */ -+ 0x7c, /* 01111100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 98 0x62 'b' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xe0, /* 11100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x78, /* 01111000 */ -+ 0x6c, /* 01101100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 99 0x63 'c' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 100 0x64 'd' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1c, /* 00011100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x3c, /* 00111100 */ -+ 0x6c, /* 01101100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 101 0x65 'e' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 102 0x66 'f' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1c, /* 00011100 */ -+ 0x36, /* 00110110 */ -+ 0x32, /* 00110010 */ -+ 0x30, /* 00110000 */ -+ 0x78, /* 01111000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x78, /* 01111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 103 0x67 'g' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x7c, /* 01111100 */ -+ 0x0c, /* 00001100 */ -+ 0xcc, /* 11001100 */ -+ 0x78, /* 01111000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 104 0x68 'h' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xe0, /* 11100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x6c, /* 01101100 */ -+ 0x76, /* 01110110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0xe6, /* 11100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 105 0x69 'i' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 106 0x6a 'j' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x00, /* 00000000 */ -+ 0x0e, /* 00001110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ -+ /* 107 0x6b 'k' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xe0, /* 11100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x66, /* 01100110 */ -+ 0x6c, /* 01101100 */ -+ 0x78, /* 01111000 */ -+ 0x78, /* 01111000 */ -+ 0x6c, /* 01101100 */ -+ 0x66, /* 01100110 */ -+ 0xe6, /* 11100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 108 0x6c 'l' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 109 0x6d 'm' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xec, /* 11101100 */ -+ 0xfe, /* 11111110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 110 0x6e 'n' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xdc, /* 11011100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 111 0x6f 'o' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 112 0x70 'p' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xdc, /* 11011100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x7c, /* 01111100 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0xf0, /* 11110000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 113 0x71 'q' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x7c, /* 01111100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x1e, /* 00011110 */ -+ 0x00, /* 00000000 */ -+ -+ /* 114 0x72 'r' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xdc, /* 11011100 */ -+ 0x76, /* 01110110 */ -+ 0x66, /* 01100110 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0xf0, /* 11110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 115 0x73 's' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0x60, /* 01100000 */ -+ 0x38, /* 00111000 */ -+ 0x0c, /* 00001100 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 116 0x74 't' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0xfc, /* 11111100 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x36, /* 00110110 */ -+ 0x1c, /* 00011100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 117 0x75 'u' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 118 0x76 'v' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 119 0x77 'w' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xd6, /* 11010110 */ -+ 0xfe, /* 11111110 */ -+ 0x6c, /* 01101100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 120 0x78 'x' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x38, /* 00111000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 121 0x79 'y' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7e, /* 01111110 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0xf8, /* 11111000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 122 0x7a 'z' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xcc, /* 11001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 123 0x7b '{' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x0e, /* 00001110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x70, /* 01110000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x0e, /* 00001110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 124 0x7c '|' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 125 0x7d '}' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x70, /* 01110000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x0e, /* 00001110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x70, /* 01110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 126 0x7e '~' */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 127 0x7f '' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 128 0x80 '€' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0xc2, /* 11000010 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc2, /* 11000010 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x70, /* 01110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 129 0x81 '' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xcc, /* 11001100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 130 0x82 '‚' */ -+ 0x00, /* 00000000 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 131 0x83 'ƒ' */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x00, /* 00000000 */ -+ 0x78, /* 01111000 */ -+ 0x0c, /* 00001100 */ -+ 0x7c, /* 01111100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 132 0x84 '„' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xcc, /* 11001100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x78, /* 01111000 */ -+ 0x0c, /* 00001100 */ -+ 0x7c, /* 01111100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 133 0x85 '…' */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x78, /* 01111000 */ -+ 0x0c, /* 00001100 */ -+ 0x7c, /* 01111100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 134 0x86 '†' */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x00, /* 00000000 */ -+ 0x78, /* 01111000 */ -+ 0x0c, /* 00001100 */ -+ 0x7c, /* 01111100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 135 0x87 '‡' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x18, /* 00011000 */ -+ 0x70, /* 01110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 136 0x88 'ˆ' */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 137 0x89 '‰' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 138 0x8a 'Š' */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 139 0x8b '‹' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 140 0x8c 'Œ' */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 141 0x8d '' */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 142 0x8e 'Ž' */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 143 0x8f '' */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 144 0x90 '' */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x66, /* 01100110 */ -+ 0x62, /* 01100010 */ -+ 0x68, /* 01101000 */ -+ 0x78, /* 01111000 */ -+ 0x68, /* 01101000 */ -+ 0x62, /* 01100010 */ -+ 0x66, /* 01100110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 145 0x91 '‘' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xec, /* 11101100 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x7e, /* 01111110 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0x6e, /* 01101110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 146 0x92 '’' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3e, /* 00111110 */ -+ 0x6c, /* 01101100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xfe, /* 11111110 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xce, /* 11001110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 147 0x93 '“' */ -+ 0x00, /* 00000000 */ -+ 0x10, /* 00010000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 148 0x94 '”' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 149 0x95 '•' */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 150 0x96 '–' */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x78, /* 01111000 */ -+ 0xcc, /* 11001100 */ -+ 0x00, /* 00000000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 151 0x97 '—' */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 152 0x98 '˜' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7e, /* 01111110 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x78, /* 01111000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 153 0x99 '™' */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 154 0x9a 'š' */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 155 0x9b '›' */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 156 0x9c 'œ' */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x64, /* 01100100 */ -+ 0x60, /* 01100000 */ -+ 0xf0, /* 11110000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0xe6, /* 11100110 */ -+ 0xfc, /* 11111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 157 0x9d '' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 158 0x9e 'ž' */ -+ 0x00, /* 00000000 */ -+ 0xf8, /* 11111000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xf8, /* 11111000 */ -+ 0xc4, /* 11000100 */ -+ 0xcc, /* 11001100 */ -+ 0xde, /* 11011110 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 159 0x9f 'Ÿ' */ -+ 0x00, /* 00000000 */ -+ 0x0e, /* 00001110 */ -+ 0x1b, /* 00011011 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xd8, /* 11011000 */ -+ 0x70, /* 01110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 160 0xa0 ' ' */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x00, /* 00000000 */ -+ 0x78, /* 01111000 */ -+ 0x0c, /* 00001100 */ -+ 0x7c, /* 01111100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 161 0xa1 '¡' */ -+ 0x00, /* 00000000 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 162 0xa2 '¢' */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 163 0xa3 '£' */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x00, /* 00000000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 164 0xa4 '¤' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0x00, /* 00000000 */ -+ 0xdc, /* 11011100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 165 0xa5 '¥' */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0x00, /* 00000000 */ -+ 0xc6, /* 11000110 */ -+ 0xe6, /* 11100110 */ -+ 0xf6, /* 11110110 */ -+ 0xfe, /* 11111110 */ -+ 0xde, /* 11011110 */ -+ 0xce, /* 11001110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 166 0xa6 '¦' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x3e, /* 00111110 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 167 0xa7 '§' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 168 0xa8 '¨' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xc0, /* 11000000 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x7c, /* 01111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 169 0xa9 '©' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 170 0xaa 'ª' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 171 0xab '«' */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0xe0, /* 11100000 */ -+ 0x62, /* 01100010 */ -+ 0x66, /* 01100110 */ -+ 0x6c, /* 01101100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xdc, /* 11011100 */ -+ 0x86, /* 10000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x3e, /* 00111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 172 0xac '¬' */ -+ 0x00, /* 00000000 */ -+ 0x60, /* 01100000 */ -+ 0xe0, /* 11100000 */ -+ 0x62, /* 01100010 */ -+ 0x66, /* 01100110 */ -+ 0x6c, /* 01101100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x66, /* 01100110 */ -+ 0xce, /* 11001110 */ -+ 0x9a, /* 10011010 */ -+ 0x3f, /* 00111111 */ -+ 0x06, /* 00000110 */ -+ 0x06, /* 00000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 173 0xad '­' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x3c, /* 00111100 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 174 0xae '®' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x36, /* 00110110 */ -+ 0x6c, /* 01101100 */ -+ 0xd8, /* 11011000 */ -+ 0x6c, /* 01101100 */ -+ 0x36, /* 00110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 175 0xaf '¯' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xd8, /* 11011000 */ -+ 0x6c, /* 01101100 */ -+ 0x36, /* 00110110 */ -+ 0x6c, /* 01101100 */ -+ 0xd8, /* 11011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 176 0xb0 '°' */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ 0x11, /* 00010001 */ -+ 0x44, /* 01000100 */ -+ -+ /* 177 0xb1 '±' */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ 0x55, /* 01010101 */ -+ 0xaa, /* 10101010 */ -+ -+ /* 178 0xb2 '²' */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ 0xdd, /* 11011101 */ -+ 0x77, /* 01110111 */ -+ -+ /* 179 0xb3 '³' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 180 0xb4 '´' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xf8, /* 11111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 181 0xb5 'µ' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xf8, /* 11111000 */ -+ 0x18, /* 00011000 */ -+ 0xf8, /* 11111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 182 0xb6 '¶' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xf6, /* 11110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 183 0xb7 '·' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 184 0xb8 '¸' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xf8, /* 11111000 */ -+ 0x18, /* 00011000 */ -+ 0xf8, /* 11111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 185 0xb9 '¹' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xf6, /* 11110110 */ -+ 0x06, /* 00000110 */ -+ 0xf6, /* 11110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 186 0xba 'º' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 187 0xbb '»' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x06, /* 00000110 */ -+ 0xf6, /* 11110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 188 0xbc '¼' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xf6, /* 11110110 */ -+ 0x06, /* 00000110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 189 0xbd '½' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 190 0xbe '¾' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xf8, /* 11111000 */ -+ 0x18, /* 00011000 */ -+ 0xf8, /* 11111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 191 0xbf '¿' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xf8, /* 11111000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 192 0xc0 'À' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x1f, /* 00011111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 193 0xc1 'Á' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 194 0xc2 'Â' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 195 0xc3 'Ã' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x1f, /* 00011111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 196 0xc4 'Ä' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 197 0xc5 'Å' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xff, /* 11111111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 198 0xc6 'Æ' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x1f, /* 00011111 */ -+ 0x18, /* 00011000 */ -+ 0x1f, /* 00011111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 199 0xc7 'Ç' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x37, /* 00110111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 200 0xc8 'È' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x37, /* 00110111 */ -+ 0x30, /* 00110000 */ -+ 0x3f, /* 00111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 201 0xc9 'É' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3f, /* 00111111 */ -+ 0x30, /* 00110000 */ -+ 0x37, /* 00110111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 202 0xca 'Ê' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xf7, /* 11110111 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 203 0xcb 'Ë' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0xf7, /* 11110111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 204 0xcc 'Ì' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x37, /* 00110111 */ -+ 0x30, /* 00110000 */ -+ 0x37, /* 00110111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 205 0xcd 'Í' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 206 0xce 'Î' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xf7, /* 11110111 */ -+ 0x00, /* 00000000 */ -+ 0xf7, /* 11110111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 207 0xcf 'Ï' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 208 0xd0 'Ð' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 209 0xd1 'Ñ' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 210 0xd2 'Ò' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 211 0xd3 'Ó' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x3f, /* 00111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 212 0xd4 'Ô' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x1f, /* 00011111 */ -+ 0x18, /* 00011000 */ -+ 0x1f, /* 00011111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 213 0xd5 'Õ' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1f, /* 00011111 */ -+ 0x18, /* 00011000 */ -+ 0x1f, /* 00011111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 214 0xd6 'Ö' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x3f, /* 00111111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 215 0xd7 '×' */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0xff, /* 11111111 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ -+ /* 216 0xd8 'Ø' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xff, /* 11111111 */ -+ 0x18, /* 00011000 */ -+ 0xff, /* 11111111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 217 0xd9 'Ù' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xf8, /* 11111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 218 0xda 'Ú' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1f, /* 00011111 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 219 0xdb 'Û' */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ -+ /* 220 0xdc 'Ü' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ -+ /* 221 0xdd 'Ý' */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ 0xf0, /* 11110000 */ -+ -+ /* 222 0xde 'Þ' */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ 0x0f, /* 00001111 */ -+ -+ /* 223 0xdf 'ß' */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0xff, /* 11111111 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 224 0xe0 'à' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0xdc, /* 11011100 */ -+ 0x76, /* 01110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 225 0xe1 'á' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x78, /* 01111000 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xcc, /* 11001100 */ -+ 0xd8, /* 11011000 */ -+ 0xcc, /* 11001100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xcc, /* 11001100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 226 0xe2 'â' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0xc0, /* 11000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 227 0xe3 'ã' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 228 0xe4 'ä' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 229 0xe5 'å' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0x70, /* 01110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 230 0xe6 'æ' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x7c, /* 01111100 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0xc0, /* 11000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 231 0xe7 'ç' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 232 0xe8 'è' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 233 0xe9 'é' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xfe, /* 11111110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 234 0xea 'ê' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0xee, /* 11101110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 235 0xeb 'ë' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1e, /* 00011110 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x3e, /* 00111110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x66, /* 01100110 */ -+ 0x3c, /* 00111100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 236 0xec 'ì' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0xdb, /* 11011011 */ -+ 0xdb, /* 11011011 */ -+ 0xdb, /* 11011011 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 237 0xed 'í' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x03, /* 00000011 */ -+ 0x06, /* 00000110 */ -+ 0x7e, /* 01111110 */ -+ 0xdb, /* 11011011 */ -+ 0xdb, /* 11011011 */ -+ 0xf3, /* 11110011 */ -+ 0x7e, /* 01111110 */ -+ 0x60, /* 01100000 */ -+ 0xc0, /* 11000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 238 0xee 'î' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x1c, /* 00011100 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x7c, /* 01111100 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x1c, /* 00011100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 239 0xef 'ï' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7c, /* 01111100 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0xc6, /* 11000110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 240 0xf0 'ð' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0xfe, /* 11111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 241 0xf1 'ñ' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x7e, /* 01111110 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 242 0xf2 'ò' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x06, /* 00000110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 243 0xf3 'ó' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x30, /* 00110000 */ -+ 0x60, /* 01100000 */ -+ 0x30, /* 00110000 */ -+ 0x18, /* 00011000 */ -+ 0x0c, /* 00001100 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 244 0xf4 'ô' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x0e, /* 00001110 */ -+ 0x1b, /* 00011011 */ -+ 0x1b, /* 00011011 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ -+ /* 245 0xf5 'õ' */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0xd8, /* 11011000 */ -+ 0x70, /* 01110000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 246 0xf6 'ö' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 247 0xf7 '÷' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0x00, /* 00000000 */ -+ 0x76, /* 01110110 */ -+ 0xdc, /* 11011100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 248 0xf8 'ø' */ -+ 0x00, /* 00000000 */ -+ 0x38, /* 00111000 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x38, /* 00111000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 249 0xf9 'ù' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 250 0xfa 'ú' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x18, /* 00011000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 251 0xfb 'û' */ -+ 0x00, /* 00000000 */ -+ 0x0f, /* 00001111 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0x0c, /* 00001100 */ -+ 0xec, /* 11101100 */ -+ 0x6c, /* 01101100 */ -+ 0x6c, /* 01101100 */ -+ 0x3c, /* 00111100 */ -+ 0x1c, /* 00011100 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 252 0xfc 'ü' */ -+ 0x00, /* 00000000 */ -+ 0x6c, /* 01101100 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x36, /* 00110110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 253 0xfd 'ý' */ -+ 0x00, /* 00000000 */ -+ 0x3c, /* 00111100 */ -+ 0x66, /* 01100110 */ -+ 0x0c, /* 00001100 */ -+ 0x18, /* 00011000 */ -+ 0x32, /* 00110010 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 254 0xfe 'þ' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x7e, /* 01111110 */ -+ 0x7e, /* 01111110 */ -+ 0x7e, /* 01111110 */ -+ 0x7e, /* 01111110 */ -+ 0x7e, /* 01111110 */ -+ 0x7e, /* 01111110 */ -+ 0x7e, /* 01111110 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+ /* 255 0xff 'ÿ' */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ 0x00, /* 00000000 */ -+ -+// 256 Ā ; -+0x00,0x38,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 257 ā ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x20,0x20,0x20,0x20,0x22,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 258 Ă ; -+,0x08,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 259 ă ; -+,0x00,0x00,0x00,0x00,0x14,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 260 Ą ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 261 ą ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 262 Ć ; -+,0x08,0x10,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 263 ć ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 264 Ĉ ; -+,0x10,0x28,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 265 ĉ ; -+,0x00,0x00,0x00,0x08,0x1c,0x02,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 266 Ċ ; -+,0x00,0x10,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 267 ċ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 268 Č ; -+,0x28,0x10,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 269 č ; -+,0x00,0x00,0x00,0x00,0x14,0x0c,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 270 Ď ; -+,0x28,0x10,0x00,0x70,0x48,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 271 ď ; -+,0x00,0x00,0x00,0x18,0x1c,0x10,0x10,0x50,0x50,0x50,0xd0,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 272 Đ ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x44,0x64,0x44,0x44,0x44,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 273 đ ; -+,0x00,0x00,0x00,0x10,0x10,0x38,0x10,0x50,0x50,0x50,0xd0,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 274 Ē ; -+,0x00,0x70,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 275 ē ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x12,0x21,0x31,0x20,0x20,0x11,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 276 Ĕ ; -+,0x10,0x30,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 277 ĕ ; -+,0x00,0x00,0x00,0x00,0x12,0x0c,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 278 Ė ; -+,0x00,0x30,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 279 ė ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 280 Ę ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 281 ę ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 282 Ě ; -+,0x30,0x30,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 283 ě ; -+,0x00,0x00,0x00,0x00,0x10,0x0c,0x00,0x12,0x21,0x33,0x20,0x20,0x11,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 284 Ĝ ; -+,0x10,0x28,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 285 ĝ ; -+,0x00,0x00,0x00,0x08,0x1c,0x02,0x00,0x17,0x22,0x32,0x12,0x10,0x00,0x3f,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 286 Ğ ; -+,0x08,0x38,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 287 ğ ; -+,0x00,0x00,0x00,0x00,0x12,0x0c,0x00,0x17,0x22,0x32,0x12,0x10,0x00,0x3f,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 288 Ġ ; -+,0x00,0x10,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 289 ġ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x17,0x22,0x32,0x12,0x10,0x00,0x3f,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 290 Ģ ; -+,0x00,0x00,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 291 ģ ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x00,0x17,0x22,0x32,0x12,0x10,0x00,0x3f,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 292 Ĥ ; -+,0x10,0x28,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 293 ĥ ; -+,0x0c,0x12,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 294 Ħ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x7c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 295 ħ ; -+,0x00,0x00,0x00,0x40,0x40,0xe0,0x40,0x70,0x58,0x58,0x58,0x58,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 296 Ĩ ; -+,0x00,0x7c,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 297 ĩ ; -+,0x00,0x00,0x00,0x00,0x60,0x18,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 298 Ī ; -+,0x00,0x7c,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 299 ī ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 300 Ĭ ; -+,0x04,0x38,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 301 ĭ ; -+,0x00,0x00,0x00,0x00,0x48,0x30,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 302 Į ; -+,0x00,0x00,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 303 į ; -+,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 304 İ ; -+,0x00,0x10,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 305 ı ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 306 IJ ; -+,0x00,0x00,0x00,0x6c,0x6c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x5c,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 307 ij ; -+,0x00,0x00,0x00,0x50,0x10,0x00,0x00,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 308 Ĵ ; -+,0x1c,0x12,0x00,0x1c,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 309 ĵ ; -+,0x00,0x00,0x00,0x10,0x28,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 310 Ķ ; -+,0x00,0x00,0x00,0x6c,0x68,0x68,0x70,0x70,0x70,0x70,0x78,0x68,0x6c,0x6c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 311 ķ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x30,0x32,0x34,0x38,0x3c,0x34,0x32,0x33,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 312 ĸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x30,0x34,0x3c,0x36,0x32,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 313 Ĺ ; -+,0x20,0x20,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 314 ĺ ; -+,0x0c,0x10,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 315 Ļ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 316 ļ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 317 Ľ ; -+,0x00,0x00,0x00,0x78,0x58,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 318 ľ ; -+,0x00,0x00,0x00,0x34,0x36,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 319 Ŀ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 320 ŀ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x13,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 321 Ł ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x60,0x60,0xc0,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 322 ł ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x18,0x30,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 323 Ń ; -+,0x08,0x10,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 324 ń ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x04,0x32,0x21,0x21,0x21,0x21,0x21,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 325 Ņ ; -+,0x00,0x00,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 326 ņ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 327 Ň ; -+,0x28,0x10,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 328 ň ; -+,0x00,0x00,0x00,0x00,0x18,0x0c,0x04,0x32,0x21,0x21,0x21,0x21,0x21,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 329 ʼn ; -+,0x00,0x00,0x80,0xc0,0x00,0x40,0x00,0x70,0x78,0x58,0x58,0x58,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 330 Ŋ ; -+,0x00,0x00,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 331 ŋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 332 Ō ; -+,0x00,0x38,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 333 ō ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x33,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 334 Ŏ ; -+,0x08,0x30,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 335 ŏ ; -+,0x00,0x00,0x00,0x00,0x12,0x0c,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 336 Ő ; -+,0x1c,0x18,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 337 ő ; -+,0x00,0x00,0x00,0x05,0x0b,0x04,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 338 Œ ; -+,0x00,0x00,0x00,0x70,0x60,0x60,0x60,0x70,0x70,0x60,0x60,0x60,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 339 œ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x68,0x68,0x60,0x60,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 340 Ŕ ; -+,0x20,0x20,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 341 ŕ ; -+,0x00,0x00,0x00,0x04,0x08,0x10,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 342 Ŗ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 343 ŗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 344 Ř ; -+,0x20,0x30,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 345 ř ; -+,0x00,0x00,0x00,0x00,0x28,0x10,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 346 Ś ; -+,0x10,0x20,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 347 ś ; -+,0x00,0x00,0x00,0x02,0x04,0x00,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 348 Ŝ ; -+,0x20,0x30,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 349 ŝ ; -+,0x00,0x00,0x00,0x18,0x1c,0x20,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 350 Ş ; -+,0x00,0x00,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 351 ş ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 352 Š ; -+,0x00,0x0c,0x00,0x02,0x21,0x20,0x20,0x18,0x06,0x03,0x01,0x01,0x21,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 353 š ; -+,0x00,0x00,0x00,0x38,0x10,0x00,0x24,0x20,0x30,0x1c,0x06,0x26,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 354 Ţ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 355 ţ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 356 Ť ; -+,0x30,0x30,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 357 ť ; -+,0x00,0x00,0x00,0x08,0x0c,0x00,0x38,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 358 Ŧ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x70,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 359 ŧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x30,0x38,0x20,0x20,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 360 Ũ ; -+,0x00,0x38,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 361 ũ ; -+,0x00,0x00,0x00,0x00,0x10,0x0c,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 362 Ū ; -+,0x00,0x38,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 363 ū ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x13,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 364 Ŭ ; -+,0x08,0x30,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 365 ŭ ; -+,0x00,0x00,0x00,0x00,0x34,0x08,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 366 Ů ; -+,0x20,0x10,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 367 ů ; -+,0x00,0x00,0x00,0x10,0x10,0x08,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 368 Ű ; -+,0x1c,0x18,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 369 ű ; -+,0x00,0x00,0x00,0x05,0x0b,0x04,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 370 Ų ; -+,0x00,0x00,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 371 ų ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 372 Ŵ ; -+,0x18,0x18,0x00,0x59,0x59,0x48,0x6a,0x6a,0x3c,0x3e,0x36,0x34,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 373 ŵ ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 374 Ŷ ; -+,0x10,0x28,0x00,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 375 ŷ ; -+,0x00,0x00,0x00,0x0c,0x0e,0x00,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 376 Ÿ ; -+,0x12,0x12,0x00,0x31,0x20,0x10,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 377 Ź ; -+,0x10,0x10,0x00,0x78,0x48,0x18,0x10,0x10,0x30,0x20,0x60,0x60,0x40,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 378 ź ; -+,0x00,0x00,0x00,0x02,0x04,0x08,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 379 Ż ; -+,0x00,0x30,0x00,0x78,0x48,0x18,0x10,0x10,0x30,0x20,0x60,0x60,0x40,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 380 ż ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 381 Ž ; -+,0x30,0x30,0x00,0x78,0x48,0x18,0x10,0x10,0x30,0x20,0x60,0x60,0x40,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 382 ž ; -+,0x00,0x00,0x00,0x00,0x14,0x08,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 383 ſ ; -+,0x00,0x00,0x00,0x06,0x12,0x10,0x10,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 384 ƀ ; -+,0x00,0x00,0x00,0x20,0x20,0x78,0x20,0x3e,0x33,0x21,0x21,0x21,0x21,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 385 Ɓ ; -+,0x00,0x00,0x00,0xf0,0x58,0x48,0xc8,0x48,0x78,0x48,0x48,0x48,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 386 Ƃ ; -+,0x00,0x00,0x00,0x78,0x68,0x60,0x60,0x60,0x78,0x68,0x6c,0x6c,0x68,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 387 ƃ ; -+,0x00,0x00,0x00,0x3e,0x20,0x20,0x20,0x3e,0x33,0x21,0x21,0x21,0x21,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 388 Ƅ ; -+,0x00,0x00,0x00,0x20,0x60,0xe0,0x60,0x60,0x78,0x68,0x6c,0x6c,0x68,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 389 ƅ ; -+,0x00,0x00,0x00,0x00,0x20,0x60,0x20,0x3e,0x33,0x21,0x21,0x21,0x21,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 390 Ɔ ; -+,0x00,0x00,0x00,0x30,0x58,0x08,0x0c,0x0c,0x0c,0x0c,0x0c,0x08,0x48,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 391 Ƈ ; -+,0x00,0x06,0x04,0x3c,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 392 ƈ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x50,0x50,0x40,0xc0,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 393 Ɖ ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x44,0x64,0x44,0x44,0x44,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 394 Ɗ ; -+,0x00,0x00,0x00,0xf0,0x48,0x4c,0xc4,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 395 Ƌ ; -+,0x00,0x00,0x00,0x78,0x18,0x18,0x18,0x18,0x78,0x58,0x58,0x58,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 396 ƌ ; -+,0x00,0x00,0x00,0x1f,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 397 ƍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x58,0x58,0x50,0x50,0x60,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 398 Ǝ ; -+,0x00,0x00,0x00,0x78,0x58,0x08,0x08,0x48,0x78,0x48,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 399 Ə ; -+,0x00,0x00,0x00,0x38,0x48,0x0c,0x04,0x04,0x04,0x04,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 400 Ɛ ; -+,0x00,0x00,0x00,0x1b,0x31,0x30,0x30,0x10,0x1c,0x30,0x20,0x20,0x30,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 401 Ƒ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 402 ƒ ; -+,0x00,0x00,0x18,0x10,0x10,0x20,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 403 Ɠ ; -+,0x00,0x06,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 404 Ɣ ; -+,0x00,0x00,0x00,0x6c,0x68,0x68,0x28,0x30,0x30,0x30,0x30,0x38,0x38,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 405 ƕ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x74,0x54,0x50,0x50,0x54,0x50,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 406 Ɩ ; -+,0x00,0x00,0x00,0x10,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 407 Ɨ ; -+,0x00,0x00,0x00,0x38,0x18,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 408 Ƙ ; -+,0x00,0x00,0x00,0x60,0x6a,0x6a,0x70,0x70,0x70,0x70,0x78,0x68,0x6c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 409 ƙ ; -+,0x00,0x00,0x00,0x04,0x10,0x30,0x30,0x32,0x34,0x38,0x3c,0x34,0x32,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 410 ƚ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x78,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 411 ƛ ; -+,0x00,0x00,0x00,0x20,0x30,0x08,0x18,0x08,0x08,0x18,0x14,0x30,0x22,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 412 Ɯ ; -+,0x00,0x00,0x00,0x5b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x4b,0x5b,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 413 Ɲ ; -+,0x00,0x00,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 414 ƞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 415 Ɵ ; -+,0x00,0x00,0x00,0x38,0x68,0x44,0x44,0x44,0x7c,0x4c,0x44,0x44,0x6c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 416 Ơ ; -+,0x00,0x04,0x04,0x30,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 417 ơ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 418 Ƣ ; -+,0x00,0x00,0x00,0x33,0x6d,0x4d,0x45,0x45,0x45,0x45,0x45,0x45,0x4d,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 419 ƣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x54,0x54,0x54,0x54,0x54,0x54,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 420 Ƥ ; -+,0x00,0x00,0x00,0xe0,0x58,0x48,0xc8,0x48,0x58,0x60,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 421 ƥ ; -+,0x00,0x00,0x00,0x04,0x10,0x30,0x30,0x3f,0x31,0x31,0x31,0x31,0x31,0x3a,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 422 Ʀ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x70,0x58,0x58,0x70,0x50,0x50,0x78,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 423 Ƨ ; -+,0x00,0x00,0x00,0x30,0x50,0x50,0x10,0x30,0x30,0x60,0x40,0x48,0x48,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 424 ƨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x06,0x0c,0x18,0x30,0x20,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 425 Ʃ ; -+,0x00,0x00,0x00,0x58,0x48,0x60,0x20,0x30,0x10,0x10,0x20,0x20,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 426 ƪ ; -+,0x00,0x00,0x00,0x60,0x20,0xb0,0x30,0x70,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 427 ƫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 428 Ƭ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 429 ƭ ; -+,0x00,0x00,0x00,0x04,0x00,0x20,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 430 Ʈ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 431 Ư ; -+,0x00,0x02,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 432 ư ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 433 Ʊ ; -+,0x00,0x00,0x00,0x6c,0x6c,0x28,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 434 Ʋ ; -+,0x00,0x00,0x00,0x40,0x48,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 435 Ƴ ; -+,0x00,0x00,0x00,0x66,0x64,0xb4,0x14,0x10,0x18,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 436 ƴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x50,0x40,0x70,0x20,0x20,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 437 Ƶ ; -+,0x00,0x00,0x00,0x78,0x48,0x18,0x10,0x10,0x70,0x20,0x60,0x60,0x40,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 438 ƶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x04,0x0c,0x3e,0x10,0x30,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 439 Ʒ ; -+,0x00,0x00,0x00,0x78,0x50,0x50,0x10,0x30,0x30,0x18,0x18,0x18,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 440 Ƹ ; -+,0x00,0x00,0x00,0x3f,0x21,0x31,0x10,0x18,0x38,0x60,0x60,0x60,0x20,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 441 ƹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x00,0x00,0x00,0x30,0x60,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 442 ƺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x02,0x04,0x0e,0x03,0x03,0x0e,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 443 ƻ ; -+,0x00,0x00,0x00,0x0c,0x26,0x03,0x03,0x02,0x0f,0x04,0x00,0x00,0x10,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 444 Ƽ ; -+,0x00,0x00,0x00,0x38,0x20,0x20,0x20,0x30,0x18,0x08,0x08,0x08,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 445 ƽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x20,0x20,0x3c,0x06,0x02,0x02,0x02,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 446 ƾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x10,0x0c,0x06,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 447 ƿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x39,0x31,0x31,0x31,0x32,0x34,0x38,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 448 ǀ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 449 ǁ ; -+,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 450 ǂ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x78,0x20,0x20,0x78,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 451 ǃ ; -+,0x00,0x00,0x00,0x10,0x18,0x18,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 452 DŽ ; -+,0x01,0x00,0x00,0x71,0x4a,0x4c,0x44,0x44,0x44,0x44,0x45,0x45,0x49,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 453 Dž ; -+,0x00,0x00,0x00,0x70,0x49,0x4d,0x44,0x46,0x44,0x44,0x45,0x45,0x49,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 454 dž ; -+,0x00,0x00,0x00,0x10,0x16,0x12,0x10,0x57,0x52,0x52,0xd2,0x54,0x54,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 455 LJ ; -+,0x00,0x00,0x00,0x63,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x4d,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 456 Lj ; -+,0x00,0x00,0x00,0x62,0x40,0x40,0x40,0x42,0x42,0x42,0x42,0x42,0x4a,0x7a,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 457 lj ; -+,0x00,0x00,0x00,0x50,0x50,0x40,0x40,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 458 NJ ; -+,0x00,0x00,0x00,0x4d,0x65,0x65,0x25,0x35,0x15,0x1d,0x0d,0x0d,0x4f,0x47,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 459 Nj ; -+,0x00,0x00,0x00,0x4d,0x65,0x64,0x24,0x35,0x15,0x1d,0x0d,0x0d,0x4d,0x45,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 460 nj ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x74,0x54,0x54,0x54,0x54,0x54,0x54,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 461 Ǎ ; -+,0x28,0x10,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 462 ǎ ; -+,0x00,0x00,0x00,0x00,0x10,0x0c,0x00,0x1e,0x20,0x20,0x20,0x20,0x22,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 463 Ǐ ; -+,0x04,0x38,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 464 ǐ ; -+,0x00,0x00,0x00,0x00,0x14,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 465 Ǒ ; -+,0x28,0x30,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 466 ǒ ; -+,0x00,0x00,0x00,0x00,0x12,0x0c,0x00,0x12,0x21,0x21,0x21,0x21,0x33,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 467 Ǔ ; -+,0x28,0x10,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 468 ǔ ; -+,0x00,0x00,0x00,0x00,0x18,0x0c,0x22,0x00,0x00,0x00,0x00,0x00,0x13,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 469 Ǖ ; -+,0x28,0x28,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 470 ǖ ; -+,0x00,0x00,0x00,0x1c,0x00,0x12,0x22,0x00,0x00,0x00,0x00,0x00,0x13,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 471 Ǘ ; -+,0x00,0x28,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 472 ǘ ; -+,0x00,0x00,0x04,0x0c,0x00,0x12,0x22,0x00,0x00,0x00,0x00,0x00,0x13,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 473 Ǚ ; -+,0x10,0x28,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 474 ǚ ; -+,0x00,0x00,0x12,0x0c,0x00,0x12,0x22,0x00,0x00,0x00,0x00,0x00,0x13,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 475 Ǜ ; -+,0x00,0x28,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 476 ǜ ; -+,0x00,0x00,0x08,0x00,0x00,0x12,0x22,0x00,0x00,0x00,0x00,0x00,0x13,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 477 ǝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x02,0x03,0x03,0x32,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 478 Ǟ ; -+,0x00,0x28,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 479 ǟ ; -+,0x00,0x00,0x1e,0x00,0x32,0x00,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 480 Ǡ ; -+,0x00,0x10,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 481 ǡ ; -+,0x00,0x00,0x1e,0x00,0x08,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 482 Ǣ ; -+,0x00,0x1c,0x00,0x1e,0x1a,0x18,0x38,0x38,0x3e,0x38,0x58,0x58,0x58,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 483 ǣ ; -+,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x78,0x7c,0x38,0x70,0x70,0x50,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 484 Ǥ ; -+,0x00,0x00,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x4c,0x44,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 485 ǥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x50,0x50,0x40,0x40,0x70,0x50,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 486 Ǧ ; -+,0x28,0x10,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 487 ǧ ; -+,0x00,0x00,0x00,0x00,0x14,0x08,0x00,0x17,0x22,0x32,0x12,0x10,0x00,0x3f,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 488 Ǩ ; -+,0x08,0x30,0x00,0x6c,0x68,0x68,0x70,0x70,0x70,0x70,0x78,0x68,0x6c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 489 ǩ ; -+,0x04,0x38,0x00,0x30,0x30,0x30,0x30,0x32,0x34,0x38,0x3c,0x34,0x32,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 490 Ǫ ; -+,0x00,0x00,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 491 ǫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 492 Ǭ ; -+,0x00,0x38,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 493 ǭ ; -+,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 494 Ǯ ; -+,0x20,0x30,0x00,0x78,0x50,0x50,0x10,0x30,0x30,0x18,0x18,0x18,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 495 ǯ ; -+,0x00,0x00,0x00,0x00,0x28,0x18,0x00,0x7c,0x00,0x00,0x00,0x1c,0x04,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 496 ǰ ; -+,0x00,0x00,0x00,0x00,0x28,0x30,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 497 DZ ; -+,0x00,0x00,0x00,0x71,0x4a,0x4c,0x44,0x44,0x44,0x44,0x45,0x45,0x49,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 498 Dz ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x46,0x44,0x44,0x45,0x45,0x49,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 499 dz ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x57,0x52,0x52,0xd2,0x54,0x54,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 500 Ǵ ; -+,0x00,0x00,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 501 ǵ ; -+,0x00,0x00,0x00,0x02,0x04,0x08,0x00,0x17,0x22,0x32,0x12,0x10,0x00,0x3f,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 502 Ƕ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4d,0x7d,0x4d,0x4d,0x4d,0x4d,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 503 Ƿ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x00,0x08,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 504 Ǹ ; -+,0x30,0x10,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 505 ǹ ; -+,0x00,0x00,0x00,0x10,0x18,0x04,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 506 Ǻ ; -+,0x20,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 507 ǻ ; -+,0x00,0x00,0x00,0x14,0x10,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 508 Ǽ ; -+,0x04,0x08,0x00,0x1e,0x1a,0x18,0x38,0x38,0x3e,0x38,0x58,0x58,0x58,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 509 ǽ ; -+,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x78,0x7c,0x38,0x70,0x70,0x50,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 510 Ǿ ; -+,0x00,0x00,0x00,0x34,0x68,0x4c,0x4c,0x54,0x44,0x54,0x64,0x64,0x6c,0x68,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 511 ǿ ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x00,0x12,0x23,0x25,0x21,0x29,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 512 Ȁ ; -+,0x60,0x70,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 513 ȁ ; -+,0x00,0x00,0x00,0x50,0x68,0x14,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 514 Ȃ ; -+,0x30,0x28,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 515 ȃ ; -+,0x00,0x00,0x00,0x08,0x14,0x00,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 516 Ȅ ; -+,0x60,0x60,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 517 ȅ ; -+,0x00,0x00,0x00,0x50,0x68,0x14,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 518 Ȇ ; -+,0x30,0x10,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 519 ȇ ; -+,0x00,0x00,0x00,0x08,0x14,0x00,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 520 Ȉ ; -+,0x20,0x90,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 521 ȉ ; -+,0x00,0x00,0x00,0x20,0xb0,0x40,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 522 Ȋ ; -+,0x38,0x04,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 523 ȋ ; -+,0x00,0x00,0x00,0x30,0x48,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 524 Ȍ ; -+,0x60,0x30,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 525 ȍ ; -+,0x00,0x00,0x00,0x50,0x68,0x14,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 526 Ȏ ; -+,0x30,0x08,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 527 ȏ ; -+,0x00,0x00,0x00,0x0c,0x12,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 528 Ȑ ; -+,0xe0,0x60,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 529 ȑ ; -+,0x00,0x00,0x00,0x20,0x90,0x08,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 530 Ȓ ; -+,0x30,0x30,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 531 ȓ ; -+,0x00,0x00,0x00,0x10,0x28,0x00,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 532 Ȕ ; -+,0x70,0x30,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 533 ȕ ; -+,0x00,0x00,0x00,0x10,0x68,0x04,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 534 Ȗ ; -+,0x10,0x28,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 535 ȗ ; -+,0x00,0x00,0x00,0x08,0x16,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 536 Ș ; -+,0x00,0x00,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 537 ș ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 538 Ț ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 539 ț ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 540 Ȝ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x48,0x08,0x10,0x10,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 541 ȝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x40,0x00,0x10,0x28,0x08,0x10,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 542 Ȟ ; -+,0x28,0x10,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 543 ȟ ; -+,0x40,0x38,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 544 Ƞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 545 ȡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 546 Ȣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 547 ȣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 548 Ȥ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x50,0x40,0x10,0x20,0x20,0x28,0x48,0x78,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 549 ȥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x10,0x20,0x00,0x08,0x78,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 550 Ȧ ; -+,0x00,0x10,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 551 ȧ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 552 Ȩ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 553 ȩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 554 Ȫ ; -+,0x08,0x28,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 555 ȫ ; -+,0x00,0x00,0x1e,0x00,0x12,0x12,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 556 Ȭ ; -+,0x00,0x38,0x10,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 557 ȭ ; -+,0x00,0x00,0x1e,0x00,0x18,0x04,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 558 Ȯ ; -+,0x00,0x10,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 559 ȯ ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 560 Ȱ ; -+,0x00,0x10,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 561 ȱ ; -+,0x00,0x00,0x1e,0x00,0x0c,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 562 Ȳ ; -+,0x00,0x38,0x00,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 563 ȳ ; -+,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 564 ȴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 565 ȵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x50,0x50,0x50,0x50,0x50,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 566 ȶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 567 ȷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 568 ȸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 569 ȹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 570 Ⱥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 571 Ȼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 572 ȼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 573 Ƚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 574 Ⱦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 575 ȿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 576 ɀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 577 Ɂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 578 ɂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 579 Ƀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 580 Ʉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 581 Ʌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 582 Ɇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 583 ɇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 584 Ɉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 585 ɉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 586 Ɋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 587 ɋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 588 Ɍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 589 ɍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 590 Ɏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 591 ɏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 592 ɐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x32,0x32,0x30,0x30,0x32,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 593 ɑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x20,0x20,0x20,0x20,0x22,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 594 ɒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x58,0x48,0x58,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 595 ɓ ; -+,0x00,0x00,0x00,0x04,0x00,0x20,0x20,0x3e,0x33,0x21,0x21,0x21,0x21,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 596 ɔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x06,0x02,0x03,0x02,0x22,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 597 ɕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 598 ɖ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 599 ɗ ; -+,0x00,0x00,0x00,0x0c,0x14,0x10,0x10,0x50,0x50,0x50,0xd0,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 600 ɘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x22,0x33,0x01,0x03,0x22,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 601 ə ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x02,0x03,0x03,0x32,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 602 ɚ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x74,0x34,0x30,0x10,0x10,0x10,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 603 ɛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 604 ɜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x02,0x06,0x14,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 605 ɝ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x74,0x14,0x30,0x60,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 606 ɞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x02,0x1c,0x02,0x23,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 607 ɟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 608 ɠ ; -+,0x00,0x00,0x00,0x0c,0x14,0x10,0x10,0x50,0x50,0x50,0xd0,0xd0,0x50,0x70,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 609 ɡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0x20,0x20,0x22,0x00,0x00,0x22,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 610 ɢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0x20,0x60,0x63,0x21,0x21,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 611 ɣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x30,0x12,0x18,0x0c,0x0c,0x0c,0x06,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 612 ɤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x0e,0x03,0x03,0x02,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 613 ɥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x23,0x23,0x23,0x23,0x33,0x1f,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 614 ɦ ; -+,0x00,0x00,0x00,0x04,0x10,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 615 ɧ ; -+,0x00,0x00,0x00,0x04,0x10,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 616 ɨ ; -+,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x10,0x30,0x78,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 617 ɩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 618 ɪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 619 ɫ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x30,0x78,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 620 ɬ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x30,0x30,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 621 ɭ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 622 ɮ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x78,0x40,0x40,0x50,0x50,0x48,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 623 ɯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x54,0x54,0x54,0x54,0x54,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 624 ɰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x54,0x54,0x54,0x54,0x54,0x7c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 625 ɱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x54,0x54,0x54,0x54,0x54,0x54,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 626 ɲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 627 ɳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 628 ɴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x30,0x28,0x2c,0x27,0x23,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 629 ɵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x21,0x21,0x7f,0x21,0x21,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 630 ɶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x50,0x50,0xd8,0x50,0x50,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 631 ɷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 632 ɸ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x30,0x78,0x78,0x78,0x7c,0x78,0x78,0x78,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 633 ɹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x18,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 634 ɺ ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 635 ɻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x18,0x68,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 636 ɼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 637 ɽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 638 ɾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 639 ɿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd0,0x10,0x18,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 640 ʀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x32,0x32,0x3c,0x34,0x32,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 641 ʁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x12,0x0a,0x1a,0x32,0x32,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 642 ʂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 643 ʃ ; -+,0x00,0x00,0x00,0x06,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 644 ʄ ; -+,0x00,0x00,0x00,0x01,0x04,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x1e,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 645 ʅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 646 ʆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 647 ʇ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 648 ʈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 649 ʉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0xf8,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 650 ʊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x50,0x48,0x48,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 651 ʋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 652 ʌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x16,0x02,0x22,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 653 ʍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x78,0x78,0x3c,0x54,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 654 ʎ ; -+,0x00,0x00,0x00,0x01,0x07,0x04,0x08,0x08,0x0c,0x14,0x16,0x02,0x22,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 655 ʏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x10,0x0a,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 656 ʐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 657 ʑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 658 ʒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x00,0x00,0x1c,0x04,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 659 ʓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x02,0x04,0x08,0x1e,0x03,0x03,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 660 ʔ ; -+,0x00,0x00,0x00,0x10,0x22,0x02,0x03,0x03,0x02,0x0e,0x1c,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 661 ʕ ; -+,0x00,0x00,0x00,0x04,0x02,0x20,0x20,0x20,0x20,0x38,0x0c,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 662 ʖ ; -+,0x00,0x00,0x00,0x18,0x18,0x18,0x18,0x1c,0x06,0x03,0x03,0x02,0x22,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 663 ʗ ; -+,0x00,0x00,0x00,0x04,0x22,0x20,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x20,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 664 ʘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x21,0x21,0x2d,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 665 ʙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0x11,0x12,0x13,0x11,0x11,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 666 ʚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x20,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 667 ʛ ; -+,0x00,0x00,0x00,0x0c,0x14,0x10,0x10,0x50,0x40,0xc0,0xd0,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 668 ʜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x58,0x50,0x50,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 669 ʝ ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x3c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 670 ʞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x19,0x0d,0x07,0x07,0x09,0x11,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 671 ʟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 672 ʠ ; -+,0x00,0x00,0x00,0x0c,0x14,0x10,0x10,0x50,0x50,0x50,0xd0,0xd0,0x50,0x70,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 673 ʡ ; -+,0x00,0x00,0x00,0x10,0x22,0x02,0x03,0x03,0x02,0x0e,0x1c,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 674 ʢ ; -+,0x00,0x00,0x00,0x04,0x02,0x20,0x20,0x20,0x20,0x38,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 675 ʣ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x56,0x54,0x54,0xdc,0x58,0x58,0x7a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 676 ʤ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x5e,0x54,0x50,0xd4,0x5e,0x52,0x72,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 677 ʥ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x56,0x54,0x54,0xdc,0x58,0x58,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 678 ʦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x68,0x60,0x70,0x50,0x58,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 679 ʧ ; -+,0x00,0x00,0x00,0x08,0x10,0x30,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 680 ʨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x54,0x54,0x50,0x70,0x50,0x50,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 681 ʩ ; -+,0x00,0x00,0x00,0x20,0x40,0x40,0x40,0x5c,0x54,0x54,0x54,0x54,0x54,0x54,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 682 ʪ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x68,0x60,0x70,0x50,0x58,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 683 ʫ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x58,0x50,0x50,0x70,0x60,0x60,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 684 ʬ ; -+,0x00,0x00,0x00,0x2c,0x25,0x0c,0x12,0x00,0x00,0x00,0x25,0x24,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 685 ʭ ; -+,0x00,0x00,0x00,0x3f,0x21,0x00,0x00,0x00,0x00,0x00,0x3f,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 686 ʮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa8,0x28,0x28,0x28,0x28,0x28,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 687 ʯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa8,0x28,0x28,0x28,0x28,0x28,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 688 ʰ ; -+,0x00,0x00,0x00,0x40,0x00,0x38,0x28,0x08,0x08,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 689 ʱ ; -+,0x00,0x00,0x00,0x10,0x00,0x38,0x28,0x08,0x08,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 690 ʲ ; -+,0x00,0x00,0x00,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 691 ʳ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 692 ʴ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 693 ʵ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 694 ʶ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x30,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 695 ʷ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x2c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 696 ʸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 697 ʹ ; -+,0x00,0x00,0x10,0x10,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 698 ʺ ; -+,0x00,0x00,0x12,0x12,0x36,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 699 ʻ ; -+,0x00,0x00,0x10,0x20,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 700 ʼ ; -+,0x00,0x00,0x10,0x38,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 701 ʽ ; -+,0x00,0x00,0x18,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 702 ʾ ; -+,0x00,0x00,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 703 ʿ ; -+,0x00,0x00,0x10,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 704 ˀ ; -+,0x00,0x08,0x08,0x18,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 705 ˁ ; -+,0x08,0x40,0x40,0x20,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 706 ˂ ; -+,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 707 ˃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 708 ˄ ; -+,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 709 ˅ ; -+,0x00,0x00,0x00,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 710 ˆ ; -+,0x00,0x00,0x18,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 711 ˇ ; -+,0x00,0x24,0x24,0x14,0x14,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 712 ˈ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 713 ˉ ; -+,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 714 ˊ ; -+,0x00,0x04,0x06,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 715 ˋ ; -+,0x00,0x10,0x30,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 716 ˌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 717 ˍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 718 ˎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 719 ˏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 720 ː ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 721 ˑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 722 ˒ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 723 ˓ ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 724 ˔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 725 ˕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 726 ˖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 727 ˗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 728 ˘ ; -+,0x00,0x00,0x00,0x00,0x24,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 729 ˙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 730 ˚ ; -+,0x00,0x00,0x00,0x28,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 731 ˛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 732 ˜ ; -+,0x00,0x00,0x20,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 733 ˝ ; -+,0x00,0x00,0x00,0x12,0x34,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 734 ˞ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x44,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 735 ˟ ; -+,0x00,0x00,0x24,0x18,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 736 ˠ ; -+,0x00,0x00,0x00,0x20,0x20,0x00,0x10,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 737 ˡ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 738 ˢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 739 ˣ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 740 ˤ ; -+,0x00,0x00,0x08,0x00,0x00,0x20,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 741 ˥ ; -+,0x00,0x7e,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 742 ˦ ; -+,0x00,0x00,0x01,0x3f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 743 ˧ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 744 ˨ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x7f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 745 ˩ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 746 ˪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 747 ˫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 748 ˬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 749 ˭ ; -+,0x00,0x00,0x00,0x3f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 750 ˮ ; -+,0x00,0x00,0x00,0x22,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 751 ˯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 752 ˰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 753 ˱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 754 ˲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 755 ˳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 756 ˴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 757 ˵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 758 ˶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 759 ˷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 760 ˸ ; -+,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 761 ˹ ; -+,0x00,0x00,0x70,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 762 ˺ ; -+,0x00,0x00,0x70,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 763 ˻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 764 ˼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 765 ˽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 766 ˾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 767 ˿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 768 ̀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 769 ́ ; -+,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 770 ̂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 771 ̃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 772 ̄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 773 ̅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 774 ̆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 775 ̇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 776 ̈ ; -+,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 777 ̉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 778 ̊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 779 ̋ ; -+,0x00,0x00,0x00,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 780 ̌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 781 ̍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 782 ̎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 783 ̏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 784 ̐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 785 ̑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 786 ̒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 787 ̓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 788 ̔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 789 ̕ ; -+,0x00,0x00,0x00,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 790 ̖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 791 ̗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 792 ̘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 793 ̙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 794 ̚ ; -+,0x00,0x00,0xe0,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 795 ̛ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 796 ̜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 797 ̝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 798 ̞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 799 ̟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 800 ̠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 801 ̡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 802 ̢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 803 ̣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 804 ̤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 805 ̥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 806 ̦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 807 ̧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 808 ̨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 809 ̩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 810 ̪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 811 ̫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 812 ̬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 813 ̭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 814 ̮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 815 ̯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 816 ̰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 817 ̱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 818 ̲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 819 ̳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 820 ̴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 821 ̵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 822 ̶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 823 ̷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 824 ̸ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 825 ̹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 826 ̺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 827 ̻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 828 ̼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 829 ̽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 830 ̾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 831 ̿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 832 ̀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 833 ́ ; -+,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 834 ͂ ; -+,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 835 ̓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 836 ̈́ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 837 ͅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 838 ͆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 839 ͇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 840 ͈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 841 ͉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 842 ͊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 843 ͋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 844 ͌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 845 ͍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 846 ͎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 847 ͏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 848 ͐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 849 ͑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 850 ͒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 851 ͓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 852 ͔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 853 ͕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 854 ͖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 855 ͗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 856 ͘ ; -+,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 857 ͙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 858 ͚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 859 ͛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 860 ͜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 861 ͝ ; -+,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 862 ͞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 863 ͟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 864 ͠ ; -+,0x00,0x00,0x00,0x80,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 865 ͡ ; -+,0x00,0x00,0x00,0xe0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 866 ͢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 867 ͣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 868 ͤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 869 ͥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 870 ͦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 871 ͧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 872 ͨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 873 ͩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 874 ͪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 875 ͫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 876 ͬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 877 ͭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 878 ͮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 879 ͯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 880 Ͱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 881 ͱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 882 Ͳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 883 ͳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 884 ʹ ; -+,0x00,0x00,0x20,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 885 ͵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 886 Ͷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 887 ͷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 888 ͸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 889 ͹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 890 ͺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 891 ͻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 892 ͼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 893 ͽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 894 ; ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 895 Ϳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 896 ΀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 897 ΁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 898 ΂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 899 ΃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 900 ΄ ; -+,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 901 ΅ ; -+,0x00,0x04,0x08,0x00,0x04,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 902 Ά ; -+,0x00,0x00,0x00,0x20,0x50,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 903 · ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 904 Έ ; -+,0x00,0x00,0x00,0x3c,0x72,0x90,0x10,0x14,0x1c,0x14,0x10,0x10,0x12,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 905 Ή ; -+,0x00,0x00,0x00,0x32,0x52,0x92,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 906 Ί ; -+,0x00,0x00,0x00,0x07,0x32,0x42,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 907 ΋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 908 Ό ; -+,0x00,0x00,0x00,0x58,0x64,0xa6,0x66,0x62,0x62,0x62,0x66,0x26,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 909 ΍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 910 Ύ ; -+,0x00,0x00,0x00,0x32,0x76,0xae,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 911 Ώ ; -+,0x00,0x00,0x00,0x14,0x66,0xa2,0x22,0x22,0x22,0x22,0x36,0x14,0x36,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 912 ΐ ; -+,0x00,0x08,0x10,0x00,0x00,0xc8,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 913 Α ; -+,0x00,0x08,0x18,0x18,0x14,0x14,0x24,0x3c,0x22,0x22,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 914 Β ; -+,0x00,0x7c,0x42,0x42,0x42,0x44,0x7c,0x44,0x42,0x42,0x42,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 915 Γ ; -+,0x00,0x7e,0x42,0x42,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 916 Δ ; -+,0x00,0x08,0x18,0x18,0x14,0x14,0x24,0x22,0x22,0x42,0x42,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 917 Ε ; -+,0x00,0x7e,0x42,0x42,0x40,0x44,0x7c,0x44,0x40,0x42,0x42,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 918 Ζ ; -+,0x00,0x7e,0x42,0x44,0x04,0x08,0x08,0x10,0x10,0x22,0x22,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 919 Η ; -+,0x00,0x63,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 920 Θ ; -+,0x00,0x1c,0x24,0x22,0x42,0x66,0x7e,0x66,0x42,0x22,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 921 Ι ; -+,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 922 Κ ; -+,0x00,0x6c,0x48,0x50,0x50,0x60,0x60,0x50,0x50,0x48,0x48,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 923 Λ ; -+,0x00,0x08,0x18,0x18,0x14,0x14,0x24,0x24,0x22,0x22,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 924 Μ ; -+,0x00,0x43,0x62,0x62,0x66,0x66,0x56,0x56,0x5a,0x5a,0x4a,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 925 Ν ; -+,0x00,0x43,0x62,0x62,0x52,0x52,0x4a,0x4a,0x46,0x46,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 926 Ξ ; -+,0x00,0x3e,0x22,0x22,0x00,0x14,0x1c,0x14,0x00,0x22,0x22,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 927 Ο ; -+,0x00,0x1c,0x24,0x22,0x42,0x42,0x42,0x42,0x42,0x22,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 928 Π ; -+,0x00,0x7f,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 929 Ρ ; -+,0x00,0x7c,0x42,0x42,0x42,0x42,0x7c,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 930 ΢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 931 Σ ; -+,0x00,0x7e,0x42,0x22,0x20,0x10,0x10,0x10,0x20,0x22,0x42,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 932 Τ ; -+,0x00,0x7f,0x49,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 933 Υ ; -+,0x00,0x04,0x1c,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 934 Φ ; -+,0x00,0x18,0x08,0x3c,0x2a,0x4a,0x4a,0x4a,0x2a,0x3c,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 935 Χ ; -+,0x00,0x63,0x22,0x24,0x14,0x18,0x08,0x18,0x14,0x24,0x22,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 936 Ψ ; -+,0x00,0x59,0x4a,0x2a,0x2a,0x2a,0x2a,0x3c,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 937 Ω ; -+,0x00,0x1c,0x24,0x22,0x42,0x42,0x42,0x42,0x22,0x65,0x55,0x77,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 938 Ϊ ; -+,0x00,0x28,0x20,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 939 Ϋ ; -+,0x00,0x30,0x00,0x48,0xe4,0xf4,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 940 ά ; -+,0x00,0x00,0x10,0x20,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 941 έ ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 942 ή ; -+,0x00,0x00,0x10,0x20,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 943 ί ; -+,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 944 ΰ ; -+,0x00,0x01,0x02,0x00,0x01,0x09,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 945 α ; -+,0x00,0x00,0x00,0x1c,0x2c,0x24,0x24,0x24,0x24,0x24,0x2e,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 946 β ; -+,0x00,0x18,0x24,0x24,0x28,0x38,0x2c,0x24,0x24,0x24,0x34,0x38,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 947 γ ; -+,0x00,0x00,0x00,0x32,0x34,0x54,0x0c,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 948 δ ; -+,0x00,0x18,0x14,0x10,0x08,0x18,0x14,0x24,0x24,0x24,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 949 ε ; -+,0x00,0x00,0x00,0x18,0x14,0x10,0x10,0x08,0x10,0x10,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 950 ζ ; -+,0x00,0x10,0x14,0x1c,0x18,0x10,0x10,0x20,0x20,0x20,0x10,0x1c,0x04,0x04,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 951 η ; -+,0x00,0x00,0x00,0x0c,0x34,0x34,0x14,0x14,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 952 θ ; -+,0x00,0x18,0x14,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 953 ι ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 954 κ ; -+,0x00,0x00,0x00,0x26,0x24,0x28,0x38,0x30,0x28,0x28,0x24,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 955 λ ; -+,0x10,0x30,0x10,0x08,0x08,0x08,0x18,0x18,0x18,0x16,0x16,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 956 μ ; -+,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x3e,0x3c,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 957 ν ; -+,0x00,0x00,0x00,0x24,0x22,0x14,0x14,0x14,0x14,0x14,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 958 ξ ; -+,0x00,0x10,0x20,0x18,0x20,0x20,0x18,0x10,0x20,0x20,0x20,0x1c,0x04,0x14,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 959 ο ; -+,0x00,0x00,0x00,0x18,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 960 π ; -+,0x00,0x00,0x00,0x3e,0x54,0x14,0x14,0x14,0x14,0x14,0x26,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 961 ρ ; -+,0x00,0x00,0x00,0x18,0x24,0x24,0x24,0x24,0x24,0x24,0x34,0x38,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 962 ς ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x10,0x20,0x00,0x00,0x00,0x20,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 963 σ ; -+,0x00,0x00,0x00,0x1e,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 964 τ ; -+,0x00,0x00,0x00,0x1c,0x28,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 965 υ ; -+,0x00,0x00,0x00,0x24,0x34,0x14,0x14,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 966 φ ; -+,0x00,0x08,0x08,0x1c,0x2c,0x2a,0x2a,0x2a,0x2a,0x2a,0x2c,0x1c,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 967 χ ; -+,0x00,0x22,0x34,0x14,0x14,0x18,0x08,0x08,0x18,0x18,0x24,0x26,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 968 ψ ; -+,0x00,0x08,0x08,0x2c,0x6c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x1c,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 969 ω ; -+,0x00,0x00,0x00,0x14,0x24,0x2a,0x2a,0x2a,0x2a,0x2a,0x3c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 970 ϊ ; -+,0x00,0x00,0x00,0x00,0xd8,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 971 ϋ ; -+,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 972 ό ; -+,0x00,0x00,0x00,0x04,0x08,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 973 ύ ; -+,0x00,0x00,0x00,0x06,0x08,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 974 ώ ; -+,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 975 Ϗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 976 ϐ ; -+,0x00,0x00,0x00,0x10,0x50,0x00,0x40,0x10,0x50,0x58,0x58,0x58,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 977 ϑ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x38,0x58,0x58,0x58,0x58,0x50,0x50,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 978 ϒ ; -+,0x00,0x00,0x00,0xc8,0x7c,0x2c,0x20,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 979 ϓ ; -+,0x00,0x00,0x00,0x66,0x56,0x92,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 980 ϔ ; -+,0x00,0x70,0x00,0xc8,0x7c,0x2c,0x20,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 981 ϕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x78,0x48,0x58,0x5c,0x58,0x58,0x78,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 982 ϖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x48,0x54,0x54,0x54,0x54,0x54,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 983 ϗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x10,0x30,0x30,0x60,0x58,0x58,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 984 Ϙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 985 ϙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 986 Ϛ ; -+,0x00,0x00,0x00,0x00,0x3f,0x20,0x40,0x40,0x40,0x40,0x20,0x3e,0x1f,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 987 ϛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x20,0x00,0x00,0x40,0x20,0x3c,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 988 Ϝ ; -+,0x00,0x00,0x00,0x00,0x48,0x40,0x40,0x40,0x70,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 989 ϝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x20,0x20,0x00,0x1c,0x38,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 990 Ϟ ; -+,0x00,0x20,0x10,0x10,0x30,0x20,0x20,0x60,0x40,0x78,0x08,0x10,0x10,0x10,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 991 ϟ ; -+,0x00,0x00,0x00,0x10,0x20,0x20,0x20,0x60,0x60,0x78,0x08,0x10,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 992 Ϡ ; -+,0x00,0x00,0x00,0x60,0x10,0x10,0x38,0x38,0x68,0x68,0x68,0x48,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 993 ϡ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x30,0x30,0x50,0x20,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 994 Ϣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 995 ϣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 996 Ϥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 997 ϥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 998 Ϧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 999 ϧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1000 Ϩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1001 ϩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1002 Ϫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1003 ϫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1004 Ϭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1005 ϭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1006 Ϯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1007 ϯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1008 ϰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x10,0x30,0x30,0x60,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1009 ϱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x58,0x58,0x58,0x50,0x70,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1010 ϲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x20,0x20,0x20,0x30,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1011 ϳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1012 ϴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1013 ϵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x20,0x30,0x20,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1014 ϶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1015 Ϸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1016 ϸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1017 Ϲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1018 Ϻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1019 ϻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1020 ϼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1021 Ͻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1022 Ͼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1023 Ͽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1024 Ѐ ; -+,0x20,0x30,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1025 Ё ; -+,0x24,0x00,0x7e,0x42,0x42,0x44,0x7c,0x44,0x40,0x42,0x42,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1026 Ђ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x3c,0x34,0x34,0x36,0x36,0x36,0x36,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1027 Ѓ ; -+,0x10,0x20,0x00,0x78,0x48,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1028 Є ; -+,0x00,0x00,0x00,0x38,0x6c,0x44,0x40,0x40,0xf0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1029 Ѕ ; -+,0x00,0x00,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1030 І ; -+,0x00,0x00,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1031 Ї ; -+,0x00,0x64,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1032 Ј ; -+,0x00,0x00,0x00,0x1c,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1033 Љ ; -+,0x00,0x00,0x00,0x3c,0x2c,0x2c,0x2c,0x2c,0x2e,0x2d,0x2d,0x0d,0x6d,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1034 Њ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7e,0x4d,0x4d,0x4d,0x4d,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1035 Ћ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x38,0x3c,0x34,0x34,0x34,0x34,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1036 Ќ ; -+,0x10,0x10,0x00,0x6c,0x6c,0x60,0x70,0x70,0x70,0x70,0x78,0x68,0x68,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1037 Ѝ ; -+,0x20,0x10,0x00,0x6c,0x4c,0x4c,0x4c,0x5c,0x5c,0x6c,0x6c,0x6c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1038 Ў ; -+,0x00,0x28,0x10,0x64,0x64,0x68,0x28,0x28,0x28,0x30,0x10,0x10,0x50,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1039 Џ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x4c,0x7c,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1040 А ; -+,0x00,0x08,0x18,0x18,0x14,0x14,0x24,0x3c,0x22,0x22,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1041 Б ; -+,0x00,0x7e,0x42,0x42,0x40,0x40,0x7c,0x42,0x42,0x42,0x42,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1042 В ; -+,0x00,0x7c,0x42,0x42,0x42,0x42,0x7c,0x42,0x42,0x42,0x42,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1043 Г ; -+,0x00,0x7e,0x42,0x42,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1044 Д ; -+,0x00,0x3e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x22,0x7e,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1045 Е ; -+,0x00,0x7e,0x42,0x42,0x40,0x44,0x7c,0x44,0x40,0x42,0x42,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1046 Ж ; -+,0x00,0x7a,0x6d,0x2c,0x1c,0x18,0x1c,0x2c,0x2c,0x2a,0x2a,0x5b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1047 З ; -+,0x00,0x3c,0x22,0x22,0x02,0x02,0x0c,0x02,0x42,0x42,0x22,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1048 И ; -+,0x00,0x63,0x42,0x42,0x46,0x4e,0x5a,0x52,0x62,0x62,0x42,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1049 Й ; -+,0x14,0x77,0x5a,0x42,0x46,0x4e,0x5a,0x52,0x62,0x62,0x42,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1050 К ; -+,0x00,0x64,0x48,0x48,0x50,0x70,0x50,0x48,0x48,0x44,0x44,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1051 Л ; -+,0x00,0x3e,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x64,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1052 М ; -+,0x00,0x63,0x42,0x62,0x66,0x66,0x56,0x56,0x5a,0x4a,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1053 Н ; -+,0x00,0x63,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1054 О ; -+,0x00,0x1c,0x24,0x22,0x42,0x42,0x42,0x42,0x42,0x22,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1055 П ; -+,0x00,0x7e,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1056 Р ; -+,0x00,0x7c,0x42,0x42,0x42,0x42,0x7c,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1057 С ; -+,0x00,0x3e,0x26,0x42,0x40,0x40,0x40,0x40,0x40,0x42,0x22,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1058 Т ; -+,0x00,0x7f,0x49,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1059 У ; -+,0x00,0x33,0x22,0x22,0x12,0x12,0x14,0x0c,0x08,0x08,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1060 Ф ; -+,0x00,0x18,0x08,0x3e,0x4a,0x49,0x49,0x49,0x4a,0x3e,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1061 Х ; -+,0x00,0x63,0x22,0x24,0x14,0x18,0x08,0x18,0x14,0x24,0x22,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1062 Ц ; -+,0x00,0x66,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x7e,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1063 Ч ; -+,0x00,0x66,0x22,0x22,0x22,0x22,0x26,0x1e,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1064 Ш ; -+,0x00,0x7b,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1065 Щ ; -+,0x00,0x7b,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1066 Ъ ; -+,0x00,0x70,0x50,0x10,0x10,0x1e,0x12,0x11,0x11,0x11,0x12,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1067 Ы ; -+,0x00,0x63,0x42,0x42,0x42,0x7a,0x4a,0x46,0x46,0x46,0x4a,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1068 Ь ; -+,0x00,0x30,0x20,0x20,0x20,0x3c,0x22,0x22,0x22,0x22,0x22,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1069 Э ; -+,0x00,0x7c,0x62,0x42,0x01,0x01,0x0f,0x01,0x01,0x22,0x22,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1070 Ю ; -+,0x00,0x6e,0x52,0x51,0x51,0x51,0x71,0x51,0x51,0x51,0x52,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1071 Я ; -+,0x00,0x1f,0x12,0x22,0x22,0x12,0x1e,0x0a,0x1a,0x12,0x22,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1072 а ; -+,0x00,0x00,0x00,0x18,0x24,0x04,0x3c,0x2c,0x24,0x24,0x2e,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1073 б ; -+,0x04,0x1c,0x20,0x20,0x38,0x24,0x24,0x24,0x24,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1074 в ; -+,0x00,0x00,0x00,0x38,0x24,0x24,0x24,0x38,0x24,0x24,0x24,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1075 г ; -+,0x00,0x00,0x00,0x3c,0x24,0x20,0x20,0x20,0x20,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1076 д ; -+,0x00,0x00,0x00,0x1e,0x14,0x14,0x14,0x14,0x14,0x14,0x24,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1077 е ; -+,0x00,0x00,0x00,0x18,0x24,0x24,0x24,0x3c,0x20,0x20,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1078 ж ; -+,0x00,0x00,0x00,0x7a,0x2c,0x2c,0x1c,0x1c,0x2c,0x2c,0x2a,0x5a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1079 з ; -+,0x00,0x00,0x00,0x3c,0x34,0x24,0x04,0x0c,0x04,0x04,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1080 и ; -+,0x00,0x00,0x00,0x66,0x24,0x24,0x2c,0x2c,0x34,0x34,0x24,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1081 й ; -+,0x00,0x18,0x18,0x66,0x24,0x24,0x2c,0x2c,0x34,0x34,0x24,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1082 к ; -+,0x00,0x00,0x00,0x34,0x28,0x28,0x28,0x30,0x28,0x28,0x2a,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1083 л ; -+,0x00,0x00,0x00,0x3e,0x14,0x14,0x14,0x14,0x14,0x34,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1084 м ; -+,0x00,0x00,0x00,0x66,0x22,0x26,0x36,0x3a,0x3a,0x2a,0x22,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1085 н ; -+,0x00,0x00,0x00,0x36,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1086 о ; -+,0x00,0x00,0x00,0x18,0x14,0x24,0x24,0x24,0x24,0x24,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1087 п ; -+,0x00,0x00,0x00,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1088 р ; -+,0x00,0x00,0x00,0x38,0x34,0x24,0x24,0x24,0x24,0x34,0x38,0x20,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1089 с ; -+,0x00,0x00,0x00,0x18,0x24,0x24,0x20,0x20,0x20,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1090 т ; -+,0x00,0x00,0x00,0x3e,0x2a,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1091 у ; -+,0x00,0x00,0x00,0x36,0x24,0x24,0x14,0x14,0x18,0x18,0x08,0x08,0x10,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1092 ф ; -+,0x00,0x08,0x08,0x08,0x3c,0x3a,0x2a,0x2a,0x2a,0x2a,0x3a,0x3c,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1093 х ; -+,0x00,0x00,0x00,0x36,0x24,0x14,0x18,0x08,0x18,0x14,0x24,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1094 ц ; -+,0x00,0x00,0x00,0x36,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x3e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1095 ч ; -+,0x00,0x00,0x00,0x3c,0x24,0x24,0x24,0x1c,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1096 ш ; -+,0x00,0x00,0x00,0x7e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1097 щ ; -+,0x00,0x00,0x00,0x7e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x7e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1098 ъ ; -+,0x00,0x00,0x00,0x70,0x60,0x20,0x20,0x3c,0x24,0x24,0x24,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1099 ы ; -+,0x00,0x00,0x00,0x66,0x22,0x22,0x22,0x3a,0x2a,0x2a,0x2a,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1100 ь ; -+,0x00,0x00,0x00,0x30,0x20,0x20,0x20,0x3c,0x24,0x24,0x24,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1101 э ; -+,0x00,0x00,0x00,0x18,0x24,0x04,0x04,0x0c,0x04,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1102 ю ; -+,0x00,0x00,0x00,0x6c,0x2c,0x32,0x32,0x32,0x32,0x32,0x2c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1103 я ; -+,0x00,0x00,0x00,0x1e,0x14,0x14,0x14,0x1c,0x0c,0x14,0x34,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1104 ѐ ; -+,0x00,0x00,0x00,0x10,0x18,0x04,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1105 ё ; -+,0x00,0x18,0x00,0x18,0x24,0x24,0x24,0x3c,0x20,0x20,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1106 ђ ; -+,0x00,0x00,0x00,0x40,0x40,0x60,0x40,0x70,0x50,0x58,0x58,0x58,0x58,0x78,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1107 ѓ ; -+,0x00,0x00,0x00,0x04,0x08,0x10,0x00,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1108 є ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0x20,0x78,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1109 ѕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1110 і ; -+,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1111 ї ; -+,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1112 ј ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1113 љ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x10,0x10,0x1c,0x14,0x54,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1114 њ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0x7c,0x54,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1115 ћ ; -+,0x00,0x00,0x00,0x40,0x40,0x60,0x40,0x70,0x58,0x58,0x58,0x58,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1116 ќ ; -+,0x00,0x00,0x00,0x10,0x20,0x20,0x00,0x58,0x40,0x60,0x60,0x70,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1117 ѝ ; -+,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0x50,0x50,0x50,0x50,0x70,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1118 ў ; -+,0x00,0x00,0x00,0x00,0x12,0x1c,0x00,0x31,0x11,0x10,0x0a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1119 џ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x33,0x33,0x33,0x33,0x33,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1120 Ѡ ; -+,0x00,0x00,0x00,0x61,0x40,0x40,0x4c,0x48,0x48,0x48,0x48,0x6d,0x3f,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1121 ѡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1122 Ѣ ; -+,0x00,0x00,0x00,0x20,0x20,0xf8,0xa8,0x20,0x38,0x2c,0x2c,0x2c,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1123 ѣ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x70,0x20,0x20,0x20,0x38,0x28,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1124 Ѥ ; -+,0x00,0x00,0x00,0x66,0x69,0x79,0x70,0x70,0x7e,0x70,0x70,0x78,0x68,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1125 ѥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x54,0x70,0x78,0x70,0x54,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1126 Ѧ ; -+,0x00,0x00,0x00,0x10,0x10,0x30,0x30,0x18,0x38,0x38,0x48,0x48,0x5c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1127 ѧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x1e,0x0a,0x2a,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1128 Ѩ ; -+,0x00,0x00,0x00,0x64,0x44,0x46,0x46,0x46,0x6a,0x6f,0x47,0x4d,0x4d,0x7d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1129 ѩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x7c,0x5c,0x4c,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1130 Ѫ ; -+,0x00,0x00,0x00,0x3e,0x32,0x14,0x1c,0x08,0x1c,0x3e,0x2a,0x2a,0x6b,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1131 ѫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x30,0x38,0x78,0x5c,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1132 Ѭ ; -+,0x00,0x00,0x00,0x6f,0x44,0x46,0x43,0x43,0x7f,0x47,0x4f,0x4b,0x4b,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1133 ѭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x4a,0x4c,0x5e,0x5e,0x57,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1134 Ѯ ; -+,0x40,0x30,0x00,0x70,0x50,0x10,0x10,0x10,0x30,0x10,0x18,0x18,0x10,0x70,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1135 ѯ ; -+,0x00,0x00,0x00,0x00,0x12,0x0c,0x00,0x02,0x03,0x02,0x02,0x03,0x03,0x06,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1136 Ѱ ; -+,0x00,0x00,0x00,0x18,0x5a,0x5a,0x5a,0x5a,0x5a,0x5c,0x3c,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1137 ѱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x54,0x74,0x74,0x74,0x30,0x30,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1138 Ѳ ; -+,0x00,0x00,0x00,0x38,0x68,0x44,0x44,0x44,0x7c,0x4c,0x44,0x44,0x6c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1139 ѳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x21,0x21,0x7f,0x21,0x21,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1140 Ѵ ; -+,0x00,0x00,0x00,0x46,0x46,0x64,0x68,0x28,0x20,0x38,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1141 ѵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x23,0x30,0x10,0x14,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1142 Ѷ ; -+,0x60,0x30,0x20,0x46,0x46,0x64,0x68,0x28,0x20,0x38,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1143 ѷ ; -+,0x00,0x00,0x00,0x50,0x28,0x10,0x01,0x23,0x30,0x10,0x14,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1144 Ѹ ; -+,0x00,0x00,0x00,0x2a,0x66,0x47,0x45,0x47,0x47,0x47,0x44,0x44,0x66,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1145 ѹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x2d,0x5d,0x5d,0x4c,0x4e,0x4e,0x52,0x72,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1146 Ѻ ; -+,0x00,0x00,0x10,0x38,0x64,0x44,0x44,0x46,0x46,0x46,0x44,0x44,0x64,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1147 ѻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x1e,0x21,0x21,0x61,0x21,0x31,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1148 Ѽ ; -+,0x00,0x02,0x1e,0x71,0x40,0x40,0x4c,0x48,0x48,0x48,0x48,0x6d,0x3f,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1149 ѽ ; -+,0x00,0x00,0x00,0x08,0x20,0x20,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1150 Ѿ ; -+,0x00,0x00,0x1e,0x69,0x4c,0x40,0x4c,0x48,0x48,0x48,0x48,0x6d,0x3f,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1151 ѿ ; -+,0x00,0x00,0x00,0x78,0x10,0x30,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1152 Ҁ ; -+,0x00,0x00,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x3c,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1153 ҁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x20,0x60,0x60,0x20,0x20,0x13,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1154 ҂ ; -+,0x00,0x00,0x00,0x00,0x02,0x04,0x1c,0x0e,0x0a,0x38,0x1c,0x14,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1155 ҃ ; -+,0x00,0x00,0x00,0x02,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1156 ҄ ; -+,0x00,0x00,0x00,0x80,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1157 ҅ ; -+,0x00,0x00,0x00,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1158 ҆ ; -+,0x00,0x00,0x00,0x01,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1159 ҇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1160 ҈ ; -+,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1161 ҉ ; -+,0x08,0x08,0x00,0x21,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x21,0x21,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1162 Ҋ ; -+,0x2c,0x38,0x00,0x66,0x64,0x64,0x6c,0x6c,0x74,0x74,0x64,0x64,0x64,0x66,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1163 ҋ ; -+,0x00,0x00,0x00,0x50,0x70,0x00,0x00,0x58,0x50,0x50,0x50,0x70,0x50,0x58,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1164 Ҍ ; -+,0x00,0x00,0x00,0x60,0x40,0x60,0x40,0x40,0x70,0x58,0x48,0x48,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1165 ҍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x30,0x3e,0x33,0x33,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1166 Ҏ ; -+,0x00,0x00,0x00,0x60,0x58,0x48,0x48,0x58,0x58,0x68,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1167 ҏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x50,0x50,0x70,0x50,0x70,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1168 Ґ ; -+,0x00,0x00,0x08,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1169 ґ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1170 Ғ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x60,0x40,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1171 ғ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x30,0x38,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1172 Ҕ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x78,0x48,0x48,0x48,0x48,0x48,0x68,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1173 ҕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x30,0x36,0x33,0x31,0x31,0x31,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1174 Җ ; -+,0x00,0x00,0x00,0x4d,0x69,0x0a,0x2a,0x1a,0x1e,0x3a,0x2a,0x2b,0x29,0x4d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1175 җ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x30,0x38,0x38,0x3c,0x54,0x54,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1176 Ҙ ; -+,0x00,0x00,0x00,0x30,0x50,0x50,0x10,0x10,0x30,0x10,0x18,0x18,0x18,0x70,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1177 ҙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x04,0x0c,0x06,0x06,0x1c,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1178 Қ ; -+,0x00,0x00,0x00,0x6c,0x6c,0x60,0x70,0x70,0x70,0x70,0x78,0x68,0x68,0x6c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1179 қ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x40,0x60,0x60,0x70,0x50,0x50,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1180 Ҝ ; -+,0x00,0x00,0x00,0x6c,0x6c,0x60,0x70,0x70,0x70,0x70,0x78,0x68,0x68,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1181 ҝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x38,0x3c,0x3c,0x3e,0x32,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1182 Ҟ ; -+,0x00,0x00,0x00,0x6c,0x6c,0x60,0x70,0x70,0x70,0x70,0x78,0x68,0x68,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1183 ҟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x78,0x34,0x3c,0x36,0x32,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1184 Ҡ ; -+,0x00,0x00,0x00,0x76,0xb6,0xb4,0x38,0x38,0x38,0x38,0x3c,0x34,0x34,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1185 ҡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa8,0x30,0x20,0x30,0x30,0x38,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1186 Ң ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1187 ң ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0x70,0x50,0x50,0x50,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1188 Ҥ ; -+,0x00,0x00,0x00,0x6f,0x4d,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1189 ҥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x50,0x50,0x70,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1190 Ҧ ; -+,0x00,0x00,0x00,0x7c,0x4c,0x4c,0x4c,0x4f,0x4d,0x4d,0x4d,0x4c,0x4c,0x6d,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1191 ҧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x5c,0x54,0x54,0x54,0x54,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1192 Ҩ ; -+,0x00,0x00,0x00,0x3c,0x6c,0x44,0x48,0x58,0x74,0x74,0x74,0x74,0x78,0x38,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1193 ҩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x50,0x70,0xf0,0x50,0x50,0x70,0x60,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1194 Ҫ ; -+,0x00,0x00,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1195 ҫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1196 Ҭ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1197 ҭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2d,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1198 Ү ; -+,0x00,0x00,0x00,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1199 ү ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x10,0x10,0x1a,0x08,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1200 Ұ ; -+,0x00,0x00,0x00,0x64,0x64,0x68,0x20,0x38,0x10,0x38,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1201 ұ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x10,0x10,0x1a,0x08,0x0c,0x1e,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1202 Ҳ ; -+,0x00,0x00,0x00,0x6c,0x68,0x28,0x28,0x30,0x10,0x30,0x38,0x28,0x48,0x4c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1203 ҳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x60,0x20,0x20,0x70,0x10,0x50,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1204 Ҵ ; -+,0x00,0x00,0x00,0x7b,0xbb,0xb3,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x3f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1205 ҵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x24,0x24,0x24,0x24,0x24,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1206 Ҷ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x6c,0x3c,0x0c,0x0c,0x0c,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1207 ҷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0x50,0x30,0x10,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1208 Ҹ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x5c,0x7c,0x3c,0x1c,0x1c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1209 ҹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x33,0x33,0x3f,0x0f,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1210 Һ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x78,0x68,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1211 һ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x3c,0x32,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1212 Ҽ ; -+,0x00,0x00,0x00,0x1c,0x16,0x62,0x22,0x3e,0x20,0x20,0x20,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1213 ҽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x98,0x28,0x78,0x60,0x60,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1214 Ҿ ; -+,0x00,0x00,0x00,0x1c,0x16,0x62,0x22,0x3e,0x20,0x20,0x20,0x20,0x30,0x1c,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1215 ҿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x98,0x28,0x78,0x60,0x60,0x28,0x30,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1216 Ӏ ; -+,0x00,0x00,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1217 Ӂ ; -+,0x00,0x14,0x18,0x4b,0x6b,0x0a,0x2a,0x08,0x1c,0x3e,0x2a,0x2a,0x6b,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1218 ӂ ; -+,0x00,0x00,0x00,0x00,0x28,0x30,0x00,0x54,0x10,0x30,0x38,0x78,0x5c,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1219 Ӄ ; -+,0x00,0x00,0x00,0x6c,0x6c,0x60,0x70,0x70,0x70,0x68,0x6c,0x64,0x64,0x64,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1220 ӄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x30,0x34,0x30,0x31,0x31,0x31,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1221 Ӆ ; -+,0x00,0x00,0x00,0x3c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x6c,0x4c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1222 ӆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x10,0x10,0x10,0x10,0x50,0xd0,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1223 Ӈ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x0c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1224 ӈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x33,0x33,0x3f,0x33,0x33,0x33,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1225 Ӊ ; -+,0x00,0x00,0x00,0x66,0x64,0x64,0x64,0x64,0x7c,0x64,0x64,0x64,0x64,0x66,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1226 ӊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x58,0x50,0x50,0x50,0x50,0x50,0x58,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1227 Ӌ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x6c,0x3c,0x0c,0x0c,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1228 ӌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x33,0x33,0x33,0x0b,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1229 Ӎ ; -+,0x00,0x00,0x00,0x63,0x63,0x63,0x77,0x77,0x57,0x57,0x5b,0x5b,0x4b,0x6b,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1230 ӎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x68,0x28,0x38,0x28,0x38,0x4c,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1231 ӏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1232 Ӑ ; -+,0x08,0x38,0x10,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1233 ӑ ; -+,0x00,0x00,0x00,0x00,0x09,0x0e,0x00,0x22,0x22,0x02,0x12,0x22,0x22,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1234 Ӓ ; -+,0x00,0x28,0x08,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1235 ӓ ; -+,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x22,0x22,0x02,0x12,0x22,0x22,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1236 Ӕ ; -+,0x00,0x00,0x00,0x1e,0x1a,0x18,0x38,0x38,0x3e,0x38,0x58,0x58,0x58,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1237 ӕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x7c,0x38,0x70,0x70,0x50,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1238 Ӗ ; -+,0x00,0x30,0x20,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1239 ӗ ; -+,0x00,0x00,0x00,0x00,0x12,0x1c,0x08,0x26,0x22,0x20,0x20,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1240 Ә ; -+,0x00,0x00,0x00,0x38,0x48,0x0c,0x04,0x04,0x04,0x04,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1241 ә ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x06,0x02,0x03,0x22,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1242 Ӛ ; -+,0x00,0x28,0x00,0x38,0x48,0x0c,0x04,0x04,0x04,0x04,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1243 ӛ ; -+,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x1c,0x06,0x02,0x03,0x22,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1244 Ӝ ; -+,0x00,0x14,0x00,0x4b,0x6b,0x0a,0x2a,0x08,0x1c,0x3e,0x2a,0x2a,0x6b,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1245 ӝ ; -+,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x54,0x10,0x30,0x38,0x78,0x5c,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1246 Ӟ ; -+,0x00,0x50,0x10,0x70,0x50,0x10,0x10,0x10,0x30,0x10,0x18,0x18,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1247 ӟ ; -+,0x00,0x00,0x00,0x00,0x64,0x00,0x00,0x26,0x06,0x04,0x04,0x02,0x02,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1248 Ӡ ; -+,0x00,0x00,0x00,0x78,0x50,0x50,0x10,0x30,0x30,0x18,0x18,0x18,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1249 ӡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x00,0x04,0x06,0x06,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1250 Ӣ ; -+,0x00,0x18,0x00,0x66,0x64,0x64,0x6c,0x6c,0x74,0x74,0x64,0x64,0x64,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1251 ӣ ; -+,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x50,0x50,0x50,0x50,0x70,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1252 Ӥ ; -+,0x00,0x38,0x00,0x66,0x64,0x64,0x6c,0x6c,0x74,0x74,0x64,0x64,0x64,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1253 ӥ ; -+,0x00,0x00,0x00,0x00,0x70,0x00,0x00,0x50,0x50,0x50,0x50,0x70,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1254 Ӧ ; -+,0x00,0x28,0x08,0x28,0x64,0x44,0x44,0x46,0x46,0x46,0x44,0x44,0x64,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1255 ӧ ; -+,0x00,0x00,0x00,0x00,0x70,0x00,0x20,0x50,0x58,0x48,0x48,0x48,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1256 Ө ; -+,0x00,0x00,0x00,0x38,0x68,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1257 ө ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x21,0x21,0x3f,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1258 Ӫ ; -+,0x00,0x28,0x00,0x38,0x68,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1259 ӫ ; -+,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x12,0x21,0x21,0x3f,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1260 Ӭ ; -+,0x00,0x28,0x20,0x58,0x48,0x0c,0x0c,0x04,0x3c,0x04,0x0c,0x0c,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1261 ӭ ; -+,0x00,0x00,0x00,0x00,0x32,0x00,0x08,0x26,0x02,0x03,0x03,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1262 Ӯ ; -+,0x00,0x38,0x00,0x64,0x64,0x64,0x28,0x28,0x30,0x38,0x10,0x10,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1263 ӯ ; -+,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x31,0x11,0x10,0x0a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1264 Ӱ ; -+,0x00,0x28,0x00,0x64,0x64,0x64,0x28,0x28,0x30,0x38,0x10,0x10,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1265 ӱ ; -+,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x31,0x11,0x10,0x0a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1266 Ӳ ; -+,0x18,0x38,0x10,0x64,0x64,0x64,0x28,0x28,0x30,0x38,0x10,0x10,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1267 ӳ ; -+,0x00,0x00,0x00,0x09,0x1a,0x04,0x00,0x31,0x11,0x10,0x0a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1268 Ӵ ; -+,0x00,0x28,0x00,0x6c,0x6c,0x6c,0x6c,0x6c,0x6c,0x3c,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1269 ӵ ; -+,0x00,0x00,0x00,0x00,0x19,0x00,0x00,0x31,0x31,0x31,0x1b,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1270 Ӷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1271 ӷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1272 Ӹ ; -+,0x00,0x14,0x00,0x63,0x63,0x62,0x62,0x62,0x7a,0x6a,0x6e,0x6e,0x6b,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1273 ӹ ; -+,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x4c,0x44,0x44,0x54,0x54,0x54,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1274 Ӻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1275 ӻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1276 Ӽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1277 ӽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1278 Ӿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1279 ӿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1280 Ԁ ; -+,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x10,0x70,0x50,0xd0,0xd0,0x50,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1281 ԁ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1282 Ԃ ; -+,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x16,0x72,0x52,0xd2,0xd2,0x56,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1283 ԃ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x50,0x50,0x58,0xd0,0x50,0x54,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1284 Ԅ ; -+,0x00,0x00,0x00,0x70,0x50,0x10,0x10,0x10,0x30,0x10,0x18,0x18,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1285 ԅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x30,0x20,0x20,0x10,0x10,0x10,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1286 Ԇ ; -+,0x00,0x00,0x00,0x70,0x50,0x10,0x10,0x16,0x36,0x16,0x1e,0x1e,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1287 ԇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x30,0x28,0x20,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1288 Ԉ ; -+,0x00,0x00,0x00,0x3c,0x0c,0x0c,0x0c,0x0f,0x0f,0x0f,0x0f,0x0f,0x6e,0x46,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1289 ԉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x10,0x18,0x14,0x10,0x54,0xdc,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1290 Ԋ ; -+,0x00,0x00,0x00,0x66,0x64,0x64,0x64,0x67,0x7d,0x65,0x65,0x65,0x65,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1291 ԋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x58,0x50,0x54,0x50,0x50,0x5c,0x4c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1292 Ԍ ; -+,0x00,0x00,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1293 ԍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0x20,0x62,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1294 Ԏ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x3c,0x3c,0x3c,0x3c,0x3c,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1295 ԏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x30,0x20,0x20,0x28,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1296 Ԑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1297 ԑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1298 Ԓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1299 ԓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1300 Ԕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1301 ԕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1302 Ԗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1303 ԗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1304 Ԙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1305 ԙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1306 Ԛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1307 ԛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1308 Ԝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1309 ԝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1310 Ԟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1311 ԟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1312 Ԡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1313 ԡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1314 Ԣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1315 ԣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1316 Ԥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1317 ԥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1318 Ԧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1319 ԧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1320 Ԩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1321 ԩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1322 Ԫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1323 ԫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1324 Ԭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1325 ԭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1326 Ԯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1327 ԯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1328 ԰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1329 Ա ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x30,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1330 Բ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x08,0x08,0x08,0x00,0x78,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1331 Գ ; -+,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x08,0x08,0x48,0x58,0x28,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1332 Դ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x48,0x48,0x48,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1333 Ե ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x78,0x00,0x08,0x08,0x08,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1334 Զ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x48,0x48,0x08,0x08,0x40,0x48,0x30,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1335 Է ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x38,0x20,0x20,0x20,0x20,0x20,0x70,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1336 Ը ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1337 Թ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x40,0x48,0x68,0x40,0x68,0x50,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1338 Ժ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x10,0x78,0x40,0x40,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1339 Ի ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x70,0x48,0x48,0x08,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1340 Լ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x28,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1341 Խ ; -+,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x68,0x68,0x68,0x68,0x68,0x40,0xe8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1342 Ծ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x40,0x08,0x08,0x48,0x48,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1343 Կ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x08,0x08,0x08,0x48,0x38,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1344 Հ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0x10,0x10,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1345 Ձ ; -+,0x00,0x00,0x00,0x00,0x00,0x50,0x48,0x40,0x40,0x00,0x08,0x48,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1346 Ղ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x48,0x48,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1347 Ճ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x40,0x70,0x50,0x48,0x48,0x48,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1348 Մ ; -+,0x00,0x00,0x00,0x00,0x00,0x58,0x40,0x40,0x40,0x40,0x40,0x40,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1349 Յ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x08,0x10,0x10,0x08,0x08,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1350 Ն ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x48,0x48,0x48,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1351 Շ ; -+,0x00,0x00,0x00,0x00,0x70,0x08,0x30,0x48,0x40,0x40,0x40,0x40,0x40,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1352 Ո ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1353 Չ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x40,0x40,0x48,0x48,0x30,0x10,0x60,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1354 Պ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0x40,0x40,0x00,0x30,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1355 Ջ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x48,0x40,0x48,0x08,0x08,0x08,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1356 Ռ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x40,0x08,0x08,0x08,0x08,0x08,0x08,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1357 Ս ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1358 Վ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x48,0x48,0x48,0x58,0x38,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1359 Տ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x40,0x40,0x30,0x08,0x08,0x48,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1360 Ր ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1361 Ց ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x40,0x40,0x30,0x10,0x08,0x00,0x40,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1362 Ւ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1363 Փ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x68,0x60,0x60,0x60,0x68,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1364 Ք ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x40,0x48,0x40,0x48,0x30,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1365 Օ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x40,0x48,0x08,0x48,0x40,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1366 Ֆ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x60,0x20,0x60,0x30,0x28,0x28,0x68,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1367 ՗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1368 ՘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1369 ՙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1370 ՚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1371 ՛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1372 ՜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1373 ՝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1374 ՞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1375 ՟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1376 ՠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1377 ա ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x40,0x40,0x40,0x40,0x60,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1378 բ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x60,0x48,0x48,0x40,0x40,0x78,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1379 գ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x08,0x08,0x48,0x58,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1380 դ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1381 ե ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x78,0x40,0x40,0x48,0x48,0x48,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1382 զ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x58,0x08,0x08,0x48,0x58,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1383 է ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1384 ը ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x40,0x48,0x48,0x48,0x48,0x58,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1385 թ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x48,0x08,0x78,0x40,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1386 ժ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x78,0x40,0x40,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1387 ի ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x70,0x40,0x48,0x48,0x48,0x48,0x58,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1388 լ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1389 խ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x68,0x60,0x60,0x60,0x60,0x48,0x78,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1390 ծ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x38,0x48,0x40,0x40,0x40,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1391 կ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x48,0x48,0x48,0x48,0x58,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1392 հ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x70,0x40,0x48,0x48,0x48,0x48,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1393 ձ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x30,0x48,0x40,0x40,0x40,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1394 ղ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x68,0x48,0x48,0x48,0x48,0x68,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1395 ճ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x70,0x10,0x00,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1396 մ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x50,0x48,0x48,0x48,0x48,0x58,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1397 յ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1398 ն ; -+,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x58,0x48,0x48,0x48,0x48,0x48,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1399 շ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x40,0x40,0x00,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1400 ո ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x40,0x48,0x48,0x48,0x48,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1401 չ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x01,0x00,0x02,0x00,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1402 պ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x60,0x60,0x60,0x60,0x60,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1403 ջ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x40,0x40,0x70,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1404 ռ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x48,0x48,0x40,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1405 ս ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x58,0x48,0x48,0x48,0x48,0x48,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1406 վ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x48,0x48,0x48,0x48,0x48,0x48,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1407 տ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x40,0x30,0x08,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1408 ր ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x40,0x48,0x48,0x48,0x48,0x58,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1409 ց ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x58,0x48,0x48,0x48,0x58,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1410 ւ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1411 փ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x78,0x60,0x60,0x60,0x60,0x60,0x68,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1412 ք ; -+,0x00,0x00,0x00,0x00,0x18,0x20,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1413 օ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x40,0x40,0x40,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1414 ֆ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x60,0x20,0x60,0x30,0x28,0x28,0x28,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1415 և ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1416 ֈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1417 ։ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1418 ֊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1419 ֋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1420 ֌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1421 ֍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1422 ֎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1423 ֏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1424 ֐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1425 ֑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1426 ֒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1427 ֓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1428 ֔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1429 ֕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1430 ֖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1431 ֗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1432 ֘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1433 ֙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1434 ֚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1435 ֛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1436 ֜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1437 ֝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1438 ֞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1439 ֟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1440 ֠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1441 ֡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1442 ֢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1443 ֣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1444 ֤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1445 ֥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1446 ֦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1447 ֧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1448 ֨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1449 ֩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1450 ֪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1451 ֫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1452 ֬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1453 ֭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1454 ֮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1455 ֯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1456 ְ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1457 ֱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1458 ֲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1459 ֳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1460 ִ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1461 ֵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1462 ֶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1463 ַ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1464 ָ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1465 ֹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1466 ֺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1467 ֻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1468 ּ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1469 ֽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1470 ־ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1471 ֿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1472 ׀ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1473 ׁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1474 ׂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1475 ׃ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1476 ׄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1477 ׅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1478 ׆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1479 ׇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1480 ׈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1481 ׉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1482 ׊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1483 ׋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1484 ׌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1485 ׍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1486 ׎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1487 ׏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1488 א ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x58,0x78,0x30,0x30,0x58,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1489 ב ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1490 ג ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x18,0x00,0x00,0x00,0x00,0x08,0x30,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1491 ד ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x3f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1492 ה ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x3f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1493 ו ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x38,0x08,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1494 ז ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x38,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1495 ח ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1496 ט ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0x70,0x68,0x00,0x00,0x00,0x08,0x78,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1497 י ; -+,0x00,0x00,0x00,0x00,0x30,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1498 ך ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0xf8,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1499 כ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x08,0x00,0x00,0x00,0x08,0x78,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1500 ל ; -+,0x00,0x00,0x40,0x40,0x40,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1501 ם ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0x78,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1502 מ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x58,0x48,0x00,0x80,0x80,0x38,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1503 ן ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1504 נ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x18,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1505 ס ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x08,0x00,0x00,0x00,0x00,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1506 ע ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x00,0x00,0x10,0x30,0x70,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1507 ף ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x50,0x60,0xe8,0x68,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1508 פ ; -+,0x00,0x00,0x00,0x00,0x00,0x7e,0x3f,0x01,0x78,0x38,0x10,0x00,0x3f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1509 ץ ; -+,0x00,0x00,0x00,0x00,0x00,0x22,0x73,0x13,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1510 צ ; -+,0x00,0x00,0x00,0x00,0x00,0xd0,0x58,0x00,0x40,0x60,0x30,0x10,0x78,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1511 ק ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x3f,0x01,0x00,0x00,0x40,0x40,0x42,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1512 ר ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1513 ש ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x68,0x00,0x00,0x00,0x00,0x40,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1514 ת ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1515 ׫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1516 ׬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1517 ׭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1518 ׮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1519 ׯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1520 װ ; -+,0x00,0x00,0x00,0x00,0x00,0x58,0x78,0x28,0x00,0x00,0x00,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1521 ױ ; -+,0x00,0x00,0x00,0x00,0x00,0x58,0x78,0x08,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1522 ײ ; -+,0x00,0x00,0x00,0x00,0x50,0x78,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1523 ׳ ; -+,0x00,0x00,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1524 ״ ; -+,0x00,0x00,0x00,0x14,0x2c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1525 ׵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1526 ׶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1527 ׷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1528 ׸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1529 ׹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1530 ׺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1531 ׻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1532 ׼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1533 ׽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1534 ׾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1535 ׿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1536 ؀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1537 ؁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1538 ؂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1539 ؃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1540 ؄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1541 ؅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1542 ؆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1543 ؇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1544 ؈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1545 ؉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1546 ؊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1547 ؋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1548 ، ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1549 ؍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1550 ؎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1551 ؏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1552 ؐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1553 ؑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1554 ؒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1555 ؓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1556 ؔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1557 ؕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1558 ؖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1559 ؗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1560 ؘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1561 ؙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1562 ؚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1563 ؛ ; -+,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1564 ؜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1565 ؝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1566 ؞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1567 ؟ ; -+,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x18,0x08,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1568 ؠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1569 ء ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1570 آ ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1571 أ ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1572 ؤ ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x0c,0x0c,0x04,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1573 إ ; -+,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1574 ئ ; -+,0x00,0x00,0x00,0x18,0x10,0x06,0x04,0x08,0x28,0x04,0x24,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1575 ا ; -+,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1576 ب ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x22,0x2e,0x3c,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1577 ة ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1578 ت ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x02,0x22,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1579 ث ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x02,0x22,0x26,0x3c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1580 ج ; -+,0x00,0x00,0x00,0x3c,0x38,0x10,0x10,0x20,0x28,0x20,0x20,0x20,0x12,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1581 ح ; -+,0x00,0x00,0x00,0x1c,0x3c,0x18,0x10,0x00,0x00,0x20,0x20,0x10,0x1a,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1582 خ ; -+,0x00,0x00,0x08,0x00,0x3c,0x38,0x10,0x10,0x00,0x00,0x20,0x00,0x10,0x1e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1583 د ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1584 ذ ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x04,0x04,0x0c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1585 ر ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1586 ز ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x04,0x04,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1587 س ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x0e,0x08,0x28,0x28,0x38,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1588 ش ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x06,0x0e,0x08,0x00,0x48,0x38,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1589 ص ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x0e,0x0e,0x48,0x48,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1590 ض ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x07,0x06,0x0e,0x0c,0x48,0x48,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1591 ط ; -+,0x00,0x00,0x10,0x10,0x00,0x10,0x10,0x10,0x16,0x1e,0x1a,0x1c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1592 ظ ; -+,0x00,0x00,0x00,0x10,0x10,0x14,0x14,0x10,0x16,0x16,0x0a,0x1e,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1593 ع ; -+,0x00,0x00,0x18,0x20,0x28,0x18,0x10,0x10,0x10,0x00,0x20,0x20,0x10,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1594 غ ; -+,0x00,0x10,0x00,0x00,0x18,0x20,0x38,0x18,0x10,0x10,0x10,0x00,0x00,0x10,0x1e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1595 ػ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1596 ؼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1597 ؽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1598 ؾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1599 ؿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1600 ـ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1601 ف ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x06,0x06,0x06,0x42,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1602 ق ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x0c,0x04,0x24,0x24,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1603 ك ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x14,0x18,0x10,0x00,0x04,0x3c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1604 ل ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1605 م ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x18,0x10,0x10,0x10,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1606 ن ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x04,0x14,0x14,0x14,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1607 ه ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x0c,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1608 و ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x0c,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1609 ى ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x04,0x08,0x2c,0x24,0x24,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1610 ي ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x08,0x0c,0x04,0x24,0x38,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1611 ً ; -+,0x00,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1612 ٌ ; -+,0x00,0x00,0x08,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1613 ٍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1614 َ ; -+,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1615 ُ ; -+,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1616 ِ ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x10,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1617 ّ ; -+,0x00,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1618 ْ ; -+,0x00,0x00,0x80,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1619 ٓ ; -+,0x00,0x00,0x00,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1620 ٔ ; -+,0x00,0x00,0x00,0x10,0x18,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1621 ٕ ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1622 ٖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1623 ٗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1624 ٘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1625 ٙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1626 ٚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1627 ٛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1628 ٜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1629 ٝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1630 ٞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1631 ٟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1632 ٠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1633 ١ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1634 ٢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1635 ٣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x1c,0x18,0x10,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1636 ٤ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x10,0x18,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1637 ٥ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x14,0x14,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1638 ٦ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1639 ٧ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1640 ٨ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x18,0x1c,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1641 ٩ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1642 ٪ ; -+,0x00,0x00,0x04,0x04,0x18,0x18,0x08,0x08,0x08,0x08,0x04,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1643 ٫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1644 ٬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1645 ٭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1646 ٮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1647 ٯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1648 ٰ ; -+,0x00,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1649 ٱ ; -+,0x00,0x00,0x80,0x80,0x00,0x00,0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1650 ٲ ; -+,0x00,0x00,0x08,0x18,0x10,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1651 ٳ ; -+,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1652 ٴ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1653 ٵ ; -+,0x00,0x00,0x00,0xc0,0xc0,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1654 ٶ ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x08,0x0c,0x0c,0x08,0x08,0x18,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1655 ٷ ; -+,0x00,0x00,0x08,0x1c,0x0c,0x04,0x00,0x08,0x0c,0x0c,0x08,0x08,0x18,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1656 ٸ ; -+,0x00,0x02,0x06,0x02,0x00,0x04,0x0c,0x08,0x08,0x0c,0x44,0x6c,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1657 ٹ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x02,0x22,0x26,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1658 ٺ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x0a,0x02,0x26,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1659 ٻ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x3c,0x18,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1660 ټ ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x02,0x24,0x3c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1661 ٽ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x0a,0x02,0x26,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1662 پ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x3c,0x18,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1663 ٿ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x0a,0x22,0x26,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1664 ڀ ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x24,0x3c,0x18,0x04,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1665 ځ ; -+,0x00,0x00,0x18,0x00,0x04,0x3c,0x08,0x10,0x10,0x10,0x00,0x10,0x10,0x10,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1666 ڂ ; -+,0x00,0x08,0x00,0x08,0x00,0x3c,0x18,0x10,0x10,0x00,0x20,0x20,0x00,0x10,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1667 ڃ ; -+,0x00,0x00,0x00,0x3c,0x18,0x10,0x10,0x20,0x28,0x20,0x20,0x20,0x16,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1668 ڄ ; -+,0x00,0x00,0x00,0x1c,0x3c,0x18,0x10,0x18,0x00,0x28,0x20,0x10,0x12,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1669 څ ; -+,0x00,0x10,0x18,0x00,0x04,0x3c,0x18,0x10,0x00,0x20,0x20,0x20,0x20,0x10,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1670 چ ; -+,0x00,0x00,0x00,0x3c,0x3c,0x10,0x10,0x0c,0x20,0x28,0x20,0x10,0x1a,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1671 ڇ ; -+,0x00,0x00,0x00,0x3c,0x3c,0x10,0x10,0x04,0x28,0x24,0x20,0x20,0x12,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1672 ڈ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x08,0x08,0x04,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1673 ډ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x04,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1674 ڊ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x04,0x1c,0x18,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1675 ڋ ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x08,0x08,0x04,0x0c,0x18,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1676 ڌ ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x04,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1677 ڍ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x04,0x1c,0x18,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1678 ڎ ; -+,0x00,0x00,0x00,0x00,0x08,0x18,0x00,0x08,0x08,0x04,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1679 ڏ ; -+,0x00,0x00,0x00,0x08,0x18,0x08,0x00,0x08,0x08,0x00,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1680 ڐ ; -+,0x00,0x00,0x00,0x08,0x00,0x18,0x00,0x00,0x08,0x08,0x04,0x0c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1681 ڑ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x04,0x04,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1682 ڒ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1683 ړ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1684 ڔ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1685 ڕ ; -+,0x00,0x00,0x00,0x08,0x08,0x04,0x04,0x08,0x08,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1686 ږ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x08,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1687 ڗ ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x04,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1688 ژ ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x0c,0x00,0x08,0x04,0x04,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1689 ڙ ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x08,0x00,0x00,0x04,0x04,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1690 ښ ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x0e,0x0e,0x28,0x2c,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1691 ڛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0e,0x0c,0x00,0x02,0x38,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1692 ڜ ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x06,0x0e,0x08,0x00,0x0e,0x3c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1693 ڝ ; -+,0x00,0x00,0x00,0x00,0x02,0x06,0x06,0x0e,0x08,0x4a,0x50,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1694 ڞ ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x06,0x06,0x0e,0x0c,0x40,0x40,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1695 ڟ ; -+,0x00,0x00,0x00,0x10,0x10,0x14,0x18,0x18,0x16,0x16,0x0a,0x1c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1696 ڠ ; -+,0x00,0x00,0x18,0x00,0x18,0x10,0x14,0x18,0x18,0x10,0x00,0x10,0x10,0x10,0x1a,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1697 ڡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x06,0x02,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1698 ڢ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x06,0x26,0x3c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1699 ڣ ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x06,0x06,0x02,0x2c,0x38,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1700 ڤ ; -+,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x06,0x06,0x02,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1701 ڥ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x02,0x26,0x3c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1702 ڦ ; -+,0x00,0x00,0x00,0x0c,0x00,0x0c,0x00,0x06,0x06,0x06,0x22,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1703 ڧ ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x04,0x04,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1704 ڨ ; -+,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x0c,0x0c,0x04,0x24,0x24,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1705 ک ; -+,0x00,0x00,0x03,0x06,0x0c,0x08,0x10,0x10,0x10,0x08,0x08,0x08,0x48,0x78,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1706 ڪ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0x3f,0x01,0x43,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1707 ګ ; -+,0x00,0x00,0x01,0x02,0x04,0x0c,0x14,0x10,0x10,0x08,0x08,0x08,0x48,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1708 ڬ ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x04,0x14,0x1c,0x10,0x00,0x04,0x3c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1709 ڭ ; -+,0x00,0x00,0x10,0x00,0x18,0x04,0x04,0x14,0x1c,0x10,0x00,0x00,0x3c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1710 ڮ ; -+,0x00,0x00,0x04,0x04,0x00,0x18,0x18,0x14,0x04,0x0c,0x3c,0x00,0x18,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1711 گ ; -+,0x00,0x00,0x03,0x07,0x0e,0x1c,0x18,0x10,0x10,0x18,0x08,0x08,0x00,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1712 ڰ ; -+,0x00,0x02,0x07,0x06,0x0c,0x0c,0x1c,0x10,0x10,0x08,0x08,0x08,0x00,0x48,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1713 ڱ ; -+,0x00,0x00,0x0a,0x05,0x0e,0x1c,0x08,0x10,0x10,0x18,0x08,0x08,0x08,0x48,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1714 ڲ ; -+,0x00,0x04,0x0a,0x0c,0x08,0x18,0x10,0x10,0x08,0x08,0x08,0x08,0x30,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1715 ڳ ; -+,0x00,0x04,0x0e,0x1c,0x08,0x10,0x10,0x08,0x08,0x08,0x28,0x38,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1716 ڴ ; -+,0x00,0x00,0x09,0x0b,0x07,0x0e,0x0c,0x08,0x10,0x18,0x08,0x04,0x04,0x24,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1717 ڵ ; -+,0x00,0x00,0x08,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x04,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1718 ڶ ; -+,0x00,0x00,0x08,0x00,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x14,0x14,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1719 ڷ ; -+,0x00,0x00,0x08,0x0c,0x00,0x08,0x08,0x00,0x04,0x04,0x04,0x14,0x14,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1720 ڸ ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x14,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1721 ڹ ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x04,0x10,0x14,0x18,0x18,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1722 ں ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x10,0x10,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1723 ڻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x04,0x04,0x04,0x14,0x14,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1724 ڼ ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x04,0x10,0x10,0x14,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1725 ڽ ; -+,0x00,0x00,0x00,0x08,0x00,0x10,0x04,0x04,0x04,0x14,0x10,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1726 ھ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x1c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1727 ڿ ; -+,0x00,0x00,0x10,0x00,0x3c,0x38,0x10,0x10,0x08,0x20,0x28,0x20,0x20,0x12,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1728 ۀ ; -+,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1729 ہ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1730 ۂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1731 ۃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1732 ۄ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x04,0x0c,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1733 ۅ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x0c,0x04,0x1c,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1734 ۆ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x0c,0x0c,0x0c,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1735 ۇ ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x0c,0x0c,0x0c,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1736 ۈ ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x0c,0x0c,0x0c,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1737 ۉ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x0c,0x00,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1738 ۊ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x0c,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1739 ۋ ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x0c,0x0c,0x04,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1740 ی ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x08,0x0c,0x24,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1741 ۍ ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x00,0x24,0x04,0x14,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1742 ێ ; -+,0x00,0x00,0x00,0x00,0x10,0x06,0x04,0x08,0x08,0x2c,0x24,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1743 ۏ ; -+,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x80,0xc0,0xc0,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1744 ې ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x24,0x24,0x34,0x18,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1745 ۑ ; -+,0x00,0x00,0x06,0x06,0x04,0x08,0x0c,0x24,0x24,0x1c,0x10,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1746 ے ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x40,0x40,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1747 ۓ ; -+,0x00,0x00,0x00,0x40,0x40,0x20,0x20,0x60,0x40,0xff,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1748 ۔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1749 ە ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1750 ۖ ; -+,0x00,0x00,0x00,0x04,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1751 ۗ ; -+,0x00,0x00,0x00,0x08,0x08,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1752 ۘ ; -+,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1753 ۙ ; -+,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1754 ۚ ; -+,0x00,0x18,0x10,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1755 ۛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1756 ۜ ; -+,0x00,0x00,0x08,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1757 ۝ ; -+,0x00,0x00,0x00,0x34,0x36,0x22,0x41,0x41,0x41,0x01,0x20,0x22,0x14,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1758 ۞ ; -+,0x00,0x00,0x08,0x1c,0x14,0x22,0x22,0x03,0x51,0x2a,0x22,0x14,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1759 ۟ ; -+,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1760 ۠ ; -+,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1761 ۡ ; -+,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1762 ۢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1763 ۣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1764 ۤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1765 ۥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1766 ۦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1767 ۧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1768 ۨ ; -+,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1769 ۩ ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x22,0x14,0x14,0x14,0x14,0x1c,0x1c,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1770 ۪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1771 ۫ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1772 ۬ ; -+,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1773 ۭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1774 ۮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1775 ۯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1776 ۰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1777 ۱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1778 ۲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1779 ۳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1780 ۴ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x1c,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1781 ۵ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x14,0x14,0x04,0x1c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1782 ۶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x18,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1783 ۷ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x18,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1784 ۸ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x04,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1785 ۹ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x18,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1786 ۺ ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x00,0x04,0x0e,0x0c,0x20,0x24,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1787 ۻ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x0e,0x0e,0x08,0x48,0x4c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1788 ۼ ; -+,0x00,0x10,0x00,0x10,0x18,0x20,0x38,0x18,0x10,0x10,0x08,0x00,0x20,0x10,0x1e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1789 ۽ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x18,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1790 ۾ ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x08,0x10,0x14,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1791 ۿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1792 ܀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1793 ܁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1794 ܂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1795 ܃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1796 ܄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1797 ܅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1798 ܆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1799 ܇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1800 ܈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1801 ܉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1802 ܊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1803 ܋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1804 ܌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1805 ܍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1806 ܎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1807 ܏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1808 ܐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1809 ܑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1810 ܒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1811 ܓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1812 ܔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1813 ܕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1814 ܖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1815 ܗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1816 ܘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1817 ܙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1818 ܚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1819 ܛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1820 ܜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1821 ܝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1822 ܞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1823 ܟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1824 ܠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1825 ܡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1826 ܢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1827 ܣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1828 ܤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1829 ܥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1830 ܦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1831 ܧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1832 ܨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1833 ܩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1834 ܪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1835 ܫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1836 ܬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1837 ܭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1838 ܮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1839 ܯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1840 ܰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1841 ܱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1842 ܲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1843 ܳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1844 ܴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1845 ܵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1846 ܶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1847 ܷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1848 ܸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1849 ܹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1850 ܺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1851 ܻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1852 ܼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1853 ܽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1854 ܾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1855 ܿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1856 ݀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1857 ݁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1858 ݂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1859 ݃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1860 ݄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1861 ݅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1862 ݆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1863 ݇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1864 ݈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1865 ݉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1866 ݊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1867 ݋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1868 ݌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1869 ݍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1870 ݎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1871 ݏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1872 ݐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1873 ݑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1874 ݒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1875 ݓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1876 ݔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1877 ݕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1878 ݖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1879 ݗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1880 ݘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1881 ݙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1882 ݚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1883 ݛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1884 ݜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1885 ݝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1886 ݞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1887 ݟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1888 ݠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1889 ݡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1890 ݢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1891 ݣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1892 ݤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1893 ݥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1894 ݦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1895 ݧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1896 ݨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1897 ݩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1898 ݪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1899 ݫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1900 ݬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1901 ݭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1902 ݮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1903 ݯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1904 ݰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1905 ݱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1906 ݲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1907 ݳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1908 ݴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1909 ݵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1910 ݶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1911 ݷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1912 ݸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1913 ݹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1914 ݺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1915 ݻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1916 ݼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1917 ݽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1918 ݾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1919 ݿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1920 ހ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x0c,0x18,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1921 ށ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x1e,0x10,0xe0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1922 ނ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x30,0x40,0xc0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1923 ރ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0e,0x0a,0x30,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1924 ބ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x3a,0x52,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1925 ޅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x18,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1926 ކ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x16,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1927 އ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0a,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1928 ވ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x1e,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1929 މ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x02,0x04,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1930 ފ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x04,0x08,0x30,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1931 ދ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x09,0x1e,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1932 ތ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x1e,0x10,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1933 ލ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x0f,0x06,0x08,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1934 ގ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0c,0x04,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1935 ޏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x1f,0x20,0x40,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1936 ސ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1937 ޑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x0c,0x18,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1938 ޒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x0e,0x1e,0x20,0x60,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1939 ޓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x3d,0x1f,0x30,0x20,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1940 ޔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x12,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1941 ޕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x04,0x08,0x32,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1942 ޖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x12,0x1c,0x20,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1943 ޗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x10,0x30,0x70,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1944 ޘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x1a,0x16,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1945 ޙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1946 ޚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x10,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1947 ޛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x09,0x1e,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1948 ޜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0e,0x0a,0x30,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1949 ޝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1950 ޞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1951 ޟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1952 ޠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x1e,0x10,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1953 ޡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x1e,0x10,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1954 ޢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0a,0x74,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1955 ޣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0a,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1956 ޤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0x0c,0x04,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1957 ޥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x0e,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1958 ަ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1959 ާ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1960 ި ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1961 ީ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1962 ު ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1963 ޫ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x68,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1964 ެ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1965 ޭ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x50,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1966 ޮ ; -+,0x00,0x00,0x00,0x00,0x08,0x70,0x30,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1967 ޯ ; -+,0x00,0x00,0x00,0x18,0x20,0x28,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1968 ް ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1969 ޱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1970 ޲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1971 ޳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1972 ޴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1973 ޵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1974 ޶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1975 ޷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1976 ޸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1977 ޹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1978 ޺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1979 ޻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1980 ޼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1981 ޽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1982 ޾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1983 ޿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1984 ߀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1985 ߁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1986 ߂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1987 ߃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1988 ߄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1989 ߅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1990 ߆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1991 ߇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1992 ߈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1993 ߉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1994 ߊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1995 ߋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1996 ߌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1997 ߍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1998 ߎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 1999 ߏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2000 ߐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2001 ߑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2002 ߒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2003 ߓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2004 ߔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2005 ߕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2006 ߖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2007 ߗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2008 ߘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2009 ߙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2010 ߚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2011 ߛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2012 ߜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2013 ߝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2014 ߞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2015 ߟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2016 ߠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2017 ߡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2018 ߢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2019 ߣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2020 ߤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2021 ߥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2022 ߦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2023 ߧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2024 ߨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2025 ߩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2026 ߪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2027 ߫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2028 ߬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2029 ߭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2030 ߮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2031 ߯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2032 ߰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2033 ߱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2034 ߲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2035 ߳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2036 ߴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2037 ߵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2038 ߶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2039 ߷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2040 ߸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2041 ߹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2042 ߺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2043 ߻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2044 ߼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2045 ߽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2046 ߾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2047 ߿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2048 ࠀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2049 ࠁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2050 ࠂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2051 ࠃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2052 ࠄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2053 ࠅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2054 ࠆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2055 ࠇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2056 ࠈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2057 ࠉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2058 ࠊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2059 ࠋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2060 ࠌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2061 ࠍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2062 ࠎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2063 ࠏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2064 ࠐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2065 ࠑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2066 ࠒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2067 ࠓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2068 ࠔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2069 ࠕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2070 ࠖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2071 ࠗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2072 ࠘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2073 ࠙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2074 ࠚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2075 ࠛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2076 ࠜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2077 ࠝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2078 ࠞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2079 ࠟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2080 ࠠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2081 ࠡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2082 ࠢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2083 ࠣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2084 ࠤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2085 ࠥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2086 ࠦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2087 ࠧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2088 ࠨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2089 ࠩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2090 ࠪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2091 ࠫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2092 ࠬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2093 ࠭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2094 ࠮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2095 ࠯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2096 ࠰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2097 ࠱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2098 ࠲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2099 ࠳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2100 ࠴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2101 ࠵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2102 ࠶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2103 ࠷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2104 ࠸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2105 ࠹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2106 ࠺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2107 ࠻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2108 ࠼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2109 ࠽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2110 ࠾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2111 ࠿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2112 ࡀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2113 ࡁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2114 ࡂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2115 ࡃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2116 ࡄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2117 ࡅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2118 ࡆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2119 ࡇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2120 ࡈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2121 ࡉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2122 ࡊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2123 ࡋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2124 ࡌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2125 ࡍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2126 ࡎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2127 ࡏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2128 ࡐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2129 ࡑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2130 ࡒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2131 ࡓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2132 ࡔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2133 ࡕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2134 ࡖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2135 ࡗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2136 ࡘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2137 ࡙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2138 ࡚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2139 ࡛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2140 ࡜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2141 ࡝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2142 ࡞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2143 ࡟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2144 ࡠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2145 ࡡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2146 ࡢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2147 ࡣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2148 ࡤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2149 ࡥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2150 ࡦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2151 ࡧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2152 ࡨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2153 ࡩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2154 ࡪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2155 ࡫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2156 ࡬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2157 ࡭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2158 ࡮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2159 ࡯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2160 ࡰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2161 ࡱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2162 ࡲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2163 ࡳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2164 ࡴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2165 ࡵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2166 ࡶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2167 ࡷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2168 ࡸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2169 ࡹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2170 ࡺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2171 ࡻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2172 ࡼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2173 ࡽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2174 ࡾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2175 ࡿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2176 ࢀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2177 ࢁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2178 ࢂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2179 ࢃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2180 ࢄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2181 ࢅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2182 ࢆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2183 ࢇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2184 ࢈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2185 ࢉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2186 ࢊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2187 ࢋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2188 ࢌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2189 ࢍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2190 ࢎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2191 ࢏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2192 ࢐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2193 ࢑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2194 ࢒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2195 ࢓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2196 ࢔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2197 ࢕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2198 ࢖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2199 ࢗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2200 ࢘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2201 ࢙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2202 ࢚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2203 ࢛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2204 ࢜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2205 ࢝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2206 ࢞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2207 ࢟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2208 ࢠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2209 ࢡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2210 ࢢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2211 ࢣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2212 ࢤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2213 ࢥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2214 ࢦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2215 ࢧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2216 ࢨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2217 ࢩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2218 ࢪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2219 ࢫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2220 ࢬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2221 ࢭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2222 ࢮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2223 ࢯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2224 ࢰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2225 ࢱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2226 ࢲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2227 ࢳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2228 ࢴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2229 ࢵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2230 ࢶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2231 ࢷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2232 ࢸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2233 ࢹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2234 ࢺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2235 ࢻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2236 ࢼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2237 ࢽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2238 ࢾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2239 ࢿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2240 ࣀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2241 ࣁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2242 ࣂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2243 ࣃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2244 ࣄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2245 ࣅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2246 ࣆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2247 ࣇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2248 ࣈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2249 ࣉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2250 ࣊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2251 ࣋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2252 ࣌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2253 ࣍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2254 ࣎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2255 ࣏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2256 ࣐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2257 ࣑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2258 ࣒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2259 ࣓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2260 ࣔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2261 ࣕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2262 ࣖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2263 ࣗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2264 ࣘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2265 ࣙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2266 ࣚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2267 ࣛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2268 ࣜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2269 ࣝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2270 ࣞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2271 ࣟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2272 ࣠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2273 ࣡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2274 ࣢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2275 ࣣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2276 ࣤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2277 ࣥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2278 ࣦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2279 ࣧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2280 ࣨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2281 ࣩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2282 ࣪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2283 ࣫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2284 ࣬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2285 ࣭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2286 ࣮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2287 ࣯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2288 ࣰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2289 ࣱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2290 ࣲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2291 ࣳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2292 ࣴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2293 ࣵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2294 ࣶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2295 ࣷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2296 ࣸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2297 ࣹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2298 ࣺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2299 ࣻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2300 ࣼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2301 ࣽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2302 ࣾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2303 ࣿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2304 ऀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2305 ँ ; -+,0x14,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2306 ं ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2307 ः ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2308 ऄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2309 अ ; -+,0x00,0x00,0x00,0x00,0x0f,0xe4,0x14,0x34,0x74,0x9c,0x1c,0x14,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2310 आ ; -+,0x00,0x00,0x00,0x00,0x0f,0xe7,0x16,0x36,0x76,0x9e,0x1e,0x16,0x36,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2311 इ ; -+,0x00,0x00,0x00,0x00,0xf8,0x30,0x20,0xe0,0xc0,0x60,0x10,0x70,0x60,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2312 ई ; -+,0x20,0x30,0x20,0x00,0xf8,0x30,0x20,0xe0,0xc0,0x60,0x10,0x70,0x60,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2313 उ ; -+,0x00,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x30,0xb0,0x10,0x50,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2314 ऊ ; -+,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x30,0xbc,0x1c,0x54,0x14,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2315 ऋ ; -+,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0xf4,0x5e,0x3e,0x72,0x76,0x14,0x14,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2316 ऌ ; -+,0x00,0x00,0x00,0x00,0xfe,0x0c,0x08,0x48,0xfc,0x94,0x94,0x4c,0x0c,0x08,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2317 ऍ ; -+,0x40,0x18,0x30,0x00,0xfc,0xd0,0x50,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2318 ऎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2319 ए ; -+,0x00,0x00,0x00,0x00,0xfc,0xd0,0x50,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2320 ऐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2321 ऑ ; -+,0x01,0x01,0x03,0x00,0x0f,0xe7,0x16,0x36,0x76,0x9e,0x1e,0x16,0x36,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2322 ऒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2323 ओ ; -+,0x08,0x00,0x00,0x00,0x0f,0xe7,0x16,0x36,0x76,0x9e,0x1e,0x16,0x36,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2324 औ ; -+,0x04,0x08,0x06,0x02,0x0f,0xe7,0x16,0x36,0x76,0x9e,0x1e,0x16,0x36,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2325 क ; -+,0x00,0x00,0x00,0x00,0xfe,0x30,0x30,0x70,0xf8,0xf0,0x3c,0x7c,0x3c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2326 ख ; -+,0x00,0x00,0x00,0x00,0xfe,0x6c,0x48,0x78,0xf8,0x68,0x68,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2327 ग ; -+,0x00,0x00,0x00,0x00,0xfc,0x58,0x58,0x58,0x58,0xd8,0xd8,0x58,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2328 घ ; -+,0x00,0x00,0x00,0x00,0xfc,0xd8,0x98,0x78,0x78,0x58,0x78,0x38,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2329 ङ ; -+,0x00,0x00,0x00,0x00,0xfc,0x18,0x10,0x70,0x48,0x70,0x18,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2330 च ; -+,0x00,0x00,0x00,0x00,0xfe,0x08,0x08,0x78,0x78,0x48,0x38,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2331 छ ; -+,0x00,0x00,0x00,0x00,0xff,0x0c,0x68,0xec,0x9c,0x3c,0x7c,0x6c,0x4c,0x3a,0x32,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2332 ज ; -+,0x00,0x00,0x00,0x00,0xfe,0x0c,0x0c,0x3c,0xbc,0x1c,0x1c,0x1c,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2333 झ ; -+,0x00,0x00,0x00,0x00,0xfe,0x3c,0x24,0xe4,0xcc,0x7c,0x14,0x74,0x64,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2334 ञ ; -+,0x00,0x00,0x00,0x00,0xfe,0x08,0x08,0x48,0x28,0x38,0xa8,0x68,0x48,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2335 ट ; -+,0x00,0x00,0x00,0x00,0xfc,0x30,0x10,0x30,0x60,0xc0,0x80,0x00,0x78,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2336 ठ ; -+,0x00,0x00,0x00,0x00,0xfc,0x30,0x10,0x30,0x70,0xc0,0x88,0x18,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2337 ड ; -+,0x00,0x00,0x00,0x00,0xfc,0x18,0x10,0x70,0x40,0x70,0x18,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2338 ढ ; -+,0x00,0x00,0x00,0x00,0xfc,0x10,0x10,0x70,0xc0,0x80,0xb0,0x30,0x78,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2339 ण ; -+,0x00,0x00,0x00,0x00,0xfc,0xf8,0xb8,0xb8,0xb8,0xb8,0x78,0x78,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2340 त ; -+,0x00,0x00,0x00,0x00,0xfc,0x10,0x10,0x70,0xf0,0x90,0x90,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2341 थ ; -+,0x00,0x00,0x00,0x00,0x5c,0xd8,0xb8,0x78,0xf8,0x58,0x78,0x38,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2342 द ; -+,0x00,0x00,0x00,0x00,0xf8,0x30,0x10,0xf0,0xc0,0x80,0x30,0x70,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2343 ध ; -+,0x00,0x00,0x00,0x00,0x5c,0xd8,0x98,0x78,0x78,0x58,0x78,0x38,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2344 न ; -+,0x00,0x00,0x00,0x00,0xfc,0x10,0x10,0x10,0xf0,0xd0,0x50,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2345 ऩ ; -+,0x00,0x00,0x00,0x00,0xfc,0x10,0x10,0x10,0xf0,0xd0,0x50,0x10,0x10,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2346 प ; -+,0x00,0x00,0x00,0x00,0xfc,0xd0,0xd0,0x50,0x50,0x30,0x30,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2347 फ ; -+,0x00,0x00,0x00,0x00,0xfe,0xd0,0xd0,0x58,0x5c,0x34,0x34,0x14,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2348 ब ; -+,0x00,0x00,0x00,0x00,0xfc,0x10,0x10,0x70,0xd0,0xb0,0x70,0x70,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2349 भ ; -+,0x00,0x00,0x00,0x00,0x9c,0x58,0x58,0x58,0x58,0xf8,0x58,0x58,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2350 म ; -+,0x00,0x00,0x00,0x00,0xfc,0x58,0x58,0x58,0x58,0xf8,0xd8,0x58,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2351 य ; -+,0x00,0x00,0x00,0x00,0xfc,0x78,0x58,0x78,0xd8,0x58,0x38,0x38,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2352 र ; -+,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2353 ऱ ; -+,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x60,0x60,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2354 ल ; -+,0x00,0x00,0x00,0x00,0xfe,0x0c,0x08,0x58,0xf8,0xb8,0xa8,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2355 ळ ; -+,0x00,0x00,0x00,0x00,0xfe,0x08,0x08,0x08,0x7c,0xd4,0x94,0xb4,0x74,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2356 ऴ ; -+,0x00,0x00,0x00,0x00,0xfe,0x08,0x08,0x08,0x7c,0xd4,0x94,0xb4,0x74,0x6c,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2357 व ; -+,0x00,0x00,0x00,0x00,0xfc,0x10,0x10,0x70,0xd0,0x90,0x30,0x70,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2358 श ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2359 ष ; -+,0x00,0x00,0x00,0x00,0xfc,0xd0,0xd0,0x70,0x70,0x30,0x30,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2360 स ; -+,0x00,0x00,0x00,0x00,0xfe,0x68,0x48,0x48,0xd8,0x78,0x48,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2361 ह ; -+,0x00,0x00,0x00,0x00,0xfc,0x30,0x10,0xf0,0x80,0x40,0x70,0xd0,0x90,0x10,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2362 ऺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2363 ऻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2364 ़ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2365 ऽ ; -+,0x00,0x00,0x00,0x00,0x1e,0x3c,0x20,0x20,0x00,0x00,0x40,0x42,0x06,0x1e,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2366 ा ; -+,0x00,0x00,0x00,0x00,0x7c,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2367 ि ; -+,0x70,0x48,0x40,0x40,0xe0,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2368 ी ; -+,0x00,0x00,0x40,0x40,0x7c,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2369 ु ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2370 ू ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2371 ृ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2372 ॄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2373 ॅ ; -+,0x04,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2374 ॆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2375 े ; -+,0x60,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2376 ै ; -+,0x18,0x60,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2377 ॉ ; -+,0x04,0x04,0x18,0x00,0x7c,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2378 ॊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2379 ो ; -+,0x00,0x00,0x00,0x40,0x7c,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2380 ौ ; -+,0x00,0x00,0x00,0x60,0x7c,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2381 ् ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2382 ॎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2383 ॏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2384 ॐ ; -+,0x00,0x00,0x00,0x04,0x01,0x03,0xe7,0x16,0x30,0x74,0x2e,0x19,0x1b,0x72,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2385 ॑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2386 ॒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2387 ॓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2388 ॔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2389 ॕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2390 ॖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2391 ॗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2392 क़ ; -+,0x00,0x00,0x00,0x00,0xfe,0x30,0x30,0x70,0xf8,0xb0,0x3c,0x7c,0x3c,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2393 ख़ ; -+,0x00,0x00,0x00,0x00,0xfe,0x6c,0x48,0x78,0xf8,0xe8,0x68,0x58,0x48,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2394 ग़ ; -+,0x00,0x00,0x00,0x00,0xfc,0x58,0x58,0x58,0x58,0xd8,0xd8,0x58,0x18,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2395 ज़ ; -+,0x00,0x00,0x00,0x00,0xfe,0x0c,0x0c,0x3c,0xbc,0x1c,0x1c,0x1c,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2396 ड़ ; -+,0x00,0x00,0x00,0x00,0xfc,0x18,0x10,0x70,0x40,0x70,0x98,0x58,0x70,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2397 ढ़ ; -+,0x00,0x00,0x00,0x00,0xfc,0x10,0x10,0x70,0xc0,0x80,0xb0,0x30,0x78,0x30,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2398 फ़ ; -+,0x00,0x00,0x00,0x00,0xfe,0xd0,0xd0,0x58,0x5c,0x34,0x34,0x14,0x14,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2399 य़ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2400 ॠ ; -+,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0xf4,0x5e,0x3e,0x76,0x76,0x14,0x16,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2401 ॡ ; -+,0x00,0x00,0x00,0x00,0xfe,0x0c,0x08,0x48,0xfc,0x94,0x94,0x4c,0x0c,0x08,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2402 ॢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2403 ॣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2404 । ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2405 ॥ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2406 ० ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x60,0x46,0x06,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2407 १ ; -+,0x00,0x00,0x00,0x00,0x30,0x78,0x68,0x4c,0x3c,0x18,0x38,0x70,0x20,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2408 २ ; -+,0x00,0x00,0x00,0x00,0x00,0x7c,0x02,0x01,0x03,0x27,0x3e,0x08,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2409 ३ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x04,0x06,0x3c,0x00,0x02,0x26,0x3c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2410 ४ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x30,0x20,0x70,0x70,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2411 ५ ; -+,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x46,0x3e,0x1c,0x0c,0x38,0x7c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2412 ६ ; -+,0x00,0x00,0x00,0x00,0x3c,0x70,0x60,0x00,0x3c,0x30,0x30,0x06,0x0e,0x06,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2413 ७ ; -+,0x00,0x00,0x00,0x00,0x00,0x90,0xb8,0xa0,0x68,0x48,0x18,0x48,0x18,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2414 ८ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0xc0,0xc0,0xc0,0x80,0xb0,0x70,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2415 ९ ; -+,0x00,0x00,0x00,0x00,0x40,0xe0,0xe0,0xa0,0x60,0x60,0x00,0x00,0x00,0x00,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2416 ॰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2417 ॱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2418 ॲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2419 ॳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2420 ॴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2421 ॵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2422 ॶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2423 ॷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2424 ॸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2425 ॹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2426 ॺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2427 ॻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2428 ॼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2429 ॽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2430 ॾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2431 ॿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2432 ঀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2433 ঁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2434 ং ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x08,0x18,0x00,0x20,0x30,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2435 ঃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x24,0x18,0x00,0x18,0x24,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2436 ঄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2437 অ ; -+,0x00,0x00,0x00,0x00,0x00,0xfc,0x20,0x30,0x00,0x50,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2438 আ ; -+,0x00,0x00,0x00,0x00,0x00,0xfe,0x24,0x34,0x14,0x54,0x7c,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2439 ই ; -+,0x00,0x00,0x00,0xe0,0x10,0xf8,0x20,0x70,0x50,0x10,0x60,0x60,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2440 ঈ ; -+,0x00,0x00,0x80,0x70,0x10,0xf8,0x40,0x78,0x70,0x30,0x70,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2441 উ ; -+,0x00,0x00,0x00,0x70,0x10,0xf8,0x20,0x20,0x70,0x78,0x48,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2442 ঊ ; -+,0x00,0x00,0x00,0xf0,0x00,0xf8,0x20,0x20,0x38,0x70,0x60,0x78,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2443 ঋ ; -+,0x00,0x00,0x00,0x00,0x18,0xfc,0x78,0x38,0x58,0x78,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2444 ঌ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x1c,0x03,0x19,0x15,0x15,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2445 ঍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2446 ঎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2447 এ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x28,0x28,0x28,0x48,0x78,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2448 ঐ ; -+,0x00,0x20,0x20,0x30,0x08,0x18,0x38,0x28,0x28,0x28,0x48,0x78,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2449 ঑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2450 ঒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2451 ও ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x28,0x28,0x78,0x10,0x48,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2452 ঔ ; -+,0x00,0x20,0x20,0x30,0x18,0x18,0x38,0x68,0x78,0x58,0x40,0x28,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2453 ক ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x30,0x78,0x50,0x58,0x78,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2454 খ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0xf0,0x70,0x70,0x70,0x30,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2455 গ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0xf0,0xd0,0x30,0x50,0x50,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2456 ঘ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x60,0x60,0x40,0x60,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2457 ঙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x2a,0x1e,0x00,0x02,0x2d,0x21,0x1f,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2458 চ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x20,0x30,0x2c,0x26,0x24,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2459 ছ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x20,0x2e,0x2c,0x39,0x02,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2460 জ ; -+,0x00,0x00,0x00,0x00,0x00,0xfc,0x20,0x58,0x48,0x78,0x48,0x78,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2461 ঝ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x38,0x78,0x58,0x58,0x38,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2462 ঞ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x3c,0x2a,0x2a,0x2e,0x4a,0x7e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2463 ট ; -+,0x00,0x00,0x80,0x7c,0x02,0x7f,0x20,0x20,0x2e,0x26,0x24,0x2c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2464 ঠ ; -+,0x00,0x20,0x20,0x00,0x10,0x7f,0x08,0x0c,0x08,0x12,0x62,0x04,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2465 ড ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x30,0x70,0x40,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2466 ঢ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x20,0x24,0x2e,0x26,0x24,0x2c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2467 ণ ; -+,0x00,0x00,0x00,0x00,0x02,0x3b,0x26,0x42,0x3a,0x3a,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2468 ত ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x30,0x78,0x60,0x48,0x38,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2469 থ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0xe0,0xe0,0x20,0x60,0x60,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2470 দ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x70,0x70,0x50,0x50,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2471 ধ ; -+,0x00,0x00,0x00,0x00,0x00,0x33,0x22,0x1e,0x1a,0x32,0x1a,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2472 ন ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x02,0x02,0x3a,0x76,0x32,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2473 ঩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2474 প ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x58,0x78,0x38,0x68,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2475 ফ ; -+,0x00,0x00,0x00,0x00,0x00,0xfc,0x50,0x38,0x68,0x48,0x60,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2476 ব ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x02,0x0e,0x32,0x32,0x1a,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2477 ভ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x30,0x38,0x48,0x48,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2478 ম ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x50,0x30,0x30,0x70,0x70,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2479 য ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x20,0x60,0x40,0x60,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2480 র ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x02,0x0e,0x32,0x32,0x0a,0x06,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2481 ঱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2482 ল ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x70,0x70,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2483 ঳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2484 ঴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2485 ঵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2486 শ ; -+,0x00,0x00,0x00,0x00,0x10,0xf8,0x70,0x70,0x70,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2487 ষ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x20,0x70,0x50,0x60,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2488 স ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x50,0x30,0x30,0x30,0x50,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2489 হ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x08,0x3c,0x32,0x02,0x3c,0x38,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2490 ঺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2491 ঻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2492 ় ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2493 ঽ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x3c,0x32,0x02,0x3c,0x38,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2494 া ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2495 ি ; -+,0x00,0x08,0x30,0x20,0x00,0x78,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2496 ী ; -+,0x00,0x00,0x80,0x40,0x20,0x70,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2497 ু ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2498 ূ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2499 ৃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2500 ৄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2501 ৅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2502 ৆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2503 ে ; -+,0x00,0x00,0x00,0x00,0x00,0x7c,0x18,0x20,0x20,0x20,0x20,0x20,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2504 ৈ ; -+,0x00,0x00,0x80,0x70,0x08,0x7c,0x10,0x20,0x40,0x40,0x40,0x00,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2505 ৉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2506 ৊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2507 ো ; -+,0x00,0x00,0x00,0x00,0x00,0xee,0x44,0x40,0x40,0x40,0x40,0x40,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2508 ৌ ; -+,0x00,0x00,0x80,0xc0,0x20,0xe6,0x42,0x42,0x02,0x82,0x82,0x02,0x62,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2509 ্ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2510 ৎ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x64,0x5c,0x40,0x30,0x1c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2511 ৏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2512 ৐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2513 ৑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2514 ৒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2515 ৓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2516 ৔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2517 ৕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2518 ৖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2519 ৗ ; -+,0x00,0x00,0x00,0xe0,0x20,0x78,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2520 ৘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2521 ৙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2522 ৚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2523 ৛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2524 ড় ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x30,0x30,0x78,0x48,0x70,0x30,0x00,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2525 ঢ় ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x20,0x24,0x2e,0x26,0x24,0x3c,0x10,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2526 ৞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2527 য় ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x50,0x30,0x70,0x50,0x70,0x30,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2528 ৠ ; -+,0x00,0x00,0x00,0x00,0x18,0xfc,0x78,0x38,0x58,0x78,0x38,0x30,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2529 ৡ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x60,0x10,0x70,0x70,0x70,0x30,0x20,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2530 ৢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2531 ৣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2532 ৤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2533 ৥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2534 ০ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x31,0x21,0x21,0x23,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2535 ১ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x18,0x0c,0x04,0x02,0x1a,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2536 ২ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x1c,0x06,0x02,0x02,0x3e,0x18,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2537 ৩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0xb0,0xa0,0x08,0x48,0x50,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2538 ৪ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x22,0x22,0x3c,0x1e,0x22,0x22,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2539 ৫ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x1c,0x32,0x23,0x24,0x24,0x24,0x34,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2540 ৬ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x43,0x0f,0x20,0x31,0x1f,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2541 ৭ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x1a,0x13,0x11,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2542 ৮ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x40,0x78,0x60,0x60,0x60,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2543 ৯ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x1c,0x06,0x19,0x25,0x25,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2544 ৰ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x02,0x0e,0x3a,0x36,0x1a,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2545 ৱ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x02,0x0e,0x32,0x32,0x1a,0x26,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2546 ৲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2547 ৳ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x74,0x26,0x22,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2548 ৴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x18,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2549 ৵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x50,0x50,0x70,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2550 ৶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x68,0x40,0x70,0x10,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2551 ৷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2552 ৸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x2c,0x2c,0x24,0x34,0x24,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2553 ৹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x44,0x44,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2554 ৺ ; -+,0x00,0x00,0x00,0x00,0x01,0x0a,0x22,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2555 ৻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2556 ৼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2557 ৽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2558 ৾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2559 ৿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2560 ਀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2561 ਁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2562 ਂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2563 ਃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2564 ਄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2565 ਅ ; -+,0x00,0x00,0x00,0x00,0x00,0x84,0x44,0x74,0x74,0x54,0x5c,0x54,0x54,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2566 ਆ ; -+,0x00,0x00,0x00,0x00,0x00,0x87,0x47,0x75,0x75,0x55,0x5d,0x54,0x54,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2567 ਇ ; -+,0x00,0x00,0x00,0x60,0x60,0xfc,0x64,0x64,0x64,0x5c,0x70,0x60,0x74,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2568 ਈ ; -+,0x00,0x00,0x00,0x18,0x14,0xfc,0xdc,0x54,0x54,0x74,0x44,0x44,0x5c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2569 ਉ ; -+,0x00,0x00,0x30,0x78,0x48,0xf8,0xf8,0x48,0x48,0x78,0x58,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2570 ਊ ; -+,0x00,0x00,0x30,0x78,0x48,0xf8,0xf8,0x48,0x48,0x78,0x58,0x48,0x48,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2571 ਋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2572 ਌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2573 ਍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2574 ਎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2575 ਏ ; -+,0x00,0x00,0x00,0x30,0x00,0xf0,0xd0,0x50,0x50,0x70,0x40,0x40,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2576 ਐ ; -+,0x00,0x00,0x18,0x18,0x04,0x84,0x44,0x74,0x74,0x54,0x5c,0x54,0x54,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2577 ਑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2578 ਒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2579 ਓ ; -+,0x00,0x00,0x30,0x60,0x40,0xf8,0xf8,0x48,0x48,0x78,0x58,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2580 ਔ ; -+,0x00,0x00,0x00,0x0e,0x06,0x86,0x44,0x74,0x74,0x54,0x5c,0x54,0x54,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2581 ਕ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x78,0x50,0x58,0x68,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2582 ਖ ; -+,0x00,0x00,0x00,0x00,0x00,0x88,0xd8,0x50,0x70,0x50,0x50,0x50,0x70,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2583 ਗ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x38,0x18,0x18,0x78,0x58,0x58,0x58,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2584 ਘ ; -+,0x00,0x00,0x00,0x00,0x00,0x84,0x54,0x54,0x54,0x54,0x54,0x54,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2585 ਙ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0xc0,0x40,0x70,0x08,0x08,0x78,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2586 ਚ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x08,0x48,0x78,0x48,0x48,0x50,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2587 ਛ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x78,0x40,0x78,0x68,0x68,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2588 ਜ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x01,0x01,0x01,0x31,0x3f,0x21,0x21,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2589 ਝ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x48,0x48,0x78,0x70,0x08,0x08,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2590 ਞ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x58,0x50,0x70,0x40,0x40,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2591 ਟ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x08,0x08,0x78,0x40,0x40,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2592 ਠ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x30,0x50,0x48,0x48,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2593 ਡ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x10,0x10,0x70,0x10,0x08,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2594 ਢ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x10,0x50,0x70,0x40,0x70,0x78,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2595 ਣ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x30,0x10,0x18,0x68,0x40,0x40,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2596 ਤ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x01,0x01,0x03,0x3e,0x01,0x01,0x21,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2597 ਥ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0xd8,0x50,0x50,0x70,0x50,0x50,0x70,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2598 ਦ ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0x18,0x10,0x50,0x70,0x40,0x40,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2599 ਧ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0xd8,0x50,0x50,0x50,0x50,0x50,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2600 ਨ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x50,0x58,0x48,0x48,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2601 ਩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2602 ਪ ; -+,0x00,0x00,0x00,0x00,0x00,0x88,0xd8,0x50,0x50,0x50,0x50,0x50,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2603 ਫ ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0x18,0x10,0x70,0x40,0x40,0x70,0x68,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2604 ਬ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x48,0x48,0x48,0x78,0x48,0x48,0x78,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2605 ਭ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x10,0x10,0x70,0x50,0x70,0x10,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2606 ਮ ; -+,0x00,0x00,0x00,0x00,0x00,0xc8,0x48,0x48,0x48,0x58,0x78,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2607 ਯ ; -+,0x00,0x00,0x00,0x00,0x00,0xfc,0xcc,0x44,0x44,0x5c,0x54,0x54,0x54,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2608 ਰ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x08,0x18,0x78,0x48,0x48,0x50,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2609 ਱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2610 ਲ ; -+,0x00,0x00,0x00,0x00,0x00,0xfc,0x68,0x28,0x28,0x7c,0x54,0x44,0x44,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2611 ਲ਼ ; -+,0x00,0x00,0x00,0x00,0x00,0xfc,0x68,0x28,0x28,0x7c,0x54,0x44,0x44,0xe8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2612 ਴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2613 ਵ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x10,0x70,0x00,0x70,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2614 ਸ਼ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x58,0x48,0x48,0x58,0x78,0x48,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2615 ਷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2616 ਸ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x58,0x48,0x48,0x58,0x78,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2617 ਹ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x10,0x10,0x50,0x50,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2618 ਺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2619 ਻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2620 ਼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2621 ਽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2622 ਾ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2623 ਿ ; -+,0x00,0x00,0x00,0x38,0x24,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2624 ੀ ; -+,0x00,0x00,0x00,0xc0,0x20,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2625 ੁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2626 ੂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2627 ੃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2628 ੄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2629 ੅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2630 ੆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2631 ੇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2632 ੈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2633 ੉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2634 ੊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2635 ੋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2636 ੌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2637 ੍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2638 ੎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2639 ੏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2640 ੐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2641 ੑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2642 ੒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2643 ੓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2644 ੔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2645 ੕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2646 ੖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2647 ੗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2648 ੘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2649 ਖ਼ ; -+,0x00,0x00,0x00,0x00,0x00,0x88,0xd8,0x50,0x70,0x50,0x50,0x50,0x70,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2650 ਗ਼ ; -+,0x00,0x00,0x00,0x00,0x00,0xf8,0x38,0x18,0x18,0x78,0x58,0x58,0x58,0xe8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2651 ਜ਼ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x01,0x01,0x01,0x31,0x3f,0x21,0x21,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2652 ੜ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x01,0x01,0x1e,0x3f,0x01,0x21,0x3e,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2653 ੝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2654 ਫ਼ ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0x18,0x10,0x70,0x40,0x40,0x70,0x68,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2655 ੟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2656 ੠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2657 ੡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2658 ੢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2659 ੣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2660 ੤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2661 ੥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2662 ੦ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x48,0x88,0x88,0x88,0xc8,0x48,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2663 ੧ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x66,0x42,0x42,0x26,0x1a,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2664 ੨ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0xd0,0x08,0x08,0x08,0xf0,0xf0,0x50,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2665 ੩ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x66,0x02,0x02,0x7e,0x02,0x02,0x7e,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2666 ੪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x62,0x41,0x43,0x3e,0x26,0x42,0x22,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2667 ੫ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x41,0x41,0x41,0x41,0x43,0x3f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2668 ੬ ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x1e,0x67,0x40,0x40,0x3f,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2669 ੭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x48,0x08,0x10,0x10,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2670 ੮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xf8,0x40,0x40,0x40,0x40,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2671 ੯ ; -+,0x00,0x00,0x08,0x10,0x10,0x10,0x50,0xd8,0x40,0x40,0x40,0x40,0x60,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2672 ੰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2673 ੱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2674 ੲ ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0xd0,0x50,0x50,0x70,0x40,0x40,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2675 ੳ ; -+,0x00,0x00,0x30,0x78,0x48,0xf8,0xf8,0x48,0x48,0x78,0x58,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2676 ੴ ; -+,0x00,0x00,0x00,0x07,0x0c,0x08,0x58,0xfb,0xb2,0xf2,0x2e,0x2a,0x2a,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2677 ੵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2678 ੶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2679 ੷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2680 ੸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2681 ੹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2682 ੺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2683 ੻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2684 ੼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2685 ੽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2686 ੾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2687 ੿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2688 ઀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2689 ઁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2690 ં ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2691 ઃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2692 ઄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2693 અ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2694 આ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2695 ઇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2696 ઈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2697 ઉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2698 ઊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2699 ઋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2700 ઌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2701 ઍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2702 ઎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2703 એ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2704 ઐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2705 ઑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2706 ઒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2707 ઓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2708 ઔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2709 ક ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2710 ખ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2711 ગ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2712 ઘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2713 ઙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2714 ચ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2715 છ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2716 જ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2717 ઝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2718 ઞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2719 ટ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2720 ઠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2721 ડ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2722 ઢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2723 ણ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2724 ત ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2725 થ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2726 દ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2727 ધ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2728 ન ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2729 ઩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2730 પ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2731 ફ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2732 બ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2733 ભ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2734 મ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2735 ય ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2736 ર ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2737 ઱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2738 લ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2739 ળ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2740 ઴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2741 વ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2742 શ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2743 ષ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2744 સ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2745 હ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2746 ઺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2747 ઻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2748 ઼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2749 ઽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2750 ા ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2751 િ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2752 ી ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2753 ુ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2754 ૂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2755 ૃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2756 ૄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2757 ૅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2758 ૆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2759 ે ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2760 ૈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2761 ૉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2762 ૊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2763 ો ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2764 ૌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2765 ્ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2766 ૎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2767 ૏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2768 ૐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2769 ૑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2770 ૒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2771 ૓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2772 ૔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2773 ૕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2774 ૖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2775 ૗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2776 ૘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2777 ૙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2778 ૚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2779 ૛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2780 ૜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2781 ૝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2782 ૞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2783 ૟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2784 ૠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2785 ૡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2786 ૢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2787 ૣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2788 ૤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2789 ૥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2790 ૦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2791 ૧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2792 ૨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2793 ૩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2794 ૪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2795 ૫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2796 ૬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2797 ૭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2798 ૮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2799 ૯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2800 ૰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2801 ૱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2802 ૲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2803 ૳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2804 ૴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2805 ૵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2806 ૶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2807 ૷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2808 ૸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2809 ૹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2810 ૺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2811 ૻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2812 ૼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2813 ૽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2814 ૾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2815 ૿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2816 ଀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2817 ଁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2818 ଂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2819 ଃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2820 ଄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2821 ଅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2822 ଆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2823 ଇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2824 ଈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2825 ଉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2826 ଊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2827 ଋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2828 ଌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2829 ଍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2830 ଎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2831 ଏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2832 ଐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2833 ଑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2834 ଒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2835 ଓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2836 ଔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2837 କ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2838 ଖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2839 ଗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2840 ଘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2841 ଙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2842 ଚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2843 ଛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2844 ଜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2845 ଝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2846 ଞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2847 ଟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2848 ଠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2849 ଡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2850 ଢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2851 ଣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2852 ତ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2853 ଥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2854 ଦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2855 ଧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2856 ନ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2857 ଩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2858 ପ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2859 ଫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2860 ବ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2861 ଭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2862 ମ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2863 ଯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2864 ର ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2865 ଱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2866 ଲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2867 ଳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2868 ଴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2869 ଵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2870 ଶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2871 ଷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2872 ସ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2873 ହ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2874 ଺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2875 ଻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2876 ଼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2877 ଽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2878 ା ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2879 ି ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2880 ୀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2881 ୁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2882 ୂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2883 ୃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2884 ୄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2885 ୅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2886 ୆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2887 େ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2888 ୈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2889 ୉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2890 ୊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2891 ୋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2892 ୌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2893 ୍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2894 ୎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2895 ୏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2896 ୐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2897 ୑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2898 ୒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2899 ୓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2900 ୔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2901 ୕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2902 ୖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2903 ୗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2904 ୘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2905 ୙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2906 ୚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2907 ୛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2908 ଡ଼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2909 ଢ଼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2910 ୞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2911 ୟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2912 ୠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2913 ୡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2914 ୢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2915 ୣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2916 ୤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2917 ୥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2918 ୦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2919 ୧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2920 ୨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2921 ୩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2922 ୪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2923 ୫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2924 ୬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2925 ୭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2926 ୮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2927 ୯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2928 ୰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2929 ୱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2930 ୲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2931 ୳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2932 ୴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2933 ୵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2934 ୶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2935 ୷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2936 ୸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2937 ୹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2938 ୺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2939 ୻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2940 ୼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2941 ୽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2942 ୾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2943 ୿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2944 ஀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2945 ஁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2946 ஂ ; -+,0xf8,0xf8,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2947 ஃ ; -+,0x00,0x00,0x00,0x00,0x10,0x28,0x28,0x28,0x10,0x44,0xec,0xaa,0xee,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2948 ஄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2949 அ ; -+,0x00,0x38,0x2c,0x2c,0x34,0x06,0x02,0x02,0x02,0x7f,0x86,0xc4,0x44,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2950 ஆ ; -+,0x00,0x38,0x2c,0x2c,0x34,0x06,0x02,0x02,0x02,0x7f,0x86,0xc4,0x44,0x38,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2951 இ ; -+,0x41,0x41,0x41,0x5d,0x7d,0x6d,0x6f,0x5f,0x43,0x47,0x7f,0x66,0x66,0xef,0xbb,0xda,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2952 ஈ ; -+,0x00,0x00,0x00,0x00,0x7c,0x98,0x88,0x88,0x88,0xac,0x88,0x88,0x88,0xc8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2953 உ ; -+,0x00,0x00,0x00,0x00,0x60,0x70,0xb0,0xb8,0x78,0x18,0x10,0x10,0x60,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2954 ஊ ; -+,0x00,0x00,0x00,0x00,0x63,0x77,0xb4,0xbf,0x7d,0x1d,0x16,0x30,0x60,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2955 ஋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2956 ஌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2957 ஍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2958 எ ; -+,0x00,0x00,0x00,0x00,0x3c,0x68,0x48,0x48,0xe8,0xe8,0xb8,0xb8,0x68,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2959 ஏ ; -+,0x00,0x00,0x00,0x00,0x3c,0x68,0x48,0x48,0xe8,0xe8,0xb8,0xb8,0x68,0x68,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2960 ஐ ; -+,0x00,0x00,0x00,0x00,0x24,0x5a,0xda,0xea,0xaa,0xaa,0x6a,0x02,0x06,0x7c,0xc0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2961 ஑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2962 ஒ ; -+,0x00,0x00,0x00,0x00,0x18,0x26,0x42,0x43,0xe1,0xfd,0xdd,0x9d,0x7d,0x6e,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2963 ஓ ; -+,0x00,0x00,0x00,0x00,0x18,0x2e,0x42,0x43,0xe1,0xfd,0xdd,0x9d,0x7d,0x6e,0x08,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2964 ஔ ; -+,0x00,0x00,0x00,0x00,0x18,0x26,0x42,0x43,0xe1,0xfd,0xdd,0x9d,0x7d,0x6e,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2965 க ; -+,0x00,0x00,0x00,0x00,0x3c,0x68,0x48,0x48,0x7c,0xca,0x8a,0x8a,0x5a,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2966 ஖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2967 ஗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2968 ஘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2969 ங ; -+,0x00,0x00,0x00,0x00,0x78,0xb2,0xa2,0xba,0xbe,0xa6,0xa6,0x86,0x8a,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2970 ச ; -+,0x00,0x00,0x00,0x00,0x3c,0x68,0x48,0x48,0x7c,0xc8,0x88,0x88,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2971 ஛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2972 ஜ ; -+,0x00,0x00,0x00,0x00,0x24,0x5e,0x5a,0xea,0xaa,0xaa,0x6a,0x02,0x06,0x7c,0xc0,0x8e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2973 ஝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2974 ஞ ; -+,0x00,0x00,0x00,0x00,0x0f,0x12,0x52,0x22,0xba,0xbb,0xaa,0xaa,0xba,0xdb,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2975 ட ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2976 ஠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2977 ஡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2978 ஢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2979 ண ; -+,0x00,0x00,0x00,0x00,0x12,0x6d,0x4d,0x4f,0xeb,0xf3,0xf3,0xfb,0x6b,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2980 த ; -+,0x00,0x00,0x00,0x00,0x3c,0x68,0x48,0x48,0x7c,0xca,0x8a,0x8a,0x5a,0x72,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2981 ஥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2982 ஦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2983 ஧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2984 ந ; -+,0x00,0x00,0x00,0x00,0x78,0x50,0x50,0x50,0x50,0x5c,0x54,0x54,0x54,0x54,0x04,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2985 ன ; -+,0x00,0x00,0x00,0x00,0x17,0x6d,0x4d,0x4f,0xeb,0xf3,0xf3,0xf3,0x6d,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2986 ப ; -+,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2987 ஫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2988 ஬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2989 ஭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2990 ம ; -+,0x00,0x00,0x00,0x00,0x08,0x9c,0x96,0x92,0x92,0x92,0x92,0x96,0x94,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2991 ய ; -+,0x00,0x00,0x00,0x00,0x00,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xe2,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2992 ர ; -+,0x00,0x00,0x00,0x00,0x78,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0xd0,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2993 ற ; -+,0x00,0x00,0x00,0x00,0x28,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x0c,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2994 ல ; -+,0x00,0x00,0x00,0x00,0x14,0x7a,0x4a,0xca,0xea,0xea,0xfa,0xfa,0x6a,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2995 ள ; -+,0x00,0x00,0x00,0x00,0x17,0x7a,0x4a,0x4a,0xea,0xfa,0xfa,0xfa,0x6a,0x6b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2996 ழ ; -+,0x00,0x00,0x00,0x00,0x0c,0x8e,0x92,0x92,0x92,0x92,0x92,0x92,0x94,0xfc,0x18,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2997 வ ; -+,0x00,0x00,0x00,0x00,0x10,0x79,0x49,0x49,0xed,0xf9,0xf9,0xf9,0x69,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2998 ஶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 2999 ஷ ; -+,0x00,0x00,0x00,0x00,0x11,0x7a,0x4a,0x4a,0xee,0xfa,0xf9,0xf9,0x6b,0x7f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3000 ஸ ; -+,0x00,0x00,0x00,0x00,0x34,0x7a,0x4a,0x4a,0xea,0xfa,0xfa,0xfa,0x6a,0x69,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3001 ஹ ; -+,0x00,0x00,0x00,0x00,0x11,0x7b,0x4a,0x4a,0xee,0xea,0xfa,0xfa,0x6a,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3002 ஺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3003 ஻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3004 ஼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3005 ஽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3006 ா ; -+,0x00,0x00,0x00,0x00,0x78,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0xd0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3007 ி ; -+,0x80,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3008 ீ ; -+,0x00,0x00,0x00,0x3e,0x72,0xd2,0xce,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3009 ு ; -+,0x00,0x00,0x00,0x00,0xff,0x11,0x11,0x11,0x11,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3010 ூ ; -+,0x00,0x00,0x38,0x4c,0x44,0x44,0xf4,0x54,0x54,0x54,0x54,0x64,0x04,0x88,0xd8,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3011 ௃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3012 ௄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3013 ௅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3014 ெ ; -+,0x38,0x64,0x46,0x42,0xc2,0x82,0x82,0x82,0xda,0xfa,0x7a,0x7a,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3015 ே ; -+,0x38,0x78,0x78,0x78,0xf8,0x98,0x80,0x80,0x98,0xf8,0x78,0x78,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3016 ை ; -+,0x00,0x00,0x00,0x00,0x12,0x6d,0x4c,0x4e,0xea,0xf2,0xf2,0xfa,0x6b,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3017 ௉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3018 ொ ; -+,0x38,0x64,0x46,0x42,0xc2,0x82,0x82,0x82,0xda,0xfa,0x7a,0x7a,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3019 ோ ; -+,0x38,0x78,0x78,0x78,0xfb,0x9a,0x82,0x82,0x9a,0xfa,0x7a,0x7a,0x7a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3020 ௌ ; -+,0x38,0x64,0x46,0x42,0xc2,0x82,0x82,0x82,0xda,0xfa,0x7a,0x7a,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3021 ் ; -+,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3022 ௎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3023 ௏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3024 ௐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3025 ௑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3026 ௒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3027 ௓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3028 ௔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3029 ௕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3030 ௖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3031 ௗ ; -+,0x00,0x00,0x00,0x00,0x17,0x6a,0x4a,0x4a,0xea,0xfa,0xfa,0xfa,0x6a,0x6b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3032 ௘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3033 ௙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3034 ௚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3035 ௛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3036 ௜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3037 ௝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3038 ௞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3039 ௟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3040 ௠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3041 ௡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3042 ௢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3043 ௣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3044 ௤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3045 ௥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3046 ௦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3047 ௧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3048 ௨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3049 ௩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3050 ௪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3051 ௫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3052 ௬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3053 ௭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3054 ௮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3055 ௯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3056 ௰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3057 ௱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3058 ௲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3059 ௳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3060 ௴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3061 ௵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3062 ௶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3063 ௷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3064 ௸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3065 ௹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3066 ௺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3067 ௻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3068 ௼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3069 ௽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3070 ௾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3071 ௿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3072 ఀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3073 ఁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3074 ం ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3075 ః ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3076 ఄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3077 అ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x0a,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3078 ఆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3079 ఇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x02,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3080 ఈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x04,0x00,0x54,0x50,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3081 ఉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x11,0x00,0x03,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3082 ఊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x7c,0x00,0x74,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3083 ఋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x40,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3084 ఌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3085 ఍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3086 ఎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3087 ఏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3088 ఐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3089 ఑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3090 ఒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3091 ఓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3092 ఔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x08,0x40,0x40,0x00,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3093 క ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3094 ఖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x04,0x1f,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3095 గ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3096 ఘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3097 ఙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3098 చ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3099 ఛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x1f,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3100 జ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x14,0x02,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3101 ఝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3102 ఞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x18,0x10,0x70,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3103 ట ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3104 ఠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3105 డ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3106 ఢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3107 ణ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x04,0x10,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3108 త ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3109 థ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3110 ద ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3111 ధ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3112 న ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3113 ఩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3114 ప ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3115 ఫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3116 బ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x10,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3117 భ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3118 మ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3119 య ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3120 ర ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3121 ఱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3122 ల ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3123 ళ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3124 ఴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3125 వ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3126 శ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3127 ష ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3128 స ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3129 హ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3130 ఺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3131 ఻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3132 ఼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3133 ఽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3134 ా ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3135 ి ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3136 ీ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3137 ు ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3138 ూ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3139 ృ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3140 ౄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3141 ౅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3142 ె ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3143 ే ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3144 ై ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3145 ౉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3146 ొ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3147 ో ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3148 ౌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3149 ్ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3150 ౎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3151 ౏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3152 ౐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3153 ౑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3154 ౒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3155 ౓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3156 ౔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3157 ౕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3158 ౖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3159 ౗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3160 ౘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3161 ౙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3162 ౚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3163 ౛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3164 ౜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3165 ౝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3166 ౞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3167 ౟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3168 ౠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3169 ౡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3170 ౢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3171 ౣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3172 ౤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3173 ౥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3174 ౦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3175 ౧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3176 ౨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3177 ౩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3178 ౪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3179 ౫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3180 ౬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3181 ౭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3182 ౮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3183 ౯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3184 ౰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3185 ౱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3186 ౲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3187 ౳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3188 ౴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3189 ౵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3190 ౶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3191 ౷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3192 ౸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3193 ౹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3194 ౺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3195 ౻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3196 ౼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3197 ౽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3198 ౾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3199 ౿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3200 ಀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3201 ಁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3202 ಂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3203 ಃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3204 ಄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3205 ಅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3206 ಆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3207 ಇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3208 ಈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3209 ಉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3210 ಊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3211 ಋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3212 ಌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3213 ಍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3214 ಎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3215 ಏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3216 ಐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3217 ಑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3218 ಒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3219 ಓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3220 ಔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3221 ಕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3222 ಖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3223 ಗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3224 ಘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3225 ಙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3226 ಚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3227 ಛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3228 ಜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3229 ಝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3230 ಞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3231 ಟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3232 ಠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3233 ಡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3234 ಢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3235 ಣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3236 ತ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3237 ಥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3238 ದ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3239 ಧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3240 ನ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3241 ಩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3242 ಪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3243 ಫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3244 ಬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3245 ಭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3246 ಮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3247 ಯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3248 ರ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3249 ಱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3250 ಲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3251 ಳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3252 ಴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3253 ವ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3254 ಶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3255 ಷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3256 ಸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3257 ಹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3258 ಺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3259 ಻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3260 ಼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3261 ಽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3262 ಾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3263 ಿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3264 ೀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3265 ು ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3266 ೂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3267 ೃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3268 ೄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3269 ೅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3270 ೆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3271 ೇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3272 ೈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3273 ೉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3274 ೊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3275 ೋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3276 ೌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3277 ್ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3278 ೎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3279 ೏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3280 ೐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3281 ೑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3282 ೒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3283 ೓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3284 ೔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3285 ೕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3286 ೖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3287 ೗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3288 ೘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3289 ೙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3290 ೚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3291 ೛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3292 ೜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3293 ೝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3294 ೞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3295 ೟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3296 ೠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3297 ೡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3298 ೢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3299 ೣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3300 ೤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3301 ೥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3302 ೦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3303 ೧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3304 ೨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3305 ೩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3306 ೪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3307 ೫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3308 ೬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3309 ೭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3310 ೮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3311 ೯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3312 ೰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3313 ೱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3314 ೲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3315 ೳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3316 ೴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3317 ೵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3318 ೶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3319 ೷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3320 ೸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3321 ೹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3322 ೺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3323 ೻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3324 ೼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3325 ೽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3326 ೾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3327 ೿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3328 ഀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3329 ഁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3330 ം ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x02,0x23,0x22,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3331 ഃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x10,0x00,0x10,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3332 ഄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3333 അ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x4c,0x6d,0x7c,0x6e,0x2c,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3334 ആ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x4c,0x6d,0x7c,0x6e,0x2c,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3335 ഇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x5a,0x7a,0x7a,0x7a,0x6a,0x3c,0x40,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3336 ഈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x5b,0x7a,0x7a,0x7a,0x6a,0x3c,0x40,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3337 ഉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x68,0x68,0x68,0x68,0x30,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3338 ഊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3b,0x49,0x6d,0x69,0x68,0x28,0x39,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3339 ഋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x6c,0x6c,0x6c,0x44,0x38,0x44,0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3340 ഌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x6a,0x4d,0x59,0x59,0x5d,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3341 ഍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3342 എ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x05,0x23,0x5a,0x5a,0x5a,0x1e,0x0b,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3343 ഏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x05,0x23,0x5b,0x5b,0x5b,0x1e,0x0a,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3344 ഐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x4b,0x6d,0x6d,0x69,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3345 ഑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3346 ഒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x48,0x78,0x68,0x28,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3347 ഓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3b,0x49,0x49,0x79,0x69,0x29,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3348 ഔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3b,0x49,0x49,0x79,0x68,0x28,0x79,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3349 ക ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x28,0x6e,0x6a,0x6a,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3350 ഖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x4a,0x0a,0x6a,0x6a,0x6a,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3351 ഗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x14,0x54,0x54,0x54,0x50,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3352 ഘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x59,0x59,0x58,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3353 ങ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x5a,0x0a,0x6e,0x6a,0x6a,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3354 ച ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x36,0x36,0x36,0x16,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3355 ഛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x07,0x39,0x3b,0x1b,0x13,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3356 ജ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x74,0x74,0x44,0x6c,0x4c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3357 ഝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3d,0x5d,0x4d,0x6d,0x6d,0x2d,0x5b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3358 ഞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x5a,0x0b,0x69,0x6d,0x6b,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3359 ട ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x20,0x30,0x1f,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3360 ഠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x48,0x48,0x48,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3361 ഡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x35,0x54,0x54,0x54,0x54,0x17,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3362 ഢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x75,0x55,0x55,0x55,0x54,0x16,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3363 ണ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x5a,0x0a,0x6a,0x6a,0x6a,0x6a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3364 ത ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x5e,0x4a,0x6a,0x6a,0x2a,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3365 ഥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x50,0x52,0x52,0x52,0x52,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3366 ദ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x50,0x70,0x58,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3367 ധ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x50,0x52,0x52,0x52,0x5c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3368 ന ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x54,0x52,0x52,0x52,0x14,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3369 ഩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3370 പ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x22,0x52,0x52,0x52,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3371 ഫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x05,0x24,0x54,0x54,0x54,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3372 ബ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x5a,0x0a,0x6a,0x6a,0x6a,0x6f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3373 ഭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x78,0x60,0x70,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3374 മ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x38,0x58,0x78,0x68,0x68,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3375 യ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x34,0x56,0x56,0x14,0x5a,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3376 ര ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x48,0x68,0x68,0x28,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3377 റ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x48,0x48,0x48,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3378 ല ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x44,0x4c,0x4c,0x44,0x44,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3379 ള ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x68,0x78,0x68,0x68,0x18,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3380 ഴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x68,0x60,0x68,0x30,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3381 വ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x5c,0x4c,0x4c,0x4c,0x1c,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3382 ശ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x16,0x52,0x5a,0x5a,0x5a,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3383 ഷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x0d,0x2d,0x5d,0x55,0x55,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3384 സ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x55,0x54,0x54,0x54,0x17,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3385 ഹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x05,0x21,0x79,0x51,0x55,0x3d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3386 ഺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3387 ഻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3388 ഼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3389 ഽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3390 ാ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x22,0x02,0x02,0x02,0x22,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3391 ി ; -+,0x00,0x00,0x00,0x00,0x20,0x58,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3392 ീ ; -+,0x00,0x00,0x00,0x00,0x10,0x48,0x5c,0x2c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3393 ു ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x08,0x08,0x00,0x00,0x00,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3394 ൂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3395 ൃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x04,0x00,0x1a,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3396 ൄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3397 ൅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3398 െ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x48,0x68,0x68,0x68,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3399 േ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x50,0x40,0x50,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3400 ൈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x58,0x4c,0x6e,0x6d,0x6d,0x73,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3401 ൉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3402 ൊ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x40,0x59,0x4a,0x6c,0x7c,0x7a,0x71,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3403 ോ ; -+,0x00,0x00,0x00,0x00,0x00,0x61,0x40,0x73,0x61,0x61,0x65,0x71,0x73,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3404 ൌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x14,0x54,0x14,0x04,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3405 ് ; -+,0x00,0x00,0x00,0x00,0x00,0xc8,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3406 ൎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3407 ൏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3408 ൐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3409 ൑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3410 ൒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3411 ൓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3412 ൔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3413 ൕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3414 ൖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3415 ൗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x14,0x54,0x14,0x04,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3416 ൘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3417 ൙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3418 ൚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3419 ൛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3420 ൜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3421 ൝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3422 ൞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3423 ൟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3424 ൠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x28,0x6c,0x6c,0x44,0x44,0x38,0x5c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3425 ൡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x6a,0x4b,0x59,0x5d,0x5f,0x6e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3426 ൢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3427 ൣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3428 ൤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3429 ൥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3430 ൦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x70,0x50,0x50,0x50,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3431 ൧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x34,0x24,0x24,0x24,0x24,0x7c,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3432 ൨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x58,0x48,0x48,0x48,0x18,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3433 ൩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x38,0x58,0x58,0x58,0x18,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3434 ൪ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x38,0x5c,0x54,0x54,0x54,0x54,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3435 ൫ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x24,0x44,0x3c,0x6c,0x6c,0x7c,0x6c,0x6c,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3436 ൬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x6c,0x6c,0x6c,0x6c,0x2c,0x6c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3437 ൭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x6c,0x44,0x74,0x54,0x54,0x74,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3438 ൮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x5c,0x4c,0x4c,0x4c,0x0c,0x5c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3439 ൯ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x7c,0x1c,0x5c,0x5c,0x5c,0x1c,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3440 ൰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3441 ൱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3442 ൲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3443 ൳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3444 ൴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3445 ൵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3446 ൶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3447 ൷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3448 ൸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3449 ൹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3450 ൺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3451 ൻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3452 ർ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3453 ൽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3454 ൾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3455 ൿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3456 ඀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3457 ඁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3458 ං ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x22,0x20,0x22,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3459 ඃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3460 ඄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3461 අ ; -+,0x00,0x00,0x00,0x00,0x30,0x7c,0x3c,0x68,0x4c,0x48,0x48,0x48,0x68,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3462 ආ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3463 ඇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3464 ඈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3465 ඉ ; -+,0x00,0x00,0x00,0x00,0x38,0x78,0x7c,0x54,0x6c,0x4c,0x6c,0x50,0x04,0x18,0x18,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3466 ඊ ; -+,0x02,0x0e,0x0c,0x0c,0x1c,0x0c,0x04,0x40,0x02,0x02,0x44,0x4c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3467 උ ; -+,0x00,0x00,0x00,0x00,0x18,0x1c,0x00,0x3c,0x60,0x40,0x40,0xc0,0xc0,0xc0,0x40,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3468 ඌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3469 ඍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3470 ඎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3471 ඏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3472 ඐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3473 එ ; -+,0x00,0x08,0x00,0x00,0x6c,0x6c,0x12,0x42,0x42,0x02,0x46,0x44,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3474 ඒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3475 ඓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3476 ඔ ; -+,0x00,0x48,0x04,0x04,0x02,0x4a,0x58,0x00,0x38,0x02,0x42,0x5e,0x7c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3477 ඕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3478 ඖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3479 ඗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3480 ඘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3481 ඙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3482 ක ; -+,0x00,0x00,0x00,0x00,0x0c,0x56,0x53,0x4b,0x05,0x45,0x45,0x55,0x7f,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3483 ඛ ; -+,0x00,0x48,0x04,0x04,0x02,0x02,0x70,0x70,0x58,0x08,0x8a,0x4a,0x54,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3484 ග ; -+,0x00,0x00,0x00,0x00,0x16,0x6e,0x0b,0x41,0x41,0x49,0x45,0x6d,0x7b,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3485 ඝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3486 ඞ ; -+,0x00,0x48,0x04,0x04,0x02,0x42,0x00,0x40,0x00,0x02,0x02,0x5e,0x7c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3487 ඟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3488 ච ; -+,0x00,0x48,0x04,0x04,0x02,0x62,0x02,0x42,0x42,0x42,0x46,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3489 ඡ ; -+,0x00,0x01,0x03,0x02,0x24,0x7a,0x0a,0x42,0x04,0x00,0x42,0x66,0x7e,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3490 ජ ; -+,0x00,0x02,0x06,0x04,0x24,0x70,0x0c,0x40,0x02,0x00,0x42,0x66,0x7e,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3491 ඣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3492 ඤ ; -+,0x00,0x00,0x00,0x00,0x28,0x71,0x50,0x43,0x03,0x46,0x46,0x7e,0x7f,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3493 ඥ ; -+,0x00,0x00,0x00,0x00,0x27,0x1d,0x50,0x2b,0x4b,0x46,0x46,0x46,0x7b,0x39,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3494 ඦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3495 ට ; -+,0x00,0x48,0x04,0x04,0x02,0x02,0x00,0x40,0x42,0x42,0x44,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3496 ඨ ; -+,0x00,0x10,0x08,0x14,0x04,0x0e,0x00,0x40,0x02,0x82,0x52,0x5e,0x7c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3497 ඩ ; -+,0x00,0x48,0x04,0x04,0x02,0x72,0x00,0x50,0x40,0x02,0x42,0x56,0x7c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3498 ඪ ; -+,0x00,0x00,0x08,0x14,0x04,0x7e,0x10,0x40,0x02,0x02,0x42,0x5e,0x7e,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3499 ණ ; -+,0x00,0x00,0x00,0x01,0x1a,0x2c,0x28,0x3a,0x2a,0x73,0x46,0x3d,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3500 ඬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3501 ත ; -+,0x00,0x00,0x00,0x00,0x00,0x7e,0x73,0x6b,0x27,0x45,0x05,0x4d,0x3b,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3502 ථ ; -+,0x00,0x08,0x00,0x00,0x0c,0x0c,0x42,0x42,0x02,0x02,0x46,0x64,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3503 ද ; -+,0x00,0x00,0x00,0x00,0x10,0x38,0x00,0x70,0x60,0x40,0xc0,0x40,0x60,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3504 ධ ; -+,0x00,0x48,0x04,0x04,0x02,0x02,0x00,0x00,0x00,0x02,0x52,0x7e,0x7c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3505 න ; -+,0x00,0x00,0x00,0x00,0x04,0x7e,0x77,0x7b,0x23,0x05,0x05,0x0d,0x79,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3506 ඲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3507 ඳ ; -+,0x00,0x00,0x00,0x00,0x30,0x78,0x48,0x30,0x60,0xc0,0x40,0x60,0x60,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3508 ප ; -+,0x00,0x00,0x00,0x00,0x24,0x70,0x0a,0x40,0x02,0x00,0x42,0x66,0x7e,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3509 ඵ ; -+,0x00,0x08,0x00,0x00,0x6c,0x6c,0x12,0x02,0x42,0x02,0x46,0x44,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3510 බ ; -+,0x00,0x48,0x04,0x04,0x02,0x02,0x30,0x70,0x78,0x4a,0x0a,0x52,0x74,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3511 භ ; -+,0x00,0x00,0x00,0x00,0x60,0x5e,0x1f,0x43,0x01,0x01,0x09,0x49,0x7a,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3512 ම ; -+,0x00,0x58,0x04,0x04,0x00,0x4a,0x02,0x1e,0xaa,0x7a,0x46,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3513 ඹ ; -+,0x00,0x48,0x04,0x04,0x0a,0x2a,0x20,0x28,0x18,0x02,0x02,0x5e,0x7c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3514 ය ; -+,0x00,0x00,0x00,0x00,0x06,0x0a,0x42,0x40,0x42,0x42,0x42,0x7a,0x7e,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3515 ර ; -+,0x02,0x06,0x04,0x0c,0x18,0x28,0x04,0x40,0x02,0x82,0x44,0x6c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3516 ඼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3517 ල ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0x40,0x54,0x4c,0x40,0x40,0x40,0x62,0x22,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3518 ඾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3519 ඿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3520 ව ; -+,0x00,0x48,0x04,0x04,0x02,0x42,0x02,0x42,0x42,0x42,0x46,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3521 ශ ; -+,0x00,0x00,0x00,0x00,0x04,0x4e,0x5e,0x53,0x01,0x41,0x4d,0x79,0x78,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3522 ෂ ; -+,0x00,0x00,0x00,0x00,0x36,0x7a,0x1a,0x42,0x44,0x40,0x40,0x42,0x7e,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3523 ස ; -+,0x00,0x00,0x00,0x00,0x66,0x4a,0x5a,0x00,0x40,0x00,0x42,0x7a,0x7e,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3524 හ ; -+,0x00,0x00,0x00,0x00,0x20,0x4e,0x1e,0x53,0x43,0x09,0x49,0x59,0x7a,0x72,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3525 ළ ; -+,0x00,0x00,0x00,0x00,0x18,0x2c,0x2c,0x60,0x40,0x60,0x54,0xdc,0x42,0x40,0x60,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3526 ෆ ; -+,0x00,0x00,0x00,0x00,0x00,0x7e,0x7f,0x5f,0x4b,0x41,0x41,0x41,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3527 ෇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3528 ෈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3529 ෉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3530 ් ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3531 ෋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3532 ෌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3533 ෍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3534 ෎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3535 ා ; -+,0x00,0x00,0x00,0x00,0x30,0x0c,0x0c,0x0c,0x04,0x0c,0x0c,0x0c,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3536 ැ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3537 ෑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x08,0x10,0x30,0x70,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3538 ි ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3539 ී ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3540 ු ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3541 ෕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3542 ූ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3543 ෗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3544 ෘ ; -+,0x00,0x00,0x00,0x00,0x18,0x04,0x04,0x02,0x02,0x36,0x42,0x42,0x44,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3545 ෙ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x50,0x48,0x24,0x34,0x4c,0x4c,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3546 ේ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3547 ෛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3548 ො ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3549 ෝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3550 ෞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3551 ෟ ; -+,0x00,0x00,0x00,0x00,0x50,0x58,0x48,0x48,0x48,0x08,0x08,0x08,0x18,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3552 ෠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3553 ෡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3554 ෢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3555 ෣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3556 ෤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3557 ෥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3558 ෦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3559 ෧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3560 ෨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3561 ෩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3562 ෪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3563 ෫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3564 ෬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3565 ෭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3566 ෮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3567 ෯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3568 ෰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3569 ෱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3570 ෲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3571 ෳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3572 ෴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3573 ෵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3574 ෶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3575 ෷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3576 ෸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3577 ෹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3578 ෺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3579 ෻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3580 ෼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3581 ෽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3582 ෾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3583 ෿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3584 ฀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3585 ก ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x08,0x48,0x48,0x48,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3586 ข ; -+,0x00,0x00,0x00,0x00,0x00,0x15,0x05,0x05,0x0d,0x09,0x09,0x09,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3587 ฃ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x18,0x18,0x38,0x28,0x28,0x28,0x28,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3588 ค ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x48,0x68,0x68,0x68,0x68,0x68,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3589 ฅ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x48,0x68,0x68,0x68,0x68,0x68,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3590 ฆ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x18,0x18,0x38,0x28,0x38,0x78,0x68,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3591 ง ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x03,0x03,0x13,0x0b,0x07,0x07,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3592 จ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x18,0x38,0x18,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3593 ฉ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x08,0x68,0x28,0x38,0x3c,0x2c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3594 ช ; -+,0x00,0x00,0x00,0x00,0x01,0x15,0x07,0x07,0x0d,0x09,0x09,0x09,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3595 ซ ; -+,0x00,0x00,0x00,0x00,0x08,0x78,0x18,0x18,0x38,0x28,0x28,0x28,0x28,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3596 ฌ ; -+,0x00,0x00,0x00,0x00,0x00,0x36,0x1e,0x0e,0x4e,0x4e,0x5e,0x5e,0x5e,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3597 ญ ; -+,0x00,0x00,0x00,0x00,0x00,0x36,0x1e,0x0e,0x4e,0x4e,0x4e,0x4e,0x4e,0x4c,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3598 ฎ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x08,0x28,0x28,0x28,0x28,0x28,0x68,0x08,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3599 ฏ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x08,0x28,0x28,0x28,0x28,0x28,0x68,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3600 ฐ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x50,0x70,0x10,0x30,0x10,0x10,0x10,0x10,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3601 ฑ ; -+,0x00,0x00,0x00,0x00,0x00,0x7c,0x14,0x14,0x34,0x24,0x34,0x34,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3602 ฒ ; -+,0x00,0x00,0x00,0x00,0x00,0x7e,0x4e,0x4e,0x5e,0x5e,0x7e,0x7e,0x7e,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3603 ณ ; -+,0x00,0x00,0x00,0x00,0x00,0x34,0x1c,0x0c,0x4c,0x4c,0x4e,0x4e,0x4e,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3604 ด ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x48,0x58,0x58,0x68,0x68,0x68,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3605 ต ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x48,0x58,0x58,0x68,0x68,0x68,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3606 ถ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x08,0x48,0x48,0x48,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3607 ท ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x28,0x68,0x28,0x28,0x28,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3608 ธ ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x70,0x60,0x50,0x50,0x50,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3609 น ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x28,0x68,0x28,0x28,0x38,0x2c,0x2c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3610 บ ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x28,0x68,0x28,0x28,0x28,0x28,0x28,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3611 ป ; -+,0x00,0x08,0x08,0x08,0x08,0x68,0x28,0x68,0x28,0x28,0x28,0x28,0x28,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3612 ผ ; -+,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x68,0x78,0x68,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3613 ฝ ; -+,0x00,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0x48,0x68,0x78,0x68,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3614 พ ; -+,0x00,0x00,0x00,0x00,0x00,0x6c,0x3c,0x7c,0x3c,0x2c,0x2c,0x2c,0x2c,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3615 ฟ ; -+,0x00,0x0c,0x0c,0x0c,0x0c,0x6c,0x3c,0x7c,0x3c,0x2c,0x2c,0x2c,0x2c,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3616 ภ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x08,0x28,0x28,0x28,0x28,0x28,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3617 ม ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x28,0x68,0x28,0x28,0x68,0x78,0x78,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3618 ย ; -+,0x00,0x00,0x00,0x00,0x00,0x11,0x31,0x31,0x11,0x11,0x31,0x31,0x31,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3619 ร ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x70,0x60,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3620 ฤ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x08,0x48,0x48,0x48,0x48,0x48,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3621 ล ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x18,0x78,0x58,0x58,0x58,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3622 ฦ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x08,0x28,0x28,0x28,0x28,0x28,0x68,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3623 ว ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x18,0x18,0x18,0x18,0x18,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3624 ศ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x58,0x68,0x68,0x68,0x68,0x68,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3625 ษ ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x28,0x7c,0x2c,0x38,0x28,0x28,0x28,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3626 ส ; -+,0x00,0x00,0x00,0x00,0x08,0x38,0x18,0x18,0x78,0x58,0x58,0x58,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3627 ห ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x28,0x78,0x28,0x28,0x28,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3628 ฬ ; -+,0x00,0x00,0x0c,0x0c,0x0c,0x6c,0x3c,0x7c,0x3c,0x2c,0x2c,0x2c,0x2c,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3629 อ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x18,0x58,0x58,0x58,0x58,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3630 ฮ ; -+,0x00,0x00,0x00,0x00,0x08,0x70,0x50,0x18,0x58,0x58,0x58,0x58,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3631 ฯ ; -+,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x35,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3632 ะ ; -+,0x00,0x00,0x00,0x00,0x00,0x23,0x22,0x32,0x00,0x00,0x00,0x22,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3633 ั ; -+,0x10,0x10,0x20,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3634 า ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3635 ำ ; -+,0x00,0xc0,0x00,0xc0,0x00,0x0c,0x06,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3636 ิ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3637 ี ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3638 ึ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3639 ื ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3640 ุ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3641 ู ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3642 ฺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3643 ฻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3644 ฼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3645 ฽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3646 ฾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3647 ฿ ; -+,0x00,0x00,0x20,0x70,0x78,0x68,0x68,0x68,0x78,0x68,0x68,0x68,0x68,0x78,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3648 เ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3649 แ ; -+,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x23,0x33,0x33,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3650 โ ; -+,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3651 ใ ; -+,0x98,0x58,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3652 ไ ; -+,0x98,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3653 ๅ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3654 ๆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3655 ็ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3656 ่ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3657 ้ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3658 ๊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3659 ๋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3660 ์ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3661 ํ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3662 ๎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3663 ๏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x10,0x08,0x28,0x08,0x10,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3664 ๐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x48,0x48,0x48,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3665 ๑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x48,0x48,0x58,0x68,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3666 ๒ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x78,0x68,0x68,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3667 ๓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x58,0x48,0x48,0x48,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3668 ๔ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x18,0x20,0x40,0x50,0x50,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3669 ๕ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x14,0x18,0x20,0x60,0x50,0x50,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3670 ๖ ; -+,0x00,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0x22,0x01,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3671 ๗ ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x24,0x5c,0x4c,0x4c,0x4c,0x4c,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3672 ๘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x78,0x48,0x40,0x68,0x78,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3673 ๙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x70,0x50,0x50,0x50,0x50,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3674 ๚ ; -+,0x00,0x00,0x00,0x00,0x00,0x5c,0x5c,0x7c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3675 ๛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3676 ๜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3677 ๝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3678 ๞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3679 ๟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3680 ๠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3681 ๡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3682 ๢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3683 ๣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3684 ๤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3685 ๥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3686 ๦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3687 ๧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3688 ๨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3689 ๩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3690 ๪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3691 ๫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3692 ๬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3693 ๭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3694 ๮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3695 ๯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3696 ๰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3697 ๱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3698 ๲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3699 ๳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3700 ๴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3701 ๵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3702 ๶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3703 ๷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3704 ๸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3705 ๹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3706 ๺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3707 ๻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3708 ๼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3709 ๽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3710 ๾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3711 ๿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3712 ຀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3713 ກ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3714 ຂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3715 ຃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3716 ຄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3717 ຅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3718 ຆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3719 ງ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3720 ຈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3721 ຉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3722 ຊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3723 ຋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3724 ຌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3725 ຍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3726 ຎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3727 ຏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3728 ຐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3729 ຑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3730 ຒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3731 ຓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3732 ດ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3733 ຕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3734 ຖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3735 ທ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3736 ຘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3737 ນ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3738 ບ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3739 ປ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3740 ຜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3741 ຝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3742 ພ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3743 ຟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3744 ຠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3745 ມ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3746 ຢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3747 ຣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3748 ຤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3749 ລ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3750 ຦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3751 ວ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3752 ຨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3753 ຩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3754 ສ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3755 ຫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3756 ຬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3757 ອ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3758 ຮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3759 ຯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3760 ະ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3761 ັ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3762 າ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3763 ຳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3764 ິ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3765 ີ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3766 ຶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3767 ື ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3768 ຸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3769 ູ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3770 ຺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3771 ົ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3772 ຼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3773 ຽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3774 ຾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3775 ຿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3776 ເ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3777 ແ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3778 ໂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3779 ໃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3780 ໄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3781 ໅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3782 ໆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3783 ໇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3784 ່ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3785 ້ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3786 ໊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3787 ໋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3788 ໌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3789 ໍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3790 ໎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3791 ໏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3792 ໐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3793 ໑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3794 ໒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3795 ໓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3796 ໔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3797 ໕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3798 ໖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3799 ໗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3800 ໘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3801 ໙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3802 ໚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3803 ໛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3804 ໜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3805 ໝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3806 ໞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3807 ໟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3808 ໠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3809 ໡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3810 ໢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3811 ໣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3812 ໤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3813 ໥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3814 ໦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3815 ໧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3816 ໨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3817 ໩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3818 ໪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3819 ໫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3820 ໬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3821 ໭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3822 ໮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3823 ໯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3824 ໰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3825 ໱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3826 ໲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3827 ໳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3828 ໴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3829 ໵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3830 ໶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3831 ໷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3832 ໸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3833 ໹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3834 ໺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3835 ໻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3836 ໼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3837 ໽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3838 ໾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3839 ໿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3840 ༀ ; -+,0x00,0x00,0x18,0x7e,0x3c,0x18,0x08,0x3a,0x2a,0x2a,0x16,0x1e,0x2e,0x2a,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3841 ༁ ; -+,0x00,0x00,0x00,0x00,0x00,0x3c,0x28,0x0c,0x0c,0x0c,0x2a,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3842 ༂ ; -+,0x00,0x00,0x10,0x10,0x10,0x3e,0x2e,0x2e,0x00,0x1e,0x0e,0x0e,0x08,0x08,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3843 ༃ ; -+,0x00,0x00,0x00,0x10,0x10,0x36,0x36,0x04,0x00,0x10,0x1e,0x0e,0x06,0x08,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3844 ༄ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x17,0x55,0x29,0x1e,0x10,0x0b,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3845 ༅ ; -+,0x00,0x00,0x00,0x00,0x0c,0x14,0x1c,0x2c,0x14,0x1c,0x24,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3846 ༆ ; -+,0x00,0x04,0x2a,0x56,0x2a,0x1e,0x10,0x0e,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3847 ༇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x0f,0x2e,0x16,0x17,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3848 ༈ ; -+,0x00,0x00,0x18,0x08,0x18,0x08,0x1c,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3849 ༉ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x28,0x08,0x08,0x08,0x14,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3850 ༊ ; -+,0x00,0x00,0x00,0x18,0x08,0x34,0x24,0x28,0x2c,0x24,0x2c,0x14,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3851 ་ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3852 ༌ ; -+,0x00,0x00,0x41,0x00,0x49,0x08,0x00,0x41,0x00,0x5d,0x1c,0x5f,0x05,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3853 ། ; -+,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3854 ༎ ; -+,0x00,0x00,0x1c,0x1c,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3855 ༏ ; -+,0x00,0x00,0x80,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3856 ༐ ; -+,0x00,0x00,0x00,0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3857 ༑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3858 ༒ ; -+,0x00,0x00,0x08,0x08,0x08,0x63,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3859 ༓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x14,0x36,0x14,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3860 ༔ ; -+,0x00,0x00,0x00,0x08,0x14,0x08,0x00,0x00,0x1c,0x00,0x00,0x18,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3861 ༕ ; -+,0x00,0x00,0x00,0x00,0x1c,0x1c,0x14,0x1c,0x14,0x1c,0x0c,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3862 ༖ ; -+,0x00,0x00,0x00,0x2a,0x32,0x20,0x08,0x0a,0x0a,0x0a,0x02,0x22,0x20,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3863 ༗ ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x0c,0x1c,0x1c,0x14,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3864 ༘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x0e,0x0a,0x1c,0x1c,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3865 ༙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3866 ༚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3867 ༛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x36,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3868 ༜ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x10,0x00,0x14,0x36,0x36,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3869 ༝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3870 ༞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x14,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3871 ༟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3872 ༠ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x14,0x14,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3873 ༡ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x10,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3874 ༢ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x28,0x08,0x18,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3875 ༣ ; -+,0x00,0x00,0x00,0x00,0x18,0x28,0x08,0x1c,0x04,0x08,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3876 ༤ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x22,0x36,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3877 ༥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x14,0x14,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3878 ༦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x1c,0x12,0x0e,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3879 ༧ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x1e,0x2c,0x2c,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3880 ༨ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x10,0x10,0x18,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3881 ༩ ; -+,0x00,0x00,0x00,0x00,0x04,0x0c,0x14,0x14,0x18,0x0c,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3882 ༪ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0e,0x1e,0x1e,0x1e,0x14,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3883 ༫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x26,0x2a,0x1a,0x16,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3884 ༬ ; -+,0x00,0x00,0x00,0x00,0x08,0x1e,0x08,0x1c,0x16,0x20,0x38,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3885 ༭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x2b,0x32,0x1e,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3886 ༮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x2e,0x3e,0x3e,0x34,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3887 ༯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x0e,0x29,0x2e,0x36,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3888 ༰ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x36,0x3e,0x76,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3889 ༱ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x1a,0x30,0x36,0x38,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3890 ༲ ; -+,0x00,0x00,0x00,0x00,0x0c,0x14,0x12,0x28,0x3a,0x1c,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3891 ༳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x16,0x1e,0x1e,0x1c,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3892 ༴ ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3893 ༵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3894 ༶ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x14,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3895 ༷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3896 ༸ ; -+,0x00,0x00,0x00,0x00,0x1c,0x20,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3897 ༹ ; -+,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3898 ༺ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x19,0x37,0x27,0x1d,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3899 ༻ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x48,0x36,0x36,0x54,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3900 ༼ ; -+,0x00,0x00,0x02,0x04,0x0c,0x08,0x08,0x08,0x10,0x10,0x20,0x20,0x20,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3901 ༽ ; -+,0x00,0x00,0x20,0x30,0x10,0x08,0x08,0x08,0x0c,0x04,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3902 ༾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3903 ༿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3904 ཀ ; -+,0x00,0x00,0x00,0x1e,0x1c,0x04,0x24,0x24,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3905 ཁ ; -+,0x00,0x00,0x00,0x00,0x20,0x3c,0x2c,0x2c,0x0c,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3906 ག ; -+,0x00,0x00,0x00,0x1c,0x1c,0x1c,0x04,0x3c,0x0c,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3907 གྷ ; -+,0x00,0x00,0x3e,0x1c,0x04,0x34,0x0c,0x1c,0x1c,0x00,0x1c,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3908 ང ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x18,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3909 ཅ ; -+,0x00,0x00,0x00,0x00,0x1c,0x1c,0x00,0x08,0x3c,0x14,0x14,0x14,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3910 ཆ ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x00,0x1c,0x3e,0x22,0x2a,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3911 ཇ ; -+,0x00,0x00,0x00,0x00,0x1c,0x1e,0x10,0x10,0x1c,0x10,0x10,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3912 ཈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3913 ཉ ; -+,0x00,0x00,0x18,0x1c,0x10,0x08,0x1c,0x14,0x14,0x04,0x04,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3914 ཊ ; -+,0x00,0x00,0x1c,0x1c,0x04,0x04,0x1c,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3915 ཋ ; -+,0x00,0x00,0x00,0x00,0x1c,0x14,0x14,0x14,0x18,0x14,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3916 ཌ ; -+,0x00,0x00,0x00,0x1c,0x04,0x04,0x04,0x1c,0x10,0x10,0x00,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3917 ཌྷ ; -+,0x00,0x00,0x1c,0x04,0x04,0x1c,0x10,0x38,0x10,0x10,0x3c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3918 ཎ ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3919 ཏ ; -+,0x00,0x00,0x18,0x38,0x00,0x00,0x38,0x14,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3920 ཐ ; -+,0x00,0x00,0x00,0x00,0x1c,0x1c,0x04,0x0c,0x1c,0x14,0x14,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3921 ད ; -+,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x18,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3922 དྷ ; -+,0x00,0x00,0x1c,0x10,0x10,0x1c,0x04,0x1c,0x1c,0x08,0x1c,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3923 ན ; -+,0x00,0x00,0x1c,0x1c,0x00,0x18,0x18,0x2c,0x04,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3924 པ ; -+,0x00,0x00,0x00,0x00,0x1e,0x1e,0x14,0x00,0x20,0x38,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3925 ཕ ; -+,0x00,0x00,0x00,0x00,0x00,0x1e,0x06,0x14,0x18,0x38,0x3c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3926 བ ; -+,0x00,0x00,0x00,0x00,0x00,0x1e,0x14,0x14,0x04,0x3c,0x2c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3927 བྷ ; -+,0x00,0x00,0x3c,0x14,0x04,0x34,0x3c,0x1c,0x18,0x10,0x1c,0x14,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3928 མ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x14,0x14,0x3c,0x2c,0x24,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3929 ཙ ; -+,0x00,0x00,0x00,0x06,0x04,0x00,0x1c,0x08,0x08,0x18,0x2c,0x24,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3930 ཚ ; -+,0x00,0x00,0x00,0x06,0x00,0x1c,0x1c,0x00,0x08,0x1c,0x22,0x22,0x2a,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3931 ཛ ; -+,0x00,0x00,0x00,0x06,0x00,0x1c,0x1c,0x10,0x10,0x1c,0x00,0x18,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3932 ཛྷ ; -+,0x00,0x04,0x00,0x1c,0x38,0x10,0x30,0x38,0x0c,0x1c,0x00,0x1c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3933 ཝ ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x00,0x0c,0x1c,0x14,0x14,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3934 ཞ ; -+,0x00,0x00,0x08,0x1c,0x34,0x2c,0x1c,0x14,0x18,0x24,0x04,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3935 ཟ ; -+,0x00,0x00,0x00,0x00,0x1c,0x1c,0x04,0x1c,0x04,0x04,0x34,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3936 འ ; -+,0x00,0x00,0x00,0x00,0x18,0x38,0x08,0x28,0x08,0x08,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3937 ཡ ; -+,0x00,0x00,0x00,0x00,0x00,0x3e,0x0c,0x2c,0x28,0x38,0x38,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3938 ར ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x1c,0x24,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3939 ལ ; -+,0x00,0x00,0x00,0x00,0x00,0x1e,0x3c,0x24,0x04,0x08,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3940 ཤ ; -+,0x00,0x00,0x0e,0x1c,0x14,0x14,0x3c,0x34,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3941 ཥ ; -+,0x00,0x00,0x00,0x18,0x14,0x14,0x14,0x1e,0x16,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3942 ས ; -+,0x00,0x00,0x00,0x00,0x00,0x1e,0x12,0x18,0x08,0x30,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3943 ཧ ; -+,0x00,0x00,0x1c,0x1c,0x00,0x20,0x2c,0x3c,0x14,0x04,0x04,0x00,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3944 ཨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x3e,0x2e,0x0e,0x0c,0x2a,0x2a,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3945 ཀྵ ; -+,0x00,0x00,0x3c,0x3c,0x2c,0x2c,0x0c,0x3c,0x3c,0x28,0x3c,0x24,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3946 ཪ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x08,0x08,0x1c,0x24,0x04,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3947 ཫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3948 ཬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3949 ཭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3950 ཮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3951 ཯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3952 ཰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3953 ཱ ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x08,0x1c,0x14,0x04,0x0c,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3954 ི ; -+,0x00,0x18,0x3c,0x24,0x32,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3955 ཱི ; -+,0x00,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3956 ུ ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x12,0x0b,0x0e,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3957 ཱུ ; -+,0x00,0x00,0x04,0x20,0x00,0x00,0x00,0x04,0x00,0x06,0x0e,0x0a,0x1e,0x12,0x0e,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3958 ྲྀ ; -+,0x00,0x0c,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3959 ཷ ; -+,0x00,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x18,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3960 ླྀ ; -+,0x00,0x00,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3961 ཹ ; -+,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x08,0x08,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3962 ེ ; -+,0x00,0x18,0x18,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3963 ཻ ; -+,0x00,0x18,0x08,0x14,0x1c,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3964 ོ ; -+,0x00,0x43,0x6e,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3965 ཽ ; -+,0x00,0x26,0x38,0x2e,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3966 ཾ ; -+,0x00,0x00,0x18,0x18,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3967 ཿ ; -+,0x00,0x00,0x00,0x00,0x14,0x22,0x16,0x0c,0x00,0x1c,0x32,0x32,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3968 ྀ ; -+,0x00,0x00,0x0c,0x1c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3969 ཱྀ ; -+,0x00,0x08,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3970 ྂ ; -+,0x00,0x00,0x00,0x08,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3971 ྃ ; -+,0x00,0x00,0x08,0x08,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3972 ྄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3973 ྅ ; -+,0x00,0x00,0x00,0x00,0x30,0x38,0x28,0x38,0x14,0x14,0x14,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3974 ྆ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3975 ྇ ; -+,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3976 ྈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3977 ྉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x16,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3978 ྊ ; -+,0x00,0x00,0x00,0x00,0x00,0x14,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3979 ྋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x24,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3980 ྌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3981 ྍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3982 ྎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3983 ྏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3984 ྐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x1c,0x0c,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3985 ྑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x24,0x2c,0x2c,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3986 ྒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x1c,0x04,0x34,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3987 ྒྷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x18,0x18,0x08,0x18,0x00,0x1c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3988 ྔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x10,0x00,0x18,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3989 ྕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x08,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3990 ྖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x1c,0x3c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3991 ྗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x10,0x1c,0x10,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3992 ྘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3993 ྙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x14,0x0c,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3994 ྚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x04,0x1c,0x14,0x14,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3995 ྛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x14,0x18,0x18,0x1c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3996 ྜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x04,0x0c,0x1c,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3997 ྜྷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x0c,0x1c,0x1c,0x18,0x1c,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3998 ྞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 3999 ྟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x1c,0x14,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4000 ྠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x04,0x1c,0x18,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4001 ྡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x10,0x18,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4002 ྡྷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x18,0x1c,0x10,0x1c,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4003 ྣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x18,0x1c,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4004 ྤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0x14,0x1c,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4005 ྥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0x0c,0x3c,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4006 ྦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x14,0x14,0x34,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4007 ྦྷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x14,0x3c,0x1c,0x18,0x1c,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4008 ྨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x14,0x1c,0x3c,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4009 ྩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x1c,0x08,0x1c,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4010 ྪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x00,0x1c,0x1c,0x08,0x3c,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4011 ྫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x00,0x1c,0x10,0x1c,0x10,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4012 ྫྷ ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x1c,0x1c,0x1c,0x18,0x1c,0x18,0x1c,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4013 ྭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xc0,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4014 ྮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x00,0x3c,0x34,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4015 ྯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x04,0x04,0x1c,0x04,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4016 ྰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x24,0x00,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4017 ྱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x3c,0x10,0x14,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4018 ྲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4019 ླ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x3c,0x24,0x2c,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4020 ྴ ; -+,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x14,0x3c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4021 ྵ ; -+,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x28,0x28,0x3e,0x24,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4022 ྶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x14,0x1c,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4023 ྷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x10,0x1c,0x14,0x04,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4024 ྸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2a,0x2a,0x0a,0x36,0x2e,0x2a,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4025 ྐྵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x1c,0x18,0x00,0x08,0x18,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4026 ྺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x3c,0x08,0x1c,0x1c,0x14,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4027 ྻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3a,0x2a,0x0a,0x2a,0x3a,0x16,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4028 ྼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x18,0x24,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4029 ྽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4030 ྾ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x14,0x14,0x08,0x08,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4031 ྿ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x14,0x1c,0x3e,0x08,0x14,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4032 ࿀ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x14,0x22,0x22,0x24,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4033 ࿁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x14,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4034 ࿂ ; -+,0x00,0x00,0x00,0x0c,0x04,0x1a,0x14,0x16,0x34,0x14,0x14,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4035 ࿃ ; -+,0x00,0x00,0x00,0x00,0x1c,0x04,0x36,0x26,0x36,0x2a,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4036 ࿄ ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x1c,0x1c,0x00,0x14,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4037 ࿅ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x18,0x10,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4038 ࿆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4039 ࿇ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x3e,0x36,0x28,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4040 ࿈ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x1c,0x1c,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4041 ࿉ ; -+,0x00,0x00,0x00,0x00,0x18,0x1c,0x04,0x28,0x20,0x20,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4042 ࿊ ; -+,0x00,0x00,0x00,0x00,0x08,0x14,0x34,0x2c,0x2c,0x2c,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4043 ࿋ ; -+,0x00,0x00,0x00,0x00,0x00,0x14,0x14,0x2a,0x2a,0x08,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4044 ࿌ ; -+,0x00,0x00,0x00,0x00,0x1c,0x14,0x3c,0x2e,0x3e,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4045 ࿍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4046 ࿎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4047 ࿏ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x18,0x00,0x36,0x34,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4048 ࿐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4049 ࿑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4050 ࿒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4051 ࿓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4052 ࿔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4053 ࿕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4054 ࿖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4055 ࿗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4056 ࿘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4057 ࿙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4058 ࿚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4059 ࿛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4060 ࿜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4061 ࿝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4062 ࿞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4063 ࿟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4064 ࿠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4065 ࿡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4066 ࿢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4067 ࿣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4068 ࿤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4069 ࿥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4070 ࿦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4071 ࿧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4072 ࿨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4073 ࿩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4074 ࿪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4075 ࿫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4076 ࿬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4077 ࿭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4078 ࿮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4079 ࿯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4080 ࿰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4081 ࿱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4082 ࿲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4083 ࿳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4084 ࿴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4085 ࿵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4086 ࿶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4087 ࿷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4088 ࿸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4089 ࿹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4090 ࿺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4091 ࿻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4092 ࿼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4093 ࿽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4094 ࿾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4095 ࿿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4096 က ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4097 ခ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4098 ဂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4099 ဃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4100 င ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4101 စ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4102 ဆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4103 ဇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4104 ဈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4105 ဉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4106 ည ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4107 ဋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4108 ဌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4109 ဍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4110 ဎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4111 ဏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4112 တ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4113 ထ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4114 ဒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4115 ဓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4116 န ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4117 ပ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4118 ဖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4119 ဗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4120 ဘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4121 မ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4122 ယ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4123 ရ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4124 လ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4125 ဝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4126 သ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4127 ဟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4128 ဠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4129 အ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4130 ဢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4131 ဣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4132 ဤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4133 ဥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4134 ဦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4135 ဧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4136 ဨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4137 ဩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4138 ဪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4139 ါ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4140 ာ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4141 ိ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4142 ီ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4143 ု ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4144 ူ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4145 ေ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4146 ဲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4147 ဳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4148 ဴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4149 ဵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4150 ံ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4151 ့ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4152 း ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4153 ္ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4154 ် ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4155 ျ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4156 ြ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4157 ွ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4158 ှ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4159 ဿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4160 ၀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4161 ၁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4162 ၂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4163 ၃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4164 ၄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4165 ၅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4166 ၆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4167 ၇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4168 ၈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4169 ၉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4170 ၊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4171 ။ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4172 ၌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4173 ၍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4174 ၎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4175 ၏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4176 ၐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4177 ၑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4178 ၒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4179 ၓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4180 ၔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4181 ၕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4182 ၖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4183 ၗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4184 ၘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4185 ၙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4186 ၚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4187 ၛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4188 ၜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4189 ၝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4190 ၞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4191 ၟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4192 ၠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4193 ၡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4194 ၢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4195 ၣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4196 ၤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4197 ၥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4198 ၦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4199 ၧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4200 ၨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4201 ၩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4202 ၪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4203 ၫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4204 ၬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4205 ၭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4206 ၮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4207 ၯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4208 ၰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4209 ၱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4210 ၲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4211 ၳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4212 ၴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4213 ၵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4214 ၶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4215 ၷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4216 ၸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4217 ၹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4218 ၺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4219 ၻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4220 ၼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4221 ၽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4222 ၾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4223 ၿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4224 ႀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4225 ႁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4226 ႂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4227 ႃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4228 ႄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4229 ႅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4230 ႆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4231 ႇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4232 ႈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4233 ႉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4234 ႊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4235 ႋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4236 ႌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4237 ႍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4238 ႎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4239 ႏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4240 ႐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4241 ႑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4242 ႒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4243 ႓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4244 ႔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4245 ႕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4246 ႖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4247 ႗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4248 ႘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4249 ႙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4250 ႚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4251 ႛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4252 ႜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4253 ႝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4254 ႞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4255 ႟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4256 Ⴀ ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x06,0x03,0x01,0x11,0x31,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4257 Ⴁ ; -+,0x00,0x00,0x00,0x00,0x18,0x04,0x04,0x04,0x13,0x11,0x31,0x31,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4258 Ⴂ ; -+,0x00,0x00,0x00,0x30,0x70,0x70,0x10,0x10,0x48,0x48,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4259 Ⴃ ; -+,0x00,0x00,0x00,0x58,0x54,0x54,0x54,0x48,0x60,0x70,0x18,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4260 Ⴄ ; -+,0x00,0x00,0x00,0x30,0x50,0x58,0x18,0x18,0x18,0x58,0x58,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4261 Ⴅ ; -+,0x00,0x00,0x00,0x0a,0x11,0x11,0x01,0x02,0x01,0x01,0x31,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4262 Ⴆ ; -+,0x00,0x00,0x00,0x12,0x33,0x33,0x12,0x04,0x13,0x31,0x31,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4263 Ⴇ ; -+,0x00,0x00,0x00,0x34,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4264 Ⴈ ; -+,0x00,0x00,0x00,0x02,0x11,0x31,0x31,0x31,0x31,0x31,0x31,0x31,0x11,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4265 Ⴉ ; -+,0x00,0x00,0x00,0x02,0x01,0x01,0x01,0x02,0x01,0x11,0x31,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4266 Ⴊ ; -+,0x00,0x00,0x00,0x62,0x5e,0x56,0x42,0x40,0x20,0x38,0x0c,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4267 Ⴋ ; -+,0x00,0x00,0x00,0x0a,0x11,0x31,0x01,0x01,0x13,0x11,0x31,0x31,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4268 Ⴌ ; -+,0x00,0x00,0x00,0x17,0x30,0x30,0x30,0x30,0x33,0x31,0x31,0x31,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4269 Ⴍ ; -+,0x00,0x00,0x00,0x1c,0x54,0x54,0x54,0x54,0x44,0x44,0x44,0x44,0x64,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4270 Ⴎ ; -+,0x00,0x00,0x00,0x08,0x0e,0x01,0x01,0x01,0x01,0x01,0x11,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4271 Ⴏ ; -+,0x00,0x00,0x00,0x01,0x03,0x09,0x09,0x19,0x01,0x11,0x31,0x31,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4272 Ⴐ ; -+,0x00,0x00,0x00,0x00,0x08,0x38,0x30,0x40,0x54,0x54,0x54,0x54,0x44,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4273 Ⴑ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x30,0x30,0x32,0x33,0x33,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4274 Ⴒ ; -+,0x00,0x00,0x00,0x30,0x30,0x00,0x30,0x68,0x68,0x48,0x48,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4275 Ⴓ ; -+,0x00,0x00,0x00,0x78,0x18,0x18,0x08,0x08,0x08,0x08,0x28,0x28,0x28,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4276 Ⴔ ; -+,0x00,0x00,0x00,0x78,0x58,0x58,0x78,0x08,0x08,0x08,0x28,0x28,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4277 Ⴕ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x11,0x11,0x01,0x01,0x31,0x31,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4278 Ⴖ ; -+,0x00,0x00,0x00,0x58,0x54,0x54,0x44,0x40,0x60,0x70,0x18,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4279 Ⴗ ; -+,0x00,0x00,0x00,0x11,0x31,0x31,0x11,0x01,0x01,0x11,0x31,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4280 Ⴘ ; -+,0x00,0x00,0x00,0x70,0x68,0x48,0x08,0x08,0x38,0x68,0x68,0x68,0x68,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4281 Ⴙ ; -+,0x00,0x00,0x00,0x1c,0x12,0x32,0x34,0x30,0x33,0x31,0x31,0x31,0x31,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4282 Ⴚ ; -+,0x00,0x00,0x00,0x00,0x50,0x58,0x48,0x50,0x48,0x48,0x48,0x48,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4283 Ⴛ ; -+,0x00,0x00,0x00,0x02,0x01,0x01,0x01,0x01,0x13,0x11,0x31,0x31,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4284 Ⴜ ; -+,0x00,0x00,0x00,0x78,0x58,0x58,0x40,0x40,0x50,0x50,0x50,0x50,0x50,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4285 Ⴝ ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x06,0x16,0x36,0x36,0x1f,0x06,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4286 Ⴞ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x32,0x34,0x32,0x31,0x31,0x31,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4287 Ⴟ ; -+,0x00,0x00,0x00,0x68,0x20,0x20,0x30,0x30,0x30,0x10,0x10,0x10,0x58,0x48,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4288 Ⴠ ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x07,0x01,0x03,0x01,0x11,0x31,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4289 Ⴡ ; -+,0x00,0x00,0x00,0x18,0x15,0x35,0x33,0x39,0x31,0x31,0x31,0x31,0x31,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4290 Ⴢ ; -+,0x00,0x00,0x00,0x30,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x70,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4291 Ⴣ ; -+,0x00,0x00,0x00,0x30,0x13,0x01,0x02,0x02,0x03,0x01,0x01,0x03,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4292 Ⴤ ; -+,0x00,0x00,0x00,0x00,0x04,0x03,0x01,0x01,0x01,0x01,0x11,0x31,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4293 Ⴥ ; -+,0x00,0x00,0x00,0x14,0x32,0x32,0x12,0x07,0x02,0x17,0x32,0x32,0x32,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4294 ჆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4295 Ⴧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4296 ჈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4297 ჉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4298 ჊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4299 ჋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4300 ჌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4301 Ⴭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4302 ჎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4303 ჏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4304 ა ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x06,0x23,0x23,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4305 ბ ; -+,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0x08,0x02,0x22,0x23,0x23,0x22,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4306 გ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x70,0x70,0x30,0x50,0x58,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4307 დ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x78,0x58,0x40,0x60,0x30,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4308 ე ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x22,0x33,0x03,0x03,0x03,0x23,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4309 ვ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x23,0x33,0x02,0x02,0x03,0x23,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4310 ზ ; -+,0x00,0x00,0x00,0x34,0x26,0x26,0x34,0x08,0x32,0x23,0x23,0x23,0x22,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4311 თ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x54,0x54,0x54,0x54,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4312 ი ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x22,0x23,0x23,0x32,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4313 კ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x03,0x02,0x02,0x03,0x23,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4314 ლ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7a,0xea,0xea,0x42,0x40,0x70,0x18,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4315 მ ; -+,0x00,0x00,0x00,0x14,0x22,0x23,0x03,0x03,0x13,0x23,0x23,0x23,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4316 ნ ; -+,0x00,0x00,0x00,0x2e,0x20,0x20,0x20,0x20,0x22,0x22,0x23,0x23,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4317 ო ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x54,0x54,0x44,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4318 პ ; -+,0x00,0x00,0x00,0x10,0x0c,0x02,0x03,0x02,0x02,0x03,0x23,0x23,0x22,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4319 ჟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x1b,0x1b,0x13,0x03,0x03,0x23,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4320 რ ; -+,0x00,0x00,0x00,0x00,0x18,0x30,0x60,0x40,0x54,0x54,0x54,0x44,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4321 ს ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x30,0x30,0x32,0x32,0x31,0x31,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4322 ტ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x30,0x70,0x68,0x68,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4323 უ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb0,0x38,0x18,0x18,0x18,0x18,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4324 ფ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x68,0x68,0x68,0x18,0x08,0x28,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4325 ქ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x03,0x33,0x33,0x33,0x03,0x03,0x03,0x23,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4326 ღ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x48,0x48,0x40,0x60,0x30,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4327 ყ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x23,0x33,0x03,0x03,0x23,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4328 შ ; -+,0x00,0x00,0x00,0x2f,0x69,0x21,0x01,0x01,0x13,0x31,0x31,0x31,0x31,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4329 ჩ ; -+,0x00,0x00,0x00,0x14,0x24,0x24,0x24,0x20,0x22,0x23,0x23,0x23,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4330 ც ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x21,0x21,0x22,0x21,0x21,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4331 ძ ; -+,0x00,0x00,0x00,0x04,0x02,0x03,0x03,0x03,0x13,0x23,0x23,0x23,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4332 წ ; -+,0x00,0x00,0x00,0x70,0xb8,0xf0,0xc0,0x40,0x50,0x50,0x50,0x50,0x40,0x60,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4333 ჭ ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x3c,0x26,0x26,0x1e,0x04,0x02,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4334 ხ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x32,0x34,0x33,0x31,0x31,0x31,0x11,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4335 ჯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe8,0x30,0x30,0x30,0x50,0xd8,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4336 ჰ ; -+,0x00,0x00,0x00,0x00,0x0e,0x02,0x06,0x02,0x02,0x02,0x23,0x23,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4337 ჱ ; -+,0x00,0x00,0x00,0x10,0x2a,0x2b,0x2a,0x31,0x22,0x22,0x23,0x23,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4338 ჲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x33,0x33,0x12,0x52,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4339 ჳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x24,0x04,0x04,0x04,0x06,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4340 ჴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x06,0x03,0x01,0x00,0x02,0x03,0x23,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4341 ჵ ; -+,0x00,0x00,0x00,0x1c,0x24,0x26,0x26,0x16,0x06,0x06,0x26,0x26,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4342 ჶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4343 ჷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4344 ჸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4345 ჹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4346 ჺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4347 ჻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4348 ჼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4349 ჽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4350 ჾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4351 ჿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4352 ᄀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4353 ᄁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4354 ᄂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4355 ᄃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4356 ᄄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4357 ᄅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4358 ᄆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4359 ᄇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4360 ᄈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4361 ᄉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4362 ᄊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4363 ᄋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4364 ᄌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4365 ᄍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4366 ᄎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4367 ᄏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4368 ᄐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4369 ᄑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4370 ᄒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4371 ᄓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4372 ᄔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4373 ᄕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4374 ᄖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4375 ᄗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4376 ᄘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4377 ᄙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4378 ᄚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4379 ᄛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4380 ᄜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4381 ᄝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4382 ᄞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4383 ᄟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4384 ᄠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4385 ᄡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4386 ᄢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4387 ᄣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4388 ᄤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4389 ᄥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4390 ᄦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4391 ᄧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4392 ᄨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4393 ᄩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4394 ᄪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4395 ᄫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4396 ᄬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4397 ᄭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4398 ᄮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4399 ᄯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4400 ᄰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4401 ᄱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4402 ᄲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4403 ᄳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4404 ᄴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4405 ᄵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4406 ᄶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4407 ᄷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4408 ᄸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4409 ᄹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4410 ᄺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4411 ᄻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4412 ᄼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4413 ᄽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4414 ᄾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4415 ᄿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4416 ᅀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4417 ᅁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4418 ᅂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4419 ᅃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4420 ᅄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4421 ᅅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4422 ᅆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4423 ᅇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4424 ᅈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4425 ᅉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4426 ᅊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4427 ᅋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4428 ᅌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4429 ᅍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4430 ᅎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4431 ᅏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4432 ᅐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4433 ᅑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4434 ᅒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4435 ᅓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4436 ᅔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4437 ᅕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4438 ᅖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4439 ᅗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4440 ᅘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4441 ᅙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4442 ᅚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4443 ᅛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4444 ᅜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4445 ᅝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4446 ᅞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4447 ᅟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4448 ᅠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4449 ᅡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4450 ᅢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4451 ᅣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4452 ᅤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4453 ᅥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4454 ᅦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4455 ᅧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4456 ᅨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4457 ᅩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4458 ᅪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4459 ᅫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4460 ᅬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4461 ᅭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4462 ᅮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4463 ᅯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4464 ᅰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4465 ᅱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4466 ᅲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4467 ᅳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4468 ᅴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4469 ᅵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4470 ᅶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4471 ᅷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4472 ᅸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4473 ᅹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4474 ᅺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4475 ᅻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4476 ᅼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4477 ᅽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4478 ᅾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4479 ᅿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4480 ᆀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4481 ᆁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4482 ᆂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4483 ᆃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4484 ᆄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4485 ᆅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4486 ᆆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4487 ᆇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4488 ᆈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4489 ᆉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4490 ᆊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4491 ᆋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4492 ᆌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4493 ᆍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4494 ᆎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4495 ᆏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4496 ᆐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4497 ᆑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4498 ᆒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4499 ᆓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4500 ᆔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4501 ᆕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4502 ᆖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4503 ᆗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4504 ᆘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4505 ᆙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4506 ᆚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4507 ᆛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4508 ᆜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4509 ᆝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4510 ᆞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4511 ᆟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4512 ᆠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4513 ᆡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4514 ᆢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4515 ᆣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4516 ᆤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4517 ᆥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4518 ᆦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4519 ᆧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4520 ᆨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4521 ᆩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4522 ᆪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4523 ᆫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4524 ᆬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4525 ᆭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4526 ᆮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4527 ᆯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4528 ᆰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4529 ᆱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4530 ᆲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4531 ᆳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4532 ᆴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4533 ᆵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4534 ᆶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4535 ᆷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4536 ᆸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4537 ᆹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4538 ᆺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4539 ᆻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4540 ᆼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4541 ᆽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4542 ᆾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4543 ᆿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4544 ᇀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4545 ᇁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4546 ᇂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4547 ᇃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4548 ᇄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4549 ᇅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4550 ᇆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4551 ᇇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4552 ᇈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4553 ᇉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4554 ᇊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4555 ᇋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4556 ᇌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4557 ᇍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4558 ᇎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4559 ᇏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4560 ᇐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4561 ᇑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4562 ᇒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4563 ᇓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4564 ᇔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4565 ᇕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4566 ᇖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4567 ᇗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4568 ᇘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4569 ᇙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4570 ᇚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4571 ᇛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4572 ᇜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4573 ᇝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4574 ᇞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4575 ᇟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4576 ᇠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4577 ᇡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4578 ᇢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4579 ᇣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4580 ᇤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4581 ᇥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4582 ᇦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4583 ᇧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4584 ᇨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4585 ᇩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4586 ᇪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4587 ᇫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4588 ᇬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4589 ᇭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4590 ᇮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4591 ᇯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4592 ᇰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4593 ᇱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4594 ᇲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4595 ᇳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4596 ᇴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4597 ᇵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4598 ᇶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4599 ᇷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4600 ᇸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4601 ᇹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4602 ᇺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4603 ᇻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4604 ᇼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4605 ᇽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4606 ᇾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4607 ᇿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4608 ሀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x50,0x50,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4609 ሁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x58,0x5c,0x5e,0x58,0x50,0x50,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4610 ሂ ; -+,0x00,0x00,0x00,0x00,0x00,0x50,0xd0,0xd0,0x70,0x30,0x20,0x20,0x20,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4611 ሃ ; -+,0x00,0x00,0x00,0x00,0x00,0x21,0x61,0x63,0x26,0x06,0x04,0x0c,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4612 ሄ ; -+,0x00,0x00,0x00,0x00,0x00,0x50,0xd0,0xd0,0x70,0x30,0x20,0x30,0x38,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4613 ህ ; -+,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x58,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4614 ሆ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x5c,0x5c,0x58,0x58,0x50,0x50,0x50,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4615 ሇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4616 ለ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x30,0x70,0x58,0x58,0x58,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4617 ሉ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x30,0x30,0x70,0x5c,0x5c,0x58,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4618 ሊ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x30,0x30,0x70,0x58,0x58,0x58,0x58,0x4c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4619 ላ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x30,0x30,0x70,0x58,0x58,0x58,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4620 ሌ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x30,0x30,0x70,0x58,0x58,0x58,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4621 ል ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x30,0x78,0x48,0x48,0x78,0x78,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4622 ሎ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x30,0x77,0x5f,0x5f,0x58,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4623 ሏ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x30,0x30,0x70,0x58,0x58,0x58,0x18,0x1e,0x26,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4624 ሐ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x18,0x74,0x56,0x52,0xd2,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4625 ሑ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x18,0x74,0x57,0x53,0xd2,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4626 ሒ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x18,0x34,0x56,0x52,0x52,0x57,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4627 ሓ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x10,0x18,0x74,0x56,0x52,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4628 ሔ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x18,0x74,0x56,0x52,0xd3,0x57,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4629 ሕ ; -+,0x00,0x00,0x00,0x00,0x30,0x38,0x18,0x18,0x18,0x74,0x56,0x52,0xd2,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4630 ሖ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x10,0x18,0x74,0x52,0x42,0xc0,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4631 ሗ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x10,0x18,0x74,0x56,0x52,0x02,0x07,0x09,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4632 መ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x5f,0x5e,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4633 ሙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x5f,0x5e,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4634 ሚ ; -+,0x00,0x00,0x00,0x00,0x1f,0x75,0x55,0x5d,0x77,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4635 ማ ; -+,0x00,0x00,0x00,0x00,0x1f,0x75,0x55,0x5d,0x77,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4636 ሜ ; -+,0x00,0x00,0x00,0x00,0x1f,0x75,0x55,0x5d,0x77,0x02,0x02,0x02,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4637 ም ; -+,0x00,0x00,0x00,0x00,0x1e,0x75,0x55,0x55,0x72,0x30,0x20,0x60,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4638 ሞ ; -+,0x00,0x00,0x00,0x00,0x1e,0x35,0x55,0x55,0x72,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4639 ሟ ; -+,0x00,0x00,0x00,0x00,0x05,0x75,0x55,0x5d,0x77,0x03,0x02,0x02,0x02,0x03,0x0d,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4640 ሠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7a,0x7a,0x5a,0x5c,0x70,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4641 ሡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6a,0x6a,0x5b,0x5f,0x70,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4642 ሢ ; -+,0x00,0x00,0x00,0x00,0x00,0x54,0xd4,0xf4,0x6c,0x0c,0x0c,0x08,0x08,0x0e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4643 ሣ ; -+,0x00,0x00,0x00,0x00,0x00,0x54,0xd4,0xf4,0x6c,0x0c,0x0c,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4644 ሤ ; -+,0x00,0x00,0x00,0x00,0x00,0x56,0x56,0x5c,0x44,0x04,0x04,0x04,0x0e,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4645 ሥ ; -+,0x00,0x00,0x00,0x00,0x00,0x35,0x35,0x2f,0x38,0x20,0x60,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4646 ሦ ; -+,0x00,0x00,0x00,0x00,0x00,0x5a,0x52,0x56,0x7c,0x30,0x20,0x20,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4647 ሧ ; -+,0x00,0x00,0x00,0x00,0x00,0x54,0xd4,0xf4,0x6c,0x0c,0x0c,0x08,0x08,0x0a,0x32,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4648 ረ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x60,0x40,0x40,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4649 ሩ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x60,0x40,0x68,0x28,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4650 ሪ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x10,0x10,0x20,0x40,0x48,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4651 ራ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x10,0x30,0x20,0x40,0x54,0x54,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4652 ሬ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x60,0x4c,0x5c,0x5c,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4653 ር ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x58,0x40,0x40,0x40,0x40,0x40,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4654 ሮ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x5c,0x58,0x40,0x40,0x40,0x40,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4655 ሯ ; -+,0x00,0x00,0x00,0x00,0x24,0x3c,0x18,0x10,0x30,0x20,0x40,0x54,0x54,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4656 ሰ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x58,0x48,0x48,0x48,0x48,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4657 ሱ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x58,0x48,0x4a,0x4e,0x48,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4658 ሲ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x58,0x48,0x48,0x48,0x48,0x58,0x5e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4659 ሳ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x48,0x48,0x48,0x48,0x48,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4660 ሴ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x58,0x48,0x48,0x48,0x48,0x5c,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4661 ስ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x30,0x58,0x48,0x48,0x48,0x48,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4662 ሶ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x58,0x48,0x48,0x58,0x58,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4663 ሷ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x48,0x48,0x48,0x48,0x48,0x18,0x1e,0x26,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4664 ሸ ; -+,0x00,0x00,0x00,0x00,0x08,0x7c,0x70,0x38,0x48,0x48,0x48,0x48,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4665 ሹ ; -+,0x00,0x00,0x00,0x00,0x08,0x7c,0x70,0x38,0x48,0x48,0x4e,0x4a,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4666 ሺ ; -+,0x00,0x00,0x00,0x00,0x08,0x7c,0x70,0x38,0x48,0x48,0x48,0x48,0x4a,0x6e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4667 ሻ ; -+,0x00,0x00,0x00,0x00,0x08,0x7c,0x70,0x38,0x48,0x48,0x48,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4668 ሼ ; -+,0x00,0x00,0x00,0x00,0x08,0x78,0x70,0x38,0x48,0x48,0x48,0x48,0x4e,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4669 ሽ ; -+,0x00,0x00,0x00,0x00,0x48,0x7c,0x10,0x1c,0x24,0x24,0x24,0x2c,0x2c,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4670 ሾ ; -+,0x00,0x00,0x00,0x00,0x08,0x7c,0x70,0x38,0x48,0x48,0x48,0x48,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4671 ሿ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x30,0x38,0x48,0x48,0x48,0x48,0x08,0x1a,0x26,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4672 ቀ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x5c,0x5c,0x70,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4673 ቁ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x5c,0x5c,0x70,0x1c,0x3c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4674 ቂ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x5c,0x5c,0x70,0x10,0x38,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4675 ቃ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x3c,0x7c,0x7c,0x10,0x10,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4676 ቄ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x5c,0x5c,0x70,0x10,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4677 ቅ ; -+,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0x18,0x5c,0x5c,0x70,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4678 ቆ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x28,0x38,0x18,0x7c,0x5c,0x70,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4679 ቇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4680 ቈ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x5c,0x5c,0x72,0x3a,0x3a,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4681 ቉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4682 ቊ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x1a,0x5e,0x5f,0x71,0x10,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4683 ቋ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x3c,0x5c,0x5c,0x70,0x30,0x38,0x78,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4684 ቌ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x7c,0x5c,0x5c,0x70,0x38,0x38,0x10,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4685 ቍ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x1a,0x5e,0x5d,0x71,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4686 ቎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4687 ቏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4688 ቐ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x38,0x5c,0x5c,0x70,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4689 ቑ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x38,0x5c,0x5c,0x70,0x3c,0x3c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4690 ቒ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x38,0x5c,0x5c,0x70,0x30,0x38,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4691 ቓ ; -+,0x00,0x00,0x00,0x00,0x64,0x74,0x18,0x34,0x74,0x7c,0x10,0x10,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4692 ቔ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x38,0x5c,0x5c,0x70,0x30,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4693 ቕ ; -+,0x00,0x00,0x00,0x40,0x4c,0x3c,0x10,0x1c,0x74,0x74,0x30,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4694 ቖ ; -+,0x00,0x00,0x00,0x24,0x2c,0x38,0x28,0x38,0x18,0x7c,0x5c,0x70,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4695 ቗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4696 ቘ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x38,0x5c,0x5c,0x72,0x3a,0x3a,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4697 ቙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4698 ቚ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x3a,0x5e,0x5f,0x71,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4699 ቛ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x7c,0x5c,0x5c,0x70,0x30,0x30,0x30,0x78,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4700 ቜ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x10,0x7c,0x5c,0x5c,0x70,0x30,0x38,0x38,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4701 ቝ ; -+,0x00,0x00,0x00,0x00,0x4c,0x54,0x12,0x3a,0x5e,0x5d,0x71,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4702 ቞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4703 ቟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4704 በ ; -+,0x00,0x00,0x00,0x00,0x00,0x50,0x58,0xd8,0xd8,0xd8,0xd0,0xd0,0xd0,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4705 ቡ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0xd8,0xdc,0xdc,0xd0,0xd0,0xd0,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4706 ቢ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0xd8,0xd8,0xd8,0xd8,0xd0,0xd4,0x5c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4707 ባ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0xd8,0xd8,0xd8,0xd0,0x50,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4708 ቤ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0xd8,0xd8,0xd8,0xd0,0xd8,0xd4,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4709 ብ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x16,0x36,0x76,0xf6,0xf4,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4710 ቦ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0xd8,0xd8,0xd0,0xd0,0xd0,0xc0,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4711 ቧ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0xd8,0xd8,0xd8,0xd8,0x50,0x10,0x1c,0x64,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4712 ቨ ; -+,0x00,0x00,0x00,0xd8,0xc8,0x50,0x58,0xd8,0xd8,0xd8,0xd0,0xd0,0xd0,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4713 ቩ ; -+,0x00,0x00,0x00,0xd8,0xc8,0x10,0x58,0xd8,0xdc,0xdc,0xd0,0xd0,0xd0,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4714 ቪ ; -+,0x00,0x00,0x00,0xd8,0xc8,0x10,0x58,0xd8,0xd8,0xd8,0xd8,0xd0,0xd4,0x5c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4715 ቫ ; -+,0x00,0x00,0x00,0xd8,0xc8,0x10,0x58,0xd8,0xd8,0xd8,0xd0,0x50,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4716 ቬ ; -+,0x00,0x00,0x00,0xd8,0xc8,0x10,0x58,0xd8,0xd8,0xd8,0xd0,0xd8,0xd4,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4717 ቭ ; -+,0x00,0x00,0x00,0x36,0x32,0x04,0x16,0x36,0x76,0xf6,0xf4,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4718 ቮ ; -+,0x00,0x00,0x00,0xd8,0xc8,0x10,0x58,0xd8,0xd8,0xd0,0xd0,0xd0,0xc0,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4719 ቯ ; -+,0x00,0x00,0x00,0xd8,0xc8,0x10,0x58,0xd8,0xd8,0xd8,0xd8,0x50,0x10,0x1c,0x66,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4720 ተ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x14,0x54,0x50,0x50,0x10,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4721 ቱ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x14,0x54,0x50,0x58,0x3c,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4722 ቲ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x14,0x54,0x50,0x50,0x10,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4723 ታ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x1a,0x3e,0x78,0x18,0x10,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4724 ቴ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x14,0x54,0x50,0x50,0x10,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4725 ት ; -+,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0x14,0x54,0x50,0x50,0x10,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4726 ቶ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x28,0x38,0x10,0x3c,0x54,0x70,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4727 ቷ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x14,0x54,0x50,0x50,0x30,0x30,0x3c,0x4c,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4728 ቸ ; -+,0x00,0x00,0x00,0x00,0x04,0x74,0x50,0x14,0x74,0x50,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4729 ቹ ; -+,0x00,0x00,0x00,0x00,0x04,0x74,0x50,0x14,0x74,0x50,0x14,0x1c,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4730 ቺ ; -+,0x00,0x00,0x00,0x00,0x04,0x74,0x50,0x14,0x74,0x50,0x10,0x10,0x10,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4731 ቻ ; -+,0x00,0x00,0x00,0x00,0x06,0x7e,0x08,0x0a,0x3e,0x38,0x38,0x10,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4732 ቼ ; -+,0x00,0x00,0x00,0x00,0x04,0x74,0x50,0x10,0x74,0x54,0x10,0x10,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4733 ች ; -+,0x00,0x00,0x64,0x7c,0x14,0x18,0x18,0x1e,0x7e,0x7e,0x78,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4734 ቾ ; -+,0x00,0x00,0x20,0x2c,0x28,0x28,0x28,0x18,0x14,0x7c,0x54,0x50,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4735 ቿ ; -+,0x00,0x00,0x00,0x00,0x04,0x74,0x50,0x14,0x74,0x50,0x10,0x10,0x10,0x1c,0x6c,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4736 ኀ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x08,0x08,0x08,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4737 ኁ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x08,0x0e,0x0e,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4738 ኂ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x08,0x08,0x08,0x18,0x1c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4739 ኃ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x08,0x08,0x18,0x70,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4740 ኄ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x08,0x08,0x08,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4741 ኅ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x58,0x48,0x08,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4742 ኆ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x1e,0x16,0x50,0x50,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4743 ኇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4744 ኈ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x0f,0x1d,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4745 ኉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4746 ኊ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x5c,0x4c,0x0c,0x1b,0x19,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4747 ኋ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x18,0x18,0x18,0x18,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4748 ኌ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x58,0x48,0x08,0x18,0x1c,0x1c,0x60,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4749 ኍ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x14,0x5c,0x4c,0x0a,0x1a,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4750 ኎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4751 ኏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4752 ነ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x30,0x04,0x0c,0x0c,0x08,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4753 ኑ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x60,0x20,0x28,0x38,0x20,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4754 ኒ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x04,0x0c,0x0c,0x08,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4755 ና ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x78,0x40,0x40,0x40,0x10,0x10,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4756 ኔ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x10,0x0c,0x0c,0x08,0x18,0x13,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4757 ን ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x50,0x18,0x18,0x10,0x10,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4758 ኖ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x58,0x40,0x40,0x10,0x10,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4759 ኗ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x78,0x40,0x40,0x40,0x10,0x10,0x30,0x38,0x4c,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4760 ኘ ; -+,0x00,0x00,0x00,0x00,0x04,0x7c,0x50,0x10,0x08,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4761 ኙ ; -+,0x00,0x00,0x00,0x00,0x04,0x7c,0x50,0x10,0x08,0x0c,0x1c,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4762 ኚ ; -+,0x00,0x00,0x00,0x00,0x04,0x7c,0x50,0x10,0x08,0x08,0x18,0x10,0x10,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4763 ኛ ; -+,0x00,0x00,0x00,0x04,0x6c,0x54,0x38,0x6c,0x60,0x60,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4764 ኜ ; -+,0x00,0x00,0x00,0x00,0x4c,0x7c,0x10,0x10,0x18,0x18,0x10,0x10,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4765 ኝ ; -+,0x00,0x00,0x00,0x40,0x4c,0x30,0x30,0x70,0x70,0x08,0x08,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4766 ኞ ; -+,0x00,0x00,0x00,0x00,0x6c,0x54,0x3c,0x6c,0x6c,0x60,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4767 ኟ ; -+,0x00,0x00,0x00,0x4c,0x6c,0x10,0x38,0x68,0x40,0x40,0x10,0x10,0x10,0x1c,0x6c,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4768 አ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x20,0x20,0x70,0x58,0x58,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4769 ኡ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x20,0x20,0x70,0x58,0x5c,0x4c,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4770 ኢ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x20,0x20,0x70,0x58,0x58,0x48,0x4e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4771 ኣ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x20,0x20,0x50,0x58,0x58,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4772 ኤ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x20,0x20,0x70,0x58,0x58,0x4e,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4773 እ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0x70,0x58,0x58,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4774 ኦ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x20,0x20,0x70,0x58,0x48,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4775 ኧ ; -+,0x00,0x00,0x00,0x00,0x48,0xf8,0x30,0x10,0x10,0x38,0x28,0x2c,0x2c,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4776 ከ ; -+,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x78,0x58,0x58,0x58,0x58,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4777 ኩ ; -+,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x78,0x58,0x5c,0x5c,0x58,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4778 ኪ ; -+,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x78,0x58,0x58,0x58,0x58,0x5c,0x5c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4779 ካ ; -+,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x78,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4780 ኬ ; -+,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x78,0x58,0x58,0x58,0x58,0x5c,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4781 ክ ; -+,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x58,0x58,0x78,0x58,0x58,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4782 ኮ ; -+,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x78,0x58,0x58,0x58,0x58,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4783 ኯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4784 ኰ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x50,0x38,0x68,0x4f,0x4d,0x4f,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4785 ኱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4786 ኲ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x50,0x38,0x6a,0x4e,0x4f,0x49,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4787 ኳ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x50,0x38,0x28,0x68,0x68,0x08,0x08,0x2c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4788 ኴ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x50,0x38,0x28,0x68,0x68,0x0c,0x0c,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4789 ኵ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x54,0x3c,0x6b,0x4b,0x48,0x48,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4790 ኶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4791 ኷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4792 ኸ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x38,0x14,0x34,0x34,0x34,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4793 ኹ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x38,0x14,0x34,0x37,0x37,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4794 ኺ ; -+,0x00,0x00,0x00,0x00,0x4c,0x70,0x38,0x14,0x34,0x34,0x34,0x34,0x35,0x37,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4795 ኻ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x38,0x34,0x34,0x34,0x34,0x34,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4796 ኼ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x38,0x14,0x34,0x34,0x34,0x34,0x37,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4797 ኽ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x38,0x34,0x34,0x34,0x14,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4798 ኾ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x38,0x14,0x34,0x34,0x34,0x34,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4799 ኿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4800 ዀ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x38,0x14,0x34,0x37,0x37,0x37,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4801 ዁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4802 ዂ ; -+,0x00,0x00,0x00,0x00,0x4c,0x7c,0x38,0x14,0x35,0x37,0x35,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4803 ዃ ; -+,0x00,0x00,0x00,0x08,0xc8,0xe8,0x30,0x38,0x2c,0x2c,0x2c,0x0c,0x0c,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4804 ዄ ; -+,0x00,0x00,0x00,0x08,0xc8,0xe8,0x30,0x38,0x2c,0x2c,0x2c,0x0e,0x0e,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4805 ዅ ; -+,0x00,0x00,0x00,0x00,0x4c,0x78,0x3b,0x17,0x35,0x34,0x34,0x34,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4806 ዆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4807 ዇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4808 ወ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x54,0x54,0x54,0x54,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4809 ዉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x54,0x54,0x54,0x56,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4810 ዊ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x54,0x5c,0x78,0x30,0x30,0x38,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4811 ዋ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x54,0x5c,0x78,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4812 ዌ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x5c,0x58,0x70,0x30,0x30,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4813 ው ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x55,0x55,0x54,0x54,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4814 ዎ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x34,0x54,0x54,0x38,0x30,0x60,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4815 ዏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4816 ዐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x68,0x48,0x48,0x48,0x58,0x58,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4817 ዑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x68,0x48,0x4e,0x4e,0x58,0x58,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4818 ዒ ; -+,0x00,0x00,0x00,0x00,0x30,0x78,0x58,0x58,0x78,0x08,0x08,0x18,0x18,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4819 ዓ ; -+,0x00,0x00,0x00,0x00,0x30,0x78,0x58,0x58,0x78,0x08,0x08,0x18,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4820 ዔ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x58,0x58,0x58,0x08,0x08,0x18,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4821 ዕ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x0e,0x13,0x31,0x31,0x31,0x33,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4822 ዖ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0x20,0x60,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4823 ዗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4824 ዘ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0x58,0x50,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4825 ዙ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0x58,0x50,0x5c,0x5c,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4826 ዚ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0x58,0x50,0x50,0x50,0x50,0x50,0x5c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4827 ዛ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0x58,0x50,0x50,0x50,0x50,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4828 ዜ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0x58,0x50,0x50,0x50,0x50,0x54,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4829 ዝ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x54,0x74,0x34,0x34,0x34,0x24,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4830 ዞ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0x50,0x50,0x50,0x50,0x50,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4831 ዟ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x58,0x58,0x50,0x50,0x50,0x50,0x10,0x14,0x64,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4832 ዠ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x65,0x54,0x74,0x34,0x34,0x34,0x24,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4833 ዡ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x65,0x54,0x74,0x37,0x37,0x34,0x24,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4834 ዢ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x65,0x54,0x74,0x34,0x34,0x34,0x25,0x37,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4835 ዣ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x75,0x54,0x74,0x34,0x34,0x34,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4836 ዤ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x65,0x54,0x74,0x34,0x34,0x34,0x27,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4837 ዥ ; -+,0x00,0x00,0x00,0x00,0x6c,0x54,0x13,0x77,0x76,0x16,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4838 ዦ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x65,0x54,0x74,0x34,0x34,0x34,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4839 ዧ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x75,0x54,0x74,0x34,0x34,0x34,0x04,0x0f,0x1b,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4840 የ ; -+,0x00,0x00,0x00,0x00,0x00,0x0b,0x33,0x23,0x34,0x30,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4841 ዩ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x50,0x50,0x60,0x40,0x70,0x78,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4842 ዪ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x50,0x50,0x60,0x40,0x70,0x74,0x6c,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4843 ያ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x28,0x28,0x38,0x20,0x30,0x30,0x50,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4844 ዬ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x50,0x50,0x60,0x40,0x70,0x78,0x68,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4845 ይ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x78,0x70,0x60,0x2c,0x28,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4846 ዮ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x50,0x54,0x6c,0x40,0x60,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4847 ዯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4848 ደ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x28,0x78,0x70,0x60,0x20,0x30,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4849 ዱ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x2c,0x28,0x30,0x78,0x4e,0x0a,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4850 ዲ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x2c,0x28,0x30,0x78,0x4c,0x08,0x0a,0x0e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4851 ዳ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x2c,0x28,0x30,0x78,0x4c,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4852 ዴ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x28,0x78,0x70,0x60,0x20,0x3c,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4853 ድ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x28,0x78,0x74,0x64,0x20,0x30,0x58,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4854 ዶ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x2c,0x28,0x38,0x30,0x26,0x46,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4855 ዷ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x2c,0x28,0x30,0x78,0x4c,0x08,0x08,0x0e,0x36,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4856 ዸ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x38,0x28,0x28,0x30,0x20,0x20,0x30,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4857 ዹ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x38,0x68,0x70,0x20,0x38,0x4e,0x5e,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4858 ዺ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x38,0x68,0x78,0x20,0x38,0x48,0x58,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4859 ዻ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x38,0x68,0x70,0x20,0x38,0x48,0x58,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4860 ዼ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x38,0x28,0x28,0x30,0x20,0x20,0x30,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4861 ዽ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x38,0x2e,0x2e,0x30,0x20,0x20,0x30,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4862 ዾ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x28,0x28,0x30,0x30,0x44,0x44,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4863 ዿ ; -+,0x00,0x00,0x00,0x00,0x30,0x30,0x38,0x68,0x78,0x20,0x38,0x48,0x58,0x10,0x6c,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4864 ጀ ; -+,0x00,0x00,0x00,0x00,0x4c,0x74,0x10,0x38,0x28,0x28,0x30,0x20,0x20,0x30,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4865 ጁ ; -+,0x00,0x00,0x00,0x00,0x4c,0x7c,0x30,0x38,0x68,0x70,0x20,0x38,0x4e,0x5e,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4866 ጂ ; -+,0x00,0x00,0x00,0x00,0x4c,0x7c,0x30,0x38,0x68,0x78,0x20,0x38,0x48,0x58,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4867 ጃ ; -+,0x00,0x00,0x00,0x00,0x4c,0x7c,0x30,0x38,0x68,0x70,0x20,0x38,0x48,0x58,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4868 ጄ ; -+,0x00,0x00,0x00,0x00,0x4c,0x74,0x10,0x38,0x28,0x28,0x30,0x20,0x20,0x30,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4869 ጅ ; -+,0x00,0x00,0x00,0x00,0x4c,0x74,0x10,0x38,0x2e,0x2e,0x30,0x20,0x20,0x30,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4870 ጆ ; -+,0x00,0x00,0x00,0x00,0x6c,0x74,0x10,0x28,0x28,0x28,0x30,0x30,0x44,0x44,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4871 ጇ ; -+,0x00,0x00,0x00,0x48,0x7c,0x30,0x38,0x68,0x78,0x20,0x38,0x48,0x58,0x10,0x6c,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4872 ገ ; -+,0x00,0x00,0x00,0x00,0x00,0x16,0x33,0x23,0x03,0x02,0x02,0x06,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4873 ጉ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x50,0x10,0x1c,0x1c,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4874 ጊ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x50,0x10,0x10,0x10,0x30,0x30,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4875 ጋ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x08,0x08,0x08,0x18,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4876 ጌ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x50,0x10,0x10,0x10,0x30,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4877 ግ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x68,0x68,0x08,0x08,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4878 ጎ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x58,0x58,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4879 ጏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4880 ጐ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x50,0x10,0x1e,0x1e,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4881 ጑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4882 ጒ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x50,0x5c,0x1c,0x1c,0x12,0x32,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4883 ጓ ; -+,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0x30,0x58,0x58,0x50,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4884 ጔ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x68,0x68,0x18,0x18,0x18,0x14,0x10,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4885 ጕ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x5c,0x5c,0x1c,0x16,0x10,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4886 ጖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4887 ጗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4888 ጘ ; -+,0x00,0x00,0x00,0x58,0x48,0x30,0x78,0x58,0x18,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4889 ጙ ; -+,0x00,0x00,0x00,0x58,0x48,0x30,0x78,0x58,0x18,0x1c,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4890 ጚ ; -+,0x00,0x00,0x00,0x58,0x48,0x30,0x78,0x58,0x18,0x10,0x10,0x10,0x10,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4891 ጛ ; -+,0x00,0x00,0x00,0x4c,0x6c,0x08,0x28,0x28,0x08,0x08,0x08,0x18,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4892 ጜ ; -+,0x00,0x00,0x00,0x58,0x48,0x30,0x78,0x58,0x18,0x10,0x10,0x10,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4893 ጝ ; -+,0x00,0x00,0x00,0x58,0x48,0x10,0x68,0x68,0x68,0x08,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4894 ጞ ; -+,0x00,0x00,0x00,0x00,0xd8,0xe8,0x30,0x58,0x58,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4895 ጟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4896 ጠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x36,0x56,0x52,0x52,0x52,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4897 ጡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x36,0x57,0x53,0x52,0x52,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4898 ጢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x36,0x56,0x56,0x52,0x52,0x53,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4899 ጣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x56,0x56,0x56,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4900 ጤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x36,0x56,0x56,0x52,0x53,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4901 ጥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x54,0x54,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4902 ጦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x36,0x76,0x56,0x56,0x52,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4903 ጧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x76,0x52,0x52,0x52,0x02,0x0d,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4904 ጨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x2b,0x6b,0x4b,0x7f,0x7f,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4905 ጩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x2b,0x6b,0x4b,0x7f,0x7f,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4906 ጪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x2b,0x6b,0x4b,0x7f,0x7f,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4907 ጫ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x2b,0x4b,0x7f,0x7f,0x02,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4908 ጬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x2b,0x6b,0x4b,0x7f,0x7f,0x59,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4909 ጭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x2e,0x6a,0x6b,0x6b,0x08,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4910 ጮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x3b,0x2b,0x5f,0x5f,0x4b,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4911 ጯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x3a,0x6b,0x4b,0x7f,0x7f,0x03,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4912 ጰ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x58,0x70,0x30,0x78,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4913 ጱ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x58,0x70,0x30,0x7c,0x4e,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4914 ጲ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x58,0x70,0x30,0x78,0x48,0x48,0x4e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4915 ጳ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x58,0x78,0x30,0x58,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4916 ጴ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x58,0x70,0x30,0x78,0x48,0x4e,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4917 ጵ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x5c,0x76,0x30,0x78,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4918 ጶ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x58,0x70,0x30,0x78,0x48,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4919 ጷ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x70,0x58,0x78,0x30,0x58,0x48,0x08,0x0e,0x36,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4920 ጸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x70,0x30,0x78,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4921 ጹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x70,0x30,0x7c,0x4e,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4922 ጺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x70,0x30,0x78,0x48,0x48,0x4e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4923 ጻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x78,0x30,0x58,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4924 ጼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x70,0x30,0x78,0x48,0x4e,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4925 ጽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x5c,0x76,0x30,0x78,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4926 ጾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x70,0x30,0x78,0x48,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4927 ጿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x58,0x78,0x30,0x58,0x48,0x08,0x0e,0x36,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4928 ፀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x78,0x58,0x78,0x58,0x58,0x50,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4929 ፁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x78,0x58,0x5c,0x5e,0x58,0x58,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4930 ፂ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x50,0x50,0x30,0x30,0x20,0x28,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4931 ፃ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x23,0x23,0x22,0x06,0x06,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4932 ፄ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x50,0x50,0x30,0x30,0x20,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4933 ፅ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x0c,0x13,0x33,0x33,0x33,0x33,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4934 ፆ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0x20,0x60,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4935 ፇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4936 ፈ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x20,0x60,0x70,0x54,0xdc,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4937 ፉ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x70,0x5c,0x7c,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4938 ፊ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x20,0x60,0x70,0x54,0xdc,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4939 ፋ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x70,0x50,0x74,0x1c,0x34,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4940 ፌ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x20,0x60,0x70,0x50,0xd6,0x5e,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4941 ፍ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x40,0x70,0x50,0x3c,0x3c,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4942 ፎ ; -+,0x00,0x00,0x00,0x00,0x00,0x14,0x74,0x5c,0x40,0x40,0x70,0x50,0x5c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4943 ፏ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x70,0x50,0x7c,0x1c,0x30,0x38,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4944 ፐ ; -+,0x00,0x00,0x00,0x00,0x04,0x54,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4945 ፑ ; -+,0x00,0x00,0x00,0x00,0x04,0x54,0x50,0x50,0x10,0x1c,0x1c,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4946 ፒ ; -+,0x00,0x00,0x00,0x00,0x04,0x54,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4947 ፓ ; -+,0x00,0x00,0x00,0x00,0x02,0x7e,0x7a,0x58,0x18,0x18,0x10,0x10,0x30,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4948 ፔ ; -+,0x00,0x00,0x00,0x00,0x04,0x54,0x50,0x50,0x10,0x10,0x10,0x10,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4949 ፕ ; -+,0x00,0x00,0x00,0x00,0x04,0x76,0x70,0x10,0x18,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4950 ፖ ; -+,0x00,0x00,0x00,0x00,0x02,0x2e,0x68,0x08,0x18,0x10,0x30,0x60,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4951 ፗ ; -+,0x00,0x00,0x00,0x00,0x04,0x54,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x6c,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4952 ፘ ; -+,0x00,0x00,0x00,0x00,0x0c,0x7c,0x50,0x30,0x20,0x20,0x40,0x48,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4953 ፙ ; -+,0x00,0x00,0x00,0x32,0x3e,0x08,0x3d,0x55,0x5d,0x57,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4954 ፚ ; -+,0x00,0x00,0x00,0x00,0x0c,0x7c,0x50,0x30,0x20,0x60,0x70,0x54,0xdc,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4955 ፛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4956 ፜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4957 ፝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4958 ፞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4959 ፟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4960 ፠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4961 ፡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4962 ። ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x38,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4963 ፣ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x18,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4964 ፤ ; -+,0x00,0x00,0x00,0x00,0x38,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4965 ፥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4966 ፦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x0f,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4967 ፧ ; -+,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x30,0x20,0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4968 ፨ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x4c,0x4c,0x10,0x10,0x4c,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4969 ፩ ; -+,0x00,0x00,0x00,0x00,0x6c,0x6c,0x50,0x10,0x30,0x30,0x78,0x58,0x70,0x08,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4970 ፪ ; -+,0x00,0x00,0x00,0x00,0x58,0x40,0x30,0x78,0x70,0x60,0x60,0x38,0x10,0x08,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4971 ፫ ; -+,0x00,0x00,0x00,0x08,0x68,0x68,0x00,0x78,0x48,0x40,0x40,0x40,0x40,0x08,0x68,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4972 ፬ ; -+,0x00,0x00,0x00,0x08,0x68,0x68,0x00,0x38,0x48,0x48,0x48,0x30,0x00,0x08,0x68,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4973 ፭ ; -+,0x00,0x00,0x00,0x00,0x78,0x40,0x30,0x38,0x28,0x40,0x40,0x58,0x18,0x08,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4974 ፮ ; -+,0x00,0x00,0x00,0x00,0x78,0x48,0x40,0x50,0x50,0x30,0x30,0x38,0x30,0x00,0x78,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4975 ፯ ; -+,0x00,0x00,0x00,0x00,0x2c,0x6c,0x00,0x78,0x70,0x10,0x30,0x3c,0x3c,0x08,0x68,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4976 ፰ ; -+,0x00,0x00,0x00,0x00,0x3c,0x2c,0x04,0x74,0x70,0x10,0x10,0x14,0x6c,0x60,0x28,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4977 ፱ ; -+,0x00,0x00,0x00,0x08,0x68,0x68,0x00,0x28,0x28,0x68,0x68,0x70,0x20,0x08,0x68,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4978 ፲ ; -+,0x00,0x00,0x00,0x00,0x78,0x48,0x40,0x30,0x30,0x20,0x20,0x20,0x20,0x00,0x78,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4979 ፳ ; -+,0x00,0x00,0x00,0x00,0x68,0x68,0x0c,0x5c,0x50,0x38,0x28,0x68,0x28,0x00,0x68,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4980 ፴ ; -+,0x00,0x00,0x00,0x00,0x3c,0x24,0x00,0x3c,0x54,0x54,0x54,0x74,0x04,0x00,0x2c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4981 ፵ ; -+,0x00,0x00,0x00,0x00,0x2c,0x2c,0x00,0x54,0x54,0x5c,0x0c,0x08,0x08,0x00,0x68,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4982 ፶ ; -+,0x00,0x00,0x00,0x00,0x78,0x58,0x00,0x50,0x50,0x50,0x10,0x10,0x10,0x00,0x78,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4983 ፷ ; -+,0x00,0x00,0x00,0x04,0x2c,0x24,0x24,0x74,0x50,0x18,0x10,0x6c,0x64,0x40,0x2c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4984 ፸ ; -+,0x00,0x00,0x00,0x00,0x78,0x68,0x1c,0x7c,0x5c,0x40,0x40,0x58,0x78,0x00,0x78,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4985 ፹ ; -+,0x00,0x00,0x00,0x00,0x34,0x34,0x00,0x1e,0x5e,0x7c,0x38,0x38,0x38,0x00,0x34,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4986 ፺ ; -+,0x00,0x00,0x00,0x00,0x78,0x68,0x00,0x70,0x70,0x58,0x10,0x10,0x30,0x00,0x78,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4987 ፻ ; -+,0x00,0x00,0x00,0x00,0x78,0x68,0x00,0x38,0x78,0x70,0x20,0x20,0x20,0x00,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4988 ፼ ; -+,0x00,0x00,0x00,0x00,0x34,0x24,0x20,0x5a,0x5a,0x7e,0x48,0x4c,0x4c,0x00,0x6c,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4989 ፽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4990 ፾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4991 ፿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4992 ᎀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4993 ᎁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4994 ᎂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4995 ᎃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4996 ᎄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4997 ᎅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4998 ᎆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 4999 ᎇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5000 ᎈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5001 ᎉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5002 ᎊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5003 ᎋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5004 ᎌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5005 ᎍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5006 ᎎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5007 ᎏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5008 ᎐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5009 ᎑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5010 ᎒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5011 ᎓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5012 ᎔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5013 ᎕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5014 ᎖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5015 ᎗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5016 ᎘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5017 ᎙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5018 ᎚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5019 ᎛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5020 ᎜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5021 ᎝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5022 ᎞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5023 ᎟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5024 Ꭰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5025 Ꭱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5026 Ꭲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5027 Ꭳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5028 Ꭴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5029 Ꭵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5030 Ꭶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5031 Ꭷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5032 Ꭸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5033 Ꭹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5034 Ꭺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5035 Ꭻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5036 Ꭼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5037 Ꭽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5038 Ꭾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5039 Ꭿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5040 Ꮀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5041 Ꮁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5042 Ꮂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5043 Ꮃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5044 Ꮄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5045 Ꮅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5046 Ꮆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5047 Ꮇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5048 Ꮈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5049 Ꮉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5050 Ꮊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5051 Ꮋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5052 Ꮌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5053 Ꮍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5054 Ꮎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5055 Ꮏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5056 Ꮐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5057 Ꮑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5058 Ꮒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5059 Ꮓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5060 Ꮔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5061 Ꮕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5062 Ꮖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5063 Ꮗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5064 Ꮘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5065 Ꮙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5066 Ꮚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5067 Ꮛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5068 Ꮜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5069 Ꮝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5070 Ꮞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5071 Ꮟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5072 Ꮠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5073 Ꮡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5074 Ꮢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5075 Ꮣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5076 Ꮤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5077 Ꮥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5078 Ꮦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5079 Ꮧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5080 Ꮨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5081 Ꮩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5082 Ꮪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5083 Ꮫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5084 Ꮬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5085 Ꮭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5086 Ꮮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5087 Ꮯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5088 Ꮰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5089 Ꮱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5090 Ꮲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5091 Ꮳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5092 Ꮴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5093 Ꮵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5094 Ꮶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5095 Ꮷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5096 Ꮸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5097 Ꮹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5098 Ꮺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5099 Ꮻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5100 Ꮼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5101 Ꮽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5102 Ꮾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5103 Ꮿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5104 Ᏸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5105 Ᏹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5106 Ᏺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5107 Ᏻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5108 Ᏼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5109 Ᏽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5110 ᏶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5111 ᏷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5112 ᏸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5113 ᏹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5114 ᏺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5115 ᏻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5116 ᏼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5117 ᏽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5118 ᏾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5119 ᏿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5120 ᐀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5121 ᐁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5122 ᐂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5123 ᐃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5124 ᐄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5125 ᐅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5126 ᐆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5127 ᐇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5128 ᐈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5129 ᐉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5130 ᐊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5131 ᐋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5132 ᐌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5133 ᐍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5134 ᐎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5135 ᐏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5136 ᐐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5137 ᐑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5138 ᐒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5139 ᐓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5140 ᐔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5141 ᐕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5142 ᐖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5143 ᐗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5144 ᐘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5145 ᐙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5146 ᐚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5147 ᐛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5148 ᐜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5149 ᐝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5150 ᐞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5151 ᐟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5152 ᐠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5153 ᐡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5154 ᐢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5155 ᐣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5156 ᐤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5157 ᐥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5158 ᐦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5159 ᐧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5160 ᐨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5161 ᐩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5162 ᐪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5163 ᐫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5164 ᐬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5165 ᐭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5166 ᐮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5167 ᐯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5168 ᐰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5169 ᐱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5170 ᐲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5171 ᐳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5172 ᐴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5173 ᐵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5174 ᐶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5175 ᐷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5176 ᐸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5177 ᐹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5178 ᐺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5179 ᐻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5180 ᐼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5181 ᐽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5182 ᐾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5183 ᐿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5184 ᑀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5185 ᑁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5186 ᑂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5187 ᑃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5188 ᑄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5189 ᑅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5190 ᑆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5191 ᑇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5192 ᑈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5193 ᑉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5194 ᑊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5195 ᑋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5196 ᑌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5197 ᑍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5198 ᑎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5199 ᑏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5200 ᑐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5201 ᑑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5202 ᑒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5203 ᑓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5204 ᑔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5205 ᑕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5206 ᑖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5207 ᑗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5208 ᑘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5209 ᑙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5210 ᑚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5211 ᑛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5212 ᑜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5213 ᑝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5214 ᑞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5215 ᑟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5216 ᑠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5217 ᑡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5218 ᑢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5219 ᑣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5220 ᑤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5221 ᑥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5222 ᑦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5223 ᑧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5224 ᑨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5225 ᑩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5226 ᑪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5227 ᑫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5228 ᑬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5229 ᑭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5230 ᑮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5231 ᑯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5232 ᑰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5233 ᑱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5234 ᑲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5235 ᑳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5236 ᑴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5237 ᑵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5238 ᑶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5239 ᑷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5240 ᑸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5241 ᑹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5242 ᑺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5243 ᑻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5244 ᑼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5245 ᑽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5246 ᑾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5247 ᑿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5248 ᒀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5249 ᒁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5250 ᒂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5251 ᒃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5252 ᒄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5253 ᒅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5254 ᒆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5255 ᒇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5256 ᒈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5257 ᒉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5258 ᒊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5259 ᒋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5260 ᒌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5261 ᒍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5262 ᒎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5263 ᒏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5264 ᒐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5265 ᒑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5266 ᒒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5267 ᒓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5268 ᒔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5269 ᒕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5270 ᒖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5271 ᒗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5272 ᒘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5273 ᒙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5274 ᒚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5275 ᒛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5276 ᒜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5277 ᒝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5278 ᒞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5279 ᒟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5280 ᒠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5281 ᒡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5282 ᒢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5283 ᒣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5284 ᒤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5285 ᒥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5286 ᒦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5287 ᒧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5288 ᒨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5289 ᒩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5290 ᒪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5291 ᒫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5292 ᒬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5293 ᒭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5294 ᒮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5295 ᒯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5296 ᒰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5297 ᒱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5298 ᒲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5299 ᒳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5300 ᒴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5301 ᒵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5302 ᒶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5303 ᒷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5304 ᒸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5305 ᒹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5306 ᒺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5307 ᒻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5308 ᒼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5309 ᒽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5310 ᒾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5311 ᒿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5312 ᓀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5313 ᓁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5314 ᓂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5315 ᓃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5316 ᓄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5317 ᓅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5318 ᓆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5319 ᓇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5320 ᓈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5321 ᓉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5322 ᓊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5323 ᓋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5324 ᓌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5325 ᓍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5326 ᓎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5327 ᓏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5328 ᓐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5329 ᓑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5330 ᓒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5331 ᓓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5332 ᓔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5333 ᓕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5334 ᓖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5335 ᓗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5336 ᓘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5337 ᓙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5338 ᓚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5339 ᓛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5340 ᓜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5341 ᓝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5342 ᓞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5343 ᓟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5344 ᓠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5345 ᓡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5346 ᓢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5347 ᓣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5348 ᓤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5349 ᓥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5350 ᓦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5351 ᓧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5352 ᓨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5353 ᓩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5354 ᓪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5355 ᓫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5356 ᓬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5357 ᓭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5358 ᓮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5359 ᓯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5360 ᓰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5361 ᓱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5362 ᓲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5363 ᓳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5364 ᓴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5365 ᓵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5366 ᓶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5367 ᓷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5368 ᓸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5369 ᓹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5370 ᓺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5371 ᓻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5372 ᓼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5373 ᓽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5374 ᓾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5375 ᓿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5376 ᔀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5377 ᔁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5378 ᔂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5379 ᔃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5380 ᔄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5381 ᔅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5382 ᔆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5383 ᔇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5384 ᔈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5385 ᔉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5386 ᔊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5387 ᔋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5388 ᔌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5389 ᔍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5390 ᔎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5391 ᔏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5392 ᔐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5393 ᔑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5394 ᔒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5395 ᔓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5396 ᔔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5397 ᔕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5398 ᔖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5399 ᔗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5400 ᔘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5401 ᔙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5402 ᔚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5403 ᔛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5404 ᔜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5405 ᔝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5406 ᔞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5407 ᔟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5408 ᔠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5409 ᔡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5410 ᔢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5411 ᔣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5412 ᔤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5413 ᔥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5414 ᔦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5415 ᔧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5416 ᔨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5417 ᔩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5418 ᔪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5419 ᔫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5420 ᔬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5421 ᔭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5422 ᔮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5423 ᔯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5424 ᔰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5425 ᔱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5426 ᔲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5427 ᔳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5428 ᔴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5429 ᔵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5430 ᔶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5431 ᔷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5432 ᔸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5433 ᔹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5434 ᔺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5435 ᔻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5436 ᔼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5437 ᔽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5438 ᔾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5439 ᔿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5440 ᕀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5441 ᕁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5442 ᕂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5443 ᕃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5444 ᕄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5445 ᕅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5446 ᕆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5447 ᕇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5448 ᕈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5449 ᕉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5450 ᕊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5451 ᕋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5452 ᕌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5453 ᕍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5454 ᕎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5455 ᕏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5456 ᕐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5457 ᕑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5458 ᕒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5459 ᕓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5460 ᕔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5461 ᕕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5462 ᕖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5463 ᕗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5464 ᕘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5465 ᕙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5466 ᕚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5467 ᕛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5468 ᕜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5469 ᕝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5470 ᕞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5471 ᕟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5472 ᕠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5473 ᕡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5474 ᕢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5475 ᕣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5476 ᕤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5477 ᕥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5478 ᕦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5479 ᕧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5480 ᕨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5481 ᕩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5482 ᕪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5483 ᕫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5484 ᕬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5485 ᕭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5486 ᕮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5487 ᕯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5488 ᕰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5489 ᕱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5490 ᕲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5491 ᕳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5492 ᕴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5493 ᕵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5494 ᕶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5495 ᕷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5496 ᕸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5497 ᕹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5498 ᕺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5499 ᕻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5500 ᕼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5501 ᕽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5502 ᕾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5503 ᕿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5504 ᖀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5505 ᖁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5506 ᖂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5507 ᖃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5508 ᖄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5509 ᖅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5510 ᖆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5511 ᖇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5512 ᖈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5513 ᖉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5514 ᖊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5515 ᖋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5516 ᖌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5517 ᖍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5518 ᖎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5519 ᖏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5520 ᖐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5521 ᖑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5522 ᖒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5523 ᖓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5524 ᖔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5525 ᖕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5526 ᖖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5527 ᖗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5528 ᖘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5529 ᖙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5530 ᖚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5531 ᖛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5532 ᖜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5533 ᖝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5534 ᖞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5535 ᖟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5536 ᖠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5537 ᖡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5538 ᖢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5539 ᖣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5540 ᖤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5541 ᖥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5542 ᖦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5543 ᖧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5544 ᖨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5545 ᖩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5546 ᖪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5547 ᖫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5548 ᖬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5549 ᖭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5550 ᖮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5551 ᖯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5552 ᖰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5553 ᖱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5554 ᖲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5555 ᖳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5556 ᖴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5557 ᖵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5558 ᖶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5559 ᖷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5560 ᖸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5561 ᖹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5562 ᖺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5563 ᖻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5564 ᖼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5565 ᖽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5566 ᖾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5567 ᖿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5568 ᗀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5569 ᗁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5570 ᗂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5571 ᗃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5572 ᗄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5573 ᗅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5574 ᗆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5575 ᗇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5576 ᗈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5577 ᗉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5578 ᗊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5579 ᗋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5580 ᗌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5581 ᗍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5582 ᗎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5583 ᗏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5584 ᗐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5585 ᗑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5586 ᗒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5587 ᗓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5588 ᗔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5589 ᗕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5590 ᗖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5591 ᗗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5592 ᗘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5593 ᗙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5594 ᗚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5595 ᗛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5596 ᗜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5597 ᗝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5598 ᗞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5599 ᗟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5600 ᗠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5601 ᗡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5602 ᗢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5603 ᗣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5604 ᗤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5605 ᗥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5606 ᗦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5607 ᗧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5608 ᗨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5609 ᗩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5610 ᗪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5611 ᗫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5612 ᗬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5613 ᗭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5614 ᗮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5615 ᗯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5616 ᗰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5617 ᗱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5618 ᗲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5619 ᗳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5620 ᗴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5621 ᗵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5622 ᗶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5623 ᗷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5624 ᗸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5625 ᗹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5626 ᗺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5627 ᗻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5628 ᗼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5629 ᗽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5630 ᗾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5631 ᗿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5632 ᘀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5633 ᘁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5634 ᘂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5635 ᘃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5636 ᘄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5637 ᘅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5638 ᘆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5639 ᘇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5640 ᘈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5641 ᘉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5642 ᘊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5643 ᘋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5644 ᘌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5645 ᘍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5646 ᘎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5647 ᘏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5648 ᘐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5649 ᘑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5650 ᘒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5651 ᘓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5652 ᘔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5653 ᘕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5654 ᘖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5655 ᘗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5656 ᘘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5657 ᘙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5658 ᘚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5659 ᘛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5660 ᘜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5661 ᘝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5662 ᘞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5663 ᘟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5664 ᘠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5665 ᘡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5666 ᘢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5667 ᘣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5668 ᘤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5669 ᘥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5670 ᘦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5671 ᘧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5672 ᘨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5673 ᘩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5674 ᘪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5675 ᘫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5676 ᘬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5677 ᘭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5678 ᘮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5679 ᘯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5680 ᘰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5681 ᘱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5682 ᘲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5683 ᘳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5684 ᘴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5685 ᘵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5686 ᘶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5687 ᘷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5688 ᘸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5689 ᘹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5690 ᘺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5691 ᘻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5692 ᘼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5693 ᘽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5694 ᘾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5695 ᘿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5696 ᙀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5697 ᙁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5698 ᙂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5699 ᙃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5700 ᙄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5701 ᙅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5702 ᙆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5703 ᙇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5704 ᙈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5705 ᙉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5706 ᙊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5707 ᙋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5708 ᙌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5709 ᙍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5710 ᙎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5711 ᙏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5712 ᙐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5713 ᙑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5714 ᙒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5715 ᙓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5716 ᙔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5717 ᙕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5718 ᙖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5719 ᙗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5720 ᙘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5721 ᙙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5722 ᙚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5723 ᙛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5724 ᙜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5725 ᙝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5726 ᙞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5727 ᙟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5728 ᙠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5729 ᙡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5730 ᙢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5731 ᙣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5732 ᙤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5733 ᙥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5734 ᙦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5735 ᙧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5736 ᙨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5737 ᙩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5738 ᙪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5739 ᙫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5740 ᙬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5741 ᙭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5742 ᙮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5743 ᙯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5744 ᙰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5745 ᙱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5746 ᙲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5747 ᙳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5748 ᙴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5749 ᙵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5750 ᙶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5751 ᙷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5752 ᙸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5753 ᙹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5754 ᙺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5755 ᙻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5756 ᙼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5757 ᙽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5758 ᙾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5759 ᙿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5760   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5761 ᚁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5762 ᚂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5763 ᚃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5764 ᚄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5765 ᚅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5766 ᚆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5767 ᚇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5768 ᚈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5769 ᚉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5770 ᚊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5771 ᚋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5772 ᚌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5773 ᚍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5774 ᚎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5775 ᚏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5776 ᚐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5777 ᚑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5778 ᚒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5779 ᚓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5780 ᚔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5781 ᚕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5782 ᚖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5783 ᚗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5784 ᚘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5785 ᚙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5786 ᚚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5787 ᚛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5788 ᚜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5789 ᚝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5790 ᚞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5791 ᚟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5792 ᚠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5793 ᚡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5794 ᚢ ; -+,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5795 ᚣ ; -+,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5796 ᚤ ; -+,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5797 ᚥ ; -+,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5798 ᚦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5799 ᚧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5800 ᚨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5801 ᚩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5802 ᚪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5803 ᚫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5804 ᚬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5805 ᚭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5806 ᚮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5807 ᚯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5808 ᚰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5809 ᚱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5810 ᚲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5811 ᚳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5812 ᚴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5813 ᚵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5814 ᚶ ; -+,0x00,0x00,0x00,0x00,0x04,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5815 ᚷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5816 ᚸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x17,0x04,0x16,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5817 ᚹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5818 ᚺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5819 ᚻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5820 ᚼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5821 ᚽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5822 ᚾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5823 ᚿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5824 ᛀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5825 ᛁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5826 ᛂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5827 ᛃ ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x10,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5828 ᛄ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x10,0x08,0x48,0x00,0x40,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5829 ᛅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5830 ᛆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5831 ᛇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5832 ᛈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5833 ᛉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5834 ᛊ ; -+,0x00,0x00,0x04,0x00,0x00,0x10,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5835 ᛋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5836 ᛌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5837 ᛍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5838 ᛎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5839 ᛏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5840 ᛐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5841 ᛑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5842 ᛒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5843 ᛓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5844 ᛔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5845 ᛕ ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x10,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5846 ᛖ ; -+,0x00,0x00,0x48,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5847 ᛗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5848 ᛘ ; -+,0x00,0x00,0x00,0x00,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5849 ᛙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5850 ᛚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5851 ᛛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5852 ᛜ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x48,0x40,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5853 ᛝ ; -+,0x00,0x00,0x00,0x20,0x20,0x30,0x20,0x40,0x08,0x40,0x20,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5854 ᛞ ; -+,0x00,0x00,0x88,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5855 ᛟ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x08,0x10,0x00,0x20,0x10,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5856 ᛠ ; -+,0x00,0x00,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5857 ᛡ ; -+,0x00,0x00,0x00,0x08,0x10,0x30,0x20,0x30,0x10,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5858 ᛢ ; -+,0x00,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5859 ᛣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5860 ᛤ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x30,0x28,0x68,0x20,0x70,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5861 ᛥ ; -+,0x00,0x00,0x09,0x06,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x08,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5862 ᛦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5863 ᛧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5864 ᛨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5865 ᛩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5866 ᛪ ; -+,0x00,0x00,0x00,0x60,0x00,0x00,0x10,0x00,0x20,0x20,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5867 ᛫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5868 ᛬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5869 ᛭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5870 ᛮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5871 ᛯ ; -+,0x00,0x00,0x00,0x00,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5872 ᛰ ; -+,0x00,0x00,0x00,0x00,0x30,0x40,0x00,0x00,0x00,0x00,0x08,0x40,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5873 ᛱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5874 ᛲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5875 ᛳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5876 ᛴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5877 ᛵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5878 ᛶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5879 ᛷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5880 ᛸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5881 ᛹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5882 ᛺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5883 ᛻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5884 ᛼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5885 ᛽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5886 ᛾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5887 ᛿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5888 ᜀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5889 ᜁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5890 ᜂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5891 ᜃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5892 ᜄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5893 ᜅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5894 ᜆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5895 ᜇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5896 ᜈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5897 ᜉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5898 ᜊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5899 ᜋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5900 ᜌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5901 ᜍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5902 ᜎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5903 ᜏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5904 ᜐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5905 ᜑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5906 ᜒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5907 ᜓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5908 ᜔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5909 ᜕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5910 ᜖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5911 ᜗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5912 ᜘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5913 ᜙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5914 ᜚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5915 ᜛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5916 ᜜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5917 ᜝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5918 ᜞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5919 ᜟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5920 ᜠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5921 ᜡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5922 ᜢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5923 ᜣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5924 ᜤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5925 ᜥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5926 ᜦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5927 ᜧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5928 ᜨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5929 ᜩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5930 ᜪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5931 ᜫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5932 ᜬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5933 ᜭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5934 ᜮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5935 ᜯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5936 ᜰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5937 ᜱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5938 ᜲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5939 ᜳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5940 ᜴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5941 ᜵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5942 ᜶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5943 ᜷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5944 ᜸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5945 ᜹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5946 ᜺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5947 ᜻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5948 ᜼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5949 ᜽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5950 ᜾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5951 ᜿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5952 ᝀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5953 ᝁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5954 ᝂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5955 ᝃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5956 ᝄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5957 ᝅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5958 ᝆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5959 ᝇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5960 ᝈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5961 ᝉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5962 ᝊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5963 ᝋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5964 ᝌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5965 ᝍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5966 ᝎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5967 ᝏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5968 ᝐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5969 ᝑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5970 ᝒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5971 ᝓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5972 ᝔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5973 ᝕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5974 ᝖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5975 ᝗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5976 ᝘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5977 ᝙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5978 ᝚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5979 ᝛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5980 ᝜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5981 ᝝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5982 ᝞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5983 ᝟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5984 ᝠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5985 ᝡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5986 ᝢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5987 ᝣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5988 ᝤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5989 ᝥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5990 ᝦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5991 ᝧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5992 ᝨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5993 ᝩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5994 ᝪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5995 ᝫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5996 ᝬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5997 ᝭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5998 ᝮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 5999 ᝯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6000 ᝰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6001 ᝱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6002 ᝲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6003 ᝳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6004 ᝴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6005 ᝵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6006 ᝶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6007 ᝷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6008 ᝸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6009 ᝹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6010 ᝺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6011 ᝻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6012 ᝼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6013 ᝽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6014 ᝾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6015 ᝿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6016 ក ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6017 ខ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6018 គ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6019 ឃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6020 ង ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6021 ច ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6022 ឆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6023 ជ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6024 ឈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6025 ញ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6026 ដ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6027 ឋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6028 ឌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6029 ឍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6030 ណ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6031 ត ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6032 ថ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6033 ទ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6034 ធ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6035 ន ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6036 ប ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6037 ផ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6038 ព ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6039 ភ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6040 ម ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6041 យ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6042 រ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6043 ល ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6044 វ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6045 ឝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6046 ឞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6047 ស ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6048 ហ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6049 ឡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6050 អ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6051 ឣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6052 ឤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6053 ឥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6054 ឦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6055 ឧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6056 ឨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6057 ឩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6058 ឪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6059 ឫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6060 ឬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6061 ឭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6062 ឮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6063 ឯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6064 ឰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6065 ឱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6066 ឲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6067 ឳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6068 ឴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6069 ឵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6070 ា ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6071 ិ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6072 ី ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6073 ឹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6074 ឺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6075 ុ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6076 ូ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6077 ួ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6078 ើ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6079 ឿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6080 ៀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6081 េ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6082 ែ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6083 ៃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6084 ោ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6085 ៅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6086 ំ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6087 ះ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6088 ៈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6089 ៉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6090 ៊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6091 ់ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6092 ៌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6093 ៍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6094 ៎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6095 ៏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6096 ័ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6097 ៑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6098 ្ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6099 ៓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6100 ។ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6101 ៕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6102 ៖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6103 ៗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6104 ៘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6105 ៙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6106 ៚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6107 ៛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6108 ៜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6109 ៝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6110 ៞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6111 ៟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6112 ០ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6113 ១ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6114 ២ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6115 ៣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6116 ៤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6117 ៥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6118 ៦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6119 ៧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6120 ៨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6121 ៩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6122 ៪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6123 ៫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6124 ៬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6125 ៭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6126 ៮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6127 ៯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6128 ៰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6129 ៱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6130 ៲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6131 ៳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6132 ៴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6133 ៵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6134 ៶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6135 ៷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6136 ៸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6137 ៹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6138 ៺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6139 ៻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6140 ៼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6141 ៽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6142 ៾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6143 ៿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6144 ᠀ ; -+,0x00,0x00,0x00,0x00,0x00,0x26,0x12,0x0a,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6145 ᠁ ; -+,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6146 ᠂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6147 ᠃ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6148 ᠄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6149 ᠅ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x14,0x36,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6150 ᠆ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6151 ᠇ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6152 ᠈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6153 ᠉ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x00,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6154 ᠊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6155 ᠋ ; -+,0x00,0x41,0x20,0x2a,0x24,0x26,0x26,0x24,0x00,0x3c,0x24,0x1c,0x2c,0x3c,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6156 ᠌ ; -+,0x00,0x41,0x3a,0x2a,0x67,0x26,0x67,0x24,0x00,0x77,0x22,0x32,0x4d,0x36,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6157 ᠍ ; -+,0x00,0x41,0x3a,0x2a,0x24,0x26,0x26,0x24,0x00,0x36,0x22,0x36,0x2a,0x36,0x05,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6158 ᠎ ; -+,0x00,0x41,0x00,0x14,0x14,0x1c,0x0c,0x0c,0x00,0x2e,0x24,0x36,0x32,0x16,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6159 ᠏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6160 ᠐ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x20,0x22,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6161 ᠑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x22,0x22,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6162 ᠒ ; -+,0x00,0x00,0x00,0x00,0x10,0x08,0x04,0x30,0x2a,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6163 ᠓ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x14,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6164 ᠔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x2c,0x20,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6165 ᠕ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x04,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6166 ᠖ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x24,0x2e,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6167 ᠗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x06,0x22,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6168 ᠘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x2c,0x36,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6169 ᠙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6170 ᠚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6171 ᠛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6172 ᠜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6173 ᠝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6174 ᠞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6175 ᠟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6176 ᠠ ; -+,0x00,0x00,0x00,0x08,0x1c,0x18,0x18,0x30,0x38,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6177 ᠡ ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x04,0x04,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6178 ᠢ ; -+,0x00,0x00,0x00,0x0c,0x18,0x08,0x14,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6179 ᠣ ; -+,0x00,0x00,0x00,0x00,0x04,0x1c,0x08,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6180 ᠤ ; -+,0x00,0x00,0x00,0x04,0x04,0x18,0x08,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6181 ᠥ ; -+,0x00,0x00,0x00,0x00,0x04,0x14,0x08,0x18,0x10,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6182 ᠦ ; -+,0x00,0x00,0x00,0x04,0x1c,0x08,0x18,0x18,0x18,0x08,0x18,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6183 ᠧ ; -+,0x00,0x00,0x00,0x04,0x1c,0x0c,0x1c,0x3c,0x2c,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6184 ᠨ ; -+,0x00,0x00,0x00,0x00,0x04,0x26,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6185 ᠩ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x18,0x38,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6186 ᠪ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6187 ᠫ ; -+,0x00,0x00,0x00,0x00,0x00,0x3c,0x34,0x34,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6188 ᠬ ; -+,0x00,0x00,0x00,0x00,0x1c,0x14,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6189 ᠭ ; -+,0x00,0x00,0x00,0x00,0x04,0x3a,0x22,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6190 ᠮ ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x3e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6191 ᠯ ; -+,0x00,0x00,0x00,0x00,0x02,0x0e,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6192 ᠰ ; -+,0x00,0x00,0x08,0x08,0x0c,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6193 ᠱ ; -+,0x00,0x00,0x00,0x08,0x0a,0x1c,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6194 ᠲ ; -+,0x00,0x00,0x08,0x0c,0x04,0x08,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6195 ᠳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6196 ᠴ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x1c,0x1c,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6197 ᠵ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6198 ᠶ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6199 ᠷ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6200 ᠸ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6201 ᠹ ; -+,0x00,0x00,0x00,0x00,0x00,0x3c,0x1a,0x1a,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6202 ᠺ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x34,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6203 ᠻ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x2c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6204 ᠼ ; -+,0x00,0x00,0x00,0x04,0x04,0x14,0x14,0x1c,0x14,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6205 ᠽ ; -+,0x00,0x00,0x00,0x04,0x04,0x14,0x14,0x1c,0x24,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6206 ᠾ ; -+,0x00,0x00,0x00,0x04,0x04,0x1c,0x08,0x18,0x28,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6207 ᠿ ; -+,0x00,0x00,0x00,0x18,0x24,0x22,0x26,0x1e,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6208 ᡀ ; -+,0x00,0x00,0x08,0x0e,0x1c,0x18,0x18,0x30,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6209 ᡁ ; -+,0x00,0x00,0x00,0x00,0x08,0x1c,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6210 ᡂ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x0c,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6211 ᡃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6212 ᡄ ; -+,0x00,0x00,0x00,0x00,0x04,0x18,0x08,0x38,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6213 ᡅ ; -+,0x00,0x00,0x00,0x04,0x1c,0x08,0x1c,0x04,0x04,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6214 ᡆ ; -+,0x00,0x00,0x00,0x00,0x04,0x10,0x08,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6215 ᡇ ; -+,0x00,0x00,0x00,0x00,0x04,0x18,0x18,0x1c,0x3c,0x1e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6216 ᡈ ; -+,0x00,0x00,0x00,0x00,0x04,0x18,0x08,0x1c,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6217 ᡉ ; -+,0x00,0x00,0x00,0x08,0x1c,0x18,0x18,0x3c,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6218 ᡊ ; -+,0x00,0x00,0x00,0x04,0x0c,0x04,0x0c,0x0c,0x04,0x04,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6219 ᡋ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x0c,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6220 ᡌ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x3c,0x34,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6221 ᡍ ; -+,0x00,0x00,0x00,0x00,0x04,0x3c,0x0c,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6222 ᡎ ; -+,0x00,0x00,0x00,0x00,0x02,0x0c,0x24,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6223 ᡏ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x14,0x38,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6224 ᡐ ; -+,0x00,0x00,0x00,0x1c,0x14,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6225 ᡑ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6226 ᡒ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x34,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6227 ᡓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x3c,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6228 ᡔ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6229 ᡕ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6230 ᡖ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x1c,0x14,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6231 ᡗ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x24,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6232 ᡘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6233 ᡙ ; -+,0x00,0x00,0x00,0x00,0x1c,0x0c,0x0c,0x10,0x3c,0x1c,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6234 ᡚ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x3a,0x2e,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6235 ᡛ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x2c,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6236 ᡜ ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x14,0x34,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6237 ᡝ ; -+,0x00,0x00,0x00,0x00,0x00,0x14,0x30,0x1c,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6238 ᡞ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x0c,0x0c,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6239 ᡟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6240 ᡠ ; -+,0x00,0x00,0x08,0x0c,0x08,0x18,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6241 ᡡ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x0c,0x0c,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6242 ᡢ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x0c,0x04,0x04,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6243 ᡣ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x18,0x26,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6244 ᡤ ; -+,0x00,0x00,0x00,0x08,0x1c,0x04,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6245 ᡥ ; -+,0x00,0x00,0x00,0x08,0x1c,0x04,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6246 ᡦ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x2c,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6247 ᡧ ; -+,0x00,0x00,0x00,0x00,0x18,0x18,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6248 ᡨ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x1c,0x1c,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6249 ᡩ ; -+,0x00,0x00,0x00,0x0c,0x14,0x0c,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6250 ᡪ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x2c,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6251 ᡫ ; -+,0x00,0x00,0x00,0x00,0x04,0x18,0x28,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6252 ᡬ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x3c,0x0e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6253 ᡭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x0a,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6254 ᡮ ; -+,0x00,0x00,0x00,0x00,0x10,0x1c,0x3c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6255 ᡯ ; -+,0x00,0x00,0x00,0x00,0x80,0xc8,0xf8,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6256 ᡰ ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6257 ᡱ ; -+,0x00,0x00,0x00,0x00,0x08,0x28,0x3a,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6258 ᡲ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x3c,0x2e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6259 ᡳ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x1c,0x1c,0x0c,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6260 ᡴ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x10,0x38,0x2c,0x47,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6261 ᡵ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x1c,0x14,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6262 ᡶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6263 ᡷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x2c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6264 ᡸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6265 ᡹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6266 ᡺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6267 ᡻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6268 ᡼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6269 ᡽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6270 ᡾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6271 ᡿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6272 ᢀ ; -+,0x00,0x00,0x00,0x00,0x08,0x14,0x14,0x08,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6273 ᢁ ; -+,0x00,0x00,0x00,0x00,0x08,0x14,0x14,0x08,0x1c,0x14,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6274 ᢂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x1c,0x08,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6275 ᢃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x22,0x2a,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6276 ᢄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x3a,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6277 ᢅ ; -+,0x00,0x00,0x00,0x00,0x1c,0x14,0x10,0x0c,0x14,0x14,0x04,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6278 ᢆ ; -+,0x00,0x00,0x00,0x00,0x3e,0x3a,0x2a,0x3e,0x3e,0x0a,0x2c,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6279 ᢇ ; -+,0x00,0x00,0x00,0x04,0x1c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6280 ᢈ ; -+,0x00,0x00,0x00,0x00,0x04,0x18,0x08,0x14,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6281 ᢉ ; -+,0x00,0x00,0x00,0x3c,0x04,0x04,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6282 ᢊ ; -+,0x00,0x00,0x00,0x00,0x3c,0x08,0x0c,0x14,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6283 ᢋ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6284 ᢌ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x1c,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6285 ᢍ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x1c,0x1c,0x1c,0x1c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6286 ᢎ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x14,0x3c,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6287 ᢏ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6288 ᢐ ; -+,0x00,0x00,0x00,0x00,0x0c,0x1c,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6289 ᢑ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6290 ᢒ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x3c,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6291 ᢓ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x3a,0x1a,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6292 ᢔ ; -+,0x00,0x00,0x00,0x00,0x34,0x02,0x3c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6293 ᢕ ; -+,0x00,0x00,0x00,0x00,0x1c,0x14,0x22,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6294 ᢖ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x3c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6295 ᢗ ; -+,0x00,0x00,0x00,0x00,0x1c,0x10,0x34,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6296 ᢘ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x1c,0x0c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6297 ᢙ ; -+,0x00,0x00,0x00,0x18,0x34,0x3c,0x3c,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6298 ᢚ ; -+,0x00,0x00,0x08,0x1c,0x04,0x1c,0x0c,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6299 ᢛ ; -+,0x00,0x00,0x00,0x04,0x0c,0x08,0x08,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6300 ᢜ ; -+,0x00,0x00,0x00,0x10,0x10,0x1e,0x3e,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6301 ᢝ ; -+,0x00,0x00,0x08,0x08,0x0c,0x3c,0x18,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6302 ᢞ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x1c,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6303 ᢟ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x1a,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6304 ᢠ ; -+,0x00,0x00,0x00,0x00,0x1c,0x3c,0x1e,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6305 ᢡ ; -+,0x00,0x00,0x08,0x14,0x14,0x18,0x1c,0x08,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6306 ᢢ ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6307 ᢣ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x18,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6308 ᢤ ; -+,0x00,0x00,0x08,0x38,0x2e,0x1a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6309 ᢥ ; -+,0x00,0x00,0x00,0x10,0x18,0x0e,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6310 ᢦ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6311 ᢧ ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x1c,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6312 ᢨ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x2c,0x1c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6313 ᢩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6314 ᢪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6315 ᢫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6316 ᢬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6317 ᢭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6318 ᢮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6319 ᢯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6320 ᢰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6321 ᢱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6322 ᢲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6323 ᢳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6324 ᢴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6325 ᢵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6326 ᢶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6327 ᢷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6328 ᢸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6329 ᢹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6330 ᢺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6331 ᢻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6332 ᢼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6333 ᢽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6334 ᢾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6335 ᢿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6336 ᣀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6337 ᣁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6338 ᣂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6339 ᣃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6340 ᣄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6341 ᣅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6342 ᣆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6343 ᣇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6344 ᣈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6345 ᣉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6346 ᣊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6347 ᣋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6348 ᣌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6349 ᣍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6350 ᣎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6351 ᣏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6352 ᣐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6353 ᣑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6354 ᣒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6355 ᣓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6356 ᣔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6357 ᣕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6358 ᣖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6359 ᣗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6360 ᣘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6361 ᣙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6362 ᣚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6363 ᣛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6364 ᣜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6365 ᣝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6366 ᣞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6367 ᣟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6368 ᣠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6369 ᣡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6370 ᣢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6371 ᣣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6372 ᣤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6373 ᣥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6374 ᣦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6375 ᣧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6376 ᣨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6377 ᣩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6378 ᣪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6379 ᣫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6380 ᣬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6381 ᣭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6382 ᣮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6383 ᣯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6384 ᣰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6385 ᣱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6386 ᣲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6387 ᣳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6388 ᣴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6389 ᣵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6390 ᣶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6391 ᣷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6392 ᣸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6393 ᣹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6394 ᣺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6395 ᣻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6396 ᣼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6397 ᣽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6398 ᣾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6399 ᣿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6400 ᤀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6401 ᤁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6402 ᤂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6403 ᤃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6404 ᤄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6405 ᤅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6406 ᤆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6407 ᤇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6408 ᤈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6409 ᤉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6410 ᤊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6411 ᤋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6412 ᤌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6413 ᤍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6414 ᤎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6415 ᤏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6416 ᤐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6417 ᤑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6418 ᤒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6419 ᤓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6420 ᤔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6421 ᤕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6422 ᤖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6423 ᤗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6424 ᤘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6425 ᤙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6426 ᤚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6427 ᤛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6428 ᤜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6429 ᤝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6430 ᤞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6431 ᤟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6432 ᤠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6433 ᤡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6434 ᤢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6435 ᤣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6436 ᤤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6437 ᤥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6438 ᤦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6439 ᤧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6440 ᤨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6441 ᤩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6442 ᤪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6443 ᤫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6444 ᤬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6445 ᤭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6446 ᤮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6447 ᤯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6448 ᤰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6449 ᤱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6450 ᤲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6451 ᤳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6452 ᤴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6453 ᤵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6454 ᤶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6455 ᤷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6456 ᤸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6457 ᤹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6458 ᤺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6459 ᤻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6460 ᤼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6461 ᤽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6462 ᤾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6463 ᤿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6464 ᥀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6465 ᥁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6466 ᥂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6467 ᥃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6468 ᥄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6469 ᥅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6470 ᥆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6471 ᥇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6472 ᥈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6473 ᥉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6474 ᥊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6475 ᥋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6476 ᥌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6477 ᥍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6478 ᥎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6479 ᥏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6480 ᥐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6481 ᥑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6482 ᥒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6483 ᥓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6484 ᥔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6485 ᥕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6486 ᥖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6487 ᥗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6488 ᥘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6489 ᥙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6490 ᥚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6491 ᥛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6492 ᥜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6493 ᥝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6494 ᥞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6495 ᥟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6496 ᥠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6497 ᥡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6498 ᥢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6499 ᥣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6500 ᥤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6501 ᥥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6502 ᥦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6503 ᥧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6504 ᥨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6505 ᥩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6506 ᥪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6507 ᥫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6508 ᥬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6509 ᥭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6510 ᥮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6511 ᥯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6512 ᥰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6513 ᥱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6514 ᥲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6515 ᥳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6516 ᥴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6517 ᥵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6518 ᥶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6519 ᥷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6520 ᥸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6521 ᥹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6522 ᥺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6523 ᥻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6524 ᥼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6525 ᥽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6526 ᥾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6527 ᥿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6528 ᦀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6529 ᦁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6530 ᦂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6531 ᦃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6532 ᦄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6533 ᦅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6534 ᦆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6535 ᦇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6536 ᦈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6537 ᦉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6538 ᦊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6539 ᦋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6540 ᦌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6541 ᦍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6542 ᦎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6543 ᦏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6544 ᦐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6545 ᦑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6546 ᦒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6547 ᦓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6548 ᦔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6549 ᦕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6550 ᦖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6551 ᦗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6552 ᦘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6553 ᦙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6554 ᦚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6555 ᦛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6556 ᦜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6557 ᦝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6558 ᦞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6559 ᦟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6560 ᦠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6561 ᦡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6562 ᦢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6563 ᦣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6564 ᦤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6565 ᦥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6566 ᦦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6567 ᦧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6568 ᦨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6569 ᦩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6570 ᦪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6571 ᦫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6572 ᦬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6573 ᦭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6574 ᦮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6575 ᦯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6576 ᦰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6577 ᦱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6578 ᦲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6579 ᦳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6580 ᦴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6581 ᦵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6582 ᦶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6583 ᦷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6584 ᦸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6585 ᦹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6586 ᦺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6587 ᦻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6588 ᦼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6589 ᦽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6590 ᦾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6591 ᦿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6592 ᧀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6593 ᧁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6594 ᧂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6595 ᧃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6596 ᧄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6597 ᧅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6598 ᧆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6599 ᧇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6600 ᧈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6601 ᧉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6602 ᧊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6603 ᧋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6604 ᧌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6605 ᧍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6606 ᧎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6607 ᧏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6608 ᧐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6609 ᧑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6610 ᧒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6611 ᧓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6612 ᧔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6613 ᧕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6614 ᧖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6615 ᧗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6616 ᧘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6617 ᧙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6618 ᧚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6619 ᧛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6620 ᧜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6621 ᧝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6622 ᧞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6623 ᧟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6624 ᧠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6625 ᧡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6626 ᧢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6627 ᧣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6628 ᧤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6629 ᧥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6630 ᧦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6631 ᧧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6632 ᧨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6633 ᧩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6634 ᧪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6635 ᧫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6636 ᧬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6637 ᧭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6638 ᧮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6639 ᧯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6640 ᧰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6641 ᧱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6642 ᧲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6643 ᧳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6644 ᧴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6645 ᧵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6646 ᧶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6647 ᧷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6648 ᧸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6649 ᧹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6650 ᧺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6651 ᧻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6652 ᧼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6653 ᧽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6654 ᧾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6655 ᧿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6656 ᨀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6657 ᨁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6658 ᨂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6659 ᨃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6660 ᨄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6661 ᨅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6662 ᨆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6663 ᨇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6664 ᨈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6665 ᨉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6666 ᨊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6667 ᨋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6668 ᨌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6669 ᨍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6670 ᨎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6671 ᨏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6672 ᨐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6673 ᨑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6674 ᨒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6675 ᨓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6676 ᨔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6677 ᨕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6678 ᨖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6679 ᨗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6680 ᨘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6681 ᨙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6682 ᨚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6683 ᨛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6684 ᨜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6685 ᨝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6686 ᨞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6687 ᨟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6688 ᨠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6689 ᨡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6690 ᨢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6691 ᨣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6692 ᨤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6693 ᨥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6694 ᨦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6695 ᨧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6696 ᨨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6697 ᨩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6698 ᨪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6699 ᨫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6700 ᨬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6701 ᨭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6702 ᨮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6703 ᨯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6704 ᨰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6705 ᨱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6706 ᨲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6707 ᨳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6708 ᨴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6709 ᨵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6710 ᨶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6711 ᨷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6712 ᨸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6713 ᨹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6714 ᨺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6715 ᨻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6716 ᨼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6717 ᨽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6718 ᨾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6719 ᨿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6720 ᩀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6721 ᩁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6722 ᩂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6723 ᩃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6724 ᩄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6725 ᩅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6726 ᩆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6727 ᩇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6728 ᩈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6729 ᩉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6730 ᩊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6731 ᩋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6732 ᩌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6733 ᩍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6734 ᩎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6735 ᩏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6736 ᩐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6737 ᩑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6738 ᩒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6739 ᩓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6740 ᩔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6741 ᩕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6742 ᩖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6743 ᩗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6744 ᩘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6745 ᩙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6746 ᩚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6747 ᩛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6748 ᩜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6749 ᩝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6750 ᩞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6751 ᩟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6752 ᩠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6753 ᩡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6754 ᩢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6755 ᩣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6756 ᩤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6757 ᩥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6758 ᩦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6759 ᩧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6760 ᩨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6761 ᩩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6762 ᩪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6763 ᩫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6764 ᩬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6765 ᩭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6766 ᩮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6767 ᩯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6768 ᩰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6769 ᩱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6770 ᩲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6771 ᩳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6772 ᩴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6773 ᩵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6774 ᩶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6775 ᩷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6776 ᩸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6777 ᩹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6778 ᩺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6779 ᩻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6780 ᩼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6781 ᩽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6782 ᩾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6783 ᩿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6784 ᪀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6785 ᪁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6786 ᪂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6787 ᪃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6788 ᪄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6789 ᪅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6790 ᪆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6791 ᪇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6792 ᪈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6793 ᪉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6794 ᪊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6795 ᪋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6796 ᪌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6797 ᪍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6798 ᪎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6799 ᪏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6800 ᪐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6801 ᪑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6802 ᪒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6803 ᪓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6804 ᪔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6805 ᪕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6806 ᪖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6807 ᪗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6808 ᪘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6809 ᪙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6810 ᪚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6811 ᪛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6812 ᪜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6813 ᪝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6814 ᪞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6815 ᪟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6816 ᪠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6817 ᪡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6818 ᪢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6819 ᪣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6820 ᪤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6821 ᪥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6822 ᪦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6823 ᪧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6824 ᪨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6825 ᪩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6826 ᪪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6827 ᪫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6828 ᪬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6829 ᪭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6830 ᪮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6831 ᪯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6832 ᪰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6833 ᪱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6834 ᪲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6835 ᪳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6836 ᪴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6837 ᪵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6838 ᪶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6839 ᪷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6840 ᪸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6841 ᪹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6842 ᪺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6843 ᪻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6844 ᪼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6845 ᪽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6846 ᪾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6847 ᪿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6848 ᫀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6849 ᫁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6850 ᫂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6851 ᫃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6852 ᫄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6853 ᫅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6854 ᫆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6855 ᫇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6856 ᫈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6857 ᫉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6858 ᫊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6859 ᫋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6860 ᫌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6861 ᫍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6862 ᫎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6863 ᫏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6864 ᫐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6865 ᫑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6866 ᫒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6867 ᫓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6868 ᫔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6869 ᫕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6870 ᫖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6871 ᫗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6872 ᫘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6873 ᫙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6874 ᫚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6875 ᫛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6876 ᫜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6877 ᫝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6878 ᫞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6879 ᫟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6880 ᫠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6881 ᫡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6882 ᫢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6883 ᫣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6884 ᫤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6885 ᫥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6886 ᫦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6887 ᫧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6888 ᫨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6889 ᫩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6890 ᫪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6891 ᫫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6892 ᫬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6893 ᫭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6894 ᫮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6895 ᫯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6896 ᫰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6897 ᫱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6898 ᫲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6899 ᫳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6900 ᫴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6901 ᫵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6902 ᫶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6903 ᫷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6904 ᫸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6905 ᫹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6906 ᫺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6907 ᫻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6908 ᫼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6909 ᫽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6910 ᫾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6911 ᫿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6912 ᬀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6913 ᬁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6914 ᬂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6915 ᬃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6916 ᬄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6917 ᬅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6918 ᬆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6919 ᬇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6920 ᬈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6921 ᬉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6922 ᬊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6923 ᬋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6924 ᬌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6925 ᬍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6926 ᬎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6927 ᬏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6928 ᬐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6929 ᬑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6930 ᬒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6931 ᬓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6932 ᬔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6933 ᬕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6934 ᬖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6935 ᬗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6936 ᬘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6937 ᬙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6938 ᬚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6939 ᬛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6940 ᬜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6941 ᬝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6942 ᬞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6943 ᬟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6944 ᬠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6945 ᬡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6946 ᬢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6947 ᬣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6948 ᬤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6949 ᬥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6950 ᬦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6951 ᬧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6952 ᬨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6953 ᬩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6954 ᬪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6955 ᬫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6956 ᬬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6957 ᬭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6958 ᬮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6959 ᬯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6960 ᬰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6961 ᬱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6962 ᬲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6963 ᬳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6964 ᬴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6965 ᬵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6966 ᬶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6967 ᬷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6968 ᬸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6969 ᬹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6970 ᬺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6971 ᬻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6972 ᬼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6973 ᬽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6974 ᬾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6975 ᬿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6976 ᭀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6977 ᭁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6978 ᭂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6979 ᭃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6980 ᭄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6981 ᭅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6982 ᭆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6983 ᭇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6984 ᭈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6985 ᭉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6986 ᭊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6987 ᭋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6988 ᭌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6989 ᭍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6990 ᭎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6991 ᭏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6992 ᭐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6993 ᭑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6994 ᭒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6995 ᭓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6996 ᭔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6997 ᭕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6998 ᭖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 6999 ᭗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7000 ᭘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7001 ᭙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7002 ᭚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7003 ᭛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7004 ᭜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7005 ᭝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7006 ᭞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7007 ᭟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7008 ᭠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7009 ᭡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7010 ᭢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7011 ᭣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7012 ᭤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7013 ᭥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7014 ᭦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7015 ᭧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7016 ᭨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7017 ᭩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7018 ᭪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7019 ᭫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7020 ᭬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7021 ᭭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7022 ᭮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7023 ᭯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7024 ᭰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7025 ᭱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7026 ᭲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7027 ᭳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7028 ᭴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7029 ᭵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7030 ᭶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7031 ᭷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7032 ᭸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7033 ᭹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7034 ᭺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7035 ᭻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7036 ᭼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7037 ᭽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7038 ᭾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7039 ᭿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7040 ᮀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7041 ᮁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7042 ᮂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7043 ᮃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7044 ᮄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7045 ᮅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7046 ᮆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7047 ᮇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7048 ᮈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7049 ᮉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7050 ᮊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7051 ᮋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7052 ᮌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7053 ᮍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7054 ᮎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7055 ᮏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7056 ᮐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7057 ᮑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7058 ᮒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7059 ᮓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7060 ᮔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7061 ᮕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7062 ᮖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7063 ᮗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7064 ᮘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7065 ᮙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7066 ᮚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7067 ᮛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7068 ᮜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7069 ᮝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7070 ᮞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7071 ᮟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7072 ᮠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7073 ᮡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7074 ᮢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7075 ᮣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7076 ᮤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7077 ᮥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7078 ᮦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7079 ᮧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7080 ᮨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7081 ᮩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7082 ᮪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7083 ᮫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7084 ᮬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7085 ᮭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7086 ᮮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7087 ᮯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7088 ᮰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7089 ᮱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7090 ᮲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7091 ᮳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7092 ᮴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7093 ᮵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7094 ᮶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7095 ᮷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7096 ᮸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7097 ᮹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7098 ᮺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7099 ᮻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7100 ᮼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7101 ᮽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7102 ᮾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7103 ᮿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7104 ᯀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7105 ᯁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7106 ᯂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7107 ᯃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7108 ᯄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7109 ᯅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7110 ᯆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7111 ᯇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7112 ᯈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7113 ᯉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7114 ᯊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7115 ᯋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7116 ᯌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7117 ᯍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7118 ᯎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7119 ᯏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7120 ᯐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7121 ᯑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7122 ᯒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7123 ᯓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7124 ᯔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7125 ᯕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7126 ᯖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7127 ᯗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7128 ᯘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7129 ᯙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7130 ᯚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7131 ᯛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7132 ᯜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7133 ᯝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7134 ᯞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7135 ᯟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7136 ᯠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7137 ᯡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7138 ᯢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7139 ᯣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7140 ᯤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7141 ᯥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7142 ᯦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7143 ᯧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7144 ᯨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7145 ᯩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7146 ᯪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7147 ᯫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7148 ᯬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7149 ᯭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7150 ᯮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7151 ᯯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7152 ᯰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7153 ᯱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7154 ᯲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7155 ᯳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7156 ᯴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7157 ᯵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7158 ᯶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7159 ᯷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7160 ᯸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7161 ᯹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7162 ᯺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7163 ᯻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7164 ᯼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7165 ᯽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7166 ᯾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7167 ᯿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7168 ᰀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7169 ᰁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7170 ᰂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7171 ᰃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7172 ᰄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7173 ᰅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7174 ᰆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7175 ᰇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7176 ᰈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7177 ᰉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7178 ᰊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7179 ᰋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7180 ᰌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7181 ᰍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7182 ᰎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7183 ᰏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7184 ᰐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7185 ᰑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7186 ᰒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7187 ᰓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7188 ᰔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7189 ᰕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7190 ᰖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7191 ᰗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7192 ᰘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7193 ᰙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7194 ᰚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7195 ᰛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7196 ᰜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7197 ᰝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7198 ᰞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7199 ᰟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7200 ᰠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7201 ᰡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7202 ᰢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7203 ᰣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7204 ᰤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7205 ᰥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7206 ᰦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7207 ᰧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7208 ᰨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7209 ᰩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7210 ᰪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7211 ᰫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7212 ᰬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7213 ᰭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7214 ᰮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7215 ᰯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7216 ᰰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7217 ᰱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7218 ᰲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7219 ᰳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7220 ᰴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7221 ᰵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7222 ᰶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7223 ᰷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7224 ᰸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7225 ᰹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7226 ᰺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7227 ᰻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7228 ᰼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7229 ᰽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7230 ᰾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7231 ᰿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7232 ᱀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7233 ᱁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7234 ᱂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7235 ᱃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7236 ᱄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7237 ᱅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7238 ᱆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7239 ᱇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7240 ᱈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7241 ᱉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7242 ᱊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7243 ᱋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7244 ᱌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7245 ᱍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7246 ᱎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7247 ᱏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7248 ᱐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7249 ᱑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7250 ᱒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7251 ᱓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7252 ᱔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7253 ᱕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7254 ᱖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7255 ᱗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7256 ᱘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7257 ᱙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7258 ᱚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7259 ᱛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7260 ᱜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7261 ᱝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7262 ᱞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7263 ᱟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7264 ᱠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7265 ᱡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7266 ᱢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7267 ᱣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7268 ᱤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7269 ᱥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7270 ᱦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7271 ᱧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7272 ᱨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7273 ᱩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7274 ᱪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7275 ᱫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7276 ᱬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7277 ᱭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7278 ᱮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7279 ᱯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7280 ᱰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7281 ᱱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7282 ᱲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7283 ᱳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7284 ᱴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7285 ᱵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7286 ᱶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7287 ᱷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7288 ᱸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7289 ᱹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7290 ᱺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7291 ᱻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7292 ᱼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7293 ᱽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7294 ᱾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7295 ᱿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7296 ᲀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7297 ᲁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7298 ᲂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7299 ᲃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7300 ᲄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7301 ᲅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7302 ᲆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7303 ᲇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7304 ᲈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7305 Ᲊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7306 ᲊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7307 ᲋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7308 ᲌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7309 ᲍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7310 ᲎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7311 ᲏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7312 Ა ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7313 Ბ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7314 Გ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7315 Დ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7316 Ე ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7317 Ვ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7318 Ზ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7319 Თ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7320 Ი ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7321 Კ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7322 Ლ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7323 Მ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7324 Ნ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7325 Ო ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7326 Პ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7327 Ჟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7328 Რ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7329 Ს ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7330 Ტ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7331 Უ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7332 Ფ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7333 Ქ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7334 Ღ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7335 Ყ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7336 Შ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7337 Ჩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7338 Ც ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7339 Ძ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7340 Წ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7341 Ჭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7342 Ხ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7343 Ჯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7344 Ჰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7345 Ჱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7346 Ჲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7347 Ჳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7348 Ჴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7349 Ჵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7350 Ჶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7351 Ჷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7352 Ჸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7353 Ჹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7354 Ჺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7355 ᲻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7356 ᲼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7357 Ჽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7358 Ჾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7359 Ჿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7360 ᳀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7361 ᳁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7362 ᳂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7363 ᳃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7364 ᳄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7365 ᳅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7366 ᳆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7367 ᳇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7368 ᳈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7369 ᳉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7370 ᳊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7371 ᳋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7372 ᳌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7373 ᳍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7374 ᳎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7375 ᳏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7376 ᳐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7377 ᳑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7378 ᳒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7379 ᳓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7380 ᳔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7381 ᳕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7382 ᳖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7383 ᳗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7384 ᳘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7385 ᳙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7386 ᳚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7387 ᳛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7388 ᳜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7389 ᳝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7390 ᳞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7391 ᳟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7392 ᳠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7393 ᳡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7394 ᳢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7395 ᳣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7396 ᳤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7397 ᳥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7398 ᳦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7399 ᳧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7400 ᳨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7401 ᳩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7402 ᳪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7403 ᳫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7404 ᳬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7405 ᳭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7406 ᳮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7407 ᳯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7408 ᳰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7409 ᳱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7410 ᳲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7411 ᳳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7412 ᳴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7413 ᳵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7414 ᳶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7415 ᳷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7416 ᳸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7417 ᳹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7418 ᳺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7419 ᳻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7420 ᳼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7421 ᳽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7422 ᳾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7423 ᳿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7424 ᴀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x14,0x16,0x22,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7425 ᴁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7426 ᴂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7427 ᴃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x22,0x26,0x3c,0x22,0x22,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7428 ᴄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7429 ᴅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x23,0x21,0x21,0x21,0x23,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7430 ᴆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7431 ᴇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x20,0x20,0x34,0x20,0x20,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7432 ᴈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7433 ᴉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7434 ᴊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7435 ᴋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x10,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7436 ᴌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x40,0x40,0x60,0x70,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7437 ᴍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x20,0x20,0x20,0x20,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7438 ᴎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x68,0x68,0x78,0x68,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7439 ᴏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7440 ᴐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7441 ᴑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7442 ᴒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7443 ᴓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7444 ᴔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7445 ᴕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7446 ᴖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7447 ᴗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7448 ᴘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7449 ᴙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7450 ᴚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7451 ᴛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7452 ᴜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x21,0x20,0x20,0x20,0x31,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7453 ᴝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7454 ᴞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7455 ᴟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7456 ᴠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x10,0x10,0x0a,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7457 ᴡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7458 ᴢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7459 ᴣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7460 ᴤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7461 ᴥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7462 ᴦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7463 ᴧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7464 ᴨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7465 ᴩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x22,0x22,0x34,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7466 ᴪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7467 ᴫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7468 ᴬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7469 ᴭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7470 ᴮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7471 ᴯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7472 ᴰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7473 ᴱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7474 ᴲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7475 ᴳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7476 ᴴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7477 ᴵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7478 ᴶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7479 ᴷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7480 ᴸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7481 ᴹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7482 ᴺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7483 ᴻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7484 ᴼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7485 ᴽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7486 ᴾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7487 ᴿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7488 ᵀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7489 ᵁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7490 ᵂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7491 ᵃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7492 ᵄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7493 ᵅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7494 ᵆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7495 ᵇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7496 ᵈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7497 ᵉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7498 ᵊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7499 ᵋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7500 ᵌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7501 ᵍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7502 ᵎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7503 ᵏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7504 ᵐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7505 ᵑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7506 ᵒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7507 ᵓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7508 ᵔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7509 ᵕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7510 ᵖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7511 ᵗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7512 ᵘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7513 ᵙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7514 ᵚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7515 ᵛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7516 ᵜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7517 ᵝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7518 ᵞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7519 ᵟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7520 ᵠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7521 ᵡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7522 ᵢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7523 ᵣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7524 ᵤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7525 ᵥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7526 ᵦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7527 ᵧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7528 ᵨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7529 ᵩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7530 ᵪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7531 ᵫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7532 ᵬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7533 ᵭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7534 ᵮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7535 ᵯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7536 ᵰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7537 ᵱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7538 ᵲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7539 ᵳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7540 ᵴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7541 ᵵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7542 ᵶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7543 ᵷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7544 ᵸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7545 ᵹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7546 ᵺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7547 ᵻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7548 ᵼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7549 ᵽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7550 ᵾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7551 ᵿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7552 ᶀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7553 ᶁ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x50,0x50,0x50,0xd0,0x50,0x50,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7554 ᶂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7555 ᶃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7556 ᶄ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x50,0x60,0x60,0x60,0x60,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7557 ᶅ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7558 ᶆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7559 ᶇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7560 ᶈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7561 ᶉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7562 ᶊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7563 ᶋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7564 ᶌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7565 ᶍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x1c,0x08,0x0c,0x14,0x02,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7566 ᶎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7567 ᶏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7568 ᶐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7569 ᶑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7570 ᶒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7571 ᶓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7572 ᶔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7573 ᶕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7574 ᶖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7575 ᶗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7576 ᶘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7577 ᶙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7578 ᶚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7579 ᶛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7580 ᶜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7581 ᶝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7582 ᶞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7583 ᶟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7584 ᶠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7585 ᶡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7586 ᶢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7587 ᶣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7588 ᶤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7589 ᶥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7590 ᶦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7591 ᶧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7592 ᶨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7593 ᶩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7594 ᶪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7595 ᶫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7596 ᶬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7597 ᶭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7598 ᶮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7599 ᶯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7600 ᶰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7601 ᶱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7602 ᶲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7603 ᶳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7604 ᶴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7605 ᶵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7606 ᶶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7607 ᶷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7608 ᶸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7609 ᶹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7610 ᶺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7611 ᶻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7612 ᶼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7613 ᶽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7614 ᶾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7615 ᶿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7616 ᷀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7617 ᷁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7618 ᷂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7619 ᷃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7620 ᷄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7621 ᷅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7622 ᷆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7623 ᷇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7624 ᷈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7625 ᷉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7626 ᷊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7627 ᷋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7628 ᷌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7629 ᷍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7630 ᷎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7631 ᷏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7632 ᷐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7633 ᷑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7634 ᷒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7635 ᷓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7636 ᷔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7637 ᷕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7638 ᷖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7639 ᷗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7640 ᷘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7641 ᷙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7642 ᷚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7643 ᷛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7644 ᷜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7645 ᷝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7646 ᷞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7647 ᷟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7648 ᷠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7649 ᷡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7650 ᷢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7651 ᷣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7652 ᷤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7653 ᷥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7654 ᷦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7655 ᷧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7656 ᷨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7657 ᷩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7658 ᷪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7659 ᷫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7660 ᷬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7661 ᷭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7662 ᷮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7663 ᷯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7664 ᷰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7665 ᷱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7666 ᷲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7667 ᷳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7668 ᷴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7669 ᷵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7670 ᷶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7671 ᷷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7672 ᷸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7673 ᷹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7674 ᷺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7675 ᷻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7676 ᷼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7677 ᷽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7678 ᷾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7679 ᷿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7680 Ḁ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7681 ḁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7682 Ḃ ; -+,0x00,0x20,0x20,0x70,0x58,0x48,0x48,0x48,0x78,0x48,0x48,0x48,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7683 ḃ ; -+,0x00,0x08,0x00,0x20,0x20,0x20,0x20,0x3e,0x33,0x21,0x21,0x21,0x21,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7684 Ḅ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x48,0x48,0x78,0x48,0x48,0x48,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7685 ḅ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x3e,0x33,0x21,0x21,0x21,0x21,0x32,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7686 Ḇ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x48,0x48,0x78,0x48,0x48,0x48,0x48,0x78,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7687 ḇ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x3e,0x33,0x21,0x21,0x21,0x21,0x32,0x00,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7688 Ḉ ; -+,0x10,0x30,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7689 ḉ ; -+,0x00,0x00,0x00,0x00,0x0c,0x10,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7690 Ḋ ; -+,0x00,0x10,0x10,0x70,0x48,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7691 ḋ ; -+,0x00,0x00,0x00,0x03,0x03,0x0b,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7692 Ḍ ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7693 ḍ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7694 Ḏ ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7695 ḏ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7696 Ḑ ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7697 ḑ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7698 Ḓ ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7699 ḓ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7700 Ḕ ; -+,0x00,0x70,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7701 ḕ ; -+,0x00,0x10,0x08,0x04,0x00,0x1e,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7702 Ḗ ; -+,0x00,0x70,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7703 ḗ ; -+,0x00,0x04,0x08,0x00,0x00,0x1e,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7704 Ḙ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7705 ḙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7706 Ḛ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7707 ḛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7708 Ḝ ; -+,0x00,0x30,0x30,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7709 ḝ ; -+,0x00,0x00,0x00,0x00,0x02,0x1c,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7710 Ḟ ; -+,0x00,0x20,0x20,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7711 ḟ ; -+,0x00,0x08,0x00,0x06,0x12,0x10,0x10,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7712 Ḡ ; -+,0x00,0x00,0x00,0x3c,0x6c,0x44,0x40,0x40,0x4c,0x44,0x44,0x44,0x64,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7713 ḡ ; -+,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x17,0x22,0x32,0x12,0x10,0x00,0x3f,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7714 Ḣ ; -+,0x00,0x10,0x10,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7715 ḣ ; -+,0x00,0x0c,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7716 Ḥ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7717 ḥ ; -+,0x00,0x00,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7718 Ḧ ; -+,0x00,0x28,0x28,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7719 ḧ ; -+,0x00,0x12,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7720 Ḩ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7721 ḩ ; -+,0x00,0x00,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7722 Ḫ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4c,0x4c,0x6c,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7723 ḫ ; -+,0x00,0x00,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7724 Ḭ ; -+,0x00,0x00,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7725 ḭ ; -+,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7726 Ḯ ; -+,0x10,0x64,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7727 ḯ ; -+,0x00,0x18,0x30,0x20,0x6c,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7728 Ḱ ; -+,0x08,0x10,0x00,0x6c,0x68,0x68,0x70,0x70,0x70,0x70,0x78,0x68,0x6c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7729 ḱ ; -+,0x06,0x08,0x00,0x30,0x30,0x30,0x30,0x32,0x34,0x38,0x3c,0x34,0x32,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7730 Ḳ ; -+,0x00,0x00,0x00,0x6c,0x68,0x68,0x70,0x70,0x70,0x70,0x78,0x68,0x6c,0x6c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7731 ḳ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x30,0x32,0x34,0x38,0x3c,0x34,0x32,0x33,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7732 Ḵ ; -+,0x00,0x00,0x00,0x6c,0x68,0x68,0x70,0x70,0x70,0x70,0x78,0x68,0x6c,0x6c,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7733 ḵ ; -+,0x00,0x00,0x00,0x30,0x30,0x30,0x30,0x32,0x34,0x38,0x3c,0x34,0x32,0x33,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7734 Ḷ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7735 ḷ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7736 Ḹ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7737 ḹ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7738 Ḻ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7739 ḻ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7740 Ḽ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7741 ḽ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7742 Ḿ ; -+,0x08,0x18,0x00,0x42,0x66,0x66,0x26,0x26,0x3a,0x3a,0x12,0x1a,0x52,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7743 ḿ ; -+,0x00,0x00,0x00,0x00,0x18,0x10,0x00,0x5c,0x54,0x54,0x54,0x54,0x54,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7744 Ṁ ; -+,0x00,0x00,0x00,0x42,0x66,0x66,0x26,0x26,0x3a,0x3a,0x12,0x1a,0x52,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7745 ṁ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x5c,0x54,0x54,0x54,0x54,0x54,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7746 Ṃ ; -+,0x00,0x00,0x00,0x42,0x66,0x66,0x26,0x26,0x3a,0x3a,0x12,0x1a,0x52,0x56,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7747 ṃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x54,0x54,0x54,0x54,0x54,0x56,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7748 Ṅ ; -+,0x00,0x10,0x10,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7749 ṅ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7750 Ṇ ; -+,0x00,0x00,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7751 ṇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7752 Ṉ ; -+,0x00,0x00,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7753 ṉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7754 Ṋ ; -+,0x00,0x00,0x00,0x4c,0x64,0x64,0x24,0x34,0x14,0x1c,0x0c,0x0c,0x4c,0x44,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7755 ṋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7756 Ṍ ; -+,0x00,0x38,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7757 ṍ ; -+,0x00,0x04,0x08,0x00,0x18,0x06,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7758 Ṏ ; -+,0x00,0x38,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7759 ṏ ; -+,0x00,0x00,0x12,0x00,0x18,0x06,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7760 Ṑ ; -+,0x00,0x38,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7761 ṑ ; -+,0x00,0x18,0x0c,0x00,0x00,0x1e,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7762 Ṓ ; -+,0x00,0x38,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7763 ṓ ; -+,0x00,0x06,0x0c,0x00,0x00,0x1e,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7764 Ṕ ; -+,0x10,0x20,0x20,0x60,0x58,0x48,0x48,0x48,0x58,0x60,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7765 ṕ ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x00,0x3f,0x31,0x31,0x31,0x31,0x31,0x3a,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7766 Ṗ ; -+,0x00,0x20,0x20,0x60,0x58,0x48,0x48,0x48,0x58,0x60,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7767 ṗ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x3f,0x31,0x31,0x31,0x31,0x31,0x3a,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7768 Ṙ ; -+,0x00,0x10,0x10,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7769 ṙ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7770 Ṛ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7771 ṛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7772 Ṝ ; -+,0x00,0x30,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7773 ṝ ; -+,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7774 Ṟ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x50,0x58,0x48,0x6c,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7775 ṟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7776 Ṡ ; -+,0x00,0x20,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7777 ṡ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7778 Ṣ ; -+,0x00,0x00,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7779 ṣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7780 Ṥ ; -+,0x50,0x20,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7781 ṥ ; -+,0x00,0x00,0x10,0x12,0x04,0x00,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7782 Ṧ ; -+,0x00,0x30,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7783 ṧ ; -+,0x00,0x18,0x00,0x00,0x14,0x18,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7784 Ṩ ; -+,0x00,0x20,0x00,0x20,0x50,0x40,0x40,0x60,0x30,0x30,0x18,0x18,0x58,0x50,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7785 ṩ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x24,0x20,0x30,0x1c,0x04,0x04,0x24,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7786 Ṫ ; -+,0x00,0x20,0x20,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7787 ṫ ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7788 Ṭ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7789 ṭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7790 Ṯ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7791 ṯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7792 Ṱ ; -+,0x00,0x00,0x00,0x78,0xb8,0xb0,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7793 ṱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7794 Ṳ ; -+,0x00,0x00,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7795 ṳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7796 Ṵ ; -+,0x00,0x00,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7797 ṵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7798 Ṷ ; -+,0x00,0x00,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7799 ṷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7800 Ṹ ; -+,0x00,0x38,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7801 ṹ ; -+,0x00,0x04,0x08,0x00,0x10,0x0c,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7802 Ṻ ; -+,0x00,0x38,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7803 ṻ ; -+,0x00,0x00,0x12,0x12,0x00,0x3e,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7804 Ṽ ; -+,0x00,0x30,0x10,0x44,0x44,0x64,0x68,0x28,0x20,0x38,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7805 ṽ ; -+,0x00,0x00,0x00,0x00,0x00,0x0e,0x00,0x31,0x10,0x10,0x1a,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7806 Ṿ ; -+,0x00,0x00,0x00,0x44,0x44,0x64,0x68,0x28,0x20,0x38,0x38,0x10,0x10,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7807 ṿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x10,0x10,0x1a,0x08,0x0c,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7808 Ẁ ; -+,0x10,0x08,0x08,0x59,0x59,0x48,0x6a,0x6a,0x3c,0x3e,0x36,0x34,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7809 ẁ ; -+,0x00,0x00,0x00,0x00,0x30,0x10,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7810 Ẃ ; -+,0x08,0x08,0x10,0x59,0x59,0x48,0x6a,0x6a,0x3c,0x3e,0x36,0x34,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7811 ẃ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7812 Ẅ ; -+,0x00,0x14,0x14,0x59,0x59,0x48,0x6a,0x6a,0x3c,0x3e,0x36,0x34,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7813 ẅ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7814 Ẇ ; -+,0x00,0x08,0x08,0x59,0x59,0x48,0x6a,0x6a,0x3c,0x3e,0x36,0x34,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7815 ẇ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7816 Ẉ ; -+,0x00,0x00,0x00,0x59,0x59,0x48,0x6a,0x6a,0x3c,0x3e,0x36,0x34,0x34,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7817 ẉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7818 Ẋ ; -+,0x00,0x10,0x10,0x6c,0x68,0x28,0x28,0x30,0x10,0x30,0x38,0x28,0x48,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7819 ẋ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x32,0x1c,0x08,0x0c,0x14,0x02,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7820 Ẍ ; -+,0x00,0x28,0x28,0x6c,0x68,0x28,0x28,0x30,0x10,0x30,0x38,0x28,0x48,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7821 ẍ ; -+,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x32,0x1c,0x08,0x0c,0x14,0x02,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7822 Ẏ ; -+,0x00,0x10,0x10,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7823 ẏ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7824 Ẑ ; -+,0x30,0x30,0x00,0x78,0x48,0x18,0x10,0x10,0x30,0x20,0x60,0x60,0x40,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7825 ẑ ; -+,0x00,0x00,0x00,0x08,0x1c,0x02,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7826 Ẓ ; -+,0x00,0x00,0x00,0x78,0x48,0x18,0x10,0x10,0x30,0x20,0x60,0x60,0x40,0xf8,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7827 ẓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7828 Ẕ ; -+,0x00,0x00,0x00,0x78,0x48,0x18,0x10,0x10,0x30,0x20,0x60,0x60,0x40,0xf8,0x00,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7829 ẕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x04,0x0c,0x08,0x10,0x30,0x33,0x00,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7830 ẖ ; -+,0x00,0x00,0x00,0x20,0x30,0x30,0x30,0x3e,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7831 ẗ ; -+,0x00,0x00,0x00,0x4c,0x00,0x00,0x30,0x30,0x20,0x20,0x20,0x20,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7832 ẘ ; -+,0x00,0x00,0x00,0x10,0x20,0x10,0x00,0x54,0x50,0x54,0x50,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7833 ẙ ; -+,0x00,0x00,0x00,0x0c,0x10,0x04,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7834 ẚ ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7835 ẛ ; -+,0x00,0x08,0x00,0x06,0x12,0x10,0x10,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7836 ẜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7837 ẝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7838 ẞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7839 ẟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7840 Ạ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7841 ạ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7842 Ả ; -+,0x30,0x00,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7843 ả ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7844 Ấ ; -+,0x14,0x38,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7845 ấ ; -+,0x00,0x08,0x18,0x30,0x60,0x10,0x00,0x60,0x50,0x30,0x50,0x50,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7846 Ầ ; -+,0x50,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7847 ầ ; -+,0x00,0x80,0x40,0x28,0x14,0x02,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7848 Ẩ ; -+,0x14,0x34,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7849 ẩ ; -+,0x00,0x00,0x00,0x20,0x68,0x10,0x00,0x60,0x50,0x30,0x50,0x50,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7850 Ẫ ; -+,0x10,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7851 ẫ ; -+,0x00,0x1a,0x04,0x08,0x14,0x02,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7852 Ậ ; -+,0x10,0x28,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7853 ậ ; -+,0x00,0x00,0x00,0x00,0x0c,0x12,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7854 Ắ ; -+,0x08,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7855 ắ ; -+,0x00,0x02,0x04,0x00,0x14,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7856 Ằ ; -+,0x08,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7857 ằ ; -+,0x00,0x10,0x08,0x00,0x14,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7858 Ẳ ; -+,0x08,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7859 ẳ ; -+,0x00,0x00,0x04,0x00,0x14,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7860 Ẵ ; -+,0x08,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7861 ẵ ; -+,0x00,0x18,0x0e,0x00,0x14,0x08,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7862 Ặ ; -+,0x08,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7863 ặ ; -+,0x00,0x00,0x00,0x00,0x12,0x0c,0x00,0x24,0x22,0x06,0x12,0x22,0x26,0x3b,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7864 Ẹ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7865 ẹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7866 Ẻ ; -+,0x10,0x10,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7867 ẻ ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7868 Ẽ ; -+,0x00,0x20,0x30,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7869 ẽ ; -+,0x00,0x00,0x00,0x00,0x10,0x2e,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7870 Ế ; -+,0x34,0x34,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7871 ế ; -+,0x00,0x08,0x18,0x30,0x60,0x10,0x00,0x30,0x50,0x50,0xc0,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7872 Ề ; -+,0xb0,0xb0,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7873 ề ; -+,0x00,0x80,0x40,0x28,0x14,0x02,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7874 Ể ; -+,0x3c,0x30,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7875 ể ; -+,0x00,0x00,0x00,0x38,0x68,0x10,0x00,0x30,0x50,0x50,0xc0,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7876 Ễ ; -+,0x30,0x30,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7877 ễ ; -+,0x00,0x1a,0x04,0x08,0x14,0x02,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7878 Ệ ; -+,0x30,0x30,0x00,0x78,0x48,0x40,0x40,0x48,0x78,0x48,0x40,0x40,0x48,0x78,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7879 ệ ; -+,0x00,0x00,0x00,0x00,0x1c,0x02,0x00,0x06,0x22,0x22,0x60,0x20,0x30,0x1c,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7880 Ỉ ; -+,0x08,0x00,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7881 ỉ ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7882 Ị ; -+,0x00,0x00,0x00,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7883 ị ; -+,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7884 Ọ ; -+,0x00,0x00,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7885 ọ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7886 Ỏ ; -+,0x10,0x00,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7887 ỏ ; -+,0x00,0x00,0x00,0x0c,0x04,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7888 Ố ; -+,0x14,0x28,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7889 ố ; -+,0x00,0x08,0x08,0x20,0x20,0x00,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7890 Ồ ; -+,0x50,0x68,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7891 ồ ; -+,0x00,0x00,0x40,0x0c,0x0c,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7892 Ổ ; -+,0x14,0x2c,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7893 ổ ; -+,0x00,0x00,0x00,0x28,0x28,0x00,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7894 Ỗ ; -+,0x10,0x28,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7895 ỗ ; -+,0x00,0x1c,0x00,0x0c,0x0c,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7896 Ộ ; -+,0x10,0x28,0x00,0x38,0x68,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7897 ộ ; -+,0x00,0x00,0x00,0x00,0x0c,0x12,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7898 Ớ ; -+,0x08,0x14,0x04,0x30,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7899 ớ ; -+,0x00,0x00,0x00,0x10,0x10,0x28,0x08,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7900 Ờ ; -+,0x20,0x14,0x04,0x30,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7901 ờ ; -+,0x00,0x00,0x00,0x40,0x20,0x28,0x08,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7902 Ở ; -+,0x10,0x04,0x04,0x30,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7903 ở ; -+,0x00,0x00,0x00,0x20,0x20,0x08,0x08,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7904 Ỡ ; -+,0x00,0x3c,0x04,0x30,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7905 ỡ ; -+,0x00,0x00,0x00,0x00,0x20,0x38,0x08,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7906 Ợ ; -+,0x00,0x04,0x04,0x30,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x28,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7907 ợ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7908 Ụ ; -+,0x00,0x00,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7909 ụ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7910 Ủ ; -+,0x10,0x10,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7911 ủ ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x23,0x23,0x23,0x23,0x23,0x33,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7912 Ứ ; -+,0x08,0x12,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7913 ứ ; -+,0x00,0x00,0x00,0x10,0x28,0x28,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7914 Ừ ; -+,0x10,0x12,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7915 ừ ; -+,0x00,0x00,0x00,0x40,0x28,0x28,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7916 Ử ; -+,0x10,0x12,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7917 ử ; -+,0x00,0x00,0x00,0x20,0x28,0x08,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7918 Ữ ; -+,0x00,0x32,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7919 ữ ; -+,0x00,0x00,0x00,0x00,0x68,0x28,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7920 Ự ; -+,0x00,0x02,0x00,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x68,0x38,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7921 ự ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x70,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7922 Ỳ ; -+,0x20,0x10,0x00,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7923 ỳ ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7924 Ỵ ; -+,0x00,0x00,0x00,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7925 ỵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7926 Ỷ ; -+,0x30,0x00,0x00,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7927 ỷ ; -+,0x00,0x00,0x00,0x0c,0x04,0x00,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7928 Ỹ ; -+,0x00,0x20,0x38,0x64,0x64,0x68,0x20,0x38,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7929 ỹ ; -+,0x00,0x00,0x00,0x00,0x18,0x0e,0x00,0x31,0x31,0x10,0x1a,0x08,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7930 Ỻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7931 ỻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7932 Ỽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7933 ỽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7934 Ỿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7935 ỿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7936 ἀ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7937 ἁ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7938 ἂ ; -+,0x00,0x00,0x60,0x30,0x10,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7939 ἃ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7940 ἄ ; -+,0x00,0x00,0x70,0x30,0x00,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7941 ἅ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7942 ἆ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7943 ἇ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7944 Ἀ ; -+,0x00,0x00,0x00,0xc0,0xd0,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7945 Ἁ ; -+,0x00,0x00,0x00,0x40,0x90,0x90,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7946 Ἂ ; -+,0x00,0x00,0x00,0xe8,0x68,0x78,0x18,0x0c,0x1c,0x04,0x3c,0x24,0x26,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7947 Ἃ ; -+,0x00,0x00,0x00,0xe8,0xa8,0x98,0x18,0x0c,0x1c,0x04,0x3c,0x24,0x26,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7948 Ἄ ; -+,0x00,0x00,0x00,0xe8,0x68,0x58,0x18,0x0c,0x1c,0x04,0x3c,0x24,0x26,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7949 Ἅ ; -+,0x00,0x00,0x00,0xe8,0xa8,0xb8,0x18,0x0c,0x1c,0x04,0x3c,0x24,0x26,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7950 Ἆ ; -+,0x00,0x00,0x00,0xc0,0x08,0x58,0x08,0x18,0x1c,0x24,0x3c,0x04,0x26,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7951 Ἇ ; -+,0x00,0x00,0x00,0xc0,0x08,0x58,0x48,0x18,0x1c,0x24,0x3c,0x04,0x26,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7952 ἐ ; -+,0x00,0x00,0x1c,0x04,0x00,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7953 ἑ ; -+,0x00,0x00,0x0c,0x10,0x08,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7954 ἒ ; -+,0x00,0x00,0x14,0x04,0x12,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7955 ἓ ; -+,0x00,0x00,0x1c,0x22,0x02,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7956 ἔ ; -+,0x00,0x00,0x12,0x04,0x14,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7957 ἕ ; -+,0x00,0x00,0x1a,0x22,0x04,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7958 ἖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7959 ἗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7960 Ἐ ; -+,0x00,0x00,0x00,0x1e,0xd2,0x50,0x10,0x10,0x1c,0x10,0x10,0x10,0x12,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7961 Ἑ ; -+,0x00,0x00,0x00,0x5e,0x52,0x10,0x50,0x12,0x1e,0x12,0x10,0x10,0x12,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7962 Ἒ ; -+,0x00,0x00,0x00,0x1e,0x69,0x08,0x08,0x0a,0x0e,0x0a,0x08,0x08,0x09,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7963 Ἓ ; -+,0x00,0x00,0x00,0x5f,0xe9,0xa8,0x08,0x0a,0x0e,0x08,0x08,0x08,0x08,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7964 Ἔ ; -+,0x00,0x00,0x00,0x1e,0x69,0x28,0x08,0x0a,0x0e,0x0a,0x08,0x08,0x09,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7965 Ἕ ; -+,0x00,0x00,0x00,0x5f,0xe9,0xa8,0x08,0x0a,0x0e,0x08,0x08,0x08,0x08,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7966 ἞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7967 ἟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7968 ἠ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7969 ἡ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7970 ἢ ; -+,0x00,0x00,0x60,0x30,0x10,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7971 ἣ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7972 ἤ ; -+,0x00,0x00,0x70,0x30,0x00,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7973 ἥ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7974 ἦ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7975 ἧ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7976 Ἠ ; -+,0x00,0x00,0x00,0x36,0xf2,0x72,0x72,0x32,0x3e,0x32,0x32,0x32,0x32,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7977 Ἡ ; -+,0x00,0x00,0x00,0x76,0xf2,0x32,0xb2,0x32,0x3e,0x32,0x32,0x32,0x32,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7978 Ἢ ; -+,0x00,0x00,0x00,0x9b,0xdb,0x79,0x19,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7979 Ἣ ; -+,0x00,0x00,0x00,0x9b,0xdb,0xb9,0x19,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7980 Ἤ ; -+,0x00,0x00,0x00,0x9b,0xbb,0x53,0x13,0x13,0x1f,0x13,0x13,0x13,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7981 Ἥ ; -+,0x00,0x00,0x00,0x9b,0xbb,0xd9,0x19,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7982 Ἦ ; -+,0x00,0x00,0x00,0x9b,0xd9,0x59,0x59,0x19,0x1f,0x19,0x19,0x19,0x19,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7983 Ἧ ; -+,0x00,0x00,0x00,0x9b,0xdb,0x59,0x99,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7984 ἰ ; -+,0x00,0x00,0x30,0x10,0x10,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7985 ἱ ; -+,0x00,0x00,0x30,0x00,0x20,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7986 ἲ ; -+,0x00,0x00,0x50,0x28,0x08,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7987 ἳ ; -+,0x00,0x00,0x68,0x08,0x40,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7988 ἴ ; -+,0x00,0x00,0x48,0x28,0x10,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7989 ἵ ; -+,0x00,0x00,0x68,0x08,0x40,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7990 ἶ ; -+,0x00,0x38,0x00,0x10,0x10,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7991 ἷ ; -+,0x00,0x38,0x00,0x20,0x20,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7992 Ἰ ; -+,0x00,0x00,0x00,0x03,0x63,0x13,0x23,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7993 Ἱ ; -+,0x00,0x00,0x00,0x03,0x73,0x43,0x23,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7994 Ἲ ; -+,0x00,0x00,0x00,0x48,0x68,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7995 Ἳ ; -+,0x00,0x00,0x00,0x08,0x68,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7996 Ἴ ; -+,0x00,0x00,0x00,0x48,0x68,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7997 Ἵ ; -+,0x00,0x00,0x00,0x08,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7998 Ἶ ; -+,0x00,0x00,0x00,0x48,0xe8,0x48,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 7999 Ἷ ; -+,0x00,0x00,0x00,0x48,0xe8,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8000 ὀ ; -+,0x00,0x00,0x0c,0x00,0x04,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8001 ὁ ; -+,0x00,0x00,0x0c,0x00,0x08,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8002 ὂ ; -+,0x00,0x00,0x1c,0x0a,0x02,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8003 ὃ ; -+,0x00,0x00,0x1a,0x02,0x10,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8004 ὄ ; -+,0x00,0x00,0x1a,0x0a,0x00,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8005 ὅ ; -+,0x00,0x00,0x1a,0x02,0x10,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8006 ὆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8007 ὇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8008 Ὀ ; -+,0x00,0x00,0x00,0xcc,0xd6,0x32,0x22,0x23,0x23,0x23,0x22,0x32,0x12,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8009 Ὁ ; -+,0x00,0x00,0x00,0x4c,0x96,0xb2,0x22,0x23,0x23,0x23,0x22,0x32,0x12,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8010 Ὂ ; -+,0x00,0x00,0x00,0xcc,0x5a,0x93,0x11,0x31,0x31,0x31,0x11,0x13,0x12,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8011 Ὃ ; -+,0x00,0x00,0x00,0xee,0xab,0x99,0x11,0x11,0x11,0x11,0x11,0x11,0x19,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8012 Ὄ ; -+,0x00,0x00,0x00,0x8c,0x5a,0xd3,0x11,0x31,0x31,0x31,0x11,0x13,0x12,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8013 Ὅ ; -+,0x00,0x00,0x00,0xe6,0xab,0xb9,0x11,0x11,0x11,0x11,0x11,0x19,0x09,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8014 ὎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8015 ὏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8016 ὐ ; -+,0x00,0x00,0x0c,0x00,0x04,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8017 ὑ ; -+,0x00,0x00,0x0c,0x00,0x08,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8018 ὒ ; -+,0x00,0x00,0x1c,0x0a,0x02,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8019 ὓ ; -+,0x00,0x00,0x1a,0x02,0x10,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8020 ὔ ; -+,0x00,0x00,0x1a,0x0a,0x00,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8021 ὕ ; -+,0x00,0x00,0x1a,0x02,0x10,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8022 ὖ ; -+,0x00,0x0e,0x00,0x04,0x04,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8023 ὗ ; -+,0x00,0x0e,0x00,0x08,0x08,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8024 ὘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8025 Ὑ ; -+,0x00,0x00,0x00,0x72,0xa7,0xae,0x0c,0x0c,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8026 ὚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8027 Ὓ ; -+,0x00,0x00,0x00,0x79,0xbb,0xb7,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8028 ὜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8029 Ὕ ; -+,0x00,0x00,0x00,0x79,0xf3,0xb7,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8030 ὞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8031 Ὗ ; -+,0x00,0x00,0x00,0x79,0x3b,0x57,0x46,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8032 ὠ ; -+,0x00,0x00,0x30,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8033 ὡ ; -+,0x00,0x00,0x10,0x20,0x10,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8034 ὢ ; -+,0x00,0x00,0x30,0x10,0x28,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8035 ὣ ; -+,0x00,0x00,0x30,0x28,0x08,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8036 ὤ ; -+,0x00,0x00,0x28,0x10,0x30,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8037 ὥ ; -+,0x00,0x00,0x38,0x28,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8038 ὦ ; -+,0x00,0x38,0x10,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8039 ὧ ; -+,0x00,0x38,0x00,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8040 Ὠ ; -+,0x00,0x00,0x00,0xcc,0x52,0x73,0x21,0x21,0x21,0x33,0x12,0x1e,0x2d,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8041 Ὡ ; -+,0x00,0x00,0x00,0x4c,0x92,0xb3,0x21,0x21,0x21,0x33,0x12,0x1e,0x2d,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8042 Ὢ ; -+,0x00,0x00,0x00,0xca,0x79,0x31,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8043 Ὣ ; -+,0x00,0x00,0x00,0xca,0x39,0xb1,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8044 Ὤ ; -+,0x00,0x00,0x00,0xea,0x79,0x11,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8045 Ὥ ; -+,0x00,0x00,0x00,0xea,0xb9,0x11,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8046 Ὦ ; -+,0x00,0x00,0x00,0xea,0x59,0x51,0x51,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8047 Ὧ ; -+,0x00,0x00,0x00,0xea,0x59,0x51,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8048 ὰ ; -+,0x00,0x00,0x20,0x20,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8049 ά ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8050 ὲ ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8051 έ ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x36,0x20,0x30,0x14,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8052 ὴ ; -+,0x00,0x00,0x20,0x20,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8053 ή ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8054 ὶ ; -+,0x00,0x00,0x20,0x20,0x10,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8055 ί ; -+,0x00,0x00,0x10,0x20,0x20,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8056 ὸ ; -+,0x00,0x00,0x08,0x04,0x04,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8057 ό ; -+,0x00,0x00,0x04,0x00,0x08,0x00,0x00,0x12,0x21,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8058 ὺ ; -+,0x00,0x00,0x08,0x04,0x04,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8059 ύ ; -+,0x00,0x00,0x04,0x00,0x08,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8060 ὼ ; -+,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8061 ώ ; -+,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8062 ὾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8063 ὿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8064 ᾀ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8065 ᾁ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8066 ᾂ ; -+,0x00,0x00,0x60,0x30,0x10,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8067 ᾃ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8068 ᾄ ; -+,0x00,0x00,0x70,0x30,0x00,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8069 ᾅ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8070 ᾆ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8071 ᾇ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8072 ᾈ ; -+,0x00,0x00,0x00,0xc0,0xd0,0x10,0x30,0x18,0x28,0x28,0x78,0x4a,0x0e,0x4f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8073 ᾉ ; -+,0x00,0x00,0x00,0x40,0x90,0x90,0x30,0x18,0x28,0x28,0x78,0x4a,0x0e,0x4f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8074 ᾊ ; -+,0x00,0x00,0x00,0xc0,0x78,0x38,0x08,0x18,0x0c,0x2c,0x3c,0x25,0x25,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8075 ᾋ ; -+,0x00,0x00,0x00,0xc0,0xb8,0x38,0x18,0x18,0x08,0x2c,0x3c,0x25,0x25,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8076 ᾌ ; -+,0x00,0x00,0x00,0xa0,0x78,0x18,0x08,0x18,0x0c,0x2c,0x3c,0x25,0x25,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8077 ᾍ ; -+,0x00,0x00,0x00,0xe0,0x38,0x98,0x08,0x18,0x0c,0x2c,0x3c,0x25,0x25,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8078 ᾎ ; -+,0x00,0x00,0x00,0xc0,0x18,0x58,0x08,0x18,0x0c,0x2c,0x3c,0x25,0x25,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8079 ᾏ ; -+,0x00,0x00,0x00,0xc0,0x18,0x58,0x08,0x18,0x0c,0x2c,0x3c,0x25,0x25,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8080 ᾐ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8081 ᾑ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8082 ᾒ ; -+,0x00,0x00,0x60,0x30,0x10,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8083 ᾓ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8084 ᾔ ; -+,0x00,0x00,0x70,0x30,0x00,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8085 ᾕ ; -+,0x00,0x00,0x70,0x10,0x40,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8086 ᾖ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8087 ᾗ ; -+,0x00,0x30,0x00,0x20,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8088 ᾘ ; -+,0x00,0x00,0x00,0x36,0xf2,0x72,0x72,0x32,0x3e,0x32,0x32,0x32,0x32,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8089 ᾙ ; -+,0x00,0x00,0x00,0x76,0xf2,0x32,0xb2,0x32,0x3e,0x32,0x32,0x32,0x32,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8090 ᾚ ; -+,0x00,0x00,0x00,0x9b,0xdb,0x79,0x19,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8091 ᾛ ; -+,0x00,0x00,0x00,0x9b,0xdb,0xb9,0x19,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8092 ᾜ ; -+,0x00,0x00,0x00,0x9b,0xbb,0x53,0x13,0x13,0x1f,0x13,0x13,0x13,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8093 ᾝ ; -+,0x00,0x00,0x00,0x9b,0xbb,0xd9,0x19,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8094 ᾞ ; -+,0x00,0x00,0x00,0x9b,0xd9,0x59,0x59,0x19,0x1f,0x19,0x19,0x19,0x19,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8095 ᾟ ; -+,0x00,0x00,0x00,0x9b,0xdb,0x59,0x99,0x19,0x1f,0x19,0x19,0x19,0x1b,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8096 ᾠ ; -+,0x00,0x00,0x30,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8097 ᾡ ; -+,0x00,0x00,0x10,0x20,0x10,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8098 ᾢ ; -+,0x00,0x00,0x30,0x10,0x28,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8099 ᾣ ; -+,0x00,0x00,0x30,0x28,0x08,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8100 ᾤ ; -+,0x00,0x00,0x28,0x10,0x30,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8101 ᾥ ; -+,0x00,0x00,0x38,0x28,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8102 ᾦ ; -+,0x00,0x38,0x10,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8103 ᾧ ; -+,0x00,0x38,0x00,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8104 ᾨ ; -+,0x00,0x00,0x00,0xcc,0x52,0x73,0x21,0x21,0x21,0x33,0x12,0x1e,0x2d,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8105 ᾩ ; -+,0x00,0x00,0x00,0x4c,0x92,0xb3,0x21,0x21,0x21,0x33,0x12,0x1e,0x2d,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8106 ᾪ ; -+,0x00,0x00,0x00,0xca,0x79,0x31,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8107 ᾫ ; -+,0x00,0x00,0x00,0xca,0x39,0xb1,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8108 ᾬ ; -+,0x00,0x00,0x00,0xea,0x79,0x11,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8109 ᾭ ; -+,0x00,0x00,0x00,0xea,0xb9,0x11,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8110 ᾮ ; -+,0x00,0x00,0x00,0xea,0x59,0x51,0x51,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8111 ᾯ ; -+,0x00,0x00,0x00,0xea,0x59,0x51,0x11,0x11,0x11,0x11,0x19,0x0a,0x13,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8112 ᾰ ; -+,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8113 ᾱ ; -+,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8114 ᾲ ; -+,0x00,0x00,0x20,0x20,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8115 ᾳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8116 ᾴ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8117 ᾵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8118 ᾶ ; -+,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8119 ᾷ ; -+,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x48,0x58,0x58,0x50,0x50,0x50,0x58,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8120 Ᾰ ; -+,0x08,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8121 Ᾱ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8122 Ὰ ; -+,0x00,0x00,0x00,0x00,0x50,0x50,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8123 Ά ; -+,0x00,0x00,0x00,0x40,0x50,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8124 ᾼ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x4a,0x0e,0x4f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8125 ᾽ ; -+,0x00,0xc0,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8126 ι ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8127 ᾿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8128 ῀ ; -+,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8129 ῁ ; -+,0x00,0x08,0x06,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8130 ῂ ; -+,0x00,0x00,0x20,0x20,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8131 ῃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8132 ῄ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8133 ῅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8134 ῆ ; -+,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8135 ῇ ; -+,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x50,0x58,0x58,0x58,0x58,0x58,0x58,0x18,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8136 Ὲ ; -+,0x00,0x00,0x00,0xbc,0xa0,0xa0,0x20,0x24,0x3c,0x24,0x20,0x20,0x24,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8137 Έ ; -+,0x00,0x00,0x00,0xbc,0xa0,0xa0,0x20,0x24,0x3c,0x24,0x20,0x20,0x24,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8138 Ὴ ; -+,0x00,0x00,0x00,0xb6,0xb2,0x72,0x32,0x32,0x3e,0x32,0x32,0x32,0x32,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8139 Ή ; -+,0x00,0x00,0x00,0x76,0x72,0xb2,0x32,0x32,0x3e,0x32,0x32,0x32,0x32,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8140 ῌ ; -+,0x00,0x00,0x00,0x6c,0x4c,0x4c,0x4c,0x4c,0x7c,0x4c,0x4c,0x4d,0x4d,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8141 ῍ ; -+,0x00,0x00,0x1c,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8142 ῎ ; -+,0x00,0x00,0x1a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8143 ῏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8144 ῐ ; -+,0x00,0x00,0x00,0x00,0x48,0x70,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8145 ῑ ; -+,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8146 ῒ ; -+,0x00,0x00,0x20,0x20,0x58,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8147 ΐ ; -+,0x00,0x00,0x10,0x10,0x68,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8148 ῔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8149 ῕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8150 ῖ ; -+,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8151 ῗ ; -+,0x00,0x20,0x18,0x00,0x48,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8152 Ῐ ; -+,0x00,0x24,0x18,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8153 Ῑ ; -+,0x00,0x00,0x7c,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8154 Ὶ ; -+,0x00,0x00,0x00,0x06,0x26,0x26,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8155 Ί ; -+,0x00,0x00,0x00,0x26,0x26,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8156 ῜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8157 ῝ ; -+,0x00,0x00,0x1a,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8158 ῞ ; -+,0x00,0x00,0x1a,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8159 ῟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8160 ῠ ; -+,0x00,0x00,0x00,0x00,0x09,0x0e,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8161 ῡ ; -+,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8162 ῢ ; -+,0x00,0x00,0x08,0x08,0x17,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8163 ΰ ; -+,0x00,0x00,0x04,0x04,0x1a,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8164 ῤ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x50,0x58,0x58,0x58,0x50,0x70,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8165 ῥ ; -+,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x50,0x50,0x58,0x58,0x58,0x50,0x70,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8166 ῦ ; -+,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8167 ῧ ; -+,0x00,0x08,0x06,0x00,0x12,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8168 Ῠ ; -+,0x08,0x30,0x00,0x4c,0x4c,0x64,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8169 Ῡ ; -+,0x00,0x00,0x00,0x4c,0x4c,0x64,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8170 Ὺ ; -+,0x00,0x00,0x00,0x72,0x72,0x2e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8171 Ύ ; -+,0x00,0x00,0x00,0x32,0x72,0x6e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8172 Ῥ ; -+,0x00,0x00,0x00,0x78,0xd4,0x96,0x56,0x16,0x14,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8173 ῭ ; -+,0x00,0x00,0x08,0x08,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8174 ΅ ; -+,0x00,0x00,0x04,0x04,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8175 ` ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8176 ῰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8177 ῱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8178 ῲ ; -+,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8179 ῳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8180 ῴ ; -+,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8181 ῵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8182 ῶ ; -+,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8183 ῷ ; -+,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x48,0x54,0x54,0x54,0x54,0x54,0x68,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8184 Ὸ ; -+,0x00,0x00,0x00,0x5c,0x56,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x32,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8185 Ό ; -+,0x00,0x00,0x00,0x4c,0x56,0x32,0x22,0x22,0x23,0x23,0x22,0x22,0x32,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8186 Ὼ ; -+,0x00,0x00,0x00,0x94,0x72,0x62,0x23,0x23,0x22,0x22,0x32,0x14,0x36,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8187 Ώ ; -+,0x00,0x00,0x00,0x54,0x72,0x22,0x23,0x23,0x22,0x22,0x32,0x14,0x36,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8188 ῼ ; -+,0x00,0x00,0x00,0x28,0x4c,0x44,0x44,0x44,0x44,0x44,0x6c,0x29,0x6d,0x6d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8189 ´ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8190 ῾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8191 ῿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8192   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8193   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8194   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8195   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8196   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8197   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8198   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8199   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8200   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8201   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8202   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8203 ​ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8204 ‌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8205 ‍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8206 ‎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8207 ‏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8208 ‐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8209 ‑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8210 ‒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8211 – ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8212 — ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8213 ― ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8214 ‖ ; -+,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8215 ‗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8216 ‘ ; -+,0x00,0x01,0x02,0x04,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8217 ’ ; -+,0x00,0x30,0x30,0x10,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8218 ‚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8219 ‛ ; -+,0x00,0x00,0x00,0x18,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8220 “ ; -+,0x00,0x22,0x44,0x88,0xcc,0xcc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8221 ” ; -+,0x00,0xcc,0xcc,0x44,0x88,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8222 „ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x37,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8223 ‟ ; -+,0x00,0x00,0x00,0x32,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8224 † ; -+,0x00,0x00,0x0c,0x0c,0x00,0x3f,0x00,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8225 ‡ ; -+,0x00,0x00,0x0c,0x0c,0x23,0x33,0x0c,0x00,0x00,0x00,0x00,0x0c,0x3b,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8226 • ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x1e,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8227 ‣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x38,0x38,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8228 ․ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8229 ‥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x7e,0x7e,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8230 … ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x5a,0x5a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8231 ‧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8232 
 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8233 
 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8234 ‪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8235 ‫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8236 ‬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8237 ‭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8238 ‮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8239   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8240 ‰ ; -+,0x02,0x62,0x64,0x64,0x68,0x68,0x70,0x10,0x20,0x2b,0x57,0x57,0x97,0x17,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8241 ‱ ; -+,0x00,0x00,0x00,0x68,0x68,0xc0,0x90,0x80,0x50,0x29,0x12,0x32,0x12,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8242 ′ ; -+,0x00,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8243 ″ ; -+,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8244 ‴ ; -+,0x00,0x00,0x58,0x58,0x78,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8245 ‵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8246 ‶ ; -+,0x00,0x00,0x00,0x00,0x26,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8247 ‷ ; -+,0x00,0x00,0x00,0x00,0x78,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8248 ‸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x1c,0x12,0x22,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8249 ‹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x10,0x30,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8250 › ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x18,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8251 ※ ; -+,0x00,0x59,0x5a,0x22,0x24,0x14,0x18,0x4b,0x5b,0x14,0x24,0x22,0x5a,0x59,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8252 ‼ ; -+,0x00,0x00,0x00,0x48,0x68,0x68,0x68,0x48,0x08,0x08,0x00,0x00,0x00,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8253 ‽ ; -+,0x00,0x00,0x00,0x04,0x22,0x2f,0x0e,0x0e,0x0c,0x04,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8254 ‾ ; -+,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8255 ‿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8256 ⁀ ; -+,0x3c,0x22,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8257 ⁁ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x30,0x30,0x28,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8258 ⁂ ; -+,0x00,0x00,0x00,0x08,0x0c,0x1c,0x08,0x14,0x08,0x24,0x59,0x52,0x04,0x5b,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8259 ⁃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x3c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8260 ⁄ ; -+,0x00,0x00,0x00,0x04,0x00,0x08,0x10,0x00,0x20,0x40,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8261 ⁅ ; -+,0x00,0x00,0x00,0x10,0x10,0x30,0x30,0x30,0x30,0x10,0x10,0x30,0x30,0x30,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8262 ⁆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8263 ⁇ ; -+,0x00,0x00,0x00,0x22,0x5a,0x5b,0x13,0x12,0x22,0x22,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8264 ⁈ ; -+,0x00,0x00,0x00,0x24,0x54,0x54,0x14,0x14,0x20,0x20,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8265 ⁉ ; -+,0x00,0x00,0x00,0x44,0x66,0x7e,0x66,0x44,0x04,0x04,0x00,0x00,0x00,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8266 ⁊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x01,0x02,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8267 ⁋ ; -+,0x00,0x00,0x00,0x28,0x29,0x29,0x29,0x29,0x29,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8268 ⁌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8269 ⁍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8270 ⁎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8271 ⁏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8272 ⁐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8273 ⁑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8274 ⁒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8275 ⁓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8276 ⁔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8277 ⁕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8278 ⁖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8279 ⁗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8280 ⁘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8281 ⁙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8282 ⁚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8283 ⁛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8284 ⁜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8285 ⁝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8286 ⁞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8287   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8288 ⁠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8289 ⁡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8290 ⁢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8291 ⁣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8292 ⁤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8293 ⁥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8294 ⁦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8295 ⁧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8296 ⁨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8297 ⁩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8298  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8299  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8300  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8301  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8302  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8303  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8304 ⁰ ; -+,0x00,0x00,0x00,0x20,0x48,0x4c,0x44,0x4c,0x48,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8305 ⁱ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8306 ⁲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8307 ⁳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8308 ⁴ ; -+,0x00,0x00,0x00,0x08,0x18,0x08,0x08,0x7c,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8309 ⁵ ; -+,0x00,0x00,0x00,0x18,0x20,0x38,0x08,0x0c,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8310 ⁶ ; -+,0x00,0x00,0x00,0x08,0x20,0x70,0x6c,0x44,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8311 ⁷ ; -+,0x00,0x00,0x00,0x7c,0x08,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8312 ⁸ ; -+,0x00,0x00,0x00,0x08,0x48,0x68,0x38,0x4c,0x4c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8313 ⁹ ; -+,0x00,0x00,0x00,0x28,0x4c,0x44,0x6c,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8314 ⁺ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8315 ⁻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8316 ⁼ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8317 ⁽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8318 ⁾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8319 ⁿ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x68,0x28,0x68,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8320 ₀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x4c,0x44,0x44,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8321 ₁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8322 ₂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x08,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8323 ₃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x08,0x18,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8324 ₄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x28,0x48,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8325 ₅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x18,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8326 ₆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x78,0x4c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8327 ₇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8328 ₈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x30,0x38,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8329 ₉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x44,0x4c,0x3c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8330 ₊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8331 ₋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8332 ₌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8333 ₍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8334 ₎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8335 ₏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8336 ₐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8337 ₑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8338 ₒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8339 ₓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8340 ₔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8341 ₕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8342 ₖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8343 ₗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8344 ₘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8345 ₙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8346 ₚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8347 ₛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8348 ₜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8349 ₝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8350 ₞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8351 ₟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8352 ₠ ; -+,0x00,0x00,0x00,0x30,0x40,0x40,0x40,0x54,0x50,0x50,0x18,0x10,0x10,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8353 ₡ ; -+,0x00,0x00,0x18,0x38,0x6c,0x5c,0x50,0x50,0xf0,0x60,0x50,0x60,0x64,0x38,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8354 ₢ ; -+,0x00,0x00,0x00,0x38,0x6c,0x44,0x40,0x78,0xd0,0x50,0x50,0x50,0x74,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8355 ₣ ; -+,0x00,0x00,0x00,0x78,0x48,0x40,0x40,0x70,0x40,0x70,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8356 ₤ ; -+,0x00,0x00,0x00,0x10,0x30,0x40,0x40,0x60,0x60,0x60,0x40,0x40,0x68,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8357 ₥ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x7c,0x54,0x54,0x54,0x54,0x54,0x56,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8358 ₦ ; -+,0x00,0x00,0x00,0x44,0x64,0x64,0x24,0x7c,0x14,0x7c,0x0c,0x0c,0x4c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8359 ₧ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x78,0x48,0x58,0x60,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8360 ₨ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x48,0x4a,0x72,0x73,0x51,0x59,0x48,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8361 ₩ ; -+,0x00,0x00,0x00,0x59,0x59,0x48,0x6a,0x7f,0x3c,0x7f,0x36,0x34,0x34,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8362 ₪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x58,0x48,0x68,0x68,0x68,0x68,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8363 ₫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8364 € ; -+,0x00,0x00,0x00,0x10,0x48,0x40,0x40,0xf0,0x40,0x40,0x40,0x40,0x40,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8365 ₭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8366 ₮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8367 ₯ ; -+,0x00,0x00,0x00,0x0c,0x36,0x72,0x52,0x53,0x33,0x33,0x23,0x23,0x07,0x65,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8368 ₰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8369 ₱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8370 ₲ ; -+,0x00,0x00,0x00,0x30,0x68,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8371 ₳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8372 ₴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8373 ₵ ; -+,0x00,0x00,0x00,0x00,0x20,0x38,0x68,0x60,0x60,0x60,0x60,0x60,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8374 ₶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8375 ₷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8376 ₸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8377 ₹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8378 ₺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8379 ₻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8380 ₼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8381 ₽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8382 ₾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8383 ₿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8384 ⃀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8385 ⃁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8386 ⃂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8387 ⃃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8388 ⃄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8389 ⃅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8390 ⃆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8391 ⃇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8392 ⃈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8393 ⃉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8394 ⃊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8395 ⃋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8396 ⃌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8397 ⃍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8398 ⃎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8399 ⃏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8400 ⃐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8401 ⃑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8402 ⃒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8403 ⃓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8404 ⃔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8405 ⃕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8406 ⃖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8407 ⃗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8408 ⃘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8409 ⃙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8410 ⃚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8411 ⃛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8412 ⃜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8413 ⃝ ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x04,0x18,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8414 ⃞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8415 ⃟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8416 ⃠ ; -+,0x00,0x00,0x00,0x30,0x08,0x04,0x02,0x82,0xc2,0x62,0x32,0x1c,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8417 ⃡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8418 ⃢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8419 ⃣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8420 ⃤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8421 ⃥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8422 ⃦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8423 ⃧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8424 ⃨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8425 ⃩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8426 ⃪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8427 ⃫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8428 ⃬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8429 ⃭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8430 ⃮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8431 ⃯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8432 ⃰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8433 ⃱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8434 ⃲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8435 ⃳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8436 ⃴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8437 ⃵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8438 ⃶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8439 ⃷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8440 ⃸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8441 ⃹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8442 ⃺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8443 ⃻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8444 ⃼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8445 ⃽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8446 ⃾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8447 ⃿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8448 ℀ ; -+,0x00,0x00,0x00,0x00,0x60,0x00,0x68,0xb0,0x70,0x38,0x38,0x00,0x40,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8449 ℁ ; -+,0x00,0x00,0x00,0x00,0x40,0x20,0x68,0xb0,0xf0,0x20,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8450 ℂ ; -+,0x00,0x00,0x00,0x38,0x6c,0x64,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8451 ℃ ; -+,0x40,0x7f,0x53,0x21,0x21,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x12,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8452 ℄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8453 ℅ ; -+,0x00,0x30,0x21,0x42,0x22,0x34,0x04,0x08,0x08,0x10,0x12,0x25,0x25,0x45,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8454 ℆ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0x90,0x10,0x20,0x38,0x58,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8455 ℇ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x48,0x40,0x40,0x30,0x40,0x00,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8456 ℈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8457 ℉ ; -+,0x00,0x60,0x7e,0x6a,0x68,0x0c,0x0c,0x0c,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8458 ℊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x11,0x31,0x23,0x23,0x62,0x3a,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8459 ℋ ; -+,0x00,0x00,0x00,0x00,0x0a,0x03,0x05,0x07,0x0e,0x0a,0x0e,0x14,0x54,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8460 ℌ ; -+,0x00,0x00,0x00,0x20,0x10,0x40,0x40,0x58,0x68,0x2c,0x2c,0x24,0x44,0x48,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8461 ℍ ; -+,0x00,0x00,0x00,0x66,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8462 ℎ ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x13,0x11,0x31,0x33,0x22,0x22,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8463 ℏ ; -+,0x00,0x00,0x00,0x08,0x08,0x0a,0x18,0x13,0x11,0x31,0x33,0x22,0x22,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8464 ℐ ; -+,0x00,0x00,0x00,0x01,0x06,0x0a,0x0c,0x04,0x04,0x0c,0x08,0x08,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8465 ℑ ; -+,0x00,0x00,0x30,0x78,0x48,0x40,0x50,0x58,0x18,0x08,0x08,0x08,0x68,0x38,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8466 ℒ ; -+,0x00,0x00,0x00,0x09,0x12,0x12,0x17,0x14,0x04,0x0c,0x08,0x08,0x10,0xbc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8467 ℓ ; -+,0x00,0x00,0x00,0x02,0x04,0x08,0x08,0x18,0x10,0x10,0x10,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8468 ℔ ; -+,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x38,0x38,0x28,0x28,0x28,0x38,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8469 ℕ ; -+,0x00,0x00,0x00,0x66,0x62,0x30,0x30,0x38,0x28,0x28,0x2c,0x24,0x24,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8470 № ; -+,0x48,0x4c,0x68,0x68,0x6a,0x6d,0x6d,0x6d,0x5d,0x5d,0x5d,0x5d,0x5a,0x58,0xcf,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8471 ℗ ; -+,0x00,0x00,0x00,0x38,0x2c,0x44,0x5c,0x58,0x1a,0x50,0x54,0x54,0x44,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8472 ℘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x22,0x42,0x42,0x66,0x74,0x64,0x38,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8473 ℙ ; -+,0x00,0x00,0x00,0x70,0x28,0x2c,0x24,0x2c,0x28,0x20,0x20,0x20,0x20,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8474 ℚ ; -+,0x00,0x00,0x00,0x30,0x68,0x64,0x44,0x44,0x44,0x44,0x44,0x44,0x6c,0x28,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8475 ℛ ; -+,0x00,0x00,0x00,0x03,0x01,0x09,0x05,0x16,0x1c,0x0c,0x1c,0x1c,0x98,0xa8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8476 ℜ ; -+,0x00,0x00,0x64,0x7c,0x16,0x94,0x50,0x7c,0x3c,0x14,0x14,0x14,0x74,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8477 ℝ ; -+,0x00,0x00,0x00,0x70,0x2c,0x24,0x24,0x2c,0x38,0x38,0x28,0x2c,0x2c,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8478 ℞ ; -+,0x00,0x00,0x00,0x70,0x58,0x48,0x48,0x48,0x70,0x70,0x58,0x58,0x48,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8479 ℟ ; -+,0x00,0x30,0x10,0x70,0x58,0x48,0x58,0x58,0x70,0x70,0x70,0x78,0x68,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8480 ℠ ; -+,0x00,0x00,0x00,0x12,0x9a,0xca,0x4a,0x2a,0x2e,0xb2,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8481 ℡ ; -+,0x00,0x3e,0x2a,0x2a,0x2e,0x2a,0x2a,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8482 ™ ; -+,0x00,0x00,0xe8,0x78,0x78,0x48,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8483 ℣ ; -+,0x00,0x30,0x08,0x4c,0x44,0x74,0x78,0x28,0x30,0x38,0x38,0x30,0x30,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8484 ℤ ; -+,0x00,0x00,0x00,0x7c,0x4c,0x1c,0x18,0x10,0x38,0x30,0x70,0x70,0x60,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8485 ℥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8486 Ω ; -+,0x00,0x00,0x00,0x28,0x4c,0x44,0x44,0x44,0x44,0x44,0x6c,0x28,0x6c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8487 ℧ ; -+,0x00,0x00,0x00,0x6c,0x6c,0x28,0x6c,0x44,0x44,0x44,0x44,0x44,0x44,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8488 ℨ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x48,0x48,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8489 ℩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8490 K ; -+,0x00,0x00,0x00,0x6c,0x68,0x68,0x70,0x70,0x70,0x70,0x78,0x68,0x6c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8491 Å ; -+,0x20,0x30,0x00,0x00,0x10,0x10,0x30,0x18,0x28,0x28,0x78,0x48,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8492 ℬ ; -+,0x00,0x00,0x00,0x01,0x03,0x03,0x24,0x0d,0x16,0x08,0x08,0x1a,0x52,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8493 ℭ ; -+,0x00,0x00,0x00,0x10,0x18,0x60,0x60,0x70,0x50,0x50,0x40,0x40,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8494 ℮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x58,0x50,0x40,0x40,0x40,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8495 ℯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8496 ℰ ; -+,0x00,0x00,0x00,0x0c,0x10,0x10,0x20,0x30,0x20,0x40,0x48,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8497 ℱ ; -+,0x00,0x00,0x06,0x0b,0x00,0x06,0x04,0x04,0x06,0x0e,0x08,0x08,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8498 Ⅎ ; -+,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x50,0x70,0x50,0x10,0x10,0x90,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8499 ℳ ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x03,0x05,0x05,0x0d,0x0b,0x4a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8500 ℴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8501 ℵ ; -+,0x00,0x00,0x00,0x00,0x58,0x58,0x78,0x70,0x70,0x70,0x50,0x58,0x78,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8502 ℶ ; -+,0x00,0x00,0x00,0x78,0x78,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8503 ℷ ; -+,0x00,0x00,0x00,0x38,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8504 ℸ ; -+,0x00,0x00,0x00,0x70,0x78,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8505 ℹ ; -+,0x00,0x00,0x00,0x18,0x1c,0x1c,0x00,0x3c,0x3c,0x1c,0x1c,0x1c,0x1c,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8506 ℺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8507 ℻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8508 ℼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8509 ℽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8510 ℾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8511 ℿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8512 ⅀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8513 ⅁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8514 ⅂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8515 ⅃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8516 ⅄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8517 ⅅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8518 ⅆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8519 ⅇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8520 ⅈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8521 ⅉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8522 ⅊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8523 ⅋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8524 ⅌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8525 ⅍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8526 ⅎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8527 ⅏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8528 ⅐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8529 ⅑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8530 ⅒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8531 ⅓ ; -+,0x00,0x00,0x00,0x00,0x48,0x48,0x40,0x54,0x54,0x44,0x24,0x24,0x04,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8532 ⅔ ; -+,0x00,0x00,0x00,0x40,0xe8,0x28,0x60,0x54,0x5c,0xe4,0x24,0x24,0x04,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8533 ⅕ ; -+,0x00,0x00,0x00,0x00,0x48,0x48,0x40,0x50,0x58,0x48,0x24,0x24,0x04,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8534 ⅖ ; -+,0x00,0x00,0x00,0x40,0xe8,0x28,0x60,0x50,0x5c,0xe8,0x2c,0x24,0x04,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8535 ⅗ ; -+,0x00,0x00,0x00,0x40,0x28,0x28,0x60,0x30,0x3c,0xc8,0x2c,0x24,0x04,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8536 ⅘ ; -+,0x00,0x00,0x00,0x20,0x68,0x28,0x20,0xf0,0x3c,0x28,0x2c,0x24,0x04,0x5c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8537 ⅙ ; -+,0x00,0x00,0x00,0x00,0x48,0x48,0x40,0x50,0x58,0x48,0x3c,0x3c,0x1c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8538 ⅚ ; -+,0x00,0x00,0x00,0x60,0x48,0x68,0x20,0x30,0x3c,0xc8,0x3c,0x3c,0x1c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8539 ⅛ ; -+,0x00,0x00,0x00,0x00,0x48,0x48,0x40,0x50,0x5c,0x4c,0x2c,0x2c,0x0c,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8540 ⅜ ; -+,0x00,0x00,0x00,0x40,0xa8,0x48,0x60,0x30,0x3c,0xcc,0x2c,0x2c,0x0e,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8541 ⅝ ; -+,0x00,0x00,0x00,0x60,0x48,0x68,0x20,0x30,0x3c,0xcc,0x2c,0x2c,0x0e,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8542 ⅞ ; -+,0x00,0x00,0x00,0x60,0x28,0x28,0x20,0x30,0x7c,0x4c,0x2c,0x2c,0x0e,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8543 ⅟ ; -+,0x00,0x00,0x00,0x00,0x48,0x48,0x40,0x50,0x50,0x40,0x20,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8544 Ⅰ ; -+,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8545 Ⅱ ; -+,0x00,0x3c,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8546 Ⅲ ; -+,0x00,0x7e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8547 Ⅳ ; -+,0x00,0x7b,0x52,0x52,0x52,0x4a,0x4a,0x4a,0x4a,0x4c,0x4c,0x4c,0x4c,0x44,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8548 Ⅴ ; -+,0x00,0x63,0x42,0x22,0x22,0x24,0x24,0x24,0x14,0x14,0x14,0x18,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8549 Ⅵ ; -+,0x00,0x6f,0x4a,0x4a,0x4a,0x2a,0x2a,0x2a,0x2a,0x32,0x32,0x32,0x32,0x12,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8550 Ⅶ ; -+,0x00,0xdf,0x4d,0x4d,0x4d,0x55,0x55,0x55,0x55,0x35,0x35,0x35,0x35,0x25,0x27,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8551 Ⅷ ; -+,0x00,0xdf,0x4f,0x4f,0x4f,0x57,0x57,0x57,0x57,0x37,0x37,0x37,0x37,0x27,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8552 Ⅸ ; -+,0x00,0xf3,0x51,0x52,0x52,0x4a,0x4c,0x44,0x4c,0x4c,0x4a,0x4a,0x52,0x51,0xf3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8553 Ⅹ ; -+,0x00,0x63,0x42,0x22,0x24,0x14,0x18,0x08,0x18,0x18,0x14,0x24,0x22,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8554 Ⅺ ; -+,0x00,0xcf,0x45,0x49,0x29,0x31,0x31,0x11,0x31,0x31,0x29,0x29,0x49,0x45,0xcf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8555 Ⅻ ; -+,0x00,0xcf,0x47,0x4b,0x2b,0x33,0x33,0x13,0x33,0x33,0x2b,0x2b,0x4b,0x47,0xcf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8556 Ⅼ ; -+,0x00,0x00,0x00,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8557 Ⅽ ; -+,0x00,0x00,0x00,0x38,0x6c,0x44,0x40,0x40,0xc0,0x40,0x40,0x40,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8558 Ⅾ ; -+,0x00,0x00,0x00,0x70,0x48,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8559 Ⅿ ; -+,0x00,0x00,0x00,0x42,0x66,0x66,0x26,0x26,0x3a,0x3a,0x12,0x1a,0x52,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8560 ⅰ ; -+,0x00,0x08,0x00,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8561 ⅱ ; -+,0x00,0x14,0x00,0x14,0x3c,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8562 ⅲ ; -+,0x00,0x2a,0x00,0x2a,0x7e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8563 ⅳ ; -+,0x00,0x40,0x00,0x5b,0x52,0x52,0x52,0x4a,0x4a,0x4a,0x4c,0x4c,0x4c,0x44,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8564 ⅴ ; -+,0x00,0x00,0x00,0x66,0x22,0x22,0x22,0x24,0x24,0x14,0x14,0x18,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8565 ⅵ ; -+,0x00,0x02,0x00,0x6e,0x4a,0x4a,0x4a,0x2a,0x2a,0x2a,0x32,0x32,0x32,0x12,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8566 ⅶ ; -+,0x00,0x05,0x00,0xdd,0x4f,0x4d,0x4d,0x55,0x55,0x55,0x35,0x35,0x35,0x25,0x27,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8567 ⅷ ; -+,0x00,0x07,0x00,0xdf,0x4f,0x4f,0x4f,0x57,0x57,0x57,0x37,0x37,0x37,0x27,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8568 ⅸ ; -+,0x00,0x40,0x00,0x73,0xd2,0x52,0x52,0x4a,0x4c,0x44,0x4c,0x4a,0x52,0x51,0xf3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8569 ⅹ ; -+,0x00,0x00,0x00,0x66,0x22,0x24,0x14,0x18,0x08,0x18,0x14,0x24,0x22,0x42,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8570 ⅺ ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x54,0x64,0x24,0x24,0x64,0x14,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8571 ⅻ ; -+,0x00,0x00,0x00,0x05,0x01,0x00,0x00,0x55,0x65,0x25,0x25,0x65,0x15,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8572 ⅼ ; -+,0x00,0x00,0x00,0x30,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8573 ⅽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0x20,0x60,0x20,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8574 ⅾ ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x03,0x13,0x23,0x23,0x63,0x23,0x23,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8575 ⅿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x54,0x54,0x54,0x54,0x54,0x56,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8576 ↀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8577 ↁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8578 ↂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8579 Ↄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8580 ↄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8581 ↅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8582 ↆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8583 ↇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8584 ↈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8585 ↉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8586 ↊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8587 ↋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8588 ↌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8589 ↍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8590 ↎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8591 ↏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8592 ← ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0xff,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8593 ↑ ; -+,0x08,0x08,0x18,0x18,0x1c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8594 → ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0xff,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8595 ↓ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1c,0x18,0x18,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8596 ↔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x42,0x7f,0x43,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8597 ↕ ; -+,0x00,0x00,0x00,0x08,0x1e,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x1a,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8598 ↖ ; -+,0x00,0x00,0x70,0x60,0x60,0x50,0x50,0x08,0x08,0x04,0x04,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8599 ↗ ; -+,0x00,0x00,0x07,0x03,0x03,0x05,0x05,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8600 ↘ ; -+,0x00,0x00,0x40,0x20,0x20,0x10,0x10,0x08,0x08,0x05,0x05,0x03,0x03,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8601 ↙ ; -+,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x08,0x48,0x50,0x50,0x60,0x60,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8602 ↚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x40,0x7f,0x48,0x28,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8603 ↛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x02,0x7f,0x0b,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8604 ↜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x43,0x46,0x74,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8605 ↝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x61,0x91,0x17,0x0f,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8606 ↞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x50,0x7f,0x50,0x30,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8607 ↟ ; -+,0x00,0x00,0x00,0x00,0x0c,0x1e,0x21,0x0c,0x1e,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8608 ↠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x0a,0x06,0x7f,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8609 ↡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x1e,0x0c,0x21,0x1e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8610 ↢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x41,0x7f,0x41,0x21,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8611 ↣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x41,0x61,0x7f,0x41,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8612 ↤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x7f,0x40,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8613 ↥ ; -+,0x00,0x00,0x04,0x0e,0x35,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8614 ↦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x41,0x41,0x7f,0x41,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8615 ↧ ; -+,0x00,0x00,0x00,0x3f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8616 ↨ ; -+,0x00,0x00,0x00,0x00,0x1e,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x1e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8617 ↩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x41,0x7f,0x40,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8618 ↪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x7f,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8619 ↫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x43,0x7f,0x46,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8620 ↬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x62,0x62,0x7f,0x23,0x22,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8621 ↭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x4c,0x6d,0x7d,0x52,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8622 ↮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2a,0x42,0x7f,0x4b,0x2a,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8623 ↯ ; -+,0x00,0x00,0x04,0x00,0x08,0x08,0x02,0x1a,0x02,0x04,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8624 ↰ ; -+,0x00,0x00,0x00,0x08,0x10,0x3e,0x11,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8625 ↱ ; -+,0x00,0x00,0x00,0x08,0x04,0x3e,0x22,0x24,0x28,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8626 ↲ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x09,0x11,0x3f,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8627 ↳ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x24,0x26,0x3e,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8628 ↴ ; -+,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8629 ↵ ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x44,0x7c,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8630 ↶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x1b,0x11,0x30,0x70,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8631 ↷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x26,0x62,0x42,0x43,0x43,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8632 ↸ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x60,0x60,0x20,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8633 ↹ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x68,0x78,0x28,0x00,0x10,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8634 ↺ ; -+,0x00,0x00,0x00,0x06,0x26,0x42,0x42,0x42,0x40,0x42,0x42,0x22,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8635 ↻ ; -+,0x00,0x00,0x00,0x20,0x22,0x42,0x42,0x42,0x40,0x42,0x42,0x22,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8636 ↼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8637 ↽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x60,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8638 ↾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8639 ↿ ; -+,0x00,0x00,0x00,0x00,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8640 ⇀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8641 ⇁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8642 ⇂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8643 ⇃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8644 ⇄ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0x7f,0x02,0x02,0x20,0x40,0x7f,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8645 ⇅ ; -+,0x00,0x00,0x00,0x04,0x24,0x74,0x54,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x0e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8646 ⇆ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x7f,0x40,0x20,0x02,0x02,0x7f,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8647 ⇇ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x7f,0x40,0x20,0x20,0x40,0x7f,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8648 ⇈ ; -+,0x00,0x00,0x00,0x04,0x2c,0x7e,0x44,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8649 ⇉ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0x7f,0x02,0x02,0x02,0x02,0x7f,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8650 ⇊ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x54,0x7e,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8651 ⇋ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x60,0x7f,0x00,0x00,0x7f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8652 ⇌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x7f,0x00,0x00,0x7f,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8653 ⇍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x7f,0x48,0x48,0x3f,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8654 ⇎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x2a,0x7e,0x49,0x49,0x3e,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8655 ⇏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0a,0x7e,0x09,0x09,0x7e,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8656 ⇐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x7f,0x40,0x40,0x3f,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8657 ⇑ ; -+,0x00,0x00,0x00,0x20,0x30,0x50,0x58,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8658 ⇒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x7e,0x01,0x01,0x7e,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8659 ⇓ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x58,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8660 ⇔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x22,0x7e,0x41,0x41,0x3e,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8661 ⇕ ; -+,0x00,0x00,0x00,0x20,0x30,0x50,0x58,0x40,0x40,0x40,0x40,0x40,0x40,0x58,0x50,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8662 ⇖ ; -+,0x00,0x00,0x00,0x70,0x60,0x50,0x50,0x68,0x28,0x14,0x14,0x0a,0x0a,0x05,0x05,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8663 ⇗ ; -+,0x00,0x00,0x00,0x07,0x02,0x06,0x05,0x0d,0x0a,0x1a,0x14,0x34,0x28,0x68,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8664 ⇘ ; -+,0x00,0x00,0x00,0x00,0x20,0x10,0x50,0x28,0x28,0x14,0x14,0x0a,0x0a,0x05,0x05,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8665 ⇙ ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x0d,0x0a,0x1a,0x14,0x34,0x68,0x68,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8666 ⇚ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x3f,0x60,0x7f,0x40,0x20,0x3f,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8667 ⇛ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x7e,0x02,0x7f,0x03,0x02,0x7e,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8668 ⇜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x4d,0x6d,0x7e,0x52,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8669 ⇝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x69,0x6d,0x16,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8670 ⇞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8671 ⇟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8672 ⇠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x6b,0x40,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8673 ⇡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8674 ⇢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x57,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8675 ⇣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8676 ⇤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8677 ⇥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8678 ⇦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8679 ⇧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8680 ⇨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8681 ⇩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8682 ⇪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8683 ⇫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8684 ⇬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8685 ⇭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8686 ⇮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8687 ⇯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8688 ⇰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8689 ⇱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8690 ⇲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8691 ⇳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8692 ⇴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8693 ⇵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8694 ⇶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8695 ⇷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8696 ⇸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8697 ⇹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8698 ⇺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8699 ⇻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8700 ⇼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8701 ⇽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8702 ⇾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8703 ⇿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8704 ∀ ; -+,0x00,0x00,0x00,0x08,0x08,0x48,0x18,0x50,0x70,0x10,0x30,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8705 ∁ ; -+,0x30,0x28,0x48,0x4c,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x44,0x48,0x68,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8706 ∂ ; -+,0x00,0x00,0x3c,0x02,0x01,0x01,0x01,0x09,0x33,0x21,0x21,0x63,0x22,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8707 ∃ ; -+,0x00,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x78,0x08,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8708 ∄ ; -+,0x00,0x10,0x10,0x78,0x18,0x18,0x18,0x08,0x78,0x28,0x28,0x28,0x28,0x78,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8709 ∅ ; -+,0x00,0x00,0x00,0x38,0x2c,0x04,0x44,0x00,0x00,0x00,0x04,0x44,0x44,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8710 ∆ ; -+,0x00,0x00,0x00,0x00,0x10,0x30,0x10,0x30,0x10,0x58,0x08,0x48,0x48,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8711 ∇ ; -+,0x00,0x00,0x00,0x44,0x44,0x60,0x68,0x28,0x28,0x28,0x30,0x30,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8712 ∈ ; -+,0x00,0x18,0x20,0x40,0x40,0x40,0x40,0x78,0x40,0x40,0x40,0x40,0x40,0x20,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8713 ∉ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x50,0x50,0x70,0x60,0x60,0x60,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8714 ∊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x10,0x30,0x30,0x3c,0x30,0x10,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8715 ∋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x10,0x00,0x78,0x08,0x10,0x10,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8716 ∌ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x70,0x30,0x20,0x78,0x28,0x30,0x50,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8717 ∍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x06,0x02,0x03,0x1f,0x02,0x06,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8718 ∎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8719 ∏ ; -+,0x00,0x7e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8720 ∐ ; -+,0x00,0x00,0x66,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x64,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8721 ∑ ; -+,0x00,0x7f,0x41,0x21,0x20,0x10,0x10,0x08,0x10,0x10,0x20,0x21,0x41,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8722 − ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8723 ∓ ; -+,0x00,0x00,0x00,0x78,0x00,0x00,0x20,0x20,0x20,0x78,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8724 ∔ ; -+,0x00,0x00,0x00,0x30,0x30,0x00,0x20,0x20,0x20,0x78,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8725 ∕ ; -+,0x00,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8726 ∖ ; -+,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x20,0x00,0x10,0x10,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8727 ∗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x2a,0x08,0x1a,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8728 ∘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x21,0x21,0x21,0x32,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8729 ∙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x3f,0x3f,0x3f,0x3e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8730 √ ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x48,0xd0,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8731 ∛ ; -+,0x28,0x28,0x18,0x18,0x68,0x00,0x50,0x70,0x30,0x30,0x30,0x30,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8732 ∜ ; -+,0x38,0x38,0x78,0x78,0x38,0x00,0x50,0x70,0x30,0x30,0x30,0x30,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8733 ∝ ; -+,0x00,0x00,0x00,0x00,0x77,0x58,0x48,0x88,0x88,0x48,0x58,0x77,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8734 ∞ ; -+,0x00,0x00,0x00,0x00,0x76,0x59,0x89,0x89,0x89,0x59,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8735 ∟ ; -+,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8736 ∠ ; -+,0x00,0x01,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8737 ∡ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x04,0x04,0x08,0x0c,0x14,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8738 ∢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x0c,0x12,0x12,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8739 ∣ ; -+,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8740 ∤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8741 ∥ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x18,0x18,0x18,0x18,0x18,0x28,0x28,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8742 ∦ ; -+,0x00,0x00,0x00,0x28,0x28,0x28,0x2c,0x28,0x38,0x28,0x68,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8743 ∧ ; -+,0x00,0x08,0x18,0x18,0x14,0x14,0x24,0x24,0x22,0x22,0x42,0x42,0x42,0x41,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8744 ∨ ; -+,0x00,0x41,0x41,0x42,0x42,0x42,0x22,0x22,0x24,0x24,0x14,0x14,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8745 ∩ ; -+,0x00,0x1c,0x24,0x22,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8746 ∪ ; -+,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x22,0x24,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8747 ∫ ; -+,0x00,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8748 ∬ ; -+,0x1b,0x35,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8749 ∭ ; -+,0x1d,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x6e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8750 ∮ ; -+,0x04,0x0a,0x08,0x08,0x08,0x18,0x2c,0x2c,0x34,0x34,0x18,0x10,0x10,0x10,0x50,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8751 ∯ ; -+,0x1b,0x35,0x24,0x24,0x34,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8752 ∰ ; -+,0x00,0x00,0x38,0x10,0x30,0x70,0x78,0x30,0x30,0x30,0x70,0x70,0x30,0x30,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8753 ∱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8754 ∲ ; -+,0x00,0x00,0x10,0x00,0x20,0x20,0x30,0x20,0x28,0x20,0x30,0x20,0x20,0x20,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8755 ∳ ; -+,0x00,0x00,0x10,0x00,0x20,0x20,0x30,0x20,0x28,0x20,0x30,0x20,0x20,0x20,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8756 ∴ ; -+,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8757 ∵ ; -+,0x00,0x00,0x66,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8758 ∶ ; -+,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8759 ∷ ; -+,0x00,0x00,0x00,0x26,0x26,0x00,0x00,0x00,0x00,0x00,0x26,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8760 ∸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8761 ∹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x00,0x78,0x00,0x00,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8762 ∺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xc8,0xc8,0x00,0x78,0x00,0x00,0xc8,0xc8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8763 ∻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x60,0x58,0x00,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8764 ∼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8765 ∽ ; -+,0x00,0x00,0x00,0x00,0x66,0x49,0x49,0x89,0x89,0x49,0x51,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8766 ∾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8767 ∿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8768 ≀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x10,0x10,0x20,0x20,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8769 ≁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x70,0x38,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8770 ≂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x20,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8771 ≃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x78,0x10,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8772 ≄ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x70,0x30,0x20,0x78,0x00,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8773 ≅ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x58,0x00,0x00,0x78,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8774 ≆ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x78,0x18,0x00,0x78,0x10,0x30,0x78,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8775 ≇ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x70,0x58,0x10,0x78,0x20,0x20,0x78,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8776 ≈ ; -+,0x00,0x00,0x00,0x00,0x00,0x61,0x5a,0x0e,0x61,0x5a,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8777 ≉ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x60,0x58,0x10,0x60,0x78,0x18,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8778 ≊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x58,0x00,0x60,0x18,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8779 ≋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x58,0x00,0x60,0x18,0x20,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8780 ≌ ; -+,0x00,0x00,0x26,0x4a,0x49,0x49,0x51,0x52,0x36,0x00,0x7f,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8781 ≍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x78,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8782 ≎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x78,0x00,0x00,0x78,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8783 ≏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x78,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8784 ≐ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x78,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8785 ≑ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x78,0x00,0x00,0x78,0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8786 ≒ ; -+,0x00,0x00,0x20,0x60,0x20,0x00,0x7f,0x00,0x00,0x7f,0x00,0x02,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8787 ≓ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x78,0x00,0x00,0x78,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8788 ≔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x3c,0x00,0x00,0x3e,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8789 ≕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x78,0x00,0x00,0x78,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8790 ≖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x30,0x30,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8791 ≗ ; -+,0x00,0x00,0x00,0x20,0x30,0x30,0x00,0x00,0x78,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8792 ≘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8793 ≙ ; -+,0x00,0x00,0x00,0x00,0x30,0x50,0x00,0x00,0x78,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8794 ≚ ; -+,0x00,0x00,0x00,0x00,0x50,0x30,0x00,0x00,0x78,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8795 ≛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8796 ≜ ; -+,0x00,0x00,0x00,0x20,0x10,0x30,0x30,0x00,0x78,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8797 ≝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8798 ≞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8799 ≟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8800 ≠ ; -+,0x02,0x04,0x04,0x04,0x04,0x7f,0x08,0x08,0x10,0x7f,0x10,0x10,0x20,0x20,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8801 ≡ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x7f,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8802 ≢ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x78,0x10,0x78,0x20,0x20,0x78,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8803 ≣ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x78,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8804 ≤ ; -+,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x40,0xa0,0x50,0x28,0x14,0x0a,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8805 ≥ ; -+,0x60,0x30,0x18,0x0c,0x06,0x03,0x01,0x03,0x07,0x0f,0x1e,0x3c,0x78,0x30,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8806 ≦ ; -+,0x00,0x00,0x00,0x06,0x0c,0x30,0x60,0x30,0x0c,0x06,0x00,0x7e,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8807 ≧ ; -+,0x00,0x00,0x00,0x60,0x38,0x0c,0x02,0x0c,0x18,0x60,0x00,0x7e,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8808 ≨ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0x40,0x60,0x30,0x18,0x00,0x18,0x78,0x20,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8809 ≩ ; -+,0x00,0x00,0x00,0x00,0x40,0x20,0x10,0x08,0x18,0x30,0x60,0x40,0x18,0x78,0x20,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8810 ≪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x1e,0x2c,0x58,0x68,0x34,0x1a,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8811 ≫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x68,0x14,0x0a,0x1a,0x34,0x68,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8812 ≬ ; -+,0x00,0x00,0x00,0x00,0x08,0x18,0x14,0x24,0x24,0x26,0x24,0x24,0x24,0x14,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8813 ≭ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x48,0x78,0x10,0x30,0x78,0x00,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8814 ≮ ; -+,0x00,0x12,0x14,0x18,0x10,0x30,0x50,0x90,0x50,0x30,0x10,0x18,0x14,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8815 ≯ ; -+,0x00,0x64,0x34,0x1c,0x0c,0x06,0x07,0x05,0x07,0x06,0x0c,0x1c,0x34,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8816 ≰ ; -+,0x00,0x00,0x00,0x08,0x08,0x18,0x18,0x30,0x50,0x70,0x30,0x38,0x08,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8817 ≱ ; -+,0x00,0x00,0x00,0x08,0x08,0x50,0x30,0x10,0x18,0x18,0x30,0x60,0x40,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8818 ≲ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0x40,0x60,0x30,0x18,0x08,0x60,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8819 ≳ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x10,0x08,0x18,0x30,0x60,0x40,0x60,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8820 ≴ ; -+,0x00,0x00,0x00,0x08,0x08,0x18,0x18,0x30,0x50,0x70,0x30,0x38,0x08,0x60,0x78,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8821 ≵ ; -+,0x00,0x00,0x00,0x08,0x08,0x50,0x30,0x10,0x18,0x18,0x30,0x60,0x40,0x60,0x78,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8822 ≶ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x30,0x40,0x20,0x58,0x20,0x18,0x18,0x30,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8823 ≷ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x30,0x08,0x10,0x68,0x50,0x60,0x60,0x30,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8824 ≸ ; -+,0x00,0x00,0x00,0x08,0x08,0x18,0x30,0x40,0x30,0x58,0x30,0x38,0x18,0x30,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8825 ≹ ; -+,0x00,0x00,0x00,0x08,0x08,0x70,0x30,0x18,0x10,0x78,0x70,0x60,0x60,0x30,0x28,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8826 ≺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x60,0x20,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8827 ≻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x20,0x18,0x10,0x20,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8828 ≼ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x60,0x30,0x18,0x08,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8829 ≽ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x20,0x18,0x10,0x20,0x40,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8830 ≾ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x60,0x30,0x18,0x08,0x00,0x60,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8831 ≿ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x20,0x18,0x10,0x20,0x40,0x00,0x60,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8832 ⊀ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x18,0x18,0x10,0x70,0x30,0x30,0x08,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8833 ⊁ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x50,0x40,0x30,0x18,0x30,0x20,0x40,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8834 ⊂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x40,0x40,0x40,0x40,0x40,0x40,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8835 ⊃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x08,0x00,0x08,0x08,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8836 ⊄ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x38,0x40,0x50,0x50,0x60,0x60,0x60,0x38,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8837 ⊅ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x70,0x08,0x18,0x10,0x28,0x28,0x08,0x70,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8838 ⊆ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x40,0x40,0x40,0x40,0x40,0x40,0x38,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8839 ⊇ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x00,0x08,0x08,0x08,0x70,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8840 ⊈ ; -+,0x00,0x00,0x00,0x08,0x08,0x38,0x50,0x40,0x50,0x50,0x60,0x60,0x38,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8841 ⊉ ; -+,0x00,0x00,0x00,0x08,0x08,0x78,0x18,0x08,0x10,0x18,0x28,0x28,0x70,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8842 ⊊ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x40,0x40,0x40,0x40,0x40,0x40,0x38,0x00,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8843 ⊋ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x00,0x08,0x08,0x08,0x70,0x00,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8844 ⊌ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x50,0x60,0x70,0x60,0x50,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8845 ⊍ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x70,0x70,0x70,0x40,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8846 ⊎ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x70,0x50,0x50,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8847 ⊏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8848 ⊐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8849 ⊑ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x78,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8850 ⊒ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8851 ⊓ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8852 ⊔ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8853 ⊕ ; -+,0x00,0x00,0x00,0x18,0x3c,0x2c,0x2a,0x3e,0x2a,0x2c,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8854 ⊖ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0x84,0xc4,0x84,0x04,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8855 ⊗ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0xb4,0xb4,0xb4,0x34,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8856 ⊘ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0x94,0x94,0xa4,0x24,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8857 ⊙ ; -+,0x00,0x00,0x18,0x24,0x42,0x42,0x42,0x5a,0x5a,0x42,0x42,0x42,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8858 ⊚ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0xb4,0x84,0xa4,0x34,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8859 ⊛ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x58,0xec,0x94,0xb4,0x0c,0x58,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8860 ⊜ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0x84,0x84,0xb4,0x04,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8861 ⊝ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0x84,0x84,0x84,0x04,0x48,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8862 ⊞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x58,0x58,0x78,0x78,0x58,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8863 ⊟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x48,0x78,0x48,0x48,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8864 ⊠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x78,0x78,0x78,0x78,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8865 ⊡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x48,0x78,0x58,0x48,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8866 ⊢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x78,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8867 ⊣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x78,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8868 ⊤ ; -+,0x00,0x00,0x00,0x00,0x00,0x7c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8869 ⊥ ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8870 ⊦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8871 ⊧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8872 ⊨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8873 ⊩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x60,0x78,0x60,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8874 ⊪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x70,0x7c,0x70,0x70,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8875 ⊫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x60,0x78,0x60,0x60,0x78,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8876 ⊬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x24,0x28,0x3e,0x30,0x20,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8877 ⊭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x24,0x3e,0x28,0x30,0x3e,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8878 ⊮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x70,0x70,0x78,0x60,0x60,0x60,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8879 ⊯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x70,0x78,0x60,0x60,0x78,0x60,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8880 ⊰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8881 ⊱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8882 ⊲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x28,0x48,0x68,0x38,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8883 ⊳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x50,0x48,0x58,0x70,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8884 ⊴ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x28,0x48,0x68,0x38,0x18,0x08,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8885 ⊵ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x50,0x48,0x58,0x70,0x60,0x40,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8886 ⊶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x50,0x5f,0x51,0x50,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8887 ⊷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x70,0x7f,0x71,0x70,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8888 ⊸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x05,0x7c,0x04,0x05,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8889 ⊹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8890 ⊺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8891 ⊻ ; -+,0x00,0x00,0x00,0x48,0x48,0x48,0x28,0x30,0x10,0x30,0x10,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8892 ⊼ ; -+,0x00,0x00,0x00,0x78,0x00,0x00,0x30,0x20,0x10,0x20,0x28,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8893 ⊽ ; -+,0x00,0x00,0x00,0x78,0x00,0x48,0x48,0x48,0x08,0x20,0x30,0x30,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8894 ⊾ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0xc0,0xa0,0xa0,0x80,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8895 ⊿ ; -+,0x00,0x01,0x03,0x03,0x05,0x05,0x09,0x09,0x11,0x11,0x21,0x21,0x41,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8896 ⋀ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x28,0x28,0x28,0x44,0x44,0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8897 ⋁ ; -+,0x00,0x00,0x00,0x00,0x44,0x04,0x44,0x08,0x28,0x08,0x28,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8898 ⋂ ; -+,0x00,0x00,0x00,0x30,0x28,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8899 ⋃ ; -+,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x28,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8900 ⋄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x12,0x21,0x21,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8901 ⋅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8902 ⋆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x1e,0x0c,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8903 ⋇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x58,0x48,0x30,0x78,0x30,0x30,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8904 ⋈ ; -+,0x00,0x00,0x00,0x00,0x44,0x4c,0x6c,0x74,0x54,0x74,0x6c,0x4c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8905 ⋉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8906 ⋊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8907 ⋋ ; -+,0x00,0x00,0x00,0x40,0x40,0x20,0x20,0x10,0x10,0x18,0x28,0x24,0x44,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8908 ⋌ ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x08,0x08,0x10,0x18,0x28,0x24,0x44,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8909 ⋍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x38,0x20,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8910 ⋎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x08,0x30,0x10,0x30,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8911 ⋏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x30,0x10,0x30,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8912 ⋐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x40,0x78,0x60,0x60,0x78,0x40,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8913 ⋑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x78,0x10,0x18,0x78,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8914 ⋒ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x78,0x60,0x68,0x68,0x68,0x68,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8915 ⋓ ; -+,0x00,0x00,0x00,0x00,0x00,0x68,0x68,0x68,0x68,0x68,0x70,0x78,0x48,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8916 ⋔ ; -+,0x00,0x00,0x00,0x10,0x10,0x30,0x58,0x58,0x50,0x50,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8917 ⋕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x78,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8918 ⋖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x20,0x48,0x68,0x30,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8919 ⋗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x10,0x68,0x18,0x30,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8920 ⋘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x16,0x2d,0x5a,0x6a,0x35,0x1a,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8921 ⋙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x56,0x6b,0x15,0x0a,0x1a,0x35,0x6a,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8922 ⋚ ; -+,0x00,0x00,0x00,0x18,0x20,0x40,0x30,0x18,0x00,0x78,0x00,0x40,0x60,0x10,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8923 ⋛ ; -+,0x00,0x00,0x00,0x60,0x10,0x08,0x10,0x60,0x00,0x78,0x00,0x08,0x18,0x20,0x60,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8924 ⋜ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x28,0x58,0x30,0x60,0x40,0x30,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8925 ⋝ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x50,0x68,0x30,0x18,0x08,0x10,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8926 ⋞ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x28,0x10,0x20,0x60,0x10,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8927 ⋟ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x60,0x58,0x20,0x10,0x18,0x20,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8928 ⋠ ; -+,0x00,0x00,0x00,0x00,0x08,0x18,0x18,0x10,0x70,0x30,0x78,0x38,0x10,0x28,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8929 ⋡ ; -+,0x00,0x00,0x00,0x00,0x08,0x50,0x50,0x30,0x18,0x30,0x68,0x70,0x20,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8930 ⋢ ; -+,0x00,0x00,0x00,0x08,0x08,0x78,0x50,0x40,0x50,0x50,0x60,0x60,0x78,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8931 ⋣ ; -+,0x00,0x00,0x00,0x08,0x08,0x78,0x10,0x00,0x10,0x10,0x20,0x20,0x78,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8932 ⋤ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x78,0x00,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8933 ⋥ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8934 ⋦ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0x40,0x60,0x30,0x18,0x08,0x60,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8935 ⋧ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x10,0x08,0x18,0x30,0x60,0x40,0x60,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8936 ⋨ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x60,0x30,0x18,0x08,0x00,0x60,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8937 ⋩ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x20,0x18,0x10,0x20,0x40,0x00,0x60,0x78,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8938 ⋪ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x18,0x18,0x38,0x58,0x68,0x38,0x18,0x28,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8939 ⋫ ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x50,0x60,0x50,0x58,0x78,0x70,0x60,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8940 ⋬ ; -+,0x00,0x00,0x00,0x08,0x08,0x18,0x18,0x38,0x58,0x78,0x38,0x38,0x08,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8941 ⋭ ; -+,0x00,0x00,0x00,0x08,0x08,0x50,0x70,0x50,0x58,0x58,0x70,0x60,0x40,0x20,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8942 ⋮ ; -+,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8943 ⋯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8944 ⋰ ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8945 ⋱ ; -+,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8946 ⋲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8947 ⋳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8948 ⋴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8949 ⋵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8950 ⋶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8951 ⋷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8952 ⋸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8953 ⋹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8954 ⋺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8955 ⋻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8956 ⋼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8957 ⋽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8958 ⋾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8959 ⋿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8960 ⌀ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x1c,0x28,0x0c,0x14,0x14,0x24,0x28,0x58,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8961 ⌁ ; -+,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x20,0x3e,0x02,0x02,0x04,0x0c,0x0c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8962 ⌂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8963 ⌃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8964 ⌄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8965 ⌅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8966 ⌆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8967 ⌇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8968 ⌈ ; -+,0x00,0x00,0x00,0x3f,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8969 ⌉ ; -+,0x00,0x00,0x00,0x3f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8970 ⌊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8971 ⌋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8972 ⌌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8973 ⌍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8974 ⌎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8975 ⌏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8976 ⌐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xc0,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8977 ⌑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8978 ⌒ ; -+,0x00,0x00,0x00,0x18,0x24,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8979 ⌓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8980 ⌔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8981 ⌕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x40,0x40,0x40,0x48,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8982 ⌖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8983 ⌗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8984 ⌘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8985 ⌙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8986 ⌚ ; -+,0x00,0x00,0x00,0x10,0x2c,0x54,0x14,0x52,0x5a,0x42,0x40,0x44,0x24,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8987 ⌛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8988 ⌜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8989 ⌝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8990 ⌞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8991 ⌟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8992 ⌠ ; -+,0x00,0x04,0x0c,0x0c,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8993 ⌡ ; -+,0x00,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x03,0x02,0x02,0x02,0x02,0x00,0x24,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8994 ⌢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8995 ⌣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8996 ⌤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8997 ⌥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8998 ⌦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 8999 ⌧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9000 ⌨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9001 〈 ; -+,0x00,0x00,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0x20,0x20,0x20,0x10,0x10,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9002 〉 ; -+,0x00,0x00,0x00,0x20,0x20,0x10,0x10,0x08,0x08,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9003 ⌫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9004 ⌬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9005 ⌭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9006 ⌮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9007 ⌯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9008 ⌰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9009 ⌱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9010 ⌲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9011 ⌳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9012 ⌴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9013 ⌵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9014 ⌶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9015 ⌷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9016 ⌸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9017 ⌹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9018 ⌺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9019 ⌻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9020 ⌼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9021 ⌽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9022 ⌾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9023 ⌿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9024 ⍀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9025 ⍁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9026 ⍂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9027 ⍃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9028 ⍄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9029 ⍅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9030 ⍆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9031 ⍇ ; -+,0x00,0x00,0x00,0x7c,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9032 ⍈ ; -+,0x00,0x00,0x00,0x7c,0x42,0x42,0x42,0x42,0x42,0x46,0x46,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9033 ⍉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9034 ⍊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9035 ⍋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9036 ⍌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9037 ⍍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9038 ⍎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9039 ⍏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9040 ⍐ ; -+,0x00,0x00,0x00,0x7c,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9041 ⍑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9042 ⍒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9043 ⍓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9044 ⍔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9045 ⍕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9046 ⍖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9047 ⍗ ; -+,0x00,0x00,0x00,0x7c,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9048 ⍘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9049 ⍙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9050 ⍚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9051 ⍛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9052 ⍜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9053 ⍝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9054 ⍞ ; -+,0x00,0x00,0x00,0x7c,0x52,0x52,0x52,0x52,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9055 ⍟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9056 ⍠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9057 ⍡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9058 ⍢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9059 ⍣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9060 ⍤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9061 ⍥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9062 ⍦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9063 ⍧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9064 ⍨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9065 ⍩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9066 ⍪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9067 ⍫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9068 ⍬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9069 ⍭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9070 ⍮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9071 ⍯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9072 ⍰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9073 ⍱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9074 ⍲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9075 ⍳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9076 ⍴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9077 ⍵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9078 ⍶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9079 ⍷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9080 ⍸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9081 ⍹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9082 ⍺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9083 ⍻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9084 ⍼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9085 ⍽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9086 ⍾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9087 ⍿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9088 ⎀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9089 ⎁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9090 ⎂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9091 ⎃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9092 ⎄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9093 ⎅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9094 ⎆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9095 ⎇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9096 ⎈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9097 ⎉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9098 ⎊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9099 ⎋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9100 ⎌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9101 ⎍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9102 ⎎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9103 ⎏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9104 ⎐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9105 ⎑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9106 ⎒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9107 ⎓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9108 ⎔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9109 ⎕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9110 ⎖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9111 ⎗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9112 ⎘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9113 ⎙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9114 ⎚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9115 ⎛ ; -+,0x00,0x00,0x00,0x04,0x08,0x10,0x10,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9116 ⎜ ; -+,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9117 ⎝ ; -+,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x30,0x10,0x10,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9118 ⎞ ; -+,0x00,0x00,0x20,0x10,0x10,0x08,0x08,0x0c,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9119 ⎟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9120 ⎠ ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x08,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9121 ⎡ ; -+,0x00,0x00,0x00,0x10,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9122 ⎢ ; -+,0x00,0x10,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9123 ⎣ ; -+,0x00,0x00,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9124 ⎤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9125 ⎥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9126 ⎦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9127 ⎧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9128 ⎨ ; -+,0x00,0x08,0x0c,0x08,0x08,0x18,0x30,0x20,0x18,0x08,0x08,0x0c,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9129 ⎩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9130 ⎪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9131 ⎫ ; -+,0x00,0x20,0x10,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9132 ⎬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9133 ⎭ ; -+,0x00,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9134 ⎮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9135 ⎯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9136 ⎰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9137 ⎱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9138 ⎲ ; -+,0x00,0x00,0xc8,0x78,0x28,0x48,0x60,0x20,0x20,0x30,0x30,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9139 ⎳ ; -+,0x00,0x08,0x18,0x18,0x10,0x10,0x10,0x30,0x30,0x20,0x20,0x20,0x40,0x68,0x68,0xc8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9140 ⎴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9141 ⎵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9142 ⎶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9143 ⎷ ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x28,0x28,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9144 ⎸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9145 ⎹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9146 ⎺ ; -+,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9147 ⎻ ; -+,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9148 ⎼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9149 ⎽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9150 ⎾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9151 ⎿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9152 ⏀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9153 ⏁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9154 ⏂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9155 ⏃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9156 ⏄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9157 ⏅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9158 ⏆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9159 ⏇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9160 ⏈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9161 ⏉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9162 ⏊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9163 ⏋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9164 ⏌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9165 ⏍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9166 ⏎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9167 ⏏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9168 ⏐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9169 ⏑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9170 ⏒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9171 ⏓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9172 ⏔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9173 ⏕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9174 ⏖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9175 ⏗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9176 ⏘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9177 ⏙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9178 ⏚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9179 ⏛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9180 ⏜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9181 ⏝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9182 ⏞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9183 ⏟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9184 ⏠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9185 ⏡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9186 ⏢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9187 ⏣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9188 ⏤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9189 ⏥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9190 ⏦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9191 ⏧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9192 ⏨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9193 ⏩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9194 ⏪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9195 ⏫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9196 ⏬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9197 ⏭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9198 ⏮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9199 ⏯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9200 ⏰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9201 ⏱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9202 ⏲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9203 ⏳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9204 ⏴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9205 ⏵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9206 ⏶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9207 ⏷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9208 ⏸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9209 ⏹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9210 ⏺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9211 ⏻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9212 ⏼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9213 ⏽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9214 ⏾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9215 ⏿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9216 ␀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9217 ␁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9218 ␂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9219 ␃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9220 ␄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9221 ␅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9222 ␆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9223 ␇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9224 ␈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9225 ␉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9226 ␊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9227 ␋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9228 ␌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9229 ␍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9230 ␎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9231 ␏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9232 ␐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9233 ␑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9234 ␒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9235 ␓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9236 ␔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9237 ␕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9238 ␖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9239 ␗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9240 ␘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9241 ␙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9242 ␚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9243 ␛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9244 ␜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9245 ␝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9246 ␞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9247 ␟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9248 ␠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9249 ␡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9250 ␢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9251 ␣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9252 ␤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9253 ␥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9254 ␦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9255 ␧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9256 ␨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9257 ␩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9258 ␪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9259 ␫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9260 ␬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9261 ␭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9262 ␮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9263 ␯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9264 ␰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9265 ␱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9266 ␲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9267 ␳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9268 ␴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9269 ␵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9270 ␶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9271 ␷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9272 ␸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9273 ␹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9274 ␺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9275 ␻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9276 ␼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9277 ␽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9278 ␾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9279 ␿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9280 ⑀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9281 ⑁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9282 ⑂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9283 ⑃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9284 ⑄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9285 ⑅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9286 ⑆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9287 ⑇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9288 ⑈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9289 ⑉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9290 ⑊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9291 ⑋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9292 ⑌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9293 ⑍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9294 ⑎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9295 ⑏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9296 ⑐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9297 ⑑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9298 ⑒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9299 ⑓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9300 ⑔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9301 ⑕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9302 ⑖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9303 ⑗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9304 ⑘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9305 ⑙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9306 ⑚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9307 ⑛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9308 ⑜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9309 ⑝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9310 ⑞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9311 ⑟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9312 ① ; -+,0x1c,0x26,0x42,0x49,0x49,0x89,0x89,0x89,0x89,0x89,0x49,0x49,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9313 ② ; -+,0x1c,0x26,0x42,0x5d,0x55,0x85,0x85,0x89,0x91,0x91,0x55,0x5d,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9314 ③ ; -+,0x1c,0x26,0x42,0x5d,0x55,0x85,0x8d,0x99,0x8d,0x85,0x55,0x5d,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9315 ④ ; -+,0x1c,0x26,0x42,0x59,0x59,0x99,0x99,0xa9,0xa9,0xbd,0x49,0x49,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9316 ⑤ ; -+,0x1c,0x26,0x42,0x5d,0x51,0x91,0x91,0x9d,0x85,0x85,0x55,0x5d,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9317 ⑥ ; -+,0x1c,0x26,0x42,0x5d,0x55,0x91,0x91,0x9d,0x95,0x95,0x55,0x5d,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9318 ⑦ ; -+,0x1c,0x26,0x42,0x5d,0x55,0x85,0x89,0x89,0x89,0x89,0x49,0x49,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9319 ⑧ ; -+,0x1c,0x26,0x42,0x5d,0x55,0x95,0x95,0x99,0x95,0x95,0x55,0x5d,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9320 ⑨ ; -+,0x1c,0x26,0x42,0x5d,0x55,0x95,0x95,0x9d,0x85,0x85,0x55,0x5d,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9321 ⑩ ; -+,0x1c,0x26,0x42,0x7d,0x75,0xb5,0xb5,0xb5,0xb5,0xb5,0x75,0x7d,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9322 ⑪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9323 ⑫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9324 ⑬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9325 ⑭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9326 ⑮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9327 ⑯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9328 ⑰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9329 ⑱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9330 ⑲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9331 ⑳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9332 ⑴ ; -+,0x00,0x41,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9333 ⑵ ; -+,0x00,0x41,0x99,0xa5,0xa5,0x85,0x85,0x85,0x89,0x99,0x91,0xa5,0xa5,0xbd,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9334 ⑶ ; -+,0x00,0x41,0x99,0xa5,0xa5,0x85,0x89,0x99,0x89,0x85,0x85,0xa5,0xa5,0x99,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9335 ⑷ ; -+,0x00,0x49,0x99,0x99,0x99,0x99,0x99,0xa9,0xa9,0xbd,0x89,0x89,0x89,0x89,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9336 ⑸ ; -+,0x00,0x41,0xbd,0xa1,0xa1,0xa1,0xb9,0xb5,0xa5,0x85,0x85,0xa5,0xa5,0x99,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9337 ⑹ ; -+,0x00,0x41,0x99,0xa5,0xa5,0xa1,0xa1,0xb9,0xb5,0xa5,0xa5,0xa5,0xa5,0x99,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9338 ⑺ ; -+,0x00,0x41,0xbd,0xa5,0xa5,0x85,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x89,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9339 ⑻ ; -+,0x00,0x41,0x99,0xa5,0xa5,0xa5,0xa5,0x99,0xa5,0xa5,0xa5,0xa5,0xa5,0x99,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9340 ⑼ ; -+,0x00,0x41,0x99,0xa5,0xa5,0xa5,0xa5,0xad,0x9d,0x85,0x85,0xa5,0xa5,0x99,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9341 ⑽ ; -+,0x00,0x41,0xad,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xab,0xad,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9342 ⑾ ; -+,0x00,0x41,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9343 ⑿ ; -+,0x00,0x41,0xad,0xb3,0xb3,0xa3,0xa3,0xa5,0xad,0xa9,0xb1,0xb3,0xb3,0xbf,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9344 ⒀ ; -+,0x00,0x41,0xad,0xb3,0xb3,0xa3,0xa5,0xad,0xa5,0xa3,0xa3,0xb3,0xb3,0xad,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9345 ⒁ ; -+,0x00,0x41,0xa5,0xad,0xad,0xad,0xad,0xad,0xb5,0xb5,0xbf,0xa5,0xa5,0xa5,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9346 ⒂ ; -+,0x00,0x41,0xbf,0xb1,0xb1,0xb1,0xbd,0xbb,0xb3,0xa3,0xa3,0xb3,0xb3,0xad,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9347 ⒃ ; -+,0x00,0x41,0xad,0xb3,0xb3,0xb1,0xb1,0xbd,0xbb,0xb3,0xb3,0xb3,0xb3,0xad,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9348 ⒄ ; -+,0x00,0x41,0xbf,0xb3,0xb3,0xa5,0xa5,0xa5,0xa5,0xa9,0xa9,0xa9,0xa9,0xa9,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9349 ⒅ ; -+,0x00,0x41,0xad,0xb3,0xb3,0xb3,0xb3,0xad,0xb3,0xb3,0xb3,0xb3,0xb3,0xad,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9350 ⒆ ; -+,0x00,0x41,0xad,0xb3,0xb3,0xb3,0xb3,0xb7,0xaf,0xa3,0xa3,0xb3,0xb3,0xad,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9351 ⒇ ; -+,0x00,0x41,0xb7,0xdb,0xdb,0x9b,0x9b,0x9b,0xab,0xab,0xcb,0xdb,0xdb,0xf7,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9352 ⒈ ; -+,0x00,0x10,0x10,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9353 ⒉ ; -+,0x00,0x38,0x28,0x28,0x08,0x08,0x08,0x08,0x10,0x20,0x20,0x20,0x28,0x28,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9354 ⒊ ; -+,0x00,0x38,0x28,0x28,0x08,0x08,0x08,0x10,0x08,0x08,0x08,0x28,0x28,0x28,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9355 ⒋ ; -+,0x00,0x18,0x18,0x18,0x18,0x28,0x28,0x28,0x28,0x28,0x3c,0x08,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9356 ⒌ ; -+,0x00,0x38,0x20,0x20,0x20,0x20,0x20,0x38,0x28,0x28,0x08,0x08,0x28,0x28,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9357 ⒍ ; -+,0x00,0x38,0x28,0x28,0x28,0x20,0x20,0x38,0x28,0x28,0x28,0x28,0x28,0x28,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9358 ⒎ ; -+,0x00,0x3c,0x24,0x24,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9359 ⒏ ; -+,0x00,0x38,0x28,0x28,0x28,0x28,0x28,0x10,0x28,0x28,0x28,0x28,0x28,0x28,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9360 ⒐ ; -+,0x00,0x38,0x28,0x28,0x28,0x28,0x28,0x28,0x38,0x08,0x08,0x28,0x28,0x28,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9361 ⒑ ; -+,0x00,0x5c,0x54,0xd4,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9362 ⒒ ; -+,0x00,0x48,0x48,0xd8,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9363 ⒓ ; -+,0x00,0x5c,0x54,0xd4,0x44,0x44,0x44,0x44,0x48,0x50,0x50,0x50,0x54,0x54,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9364 ⒔ ; -+,0x00,0x5c,0x54,0xd4,0x44,0x44,0x44,0x48,0x44,0x44,0x44,0x54,0x54,0x54,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9365 ⒕ ; -+,0x00,0x4c,0x4c,0xcc,0x4c,0x54,0x54,0x54,0x54,0x54,0x5e,0x44,0x44,0x44,0x46,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9366 ⒖ ; -+,0x00,0x5c,0x50,0xd0,0x50,0x50,0x50,0x5c,0x54,0x54,0x44,0x44,0x54,0x54,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9367 ⒗ ; -+,0x00,0x5c,0x54,0xd4,0x54,0x50,0x50,0x5c,0x54,0x54,0x54,0x54,0x54,0x54,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9368 ⒘ ; -+,0x00,0x5e,0x52,0xd2,0x44,0x44,0x44,0x44,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9369 ⒙ ; -+,0x00,0x5c,0x54,0xd4,0x54,0x54,0x54,0x48,0x54,0x54,0x54,0x54,0x54,0x54,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9370 ⒚ ; -+,0x00,0x5c,0x54,0xd4,0x54,0x54,0x54,0x54,0x5c,0x44,0x44,0x54,0x54,0x54,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9371 ⒛ ; -+,0x00,0x6c,0x5a,0x5a,0x1a,0x1a,0x1a,0x2a,0x4a,0x4a,0x4a,0x4a,0x5a,0x5a,0x7d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9372 ⒜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9373 ⒝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9374 ⒞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9375 ⒟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9376 ⒠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9377 ⒡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9378 ⒢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9379 ⒣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9380 ⒤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9381 ⒥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9382 ⒦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9383 ⒧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9384 ⒨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9385 ⒩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9386 ⒪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9387 ⒫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9388 ⒬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9389 ⒭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9390 ⒮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9391 ⒯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9392 ⒰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9393 ⒱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9394 ⒲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9395 ⒳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9396 ⒴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9397 ⒵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9398 Ⓐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9399 Ⓑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9400 Ⓒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9401 Ⓓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9402 Ⓔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9403 Ⓕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9404 Ⓖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9405 Ⓗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9406 Ⓘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9407 Ⓙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9408 Ⓚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9409 Ⓛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9410 Ⓜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9411 Ⓝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9412 Ⓞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9413 Ⓟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9414 Ⓠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9415 Ⓡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9416 Ⓢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9417 Ⓣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9418 Ⓤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9419 Ⓥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9420 Ⓦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9421 Ⓧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9422 Ⓨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9423 Ⓩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9424 ⓐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9425 ⓑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9426 ⓒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9427 ⓓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9428 ⓔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9429 ⓕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9430 ⓖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9431 ⓗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9432 ⓘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9433 ⓙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9434 ⓚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9435 ⓛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9436 ⓜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9437 ⓝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9438 ⓞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9439 ⓟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9440 ⓠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9441 ⓡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9442 ⓢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9443 ⓣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9444 ⓤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9445 ⓥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9446 ⓦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9447 ⓧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9448 ⓨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9449 ⓩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9450 ⓪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9451 ⓫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9452 ⓬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9453 ⓭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9454 ⓮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9455 ⓯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9456 ⓰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9457 ⓱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9458 ⓲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9459 ⓳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9460 ⓴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9461 ⓵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9462 ⓶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9463 ⓷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9464 ⓸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9465 ⓹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9466 ⓺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9467 ⓻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9468 ⓼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9469 ⓽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9470 ⓾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9471 ⓿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9472 ─ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9473 ━ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9474 │ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9475 ┃ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9476 ┄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9477 ┅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdb,0xdb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9478 ┆ ; -+,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9479 ┇ ; -+,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9480 ┈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9481 ┉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9482 ┊ ; -+,0x08,0x08,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9483 ┋ ; -+,0x08,0x08,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9484 ┌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9485 ┍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9486 ┎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9487 ┏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9488 ┐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9489 ┑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9490 ┒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9491 ┓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9492 └ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9493 ┕ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9494 ┖ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9495 ┗ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9496 ┘ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9497 ┙ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9498 ┚ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9499 ┛ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9500 ├ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9501 ┝ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9502 ┞ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9503 ┟ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9504 ┠ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9505 ┡ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9506 ┢ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9507 ┣ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9508 ┤ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9509 ┥ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9510 ┦ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9511 ┧ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9512 ┨ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9513 ┩ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9514 ┪ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9515 ┫ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9516 ┬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9517 ┭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9518 ┮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9519 ┯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9520 ┰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9521 ┱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9522 ┲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9523 ┳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9524 ┴ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9525 ┵ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9526 ┶ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9527 ┷ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9528 ┸ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9529 ┹ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9530 ┺ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9531 ┻ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9532 ┼ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9533 ┽ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9534 ┾ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9535 ┿ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9536 ╀ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9537 ╁ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9538 ╂ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9539 ╃ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9540 ╄ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9541 ╅ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9542 ╆ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9543 ╇ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9544 ╈ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9545 ╉ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9546 ╊ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9547 ╋ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9548 ╌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9549 ╍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9550 ╎ ; -+,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9551 ╏ ; -+,0x00,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x30,0x30,0x30,0x30,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9552 ═ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9553 ║ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9554 ╒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9555 ╓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9556 ╔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9557 ╕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9558 ╖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9559 ╗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0xf4,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9560 ╘ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9561 ╙ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9562 ╚ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x17,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9563 ╛ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9564 ╜ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9565 ╝ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0xf4,0x04,0x04,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9566 ╞ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9567 ╟ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x17,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9568 ╠ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x17,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9569 ╡ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9570 ╢ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xf4,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9571 ╣ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0xf4,0x04,0x04,0xf4,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9572 ╤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9573 ╥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9574 ╦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xf7,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9575 ╧ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9576 ╨ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9577 ╩ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0xf7,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9578 ╪ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9579 ╫ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9580 ╬ ; -+,0x14,0x14,0x14,0x14,0x14,0x14,0xf7,0x00,0x00,0xf7,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9581 ╭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9582 ╮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x30,0x10,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9583 ╯ ; -+,0x08,0x08,0x08,0x08,0x10,0x10,0x30,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9584 ╰ ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9585 ╱ ; -+,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9586 ╲ ; -+,0x80,0x40,0x40,0x20,0x20,0x10,0x10,0x08,0x08,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9587 ╳ ; -+,0x80,0x41,0x41,0x22,0x22,0x14,0x14,0x08,0x08,0x14,0x14,0x22,0x22,0x41,0x41,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9588 ╴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9589 ╵ ; -+,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9590 ╶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9591 ╷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9592 ╸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9593 ╹ ; -+,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9594 ╺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9595 ╻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9596 ╼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9597 ╽ ; -+,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9598 ╾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9599 ╿ ; -+,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9600 ▀ ; -+,0x00,0x00,0x00,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9601 ▁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9602 ▂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9603 ▃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9604 ▄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9605 ▅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9606 ▆ ; -+,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9607 ▇ ; -+,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9608 █ ; -+,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9609 ▉ ; -+,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9610 ▊ ; -+,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9611 ▋ ; -+,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9612 ▌ ; -+,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9613 ▍ ; -+,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9614 ▎ ; -+,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9615 ▏ ; -+,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9616 ▐ ; -+,0x00,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9617 ░ ; -+,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0xa0,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9618 ▒ ; -+,0x00,0x00,0x28,0x00,0x00,0x28,0x00,0x00,0x00,0x00,0xa8,0x00,0x00,0xa8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9619 ▓ ; -+,0x00,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9620 ▔ ; -+,0x00,0x7f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9621 ▕ ; -+,0x00,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9622 ▖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9623 ▗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9624 ▘ ; -+,0x78,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9625 ▙ ; -+,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9626 ▚ ; -+,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0x18,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9627 ▛ ; -+,0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9628 ▜ ; -+,0xf8,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9629 ▝ ; -+,0x18,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9630 ▞ ; -+,0x18,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9631 ▟ ; -+,0x18,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9632 ■ ; -+,0x00,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9633 □ ; -+,0x00,0x7f,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x41,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9634 ▢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x08,0x08,0x08,0x08,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9635 ▣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x38,0x38,0x38,0x38,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9636 ▤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9637 ▥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x38,0x38,0x38,0x38,0x38,0x38,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9638 ▦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9639 ▧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x58,0x38,0x28,0x58,0x58,0x28,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9640 ▨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x28,0x58,0x58,0x28,0x38,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9641 ▩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9642 ▪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9643 ▫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9644 ▬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x78,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9645 ▭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9646 ▮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9647 ▯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9648 ▰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x78,0x78,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9649 ▱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x08,0x08,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9650 ▲ ; -+,0x00,0x08,0x18,0x1c,0x1c,0x3c,0x3c,0x3e,0x3e,0x7e,0x7e,0x7f,0x7f,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9651 △ ; -+,0x00,0x08,0x18,0x14,0x14,0x24,0x24,0x22,0x22,0x42,0x42,0x41,0x41,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9652 ▴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9653 ▵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9654 ▶ ; -+,0x00,0x00,0x40,0x60,0x70,0x78,0x7c,0x7c,0x7e,0x7c,0x78,0x70,0x70,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9655 ▷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x50,0x48,0x50,0x50,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9656 ▸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9657 ▹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9658 ► ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x1f,0x1e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9659 ▻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x13,0x16,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9660 ▼ ; -+,0x00,0x00,0x7f,0x7e,0x3e,0x3e,0x1c,0x1c,0x1c,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9661 ▽ ; -+,0x00,0x00,0x7f,0x42,0x22,0x24,0x14,0x14,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9662 ▾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9663 ▿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9664 ◀ ; -+,0x00,0x00,0x02,0x06,0x0e,0x1e,0x1e,0x3e,0x7e,0x3e,0x1e,0x0e,0x06,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9665 ◁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0x40,0x40,0x20,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9666 ◂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9667 ◃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9668 ◄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x38,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9669 ◅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x28,0x28,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9670 ◆ ; -+,0x08,0x18,0x1c,0x3c,0x3e,0x7e,0x7f,0xff,0x7f,0x7e,0x3e,0x3c,0x1c,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9671 ◇ ; -+,0x08,0x18,0x14,0x24,0x22,0x42,0x41,0x81,0x41,0x42,0x22,0x24,0x14,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9672 ◈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x78,0x78,0x78,0x70,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9673 ◉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x40,0x38,0x38,0x38,0x48,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9674 ◊ ; -+,0x00,0x00,0x0c,0x0c,0x12,0x12,0x21,0x21,0x21,0x21,0x12,0x12,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9675 ○ ; -+,0x00,0x1c,0x26,0x42,0x42,0x41,0x41,0x41,0x41,0x41,0x42,0x42,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9676 ◌ ; -+,0x00,0x00,0x00,0x00,0x30,0x48,0x44,0x00,0xc4,0xc4,0x00,0x4c,0x48,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9677 ◍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x38,0x38,0x38,0x78,0x78,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9678 ◎ ; -+,0x00,0x1c,0x26,0x5e,0x66,0x63,0x63,0x63,0x63,0x63,0x66,0x5e,0x26,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9679 ● ; -+,0x00,0x1c,0x3e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,0x7f,0x7e,0x7e,0x3e,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9680 ◐ ; -+,0x00,0x00,0x00,0x38,0x70,0x70,0x72,0x70,0x70,0x70,0x72,0x70,0x70,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9681 ◑ ; -+,0x00,0x00,0x00,0x38,0x5c,0x5c,0x1e,0x1e,0x1e,0x1e,0x1e,0x1c,0x5c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9682 ◒ ; -+,0x00,0x00,0x00,0x08,0x40,0x40,0x02,0x00,0x7e,0x7e,0x7e,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9683 ◓ ; -+,0x00,0x00,0x00,0x38,0x7c,0x7c,0x7e,0x7e,0x7e,0x00,0x02,0x00,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9684 ◔ ; -+,0x00,0x00,0x00,0x18,0x5c,0x5c,0x1e,0x1e,0x02,0x00,0x02,0x00,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9685 ◕ ; -+,0x00,0x00,0x00,0x18,0x5c,0x5c,0x1e,0x1e,0x7e,0x7e,0x7e,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9686 ◖ ; -+,0x00,0x00,0x00,0x0e,0x1e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x1e,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9687 ◗ ; -+,0x00,0x00,0x00,0x18,0x1c,0x1c,0x1e,0x1e,0x1e,0x1e,0x1e,0x1c,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9688 ◘ ; -+,0x00,0x00,0x00,0x00,0x0f,0x1f,0x1f,0x1f,0x1f,0x11,0x11,0x19,0x1f,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9689 ◙ ; -+,0x00,0x00,0x00,0x00,0xf8,0xcc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9690 ◚ ; -+,0x00,0x00,0x00,0x00,0xf8,0xcc,0xfc,0xfc,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9691 ◛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0xfc,0xfc,0xfc,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9692 ◜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9693 ◝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9694 ◞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9695 ◟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9696 ◠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x40,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9697 ◡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9698 ◢ ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x06,0x0e,0x0e,0x1e,0x1e,0x3e,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9699 ◣ ; -+,0x00,0x40,0x60,0x60,0x70,0x70,0x78,0x78,0x7c,0x7c,0x7e,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9700 ◤ ; -+,0x00,0x00,0x00,0x3f,0x3e,0x3e,0x3c,0x3c,0x38,0x38,0x30,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9701 ◥ ; -+,0x00,0x00,0x00,0x3e,0x3e,0x1e,0x1e,0x0e,0x0e,0x06,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9702 ◦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9703 ◧ ; -+,0x00,0x00,0x00,0x72,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x70,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9704 ◨ ; -+,0x00,0x00,0x00,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x1e,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9705 ◩ ; -+,0x00,0x00,0x00,0x7e,0x7c,0x78,0x78,0x70,0x70,0x60,0x60,0x40,0x40,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9706 ◪ ; -+,0x00,0x00,0x00,0x06,0x06,0x06,0x0e,0x0e,0x1e,0x1e,0x3e,0x3e,0x7e,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9707 ◫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x28,0x28,0x28,0x28,0x28,0x28,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9708 ◬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x10,0x78,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9709 ◭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x30,0x68,0x60,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9710 ◮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x30,0x10,0x58,0x58,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9711 ◯ ; -+,0x00,0x00,0x18,0x24,0x42,0x40,0x02,0x00,0x00,0x00,0x02,0x40,0x40,0x20,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9712 ◰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x28,0x28,0x68,0x48,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9713 ◱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x48,0x68,0x28,0x28,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9714 ◲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x08,0x28,0x28,0x28,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9715 ◳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x28,0x28,0x28,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9716 ◴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x60,0x28,0x68,0x08,0x48,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9717 ◵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x40,0x08,0x68,0x28,0x68,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9718 ◶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x40,0x08,0x18,0x28,0x68,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9719 ◷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x60,0x28,0x38,0x08,0x48,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9720 ◸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x50,0x50,0x60,0x60,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9721 ◹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x48,0x28,0x28,0x18,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9722 ◺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x20,0x20,0x10,0x10,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9723 ◻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9724 ◼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9725 ◽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9726 ◾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x78,0x78,0x78,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9727 ◿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x18,0x28,0x28,0x48,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9728 ☀ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x48,0x30,0x30,0x38,0x30,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9729 ☁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9730 ☂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x78,0x00,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9731 ☃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9732 ☄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9733 ★ ; -+,0x08,0x08,0x18,0x18,0x18,0x1c,0xff,0x7e,0x3e,0x3c,0x3c,0x3e,0x3e,0x26,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9734 ☆ ; -+,0x08,0x08,0x18,0x18,0x18,0x14,0xf7,0x41,0x62,0x24,0x24,0x2a,0x36,0x26,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9735 ☇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x10,0x08,0x04,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9736 ☈ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x50,0x50,0x60,0x40,0x60,0x50,0x58,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9737 ☉ ; -+,0x00,0x00,0x00,0x00,0x18,0x34,0x24,0x2a,0x3a,0x2a,0x24,0x34,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9738 ☊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9739 ☋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9740 ☌ ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x38,0x10,0x48,0x48,0x48,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9741 ☍ ; -+,0x06,0x09,0x01,0x09,0x01,0x08,0x0f,0x00,0x38,0x48,0x48,0x40,0x40,0x48,0x40,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9742 ☎ ; -+,0x00,0x00,0x00,0x00,0x00,0x7c,0x6c,0x7c,0x28,0x28,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9743 ☏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9744 ☐ ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9745 ☑ ; -+,0x00,0x00,0x00,0x02,0x00,0x08,0x08,0x10,0x10,0x30,0x20,0x20,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9746 ☒ ; -+,0x00,0x00,0x00,0x02,0x00,0x28,0x28,0x18,0x10,0x38,0x28,0x20,0x00,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9747 ☓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9748 ☔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9749 ☕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9750 ☖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9751 ☗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9752 ☘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9753 ☙ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x58,0x38,0x18,0xfa,0xbc,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9754 ☚ ; -+,0x00,0x00,0x00,0x00,0x00,0x3c,0x7e,0x5f,0x1f,0x1f,0x1e,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9755 ☛ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x3f,0x7f,0x7c,0x7c,0x7c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9756 ☜ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x03,0x3b,0x2b,0x0b,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9757 ☝ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x02,0x21,0x14,0x08,0x00,0x00,0x3e,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9758 ☞ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x60,0x6c,0x74,0x68,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9759 ☟ ; -+,0x00,0x00,0x3f,0x20,0x3e,0x00,0x00,0x08,0x14,0x21,0x04,0x1c,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9760 ☠ ; -+,0x00,0x00,0x00,0x1e,0x1e,0x1e,0x1c,0x1e,0x0c,0x00,0x33,0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9761 ☡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9762 ☢ ; -+,0x00,0x00,0x00,0x00,0x00,0x2c,0x6c,0x6c,0x7c,0x10,0x00,0x18,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9763 ☣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x38,0x78,0x38,0x30,0x18,0x30,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9764 ☤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9765 ☥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9766 ☦ ; -+,0x00,0x00,0x00,0x0c,0x1e,0x0c,0x0c,0x3f,0x0c,0x0c,0x0e,0x1c,0x1c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9767 ☧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9768 ☨ ; -+,0x00,0x00,0x00,0x0c,0x0c,0x1e,0x1e,0x0c,0x0c,0x0c,0x3f,0x3f,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9769 ☩ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x70,0xa8,0xf8,0xa8,0x70,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9770 ☪ ; -+,0x00,0x00,0x00,0x18,0x30,0x60,0x60,0x44,0x4c,0x44,0x60,0x60,0x20,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9771 ☫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9772 ☬ ; -+,0x00,0x00,0x30,0x30,0x78,0x7c,0xfc,0xfc,0x7c,0x78,0x78,0x38,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9773 ☭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9774 ☮ ; -+,0x00,0x00,0x00,0x10,0x3c,0x54,0x14,0x52,0x52,0x5a,0x78,0x74,0x34,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9775 ☯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x70,0x58,0x70,0x70,0x7c,0x3c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9776 ☰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9777 ☱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9778 ☲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9779 ☳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9780 ☴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9781 ☵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9782 ☶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9783 ☷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9784 ☸ ; -+,0x00,0x00,0x00,0x10,0x10,0x3c,0x3c,0x5c,0x7e,0x5c,0x3c,0x3c,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9785 ☹ ; -+,0x00,0x00,0x00,0x10,0x2c,0x44,0x04,0x62,0x42,0x42,0x58,0x44,0x24,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9786 ☺ ; -+,0x00,0x00,0x00,0x10,0x2c,0x44,0x04,0x62,0x42,0x42,0x40,0x54,0x24,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9787 ☻ ; -+,0x00,0x00,0x00,0x10,0x3c,0x7c,0x7c,0x7e,0x7e,0x7e,0x7c,0x6c,0x3c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9788 ☼ ; -+,0x00,0x00,0x00,0x10,0x10,0x3c,0x20,0x24,0x46,0x24,0x20,0x3c,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9789 ☽ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x14,0x0c,0x08,0x00,0x00,0x08,0x0c,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9790 ☾ ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x12,0x00,0x24,0x24,0x24,0x24,0x00,0x12,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9791 ☿ ; -+,0x00,0x00,0x00,0x48,0x10,0x70,0x50,0x40,0x48,0x48,0x40,0x70,0x20,0x20,0x70,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9792 ♀ ; -+,0x00,0x18,0x14,0x14,0x14,0x18,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9793 ♁ ; -+,0x00,0x00,0x20,0x20,0x70,0x20,0x20,0x30,0x10,0x48,0x48,0x48,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9794 ♂ ; -+,0x00,0x08,0x18,0x1c,0x2c,0x2a,0x08,0x08,0x08,0x08,0x18,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9795 ♃ ; -+,0x00,0x00,0x00,0x18,0x24,0x04,0x04,0x05,0x09,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9796 ♄ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x70,0x48,0x40,0x40,0x40,0x48,0x48,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9797 ♅ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x20,0x20,0x30,0x10,0x48,0x48,0x48,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9798 ♆ ; -+,0x00,0x00,0x00,0x68,0xe8,0x68,0x70,0x30,0x20,0x20,0x30,0x50,0x48,0x48,0x48,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9799 ♇ ; -+,0x00,0x00,0x00,0x70,0x48,0x40,0x40,0x48,0x50,0x40,0x40,0x40,0x40,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9800 ♈ ; -+,0x00,0x00,0x00,0x6c,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9801 ♉ ; -+,0x00,0x00,0x00,0x44,0x44,0x28,0x38,0x28,0x44,0x44,0x44,0x44,0x20,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9802 ♊ ; -+,0x00,0x00,0x42,0x64,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x64,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9803 ♋ ; -+,0x00,0x00,0x00,0x1e,0x21,0x40,0x63,0x62,0x22,0x62,0x61,0x00,0x22,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9804 ♌ ; -+,0x00,0x00,0x00,0x18,0x24,0x44,0x02,0x42,0x02,0x40,0x44,0x24,0x64,0x60,0x28,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9805 ♍ ; -+,0x00,0x00,0x00,0x77,0x2a,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9806 ♎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x10,0x02,0x10,0x71,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9807 ♏ ; -+,0x00,0x00,0x00,0x76,0x6a,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9808 ♐ ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x0c,0x08,0x10,0x50,0x60,0x20,0x60,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9809 ♑ ; -+,0x00,0x00,0x00,0x7e,0x08,0x18,0x10,0x34,0x42,0x40,0x00,0x10,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9810 ♒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x16,0x19,0x00,0x66,0x14,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9811 ♓ ; -+,0x00,0x00,0x00,0x42,0x44,0x24,0x00,0x08,0x38,0x08,0x00,0x24,0x44,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9812 ♔ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x5c,0x10,0x14,0x3c,0x24,0x3c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9813 ♕ ; -+,0x00,0x00,0x00,0x00,0x38,0x78,0x7e,0x7c,0x7c,0x7c,0x3c,0x24,0x3c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9814 ♖ ; -+,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x38,0x28,0x28,0x28,0x00,0x3c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9815 ♗ ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x08,0x30,0x20,0x28,0x28,0x38,0x6c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9816 ♘ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x28,0x24,0x54,0x14,0x04,0x74,0x04,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9817 ♙ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x20,0x28,0x18,0x28,0x20,0x24,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9818 ♚ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x7c,0x7c,0x7c,0x2c,0x3c,0x2c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9819 ♛ ; -+,0x00,0x00,0x00,0x00,0x38,0x78,0x7e,0x7c,0x7c,0x7c,0x24,0x38,0x34,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9820 ♜ ; -+,0x00,0x00,0x00,0x00,0x00,0x3c,0x3c,0x38,0x38,0x38,0x38,0x38,0x3c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9821 ♝ ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x38,0x38,0x38,0x28,0x28,0x38,0x7c,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9822 ♞ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x38,0x3c,0x3c,0x7c,0x7c,0x7c,0x1c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9823 ♟ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x38,0x38,0x18,0x38,0x38,0x3c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9824 ♠ ; -+,0x00,0x00,0x00,0x00,0x30,0x30,0x78,0x78,0x78,0x78,0x78,0x30,0x30,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9825 ♡ ; -+,0x00,0x00,0x00,0x74,0x10,0x10,0x00,0x44,0x48,0x20,0x00,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9826 ♢ ; -+,0x00,0x00,0x00,0x20,0x10,0x30,0x40,0x48,0x48,0x48,0x40,0x30,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9827 ♣ ; -+,0x00,0x00,0x00,0x38,0x38,0x38,0x7c,0x7c,0x7e,0x7e,0x7c,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9828 ♤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9829 ♥ ; -+,0x00,0x00,0x00,0x7c,0x7c,0x7c,0x7c,0x7c,0x78,0x38,0x30,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9830 ♦ ; -+,0x00,0x00,0x00,0x20,0x30,0x30,0x70,0x78,0x78,0x78,0x70,0x30,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9831 ♧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9832 ♨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9833 ♩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9834 ♪ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x30,0x18,0x08,0x00,0x00,0x40,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9835 ♫ ; -+,0x00,0x00,0x00,0x30,0x18,0x0c,0x00,0x00,0x00,0x60,0x60,0x6c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9836 ♬ ; -+,0x00,0x00,0x00,0x30,0x18,0x3c,0x38,0x0c,0x00,0x60,0x60,0x6c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9837 ♭ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x24,0x26,0x26,0x26,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9838 ♮ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x24,0x3c,0x20,0x20,0x20,0x20,0x24,0x3c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9839 ♯ ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x3c,0x34,0x24,0x04,0x04,0x06,0x3e,0x34,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9840 ♰ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x7c,0x7c,0x10,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9841 ♱ ; -+,0x00,0x00,0x10,0x18,0x10,0x10,0x74,0x7c,0x50,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9842 ♲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9843 ♳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9844 ♴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9845 ♵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9846 ♶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9847 ♷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9848 ♸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9849 ♹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9850 ♺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9851 ♻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9852 ♼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9853 ♽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9854 ♾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9855 ♿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9856 ⚀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9857 ⚁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9858 ⚂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9859 ⚃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9860 ⚄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9861 ⚅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9862 ⚆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9863 ⚇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9864 ⚈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9865 ⚉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9866 ⚊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9867 ⚋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9868 ⚌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9869 ⚍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9870 ⚎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9871 ⚏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9872 ⚐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9873 ⚑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9874 ⚒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9875 ⚓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9876 ⚔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9877 ⚕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9878 ⚖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9879 ⚗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9880 ⚘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9881 ⚙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9882 ⚚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9883 ⚛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9884 ⚜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9885 ⚝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9886 ⚞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9887 ⚟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9888 ⚠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9889 ⚡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9890 ⚢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9891 ⚣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9892 ⚤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9893 ⚥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9894 ⚦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9895 ⚧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9896 ⚨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9897 ⚩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9898 ⚪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9899 ⚫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9900 ⚬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9901 ⚭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9902 ⚮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9903 ⚯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9904 ⚰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9905 ⚱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9906 ⚲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9907 ⚳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9908 ⚴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9909 ⚵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9910 ⚶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9911 ⚷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9912 ⚸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9913 ⚹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9914 ⚺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9915 ⚻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9916 ⚼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9917 ⚽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9918 ⚾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9919 ⚿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9920 ⛀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9921 ⛁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9922 ⛂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9923 ⛃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9924 ⛄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9925 ⛅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9926 ⛆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9927 ⛇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9928 ⛈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9929 ⛉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9930 ⛊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9931 ⛋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9932 ⛌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9933 ⛍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9934 ⛎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9935 ⛏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9936 ⛐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9937 ⛑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9938 ⛒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9939 ⛓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9940 ⛔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9941 ⛕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9942 ⛖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9943 ⛗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9944 ⛘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9945 ⛙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9946 ⛚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9947 ⛛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9948 ⛜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9949 ⛝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9950 ⛞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9951 ⛟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9952 ⛠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9953 ⛡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9954 ⛢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9955 ⛣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9956 ⛤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9957 ⛥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9958 ⛦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9959 ⛧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9960 ⛨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9961 ⛩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9962 ⛪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9963 ⛫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9964 ⛬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9965 ⛭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9966 ⛮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9967 ⛯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9968 ⛰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9969 ⛱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9970 ⛲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9971 ⛳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9972 ⛴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9973 ⛵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9974 ⛶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9975 ⛷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9976 ⛸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9977 ⛹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9978 ⛺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9979 ⛻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9980 ⛼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9981 ⛽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9982 ⛾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9983 ⛿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9984 ✀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9985 ✁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x12,0x1f,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9986 ✂ ; -+,0x00,0x00,0x00,0x00,0x40,0x20,0x27,0x1c,0x18,0x3e,0x27,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9987 ✃ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x28,0x1f,0x12,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9988 ✄ ; -+,0x00,0x00,0x00,0x00,0x20,0x25,0x08,0x38,0x14,0x08,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9989 ✅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9990 ✆ ; -+,0x00,0x00,0x00,0x28,0x58,0x58,0x12,0x32,0x20,0x22,0x32,0x30,0x00,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9991 ✇ ; -+,0x00,0x00,0x00,0x00,0x50,0x10,0x10,0x18,0x18,0x3c,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9992 ✈ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x18,0x58,0x7e,0x58,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9993 ✉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9994 ✊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9995 ✋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9996 ✌ ; -+,0x00,0x00,0x00,0x68,0x08,0x08,0x30,0x70,0x68,0x70,0x60,0x28,0x40,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9997 ✍ ; -+,0x00,0x00,0x00,0x00,0x08,0x18,0x18,0x14,0x32,0x22,0x42,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9998 ✎ ; -+,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x42,0x02,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 9999 ✏ ; -+,0x00,0x00,0x00,0x00,0x00,0x64,0x06,0x44,0x45,0x44,0x06,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10000 ✐ ; -+,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x02,0x42,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10001 ✑ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x6a,0x16,0x0f,0x16,0x6a,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10002 ✒ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x6e,0x7e,0x7b,0x7e,0x6e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10003 ✓ ; -+,0x00,0x00,0x00,0x04,0x0c,0x08,0x18,0x18,0x10,0x30,0x70,0x60,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10004 ✔ ; -+,0x00,0x00,0x00,0x02,0x06,0x06,0x4c,0x6c,0x78,0x78,0x70,0x70,0x60,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10005 ✕ ; -+,0x00,0x00,0x00,0x44,0x44,0x6c,0x28,0x38,0x10,0x38,0x28,0x6c,0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10006 ✖ ; -+,0x00,0x00,0x00,0x28,0x6c,0x7c,0x7c,0x7c,0x38,0x7c,0x7c,0x7c,0x6c,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10007 ✗ ; -+,0x00,0x00,0x00,0x00,0x68,0x38,0x30,0x30,0x30,0x30,0x70,0x78,0x50,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10008 ✘ ; -+,0x00,0x00,0x00,0x0c,0x6c,0x78,0x78,0x30,0x30,0x70,0x78,0x78,0x58,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10009 ✙ ; -+,0x00,0x00,0x00,0x28,0x38,0x38,0x38,0x12,0x7e,0x12,0x38,0x38,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10010 ✚ ; -+,0x00,0x00,0x00,0x38,0x38,0x38,0x38,0x7e,0x7e,0x7e,0x38,0x38,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10011 ✛ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x6e,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10012 ✜ ; -+,0x00,0x00,0x00,0x38,0x38,0x38,0x38,0x6e,0x6e,0x6e,0x38,0x38,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10013 ✝ ; -+,0x00,0x00,0x00,0x0c,0x0c,0x0c,0x3f,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10014 ✞ ; -+,0x00,0x00,0x00,0x20,0x10,0x10,0x08,0x58,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10015 ✟ ; -+,0x00,0x00,0x00,0x30,0x20,0x20,0x78,0x78,0x30,0x20,0x20,0x20,0x20,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10016 ✠ ; -+,0x00,0x00,0x00,0x00,0x30,0x30,0x28,0x68,0x78,0x68,0x28,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10017 ✡ ; -+,0x00,0x00,0x00,0x10,0x10,0x30,0x6c,0x48,0x48,0x48,0x6c,0x30,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10018 ✢ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x54,0x7e,0x54,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10019 ✣ ; -+,0x00,0x00,0x00,0x18,0x18,0x10,0x00,0x56,0x7e,0x56,0x00,0x10,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10020 ✤ ; -+,0x00,0x00,0x00,0x18,0x38,0x38,0x5c,0x7e,0x7e,0x7e,0x58,0x38,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10021 ✥ ; -+,0x00,0x00,0x00,0x10,0x18,0x38,0x10,0x74,0x7e,0x74,0x10,0x38,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10022 ✦ ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x38,0x3c,0x7e,0x3c,0x38,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10023 ✧ ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x28,0x6c,0x46,0x2c,0x28,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10024 ✨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10025 ✩ ; -+,0x00,0x00,0x00,0x10,0x00,0x18,0x3c,0x00,0x24,0x24,0x00,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10026 ✪ ; -+,0x00,0x00,0x00,0x38,0x7c,0x6c,0x6e,0x46,0x66,0x6e,0x66,0x5c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10027 ✫ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x7e,0x2c,0x28,0x38,0x38,0x2c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10028 ✬ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x5c,0x3c,0x38,0x14,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10029 ✭ ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x10,0x5a,0x7c,0x18,0x38,0x08,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10030 ✮ ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x18,0x76,0x5c,0x3c,0x1c,0x3c,0x2c,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10031 ✯ ; -+,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x7a,0x1c,0x1c,0x38,0x28,0x2c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10032 ✰ ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x43,0x06,0x04,0x04,0x14,0x36,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10033 ✱ ; -+,0x00,0x00,0x00,0x10,0x10,0x54,0x7c,0x7c,0x38,0x7c,0x7c,0x54,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10034 ✲ ; -+,0x00,0x00,0x00,0x10,0x10,0x54,0x7c,0x68,0x00,0x68,0x7c,0x54,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10035 ✳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10036 ✴ ; -+,0x00,0x00,0x00,0x00,0x00,0x30,0x38,0x18,0x7c,0x18,0x38,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10037 ✵ ; -+,0x00,0x00,0x00,0x00,0x10,0x34,0x38,0x18,0x7c,0x38,0x18,0x24,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10038 ✶ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x7c,0x38,0x38,0x38,0x5c,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10039 ✷ ; -+,0x00,0x00,0x00,0x00,0x28,0x38,0x7c,0x7c,0x38,0x7c,0x7c,0x38,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10040 ✸ ; -+,0x00,0x00,0x00,0x00,0x28,0x38,0x7c,0x7c,0x38,0x7c,0x7c,0x38,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10041 ✹ ; -+,0x00,0x00,0x00,0x10,0x38,0x38,0x3c,0x3c,0x7c,0x3c,0x7c,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10042 ✺ ; -+,0x00,0x00,0x00,0x00,0x28,0x20,0x7c,0x38,0x7c,0x38,0x54,0x08,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10043 ✻ ; -+,0x00,0x00,0x00,0x10,0x10,0x54,0x4c,0x10,0x30,0x38,0x4c,0x54,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10044 ✼ ; -+,0x00,0x00,0x00,0x10,0x10,0x54,0x5c,0x38,0x20,0x38,0x5c,0x54,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10045 ✽ ; -+,0x00,0x00,0x00,0x10,0x30,0x5c,0x7c,0x78,0x10,0x6c,0x7c,0x5c,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10046 ✾ ; -+,0x00,0x00,0x00,0x00,0x00,0x4c,0x6c,0x7c,0x38,0x10,0x30,0x30,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10047 ✿ ; -+,0x00,0x00,0x00,0x18,0x38,0x7c,0x7e,0x6e,0x6e,0x6c,0x3c,0x7c,0x7c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10048 ❀ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x7a,0x18,0x7a,0x7c,0x18,0x54,0x44,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10049 ❁ ; -+,0x00,0x00,0x00,0x00,0x70,0x3c,0x7c,0x6e,0x6c,0x6e,0x38,0x3c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10050 ❂ ; -+,0x00,0x00,0x00,0x38,0x7c,0x7c,0x46,0x66,0x02,0x66,0x46,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10051 ❃ ; -+,0x00,0x00,0x00,0x10,0x10,0x50,0x34,0x3c,0x30,0x58,0x5c,0x34,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10052 ❄ ; -+,0x00,0x00,0x00,0x10,0x30,0x18,0x58,0x7c,0x10,0x7c,0x58,0x18,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10053 ❅ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x5c,0x38,0x54,0x78,0x5c,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10054 ❆ ; -+,0x00,0x00,0x00,0x00,0x30,0x58,0x48,0x6c,0x10,0x4c,0x48,0x58,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10055 ❇ ; -+,0x00,0x00,0x00,0x10,0x54,0x34,0x38,0x00,0x7e,0x00,0x38,0x34,0x54,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10056 ❈ ; -+,0x00,0x00,0x00,0x10,0x5c,0x30,0x10,0x54,0x7e,0x54,0x10,0x10,0x5c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10057 ❉ ; -+,0x00,0x00,0x00,0x10,0x30,0x5c,0x5c,0x5c,0x10,0x5c,0x5c,0x5c,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10058 ❊ ; -+,0x00,0x00,0x00,0x10,0x54,0x74,0x28,0x10,0x7e,0x10,0x28,0x74,0x50,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10059 ❋ ; -+,0x00,0x00,0x00,0x10,0x54,0x7c,0x38,0x18,0x7e,0x18,0x38,0x7c,0x74,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10060 ❌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10061 ❍ ; -+,0x00,0x00,0x00,0x0c,0x46,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x46,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10062 ❎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10063 ❏ ; -+,0x00,0x00,0x00,0x44,0x04,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x7e,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10064 ❐ ; -+,0x00,0x00,0x00,0x7e,0x7e,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10065 ❑ ; -+,0x00,0x00,0x00,0x44,0x04,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x7e,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10066 ❒ ; -+,0x00,0x00,0x00,0x7e,0x7e,0x06,0x06,0x06,0x06,0x06,0x06,0x06,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10067 ❓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10068 ❔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10069 ❕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10070 ❖ ; -+,0x00,0x00,0x00,0x10,0x18,0x38,0x34,0x6c,0x6e,0x6c,0x1c,0x38,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10071 ❗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10072 ❘ ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10073 ❙ ; -+,0x00,0x00,0x00,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10074 ❚ ; -+,0x00,0x00,0x00,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10075 ❛ ; -+,0x00,0x00,0x00,0x10,0x20,0x3c,0x3c,0x3e,0x3c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10076 ❜ ; -+,0x00,0x00,0x00,0x3c,0x3e,0x3e,0x3e,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10077 ❝ ; -+,0x00,0x00,0x00,0x28,0x50,0x78,0x7c,0x7c,0x7c,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10078 ❞ ; -+,0x00,0x00,0x00,0x78,0x7c,0x7c,0x7c,0x2c,0x28,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10079 ❟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10080 ❠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10081 ❡ ; -+,0x00,0x00,0x00,0x7c,0x70,0x70,0x70,0x70,0x70,0x70,0x00,0x00,0x20,0x68,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10082 ❢ ; -+,0x00,0x00,0x00,0x70,0x78,0x78,0x70,0x30,0x20,0x00,0x30,0x70,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10083 ❣ ; -+,0x00,0x00,0x00,0x78,0x78,0x78,0x78,0x30,0x20,0x00,0x30,0x70,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10084 ❤ ; -+,0x00,0x00,0x00,0x00,0x76,0x7f,0x7f,0x7f,0x7f,0x7e,0x3c,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10085 ❥ ; -+,0x00,0x00,0x00,0x60,0x70,0x70,0x70,0x78,0x3c,0x78,0x70,0x70,0x70,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10086 ❦ ; -+,0x00,0x00,0x00,0x36,0x14,0x48,0x20,0x3c,0x7c,0x7c,0x7c,0x38,0x34,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10087 ❧ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x58,0x38,0x18,0xfa,0xbc,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10088 ❨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10089 ❩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10090 ❪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10091 ❫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10092 ❬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10093 ❭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10094 ❮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10095 ❯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10096 ❰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10097 ❱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10098 ❲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10099 ❳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10100 ❴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10101 ❵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10102 ❶ ; -+,0x00,0x00,0x00,0x38,0x7c,0x6c,0x7e,0x7e,0x7e,0x7e,0x7e,0x6c,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10103 ❷ ; -+,0x00,0x00,0x00,0x38,0x6c,0x74,0x76,0x76,0x7e,0x7e,0x7e,0x44,0x64,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10104 ❸ ; -+,0x00,0x00,0x00,0x38,0x6c,0x74,0x76,0x7e,0x76,0x76,0x56,0x54,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10105 ❹ ; -+,0x00,0x00,0x00,0x38,0x7c,0x6c,0x6e,0x7e,0x7e,0x6e,0x7e,0x7c,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10106 ❺ ; -+,0x00,0x00,0x00,0x38,0x64,0x6c,0x7e,0x7e,0x76,0x76,0x56,0x54,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10107 ❻ ; -+,0x00,0x00,0x00,0x38,0x6c,0x74,0x5e,0x5e,0x56,0x5e,0x5e,0x74,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10108 ❼ ; -+,0x00,0x00,0x00,0x38,0x44,0x44,0x7e,0x7e,0x7e,0x6e,0x7e,0x6c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10109 ❽ ; -+,0x00,0x00,0x00,0x38,0x6c,0x7c,0x7e,0x6e,0x66,0x56,0x5e,0x74,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10110 ❾ ; -+,0x00,0x00,0x00,0x38,0x6c,0x5c,0x5e,0x5e,0x66,0x7e,0x7e,0x74,0x6c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10111 ❿ ; -+,0x00,0x00,0x00,0x38,0x70,0x5c,0x5a,0x5a,0x5a,0x5a,0x5a,0x5c,0x14,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10112 ➀ ; -+,0x00,0x00,0x00,0x28,0x40,0x50,0x12,0x12,0x10,0x12,0x12,0x10,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10113 ➁ ; -+,0x00,0x00,0x00,0x28,0x40,0x78,0x2a,0x0a,0x08,0x12,0x12,0x38,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10114 ➂ ; -+,0x00,0x00,0x00,0x28,0x40,0x68,0x22,0x0a,0x18,0x0a,0x2a,0x18,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10115 ➃ ; -+,0x00,0x00,0x00,0x28,0x40,0x50,0x12,0x02,0x20,0x3a,0x1a,0x00,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10116 ➄ ; -+,0x00,0x00,0x00,0x28,0x40,0x60,0x22,0x3a,0x28,0x0a,0x0a,0x18,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10117 ➅ ; -+,0x00,0x00,0x00,0x28,0x40,0x78,0x22,0x32,0x28,0x22,0x2a,0x18,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10118 ➆ ; -+,0x00,0x00,0x00,0x28,0x40,0x48,0x0a,0x12,0x10,0x12,0x12,0x10,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10119 ➇ ; -+,0x00,0x00,0x00,0x28,0x40,0x68,0x22,0x1a,0x18,0x2a,0x2a,0x18,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10120 ➈ ; -+,0x00,0x00,0x00,0x28,0x40,0x68,0x22,0x2a,0x38,0x0a,0x0a,0x18,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10121 ➉ ; -+,0x00,0x00,0x00,0x28,0x40,0x78,0x26,0x36,0x34,0x36,0x36,0x38,0x40,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10122 ➊ ; -+,0x00,0x00,0x00,0x38,0x7c,0x6c,0x6e,0x7e,0x7e,0x7e,0x7e,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10123 ➋ ; -+,0x00,0x00,0x00,0x38,0x6c,0x74,0x76,0x76,0x7e,0x6e,0x7e,0x64,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10124 ➌ ; -+,0x00,0x00,0x00,0x38,0x6c,0x7c,0x76,0x7e,0x7e,0x76,0x76,0x6c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10125 ➍ ; -+,0x00,0x00,0x00,0x38,0x7c,0x7c,0x6e,0x7e,0x5e,0x46,0x7e,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10126 ➎ ; -+,0x00,0x00,0x00,0x38,0x6c,0x7c,0x7e,0x66,0x7e,0x7e,0x76,0x6c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10127 ➏ ; -+,0x00,0x00,0x00,0x38,0x7c,0x7c,0x7e,0x6e,0x76,0x76,0x76,0x6c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10128 ➐ ; -+,0x00,0x00,0x00,0x38,0x64,0x74,0x7e,0x7e,0x7e,0x6e,0x6e,0x7c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10129 ➑ ; -+,0x00,0x00,0x00,0x38,0x6c,0x74,0x76,0x7e,0x6e,0x76,0x76,0x6c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10130 ➒ ; -+,0x00,0x00,0x00,0x38,0x6c,0x7c,0x76,0x76,0x66,0x76,0x76,0x6c,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10131 ➓ ; -+,0x00,0x00,0x00,0x38,0x74,0x5c,0x4e,0x4e,0x4e,0x4e,0x5e,0x54,0x7c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10132 ➔ ; -+,0x00,0x00,0x00,0x00,0x0c,0x0c,0x06,0x7e,0x7f,0x06,0x06,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10133 ➕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10134 ➖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10135 ➗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10136 ➘ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x78,0x38,0x1c,0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10137 ➙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x66,0x7f,0x66,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10138 ➚ ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x1c,0x1c,0x38,0x60,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10139 ➛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x1c,0x5e,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10140 ➜ ; -+,0x00,0x00,0x00,0x04,0x0c,0x0e,0x06,0x7e,0x7f,0x7e,0x06,0x0e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10141 ➝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x7f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10142 ➞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x7f,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10143 ➟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x7e,0x7e,0x7e,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10144 ➠ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x1c,0x5e,0x5e,0x5e,0x1c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10145 ➡ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x7c,0x7e,0x7e,0x7e,0x7c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10146 ➢ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x30,0x20,0x12,0x3c,0x38,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10147 ➣ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x38,0x3e,0x12,0x20,0x20,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10148 ➤ ; -+,0x00,0x00,0x00,0x40,0x60,0x70,0x38,0x3e,0x3e,0x3e,0x38,0x70,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10149 ➥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x7e,0x7f,0x7e,0x7e,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10150 ➦ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x7e,0x7f,0x7f,0x7e,0x4c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10151 ➧ ; -+,0x00,0x00,0x00,0x18,0x38,0x3c,0x3e,0x3e,0x3f,0x3e,0x3e,0x3c,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10152 ➨ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x78,0x7c,0x7e,0x7c,0x78,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10153 ➩ ; -+,0x00,0x00,0x00,0x00,0xc0,0x60,0x30,0x18,0x0c,0x18,0x30,0x60,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10154 ➪ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x48,0x40,0x40,0x40,0x48,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10155 ➫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x7e,0x7c,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10156 ➬ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x7c,0x76,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10157 ➭ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x08,0x04,0x0c,0x68,0x78,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10158 ➮ ; -+,0x00,0x00,0x00,0x00,0x10,0x78,0x08,0x0c,0x04,0x08,0x08,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10159 ➯ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x02,0x02,0x7c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10160 ➰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10161 ➱ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x7c,0x02,0x02,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10162 ➲ ; -+,0x00,0x00,0x00,0x78,0x7c,0x0c,0x04,0x04,0x02,0x04,0x04,0x0c,0x7c,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10163 ➳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x3b,0x02,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10164 ➴ ; -+,0x00,0x00,0x00,0x00,0x20,0x30,0x30,0x78,0x78,0x30,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10165 ➵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x76,0x0e,0x76,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10166 ➶ ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0c,0x30,0x78,0x78,0x30,0x30,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10167 ➷ ; -+,0x00,0x00,0x00,0x30,0x30,0x38,0x38,0x78,0x78,0x38,0x32,0x06,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10168 ➸ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x72,0x72,0x7f,0x72,0x72,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10169 ➹ ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x3a,0x38,0x78,0x78,0x38,0x38,0x30,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10170 ➺ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x64,0x7a,0x64,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10171 ➻ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x76,0x7e,0x76,0x64,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10172 ➼ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x76,0x7f,0x7f,0x7f,0x76,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10173 ➽ ; -+,0x00,0x00,0x00,0x00,0x70,0x7e,0x7e,0x7f,0x7f,0x7f,0x7e,0x7e,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10174 ➾ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x0a,0x7e,0x01,0x7e,0x0a,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10175 ➿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10176 ⟀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10177 ⟁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10178 ⟂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10179 ⟃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10180 ⟄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10181 ⟅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10182 ⟆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10183 ⟇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10184 ⟈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10185 ⟉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10186 ⟊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10187 ⟋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10188 ⟌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10189 ⟍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10190 ⟎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10191 ⟏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10192 ⟐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10193 ⟑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10194 ⟒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10195 ⟓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10196 ⟔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10197 ⟕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10198 ⟖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10199 ⟗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10200 ⟘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10201 ⟙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10202 ⟚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10203 ⟛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10204 ⟜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10205 ⟝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10206 ⟞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10207 ⟟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10208 ⟠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10209 ⟡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10210 ⟢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10211 ⟣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10212 ⟤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10213 ⟥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10214 ⟦ ; -+,0x00,0x00,0x00,0x00,0x19,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10215 ⟧ ; -+,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10216 ⟨ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x0c,0x08,0x18,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10217 ⟩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x02,0x01,0x01,0x02,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10218 ⟪ ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x20,0x30,0x50,0x60,0x60,0x70,0x30,0x30,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10219 ⟫ ; -+,0x00,0x00,0x00,0x00,0x00,0x60,0x50,0x30,0x30,0x18,0x18,0x38,0x30,0x50,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10220 ⟬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10221 ⟭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10222 ⟮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10223 ⟯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10224 ⟰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10225 ⟱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10226 ⟲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10227 ⟳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10228 ⟴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10229 ⟵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0xff,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10230 ⟶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0xff,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10231 ⟷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x41,0xff,0x41,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10232 ⟸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0x7f,0xc0,0x40,0x7f,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10233 ⟹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xff,0x01,0x01,0xff,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10234 ⟺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x63,0x7f,0xc1,0x41,0x7f,0x22,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10235 ⟻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0xff,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10236 ⟼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x81,0xff,0x81,0x81,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10237 ⟽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10238 ⟾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10239 ⟿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10240 ⠀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10241 ⠁ ; -+,0x00,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10242 ⠂ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10243 ⠃ ; -+,0x00,0x00,0x18,0x10,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10244 ⠄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10245 ⠅ ; -+,0x00,0x00,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10246 ⠆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10247 ⠇ ; -+,0x00,0x00,0x10,0x18,0x00,0x10,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10248 ⠈ ; -+,0x00,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10249 ⠉ ; -+,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10250 ⠊ ; -+,0x00,0x00,0x03,0x01,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10251 ⠋ ; -+,0x00,0x00,0x1b,0x09,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10252 ⠌ ; -+,0x00,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10253 ⠍ ; -+,0x00,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10254 ⠎ ; -+,0x00,0x00,0x01,0x03,0x00,0x08,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10255 ⠏ ; -+,0x00,0x00,0x09,0x1b,0x00,0x08,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10256 ⠐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10257 ⠑ ; -+,0x00,0x00,0x18,0x08,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10258 ⠒ ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10259 ⠓ ; -+,0x00,0x00,0x18,0x08,0x00,0x1b,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10260 ⠔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10261 ⠕ ; -+,0x00,0x00,0x08,0x18,0x00,0x01,0x03,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10262 ⠖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10263 ⠗ ; -+,0x00,0x00,0x08,0x18,0x00,0x09,0x1b,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10264 ⠘ ; -+,0x00,0x00,0x18,0x10,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10265 ⠙ ; -+,0x00,0x00,0x1b,0x09,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10266 ⠚ ; -+,0x00,0x00,0x03,0x01,0x00,0x1b,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10267 ⠛ ; -+,0x00,0x00,0x1b,0x09,0x00,0x1b,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10268 ⠜ ; -+,0x00,0x00,0x01,0x03,0x00,0x01,0x03,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10269 ⠝ ; -+,0x00,0x00,0x09,0x1b,0x00,0x01,0x03,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10270 ⠞ ; -+,0x00,0x00,0x01,0x03,0x00,0x09,0x1b,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10271 ⠟ ; -+,0x00,0x00,0x09,0x1b,0x00,0x09,0x1b,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10272 ⠠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10273 ⠡ ; -+,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10274 ⠢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10275 ⠣ ; -+,0x00,0x00,0x08,0x18,0x00,0x08,0x18,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10276 ⠤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10277 ⠥ ; -+,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10278 ⠦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10279 ⠧ ; -+,0x00,0x00,0x08,0x18,0x00,0x08,0x18,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10280 ⠨ ; -+,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10281 ⠩ ; -+,0x00,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10282 ⠪ ; -+,0x00,0x00,0x01,0x03,0x00,0x08,0x18,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10283 ⠫ ; -+,0x00,0x00,0x09,0x1b,0x00,0x08,0x18,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10284 ⠬ ; -+,0x00,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10285 ⠭ ; -+,0x00,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10286 ⠮ ; -+,0x00,0x00,0x01,0x03,0x00,0x08,0x18,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10287 ⠯ ; -+,0x00,0x00,0x09,0x1b,0x00,0x08,0x18,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10288 ⠰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10289 ⠱ ; -+,0x00,0x00,0x08,0x18,0x00,0x01,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10290 ⠲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10291 ⠳ ; -+,0x00,0x00,0x08,0x18,0x00,0x09,0x1b,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10292 ⠴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10293 ⠵ ; -+,0x00,0x00,0x08,0x18,0x00,0x01,0x03,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10294 ⠶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10295 ⠷ ; -+,0x00,0x00,0x08,0x18,0x00,0x09,0x1b,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10296 ⠸ ; -+,0x00,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10297 ⠹ ; -+,0x00,0x00,0x09,0x1b,0x00,0x01,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10298 ⠺ ; -+,0x00,0x00,0x01,0x03,0x00,0x09,0x1b,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10299 ⠻ ; -+,0x00,0x00,0x09,0x1b,0x00,0x09,0x1b,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10300 ⠼ ; -+,0x00,0x00,0x01,0x03,0x00,0x01,0x03,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10301 ⠽ ; -+,0x00,0x00,0x09,0x1b,0x00,0x01,0x03,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10302 ⠾ ; -+,0x00,0x00,0x01,0x03,0x00,0x09,0x1b,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10303 ⠿ ; -+,0x00,0x00,0x09,0x1b,0x00,0x09,0x1b,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10304 ⡀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10305 ⡁ ; -+,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10306 ⡂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10307 ⡃ ; -+,0x00,0x00,0x00,0x18,0x10,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10308 ⡄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x00,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10309 ⡅ ; -+,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10310 ⡆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10311 ⡇ ; -+,0x00,0x00,0x00,0x18,0x10,0x00,0x18,0x10,0x00,0x10,0x10,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10312 ⡈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10313 ⡉ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10314 ⡊ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10315 ⡋ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10316 ⡌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10317 ⡍ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10318 ⡎ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10319 ⡏ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10320 ⡐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10321 ⡑ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10322 ⡒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10323 ⡓ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10324 ⡔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10325 ⡕ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10326 ⡖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10327 ⡗ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10328 ⡘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10329 ⡙ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10330 ⡚ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10331 ⡛ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10332 ⡜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10333 ⡝ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10334 ⡞ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10335 ⡟ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10336 ⡠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10337 ⡡ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10338 ⡢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x03,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10339 ⡣ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10340 ⡤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x1b,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10341 ⡥ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10342 ⡦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x1b,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10343 ⡧ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10344 ⡨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10345 ⡩ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10346 ⡪ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10347 ⡫ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10348 ⡬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10349 ⡭ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10350 ⡮ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10351 ⡯ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10352 ⡰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10353 ⡱ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10354 ⡲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x03,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10355 ⡳ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10356 ⡴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x1b,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10357 ⡵ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10358 ⡶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x1b,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10359 ⡷ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10360 ⡸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10361 ⡹ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10362 ⡺ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10363 ⡻ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10364 ⡼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10365 ⡽ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10366 ⡾ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10367 ⡿ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10368 ⢀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10369 ⢁ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10370 ⢂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10371 ⢃ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10372 ⢄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10373 ⢅ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10374 ⢆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10375 ⢇ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10376 ⢈ ; -+,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10377 ⢉ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10378 ⢊ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10379 ⢋ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10380 ⢌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10381 ⢍ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10382 ⢎ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10383 ⢏ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10384 ⢐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10385 ⢑ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10386 ⢒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10387 ⢓ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10388 ⢔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x18,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10389 ⢕ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10390 ⢖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x18,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10391 ⢗ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10392 ⢘ ; -+,0x00,0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10393 ⢙ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10394 ⢚ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10395 ⢛ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10396 ⢜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10397 ⢝ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10398 ⢞ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10399 ⢟ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10400 ⢠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10401 ⢡ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10402 ⢢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10403 ⢣ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10404 ⢤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x1b,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10405 ⢥ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10406 ⢦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x1b,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10407 ⢧ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10408 ⢨ ; -+,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10409 ⢩ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10410 ⢪ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10411 ⢫ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10412 ⢬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10413 ⢭ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10414 ⢮ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10415 ⢯ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10416 ⢰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10417 ⢱ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10418 ⢲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10419 ⢳ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10420 ⢴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x1b,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10421 ⢵ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10422 ⢶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x1b,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10423 ⢷ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10424 ⢸ ; -+,0x00,0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10425 ⢹ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10426 ⢺ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10427 ⢻ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10428 ⢼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10429 ⢽ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10430 ⢾ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10431 ⢿ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10432 ⣀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10433 ⣁ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10434 ⣂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10435 ⣃ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10436 ⣄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10437 ⣅ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10438 ⣆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x18,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10439 ⣇ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10440 ⣈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10441 ⣉ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10442 ⣊ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10443 ⣋ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10444 ⣌ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10445 ⣍ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10446 ⣎ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10447 ⣏ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10448 ⣐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10449 ⣑ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10450 ⣒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10451 ⣓ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10452 ⣔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x18,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10453 ⣕ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10454 ⣖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x18,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10455 ⣗ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10456 ⣘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10457 ⣙ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10458 ⣚ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10459 ⣛ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10460 ⣜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10461 ⣝ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10462 ⣞ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10463 ⣟ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10464 ⣠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10465 ⣡ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10466 ⣢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x03,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10467 ⣣ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10468 ⣤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x1b,0x00,0x09,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10469 ⣥ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10470 ⣦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x1b,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10471 ⣧ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10472 ⣨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10473 ⣩ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10474 ⣪ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10475 ⣫ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10476 ⣬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10477 ⣭ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10478 ⣮ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10479 ⣯ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x18,0x08,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10480 ⣰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10481 ⣱ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10482 ⣲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x03,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10483 ⣳ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10484 ⣴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x1b,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10485 ⣵ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10486 ⣶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x00,0x1b,0x00,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10487 ⣷ ; -+,0x00,0x00,0x00,0x18,0x08,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10488 ⣸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10489 ⣹ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10490 ⣺ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10491 ⣻ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10492 ⣼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10493 ⣽ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x01,0x01,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10494 ⣾ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10495 ⣿ ; -+,0x00,0x00,0x00,0x19,0x09,0x00,0x19,0x09,0x00,0x09,0x09,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10496 ⤀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10497 ⤁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10498 ⤂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10499 ⤃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10500 ⤄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10501 ⤅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10502 ⤆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10503 ⤇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10504 ⤈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10505 ⤉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10506 ⤊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10507 ⤋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10508 ⤌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10509 ⤍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10510 ⤎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10511 ⤏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10512 ⤐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10513 ⤑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10514 ⤒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10515 ⤓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10516 ⤔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10517 ⤕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10518 ⤖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10519 ⤗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10520 ⤘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10521 ⤙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10522 ⤚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10523 ⤛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10524 ⤜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10525 ⤝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10526 ⤞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10527 ⤟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10528 ⤠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10529 ⤡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10530 ⤢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10531 ⤣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10532 ⤤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10533 ⤥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10534 ⤦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10535 ⤧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10536 ⤨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10537 ⤩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10538 ⤪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10539 ⤫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10540 ⤬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10541 ⤭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10542 ⤮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10543 ⤯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10544 ⤰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10545 ⤱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10546 ⤲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10547 ⤳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10548 ⤴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10549 ⤵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10550 ⤶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10551 ⤷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10552 ⤸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10553 ⤹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10554 ⤺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10555 ⤻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10556 ⤼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10557 ⤽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10558 ⤾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10559 ⤿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10560 ⥀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10561 ⥁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10562 ⥂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10563 ⥃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10564 ⥄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10565 ⥅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10566 ⥆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10567 ⥇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10568 ⥈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10569 ⥉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10570 ⥊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10571 ⥋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10572 ⥌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10573 ⥍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10574 ⥎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10575 ⥏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10576 ⥐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10577 ⥑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10578 ⥒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10579 ⥓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10580 ⥔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10581 ⥕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10582 ⥖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10583 ⥗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10584 ⥘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10585 ⥙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10586 ⥚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10587 ⥛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10588 ⥜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10589 ⥝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10590 ⥞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10591 ⥟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10592 ⥠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10593 ⥡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10594 ⥢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10595 ⥣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10596 ⥤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10597 ⥥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10598 ⥦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10599 ⥧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10600 ⥨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10601 ⥩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10602 ⥪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10603 ⥫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10604 ⥬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10605 ⥭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10606 ⥮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10607 ⥯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10608 ⥰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10609 ⥱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10610 ⥲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10611 ⥳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10612 ⥴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10613 ⥵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10614 ⥶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10615 ⥷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10616 ⥸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10617 ⥹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10618 ⥺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10619 ⥻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10620 ⥼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10621 ⥽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10622 ⥾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10623 ⥿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10624 ⦀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10625 ⦁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10626 ⦂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10627 ⦃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10628 ⦄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10629 ⦅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10630 ⦆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10631 ⦇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10632 ⦈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10633 ⦉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10634 ⦊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10635 ⦋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10636 ⦌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10637 ⦍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10638 ⦎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10639 ⦏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10640 ⦐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10641 ⦑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10642 ⦒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10643 ⦓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10644 ⦔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10645 ⦕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10646 ⦖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10647 ⦗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10648 ⦘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10649 ⦙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10650 ⦚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10651 ⦛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10652 ⦜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10653 ⦝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10654 ⦞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10655 ⦟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10656 ⦠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10657 ⦡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10658 ⦢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10659 ⦣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10660 ⦤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10661 ⦥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10662 ⦦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10663 ⦧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10664 ⦨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10665 ⦩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10666 ⦪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10667 ⦫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10668 ⦬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10669 ⦭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10670 ⦮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10671 ⦯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10672 ⦰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10673 ⦱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10674 ⦲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10675 ⦳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10676 ⦴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10677 ⦵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10678 ⦶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10679 ⦷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10680 ⦸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10681 ⦹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10682 ⦺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10683 ⦻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10684 ⦼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10685 ⦽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10686 ⦾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10687 ⦿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10688 ⧀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10689 ⧁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10690 ⧂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10691 ⧃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10692 ⧄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10693 ⧅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10694 ⧆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10695 ⧇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10696 ⧈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10697 ⧉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10698 ⧊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10699 ⧋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10700 ⧌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10701 ⧍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10702 ⧎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10703 ⧏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10704 ⧐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10705 ⧑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10706 ⧒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10707 ⧓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10708 ⧔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10709 ⧕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10710 ⧖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10711 ⧗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10712 ⧘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10713 ⧙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10714 ⧚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10715 ⧛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10716 ⧜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10717 ⧝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10718 ⧞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10719 ⧟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10720 ⧠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10721 ⧡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10722 ⧢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10723 ⧣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10724 ⧤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10725 ⧥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10726 ⧦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10727 ⧧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10728 ⧨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10729 ⧩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10730 ⧪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10731 ⧫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10732 ⧬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10733 ⧭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10734 ⧮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10735 ⧯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10736 ⧰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10737 ⧱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10738 ⧲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10739 ⧳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10740 ⧴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10741 ⧵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10742 ⧶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10743 ⧷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10744 ⧸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10745 ⧹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10746 ⧺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10747 ⧻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10748 ⧼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10749 ⧽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10750 ⧾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10751 ⧿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10752 ⨀ ; -+,0x00,0x00,0x38,0x24,0x42,0x42,0x42,0x02,0x1a,0x02,0x42,0x42,0x42,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10753 ⨁ ; -+,0x00,0x00,0x38,0x34,0x52,0x52,0x52,0x12,0x7e,0x12,0x52,0x52,0x52,0x34,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10754 ⨂ ; -+,0x00,0x00,0x38,0x24,0x66,0x66,0x7a,0x1a,0x1a,0x1a,0x6e,0x66,0x66,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10755 ⨃ ; -+,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x54,0x54,0x44,0x44,0x44,0x28,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10756 ⨄ ; -+,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x54,0x54,0x7c,0x54,0x54,0x54,0x28,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10757 ⨅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10758 ⨆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10759 ⨇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10760 ⨈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10761 ⨉ ; -+,0x00,0x00,0x00,0x00,0x44,0x44,0x28,0x28,0x10,0x10,0x28,0x28,0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10762 ⨊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10763 ⨋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10764 ⨌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10765 ⨍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10766 ⨎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10767 ⨏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10768 ⨐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10769 ⨑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10770 ⨒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10771 ⨓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10772 ⨔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10773 ⨕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10774 ⨖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10775 ⨗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10776 ⨘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10777 ⨙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10778 ⨚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10779 ⨛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10780 ⨜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10781 ⨝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10782 ⨞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10783 ⨟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10784 ⨠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10785 ⨡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10786 ⨢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10787 ⨣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10788 ⨤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10789 ⨥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10790 ⨦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10791 ⨧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10792 ⨨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10793 ⨩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10794 ⨪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10795 ⨫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10796 ⨬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10797 ⨭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10798 ⨮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10799 ⨯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10800 ⨰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10801 ⨱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10802 ⨲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10803 ⨳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10804 ⨴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10805 ⨵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10806 ⨶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10807 ⨷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10808 ⨸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10809 ⨹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10810 ⨺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10811 ⨻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10812 ⨼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10813 ⨽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10814 ⨾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10815 ⨿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10816 ⩀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10817 ⩁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10818 ⩂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10819 ⩃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10820 ⩄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10821 ⩅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10822 ⩆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10823 ⩇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10824 ⩈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10825 ⩉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10826 ⩊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10827 ⩋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10828 ⩌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10829 ⩍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10830 ⩎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10831 ⩏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10832 ⩐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10833 ⩑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10834 ⩒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10835 ⩓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10836 ⩔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10837 ⩕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10838 ⩖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10839 ⩗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10840 ⩘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10841 ⩙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10842 ⩚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10843 ⩛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10844 ⩜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10845 ⩝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10846 ⩞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10847 ⩟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10848 ⩠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10849 ⩡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10850 ⩢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10851 ⩣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10852 ⩤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10853 ⩥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10854 ⩦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10855 ⩧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10856 ⩨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10857 ⩩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10858 ⩪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10859 ⩫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10860 ⩬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10861 ⩭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10862 ⩮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10863 ⩯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10864 ⩰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10865 ⩱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10866 ⩲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10867 ⩳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10868 ⩴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10869 ⩵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10870 ⩶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10871 ⩷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10872 ⩸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10873 ⩹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10874 ⩺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10875 ⩻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10876 ⩼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10877 ⩽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10878 ⩾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10879 ⩿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10880 ⪀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10881 ⪁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10882 ⪂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10883 ⪃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10884 ⪄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10885 ⪅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10886 ⪆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10887 ⪇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10888 ⪈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10889 ⪉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10890 ⪊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10891 ⪋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10892 ⪌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10893 ⪍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10894 ⪎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10895 ⪏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10896 ⪐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10897 ⪑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10898 ⪒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10899 ⪓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10900 ⪔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10901 ⪕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10902 ⪖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10903 ⪗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10904 ⪘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10905 ⪙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10906 ⪚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10907 ⪛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10908 ⪜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10909 ⪝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10910 ⪞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10911 ⪟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10912 ⪠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10913 ⪡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10914 ⪢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10915 ⪣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10916 ⪤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10917 ⪥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10918 ⪦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10919 ⪧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10920 ⪨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10921 ⪩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10922 ⪪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10923 ⪫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10924 ⪬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10925 ⪭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10926 ⪮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10927 ⪯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10928 ⪰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10929 ⪱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10930 ⪲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10931 ⪳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10932 ⪴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10933 ⪵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10934 ⪶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10935 ⪷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10936 ⪸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10937 ⪹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10938 ⪺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10939 ⪻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10940 ⪼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10941 ⪽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10942 ⪾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10943 ⪿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10944 ⫀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10945 ⫁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10946 ⫂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10947 ⫃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10948 ⫄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10949 ⫅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10950 ⫆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10951 ⫇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10952 ⫈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10953 ⫉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10954 ⫊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10955 ⫋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10956 ⫌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10957 ⫍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10958 ⫎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10959 ⫏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10960 ⫐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10961 ⫑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10962 ⫒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10963 ⫓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10964 ⫔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10965 ⫕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10966 ⫖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10967 ⫗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10968 ⫘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10969 ⫙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10970 ⫚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10971 ⫛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10972 ⫝̸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10973 ⫝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10974 ⫞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10975 ⫟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10976 ⫠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10977 ⫡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10978 ⫢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10979 ⫣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10980 ⫤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10981 ⫥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10982 ⫦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10983 ⫧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10984 ⫨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10985 ⫩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10986 ⫪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10987 ⫫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10988 ⫬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10989 ⫭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10990 ⫮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10991 ⫯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10992 ⫰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10993 ⫱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10994 ⫲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10995 ⫳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10996 ⫴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10997 ⫵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10998 ⫶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 10999 ⫷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11000 ⫸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11001 ⫹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11002 ⫺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11003 ⫻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11004 ⫼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11005 ⫽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11006 ⫾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11007 ⫿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11008 ⬀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11009 ⬁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11010 ⬂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11011 ⬃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11012 ⬄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11013 ⬅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11014 ⬆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11015 ⬇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11016 ⬈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11017 ⬉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11018 ⬊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11019 ⬋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11020 ⬌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11021 ⬍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11022 ⬎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11023 ⬏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11024 ⬐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11025 ⬑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11026 ⬒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11027 ⬓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11028 ⬔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11029 ⬕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11030 ⬖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11031 ⬗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11032 ⬘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11033 ⬙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11034 ⬚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11035 ⬛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11036 ⬜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11037 ⬝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11038 ⬞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11039 ⬟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11040 ⬠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11041 ⬡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11042 ⬢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11043 ⬣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11044 ⬤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11045 ⬥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11046 ⬦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11047 ⬧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11048 ⬨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11049 ⬩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11050 ⬪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11051 ⬫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11052 ⬬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11053 ⬭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11054 ⬮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11055 ⬯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11056 ⬰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11057 ⬱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11058 ⬲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11059 ⬳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11060 ⬴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11061 ⬵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11062 ⬶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11063 ⬷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11064 ⬸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11065 ⬹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11066 ⬺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11067 ⬻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11068 ⬼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11069 ⬽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11070 ⬾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11071 ⬿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11072 ⭀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11073 ⭁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11074 ⭂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11075 ⭃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11076 ⭄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11077 ⭅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11078 ⭆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11079 ⭇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11080 ⭈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11081 ⭉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11082 ⭊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11083 ⭋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11084 ⭌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11085 ⭍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11086 ⭎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11087 ⭏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11088 ⭐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11089 ⭑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11090 ⭒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11091 ⭓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11092 ⭔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11093 ⭕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11094 ⭖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11095 ⭗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11096 ⭘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11097 ⭙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11098 ⭚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11099 ⭛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11100 ⭜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11101 ⭝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11102 ⭞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11103 ⭟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11104 ⭠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11105 ⭡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11106 ⭢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11107 ⭣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11108 ⭤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11109 ⭥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11110 ⭦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11111 ⭧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11112 ⭨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11113 ⭩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11114 ⭪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11115 ⭫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11116 ⭬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11117 ⭭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11118 ⭮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11119 ⭯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11120 ⭰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11121 ⭱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11122 ⭲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11123 ⭳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11124 ⭴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11125 ⭵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11126 ⭶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11127 ⭷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11128 ⭸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11129 ⭹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11130 ⭺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11131 ⭻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11132 ⭼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11133 ⭽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11134 ⭾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11135 ⭿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11136 ⮀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11137 ⮁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11138 ⮂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11139 ⮃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11140 ⮄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11141 ⮅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11142 ⮆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11143 ⮇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11144 ⮈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11145 ⮉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11146 ⮊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11147 ⮋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11148 ⮌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11149 ⮍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11150 ⮎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11151 ⮏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11152 ⮐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11153 ⮑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11154 ⮒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11155 ⮓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11156 ⮔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11157 ⮕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11158 ⮖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11159 ⮗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11160 ⮘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11161 ⮙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11162 ⮚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11163 ⮛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11164 ⮜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11165 ⮝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11166 ⮞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11167 ⮟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11168 ⮠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11169 ⮡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11170 ⮢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11171 ⮣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11172 ⮤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11173 ⮥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11174 ⮦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11175 ⮧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11176 ⮨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11177 ⮩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11178 ⮪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11179 ⮫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11180 ⮬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11181 ⮭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11182 ⮮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11183 ⮯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11184 ⮰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11185 ⮱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11186 ⮲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11187 ⮳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11188 ⮴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11189 ⮵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11190 ⮶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11191 ⮷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11192 ⮸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11193 ⮹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11194 ⮺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11195 ⮻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11196 ⮼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11197 ⮽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11198 ⮾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11199 ⮿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11200 ⯀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11201 ⯁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11202 ⯂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11203 ⯃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11204 ⯄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11205 ⯅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11206 ⯆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11207 ⯇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11208 ⯈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11209 ⯉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11210 ⯊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11211 ⯋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11212 ⯌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11213 ⯍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11214 ⯎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11215 ⯏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11216 ⯐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11217 ⯑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11218 ⯒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11219 ⯓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11220 ⯔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11221 ⯕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11222 ⯖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11223 ⯗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11224 ⯘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11225 ⯙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11226 ⯚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11227 ⯛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11228 ⯜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11229 ⯝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11230 ⯞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11231 ⯟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11232 ⯠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11233 ⯡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11234 ⯢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11235 ⯣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11236 ⯤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11237 ⯥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11238 ⯦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11239 ⯧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11240 ⯨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11241 ⯩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11242 ⯪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11243 ⯫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11244 ⯬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11245 ⯭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11246 ⯮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11247 ⯯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11248 ⯰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11249 ⯱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11250 ⯲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11251 ⯳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11252 ⯴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11253 ⯵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11254 ⯶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11255 ⯷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11256 ⯸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11257 ⯹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11258 ⯺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11259 ⯻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11260 ⯼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11261 ⯽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11262 ⯾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11263 ⯿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11264 Ⰰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11265 Ⰱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11266 Ⰲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11267 Ⰳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11268 Ⰴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11269 Ⰵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11270 Ⰶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11271 Ⰷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11272 Ⰸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11273 Ⰹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11274 Ⰺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11275 Ⰻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11276 Ⰼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11277 Ⰽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11278 Ⰾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11279 Ⰿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11280 Ⱀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11281 Ⱁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11282 Ⱂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11283 Ⱃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11284 Ⱄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11285 Ⱅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11286 Ⱆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11287 Ⱇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11288 Ⱈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11289 Ⱉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11290 Ⱊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11291 Ⱋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11292 Ⱌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11293 Ⱍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11294 Ⱎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11295 Ⱏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11296 Ⱐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11297 Ⱑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11298 Ⱒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11299 Ⱓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11300 Ⱔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11301 Ⱕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11302 Ⱖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11303 Ⱗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11304 Ⱘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11305 Ⱙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11306 Ⱚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11307 Ⱛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11308 Ⱜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11309 Ⱝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11310 Ⱞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11311 Ⱟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11312 ⰰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11313 ⰱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11314 ⰲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11315 ⰳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11316 ⰴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11317 ⰵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11318 ⰶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11319 ⰷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11320 ⰸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11321 ⰹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11322 ⰺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11323 ⰻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11324 ⰼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11325 ⰽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11326 ⰾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11327 ⰿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11328 ⱀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11329 ⱁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11330 ⱂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11331 ⱃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11332 ⱄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11333 ⱅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11334 ⱆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11335 ⱇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11336 ⱈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11337 ⱉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11338 ⱊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11339 ⱋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11340 ⱌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11341 ⱍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11342 ⱎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11343 ⱏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11344 ⱐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11345 ⱑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11346 ⱒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11347 ⱓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11348 ⱔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11349 ⱕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11350 ⱖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11351 ⱗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11352 ⱘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11353 ⱙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11354 ⱚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11355 ⱛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11356 ⱜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11357 ⱝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11358 ⱞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11359 ⱟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11360 Ⱡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11361 ⱡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11362 Ɫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11363 Ᵽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11364 Ɽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11365 ⱥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11366 ⱦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11367 Ⱨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11368 ⱨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11369 Ⱪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11370 ⱪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11371 Ⱬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11372 ⱬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11373 Ɑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11374 Ɱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11375 Ɐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11376 Ɒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11377 ⱱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11378 Ⱳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11379 ⱳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11380 ⱴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11381 Ⱶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11382 ⱶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11383 ⱷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11384 ⱸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11385 ⱹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11386 ⱺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11387 ⱻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11388 ⱼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11389 ⱽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11390 Ȿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11391 Ɀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11392 Ⲁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11393 ⲁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11394 Ⲃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11395 ⲃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11396 Ⲅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11397 ⲅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11398 Ⲇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11399 ⲇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11400 Ⲉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11401 ⲉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11402 Ⲋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11403 ⲋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11404 Ⲍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11405 ⲍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11406 Ⲏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11407 ⲏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11408 Ⲑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11409 ⲑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11410 Ⲓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11411 ⲓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11412 Ⲕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11413 ⲕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11414 Ⲗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11415 ⲗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11416 Ⲙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11417 ⲙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11418 Ⲛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11419 ⲛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11420 Ⲝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11421 ⲝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11422 Ⲟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11423 ⲟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11424 Ⲡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11425 ⲡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11426 Ⲣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11427 ⲣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11428 Ⲥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11429 ⲥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11430 Ⲧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11431 ⲧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11432 Ⲩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11433 ⲩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11434 Ⲫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11435 ⲫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11436 Ⲭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11437 ⲭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11438 Ⲯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11439 ⲯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11440 Ⲱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11441 ⲱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11442 Ⲳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11443 ⲳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11444 Ⲵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11445 ⲵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11446 Ⲷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11447 ⲷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11448 Ⲹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11449 ⲹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11450 Ⲻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11451 ⲻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11452 Ⲽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11453 ⲽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11454 Ⲿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11455 ⲿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11456 Ⳁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11457 ⳁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11458 Ⳃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11459 ⳃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11460 Ⳅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11461 ⳅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11462 Ⳇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11463 ⳇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11464 Ⳉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11465 ⳉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11466 Ⳋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11467 ⳋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11468 Ⳍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11469 ⳍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11470 Ⳏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11471 ⳏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11472 Ⳑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11473 ⳑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11474 Ⳓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11475 ⳓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11476 Ⳕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11477 ⳕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11478 Ⳗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11479 ⳗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11480 Ⳙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11481 ⳙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11482 Ⳛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11483 ⳛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11484 Ⳝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11485 ⳝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11486 Ⳟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11487 ⳟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11488 Ⳡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11489 ⳡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11490 Ⳣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11491 ⳣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11492 ⳤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11493 ⳥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11494 ⳦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11495 ⳧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11496 ⳨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11497 ⳩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11498 ⳪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11499 Ⳬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11500 ⳬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11501 Ⳮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11502 ⳮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11503 ⳯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11504 ⳰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11505 ⳱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11506 Ⳳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11507 ⳳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11508 ⳴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11509 ⳵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11510 ⳶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11511 ⳷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11512 ⳸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11513 ⳹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11514 ⳺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11515 ⳻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11516 ⳼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11517 ⳽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11518 ⳾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11519 ⳿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11520 ⴀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11521 ⴁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11522 ⴂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11523 ⴃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11524 ⴄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11525 ⴅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11526 ⴆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11527 ⴇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11528 ⴈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11529 ⴉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11530 ⴊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11531 ⴋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11532 ⴌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11533 ⴍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11534 ⴎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11535 ⴏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11536 ⴐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11537 ⴑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11538 ⴒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11539 ⴓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11540 ⴔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11541 ⴕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11542 ⴖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11543 ⴗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11544 ⴘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11545 ⴙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11546 ⴚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11547 ⴛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11548 ⴜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11549 ⴝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11550 ⴞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11551 ⴟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11552 ⴠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11553 ⴡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11554 ⴢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11555 ⴣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11556 ⴤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11557 ⴥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11558 ⴦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11559 ⴧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11560 ⴨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11561 ⴩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11562 ⴪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11563 ⴫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11564 ⴬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11565 ⴭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11566 ⴮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11567 ⴯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11568 ⴰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11569 ⴱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11570 ⴲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11571 ⴳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11572 ⴴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11573 ⴵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11574 ⴶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11575 ⴷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11576 ⴸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11577 ⴹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11578 ⴺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11579 ⴻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11580 ⴼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11581 ⴽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11582 ⴾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11583 ⴿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11584 ⵀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11585 ⵁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11586 ⵂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11587 ⵃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11588 ⵄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11589 ⵅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11590 ⵆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11591 ⵇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11592 ⵈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11593 ⵉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11594 ⵊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11595 ⵋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11596 ⵌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11597 ⵍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11598 ⵎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11599 ⵏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11600 ⵐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11601 ⵑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11602 ⵒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11603 ⵓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11604 ⵔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11605 ⵕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11606 ⵖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11607 ⵗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11608 ⵘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11609 ⵙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11610 ⵚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11611 ⵛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11612 ⵜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11613 ⵝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11614 ⵞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11615 ⵟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11616 ⵠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11617 ⵡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11618 ⵢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11619 ⵣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11620 ⵤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11621 ⵥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11622 ⵦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11623 ⵧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11624 ⵨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11625 ⵩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11626 ⵪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11627 ⵫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11628 ⵬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11629 ⵭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11630 ⵮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11631 ⵯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11632 ⵰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11633 ⵱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11634 ⵲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11635 ⵳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11636 ⵴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11637 ⵵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11638 ⵶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11639 ⵷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11640 ⵸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11641 ⵹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11642 ⵺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11643 ⵻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11644 ⵼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11645 ⵽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11646 ⵾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11647 ⵿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11648 ⶀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11649 ⶁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11650 ⶂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11651 ⶃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11652 ⶄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11653 ⶅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11654 ⶆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11655 ⶇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11656 ⶈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11657 ⶉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11658 ⶊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11659 ⶋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11660 ⶌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11661 ⶍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11662 ⶎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11663 ⶏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11664 ⶐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11665 ⶑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11666 ⶒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11667 ⶓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11668 ⶔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11669 ⶕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11670 ⶖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11671 ⶗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11672 ⶘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11673 ⶙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11674 ⶚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11675 ⶛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11676 ⶜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11677 ⶝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11678 ⶞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11679 ⶟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11680 ⶠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11681 ⶡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11682 ⶢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11683 ⶣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11684 ⶤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11685 ⶥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11686 ⶦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11687 ⶧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11688 ⶨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11689 ⶩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11690 ⶪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11691 ⶫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11692 ⶬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11693 ⶭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11694 ⶮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11695 ⶯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11696 ⶰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11697 ⶱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11698 ⶲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11699 ⶳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11700 ⶴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11701 ⶵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11702 ⶶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11703 ⶷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11704 ⶸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11705 ⶹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11706 ⶺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11707 ⶻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11708 ⶼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11709 ⶽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11710 ⶾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11711 ⶿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11712 ⷀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11713 ⷁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11714 ⷂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11715 ⷃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11716 ⷄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11717 ⷅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11718 ⷆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11719 ⷇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11720 ⷈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11721 ⷉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11722 ⷊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11723 ⷋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11724 ⷌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11725 ⷍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11726 ⷎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11727 ⷏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11728 ⷐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11729 ⷑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11730 ⷒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11731 ⷓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11732 ⷔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11733 ⷕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11734 ⷖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11735 ⷗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11736 ⷘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11737 ⷙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11738 ⷚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11739 ⷛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11740 ⷜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11741 ⷝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11742 ⷞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11743 ⷟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11744 ⷠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11745 ⷡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11746 ⷢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11747 ⷣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11748 ⷤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11749 ⷥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11750 ⷦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11751 ⷧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11752 ⷨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11753 ⷩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11754 ⷪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11755 ⷫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11756 ⷬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11757 ⷭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11758 ⷮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11759 ⷯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11760 ⷰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11761 ⷱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11762 ⷲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11763 ⷳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11764 ⷴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11765 ⷵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11766 ⷶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11767 ⷷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11768 ⷸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11769 ⷹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11770 ⷺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11771 ⷻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11772 ⷼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11773 ⷽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11774 ⷾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11775 ⷿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11776 ⸀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11777 ⸁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11778 ⸂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11779 ⸃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11780 ⸄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11781 ⸅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11782 ⸆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11783 ⸇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11784 ⸈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11785 ⸉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11786 ⸊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11787 ⸋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11788 ⸌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11789 ⸍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11790 ⸎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11791 ⸏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11792 ⸐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11793 ⸑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11794 ⸒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11795 ⸓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11796 ⸔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11797 ⸕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11798 ⸖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11799 ⸗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11800 ⸘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11801 ⸙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11802 ⸚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11803 ⸛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11804 ⸜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11805 ⸝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11806 ⸞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11807 ⸟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11808 ⸠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11809 ⸡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11810 ⸢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11811 ⸣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11812 ⸤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11813 ⸥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11814 ⸦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11815 ⸧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11816 ⸨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11817 ⸩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11818 ⸪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11819 ⸫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11820 ⸬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11821 ⸭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11822 ⸮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11823 ⸯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11824 ⸰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11825 ⸱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11826 ⸲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11827 ⸳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11828 ⸴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11829 ⸵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11830 ⸶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11831 ⸷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11832 ⸸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11833 ⸹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11834 ⸺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11835 ⸻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11836 ⸼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11837 ⸽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11838 ⸾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11839 ⸿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11840 ⹀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11841 ⹁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11842 ⹂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11843 ⹃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11844 ⹄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11845 ⹅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11846 ⹆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11847 ⹇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11848 ⹈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11849 ⹉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11850 ⹊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11851 ⹋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11852 ⹌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11853 ⹍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11854 ⹎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11855 ⹏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11856 ⹐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11857 ⹑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11858 ⹒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11859 ⹓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11860 ⹔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11861 ⹕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11862 ⹖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11863 ⹗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11864 ⹘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11865 ⹙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11866 ⹚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11867 ⹛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11868 ⹜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11869 ⹝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11870 ⹞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11871 ⹟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11872 ⹠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11873 ⹡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11874 ⹢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11875 ⹣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11876 ⹤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11877 ⹥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11878 ⹦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11879 ⹧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11880 ⹨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11881 ⹩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11882 ⹪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11883 ⹫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11884 ⹬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11885 ⹭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11886 ⹮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11887 ⹯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11888 ⹰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11889 ⹱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11890 ⹲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11891 ⹳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11892 ⹴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11893 ⹵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11894 ⹶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11895 ⹷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11896 ⹸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11897 ⹹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11898 ⹺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11899 ⹻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11900 ⹼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11901 ⹽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11902 ⹾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11903 ⹿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11904 ⺀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11905 ⺁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11906 ⺂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11907 ⺃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11908 ⺄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11909 ⺅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11910 ⺆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11911 ⺇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11912 ⺈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11913 ⺉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11914 ⺊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11915 ⺋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11916 ⺌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11917 ⺍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11918 ⺎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11919 ⺏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11920 ⺐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11921 ⺑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11922 ⺒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11923 ⺓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11924 ⺔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11925 ⺕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11926 ⺖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11927 ⺗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11928 ⺘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11929 ⺙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11930 ⺚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11931 ⺛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11932 ⺜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11933 ⺝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11934 ⺞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11935 ⺟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11936 ⺠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11937 ⺡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11938 ⺢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11939 ⺣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11940 ⺤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11941 ⺥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11942 ⺦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11943 ⺧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11944 ⺨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11945 ⺩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11946 ⺪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11947 ⺫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11948 ⺬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11949 ⺭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11950 ⺮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11951 ⺯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11952 ⺰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11953 ⺱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11954 ⺲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11955 ⺳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11956 ⺴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11957 ⺵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11958 ⺶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11959 ⺷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11960 ⺸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11961 ⺹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11962 ⺺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11963 ⺻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11964 ⺼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11965 ⺽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11966 ⺾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11967 ⺿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11968 ⻀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11969 ⻁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11970 ⻂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11971 ⻃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11972 ⻄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11973 ⻅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11974 ⻆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11975 ⻇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11976 ⻈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11977 ⻉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11978 ⻊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11979 ⻋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11980 ⻌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11981 ⻍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11982 ⻎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11983 ⻏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11984 ⻐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11985 ⻑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11986 ⻒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11987 ⻓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11988 ⻔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11989 ⻕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11990 ⻖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11991 ⻗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11992 ⻘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11993 ⻙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11994 ⻚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11995 ⻛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11996 ⻜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11997 ⻝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11998 ⻞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 11999 ⻟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12000 ⻠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12001 ⻡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12002 ⻢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12003 ⻣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12004 ⻤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12005 ⻥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12006 ⻦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12007 ⻧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12008 ⻨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12009 ⻩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12010 ⻪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12011 ⻫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12012 ⻬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12013 ⻭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12014 ⻮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12015 ⻯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12016 ⻰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12017 ⻱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12018 ⻲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12019 ⻳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12020 ⻴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12021 ⻵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12022 ⻶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12023 ⻷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12024 ⻸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12025 ⻹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12026 ⻺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12027 ⻻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12028 ⻼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12029 ⻽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12030 ⻾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12031 ⻿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12032 ⼀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12033 ⼁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12034 ⼂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12035 ⼃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12036 ⼄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12037 ⼅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12038 ⼆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12039 ⼇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12040 ⼈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12041 ⼉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12042 ⼊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12043 ⼋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12044 ⼌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12045 ⼍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12046 ⼎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12047 ⼏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12048 ⼐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12049 ⼑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12050 ⼒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12051 ⼓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12052 ⼔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12053 ⼕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12054 ⼖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12055 ⼗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12056 ⼘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12057 ⼙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12058 ⼚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12059 ⼛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12060 ⼜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12061 ⼝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12062 ⼞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12063 ⼟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12064 ⼠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12065 ⼡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12066 ⼢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12067 ⼣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12068 ⼤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12069 ⼥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12070 ⼦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12071 ⼧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12072 ⼨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12073 ⼩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12074 ⼪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12075 ⼫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12076 ⼬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12077 ⼭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12078 ⼮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12079 ⼯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12080 ⼰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12081 ⼱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12082 ⼲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12083 ⼳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12084 ⼴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12085 ⼵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12086 ⼶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12087 ⼷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12088 ⼸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12089 ⼹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12090 ⼺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12091 ⼻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12092 ⼼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12093 ⼽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12094 ⼾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12095 ⼿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12096 ⽀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12097 ⽁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12098 ⽂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12099 ⽃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12100 ⽄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12101 ⽅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12102 ⽆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12103 ⽇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12104 ⽈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12105 ⽉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12106 ⽊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12107 ⽋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12108 ⽌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12109 ⽍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12110 ⽎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12111 ⽏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12112 ⽐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12113 ⽑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12114 ⽒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12115 ⽓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12116 ⽔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12117 ⽕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12118 ⽖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12119 ⽗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12120 ⽘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12121 ⽙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12122 ⽚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12123 ⽛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12124 ⽜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12125 ⽝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12126 ⽞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12127 ⽟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12128 ⽠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12129 ⽡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12130 ⽢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12131 ⽣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12132 ⽤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12133 ⽥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12134 ⽦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12135 ⽧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12136 ⽨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12137 ⽩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12138 ⽪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12139 ⽫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12140 ⽬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12141 ⽭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12142 ⽮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12143 ⽯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12144 ⽰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12145 ⽱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12146 ⽲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12147 ⽳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12148 ⽴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12149 ⽵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12150 ⽶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12151 ⽷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12152 ⽸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12153 ⽹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12154 ⽺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12155 ⽻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12156 ⽼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12157 ⽽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12158 ⽾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12159 ⽿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12160 ⾀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12161 ⾁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12162 ⾂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12163 ⾃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12164 ⾄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12165 ⾅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12166 ⾆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12167 ⾇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12168 ⾈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12169 ⾉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12170 ⾊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12171 ⾋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12172 ⾌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12173 ⾍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12174 ⾎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12175 ⾏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12176 ⾐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12177 ⾑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12178 ⾒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12179 ⾓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12180 ⾔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12181 ⾕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12182 ⾖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12183 ⾗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12184 ⾘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12185 ⾙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12186 ⾚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12187 ⾛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12188 ⾜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12189 ⾝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12190 ⾞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12191 ⾟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12192 ⾠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12193 ⾡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12194 ⾢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12195 ⾣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12196 ⾤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12197 ⾥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12198 ⾦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12199 ⾧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12200 ⾨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12201 ⾩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12202 ⾪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12203 ⾫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12204 ⾬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12205 ⾭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12206 ⾮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12207 ⾯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12208 ⾰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12209 ⾱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12210 ⾲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12211 ⾳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12212 ⾴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12213 ⾵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12214 ⾶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12215 ⾷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12216 ⾸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12217 ⾹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12218 ⾺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12219 ⾻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12220 ⾼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12221 ⾽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12222 ⾾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12223 ⾿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12224 ⿀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12225 ⿁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12226 ⿂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12227 ⿃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12228 ⿄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12229 ⿅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12230 ⿆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12231 ⿇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12232 ⿈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12233 ⿉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12234 ⿊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12235 ⿋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12236 ⿌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12237 ⿍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12238 ⿎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12239 ⿏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12240 ⿐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12241 ⿑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12242 ⿒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12243 ⿓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12244 ⿔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12245 ⿕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12246 ⿖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12247 ⿗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12248 ⿘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12249 ⿙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12250 ⿚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12251 ⿛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12252 ⿜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12253 ⿝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12254 ⿞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12255 ⿟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12256 ⿠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12257 ⿡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12258 ⿢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12259 ⿣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12260 ⿤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12261 ⿥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12262 ⿦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12263 ⿧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12264 ⿨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12265 ⿩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12266 ⿪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12267 ⿫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12268 ⿬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12269 ⿭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12270 ⿮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12271 ⿯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12272 ⿰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12273 ⿱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12274 ⿲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12275 ⿳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12276 ⿴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12277 ⿵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12278 ⿶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12279 ⿷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12280 ⿸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12281 ⿹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12282 ⿺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12283 ⿻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12284 ⿼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12285 ⿽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12286 ⿾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12287 ⿿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12288   ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12289 、 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12290 。 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x24,0x24,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12291 〃 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x09,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12292 〄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12293 々 ; -+,0x02,0x02,0x02,0x04,0x04,0x0f,0x10,0x20,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x08,0x08,0x10,0x20,0x40,0x80,0x60,0x20,0x00 -+// 12294 〆 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x09,0x0a,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x10,0xa0,0x40,0xa0,0x10,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12295 〇 ; -+,0x00,0x03,0x04,0x08,0x10,0x20,0x20,0x20,0x20,0x20,0x10,0x08,0x04,0x03,0x00,0x00,0x00,0xe0,0x10,0x08,0x04,0x02,0x02,0x02,0x02,0x02,0x04,0x08,0x10,0xe0,0x00,0x00 -+// 12296 〈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x20,0x10,0x08,0x04,0x02,0x01,0x00,0x00 -+// 12297 〉 ; -+,0x00,0x40,0x20,0x10,0x08,0x04,0x02,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12298 《 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x09,0x12,0x24,0x48,0x90,0x20,0x40,0x20,0x90,0x48,0x24,0x12,0x09,0x04,0x02 -+// 12299 》 ; -+,0x10,0x48,0x24,0x12,0x09,0x04,0x02,0x01,0x02,0x04,0x09,0x12,0x24,0x48,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12300 「 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 12301 」 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 12302 『 ; -+,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xe0,0x20,0xe0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 12303 』 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0xe0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x20,0xe0,0x00,0x00 -+// 12304 【 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x7e,0x7c,0x78,0x78,0x70,0x70,0x70,0x70,0x78,0x78,0x7c,0x7e,0x7f,0x00 -+// 12305 】 ; -+,0x00,0x7f,0x3f,0x1f,0x0f,0x0f,0x07,0x07,0x07,0x07,0x0f,0x0f,0x1f,0x3f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12306 〒 ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 12307 〓 ; -+,0x00,0x00,0x7f,0x7f,0x7f,0x7f,0x00,0x00,0x00,0x00,0x7f,0x7f,0x7f,0x7f,0x00,0x00,0x00,0x00,0xfe,0xfe,0xfe,0xfe,0x00,0x00,0x00,0x00,0xfe,0xfe,0xfe,0xfe,0x00,0x00 -+// 12308 〔 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x02,0x00 -+// 12309 〕 ; -+,0x00,0x20,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12310 〖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x42,0x44,0x44,0x48,0x48,0x48,0x48,0x48,0x48,0x44,0x44,0x42,0x7f,0x00 -+// 12311 〗 ; -+,0x00,0x7f,0x21,0x11,0x11,0x09,0x09,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12312 〘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12313 〙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12314 〚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12315 〛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12316 〜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12317 〝 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xb0,0x90,0x88,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12318 〞 ; -+,0x00,0x00,0x02,0x03,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12319 〟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12320 〠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12321 〡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 12322 〢 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 12323 〣 ; -+,0x00,0x00,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x08,0x8c,0xc8,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x00 -+// 12324 〤 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x01,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x60,0x40,0x80,0xc0,0x60,0x30,0x20,0x00,0x00,0x00,0x00,0x00 -+// 12325 〥 ; -+,0x00,0x00,0x02,0x03,0x04,0x04,0x02,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x40,0x80,0xc0,0x20,0x20,0x20,0x20,0x20,0xc0,0x00,0x00 -+// 12326 〦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x84,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12327 〧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x84,0xfe,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x00,0x00 -+// 12328 〨 ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x80,0x80,0x84,0xfe,0x00,0x00,0x08,0xfc,0x00,0x00,0x04,0xfe,0x00,0x00,0x00 -+// 12329 〩 ; -+,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x09,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x80,0xc0,0x80,0x04,0xfe,0x10,0x10,0x10,0x90,0x60,0x30,0x58,0x8c,0x08,0x00,0x00 -+// 12330 〪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12331 〫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12332 〬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12333 〭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12334 〮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12335 〯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12336 〰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12337 〱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12338 〲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12339 〳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12340 〴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12341 〵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12342 〶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12343 〷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12344 〸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12345 〹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12346 〺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12347 〻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12348 〼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12349 〽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12350 〾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12351 〿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12352 ぀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12353 ぁ ; -+,0x00,0x00,0x00,0x02,0x02,0x12,0x0f,0x02,0x03,0x06,0x0a,0x11,0x11,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x10,0xe0,0x00,0x40,0xf0,0x48,0x44,0x84,0x04,0x88,0x10,0x60 -+// 12354 あ ; -+,0x02,0x02,0x02,0x23,0x1e,0x02,0x02,0x0f,0x12,0x21,0x21,0x20,0x11,0x0e,0x00,0x00,0x00,0x00,0x30,0xc0,0x00,0x20,0x20,0xf8,0x24,0x42,0x42,0x82,0x42,0x04,0x18,0x00 -+// 12355 ぃ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x05,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x04,0x0c,0x08,0x80,0x00,0x00,0x00,0x00 -+// 12356 い ; -+,0x00,0x00,0x00,0x10,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x0a,0x06,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x04,0x02,0x02,0x06,0x04,0x80,0x00,0x00,0x00,0x00,0x00 -+// 12357 ぅ ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0xe0,0x10,0x10,0x10,0x20,0x40,0x80,0x00,0x00,0x00 -+// 12358 う ; -+,0x00,0x07,0x00,0x00,0x00,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0xc0,0x20,0xc0,0x00,0xf0,0x08,0x08,0x08,0x08,0x10,0x10,0x60,0x80,0x00,0x00 -+// 12359 ぇ ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x0e,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x80,0x40,0x80,0x00,0xe0,0x40,0x80,0x80,0x40,0x40,0x20,0x1c,0x00 -+// 12360 え ; -+,0x00,0x07,0x00,0x00,0x00,0x01,0x1e,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0x80,0x40,0x80,0x00,0xe0,0x40,0x80,0x00,0xc0,0x40,0x40,0x40,0x20,0x1e,0x00 -+// 12361 ぉ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x1f,0x02,0x03,0x02,0x06,0x0a,0x1a,0x0a,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x82,0x04,0xf0,0x08,0x04,0x04,0x04,0x98,0x60,0x00 -+// 12362 お ; -+,0x00,0x02,0x02,0x03,0x1e,0x02,0x02,0x03,0x06,0x0a,0x12,0x32,0x1a,0x06,0x02,0x00,0x00,0x00,0x08,0xc4,0x02,0x0c,0xe0,0x10,0x08,0x04,0x04,0x04,0x88,0x70,0x00,0x00 -+// 12363 か ; -+,0x00,0x01,0x01,0x01,0x01,0x21,0x1e,0x02,0x02,0x02,0x04,0x04,0x08,0x11,0x20,0x00,0x00,0x00,0x00,0x10,0x08,0xe4,0x22,0x2a,0x26,0x20,0x20,0x40,0x40,0x40,0x80,0x00 -+// 12364 が ; -+,0x00,0x02,0x02,0x02,0x02,0x43,0x3c,0x04,0x04,0x04,0x08,0x08,0x10,0x22,0x41,0x00,0x08,0x04,0x12,0x08,0x04,0xc0,0x50,0x48,0x44,0x42,0x4a,0x86,0x80,0x80,0x00,0x00 -+// 12365 き ; -+,0x01,0x01,0x01,0x01,0x0e,0x00,0x01,0x0e,0x00,0x01,0x00,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x30,0xc0,0x80,0x70,0xc0,0x20,0x20,0xf0,0x10,0x00,0x00,0x00,0xe0,0x00 -+// 12366 ぎ ; -+,0x02,0x02,0x02,0x03,0x1d,0x00,0x03,0x1c,0x00,0x03,0x00,0x10,0x10,0x08,0x07,0x00,0x00,0x04,0x62,0x89,0x04,0xe2,0x80,0x40,0x40,0xe0,0x20,0x00,0x00,0x00,0xc0,0x00 -+// 12367 く ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x00 -+// 12368 ぐ ; -+,0x00,0x01,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x04,0x82,0x91,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00 -+// 12369 け ; -+,0x00,0x00,0x08,0x08,0x10,0x10,0x13,0x20,0x20,0x20,0x28,0x28,0x10,0x10,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0x3c,0xe0,0x20,0x20,0x20,0x20,0x20,0x20,0x40,0x80,0x00 -+// 12370 げ ; -+,0x00,0x00,0x08,0x08,0x10,0x10,0x13,0x20,0x20,0x20,0x28,0x28,0x10,0x10,0x00,0x00,0x04,0x42,0x29,0x24,0x22,0x38,0xe0,0x20,0x20,0x20,0x20,0x20,0x20,0x40,0x80,0x00 -+// 12371 こ ; -+,0x00,0x00,0x08,0x07,0x00,0x01,0x02,0x00,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x00,0x00,0x00 -+// 12372 ご ; -+,0x00,0x00,0x08,0x07,0x00,0x01,0x02,0x00,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0xf2,0x41,0x88,0x04,0x02,0x00,0x00,0x00,0x08,0xfc,0x00,0x00,0x00 -+// 12373 さ ; -+,0x00,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x18,0x60,0x80,0x80,0x40,0x20,0xf0,0x10,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 12374 ざ ; -+,0x00,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x04,0x02,0x69,0x84,0x82,0x40,0x20,0xf0,0x10,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 12375 し ; -+,0x00,0x0c,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 12376 じ ; -+,0x00,0x0c,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x04,0x12,0x08,0x04,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 12377 す ; -+,0x00,0x01,0x00,0x00,0x3f,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x01,0x06,0x00,0x80,0x80,0x80,0xfc,0x80,0x80,0xc0,0xc0,0xc0,0x40,0x40,0x80,0x80,0x00,0x00 -+// 12378 ず ; -+,0x01,0x00,0x00,0x00,0x3f,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x01,0x06,0x84,0x82,0x89,0x84,0xfa,0x80,0x80,0xc0,0xc0,0xc0,0x40,0x40,0x80,0x80,0x00,0x00 -+// 12379 せ ; -+,0x00,0x00,0x08,0x04,0x04,0x05,0x3e,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x40,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xa0,0x40,0x00,0x00,0xf8,0x00 -+// 12380 ぜ ; -+,0x00,0x00,0x08,0x04,0x04,0x05,0x3e,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x04,0x42,0x29,0x24,0x22,0xf8,0x20,0x20,0x20,0x20,0xa0,0x40,0x00,0x00,0xf8,0x00 -+// 12381 そ ; -+,0x00,0x08,0x07,0x00,0x01,0x02,0x04,0x0f,0x11,0x22,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x00,0x08,0x7c,0x80,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00 -+// 12382 ぞ ; -+,0x00,0x08,0x07,0x00,0x01,0x02,0x04,0x0f,0x11,0x22,0x02,0x02,0x01,0x00,0x00,0x00,0x04,0x12,0xc9,0x84,0x00,0x08,0x7c,0x80,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00 -+// 12383 た ; -+,0x00,0x02,0x02,0x23,0x1e,0x04,0x04,0x04,0x08,0x08,0x09,0x11,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0xf0,0x18,0x20,0x00,0x00,0x00,0x00,0x84,0x7e,0x00,0x00 -+// 12384 だ ; -+,0x00,0x02,0x02,0x23,0x1e,0x04,0x04,0x04,0x08,0x08,0x09,0x11,0x10,0x20,0x00,0x00,0x04,0x02,0x09,0x84,0x02,0xf0,0x18,0x20,0x00,0x00,0x00,0x00,0x84,0x7e,0x00,0x00 -+// 12385 ち ; -+,0x00,0x01,0x01,0x01,0x01,0x3f,0x02,0x03,0x02,0x06,0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0xe0,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x10,0x10,0x60,0x80 -+// 12386 ぢ ; -+,0x00,0x02,0x02,0x02,0x03,0x3e,0x04,0x05,0x06,0x0c,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x04,0x02,0x89,0xc4,0x02,0x00,0xe0,0x10,0x08,0x08,0x08,0x10,0x10,0x60,0x80 -+// 12387 っ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x90,0x08,0x08,0x08,0x10,0x20,0xc0,0x00 -+// 12388 つ ; -+,0x00,0x00,0x00,0x00,0x03,0x3c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0xf0,0x08,0x04,0x04,0x04,0x04,0x04,0x08,0x10,0x60,0x80,0x00,0x00 -+// 12389 づ ; -+,0x00,0x00,0x00,0x01,0x06,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x09,0xe4,0x12,0x08,0x08,0x08,0x08,0x08,0x10,0x20,0xc0,0x00,0x00,0x00 -+// 12390 て ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x10,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x7e,0xe0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 12391 で ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x10,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x7e,0xe0,0x84,0x02,0x09,0x04,0x02,0x00,0x00,0x00,0xf8,0x00 -+// 12392 と ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x80,0x80,0x98,0xb0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 12393 ど ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x04,0x02,0x09,0x84,0x82,0x98,0xb0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 12394 な ; -+,0x00,0x00,0x06,0x02,0x03,0x3e,0x12,0x04,0x04,0x08,0x08,0x11,0x22,0x02,0x01,0x00,0x00,0x00,0x10,0x08,0x84,0x0c,0x20,0x20,0x20,0x20,0x20,0xf0,0x28,0x24,0xc2,0x00 -+// 12395 に ; -+,0x00,0x10,0x08,0x08,0x09,0x10,0x10,0x10,0x20,0x25,0x25,0x29,0x28,0x30,0x20,0x00,0x00,0x00,0x00,0x0e,0xf4,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x84,0x7e,0x00,0x00 -+// 12396 ぬ ; -+,0x00,0x01,0x00,0x10,0x08,0x0b,0x0c,0x08,0x18,0x25,0x25,0x22,0x22,0x25,0x18,0x00,0x00,0x00,0x80,0x80,0x80,0xf8,0x84,0x82,0x82,0x02,0x3a,0x46,0x4a,0x31,0x00,0x00 -+// 12397 ね ; -+,0x00,0x08,0x04,0x04,0x04,0x0f,0x34,0x05,0x06,0x0c,0x14,0x24,0x54,0x14,0x0c,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x88,0x08,0x08,0x08,0x08,0x78,0x8c,0x92,0x61,0x00 -+// 12398 の ; -+,0x00,0x00,0x00,0x03,0x0c,0x10,0x21,0x21,0x21,0x22,0x22,0x14,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x98,0x84,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x60,0x00 -+// 12399 は ; -+,0x00,0x10,0x08,0x08,0x08,0x13,0x10,0x10,0x20,0x24,0x24,0x29,0x2a,0x32,0x21,0x00,0x00,0x40,0x20,0x28,0x3c,0xe0,0x20,0x20,0x20,0x20,0x20,0xe0,0x38,0x24,0xc2,0x00 -+// 12400 ば ; -+,0x00,0x10,0x08,0x08,0x08,0x13,0x10,0x10,0x20,0x24,0x24,0x29,0x2a,0x32,0x21,0x00,0x04,0x42,0x29,0x24,0x3a,0xe0,0x20,0x20,0x20,0x20,0x20,0xe0,0x38,0x24,0xc2,0x00 -+// 12401 ぱ ; -+,0x00,0x10,0x08,0x08,0x08,0x13,0x10,0x10,0x20,0x24,0x24,0x29,0x2a,0x32,0x21,0x00,0x06,0x49,0x29,0x26,0x38,0xe0,0x20,0x20,0x20,0x20,0x20,0xe0,0x38,0x24,0xc2,0x00 -+// 12402 ひ ; -+,0x00,0x00,0x01,0x1f,0x02,0x04,0x04,0x08,0x08,0x10,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x14,0x12,0x10,0x10,0x20,0x20,0x20,0x40,0x80,0x00 -+// 12403 び ; -+,0x00,0x00,0x01,0x1f,0x02,0x04,0x04,0x08,0x08,0x10,0x10,0x10,0x10,0x08,0x07,0x00,0x04,0x02,0x09,0x14,0x12,0x18,0x14,0x12,0x10,0x10,0x20,0x20,0x20,0x40,0x80,0x00 -+// 12404 ぴ ; -+,0x00,0x00,0x01,0x1f,0x02,0x04,0x04,0x08,0x08,0x10,0x10,0x10,0x10,0x08,0x07,0x00,0x06,0x09,0x09,0x16,0x10,0x18,0x14,0x12,0x10,0x10,0x20,0x20,0x20,0x40,0x80,0x00 -+// 12405 ふ ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x02,0x04,0x3c,0x13,0x00,0x00,0x00,0x00,0xc0,0x60,0x80,0x00,0x00,0x80,0x70,0xcc,0x42,0x46,0x48,0x40,0x80,0x00 -+// 12406 ぶ ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x02,0x04,0x3c,0x13,0x00,0x00,0x04,0x02,0xc9,0x64,0x82,0x00,0x00,0x80,0x70,0xcc,0x42,0x46,0x48,0x40,0x80,0x00 -+// 12407 ぷ ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x02,0x04,0x3c,0x13,0x00,0x00,0x06,0x09,0xc9,0x66,0x80,0x00,0x00,0x80,0x70,0xcc,0x42,0x46,0x48,0x40,0x80,0x00 -+// 12408 へ ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12409 べ ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x09,0x84,0x42,0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12410 ぺ ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x12,0x12,0x8c,0x40,0x20,0x10,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12411 ほ ; -+,0x00,0x10,0x0b,0x08,0x08,0x10,0x13,0x10,0x20,0x24,0x24,0x28,0x29,0x31,0x20,0x00,0x00,0x38,0xe0,0x20,0x20,0x20,0xfc,0x20,0x20,0x20,0x20,0xe0,0x38,0x24,0xc2,0x00 -+// 12412 ぼ ; -+,0x00,0x10,0x0b,0x08,0x08,0x10,0x13,0x10,0x20,0x24,0x24,0x28,0x29,0x31,0x20,0x00,0x04,0x72,0xa9,0x24,0x22,0x20,0xfc,0x20,0x20,0x20,0x20,0xe0,0x38,0x24,0xc2,0x00 -+// 12413 ぽ ; -+,0x00,0x10,0x0b,0x08,0x08,0x10,0x13,0x10,0x20,0x24,0x24,0x28,0x29,0x31,0x20,0x00,0x00,0x76,0xa9,0x29,0x26,0x20,0xf8,0x20,0x20,0x20,0x20,0xe0,0x38,0x24,0xc2,0x00 -+// 12414 ま ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x0f,0x00,0x00,0x00,0x0e,0x11,0x10,0x0f,0x00,0x00,0x80,0x80,0xf8,0x80,0x80,0xf0,0x80,0x80,0x80,0x80,0x80,0xe0,0x98,0x04,0x00 -+// 12415 み ; -+,0x00,0x00,0x09,0x06,0x00,0x00,0x00,0x00,0x01,0x0d,0x13,0x22,0x24,0x18,0x00,0x00,0x00,0x00,0xc0,0x40,0x40,0x80,0x88,0x88,0x08,0x08,0xd0,0x38,0x14,0x22,0x40,0x80 -+// 12416 む ; -+,0x00,0x04,0x02,0x02,0x03,0x3e,0x02,0x0e,0x12,0x12,0x12,0x0e,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x48,0xe4,0x02,0x06,0x08,0x00,0x00,0x08,0x08,0x08,0x0c,0xf8,0x00 -+// 12417 め ; -+,0x00,0x00,0x08,0x08,0x08,0x0f,0x08,0x14,0x22,0x21,0x22,0x24,0x18,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x40,0xe0,0x90,0x88,0x84,0x04,0x84,0x08,0x08,0x10,0x60,0x00 -+// 12418 も ; -+,0x01,0x01,0x01,0x01,0x11,0x0f,0x02,0x02,0x22,0x1f,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x08,0x04,0x64,0x84,0x04,0x04,0x04,0x04,0xf8,0x00 -+// 12419 ゃ ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x12,0x0f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x98,0x24,0xc4,0x04,0x04,0xb8,0x80,0x40,0x40,0x20 -+// 12420 や ; -+,0x00,0x01,0x00,0x00,0x03,0x04,0x08,0x08,0x3f,0x04,0x04,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0xc0,0x18,0xe4,0x02,0x02,0x44,0x38,0x00,0x00,0x80,0x40 -+// 12421 ゅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x09,0x0a,0x0a,0x0c,0x0d,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x80,0x40,0x40,0xf0,0x48,0x44,0x44,0x44,0x44,0xc8,0x70,0x80,0x00 -+// 12422 ゆ ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x11,0x12,0x12,0x12,0x14,0x15,0x18,0x08,0x00,0x01,0x00,0x40,0x20,0x20,0x7c,0xa2,0x22,0x22,0x22,0x22,0x22,0x22,0xac,0x70,0x40,0x80 -+// 12423 ょ ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x80,0x98,0xe0,0x80,0x80,0x80,0x80,0xe0,0x98,0x84,0x00,0x00 -+// 12424 よ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x10,0x20,0x21,0x1e,0x00,0x00,0x00,0x80,0x80,0x88,0x9c,0xe0,0x80,0x80,0x80,0x80,0xe0,0x98,0x04,0x02,0x00 -+// 12425 ら ; -+,0x00,0x0e,0x01,0x01,0x02,0x04,0x08,0x08,0x08,0x09,0x0a,0x0c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x88,0x04,0x04,0x04,0x18,0x60,0x80 -+// 12426 り ; -+,0x00,0x08,0x04,0x04,0x05,0x05,0x09,0x0a,0x0a,0x0c,0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x40,0xa0,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x00 -+// 12427 る ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x01,0x02,0x02,0x01,0x00,0x00,0x20,0xd0,0x10,0x20,0x40,0x80,0x78,0x84,0x02,0x02,0xc2,0x22,0x14,0xf8,0x00 -+// 12428 れ ; -+,0x00,0x04,0x04,0x04,0x07,0x3c,0x05,0x06,0x04,0x0c,0x14,0x14,0x34,0x0c,0x04,0x00,0x00,0x00,0x10,0x28,0x44,0x84,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x04,0x00,0x00 -+// 12429 ろ ; -+,0x00,0x01,0x0e,0x00,0x00,0x01,0x02,0x07,0x0c,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x20,0x40,0x80,0x00,0x70,0x88,0x04,0x04,0x04,0x08,0x08,0x30,0xc0,0x00 -+// 12430 ゎ ; -+,0x00,0x00,0x04,0x02,0x02,0x03,0x1e,0x03,0x06,0x0a,0x12,0x1a,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x78,0x84,0x04,0x04,0x04,0x08,0x10,0x60,0x00,0x00 -+// 12431 わ ; -+,0x00,0x08,0x04,0x04,0x27,0x1c,0x05,0x06,0x04,0x0c,0x14,0x24,0x34,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0xf0,0x0c,0x02,0x02,0x02,0x02,0x04,0x08,0x30,0x00 -+// 12432 ゐ ; -+,0x00,0x00,0x01,0x0e,0x00,0x00,0x00,0x01,0x07,0x09,0x11,0x22,0x1c,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x40,0x80,0x80,0xf8,0x84,0x02,0x02,0x32,0x4a,0x44,0x38,0x00 -+// 12433 ゑ ; -+,0x00,0x07,0x00,0x00,0x01,0x03,0x04,0x09,0x12,0x01,0x01,0x02,0x0c,0x13,0x20,0x00,0x00,0xe0,0x40,0x80,0xf0,0x08,0x08,0xc8,0x50,0xe0,0x00,0x00,0x1c,0x22,0xc4,0x00 -+// 12434 を ; -+,0x00,0x01,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x80,0xf0,0x80,0x84,0x06,0xe8,0x30,0x60,0xa0,0x20,0x20,0x00,0xfc,0x00 -+// 12435 ん ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x40,0xa0,0x20,0x11,0x11,0x12,0x12,0x0c,0x00 -+// 12436 ゔ ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x01,0x62,0x18,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x00 -+// 12437 ゕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12438 ゖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12439 ゗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12440 ゘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12441 ゙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12442 ゚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12443 ゛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x24,0x22,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12444 ゜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x12,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12445 ゝ ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x10,0x18,0x0c,0x0c,0x38,0x00,0x00,0x00,0x00 -+// 12446 ゞ ; -+,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x24,0x90,0x48,0x20,0x10,0x18,0x18,0x30,0x00,0x00,0x00,0x00 -+// 12447 ゟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12448 ゠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12449 ァ ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x30,0xc0,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 12450 ア ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0xfc,0x04,0x08,0x10,0x60,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 12451 ィ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 12452 イ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x40,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 12453 ゥ ; -+,0x00,0x00,0x00,0x00,0x08,0x0f,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x80,0x88,0xfc,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00 -+// 12454 ウ ; -+,0x00,0x00,0x00,0x10,0x1f,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x80,0x84,0xfe,0x04,0x04,0x08,0x08,0x10,0x10,0x20,0x40,0x80,0x00,0x00 -+// 12455 ェ ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf8,0x80,0x80,0x80,0x80,0x88,0xfc,0x00,0x00,0x00,0x00,0x00 -+// 12456 エ ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x80,0x80,0x80,0x80,0x80,0x84,0xfe,0x00,0x00,0x00,0x00 -+// 12457 ォ ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x04,0x08,0x10,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x80,0x88,0xfc,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00 -+// 12458 オ ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x21,0x00,0x00,0x00,0x40,0x40,0x40,0x44,0xfe,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x00 -+// 12459 カ ; -+,0x00,0x01,0x01,0x01,0x1f,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0xa0,0x40,0x00 -+// 12460 ガ ; -+,0x00,0x01,0x01,0x01,0x1f,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x04,0x02,0x09,0x04,0xf2,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0xa0,0x40,0x00 -+// 12461 キ ; -+,0x00,0x04,0x04,0x02,0x02,0x1f,0x01,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x80,0x00,0x80,0xb8,0xc0,0x40,0x20,0x20,0x10,0x10,0x00 -+// 12462 ギ ; -+,0x00,0x04,0x04,0x02,0x02,0x1f,0x01,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x09,0x04,0x72,0x80,0x00,0x80,0xb8,0xc0,0x40,0x20,0x20,0x10,0x10,0x00 -+// 12463 ク ; -+,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0x01,0x06,0x18,0x00,0x00,0x00,0x00,0x08,0xfc,0x08,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00,0x00 -+// 12464 グ ; -+,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0x01,0x06,0x18,0x00,0x04,0x02,0x09,0x04,0xf2,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x00,0x00,0x00,0x00 -+// 12465 ケ ; -+,0x00,0x04,0x04,0x04,0x07,0x08,0x10,0x20,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x08,0xfc,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12466 ゲ ; -+,0x00,0x04,0x04,0x04,0x07,0x08,0x10,0x20,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x04,0x02,0x09,0x04,0xfa,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12467 コ ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x08,0x08,0x08,0x10,0x10,0xf8,0x00,0x00,0x00,0x00,0x00 -+// 12468 ゴ ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x09,0x04,0x12,0xf8,0x10,0x10,0x10,0x20,0xf0,0x00,0x00,0x00,0x00,0x00 -+// 12469 サ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x24,0xfe,0x20,0x20,0x20,0x20,0x20,0x40,0x40,0x80,0x00 -+// 12470 ザ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x00,0x01,0x00,0x04,0x02,0x49,0x44,0x42,0x40,0x44,0xfe,0x40,0x40,0x40,0x40,0x80,0x80,0x00,0x00 -+// 12471 シ ; -+,0x00,0x00,0x0c,0x02,0x01,0x18,0x04,0x02,0x00,0x00,0x00,0x01,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00 -+// 12472 ジ ; -+,0x00,0x00,0x00,0x0c,0x02,0x01,0x18,0x04,0x02,0x00,0x00,0x00,0x01,0x12,0x0c,0x00,0x04,0x02,0x09,0x04,0x02,0x00,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00 -+// 12473 ス ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x20,0x20,0x40,0x80,0x80,0x40,0x20,0x18,0x08,0x00,0x00 -+// 12474 ズ ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x04,0x02,0x09,0x04,0xf2,0x10,0x20,0x20,0x40,0x80,0xc0,0x20,0x10,0x0c,0x04,0x00 -+// 12475 セ ; -+,0x00,0x02,0x02,0x02,0x02,0x03,0x3e,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x20,0x40,0x00,0x00,0x00,0x10,0xf8,0x00,0x00 -+// 12476 ゼ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x03,0x3e,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x04,0x02,0x09,0x04,0x02,0x00,0xf0,0x10,0x20,0x40,0x00,0x00,0x10,0xf8,0x00,0x00 -+// 12477 ソ ; -+,0x00,0x00,0x00,0x10,0x08,0x04,0x06,0x02,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00,0x00 -+// 12478 ゾ ; -+,0x00,0x00,0x00,0x00,0x20,0x10,0x08,0x0c,0x04,0x00,0x00,0x00,0x01,0x02,0x0c,0x30,0x04,0x02,0x09,0x24,0x12,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x00,0x00,0x00,0x00 -+// 12479 タ ; -+,0x00,0x02,0x02,0x03,0x02,0x04,0x04,0x08,0x12,0x01,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x40,0x00,0x00,0x00,0x00 -+// 12480 ダ ; -+,0x00,0x04,0x04,0x07,0x04,0x08,0x08,0x10,0x24,0x02,0x01,0x02,0x04,0x18,0x60,0x00,0x04,0x02,0x29,0xf4,0x22,0x20,0x40,0x40,0x80,0x80,0x00,0x80,0x00,0x00,0x00,0x00 -+// 12481 チ ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x10,0xf8,0x80,0x80,0x84,0xfe,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12482 ヂ ; -+,0x00,0x00,0x00,0x01,0x1f,0x01,0x01,0x7f,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x04,0x02,0x29,0xf4,0x02,0x00,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12483 ッ ; -+,0x00,0x00,0x00,0x00,0x02,0x01,0x10,0x0c,0x04,0x00,0x00,0x00,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00 -+// 12484 ツ ; -+,0x00,0x00,0x02,0x01,0x10,0x08,0x04,0x04,0x00,0x00,0x00,0x01,0x02,0x04,0x18,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x10,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00 -+// 12485 ヅ ; -+,0x00,0x00,0x04,0x02,0x21,0x11,0x08,0x08,0x00,0x00,0x01,0x02,0x04,0x08,0x30,0x00,0x04,0x02,0x09,0x14,0x12,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12486 テ ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x10,0xf8,0x00,0x00,0x04,0xfe,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12487 デ ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x04,0x02,0x49,0xe4,0x02,0x00,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12488 ト ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12489 ド ; -+,0x00,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x04,0x02,0x09,0x04,0x02,0x00,0x80,0x40,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12490 ナ ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x00,0x00,0x80,0x80,0x80,0x84,0xfe,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12491 ニ ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf8,0x00,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x00,0x00 -+// 12492 ヌ ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x18,0x00,0x00,0x08,0xfc,0x08,0x10,0x10,0x20,0xa0,0x40,0x60,0x98,0x08,0x00,0x00,0x00,0x00 -+// 12493 ネ ; -+,0x01,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x00,0xe0,0x40,0x80,0x80,0xa0,0x98,0x88,0x80,0x80,0x80,0x80,0x00 -+// 12494 ノ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 12495 ハ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x08,0x08,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x00 -+// 12496 バ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0x00,0x04,0x02,0x09,0x04,0x22,0x10,0x08,0x08,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x00 -+// 12497 パ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x06,0x09,0x09,0x26,0x10,0x08,0x08,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x00 -+// 12498 ヒ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0xc0,0x00,0x00,0x00,0x00,0x10,0xf8,0x00,0x00,0x00 -+// 12499 ビ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x13,0x1c,0x10,0x10,0x10,0x10,0x0f,0x00,0x00,0x04,0x02,0x09,0x04,0x02,0x80,0xc0,0x00,0x00,0x00,0x00,0x00,0x40,0xe0,0x00,0x00 -+// 12500 ピ ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x13,0x1c,0x10,0x10,0x10,0x10,0x0f,0x00,0x00,0x00,0x06,0x09,0x09,0x06,0x80,0xc0,0x00,0x00,0x00,0x00,0x00,0x40,0xe0,0x00,0x00 -+// 12501 フ ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0xf8,0x10,0x20,0x20,0x40,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12502 ブ ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x04,0x02,0x09,0x24,0xf2,0x20,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12503 プ ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x06,0x09,0x29,0xf6,0x20,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12504 ヘ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x07,0x00,0x00,0x00,0x00,0x00 -+// 12505 ベ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x09,0x04,0x02,0x00,0x00,0x80,0x60,0x18,0x07,0x00,0x00,0x00,0x00,0x00 -+// 12506 ペ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x12,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x09,0x09,0x06,0x00,0x00,0x80,0x60,0x18,0x07,0x00,0x00,0x00,0x00,0x00 -+// 12507 ホ ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x04,0x04,0x08,0x10,0x00,0x02,0x01,0x00,0x00,0x80,0x80,0x80,0x84,0xfe,0x80,0x80,0x90,0x88,0x84,0x84,0x80,0x80,0x00,0x00 -+// 12508 ボ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x04,0x04,0x08,0x10,0x02,0x01,0x00,0x04,0x82,0x89,0x84,0x82,0x84,0xfe,0x80,0x80,0x90,0x88,0x84,0x84,0x80,0x00,0x00 -+// 12509 ポ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x04,0x04,0x08,0x10,0x02,0x01,0x00,0x06,0x89,0x89,0x86,0x80,0x84,0xfe,0x80,0x80,0x90,0x88,0x84,0x84,0x80,0x00,0x00 -+// 12510 マ ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x08,0x10,0x10,0x20,0xc0,0x40,0x20,0x20,0x00,0x00,0x00 -+// 12511 ミ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x0e,0x01,0x00,0x00,0x0e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x10,0x00,0x80,0x60,0x20,0x00,0xc0,0x30,0x10,0x00,0x00 -+// 12512 ム ; -+,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x08,0x1f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x08,0x7c,0x84,0x04,0x00 -+// 12513 メ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x10,0x08,0x10,0x10,0x20,0xc0,0x40,0xb0,0x10,0x00,0x00,0x00,0x00,0x00 -+// 12514 モ ; -+,0x00,0x00,0x01,0x1f,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0xf0,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x00,0x00 -+// 12515 ャ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x08,0x90,0x80,0x40,0x40,0x20,0x10 -+// 12516 ヤ ; -+,0x00,0x08,0x04,0x04,0x02,0x02,0x3f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x08,0x90,0x80,0x40,0x40,0x20,0x20,0x10,0x00 -+// 12517 ュ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x20,0x24,0xfe,0x00,0x00,0x00 -+// 12518 ユ ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x08,0x08,0x08,0x10,0x10,0x12,0xff,0x00,0x00,0x00,0x00,0x00 -+// 12519 ョ ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0f,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0xf0,0x10,0x10,0xf0,0x10,0x00,0x00,0x00,0x00,0x00 -+// 12520 ヨ ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00,0x00,0x00,0x00 -+// 12521 ラ ; -+,0x00,0x00,0x07,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x00,0x00,0x20,0xf0,0x00,0x08,0xfc,0x08,0x08,0x10,0x10,0x20,0x40,0x80,0x00,0x00,0x00 -+// 12522 リ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x40,0x40,0x80,0x80,0x00,0x00,0x00 -+// 12523 ル ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x42,0x44,0x48,0x50,0x60,0x00,0x00,0x00 -+// 12524 レ ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12525 ロ ; -+,0x00,0x00,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x10,0x20,0x20,0xf0,0x00,0x00,0x00,0x00,0x00 -+// 12526 ヮ ; -+,0x00,0x00,0x08,0x0f,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00 -+// 12527 ワ ; -+,0x00,0x00,0x10,0x1f,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x08,0xfc,0x08,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00 -+// 12528 ヰ ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xa0,0xf0,0x80,0x80,0x80,0x84,0xfe,0x80,0x80,0x80,0x80,0x80,0x00 -+// 12529 ヱ ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x20,0x40,0x80,0x80,0x80,0x84,0xfe,0x00,0x00,0x00,0x00,0x00 -+// 12530 ヲ ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x08,0xfc,0x08,0x08,0xfc,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00 -+// 12531 ン ; -+,0x00,0x00,0x08,0x04,0x03,0x01,0x00,0x00,0x00,0x00,0x01,0x12,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12532 ヴ ; -+,0x00,0x01,0x01,0x11,0x1f,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x04,0x02,0x09,0x14,0xfa,0x10,0x10,0x10,0x20,0x20,0x40,0x80,0x00,0x00,0x00,0x00 -+// 12533 ヵ ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x90,0xf8,0x90,0x90,0x10,0x10,0x10,0xa0,0x40,0x00,0x00,0x00 -+// 12534 ヶ ; -+,0x00,0x00,0x02,0x02,0x02,0x03,0x04,0x08,0x10,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xf0,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12535 ヷ ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xbc,0x05,0x00,0x00,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12536 ヸ ; -+,0x00,0x00,0x00,0x00,0x03,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xf2,0x21,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x20,0x00,0x00 -+// 12537 ヹ ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf5,0x44,0x08,0x00,0x00,0x00,0x40,0xff,0x00,0x00,0x00,0x00 -+// 12538 ヺ ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf4,0x04,0x04,0x08,0xf8,0x10,0x00,0x20,0x40,0x00,0x00,0x00,0x00 -+// 12539 ・ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00 -+// 12540 ー ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12541 ヽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12542 ヾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x49,0x24,0x12,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12543 ヿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12544 ㄀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12545 ㄁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12546 ㄂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12547 ㄃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12548 ㄄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12549 ㄅ ; -+,0x00,0x04,0x04,0x08,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0x88,0x50,0x20 -+// 12550 ㄆ ; -+,0x00,0x02,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x08,0x88,0x50,0x20,0x50,0x88,0x08,0x00,0x00 -+// 12551 ㄇ ; -+,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00 -+// 12552 ㄈ ; -+,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00 -+// 12553 ㄉ ; -+,0x00,0x02,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0x04,0x04,0x04,0x08,0x88,0x50,0x20 -+// 12554 ㄊ ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x01,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0xfe,0x80,0x80,0x00,0x00,0x00,0x10,0xf8,0x04,0x00,0x00 -+// 12555 ㄋ ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x20,0x40,0x80,0xfc,0x04,0x04,0x04,0x04,0x04,0x08,0x88,0x50,0x20 -+// 12556 ㄌ ; -+,0x00,0x00,0x04,0x04,0x08,0x0f,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x80,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0x04,0x04,0x04,0x04,0x08,0x28,0x10 -+// 12557 ㄍ ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x40,0x40,0x20,0x20,0x10,0x10,0x00 -+// 12558 ㄎ ; -+,0x00,0x00,0x3f,0x01,0x01,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x10,0x50,0x20 -+// 12559 ㄏ ; -+,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12560 ㄐ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0xd0,0x10,0x10,0x10,0x10,0x10,0x10 -+// 12561 ㄑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x80,0x80,0x00,0x00,0x00,0x80,0x80,0x40,0x40,0x20,0x20,0x00 -+// 12562 ㄒ ; -+,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 12563 ㄓ ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x80,0x80,0x88,0x88,0x88,0x88,0x88,0x88,0xf8,0x80,0x80,0x80,0xfe,0x00,0x00 -+// 12564 ㄔ ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x80,0x00,0x20,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 12565 ㄕ ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12566 ㄖ ; -+,0x00,0x00,0x07,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0x90,0x50,0x10,0x10,0x10,0x10,0xf0,0x00,0x00 -+// 12567 ㄗ ; -+,0x00,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x10,0x90,0x60,0x00,0x00,0x00,0x00,0x00 -+// 12568 ㄘ ; -+,0x00,0x01,0x01,0x01,0x3f,0x02,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xf8,0x08,0x08,0x10,0x10,0x20,0x40,0x80 -+// 12569 ㄙ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x1f,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0xf8,0x04,0x00,0x00 -+// 12570 ㄚ ; -+,0x00,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x10,0x20,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 12571 ㄛ ; -+,0x00,0x00,0x3f,0x00,0x00,0x00,0x07,0x08,0x10,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x04,0x08,0xf0,0x00,0x00 -+// 12572 ㄜ ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x07,0x08,0x10,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x80,0x80,0x80,0xfe,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x04,0x08,0xf0,0x00 -+// 12573 ㄝ ; -+,0x00,0x00,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x40,0x40,0x80,0x00,0xf8,0x00,0x00 -+// 12574 ㄞ ; -+,0x00,0x00,0x3f,0x04,0x04,0x08,0x0f,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0x04,0x04,0x08,0x08,0x10,0x00 -+// 12575 ㄟ ; -+,0x00,0x00,0x0e,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x40,0x20,0x10,0x0c,0x00 -+// 12576 ㄠ ; -+,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x0f,0x00,0x01,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x20,0xc0,0x80,0x00,0x20,0x10,0xf8,0x08,0x00,0x00 -+// 12577 ㄡ ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0xf8,0x08,0x10,0x10,0x20,0xa0,0x40,0x40,0xa0,0x10,0x00,0x00,0x00 -+// 12578 ㄢ ; -+,0x00,0x1f,0x04,0x04,0x04,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x20,0x20,0xfc,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00 -+// 12579 ㄣ ; -+,0x00,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x08,0x08,0x10,0x00 -+// 12580 ㄤ ; -+,0x00,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x02,0x02,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x3e,0x00 -+// 12581 ㄥ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00 -+// 12582 ㄦ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x30,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x42,0x42,0x3e,0x00 -+// 12583 ㄧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 12584 ㄨ ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x08,0x08,0x08,0x10,0x10,0x20,0xa0,0x40,0x40,0xa0,0x10,0x08,0x00,0x00,0x00 -+// 12585 ㄩ ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x3c,0xc4,0x04,0x00,0x00,0x00 -+// 12586 ㄪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12587 ㄫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12588 ㄬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12589 ㄭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12590 ㄮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12591 ㄯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12592 ㄰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12593 ㄱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12594 ㄲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12595 ㄳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12596 ㄴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12597 ㄵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12598 ㄶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12599 ㄷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12600 ㄸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12601 ㄹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12602 ㄺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12603 ㄻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12604 ㄼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12605 ㄽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12606 ㄾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12607 ㄿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12608 ㅀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12609 ㅁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12610 ㅂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12611 ㅃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12612 ㅄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12613 ㅅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12614 ㅆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12615 ㅇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12616 ㅈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12617 ㅉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12618 ㅊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12619 ㅋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12620 ㅌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12621 ㅍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12622 ㅎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12623 ㅏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12624 ㅐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12625 ㅑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12626 ㅒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12627 ㅓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12628 ㅔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12629 ㅕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12630 ㅖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12631 ㅗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12632 ㅘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12633 ㅙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12634 ㅚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12635 ㅛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12636 ㅜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12637 ㅝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12638 ㅞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12639 ㅟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12640 ㅠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12641 ㅡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12642 ㅢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12643 ㅣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12644 ㅤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12645 ㅥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12646 ㅦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12647 ㅧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12648 ㅨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12649 ㅩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12650 ㅪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12651 ㅫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12652 ㅬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12653 ㅭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12654 ㅮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12655 ㅯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12656 ㅰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12657 ㅱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12658 ㅲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12659 ㅳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12660 ㅴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12661 ㅵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12662 ㅶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12663 ㅷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12664 ㅸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12665 ㅹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12666 ㅺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12667 ㅻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12668 ㅼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12669 ㅽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12670 ㅾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12671 ㅿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12672 ㆀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12673 ㆁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12674 ㆂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12675 ㆃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12676 ㆄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12677 ㆅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12678 ㆆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12679 ㆇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12680 ㆈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12681 ㆉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12682 ㆊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12683 ㆋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12684 ㆌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12685 ㆍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12686 ㆎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12687 ㆏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12688 ㆐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12689 ㆑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12690 ㆒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12691 ㆓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12692 ㆔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12693 ㆕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12694 ㆖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12695 ㆗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12696 ㆘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12697 ㆙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12698 ㆚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12699 ㆛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12700 ㆜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12701 ㆝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12702 ㆞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12703 ㆟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12704 ㆠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12705 ㆡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12706 ㆢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12707 ㆣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12708 ㆤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12709 ㆥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12710 ㆦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12711 ㆧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12712 ㆨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12713 ㆩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12714 ㆪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12715 ㆫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12716 ㆬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12717 ㆭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12718 ㆮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12719 ㆯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12720 ㆰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12721 ㆱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12722 ㆲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12723 ㆳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12724 ㆴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12725 ㆵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12726 ㆶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12727 ㆷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12728 ㆸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12729 ㆹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12730 ㆺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12731 ㆻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12732 ㆼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12733 ㆽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12734 ㆾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12735 ㆿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12736 ㇀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12737 ㇁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12738 ㇂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12739 ㇃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12740 ㇄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12741 ㇅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12742 ㇆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12743 ㇇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12744 ㇈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12745 ㇉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12746 ㇊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12747 ㇋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12748 ㇌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12749 ㇍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12750 ㇎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12751 ㇏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12752 ㇐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12753 ㇑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12754 ㇒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12755 ㇓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12756 ㇔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12757 ㇕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12758 ㇖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12759 ㇗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12760 ㇘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12761 ㇙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12762 ㇚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12763 ㇛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12764 ㇜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12765 ㇝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12766 ㇞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12767 ㇟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12768 ㇠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12769 ㇡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12770 ㇢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12771 ㇣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12772 ㇤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12773 ㇥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12774 ㇦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12775 ㇧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12776 ㇨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12777 ㇩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12778 ㇪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12779 ㇫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12780 ㇬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12781 ㇭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12782 ㇮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12783 ㇯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12784 ㇰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12785 ㇱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12786 ㇲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12787 ㇳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12788 ㇴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12789 ㇵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12790 ㇶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12791 ㇷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12792 ㇸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12793 ㇹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12794 ㇺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12795 ㇻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12796 ㇼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12797 ㇽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12798 ㇾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12799 ㇿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12800 ㈀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12801 ㈁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12802 ㈂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12803 ㈃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12804 ㈄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12805 ㈅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12806 ㈆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12807 ㈇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12808 ㈈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12809 ㈉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12810 ㈊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12811 ㈋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12812 ㈌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12813 ㈍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12814 ㈎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12815 ㈏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12816 ㈐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12817 ㈑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12818 ㈒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12819 ㈓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12820 ㈔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12821 ㈕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12822 ㈖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12823 ㈗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12824 ㈘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12825 ㈙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12826 ㈚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12827 ㈛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12828 ㈜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12829 ㈝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12830 ㈞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12831 ㈟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12832 ㈠ ; -+,0x00,0x10,0x20,0x40,0x40,0x40,0x40,0x5f,0x40,0x40,0x40,0x40,0x40,0x20,0x10,0x00,0x00,0x04,0x02,0x01,0x01,0x01,0x09,0xfd,0x01,0x01,0x01,0x01,0x01,0x02,0x04,0x00 -+// 12833 ㈡ ; -+,0x00,0x10,0x20,0x40,0x4f,0x40,0x40,0x40,0x40,0x40,0x5f,0x40,0x40,0x20,0x10,0x00,0x00,0x04,0x02,0x11,0xf9,0x01,0x01,0x01,0x01,0x09,0xfd,0x01,0x01,0x02,0x04,0x00 -+// 12834 ㈢ ; -+,0x00,0x10,0x20,0x4f,0x40,0x40,0x40,0x47,0x40,0x40,0x40,0x5f,0x40,0x20,0x10,0x00,0x00,0x04,0x12,0xf9,0x01,0x01,0x21,0xf1,0x01,0x01,0x09,0xfd,0x01,0x02,0x04,0x00 -+// 12835 ㈣ ; -+,0x00,0x10,0x20,0x40,0x5f,0x52,0x52,0x52,0x52,0x52,0x5f,0x40,0x40,0x20,0x10,0x00,0x00,0x04,0x02,0x01,0xfd,0x25,0x25,0x25,0x25,0x25,0xfd,0x01,0x01,0x02,0x04,0x00 -+// 12836 ㈤ ; -+,0x00,0x10,0x20,0x4f,0x41,0x41,0x41,0x4f,0x42,0x42,0x42,0x42,0x5f,0x20,0x10,0x00,0x00,0x04,0x12,0xf9,0x01,0x01,0x11,0xf9,0x11,0x11,0x11,0x11,0xfd,0x02,0x04,0x00 -+// 12837 ㈥ ; -+,0x00,0x10,0x20,0x41,0x40,0x40,0x5f,0x40,0x40,0x42,0x42,0x44,0x48,0x20,0x10,0x00,0x00,0x04,0x02,0x01,0x81,0x09,0xfd,0x01,0x01,0x21,0x11,0x09,0x09,0x02,0x04,0x00 -+// 12838 ㈦ ; -+,0x00,0x10,0x21,0x41,0x41,0x41,0x41,0x41,0x5f,0x41,0x41,0x41,0x41,0x20,0x10,0x00,0x00,0x04,0x02,0x01,0x01,0x09,0x3d,0xc1,0x01,0x01,0x01,0x11,0x11,0xf2,0x04,0x00 -+// 12839 ㈧ ; -+,0x00,0x10,0x20,0x42,0x42,0x42,0x42,0x42,0x44,0x44,0x48,0x50,0x40,0x20,0x10,0x00,0x00,0x04,0x42,0x41,0x41,0x41,0x41,0x41,0x21,0x11,0x0d,0x09,0x01,0x02,0x04,0x00 -+// 12840 ㈨ ; -+,0x00,0x10,0x21,0x41,0x41,0x4f,0x41,0x41,0x41,0x42,0x42,0x44,0x48,0x20,0x10,0x00,0x00,0x04,0x02,0x01,0x21,0xf1,0x21,0x21,0x21,0x21,0x25,0x25,0x1d,0x02,0x04,0x00 -+// 12841 ㈩ ; -+,0x00,0x10,0x20,0x40,0x40,0x40,0x5f,0x40,0x40,0x40,0x40,0x40,0x40,0x20,0x10,0x00,0x00,0x04,0x82,0x81,0x81,0x89,0xfd,0x81,0x81,0x81,0x81,0x81,0x81,0x02,0x04,0x00 -+// 12842 ㈪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12843 ㈫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12844 ㈬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12845 ㈭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12846 ㈮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12847 ㈯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12848 ㈰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12849 ㈱ ; -+,0x20,0x44,0x44,0x44,0x5e,0x44,0x4c,0x4e,0x55,0x64,0x44,0x44,0x45,0x44,0x44,0x20,0x02,0x11,0x51,0x7d,0x91,0x11,0xff,0x31,0x39,0x59,0x57,0x95,0x11,0x11,0x11,0x02 -+// 12850 ㈲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12851 ㈳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12852 ㈴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12853 ㈵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12854 ㈶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12855 ㈷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12856 ㈸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12857 ㈹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12858 ㈺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12859 ㈻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12860 ㈼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12861 ㈽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12862 ㈾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12863 ㈿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12864 ㉀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12865 ㉁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12866 ㉂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12867 ㉃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12868 ㉄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12869 ㉅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12870 ㉆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12871 ㉇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12872 ㉈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12873 ㉉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12874 ㉊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12875 ㉋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12876 ㉌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12877 ㉍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12878 ㉎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12879 ㉏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12880 ㉐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12881 ㉑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12882 ㉒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12883 ㉓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12884 ㉔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12885 ㉕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12886 ㉖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12887 ㉗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12888 ㉘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12889 ㉙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12890 ㉚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12891 ㉛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12892 ㉜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12893 ㉝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12894 ㉞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12895 ㉟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12896 ㉠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12897 ㉡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12898 ㉢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12899 ㉣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12900 ㉤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12901 ㉥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12902 ㉦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12903 ㉧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12904 ㉨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12905 ㉩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12906 ㉪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12907 ㉫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12908 ㉬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12909 ㉭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12910 ㉮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12911 ㉯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12912 ㉰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12913 ㉱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12914 ㉲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12915 ㉳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12916 ㉴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12917 ㉵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12918 ㉶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12919 ㉷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12920 ㉸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12921 ㉹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12922 ㉺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12923 ㉻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12924 ㉼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12925 ㉽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12926 ㉾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12927 ㉿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12928 ㊀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12929 ㊁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12930 ㊂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12931 ㊃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12932 ㊄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12933 ㊅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12934 ㊆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12935 ㊇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12936 ㊈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12937 ㊉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12938 ㊊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12939 ㊋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12940 ㊌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12941 ㊍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12942 ㊎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12943 ㊏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12944 ㊐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12945 ㊑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12946 ㊒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12947 ㊓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12948 ㊔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12949 ㊕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12950 ㊖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12951 ㊗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12952 ㊘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12953 ㊙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12954 ㊚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12955 ㊛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12956 ㊜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12957 ㊝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12958 ㊞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12959 ㊟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12960 ㊠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12961 ㊡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12962 ㊢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12963 ㊣ ; -+,0x00,0x03,0x04,0x08,0x17,0x20,0x22,0x22,0x22,0x22,0x17,0x08,0x04,0x03,0x00,0x00,0x00,0xe0,0x10,0x08,0xf4,0x82,0x82,0xe2,0x82,0x82,0xf4,0x08,0x10,0xe0,0x00,0x00 -+// 12964 ㊤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12965 ㊥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12966 ㊦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12967 ㊧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12968 ㊨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12969 ㊩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12970 ㊪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12971 ㊫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12972 ㊬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12973 ㊭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12974 ㊮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12975 ㊯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12976 ㊰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12977 ㊱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12978 ㊲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12979 ㊳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12980 ㊴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12981 ㊵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12982 ㊶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12983 ㊷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12984 ㊸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12985 ㊹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12986 ㊺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12987 ㊻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12988 ㊼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12989 ㊽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12990 ㊾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12991 ㊿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12992 ㋀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12993 ㋁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12994 ㋂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12995 ㋃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12996 ㋄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12997 ㋅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12998 ㋆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 12999 ㋇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13000 ㋈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13001 ㋉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13002 ㋊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13003 ㋋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13004 ㋌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13005 ㋍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13006 ㋎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13007 ㋏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13008 ㋐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13009 ㋑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13010 ㋒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13011 ㋓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13012 ㋔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13013 ㋕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13014 ㋖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13015 ㋗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13016 ㋘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13017 ㋙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13018 ㋚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13019 ㋛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13020 ㋜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13021 ㋝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13022 ㋞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13023 ㋟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13024 ㋠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13025 ㋡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13026 ㋢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13027 ㋣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13028 ㋤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13029 ㋥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13030 ㋦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13031 ㋧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13032 ㋨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13033 ㋩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13034 ㋪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13035 ㋫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13036 ㋬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13037 ㋭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13038 ㋮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13039 ㋯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13040 ㋰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13041 ㋱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13042 ㋲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13043 ㋳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13044 ㋴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13045 ㋵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13046 ㋶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13047 ㋷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13048 ㋸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13049 ㋹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13050 ㋺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13051 ㋻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13052 ㋼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13053 ㋽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13054 ㋾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13055 ㋿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13056 ㌀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13057 ㌁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13058 ㌂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13059 ㌃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13060 ㌄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13061 ㌅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13062 ㌆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13063 ㌇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13064 ㌈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13065 ㌉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13066 ㌊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13067 ㌋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13068 ㌌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13069 ㌍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13070 ㌎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13071 ㌏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13072 ㌐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13073 ㌑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13074 ㌒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13075 ㌓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13076 ㌔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13077 ㌕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13078 ㌖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13079 ㌗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13080 ㌘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13081 ㌙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13082 ㌚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13083 ㌛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13084 ㌜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13085 ㌝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13086 ㌞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13087 ㌟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13088 ㌠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13089 ㌡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13090 ㌢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13091 ㌣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13092 ㌤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13093 ㌥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13094 ㌦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13095 ㌧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13096 ㌨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13097 ㌩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13098 ㌪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13099 ㌫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13100 ㌬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13101 ㌭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13102 ㌮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13103 ㌯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13104 ㌰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13105 ㌱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13106 ㌲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13107 ㌳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13108 ㌴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13109 ㌵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13110 ㌶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13111 ㌷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13112 ㌸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13113 ㌹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13114 ㌺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13115 ㌻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13116 ㌼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13117 ㌽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13118 ㌾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13119 ㌿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13120 ㍀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13121 ㍁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13122 ㍂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13123 ㍃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13124 ㍄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13125 ㍅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13126 ㍆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13127 ㍇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13128 ㍈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13129 ㍉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13130 ㍊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13131 ㍋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13132 ㍌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13133 ㍍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13134 ㍎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13135 ㍏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13136 ㍐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13137 ㍑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13138 ㍒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13139 ㍓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13140 ㍔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13141 ㍕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13142 ㍖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13143 ㍗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13144 ㍘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13145 ㍙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13146 ㍚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13147 ㍛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13148 ㍜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13149 ㍝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13150 ㍞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13151 ㍟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13152 ㍠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13153 ㍡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13154 ㍢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13155 ㍣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13156 ㍤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13157 ㍥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13158 ㍦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13159 ㍧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13160 ㍨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13161 ㍩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13162 ㍪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13163 ㍫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13164 ㍬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13165 ㍭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13166 ㍮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13167 ㍯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13168 ㍰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13169 ㍱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13170 ㍲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13171 ㍳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13172 ㍴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13173 ㍵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13174 ㍶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13175 ㍷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13176 ㍸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13177 ㍹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13178 ㍺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13179 ㍻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13180 ㍼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13181 ㍽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13182 ㍾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13183 ㍿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13184 ㎀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13185 ㎁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13186 ㎂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13187 ㎃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13188 ㎄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13189 ㎅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13190 ㎆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13191 ㎇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13192 ㎈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13193 ㎉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13194 ㎊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13195 ㎋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13196 ㎌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13197 ㎍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13198 ㎎ ; -+,0x00,0x00,0x00,0x00,0x00,0x5c,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3a,0x44,0x44,0x38,0x40,0x38,0x44,0x82,0x44,0x38,0x00 -+// 13199 ㎏ ; -+,0x00,0x00,0x60,0x20,0x20,0x22,0x24,0x28,0x30,0x30,0x28,0x24,0x73,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1d,0x22,0x22,0x1c,0x20,0x1c,0x22,0x41,0x22,0x1c,0x00 -+// 13200 ㎐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13201 ㎑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13202 ㎒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13203 ㎓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13204 ㎔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13205 ㎕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13206 ㎖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13207 ㎗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13208 ㎘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13209 ㎙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13210 ㎚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13211 ㎛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13212 ㎜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x00,0x00,0x00 -+// 13213 ㎝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x10,0x20,0x20,0x20,0x10,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xbe,0x49,0x49,0x49,0x49,0x49,0x49,0x00,0x00,0x00 -+// 13214 ㎞ ; -+,0x00,0x00,0x60,0x20,0x20,0x22,0x24,0x28,0x30,0x30,0x28,0x24,0x73,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xbe,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x00,0x00,0x00 -+// 13215 ㎟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13216 ㎠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13217 ㎡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x5f,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x24,0x08,0x10,0xbc,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00 -+// 13218 ㎢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13219 ㎣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13220 ㎤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13221 ㎥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13222 ㎦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13223 ㎧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13224 ㎨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13225 ㎩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13226 ㎪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13227 ㎫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13228 ㎬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13229 ㎭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13230 ㎮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13231 ㎯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13232 ㎰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13233 ㎱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13234 ㎲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13235 ㎳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13236 ㎴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13237 ㎵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13238 ㎶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13239 ㎷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13240 ㎸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13241 ㎹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13242 ㎺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13243 ㎻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13244 ㎼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13245 ㎽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13246 ㎾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13247 ㎿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13248 ㏀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13249 ㏁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13250 ㏂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13251 ㏃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13252 ㏄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x10,0x20,0x20,0x20,0x20,0x10,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x20,0x40,0x40,0x40,0x40,0x20,0x1c,0x00,0x00 -+// 13253 ㏅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13254 ㏆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13255 ㏇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13256 ㏈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13257 ㏉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13258 ㏊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13259 ㏋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13260 ㏌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13261 ㏍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13262 ㏎ ; -+,0x00,0x00,0x70,0x21,0x22,0x24,0x28,0x30,0x30,0x28,0x24,0x22,0x71,0x00,0x00,0x00,0x00,0x00,0x41,0x63,0x55,0x55,0x49,0x41,0x41,0x41,0x41,0x41,0x41,0x00,0x00,0x00 -+// 13263 ㏏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13264 ㏐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13265 ㏑ ; -+,0x00,0x00,0x30,0x10,0x10,0x10,0x12,0x11,0x11,0x11,0x11,0x11,0x39,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00 -+// 13266 ㏒ ; -+,0x00,0x00,0x60,0x20,0x20,0x20,0x20,0x23,0x24,0x24,0x24,0x24,0x73,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x92,0x92,0x8c,0x90,0x1e,0x21,0x21,0x1e -+// 13267 ㏓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13268 ㏔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13269 ㏕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x5c,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x00,0x00,0x00,0x00,0x00,0x4c,0xe4,0x44,0x04,0x44,0x44,0x44,0x44,0x44,0x44,0xee,0x00,0x00,0x00 -+// 13270 ㏖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13271 ㏗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13272 ㏘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13273 ㏙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13274 ㏚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13275 ㏛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13276 ㏜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13277 ㏝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13278 ㏞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13279 ㏟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13280 ㏠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13281 ㏡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13282 ㏢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13283 ㏣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13284 ㏤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13285 ㏥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13286 ㏦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13287 ㏧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13288 ㏨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13289 ㏩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13290 ㏪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13291 ㏫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13292 ㏬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13293 ㏭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13294 ㏮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13295 ㏯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13296 ㏰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13297 ㏱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13298 ㏲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13299 ㏳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13300 ㏴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13301 ㏵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13302 ㏶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13303 ㏷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13304 ㏸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13305 ㏹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13306 ㏺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13307 ㏻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13308 ㏼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13309 ㏽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13310 ㏾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13311 ㏿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13312 㐀 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x20,0x20,0x20,0x32,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x00 -+// 13313 㐁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0xc2,0x82,0x82,0x82,0x22,0x12,0x0a,0x02,0x02,0x00,0x00 -+// 13314 㐂 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x08,0x08,0x09,0x08,0x08,0x0e,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x84,0x00,0x10,0x10,0x10,0x10,0x10,0x11,0x0e,0x00 -+// 13315 㐃 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x20,0x10,0x08,0x04,0x06,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13316 㐄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x46,0x40,0x40,0x40,0x40,0x40,0x42,0x40,0x40,0x40,0x40,0x40,0x00 -+// 13317 㐅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x10,0x30,0x20,0xc0,0x60,0xb0,0x18,0x0c,0x04,0x00,0x00 -+// 13318 㐆 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x00,0x08,0x38,0x00 -+// 13319 㐇 ; -+,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x0c,0x00,0x00,0x00,0x02,0x0c,0x08,0x07,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x11,0x1f,0x08,0x18,0xc0,0x00,0x00,0x00,0xfe,0x00 -+// 13320 㐈 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x02,0x08,0x08,0x0f,0x00,0x00,0x00,0x80,0xc0,0xa0,0x18,0x0c,0x03,0x08,0x30,0x80,0x00,0x00,0x00,0xfe,0x00 -+// 13321 㐉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x08,0x0f,0x00,0x00,0x00,0x02,0x40,0x40,0x40,0x40,0x80,0x08,0x38,0xc0,0x00,0x00,0x02,0xfe,0x00 -+// 13322 㐊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0xc2,0x00,0x00,0x80,0x00,0x08,0x38,0xc0,0x00,0x00,0x01,0xfe,0x00 -+// 13323 㐋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x88,0x00,0x00,0x02,0x00,0x18,0x30,0x80,0x00,0x00,0x00,0xfe,0x00 -+// 13324 㐌 ; -+,0x00,0x02,0x02,0x04,0x08,0x08,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x04,0x00,0x40,0x44,0x44,0x44,0x44,0x4c,0x48,0x00,0x02,0xfc,0x00 -+// 13325 㐍 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x01,0x04,0x08,0x08,0x0f,0x00,0x00,0x00,0x7c,0x00,0x08,0x80,0x10,0x00,0x18,0x60,0x80,0x00,0x00,0x02,0xfe,0x00 -+// 13326 㐎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x0c,0x10,0x0f,0x00,0x00,0x80,0x02,0x10,0x20,0x60,0xc0,0x38,0x0e,0x18,0x60,0x00,0x00,0x00,0xfe,0x00 -+// 13327 㐏 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x03,0x0c,0x08,0x0f,0x00,0x00,0x00,0x80,0x00,0x18,0x10,0x10,0x12,0x00,0x18,0x60,0x00,0x00,0x00,0xff,0x00 -+// 13328 㐐 ; -+,0x00,0x04,0x04,0x0d,0x09,0x09,0x07,0x05,0x00,0x00,0x00,0x03,0x0c,0x08,0x0f,0x00,0x00,0x00,0x06,0x84,0x04,0x18,0x18,0x26,0x01,0x38,0xc0,0x00,0x00,0x02,0xff,0x00 -+// 13329 㐑 ; -+,0x00,0x03,0x02,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x08,0x0f,0x00,0x00,0x00,0x18,0x20,0xc0,0xb0,0x4e,0x00,0x60,0x28,0x38,0x80,0x00,0x00,0xff,0x00 -+// 13330 㐒 ; -+,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x08,0x0f,0x00,0x00,0x00,0x04,0x04,0x1c,0x08,0x08,0x00,0x08,0x00,0x38,0xc0,0x00,0x00,0xff,0x00 -+// 13331 㐓 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x03,0x08,0x18,0x0f,0x00,0x00,0x00,0x0a,0x08,0x48,0x48,0x48,0x18,0x08,0x38,0xc0,0x00,0x00,0x01,0xfe,0x00 -+// 13332 㐔 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x01,0x04,0x08,0x0f,0x00,0x00,0x80,0x40,0x02,0x00,0x08,0x08,0x08,0x00,0x1c,0x60,0x00,0x00,0x00,0xff,0x00 -+// 13333 㐕 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x03,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0xc4,0x04,0xc4,0x04,0xc4,0x00,0x1c,0x60,0x00,0x00,0x01,0xfe,0x00 -+// 13334 㐖 ; -+,0x00,0x00,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x90,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 13335 㐗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x01,0x04,0x08,0x07,0x00,0x00,0x80,0xac,0x90,0xe2,0x80,0x70,0x04,0xfc,0x08,0x38,0x80,0x00,0x02,0xfe,0x00 -+// 13336 㐘 ; -+,0x00,0x00,0x04,0x02,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x06,0x08,0x10,0x0f,0x00,0x00,0x00,0x08,0x10,0xe2,0x00,0x08,0x06,0x00,0x38,0xc0,0x00,0x00,0x02,0xfe,0x00 -+// 13337 㐙 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x01,0x04,0x08,0x0f,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x10,0x00,0x02,0x08,0x38,0x80,0x00,0x00,0xfe,0x00 -+// 13338 㐚 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x04,0x04,0x00,0x00,0x00,0x06,0x08,0x0f,0x00,0x00,0x00,0x00,0x88,0x08,0x09,0x00,0x00,0x08,0x00,0x38,0xc0,0x00,0x00,0xfe,0x00 -+// 13339 㐛 ; -+,0x00,0x02,0x04,0x04,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x07,0x00,0x00,0x00,0x20,0x40,0x40,0xc2,0x02,0x42,0x00,0x1c,0x60,0x00,0x00,0x01,0xfe,0x00 -+// 13340 㐜 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x05,0x14,0x04,0x04,0x05,0x14,0x24,0x04,0x0c,0x00,0x00,0x00,0x10,0x10,0x10,0x34,0x14,0x14,0x04,0x04,0x24,0xa4,0x04,0x45,0x03,0x00 -+// 13341 㐝 ; -+,0x00,0x00,0x00,0x06,0x02,0x0c,0x10,0x04,0x00,0x00,0x00,0x06,0x08,0x18,0x0f,0x00,0x00,0x20,0x40,0x42,0x4a,0x4a,0x4a,0x02,0x06,0x38,0xc0,0x00,0x00,0x02,0xfe,0x00 -+// 13342 㐞 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x10,0x00,0x02,0x04,0x07,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0c,0x3b,0xc0,0x00,0x00,0xfc,0x00 -+// 13343 㐟 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x03,0x0c,0x08,0x0f,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x18,0x60,0x00,0x00,0x00,0xff,0x00 -+// 13344 㐠 ; -+,0x00,0x00,0x00,0x0a,0x00,0x00,0x02,0x0a,0x06,0x00,0x00,0x01,0x04,0x08,0x07,0x00,0x00,0x80,0x90,0x00,0x80,0x00,0x00,0x11,0x1e,0x08,0x30,0x80,0x00,0x00,0xfe,0x00 -+// 13345 㐡 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x12,0x02,0x01,0x00,0x00,0x00,0x12,0x00,0xaa,0xaa,0xaa,0x82,0x10,0x12,0x10,0x24,0x42,0x01,0xff,0x00 -+// 13346 㐢 ; -+,0x00,0x00,0x04,0x00,0x08,0x00,0x04,0x08,0x08,0x08,0x00,0x01,0x04,0x08,0x0f,0x00,0x00,0x0c,0x24,0x08,0x0c,0x00,0x13,0x10,0x30,0x08,0x38,0x80,0x00,0x02,0xfe,0x00 -+// 13347 㐣 ; -+,0x00,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x10,0x11,0x04,0x07,0x00,0x00,0x40,0x42,0x00,0x44,0x44,0x44,0x44,0x40,0x40,0x48,0x30,0x80,0x00,0xfe,0x00 -+// 13348 㐤 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x12,0x02,0x01,0x00,0x00,0x10,0x10,0x10,0x54,0x44,0x44,0x44,0x44,0x44,0x44,0x00,0x44,0x01,0xff,0x00 -+// 13349 㐥 ; -+,0x00,0x04,0x08,0x08,0x04,0x04,0x04,0x0c,0x0c,0x00,0x00,0x01,0x06,0x08,0x0f,0x00,0x00,0x00,0xa0,0xae,0xa0,0xa0,0xaa,0xaa,0x92,0x08,0x38,0x80,0x00,0x02,0xfe,0x00 -+// 13350 㐦 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x04,0x08,0x00,0x00,0x00,0x00,0x02,0x08,0x0f,0x00,0x00,0x00,0x84,0x84,0x04,0x05,0xe8,0xc6,0xc8,0x80,0x88,0x70,0x00,0x02,0xfe,0x00 -+// 13351 㐧 ; -+,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x22,0x62,0xa0,0x20,0x20,0x20,0x20,0x20,0x60,0x00 -+// 13352 㐨 ; -+,0x00,0x00,0x01,0x01,0x02,0x04,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x8b,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 13353 㐩 ; -+,0x00,0x00,0x0a,0x0a,0x0b,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x44,0x04,0x04,0x00 -+// 13354 㐪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x80,0x40,0x02,0x00,0x80,0x84,0x84,0x84,0x84,0x00,0x20,0x10,0x0c,0x03,0x00 -+// 13355 㐫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x80,0x00,0x02,0x10,0x10,0x20,0xc0,0x40,0xa0,0x10,0x08,0x04,0x00,0x00 -+// 13356 㐬 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x0e,0x00,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x80,0x00,0x80,0x00,0x00,0x08,0x04,0x00,0x90,0x90,0x90,0x90,0x91,0x0f,0x00 -+// 13357 㐭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x02,0x02,0x02,0x02,0x08,0x00,0x00,0x00,0x00,0x80,0x00,0x02,0x00,0x04,0x04,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x00 -+// 13358 㐮 ; -+,0x00,0x00,0x00,0x00,0x02,0x04,0x09,0x01,0x01,0x01,0x03,0x06,0x0a,0x02,0x02,0x00,0x00,0x00,0x40,0x02,0x08,0x24,0x28,0x20,0x28,0x22,0x40,0x0c,0x10,0x08,0x06,0x00 -+// 13359 㐯 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x08,0x08,0x00,0x00,0x02,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x00,0x08,0x00,0x04,0x04,0xf8,0xc2,0x00,0x0e,0x08,0x08,0x08,0x00 -+// 13360 㐰 ; -+,0x00,0x04,0x04,0x05,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 13361 㐱 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x02,0x00,0x00,0x02,0x00,0x00,0x06,0x00,0x00,0x00,0x80,0x00,0x00,0x10,0x4c,0x82,0x30,0x60,0x80,0x18,0x20,0x80,0x00,0x00 -+// 13362 㐲 ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x20,0x20,0x20,0x22,0x20,0x20,0x60,0x50,0x50,0x88,0x0c,0x06,0x02,0x00 -+// 13363 㐳 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x02,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x0f,0x00 -+// 13364 㐴 ; -+,0x00,0x02,0x02,0x04,0x04,0x08,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x20,0x20,0x22,0x42,0x42,0x84,0x24,0x08,0x08,0x10,0x20,0x40,0x00,0x00 -+// 13365 㐵 ; -+,0x00,0x02,0x02,0x04,0x04,0x08,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 13366 㐶 ; -+,0x00,0x02,0x06,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x84,0x04,0x04,0x04,0x04,0x84,0x00,0x00,0x00,0x00,0x02,0xfe,0x00 -+// 13367 㐷 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x04,0x80,0x83,0x02,0x0a,0x02,0x02,0x02,0x0c,0x00 -+// 13368 㐸 ; -+,0x00,0x02,0x06,0x04,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x20,0x20,0x40,0x42,0x82,0xa0,0x20,0x20,0x30,0x20,0x08,0x44,0x86,0x03,0x00 -+// 13369 㐹 ; -+,0x00,0x02,0x06,0x04,0x00,0x09,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x80,0x84,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x05,0x03,0x00 -+// 13370 㐺 ; -+,0x00,0x04,0x04,0x08,0x08,0x09,0x19,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xd0,0x90,0x10,0x10,0x10,0x10,0x10,0x18,0x10,0x24,0x24,0x02,0x00,0x00 -+// 13371 㐻 ; -+,0x00,0x00,0x04,0x04,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x10,0x10,0x32,0x02,0x02,0x22,0x22,0x0a,0x06,0x02,0x02,0x02,0x06,0x00 -+// 13372 㐼 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x24,0x44,0x44,0x44,0x44,0x45,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x00 -+// 13373 㐽 ; -+,0x00,0x04,0x04,0x05,0x09,0x19,0x19,0x29,0x09,0x09,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x14,0x14,0x34,0x24,0x34,0x54,0x08,0x02,0x03,0x01,0x00 -+// 13374 㐾 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x40,0x00,0x00,0x80,0x80,0x00,0x09,0x0f,0x00 -+// 13375 㐿 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x0c,0x20,0x20,0x20,0x24,0x20,0x20,0x22,0x20,0x20,0x20,0x20,0x60,0x00 -+// 13376 㑀 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x20,0x20,0x20,0x62,0x20,0x40,0x50,0x40,0x48,0x88,0x24,0x06,0x03,0x00 -+// 13377 㑁 ; -+,0x00,0x02,0x06,0x04,0x09,0x09,0x19,0x09,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x32,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00 -+// 13378 㑂 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x22,0x22,0x22,0x02,0x4a,0x06,0x02,0x02,0x06,0x00 -+// 13379 㑃 ; -+,0x00,0x04,0x04,0x04,0x09,0x08,0x18,0x2a,0x08,0x08,0x09,0x0b,0x0a,0x08,0x08,0x00,0x00,0x00,0x88,0x88,0x28,0x48,0x49,0x88,0x08,0x08,0x40,0x30,0x32,0x22,0x06,0x00 -+// 13380 㑄 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x80,0x24,0x14,0x04,0x07,0x04,0x24,0x24,0x04,0x04,0x04,0x18,0x00 -+// 13381 㑅 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x19,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x40,0x80,0x82,0x20,0x20,0x20,0x20,0x22,0x20,0x20,0x20,0x20,0x21,0x00 -+// 13382 㑆 ; -+,0x00,0x02,0x04,0x04,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x82,0x80,0x80,0x80,0xac,0x08,0x08,0x48,0x48,0x08,0x89,0x0f,0x00 -+// 13383 㑇 ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x40,0x84,0x08,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 13384 㑈 ; -+,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x09,0x09,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x40,0x42,0x40,0x80,0x90,0x10,0x32,0x10,0x90,0x92,0x12,0x10,0x20,0x00 -+// 13385 㑉 ; -+,0x00,0x00,0x04,0x09,0x09,0x11,0x09,0x09,0x09,0x09,0x09,0x08,0x0a,0x0a,0x08,0x00,0x00,0x00,0x04,0x04,0x0c,0x04,0x44,0x5c,0x04,0x14,0x14,0x20,0x02,0x03,0x01,0x00 -+// 13386 㑊 ; -+,0x00,0x00,0x04,0x04,0x08,0x18,0x08,0x09,0x09,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x20,0x00,0x02,0x48,0x48,0x48,0x4a,0x4a,0x49,0x88,0x88,0x08,0x18,0x00 -+// 13387 㑋 ; -+,0x00,0x00,0x04,0x04,0x08,0x09,0x18,0x08,0x08,0x09,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x48,0x40,0x40,0x4a,0x42,0x42,0x42,0x5a,0x42,0x42,0x42,0x5a,0x02,0x00 -+// 13388 㑌 ; -+,0x00,0x02,0x04,0x05,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x14,0x10,0x10,0x12,0x00,0x00,0x00,0x00 -+// 13389 㑍 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x20,0x22,0x20,0x20,0x20,0x20,0x21,0x70,0x60,0xa0,0xa4,0x23,0x20,0x00 -+// 13390 㑎 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x92,0x94,0x00,0x00,0x04,0x92,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00 -+// 13391 㑏 ; -+,0x00,0x00,0x04,0x04,0x09,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x03,0x00,0x08,0x08,0x08,0x08,0x48,0x48,0x08,0x08,0x18,0x00 -+// 13392 㑐 ; -+,0x00,0x02,0x06,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x24,0x22,0x22,0x20,0x60,0x00 -+// 13393 㑑 ; -+,0x00,0x00,0x04,0x04,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x20,0x00,0x40,0x06,0x02,0x02,0x86,0x02,0x02,0x86,0x02,0x02,0x86,0x02,0x00 -+// 13394 㑒 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x02,0x04,0x00,0x00,0x80,0x80,0x20,0x10,0x1c,0x82,0x80,0xc8,0x88,0x88,0x80,0x20,0x18,0x06,0x00 -+// 13395 㑓 ; -+,0x00,0x00,0x04,0x04,0x09,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x20,0x20,0x00,0x86,0x02,0x40,0x42,0x40,0x44,0x80,0x28,0x10,0x28,0x06,0x00 -+// 13396 㑔 ; -+,0x00,0x00,0x04,0x04,0x08,0x09,0x19,0x29,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x20,0x20,0x04,0x04,0x24,0x24,0x24,0x24,0x44,0x40,0x84,0x02,0x00 -+// 13397 㑕 ; -+,0x00,0x00,0x04,0x05,0x09,0x09,0x18,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x02,0x02,0x12,0x20,0x20,0x42,0x86,0x44,0x28,0x10,0x20,0x80,0x00 -+// 13398 㑖 ; -+,0x00,0x04,0x04,0x09,0x09,0x1b,0x1b,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x80,0x00,0x00,0x5a,0x40,0x40,0x40,0x5a,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13399 㑗 ; -+,0x00,0x02,0x02,0x04,0x08,0x0c,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0x84,0x84,0x84,0x84,0x85,0x87,0x86,0x0c,0x14,0x24,0x44,0x0c,0x00 -+// 13400 㑘 ; -+,0x00,0x02,0x06,0x04,0x08,0x08,0x19,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x08,0x0a,0x08,0x0b,0x08,0x0a,0x0a,0x6a,0x0c,0x0c,0x0c,0x0c,0x13,0x01,0x00 -+// 13401 㑙 ; -+,0x00,0x04,0x04,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x0b,0x08,0x08,0x00,0x00,0x00,0x02,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x27,0x00 -+// 13402 㑚 ; -+,0x00,0x00,0x04,0x09,0x08,0x18,0x08,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xab,0xaa,0xa8,0xa8,0x28,0x2a,0x28,0x29,0x29,0x2a,0x28,0x48,0x00 -+// 13403 㑛 ; -+,0x00,0x04,0x04,0x04,0x08,0x08,0x19,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x22,0x20,0x22,0x22,0x22,0x22,0x60,0x60,0xa8,0x24,0x23,0x20,0x00 -+// 13404 㑜 ; -+,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x09,0x0a,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x80,0x10,0xd0,0x10,0x11,0x14,0x94,0x04,0x04,0x24,0x24,0x04,0x04,0x00 -+// 13405 㑝 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x11,0x00,0x44,0x45,0x44,0x04,0x84,0x04,0x00 -+// 13406 㑞 ; -+,0x00,0x02,0x06,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x22,0xa0,0x20,0x44,0x83,0x40,0x40,0x49,0x40,0x00,0x80,0x08,0x00 -+// 13407 㑟 ; -+,0x00,0x02,0x06,0x04,0x08,0x18,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x0c,0x80,0x80,0x80,0x98,0x80,0x80,0x80,0x00,0x80,0x84,0x02,0x02,0x00 -+// 13408 㑠 ; -+,0x00,0x04,0x04,0x08,0x0a,0x1a,0x1a,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x82,0x80,0x84,0x8c,0x86,0x82,0x20,0x20,0x20,0x20,0x20,0x01,0x00 -+// 13409 㑡 ; -+,0x00,0x04,0x05,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x0a,0x0a,0x0a,0x28,0xa8,0x08,0x00 -+// 13410 㑢 ; -+,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x0a,0x0a,0x08,0x00,0x00,0x00,0x80,0x8a,0xa8,0x88,0x88,0x88,0x88,0x88,0x08,0x0a,0x2a,0x28,0x08,0x00 -+// 13411 㑣 ; -+,0x00,0x04,0x04,0x08,0x08,0x19,0x19,0x09,0x09,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0xc8,0x08,0x98,0x5c,0x0a,0x2b,0x09,0x08,0x08,0x08,0x00 -+// 13412 㑤 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x48,0x48,0x4c,0x48,0x00,0x02,0x12,0x12,0x32,0x12,0x12,0x12,0x02,0x00 -+// 13413 㑥 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x86,0x80,0x84,0x80,0x84,0x40,0x40,0x2a,0x4a,0x92,0x22,0x42,0x0c,0x00 -+// 13414 㑦 ; -+,0x00,0x00,0x04,0x05,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x08,0x0a,0x08,0x08,0x00,0x00,0x20,0x00,0x02,0x02,0x02,0x02,0x10,0x04,0x30,0x20,0x28,0x00,0x44,0x83,0x00 -+// 13415 㑧 ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x38,0x20,0x22,0x60,0xa8,0x26,0x08,0x08,0x20,0x22,0x20,0x20,0x60,0x00 -+// 13416 㑨 ; -+,0x00,0x02,0x06,0x04,0x08,0x08,0x18,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x86,0x00,0x00,0x00,0x80,0x84,0x20,0x20,0x23,0x40,0x48,0x84,0x03,0x00 -+// 13417 㑩 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa3,0xa9,0xa9,0xa9,0xa0,0x20,0x42,0x82,0x64,0x28,0x10,0x20,0x00,0x00 -+// 13418 㑪 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x10,0x0c,0x08,0x30,0x38,0x47,0x84,0x84,0x84,0x84,0x84,0x04,0x04,0x00 -+// 13419 㑫 ; -+,0x00,0x02,0x02,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x20,0x20,0x40,0x48,0x96,0x13,0x0c,0x08,0x08,0x50,0x52,0x41,0x44,0x7c,0x00 -+// 13420 㑬 ; -+,0x00,0x04,0x04,0x09,0x09,0x11,0x10,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x08,0x08,0x49,0x48,0x08,0x8a,0x82,0x02,0x02,0xc2,0x72,0x02,0x00 -+// 13421 㑭 ; -+,0x00,0x04,0x05,0x0d,0x09,0x19,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x32,0x02,0x32,0x02,0x02,0x02,0x00,0x4b,0x48,0x88,0x88,0x08,0x08,0x00 -+// 13422 㑮 ; -+,0x00,0x00,0x05,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x03,0x02,0x20,0x20,0x20,0x22,0x20,0x20,0x20,0x20,0x21,0x20,0x20,0x00 -+// 13423 㑯 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x12,0x20,0x20,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x40,0xc2,0x03,0x00 -+// 13424 㑰 ; -+,0x00,0x02,0x06,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x40,0x40,0x88,0x08,0x29,0x60,0xa6,0x30,0x90,0x34,0x42,0x93,0x30,0x00 -+// 13425 㑱 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x09,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x0c,0x00,0x10,0x52,0x90,0x30,0x00,0x20,0x70,0xa0,0x28,0x26,0x20,0x00 -+// 13426 㑲 ; -+,0x00,0x04,0x04,0x04,0x08,0x08,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x22,0x20,0x22,0x02,0x52,0x02,0x22,0x22,0x22,0x22,0x22,0x26,0x00 -+// 13427 㑳 ; -+,0x00,0x04,0x04,0x04,0x09,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0xc2,0x82,0xaa,0xaa,0x02,0x44,0x40,0x82,0x22,0xa2,0xaa,0x42,0x86,0x00 -+// 13428 㑴 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x0a,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x22,0x24,0x24,0x2c,0x24,0x0c,0x18,0x30,0x06,0x00 -+// 13429 㑵 ; -+,0x00,0x00,0x04,0x04,0x08,0x18,0x0a,0x0a,0x09,0x0b,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x10,0x02,0x80,0x20,0x22,0x08,0x08,0x11,0x18,0x10,0x24,0x02,0x03,0x00 -+// 13430 㑶 ; -+,0x00,0x00,0x06,0x04,0x09,0x08,0x18,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0x80,0x04,0x00,0x06,0x00,0x10,0x80,0x60,0xe2,0x9a,0x0a,0x01,0x00 -+// 13431 㑷 ; -+,0x00,0x04,0x04,0x08,0x08,0x1b,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x90,0x14,0x50,0x30,0x12,0x40,0x50,0x52,0x54,0x50,0x50,0x51,0x4e,0x00 -+// 13432 㑸 ; -+,0x00,0x00,0x04,0x04,0x08,0x09,0x19,0x08,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x24,0x04,0x04,0x04,0x05,0x04,0x14,0x14,0x04,0x04,0x0c,0x00 -+// 13433 㑹 ; -+,0x00,0x00,0x00,0x01,0x06,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x80,0x10,0x1e,0x00,0x84,0x84,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 13434 㑺 ; -+,0x00,0x00,0x06,0x04,0x09,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x40,0x88,0x92,0x90,0x90,0x92,0x90,0x91,0x00,0x4c,0x4a,0xc2,0x82,0x06,0x00 -+// 13435 㑻 ; -+,0x00,0x00,0x04,0x05,0x0a,0x08,0x18,0x09,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x00,0x00,0x20,0x00,0x03,0x20,0x08,0x52,0x61,0x44,0xf8,0x20,0x20,0x22,0x22,0x36,0x00 -+// 13436 㑼 ; -+,0x00,0x04,0x04,0x08,0x0c,0x14,0x14,0x04,0x05,0x04,0x04,0x04,0x04,0x00,0x10,0x00,0x00,0x00,0x10,0x12,0xa4,0x84,0x88,0x8c,0x93,0xa2,0x80,0x80,0x80,0x00,0x00,0x00 -+// 13437 㑽 ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x06,0x84,0x00,0x03,0x00,0x8c,0x80,0x88,0x20,0x26,0x20,0x20,0x01,0x00 -+// 13438 㑾 ; -+,0x00,0x02,0x02,0x04,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x22,0x42,0x54,0x10,0x00,0x10,0x00,0x04,0x04,0x00,0x86,0x80,0x84,0x00 -+// 13439 㑿 ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x19,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa4,0x00,0xa4,0x00,0x24,0x24,0x24,0x24,0x20,0x60,0xa0,0x24,0x23,0x00 -+// 13440 㒀 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x20,0x02,0x08,0x48,0x02,0x22,0x2a,0x22,0x2a,0x0a,0x4a,0x02,0x06,0x00 -+// 13441 㒁 ; -+,0x00,0x04,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x02,0x02,0x22,0x22,0x26,0x02,0x52,0x2a,0x22,0x22,0x22,0x22,0x02,0x00 -+// 13442 㒂 ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x8a,0x88,0x20,0x24,0x28,0x30,0x40,0x84,0x84,0x84,0x84,0x84,0x00 -+// 13443 㒃 ; -+,0x00,0x02,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x09,0x09,0x09,0x08,0x09,0x08,0x00,0x00,0x08,0x0a,0x09,0x08,0x08,0x28,0x08,0x28,0x20,0x24,0x24,0x04,0x23,0x11,0x00 -+// 13444 㒄 ; -+,0x00,0x04,0x04,0x0c,0x09,0x19,0x19,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0x00,0x88,0xaa,0x28,0xa9,0x08,0x48,0x10,0x12,0x21,0x00,0x02,0x29,0x01,0x00 -+// 13445 㒅 ; -+,0x00,0x00,0x04,0x04,0x08,0x18,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x4c,0x50,0x30,0x36,0x24,0x30,0x64,0x40,0xc8,0x44,0x62,0x00 -+// 13446 㒆 ; -+,0x00,0x02,0x02,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x09,0x08,0x08,0x0a,0x08,0x00,0x00,0x30,0x20,0x48,0x8e,0x00,0x84,0x84,0x00,0x42,0x0a,0x42,0x4a,0x12,0x46,0x00 -+// 13447 㒇 ; -+,0x00,0x00,0x04,0x04,0x09,0x09,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0x00,0x80,0x82,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x49,0x09,0x00 -+// 13448 㒈 ; -+,0x00,0x00,0x04,0x08,0x08,0x19,0x08,0x09,0x08,0x09,0x08,0x08,0x09,0x0a,0x08,0x00,0x00,0x08,0x48,0x48,0x83,0x52,0x42,0x42,0x42,0x4a,0x44,0x44,0x4c,0x4a,0x53,0x00 -+// 13449 㒉 ; -+,0x00,0x00,0x04,0x04,0x09,0x09,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x14,0x50,0x01,0x00,0x44,0x04,0x04,0x10,0x70,0x50,0x94,0x12,0x10,0x00 -+// 13450 㒊 ; -+,0x00,0x00,0x04,0x08,0x0a,0x13,0x11,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xa5,0xa5,0xb1,0x19,0x49,0x52,0x84,0x84,0x94,0x94,0x94,0x94,0x15,0x00 -+// 13451 㒋 ; -+,0x00,0x00,0x09,0x09,0x01,0x11,0x11,0x01,0x01,0x01,0x01,0x00,0x03,0x02,0x00,0x00,0x00,0x40,0x43,0x48,0x48,0x48,0x4b,0x4a,0x4a,0x42,0x72,0x12,0x52,0x22,0x02,0x00 -+// 13452 㒌 ; -+,0x00,0x04,0x04,0x01,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa2,0x94,0x88,0x4a,0x00,0x01,0x00,0x98,0x80,0x80,0x80,0x00,0x0e,0x00 -+// 13453 㒍 ; -+,0x00,0x02,0x04,0x04,0x08,0x09,0x1a,0x08,0x08,0x08,0x09,0x08,0x08,0x09,0x08,0x00,0x00,0x20,0x00,0xc4,0x04,0x00,0x79,0x00,0xd8,0x00,0xf2,0x10,0x94,0x12,0x20,0x00 -+// 13454 㒎 ; -+,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x40,0x80,0x88,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 13455 㒏 ; -+,0x00,0x00,0x04,0x04,0x0a,0x08,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x03,0x02,0x14,0x10,0xd8,0x10,0xc8,0x84,0x13,0x00,0x30,0x08,0x00 -+// 13456 㒐 ; -+,0x00,0x04,0x05,0x05,0x08,0x08,0x18,0x29,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x00,0x04,0x80,0x82,0x02,0x92,0x82,0x92,0x82,0x92,0x02,0x0c,0x00 -+// 13457 㒑 ; -+,0x00,0x04,0x05,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x10,0x14,0x02,0x20,0x86,0x00,0x00,0x4c,0x00,0x1e,0x00,0x02,0x00 -+// 13458 㒒 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x0a,0x88,0x29,0x00,0x48,0x02,0x10,0x10,0x11,0x70,0x50,0x90,0x13,0x00 -+// 13459 㒓 ; -+,0x00,0x04,0x04,0x0a,0x09,0x10,0x18,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x0c,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x24,0x22,0x00,0x1c,0x00,0x1a,0x00,0x00,0x7a,0x00 -+// 13460 㒔 ; -+,0x00,0x00,0x05,0x05,0x09,0x09,0x18,0x09,0x09,0x09,0x09,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x02,0x42,0x42,0x02,0x80,0x83,0x20,0x28,0x2a,0x22,0x2a,0x02,0x06,0x00 -+// 13461 㒕 ; -+,0x00,0x00,0x04,0x0c,0x08,0x09,0x18,0x0a,0x08,0x08,0x0a,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x00,0x01,0x90,0x04,0x60,0xa0,0x28,0x28,0xe0,0xae,0x20,0x20,0x20,0x00 -+// 13462 㒖 ; -+,0x00,0x00,0x04,0x0c,0x08,0x19,0x19,0x29,0x09,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x40,0x48,0x48,0x00,0x26,0x24,0x00,0x24,0x00,0x23,0x00,0x34,0x80,0x02,0x00 -+// 13463 㒗 ; -+,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x0a,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x8a,0x88,0x88,0x88,0x88,0x03,0x04,0x00,0x8c,0x20,0x20,0x20,0x22,0x00 -+// 13464 㒘 ; -+,0x00,0x00,0x0c,0x0a,0x02,0x1a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x82,0xc2,0x0c,0x84,0x8a,0x02,0x20,0x04,0x08,0x48,0x40,0x00,0x00 -+// 13465 㒙 ; -+,0x00,0x04,0x05,0x08,0x08,0x1a,0x08,0x09,0x0a,0x0f,0x08,0x08,0x09,0x0c,0x08,0x00,0x00,0x08,0x00,0x22,0xa2,0xa2,0x22,0x2a,0x88,0xea,0x28,0x28,0x68,0x2a,0x08,0x08 -+// 13466 㒚 ; -+,0x00,0x02,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x00,0x00,0x00,0x1c,0x02,0x80,0x02,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x01,0x44,0x00 -+// 13467 㒛 ; -+,0x00,0x04,0x04,0x08,0x08,0x19,0x18,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x62,0x0a,0x42,0x12,0x02,0x90,0x92,0x90,0x90,0x90,0x90,0x90,0x80,0x00 -+// 13468 㒜 ; -+,0x00,0x00,0x04,0x05,0x08,0x09,0x08,0x08,0x09,0x08,0x0b,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x82,0x22,0x02,0x02,0x12,0x12,0x12,0x12,0x73,0x00,0x80,0x02,0x01,0x00 -+// 13469 㒝 ; -+,0x00,0x04,0x04,0x08,0x08,0x19,0x08,0x09,0x08,0x09,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x88,0x88,0x00,0x42,0x42,0x02,0x14,0x12,0x12,0x94,0x48,0x1c,0x07,0x00 -+// 13470 㒞 ; -+,0x00,0x04,0x05,0x09,0x08,0x19,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x0a,0x00,0x00,0x00,0x02,0x22,0x80,0x92,0x00,0x30,0x30,0x02,0x00,0x4a,0x50,0x00,0x02,0x00 -+// 13471 㒟 ; -+,0x00,0x00,0x04,0x08,0x09,0x19,0x09,0x09,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x00,0x20,0x20,0x20,0x22,0x02,0x22,0x64,0x90,0x88,0x86,0xc2,0x00 -+// 13472 㒠 ; -+,0x00,0x00,0x04,0x04,0x09,0x1a,0x19,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x82,0xa0,0x4c,0x4c,0x92,0x00,0x94,0x10,0x90,0x14,0x10,0x02,0x00 -+// 13473 㒡 ; -+,0x00,0x00,0x09,0x08,0x15,0x10,0x32,0x14,0x15,0x11,0x11,0x15,0x15,0x15,0x14,0x00,0x00,0x00,0xcc,0x08,0x02,0x14,0x08,0x00,0x13,0x01,0x00,0x50,0x21,0x41,0x08,0x00 -+// 13474 㒢 ; -+,0x00,0x00,0x04,0x04,0x09,0x18,0x0b,0x08,0x0b,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x60,0x40,0x88,0x17,0x02,0x5a,0x5a,0x5a,0x00,0xd6,0x12,0xd6,0x12,0x06,0x00 -+// 13475 㒣 ; -+,0x00,0x04,0x04,0x08,0x08,0x10,0x10,0x02,0x02,0x02,0x02,0x02,0x00,0x01,0x08,0x00,0x00,0x00,0x10,0x00,0x28,0xa8,0xa8,0xa8,0xa8,0xa8,0x80,0x12,0x51,0x40,0x7c,0x00 -+// 13476 㒤 ; -+,0x00,0x04,0x04,0x08,0x00,0x18,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0b,0x08,0x00,0x00,0x00,0x02,0x88,0x88,0x88,0x8a,0x08,0x52,0x52,0x52,0x52,0x52,0x52,0x42,0x00 -+// 13477 㒥 ; -+,0x00,0x00,0x04,0x08,0x08,0x18,0x08,0x0a,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x88,0xaa,0x8a,0x8a,0x8a,0x02,0x00,0x00,0x04,0x04,0x8c,0x48,0x02,0x00 -+// 13478 㒦 ; -+,0x00,0x00,0x05,0x01,0x09,0x19,0x18,0x0a,0x0b,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x40,0x50,0x56,0x50,0x00,0x20,0x20,0x20,0x21,0x00 -+// 13479 㒧 ; -+,0x00,0x00,0x09,0x08,0x10,0x15,0x15,0x14,0x11,0x15,0x14,0x14,0x16,0x14,0x14,0x00,0x00,0x00,0x10,0x54,0x00,0x20,0x24,0x44,0x04,0x44,0x46,0x44,0x44,0x45,0xc0,0x00 -+// 13480 㒨 ; -+,0x00,0x04,0x0c,0x0a,0x0a,0x12,0x13,0x02,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x12,0x32,0x32,0x12,0x40,0xc2,0x88,0x0f,0x08,0x08,0x00,0x8c,0x00 -+// 13481 㒩 ; -+,0x00,0x00,0x04,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x05,0x05,0x01,0x01,0x0e,0x00,0x00,0x00,0x88,0x88,0x42,0x84,0xe0,0x64,0x22,0x28,0x6a,0x6a,0x0a,0x08,0x30,0x00 -+// 13482 㒪 ; -+,0x00,0x00,0x01,0x04,0x10,0x14,0x11,0x10,0x10,0x00,0x04,0x04,0x04,0x1c,0x10,0x00,0x00,0xc0,0x00,0x0f,0x06,0x40,0x44,0x40,0x40,0x12,0x32,0x10,0x18,0x2a,0x18,0x00 -+// 13483 㒫 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x02,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x1f,0x00 -+// 13484 㒬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x12,0x02,0x01,0x00,0x00,0x00,0x04,0x10,0x10,0x10,0x14,0x10,0x10,0x10,0x10,0x12,0x00,0x01,0xff,0x00 -+// 13485 㒭 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x1b,0x0a,0x0a,0x0a,0x02,0x12,0x12,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x7a,0x28,0x28,0x28,0x28,0x48,0x09,0x07,0x00 -+// 13486 㒮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0x02,0x02,0x12,0x12,0x12,0x12,0x02,0x03,0x00,0x00,0x00,0x02,0x10,0x20,0x04,0x10,0x20,0x18,0x28,0x4a,0x08,0x18,0x01,0xff,0x00 -+// 13487 㒯 ; -+,0x00,0x00,0x00,0x02,0x12,0x14,0x01,0x0c,0x00,0x00,0x10,0x12,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x00,0x56,0x54,0x54,0x54,0x54,0x12,0x10,0x12,0x10,0x10,0x00 -+// 13488 㒰 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x20,0x10,0x0c,0x03,0x08,0x80,0x80,0x80,0x80,0x80,0x02,0x00 -+// 13489 㒱 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x01,0x02,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x80,0xc0,0x10,0x08,0x87,0x8a,0x08,0x10,0x90,0x20,0x80,0x00,0x00,0x00 -+// 13490 㒲 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0xc0,0xa0,0x18,0x06,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 13491 㒳 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x12,0x12,0x13,0x15,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x1a,0x0a,0x86,0xc2,0x02,0x02,0x02,0x04,0x00 -+// 13492 㒴 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x04,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0x40,0x30,0x0c,0x46,0x00,0x00,0xc8,0x00,0x04,0x04,0x04,0x04,0x00 -+// 13493 㒵 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x80,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x06,0x00,0x00 -+// 13494 㒶 ; -+,0x00,0x00,0x02,0x04,0x04,0x08,0x10,0x01,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x03,0x04,0x04,0x04,0x0c,0x04,0x04,0x0c,0x04,0x00 -+// 13495 㒷 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x04,0x44,0x84,0x84,0x24,0x14,0x14,0x07,0x00,0x00,0x0c,0x06,0x02,0x00 -+// 13496 㒸 ; -+,0x00,0x00,0x02,0x01,0x00,0x01,0x03,0x04,0x01,0x02,0x04,0x01,0x06,0x00,0x01,0x00,0x00,0x00,0x10,0x20,0x22,0x80,0x0c,0x90,0xe0,0x40,0xf0,0x28,0x24,0x43,0xc0,0x00 -+// 13497 㒹 ; -+,0x00,0x04,0x04,0x04,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x11,0x01,0x00,0x00,0x08,0x08,0x08,0x2a,0x22,0x22,0x22,0x22,0x22,0x22,0xa3,0x00,0x22,0x01,0x00 -+// 13498 㒺 ; -+,0x00,0x00,0x00,0x10,0x11,0x11,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x02,0x00,0x20,0x00,0x08,0x40,0x40,0xa0,0x10,0x00,0x00,0x00,0x0c,0x00 -+// 13499 㒻 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x01,0x02,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x28,0x20,0x20,0x3f,0x00 -+// 13500 㒼 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x03,0x01,0x00,0x00,0x10,0x00,0x00,0x10,0x12,0x10,0x10,0xd0,0x00,0xc2,0x02,0x12,0x1a,0x8e,0x82,0x02,0x06,0x00 -+// 13501 㒽 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x02,0x02,0x01,0x02,0x04,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x04,0x14,0x04,0x90,0xa4,0x00,0x02,0x10,0x16,0x30,0x20,0xf8,0x00 -+// 13502 㒾 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x04,0x08,0x08,0x0a,0x08,0x02,0x12,0x06,0x00,0x00,0x00,0x08,0x20,0x00,0x00,0x40,0x44,0x00,0x12,0x52,0x50,0x54,0x40,0x7f,0x00 -+// 13503 㒿 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x02,0x12,0x14,0x14,0x10,0x18,0x10,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x20,0x20,0x2a,0x68,0x28,0xa8,0xa8,0xa8,0xa0,0x00 -+// 13504 㓀 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x80,0x80,0x80,0x80,0xa0,0x98,0x88,0x80,0x80,0x80,0x80,0x00 -+// 13505 㓁 ; -+,0x00,0x00,0x00,0x10,0x12,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x18,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13506 㓂 ; -+,0x00,0x00,0x00,0x10,0x00,0x01,0x00,0x00,0x0d,0x01,0x09,0x09,0x09,0x01,0x11,0x00,0x00,0x00,0x02,0x02,0x00,0x10,0x10,0x94,0x04,0x20,0x08,0x1c,0x22,0x01,0xff,0x00 -+// 13507 㓃 ; -+,0x00,0x00,0x08,0x00,0x10,0x04,0x01,0x00,0x00,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x02,0x00,0x0c,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x0e,0x00 -+// 13508 㓄 ; -+,0x00,0x04,0x00,0x09,0x00,0x11,0x09,0x24,0x09,0x06,0x09,0x04,0x01,0x06,0x08,0x00,0x00,0x00,0x00,0x00,0x19,0x50,0x90,0x10,0x18,0x98,0x18,0x28,0x08,0x49,0x07,0x00 -+// 13509 㓅 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x04,0x00,0x08,0x18,0x08,0x00,0x18,0x00,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x60,0x00 -+// 13510 㓆 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x01,0x04,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x88,0x06,0x82,0x88,0x90,0xc0,0x80,0x80,0x82,0x7e,0x00 -+// 13511 㓇 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x04,0x00,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x3c,0x20,0x20,0x20,0x22,0x20,0x20,0x20,0x08,0x48,0x04,0x06,0x03,0x00 -+// 13512 㓈 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x00,0x08,0x09,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x80,0x80,0x84,0x80,0x80,0x80,0x80,0x84,0x80,0x00 -+// 13513 㓉 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x08,0x09,0x11,0x11,0x11,0x11,0x01,0x00,0x00,0x00,0x1c,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x04,0x04,0x04,0x04,0x04,0x00 -+// 13514 㓊 ; -+,0x00,0x00,0x01,0x11,0x09,0x01,0x01,0x01,0x09,0x09,0x11,0x11,0x11,0x11,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x4a,0x4a,0x4a,0x4a,0x4a,0x02,0x02,0x06,0x00 -+// 13515 㓋 ; -+,0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x11,0x02,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x4b,0x00,0xc0,0x84,0x02,0x00,0x00 -+// 13516 㓌 ; -+,0x00,0x00,0x00,0x10,0x08,0x00,0x01,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x20,0x40,0x40,0x88,0x04,0x23,0x20,0x20,0x26,0x20,0x20,0x20,0x22,0x00 -+// 13517 㓍 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x04,0x08,0x18,0x00,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x00,0x86,0x02,0x48,0x48,0x48,0x88,0x89,0x0f,0x00 -+// 13518 㓎 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x02,0x0a,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x08,0x08,0x50,0x20,0x70,0x0e,0x00 -+// 13519 㓏 ; -+,0x00,0x00,0x01,0x10,0x08,0x00,0x00,0x01,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x03,0x00,0x48,0x04,0x80,0x48,0x48,0x48,0x48,0x48,0x00,0x00,0x06,0x00 -+// 13520 㓐 ; -+,0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00,0x08,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x20,0x24,0x20,0x20,0x22,0x00,0x84,0x22,0x20,0x20,0x20,0x20,0x21,0x00 -+// 13521 㓑 ; -+,0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00,0x00,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x20,0x24,0x20,0x20,0x00,0x08,0x40,0x22,0x20,0x21,0x20,0x20,0x20,0x00 -+// 13522 㓒 ; -+,0x00,0x00,0x08,0x00,0x00,0x0c,0x00,0x09,0x02,0x00,0x00,0x00,0x08,0x00,0x01,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0xb2,0x00,0x10,0x8e,0x80,0x84,0x92,0x80,0x80,0x00 -+// 13523 㓓 ; -+,0x00,0x00,0x00,0x10,0x08,0x00,0x02,0x02,0x0a,0x02,0x12,0x12,0x12,0x12,0x02,0x00,0x00,0x00,0x00,0x22,0x20,0x20,0x02,0x42,0x52,0x22,0x22,0x22,0x22,0x22,0x26,0x00 -+// 13524 㓔 ; -+,0x00,0x00,0x00,0x11,0x01,0x01,0x01,0x01,0x09,0x09,0x10,0x10,0x11,0x12,0x00,0x00,0x00,0x02,0x80,0x20,0x22,0x27,0x20,0x20,0x20,0x68,0xe8,0xa0,0x20,0x20,0x64,0x00 -+// 13525 㓕 ; -+,0x00,0x00,0x00,0x10,0x02,0x02,0x02,0x02,0x02,0x12,0x12,0x10,0x14,0x01,0x00,0x00,0x00,0x00,0x0a,0x08,0x18,0x08,0x08,0x49,0x6a,0x4a,0x4c,0xac,0x8c,0x13,0x01,0x00 -+// 13526 㓖 ; -+,0x00,0x00,0x01,0x11,0x01,0x01,0x00,0x00,0x09,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x26,0x24,0x24,0x24,0x20,0x20,0xa4,0x20,0x24,0x20,0x20,0x20,0x20,0x00 -+// 13527 㓗 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x09,0x08,0x10,0x11,0x11,0x11,0x00,0x00,0x00,0x80,0xa1,0x80,0x88,0xa8,0xa2,0x40,0x98,0x60,0x86,0x20,0x24,0x22,0x20,0x00 -+// 13528 㓘 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x09,0x08,0x08,0x0a,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x84,0x34,0x24,0x44,0x84,0x14,0x04,0x94,0x04,0x8b,0x01,0x00 -+// 13529 㓙 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x02,0x0a,0x22,0x22,0xc2,0xc2,0xa2,0x12,0x02,0x02,0x02,0x00 -+// 13530 㓚 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x18,0x00,0x00,0x00,0x00,0x02,0x02,0x82,0x12,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0e,0x00 -+// 13531 㓛 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x10,0x10,0x10,0x00,0x20,0x20,0x02,0x42,0x02,0x82,0x04,0x00 -+// 13532 㓜 ; -+,0x00,0x00,0x04,0x04,0x08,0x01,0x11,0x3e,0x02,0x04,0x08,0x01,0x11,0x30,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x92,0x12,0x12,0x02,0x22,0x22,0x02,0x42,0x82,0x0c,0x00 -+// 13533 㓝 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x82,0x02,0xc2,0x02,0x02,0x02,0x82,0x82,0x02,0x02,0x02,0x82,0x06,0x00 -+// 13534 㓞 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0xa2,0x22,0x02,0x42,0x84,0x00 -+// 13535 㓟 ; -+,0x00,0x02,0x02,0x02,0x1a,0x12,0x12,0x12,0x10,0x10,0x11,0x13,0x03,0x04,0x00,0x00,0x00,0x02,0x02,0x02,0x42,0x12,0x12,0x92,0x92,0x92,0x12,0x02,0x82,0x82,0x06,0x00 -+// 13536 㓠 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x02,0x02,0x42,0x12,0x12,0x12,0x92,0x92,0x92,0x82,0x82,0x82,0x8e,0x00 -+// 13537 㓡 ; -+,0x00,0x00,0x08,0x08,0x02,0x12,0x02,0x02,0x02,0x02,0x12,0x12,0x12,0x1e,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x42,0x42,0x42,0x42,0x06,0x00 -+// 13538 㓢 ; -+,0x00,0x00,0x04,0x04,0x08,0x11,0x03,0x02,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0xc2,0x82,0x12,0x12,0x92,0x52,0x92,0x92,0x82,0x82,0x82,0x86,0x00 -+// 13539 㓣 ; -+,0x00,0x00,0x02,0x04,0x04,0x08,0x10,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x02,0x82,0x52,0x12,0x12,0x12,0x92,0x92,0x92,0x82,0x82,0x86,0x00 -+// 13540 㓤 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x02,0x02,0x52,0x12,0x12,0x52,0x12,0x12,0x92,0x82,0x82,0x82,0x86,0x00 -+// 13541 㓥 ; -+,0x00,0x00,0x02,0x02,0x02,0x0a,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x82,0x02,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 13542 㓦 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x42,0x02,0x02,0x12,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x82,0x86,0x00 -+// 13543 㓧 ; -+,0x00,0x00,0x06,0x05,0x08,0x12,0x00,0x01,0x01,0x02,0x02,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x02,0x02,0x92,0x52,0x12,0x92,0x12,0x12,0x12,0x02,0x02,0x02,0x86,0x00 -+// 13544 㓨 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x0a,0x02,0x12,0x02,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x82,0x42,0x22,0x02,0x02,0x82,0x42,0x06,0x00 -+// 13545 㓩 ; -+,0x00,0x00,0x04,0x04,0x09,0x10,0x0a,0x02,0x0a,0x02,0x02,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x02,0x82,0x02,0x12,0x52,0x52,0x52,0x52,0x52,0x52,0x42,0x42,0xc6,0x00 -+// 13546 㓪 ; -+,0x00,0x04,0x00,0x11,0x10,0x10,0x11,0x10,0x11,0x10,0x10,0x11,0x15,0x18,0x00,0x00,0x00,0x00,0x00,0x92,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x22,0x42,0x02,0x84,0x00 -+// 13547 㓫 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x00,0x00,0x00,0x02,0x42,0x0a,0xca,0x6a,0xca,0x8a,0x8a,0x8a,0x82,0x82,0x82,0x86,0x00 -+// 13548 㓬 ; -+,0x00,0x02,0x02,0x0a,0x02,0x04,0x04,0x00,0x08,0x02,0x02,0x04,0x04,0x08,0x01,0x00,0x00,0x00,0x82,0x02,0x42,0x0a,0x0a,0x8a,0x4a,0xea,0x0a,0x02,0x82,0x82,0x86,0x00 -+// 13549 㓭 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x08,0x10,0x12,0x10,0x11,0x10,0x10,0x01,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x86,0x00 -+// 13550 㓮 ; -+,0x00,0x00,0x10,0x12,0x12,0x12,0x12,0x10,0x10,0x15,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x42,0x42,0x42,0xc6,0x00 -+// 13551 㓯 ; -+,0x00,0x00,0x09,0x02,0x00,0x02,0x0a,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x42,0x02,0x02,0x8a,0x42,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 13552 㓰 ; -+,0x00,0x00,0x02,0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x20,0x00,0x00,0x00,0x00,0x42,0x02,0x0a,0x8a,0xaa,0xaa,0xaa,0xaa,0xaa,0xa2,0x22,0x22,0x06,0x00 -+// 13553 㓱 ; -+,0x00,0x02,0x02,0x04,0x08,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x00,0x00,0x00,0x02,0x82,0x42,0xaa,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x02,0x46,0x00 -+// 13554 㓲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x18,0x1a,0x1a,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x42,0x42,0x4a,0x0a,0x0a,0xca,0x0a,0x4a,0x0a,0x02,0x02,0x46,0x00 -+// 13555 㓳 ; -+,0x00,0x00,0x09,0x01,0x09,0x01,0x09,0x00,0x00,0x00,0x10,0x12,0x10,0x06,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x10,0x10,0x10,0x90,0x10,0x00,0x00,0x0c,0x00,0xff,0x00 -+// 13556 㓴 ; -+,0x00,0x00,0x00,0x00,0x14,0x15,0x15,0x15,0x10,0x02,0x06,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x42,0x02,0x42,0x42,0x42,0x42,0x42,0x02,0x42,0x02,0x02,0xc2,0x06,0x00 -+// 13557 㓵 ; -+,0x00,0x00,0x15,0x15,0x15,0x00,0x00,0x00,0x00,0x04,0x0c,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x42,0x42,0x42,0x02,0x02,0x02,0x42,0x02,0xc2,0x82,0x82,0x82,0x06,0x00 -+// 13558 㓶 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x22,0xa2,0x8a,0xaa,0x2a,0x2a,0x0a,0x0a,0x0a,0x02,0x82,0x42,0x06,0x00 -+// 13559 㓷 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x07,0x0a,0x02,0x02,0x00,0x00,0x02,0x02,0x82,0x92,0x92,0x92,0x92,0x12,0x52,0x12,0x02,0x82,0x42,0x0e,0x00 -+// 13560 㓸 ; -+,0x00,0x00,0x15,0x15,0x15,0x05,0x05,0x11,0x00,0x00,0x05,0x05,0x05,0x05,0x10,0x00,0x00,0x02,0x42,0x42,0x4a,0x42,0x02,0x42,0x42,0x42,0x42,0x02,0x02,0x02,0x06,0x00 -+// 13561 㓹 ; -+,0x00,0x00,0x10,0x11,0x11,0x15,0x11,0x10,0x10,0x11,0x11,0x15,0x01,0x22,0x00,0x00,0x00,0x00,0x02,0x02,0x42,0x02,0x02,0x42,0x02,0x02,0x82,0x02,0x02,0x42,0x06,0x00 -+// 13562 㓺 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x13,0x10,0x11,0x10,0x10,0x11,0x02,0x00,0x00,0x00,0x02,0x42,0x02,0x22,0x0a,0x02,0xc2,0x02,0x02,0x82,0x82,0x82,0xc2,0x06,0x00 -+// 13563 㓻 ; -+,0x00,0x00,0x15,0x15,0x15,0x15,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x1b,0x10,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x02,0x42,0x02,0x02,0x42,0x02,0x02,0x02,0x06,0x00 -+// 13564 㓼 ; -+,0x00,0x02,0x02,0x06,0x06,0x02,0x02,0x04,0x0a,0x02,0x06,0x02,0x1a,0x02,0x06,0x00,0x00,0x02,0x02,0x02,0x12,0x52,0x12,0x12,0x52,0x92,0x12,0x02,0xc2,0x02,0x04,0x00 -+// 13565 㓽 ; -+,0x00,0x02,0x02,0x12,0x12,0x02,0x02,0x10,0x00,0x00,0x02,0x0a,0x0a,0x02,0x06,0x00,0x00,0x00,0x42,0x42,0x4a,0x0a,0x0a,0x4a,0x0a,0x0a,0x0a,0x02,0x42,0x42,0x06,0x00 -+// 13566 㓾 ; -+,0x00,0x00,0x08,0x00,0x08,0x01,0x01,0x01,0x00,0x11,0x15,0x11,0x01,0x01,0x01,0x00,0x00,0x00,0x22,0x22,0x0a,0x4a,0x0a,0x4a,0x0a,0x0a,0x0a,0x02,0x22,0x02,0x06,0x00 -+// 13567 㓿 ; -+,0x00,0x00,0x03,0x00,0x03,0x05,0x00,0x02,0x04,0x01,0x05,0x01,0x01,0x19,0x02,0x00,0x00,0x02,0x82,0x02,0x02,0xca,0x2a,0x0a,0x4a,0x2a,0x8a,0x02,0x82,0x42,0x06,0x00 -+// 13568 㔀 ; -+,0x00,0x00,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x00,0x08,0x10,0x02,0x00,0x00,0x00,0x42,0x42,0x42,0x4a,0x0a,0x0a,0x4a,0x4a,0x4a,0x02,0x02,0x42,0x06,0x00 -+// 13569 㔁 ; -+,0x00,0x00,0x04,0x04,0x10,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x1c,0x00,0x00,0x00,0x02,0x22,0x82,0x42,0xc2,0x02,0x82,0x82,0x82,0x02,0x02,0x02,0x06,0x00 -+// 13570 㔂 ; -+,0x00,0x02,0x0a,0x0a,0x02,0x06,0x0a,0x02,0x08,0x16,0x15,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x82,0x02,0x2a,0x0a,0x4a,0x0a,0x4a,0x4a,0x4a,0x42,0x42,0x42,0x46,0x00 -+// 13571 㔃 ; -+,0x00,0x04,0x00,0x02,0x14,0x00,0x09,0x00,0x05,0x10,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x20,0x24,0x48,0x42,0x42,0x42,0x40,0x41,0x00,0x86,0x80,0x04,0x04,0x1c,0x00 -+// 13572 㔄 ; -+,0x00,0x00,0x05,0x05,0x15,0x15,0x15,0x00,0x02,0x0a,0x06,0x06,0x0a,0x02,0x02,0x00,0x00,0x00,0x02,0x02,0x42,0x02,0x42,0x02,0x82,0x02,0x02,0x02,0x82,0x42,0x06,0x00 -+// 13573 㔅 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x02,0x42,0x42,0x42,0x4a,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 13574 㔆 ; -+,0x00,0x00,0x08,0x09,0x29,0x08,0x10,0x14,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x42,0x02,0x8a,0xca,0xca,0x6a,0x0a,0x4a,0x4a,0x42,0x42,0x42,0x46,0x00 -+// 13575 㔇 ; -+,0x00,0x00,0x06,0x14,0x08,0x08,0x15,0x05,0x04,0x10,0x10,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x02,0x22,0x4a,0x4a,0x6a,0x4a,0x4a,0x0a,0x4a,0x42,0x82,0x42,0x06,0x00 -+// 13576 㔈 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x00,0x00,0x00,0x82,0x82,0x82,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x02,0x06,0x00 -+// 13577 㔉 ; -+,0x00,0x00,0x08,0x08,0x08,0x01,0x01,0x05,0x05,0x01,0x15,0x15,0x17,0x04,0x04,0x00,0x00,0x00,0x22,0x22,0x0a,0xca,0x0a,0x2a,0x2a,0x0a,0x2a,0x62,0x22,0x22,0x26,0x00 -+// 13578 㔊 ; -+,0x00,0x02,0x02,0x00,0x00,0x10,0x11,0x10,0x00,0x00,0x08,0x08,0x08,0x00,0x1e,0x00,0x00,0x02,0x02,0x02,0x42,0x52,0x52,0x52,0x52,0x92,0x12,0x02,0x82,0x02,0x06,0x00 -+// 13579 㔋 ; -+,0x00,0x00,0x12,0x10,0x12,0x12,0x16,0x10,0x10,0x00,0x01,0x00,0x00,0x0d,0x30,0x00,0x00,0x00,0x02,0x82,0x82,0x0a,0x4a,0x0a,0x0a,0x0a,0x4a,0x42,0x42,0x42,0x06,0x00 -+// 13580 㔌 ; -+,0x00,0x00,0x12,0x02,0x02,0x02,0x02,0x1a,0x03,0x02,0x0a,0x02,0x0e,0x02,0x02,0x00,0x00,0x00,0x02,0x22,0x22,0x4a,0x2a,0x0a,0x8a,0x0a,0x4a,0x82,0x42,0x22,0x06,0x00 -+// 13581 㔍 ; -+,0x00,0x00,0x09,0x10,0x00,0x08,0x08,0x00,0x08,0x08,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x52,0x52,0x52,0x52,0x52,0x12,0xa2,0x82,0x82,0x86,0x00 -+// 13582 㔎 ; -+,0x00,0x00,0x10,0x14,0x04,0x0b,0x19,0x00,0x00,0x09,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x8a,0x84,0x20,0x09,0x00,0x18,0x80,0x00,0x84,0x84,0x04,0x04,0x1c,0x00 -+// 13583 㔏 ; -+,0x00,0x00,0x06,0x04,0x08,0x08,0x08,0x00,0x00,0x08,0x10,0x15,0x11,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x48,0x48,0x08,0x28,0x88,0x88,0x20,0x20,0x22,0x26,0x00 -+// 13584 㔐 ; -+,0x00,0x00,0x08,0x11,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x1c,0x00,0x00,0x00,0x82,0x02,0x42,0x0a,0x02,0x02,0x82,0x02,0x82,0x02,0x82,0x82,0x06,0x00 -+// 13585 㔑 ; -+,0x00,0x00,0x02,0x00,0x04,0x01,0x01,0x00,0x01,0x01,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x86,0x00,0x04,0x0c,0x00 -+// 13586 㔒 ; -+,0x00,0x00,0x00,0x10,0x09,0x09,0x09,0x09,0x09,0x00,0x10,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x00,0x40,0x00,0x08,0x48,0x08,0x08,0x08,0x28,0xa0,0xa0,0xa0,0x26,0x00 -+// 13587 㔓 ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x12,0x92,0x12,0x02,0x22,0x22,0x42,0x02,0x04,0x00 -+// 13588 㔔 ; -+,0x00,0x04,0x04,0x04,0x04,0x08,0x08,0x01,0x00,0x06,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0xa2,0xa2,0x22,0x22,0x22,0x00,0x18,0x00,0x04,0x04,0x08,0xf0,0x00 -+// 13589 㔕 ; -+,0x00,0x00,0x10,0x11,0x00,0x01,0x00,0x02,0x02,0x02,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x19,0x01,0x01,0x11,0x11,0x11,0x10,0x00,0xa2,0x02,0x00 -+// 13590 㔖 ; -+,0x00,0x04,0x04,0x04,0x04,0x08,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa2,0x22,0x22,0x22,0x22,0x00,0x0c,0x04,0x00,0x00,0x00,0x00,0x00 -+// 13591 㔗 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x0a,0x0a,0x0a,0x12,0x02,0x00,0x00,0x00,0x10,0x10,0x90,0x92,0x92,0x12,0x12,0x52,0x12,0x12,0xa2,0x02,0x04,0x00 -+// 13592 㔘 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x35,0x04,0x04,0x24,0x24,0x24,0x25,0x38,0x00,0x00,0x00,0x00,0x10,0x90,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x06,0x00 -+// 13593 㔙 ; -+,0x00,0x01,0x01,0x0a,0x02,0x08,0x08,0x08,0x0b,0x08,0x08,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x1a,0x12,0x12,0x92,0x12,0x12,0x12,0x22,0x02,0x06,0x00 -+// 13594 㔚 ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x11,0x10,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x02,0x12,0x12,0x92,0x12,0x12,0x22,0x22,0x06,0x00 -+// 13595 㔛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x08,0x80,0x80,0x80,0x00,0x04,0x1c,0x00 -+// 13596 㔜 ; -+,0x00,0x00,0x06,0x00,0x02,0x0a,0x00,0x00,0x00,0x02,0x02,0x32,0x02,0x02,0x06,0x00,0x00,0x80,0x00,0x40,0x80,0x1a,0x12,0x92,0x12,0x12,0x12,0x02,0x22,0x42,0x06,0x00 -+// 13597 㔝 ; -+,0x00,0x00,0x04,0x04,0x04,0x14,0x04,0x04,0x0d,0x1f,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x88,0x08,0x08,0xdb,0x08,0x00,0x00,0x90,0x90,0x10,0x00,0xa2,0x82,0x00 -+// 13598 㔞 ; -+,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x2a,0x0a,0x02,0x02,0x00,0x00,0x08,0x88,0x08,0x0a,0x08,0x08,0x48,0x80,0x00,0x10,0x52,0x02,0x22,0x06,0x00 -+// 13599 㔟 ; -+,0x00,0x00,0x00,0x05,0x10,0x01,0x00,0x00,0x18,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x34,0x04,0x24,0x34,0x41,0x03,0x00,0x84,0x04,0x04,0x04,0x18,0x00 -+// 13600 㔠 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x08,0x12,0x10,0x14,0x11,0x10,0x00,0x01,0x00,0x00,0x80,0x80,0x80,0x90,0x92,0x00,0x10,0xd0,0x12,0x12,0x12,0x82,0xa2,0x80,0x00 -+// 13601 㔡 ; -+,0x00,0x04,0x00,0x11,0x12,0x16,0x11,0x10,0x00,0x10,0x17,0x10,0x12,0x1b,0x10,0x00,0x00,0x00,0x10,0x90,0x90,0x92,0x92,0x92,0x12,0x12,0x52,0x12,0x22,0x02,0x06,0x00 -+// 13602 㔢 ; -+,0x00,0x04,0x08,0x12,0x04,0x00,0x19,0x00,0x05,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x20,0x24,0x48,0x52,0x42,0x40,0x40,0x7f,0x80,0x82,0x02,0x00,0x04,0x1c,0x00 -+// 13603 㔣 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x2d,0x24,0x2d,0x24,0x24,0x25,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x8a,0x88,0x08,0xe8,0x80,0x80,0x92,0x92,0x22,0x06,0x00 -+// 13604 㔤 ; -+,0x00,0x00,0x02,0x00,0x06,0x02,0x0b,0x06,0x0a,0x10,0x12,0x10,0x12,0x10,0x10,0x00,0x00,0x00,0x08,0x40,0x00,0x1b,0x40,0x00,0x90,0x50,0x90,0x90,0x82,0xa2,0x86,0x00 -+// 13605 㔥 ; -+,0x00,0x00,0x15,0x00,0x10,0x08,0x01,0x35,0x01,0x04,0x15,0x05,0x05,0x05,0x04,0x00,0x00,0x08,0x48,0x08,0x48,0x0b,0x08,0x08,0x48,0x00,0x00,0x92,0x12,0x42,0x26,0x00 -+// 13606 㔦 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x09,0x02,0x12,0x08,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x08,0x08,0x88,0x1a,0x0a,0x82,0xc2,0x92,0x92,0x92,0x02,0xa2,0x06,0x00 -+// 13607 㔧 ; -+,0x00,0x00,0x02,0x02,0x10,0x12,0x12,0x10,0x10,0x10,0x00,0x00,0x09,0x0b,0x08,0x00,0x00,0x00,0x88,0x08,0x48,0x0a,0x88,0x88,0x80,0x80,0x90,0x12,0x12,0xa2,0x06,0x00 -+// 13608 㔨 ; -+,0x00,0x04,0x04,0x0c,0x09,0x10,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x42,0x52,0x42,0x4a,0x02,0x22,0x22,0x02,0x22,0x02,0x26,0x00 -+// 13609 㔩 ; -+,0x00,0x04,0x04,0x08,0x00,0x10,0x01,0x01,0x06,0x00,0x0a,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x82,0x82,0x82,0x02,0x22,0x02,0x52,0x12,0x12,0x00,0x0c,0x00 -+// 13610 㔪 ; -+,0x00,0x04,0x04,0x08,0x01,0x01,0x01,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x42,0x82,0x42,0xa2,0x12,0x00,0x0c,0x00 -+// 13611 㔫 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x44,0x48,0x60,0x40,0x40,0x40,0x42,0x3e,0x00 -+// 13612 㔬 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x04,0x00,0x08,0x08,0x08,0x08,0xc8,0x00,0xc0,0x00,0x00,0x00 -+// 13613 㔭 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x19,0x10,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00,0x02,0x10,0x90,0x90,0x90,0x30,0x1e,0x00 -+// 13614 㔮 ; -+,0x00,0x00,0x02,0x13,0x02,0x0c,0x0d,0x00,0x0c,0x0c,0x00,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x08,0x0a,0x08,0x98,0x09,0x90,0x88,0x88,0x88,0x88,0x88,0x89,0xa0,0x00 -+// 13615 㔯 ; -+,0x00,0x00,0x10,0x10,0x11,0x11,0x10,0x12,0x10,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x16,0x00,0x18,0x00,0x00,0x10,0x00,0x02,0x00 -+// 13616 㔰 ; -+,0x00,0x00,0x10,0x11,0x11,0x11,0x12,0x10,0x11,0x11,0x10,0x11,0x12,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x50,0x50,0x56,0x93,0x90,0x10,0x10,0x10,0x02,0x00 -+// 13617 㔱 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x01,0x00,0x18,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x04,0x44,0x44,0x44,0x40,0x90,0x0c,0x04,0x02,0x00 -+// 13618 㔲 ; -+,0x00,0x00,0x10,0x11,0x12,0x14,0x11,0x14,0x14,0x14,0x14,0x14,0x16,0x14,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x50,0x14,0x94,0x94,0x94,0x14,0x84,0x25,0x00,0x02,0x00 -+// 13619 㔳 ; -+,0x00,0x00,0x10,0x12,0x12,0x14,0x10,0x14,0x14,0x14,0x14,0x14,0x16,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x84,0x84,0xa4,0x24,0xa4,0x47,0x00,0x00,0x00 -+// 13620 㔴 ; -+,0x00,0x00,0x10,0x10,0x12,0x12,0x12,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x10,0x00,0x00,0x00,0x02,0x08,0x48,0x48,0x48,0x00,0xb8,0x00,0x24,0x00,0x08,0x04,0x02,0x00 -+// 13621 㔵 ; -+,0x00,0x00,0x10,0x10,0x14,0x14,0x14,0x10,0x11,0x11,0x11,0x10,0x11,0x10,0x10,0x00,0x00,0x00,0x00,0xa4,0x24,0x20,0xbe,0x00,0x30,0x00,0x02,0x00,0x08,0x00,0x00,0x00 -+// 13622 㔶 ; -+,0x00,0x00,0x10,0x12,0x10,0x11,0x10,0x10,0x14,0x14,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x14,0x20,0x1c,0x02,0x82,0x80,0xa4,0x24,0x24,0x00,0x24,0x02,0x00 -+// 13623 㔷 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x00,0x44,0x40,0x44,0x44,0x44,0xa4,0x94,0x04,0x04,0x0c,0x02,0x00 -+// 13624 㔸 ; -+,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x15,0x15,0x18,0x10,0x10,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0x24,0x20,0x20,0x38,0x08,0x40,0x40,0x0e,0x02,0x00 -+// 13625 㔹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x84,0x0c,0x00 -+// 13626 㔺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x0d,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x80,0x82,0x80,0x80,0x90,0x10,0x12,0x10,0x10,0x10,0x10,0x02,0x00,0x00 -+// 13627 㔻 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x80,0x40,0x0c,0x02,0x00,0x00,0x40,0x42,0x40,0x00,0x00,0x00,0x00 -+// 13628 㔼 ; -+,0x00,0x00,0x04,0x05,0x04,0x04,0x34,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x50,0x90,0x90,0x14,0x10,0x92,0x00,0x80,0x82,0x80,0x80,0x80,0x00 -+// 13629 㔽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x80,0x84,0x80,0x80,0x06,0x00,0x30,0x00,0x00,0x20,0x00,0x04,0x00,0x00 -+// 13630 㔾 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x07,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00,0x00,0x04,0x04,0xfc,0x00 -+// 13631 㔿 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x10,0x00 -+// 13632 㕀 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0xc4,0x04,0xc4,0x04,0x04,0x00,0x0c,0x00,0x08,0x18,0x02,0xfe,0x00 -+// 13633 㕁 ; -+,0x00,0x00,0x00,0x03,0x04,0x02,0x02,0x04,0x04,0x09,0x0a,0x10,0x00,0x0e,0x00,0x00,0x00,0x80,0x82,0x12,0xd2,0x52,0x12,0x52,0x12,0x12,0x12,0x12,0xd6,0x50,0x10,0x00 -+// 13634 㕂 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x02,0x40,0x40,0x90,0x08,0x44,0x22,0x00,0x08,0x08,0x10,0x10,0x20,0x00 -+// 13635 㕃 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x11,0x11,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0x88,0x88,0x88,0x8a,0x88,0x88,0x08,0x08,0x08,0x00,0x00 -+// 13636 㕄 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x08,0x00,0x10,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x20,0x40,0x80,0x08,0xb0,0x20,0x40,0x84,0x46,0x02,0x00 -+// 13637 㕅 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x24,0x20,0x20,0x24,0x20,0x20,0x20,0x20,0x00 -+// 13638 㕆 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x01,0x11,0x11,0x01,0x01,0x00,0x00,0x00,0x02,0x20,0x20,0x22,0x20,0x20,0x20,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 13639 㕇 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x01,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x40,0x00,0x06,0x00,0x08,0x08,0x90,0x90,0x80,0x21,0x00,0x00 -+// 13640 㕈 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0b,0x01,0x11,0x01,0x01,0x00,0x00,0x00,0x00,0x40,0x20,0x02,0x40,0x86,0x84,0x10,0x10,0x08,0x0c,0x86,0x00,0x00 -+// 13641 㕉 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x09,0x01,0x11,0x01,0x01,0x00,0x00,0x00,0x00,0x40,0x40,0x90,0x08,0x06,0x01,0x00,0x0c,0x00,0x00,0x00,0x08,0x00 -+// 13642 㕊 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x02,0x02,0x02,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x00,0x48,0x40,0x40,0x40,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x00 -+// 13643 㕋 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x0a,0x08,0x08,0x00,0x00,0x11,0x00,0x00,0x00,0x00,0x00,0x02,0x40,0x40,0x90,0x08,0x0e,0x00,0x00,0x40,0x08,0x08,0x00,0x00,0x00 -+// 13644 㕌 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x88,0x88,0x18,0x00 -+// 13645 㕍 ; -+,0x00,0x00,0x08,0x09,0x09,0x0a,0x0a,0x0e,0x0a,0x02,0x02,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x20,0x20,0x24,0x20,0x24,0x20,0x20,0x22,0x00,0x00 -+// 13646 㕎 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x03,0x00,0x12,0x12,0x02,0x00,0x00,0x00,0x00,0x02,0x40,0x48,0x40,0x42,0x80,0x08,0x04,0x04,0xa4,0xa4,0xa4,0x00,0x00 -+// 13647 㕏 ; -+,0x00,0x00,0x18,0x10,0x10,0x10,0x14,0x10,0x10,0x10,0x10,0x12,0x10,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x14,0xc4,0x04,0x14,0x05,0x04,0x84,0x84,0x04,0x04,0x00 -+// 13648 㕐 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x09,0x09,0x00,0x10,0x10,0x04,0x00,0x00,0x00,0x00,0x00,0x80,0x04,0x04,0x04,0x04,0x00,0x02,0x02,0x0a,0xaa,0x04,0x0c,0x00 -+// 13649 㕑 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x09,0x00,0x00,0x00,0x10,0x10,0x12,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0x44,0x54,0x4c,0x44,0x84,0x84,0x0c,0x00 -+// 13650 㕒 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x11,0x10,0x17,0x00,0x01,0x00,0x00,0x00,0x00,0x90,0xa4,0x40,0x40,0x42,0x50,0x14,0x90,0x14,0x0c,0x18,0x03,0x00 -+// 13651 㕓 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x10,0x10,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x44,0xd4,0x44,0x44,0x40,0x00,0x80,0x12,0x44,0x40,0x43,0x00 -+// 13652 㕔 ; -+,0x00,0x00,0x00,0x00,0x05,0x05,0x04,0x15,0x15,0x11,0x14,0x17,0x10,0x0d,0x00,0x00,0x00,0x00,0x00,0x08,0x0a,0x08,0x52,0x52,0x02,0x00,0x00,0x08,0x41,0x02,0x1e,0x00 -+// 13653 㕕 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x00,0x01,0x01,0x02,0x04,0x0f,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x08,0x0c,0x04,0x80,0x00,0x00,0x08,0x04,0x06,0x00,0x00 -+// 13654 㕖 ; -+,0x00,0x00,0x01,0x02,0x00,0x04,0x08,0x11,0x10,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x80,0x00,0x10,0x00,0x10,0x24,0x60,0x00,0x82,0xc0,0x80,0x98,0x87,0x80,0x00 -+// 13655 㕗 ; -+,0x00,0x01,0x09,0x02,0x00,0x04,0x00,0x0c,0x08,0x0b,0x12,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x08,0x00,0x10,0x10,0x00,0x22,0x22,0x20,0x80,0x60,0x0f,0x00 -+// 13656 㕘 ; -+,0x00,0x00,0x01,0x03,0x00,0x04,0x01,0x18,0x01,0x02,0x00,0x02,0x04,0x08,0x01,0x00,0x00,0x80,0x00,0x18,0x00,0x00,0x12,0xc0,0x20,0x18,0x07,0x00,0x08,0x04,0x80,0x00 -+// 13657 㕙 ; -+,0x00,0x00,0x00,0x01,0x39,0x00,0x11,0x09,0x09,0x11,0x02,0x06,0x06,0x02,0x00,0x00,0x00,0x00,0x10,0x24,0x00,0x00,0x52,0x52,0x52,0x5a,0x18,0x28,0x0a,0x09,0x0f,0x00 -+// 13658 㕚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x09,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x48,0x50,0x10,0x20,0xa0,0x40,0xe0,0x30,0x0c,0x07,0x00 -+// 13659 㕛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x18,0x10,0x20,0x60,0x18,0x04,0x18,0x10,0x20,0xe0,0xc0,0x38,0x06,0x00 -+// 13660 㕜 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0x00,0xc4,0x04,0x04,0xc4,0x00,0xc8,0x18,0x10,0x20,0xc0,0x30,0x0e,0x00 -+// 13661 㕝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc2,0x00,0xc4,0x04,0x04,0x00,0x08,0x18,0x10,0xa0,0xe0,0x0e,0x00 -+// 13662 㕞 ; -+,0x00,0x00,0x10,0x10,0x10,0x12,0x12,0x12,0x1a,0x0a,0x0a,0x2a,0x0a,0x0a,0x02,0x00,0x00,0x00,0x80,0x82,0x82,0x82,0x04,0x04,0x94,0x98,0x88,0x98,0x84,0x86,0x03,0x00 -+// 13663 㕟 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x02,0x02,0x1a,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x80,0x84,0x94,0x88,0x88,0x88,0x94,0x82,0x81,0x00 -+// 13664 㕠 ; -+,0x00,0x00,0x00,0x09,0x01,0x00,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x90,0x92,0x10,0x10,0x16,0x10,0x00,0x08,0x18,0x10,0xe0,0xb0,0x0e,0x00 -+// 13665 㕡 ; -+,0x00,0x00,0x05,0x04,0x10,0x20,0x00,0x08,0x06,0x09,0x00,0x19,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x02,0x42,0x02,0x02,0x84,0x14,0x0c,0x88,0x08,0x14,0x02,0x03,0x00 -+// 13666 㕢 ; -+,0x00,0x00,0x04,0x04,0x20,0x21,0x00,0x11,0x11,0x10,0x11,0x10,0x10,0x09,0x10,0x00,0x00,0x00,0x80,0x03,0x42,0x02,0x02,0x90,0x04,0x0c,0x08,0x08,0x14,0x02,0x01,0x00 -+// 13667 㕣 ; -+,0x00,0x00,0x03,0x02,0x06,0x04,0x08,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x00,0x10,0x08,0x0c,0x07,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 13668 㕤 ; -+,0x00,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x09,0x07,0x00 -+// 13669 㕥 ; -+,0x00,0x00,0x00,0x00,0x13,0x10,0x10,0x10,0x10,0x10,0x12,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x30,0x30,0x20,0x48,0x48,0x84,0x06,0x03,0x00 -+// 13670 㕦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x80,0x80,0x82,0x80,0x00,0x20,0x18,0x07,0x00 -+// 13671 㕧 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x82,0x82,0x82,0x82,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 13672 㕨 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0x88,0xa8,0x98,0x88,0x88,0x08,0x08,0x09,0x06,0x00 -+// 13673 㕩 ; -+,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x00 -+// 13674 㕪 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0xa2,0x20,0x20,0x30,0x10,0x50,0x50,0x90,0x11,0x1f,0x00 -+// 13675 㕫 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x01,0x20,0x20,0x22,0x20,0x40,0x44,0x44,0x84,0x04,0x08,0x00 -+// 13676 㕬 ; -+,0x00,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x48,0x40,0x84,0x22,0x23,0x20,0x40,0x40,0x84,0x86,0x82,0x00 -+// 13677 㕭 ; -+,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x20,0x20,0x20,0x20,0x21,0x20,0x20,0x40,0x48,0x84,0x04,0x03,0x00 -+// 13678 㕮 ; -+,0x00,0x00,0x00,0x00,0x12,0x00,0x02,0x02,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x82,0x03,0x05,0x04,0x08,0x48,0x30,0x30,0x50,0x8c,0x02,0x00 -+// 13679 㕯 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x0a,0x08,0x0a,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x40,0x40,0xc0,0x82,0x82,0x22,0x1a,0x02,0x12,0x12,0x12,0x12,0x02,0x04,0x00 -+// 13680 㕰 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x30,0x20,0x22,0x30,0x20,0x21,0x30,0x20,0x20,0x20,0x21,0x1f,0x00 -+// 13681 㕱 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x28,0x44,0x40,0x73,0x50,0x50,0x50,0x50,0x50,0x90,0x90,0x11,0x0f,0x00 -+// 13682 㕲 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x68,0x48,0x04,0x84,0x02,0x03,0x00,0x00,0x00 -+// 13683 㕳 ; -+,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0xaa,0x12,0x12,0x12,0x0a,0x0a,0x02,0x82,0x02,0x02,0x00 -+// 13684 㕴 ; -+,0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x08,0x88,0x09,0x07,0x00 -+// 13685 㕵 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 13686 㕶 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x20,0x20,0x00,0x40,0x44,0x44,0x44,0x44,0x44,0x44,0x04,0x00,0x00 -+// 13687 㕷 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x02,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 13688 㕸 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x02,0x00,0x04,0x04,0x44,0x20,0x28,0x28,0x00,0x02,0x00,0x00 -+// 13689 㕹 ; -+,0x00,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x02,0x02,0x12,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x42,0x40,0x40,0x46,0x04,0x84,0x88,0x18,0x18,0x2c,0x07,0x00 -+// 13690 㕺 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x00,0x00,0x20,0x00,0x02,0x00,0x00,0x0c,0x08,0x08,0x08,0x70,0x00 -+// 13691 㕻 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x40,0x02,0x80,0x80,0x88,0x84,0x82,0x00,0x0c,0x00,0x00,0x00,0x08,0x00 -+// 13692 㕼 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x02,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x82,0x02,0x0a,0xb2,0x92,0xaa,0x8a,0x82,0x82,0x02,0x0c,0x00 -+// 13693 㕽 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x28,0x28,0x08,0x08,0x08,0x92,0x00,0x41,0x00,0x00 -+// 13694 㕾 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x08,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x40,0x40,0x4c,0x46,0x42,0x40,0x00,0x22,0x2c,0x20,0x20,0x21,0x3e,0x00 -+// 13695 㕿 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xf8,0x00,0x42,0xe0,0x10,0x08,0x07,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 13696 㖀 ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x20,0x27,0x20,0x24,0x20,0x22,0x20,0x21,0x20,0x20,0x20,0x00 -+// 13697 㖁 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x38,0x2c,0x06,0x20,0x21,0x40,0x50,0x90,0x20,0x00,0x42,0x41,0x00 -+// 13698 㖂 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x02,0x02,0xb2,0x02,0x12,0x10,0x16,0x1c,0x18,0x2d,0x03,0x00 -+// 13699 㖃 ; -+,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x1c,0x80,0x80,0x81,0x80,0x80,0x80,0x82,0x02,0x02,0x02,0x02,0x42,0x00 -+// 13700 㖄 ; -+,0x00,0x00,0x00,0x00,0x16,0x10,0x10,0x11,0x13,0x14,0x10,0x10,0x01,0x01,0x00,0x00,0x00,0x00,0x82,0x92,0x92,0x92,0x92,0xb6,0x92,0x92,0x92,0x92,0x12,0x12,0x02,0x00 -+// 13701 㖅 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x05,0x15,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x12,0x10,0x98,0x80,0x00,0x02,0x0a,0x0c,0x0c,0x08,0x14,0x23,0x01,0x00 -+// 13702 㖆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x28,0x28,0x28,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x0a,0x00,0x00 -+// 13703 㖇 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x01,0x01,0x01,0x01,0x15,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x00,0x20,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x06,0x00 -+// 13704 㖈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x84,0x98,0xb2,0x80,0x18,0xc0,0x00,0xfc,0x00,0x04,0x04,0x04,0x04,0x00 -+// 13705 㖉 ; -+,0x00,0x00,0x00,0x00,0x16,0x10,0x11,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x48,0x84,0x03,0x00,0x80,0x94,0x80,0x80,0x80,0x80,0x00,0x00 -+// 13706 㖊 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x05,0x04,0x44,0x24,0x04,0x18,0x00 -+// 13707 㖋 ; -+,0x00,0x00,0x01,0x02,0x00,0x01,0x01,0x02,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x80,0x80,0x10,0x06,0x10,0x10,0x10,0x10,0x00,0x04,0x20,0x20,0x00,0x3e,0x00 -+// 13708 㖌 ; -+,0x00,0x02,0x06,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x20,0x20,0x28,0x20,0x40,0x40,0x85,0x00,0x00,0x0c,0x00,0x00,0x00,0x3e,0x00 -+// 13709 㖍 ; -+,0x00,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x22,0x20,0x20,0x00,0x00,0x0c,0x20,0x00,0x20,0x3e,0x00 -+// 13710 㖎 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x01,0x04,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x26,0x28,0x20,0x21,0xbe,0x80,0x20,0x0c,0x02,0x00,0x00,0x00,0x00,0x00 -+// 13711 㖏 ; -+,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x86,0x82,0x86,0x82,0x82,0x86,0x10,0x10,0x12,0x10,0x10,0x10,0x11,0x00 -+// 13712 㖐 ; -+,0x00,0x00,0x09,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x22,0x20,0x20,0x00,0x00,0x80,0x82,0x88,0x00,0x08,0x00,0x00,0x00,0x00 -+// 13713 㖑 ; -+,0x00,0x00,0x00,0x00,0x16,0x10,0x10,0x10,0x10,0x14,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0a,0x08,0x0b,0x08,0xa8,0xaa,0xaa,0xae,0xa4,0x24,0x2c,0x03,0x01,0x00 -+// 13714 㖒 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x01,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x32,0x12,0x32,0x10,0x10,0x73,0x71,0x10,0x96,0x10,0x10,0x00 -+// 13715 㖓 ; -+,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x44,0xa8,0x10,0x2c,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 13716 㖔 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x21,0x48,0x44,0x82,0x87,0x84,0x84,0x84,0x84,0x84,0x00 -+// 13717 㖕 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x00,0x44,0x48,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 13718 㖖 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x44,0x10,0x10,0x21,0x40,0xc6,0x00,0x00,0x04,0x04,0x04,0x0c,0x04,0x00 -+// 13719 㖗 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x92,0x30,0x20,0x44,0x93,0x10,0x04,0x04,0x08,0x10,0x00 -+// 13720 㖘 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x80,0x80,0x84,0x80,0x80,0xa0,0xa1,0xa2,0xa0,0x24,0x26,0x33,0x20,0x00 -+// 13721 㖙 ; -+,0x00,0x04,0x04,0x04,0x04,0x08,0x08,0x13,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x00,0xa2,0xa2,0xa2,0x22,0x22,0x00,0x20,0x2c,0x20,0x20,0x21,0x3e,0x00 -+// 13722 㖚 ; -+,0x00,0x02,0x04,0x04,0x0c,0x04,0x04,0x04,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x08,0x0a,0x08,0x48,0x08,0x08,0x10,0x20,0x26,0x20,0x20,0x21,0x3e,0x00 -+// 13723 㖛 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x80,0xc0,0x80,0x08,0x08,0x08,0x00,0x20,0x26,0x28,0x20,0x21,0x3f,0x00 -+// 13724 㖜 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x42,0x00,0x08,0x08,0x08,0x08,0x00,0x20,0x24,0x20,0x20,0x21,0x3e,0x00 -+// 13725 㖝 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x80,0x80,0x82,0xe0,0x10,0x06,0x00,0x20,0x24,0x20,0x20,0x21,0x3e,0x00 -+// 13726 㖞 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x10,0x10,0x12,0x10,0x28,0x06,0x02,0x00,0x06,0x00 -+// 13727 㖟 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x38,0x02,0x94,0x44,0x09,0x02,0x00,0x84,0x48,0x10,0x30,0x58,0x07,0x00 -+// 13728 㖠 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x08,0x04,0x03,0x04,0x00,0x10,0x10,0x94,0x12,0x11,0x20,0x00 -+// 13729 㖡 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x25,0x25,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x11,0x08,0x90,0x92,0x02,0x2a,0x04,0x04,0x08,0x08,0x16,0x03,0x00 -+// 13730 㖢 ; -+,0x00,0x00,0x00,0x01,0x25,0x25,0x25,0x25,0x25,0x24,0x24,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x10,0x02,0x00,0x28,0x08,0x0b,0xa8,0x88,0x88,0x88,0x88,0xc9,0x06,0x00 -+// 13731 㖣 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x02,0x00,0x44,0x48,0x01,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 13732 㖤 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x08,0x10,0x10,0x5a,0x12,0x32,0x5a,0x96,0x12,0x22,0x02,0x02,0x00 -+// 13733 㖥 ; -+,0x00,0x00,0x01,0x01,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x11,0x11,0x11,0x31,0x31,0x15,0x15,0x11,0x11,0x01,0x01,0x00 -+// 13734 㖦 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x12,0x92,0x12,0xb2,0x70,0x50,0x94,0x12,0x10,0x00 -+// 13735 㖧 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x90,0x90,0x90,0x88,0xcd,0x87,0x02,0x82,0x84,0x80,0x80,0x86,0x00 -+// 13736 㖨 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x00,0x12,0x90,0x08,0x04,0x06,0x02,0x20,0x00 -+// 13737 㖩 ; -+,0x00,0x00,0x01,0x01,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x60,0x03,0x00,0x42,0x02,0x0a,0x4a,0x0c,0x04,0xc4,0x04,0x02,0x01,0x00 -+// 13738 㖪 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x00,0x01,0x02,0x00,0x00,0x00,0x10,0x12,0x10,0x11,0x10,0x12,0x02,0x04,0x4c,0x08,0x08,0x94,0x27,0x03,0x00 -+// 13739 㖫 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x23,0x40,0x82,0x40,0x4c,0x88,0x20,0x30,0x38,0x86,0x00 -+// 13740 㖬 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x82,0x00,0x04,0x08,0x08,0x30,0x08,0x07,0x00 -+// 13741 㖭 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x21,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x20,0x40,0x40,0x84,0x23,0x20,0x22,0x2a,0x25,0x20,0x60,0x00 -+// 13742 㖮 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x05,0x15,0x05,0x01,0x01,0x01,0x00,0x00,0x00,0x20,0x48,0x04,0x06,0x04,0x00,0x02,0x08,0x08,0x6a,0x08,0x08,0x02,0x00 -+// 13743 㖯 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x08,0x08,0x01,0x01,0x01,0x01,0x09,0x00,0x00,0x00,0x00,0x04,0x14,0x04,0x14,0x14,0x04,0x04,0x40,0x4c,0x60,0x40,0x42,0x3e,0x00 -+// 13744 㖰 ; -+,0x00,0x00,0x01,0x01,0x01,0x09,0x00,0x00,0x08,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x28,0x20,0x02,0x3e,0x02,0x02,0x12,0x12,0x12,0x12,0x02,0x06,0x00 -+// 13745 㖱 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x80,0x42,0x20,0x44,0x84,0x08,0x30,0x30,0x0e,0x00,0x04,0x04,0x04,0x0c,0x00 -+// 13746 㖲 ; -+,0x00,0x04,0x04,0x09,0x09,0x01,0x06,0x05,0x00,0x01,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x02,0x00,0x20,0x2c,0x20,0x20,0x20,0x3e,0x00 -+// 13747 㖳 ; -+,0x00,0x00,0x04,0x00,0x08,0x00,0x04,0x08,0x08,0x00,0x09,0x01,0x01,0x09,0x00,0x00,0x00,0x10,0x20,0x21,0x04,0x48,0x38,0x2c,0x02,0x00,0x04,0x28,0x20,0x00,0x3e,0x00 -+// 13748 㖴 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x00,0x00,0x40,0xb5,0x24,0x28,0x4a,0x12,0x22,0x02,0x04,0x00 -+// 13749 㖵 ; -+,0x00,0x00,0x00,0x00,0x26,0x20,0x20,0x20,0x20,0x20,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x85,0x00,0x40,0x82,0x01,0x00 -+// 13750 㖶 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x05,0x05,0x05,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x40,0x5a,0x42,0x42,0x42,0x02,0x00,0x00,0x20,0x00,0x00,0x01,0x00 -+// 13751 㖷 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00,0x22,0x20,0x22,0x20,0xa0,0x60,0x1f,0x00 -+// 13752 㖸 ; -+,0x00,0x00,0x00,0x00,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x23,0x20,0x20,0x22,0x00,0x02,0x40,0x40,0x40,0x40,0x42,0x00 -+// 13753 㖹 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x40,0x80,0x06,0x05,0x04,0x44,0x88,0x00,0x02,0x02,0x02,0x02,0x53,0x00 -+// 13754 㖺 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x00,0x40,0x40,0xc8,0x80,0x8e,0x81,0x88,0x80,0x80,0x88,0x00 -+// 13755 㖻 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x10,0x11,0x32,0x50,0x90,0x10,0x10,0x32,0x70,0x50,0x96,0x13,0x00 -+// 13756 㖼 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x01,0x00,0x00,0x00,0x84,0x84,0x8c,0x84,0x8c,0x84,0x8c,0xa0,0x22,0x70,0x68,0xa4,0x27,0x20,0x00 -+// 13757 㖽 ; -+,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x22,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x64,0x42,0x00,0x00 -+// 13758 㖾 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x01,0x01,0x00,0x04,0x00,0x04,0x00,0x01,0x02,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x10,0x02,0x40,0x44,0x44,0xc4,0x80,0x00,0x00,0x00 -+// 13759 㖿 ; -+,0x00,0x00,0x00,0x01,0x15,0x05,0x05,0x05,0x05,0x05,0x15,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x29,0x28,0x2a,0x28,0x28,0x28,0x28,0x29,0x29,0xab,0x28,0x28,0x28,0x00 -+// 13760 㗀 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x05,0x04,0x04,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x88,0x80,0x54,0x00,0x00,0x40,0x7e,0x00,0x00,0x02,0x00 -+// 13761 㗁 ; -+,0x00,0x00,0x01,0x01,0x25,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x02,0x42,0x12,0x00,0x00,0x01,0x40,0x40,0x84,0x04,0x04,0x38,0x00 -+// 13762 㗂 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x42,0x87,0x18,0x10,0x20,0xc2,0x02,0x42,0x02,0x02,0x02,0x02,0x00 -+// 13763 㗃 ; -+,0x00,0x00,0x01,0x01,0x15,0x05,0x05,0x05,0x05,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x10,0x12,0x08,0x88,0x07,0x04,0x80,0x84,0x84,0x80,0x84,0x00 -+// 13764 㗄 ; -+,0x00,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xaa,0x2a,0x2a,0x8a,0x20,0x10,0x03,0x20,0x66,0x42,0x84,0x84,0x0c,0x00 -+// 13765 㗅 ; -+,0x00,0x00,0x00,0x00,0x24,0x20,0x20,0x20,0x20,0x20,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x92,0x90,0xb0,0x92,0x90,0x90,0x50,0x52,0x50,0x50,0x40,0x22,0x06,0x00 -+// 13766 㗆 ; -+,0x00,0x00,0x00,0x00,0x16,0x10,0x10,0x10,0x10,0x10,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x44,0x45,0x44,0x44,0x54,0x10,0x92,0x92,0x92,0x10,0x10,0x10,0x10,0x10,0x00 -+// 13767 㗇 ; -+,0x00,0x00,0x01,0x01,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x00,0x00,0x02,0x02,0x20,0x0c,0x0c,0x16,0x03,0x00 -+// 13768 㗈 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x30,0x12,0x12,0x92,0x92,0x12,0x20,0x22,0x62,0x42,0x82,0x0e,0x00 -+// 13769 㗉 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x00,0x01,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x92,0x12,0x12,0xa2,0x06,0x10,0x20,0xc0,0x30,0x1e,0x08,0x08,0x18,0x00 -+// 13770 㗊 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x20,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x00 -+// 13771 㗋 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x05,0x05,0x05,0x05,0x15,0x00,0x02,0x00,0x00,0x00,0x00,0x40,0x40,0x88,0x00,0x00,0x20,0x22,0x50,0x10,0x11,0x10,0x24,0x42,0x02,0x00 -+// 13772 㗌 ; -+,0x00,0x00,0x00,0x01,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x03,0x00,0x04,0x40,0x00,0x84,0x20,0x20,0x20,0x20,0x20,0x00,0x00 -+// 13773 㗍 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x32,0x20,0x44,0x03,0x00,0x86,0x80,0x84,0x80,0x84,0x84,0x00 -+// 13774 㗎 ; -+,0x00,0x00,0x00,0x01,0x24,0x25,0x25,0x24,0x24,0x24,0x24,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xaa,0x00,0x00,0x0a,0x40,0x20,0x22,0x60,0x68,0xa4,0x23,0x20,0x00 -+// 13775 㗏 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x25,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x20,0x60,0xa4,0x22,0x20,0x22,0x20,0x20,0x24,0x20,0x20,0x01,0x00 -+// 13776 㗐 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x25,0x25,0x21,0x01,0x01,0x00,0x00,0x00,0x20,0x20,0x62,0x50,0x48,0x84,0x23,0x00,0x04,0x54,0x54,0x54,0x54,0x00,0x00 -+// 13777 㗑 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x05,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0xc2,0x00,0x00,0x08,0x80,0x00,0x08,0xc0,0x09,0x08,0x00,0x00,0x00,0x00 -+// 13778 㗒 ; -+,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x86,0x84,0x84,0xa0,0x22,0x50,0xc8,0x4c,0x46,0x40,0x00 -+// 13779 㗓 ; -+,0x00,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x00,0xa2,0x22,0x22,0x20,0xa0,0xa2,0xa2,0xa2,0xa2,0xa0,0x40,0x1f,0x00 -+// 13780 㗔 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xa3,0x04,0x20,0x1e,0x00,0x08,0x07,0x04,0x00,0x18,0x26,0x00 -+// 13781 㗕 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x05,0x21,0x01,0x01,0x01,0x01,0x00,0x00,0x48,0x48,0x48,0x4e,0x48,0x6b,0x00,0x26,0x00,0x24,0x02,0x86,0x00,0x0c,0x00 -+// 13782 㗖 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x01,0x01,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x1e,0x00,0x12,0x90,0x00,0x62,0x02,0x02,0x22,0x02,0x02,0x02,0x02,0x00 -+// 13783 㗗 ; -+,0x00,0x00,0x11,0x10,0x10,0x10,0x10,0x08,0x09,0x09,0x09,0x09,0x01,0x01,0x06,0x00,0x00,0x10,0x00,0x52,0x12,0x52,0x52,0x12,0x72,0x20,0x10,0x11,0x10,0x10,0x10,0x00 -+// 13784 㗘 ; -+,0x00,0x00,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x10,0x92,0x92,0xb2,0x92,0xb2,0x10,0x00,0x0c,0x00,0x40,0x08,0x00 -+// 13785 㗙 ; -+,0x00,0x00,0x00,0x00,0x16,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x43,0x80,0x82,0x2a,0x22,0x46,0x40,0x43,0x80,0x06,0xa6,0x22,0x42,0x00 -+// 13786 㗚 ; -+,0x00,0x00,0x00,0x00,0x25,0x25,0x25,0x25,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x40,0x5a,0x42,0x42,0x02,0x00,0x22,0x60,0x80,0x04,0x03,0x20,0x00 -+// 13787 㗛 ; -+,0x00,0x00,0x00,0x01,0x05,0x04,0x04,0x04,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x08,0x00,0x42,0x0c,0x70,0x20,0x21,0x20,0x40,0x48,0x84,0x03,0x00 -+// 13788 㗜 ; -+,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x14,0x10,0x00,0x00,0x00,0x01,0x00,0x00,0x20,0x10,0x20,0x40,0x88,0x10,0x44,0xe2,0x00,0x12,0x12,0x12,0x12,0x02,0x00 -+// 13789 㗝 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x01,0x01,0x00,0x00,0x04,0x24,0x08,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x29,0x01,0x00 -+// 13790 㗞 ; -+,0x00,0x00,0x00,0x03,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x29,0x29,0x20,0x20,0xaa,0xa2,0xa2,0xa0,0x8c,0xcc,0x4c,0x03,0x00 -+// 13791 㗟 ; -+,0x00,0x00,0x04,0x00,0x08,0x04,0x08,0x08,0x08,0x00,0x09,0x01,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x20,0x00,0x24,0x00,0x02,0x00,0x00,0x06,0x20,0x00,0x01,0x3f,0x00 -+// 13792 㗠 ; -+,0x00,0x00,0x04,0x0d,0x09,0x02,0x06,0x09,0x00,0x01,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x10,0x22,0x00,0x02,0x02,0x02,0x00,0x00,0x04,0x20,0x00,0x00,0x3e,0x00 -+// 13793 㗡 ; -+,0x00,0x02,0x02,0x02,0x04,0x04,0x08,0x00,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x12,0x10,0x08,0x48,0x42,0x82,0x04,0x0c,0x24,0x20,0x20,0x20,0x3e,0x00 -+// 13794 㗢 ; -+,0x00,0x00,0x00,0x00,0x08,0x20,0x22,0x22,0x22,0x22,0x28,0x20,0x00,0x03,0x00,0x00,0x00,0x00,0xc0,0x80,0x80,0x8d,0xa1,0xa1,0xa1,0xa9,0x88,0xa8,0x80,0x92,0x06,0x00 -+// 13795 㗣 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x25,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xa4,0xb6,0xb4,0x24,0x37,0x00,0x00,0x20,0xa4,0xa4,0xa4,0xa4,0x20,0x00 -+// 13796 㗤 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x10,0x10,0x02,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x26,0x00,0x04,0x54,0x18,0x18,0x04,0x02,0x0c,0x00,0x00,0x08,0x00,0x00 -+// 13797 㗥 ; -+,0x00,0x00,0x00,0x00,0x14,0x05,0x05,0x04,0x04,0x04,0x14,0x03,0x00,0x00,0x00,0x00,0x00,0x80,0x0b,0x0a,0x2a,0x28,0x28,0x08,0x28,0x09,0x49,0x8b,0x08,0x88,0x88,0x00 -+// 13798 㗦 ; -+,0x00,0x00,0x02,0x02,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x90,0x85,0xd4,0xd4,0xd4,0xd4,0xd4,0xd4,0xd4,0x96,0x84,0xa4,0x84,0x00 -+// 13799 㗧 ; -+,0x00,0x00,0x00,0x01,0x16,0x04,0x04,0x04,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x03,0x40,0x84,0x02,0x20,0x44,0xe2,0x20,0x22,0x20,0x20,0x00,0x00 -+// 13800 㗨 ; -+,0x00,0x00,0x10,0x14,0x12,0x12,0x12,0x15,0x18,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0x20,0x06,0x04,0x04,0x18,0x9c,0x00,0x0c,0x00,0x00,0x00,0x04,0x00 -+// 13801 㗩 ; -+,0x00,0x00,0x00,0x01,0x24,0x24,0x25,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x01,0x00,0x00,0x00,0x42,0x4a,0x42,0x42,0x52,0x00,0x20,0x02,0x02,0x82,0x02,0x02,0x82,0x00 -+// 13802 㗪 ; -+,0x00,0x00,0x00,0x01,0x15,0x05,0x05,0x04,0x04,0x04,0x14,0x01,0x00,0x00,0x00,0x00,0x00,0x48,0x4a,0x48,0x48,0x49,0x0f,0x20,0x8c,0xa0,0x02,0x91,0x50,0x92,0x32,0x00 -+// 13803 㗫 ; -+,0x00,0x00,0x00,0x00,0x25,0x24,0x25,0x24,0x25,0x24,0x24,0x20,0x01,0x00,0x00,0x00,0x00,0x80,0x82,0x22,0x20,0x40,0x44,0x82,0x01,0x00,0x20,0x00,0x06,0x03,0x20,0x00 -+// 13804 㗬 ; -+,0x00,0x00,0x02,0x00,0x08,0x12,0x00,0x02,0x01,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x48,0x40,0x02,0x08,0x08,0x98,0x30,0x40,0xa0,0xc4,0x08,0x70,0xc0,0x00 -+// 13805 㗭 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x84,0x3a,0x60,0x04,0x03,0x00,0x80,0x90,0x81,0x80,0x7c,0x00 -+// 13806 㗮 ; -+,0x00,0x00,0x08,0x09,0x12,0x12,0x0c,0x00,0x08,0x19,0x01,0x01,0x01,0x09,0x01,0x00,0x00,0x00,0x08,0x40,0x48,0x4a,0x4a,0x4b,0x0a,0x1a,0x10,0x14,0x94,0xa2,0x01,0x00 -+// 13807 㗯 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x02,0x02,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x80,0x98,0xa0,0x80,0x00,0x08,0x08,0x08,0x00,0x26,0x28,0x20,0x20,0x3e,0x00 -+// 13808 㗰 ; -+,0x00,0x00,0x01,0x01,0x0c,0x20,0x21,0x21,0x21,0x25,0x29,0x21,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x12,0x51,0x00,0x08,0x00,0x2a,0x00,0x40,0x40,0x18,0x07,0x00 -+// 13809 㗱 ; -+,0x00,0x00,0x00,0x01,0x05,0x05,0x05,0x05,0x05,0x04,0x14,0x00,0x00,0x01,0x00,0x00,0x00,0x80,0x90,0x00,0x00,0x30,0x34,0x00,0x02,0x20,0x30,0x60,0xa4,0x22,0x21,0x00 -+// 13810 㗲 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x04,0x05,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x20,0x20,0x20,0x00,0x24,0x24,0x20,0x00,0x01,0x00 -+// 13811 㗳 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x29,0x04,0x20,0x40,0x48,0x86,0x08,0x00,0x84,0x84,0x84,0x84,0x00 -+// 13812 㗴 ; -+,0x00,0x00,0x02,0x02,0x2e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x02,0x02,0x00,0x00,0x00,0x52,0x52,0x52,0x52,0x02,0x02,0x0a,0x4a,0x0a,0x0a,0x8a,0x12,0x02,0x00 -+// 13813 㗵 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x80,0xa8,0x88,0x89,0x80,0x60,0x00,0x88,0xc8,0x88,0x84,0x50,0x02,0x01,0x00 -+// 13814 㗶 ; -+,0x00,0x00,0x00,0x01,0x04,0x21,0x20,0x20,0x20,0x20,0x26,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x40,0x4a,0x84,0x06,0xd4,0x04,0x04,0x00,0x04,0x84,0x88,0x94,0x02,0x00 -+// 13815 㗷 ; -+,0x00,0x00,0x00,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x40,0x40,0x58,0x5b,0x00,0x84,0xa4,0xa4,0xa4,0x48,0x86,0x00 -+// 13816 㗸 ; -+,0x00,0x01,0x01,0x00,0x2a,0x29,0x28,0x2a,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x21,0x22,0x2a,0x22,0x22,0xaa,0xaa,0xaa,0x02,0x02,0x00 -+// 13817 㗹 ; -+,0x00,0x00,0x00,0x01,0x05,0x05,0x05,0x05,0x05,0x05,0x04,0x00,0x02,0x06,0x00,0x00,0x00,0x80,0x90,0x02,0x00,0x10,0x00,0x10,0x00,0x02,0x00,0x90,0x91,0x80,0xfc,0x00 -+// 13818 㗺 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x63,0x40,0x84,0x4b,0x4a,0x48,0x4a,0x48,0x48,0x48,0x48,0x00 -+// 13819 㗻 ; -+,0x00,0x00,0x00,0x00,0x2d,0x20,0x20,0x21,0x21,0x21,0x21,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x22,0x2a,0x2a,0x2a,0x6b,0x41,0x55,0x45,0x55,0x41,0x03,0x80,0x3f,0x00 -+// 13820 㗼 ; -+,0x00,0x00,0x01,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x4a,0x48,0x4a,0x00,0x48,0x02,0x00,0x10,0x32,0x70,0x40,0x04,0x02,0x00 -+// 13821 㗽 ; -+,0x00,0x00,0x08,0x01,0x1d,0x03,0x17,0x05,0x09,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x09,0x08,0x28,0x28,0x08,0x2a,0x88,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 13822 㗾 ; -+,0x00,0x00,0x02,0x02,0x0a,0x01,0x00,0x03,0x00,0x0b,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x14,0xd4,0x15,0x85,0x16,0x54,0x54,0x54,0x14,0x34,0x14,0x14,0x13,0x00 -+// 13823 㗿 ; -+,0x00,0x00,0x01,0x00,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4b,0x40,0x4a,0x40,0x02,0x04,0x08,0x28,0x08,0x08,0x08,0x00,0x06,0x00 -+// 13824 㘀 ; -+,0x00,0x00,0x00,0x01,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x84,0x00,0x70,0x60,0x84,0x03,0x01,0x00 -+// 13825 㘁 ; -+,0x00,0x00,0x01,0x01,0x25,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x42,0x42,0x20,0x20,0x20,0x08,0x40,0x04,0x20,0x20,0x20,0x20,0x00 -+// 13826 㘂 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x04,0x40,0x01,0x80,0x22,0x54,0x00,0x02,0x1a,0x00,0x82,0x91,0x84,0xfc,0x00 -+// 13827 㘃 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x25,0x24,0x24,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0xc8,0x08,0x20,0x62,0x40,0xc4,0x84,0x44,0x00,0x00,0x91,0x80,0x7e,0x00 -+// 13828 㘄 ; -+,0x00,0x01,0x01,0x01,0x29,0x21,0x21,0x21,0x23,0x23,0x25,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x15,0x15,0x55,0x55,0x08,0x88,0x90,0x10,0x13,0x12,0x22,0x22,0x46,0x00 -+// 13829 㘅 ; -+,0x00,0x00,0x01,0x01,0x2c,0x21,0x21,0x22,0x22,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x50,0x00,0x11,0x22,0x32,0x22,0x32,0x62,0x22,0xc2,0x06,0x00 -+// 13830 㘆 ; -+,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x26,0x26,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x20,0x04,0x84,0x84,0x04,0x02,0x40,0x88,0x20,0x24,0x20,0x23,0x00 -+// 13831 㘇 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x05,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x46,0x4c,0x50,0x22,0x00,0x01,0x00,0x12,0x30,0x58,0x14,0x12,0x10,0x00 -+// 13832 㘈 ; -+,0x00,0x00,0x01,0x01,0x05,0x21,0x20,0x21,0x22,0x24,0x24,0x20,0x01,0x00,0x00,0x00,0x00,0x00,0x42,0x80,0x00,0xc4,0x05,0x00,0x80,0x80,0xa0,0x00,0x68,0x4c,0x03,0x00 -+// 13833 㘉 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x01,0x00,0x00,0x00,0x80,0x88,0x4a,0x42,0x20,0x2a,0x28,0x28,0x28,0xa8,0x08,0x2a,0xa8,0x08,0x00 -+// 13834 㘊 ; -+,0x00,0x00,0x00,0x00,0x24,0x26,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x01,0x00,0x00,0x00,0x10,0x04,0x00,0x00,0x82,0x82,0x82,0x00 -+// 13835 㘋 ; -+,0x00,0x00,0x01,0x01,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4b,0x02,0x22,0x24,0x03,0x00,0x86,0x84,0x80,0x80,0x80,0x40,0x82,0x00 -+// 13836 㘌 ; -+,0x00,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x15,0x85,0x85,0x15,0xc5,0x95,0x45,0x61,0xd1,0x01,0x42,0x00 -+// 13837 㘍 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x01,0x05,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x88,0xaa,0xaa,0xc8,0x88,0x48,0x0a,0x42,0x44,0x44,0x44,0x41,0x03,0x00 -+// 13838 㘎 ; -+,0x00,0x00,0x00,0x00,0x2a,0x22,0x22,0x22,0x22,0x2a,0x2a,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x81,0x00,0x28,0x08,0xa6,0xa4,0xa4,0xa8,0xa4,0xa6,0x20,0x20,0x02,0x00 -+// 13839 㘏 ; -+,0x00,0x00,0x08,0x00,0x00,0x04,0x00,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x42,0x20,0x84,0x84,0x84,0x84,0x00,0x7e,0x40,0x4c,0x40,0x40,0x7e,0x00 -+// 13840 㘐 ; -+,0x00,0x00,0x02,0x08,0x2a,0x28,0x2a,0x28,0x28,0x2a,0x20,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0xc0,0x08,0xd1,0x03,0x02,0x22,0x04,0xc4,0x44,0x42,0xc1,0x00 -+// 13841 㘑 ; -+,0x00,0x00,0x01,0x01,0x29,0x20,0x20,0x20,0x20,0x29,0x29,0x03,0x05,0x01,0x01,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0b,0x0a,0x0a,0x08,0x0a,0x18,0x48,0x18,0x2b,0x08,0x00 -+// 13842 㘒 ; -+,0x00,0x00,0x06,0x04,0x05,0x0c,0x06,0x04,0x04,0x00,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x10,0x10,0x52,0x50,0x50,0x14,0x10,0x00,0x02,0x08,0x20,0x00,0x3f,0x00 -+// 13843 㘓 ; -+,0x00,0x00,0x02,0x02,0x2e,0x22,0x22,0x22,0x22,0x2a,0x22,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x52,0x52,0x52,0x52,0x22,0x22,0xaa,0xaa,0xea,0x62,0x2a,0x22,0x02,0x00 -+// 13844 㘔 ; -+,0x00,0x00,0x00,0x02,0x20,0x20,0x20,0x20,0x20,0x21,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x21,0x00,0x54,0x58,0x10,0x88,0x84,0x87,0x80,0x80,0x80,0x40,0x84,0x00 -+// 13845 㘕 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x28,0x20,0x20,0x02,0x00,0x56,0x50,0x50,0x57,0x00 -+// 13846 㘖 ; -+,0x00,0x00,0x00,0x00,0x29,0x21,0x22,0x22,0x22,0x2a,0x22,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x84,0x04,0x40,0x11,0x11,0x51,0x91,0x51,0x91,0x11,0x48,0x88,0x11,0x00 -+// 13847 㘗 ; -+,0x00,0x00,0x01,0x01,0x05,0x05,0x05,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x2a,0x2a,0x2a,0x28,0x22,0x90,0x92,0x90,0x92,0x90,0x90,0x90,0x80,0x00 -+// 13848 㘘 ; -+,0x00,0x00,0x08,0x10,0x3c,0x00,0x16,0x01,0x01,0x28,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x08,0x0a,0x24,0x2d,0x20,0x21,0x00,0x00,0x00,0x00,0x00,0x08,0x00 -+// 13849 㘙 ; -+,0x00,0x00,0x01,0x01,0x00,0x02,0x02,0x02,0x02,0x0a,0x02,0x02,0x00,0x05,0x00,0x00,0x00,0x00,0x50,0x50,0x00,0x02,0x08,0x48,0xa2,0x82,0x00,0x84,0x24,0x8a,0x03,0x00 -+// 13850 㘚 ; -+,0x00,0x00,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x00,0x00,0x00,0x52,0x52,0x52,0x52,0x0a,0x42,0xb6,0x92,0xaa,0xaa,0x86,0x22,0x02,0x00 -+// 13851 㘛 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x07,0x84,0x84,0x00,0x10,0x52,0x02,0x50,0x50,0x10,0x10,0x51,0x00 -+// 13852 㘜 ; -+,0x00,0x00,0x14,0x12,0x10,0x14,0x14,0x14,0x16,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x04,0x12,0x14,0x14,0x14,0x14,0x14,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 13853 㘝 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x02,0x02,0x12,0x12,0x22,0xa2,0x42,0xa2,0x12,0x12,0x02,0x02,0x02,0x00 -+// 13854 㘞 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x10,0x10,0x10,0x00,0x00,0x02,0x02,0x82,0x82,0x8a,0x8a,0x8a,0x8a,0x0a,0x02,0x12,0x32,0x02,0x02,0x00 -+// 13855 㘟 ; -+,0x00,0x00,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x12,0x02,0x02,0x32,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 13856 㘠 ; -+,0x00,0x00,0x10,0x10,0x10,0x11,0x11,0x11,0x15,0x11,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x02,0x02,0x12,0x62,0x22,0x4a,0x4a,0x82,0x12,0xe2,0x02,0x02,0x02,0x00 -+// 13857 㘡 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x0a,0x02,0x02,0xc2,0x02,0xc2,0x02,0x02,0x02,0x02,0x02,0x00 -+// 13858 㘢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x10,0x00,0x00,0x00,0x02,0x02,0x12,0x12,0x22,0x2a,0x22,0x22,0x22,0x2a,0x1a,0x02,0x02,0x00 -+// 13859 㘣 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00 -+// 13860 㘤 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x00,0x01,0x05,0x05,0x00,0x00,0x10,0x00,0x00,0x02,0x02,0x02,0x52,0x52,0x02,0x0a,0x02,0x4a,0x42,0x42,0x42,0x02,0x02,0x00 -+// 13861 㘥 ; -+,0x00,0x00,0x10,0x11,0x10,0x16,0x14,0x16,0x12,0x12,0x12,0x12,0x16,0x10,0x10,0x00,0x00,0x00,0x02,0x0a,0x02,0x0a,0x52,0x02,0x76,0x12,0x12,0x16,0x12,0x02,0x02,0x00 -+// 13862 㘦 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x30,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x02,0x22,0x22,0x42,0x42,0x82,0x0c,0x00 -+// 13863 㘧 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x00,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x20,0x10,0x11,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 13864 㘨 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x92,0x90,0x90,0x90,0x90,0xa4,0x84,0x80,0x80,0x80,0x86,0x00 -+// 13865 㘩 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x82,0x84,0x88,0x80,0x80,0x80,0x80,0x81,0x89,0x0e,0x00 -+// 13866 㘪 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x0e,0x30,0x20,0x22,0x20,0x20,0x21,0x30,0x20,0x20,0x20,0x21,0x1f,0x00 -+// 13867 㘫 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x4a,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x00 -+// 13868 㘬 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x40,0x43,0x80,0x20,0x20,0x40,0x02,0x8a,0x8a,0x02,0x02,0x04,0x00 -+// 13869 㘭 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x31,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x41,0x81,0xb1,0x21,0x41,0x41,0x01,0x81,0x11,0x90,0x02,0x02,0x00 -+// 13870 㘮 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x09,0x19,0x20,0x02,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x80,0x80,0x90,0x10,0x08,0x0c,0x06,0x03,0x00 -+// 13871 㘯 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x40,0x40,0x42,0x00,0xa0,0x20,0x22,0x22,0x22,0x22,0x42,0x42,0x84,0x0c,0x00 -+// 13872 㘰 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x0c,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x00,0x40,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00 -+// 13873 㘱 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x93,0x82,0x82,0x82,0x82,0x86,0x00 -+// 13874 㘲 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x09,0x39,0x00,0x02,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x10,0x10,0x34,0x04,0x24,0x24,0x04,0x44,0x03,0x00 -+// 13875 㘳 ; -+,0x00,0x00,0x01,0x02,0x00,0x00,0x06,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x20,0x20,0x22,0x3e,0x80,0x80,0x84,0x80,0x80,0x80,0x82,0x00 -+// 13876 㘴 ; -+,0x00,0x00,0x00,0x12,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x14,0x02,0x00,0x00,0xc0,0x00,0x00,0x00,0x02,0x00 -+// 13877 㘵 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x21,0x20,0x50,0x50,0x92,0x92,0x12,0x12,0x12,0x92,0x10,0x10,0x00 -+// 13878 㘶 ; -+,0x00,0x00,0x04,0x04,0x09,0x09,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x8a,0x08,0x48,0x48,0x48,0x08,0x48,0x00,0xc0,0x00,0x00,0x02,0x00 -+// 13879 㘷 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x40,0x4d,0x40,0x40,0x00,0x04,0x08,0x48,0x10,0x30,0x30,0x48,0x07,0x00 -+// 13880 㘸 ; -+,0x00,0x00,0x02,0x06,0x04,0x08,0x05,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x20,0xa4,0xa8,0x20,0x20,0x22,0x40,0x80,0xc0,0x00,0x00,0x82,0x00 -+// 13881 㘹 ; -+,0x00,0x00,0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x20,0x20,0x20,0x22,0x00,0x40,0x00,0xc0,0x00,0x00,0x02,0x00 -+// 13882 㘺 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x09,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x40,0x50,0x92,0x92,0x12,0x90,0x92,0x82,0x84,0x8c,0x88,0x94,0x86,0x82,0x00 -+// 13883 㘻 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x81,0x01,0x11,0x11,0x11,0x11,0x11,0x29,0x05,0x81,0x01,0x81,0x01,0x00 -+// 13884 㘼 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x2e,0x04,0x08,0x10,0x20,0x62,0x80,0x22,0x02,0x04,0x04,0x18,0x00 -+// 13885 㘽 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x02,0x00,0x00,0x02,0x18,0x00,0x00,0x00,0x00,0x20,0xa4,0x20,0x20,0x32,0x00,0x06,0x94,0x18,0x18,0x18,0x25,0x03,0x00 -+// 13886 㘾 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x0c,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x91,0x01,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x30,0x00 -+// 13887 㘿 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x10,0x10,0x12,0x10,0x10,0x10,0x00,0x00 -+// 13888 㙀 ; -+,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x10,0x01,0x00,0x40,0x84,0x22,0x20,0x24,0x00,0x40,0x40,0x81,0x07,0x00 -+// 13889 㙁 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x80,0xc2,0x02,0x92,0x83,0x80,0x80,0x94,0x86,0x04,0x0c,0x00 -+// 13890 㙂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x0c,0x30,0x00,0x01,0x00,0x00,0x00,0x40,0x48,0x00,0x82,0x82,0x82,0x82,0x28,0x28,0x48,0x48,0x89,0x0f,0x00 -+// 13891 㙃 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x01,0x02,0x00,0x00,0x04,0x38,0x80,0x80,0x82,0x88,0x88,0x88,0x88,0x89,0x40,0x84,0x02,0x00,0x00 -+// 13892 㙄 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x14,0x10,0x10,0xd0,0x8e,0x00,0x00,0x20,0x00,0x00,0x01,0x00 -+// 13893 㙅 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0xa4,0x20,0x23,0x60,0x68,0xa0,0x24,0x23,0x20,0x00 -+// 13894 㙆 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x03,0x20,0x20,0x62,0x40,0x50,0x10,0x80,0x00,0x42,0x40,0x00 -+// 13895 㙇 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x40,0xa2,0x34,0x50,0x94,0x18,0x2a,0x4a,0x09,0x10,0x30,0x00 -+// 13896 㙈 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x09,0x09,0x09,0x19,0x20,0x02,0x00,0x00,0x00,0x10,0x12,0x10,0x93,0x10,0x14,0x12,0x1e,0x00,0x2c,0x00,0x00,0x41,0x07,0x00 -+// 13897 㙉 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x08,0x28,0x2a,0x0a,0x0a,0x0a,0xaa,0x0a,0x0a,0xab,0x00,0x44,0x82,0x01,0x00 -+// 13898 㙊 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x44,0x00,0x44,0x00,0x43,0x00,0x02,0x00,0x08,0x04,0x66,0xc2,0x00 -+// 13899 㙋 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x40,0x44,0x46,0x44,0x44,0x4c,0x44,0x4c,0x44,0x45,0x00,0x44,0x82,0x01,0x00 -+// 13900 㙌 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x30,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x13,0x12,0x12,0x10,0x92,0x92,0xd2,0x52,0x16,0x12,0x12,0x00 -+// 13901 㙍 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x62,0x42,0xc4,0xc4,0x02,0x00,0x42,0x42,0x44,0x84,0xc8,0x4c,0x03,0x00 -+// 13902 㙎 ; -+,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0x02,0x00,0x00,0x00,0x00,0x08,0x0a,0x0b,0x08,0x08,0x0a,0x4a,0x7a,0x2c,0x24,0x64,0x2c,0x03,0x01,0x00 -+// 13903 㙏 ; -+,0x00,0x00,0x08,0x08,0x09,0x0a,0x08,0x08,0x08,0x08,0x08,0x30,0x01,0x00,0x00,0x00,0x00,0x40,0x80,0x80,0x00,0x86,0x84,0x80,0x86,0x40,0x44,0x84,0x38,0x38,0x47,0x00 -+// 13904 㙐 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x31,0x01,0x01,0x00,0x00,0x10,0x92,0x92,0x92,0x00,0x01,0x20,0x22,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x00 -+// 13905 㙑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x00,0x88,0x80,0x04,0x90,0x04,0x44,0x40,0x40,0x00,0x02,0x00 -+// 13906 㙒 ; -+,0x00,0x00,0x00,0x15,0x14,0x15,0x14,0x14,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0xc4,0x00,0x00,0xc3,0x00 -+// 13907 㙓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x40,0xc4,0x00,0x00,0x00,0x00 -+// 13908 㙔 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x00,0x02,0x02,0x42,0x10,0x12,0x90,0x90,0x10,0x10,0x00 -+// 13909 㙕 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x82,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x84,0x00 -+// 13910 㙖 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x09,0x0d,0x31,0x01,0x01,0x01,0x00,0x00,0x00,0x38,0x10,0x92,0x12,0x92,0x10,0x10,0x10,0x10,0x14,0xc4,0x00,0x02,0x00 -+// 13911 㙗 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x0c,0x20,0x00,0x00,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x92,0x00,0x81,0x80,0x82,0x90,0x88,0x84,0x83,0x00 -+// 13912 㙘 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x01,0x28,0x28,0xab,0xaa,0xaa,0xa2,0x10,0x21,0x44,0x48,0x38,0x3c,0x42,0x00 -+// 13913 㙙 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc2,0x00,0x10,0x98,0x04,0x31,0x1e,0x00,0xc4,0x00,0x00,0x02,0x00 -+// 13914 㙚 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x08,0x12,0x10,0x10,0x10,0x00,0x90,0x92,0x10,0x10,0x10,0x10,0x10,0x00 -+// 13915 㙛 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x10,0x12,0x92,0x92,0x82,0x92,0x80,0x04,0x04,0x44,0x04,0x08,0x00 -+// 13916 㙜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x00,0x08,0x00,0x02,0x12,0x12,0x12,0x40,0x44,0x00,0x00,0x02,0x00 -+// 13917 㙝 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x09,0x09,0x30,0x00,0x00,0x00,0x00,0x00,0x10,0x26,0x44,0x84,0xe5,0xa5,0x29,0x42,0x84,0x04,0x84,0x84,0x04,0x0c,0x00 -+// 13918 㙞 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x38,0x00,0x01,0x00,0x00,0x00,0x20,0x80,0x80,0x84,0x84,0x80,0x84,0x00,0x20,0x70,0x48,0x84,0x02,0x01,0x00 -+// 13919 㙟 ; -+,0x00,0x00,0x00,0x01,0x01,0x0d,0x01,0x01,0x01,0x01,0x09,0x31,0x01,0x01,0x00,0x00,0x00,0x00,0x89,0x21,0x21,0x29,0x21,0x21,0x29,0x01,0x41,0x31,0xb1,0x01,0x02,0x00 -+// 13920 㙠 ; -+,0x00,0x00,0x14,0x15,0x12,0x12,0x15,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x06,0x04,0x04,0x18,0x06,0x00,0x00,0xc4,0x00,0x00,0x02,0x00 -+// 13921 㙡 ; -+,0x00,0x00,0x08,0x00,0x01,0x00,0x08,0x01,0x01,0x01,0x01,0x19,0x01,0x01,0x00,0x00,0x00,0x00,0x92,0x20,0x34,0x89,0x89,0x00,0x08,0x28,0x28,0x28,0x08,0x48,0x07,0x00 -+// 13922 㙢 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x09,0x09,0x09,0x31,0x01,0x01,0x01,0x00,0x00,0x44,0x44,0x44,0x44,0x54,0x10,0x11,0x11,0x11,0x55,0x33,0x11,0x11,0x13,0x00 -+// 13923 㙣 ; -+,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x02,0x02,0x00,0x00,0x18,0x20,0x00,0x01,0x00,0x00,0x00,0xa0,0xa0,0xa0,0xa0,0x20,0x20,0xa1,0xa2,0xa4,0xa8,0xa4,0xa2,0x20,0x00 -+// 13924 㙤 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x21,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x82,0x94,0x92,0x9e,0x8e,0x90,0x24,0x32,0x00,0x00,0x30,0x00 -+// 13925 㙥 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x44,0x82,0x84,0x84,0x84,0x20,0x44,0x88,0x08,0x46,0x43,0x00 -+// 13926 㙦 ; -+,0x00,0x00,0x04,0x09,0x19,0x00,0x02,0x00,0x10,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x00,0x20,0x05,0x00,0x80,0x00,0x00,0xc4,0x00,0x00,0x43,0x00 -+// 13927 㙧 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x09,0x09,0x09,0x21,0x01,0x01,0x00,0x00,0x00,0x28,0x08,0x0a,0x08,0x0a,0x08,0x08,0x12,0x10,0x12,0x10,0x10,0x02,0x00 -+// 13928 㙨 ; -+,0x00,0x00,0x01,0x00,0x03,0x00,0x00,0x03,0x00,0x01,0x01,0x11,0x21,0x02,0x00,0x00,0x00,0x24,0x20,0x2a,0xac,0x24,0x4a,0x69,0x04,0x95,0x10,0x16,0x4c,0x1c,0x23,0x00 -+// 13929 㙩 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x30,0x00,0x01,0x00,0x00,0x00,0x20,0x20,0x62,0x42,0x08,0x84,0x87,0x84,0x84,0xb4,0x10,0x94,0x13,0x20,0x00 -+// 13930 㙪 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x10,0x13,0x10,0x00,0x01,0x00,0x00,0x00,0x84,0x84,0x84,0x00,0x20,0x01,0x00 -+// 13931 㙫 ; -+,0x00,0x00,0x08,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x90,0x90,0x10,0x92,0x10,0x92,0x10,0x91,0x00,0x11,0x30,0x58,0x94,0x13,0x00 -+// 13932 㙬 ; -+,0x00,0x00,0x00,0x04,0x11,0x10,0x04,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x10,0x12,0x90,0x10,0x24,0x03,0x00,0x40,0x40,0x40,0x00,0x43,0x00 -+// 13933 㙭 ; -+,0x00,0x00,0x09,0x09,0x09,0x0d,0x09,0x09,0x08,0x08,0x0a,0x32,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x35,0x00,0x94,0x94,0x94,0xd4,0x4c,0x4a,0x12,0x21,0x00 -+// 13934 㙮 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x8c,0x40,0x20,0x20,0x48,0x83,0x00,0x00,0x86,0x80,0x80,0x84,0x00 -+// 13935 㙯 ; -+,0x00,0x00,0x04,0x00,0x00,0x08,0x05,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x0e,0x00,0x00,0x00,0x10,0x14,0x14,0xa4,0x34,0x04,0x03,0x08,0x00,0x02,0x00,0x08,0x04,0x00 -+// 13936 㙰 ; -+,0x00,0x08,0x09,0x10,0x12,0x02,0x00,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0xa6,0xa8,0xaa,0x88,0x88,0x88,0x40,0x40,0x40,0x40,0x43,0x00 -+// 13937 㙱 ; -+,0x00,0x00,0x12,0x12,0x12,0x09,0x00,0x12,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x10,0x00,0x90,0x9c,0xa4,0xa0,0x07,0x00,0x80,0x80,0x80,0x82,0x00 -+// 13938 㙲 ; -+,0x00,0x00,0x08,0x00,0x00,0x0d,0x09,0x00,0x00,0x01,0x02,0x18,0x20,0x01,0x00,0x00,0x00,0x00,0x11,0x80,0x94,0x51,0xb4,0x84,0x15,0x44,0x44,0x94,0x84,0x15,0x10,0x00 -+// 13939 㙳 ; -+,0x00,0x08,0x08,0x09,0x09,0x0d,0x09,0x09,0x08,0x08,0x08,0x20,0x00,0x02,0x00,0x00,0x00,0x08,0x02,0x09,0x08,0x0a,0x0a,0xac,0xa4,0x84,0x03,0x00,0x92,0x84,0x7c,0x00 -+// 13940 㙴 ; -+,0x00,0x08,0x08,0x08,0x09,0x0d,0x09,0x09,0x09,0x09,0x09,0x31,0x02,0x02,0x00,0x00,0x00,0x40,0x44,0x88,0x01,0x00,0x12,0x11,0x00,0x00,0x02,0x00,0x42,0x42,0x42,0x00 -+// 13941 㙵 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x09,0x09,0x09,0x09,0x09,0x18,0x00,0x00,0x00,0x00,0x00,0x20,0x02,0x04,0x84,0x84,0x02,0x0a,0x4a,0x4a,0x02,0x04,0x00,0x00,0x00,0x00 -+// 13942 㙶 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x02,0x00,0x10,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x00,0x08,0x08,0x00,0x10,0x02,0x10,0x10,0x10,0x00,0x80,0x82,0x00 -+// 13943 㙷 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x09,0x08,0x08,0x31,0x00,0x00,0x02,0x00,0x00,0x00,0x82,0x82,0x02,0x82,0x00,0x08,0x56,0x00,0x02,0x30,0x00,0x4a,0x00,0x00 -+// 13944 㙸 ; -+,0x00,0x00,0x00,0x00,0x01,0x1d,0x01,0x01,0x01,0x01,0x01,0x19,0x21,0x01,0x01,0x00,0x00,0x14,0x94,0x16,0x14,0x00,0x04,0x16,0x08,0x1a,0x10,0x18,0x10,0x24,0x03,0x00 -+// 13945 㙹 ; -+,0x00,0x00,0x08,0x08,0x08,0x0d,0x09,0x09,0x08,0x0a,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x48,0x4b,0x48,0x02,0x4a,0x42,0x02,0x01,0x40,0xc4,0x84,0x48,0x30,0x40,0x00 -+// 13946 㙺 ; -+,0x00,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x31,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x1a,0x42,0x5a,0x00,0x00,0x02,0x04,0x24,0x24,0x04,0x02,0x81,0x00 -+// 13947 㙻 ; -+,0x00,0x00,0x08,0x01,0x01,0x0d,0x01,0x00,0x00,0x00,0x0a,0x32,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x12,0x12,0x12,0x10,0x14,0x10,0x00,0x52,0x14,0x10,0x10,0x00 -+// 13948 㙼 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x0a,0x30,0x00,0x00,0x02,0x00,0x00,0x00,0x92,0x12,0x92,0x12,0x82,0x00,0xad,0xa5,0xad,0xa5,0xa5,0xad,0x21,0x00 -+// 13949 㙽 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x24,0x20,0x6a,0x2a,0x20,0x22,0x00,0x48,0x84,0x03,0x00 -+// 13950 㙾 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x0a,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x02,0x12,0x02,0x03,0x00,0x08,0x10,0x31,0x00,0x00,0x20,0x00 -+// 13951 㙿 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x01,0x08,0x31,0x01,0x00,0x00,0x00,0x00,0x48,0x40,0x20,0x24,0x20,0x00,0xc0,0x9a,0xa0,0x0a,0x48,0x6c,0x2c,0x63,0x00 -+// 13952 㚀 ; -+,0x00,0x00,0x00,0x00,0x02,0x1e,0x02,0x02,0x02,0x02,0x0a,0x32,0x00,0x04,0x01,0x00,0x00,0x00,0x50,0x02,0x90,0xc4,0x10,0x00,0x04,0x26,0xa6,0xa4,0x26,0x23,0x81,0x00 -+// 13953 㚁 ; -+,0x00,0x00,0x0e,0x00,0x01,0x00,0x12,0x12,0x12,0x00,0x0a,0x00,0x10,0x12,0x00,0x00,0x00,0x00,0x14,0x00,0x02,0x04,0x64,0x04,0x40,0x00,0x28,0x28,0x28,0x49,0x07,0x00 -+// 13954 㚂 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x03,0x00,0x00,0x00,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0xb4,0x94,0x10,0x22,0xa8,0x40,0x4a,0x48,0x60,0x44,0x88,0x42,0x00 -+// 13955 㚃 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x02,0x22,0x48,0xc8,0x28,0x08,0x10,0x20,0x02,0x00 -+// 13956 㚄 ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x08,0x10,0x00,0x00,0x00,0xc2,0x00,0x00,0x02,0x08,0x08,0x88,0x08,0x02,0x00,0x00,0x80,0x7e,0x00 -+// 13957 㚅 ; -+,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x60,0xb0,0x0f,0x00,0x00,0x88,0x80,0x00,0xc0,0x00,0x02,0x00 -+// 13958 㚆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x02,0x06,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x18,0x30,0xc0,0xa0,0x0e,0x00 -+// 13959 㚇 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x02,0x04,0x03,0x06,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x20,0xc0,0x20,0x00,0x08,0x00,0x04,0x02,0x10,0x20,0x40,0x30,0x0e,0x00 -+// 13960 㚈 ; -+,0x00,0x00,0x04,0x04,0x0c,0x08,0x09,0x19,0x05,0x22,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 13961 㚉 ; -+,0x00,0x00,0x03,0x02,0x02,0x05,0x00,0x00,0x01,0x01,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x18,0x10,0x11,0x80,0x32,0x66,0x80,0x60,0xcc,0x08,0x90,0x60,0x80,0x00 -+// 13962 㚊 ; -+,0x00,0x04,0x04,0x09,0x09,0x02,0x04,0x0c,0x04,0x09,0x09,0x06,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x09,0x10,0x00,0x24,0x48,0x48,0x14,0x04,0x08,0x14,0x02,0x00,0x00 -+// 13963 㚋 ; -+,0x00,0x00,0x08,0x09,0x12,0x0c,0x04,0x04,0x05,0x09,0x0a,0x06,0x04,0x08,0x10,0x00,0x00,0x00,0x02,0x00,0x10,0x00,0x02,0x42,0x80,0x20,0xa0,0xa0,0x00,0x00,0x06,0x00 -+// 13964 㚌 ; -+,0x00,0x04,0x08,0x09,0x12,0x0c,0x04,0x04,0x05,0x09,0x1a,0x06,0x04,0x08,0x00,0x00,0x00,0x00,0x52,0x52,0x52,0x52,0x52,0x52,0x10,0x38,0x30,0x54,0x12,0x11,0x10,0x00 -+// 13965 㚍 ; -+,0x00,0x04,0x00,0x09,0x0a,0x0a,0x04,0x04,0x05,0x09,0x19,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x12,0x10,0x11,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x00 -+// 13966 㚎 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x80,0x80,0x82,0x00,0x00,0x10,0x0c,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 13967 㚏 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x02,0x02,0x02,0x02,0x02,0x04,0x08,0x00,0x00,0x80,0x80,0x82,0x00,0x10,0x08,0x07,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 13968 㚐 ; -+,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x80,0x82,0x00,0x10,0x0c,0x06,0xc0,0x82,0x80,0x20,0x10,0x0c,0x06,0x00 -+// 13969 㚑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x80,0x82,0x80,0x20,0x10,0x08,0x07,0x00 -+// 13970 㚒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x0a,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x80,0x80,0x82,0xc0,0x80,0x88,0x8c,0xca,0xc2,0x20,0x20,0x10,0x08,0x07,0x02 -+// 13971 㚓 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x80,0x82,0x00,0x10,0x04,0x02,0x02,0xc0,0x00,0x10,0x08,0x06,0x02,0x00 -+// 13972 㚔 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x82,0x00,0x10,0x0c,0x13,0x20,0x04,0x00,0x02,0xc0,0x00,0x00,0x00 -+// 13973 㚕 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x01,0x01,0x01,0x05,0x09,0x09,0x00,0x02,0x00,0x00,0x00,0x80,0x80,0x82,0x00,0x08,0x26,0x24,0x24,0x20,0x20,0x22,0x22,0x26,0x24,0x00 -+// 13974 㚖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x80,0x00,0x0c,0x00,0x00,0x00,0x00,0x80,0x80,0xc0,0x20,0x10,0x08,0x06,0x00 -+// 13975 㚗 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0x80,0x82,0x00,0x10,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 13976 㚘 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x00,0x0c,0x0a,0x01,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x44,0x02,0x01,0x00 -+// 13977 㚙 ; -+,0x00,0x04,0x04,0x04,0x04,0x08,0x09,0x01,0x10,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0xa2,0x22,0x22,0x22,0x22,0x80,0x82,0x80,0x20,0x10,0x08,0x06,0x00 -+// 13978 㚚 ; -+,0x00,0x00,0x00,0x01,0x03,0x02,0x09,0x02,0x06,0x01,0x01,0x06,0x00,0x00,0x02,0x00,0x00,0x80,0x80,0x20,0x00,0x80,0x9c,0x33,0x20,0xc0,0x00,0x08,0x08,0x08,0x08,0x00 -+// 13979 㚛 ; -+,0x00,0x00,0x00,0x01,0x00,0x04,0x02,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0x80,0x00,0x18,0x66,0x00,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 13980 㚜 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x09,0x09,0x09,0x00,0x00,0x10,0x00,0x00,0x80,0x80,0x00,0x00,0x0e,0x48,0x42,0x00,0x24,0x2c,0x18,0x10,0x28,0x06,0x00 -+// 13981 㚝 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x0c,0x23,0x28,0x20,0x22,0x00,0x20,0x20,0x20,0x22,0x00 -+// 13982 㚞 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x0c,0x04,0x04,0x0c,0x0e,0x05,0x14,0x04,0x04,0x00,0x00,0x00,0x80,0xa0,0x00,0x08,0x07,0x00,0x10,0x18,0x30,0x00,0x42,0x01,0x00,0x00 -+// 13983 㚟 ; -+,0x00,0x01,0x02,0x0c,0x08,0x08,0x00,0x08,0x08,0x0c,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x20,0x04,0x04,0x04,0x20,0x24,0x20,0xbe,0x82,0x80,0x00,0x08,0x07,0x00 -+// 13984 㚠 ; -+,0x00,0x00,0x00,0x01,0x03,0x06,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x11,0x00,0x00,0x00,0x80,0x20,0x00,0x08,0x26,0x00,0x00,0xc8,0x00,0x00,0x00,0x12,0x12,0x00 -+// 13985 㚡 ; -+,0x00,0x04,0x04,0x04,0x06,0x09,0x00,0x01,0x05,0x15,0x15,0x15,0x01,0x01,0x03,0x00,0x00,0x08,0x08,0x08,0x08,0x12,0x01,0x02,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x04,0x00 -+// 13986 㚢 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x20,0x20,0x40,0x41,0x44,0x88,0x88,0x08,0x10,0x70,0x38,0x46,0x03,0x00 -+// 13987 㚣 ; -+,0x00,0x01,0x01,0x02,0x02,0x00,0x00,0x03,0x01,0x03,0x02,0x04,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x10,0x20,0x40,0xf0,0x08,0x00,0x03,0x10,0x20,0xe0,0x98,0x04,0x00 -+// 13988 㚤 ; -+,0x00,0x04,0x04,0x00,0x09,0x09,0x09,0x01,0x12,0x12,0x02,0x06,0x05,0x08,0x00,0x00,0x00,0x00,0x20,0x24,0x20,0x23,0x20,0x20,0x00,0x10,0x10,0x00,0x08,0x06,0x02,0x00 -+// 13989 㚥 ; -+,0x00,0x04,0x04,0x00,0x09,0x09,0x09,0x01,0x12,0x12,0x02,0x06,0x05,0x08,0x00,0x00,0x00,0x00,0x02,0x18,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00 -+// 13990 㚦 ; -+,0x00,0x00,0x04,0x08,0x09,0x09,0x09,0x01,0x12,0x12,0x02,0x06,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x44,0x44,0x84,0x04,0x00 -+// 13991 㚧 ; -+,0x00,0x00,0x08,0x08,0x09,0x0b,0x02,0x12,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x08,0x49,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x80,0x00,0x00,0x00 -+// 13992 㚨 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x09,0x0a,0x02,0x12,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x23,0x23,0x01,0x00 -+// 13993 㚩 ; -+,0x00,0x04,0x04,0x00,0x09,0x09,0x09,0x08,0x02,0x12,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x43,0x42,0x42,0x42,0x42,0x44,0x00 -+// 13994 㚪 ; -+,0x00,0x00,0x04,0x08,0x09,0x09,0x08,0x02,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x0c,0x20,0x20,0x22,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x1f,0x00 -+// 13995 㚫 ; -+,0x00,0x00,0x0c,0x08,0x09,0x09,0x0a,0x02,0x12,0x12,0x04,0x06,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x28,0x08,0x22,0x62,0x40,0x54,0x08,0x88,0x14,0x03,0x00 -+// 13996 㚬 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x09,0x00,0x02,0x12,0x02,0x06,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x23,0x42,0x02,0x12,0x12,0x02,0x12,0x42,0x02,0x02,0x0e,0x00 -+// 13997 㚭 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x09,0x02,0x12,0x12,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x20,0x21,0x28,0x28,0x28,0x28,0x08,0x48,0x48,0x89,0x0e,0x00 -+// 13998 㚮 ; -+,0x00,0x00,0x04,0x08,0x09,0x0a,0x0a,0x02,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x01,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x81,0x07,0x00 -+// 13999 㚯 ; -+,0x00,0x00,0x08,0x08,0x0b,0x0a,0x02,0x02,0x12,0x10,0x04,0x06,0x09,0x01,0x00,0x00,0x00,0x00,0x06,0x00,0x0c,0x08,0x00,0x10,0x90,0xa8,0x8c,0x84,0x02,0x03,0x01,0x00 -+// 14000 㚰 ; -+,0x00,0x00,0x04,0x00,0x08,0x0b,0x0a,0x0a,0x02,0x12,0x14,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x10,0x10,0x20,0x30,0x50,0x12,0x12,0x10,0x10,0x10,0x00,0x00,0x00 -+// 14001 㚱 ; -+,0x00,0x00,0x04,0x08,0x08,0x09,0x09,0x02,0x12,0x12,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x06,0x40,0x40,0x40,0x40,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x00,0x00 -+// 14002 㚲 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x09,0x08,0x02,0x12,0x12,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 14003 㚳 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x12,0x10,0x14,0x14,0x14,0x0c,0x0b,0x00,0x00,0x00,0x00,0x00,0x80,0x81,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x29,0x29,0x29,0x00,0x00 -+// 14004 㚴 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x0a,0x02,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x10,0x10,0x31,0x20,0x00,0x40,0x5a,0x82,0x02,0x02,0x02,0x02,0x02,0x00,0x00 -+// 14005 㚵 ; -+,0x00,0x00,0x04,0x00,0x09,0x0b,0x0a,0x0a,0x02,0x12,0x14,0x06,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x26,0x44,0x00,0x18,0x10,0x0c,0x06,0x09,0x08,0x00,0x08,0x0c,0x00 -+// 14006 㚶 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x09,0x00,0x02,0x12,0x02,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x40,0x40,0x40,0x40,0x40,0x40,0x42,0x40,0x00 -+// 14007 㚷 ; -+,0x00,0x00,0x0c,0x08,0x09,0x09,0x09,0x02,0x12,0x12,0x10,0x04,0x03,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x00,0x44,0x13,0x10,0x50,0x50,0x12,0x11,0x10,0x10,0x30,0x00 -+// 14008 㚸 ; -+,0x00,0x04,0x04,0x08,0x09,0x09,0x09,0x02,0x12,0x12,0x10,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x01,0x00,0x00,0x00,0x48,0x08,0x08,0x48,0x08,0x00,0x00,0x02,0x00 -+// 14009 㚹 ; -+,0x00,0x00,0x08,0x08,0x08,0x12,0x12,0x12,0x10,0x04,0x04,0x0e,0x0a,0x10,0x00,0x00,0x00,0x00,0x60,0x89,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x29,0x4b,0x48,0x08,0x00 -+// 14010 㚺 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x0a,0x02,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x4c,0x48,0x49,0x40,0xca,0x8a,0x06,0x10,0x11,0x10,0x10,0x10,0x30,0x00 -+// 14011 㚻 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x01,0x03,0x02,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x44,0x04,0xc4,0x04,0xc4,0x00,0x00,0x13,0x10,0x20,0xe0,0x98,0x04,0x00 -+// 14012 㚼 ; -+,0x00,0x04,0x04,0x08,0x08,0x0b,0x0a,0x02,0x12,0x12,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x12,0x12,0x10,0x10,0x10,0x12,0x02,0x00,0x00 -+// 14013 㚽 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x1c,0x01,0x01,0x02,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x10,0x00,0x20,0x02,0x02,0x02,0x0c,0x02,0x10,0x20,0x60,0x98,0x04,0x00 -+// 14014 㚾 ; -+,0x00,0x04,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x04,0x06,0x0b,0x00,0x01,0x00,0x00,0x00,0x02,0x82,0x82,0x82,0x82,0x82,0x28,0x28,0x28,0x48,0x48,0x89,0x07,0x00 -+// 14015 㚿 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x0a,0x02,0x12,0x10,0x14,0x0e,0x09,0x10,0x00,0x00,0x00,0x00,0x60,0x40,0x42,0x82,0xca,0x4a,0x4a,0x4a,0x42,0x44,0x40,0x41,0x7f,0x00 -+// 14016 㛀 ; -+,0x00,0x04,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x04,0x06,0x0b,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x44,0x44,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 14017 㛁 ; -+,0x00,0x04,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x04,0x06,0x0b,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x42,0x00,0x20,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x00 -+// 14018 㛂 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x12,0x12,0x14,0x0c,0x06,0x0b,0x01,0x00,0x00,0x00,0x00,0x0e,0x80,0x80,0x80,0xa8,0xa8,0xa8,0xa2,0xa0,0xa0,0x20,0x21,0x3f,0x00 -+// 14019 㛃 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x01,0x02,0x04,0x00,0x00,0x06,0x00,0x00,0x00,0x81,0x09,0x80,0x10,0x12,0x26,0x00,0x03,0x10,0x20,0x60,0xb8,0x04,0x00 -+// 14020 㛄 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x12,0x12,0x12,0x04,0x04,0x06,0x0a,0x00,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0x20,0x20,0x42,0xd0,0x40,0x48,0x48,0x44,0x63,0x40,0x00 -+// 14021 㛅 ; -+,0x00,0x00,0x04,0x08,0x09,0x08,0x02,0x12,0x12,0x10,0x04,0x0c,0x0a,0x01,0x00,0x00,0x00,0x00,0x45,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x45,0x04,0x04,0x04,0x00 -+// 14022 㛆 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x09,0x40,0x42,0x96,0x10,0x31,0x30,0x54,0x54,0x93,0x11,0x00 -+// 14023 㛇 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x02,0x12,0x12,0x12,0x14,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x01,0x40,0x48,0x48,0x48,0x48,0x48,0x08,0x08,0x88,0x08,0x00,0x00 -+// 14024 㛈 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0b,0x0a,0x02,0x12,0x12,0x14,0x06,0x09,0x00,0x00,0x00,0x00,0x20,0x22,0x2c,0x24,0x29,0x10,0x20,0x22,0x20,0x22,0x02,0x04,0x04,0x3c,0x08 -+// 14025 㛉 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x12,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x01,0x28,0x28,0x28,0xab,0xa8,0xa8,0x88,0xca,0x86,0x80,0x80,0x80,0x00 -+// 14026 㛊 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x14,0x04,0x06,0x0a,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0x04,0x44,0x47,0x10,0x11,0x38,0x38,0x54,0x92,0x11,0x10,0x00 -+// 14027 㛋 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x0a,0x02,0x12,0x12,0x14,0x04,0x0b,0x01,0x00,0x00,0x00,0x10,0x10,0x20,0x28,0x44,0x13,0x10,0x10,0x50,0x15,0x95,0x10,0x10,0x30,0x00 -+// 14028 㛌 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x0a,0x02,0x12,0x12,0x14,0x06,0x09,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x02,0xc1,0x10,0x50,0x92,0x90,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14029 㛍 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0b,0x0a,0x02,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x52,0x10,0xd6,0x31,0x08,0x28,0x04,0x42,0x03,0x00 -+// 14030 㛎 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x08,0x0a,0x02,0x12,0x14,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x00,0x83,0x81,0x81,0x81,0x81,0x81,0x00 -+// 14031 㛏 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x14,0x04,0x0b,0x01,0x00,0x00,0x00,0x10,0x14,0x10,0x11,0x10,0x10,0x52,0x58,0x18,0x50,0x94,0x12,0x11,0x30,0x00 -+// 14032 㛐 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x12,0x12,0x12,0x00,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x90,0x20,0x20,0x4c,0x83,0x00 -+// 14033 㛑 ; -+,0x00,0x02,0x02,0x02,0x0f,0x01,0x04,0x06,0x01,0x01,0x02,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x82,0x02,0x84,0x14,0x08,0x14,0x02,0x00,0x10,0x10,0x20,0xf0,0x04,0x00 -+// 14034 㛒 ; -+,0x00,0x04,0x04,0x08,0x08,0x09,0x09,0x12,0x12,0x12,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x04,0x20,0x20,0x01,0x00 -+// 14035 㛓 ; -+,0x00,0x00,0x04,0x08,0x08,0x0b,0x0a,0x02,0x12,0x10,0x14,0x04,0x0b,0x00,0x00,0x00,0x00,0x04,0x0c,0x18,0x2c,0x34,0x20,0x60,0x40,0xda,0x42,0x42,0x42,0x02,0x00,0x00 -+// 14036 㛔 ; -+,0x00,0x00,0x04,0x00,0x08,0x0b,0x0a,0x02,0x12,0x10,0x14,0x04,0x0b,0x01,0x00,0x00,0x00,0x20,0x20,0x46,0x04,0x18,0x08,0x47,0x12,0x10,0x12,0x10,0x11,0x10,0x10,0x00 -+// 14037 㛕 ; -+,0x00,0x04,0x04,0x08,0x08,0x0b,0x02,0x12,0x12,0x12,0x14,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x42,0x02,0x02,0x02,0x00,0x92,0x92,0x92,0x80,0x80,0x80,0x81,0xff,0x00 -+// 14038 㛖 ; -+,0x00,0x04,0x04,0x04,0x08,0x09,0x09,0x02,0x12,0x12,0x10,0x06,0x01,0x00,0x00,0x00,0x00,0x10,0x20,0x42,0xc2,0x00,0x64,0x42,0x20,0x44,0x04,0x28,0x10,0x28,0x07,0x00 -+// 14039 㛗 ; -+,0x00,0x04,0x04,0x00,0x08,0x0b,0x0a,0x02,0x12,0x10,0x14,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x10,0x52,0x14,0x94,0x94,0x52,0x11,0x10,0x12,0x10,0x10,0x10,0x11,0x00 -+// 14040 㛘 ; -+,0x00,0x00,0x04,0x04,0x08,0x0b,0x0b,0x02,0x12,0x10,0x14,0x04,0x0b,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x91,0x80,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14041 㛙 ; -+,0x00,0x04,0x04,0x04,0x08,0x0b,0x0a,0x02,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x00,0x04,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14042 㛚 ; -+,0x00,0x00,0x04,0x04,0x08,0x0b,0x0a,0x02,0x12,0x12,0x14,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x18,0x80,0x80,0x92,0x80,0x90,0x90,0x80,0x80,0x82,0x00 -+// 14043 㛛 ; -+,0x00,0x00,0x04,0x04,0x09,0x09,0x08,0x02,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x10,0x00,0x44,0x40,0x44,0x40,0x44,0x43,0x46,0x04,0x0c,0x10,0x40,0x04,0x00 -+// 14044 㛜 ; -+,0x00,0x04,0x04,0x08,0x0a,0x1a,0x0a,0x0a,0x08,0x01,0x01,0x02,0x02,0x00,0x03,0x00,0x00,0x20,0x20,0x46,0x44,0x20,0x18,0x18,0x06,0x00,0x12,0x10,0x20,0xe0,0x0c,0x00 -+// 14045 㛝 ; -+,0x00,0x00,0x04,0x08,0x09,0x09,0x00,0x12,0x12,0x02,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x42,0x02,0x02,0x42,0x02,0x42,0x02,0x02,0x42,0x02,0x20,0x42,0x01,0x00 -+// 14046 㛞 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x02,0x12,0x12,0x00,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x10,0x00,0x44,0x44,0x44,0x44,0x44,0x84,0x04,0x00 -+// 14047 㛟 ; -+,0x00,0x04,0x04,0x08,0x08,0x0b,0x02,0x12,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x20,0x20,0x4c,0x08,0x82,0x92,0x12,0x12,0x02,0x30,0x20,0x00,0x44,0x03,0x00 -+// 14048 㛠 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x12,0x12,0x12,0x04,0x04,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x42,0x80,0x80,0xa0,0xa0,0xa8,0xa0,0xa0,0xa8,0x80,0x82,0x82,0x00 -+// 14049 㛡 ; -+,0x00,0x00,0x04,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x04,0x04,0x0b,0x00,0x01,0x00,0x00,0x00,0x10,0x11,0x80,0x00,0x04,0x00,0x00,0x28,0x08,0x48,0x48,0x89,0x07,0x00 -+// 14050 㛢 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x02,0x12,0x12,0x14,0x04,0x06,0x0b,0x00,0x01,0x00,0x00,0x04,0x10,0x10,0x31,0x30,0x54,0x93,0x24,0x24,0x08,0x42,0x42,0x82,0x0c,0x00 -+// 14051 㛣 ; -+,0x00,0x04,0x04,0x08,0x08,0x0b,0x02,0x12,0x12,0x12,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x43,0x01,0x11,0x11,0x11,0x10,0x22,0x41,0x00 -+// 14052 㛤 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x12,0x10,0x14,0x14,0x14,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x22,0x20,0x20,0x24,0x66,0x20,0x20,0x20,0x20,0x22,0x00 -+// 14053 㛥 ; -+,0x00,0x00,0x04,0x08,0x08,0x0b,0x02,0x12,0x12,0x00,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x10,0x3a,0x18,0x54,0x92,0x11,0x10,0x02,0x02,0x42,0x02,0x42,0x02,0x00 -+// 14054 㛦 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x10,0x10,0x15,0x14,0x0c,0x02,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x65,0x44,0x44,0xee,0x6c,0x45,0x55,0x44,0x44,0x44,0x44,0x00 -+// 14055 㛧 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x04,0x06,0x0a,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x00,0x01,0x20,0x20,0x42,0x42,0xc2,0x42,0x42,0x00 -+// 14056 㛨 ; -+,0x00,0x04,0x04,0x08,0x09,0x0b,0x02,0x12,0x12,0x10,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x44,0x20,0x2a,0x10,0x10,0x10,0x10,0x3b,0x18,0x28,0x28,0x48,0x09,0x0f,0x00 -+// 14057 㛩 ; -+,0x00,0x04,0x04,0x08,0x09,0x0a,0x02,0x12,0x12,0x10,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x02,0x61,0x02,0x42,0x02,0x42,0x02,0x42,0x02,0x06,0x00 -+// 14058 㛪 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x02,0x12,0x12,0x14,0x04,0x0c,0x0a,0x10,0x00,0x00,0x00,0x20,0x20,0x21,0x40,0x40,0x94,0x97,0x94,0x94,0x94,0x94,0x94,0x11,0x13,0x00 -+// 14059 㛫 ; -+,0x00,0x04,0x04,0x08,0x09,0x09,0x0a,0x02,0x12,0x10,0x14,0x04,0x0a,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x20,0x51,0xa1,0x28,0x12,0x02,0x42,0x0e,0x00 -+// 14060 㛬 ; -+,0x00,0x04,0x04,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x04,0x06,0x0b,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x42,0x93,0x10,0x12,0x10,0x10,0x11,0x00 -+// 14061 㛭 ; -+,0x00,0x04,0x04,0x08,0x09,0x0b,0x02,0x12,0x12,0x10,0x04,0x06,0x09,0x10,0x00,0x00,0x00,0x20,0x20,0x2e,0x20,0x20,0x2d,0x00,0x00,0x42,0x02,0x42,0x02,0x42,0x02,0x00 -+// 14062 㛮 ; -+,0x00,0x00,0x04,0x08,0x08,0x0a,0x02,0x12,0x10,0x14,0x04,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x81,0x90,0x50,0x20,0x28,0x02,0x06,0x04,0x08,0x10,0x28,0x06,0x00 -+// 14063 㛯 ; -+,0x00,0x00,0x08,0x08,0x08,0x1b,0x11,0x15,0x15,0x14,0x08,0x0c,0x02,0x00,0x00,0x00,0x00,0x80,0x84,0xa0,0x0c,0x50,0x40,0x48,0x48,0x48,0x88,0x80,0x02,0x21,0x21,0x00 -+// 14064 㛰 ; -+,0x00,0x04,0x04,0x08,0x08,0x0b,0x02,0x12,0x12,0x10,0x04,0x06,0x0b,0x10,0x00,0x00,0x00,0x00,0x82,0x82,0x92,0x90,0x98,0x88,0xc7,0x82,0x02,0x02,0x42,0x02,0x46,0x00 -+// 14065 㛱 ; -+,0x00,0x04,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x14,0x04,0x06,0x0a,0x00,0x00,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x92,0x80,0x01,0x80,0x84,0x90,0x88,0x86,0x83,0x00 -+// 14066 㛲 ; -+,0x00,0x04,0x04,0x08,0x09,0x09,0x02,0x12,0x12,0x12,0x04,0x06,0x09,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x22,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x20,0x42,0x81,0x00 -+// 14067 㛳 ; -+,0x00,0x00,0x00,0x00,0x01,0x10,0x04,0x04,0x04,0x01,0x01,0x02,0x02,0x00,0x01,0x00,0x00,0x80,0x04,0x00,0x20,0x82,0x88,0x88,0x98,0x00,0x01,0x10,0x20,0xf0,0x0c,0x00 -+// 14068 㛴 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x14,0x04,0x0c,0x0e,0x00,0x00,0x00,0x00,0x40,0x12,0x00,0x90,0x5a,0x20,0x00,0x83,0x08,0x10,0x18,0x04,0x80,0x82,0x00 -+// 14069 㛵 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x10,0x14,0x0c,0x0a,0x00,0x00,0x00,0x00,0x00,0x32,0x02,0x54,0x00,0x10,0x92,0x92,0x92,0x92,0x82,0x82,0x82,0x86,0x00 -+// 14070 㛶 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x10,0x04,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x52,0x00,0x60,0x60,0x48,0x48,0x4a,0xa8,0x90,0x22,0x41,0x00 -+// 14071 㛷 ; -+,0x00,0x00,0x07,0x04,0x04,0x0c,0x05,0x04,0x00,0x01,0x03,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x14,0x10,0x18,0x08,0x28,0x09,0x00,0x00,0x01,0x10,0x20,0xf0,0x0c,0x00 -+// 14072 㛸 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x12,0x12,0x02,0x04,0x04,0x0b,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x00,0x00,0x02,0x02,0x02,0x00,0x04,0x28,0x01,0x00 -+// 14073 㛹 ; -+,0x00,0x04,0x08,0x08,0x0a,0x0a,0x02,0x12,0x10,0x14,0x04,0x0c,0x02,0x00,0x00,0x00,0x00,0x40,0x41,0x40,0x80,0xab,0xa0,0xae,0xa8,0xab,0x88,0x88,0x90,0x98,0xa3,0x00 -+// 14074 㛺 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x04,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x08,0x00,0x00,0x00,0x06,0x00,0x04,0x00,0x00,0x04,0x00 -+// 14075 㛻 ; -+,0x00,0x04,0x08,0x08,0x0a,0x0a,0x02,0x12,0x12,0x14,0x04,0x06,0x09,0x00,0x00,0x00,0x00,0x10,0x10,0x33,0x20,0x44,0x92,0x14,0x10,0x12,0x10,0x14,0x10,0x10,0x13,0x00 -+// 14076 㛼 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x12,0x12,0x12,0x04,0x04,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x1e,0x10,0x10,0x11,0x10,0x52,0x92,0x12,0xd2,0x12,0x12,0x92,0x02,0x00 -+// 14077 㛽 ; -+,0x00,0x00,0x08,0x08,0x08,0x1a,0x02,0x12,0x12,0x14,0x04,0x04,0x0a,0x00,0x00,0x00,0x00,0x00,0x10,0x81,0x00,0x10,0x14,0x50,0x19,0x30,0x10,0x54,0x92,0x13,0x10,0x00 -+// 14078 㛾 ; -+,0x00,0x08,0x08,0x08,0x1b,0x12,0x12,0x10,0x15,0x05,0x09,0x0d,0x02,0x02,0x00,0x00,0x00,0x08,0x0a,0x08,0x88,0x08,0x88,0x0a,0x5a,0x5a,0x54,0x54,0x4c,0x13,0x01,0x00 -+// 14079 㛿 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x13,0x10,0x14,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x14,0x54,0x57,0x14,0x04,0x01,0x10,0x10,0x92,0x92,0x92,0x92,0x96,0x10,0x00 -+// 14080 㜀 ; -+,0x00,0x08,0x08,0x08,0x0a,0x02,0x10,0x10,0x14,0x15,0x04,0x0c,0x06,0x02,0x00,0x00,0x00,0x00,0x03,0x11,0x11,0xd1,0x9b,0xd1,0xf1,0x1b,0x11,0x11,0x11,0x1b,0x10,0x00 -+// 14081 㜁 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x12,0x12,0x12,0x14,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x20,0x44,0x93,0x00,0x84,0x80,0x84,0x80,0x84,0x00,0x01,0x00 -+// 14082 㜂 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x18,0x01,0x03,0x02,0x00,0x00,0x03,0x00,0x00,0x04,0x04,0x04,0x84,0x14,0x04,0x04,0x88,0x00,0x10,0x10,0x20,0xf8,0x04,0x00 -+// 14083 㜃 ; -+,0x00,0x08,0x08,0x08,0x00,0x12,0x13,0x12,0x14,0x04,0x24,0x0c,0x0a,0x00,0x00,0x00,0x00,0x40,0x48,0x80,0x81,0x80,0x80,0x80,0x80,0x80,0xa2,0xa0,0xa0,0xa2,0xa0,0x00 -+// 14084 㜄 ; -+,0x00,0x00,0x09,0x01,0x1b,0x13,0x15,0x15,0x05,0x05,0x21,0x0d,0x06,0x02,0x00,0x00,0x00,0x00,0x04,0x14,0x24,0x24,0x2c,0x2c,0x2c,0x68,0x20,0x22,0x2a,0x67,0x01,0x00 -+// 14085 㜅 ; -+,0x00,0x08,0x08,0x08,0x0a,0x12,0x12,0x12,0x10,0x04,0x24,0x0c,0x0a,0x00,0x00,0x00,0x00,0x20,0x10,0x20,0x20,0x08,0x90,0x44,0xe2,0x00,0x92,0x12,0x92,0x12,0x82,0x00 -+// 14086 㜆 ; -+,0x00,0x00,0x08,0x08,0x00,0x16,0x12,0x14,0x14,0x04,0x20,0x0c,0x0a,0x01,0x00,0x00,0x00,0x00,0x08,0x2a,0xa8,0x08,0x88,0x98,0x98,0x8a,0x8a,0x89,0x88,0x00,0x1f,0x00 -+// 14087 㜇 ; -+,0x00,0x08,0x08,0x08,0x0a,0x12,0x12,0x10,0x14,0x04,0x24,0x0c,0x0a,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x00,0x50,0x41,0x41,0x7e,0x00 -+// 14088 㜈 ; -+,0x00,0x00,0x03,0x04,0x04,0x0c,0x08,0x10,0x04,0x00,0x01,0x02,0x02,0x00,0x01,0x00,0x00,0x10,0x26,0x04,0x14,0x13,0x12,0x00,0x84,0x80,0x12,0x10,0x20,0xf8,0x8c,0x00 -+// 14089 㜉 ; -+,0x00,0x00,0x08,0x08,0x08,0x12,0x12,0x12,0x12,0x00,0x24,0x0c,0x0a,0x00,0x00,0x00,0x00,0x00,0x54,0x80,0x54,0x00,0x02,0x00,0x00,0x82,0x92,0x92,0x80,0x80,0x81,0x00 -+// 14090 㜊 ; -+,0x00,0x08,0x08,0x08,0x1a,0x12,0x12,0x10,0x14,0x04,0x18,0x0d,0x03,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0xa4,0xa0,0xac,0xa0,0xad,0x00,0x02,0x08,0x24,0x63,0x00 -+// 14091 㜋 ; -+,0x00,0x08,0x08,0x08,0x1a,0x12,0x12,0x10,0x04,0x04,0x00,0x0c,0x02,0x00,0x00,0x00,0x00,0x04,0x44,0x28,0x0b,0x00,0x64,0x42,0x80,0xa6,0xac,0xac,0xac,0xac,0xaf,0x00 -+// 14092 㜌 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x20,0x04,0x04,0x09,0x09,0x02,0x07,0x08,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0xe2,0x00,0x02,0x02,0x00,0x14,0x08,0x1c,0x03,0x00 -+// 14093 㜍 ; -+,0x00,0x08,0x08,0x08,0x1a,0x12,0x12,0x10,0x14,0x04,0x0d,0x0d,0x03,0x00,0x00,0x00,0x00,0x10,0x11,0x90,0x90,0x96,0x92,0x96,0x12,0x14,0x10,0x46,0x42,0x42,0x46,0x00 -+// 14094 㜎 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x12,0x12,0x04,0x04,0x0c,0x0a,0x00,0x01,0x00,0x00,0x06,0x20,0x92,0x94,0x20,0x44,0xd8,0x20,0xf2,0x10,0x31,0x20,0x40,0x87,0x00 -+// 14095 㜏 ; -+,0x00,0x00,0x08,0x08,0x08,0x1a,0x12,0x12,0x12,0x00,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x00,0xc2,0x02,0x42,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x80,0x62,0x81,0x00 -+// 14096 㜐 ; -+,0x00,0x00,0x08,0x08,0x08,0x1a,0x12,0x12,0x12,0x00,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x10,0x12,0x92,0x92,0x00,0x02,0x00,0x82,0x82,0x82,0x00,0x04,0x28,0x01,0x00 -+// 14097 㜑 ; -+,0x00,0x00,0x0c,0x00,0x10,0x04,0x00,0x08,0x08,0x08,0x01,0x01,0x02,0x00,0x01,0x00,0x00,0x10,0x04,0x10,0x12,0x12,0x12,0x12,0x12,0x00,0x81,0x10,0x30,0xf0,0x8c,0x00 -+// 14098 㜒 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x14,0x0c,0x0a,0x00,0x01,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x24,0x24,0x24,0x44,0x44,0x84,0x04,0x00 -+// 14099 㜓 ; -+,0x00,0x08,0x08,0x08,0x1a,0x12,0x12,0x12,0x00,0x04,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x00,0x40,0x4e,0x40,0x20,0x20,0x4c,0x83,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 14100 㜔 ; -+,0x00,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x10,0x04,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x20,0x10,0x00,0x04,0x08,0x01,0x00,0x04,0x04,0x04,0x08,0x48,0x48,0x0f,0x00 -+// 14101 㜕 ; -+,0x00,0x08,0x08,0x08,0x08,0x1e,0x10,0x14,0x14,0x04,0x00,0x0c,0x02,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x2a,0x8a,0xaa,0x8a,0x8a,0x88,0x88,0x88,0x00,0x1f,0x00 -+// 14102 㜖 ; -+,0x00,0x04,0x08,0x08,0x0a,0x0a,0x12,0x12,0x10,0x04,0x04,0x06,0x0b,0x00,0x00,0x00,0x00,0x28,0x29,0x28,0xaa,0xaa,0xaa,0xaa,0xaa,0x00,0x02,0x02,0x42,0x02,0x42,0x00 -+// 14103 㜗 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x13,0x12,0x10,0x04,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x10,0x20,0x42,0x04,0x80,0xad,0x10,0x28,0x16,0x22,0x08,0x22,0x0c,0x30,0x00 -+// 14104 㜘 ; -+,0x00,0x08,0x08,0x08,0x1a,0x12,0x12,0x10,0x04,0x24,0x01,0x0d,0x07,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x81,0x04,0x00,0x1e,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x00 -+// 14105 㜙 ; -+,0x00,0x08,0x08,0x08,0x12,0x12,0x12,0x10,0x00,0x24,0x04,0x0d,0x03,0x00,0x00,0x00,0x00,0x10,0x11,0xa8,0xa8,0xab,0xa8,0xaa,0x80,0x48,0x7a,0x48,0x48,0x49,0x4f,0x00 -+// 14106 㜚 ; -+,0x00,0x08,0x08,0x09,0x09,0x1a,0x12,0x10,0x15,0x04,0x24,0x08,0x0c,0x02,0x00,0x00,0x00,0x10,0x10,0x03,0x00,0x09,0x88,0x82,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x00 -+// 14107 㜛 ; -+,0x00,0x08,0x08,0x08,0x08,0x15,0x15,0x15,0x15,0x05,0x20,0x08,0x04,0x02,0x00,0x00,0x00,0x04,0x04,0x40,0x09,0x69,0x04,0x64,0x04,0x64,0x00,0x5a,0x0a,0x01,0x41,0x00 -+// 14108 㜜 ; -+,0x00,0x00,0x08,0x08,0x18,0x10,0x14,0x14,0x14,0x00,0x18,0x0d,0x03,0x00,0x00,0x00,0x00,0x00,0x84,0xa8,0x88,0xa9,0x80,0xa2,0x82,0x82,0xa4,0x24,0x24,0x4a,0x01,0x00 -+// 14109 㜝 ; -+,0x00,0x04,0x08,0x08,0x0a,0x0a,0x02,0x12,0x10,0x14,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x10,0x20,0x04,0x13,0x04,0x00,0x08,0x28,0x2a,0xaa,0x8a,0x82,0x82,0x82,0x00 -+// 14110 㜞 ; -+,0x00,0x00,0x06,0x06,0x10,0x10,0x16,0x06,0x00,0x01,0x03,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x80,0x91,0x84,0xa4,0xa4,0x04,0x00,0x01,0x10,0x20,0xe0,0x0c,0x00 -+// 14111 㜟 ; -+,0x00,0x08,0x08,0x08,0x10,0x17,0x15,0x15,0x05,0x25,0x19,0x0d,0x01,0x02,0x00,0x00,0x00,0x08,0x48,0x48,0xe9,0x42,0x42,0x42,0x42,0x42,0x44,0x44,0xcc,0x4a,0x51,0x00 -+// 14112 㜠 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x12,0x11,0x04,0x04,0x0c,0x02,0x00,0x00,0x00,0x00,0x10,0x91,0x90,0x80,0x10,0x80,0x90,0x90,0x92,0x90,0x92,0x90,0x91,0x80,0x00 -+// 14113 㜡 ; -+,0x00,0x08,0x08,0x08,0x1e,0x14,0x14,0x15,0x05,0x25,0x09,0x09,0x07,0x01,0x01,0x00,0x00,0x12,0x92,0x20,0xb6,0x89,0x00,0x08,0x28,0x29,0x28,0x28,0x58,0x48,0x07,0x00 -+// 14114 㜢 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x12,0x12,0x10,0x04,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x10,0x92,0x92,0x92,0x92,0x10,0x92,0x92,0x82,0x21,0x44,0x08,0x3c,0x02,0x00 -+// 14115 㜣 ; -+,0x00,0x08,0x08,0x08,0x1a,0x11,0x14,0x15,0x04,0x24,0x08,0x0c,0x02,0x01,0x01,0x00,0x00,0x00,0x88,0x8a,0xa8,0x29,0x28,0x08,0x50,0x12,0x21,0x00,0x02,0x29,0x21,0x00 -+// 14116 㜤 ; -+,0x00,0x04,0x08,0x08,0x0b,0x0b,0x02,0x12,0x10,0x14,0x04,0x0c,0x0a,0x02,0x00,0x00,0x00,0x01,0x28,0x2a,0x2a,0xaa,0x00,0x86,0x80,0x80,0x80,0x10,0x10,0x10,0x10,0x00 -+// 14117 㜥 ; -+,0x00,0x08,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x04,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x00,0xaa,0xa8,0xaa,0x00,0x02,0x82,0x82,0x82,0x82,0x82,0x00,0x46,0x83,0x00 -+// 14118 㜦 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x05,0x04,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x04,0x20,0x02,0x0a,0x80,0x04,0x04,0x44,0x04,0x0c,0x00 -+// 14119 㜧 ; -+,0x00,0x00,0x09,0x09,0x19,0x15,0x15,0x15,0x05,0x01,0x09,0x08,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x14,0x64,0x35,0x00,0x94,0x94,0x94,0x54,0x4c,0x4a,0x12,0x21,0x00 -+// 14120 㜨 ; -+,0x00,0x08,0x09,0x09,0x1b,0x11,0x15,0x15,0x05,0x25,0x09,0x0d,0x06,0x02,0x00,0x00,0x00,0x00,0x83,0x02,0x00,0x52,0x10,0x12,0x00,0x40,0x58,0x00,0x18,0x00,0x00,0x00 -+// 14121 㜩 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x10,0x14,0x04,0x04,0x08,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x02,0x12,0x52,0x32,0x32,0x0a,0x02,0x20,0x30,0x40,0x04,0x03,0x00 -+// 14122 㜪 ; -+,0x00,0x00,0x02,0x01,0x00,0x02,0x02,0x0a,0x12,0x05,0x03,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x86,0x20,0x20,0x24,0xa0,0x20,0x80,0x00,0x00,0x10,0x20,0x70,0x0c,0x00 -+// 14123 㜫 ; -+,0x00,0x08,0x09,0x01,0x10,0x15,0x15,0x15,0x03,0x21,0x29,0x19,0x05,0x03,0x01,0x00,0x00,0x00,0xa4,0x74,0x74,0xf1,0x00,0x0a,0x02,0x52,0x46,0x14,0x16,0x0b,0x01,0x00 -+// 14124 㜬 ; -+,0x00,0x08,0x08,0x00,0x13,0x12,0x10,0x04,0x04,0x24,0x08,0x0d,0x03,0x00,0x00,0x00,0x00,0x20,0x44,0x88,0x81,0xa0,0x82,0x89,0x80,0x80,0x00,0x00,0x02,0x02,0x02,0x00 -+// 14125 㜭 ; -+,0x00,0x08,0x08,0x08,0x1a,0x13,0x10,0x10,0x04,0x04,0x00,0x08,0x02,0x00,0x00,0x00,0x00,0x10,0x52,0x54,0x11,0x01,0x04,0x04,0x44,0x00,0x12,0x12,0x92,0x12,0x82,0x00 -+// 14126 㜮 ; -+,0x00,0x08,0x09,0x09,0x1b,0x11,0x15,0x15,0x15,0x04,0x08,0x0d,0x03,0x01,0x01,0x00,0x00,0x00,0x44,0x40,0x29,0x28,0x60,0x42,0x50,0x00,0x04,0x00,0x00,0x00,0x57,0x00 -+// 14127 㜯 ; -+,0x00,0x08,0x09,0x09,0x09,0x13,0x11,0x11,0x15,0x05,0x01,0x0c,0x0a,0x00,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xa8,0x88,0xe8,0x48,0x49,0x0f,0x00,0x0a,0x29,0x01,0x00 -+// 14128 㜰 ; -+,0x00,0x08,0x08,0x01,0x14,0x15,0x14,0x14,0x04,0x20,0x28,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x82,0x30,0xc1,0x96,0x00,0xd1,0x4d,0x00,0x30,0x20,0x40,0x06,0x23,0x00 -+// 14129 㜱 ; -+,0x00,0x00,0x09,0x09,0x0b,0x03,0x10,0x14,0x14,0x04,0x00,0x08,0x06,0x02,0x00,0x00,0x00,0x22,0x00,0x08,0x40,0x50,0x40,0x86,0x80,0x84,0x84,0x80,0x84,0x40,0x82,0x00 -+// 14130 㜲 ; -+,0x00,0x08,0x08,0x08,0x1a,0x10,0x14,0x14,0x15,0x05,0x19,0x09,0x06,0x02,0x00,0x00,0x00,0x20,0x02,0x80,0x00,0x84,0x84,0x00,0x82,0x7a,0x36,0x56,0x3a,0x4a,0x83,0x00 -+// 14131 㜳 ; -+,0x00,0x08,0x08,0x08,0x0a,0x12,0x12,0x10,0x04,0x24,0x08,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xaa,0x0a,0x00,0x54,0x10,0x86,0x20,0x44,0xc8,0x46,0x63,0x00 -+// 14132 㜴 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x10,0x11,0x04,0x04,0x08,0x06,0x02,0x00,0x00,0x00,0x00,0x48,0x40,0x02,0xaa,0xaa,0x00,0x03,0x86,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14133 㜵 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x12,0x10,0x05,0x04,0x06,0x02,0x00,0x00,0x00,0x00,0x10,0x12,0x00,0x90,0x90,0x94,0x90,0x00,0x42,0x22,0x52,0xc8,0x44,0x43,0x00 -+// 14134 㜶 ; -+,0x00,0x04,0x08,0x08,0x08,0x0a,0x02,0x12,0x10,0x14,0x04,0x0c,0x0a,0x00,0x00,0x00,0x00,0x40,0x08,0x82,0x82,0x00,0x8c,0x80,0x48,0x88,0x92,0x82,0x38,0x08,0x0f,0x00 -+// 14135 㜷 ; -+,0x00,0x00,0x04,0x05,0x15,0x01,0x05,0x05,0x05,0x09,0x00,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0xd6,0x03,0x16,0x46,0x22,0x46,0x66,0x02,0x80,0x18,0x10,0xe0,0x0c,0x00 -+// 14136 㜸 ; -+,0x00,0x00,0x02,0x02,0x00,0x10,0x10,0x10,0x11,0x10,0x00,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x12,0x00,0x10,0x00,0x20,0x10,0x10,0x10,0x10,0x81,0x10,0x60,0x8e,0x00 -+// 14137 㜹 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x02,0x12,0x10,0x14,0x04,0x08,0x0e,0x02,0x00,0x00,0x00,0x2a,0x2a,0xaa,0xaa,0xaa,0x00,0x50,0x92,0x90,0x90,0x90,0x90,0x90,0x80,0x00 -+// 14138 㜺 ; -+,0x00,0x00,0x09,0x08,0x08,0x12,0x10,0x10,0x14,0x04,0x24,0x08,0x0e,0x02,0x00,0x00,0x00,0x04,0x4c,0x44,0x64,0x8a,0x6b,0x02,0x80,0x84,0x80,0x84,0x84,0x44,0x82,0x00 -+// 14139 㜻 ; -+,0x00,0x08,0x08,0x08,0x03,0x14,0x15,0x14,0x04,0x04,0x08,0x08,0x04,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x87,0x02,0x45,0x08,0x28,0x04,0x00,0x50,0x41,0x40,0x7c,0x00 -+// 14140 㜼 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x10,0x14,0x04,0x20,0x08,0x02,0x00,0x00,0x00,0x00,0x04,0x00,0x18,0x04,0x21,0x22,0xc6,0x10,0x01,0x04,0x44,0x04,0x44,0xc5,0x00 -+// 14141 㜽 ; -+,0x00,0x00,0x04,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0xc8,0x00,0x10,0x88,0x00,0x08,0x10,0x40,0x42,0x40,0x40,0x40,0xc0,0x80 -+// 14142 㜾 ; -+,0x00,0x00,0x01,0x03,0x02,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x10,0x20,0x20,0x44,0x03,0x04,0x00,0x00,0x00,0x40,0x40,0x00,0x04,0x00 -+// 14143 㜿 ; -+,0x00,0x00,0x01,0x01,0x00,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x02,0x04,0x10,0x08,0x09,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14144 㝀 ; -+,0x00,0x00,0x00,0x11,0x15,0x15,0x11,0x31,0x01,0x05,0x05,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x02,0x02,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x00 -+// 14145 㝁 ; -+,0x00,0x02,0x06,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x22,0x20,0x20,0x0c,0x10,0x20,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 14146 㝂 ; -+,0x00,0x00,0x02,0x04,0x00,0x08,0x08,0x08,0x08,0x29,0x0a,0x08,0x08,0x08,0x19,0x00,0x00,0x00,0x82,0x90,0x90,0x90,0x95,0x84,0x84,0x84,0xa4,0xa4,0x84,0xc4,0x04,0x00 -+// 14147 㝃 ; -+,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x08,0x0c,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x20,0x44,0x08,0x80,0x92,0x92,0x92,0xba,0x28,0x28,0x48,0x09,0x0f,0x00 -+// 14148 㝄 ; -+,0x00,0x00,0x04,0x00,0x11,0x11,0x11,0x00,0x01,0x00,0x04,0x1c,0x04,0x04,0x0c,0x00,0x00,0x10,0x10,0x90,0x10,0x10,0x52,0x52,0x52,0x52,0x12,0x10,0x10,0x11,0x0f,0x00 -+// 14149 㝅 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x20,0x00,0x01,0x02,0x04,0x0c,0x04,0x04,0x0c,0x00,0x00,0x00,0x84,0x24,0x24,0x24,0xa4,0x02,0x02,0x00,0x04,0x10,0x08,0x14,0x03,0x00 -+// 14150 㝆 ; -+,0x00,0x00,0x00,0x03,0x02,0x00,0x00,0x00,0x04,0x08,0x20,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x42,0x02,0x40,0x00,0x01,0x00,0x02,0x02,0x02,0x00 -+// 14151 㝇 ; -+,0x00,0x00,0x04,0x00,0x01,0x11,0x11,0x00,0x01,0x00,0x04,0x0c,0x24,0x04,0x0c,0x00,0x00,0x00,0x08,0x01,0x02,0x22,0x22,0x00,0x06,0x04,0x08,0x08,0x08,0x08,0x18,0x00 -+// 14152 㝈 ; -+,0x00,0x00,0x08,0x14,0x28,0x14,0x01,0x01,0x29,0x01,0x00,0x06,0x14,0x00,0x04,0x00,0x00,0x82,0x24,0x2a,0x04,0x09,0x28,0x25,0x01,0x06,0x00,0x09,0x08,0x08,0x10,0x00 -+// 14153 㝉 ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00 -+// 14154 㝊 ; -+,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x02,0x02,0x00,0x01,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x40,0x00,0x02,0x00,0x00,0x18,0x10,0x10,0x20,0xc0,0xc0,0x38,0x0e,0x00 -+// 14155 㝋 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0x42,0x04,0x00,0x18,0x10,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 14156 㝌 ; -+,0x00,0x00,0x00,0x00,0x10,0x31,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x80,0x40,0x42,0x02,0x00,0x00,0x30,0x20,0x40,0x40,0x80,0x10,0x0c,0x07,0x00 -+// 14157 㝍 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x42,0x02,0x00,0x08,0x00,0x00,0x0c,0x00,0x68,0x08,0x08,0x30,0x00 -+// 14158 㝎 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x12,0x00,0x00,0x00,0x00,0x40,0x42,0x02,0x80,0x40,0x18,0x10,0x60,0x80,0x00,0x00,0x00,0xfe,0x00 -+// 14159 㝏 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x01,0x02,0x04,0x01,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x40,0x02,0x02,0x80,0x00,0x10,0x0e,0x12,0x00,0x00,0x00,0x00,0x00,0x00 -+// 14160 㝐 ; -+,0x00,0x00,0x00,0x10,0x10,0x01,0x02,0x02,0x04,0x08,0x01,0x02,0x00,0x04,0x0c,0x00,0x00,0x00,0x40,0x02,0x02,0x20,0x00,0x10,0x88,0x86,0x02,0x00,0x00,0x08,0x04,0x00 -+// 14161 㝑 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x80,0x40,0x42,0x02,0x80,0x40,0x82,0x00,0x8c,0x08,0x08,0x08,0x08,0x30,0x00 -+// 14162 㝒 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0x42,0x02,0x00,0x00,0xc0,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 14163 㝓 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x40,0x03,0x00,0x80,0x20,0x10,0x1e,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 14164 㝔 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x42,0x02,0x40,0x42,0x00,0x10,0x0c,0x14,0x20,0xc0,0xb0,0x0e,0x00 -+// 14165 㝕 ; -+,0x00,0x00,0x00,0x10,0x30,0x02,0x02,0x12,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x03,0x00,0x40,0x04,0x10,0x00,0x08,0x10,0x20,0xc0,0xb0,0x0e,0x00 -+// 14166 㝖 ; -+,0x00,0x00,0x00,0x10,0x10,0x01,0x02,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x40,0x03,0x80,0x10,0x20,0x40,0xa0,0x62,0x86,0x88,0x30,0xc0,0x00,0x00 -+// 14167 㝗 ; -+,0x00,0x00,0x00,0x10,0x30,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x03,0x80,0x00,0x08,0x08,0x08,0x08,0x08,0x18,0x60,0x10,0x0e,0x00 -+// 14168 㝘 ; -+,0x00,0x00,0x00,0x10,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x03,0x80,0x40,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x0c,0x00 -+// 14169 㝙 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x80,0x40,0x03,0x00,0x08,0x00,0x88,0x00,0x04,0x00,0x00,0x00,0x04,0x02,0x00 -+// 14170 㝚 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x0c,0x08,0x18,0x16,0x02,0x04,0x0c,0x0e,0x11,0x00,0x00,0x00,0x40,0x03,0x00,0x06,0x10,0x10,0x90,0x90,0x90,0x90,0x80,0x00,0xfe,0x00 -+// 14171 㝛 ; -+,0x00,0x00,0x00,0x10,0x10,0x04,0x04,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x40,0x03,0x00,0x00,0x20,0x20,0x22,0x22,0x22,0x4a,0x82,0x02,0x02,0x00 -+// 14172 㝜 ; -+,0x00,0x00,0x00,0x10,0x30,0x00,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x03,0x20,0x28,0x20,0x20,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 14173 㝝 ; -+,0x00,0x00,0x00,0x10,0x10,0x04,0x04,0x04,0x04,0x0c,0x0d,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0x03,0x02,0x10,0x10,0x12,0x30,0x30,0x34,0x50,0x12,0x11,0x10,0x00 -+// 14174 㝞 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x01,0x01,0x01,0x08,0x08,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x20,0x20,0x24,0x04,0x04,0x24,0x00,0x00,0x22,0x00 -+// 14175 㝟 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x01,0x02,0x04,0x00,0x00,0x00,0x40,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x3f,0x00 -+// 14176 㝠 ; -+,0x00,0x00,0x00,0x10,0x10,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x06,0x08,0x00,0x00,0x00,0x40,0x03,0x00,0x08,0x08,0x08,0x08,0x00,0x40,0x02,0x00,0x0c,0x06,0x00 -+// 14177 㝡 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x08,0x08,0x09,0x08,0x09,0x08,0x0c,0x10,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x80,0x02,0x02,0x04,0x14,0x88,0x08,0x06,0x02,0x00 -+// 14178 㝢 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x04,0x04,0x00,0x08,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x40,0x03,0x00,0xc0,0x40,0x08,0x48,0x00,0xc2,0x02,0x52,0x02,0x04,0x00 -+// 14179 㝣 ; -+,0x00,0x00,0x00,0x10,0x00,0x04,0x00,0x04,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x80,0x40,0x02,0x00,0x92,0x10,0x10,0xa0,0x04,0x80,0xc0,0x20,0x10,0x06,0x00 -+// 14180 㝤 ; -+,0x00,0x00,0x00,0x10,0x00,0x03,0x03,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0x02,0x00,0x30,0x38,0x00,0x40,0x48,0x48,0x48,0x08,0x08,0x18,0x00 -+// 14181 㝥 ; -+,0x00,0x00,0x00,0x10,0x10,0x02,0x02,0x12,0x02,0x02,0x0a,0x02,0x02,0x12,0x02,0x00,0x00,0x80,0x40,0x02,0x10,0x10,0x54,0x50,0x11,0x30,0x30,0x54,0x12,0x13,0x10,0x00 -+// 14182 㝦 ; -+,0x00,0x00,0x00,0x10,0x14,0x04,0x08,0x04,0x04,0x04,0x00,0x01,0x02,0x02,0x08,0x00,0x00,0x00,0x40,0x03,0x40,0x04,0x00,0x00,0xc8,0x04,0x00,0x10,0x12,0x02,0x0c,0x00 -+// 14183 㝧 ; -+,0x00,0x00,0x00,0x11,0x01,0x02,0x02,0x00,0x02,0x02,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x02,0x00,0x30,0x20,0xe0,0x0c,0x00,0x10,0x04,0xc4,0x00,0x42,0x00 -+// 14184 㝨 ; -+,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x00,0x04,0x04,0x05,0x02,0x0e,0x02,0x03,0x00,0x00,0x80,0x00,0x02,0x00,0xc0,0x00,0x00,0x08,0x08,0xc0,0x2c,0x10,0x08,0x06,0x00 -+// 14185 㝩 ; -+,0x00,0x00,0x00,0x10,0x20,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x82,0x00,0x00,0x40,0x48,0x4c,0x48,0x48,0x48,0x50,0x4c,0xc0,0x00 -+// 14186 㝪 ; -+,0x00,0x00,0x00,0x10,0x30,0x04,0x04,0x04,0x00,0x0a,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x03,0x00,0x10,0x10,0xb4,0x14,0x04,0x14,0xb4,0x24,0x43,0x01,0x00 -+// 14187 㝫 ; -+,0x00,0x00,0x00,0x10,0x30,0x0a,0x0a,0x08,0x08,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x03,0x40,0x48,0x88,0x30,0x4e,0x00,0x80,0xb0,0x34,0x00,0x22,0x00 -+// 14188 㝬 ; -+,0x00,0x04,0x04,0x20,0x04,0x04,0x04,0x04,0x04,0x04,0x15,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x80,0x00,0x18,0x00,0x00,0x99,0x18,0x10,0x14,0x00,0x22,0x41,0x00 -+// 14189 㝭 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x06,0x10,0x20,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x02,0x00,0x84,0x00,0x80,0x84,0x00,0xa4,0x20,0x24,0x20,0x21,0x00 -+// 14190 㝮 ; -+,0x00,0x00,0x00,0x10,0x12,0x0a,0x0a,0x02,0x02,0x00,0x00,0x02,0x0a,0x12,0x06,0x00,0x00,0x00,0x40,0x02,0x00,0x80,0x82,0x82,0x80,0x04,0x14,0x08,0x08,0x94,0x02,0x00 -+// 14191 㝯 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x03,0x04,0x02,0x02,0x00,0x08,0x0a,0x0a,0x08,0x00,0x00,0x00,0x40,0x02,0xf0,0x80,0x10,0x08,0x13,0x10,0x00,0x04,0x24,0x24,0x0c,0x00 -+// 14192 㝰 ; -+,0x00,0x00,0x00,0x10,0x04,0x04,0x04,0x04,0x00,0x12,0x04,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x40,0x02,0x88,0x08,0x08,0x88,0x42,0x02,0x08,0x02,0x00,0x00,0x08,0x00 -+// 14193 㝱 ; -+,0x00,0x00,0x00,0x10,0x12,0x02,0x02,0x02,0x02,0x02,0x0b,0x0a,0x02,0x12,0x02,0x00,0x00,0x00,0x40,0x02,0x48,0x48,0x40,0xa8,0xac,0x00,0x22,0x44,0x08,0x10,0x40,0x00 -+// 14194 㝲 ; -+,0x00,0x00,0x00,0x10,0x04,0x14,0x14,0x14,0x05,0x04,0x04,0x05,0x14,0x04,0x04,0x00,0x00,0x00,0x42,0x02,0x4a,0x00,0x14,0x04,0x03,0x08,0x00,0x22,0xa4,0xa4,0x28,0x00 -+// 14195 㝳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xc2,0x00,0x00,0x00,0x00,0x12,0x0a,0x0a,0x00,0x00,0x80,0x00 -+// 14196 㝴 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x02,0x21,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x24,0x14,0x04,0x04,0x0c,0x01,0xff,0x00 -+// 14197 㝵 ; -+,0x00,0x00,0x08,0x08,0x0c,0x08,0x0c,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x0c,0x04,0x0c,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14198 㝶 ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x26,0x20,0x24,0x20,0x20,0x22,0x1e,0x10,0x12,0x10,0x10,0x10,0x20,0x00 -+// 14199 㝷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x04,0x1c,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x24,0x24,0x34,0x42,0x12,0x10,0x90,0x90,0x30,0x00 -+// 14200 㝸 ; -+,0x00,0x00,0x00,0x04,0x08,0x01,0x02,0x00,0x04,0x00,0x05,0x01,0x00,0x02,0x08,0x00,0x00,0x00,0x00,0x08,0x02,0x00,0x08,0x08,0x08,0x08,0x28,0x20,0x20,0x20,0x3f,0x00 -+// 14201 㝹 ; -+,0x00,0x00,0x06,0x08,0x00,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x70,0x80,0x00,0x20,0x00,0x04,0x80,0x80,0x08,0x00,0x23,0x00 -+// 14202 㝺 ; -+,0x00,0x01,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x1b,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x08,0x88,0x08,0x99,0x89,0xc8,0x89,0x8a,0x02,0x04,0x88,0x10,0x00,0x00 -+// 14203 㝻 ; -+,0x00,0x09,0x09,0x09,0x09,0x00,0x16,0x10,0x16,0x00,0x06,0x04,0x00,0x00,0x38,0x00,0x00,0x00,0x48,0x08,0x08,0x2a,0xa9,0x89,0x88,0x8a,0x02,0x84,0x08,0x10,0x40,0x00 -+// 14204 㝼 ; -+,0x00,0x08,0x08,0x08,0x08,0x0b,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x02,0x03,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x01,0xff,0x00 -+// 14205 㝽 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x14,0x10,0x30,0x50,0x50,0x14,0x92,0x10,0x30,0x01,0xff,0x00 -+// 14206 㝾 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x12,0x03,0x00,0x00,0x00,0x20,0x20,0x22,0x20,0x00,0x44,0x10,0x10,0x10,0x10,0x00,0x01,0xff,0x00 -+// 14207 㝿 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x0c,0x0c,0x0c,0x04,0x04,0x14,0x14,0x04,0x03,0x00,0x00,0x10,0x10,0x10,0x92,0x90,0x90,0x84,0x88,0x88,0x18,0x24,0x04,0x01,0xff,0x00 -+// 14208 㞀 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x02,0x03,0x00,0x00,0x00,0x20,0x20,0x60,0x40,0x50,0x10,0x94,0x50,0x10,0x28,0x06,0x01,0xff,0x00 -+// 14209 㞁 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x12,0x02,0x03,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00,0x84,0x90,0x80,0x82,0x7e,0x01,0xff,0x00 -+// 14210 㞂 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x02,0x03,0x00,0x00,0x00,0x1c,0x00,0x14,0x54,0x20,0x20,0x44,0x48,0x48,0x18,0x24,0x01,0xff,0x00 -+// 14211 㞃 ; -+,0x00,0x00,0x09,0x10,0x04,0x04,0x0a,0x01,0x00,0x11,0x11,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x10,0x84,0x00,0x31,0x00,0x00,0x20,0x20,0x20,0x20,0x40,0x01,0x07,0x00 -+// 14212 㞄 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x20,0x20,0x48,0x04,0x86,0xa4,0xa4,0x84,0xa4,0x00,0x1c,0x01,0xff,0x00 -+// 14213 㞅 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x10,0x12,0x30,0x50,0x16,0x10,0x01,0xff,0x00 -+// 14214 㞆 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x10,0x30,0x28,0x44,0x02,0x04,0x94,0x94,0x94,0x04,0x04,0x01,0xff,0x00 -+// 14215 㞇 ; -+,0x00,0x00,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x96,0x90,0x94,0x90,0x80,0x02,0x00,0x00,0x08,0x04,0xc2,0x01,0xff,0x00 -+// 14216 㞈 ; -+,0x00,0x08,0x08,0x08,0x08,0x0c,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x80,0x82,0xaa,0xaa,0xaa,0xaa,0x86,0x01,0xff,0x00 -+// 14217 㞉 ; -+,0x00,0x00,0x08,0x08,0x08,0x0e,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x48,0x00,0x20,0x24,0x20,0x22,0x40,0x44,0x90,0x10,0x12,0x01,0xff,0x00 -+// 14218 㞊 ; -+,0x00,0x00,0x04,0x14,0x04,0x04,0x14,0x00,0x00,0x00,0x04,0x00,0x10,0x00,0x04,0x00,0x00,0x00,0x10,0x90,0x10,0x91,0x94,0x14,0x14,0x14,0x14,0x24,0xa4,0x45,0x07,0x00 -+// 14219 㞋 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x04,0x04,0x08,0x90,0x50,0x60,0x98,0x06,0x00 -+// 14220 㞌 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x0c,0x00,0x20,0x22,0x20,0x20,0x20,0xe0,0x00 -+// 14221 㞍 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x11,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x84,0x40,0x40,0x48,0x08,0x88,0xc8,0xa8,0x08,0x0f,0x00 -+// 14222 㞎 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xff,0x00 -+// 14223 㞏 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x07,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x08,0x00,0x40,0x24,0x08,0x20,0x00,0x00,0x7e,0x00 -+// 14224 㞐 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x40,0x20,0x00,0x08,0x08,0x80,0x50,0x00,0x02,0x00 -+// 14225 㞑 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x40,0x40,0x40,0x44,0x40,0x40,0x41,0x3f,0x00 -+// 14226 㞒 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x0a,0x02,0x02,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x06,0x00,0x04,0x40,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 14227 㞓 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x0a,0x0b,0x08,0x01,0x00,0x11,0x00,0x01,0x00,0x00,0x00,0x04,0x00,0x04,0x08,0x70,0x00,0x06,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 14228 㞔 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x40,0xcc,0x98,0xa0,0x50,0x22,0xc6,0x08,0x30,0xc0,0x00 -+// 14229 㞕 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x0a,0x0a,0x0a,0x03,0x02,0x13,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x80,0x08,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x00 -+// 14230 㞖 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x0a,0x02,0x12,0x11,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x40,0x40,0x40,0x44,0x44,0x44,0xcc,0x58,0x46,0x42,0x00 -+// 14231 㞗 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x13,0x04,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x08,0x62,0x00,0x04,0x60,0x50,0x08,0x06,0xc0,0x00 -+// 14232 㞘 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x10,0x10,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x40,0xc0,0x04,0x60,0xa0,0xb0,0x94,0x03,0x60,0x00 -+// 14233 㞙 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x11,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x14,0x60,0x48,0x44,0x42,0x7e,0x04,0xe0,0x10,0x0c,0x42,0x00 -+// 14234 㞚 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x04,0x00,0x7c,0x00,0x62,0x00,0x06,0x00,0x04,0x00,0x04,0x00 -+// 14235 㞛 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x0a,0x01,0x01,0x02,0x16,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x04,0x00,0x04,0x40,0x48,0x40,0x66,0x00,0x46,0x40,0x44,0x40,0x44,0x00 -+// 14236 㞜 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x0a,0x08,0x09,0x0a,0x0a,0x02,0x12,0x12,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x1c,0x10,0x12,0x34,0x52,0x00,0x25,0x00,0x18,0x06,0x00 -+// 14237 㞝 ; -+,0x00,0x00,0x00,0x09,0x09,0x01,0x01,0x15,0x13,0x08,0x08,0x08,0x08,0x08,0x10,0x00,0x00,0x28,0x22,0x20,0x04,0x14,0x08,0x58,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x00 -+// 14238 㞞 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x0a,0x01,0x08,0x02,0x16,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x48,0x2c,0x02,0x10,0x10,0x50,0x50,0xb0,0x1f,0x00 -+// 14239 㞟 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x0a,0x02,0x02,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x04,0x00,0x14,0x90,0xe0,0xe4,0x94,0x04,0x04,0x40,0x60,0x90,0x0e,0x00 -+// 14240 㞠 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x09,0x09,0x01,0x11,0x10,0x02,0x04,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x84,0x98,0x0e,0x08,0x08,0x08,0x00,0x04,0x42,0x00 -+// 14241 㞡 ; -+,0x00,0x00,0x0c,0x08,0x08,0x09,0x09,0x08,0x09,0x09,0x0a,0x08,0x03,0x11,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x08,0x00,0x08,0x08,0x40,0x88,0x10,0x08,0x86,0x00 -+// 14242 㞢 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x04,0x04,0x04,0x04,0x04,0xc4,0x04,0x00,0x00,0x00,0x00,0x00 -+// 14243 㞣 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x03,0x06,0x08,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x40,0x00,0x00,0x44,0x40,0x00,0x00,0x0c,0x03,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14244 㞤 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x40,0x04,0x04,0x04,0x04,0x00,0x80,0x80,0x40,0x20,0x10,0x08,0x06,0x00 -+// 14245 㞥 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x80,0xc0,0xa0,0x10,0x08,0x04,0x02,0x00 -+// 14246 㞦 ; -+,0x00,0x00,0x04,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x06,0x38,0x01,0x00,0x00,0x00,0x00,0x4c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x04,0x84,0x84,0x05,0x00,0x00 -+// 14247 㞧 ; -+,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x01,0x01,0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x80,0x84,0x84,0x84,0x00,0x18,0x10,0x10,0x02,0x02,0x02,0x02,0x0c,0x00 -+// 14248 㞨 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14249 㞩 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x02,0x02,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x10,0x10,0x10,0x90,0x50,0x10,0x11,0x1f,0x00 -+// 14250 㞪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 14251 㞫 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x80,0x40,0x18,0x30,0x40,0x00,0x00,0x00,0x7e,0x00 -+// 14252 㞬 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x00 -+// 14253 㞭 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x80,0x80,0x82,0x00,0x10,0x08,0x06,0x40,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 14254 㞮 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x08,0x10,0x00,0x60,0x20,0x10,0x00 -+// 14255 㞯 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x04,0x00 -+// 14256 㞰 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x40,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14257 㞱 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 14258 㞲 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x92,0x90,0x90,0x90,0x92,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14259 㞳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x00,0x20,0x20,0x07,0x0c,0x00,0x00,0x00,0x00,0x00 -+// 14260 㞴 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x90,0x90,0x90,0x92,0x90,0x80,0x88,0x88,0x88,0x84,0xe3,0x81,0x00 -+// 14261 㞵 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x80,0x40,0x18,0x10,0x20,0xe0,0xc0,0x30,0x0e,0x00 -+// 14262 㞶 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x03,0x04,0x04,0x04,0x08,0x28,0x10,0x10,0x28,0x44,0x03,0x00 -+// 14263 㞷 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0xc4,0x00,0x00,0x04,0x00,0x00,0xc8,0x00,0x00,0xc2,0x00 -+// 14264 㞸 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x80,0x80,0x00,0x04,0x02,0x02,0x00,0x00 -+// 14265 㞹 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x04,0x00 -+// 14266 㞺 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x04,0x04,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x08,0x00,0x80,0x82,0x00,0x00,0x18,0x06,0x00 -+// 14267 㞻 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x04,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x00,0x08,0x08,0x08,0x02,0x00,0x04,0x04,0x08,0x18,0x00 -+// 14268 㞼 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x04,0x00,0x01,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x0c,0x00,0x44,0x40,0x10,0x08,0x06,0x80,0x80,0x40,0x00,0x00,0x04,0x00 -+// 14269 㞽 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x12,0x80,0x80,0x82,0x82,0x88,0x8c,0x88,0x8c,0x94,0x02,0x00 -+// 14270 㞾 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x01,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x40,0x40,0x02,0x04,0x98,0x90,0x80,0x01,0x1f,0x00 -+// 14271 㞿 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x04,0xc4,0x00,0x40,0xc0,0x02,0x10,0x10,0x20,0xc0,0xa0,0x1e,0x00 -+// 14272 㟀 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x18,0xc0,0x80,0xc3,0x80,0x80,0x88,0x87,0x00,0x00,0x00,0x00,0x02,0x02,0x00 -+// 14273 㟁 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3b,0x01,0x00,0x00,0x00,0x00,0x00,0x82,0x80,0x82,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 14274 㟂 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x52,0x02,0x02,0xc2,0x02,0x92,0x90,0x80,0x86,0x04,0x0c,0x00 -+// 14275 㟃 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x09,0x09,0x09,0x49,0x09,0x01,0x01,0x06,0x00 -+// 14276 㟄 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x04,0x44,0x28,0x0a,0x10,0x10,0x12,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00 -+// 14277 㟅 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x01,0x00,0x00,0x00,0x08,0x8a,0x92,0x9a,0xaa,0x82,0x8a,0x28,0x08,0x48,0x48,0x89,0x07,0x00 -+// 14278 㟆 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x50,0x52,0x94,0x90,0x10,0x11,0x0e,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14279 㟇 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x10,0x54,0x54,0x14,0xd2,0x32,0x10,0x10,0x12,0x10,0x10,0x10,0x11,0x00 -+// 14280 㟈 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x10,0x14,0x10,0x12,0x10,0x10,0x52,0x50,0x18,0x10,0x94,0x92,0x11,0x30,0x00 -+// 14281 㟉 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x10,0x81,0x80,0x00,0x40,0x50,0x80,0x00,0x11,0x00,0x00,0x00,0x10,0x00 -+// 14282 㟊 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x30,0x00,0x00,0x00,0x00,0x06,0x78,0x02,0x94,0x50,0x04,0x0c,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14283 㟋 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x01,0x00,0x00,0x00,0x44,0x28,0x00,0x82,0x82,0x82,0x82,0xa8,0x08,0x48,0x48,0x89,0x0f,0x00 -+// 14284 㟌 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x01,0x00,0x00,0x00,0x00,0x48,0x40,0x42,0x00,0x04,0x18,0x00,0x04,0x90,0x86,0x18,0x31,0x1f,0x00 -+// 14285 㟍 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x10,0x06,0x02,0x02,0x02,0x02,0x46,0x02,0x14,0x10,0x08,0xe4,0xc3,0x00 -+// 14286 㟎 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x06,0x38,0x02,0x02,0x14,0x40,0x20,0x21,0x64,0x44,0x48,0x18,0x26,0x02,0x00 -+// 14287 㟏 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x30,0x00,0x00,0x00,0x00,0x10,0x30,0x28,0x44,0x06,0x11,0x00,0x08,0x10,0x10,0x84,0x80,0x80,0x84,0x00 -+// 14288 㟐 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x44,0x45,0x44,0x40,0x10,0x08,0x40,0x40,0x40,0x40,0x40,0x40,0x62,0x00 -+// 14289 㟑 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x91,0x00,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14290 㟒 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x88,0x8a,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x00 -+// 14291 㟓 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x30,0x00,0x00,0x00,0x00,0x04,0x18,0x3c,0x00,0x10,0x21,0x00,0x50,0x92,0x92,0x12,0x12,0x96,0x10,0x00 -+// 14292 㟔 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x84,0x80,0x00,0x18,0x06,0x30,0x00,0x08,0x08,0x08,0x08,0x00 -+// 14293 㟕 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x13,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x20,0x00,0x40,0x20,0x0d,0x08,0x00,0x08,0x00 -+// 14294 㟖 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0xc8,0x02,0x00,0x10,0x12,0x10,0x10,0x10,0x00 -+// 14295 㟗 ; -+,0x00,0x00,0x00,0x00,0x05,0x11,0x18,0x10,0x15,0x15,0x15,0x15,0x13,0x10,0x10,0x00,0x00,0x00,0x40,0x00,0x04,0xa6,0xc0,0x04,0x14,0x14,0x14,0x04,0x0c,0x00,0x02,0x00 -+// 14296 㟘 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x32,0x01,0x01,0x00,0x00,0x00,0x00,0x93,0x90,0x96,0x90,0x92,0x82,0x80,0xa8,0x20,0x28,0x00,0x00,0x06,0x00 -+// 14297 㟙 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x30,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x6a,0x08,0x08,0x69,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 14298 㟚 ; -+,0x00,0x04,0x04,0x04,0x04,0x0c,0x0d,0x14,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x06,0x04,0x18,0x18,0x07,0x00,0x00,0x04,0x04,0x04,0x00 -+// 14299 㟛 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x06,0x04,0x04,0x04,0x34,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x44,0x45,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x00 -+// 14300 㟜 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x02,0x02,0x02,0x10,0x10,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x40,0x42,0x00,0x10,0x10,0x50,0x92,0x11,0x10,0x00 -+// 14301 㟝 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x30,0x00,0x00,0x00,0x00,0x10,0x10,0x02,0x00,0x24,0x20,0x29,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x00 -+// 14302 㟞 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x3a,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x20,0x24,0x18,0x38,0x07,0x50,0x42,0x60,0x24,0x38,0x30,0x0f,0x00 -+// 14303 㟟 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x06,0x0a,0x02,0x02,0x03,0x00,0x00,0x80,0x80,0x80,0x04,0x20,0x28,0x20,0x22,0x00,0x18,0x13,0x20,0x04,0xfc,0x00 -+// 14304 㟠 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x20,0x00,0x00,0x00,0x00,0x00,0x81,0x85,0xa1,0x8d,0x91,0x91,0x95,0x95,0x95,0x95,0x81,0x81,0x82,0x00 -+// 14305 㟡 ; -+,0x00,0x00,0x08,0x08,0x00,0x02,0x02,0x01,0x01,0x02,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x04,0x04,0x84,0x90,0x84,0x00,0x02,0x00,0x1c,0x12,0x20,0x00,0xfc,0x00 -+// 14306 㟢 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xc4,0x00,0x84,0x00,0x10,0x08,0x08,0x40,0x40,0x40,0x40,0x08,0x00 -+// 14307 㟣 ; -+,0x00,0x00,0x08,0x08,0x2c,0x2c,0x2c,0x2c,0x2d,0x2d,0x2c,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x84,0x90,0x92,0x83,0x89,0xc8,0xa0,0x90,0x90,0x82,0xb2,0x80,0x00 -+// 14308 㟤 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x08,0xc0,0x44,0xa0,0x10,0x0c,0x86,0x00 -+// 14309 㟥 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x04,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0xc4,0x80,0x00,0x08,0x80,0x20,0x50,0x8c,0x22,0x98,0x60,0x80,0x00 -+// 14310 㟦 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x02,0xc0,0x00,0x08,0xc8,0x08,0x00,0xc2,0x00,0x00 -+// 14311 㟧 ; -+,0x00,0x00,0x08,0x08,0x00,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x00,0x04,0x04,0x24,0x00,0x00,0x02,0x00,0x08,0x08,0x30,0x00 -+// 14312 㟨 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x30,0x00,0x01,0x00,0x00,0x10,0x92,0x92,0x92,0x00,0x01,0x20,0x22,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x00 -+// 14313 㟩 ; -+,0x00,0x00,0x11,0x11,0x14,0x14,0x12,0x12,0x11,0x10,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x30,0x20,0x22,0x04,0x04,0x14,0x08,0x9c,0xa6,0x00,0x02,0x02,0x02,0x02,0x00 -+// 14314 㟪 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x82,0x92,0x82,0x92,0x80,0x01,0x80,0x84,0x90,0x88,0xa4,0x83,0x00 -+// 14315 㟫 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x32,0x00,0x01,0x00,0x00,0x00,0x10,0x00,0x82,0x82,0x82,0x82,0x82,0x10,0x52,0x58,0x90,0x94,0x13,0x30,0x00 -+// 14316 㟬 ; -+,0x00,0x00,0x08,0x08,0x00,0x02,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0xc4,0x00,0x04,0x04,0x04,0x04,0xc4,0xc8,0x08,0x10,0xe0,0x1c,0x00 -+// 14317 㟭 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x02,0x82,0x82,0x92,0x90,0x88,0x88,0xc7,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 14318 㟮 ; -+,0x00,0x00,0x08,0x08,0x09,0x29,0x28,0x28,0x28,0x28,0x28,0x3c,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x01,0x00,0x44,0x82,0x14,0x24,0x23,0x20,0x20,0x48,0x84,0x03,0x00 -+// 14319 㟯 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x09,0x13,0x02,0x00,0x01,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x84,0x40,0x06,0x10,0x20,0xc0,0x30,0x0e,0x18,0x00,0x10,0x00 -+// 14320 㟰 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x02,0x82,0x82,0x82,0x82,0x00,0x10,0x01,0x00,0x42,0x83,0x00 -+// 14321 㟱 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x01,0x00,0x00,0x04,0x24,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x21,0x01,0x00 -+// 14322 㟲 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x01,0x01,0x00,0x00,0x00,0x00,0x9b,0x80,0x92,0xa2,0xa2,0xa2,0xa2,0xaa,0x88,0x28,0x48,0x09,0x18,0x00 -+// 14323 㟳 ; -+,0x00,0x00,0x08,0x08,0x08,0x28,0x2a,0x2a,0x2a,0x2a,0x2a,0x30,0x00,0x00,0x00,0x00,0x00,0x02,0x28,0x28,0xaa,0x2a,0x2a,0x82,0x10,0x32,0x70,0x48,0x84,0x03,0x10,0x00 -+// 14324 㟴 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xb2,0x92,0x92,0x82,0x82,0xb2,0x30,0x14,0x50,0x1a,0x10,0x19,0x00 -+// 14325 㟵 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x09,0x09,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x00,0x04,0x24,0x24,0x04,0x04,0x00,0x00,0x40,0x00,0xc2,0x00 -+// 14326 㟶 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x11,0x12,0x00,0x00,0x00,0x40,0x44,0x44,0x04,0x02,0x40,0x04,0x04,0x04,0x04,0x20,0x20,0x26,0x40,0x00 -+// 14327 㟷 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x32,0x00,0x00,0x00,0x00,0x40,0x48,0x4b,0x48,0x20,0x20,0x44,0x8b,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 14328 㟸 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x30,0x00,0x00,0x00,0x00,0x00,0x20,0xa4,0x84,0x84,0x84,0xa4,0x20,0x40,0x40,0xa4,0x27,0x20,0x20,0x20,0x00 -+// 14329 㟹 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x34,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x05,0x25,0xa5,0x25,0x25,0xa5,0x35,0x25,0x94,0x14,0x04,0x04,0x00 -+// 14330 㟺 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x04,0x84,0x00,0xc8,0xce,0xc8,0x80,0x88,0x08,0x03,0x30,0xe0,0x8c,0x00 -+// 14331 㟻 ; -+,0x00,0x02,0x02,0x02,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x08,0x08,0x08,0x00,0x00,0x02,0x20,0x20,0xa0,0xa4,0xa4,0xa4,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x00 -+// 14332 㟼 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x01,0x09,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x90,0x21,0x20,0xa4,0x04,0x88,0x08,0x14,0x23,0x00 -+// 14333 㟽 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0xaa,0xaa,0xaa,0x82,0x00,0x00,0x01,0x10,0xd4,0x92,0x31,0x00 -+// 14334 㟾 ; -+,0x00,0x00,0x08,0x09,0x09,0x29,0x29,0x29,0x29,0x29,0x29,0x3d,0x00,0x02,0x00,0x00,0x00,0x10,0x10,0x00,0x12,0x12,0x12,0x12,0x10,0x52,0x52,0x52,0x52,0x52,0x52,0x00 -+// 14335 㟿 ; -+,0x00,0x08,0x08,0x08,0x08,0x28,0x28,0x28,0x28,0x28,0x2a,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x40,0x00,0x20,0x23,0x40,0x06,0x21,0x20,0x68,0x40,0x40,0x88,0x00 -+// 14336 㠀 ; -+,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x12,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x02,0x12,0x42,0x0c,0x00,0x00,0x00,0x04,0x00 -+// 14337 㠁 ; -+,0x00,0x08,0x08,0x08,0x28,0x28,0x2b,0x28,0x28,0x28,0x2c,0x30,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x46,0x04,0x00,0x29,0x30,0x44,0x93,0x40,0x18,0x26,0x18,0x60,0x00 -+// 14338 㠂 ; -+,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0x35,0x00,0x02,0x00,0x00,0x00,0x80,0x88,0xa8,0x88,0xab,0x82,0xa2,0x82,0x82,0x24,0x24,0x0c,0x42,0x03,0x00 -+// 14339 㠃 ; -+,0x00,0x08,0x08,0x08,0x08,0x28,0x29,0x29,0x29,0x29,0x29,0x2d,0x21,0x01,0x01,0x00,0x00,0x20,0x02,0x08,0x48,0x02,0x02,0x22,0x22,0x2a,0x4a,0x4a,0x4a,0x02,0x06,0x00 -+// 14340 㠄 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x04,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x14,0x04,0x14,0x80,0x80,0x04,0x04,0x04,0x04,0x00 -+// 14341 㠅 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x0c,0x00,0x05,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x82,0x84,0x84,0x84,0xc0,0x44,0x08,0x30,0x0e,0x00 -+// 14342 㠆 ; -+,0x00,0x00,0x08,0x08,0x09,0x28,0x28,0x28,0x28,0x28,0x28,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x29,0x29,0x29,0x00,0x92,0x92,0x92,0x92,0x12,0x10,0x10,0x10,0x10,0x00 -+// 14343 㠇 ; -+,0x00,0x00,0x08,0x00,0x08,0x00,0x02,0x00,0x01,0x01,0x01,0x00,0x10,0x00,0x04,0x00,0x00,0x00,0x02,0x02,0x02,0x10,0x14,0x10,0x18,0x18,0x08,0x28,0x28,0x48,0x07,0x00 -+// 14344 㠈 ; -+,0x00,0x00,0x09,0x09,0x09,0x29,0x29,0x29,0x29,0x29,0x29,0x31,0x01,0x01,0x01,0x00,0x00,0x00,0x2b,0x2a,0x20,0x2a,0x00,0x04,0x10,0x10,0x10,0x10,0x02,0x00,0x02,0x00 -+// 14345 㠉 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x28,0x28,0x28,0x28,0x28,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x04,0x48,0x09,0x00,0xb4,0x84,0x84,0x84,0x00,0x32,0x00,0x33,0x00 -+// 14346 㠊 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x3b,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x22,0x20,0x20,0x20,0x1e,0x00,0x28,0x2a,0x68,0x28,0x29,0x00 -+// 14347 㠋 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x11,0x11,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xc4,0x00,0x00,0x00,0x22,0x22,0x00,0x00,0x00,0x08,0x08,0x18,0x10 -+// 14348 㠌 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x09,0x10,0x00,0x00,0x00,0x40,0x00,0x04,0x10,0x80,0x22,0x02,0x00,0x10,0x18,0x00,0x24,0xc3,0x00 -+// 14349 㠍 ; -+,0x00,0x00,0x08,0x08,0x02,0x04,0x04,0x0c,0x04,0x04,0x04,0x00,0x01,0x02,0x08,0x00,0x00,0x40,0x00,0x44,0x00,0x40,0x40,0x40,0x44,0x44,0x40,0xc2,0x80,0x08,0x43,0x00 -+// 14350 㠎 ; -+,0x00,0x00,0x08,0x09,0x0d,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x90,0x90,0x10,0x10,0x92,0x10,0x92,0x00,0x11,0x30,0x58,0x94,0x13,0x00 -+// 14351 㠏 ; -+,0x00,0x08,0x08,0x08,0x08,0x28,0x28,0x28,0x28,0x28,0x28,0x3c,0x00,0x00,0x00,0x00,0x00,0x48,0x4a,0x48,0x08,0x82,0x84,0x85,0x84,0x84,0xb6,0x00,0x31,0x00,0x00,0x00 -+// 14352 㠐 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x01,0x02,0x0e,0x02,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x82,0x00,0x16,0x10,0x00,0x04,0x20,0x20,0x04,0x00 -+// 14353 㠑 ; -+,0x00,0x00,0x08,0x08,0x00,0x08,0x09,0x09,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x00,0x04,0x24,0x24,0x00,0x22,0x20,0x20,0x20,0x20,0x20,0x00 -+// 14354 㠒 ; -+,0x00,0x00,0x08,0x08,0x09,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x3d,0x01,0x00,0x00,0x00,0x00,0x00,0xa1,0x80,0xb4,0x94,0x94,0x14,0x04,0x04,0x44,0x40,0x50,0x40,0xc2,0x00 -+// 14355 㠓 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x0a,0x08,0x08,0x08,0x08,0x3c,0x30,0x00,0x00,0x00,0x00,0x00,0x4a,0x08,0x00,0x03,0x08,0x00,0x20,0x64,0x30,0x14,0x28,0x8b,0x30,0x00 -+// 14356 㠔 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x09,0x09,0x09,0x00,0x09,0x19,0x19,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x0a,0x04,0x04,0x09,0x00,0x00,0x18,0x00,0x00,0x00 -+// 14357 㠕 ; -+,0x00,0x00,0x00,0x08,0x08,0x02,0x02,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x11,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0xb6,0x80,0xb4,0x80,0xb0,0x14,0x50,0x9b,0x1b,0x00 -+// 14358 㠖 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x12,0x06,0x00,0x00,0x00,0x00,0x04,0x20,0x24,0x00,0xc0,0x42,0x08,0x20,0x24,0x18,0x18,0x06,0x00 -+// 14359 㠗 ; -+,0x00,0x08,0x08,0x09,0x09,0x29,0x29,0x29,0x29,0x28,0x2c,0x34,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x02,0x52,0x12,0x32,0x1a,0x02,0x00,0x31,0x20,0x28,0x44,0x03,0x00 -+// 14360 㠘 ; -+,0x00,0x00,0x08,0x08,0x00,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0xa4,0x84,0xa4,0x24,0x24,0x24,0x00,0x08,0x06,0x00 -+// 14361 㠙 ; -+,0x00,0x08,0x08,0x08,0x28,0x28,0x28,0x29,0x2a,0x28,0x2c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x84,0x84,0x00,0x01,0x24,0x64,0x28,0x50,0x34,0x43,0x30,0x00 -+// 14362 㠚 ; -+,0x00,0x00,0x08,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0xc2,0xd2,0xc2,0xc3,0x02,0x02,0x62,0x0a,0x02,0x02,0x02,0xc2,0x06,0x00 -+// 14363 㠛 ; -+,0x00,0x00,0x08,0x08,0x28,0x28,0x29,0x28,0x28,0x28,0x28,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x4a,0x00,0x90,0x92,0x10,0x10,0x90,0x10,0x00,0x8c,0x48,0x30,0x4e,0x00 -+// 14364 㠜 ; -+,0x00,0x00,0x01,0x01,0x01,0x25,0x24,0x25,0x24,0x24,0x24,0x34,0x01,0x00,0x00,0x00,0x00,0x00,0x46,0x04,0x08,0xc8,0x00,0x40,0x80,0x96,0x90,0x80,0x58,0x2c,0x06,0x00 -+// 14365 㠝 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0xa5,0x88,0x23,0x80,0x84,0x84,0x84,0x84,0x84,0x44,0x82,0x00 -+// 14366 㠞 ; -+,0x00,0x00,0x04,0x00,0x04,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0xa8,0x02,0x12,0x0a,0x84,0x84,0x8b,0x00,0x00,0x00,0x00,0x04,0x00 -+// 14367 㠟 ; -+,0x00,0x00,0x00,0x00,0x04,0x24,0x25,0x24,0x24,0x24,0x24,0x34,0x00,0x01,0x00,0x00,0x00,0x20,0x48,0x4f,0xc5,0xe1,0x41,0x72,0x20,0x14,0x13,0x58,0x10,0x12,0x30,0x00 -+// 14368 㠠 ; -+,0x00,0x00,0x00,0x00,0x25,0x25,0x25,0x25,0x25,0x25,0x2c,0x36,0x02,0x00,0x00,0x00,0x00,0x20,0x20,0x21,0x00,0x28,0x1e,0x02,0x92,0x92,0x92,0x00,0xaa,0xaa,0xab,0x00 -+// 14369 㠡 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0b,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x00,0x90,0x94,0x94,0x90,0x01,0x54,0x22,0x44,0xc8,0x44,0x43,0x00 -+// 14370 㠢 ; -+,0x00,0x00,0x08,0x08,0x00,0x08,0x08,0x01,0x01,0x04,0x00,0x01,0x02,0x0a,0x03,0x00,0x00,0x00,0x04,0x04,0x00,0x84,0x84,0xc0,0x50,0x7e,0x82,0x08,0x00,0x10,0x06,0x00 -+// 14371 㠣 ; -+,0x00,0x00,0x01,0x01,0x25,0x25,0x25,0x24,0x25,0x24,0x26,0x32,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x44,0x44,0x44,0x5e,0x05,0x00,0x10,0x12,0x10,0x10,0x51,0x00 -+// 14372 㠤 ; -+,0x00,0x00,0x08,0x08,0x09,0x29,0x28,0x28,0x28,0x28,0x28,0x3c,0x00,0x02,0x00,0x00,0x00,0x20,0x31,0x00,0x6a,0x42,0x00,0x4a,0x48,0x48,0x49,0x44,0x88,0x04,0xc3,0x00 -+// 14373 㠥 ; -+,0x00,0x08,0x08,0x08,0x2c,0x2c,0x2d,0x2d,0x2d,0x2d,0x2c,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x14,0x14,0x00,0x25,0xa5,0xad,0xa5,0x00,0x10,0x10,0x00,0x01,0x00 -+// 14374 㠦 ; -+,0x00,0x08,0x09,0x09,0x2d,0x29,0x29,0x29,0x28,0x28,0x2c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x0a,0x4a,0x0a,0x6a,0x0a,0x00,0x00,0x82,0x02,0x84,0x48,0x49,0x00 -+// 14375 㠧 ; -+,0x00,0x00,0x08,0x01,0x25,0x25,0x25,0x24,0x24,0x24,0x2c,0x32,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x04,0x64,0x6e,0x45,0x00,0x28,0x28,0x2a,0x28,0x28,0x28,0x00 -+// 14376 㠨 ; -+,0x00,0x00,0x08,0x08,0x09,0x28,0x29,0x29,0x29,0x28,0x2d,0x35,0x01,0x01,0x01,0x00,0x00,0x00,0x90,0x86,0xd7,0x90,0x02,0x0a,0x02,0x00,0x27,0x20,0x08,0x00,0xa4,0x00 -+// 14377 㠩 ; -+,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x02,0x00,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x40,0x80,0x20,0x18,0x08,0x06,0x00,0xd0,0x10,0x10,0x10,0x11,0x0f,0x00 -+// 14378 㠪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 14379 㠫 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x04,0x54,0x54,0x05,0x07,0x40,0xc0,0x80,0xc0,0xa0,0x10,0x0e,0x00 -+// 14380 㠬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xa2,0x22,0x22,0x22,0x02,0x80,0x84,0x80,0x82,0x80,0x00,0x18,0x06,0x00 -+// 14381 㠭 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x1c,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x00,0x00,0x0a,0x08,0x08,0x08,0x08,0x00,0x00 -+// 14382 㠮 ; -+,0x00,0x00,0x09,0x0a,0x0a,0x0a,0x1a,0x0a,0x00,0x11,0x10,0x11,0x10,0x10,0x11,0x00,0x00,0x00,0x00,0x82,0x08,0x88,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x00,0x00 -+// 14383 㠯 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 14384 㠰 ; -+,0x00,0x04,0x04,0x04,0x04,0x00,0x08,0x01,0x00,0x00,0x00,0x04,0x00,0x00,0x07,0x00,0x00,0x00,0x02,0xa2,0xa2,0xa2,0x22,0x00,0x08,0x08,0x08,0x00,0x00,0x02,0xfe,0x00 -+// 14385 㠱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x00,0x00,0x08,0x08,0x08,0x00,0x04,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x0c,0x00 -+// 14386 㠲 ; -+,0x00,0x00,0x00,0x00,0x2d,0x21,0x21,0x21,0x21,0x21,0x25,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x22,0x24,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x3f,0x00 -+// 14387 㠳 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xc0,0xa0,0x10,0x0c,0x07,0x00,0xc4,0x04,0x04,0x04,0x04,0x0c,0x00,0x00 -+// 14388 㠴 ; -+,0x00,0x00,0x00,0x00,0x1d,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x52,0x92,0x02,0x22,0x22,0x42,0x04,0x04,0x00 -+// 14389 㠵 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x40,0x02,0x00,0x00,0x04,0x00,0x40,0xc6,0x42,0x42,0x42,0x44,0x40,0x00 -+// 14390 㠶 ; -+,0x00,0x00,0x00,0x00,0x2d,0x21,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x4c,0x40,0x40,0x40,0x40,0x40,0x00,0x80,0x80,0x01,0x07,0x00 -+// 14391 㠷 ; -+,0x00,0x00,0x00,0x00,0x1d,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x44,0x44,0x48,0x48,0x5a,0x42,0x42,0x44,0x10,0x88,0x98,0x26,0x03,0x00 -+// 14392 㠸 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x32,0x00,0x00,0x00,0x30,0x20,0x28,0x08,0x44,0x86,0x03,0x00 -+// 14393 㠹 ; -+,0x00,0x00,0x08,0x08,0x2b,0x28,0x28,0x29,0x28,0x28,0x28,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x20,0x20,0x44,0x83,0x44,0x40,0x40,0x40,0x40,0x40,0x04,0x04,0x00 -+// 14394 㠺 ; -+,0x00,0x04,0x00,0x00,0x2d,0x21,0x21,0x21,0x21,0x21,0x25,0x22,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x41,0x00,0x02,0x02,0x04,0x08,0x10,0x60,0x80,0x00 -+// 14395 㠻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdc,0x10,0x62,0xc0,0x80,0x40,0xc4,0x44,0x44,0x44,0x4c,0x40,0x00 -+// 14396 㠼 ; -+,0x00,0x00,0x04,0x00,0x0d,0x01,0x01,0x01,0x01,0x01,0x05,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x40,0x40,0x40,0x43,0x48,0x48,0x48,0x08,0x88,0x88,0x08,0x08,0x00 -+// 14397 㠽 ; -+,0x00,0x00,0x08,0x08,0x2b,0x28,0x28,0x28,0x28,0x28,0x28,0x0a,0x08,0x08,0x08,0x00,0x00,0x10,0x20,0x22,0x46,0x04,0x08,0x08,0x18,0x24,0x03,0x08,0x00,0x18,0x04,0x00 -+// 14398 㠾 ; -+,0x00,0x08,0x08,0x09,0x11,0x22,0x04,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x26,0x24,0x24,0x24,0x21,0x3f,0x00,0xc4,0x04,0x04,0x04,0x0c,0x80,0x00 -+// 14399 㠿 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x1c,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x20,0x26,0x20,0x20,0x20,0x3f,0x00,0xc4,0x04,0x04,0x04,0x0c,0x00,0x00 -+// 14400 㡀 ; -+,0x00,0x00,0x00,0x06,0x02,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x08,0x10,0xd2,0x02,0x02,0x02,0x12,0x0a,0x0a,0x02,0x02,0x04,0x00 -+// 14401 㡁 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x20,0x20,0x44,0x0a,0x03,0x04,0x20,0x40,0x04,0x04,0x04,0x18,0x00 -+// 14402 㡂 ; -+,0x00,0x00,0x04,0x04,0x08,0x11,0x06,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x02,0x12,0x92,0x12,0x02,0x06,0x00,0xc4,0x04,0x04,0x04,0x0c,0x00,0x00 -+// 14403 㡃 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x09,0x08,0x00,0x00,0x00,0x08,0x90,0x90,0xa4,0x80,0x82,0x00,0x94,0x84,0x84,0x84,0x04,0x07,0x00 -+// 14404 㡄 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x42,0x02,0x82,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x02,0x06,0x00 -+// 14405 㡅 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x0a,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x22,0x44,0x04,0x10,0x20,0x18,0x33,0x62,0x14,0x04,0x10,0x40,0x00 -+// 14406 㡆 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x12,0x40,0x40,0x40,0x42,0x00,0x14,0x04,0x84,0x84,0x04,0x07,0x00 -+// 14407 㡇 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x09,0x08,0x08,0x00,0x00,0x00,0x01,0x90,0x94,0x94,0x94,0x94,0x94,0x94,0x94,0xb4,0x94,0x15,0x10,0x00 -+// 14408 㡈 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x08,0x08,0x08,0x00,0x00,0x20,0x00,0x4c,0x08,0x80,0x92,0x92,0x92,0xba,0x28,0x28,0x48,0x09,0x0f,0x00 -+// 14409 㡉 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2b,0x2b,0x2b,0x2a,0x2c,0x08,0x08,0x08,0x00,0x00,0x00,0x24,0x24,0x01,0x00,0x04,0x08,0x02,0x56,0x44,0x40,0x40,0x41,0x99,0x00 -+// 14410 㡊 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x24,0x44,0x00,0x00,0x62,0x80,0x80,0xa2,0x80,0x80,0x82,0x80,0x00 -+// 14411 㡋 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x60,0x40,0x08,0x84,0xb7,0x84,0xa4,0x84,0xa4,0x84,0x00,0x13,0x00 -+// 14412 㡌 ; -+,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x86,0x00 -+// 14413 㡍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x08,0x08,0x00,0x88,0x82,0x00,0x08,0x8f,0x88,0x88,0x88,0x80,0x00 -+// 14414 㡎 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x04,0xc2,0x10,0x20,0x00,0x14,0x33,0x48,0x12,0x04,0x10,0x40,0x00 -+// 14415 㡏 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x30,0x08,0x44,0x83,0x00,0xb2,0x8a,0xaa,0x8a,0xaa,0x8a,0x82,0xa2,0x00 -+// 14416 㡐 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x20,0x01,0x00,0xa1,0x81,0xa1,0x81,0xa1,0xa1,0x81,0x81,0xa2,0x00 -+// 14417 㡑 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x0d,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x12,0x5c,0x18,0x24,0x02,0x02,0x00,0x84,0x04,0x04,0x0c,0x00,0x00 -+// 14418 㡒 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x0a,0x09,0x09,0x08,0x00,0x00,0x00,0x1c,0x80,0x80,0x98,0x80,0x82,0x82,0xa2,0x82,0x22,0x02,0x02,0x42,0x00 -+// 14419 㡓 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x90,0x12,0x10,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x10,0x10,0x00 -+// 14420 㡔 ; -+,0x00,0x00,0x01,0x02,0x06,0x0e,0x12,0x06,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x80,0x26,0x94,0x98,0x18,0x27,0x00,0x80,0x84,0x04,0x04,0x0c,0x80,0x00 -+// 14421 㡕 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x40,0x44,0x40,0x10,0xb2,0x80,0x80,0xa0,0x31,0x20,0x08,0x44,0x03,0x00 -+// 14422 㡖 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x10,0x12,0x10,0x13,0x00 -+// 14423 㡗 ; -+,0x00,0x00,0x08,0x09,0x2b,0x29,0x29,0x29,0x29,0x29,0x29,0x2d,0x08,0x08,0x08,0x00,0x00,0x00,0x1c,0x10,0x10,0x52,0x50,0x50,0x12,0x0c,0x04,0x04,0x84,0x24,0x07,0x00 -+// 14424 㡘 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x08,0x09,0x08,0x00,0x00,0x44,0x20,0x0a,0x00,0x00,0x0a,0x6b,0x02,0x6a,0x48,0x48,0x84,0x02,0x00,0x00 -+// 14425 㡙 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x00,0x8a,0x8a,0x9a,0x82,0x82,0x00,0x80,0xa2,0x88,0x80,0x80,0x8b,0x00 -+// 14426 㡚 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x48,0x4a,0x08,0x10,0x10,0x92,0x96,0x92,0x97,0x82,0x82,0x84,0x00 -+// 14427 㡛 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2c,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x48,0x00,0x00,0x80,0x00,0x80,0x00,0x84,0x84,0x84,0x04,0x07,0x00 -+// 14428 㡜 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2b,0x2a,0x28,0x28,0x2a,0x28,0x2c,0x08,0x09,0x08,0x00,0x00,0x00,0x80,0xa2,0xa0,0x04,0xc4,0x02,0x01,0x00,0x10,0x10,0x92,0x11,0x30,0x00 -+// 14429 㡝 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x08,0x09,0x0a,0x00,0x00,0x10,0x10,0xa6,0x0c,0x0c,0x0b,0x8a,0x88,0x8a,0x88,0x88,0x88,0x48,0x3f,0x00 -+// 14430 㡞 ; -+,0x00,0x08,0x08,0x08,0x2a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x92,0x92,0x92,0x92,0x10,0x92,0x92,0x82,0x20,0x44,0x48,0x1c,0x42,0x00 -+// 14431 㡟 ; -+,0x00,0x00,0x08,0x08,0x1a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x00,0x00,0x20,0x29,0x28,0x2a,0xaa,0xaa,0xaa,0xaa,0x00,0x02,0x02,0x42,0x02,0x42,0x00 -+// 14432 㡠 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2c,0x08,0x08,0x08,0x00,0x00,0x00,0x36,0x28,0xca,0x44,0x8e,0x02,0x84,0x84,0x84,0x00,0x04,0x20,0x2b,0x00 -+// 14433 㡡 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2b,0x2b,0x2b,0x0d,0x08,0x0a,0x08,0x00,0x00,0x00,0x00,0x02,0x12,0x02,0x53,0x42,0x52,0x46,0x02,0x52,0x02,0xe2,0x06,0x00 -+// 14434 㡢 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x0c,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x04,0x04,0x00,0xaa,0x2a,0x0a,0x01,0x20,0x22,0x02,0x44,0x8c,0x00 -+// 14435 㡣 ; -+,0x00,0x00,0x04,0x00,0x00,0x0a,0x00,0x24,0x04,0x15,0x15,0x15,0x15,0x05,0x04,0x00,0x00,0x00,0x20,0x20,0x20,0x22,0x82,0x22,0x20,0x20,0x22,0x20,0x22,0x20,0x21,0x00 -+// 14436 㡤 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2c,0x08,0x08,0x08,0x00,0x00,0x08,0x0a,0x88,0x29,0x00,0x00,0x12,0x10,0x10,0x11,0x30,0x50,0x96,0x13,0x00 -+// 14437 㡥 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2c,0x08,0x08,0x0a,0x00,0x00,0x0c,0x00,0x94,0x80,0x10,0x10,0x00,0x02,0x02,0x02,0x02,0x80,0x81,0x7c,0x00 -+// 14438 㡦 ; -+,0x00,0x00,0x08,0x08,0x0b,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0c,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x81,0x04,0x12,0x18,0x32,0x02,0x42,0x42,0x02,0x02,0x60,0x82,0x00 -+// 14439 㡧 ; -+,0x00,0x00,0x08,0x09,0x2e,0x28,0x28,0x28,0x28,0x28,0x28,0x2c,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x02,0x04,0x04,0x28,0x48,0x86,0x02,0x84,0x84,0x80,0x48,0x41,0x00 -+// 14440 㡨 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x08,0x08,0x2c,0x08,0x09,0x08,0x00,0x00,0x00,0x40,0x50,0x40,0x49,0xa0,0xb0,0xa2,0xa6,0xa6,0xa4,0xa4,0x8b,0x01,0x00 -+// 14441 㡩 ; -+,0x00,0x08,0x10,0x04,0x08,0x00,0x13,0x01,0x09,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x00,0x80,0x24,0x2a,0x00,0x00,0x2d,0x20,0x09,0x40,0xc4,0x04,0x04,0x0c,0x00,0x00 -+// 14442 㡪 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2d,0x08,0x08,0x08,0x00,0x00,0x04,0x22,0x14,0x82,0x02,0x1a,0x4e,0x4e,0x0d,0x00,0x44,0x08,0x18,0x06,0x00 -+// 14443 㡫 ; -+,0x00,0x00,0x04,0x00,0x08,0x03,0x12,0x34,0x04,0x08,0x02,0x13,0x30,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x40,0x81,0x11,0x11,0x29,0x81,0x00,0x06,0x00 -+// 14444 㡬 ; -+,0x00,0x04,0x00,0x02,0x14,0x00,0x19,0x00,0x04,0x04,0x05,0x00,0x08,0x01,0x03,0x00,0x00,0x48,0x40,0x56,0x48,0x52,0x58,0x44,0x60,0x20,0xa4,0x18,0x18,0x0d,0x03,0x00 -+// 14445 㡭 ; -+,0x00,0x00,0x12,0x11,0x12,0x10,0x14,0x10,0x10,0x10,0x15,0x10,0x10,0x14,0x10,0x00,0x00,0x00,0x10,0xa4,0x00,0x04,0xb4,0x02,0x10,0x84,0x28,0x00,0xa4,0xa4,0x02,0x00 -+// 14446 㡮 ; -+,0x00,0x00,0x00,0x0c,0x2b,0x00,0x1f,0x00,0x12,0x12,0x12,0x19,0x11,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xa2,0x00,0x42,0x00,0x82,0x02,0x82,0x02,0x02,0xc3,0x41,0x00 -+// 14447 㡯 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x3c,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x63,0x00 -+// 14448 㡰 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x00,0x20,0x00,0x00,0x22,0x00,0x00,0x00,0x00,0xc0,0x00 -+// 14449 㡱 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x11,0x11,0x12,0x10,0x10,0x10,0x10,0x01,0x22,0x00,0x00,0x00,0x40,0x42,0x00,0x80,0x00,0x18,0x10,0x10,0x20,0x40,0x88,0x04,0x03,0x00 -+// 14450 㡲 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x10,0x04,0x40,0x44,0x48,0x50,0x20,0x90,0x08,0x06,0x00 -+// 14451 㡳 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x00,0x00,0x00,0x40,0x42,0x00,0x38,0x00,0x00,0x22,0x20,0x20,0x00,0x10,0x08,0x06,0x00 -+// 14452 㡴 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x40,0x00,0x00,0x08,0x10,0x10,0x80,0x80,0x00,0x00,0x00 -+// 14453 㡵 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0xc0,0x80,0x08,0x26,0x00,0x18,0x10,0x00,0x40,0x30,0x00 -+// 14454 㡶 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x11,0x11,0x02,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x0c,0x00,0x00,0x00,0x08,0x00,0x80,0x08,0x04,0x00,0x00 -+// 14455 㡷 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x40,0x42,0xe0,0xc0,0x40,0x48,0x44,0x43,0x40,0x40,0x00 -+// 14456 㡸 ; -+,0x00,0x00,0x00,0x00,0x10,0x11,0x11,0x12,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x00,0x04,0x40,0x40,0x40,0x40,0x44,0x40,0x40,0x40,0x00 -+// 14457 㡹 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x21,0x00,0x00,0x00,0x40,0x42,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00 -+// 14458 㡺 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00 -+// 14459 㡻 ; -+,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x16,0x10,0x01,0x00,0x00,0x00,0x00,0x40,0x42,0x00,0x80,0x24,0xa0,0xa0,0xa0,0xa0,0xa4,0xa4,0x20,0x20,0x00 -+// 14460 㡼 ; -+,0x00,0x00,0x00,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x00,0x40,0x44,0x44,0x44,0x44,0x44,0x00,0x38,0x30,0xd0,0x0e,0x00 -+// 14461 㡽 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x00,0x40,0x44,0x44,0x44,0x44,0x40,0x44,0x40,0x42,0x40,0x40,0x00 -+// 14462 㡾 ; -+,0x00,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x02,0x02,0x12,0x12,0x12,0x02,0x03,0x00,0x00,0x00,0x40,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x04,0x20,0x10,0x08,0x07,0x00 -+// 14463 㡿 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x00,0x00,0x01,0x00,0x00,0x40,0x40,0x00,0x08,0x90,0x82,0x20,0x24,0x24,0x04,0x44,0x40,0x80,0x00,0x00 -+// 14464 㢀 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x10,0x01,0x02,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x62,0x00,0x64,0x04,0x44,0x64,0xd4,0x08,0x06,0x00,0x00 -+// 14465 㢁 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x40,0x40,0x00,0x40,0x8c,0x08,0xb0,0xd8,0x20,0x42,0x04,0x48,0x20,0x80,0x00 -+// 14466 㢂 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x02,0x02,0x12,0x12,0x02,0x02,0x00,0x00,0x40,0x40,0x00,0x40,0x00,0x04,0x04,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 14467 㢃 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x02,0x02,0x12,0x12,0x02,0x03,0x00,0x00,0x40,0x00,0x00,0x40,0x44,0x00,0x08,0x00,0x08,0x04,0x00,0x10,0x08,0x03,0x00 -+// 14468 㢄 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x08,0x90,0x80,0x02,0x00 -+// 14469 㢅 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x01,0x02,0x00,0x00,0x00,0x40,0x00,0x04,0x40,0x40,0x40,0x42,0x80,0x80,0x90,0x00,0x00,0x00,0x00 -+// 14470 㢆 ; -+,0x00,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x02,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x02,0x00,0x44,0x04,0x64,0x04,0x64,0x00,0x64,0x00,0x00,0x00,0x00 -+// 14471 㢇 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x04,0x04,0x00 -+// 14472 㢈 ; -+,0x00,0x00,0x00,0x08,0x01,0x01,0x03,0x02,0x04,0x11,0x10,0x11,0x10,0x00,0x01,0x00,0x00,0x40,0x40,0x00,0x00,0x10,0x02,0x20,0x20,0x30,0x20,0x32,0x20,0x20,0x00,0x00 -+// 14473 㢉 ; -+,0x00,0x00,0x00,0x08,0x00,0x01,0x01,0x01,0x01,0x13,0x13,0x11,0x11,0x01,0x01,0x00,0x00,0x00,0x40,0x00,0x00,0x8e,0x00,0x00,0x00,0x18,0x00,0x40,0x00,0x01,0x0f,0x00 -+// 14474 㢊 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x12,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x44,0x80,0x18,0x02,0x08,0x28,0x08,0x08,0x08,0x18,0x00 -+// 14475 㢋 ; -+,0x00,0x00,0x00,0x08,0x09,0x09,0x02,0x02,0x02,0x02,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x40,0x00,0x20,0x24,0x48,0x20,0x18,0x18,0x12,0x22,0x14,0x08,0x20,0x00 -+// 14476 㢌 ; -+,0x00,0x00,0x00,0x10,0x10,0x15,0x15,0x14,0x14,0x14,0x14,0x05,0x04,0x04,0x04,0x00,0x00,0x40,0x42,0x00,0x00,0x84,0x04,0x14,0x54,0x54,0xd4,0xc4,0x04,0x04,0x04,0x00 -+// 14477 㢍 ; -+,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x12,0x12,0x12,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0x42,0x00,0x00,0x12,0x40,0x40,0x48,0x40,0x40,0xa0,0x80,0x08,0x06,0x00 -+// 14478 㢎 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x14,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x40,0x42,0x00,0x18,0x40,0x00,0x42,0x00,0x06,0x00,0x04,0x00,0x40,0x00,0x00 -+// 14479 㢏 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x42,0x00,0x40,0x80,0x0c,0x12,0x04,0x44,0x54,0x54,0x54,0x44,0x8c,0x00 -+// 14480 㢐 ; -+,0x00,0x00,0x00,0x08,0x01,0x01,0x01,0x01,0x11,0x14,0x14,0x14,0x04,0x04,0x04,0x00,0x00,0x40,0x42,0x00,0x08,0x00,0x20,0x20,0x2a,0x02,0x12,0x12,0x92,0x02,0x06,0x00 -+// 14481 㢑 ; -+,0x00,0x00,0x00,0x10,0x11,0x11,0x12,0x11,0x10,0x10,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x42,0x00,0x20,0x04,0x20,0x20,0x24,0x20,0x22,0x00,0x61,0x00,0x00,0x00 -+// 14482 㢒 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x00,0x42,0x00,0x44,0x40,0x42,0x40,0x44,0x08,0x88,0x88,0x00,0x88,0x89,0x00 -+// 14483 㢓 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x00,0x40,0x00,0x90,0x02,0x08,0x08,0x08,0x08,0x40,0x40,0x40,0x00 -+// 14484 㢔 ; -+,0x00,0x00,0x00,0x18,0x12,0x12,0x10,0x11,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x40,0x00,0x04,0x48,0x6c,0x12,0x00,0x10,0x50,0x10,0x90,0x10,0x1e,0x00 -+// 14485 㢕 ; -+,0x00,0x00,0x00,0x18,0x10,0x12,0x11,0x14,0x10,0x10,0x15,0x15,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x48,0x42,0x40,0x40,0x48,0x40,0x5a,0x40,0x40,0x40,0x00 -+// 14486 㢖 ; -+,0x00,0x00,0x00,0x18,0x10,0x10,0x11,0x11,0x10,0x13,0x16,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x40,0x00,0x18,0x40,0x50,0x42,0xc0,0x48,0x4e,0x48,0x48,0x48,0x48,0x00 -+// 14487 㢗 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x70,0x40,0x90,0x0c,0x12,0x10,0x04,0x10,0x10,0x90,0x04,0x00 -+// 14488 㢘 ; -+,0x00,0x00,0x00,0x18,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x04,0x08,0x00,0x00,0x00,0x40,0x00,0x10,0x00,0xa0,0xa4,0x24,0xa6,0x24,0x24,0x00,0x02,0x92,0x00 -+// 14489 㢙 ; -+,0x00,0x00,0x00,0x18,0x12,0x12,0x12,0x11,0x15,0x15,0x11,0x11,0x01,0x01,0x06,0x00,0x00,0x00,0x40,0x00,0x08,0x88,0x8a,0x0a,0x4a,0x42,0x02,0x12,0x52,0x02,0x26,0x00 -+// 14490 㢚 ; -+,0x00,0x00,0x00,0x10,0x10,0x14,0x14,0x14,0x15,0x15,0x15,0x14,0x00,0x00,0x00,0x00,0x00,0x40,0x42,0x40,0x40,0x4a,0x40,0x78,0x08,0x20,0x00,0x40,0x46,0x40,0x8c,0x00 -+// 14491 㢛 ; -+,0x00,0x00,0x00,0x08,0x10,0x10,0x11,0x10,0x10,0x12,0x10,0x12,0x00,0x02,0x04,0x00,0x00,0x00,0x40,0x40,0x40,0x80,0x08,0x12,0x00,0xa4,0xa4,0xa4,0x08,0x10,0xa4,0x00 -+// 14492 㢜 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x12,0x12,0x01,0x01,0x09,0x00,0x00,0x00,0x40,0x00,0x00,0x10,0x10,0x04,0x44,0x44,0x44,0x04,0x02,0x21,0x04,0x00 -+// 14493 㢝 ; -+,0x00,0x00,0x00,0x10,0x12,0x16,0x14,0x15,0x15,0x15,0x15,0x04,0x00,0x00,0x08,0x00,0x00,0x00,0x40,0x00,0x00,0x88,0x08,0x48,0x4c,0x4c,0x5a,0x0a,0x09,0x88,0x08,0x00 -+// 14494 㢞 ; -+,0x00,0x00,0x00,0x10,0x12,0x10,0x14,0x12,0x12,0x12,0x10,0x11,0x00,0x00,0x02,0x00,0x00,0x40,0x42,0x00,0x94,0x84,0x04,0x44,0x44,0x44,0x10,0x90,0x92,0x00,0x04,0x00 -+// 14495 㢟 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x00,0x12,0x02,0x00,0x04,0x0c,0x0c,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x90,0x92,0x90,0x90,0x90,0x90,0x90,0x00,0x80,0x7e,0x00 -+// 14496 㢠 ; -+,0x00,0x00,0x00,0x04,0x00,0x08,0x10,0x16,0x00,0x04,0x04,0x08,0x0c,0x13,0x00,0x00,0x00,0x00,0x00,0x82,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x04,0x80,0x7e,0x00 -+// 14497 㢡 ; -+,0x00,0x02,0x12,0x12,0x12,0x02,0x0a,0x0a,0x02,0x10,0x00,0x02,0x02,0x02,0x04,0x00,0x00,0x20,0x62,0x24,0x58,0x04,0x05,0x04,0x04,0x0c,0x10,0x12,0x10,0x10,0x10,0x00 -+// 14498 㢢 ; -+,0x00,0x04,0x15,0x04,0x10,0x02,0x0a,0x0a,0x00,0x00,0x02,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x20,0x20,0xa4,0x84,0x98,0x88,0x86,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14499 㢣 ; -+,0x00,0x00,0x09,0x08,0x08,0x10,0x02,0x02,0x00,0x01,0x02,0x02,0x02,0x04,0x08,0x00,0x00,0x10,0x50,0x21,0xa4,0x84,0x88,0x8c,0x83,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14500 㢤 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x01,0x00,0x00,0x00,0x10,0x50,0x12,0x10,0x13,0x10,0x10,0xc0,0x08,0x08,0x85,0x83,0x81,0x00 -+// 14501 㢥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x90,0x90,0x92,0x80,0x98,0x80,0x88,0x88,0x88,0x80,0x84,0x87,0x83,0x00 -+// 14502 㢦 ; -+,0x00,0x00,0x01,0x01,0x15,0x15,0x05,0x01,0x01,0x05,0x05,0x05,0x15,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x12,0x11,0x18,0x80,0x00,0x00,0x08,0x08,0x00,0x06,0x02,0x00 -+// 14503 㢧 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x02,0x02,0x10,0x04,0x04,0x18,0x00 -+// 14504 㢨 ; -+,0x00,0x00,0x03,0x00,0x00,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 14505 㢩 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x30,0x20,0x22,0x42,0x02,0x82,0x22,0x12,0x12,0x02,0x02,0x02,0x0c,0x00 -+// 14506 㢪 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x12,0x02,0x02,0x02,0x02,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x42,0x02,0x02,0x00,0x04,0x0c,0x00 -+// 14507 㢫 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x42,0x00 -+// 14508 㢬 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x12,0x02,0x02,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x20,0x20,0x20,0x22,0x00,0x40,0x50,0x50,0x00,0xa0,0x02,0x02,0x62,0x00 -+// 14509 㢭 ; -+,0x00,0x00,0x02,0x00,0x00,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x32,0x04,0x04,0x00,0x08,0x10,0x2c,0x07,0x00 -+// 14510 㢮 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x10,0x10,0x12,0x02,0x02,0x02,0x00,0x04,0x0c,0x00,0x00,0x00,0x40,0x42,0x80,0x10,0x10,0x52,0x52,0x52,0x52,0x54,0x50,0x41,0x7f,0x00 -+// 14511 㢯 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x90,0x90,0x99,0x80,0x88,0x88,0x84,0xc7,0x81,0x00 -+// 14512 㢰 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x10,0x10,0x52,0x12,0x10,0x10,0x02,0x84,0x84,0x98,0x18,0x0c,0x02,0x00 -+// 14513 㢱 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x10,0x10,0x12,0x02,0x02,0x02,0x00,0x04,0x08,0x00,0x00,0x00,0x10,0x20,0x04,0x02,0xe2,0x10,0x10,0x50,0x12,0x91,0x11,0x10,0x30,0x00 -+// 14514 㢲 ; -+,0x00,0x00,0x01,0x01,0x11,0x10,0x11,0x01,0x01,0x01,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x06,0x00,0x02,0x40,0x42,0x02,0x02,0x06,0x05,0x00,0x00,0x04,0x02,0x00 -+// 14515 㢳 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x40,0x40,0x00,0x80,0x0c,0x40,0x00,0x14,0x00,0x08,0x08,0x04,0xc3,0x00 -+// 14516 㢴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x01,0x03,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x02,0x12,0x42,0xc2,0x42,0x32,0x02,0x1c,0x00 -+// 14517 㢵 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x12,0x02,0x02,0x02,0x00,0x04,0x0c,0x00,0x00,0x00,0x20,0x20,0x48,0x04,0x82,0x01,0x00,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14518 㢶 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x10,0x10,0x10,0x06,0x02,0x00,0x04,0x04,0x18,0x00,0x00,0x00,0x02,0x10,0x00,0x22,0x02,0x02,0x02,0x46,0x02,0x02,0x02,0x46,0x00,0x00 -+// 14519 㢷 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x10,0x12,0x02,0x02,0x02,0x02,0x02,0x0c,0x00,0x00,0x00,0x00,0x80,0x80,0x82,0x20,0x20,0x42,0x42,0x24,0x08,0x10,0x20,0x40,0x00 -+// 14520 㢸 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x20,0x26,0x04,0x04,0x00,0x00,0x08,0x19,0x00,0x00,0x00,0x50,0x50,0x52,0x40,0x04,0x04,0x44,0x44,0x48,0x48,0x0c,0x96,0x83,0x00 -+// 14521 㢹 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x1c,0x00,0x00,0x20,0x10,0x02,0x00,0x4c,0x28,0x03,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x00 -+// 14522 㢺 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x12,0x02,0x02,0x00,0x00,0x04,0x1c,0x00,0x00,0x00,0x10,0x02,0x04,0x28,0x21,0x00,0x20,0x61,0x40,0x48,0x18,0x26,0x42,0x00 -+// 14523 㢻 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x10,0x10,0x12,0x02,0x02,0x02,0x00,0x04,0x1c,0x00,0x00,0x00,0x18,0x10,0x11,0x30,0x54,0x12,0x01,0x20,0x64,0x44,0x68,0x1c,0x42,0x00 -+// 14524 㢼 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x1c,0x00,0x00,0x10,0x10,0x56,0x54,0x10,0x92,0x92,0xb2,0x9a,0xd6,0x96,0x92,0x92,0x96,0x00 -+// 14525 㢽 ; -+,0x00,0x00,0x04,0x05,0x04,0x04,0x14,0x10,0x00,0x04,0x04,0x05,0x05,0x08,0x18,0x00,0x00,0x00,0x03,0x20,0x20,0x20,0x28,0x28,0x28,0x21,0x21,0xa0,0x20,0x22,0x26,0x00 -+// 14526 㢾 ; -+,0x00,0x00,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x02,0x00,0x00,0x04,0x04,0x18,0x00,0x00,0x00,0x28,0x28,0x28,0xaa,0xaa,0xaa,0xaa,0x10,0x10,0x12,0x10,0x10,0x11,0x00 -+// 14527 㢿 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x15,0x00,0x20,0x04,0x04,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x84,0x84,0x04,0x00,0x20,0x22,0x08,0x08,0x18,0x10,0x14,0x02,0x03,0x00 -+// 14528 㣀 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x1d,0x00,0x00,0x10,0x10,0x10,0x10,0xc6,0x44,0x00,0x44,0x00,0x44,0x83,0x00,0x46,0x03,0x00 -+// 14529 㣁 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x00,0x02,0x02,0x00,0x00,0x04,0x1c,0x00,0x00,0x00,0x00,0x4c,0x00,0x49,0x40,0x42,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x00 -+// 14530 㣂 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x00,0x83,0xa8,0x80,0x90,0x90,0x90,0x82,0x00 -+// 14531 㣃 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x21,0x20,0x25,0x05,0x05,0x05,0x01,0x09,0x19,0x00,0x00,0x00,0x02,0x80,0x80,0x20,0x08,0x28,0x28,0x21,0x21,0x20,0x20,0x22,0x26,0x00 -+// 14532 㣄 ; -+,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x10,0x04,0x04,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x90,0x10,0x12,0x12,0x92,0x90,0x90,0x00,0x31,0x70,0x04,0x02,0x00,0x00 -+// 14533 㣅 ; -+,0x00,0x00,0x04,0x05,0x05,0x04,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x44,0x4c,0xed,0xc4,0xc8,0x63,0x00,0x86,0x80,0x80,0x80,0x80,0x82,0x00 -+// 14534 㣆 ; -+,0x00,0x00,0x04,0x04,0x05,0x05,0x01,0x21,0x21,0x01,0x00,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x94,0x92,0x13,0x76,0x36,0x16,0x76,0x02,0x02,0x00,0x14,0x00,0x11,0x00 -+// 14535 㣇 ; -+,0x00,0x00,0x02,0x04,0x04,0x00,0x02,0x04,0x01,0x02,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x33,0x40,0x80,0x40,0x40,0x44,0x44,0x44,0x44,0x40,0x00 -+// 14536 㣈 ; -+,0x00,0x08,0x09,0x08,0x02,0x0a,0x02,0x04,0x14,0x15,0x14,0x14,0x15,0x04,0x04,0x00,0x00,0x10,0x12,0x24,0x04,0x14,0x04,0x08,0x18,0xa9,0x21,0x21,0x21,0x00,0x00,0x00 -+// 14537 㣉 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x30,0x00,0x00,0x00,0x00,0x04,0x88,0x20,0x02,0x04,0x08,0x10,0x00,0x03,0x04,0x08,0x30,0x40,0x00 -+// 14538 㣊 ; -+,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x18,0x10,0x20,0x40,0xb0,0x2f,0x40,0x10,0x20,0x88,0x18,0x60,0x80,0x00 -+// 14539 㣋 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x0b,0x09,0x09,0x09,0x01,0x11,0x11,0x01,0x00,0x00,0x00,0x06,0x04,0x40,0x00,0x02,0x04,0x08,0x00,0x03,0x06,0x0c,0x10,0x20,0x00 -+// 14540 㣌 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x06,0x04,0x88,0x00,0x02,0x04,0x88,0x80,0x83,0x82,0x8c,0x98,0xa0,0x00 -+// 14541 㣍 ; -+,0x00,0x00,0x04,0x08,0x00,0x10,0x30,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x06,0x04,0x00,0x80,0x42,0x04,0x88,0x80,0x83,0x86,0x8c,0x90,0xe0,0x00 -+// 14542 㣎 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x02,0x06,0x08,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x80,0x84,0x04,0x04,0x04,0x44,0x40,0x06,0x62,0x98,0x64,0x98,0x20,0x80,0x00 -+// 14543 㣏 ; -+,0x00,0x02,0x06,0x04,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x44,0x00,0x80,0x40,0x82,0x84,0x88,0x80,0x03,0x06,0x0c,0x10,0x60,0x00 -+// 14544 㣐 ; -+,0x00,0x00,0x04,0x10,0x10,0x10,0x10,0x10,0x02,0x0a,0x0a,0x0a,0x02,0x02,0x06,0x00,0x00,0x00,0x06,0x44,0x48,0x40,0x42,0x44,0x08,0x80,0x03,0x06,0x88,0x10,0x00,0x00 -+// 14545 㣑 ; -+,0x00,0x02,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x18,0x09,0x09,0x28,0x09,0x00,0x00,0x00,0x00,0x02,0x04,0x48,0x40,0x42,0x44,0x48,0x40,0x41,0x42,0x44,0x48,0x40,0x00 -+// 14546 㣒 ; -+,0x00,0x00,0x01,0x00,0x12,0x1a,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x48,0xd0,0x42,0x44,0x08,0x90,0x80,0x82,0x84,0x88,0x90,0x00 -+// 14547 㣓 ; -+,0x00,0x00,0x04,0x10,0x12,0x14,0x04,0x08,0x02,0x06,0x06,0x06,0x0a,0x02,0x02,0x00,0x00,0x00,0x02,0x04,0x48,0x40,0x22,0x04,0x88,0x00,0x01,0x02,0x84,0x08,0x20,0x00 -+// 14548 㣔 ; -+,0x00,0x00,0x04,0x08,0x10,0x06,0x04,0x0c,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x01,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14549 㣕 ; -+,0x00,0x00,0x04,0x08,0x10,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x20,0x20,0x20,0x20,0x22,0x00,0x40,0x50,0x40,0x48,0x88,0x04,0x02,0x00,0x00 -+// 14550 㣖 ; -+,0x00,0x00,0x04,0x08,0x10,0x04,0x04,0x08,0x18,0x20,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x20,0x00,0x00,0x42,0x40,0x40,0x50,0x40,0x48,0x88,0xa4,0x26,0x02,0x00 -+// 14551 㣗 ; -+,0x00,0x00,0x04,0x08,0x10,0x06,0x04,0x0c,0x14,0x04,0x04,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x10,0x10,0x42,0x02,0x02,0x42,0x42,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 14552 㣘 ; -+,0x00,0x04,0x04,0x08,0x10,0x06,0x04,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x43,0x80,0x00,0x48,0x08,0x08,0x0a,0x4a,0x02,0x02,0x06,0x00 -+// 14553 㣙 ; -+,0x00,0x00,0x0c,0x08,0x10,0x06,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 14554 㣚 ; -+,0x00,0x04,0x04,0x08,0x10,0x06,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x00,0x00,0x00,0x08,0x00,0x00,0x28,0x00,0x00,0x02,0x06,0x00 -+// 14555 㣛 ; -+,0x00,0x04,0x04,0x08,0x10,0x06,0x04,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x60,0x48,0x84,0x83,0x00,0x00,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14556 㣜 ; -+,0x00,0x00,0x08,0x08,0x10,0x04,0x08,0x18,0x08,0x08,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x30,0xa0,0xa0,0xa0,0xa0,0xb8,0xa0,0xa0,0x20,0x20,0x20,0x22,0x26,0x00 -+// 14557 㣝 ; -+,0x00,0x00,0x04,0x08,0x00,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x14,0x12,0x11,0x10,0x90,0x92,0xb2,0x84,0x8c,0x88,0x14,0x27,0x03,0x00 -+// 14558 㣞 ; -+,0x00,0x00,0x04,0x08,0x00,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x48,0x84,0x23,0x00,0x04,0xc2,0x48,0x48,0x48,0x48,0x89,0x0f,0x00 -+// 14559 㣟 ; -+,0x00,0x00,0x04,0x08,0x00,0x06,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x02,0x82,0x82,0x82,0x82,0x82,0x00 -+// 14560 㣠 ; -+,0x00,0x00,0x08,0x08,0x14,0x04,0x0a,0x1a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x26,0x44,0x04,0x18,0x18,0x24,0x03,0x08,0x00,0x00,0x08,0x04,0x00 -+// 14561 㣡 ; -+,0x00,0x00,0x08,0x09,0x11,0x09,0x0b,0x11,0x11,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x80,0x00,0x00,0x5a,0x40,0x40,0x40,0x5a,0x00,0x00,0x00,0x00,0x00,0x00 -+// 14562 㣢 ; -+,0x00,0x00,0x04,0x08,0x02,0x06,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x48,0x00,0x12,0x12,0x92,0x90,0x90,0x33,0x71,0x50,0x92,0x10,0x10,0x00 -+// 14563 㣣 ; -+,0x00,0x00,0x04,0x08,0x00,0x04,0x09,0x09,0x19,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x24,0x24,0xa2,0x20,0x10,0x40,0x08,0x84,0x03,0x00 -+// 14564 㣤 ; -+,0x00,0x00,0x04,0x00,0x08,0x02,0x04,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x48,0x40,0x24,0x38,0x30,0x0e,0x52,0x42,0x60,0x2c,0x38,0x30,0x0f,0x00 -+// 14565 㣥 ; -+,0x00,0x00,0x0c,0x09,0x11,0x05,0x0b,0x11,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x80,0x10,0x10,0x00,0x11,0x04,0x04,0x04,0x04,0x34,0x14,0x04,0x0c,0x00 -+// 14566 㣦 ; -+,0x00,0x04,0x04,0x08,0x00,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x30,0x00,0x31,0x70,0x58,0x06,0x20,0x61,0x48,0x88,0x30,0x2c,0x02,0x00 -+// 14567 㣧 ; -+,0x00,0x00,0x0c,0x08,0x11,0x04,0x08,0x09,0x18,0x09,0x09,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x08,0x28,0x48,0x08,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x2f,0x00 -+// 14568 㣨 ; -+,0x00,0x00,0x08,0x01,0x11,0x0d,0x08,0x10,0x1a,0x02,0x02,0x01,0x01,0x00,0x08,0x00,0x00,0x00,0x88,0x08,0x08,0x48,0x48,0x48,0x08,0x82,0x82,0x82,0xc2,0x62,0x02,0x00 -+// 14569 㣩 ; -+,0x00,0x04,0x08,0x00,0x14,0x04,0x08,0x18,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0x88,0xcc,0xac,0x9a,0x8b,0x89,0x88,0x88,0x88,0x00 -+// 14570 㣪 ; -+,0x00,0x00,0x04,0x08,0x10,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x04,0x00,0x24,0x94,0x00,0x20,0x20,0x60,0x44,0x44,0xa8,0x18,0x38,0x47,0x00 -+// 14571 㣫 ; -+,0x00,0x04,0x04,0x08,0x00,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x3c,0x20,0x22,0x00,0x26,0x00,0xa4,0x00,0x24,0x00,0x24,0x00,0x23,0x00 -+// 14572 㣬 ; -+,0x00,0x04,0x04,0x08,0x00,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x84,0x84,0x84,0x00,0x85,0x84,0x84,0x84,0x84,0x85,0x84,0x04,0x04,0x00 -+// 14573 㣭 ; -+,0x00,0x00,0x04,0x08,0x10,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x32,0x0a,0x02,0x02,0x40,0x82,0x64,0x04,0x08,0x10,0x28,0x07,0x00 -+// 14574 㣮 ; -+,0x00,0x04,0x08,0x08,0x10,0x04,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x10,0x10,0x32,0x10,0x32,0x02,0x0a,0x02,0x32,0x12,0x32,0x12,0x12,0x06,0x00 -+// 14575 㣯 ; -+,0x00,0x00,0x04,0x08,0x02,0x04,0x00,0x08,0x18,0x08,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x82,0x82,0x82,0x88,0xaa,0x88,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 14576 㣰 ; -+,0x00,0x00,0x04,0x08,0x00,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x3c,0x00,0x44,0x1a,0x20,0x44,0x02,0x00,0x00,0x12,0x01,0x00,0x7c,0x00 -+// 14577 㣱 ; -+,0x00,0x04,0x04,0x08,0x10,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x32,0x20,0x30,0x21,0x00,0x86,0x84,0x00,0x84,0x00,0x00,0xc4,0x02,0x00 -+// 14578 㣲 ; -+,0x00,0x00,0x08,0x02,0x12,0x0a,0x08,0x10,0x00,0x02,0x02,0x02,0x02,0x02,0x08,0x00,0x00,0x08,0x88,0xa8,0xa0,0xa2,0x12,0x42,0x02,0x40,0x04,0x04,0x0c,0x42,0x01,0x00 -+// 14579 㣳 ; -+,0x00,0x04,0x08,0x09,0x11,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x00,0x00,0x00,0x80,0xb4,0x04,0x04,0x04,0xf4,0x04,0x04,0x95,0x00,0x02,0x49,0x49,0x00 -+// 14580 㣴 ; -+,0x00,0x04,0x04,0x08,0x00,0x04,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x4c,0x40,0x41,0x10,0x92,0x92,0x92,0x92,0x92,0x00,0x46,0x03,0x00 -+// 14581 㣵 ; -+,0x00,0x04,0x04,0x08,0x11,0x04,0x08,0x09,0x19,0x09,0x09,0x09,0x09,0x09,0x0a,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x24,0x22,0x00,0x1c,0x00,0x1a,0x00,0x00,0x7f,0x00 -+// 14582 㣶 ; -+,0x00,0x04,0x08,0x08,0x11,0x05,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x02,0x0a,0x4a,0x42,0x02,0x04,0x84,0x84,0x84,0x84,0x03,0x00 -+// 14583 㣷 ; -+,0x00,0x00,0x08,0x09,0x14,0x05,0x08,0x08,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x03,0x10,0x02,0x78,0x00,0x42,0x40,0x01,0x02,0x00,0x00,0x60,0x00 -+// 14584 㣸 ; -+,0x00,0x08,0x09,0x13,0x01,0x09,0x01,0x12,0x11,0x00,0x00,0x01,0x02,0x00,0x10,0x00,0x00,0x00,0x00,0x44,0x44,0x95,0x04,0x44,0x84,0x84,0xa4,0x00,0x10,0x8c,0x83,0x00 -+// 14585 㣹 ; -+,0x00,0x04,0x08,0x01,0x05,0x05,0x09,0x19,0x09,0x09,0x08,0x08,0x0a,0x0b,0x08,0x00,0x00,0x00,0x10,0x00,0x54,0x14,0xf6,0x04,0x14,0x14,0x00,0x10,0x49,0x41,0x7c,0x00 -+// 14586 㣺 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x05,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x38,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 14587 㣻 ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x02,0x12,0x32,0x03,0x00,0x00,0x00,0x10,0x10,0x20,0xc0,0xc0,0x30,0x0e,0x00,0x80,0x42,0x02,0x08,0xf8,0x00 -+// 14588 㣼 ; -+,0x00,0x00,0x08,0x08,0x0c,0x0a,0x18,0x28,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0xa2,0xa2,0x22,0x02,0x42,0x02,0x02,0x0c,0x00 -+// 14589 㣽 ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0x10,0x10,0x02,0x03,0x00,0x00,0x00,0x00,0x03,0x10,0x20,0xe0,0xf8,0x04,0x00,0x40,0x42,0x01,0x08,0xf8,0x00 -+// 14590 㣾 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x02,0x02,0x14,0x14,0x40,0x48,0x20,0x30,0x30,0x48,0x86,0x03,0x00 -+// 14591 㣿 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x42,0x82,0x02,0x02,0x22,0x22,0x12,0x02,0x02,0x02,0x0e,0x00 -+// 14592 㤀 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x02,0x02,0x12,0x32,0x03,0x00,0x00,0x00,0x00,0x40,0xa0,0x10,0x0c,0x00,0x06,0x00,0x80,0x42,0x02,0x08,0xf8,0x00 -+// 14593 㤁 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x02,0x02,0x12,0x02,0x01,0x00,0x00,0x00,0xc8,0x80,0x80,0x20,0x00,0x08,0x06,0x40,0x60,0x02,0x01,0x0c,0xf8,0x00 -+// 14594 㤂 ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x00,0x18,0x10,0x24,0x08,0x10,0x60,0x78,0x0e,0x00,0x42,0x02,0x08,0xf8,0x00 -+// 14595 㤃 ; -+,0x00,0x08,0x08,0x08,0x08,0x0e,0x0a,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x10,0x10,0x01,0x00,0x00,0x62,0x42,0x42,0x40,0x04,0x84,0x04,0x0c,0x00 -+// 14596 㤄 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x31,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x10,0x10,0x00 -+// 14597 㤅 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x30,0x03,0x00,0x00,0x00,0x84,0x80,0x80,0x84,0x20,0x20,0x22,0x3e,0x80,0x42,0x02,0x00,0xf8,0x00 -+// 14598 㤆 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x1e,0x80,0x80,0x80,0x82,0x84,0x04,0x24,0x28,0x18,0x18,0x2c,0x03,0x00 -+// 14599 㤇 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x0c,0x20,0x20,0x20,0x20,0x22,0x30,0x20,0x48,0x48,0x04,0x86,0x03,0x00 -+// 14600 㤈 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x00,0x40,0x40,0x40,0x42,0x40,0x40,0x40,0x40,0x46,0x7c,0x00 -+// 14601 㤉 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x04,0x44,0x84,0x84,0x9c,0x1c,0x14,0x24,0x44,0x84,0x04,0x18,0x00 -+// 14602 㤊 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x08,0x38,0x44,0x00,0x04,0x04,0x00,0x48,0x30,0x10,0x0c,0x07,0x00 -+// 14603 㤋 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x09,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x48,0x88,0x84,0x02,0x03,0x44,0x44,0x44,0x44,0x84,0x80,0x18,0x00 -+// 14604 㤌 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0xc4,0x04,0x04,0x04,0x44,0x04,0x04,0x04,0x44,0x04,0x00 -+// 14605 㤍 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x10,0x00,0x00,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x20,0x20,0x00,0x42,0x00,0x04,0x04,0x88,0x40,0x42,0x01,0x08,0xf8,0x00 -+// 14606 㤎 ; -+,0x00,0x04,0x04,0x04,0x00,0x08,0x08,0x01,0x11,0x00,0x00,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x00,0xa2,0xa2,0xa2,0xa2,0x22,0x00,0x00,0x40,0x42,0x02,0x00,0xf8,0x00 -+// 14607 㤏 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x44,0x84,0x08,0x30,0x30,0x4c,0x03,0x10,0x08,0x20,0x18,0x08,0x00 -+// 14608 㤐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x07,0x00,0x00,0x00,0x00,0x02,0x00,0x84,0x00,0x00,0x00,0x00,0x80,0x42,0x03,0x00,0xfc,0x00 -+// 14609 㤑 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x21,0x40,0x40,0x40,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 14610 㤒 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x22,0x40,0x40,0x88,0x24,0x23,0x20,0x22,0x20,0x20,0x20,0x20,0x00 -+// 14611 㤓 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x13,0x30,0x60,0x40,0x80,0x04,0x02,0x37,0x00,0x00,0x10,0x00 -+// 14612 㤔 ; -+,0x00,0x08,0x08,0x08,0x0c,0x09,0x09,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x84,0x84,0x04,0x04,0x04,0x04,0x04,0x14,0x14,0x04,0x04,0x04,0x0c,0x00 -+// 14613 㤕 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0x10,0x10,0x91,0x91,0x91,0x91,0x01,0x00 -+// 14614 㤖 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x11,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14615 㤗 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x02,0x06,0x04,0x00,0x01,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x02,0x00,0x10,0x8c,0x83,0x84,0x92,0x92,0x80,0x00 -+// 14616 㤘 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x40,0x44,0x80,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 14617 㤙 ; -+,0x00,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x00,0x00,0x10,0x30,0x03,0x00,0x00,0x00,0x04,0x04,0x24,0x24,0x24,0x04,0x04,0x00,0x40,0x42,0x01,0x00,0xfc,0x00 -+// 14618 㤚 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0xc0,0x80,0x00,0x40,0x81,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x8c,0x00 -+// 14619 㤛 ; -+,0x00,0x00,0x08,0x08,0x08,0x0d,0x09,0x2a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x86,0x88,0x08,0x88,0x88,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x00 -+// 14620 㤜 ; -+,0x00,0x00,0x08,0x08,0x09,0x0d,0x29,0x29,0x09,0x09,0x09,0x08,0x0a,0x0a,0x08,0x00,0x00,0x00,0x14,0x10,0x12,0x10,0x10,0x12,0x94,0x54,0x48,0x08,0x14,0x27,0x03,0x00 -+// 14621 㤝 ; -+,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x20,0x22,0x20,0x00,0x04,0xc2,0x00,0x48,0x48,0x48,0x08,0x89,0x0f,0x00 -+// 14622 㤞 ; -+,0x00,0x00,0x08,0x08,0x09,0x0f,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x10,0x00,0x02,0x00,0x1c,0x20,0x20,0x23,0x20,0x20,0x20,0x20,0x3f,0x00 -+// 14623 㤟 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x04,0x04,0x14,0x04,0x03,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0x40,0x42,0x01,0x00,0xf8,0x00 -+// 14624 㤠 ; -+,0x00,0x00,0x02,0x04,0x04,0x08,0x05,0x02,0x04,0x00,0x00,0x00,0x10,0x00,0x03,0x00,0x00,0x40,0x00,0x10,0xd0,0x90,0x10,0x00,0x04,0x00,0x40,0x42,0x01,0x00,0xf8,0x00 -+// 14625 㤡 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x29,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x80,0x88,0x88,0x28,0x28,0x28,0xc8,0x48,0x08,0x00,0x02,0x06,0x00 -+// 14626 㤢 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x23,0x40,0x40,0x42,0xc0,0x44,0x40,0x40,0x44,0x40,0x40,0x44,0x00 -+// 14627 㤣 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x03,0x02,0x00,0x04,0x00,0x00,0x10,0x30,0x03,0x00,0x00,0x00,0x10,0x04,0x10,0x10,0x12,0x10,0x10,0x10,0x00,0x42,0x02,0x08,0xf8,0x00 -+// 14628 㤤 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x12,0x12,0x12,0xb2,0x02,0x92,0x02,0x00,0x20,0x60,0x58,0x02,0x00 -+// 14629 㤥 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x20,0x10,0x13,0x20,0x20,0x44,0xe8,0x18,0x16,0x24,0x88,0x14,0x42,0x81,0x00 -+// 14630 㤦 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x11,0x10,0x12,0x12,0x12,0xb2,0x00,0x20,0x60,0x20,0x50,0x0f,0x00 -+// 14631 㤧 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x04,0x18,0x80,0x80,0x83,0x80,0x80,0x22,0x02,0x02,0x02,0x02,0x22,0x02,0x00 -+// 14632 㤨 ; -+,0x00,0x00,0x08,0x08,0x0c,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0x48,0x48,0x48,0x4a,0x48,0x48,0x48,0x48,0x49,0x00,0x40,0x84,0x02,0x01,0x00 -+// 14633 㤩 ; -+,0x00,0x01,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x00,0x03,0x00,0x00,0x00,0x18,0x10,0xe0,0xb8,0x0e,0x08,0x08,0x08,0x00,0x42,0x01,0x00,0xf8,0x00 -+// 14634 㤪 ; -+,0x00,0x00,0x04,0x04,0x04,0x08,0x05,0x02,0x04,0x08,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x00,0x00,0xa2,0xa4,0x24,0x24,0x21,0x3e,0x40,0x42,0x02,0x00,0xf8,0x00 -+// 14635 㤫 ; -+,0x00,0x00,0x00,0x01,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x82,0x00,0x00,0x04,0x04,0x04,0x04,0x0c,0x00,0x42,0x01,0x04,0xfc,0x00 -+// 14636 㤬 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x30,0x10,0x10,0x11,0x10,0x10,0x32,0x10,0x10,0x10,0x01,0x00 -+// 14637 㤭 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x04,0x30,0x20,0x20,0x60,0x48,0x04,0x47,0x40,0x40,0x40,0x00,0x80,0x08,0x00 -+// 14638 㤮 ; -+,0x00,0x00,0x02,0x04,0x02,0x06,0x08,0x02,0x06,0x00,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x02,0x10,0x10,0x14,0x10,0x10,0x10,0x00,0x40,0x42,0x02,0x00,0xf8,0x00 -+// 14639 㤯 ; -+,0x00,0x00,0x09,0x09,0x09,0x0d,0x09,0x29,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x01,0x01,0x21,0x45,0x03,0x05,0x05,0x05,0x05,0x25,0x01,0x01,0x03,0x00 -+// 14640 㤰 ; -+,0x00,0x00,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x03,0x00,0x00,0x00,0x40,0xe0,0x20,0x20,0x20,0x22,0x20,0x00,0x40,0x42,0x00,0x00,0xf8,0x00 -+// 14641 㤱 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00,0x84,0x48,0x00,0x03,0x00 -+// 14642 㤲 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x0a,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x00,0x40,0xc0,0x08,0x10,0x84,0x04,0x00,0x0e,0x00,0x40,0x02,0x00,0xf8,0x00 -+// 14643 㤳 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x20,0x20,0x60,0xa2,0x21,0x20,0x00,0x02,0x00,0x00,0x00,0x02,0x00 -+// 14644 㤴 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x09,0x0b,0x08,0x08,0x00,0x00,0x00,0x00,0x20,0x24,0xa4,0x24,0x24,0xa4,0x24,0x24,0xa4,0x24,0x25,0x20,0x00 -+// 14645 㤵 ; -+,0x00,0x00,0x01,0x00,0x00,0x06,0x1c,0x00,0x04,0x04,0x00,0x00,0x10,0x20,0x03,0x00,0x00,0x00,0x20,0x22,0x44,0x08,0x18,0x18,0x26,0x00,0x00,0x42,0x02,0x00,0xf8,0x00 -+// 14646 㤶 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x48,0x48,0x40,0x60,0x44,0x10,0x06,0x08,0x02,0x84,0x90,0x20,0x1e,0x00 -+// 14647 㤷 ; -+,0x00,0x00,0x08,0x08,0x0c,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x40,0x48,0x86,0x12,0x18,0x08,0x10,0x10,0x84,0x84,0x84,0x84,0x00 -+// 14648 㤸 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x09,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x21,0x08,0x08,0x0a,0x49,0x49,0x08,0x88,0x18,0x00 -+// 14649 㤹 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x09,0x0a,0x08,0x08,0x00,0x00,0x10,0x14,0x10,0x31,0x10,0x12,0x90,0x18,0x38,0x54,0x92,0x13,0x10,0x60,0x00 -+// 14650 㤺 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x00,0x00,0x00,0x20,0x00,0x80,0x80,0x80,0x80,0x00,0xa4,0xa4,0xa4,0x24,0x24,0x07,0x00 -+// 14651 㤻 ; -+,0x00,0x01,0x02,0x08,0x0a,0x08,0x0d,0x09,0x02,0x00,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x00,0x02,0xa2,0xaa,0x2a,0x22,0x26,0x20,0x20,0x40,0x42,0x01,0x00,0xf8,0x00 -+// 14652 㤼 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x04,0x20,0x00,0x01,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x88,0x08,0x08,0x8b,0x08,0x08,0x08,0x08,0x08,0x48,0x50,0x32,0x22,0x00 -+// 14653 㤽 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x20,0x20,0x22,0x20,0x64,0x40,0x41,0x44,0x04,0x84,0x24,0x04,0x04,0x08,0x00 -+// 14654 㤾 ; -+,0x00,0x00,0x08,0x09,0x09,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x01,0x00,0x40,0xc6,0x10,0x00,0x72,0x50,0x58,0x80,0x06,0x03,0x10,0x00 -+// 14655 㤿 ; -+,0x00,0x08,0x08,0x08,0x08,0x0c,0x08,0x29,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x62,0x40,0x88,0x24,0x27,0x24,0xa4,0x24,0x24,0x20,0x21,0x3f,0x00 -+// 14656 㥀 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x32,0x10,0xb4,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x87,0x00 -+// 14657 㥁 ; -+,0x00,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x08,0x08,0x00,0x00,0x10,0x12,0x03,0x00,0x00,0x00,0x40,0x40,0x44,0x84,0x84,0x84,0x00,0x00,0x00,0x42,0x01,0x08,0xf8,0x00 -+// 14658 㥂 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x18,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00,0x04,0x04,0x04,0x04,0x44,0x04,0x18,0x00 -+// 14659 㥃 ; -+,0x00,0x08,0x08,0x08,0x09,0x0e,0x29,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x43,0x00,0x42,0x00,0x42,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x00 -+// 14660 㥄 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x00,0x30,0x00,0x01,0x44,0x82,0x40,0x44,0x88,0x28,0x10,0x28,0x87,0x00 -+// 14661 㥅 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x09,0x29,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x06,0x38,0x02,0xa4,0x90,0x0a,0x02,0x00,0x4c,0x48,0x30,0x30,0x48,0x06,0x00 -+// 14662 㥆 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x20,0x20,0x26,0x24,0x27,0x24,0x24,0x20,0xb6,0x70,0x28,0x24,0x23,0x60,0x00 -+// 14663 㥇 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x40,0x40,0x48,0x38,0x70,0x9e,0x52,0x42,0x40,0x2c,0x30,0x70,0x0e,0x00 -+// 14664 㥈 ; -+,0x00,0x04,0x04,0x05,0x15,0x15,0x15,0x15,0x04,0x00,0x02,0x02,0x12,0x12,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x46,0x40,0x40,0x44,0x00,0x40,0x42,0x02,0x08,0xf8,0x00 -+// 14665 㥉 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x10,0x02,0x00,0x44,0x48,0x01,0x00,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14666 㥊 ; -+,0x00,0x08,0x09,0x09,0x09,0x0b,0x09,0x29,0x09,0x09,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x29,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x20,0x20,0x30,0x42,0x00 -+// 14667 㥋 ; -+,0x00,0x00,0x04,0x00,0x08,0x18,0x09,0x08,0x08,0x08,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x20,0x60,0x40,0x80,0x90,0x88,0xc6,0x00,0x00,0x42,0x01,0x00,0xf8,0x00 -+// 14668 㥌 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x28,0x28,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x40,0x40,0x83,0x02,0x22,0xaa,0xa2,0x6a,0x62,0xba,0x2a,0x22,0x22,0x2c,0x00 -+// 14669 㥍 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x08,0xca,0x08,0x08,0x48,0x08,0x48,0x08,0xcf,0x00,0x40,0x86,0x02,0x00 -+// 14670 㥎 ; -+,0x00,0x00,0x06,0x04,0x04,0x0c,0x0c,0x05,0x04,0x04,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x00,0x20,0x2a,0x0a,0x02,0x12,0x02,0x06,0x04,0x40,0x42,0x01,0x08,0xf8,0x00 -+// 14671 㥏 ; -+,0x00,0x08,0x08,0x08,0x0d,0x09,0x29,0x29,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x40,0x5a,0x42,0x42,0x42,0x52,0x42,0x42,0x53,0x00,0x40,0x86,0x02,0x00 -+// 14672 㥐 ; -+,0x00,0x00,0x01,0x02,0x04,0x00,0x09,0x09,0x09,0x08,0x00,0x02,0x10,0x02,0x03,0x00,0x00,0xc0,0x80,0x10,0x1e,0x00,0x24,0x24,0x24,0x20,0x20,0x40,0x02,0x08,0xf8,0x00 -+// 14673 㥑 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x10,0x00,0x00,0x10,0x00,0x01,0x00,0x00,0x00,0x80,0x88,0x08,0x08,0x08,0x08,0x0a,0x00,0x40,0x42,0x02,0x08,0xf0,0x00 -+// 14674 㥒 ; -+,0x00,0x00,0x08,0x08,0x0c,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x04,0x38,0x02,0x92,0x94,0x00,0x00,0x70,0x70,0x48,0x84,0x06,0x03,0x00,0x00 -+// 14675 㥓 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x20,0x20,0x4c,0x00,0x05,0x04,0x94,0x14,0x94,0x14,0x04,0x0c,0x00 -+// 14676 㥔 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x20,0x04,0xc2,0x00,0x86,0x80,0x84,0x84,0x80,0x80,0x8c,0x00 -+// 14677 㥕 ; -+,0x00,0x00,0x00,0x04,0x01,0x02,0x00,0x04,0x05,0x02,0x00,0x02,0x02,0x12,0x03,0x00,0x00,0x00,0x88,0x90,0x30,0x0c,0x80,0x90,0x20,0x18,0x04,0x40,0x02,0x08,0xf8,0x00 -+// 14678 㥖 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0x40,0x44,0x13,0x00,0x04,0x62,0x00,0x50,0x48,0x41,0x40,0x3c,0x00 -+// 14679 㥗 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x84,0x04,0x84,0x04,0x84,0x20,0x00,0x08,0x08,0x50,0x30,0x78,0x86,0x00 -+// 14680 㥘 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x20,0x20,0x00,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x80,0x05,0x85,0x85,0x01,0x11,0x99,0x09,0x09,0x40,0x50,0x02,0x00,0x00 -+// 14681 㥙 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x00,0x00,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x92,0x91,0x80,0x82,0x7c,0x00 -+// 14682 㥚 ; -+,0x00,0x00,0x08,0x08,0x08,0x0e,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x52,0x92,0x92,0x92,0x92,0x92,0x92,0x30,0x28,0x28,0x44,0x03,0x00 -+// 14683 㥛 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x09,0x29,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x08,0x00,0x52,0x42,0x42,0x44,0x46,0x42,0x00,0x20,0x20,0x00,0x00 -+// 14684 㥜 ; -+,0x00,0x00,0x08,0x08,0x08,0x0e,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x92,0x12,0x92,0x12,0x82,0x00,0x86,0x82,0x82,0x86,0x82,0x82,0x84,0x00 -+// 14685 㥝 ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x22,0x22,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x83,0x82,0x82,0x92,0x02,0x02,0x12,0x82,0x02,0x92,0x82,0x82,0x02,0x00 -+// 14686 㥞 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x28,0x01,0x20,0x60,0xa4,0x38,0x50,0x34,0x42,0x83,0x10,0x30,0x00 -+// 14687 㥟 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x40,0x40,0x08,0x88,0x08,0x1a,0x60,0xa4,0x58,0xb0,0x24,0x42,0x13,0x30,0x00 -+// 14688 㥠 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x29,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x12,0x00,0x90,0x80,0x30,0x0e,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14689 㥡 ; -+,0x00,0x08,0x09,0x09,0x09,0x0d,0x09,0x29,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x58,0x40,0x7e,0x10,0x12,0x30,0x54,0x92,0x10,0x00 -+// 14690 㥢 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x09,0x29,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x04,0x40,0x00,0x30,0x00,0x5a,0x42,0x42,0x0e,0x02,0x02,0x02,0x02,0x02,0x00 -+// 14691 㥣 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x82,0x00,0x18,0xc6,0x04,0x00,0x80,0x00,0x00,0x00,0x42,0x08,0xf8,0x00 -+// 14692 㥤 ; -+,0x00,0x00,0x01,0x00,0x04,0x0f,0x08,0x00,0x04,0x04,0x00,0x00,0x10,0x12,0x03,0x00,0x00,0x00,0x10,0x00,0x22,0x89,0x00,0x04,0x08,0x08,0x40,0x42,0x02,0x08,0xf0,0x00 -+// 14693 㥥 ; -+,0x00,0x00,0x09,0x09,0x09,0x0d,0x29,0x28,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x20,0x22,0x22,0x2a,0x26,0x82,0x02,0x06,0x00 -+// 14694 㥦 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x0a,0x08,0x08,0x0e,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x40,0x44,0x40,0x40,0x44,0x90,0x08,0x06,0x00,0x40,0x00,0x09,0xf8,0x00 -+// 14695 㥧 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x02,0x20,0x00,0x82,0x00,0x84,0x00,0x84,0x00,0x84,0x40,0x82,0x02,0x00 -+// 14696 㥨 ; -+,0x00,0x04,0x04,0x0d,0x09,0x09,0x0a,0x06,0x09,0x00,0x02,0x02,0x12,0x12,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x42,0x02,0x08,0xf8,0x00 -+// 14697 㥩 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x22,0x22,0x24,0x28,0x39,0x20,0x40,0x84,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14698 㥪 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x80,0xba,0x60,0x04,0x02,0x20,0x21,0x48,0x88,0x10,0x38,0xc2,0x00 -+// 14699 㥫 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x28,0x28,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 14700 㥬 ; -+,0x00,0x00,0x08,0x08,0x0c,0x0a,0x08,0x29,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x10,0x12,0x00,0x04,0x28,0x03,0x10,0x10,0x60,0x40,0x44,0x44,0x84,0x0c,0x00 -+// 14701 㥭 ; -+,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x09,0x0a,0x08,0x08,0x0b,0x08,0x00,0x00,0x20,0x20,0x20,0x20,0x40,0x40,0x80,0x80,0x26,0xa9,0x20,0x28,0x26,0x60,0x00 -+// 14702 㥮 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x28,0x28,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x42,0x82,0xa2,0xaa,0x02,0x44,0x40,0x82,0x22,0xa2,0xaa,0x22,0x46,0x00 -+// 14703 㥯 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x0c,0x00,0x88,0x00,0x80,0x80,0x00,0x08,0x08,0x08,0x00,0x42,0x08,0xf8,0x00 -+// 14704 㥰 ; -+,0x00,0x08,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x50,0x12,0x12,0x52,0x12,0x12,0x12,0x10,0x04,0x08,0x30,0x30,0x07,0x00 -+// 14705 㥱 ; -+,0x00,0x00,0x09,0x09,0x09,0x0d,0x09,0x29,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x00,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x00,0x02,0x00 -+// 14706 㥲 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x02,0x08,0x00,0x02,0x12,0x03,0x00,0x00,0x00,0xc2,0x88,0x08,0x08,0x08,0x08,0x08,0x00,0x06,0x40,0x42,0x01,0xf8,0x00 -+// 14707 㥳 ; -+,0x00,0x00,0x01,0x01,0x09,0x05,0x21,0x21,0x01,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x42,0x42,0x46,0x42,0x56,0x10,0x50,0x92,0x11,0x10,0x00 -+// 14708 㥴 ; -+,0x00,0x00,0x08,0x01,0x09,0x0f,0x21,0x21,0x01,0x00,0x00,0x02,0x02,0x00,0x08,0x00,0x00,0x00,0x38,0x10,0x10,0x12,0x12,0x10,0x90,0x80,0x84,0xa4,0xa4,0x24,0x07,0x00 -+// 14709 㥵 ; -+,0x00,0x00,0x09,0x09,0x09,0x0d,0x09,0x29,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x00,0x20,0x20,0x40,0x30,0x50,0x38,0x46,0x12,0x30,0x00,0x02,0x00 -+// 14710 㥶 ; -+,0x00,0x00,0x00,0x00,0x10,0x03,0x03,0x00,0x03,0x06,0x08,0x02,0x02,0x12,0x03,0x00,0x00,0x80,0x00,0x26,0x20,0x20,0x28,0x20,0x22,0x10,0x06,0x40,0x02,0x0a,0xf8,0x00 -+// 14711 㥷 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0b,0x08,0x08,0x00,0x11,0x11,0x05,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x48,0x4c,0x92,0x88,0x06,0x20,0x02,0x01,0xf8,0x00 -+// 14712 㥸 ; -+,0x00,0x00,0x01,0x01,0x01,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x13,0x20,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x52,0x00,0x20,0x28,0x69,0xa1,0x22,0x3e,0x00 -+// 14713 㥹 ; -+,0x00,0x00,0x04,0x0d,0x04,0x04,0x0e,0x05,0x04,0x00,0x02,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x00,0x24,0x02,0x05,0x14,0x24,0x04,0x00,0x00,0x42,0x03,0x08,0xf8,0x00 -+// 14714 㥺 ; -+,0x00,0x08,0x08,0x08,0x08,0x0c,0x08,0x28,0x09,0x08,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x30,0x00,0x22,0x20,0x04,0x82,0x00,0x4a,0x0a,0x0a,0x0a,0x01,0x00 -+// 14715 㥻 ; -+,0x00,0x00,0x00,0x08,0x09,0x09,0x01,0x03,0x15,0x11,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x20,0x24,0x20,0xa0,0x02,0x14,0x18,0x58,0x0d,0x03,0x40,0x42,0x02,0xf8,0x00 -+// 14716 㥼 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x09,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x02,0x00,0x92,0x80,0x91,0x80,0x82,0x80,0x03,0x02,0xa6,0x42,0x0e,0x00 -+// 14717 㥽 ; -+,0x00,0x08,0x08,0x08,0x0c,0x0a,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x32,0x20,0x30,0x31,0x00,0x86,0x84,0x00,0x84,0x00,0x00,0xc4,0x02,0x00 -+// 14718 㥾 ; -+,0x00,0x08,0x09,0x09,0x09,0x0b,0x09,0x29,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x00,0x20,0x2c,0x10,0x00,0x20,0x24,0x64,0x24,0x24,0x00,0x02,0x00 -+// 14719 㥿 ; -+,0x00,0x00,0x06,0x00,0x06,0x06,0x08,0x09,0x01,0x02,0x00,0x02,0x10,0x12,0x03,0x00,0x00,0x00,0xa0,0x22,0x02,0xd4,0x08,0x88,0x06,0x00,0x00,0x42,0x02,0x08,0xf8,0x00 -+// 14720 㦀 ; -+,0x00,0x00,0x08,0x09,0x08,0x08,0x28,0x29,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x10,0x10,0x24,0x04,0x08,0x0b,0x0a,0x08,0x0a,0x08,0x09,0x08,0x88,0x7b,0x00 -+// 14721 㦁 ; -+,0x00,0x00,0x08,0x00,0x01,0x09,0x09,0x08,0x08,0x33,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x20,0x24,0x20,0x24,0x20,0x24,0x20,0x20,0xe0,0x0e,0x40,0x42,0x08,0xf8,0x00 -+// 14722 㦂 ; -+,0x00,0x00,0x02,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x03,0x00,0x00,0x40,0x08,0x52,0x02,0x08,0x00,0x40,0x44,0x44,0x08,0x40,0x42,0x08,0xf8,0x00 -+// 14723 㦃 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x09,0x29,0x09,0x09,0x09,0x09,0x09,0x0a,0x08,0x00,0x00,0x20,0x10,0x00,0x44,0x48,0x02,0x00,0x50,0x52,0x10,0x12,0x10,0x10,0x11,0x00 -+// 14724 㦄 ; -+,0x00,0x00,0x00,0x08,0x09,0x09,0x03,0x03,0x01,0x01,0x10,0x11,0x15,0x09,0x01,0x00,0x00,0x00,0x40,0x00,0x08,0x0a,0x18,0x9c,0x2a,0x08,0x00,0x22,0x02,0x00,0xfc,0x00 -+// 14725 㦅 ; -+,0x00,0x00,0x08,0x09,0x08,0x0d,0x28,0x28,0x0a,0x0a,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x94,0xf5,0x14,0x14,0x12,0x00,0x00,0x00,0x24,0x00,0x00,0x04,0x04,0x00 -+// 14726 㦆 ; -+,0x00,0x08,0x08,0x08,0x09,0x0b,0x09,0x29,0x09,0x09,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x10,0x10,0x10,0x12,0x14,0x10,0x1e,0x06,0x18,0x2a,0x09,0x08,0x08,0x10,0x00 -+// 14727 㦇 ; -+,0x00,0x08,0x08,0x09,0x09,0x0d,0x29,0x29,0x09,0x09,0x09,0x08,0x0a,0x0a,0x08,0x00,0x00,0x00,0x10,0x08,0x08,0x6a,0x0a,0x0a,0x00,0x88,0x8a,0x88,0x88,0xc9,0x8f,0x00 -+// 14728 㦈 ; -+,0x00,0x08,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x08,0x48,0x02,0x20,0x20,0x20,0x20,0x00,0x00,0x52,0x42,0x42,0x42,0x43,0x00 -+// 14729 㦉 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x09,0x2a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x22,0x20,0x24,0x00,0x03,0x00,0x00,0x84,0x84,0x84,0x08,0x48,0x43,0x00 -+// 14730 㦊 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x88,0x88,0x00,0xa4,0xa4,0xa5,0xa4,0xa4,0xa6,0x20,0x21,0x20,0x20,0x00 -+// 14731 㦋 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x29,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x40,0x48,0xa6,0x3d,0x38,0x32,0x40,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14732 㦌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x05,0x05,0x04,0x04,0x02,0x02,0x12,0x03,0x00,0x00,0x30,0x80,0x84,0x80,0xfe,0x1c,0x10,0x10,0x10,0x0f,0x40,0x02,0x08,0xf8,0x00 -+// 14733 㦍 ; -+,0x00,0x08,0x09,0x09,0x09,0x0e,0x28,0x28,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x22,0x22,0x22,0x04,0x48,0x11,0x10,0x12,0x22,0x20,0x20,0x40,0x80,0x00 -+// 14734 㦎 ; -+,0x00,0x08,0x08,0x08,0x08,0x0c,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x24,0x25,0x24,0x20,0x24,0x22,0x00,0xa4,0x24,0x24,0x04,0x01,0x00 -+// 14735 㦏 ; -+,0x00,0x00,0x09,0x09,0x09,0x0d,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x22,0x22,0x0a,0x00,0xef,0x00,0x4a,0x48,0x48,0x01,0x80,0x86,0x02,0x00 -+// 14736 㦐 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x28,0x09,0x09,0x09,0x09,0x08,0x09,0x08,0x00,0x00,0x08,0x0a,0x09,0x08,0x08,0x08,0x08,0x20,0x20,0x24,0x24,0x04,0x03,0x11,0x00 -+// 14737 㦑 ; -+,0x00,0x00,0x08,0x00,0x08,0x0d,0x20,0x21,0x00,0x01,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x08,0x48,0x48,0xa9,0x52,0x42,0x42,0x42,0x4a,0x44,0x44,0x4c,0x4a,0x53,0x00 -+// 14738 㦒 ; -+,0x00,0x08,0x09,0x09,0x09,0x0d,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x4a,0x4a,0x4a,0x02,0x00,0x10,0x00,0x00,0x00,0x00,0x86,0x00,0x84,0x00 -+// 14739 㦓 ; -+,0x00,0x00,0x08,0x08,0x08,0x0d,0x28,0x2a,0x09,0x08,0x08,0x08,0x08,0x0a,0x0a,0x00,0x00,0x80,0x88,0xba,0x28,0xa9,0x48,0x48,0x08,0x92,0x01,0x00,0x00,0x49,0x49,0x00 -+// 14740 㦔 ; -+,0x00,0x00,0x09,0x09,0x01,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x08,0x12,0x10,0x90,0x10,0x24,0x26,0xc3,0x00,0x42,0x22,0x00,0xf8,0x00 -+// 14741 㦕 ; -+,0x00,0x00,0x02,0x02,0x0a,0x06,0x22,0x22,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xa2,0x26,0x54,0x08,0x06,0x07,0x88,0xa8,0xc8,0x48,0x08,0x08,0x09,0x00 -+// 14742 㦖 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x20,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x52,0x52,0x52,0x52,0x02,0x02,0x12,0x02,0x86,0x86,0x2a,0x02,0x02,0x00 -+// 14743 㦗 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x80,0x88,0xca,0xcc,0xb8,0x8a,0x88,0x04,0x00,0x02,0x00,0x84,0x02,0x20,0x00 -+// 14744 㦘 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x04,0x01,0x09,0x02,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x90,0x90,0xa2,0x04,0x14,0x08,0x8c,0x13,0x00,0x40,0x42,0x08,0xf8,0x00 -+// 14745 㦙 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x29,0x08,0x08,0x08,0x08,0x0a,0x0a,0x08,0x00,0x00,0x00,0xa4,0xa4,0x24,0xa4,0x20,0x22,0x2a,0x02,0x02,0x90,0x81,0x80,0x7c,0x00 -+// 14746 㦚 ; -+,0x00,0x00,0x08,0x0a,0x00,0x12,0x14,0x06,0x09,0x09,0x0a,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x04,0x41,0x40,0x0a,0x88,0x81,0xa4,0xa4,0x85,0x84,0x84,0xe4,0x04,0x00 -+// 14747 㦛 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x00,0x02,0x0a,0x12,0x03,0x00,0x00,0x00,0x84,0x04,0xa4,0x04,0x04,0x27,0x00,0x0c,0x43,0x62,0x02,0x08,0xf8,0x00 -+// 14748 㦜 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x29,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x98,0x90,0x92,0x00,0x10,0xb0,0x92,0x00,0x86,0x08,0x30,0x0e,0x00 -+// 14749 㦝 ; -+,0x00,0x02,0x0c,0x03,0x0a,0x02,0x07,0x03,0x09,0x06,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x10,0x00,0x44,0x00,0x28,0x28,0x08,0x0f,0x00,0x40,0x42,0x0a,0xf8,0x00 -+// 14750 㦞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x09,0x08,0x02,0x02,0x12,0x03,0x00,0x00,0x00,0xc0,0x00,0x0b,0x00,0x00,0x0a,0x0a,0x08,0x08,0x40,0x42,0x08,0xf8,0x00 -+// 14751 㦟 ; -+,0x00,0x00,0x04,0x15,0x0a,0x08,0x06,0x03,0x09,0x02,0x00,0x02,0x12,0x12,0x03,0x00,0x00,0x00,0x12,0x10,0x50,0x50,0x10,0x12,0x10,0x13,0x00,0x40,0x42,0x00,0xf8,0x00 -+// 14752 㦠 ; -+,0x00,0x00,0x00,0x03,0x08,0x0d,0x20,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x02,0x52,0x42,0x42,0xd2,0x22,0x02,0x6a,0x82,0x82,0x82,0x82,0xc2,0x06,0x00 -+// 14753 㦡 ; -+,0x00,0x00,0x08,0x09,0x08,0x0d,0x28,0x28,0x0b,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x10,0xd1,0xd6,0x50,0xd0,0x5d,0x20,0x31,0x20,0x68,0x26,0x23,0x00 -+// 14754 㦢 ; -+,0x00,0x00,0x09,0x09,0x08,0x0c,0x28,0x29,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x08,0x08,0x20,0x04,0x04,0x20,0x2a,0x20,0x20,0x00,0x0a,0x4a,0x20,0x00,0x00 -+// 14755 㦣 ; -+,0x00,0x00,0x08,0x00,0x04,0x09,0x18,0x09,0x08,0x08,0x00,0x02,0x02,0x12,0x01,0x00,0x00,0x80,0xa0,0xb0,0x20,0x22,0x02,0xc2,0xd2,0x06,0x00,0x40,0x23,0x00,0xf8,0x00 -+// 14756 㦤 ; -+,0x00,0x00,0x04,0x04,0x05,0x00,0x20,0x00,0x00,0x11,0x11,0x00,0x0a,0x08,0x30,0x00,0x00,0x00,0x10,0x22,0x02,0x10,0x90,0x10,0x24,0x02,0x08,0x29,0xa1,0x22,0x1e,0x00 -+// 14757 㦥 ; -+,0x00,0x00,0x08,0x00,0x08,0x0c,0x20,0x20,0x00,0x01,0x01,0x00,0x00,0x02,0x08,0x00,0x00,0x20,0x20,0x22,0x24,0x20,0x20,0x20,0x20,0x54,0x54,0x00,0x82,0x81,0xfc,0x00 -+// 14758 㦦 ; -+,0x00,0x00,0x09,0x08,0x0d,0x0d,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x4a,0x42,0x42,0x4a,0x02,0x42,0x8a,0x8a,0xda,0x52,0x56,0x02,0x02,0x00 -+// 14759 㦧 ; -+,0x00,0x00,0x09,0x08,0x08,0x0d,0x09,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x84,0x84,0x84,0xcc,0x08,0x51,0x00,0x84,0x04,0x84,0x04,0x04,0x84,0x00 -+// 14760 㦨 ; -+,0x00,0x00,0x09,0x08,0x0d,0x2d,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x4a,0x42,0x42,0x4a,0x02,0x2a,0x2a,0xaa,0xaa,0x22,0x6a,0x22,0x02,0x00 -+// 14761 㦩 ; -+,0x00,0x00,0x00,0x02,0x0a,0x06,0x22,0x22,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x02,0x80,0xaa,0x00,0x08,0x08,0x80,0x02,0x42,0x82,0x00,0x08,0x41,0x1c,0x00 -+// 14762 㦪 ; -+,0x00,0x00,0x01,0x01,0x03,0x0d,0x05,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x0a,0x8b,0x0d,0x04,0x04,0x48,0x30,0x38,0x07,0x00 -+// 14763 㦫 ; -+,0x00,0x08,0x09,0x08,0x08,0x0c,0x09,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x18,0x00,0xcc,0x4c,0x57,0x00,0x04,0x84,0x84,0x00,0x84,0x40,0x02,0x00 -+// 14764 㦬 ; -+,0x00,0x00,0x09,0x01,0x09,0x0c,0x00,0x21,0x02,0x00,0x00,0x03,0x00,0x00,0x0c,0x00,0x00,0x00,0x4b,0x08,0x02,0x10,0x14,0x14,0xa4,0x34,0x44,0x54,0x04,0x44,0xd0,0x00 -+// 14765 㦭 ; -+,0x00,0x00,0x08,0x09,0x08,0x0c,0x08,0x29,0x08,0x09,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0x00,0x00,0x33,0x00,0x00,0x00,0xf6,0x00,0xb2,0x02,0xa4,0xa4,0x6a,0x31,0x00 -+// 14766 㦮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x80,0x90,0x90,0x84,0x80,0x84,0x80,0x82,0xc0,0x4c,0x50,0x60,0x10,0x0f,0x00 -+// 14767 㦯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x00,0x18,0x00,0x02,0x38,0x00,0x00,0x00,0x00,0x24,0x20,0x20,0x20,0x26,0x24,0x24,0x88,0x98,0x10,0x28,0x45,0x83,0x00 -+// 14768 㦰 ; -+,0x00,0x00,0x04,0x08,0x0c,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x90,0x94,0xd2,0x50,0x11,0x10,0x12,0x04,0x08,0x08,0x14,0x04,0x03,0x00 -+// 14769 㦱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x38,0x00,0x00,0x00,0x00,0x94,0x12,0x00,0x31,0x10,0x12,0x14,0x14,0x18,0x18,0x18,0x25,0x03,0x00 -+// 14770 㦲 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x06,0x04,0x04,0x04,0x04,0x08,0x08,0x11,0x01,0x00,0x00,0x10,0x10,0x90,0x12,0x10,0x13,0x10,0x92,0x94,0x94,0x88,0x98,0x84,0x02,0x00 -+// 14771 㦳 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x0e,0x10,0x00,0x00,0x00,0x10,0x94,0x10,0x10,0x10,0x10,0x12,0x82,0x0c,0x08,0x0c,0x07,0x01,0x00 -+// 14772 㦴 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x09,0x01,0x02,0x05,0x18,0x01,0x01,0x09,0x00,0x00,0x00,0x00,0x24,0x20,0x20,0x20,0xa0,0x24,0x24,0x9c,0x98,0x18,0x18,0x25,0x03,0x00 -+// 14773 㦵 ; -+,0x00,0x02,0x0a,0x0a,0x12,0x12,0x02,0x02,0x02,0x06,0x0a,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x10,0x12,0x90,0x12,0x10,0x52,0x12,0x14,0x88,0x88,0x08,0x05,0x03,0x00 -+// 14774 㦶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x00,0x14,0x00,0x06,0x00,0x0e,0x10,0x00,0x00,0x20,0x24,0x20,0x20,0x20,0x20,0x06,0x84,0x94,0x18,0x18,0x28,0x45,0x03,0x00 -+// 14775 㦷 ; -+,0x00,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x98,0x90,0x82,0x82,0x8c,0x8c,0x88,0x94,0x84,0x03,0x00 -+// 14776 㦸 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x10,0x11,0x10,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x14,0x10,0x90,0x10,0x10,0x12,0x14,0x08,0x08,0x00,0x04,0x03,0x00 -+// 14777 㦹 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x05,0x00,0x0a,0x04,0x08,0x01,0x00,0x00,0x00,0x90,0x10,0x12,0x10,0x10,0x40,0x02,0xcc,0x8c,0x88,0x94,0x83,0x03,0x00 -+// 14778 㦺 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x14,0x14,0x14,0x00,0x00,0x00,0x24,0x00,0x01,0x00,0x00,0x00,0x48,0x0a,0x0a,0x48,0x08,0x88,0x4a,0x8a,0xcc,0x8c,0x84,0x82,0x02,0x00 -+// 14779 㦻 ; -+,0x00,0x00,0x04,0x15,0x04,0x04,0x26,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0xc8,0x0a,0x08,0x08,0x08,0x08,0x0a,0x8a,0x8c,0x8c,0x84,0x83,0x81,0x00 -+// 14780 㦼 ; -+,0x00,0x02,0x02,0x02,0x04,0x04,0x04,0x08,0x00,0x10,0x10,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x02,0x82,0x01,0x58,0x00,0x4a,0xca,0x8c,0x88,0x84,0x83,0x81,0x00 -+// 14781 㦽 ; -+,0x00,0x04,0x04,0x08,0x08,0x00,0x12,0x10,0x02,0x00,0x02,0x02,0x00,0x02,0x12,0x00,0x00,0x00,0x02,0x00,0x08,0x00,0x10,0x11,0x01,0x82,0x06,0x84,0x44,0xbb,0x01,0x00 -+// 14782 㦾 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x02,0x12,0x12,0x02,0x21,0x00,0x00,0x40,0x40,0x06,0x00,0x06,0x00,0x00,0x04,0x44,0x04,0x0c,0x00,0x01,0xfe,0x00 -+// 14783 㦿 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x11,0x12,0x00,0x20,0x00,0x00,0x80,0x40,0x06,0x04,0x04,0x00,0x40,0x42,0xe0,0xd0,0x40,0x4c,0x46,0x40,0x00 -+// 14784 㧀 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x11,0x11,0x12,0x04,0x00,0x00,0x00,0x80,0x40,0x06,0x04,0x04,0x00,0x88,0x90,0x94,0x84,0x48,0x30,0x78,0x87,0x00 -+// 14785 㧁 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x00,0x07,0x00,0x00,0x80,0x40,0x06,0x04,0x04,0x40,0x40,0x60,0x40,0x42,0xc0,0x00,0x04,0x82,0x00 -+// 14786 㧂 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x12,0x10,0x00,0x00,0x00,0x00,0x80,0x40,0x06,0x04,0x04,0x00,0x00,0x02,0x02,0x02,0x66,0x02,0x02,0x02,0x00 -+// 14787 㧃 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x34,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x44,0x60,0x00,0x00,0x00,0x04,0x00 -+// 14788 㧄 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 14789 㧅 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x3c,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x22,0x22,0x22,0x22,0x42,0x02,0x82,0x0c,0x00 -+// 14790 㧆 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x00 -+// 14791 㧇 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x83,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x86,0x00 -+// 14792 㧈 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x42,0x00,0x80,0x82,0x02,0x02,0x02,0x02,0x0c,0x00 -+// 14793 㧉 ; -+,0x00,0x00,0x04,0x00,0x0e,0x00,0x00,0x04,0x0c,0x30,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x40,0x40,0x00,0x80,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x05,0x03,0x00 -+// 14794 㧊 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x18,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x00 -+// 14795 㧋 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x05,0x08,0x00,0x00,0x00,0x20,0x24,0x22,0x20,0x30,0x20,0x20,0x20,0x48,0x48,0x84,0x06,0x02,0x00 -+// 14796 㧌 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x3c,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x0c,0x20,0x20,0x22,0x30,0x20,0x21,0x30,0x20,0x20,0x20,0x21,0x1f,0x00 -+// 14797 㧍 ; -+,0x00,0x00,0x04,0x00,0x0e,0x00,0x00,0x04,0x0c,0x30,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x10,0x10,0x23,0x20,0x20,0x22,0x22,0x00,0x44,0x44,0x84,0x04,0x18,0x00 -+// 14798 㧎 ; -+,0x00,0x00,0x04,0x00,0x0e,0x00,0x00,0x04,0x0c,0x38,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x07,0x04,0x44,0x44,0x84,0x8c,0x0c,0x14,0x14,0x24,0x44,0x84,0x0c,0x00 -+// 14799 㧏 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x83,0x82,0x82,0x8a,0x8a,0x9a,0x9a,0x86,0x86,0x82,0x82,0x82,0x86,0x00 -+// 14800 㧐 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x28,0x08,0x09,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x03,0x62,0x42,0x42,0x42,0x8c,0x8c,0xcc,0x4c,0x16,0x23,0x01,0x00 -+// 14801 㧑 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x1c,0x24,0x04,0x04,0x04,0x08,0x00,0x00,0x10,0x10,0x50,0x50,0x10,0x32,0x22,0x22,0x2a,0x4a,0x42,0x82,0x04,0x0c,0x00 -+// 14802 㧒 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x38,0x00,0x00,0x00,0x01,0x18,0x00,0x00,0x00,0x10,0x00,0x81,0x80,0x00,0x48,0x48,0x48,0x00,0x84,0x04,0x02,0x03,0x00 -+// 14803 㧓 ; -+,0x00,0x00,0x04,0x00,0x0e,0x00,0x00,0x00,0x0c,0x38,0x00,0x00,0x01,0x01,0x18,0x00,0x00,0x02,0x1c,0xa0,0xa0,0xa0,0xa0,0xa0,0xa4,0xa4,0x24,0x24,0x2a,0x3a,0x01,0x00 -+// 14804 㧔 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x38,0x00,0x01,0x01,0x00,0x18,0x00,0x00,0x00,0x00,0x02,0x1a,0x80,0x80,0x02,0x0c,0x0c,0x08,0x08,0x14,0x05,0x03,0x00 -+// 14805 㧕 ; -+,0x00,0x00,0x08,0x08,0x0f,0x08,0x08,0x09,0x0c,0x38,0x09,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x60,0x89,0x09,0x29,0x29,0x29,0x29,0x29,0xa9,0x09,0x4b,0x88,0x08,0x00 -+// 14806 㧖 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x08,0x09,0x09,0x08,0x18,0x00,0x00,0x00,0x10,0x12,0x82,0x82,0x82,0x80,0x84,0x88,0x10,0x20,0x40,0x41,0x7f,0x00 -+// 14807 㧗 ; -+,0x00,0x08,0x08,0x08,0x0a,0x09,0x09,0x09,0x19,0x29,0x09,0x09,0x09,0x09,0x1b,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x4a,0x68,0x48,0x48,0x48,0x48,0x49,0xc9,0x0f,0x00 -+// 14808 㧘 ; -+,0x00,0x02,0x02,0x12,0x12,0x12,0x16,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x28,0x20,0x20,0x3e,0x08,0xf0,0x40,0xc0,0x42,0x40,0x40,0x80,0x80 -+// 14809 㧙 ; -+,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x0c,0x38,0x01,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x12,0x14,0x04,0x04,0x04,0x08,0x09,0x11,0x30,0x20,0x40,0x22,0x3c,0x00 -+// 14810 㧚 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x03,0x40,0x40,0x40,0x4c,0x00,0xa8,0x98,0x88,0x88,0x88,0xc9,0x8f,0x00 -+// 14811 㧛 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x20,0x20,0x40,0x10,0x08,0x00,0x3c,0xc0,0x40,0xc0,0x40,0x40,0x40,0x80,0x00 -+// 14812 㧜 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x0c,0x38,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x80,0x88,0x88,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x8a,0x88,0x88,0x80,0x00 -+// 14813 㧝 ; -+,0x00,0x00,0x04,0x04,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x02,0x82,0x82,0x92,0x00,0x38,0xc0,0x40,0xc0,0x42,0x40,0x40,0x80,0x00 -+// 14814 㧞 ; -+,0x00,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x18,0x20,0x00,0x01,0x08,0x08,0x00,0x00,0x00,0x3c,0x20,0x20,0x61,0x40,0x46,0x44,0x04,0x88,0x18,0x18,0x2c,0x07,0x00 -+// 14815 㧟 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x09,0x09,0x08,0x28,0x09,0x09,0x09,0x09,0x18,0x00,0x00,0x00,0x00,0xa0,0x20,0x20,0x20,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x21,0x00 -+// 14816 㧠 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x09,0x08,0x18,0x00,0x00,0x00,0x20,0x00,0x44,0x02,0xc2,0x10,0x10,0x50,0x92,0x11,0x11,0x10,0x30,0x00 -+// 14817 㧡 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x01,0x00,0x20,0x44,0xe8,0x12,0x12,0x04,0x08,0x14,0x62,0x81,0x00 -+// 14818 㧢 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x83,0x91,0x91,0x91,0x95,0x91,0x91,0x91,0x89,0xa5,0x81,0x83,0x81,0x00 -+// 14819 㧣 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x10,0x10,0x90,0x92,0x10,0x10,0x31,0x30,0x70,0x50,0x94,0x13,0x10,0x10,0x00 -+// 14820 㧤 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x19,0x00,0x00,0x00,0x10,0x12,0x30,0x20,0x42,0xf2,0x00,0x48,0x48,0x48,0x08,0x89,0x0f,0x00 -+// 14821 㧥 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x50,0x10,0x94,0x90,0x10,0x10,0x48,0x48,0x48,0x48,0x88,0x09,0x0f,0x00 -+// 14822 㧦 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x40,0x41,0x01,0x81,0x48,0x08,0x48,0x08,0x08,0x48,0x02,0x02,0x06,0x00 -+// 14823 㧧 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x02,0x20,0x20,0x44,0xc2,0x00,0x84,0x84,0x84,0x84,0x04,0x07,0x00 -+// 14824 㧨 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x09,0x09,0x08,0x18,0x00,0x00,0x00,0x06,0x80,0x80,0x80,0x82,0x80,0x80,0xc2,0x42,0x42,0x42,0x42,0x42,0x00 -+// 14825 㧩 ; -+,0x00,0x08,0x09,0x09,0x0b,0x09,0x09,0x09,0x19,0x29,0x09,0x09,0x08,0x08,0x18,0x00,0x00,0x00,0x02,0x02,0x0a,0x22,0x22,0x6e,0x22,0x22,0x22,0x2a,0x2a,0x23,0x21,0x00 -+// 14826 㧪 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x09,0x18,0x00,0x00,0x00,0x44,0x44,0x80,0x80,0x80,0xa2,0xa0,0xa0,0xa4,0xac,0x20,0x21,0x3f,0x00 -+// 14827 㧫 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x02,0x00,0x20,0x22,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x0a,0x02,0x00 -+// 14828 㧬 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x44,0x44,0x54,0x54,0x85,0x17,0xc0,0x00,0xc0,0xc2,0x40,0x00,0x80,0x00 -+// 14829 㧭 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xa4,0x20,0x20,0x22,0x26,0x20,0x38,0x40,0x44,0x40,0x40,0x40,0xc0,0x00 -+// 14830 㧮 ; -+,0x00,0x00,0x08,0x08,0x0b,0x08,0x08,0x08,0x0c,0x38,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x20,0x40,0x83,0x80,0x80,0x80,0xa2,0x80,0x80,0x80,0x80,0x82,0x80,0x00 -+// 14831 㧯 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x38,0x00,0x01,0x00,0x00,0x08,0x00,0x00,0x00,0x20,0x22,0x26,0x24,0x28,0x3b,0x00,0x20,0xc4,0x40,0x40,0x40,0x62,0x00 -+// 14832 㧰 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x0c,0x30,0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x0c,0x80,0x90,0x90,0x90,0x90,0x10,0x10,0x50,0x92,0x11,0x10,0x30,0x00 -+// 14833 㧱 ; -+,0x00,0x00,0x04,0x06,0x09,0x00,0x01,0x00,0x00,0x09,0x01,0x01,0x01,0x09,0x00,0x00,0x00,0x00,0x06,0x08,0x88,0x88,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x18,0x00 -+// 14834 㧲 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x01,0x80,0x10,0x10,0x10,0x30,0x50,0x50,0x94,0x12,0x11,0x10,0x00 -+// 14835 㧳 ; -+,0x00,0x04,0x04,0x04,0x04,0x1c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x42,0x05,0x24,0x24,0x08,0x00,0x40,0x40,0x40,0x42,0x40,0xc0,0x00 -+// 14836 㧴 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x28,0x09,0x08,0x08,0x08,0x19,0x00,0x00,0x08,0x48,0x8a,0x88,0x89,0x88,0x88,0xca,0x8c,0x8c,0x8c,0x95,0x83,0x81,0x00 -+// 14837 㧵 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x10,0x20,0x60,0x02,0x01,0x00,0x00,0x86,0x82,0x82,0x82,0x82,0x00 -+// 14838 㧶 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x20,0x20,0x86,0x80,0x84,0x80,0x87,0x82,0x84,0x0c,0x10,0x20,0x80,0x0c,0x00 -+// 14839 㧷 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x04,0x00,0x20,0x22,0x40,0x00,0x86,0x87,0x84,0x84,0x84,0x84,0x84,0x00 -+// 14840 㧸 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x08,0x28,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x13,0x04,0x84,0x84,0x84,0x00,0x04,0x10,0x10,0x10,0x10,0x30,0x00 -+// 14841 㧹 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00,0x0c,0x00,0x0c,0x00,0x40,0x00,0x08,0x00 -+// 14842 㧺 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x10,0x10,0x52,0x58,0x14,0x96,0x12,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 14843 㧻 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x20,0x00,0x22,0x20,0x30,0xd4,0x54,0x2a,0x4a,0x09,0x10,0x30,0x00 -+// 14844 㧼 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x20,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x10,0x10,0x13,0x10,0x16,0x10,0x12,0x20,0x42,0x44,0x48,0x44,0x46,0x40,0x00 -+// 14845 㧽 ; -+,0x00,0x00,0x08,0x08,0x0f,0x08,0x08,0x0c,0x08,0x38,0x08,0x08,0x08,0x08,0x19,0x00,0x00,0x00,0x03,0x12,0x12,0x12,0x12,0x12,0x2a,0x0a,0x0a,0x0a,0x02,0x82,0x00,0x00 -+// 14846 㧾 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x08,0x38,0x08,0x08,0x0a,0x0a,0x18,0x00,0x00,0x40,0x40,0x62,0xaa,0x0a,0x52,0x02,0x02,0x04,0x00,0x92,0x81,0x81,0xfc,0x00 -+// 14847 㧿 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x44,0x40,0x0c,0xa2,0x00,0x00,0x10,0x90,0x90,0x90,0x10,0x30,0x0f,0x00 -+// 14848 㨀 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x0c,0x30,0x10,0x10,0x10,0x12,0x13,0x12,0x32,0x30,0x58,0x94,0x12,0x10,0x00 -+// 14849 㨁 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x10,0x32,0x10,0xb4,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x87,0x00 -+// 14850 㨂 ; -+,0x00,0x00,0x08,0x08,0x0e,0x08,0x08,0x0c,0x08,0x38,0x08,0x08,0x08,0x09,0x18,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0xb2,0x30,0x50,0x94,0x13,0x10,0x00 -+// 14851 㨃 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x38,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x00,0x00,0x46,0x00,0x00,0x00,0x04,0x10,0x11,0x10,0x10,0x30,0x00 -+// 14852 㨄 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x01,0x01,0x18,0x00,0x00,0x00,0x93,0x90,0x96,0x90,0x92,0x82,0x80,0xa8,0x20,0x28,0x00,0x00,0x06,0x00 -+// 14853 㨅 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0d,0x09,0x39,0x09,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x40,0x4e,0x40,0x10,0x10,0x32,0x02,0x22,0x0a,0x06,0x02,0x02,0x06,0x00 -+// 14854 㨆 ; -+,0x00,0x00,0x08,0x08,0x0c,0x08,0x08,0x08,0x09,0x19,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x80,0x80,0x81,0x8c,0x8c,0xc8,0xaa,0x92,0x91,0xa1,0x80,0x80,0x80,0x00 -+// 14855 㨇 ; -+,0x00,0x00,0x04,0x10,0x10,0x01,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x84,0x08,0x10,0x2c,0x00,0x60,0x44,0x40,0x40,0x40,0xc0,0x00 -+// 14856 㨈 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x38,0x00,0x00,0x00,0x08,0x09,0x00,0x00,0x00,0x10,0x44,0x08,0x38,0x30,0x4e,0x80,0x84,0x84,0x84,0x84,0x04,0x04,0x00 -+// 14857 㨉 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x0c,0x18,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x82,0x82,0xb2,0x90,0x90,0x88,0x87,0x82,0x84,0x80,0x84,0x80,0x84,0x00 -+// 14858 㨊 ; -+,0x00,0x04,0x04,0x04,0x06,0x04,0x04,0x06,0x0c,0x3c,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x20,0x20,0x40,0x42,0x10,0x92,0x00,0x46,0x42,0x46,0x42,0x46,0x42,0x46,0x00 -+// 14859 㨋 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x08,0x00,0x00,0x20,0x22,0x2c,0x24,0x28,0x39,0x00,0x60,0x46,0x40,0x44,0x40,0x44,0x44,0x00 -+// 14860 㨌 ; -+,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x06,0x04,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x04,0x04,0x24,0x24,0xa7,0x00,0x02,0x00,0x04,0x98,0x08,0x04,0x02,0x00 -+// 14861 㨍 ; -+,0x00,0x00,0x07,0x00,0x04,0x00,0x04,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x05,0x84,0x14,0x04,0x0c,0x30,0xc0,0xc8,0x40,0xc0,0x40,0x80,0x00 -+// 14862 㨎 ; -+,0x00,0x00,0x08,0x08,0x0a,0x09,0x08,0x09,0x0d,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x02,0x20,0x22,0x02,0x02,0x02,0x06,0x20,0x22,0x00,0x48,0x84,0x03,0x00 -+// 14863 㨏 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x38,0x08,0x09,0x08,0x18,0x00,0x00,0x10,0x92,0x92,0x92,0x40,0x40,0x58,0x50,0x92,0x94,0x58,0x24,0x04,0x03,0x00 -+// 14864 㨐 ; -+,0x00,0x08,0x08,0x08,0x0c,0x09,0x09,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0xa2,0xa2,0x22,0x22,0x00,0x08,0x08,0x18,0x18,0x08,0x0a,0x0b,0x08,0x00 -+// 14865 㨑 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x18,0x20,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x8a,0x92,0x8a,0x82,0x00,0x44,0xa2,0x44,0x44,0x08,0x30,0x28,0x06,0x00 -+// 14866 㨒 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x22,0x68,0x44,0x92,0x15,0x10,0x12,0x10,0x10,0x10,0x10,0x11,0x00 -+// 14867 㨓 ; -+,0x00,0x00,0x08,0x08,0x0d,0x08,0x08,0x08,0x0c,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x10,0x10,0x81,0x00,0x42,0x10,0x50,0x52,0x90,0x10,0x11,0x10,0x10,0x10,0x00 -+// 14868 㨔 ; -+,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x19,0x29,0x09,0x0a,0x0a,0x18,0x00,0x00,0x08,0x0a,0x08,0x08,0x08,0x09,0x0a,0x6a,0x0e,0x04,0x64,0x0c,0x13,0x01,0x00 -+// 14869 㨕 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x04,0x08,0x18,0x00,0x00,0x08,0x19,0x00,0x00,0x00,0x4c,0x48,0x09,0x88,0x92,0x92,0x26,0x00,0x02,0x02,0x02,0x02,0x2b,0x00 -+// 14870 㨖 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x18,0x28,0x08,0x0b,0x18,0x00,0x00,0x00,0x08,0x88,0x88,0x02,0x32,0x12,0x82,0xa0,0x84,0x84,0xcc,0x12,0x01,0x00 -+// 14871 㨗 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x38,0x29,0x09,0x08,0x18,0x00,0x00,0x20,0x20,0x20,0x20,0x04,0x05,0x04,0x04,0x20,0xa0,0x20,0xa0,0x60,0x1f,0x00 -+// 14872 㨘 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x0c,0x18,0x30,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x10,0x52,0x11,0x1c,0x10,0x60,0xc2,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 14873 㨙 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x18,0x38,0x08,0x08,0x08,0x19,0x00,0x00,0x06,0x00,0x92,0x00,0x20,0x44,0xd0,0x00,0xe2,0x10,0x31,0x20,0x48,0x07,0x00 -+// 14874 㨚 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x05,0x04,0x18,0x30,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x04,0x64,0x00,0x80,0x83,0x01,0x88,0x88,0x88,0x8a,0x8a,0x02,0x06,0x00 -+// 14875 㨛 ; -+,0x00,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x19,0x29,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x2b,0x28,0x28,0x28,0x00,0x00,0x10,0x20,0x28,0x44,0x00,0x00,0x02,0x00 -+// 14876 㨜 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x08,0x18,0x09,0x09,0x09,0x08,0x18,0x00,0x00,0x20,0x20,0x20,0xa3,0x14,0xa0,0x1e,0x00,0x08,0x24,0x04,0x18,0x18,0x07,0x00 -+// 14877 㨝 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x08,0x38,0x01,0x01,0x00,0x08,0x00,0x00,0x00,0x83,0x80,0x82,0x88,0xaa,0x88,0x8a,0x02,0x22,0x02,0x22,0x02,0x02,0x00 -+// 14878 㨞 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x04,0x08,0x30,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x12,0x00,0x10,0x00,0x20,0x44,0xd8,0x00,0xf2,0x10,0x90,0x11,0x30,0x00 -+// 14879 㨟 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x02,0x82,0x92,0x00,0x02,0x00,0x86,0x80,0x84,0x04,0x40,0x48,0x01,0x00 -+// 14880 㨠 ; -+,0x00,0x00,0x08,0x09,0x0a,0x08,0x08,0x08,0x0c,0x08,0x38,0x08,0x08,0x08,0x19,0x00,0x00,0x00,0x81,0x00,0x06,0x00,0x44,0x00,0x44,0x00,0x10,0x00,0x40,0x82,0x03,0x00 -+// 14881 㨡 ; -+,0x00,0x00,0x09,0x09,0x0b,0x09,0x09,0x09,0x09,0x19,0x39,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x03,0x00,0x04,0x20,0x00,0x10,0x18,0x1c,0x0e,0x08,0x10,0x00,0x00,0x00 -+// 14882 㨢 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x08,0x09,0x09,0x19,0x29,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x80,0x02,0x28,0x00,0x00,0x2e,0x20,0x28,0x22,0x28,0x20,0x29,0x6f,0x00 -+// 14883 㨣 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x38,0x08,0x08,0x09,0x0a,0x18,0x00,0x00,0x00,0x40,0x80,0x23,0x40,0xc4,0x00,0x62,0x22,0xaa,0x22,0x2a,0x32,0xc6,0x00 -+// 14884 㨤 ; -+,0x00,0x00,0x08,0x09,0x0f,0x09,0x09,0x0d,0x09,0x19,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x20,0x08,0x4a,0x48,0x48,0x48,0x48,0x48,0x48,0x4a,0x40,0x02,0x00 -+// 14885 㨥 ; -+,0x00,0x00,0x00,0x01,0x0c,0x02,0x02,0x01,0x08,0x1a,0x30,0x00,0x01,0x0c,0x10,0x00,0x00,0x08,0x08,0x09,0x69,0xa9,0x29,0x29,0x2d,0x63,0x23,0xa1,0x21,0x21,0x22,0x00 -+// 14886 㨦 ; -+,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x00,0x44,0x0c,0x28,0x38,0x46,0x00 -+// 14887 㨧 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x19,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x20,0x00,0x04,0xe2,0x20,0x20,0x40,0x84,0x03,0x24,0x04,0xa4,0x04,0x84,0x00 -+// 14888 㨨 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x0c,0x18,0x30,0x00,0x00,0x08,0x08,0x00,0x00,0x20,0x00,0x09,0x09,0x29,0x90,0x02,0x00,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 14889 㨩 ; -+,0x00,0x00,0x08,0x09,0x0d,0x09,0x09,0x09,0x09,0x19,0x28,0x08,0x0a,0x08,0x18,0x00,0x00,0x10,0x12,0x00,0x06,0x24,0x44,0x44,0xa4,0x24,0x24,0x44,0x40,0x30,0x0f,0x00 -+// 14890 㨪 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x08,0x18,0x28,0x08,0x08,0x08,0x19,0x00,0x00,0x00,0x82,0x82,0x82,0x86,0x00,0x14,0x54,0x10,0x48,0x48,0x48,0x89,0x0f,0x00 -+// 14891 㨫 ; -+,0x00,0x00,0x08,0x08,0x0e,0x08,0x08,0x08,0x0c,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00 -+// 14892 㨬 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x0c,0x18,0x20,0x00,0x01,0x08,0x08,0x00,0x00,0x00,0x00,0x30,0x10,0x00,0x84,0x84,0x84,0x22,0x46,0xc8,0x08,0x46,0x43,0x00 -+// 14893 㨭 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x19,0x39,0x01,0x00,0x08,0x18,0x00,0x00,0x10,0x10,0x83,0x82,0x00,0x22,0x22,0x00,0x43,0x48,0x4a,0x40,0x40,0x7f,0x00 -+// 14894 㨮 ; -+,0x00,0x08,0x08,0x09,0x0f,0x09,0x09,0x0d,0x09,0x18,0x38,0x08,0x08,0x08,0x19,0x00,0x00,0x00,0x80,0x28,0x28,0x28,0x28,0xaa,0x00,0x40,0x48,0x48,0x48,0x89,0x0f,0x00 -+// 14895 㨯 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x09,0x08,0x08,0x18,0x38,0x0b,0x08,0x08,0x18,0x00,0x00,0x00,0x41,0x08,0x0a,0x28,0x28,0x08,0x28,0x09,0x49,0xcb,0x08,0x08,0x88,0x00 -+// 14896 㨰 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x18,0x38,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x40,0x02,0x20,0x44,0xe2,0x30,0x62,0x48,0x40,0x46,0x60,0x00 -+// 14897 㨱 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x08,0x18,0x20,0x00,0x08,0x18,0x00,0x00,0x10,0x22,0x62,0x14,0x58,0x20,0x00,0x00,0x00,0x02,0x00,0x82,0x82,0x82,0x00 -+// 14898 㨲 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x09,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x40,0x48,0x00,0x00,0x03,0x10,0x00,0x32,0x70,0x00,0x84,0x03,0x00,0x00 -+// 14899 㨳 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x04,0x08,0x30,0x20,0x00,0x00,0x18,0x00,0x00,0x10,0x10,0x01,0x10,0x10,0x24,0x40,0x02,0x00,0x10,0x10,0x90,0x00,0x04,0x00 -+// 14900 㨴 ; -+,0x00,0x08,0x08,0x08,0x0c,0x0a,0x0a,0x0a,0x0a,0x1a,0x28,0x08,0x08,0x08,0x10,0x00,0x00,0x80,0x84,0x89,0x88,0xa0,0x20,0x23,0x22,0xa4,0x84,0xa8,0x88,0x81,0x8f,0x00 -+// 14901 㨵 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x08,0x38,0x28,0x08,0x08,0x18,0x00,0x00,0x44,0x00,0x00,0x20,0x2a,0x2a,0x2a,0x2a,0x22,0x00,0x22,0x22,0x42,0x8c,0x00 -+// 14902 㨶 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x0c,0x18,0x20,0x00,0x01,0x01,0x18,0x00,0x00,0x00,0x20,0x84,0x84,0x84,0x84,0x80,0x80,0x83,0x02,0x02,0x56,0x02,0x06,0x04 -+// 14903 㨷 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x40,0x40,0x40,0x40,0x10,0x10,0x92,0x92,0x10,0x32,0x10,0x34,0x10,0x13,0x00 -+// 14904 㨸 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x08,0x09,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x10,0x10,0x01,0x10,0x4c,0x48,0x51,0x64,0xbc,0x10,0x92,0x92,0x92,0x92,0x00 -+// 14905 㨹 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x0c,0x08,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0xe5,0x04,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 14906 㨺 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x09,0x19,0x29,0x09,0x09,0x09,0x19,0x00,0x00,0x44,0x44,0x44,0x44,0x54,0x10,0x11,0x11,0x11,0x55,0x33,0x11,0x11,0x12,0x00 -+// 14907 㨻 ; -+,0x00,0x04,0x04,0x15,0x15,0x15,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x20,0x20,0x20,0x00,0x00,0x18,0x40,0x44,0x40,0x42,0x40,0x80,0x00 -+// 14908 㨼 ; -+,0x00,0x00,0x10,0x14,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x26,0x0c,0x1c,0x47,0x44,0x44,0x08,0xc0,0x40,0x40,0x42,0x00,0x80,0x00 -+// 14909 㨽 ; -+,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x1a,0x2a,0x0a,0x0a,0x0a,0x18,0x00,0x00,0x02,0x22,0x02,0x22,0x22,0x22,0x02,0x12,0x12,0xd2,0x12,0x12,0xd2,0x06,0x00 -+// 14910 㨾 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x08,0x18,0x28,0x08,0x08,0x09,0x18,0x00,0x00,0x08,0x48,0x12,0x10,0x10,0x10,0x10,0x08,0x12,0x74,0x58,0x94,0x13,0x30,0x00 -+// 14911 㨿 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x39,0x09,0x08,0x0a,0x18,0x00,0x00,0x00,0x12,0x10,0x82,0x20,0x20,0x1e,0x00,0x52,0x5a,0x2a,0x23,0x50,0x0f,0x00 -+// 14912 㩀 ; -+,0x00,0x08,0x08,0x08,0x0b,0x08,0x09,0x09,0x09,0x19,0x29,0x09,0x08,0x08,0x18,0x00,0x00,0x00,0x14,0x00,0x22,0x20,0x20,0x3e,0x00,0x5a,0x2a,0x3a,0x1a,0x07,0x04,0x00 -+// 14913 㩁 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x08,0x08,0x09,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x11,0x02,0x50,0x80,0x82,0x90,0x90,0x90,0x90,0x90,0x90,0x80,0x00 -+// 14914 㩂 ; -+,0x00,0x08,0x08,0x09,0x08,0x0a,0x08,0x09,0x08,0x19,0x28,0x0a,0x0a,0x0a,0x18,0x00,0x00,0x82,0x82,0x2a,0x02,0x72,0x02,0xea,0x02,0x03,0x32,0x02,0x02,0x02,0x22,0x00 -+// 14915 㩃 ; -+,0x00,0x08,0x08,0x09,0x0d,0x08,0x08,0x08,0x08,0x18,0x38,0x09,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0x02,0x48,0x48,0x48,0x48,0x4a,0x40,0x84,0x12,0x00,0x30,0x08,0x00 -+// 14916 㩄 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x08,0x18,0x28,0x08,0x08,0x0a,0x18,0x00,0x00,0x00,0x12,0x12,0x82,0x00,0x96,0x90,0x90,0x96,0x00,0x12,0x11,0x00,0x7c,0x00 -+// 14917 㩅 ; -+,0x00,0x00,0x08,0x08,0x0e,0x08,0x08,0x08,0x0c,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x28,0x28,0x2a,0x2a,0xaa,0x28,0x28,0x92,0x12,0x92,0x12,0x92,0x82,0x00 -+// 14918 㩆 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x18,0x29,0x09,0x0a,0x08,0x18,0x00,0x00,0x00,0x40,0x02,0x08,0x08,0x2c,0x2c,0x28,0x08,0x08,0x30,0x10,0x80,0x83,0x00 -+// 14919 㩇 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x20,0x24,0x26,0x24,0x20,0x24,0x22,0x00,0xa4,0xa4,0x04,0x84,0x01,0x00 -+// 14920 㩈 ; -+,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x08,0x0c,0x08,0x18,0x28,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x01,0x40,0x82,0x04,0x24,0x25,0x44,0x44,0xc0,0x80,0x00,0x44,0x00 -+// 14921 㩉 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x18,0x20,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0x20,0x44,0x87,0x00,0x04,0x04,0x00,0x42,0x0a,0x42,0x0a,0x12,0x42,0x00 -+// 14922 㩊 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x09,0x0c,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x3c,0x04,0x94,0x00,0x6a,0x0a,0x2a,0x04,0x0d,0x00,0x40,0x00,0x18,0x00 -+// 14923 㩋 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x19,0x29,0x09,0x09,0x0a,0x1a,0x00,0x00,0x00,0x32,0x00,0x26,0x20,0x20,0x48,0x4a,0x02,0x32,0x02,0xc2,0x02,0x02,0x00 -+// 14924 㩌 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x04,0x18,0x30,0x00,0x00,0x00,0x08,0x00,0x00,0x28,0x2a,0x2a,0xaa,0x29,0x49,0x0b,0x82,0x82,0x86,0x86,0x86,0x04,0xc3,0x00 -+// 14925 㩍 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x88,0x88,0x44,0x44,0x00,0x22,0x00,0xa2,0x02,0x22,0x74,0x88,0x06,0x20,0x00 -+// 14926 㩎 ; -+,0x00,0x00,0x08,0x08,0x0b,0x09,0x08,0x08,0x08,0x19,0x28,0x09,0x08,0x08,0x18,0x00,0x00,0x08,0x28,0x2a,0x2a,0x28,0x08,0x08,0x08,0x48,0x08,0x4a,0x02,0x11,0x61,0x00 -+// 14927 㩏 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x18,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x02,0x02,0x6a,0x02,0xb2,0x00,0x36,0x00,0x01,0x00,0x02,0x29,0x01,0x00 -+// 14928 㩐 ; -+,0x00,0x00,0x08,0x08,0x0e,0x08,0x08,0x0c,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x88,0xcc,0x42,0x00,0x10,0x10,0x11,0x04,0x06,0x04,0x24,0x04,0x08,0x00 -+// 14929 㩑 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x14,0x20,0x20,0x40,0x04,0x03,0x4a,0x40,0x4a,0x48,0x48,0x48,0x48,0x00 -+// 14930 㩒 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x18,0x38,0x08,0x08,0x09,0x18,0x00,0x00,0x44,0x44,0x6c,0x4c,0xee,0x45,0x00,0x04,0x00,0x12,0x10,0x94,0x12,0x30,0x00 -+// 14931 㩓 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x04,0x04,0x10,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xa4,0x24,0x27,0x06,0x04,0x08,0x16,0x78,0x00,0xc0,0xc2,0x00,0x80,0x00 -+// 14932 㩔 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x0a,0x0a,0x1a,0x2a,0x0a,0x08,0x09,0x10,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x02,0x83,0xe2,0x82,0x82,0x0c,0x04,0xa4,0x0a,0x01,0x00 -+// 14933 㩕 ; -+,0x00,0x00,0x08,0x08,0x0d,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x00,0x20,0x44,0x93,0x04,0x08,0x00,0x10,0x00 -+// 14934 㩖 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x04,0x18,0x30,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x82,0x92,0x92,0x92,0x00,0x00,0x92,0x92,0x92,0x92,0x82,0x01,0x00 -+// 14935 㩗 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x05,0x08,0x18,0x30,0x00,0x00,0x08,0x19,0x00,0x00,0x10,0x92,0x92,0x52,0x90,0x90,0x90,0x90,0x90,0x80,0x44,0x45,0x80,0x06,0x00 -+// 14936 㩘 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x0b,0x08,0x18,0x00,0x00,0x08,0x40,0x10,0x00,0x30,0x32,0x00,0xca,0x88,0x08,0xce,0x8c,0x0c,0x83,0x00 -+// 14937 㩙 ; -+,0x00,0x00,0x08,0x09,0x0c,0x08,0x08,0x08,0x08,0x18,0x28,0x09,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x02,0x40,0x5a,0x4c,0x40,0x48,0x48,0xa4,0x27,0x20,0x20,0x22,0x00 -+// 14938 㩚 ; -+,0x00,0x00,0x08,0x08,0x0c,0x09,0x08,0x08,0x0c,0x18,0x38,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x4a,0x48,0x01,0x01,0x08,0x02,0x20,0xe4,0x70,0xb0,0x54,0x93,0x30,0x00 -+// 14939 㩛 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x19,0x29,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x03,0x00,0x10,0x58,0x58,0x58,0x14,0xca,0x0c,0x28,0x08,0x0a,0x00,0x00 -+// 14940 㩜 ; -+,0x00,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x38,0x08,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x44,0x40,0x69,0x28,0x60,0x42,0x40,0x00,0x04,0x50,0x50,0x50,0x57,0x00 -+// 14941 㩝 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x09,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x13,0x00,0x44,0x44,0x01,0x00,0x20,0x46,0x38,0x54,0x32,0x83,0x10,0x00 -+// 14942 㩞 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0d,0x09,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x44,0x46,0x4c,0x50,0x22,0x00,0x01,0x00,0x12,0x70,0x48,0x84,0x02,0x00,0x00 -+// 14943 㩟 ; -+,0x00,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x10,0x02,0x48,0x48,0x4c,0x48,0x48,0x94,0x37,0x00,0x80,0x06,0x20,0x00 -+// 14944 㩠 ; -+,0x00,0x00,0x08,0x09,0x09,0x09,0x09,0x0d,0x09,0x19,0x39,0x08,0x08,0x0a,0x18,0x00,0x00,0x00,0x10,0x48,0x40,0x4a,0x02,0x02,0x0a,0x0c,0x00,0xce,0x00,0xaa,0x80,0x00 -+// 14945 㩡 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x08,0x18,0x09,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x22,0x40,0x40,0xc4,0x44,0x44,0x00,0x88,0x08,0x4a,0x08,0x08,0x4a,0x00 -+// 14946 㩢 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x28,0x09,0x09,0x08,0x18,0x00,0x00,0x40,0x4d,0x40,0x02,0x2a,0x2a,0x00,0x14,0x90,0x12,0x94,0x4c,0x18,0x27,0x00 -+// 14947 㩣 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x18,0x38,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x22,0xaa,0x22,0x22,0x01,0x10,0x12,0x14,0x90,0x90,0x90,0x11,0x10,0x00 -+// 14948 㩤 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x08,0x18,0x28,0x08,0x09,0x09,0x18,0x00,0x00,0x00,0x20,0x88,0xa8,0x2b,0xa2,0xa2,0x22,0x82,0x94,0x04,0x26,0x2a,0x61,0x00 -+// 14949 㩥 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x08,0x08,0xca,0x08,0x08,0x08,0x88,0xa9,0x8a,0x86,0xb4,0x84,0x8b,0x01,0x00 -+// 14950 㩦 ; -+,0x00,0x00,0x08,0x08,0x0d,0x08,0x08,0x08,0x08,0x39,0x29,0x09,0x09,0x09,0x19,0x00,0x00,0x40,0x90,0x90,0x94,0x90,0x90,0x92,0x00,0x22,0x46,0x4a,0x4a,0x4a,0x02,0x00 -+// 14951 㩧 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x0c,0x18,0x20,0x00,0x00,0x01,0x08,0x00,0x00,0x82,0x82,0x82,0x86,0x08,0x6a,0x08,0x68,0x44,0x97,0x58,0x10,0x92,0x30,0x00 -+// 14952 㩨 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x08,0x08,0x08,0x0a,0x18,0x00,0x00,0x04,0xa5,0x84,0x84,0xa5,0x84,0x02,0x02,0x02,0x02,0x00,0x90,0x81,0x7c,0x00 -+// 14953 㩩 ; -+,0x00,0x08,0x09,0x09,0x0d,0x09,0x08,0x08,0x08,0x39,0x09,0x0a,0x0a,0x08,0x19,0x00,0x00,0x00,0x04,0x00,0x08,0x12,0x12,0x92,0x92,0x92,0xd2,0x92,0x88,0x92,0x01,0x00 -+// 14954 㩪 ; -+,0x00,0x08,0x08,0x09,0x0d,0x08,0x0a,0x08,0x08,0x1a,0x2a,0x08,0x0b,0x0c,0x18,0x00,0x00,0x00,0x88,0x08,0x40,0x22,0xa2,0x22,0x22,0x62,0x22,0x22,0x50,0x12,0x01,0x00 -+// 14955 㩫 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x08,0x0c,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x02,0x08,0x29,0x40,0x40,0x40,0x04,0x80,0x84,0x84,0x80,0x84,0x40,0x82,0x00 -+// 14956 㩬 ; -+,0x00,0x08,0x08,0x08,0x0e,0x0a,0x0a,0x0a,0x1a,0x3a,0x0b,0x0a,0x0a,0x09,0x18,0x00,0x00,0x00,0x00,0x02,0x10,0x00,0x8c,0x40,0x01,0x26,0xb6,0xa4,0x24,0xc3,0x01,0x00 -+// 14957 㩭 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x09,0x0a,0x18,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x92,0x12,0x82,0x12,0x92,0x82,0x01,0x0c,0x00,0x31,0x00,0x00,0x20,0x00 -+// 14958 㩮 ; -+,0x00,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x39,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x22,0x22,0x32,0x12,0x32,0x33,0x80,0x34,0x2b,0x20,0x20,0x20,0x60,0x00 -+// 14959 㩯 ; -+,0x00,0x08,0x09,0x09,0x0d,0x09,0x09,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x80,0x29,0x2a,0x22,0x24,0x66,0x01,0x20,0xd8,0x20,0xc2,0x10,0x92,0x30,0x00 -+// 14960 㩰 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x09,0x39,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x4a,0x48,0x04,0x04,0x04,0x0a,0x0a,0x0a,0x10,0x70,0x40,0x86,0x03,0x00 -+// 14961 㩱 ; -+,0x00,0x08,0x08,0x08,0x08,0x09,0x09,0x08,0x09,0x39,0x09,0x09,0x09,0x09,0x19,0x00,0x00,0x06,0xa0,0x94,0x52,0x08,0x2a,0x00,0x22,0x23,0x22,0x2a,0x02,0x62,0xa6,0x00 -+// 14962 㩲 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x19,0x29,0x08,0x08,0x08,0x18,0x00,0x00,0x48,0x49,0x48,0x22,0x22,0xaa,0x40,0x90,0x90,0x92,0x10,0x92,0x10,0x80,0x00 -+// 14963 㩳 ; -+,0x00,0x00,0x08,0x08,0x0d,0x09,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x8a,0x09,0x48,0x5a,0x4a,0x4a,0x4b,0x00,0x04,0x04,0x28,0x30,0x06,0x00 -+// 14964 㩴 ; -+,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x08,0x19,0x20,0x00,0x00,0x08,0x18,0x00,0x00,0x00,0xaa,0xaa,0x22,0xaa,0xaa,0x40,0x90,0x90,0x92,0x90,0x92,0x90,0x80,0x00 -+// 14965 㩵 ; -+,0x00,0x08,0x08,0x08,0x09,0x08,0x09,0x08,0x09,0x38,0x28,0x0a,0x0a,0x08,0x18,0x00,0x00,0x44,0x54,0x45,0x14,0x64,0x44,0x64,0x04,0xa0,0xa2,0x32,0x1a,0x50,0x11,0x00 -+// 14966 㩶 ; -+,0x00,0x08,0x08,0x09,0x0c,0x08,0x08,0x09,0x09,0x39,0x29,0x09,0x09,0x09,0x19,0x00,0x00,0x88,0xa8,0x04,0x44,0x10,0x82,0x33,0x36,0x4a,0x32,0x76,0x4e,0x12,0x06,0x00 -+// 14967 㩷 ; -+,0x00,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x38,0x08,0x08,0x08,0x09,0x19,0x00,0x00,0x00,0x10,0x02,0x5c,0x40,0x58,0x48,0x8c,0x93,0x90,0x90,0x02,0x4a,0x06,0x00 -+// 14968 㩸 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x28,0x0a,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0xa4,0xa4,0x84,0x00,0x94,0x94,0x00,0x00,0x42,0x88,0x88,0x28,0x11,0x00 -+// 14969 㩹 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1a,0x28,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x08,0x38,0x08,0x02,0x42,0xc6,0x02,0x02,0x08,0x88,0x88,0x88,0x89,0x00 -+// 14970 㩺 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0x10,0x10,0x10,0x1b,0x10,0x90,0x12,0x02,0x04,0x04,0x18,0x18,0x0c,0x03,0x00 -+// 14971 㩻 ; -+,0x00,0x00,0x08,0x0b,0x12,0x10,0x10,0x10,0x10,0x10,0x15,0x11,0x00,0x06,0x04,0x00,0x00,0x00,0x08,0x08,0x1a,0x88,0x08,0x82,0x02,0x04,0x04,0x18,0x18,0x04,0x03,0x00 -+// 14972 㩼 ; -+,0x00,0x04,0x04,0x09,0x09,0x0a,0x04,0x0e,0x04,0x08,0x19,0x04,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x1a,0x82,0x84,0x04,0x18,0x08,0x04,0x03,0x00 -+// 14973 㩽 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x0c,0x0d,0x14,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0x88,0x08,0x08,0x08,0x03,0x02,0x02,0x14,0x8c,0x08,0x14,0x03,0x00 -+// 14974 㩾 ; -+,0x00,0x00,0x07,0x04,0x04,0x05,0x05,0x1d,0x05,0x05,0x15,0x04,0x04,0x1c,0x00,0x00,0x00,0x08,0x08,0x08,0x48,0x08,0x08,0x8a,0x02,0x02,0xd4,0x0c,0x08,0x14,0x03,0x00 -+// 14975 㩿 ; -+,0x00,0x08,0x08,0x08,0x10,0x10,0x00,0x02,0x04,0x04,0x08,0x10,0x10,0x11,0x00,0x00,0x00,0x00,0x20,0x20,0x21,0x44,0x44,0x04,0x04,0x00,0x18,0x18,0x18,0xa4,0x43,0x00 -+// 14976 㪀 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x10,0x10,0x20,0x20,0x24,0x04,0x44,0x04,0x00,0x18,0x18,0x18,0x24,0x03,0x00 -+// 14977 㪁 ; -+,0x00,0x00,0x04,0x04,0x09,0x00,0x10,0x02,0x00,0x00,0x01,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x92,0x90,0x10,0x02,0x02,0x84,0x04,0x18,0x08,0x14,0x03,0x00 -+// 14978 㪂 ; -+,0x00,0x08,0x08,0x19,0x10,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x02,0x04,0x04,0x04,0x18,0x08,0x94,0xa3,0x00 -+// 14979 㪃 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x15,0x15,0x15,0x15,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x90,0x12,0x10,0x10,0x02,0x00,0x04,0x24,0x18,0x18,0x1c,0x03,0x00 -+// 14980 㪄 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x03,0x12,0x02,0x00,0x00,0x00,0x00,0x20,0xa0,0xa4,0x84,0x04,0x04,0x94,0x88,0x88,0x9c,0x26,0x43,0x00 -+// 14981 㪅 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xc0,0x80,0x84,0x24,0x14,0x0c,0x42,0x00,0x08,0x10,0x20,0xe0,0x1e,0x00 -+// 14982 㪆 ; -+,0x00,0x00,0x07,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x11,0x14,0x12,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x02,0x02,0x04,0x04,0x18,0x88,0x14,0x03,0x00 -+// 14983 㪇 ; -+,0x00,0x00,0x04,0x14,0x15,0x04,0x04,0x04,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x20,0x00,0x00,0x10,0x10,0x00,0x20,0x24,0x24,0x04,0x04,0x14,0x18,0x08,0x18,0x24,0x43,0x00 -+// 14984 㪈 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x30,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x83,0x02,0x02,0x94,0x0c,0x0c,0x16,0x03,0x00 -+// 14985 㪉 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x11,0x00,0x00,0x09,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x10,0x10,0xa0,0x22,0x20,0x44,0x04,0x84,0x18,0x08,0x18,0x26,0x43,0x00 -+// 14986 㪊 ; -+,0x00,0x00,0x0d,0x04,0x0d,0x00,0x08,0x09,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0x00,0xca,0x00,0x00,0x02,0x02,0x80,0x84,0x90,0x88,0x94,0x83,0x00 -+// 14987 㪋 ; -+,0x00,0x00,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x90,0x10,0x10,0x10,0x10,0x12,0x82,0x00,0x04,0x18,0x08,0x14,0x03,0x00 -+// 14988 㪌 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x04,0x04,0x14,0x04,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x88,0x08,0x08,0x08,0x88,0xa2,0x82,0x82,0x94,0x88,0x88,0x96,0x83,0x00 -+// 14989 㪍 ; -+,0x00,0x00,0x00,0x06,0x00,0x06,0x20,0x01,0x00,0x00,0x06,0x34,0x00,0x00,0x04,0x00,0x00,0x10,0x10,0x90,0x20,0x66,0xa4,0x04,0x04,0x04,0x18,0x08,0x18,0x26,0x43,0x00 -+// 14990 㪎 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x14,0x15,0x2c,0x04,0x05,0x09,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x02,0x42,0x00,0x14,0x8c,0x88,0x16,0x03,0x00 -+// 14991 㪏 ; -+,0x00,0x04,0x00,0x14,0x10,0x14,0x14,0x14,0x14,0x0a,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x10,0x90,0x90,0x90,0x90,0x82,0x82,0x04,0x04,0x98,0x08,0x14,0x03,0x00 -+// 14992 㪐 ; -+,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x02,0x05,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x88,0x80,0x80,0x02,0x82,0x04,0x04,0x18,0x08,0x94,0x03,0x00 -+// 14993 㪑 ; -+,0x00,0x04,0x08,0x08,0x08,0x15,0x04,0x35,0x15,0x15,0x15,0x15,0x04,0x06,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x90,0x90,0x02,0x00,0x04,0x04,0x18,0x08,0x14,0x03,0x00 -+// 14994 㪒 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x18,0x08,0x08,0x08,0x00,0x13,0x00,0x00,0x00,0x00,0x88,0x80,0x8a,0x80,0x80,0x82,0x82,0x02,0x04,0x14,0x08,0x14,0x23,0x00 -+// 14995 㪓 ; -+,0x00,0x00,0x07,0x02,0x02,0x06,0x02,0x0b,0x0b,0x0b,0x0b,0x2b,0x02,0x02,0x02,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x02,0x82,0x02,0x04,0xcc,0x0c,0x16,0x03,0x00 -+// 14996 㪔 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x1d,0x19,0x08,0x2a,0x08,0x08,0x08,0x08,0x00,0x00,0x80,0x88,0x88,0x88,0x88,0x88,0xc2,0xc2,0x82,0x84,0x8c,0x8c,0x82,0x81,0x00 -+// 14997 㪕 ; -+,0x00,0x00,0x04,0x04,0x04,0x10,0x10,0x10,0x10,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x80,0x00,0x02,0x02,0x04,0x04,0x98,0x08,0x14,0x03,0x00 -+// 14998 㪖 ; -+,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x03,0x0a,0x06,0x0a,0x32,0x02,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xc8,0x02,0x82,0x00,0x14,0x88,0x88,0x16,0x01,0x00 -+// 14999 㪗 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x0a,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x02,0x02,0x00,0x04,0x08,0x08,0x14,0x03,0x00 -+// 15000 㪘 ; -+,0x00,0x00,0x06,0x05,0x08,0x10,0x04,0x00,0x14,0x14,0x14,0x04,0x01,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x80,0x22,0x20,0x04,0x84,0x94,0x94,0x08,0x18,0x94,0x03,0x00 -+// 15001 㪙 ; -+,0x00,0x00,0x10,0x10,0x12,0x10,0x12,0x00,0x06,0x04,0x0e,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x90,0x90,0x91,0xa2,0xa2,0x02,0x54,0x14,0x0c,0x88,0x1c,0x22,0x43,0x00 -+// 15002 㪚 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x11,0x10,0x11,0x10,0x00,0x00,0x00,0x10,0x90,0x00,0x22,0x22,0x42,0x00,0x94,0x84,0x88,0x8c,0x96,0x23,0x00 -+// 15003 㪛 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x10,0x14,0x18,0x10,0x10,0x00,0x00,0x00,0x08,0xc0,0x08,0x00,0x00,0x22,0x02,0x44,0x14,0x88,0x88,0x14,0x23,0x00 -+// 15004 㪜 ; -+,0x00,0x00,0x04,0x14,0x14,0x14,0x00,0x04,0x00,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x08,0x02,0x02,0x82,0x94,0x8c,0x88,0x96,0xa3,0x00 -+// 15005 㪝 ; -+,0x00,0x00,0x00,0x06,0x00,0x16,0x11,0x1c,0x10,0x16,0x0e,0x09,0x10,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x88,0x88,0x82,0x82,0x80,0x04,0x18,0x88,0x14,0x03,0x00 -+// 15006 㪞 ; -+,0x00,0x00,0x10,0x10,0x10,0x11,0x00,0x00,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0x08,0xa2,0x82,0x00,0x14,0x18,0x08,0x16,0x23,0x00 -+// 15007 㪟 ; -+,0x00,0x04,0x02,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x10,0x10,0x50,0x20,0x22,0x20,0x44,0x04,0x94,0x98,0x88,0x8c,0x96,0xa3,0x00 -+// 15008 㪠 ; -+,0x00,0x09,0x08,0x02,0x02,0x0a,0x02,0x0a,0x02,0x0a,0x0a,0x0b,0x02,0x02,0x0a,0x00,0x00,0x08,0x08,0x88,0x08,0x88,0x88,0xc2,0x82,0x82,0x04,0x0c,0x8c,0x12,0x01,0x00 -+// 15009 㪡 ; -+,0x00,0x04,0x04,0x20,0x04,0x04,0x04,0x04,0x04,0x04,0x15,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x80,0x08,0x00,0x00,0x02,0x82,0x04,0x04,0x18,0x08,0x14,0x03,0x00 -+// 15010 㪢 ; -+,0x00,0x00,0x08,0x10,0x10,0x10,0x00,0x14,0x00,0x00,0x00,0x05,0x03,0x04,0x10,0x00,0x00,0x08,0x88,0x88,0x88,0x88,0x88,0x82,0x02,0x80,0x94,0x08,0x08,0x94,0x03,0x00 -+// 15011 㪣 ; -+,0x00,0x04,0x04,0x00,0x09,0x09,0x09,0x00,0x20,0x22,0x2a,0x2a,0x2a,0x20,0x20,0x00,0x00,0x10,0x10,0x00,0x21,0x22,0x00,0x04,0x84,0x94,0x88,0x88,0x8c,0x86,0x83,0x00 -+// 15012 㪤 ; -+,0x00,0x00,0x12,0x10,0x12,0x10,0x00,0x00,0x1f,0x00,0x06,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x90,0x90,0x91,0x82,0x22,0x00,0x84,0x14,0x08,0x08,0x1c,0x02,0x43,0x00 -+// 15013 㪥 ; -+,0x00,0x02,0x02,0x02,0x12,0x10,0x14,0x10,0x10,0x14,0x04,0x00,0x24,0x20,0x0c,0x00,0x00,0x08,0x08,0x08,0x48,0x08,0x08,0x82,0x82,0x80,0x94,0x8c,0x88,0x94,0x23,0x00 -+// 15014 㪦 ; -+,0x00,0x00,0x02,0x02,0x20,0x00,0x00,0x16,0x10,0x16,0x10,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x10,0x50,0x00,0xa2,0x20,0x84,0x84,0x94,0x98,0x88,0x1c,0x96,0x23,0x00 -+// 15015 㪧 ; -+,0x00,0x02,0x05,0x08,0x00,0x08,0x08,0x08,0x04,0x04,0x15,0x04,0x26,0x04,0x0c,0x00,0x00,0x00,0x88,0x48,0x08,0x88,0x88,0x82,0x02,0x02,0x84,0x8c,0x08,0x0c,0x83,0x00 -+// 15016 㪨 ; -+,0x00,0x01,0x09,0x0a,0x04,0x05,0x04,0x04,0x15,0x04,0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x0a,0x02,0x82,0x14,0x0c,0x08,0x14,0x03,0x00 -+// 15017 㪩 ; -+,0x00,0x00,0x06,0x00,0x04,0x06,0x00,0x19,0x19,0x14,0x10,0x19,0x08,0x09,0x20,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0x08,0x02,0x82,0x82,0x84,0x84,0x08,0x84,0x83,0x00 -+// 15018 㪪 ; -+,0x00,0x00,0x04,0x04,0x0c,0x08,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x48,0x88,0x88,0x02,0x02,0x00,0x04,0x0c,0x48,0x14,0x23,0x00 -+// 15019 㪫 ; -+,0x00,0x00,0x02,0x00,0x00,0x21,0x08,0x16,0x05,0x08,0x19,0x09,0x00,0x00,0x09,0x00,0x00,0x00,0x88,0x08,0x48,0x08,0x08,0x82,0x02,0x84,0x84,0x00,0x08,0x14,0x03,0x00 -+// 15020 㪬 ; -+,0x00,0x00,0x04,0x15,0x04,0x15,0x00,0x0a,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x08,0x48,0x08,0x88,0x48,0x08,0x22,0x02,0x02,0x14,0x0c,0x08,0x16,0x03,0x00 -+// 15021 㪭 ; -+,0x00,0x00,0x02,0x02,0x10,0x14,0x12,0x10,0x1a,0x1a,0x08,0x00,0x09,0x09,0x1c,0x00,0x00,0x08,0x88,0x08,0x48,0x08,0x88,0x82,0x82,0x82,0x94,0x8c,0x08,0x16,0x03,0x00 -+// 15022 㪮 ; -+,0x00,0x00,0x00,0x00,0x02,0x20,0x00,0x00,0x00,0x2f,0x26,0x26,0x26,0x26,0x00,0x00,0x00,0x08,0x08,0x08,0x48,0x08,0x08,0x03,0x02,0x42,0x54,0x4c,0x48,0x54,0x03,0x00 -+// 15023 㪯 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x60,0xc0,0x38,0x42,0xc8,0x00,0x02,0xc0,0x00,0x00,0x00 -+// 15024 㪰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x02,0x02,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x80,0xc2,0x30,0x20,0xc0,0x3e,0x00,0x08,0x10,0xe0,0x00,0x10,0x0e,0x00,0x00 -+// 15025 㪱 ; -+,0x00,0x00,0x08,0x08,0x00,0x06,0x04,0x04,0x04,0x08,0x0c,0x02,0x12,0x00,0x00,0x00,0x00,0x20,0x20,0x44,0x08,0x80,0x92,0x92,0x92,0x92,0x20,0x20,0x04,0x42,0x01,0x00 -+// 15026 㪲 ; -+,0x00,0x00,0x01,0x01,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x21,0x20,0x20,0x20,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15027 㪳 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x20,0xa0,0x20,0x22,0x30,0x20,0x20,0xf0,0x08,0x04,0x04,0x04,0xf0,0x00 -+// 15028 㪴 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x1a,0x02,0x02,0x02,0x02,0x13,0x12,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0x04,0x24,0x24,0x05,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15029 㪵 ; -+,0x00,0x00,0x04,0x04,0x15,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0x14,0x04,0x04,0x24,0x24,0x05,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 15030 㪶 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x84,0x04,0x14,0x04,0x04,0x24,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15031 㪷 ; -+,0x00,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0x01,0x0a,0x0a,0x02,0x38,0x00,0x00,0x00,0x84,0x04,0x24,0x04,0x04,0x24,0x24,0x05,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15032 㪸 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x09,0x10,0x00,0x00,0x00,0x00,0x04,0x84,0x24,0x14,0x04,0x24,0x24,0x04,0x8f,0x04,0x04,0x84,0x04,0x00 -+// 15033 㪹 ; -+,0x00,0x00,0x04,0x14,0x14,0x14,0x04,0x14,0x14,0x04,0x04,0x09,0x02,0x06,0x08,0x00,0x00,0x00,0x84,0x84,0x94,0x84,0x04,0x84,0x94,0x05,0x04,0x04,0x04,0x04,0x84,0x00 -+// 15034 㪺 ; -+,0x00,0x00,0x02,0x06,0x02,0x0b,0x09,0x09,0x09,0x0d,0x0d,0x04,0x01,0x08,0x00,0x00,0x00,0x00,0x04,0x44,0x14,0x44,0x44,0x54,0x54,0x45,0x04,0x04,0x04,0x84,0x04,0x00 -+// 15035 㪻 ; -+,0x00,0x00,0x08,0x14,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x20,0x0a,0x04,0x0a,0x20,0x24,0x14,0x20,0x20,0x20,0x21,0x20,0x20,0x00 -+// 15036 㪼 ; -+,0x00,0x00,0x00,0x01,0x01,0x05,0x05,0x05,0x05,0x15,0x01,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x0e,0x20,0x00,0x00,0x21,0x04,0x04,0x44,0x44,0x44,0x04,0x84,0x04,0x00 -+// 15037 㪽 ; -+,0x00,0x00,0x00,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x00,0x02,0x00,0x0e,0x40,0x40,0x40,0x48,0x40,0x40,0x40,0x00,0x80,0x08,0x00 -+// 15038 㪾 ; -+,0x00,0x00,0x08,0x09,0x11,0x02,0x06,0x01,0x10,0x11,0x00,0x00,0x00,0x01,0x10,0x00,0x00,0x00,0x06,0x20,0x20,0x20,0x23,0x20,0x20,0xa0,0x00,0x00,0x40,0x04,0x04,0x00 -+// 15039 㪿 ; -+,0x00,0x00,0x04,0x14,0x14,0x04,0x08,0x10,0x14,0x14,0x14,0x15,0x04,0x08,0x10,0x00,0x00,0x00,0x86,0xa0,0xa0,0x00,0x21,0x00,0x00,0x00,0x40,0x40,0x40,0x00,0x00,0x00 -+// 15040 㫀 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x06,0x20,0x20,0x20,0x21,0x24,0xa4,0xa4,0xa4,0xa4,0x84,0xc4,0x04,0x00 -+// 15041 㫁 ; -+,0x00,0x00,0x00,0x02,0x1d,0x00,0x09,0x18,0x15,0x05,0x05,0x09,0x10,0x30,0x00,0x00,0x00,0x00,0x82,0x60,0xa0,0xa0,0x61,0x24,0x64,0x24,0x24,0x24,0x04,0xc4,0x04,0x00 -+// 15042 㫂 ; -+,0x00,0x00,0x00,0x10,0x05,0x05,0x15,0x05,0x05,0x05,0x20,0x20,0x25,0x10,0x00,0x00,0x00,0x00,0x06,0x20,0x20,0x20,0x21,0x24,0x24,0x24,0x24,0xa4,0x44,0x44,0x04,0x00 -+// 15043 㫃 ; -+,0x00,0x00,0x04,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x09,0x01,0x11,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x90,0x10,0x10,0x90,0x08,0x28,0x20,0x24,0x46,0x03,0x01,0x00 -+// 15044 㫄 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x00,0x01,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x02,0x00,0x00,0x06,0x82,0x98,0x00,0x20,0x20,0x24,0x24,0x4c,0x00 -+// 15045 㫅 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x09,0x09,0x08,0x00,0x12,0x12,0x12,0x06,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x46,0x07,0x00,0x00,0x2c,0x20,0x20,0x00,0x40,0x80,0x00 -+// 15046 㫆 ; -+,0x00,0x00,0x04,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x01,0x10,0x12,0x22,0x00,0x00,0x00,0x10,0x10,0x24,0x24,0x03,0x01,0x00,0x20,0x42,0x02,0x00,0x00,0x10,0x00 -+// 15047 㫇 ; -+,0x00,0x00,0x04,0x04,0x08,0x09,0x09,0x09,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xa0,0x26,0x43,0x08,0x00,0x08,0x08,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15048 㫈 ; -+,0x00,0x00,0x04,0x0c,0x08,0x09,0x09,0x09,0x13,0x02,0x06,0x08,0x08,0x0c,0x03,0x00,0x00,0x10,0x10,0xa0,0x06,0x0b,0x00,0x10,0x08,0x00,0x18,0x04,0x04,0x04,0xf8,0x00 -+// 15049 㫉 ; -+,0x00,0x00,0x04,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x02,0x02,0x12,0x12,0x03,0x04,0x00,0x00,0x20,0x24,0x48,0x00,0xc0,0x00,0x24,0x20,0xa0,0xa4,0xa4,0x20,0x21,0x1f,0x00 -+// 15050 㫊 ; -+,0x00,0x00,0x04,0x04,0x09,0x08,0x08,0x0b,0x00,0x02,0x12,0x12,0x12,0x02,0x06,0x00,0x00,0x20,0x20,0x40,0x40,0x00,0x03,0x02,0x02,0x52,0x52,0x52,0x42,0x02,0x0c,0x00 -+// 15051 㫋 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x0b,0x00,0x12,0x12,0x12,0x12,0x02,0x04,0x00,0x00,0x20,0x40,0x42,0x00,0x10,0x52,0x52,0x52,0x52,0x52,0x42,0x42,0x42,0x46,0x00 -+// 15052 㫌 ; -+,0x00,0x00,0x04,0x04,0x09,0x08,0x08,0x09,0x08,0x00,0x02,0x12,0x12,0x02,0x04,0x00,0x00,0x20,0x20,0x40,0x40,0x00,0x02,0x10,0x10,0x10,0x5a,0x50,0x50,0x50,0x41,0x00 -+// 15053 㫍 ; -+,0x00,0x00,0x08,0x00,0x0a,0x08,0x08,0x0a,0x02,0x12,0x10,0x10,0x04,0x24,0x04,0x00,0x00,0x40,0x40,0x82,0x08,0x48,0x89,0x92,0x90,0xac,0x8c,0x84,0x8c,0x82,0x81,0x00 -+// 15054 㫎 ; -+,0x00,0x00,0x00,0x00,0x0a,0x08,0x08,0x0a,0x02,0x02,0x12,0x12,0x12,0x02,0x04,0x00,0x00,0x40,0x40,0x80,0x80,0x02,0x80,0x10,0x12,0x12,0x52,0x52,0x10,0x10,0x10,0x00 -+// 15055 㫏 ; -+,0x00,0x00,0x08,0x00,0x02,0x08,0x08,0x0a,0x02,0x02,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x40,0x40,0x80,0x80,0x28,0xaa,0xaa,0xaa,0x00,0x21,0x04,0x48,0x1c,0x03,0x00 -+// 15056 㫐 ; -+,0x00,0x00,0x0c,0x00,0x04,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x18,0x60,0x00,0x00,0x02,0xfe,0x00 -+// 15057 㫑 ; -+,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x02,0x42,0x02,0x02,0x0c,0x00 -+// 15058 㫒 ; -+,0x00,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x01,0x00,0x02,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x0c,0x00,0x08,0x00,0x08,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 15059 㫓 ; -+,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x60,0x40,0x42,0x80,0x00,0x0c,0x08,0x10,0x20,0x40,0x80,0x81,0xff,0x00 -+// 15060 㫔 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x80,0x80,0x84,0x80,0x80,0x80,0x82,0x00 -+// 15061 㫕 ; -+,0x00,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x0c,0x00,0x08,0x00,0x00,0x00,0x02,0x20,0x20,0x20,0x20,0x31,0x1e,0x00 -+// 15062 㫖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x80,0x80,0x84,0x80,0x80,0x80,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15063 㫗 ; -+,0x00,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x0c,0x00,0x18,0x00,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 15064 㫘 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xc0,0x80,0x40,0x08,0x06,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15065 㫙 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x32,0x20,0x20,0x20,0x30,0x20,0x28,0x48,0x84,0x86,0x03,0x00 -+// 15066 㫚 ; -+,0x00,0x02,0x04,0x01,0x09,0x02,0x04,0x00,0x00,0x08,0x08,0x0c,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x92,0x22,0x04,0x44,0x1c,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15067 㫛 ; -+,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x01,0x00,0x00,0x00,0x06,0x82,0x80,0x80,0x80,0x8e,0x28,0x28,0x08,0x48,0x48,0x89,0x0f,0x00 -+// 15068 㫜 ; -+,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x16,0x02,0x02,0x02,0x16,0x02,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x04,0x04,0x44,0x04,0x04,0x04,0x44,0x04,0x00,0x00,0x00,0x00 -+// 15069 㫝 ; -+,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0e,0x90,0x90,0x90,0x90,0x98,0x80,0x88,0x88,0x88,0x84,0x83,0x11,0x00 -+// 15070 㫞 ; -+,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x12,0x92,0x10,0x10,0x16,0x04,0x44,0x28,0x10,0x2c,0x03,0x00 -+// 15071 㫟 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x22,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x04,0x00,0x02,0x02,0x02,0x02,0x02,0x46,0x02,0x00 -+// 15072 㫠 ; -+,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x54,0x50,0x12,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x00 -+// 15073 㫡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x18,0x30,0xc0,0xe0,0x0f,0x20,0x80,0x60,0x00 -+// 15074 㫢 ; -+,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x12,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x36,0x10,0x10,0x10,0x30,0x20,0x20,0x40,0x00,0xa2,0x82,0x00 -+// 15075 㫣 ; -+,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x80,0x00,0xc4,0xc4,0xc4,0x84,0xc4,0x00,0x7f,0x00 -+// 15076 㫤 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x80,0x00,0x44,0x40,0x60,0x50,0x48,0x47,0xc0,0x00 -+// 15077 㫥 ; -+,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x20,0x22,0x42,0x44,0x28,0x18,0x30,0x62,0x42,0x42,0x42,0x42,0x42,0x00 -+// 15078 㫦 ; -+,0x00,0x04,0x08,0x08,0x02,0x1a,0x1a,0x2a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x44,0x04,0x08,0x18,0x06,0x82,0x44,0x04,0x44,0x04,0x04,0x04,0x00 -+// 15079 㫧 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x48,0x08,0x00,0xe0,0x00,0x10,0x0e,0x42,0x00 -+// 15080 㫨 ; -+,0x00,0x00,0x00,0x04,0x00,0x01,0x00,0x14,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x02,0x20,0x20,0x20,0x44,0x44,0x4c,0x28,0x18,0x36,0x42,0x00 -+// 15081 㫩 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x00,0xc0,0x00,0x08,0x09,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x0c,0x00 -+// 15082 㫪 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0x80,0x84,0x00,0x00,0x00,0x04,0x8b,0x88,0x88,0x88,0x88,0x88,0x00 -+// 15083 㫫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x09,0x05,0x01,0x01,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x20,0x20,0x24,0x28,0x20,0x20,0x22,0x00 -+// 15084 㫬 ; -+,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x40,0x40,0x43,0x80,0x80,0x48,0x08,0x48,0x08,0x08,0x48,0x00,0x02,0x06,0x00 -+// 15085 㫭 ; -+,0x00,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0xc8,0x00,0x12,0x12,0x10,0x10,0x10,0x30,0x00 -+// 15086 㫮 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x1c,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x24,0x20,0x20,0x20,0x3f,0x00,0x0c,0x00,0x08,0x00,0x08,0x00,0x00 -+// 15087 㫯 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x00,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x01,0x1f,0x00 -+// 15088 㫰 ; -+,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x26,0x22,0x22,0x22,0x26,0x20,0x00,0x01,0x00,0x00,0x20,0x00,0x04,0x04,0x84,0x04,0x04,0xa4,0x00,0x04,0x10,0x08,0x84,0x83,0x00 -+// 15089 㫱 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x0d,0x08,0x02,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0xcc,0x00,0x42,0x00,0x00,0x02,0x02,0x60,0x00 -+// 15090 㫲 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x01,0x14,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x11,0x00,0x04,0x08,0x10,0x11,0x10,0x10,0x10,0x30,0x00 -+// 15091 㫳 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x10,0x12,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x18,0x06,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15092 㫴 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x2c,0x39,0x30,0x24,0x84,0x00,0x10,0x10,0x10,0x10,0x30,0x00 -+// 15093 㫵 ; -+,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x4a,0x48,0x48,0x49,0x48,0x48,0x48,0x48,0x00 -+// 15094 㫶 ; -+,0x00,0x00,0x00,0x14,0x04,0x04,0x04,0x05,0x06,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x13,0x10,0x12,0x12,0x12,0x12,0x16,0x10,0x00 -+// 15095 㫷 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x0c,0x0b,0x08,0x08,0x08,0x08,0x00 -+// 15096 㫸 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x24,0x25,0x24,0x24,0x24,0x20,0x20,0x20,0x60,0x1f,0x00 -+// 15097 㫹 ; -+,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x09,0x01,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x08,0x40,0x41,0x40,0x40,0x40,0x00,0x00,0x00 -+// 15098 㫺 ; -+,0x00,0x00,0x04,0x04,0x00,0x04,0x04,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x10,0xa6,0x08,0x10,0x20,0x02,0x04,0x04,0x0c,0x04,0x04,0x0c,0x00 -+// 15099 㫻 ; -+,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x14,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x30,0x28,0x44,0x82,0x01,0x00,0x02,0x02,0x4a,0x4a,0x02,0x02,0x06,0x00 -+// 15100 㫼 ; -+,0x00,0x00,0x00,0x15,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x44,0x40,0x50,0x40,0x40,0x50,0x50,0x50,0x50,0x50,0x42,0x00 -+// 15101 㫽 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x05,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x10,0x92,0x58,0x10,0x94,0x13,0x10,0x30,0x00 -+// 15102 㫾 ; -+,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x10,0x10,0x00,0x01,0x00,0x00,0x10,0x12,0x92,0x50,0x10,0x83,0x00,0x2c,0x00,0x00,0x28,0x00,0x00,0x06,0x00 -+// 15103 㫿 ; -+,0x00,0x00,0x00,0x16,0x00,0x01,0x00,0x16,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x88,0x90,0x90,0x90,0x90,0x90,0x92,0x90,0x90,0x90,0x82,0x80,0x00 -+// 15104 㬀 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x04,0x44,0x00,0x04,0x08,0x10,0x10,0x10,0x10,0x30,0x00 -+// 15105 㬁 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x08,0x00,0x10,0x04,0x00,0x18,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x00,0x04,0x20,0x40,0x08,0x06,0x00,0x04,0x04,0x04,0x84,0x00 -+// 15106 㬂 ; -+,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x25,0x25,0x25,0x25,0x21,0x01,0x01,0x00,0x00,0x00,0x92,0x90,0x94,0x90,0x94,0x10,0x12,0x10,0x14,0x66,0x00,0x00,0x02,0x00 -+// 15107 㬃 ; -+,0x00,0x00,0x08,0x08,0x08,0x01,0x04,0x00,0x04,0x00,0x04,0x00,0x08,0x01,0x06,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0c,0x00,0x04,0x04,0x80,0x84,0x88,0x30,0x0e,0x00 -+// 15108 㬄 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x02,0x10,0x11,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x60,0x00,0x90,0x90,0x92,0x12,0x30,0x00 -+// 15109 㬅 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x09,0x09,0x09,0x00,0x01,0x01,0x02,0x02,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x06,0x00,0x24,0x00,0x00,0x00,0x08,0x08,0x10,0x00 -+// 15110 㬆 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x82,0x82,0x92,0x90,0x98,0x88,0x87,0x82,0x82,0x80,0x80,0x80,0x82,0x00 -+// 15111 㬇 ; -+,0x00,0x00,0x00,0x14,0x04,0x05,0x04,0x14,0x04,0x04,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x40,0x48,0x80,0x00,0xb6,0x00,0x00,0x20,0x30,0x20,0x48,0x84,0x03,0x00 -+// 15112 㬈 ; -+,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x14,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x86,0x80,0x84,0x80,0x84,0x80,0x00,0x2a,0x0a,0x0a,0x0a,0x0a,0x0b,0x00 -+// 15113 㬉 ; -+,0x00,0x00,0x00,0x04,0x05,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x30,0x20,0x22,0x02,0x02,0x02,0x02,0x20,0x22,0x20,0x48,0x84,0x03,0x00 -+// 15114 㬊 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x08,0x88,0x10,0x00,0x00,0x00,0x08,0x18,0x60,0x9e,0x00 -+// 15115 㬋 ; -+,0x00,0x00,0x04,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x01,0x01,0x00,0x00,0x00,0x84,0x04,0x08,0x00,0x20,0x52,0x00,0x11,0x18,0x10,0x14,0x22,0x41,0x00 -+// 15116 㬌 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x41,0x00,0x08,0x08,0x08,0xc8,0x40,0x44,0xc2,0x00 -+// 15117 㬍 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x04,0x00,0x30,0x00,0x92,0xb4,0x00,0xb4,0x00,0x04,0x04,0x40,0x00,0x08,0x00 -+// 15118 㬎 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x01,0x0a,0x04,0x01,0x18,0x00,0x01,0x11,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x08,0x00,0x2c,0x00,0x22,0xa2,0x00,0x12,0x02,0x00 -+// 15119 㬏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x01,0x05,0x01,0x01,0x01,0x00,0x00,0x02,0x00,0x04,0x44,0x44,0x44,0x02,0x02,0x0a,0x02,0x12,0x12,0x12,0x06,0x00 -+// 15120 㬐 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x24,0x00,0x00,0x00,0x00,0x02,0x28,0x08,0x8a,0x88,0x08,0x01,0x00,0x86,0x80,0x84,0x80,0x80,0x86,0x00 -+// 15121 㬑 ; -+,0x00,0x00,0x00,0x24,0x24,0x25,0x25,0x24,0x24,0x24,0x24,0x25,0x20,0x00,0x00,0x00,0x00,0x80,0x01,0x0a,0x0a,0x28,0x28,0x08,0x28,0x09,0x09,0xcb,0x08,0x08,0x88,0x00 -+// 15122 㬒 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x14,0x04,0x04,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x41,0x40,0x00,0x20,0x22,0x40,0x86,0x28,0x08,0x48,0x48,0x48,0x08,0x00 -+// 15123 㬓 ; -+,0x00,0x00,0x00,0x14,0x05,0x05,0x05,0x15,0x04,0x04,0x04,0x14,0x24,0x01,0x02,0x00,0x00,0x01,0x08,0x08,0x6a,0x0a,0x6a,0x00,0x02,0x00,0x01,0x10,0x94,0x12,0x31,0x00 -+// 15124 㬔 ; -+,0x00,0x00,0x00,0x24,0x24,0x24,0x25,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x22,0xa6,0x22,0x2a,0x20,0x30,0x48,0x97,0x60,0x18,0x20,0x0c,0x30,0x00 -+// 15125 㬕 ; -+,0x00,0x00,0x01,0x28,0x20,0x20,0x21,0x29,0x21,0x21,0x21,0x29,0x21,0x01,0x01,0x00,0x00,0x00,0x14,0x10,0x8a,0x88,0x08,0x88,0x48,0x08,0x09,0x08,0x08,0x08,0x08,0x00 -+// 15126 㬖 ; -+,0x00,0x00,0x00,0x05,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x48,0x29,0x22,0x30,0x0c,0x0c,0x13,0x00,0x84,0x00,0x00,0x84,0x84,0x00 -+// 15127 㬗 ; -+,0x00,0x00,0x04,0x24,0x25,0x25,0x24,0x2e,0x25,0x24,0x24,0x24,0x20,0x02,0x02,0x00,0x00,0x88,0x88,0xaa,0x28,0x29,0x48,0x48,0x00,0x12,0x23,0x00,0x00,0x49,0x49,0x00 -+// 15128 㬘 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x04,0x22,0x02,0x00,0x00,0x00,0x00,0x32,0x00,0x36,0x24,0x20,0x02,0x0a,0x02,0x32,0x02,0x8a,0x8a,0x82,0x00 -+// 15129 㬙 ; -+,0x00,0x00,0x00,0x24,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x24,0x22,0x00,0x00,0x00,0x00,0x1c,0x00,0x24,0x80,0x08,0x08,0x0c,0x04,0x05,0x01,0x05,0xaa,0x82,0x06,0x00 -+// 15130 㬚 ; -+,0x00,0x00,0x00,0x14,0x04,0x04,0x05,0x04,0x05,0x05,0x05,0x05,0x15,0x01,0x01,0x00,0x00,0x84,0x04,0x28,0x89,0x0a,0x22,0x22,0x22,0x22,0x24,0x24,0x24,0x2a,0x61,0x00 -+// 15131 㬛 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x02,0x00,0x00,0x00,0x20,0x50,0x88,0x0e,0x01,0x84,0x84,0x00,0x42,0x02,0x0a,0x42,0x12,0x46,0x00 -+// 15132 㬜 ; -+,0x00,0x00,0x04,0x08,0x11,0x00,0x05,0x04,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x10,0x22,0x00,0x0a,0x08,0x09,0x00,0x0c,0x00,0x08,0x00,0x08,0x00 -+// 15133 㬝 ; -+,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x44,0x24,0x00,0x93,0x54,0x30,0x93,0x00,0x02,0x82,0x86,0x82,0x82,0x86,0x00 -+// 15134 㬞 ; -+,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x14,0x00,0x00,0x01,0x16,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x00,0x84,0x84,0x84,0x00,0x81,0x10,0xa0,0x86,0xca,0x06,0x00 -+// 15135 㬟 ; -+,0x00,0x00,0x08,0x10,0x11,0x0b,0x09,0x05,0x15,0x15,0x01,0x09,0x01,0x02,0x02,0x00,0x00,0x00,0x04,0x00,0x4b,0x42,0x64,0x48,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x00 -+// 15136 㬠 ; -+,0x00,0x00,0x00,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x24,0x01,0x01,0x00,0x00,0x00,0x88,0xa8,0x0b,0x02,0x22,0x20,0x24,0x24,0x22,0x00,0x02,0x29,0x21,0x00 -+// 15137 㬡 ; -+,0x00,0x00,0x00,0x14,0x05,0x04,0x04,0x14,0x04,0x04,0x04,0x04,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0x00,0x00,0x20,0x40,0x86,0x10,0x04,0x04,0x00,0x10,0x10 -+// 15138 㬢 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x01,0x00,0x00,0x00,0x48,0x20,0x20,0x20,0x22,0x00,0x92,0x91,0x90,0x86,0x8c,0x8c,0x83,0x00 -+// 15139 㬣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0xc2,0xd2,0xc2,0xc3,0x02,0x02,0x6a,0x0a,0x22,0x02,0x02,0xc2,0x06,0x00 -+// 15140 㬤 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x05,0x20,0x00,0x02,0x00,0x00,0x02,0x02,0x82,0x02,0x82,0x04,0x28,0x5a,0x84,0x00,0x19,0x00,0x4a,0x49,0x00 -+// 15141 㬥 ; -+,0x00,0x00,0x08,0x08,0x00,0x04,0x08,0x08,0x00,0x03,0x02,0x01,0x00,0x01,0x04,0x00,0x00,0x04,0x04,0x04,0x40,0x40,0x00,0xc4,0x80,0x00,0x58,0x47,0xc0,0x40,0x4c,0x00 -+// 15142 㬦 ; -+,0x00,0x00,0x00,0x14,0x04,0x04,0x05,0x14,0x04,0x04,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x48,0x4a,0x48,0x50,0x92,0x90,0x90,0x90,0x90,0x00,0x46,0x0c,0x30,0x06,0x00 -+// 15143 㬧 ; -+,0x00,0x00,0x08,0x08,0x00,0x08,0x10,0x00,0x03,0x06,0x03,0x00,0x06,0x02,0x08,0x00,0x00,0x04,0x04,0x04,0x00,0xc4,0x00,0x80,0x80,0x88,0x63,0x08,0xc4,0x40,0x44,0x80 -+// 15144 㬨 ; -+,0x00,0x00,0x00,0x28,0x28,0x28,0x29,0x29,0x2b,0x2b,0x29,0x29,0x20,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0xce,0x48,0x5a,0x79,0x48,0x48,0x40,0x40,0x84,0x00 -+// 15145 㬩 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x20,0x02,0x00,0x00,0x00,0x84,0x86,0x84,0xc6,0x84,0x84,0x84,0x02,0x00,0x02,0x00,0x92,0x81,0xfc,0x00 -+// 15146 㬪 ; -+,0x00,0x00,0x04,0x04,0x00,0x11,0x11,0x11,0x00,0x10,0x11,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x22,0x22,0x00,0x42,0x02,0x10,0x10,0x10,0x12,0x00 -+// 15147 㬫 ; -+,0x00,0x00,0x01,0x01,0x00,0x05,0x05,0x15,0x00,0x11,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x22,0x20,0x08,0x2c,0x28,0x2f,0x00,0x02,0x0c,0x00,0x08,0x00,0x08,0x00 -+// 15148 㬬 ; -+,0x00,0x00,0x01,0x15,0x05,0x05,0x05,0x14,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x90,0x92,0x90,0x92,0x90,0x90,0x90,0x80,0x00 -+// 15149 㬭 ; -+,0x00,0x00,0x00,0x14,0x04,0x05,0x05,0x15,0x04,0x05,0x05,0x05,0x05,0x01,0x01,0x00,0x00,0x0e,0x00,0x84,0x00,0x2a,0x0a,0x02,0x22,0x22,0x22,0x22,0x0a,0x62,0xa6,0x00 -+// 15150 㬮 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x09,0x09,0x04,0x14,0x14,0x05,0x04,0x00,0x01,0x00,0x00,0x04,0x04,0x04,0x04,0x10,0xa4,0x22,0x20,0xa6,0xa0,0x22,0xa0,0x20,0xa0,0x00 -+// 15151 㬯 ; -+,0x00,0x00,0x00,0x25,0x21,0x21,0x21,0x20,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x00,0x20,0x02,0x00,0x02,0x02,0x02,0x00,0x82,0xaa,0xaa,0xae,0xaa,0xa2,0xa3,0x00 -+// 15152 㬰 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x00,0x08,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xc6,0x00,0xc4,0xc4,0x80,0x84,0xc0,0x20,0x10,0x08,0x07,0x00 -+// 15153 㬱 ; -+,0x00,0x00,0x00,0x14,0x00,0x0a,0x0a,0x03,0x10,0x04,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x08,0x08,0x48,0x08,0x18,0x00,0x25,0x00,0x0c,0x00,0x08,0x00,0x00,0x08,0x00 -+// 15154 㬲 ; -+,0x00,0x00,0x05,0x04,0x05,0x05,0x15,0x05,0x05,0x05,0x04,0x18,0x0c,0x03,0x00,0x00,0x00,0x00,0x04,0x24,0x00,0x00,0x20,0x42,0x02,0x6a,0x4a,0x4a,0x6b,0x00,0x7e,0x00 -+// 15155 㬳 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x02,0x00,0x00,0x40,0x40,0x40,0x92,0x90,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 15156 㬴 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x20,0x20,0x22,0x24,0x20,0x20,0x20,0x25,0x00,0x20,0x44,0x02,0x01,0x00 -+// 15157 㬵 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x10,0x01,0x00,0x40,0x82,0x01,0x04,0x08,0x28,0x10,0x30,0x4c,0x06,0x00 -+// 15158 㬶 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x10,0x50,0x52,0x90,0x10,0x11,0x00,0x02,0x02,0x02,0x02,0x46,0x82,0x00 -+// 15159 㬷 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x83,0x91,0x90,0x96,0x90,0x90,0xb8,0x94,0x90,0x90,0x90,0x83,0x80,0x00 -+// 15160 㬸 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x40,0x40,0x4d,0x40,0x00,0x48,0x4a,0x8c,0x88,0x08,0x18,0x08,0x09,0x0f,0x00 -+// 15161 㬹 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x20,0x20,0x48,0x00,0x12,0x12,0x13,0x12,0x12,0x12,0x10,0x10,0x10,0x20,0x00 -+// 15162 㬺 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x10,0x14,0x40,0x24,0x20,0x42,0x40,0x14,0xb7,0x84,0x84,0x94,0x84,0x00,0x00 -+// 15163 㬻 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x07,0x00,0x00,0x00,0x40,0x4c,0x40,0x10,0x12,0x00,0xc4,0x00,0x54,0x44,0x84,0x84,0x07,0x00 -+// 15164 㬼 ; -+,0x00,0x04,0x08,0x09,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x40,0x40,0xc2,0x40,0x44,0x40,0x40,0x20,0x46,0x04,0x18,0x18,0x07,0x00 -+// 15165 㬽 ; -+,0x00,0x00,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x04,0x04,0x24,0x24,0x04,0x00,0x00,0x00,0x44,0x44,0x44,0x20,0x2a,0x2a,0x00,0x41,0x40,0x46,0x04,0x04,0x1c,0x00 -+// 15166 㬾 ; -+,0x00,0x00,0x14,0x11,0x12,0x16,0x15,0x19,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x24,0x27,0x00,0x04,0x08,0x96,0x00,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 15167 㬿 ; -+,0x00,0x00,0x14,0x14,0x14,0x15,0x15,0x15,0x14,0x14,0x14,0x05,0x04,0x04,0x04,0x00,0x00,0x84,0x44,0x10,0x09,0x2a,0x22,0x22,0x22,0x08,0x84,0x84,0x8c,0x82,0x81,0x00 -+// 15168 㭀 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x00,0x88,0x88,0x00,0x42,0x00,0x10,0x10,0x54,0x94,0xd2,0x10,0x10,0x11,0x00 -+// 15169 㭁 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x0c,0x0b,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x28,0x0a,0x42,0x42,0x42,0x02,0x82,0x02,0x0c,0x00 -+// 15170 㭂 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x50,0x50,0x12,0x92,0x11,0x11,0x10,0x10,0x30,0x00 -+// 15171 㭃 ; -+,0x00,0x04,0x00,0x00,0x04,0x0c,0x08,0x0c,0x09,0x10,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x18,0x10,0x20,0x24,0x44,0xe8,0x10,0x10,0x20,0x40,0x02,0xe3,0x00,0x00 -+// 15172 㭄 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x0e,0x1b,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x44,0x54,0x44,0x44,0x44,0x44,0x42,0x43,0x41,0x00 -+// 15173 㭅 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x1a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00 -+// 15174 㭆 ; -+,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x10,0x12,0x02,0x02,0x4c,0x42,0x00,0xc4,0x80,0x00,0x08,0x06,0x02,0x00 -+// 15175 㭇 ; -+,0x00,0x04,0x00,0x00,0x0d,0x08,0x0c,0x0e,0x0a,0x10,0x00,0x20,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x20,0x40,0x02,0xe1,0x00,0x48,0x48,0x48,0x48,0x08,0x89,0x0f,0x00 -+// 15176 㭈 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x25,0x20,0x20,0x48,0x44,0x86,0x02,0x00 -+// 15177 㭉 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x01,0x01,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x40,0x40,0xc0,0x40,0x40,0x50,0x48,0x46,0x42,0x40,0x00 -+// 15178 㭊 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x0e,0x1a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x4a,0x40,0x40,0x44,0x44,0x04,0x84,0x84,0x04,0x04,0x00 -+// 15179 㭋 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x0c,0x0e,0x05,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00 -+// 15180 㭌 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x0c,0x0e,0x12,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x50,0x10,0x90,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x00 -+// 15181 㭍 ; -+,0x00,0x00,0x00,0x00,0x02,0x04,0x0c,0x00,0x08,0x00,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x20,0x22,0x20,0x20,0x20,0x3f,0x00,0x42,0xe0,0x00,0x18,0x06,0x02,0x00 -+// 15182 㭎 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x82,0x82,0x8a,0x8a,0x92,0x9a,0xaa,0x86,0x82,0x82,0x82,0x86,0x00 -+// 15183 㭏 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x32,0x20,0x20,0x30,0x20,0x32,0x22,0x22,0x22,0x22,0x24,0x20,0x00 -+// 15184 㭐 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x80,0x82,0x20,0x10,0x0e,0x02,0x42,0x00,0xe0,0x00,0x08,0x06,0x40,0x00 -+// 15185 㭑 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x34,0x00,0x00,0x33,0x30,0x68,0x40,0x84,0x02,0x03,0x00,0x00 -+// 15186 㭒 ; -+,0x00,0x04,0x00,0x00,0x00,0x0c,0x08,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x82,0x82,0x82,0x82,0x80,0x80,0x82,0x82,0x82,0x82,0x82,0x80,0x00 -+// 15187 㭓 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x20,0x42,0xe1,0x00,0x24,0x24,0x65,0x04,0x44,0x44,0x84,0x04,0x00 -+// 15188 㭔 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x1a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x10,0x12,0x52,0x54,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 15189 㭕 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x16,0x10,0x10,0x10,0x30,0x30,0x20,0x40,0x00,0x82,0x80,0x00 -+// 15190 㭖 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x18,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x48,0x48,0x4a,0x88,0x89,0x88,0x88,0x88,0x88,0x88,0x80,0x84,0x83,0x83,0x00 -+// 15191 㭗 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x82,0x80,0x00,0x18,0x06,0x02,0x00,0x2c,0x24,0x24,0x24,0x27,0x00 -+// 15192 㭘 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x30,0x20,0x48,0x04,0x83,0x00,0x00,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 15193 㭙 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x14,0x10,0x10,0x11,0x00,0x08,0x0c,0x08,0x48,0x08,0x08,0x18,0x00 -+// 15194 㭚 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x40,0x40,0x00,0x0c,0x40,0x42,0x54,0x50,0x48,0x48,0x64,0x42,0x00 -+// 15195 㭛 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x1a,0x18,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x0e,0x80,0x80,0x88,0xa0,0xa2,0xa8,0xa8,0x28,0x24,0x24,0x33,0x20,0x00 -+// 15196 㭜 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x0a,0x18,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x0a,0x0a,0x09,0x08,0x48,0x4a,0x6a,0x4c,0x4c,0x0c,0x94,0x03,0x01,0x00 -+// 15197 㭝 ; -+,0x00,0x04,0x04,0x07,0x04,0x0d,0x04,0x04,0x00,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x34,0x52,0x10,0x80,0x80,0x98,0x00,0x00,0x01,0x0f,0x00 -+// 15198 㭞 ; -+,0x00,0x00,0x00,0x00,0x0a,0x08,0x08,0x0e,0x0a,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x52,0x91,0x15,0x18,0x30,0x00,0x20,0x22,0x22,0x42,0x02,0x0c,0x00 -+// 15199 㭟 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x03,0x02,0x04,0x08,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x32,0x00,0x00,0x0c,0xcf,0x80,0x60,0x18,0x04,0x00,0x00 -+// 15200 㭠 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x1a,0x18,0x08,0x28,0x08,0x08,0x08,0x00,0x00,0x10,0x50,0x50,0x92,0x90,0x10,0x13,0x48,0x48,0x48,0x48,0x88,0x89,0x0f,0x00 -+// 15201 㭡 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x0a,0x18,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x82,0x80,0x88,0xa8,0x90,0x98,0x8c,0x84,0x80,0x82,0x82,0x00 -+// 15202 㭢 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x08,0x28,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0xa1,0xa0,0xa0,0xa0,0xb0,0xa0,0xa0,0xa0,0x20,0x20,0x20,0x20,0x22,0x00 -+// 15203 㭣 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0x02,0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x02,0x06,0x00 -+// 15204 㭤 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0e,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x84,0x84,0x94,0x84,0x8c,0x80,0x81,0x00,0x08,0x02,0x02,0x0e,0x00 -+// 15205 㭥 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x44,0x00,0x82,0x02,0x12,0x12,0x12,0x12,0x12,0x20,0x42,0x01,0x00 -+// 15206 㭦 ; -+,0x00,0x08,0x08,0x08,0x0a,0x09,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x83,0x00,0x1c,0x20,0x20,0x22,0x30,0x20,0x20,0x20,0x1f,0x00 -+// 15207 㭧 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x04,0x08,0x00,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0x80,0x80,0x08,0x48,0x09,0x08,0x48,0x08,0x00,0xc0,0x00,0x18,0x07,0x00,0x00 -+// 15208 㭨 ; -+,0x00,0x08,0x08,0x08,0x08,0x09,0x09,0x0c,0x1c,0x18,0x08,0x29,0x08,0x08,0x08,0x00,0x00,0x00,0x21,0x08,0x0a,0x08,0x08,0xe8,0xc8,0x88,0x09,0x08,0x0a,0x08,0x48,0x00 -+// 15209 㭩 ; -+,0x00,0x00,0x04,0x00,0x04,0x0c,0x0c,0x0e,0x08,0x18,0x10,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1e,0x00,0x02,0x54,0x40,0x04,0x05,0x04,0x44,0x24,0x04,0x04,0x0c,0x00 -+// 15210 㭪 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x14,0x11,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x96,0x00 -+// 15211 㭫 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1f,0x19,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x94,0x94,0x94,0x94,0x50,0x59,0x10,0x12,0x10,0x10,0x10,0x00,0x00 -+// 15212 㭬 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x20,0x40,0x06,0x28,0x30,0x10,0x14,0x2c,0x0a,0x03,0x10,0x30,0x00 -+// 15213 㭭 ; -+,0x00,0x08,0x09,0x09,0x0b,0x09,0x08,0x1a,0x18,0x08,0x28,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x21,0x20,0x28,0x28,0x08,0x88,0x88,0xa8,0xa8,0x28,0x20,0x20,0x46,0x00 -+// 15214 㭮 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0e,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x42,0x14,0x80,0x84,0x52,0x00,0x30,0x20,0x42,0x46,0x24,0x08,0x30,0x40,0x00 -+// 15215 㭯 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0e,0x1a,0x08,0x28,0x09,0x0b,0x08,0x08,0x00,0x00,0x00,0x01,0x20,0x24,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x20,0x25,0x20,0x00 -+// 15216 㭰 ; -+,0x00,0x02,0x02,0x0a,0x0a,0x0a,0x1c,0x00,0x00,0x04,0x04,0x04,0x01,0x04,0x00,0x00,0x00,0x20,0x24,0xa0,0x20,0x22,0x00,0x42,0x40,0x44,0x44,0xc4,0x48,0x48,0x46,0x00 -+// 15217 㭱 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1a,0x18,0x08,0x28,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x02,0x00,0x02,0x42,0x42,0x5a,0x42,0x5a,0x00,0x00,0x00,0x00,0x83,0x00 -+// 15218 㭲 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x64,0x42,0x92,0x10,0x28,0x44,0x43,0x87,0x04,0x04,0x04,0x44,0x44,0x00 -+// 15219 㭳 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x22,0x2c,0x2c,0x28,0x10,0x20,0x4c,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 15220 㭴 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x42,0x4a,0x44,0x44,0x4a,0x41,0x10,0x10,0x10,0x10,0x10,0x01,0x00 -+// 15221 㭵 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x18,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x40,0x00,0x83,0x80,0xa8,0x28,0x28,0x2a,0x2a,0x2a,0x8a,0x02,0x06,0x00 -+// 15222 㭶 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0e,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x65,0x04,0x10,0x00,0x20,0x20,0x22,0x02,0x42,0x04,0x84,0x0c,0x00 -+// 15223 㭷 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x92,0x82,0x10,0x33,0x20,0x22,0x42,0x02,0x04,0x00 -+// 15224 㭸 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x40,0x48,0x88,0x00,0xb2,0xa2,0xa2,0xb0,0x20,0x44,0x40,0x81,0x0f,0x00 -+// 15225 㭹 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x48,0x40,0x40,0x48,0x40,0x02,0x14,0x44,0x48,0x40,0x42,0xb9,0x81,0x00 -+// 15226 㭺 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x09,0x0a,0x18,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x42,0x40,0xa8,0x24,0xa7,0xa4,0xa4,0xa4,0xa4,0x20,0x21,0x3f,0x00 -+// 15227 㭻 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x09,0x1d,0x1b,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x10,0x12,0x94,0x10,0x10,0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x06,0x00 -+// 15228 㭼 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x32,0x58,0x54,0x92,0x10,0x10,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 15229 㭽 ; -+,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x1d,0x1b,0x09,0x29,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x10,0x03,0x00,0x0c,0x48,0x48,0x49,0x48,0x48,0x40,0x44,0x43,0x09,0x00 -+// 15230 㭾 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1d,0x1b,0x09,0x29,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x83,0x00,0x82,0x00,0x00,0x42,0x42,0x5a,0x00,0x41,0x40,0x40,0x02,0x00 -+// 15231 㭿 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x80,0x20,0x0a,0x00,0x00,0x00,0x82,0x00,0x00,0x00 -+// 15232 㮀 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x06,0x00,0x10,0x16,0x52,0x12,0x12,0x16,0xd6,0x12,0x32,0x02,0x02,0x00 -+// 15233 㮁 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x0c,0x38,0x44,0x30,0x20,0x40,0x42,0xc2,0x42,0x42,0x42,0x42,0x46,0x00 -+// 15234 㮂 ; -+,0x00,0x00,0x04,0x06,0x06,0x04,0x06,0x06,0x02,0x04,0x18,0x01,0x02,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0x48,0x4f,0xc0,0x50,0x0c,0x40,0x00 -+// 15235 㮃 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0x18,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x18,0x10,0x13,0x30,0x50,0x96,0x01,0x20,0x64,0x44,0x08,0x1c,0x42,0x00 -+// 15236 㮄 ; -+,0x00,0x00,0x00,0x00,0x0a,0x08,0x0c,0x0e,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x82,0x02,0x22,0x42,0x4a,0x4a,0x82,0x12,0x16,0x00 -+// 15237 㮅 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x02,0x06,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xe0,0x10,0x0c,0x02,0x40,0x04,0x40,0x4c,0x40,0x44,0x40,0x42,0x00 -+// 15238 㮆 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0e,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x08,0x44,0x8b,0x08,0x12,0x10,0x14,0x10,0x10,0x10,0x00,0x00,0x00 -+// 15239 㮇 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x19,0x18,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x30,0x20,0x23,0x20,0x48,0x84,0x23,0x20,0x20,0x2a,0x29,0x20,0x60,0x00 -+// 15240 㮈 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x10,0x32,0x20,0x40,0x04,0x03,0x00,0x02,0x10,0x90,0x92,0x11,0x30,0x00 -+// 15241 㮉 ; -+,0x00,0x08,0x08,0x08,0x08,0x09,0x09,0x1d,0x1b,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x90,0x90,0x12,0x10,0x14,0x34,0x10,0x18,0x10,0x14,0x24,0x22,0x01,0x00 -+// 15242 㮊 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x1c,0x1c,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x05,0x84,0x8c,0xac,0x8c,0x92,0x91,0x81,0x80,0x80,0x80,0x00 -+// 15243 㮋 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x19,0x19,0x09,0x28,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x89,0x8a,0x0a,0x28,0x28,0x2a,0x28,0x29,0x2b,0x2a,0x28,0x28,0x00 -+// 15244 㮌 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x03,0x20,0x20,0x22,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x2a,0x02,0x00 -+// 15245 㮍 ; -+,0x00,0x00,0x01,0x00,0x09,0x09,0x01,0x09,0x01,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x20,0x00,0x04,0x24,0x24,0x24,0x04,0x08,0xc2,0x80,0x10,0x0c,0x02,0x00 -+// 15246 㮎 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x12,0x30,0x20,0x64,0x22,0x20,0x20,0x02,0x02,0x02,0x02,0x02,0x03,0x00 -+// 15247 㮏 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x10,0x38,0x30,0x54,0x93,0x00,0x00,0x00,0x10,0x10,0x92,0x12,0x30,0x00 -+// 15248 㮐 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x0c,0x0a,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x50,0x13,0x94,0x08,0x30,0x42,0x02,0x42,0x02,0x42,0x02,0x42,0x00 -+// 15249 㮑 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0e,0x19,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x10,0x52,0x12,0x12,0x52,0x12,0x12,0x12,0x02,0x00 -+// 15250 㮒 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x00,0x5a,0x02,0x02,0x02,0x02,0x00,0x00,0x20,0x00,0x00,0x00,0x00 -+// 15251 㮓 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x09,0x1c,0x1c,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x10,0x90,0xd0,0x52,0x12,0x08,0x10,0x2c,0x2c,0x04,0x04,0x85,0x00 -+// 15252 㮔 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x0c,0x0a,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x10,0x12,0x10,0x11,0x00 -+// 15253 㮕 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x12,0x20,0x22,0xaa,0xaa,0xaa,0x82,0x10,0x32,0x20,0x08,0x44,0x03,0x00 -+// 15254 㮖 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x44,0x44,0x44,0x54,0x10,0x92,0x92,0x92,0x92,0x10,0x13,0x10,0x10,0x00 -+// 15255 㮗 ; -+,0x00,0x00,0x01,0x00,0x00,0x0f,0x08,0x00,0x00,0x04,0x01,0x01,0x02,0x0c,0x00,0x00,0x00,0x00,0x10,0x10,0x22,0x88,0x04,0x04,0x08,0x00,0xc0,0x00,0x10,0x0c,0x02,0x00 -+// 15256 㮘 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x09,0x1d,0x19,0x19,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x28,0x48,0x09,0x02,0xb2,0x92,0x80,0x8c,0x8c,0x84,0x8c,0x92,0x01,0x00 -+// 15257 㮙 ; -+,0x00,0x08,0x08,0x08,0x0b,0x08,0x0c,0x0a,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xaa,0x2a,0x2a,0x2a,0x00,0x00,0x01,0x40,0x80,0x84,0x04,0x0c,0x38,0x00 -+// 15258 㮚 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x09,0x0a,0x08,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x40,0xc4,0x44,0x14,0xcc,0x14,0x0c,0x40,0xc2,0x80,0x10,0x0e,0x02,0x00 -+// 15259 㮛 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x0c,0x0a,0x18,0x08,0x08,0x09,0x09,0x0a,0x08,0x00,0x00,0x04,0x84,0x84,0x84,0x84,0x84,0x00,0x12,0x10,0x92,0x90,0x10,0x30,0x1e,0x00 -+// 15260 㮜 ; -+,0x00,0x08,0x08,0x09,0x0b,0x09,0x09,0x1d,0x1b,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x00,0x44,0x44,0x44,0x24,0x04,0x64,0x44,0x44,0x84,0x00,0x01,0x00 -+// 15261 㮝 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x08,0x0c,0x19,0x19,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x80,0x99,0x19,0x49,0x89,0x19,0x19,0x29,0x29,0x2b,0x28,0x28,0x08,0x00 -+// 15262 㮞 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x92,0x28,0x08,0x90,0x90,0x02,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 15263 㮟 ; -+,0x00,0x08,0x08,0x08,0x0c,0x09,0x09,0x1d,0x1b,0x19,0x29,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x80,0x0d,0x04,0x4c,0x4c,0x4a,0x52,0x40,0x61,0x00,0x00,0x00,0x00 -+// 15264 㮠 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0d,0x1a,0x18,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x08,0x6a,0x08,0x00,0x82,0x10,0x10,0x30,0x70,0x50,0x94,0x12,0x10,0x00 -+// 15265 㮡 ; -+,0x00,0x00,0x04,0x05,0x14,0x04,0x02,0x09,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x40,0x40,0x42,0x42,0x40,0x40,0x40,0x40,0xc0,0x60,0x50,0x46,0x40,0x00 -+// 15266 㮢 ; -+,0x00,0x08,0x08,0x08,0x0a,0x09,0x09,0x0d,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x84,0x84,0x04,0x00,0x20,0x22,0x08,0x00,0x18,0x10,0x14,0x22,0x43,0x00 -+// 15267 㮣 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x12,0x19,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x18,0x10,0x50,0x18,0x28,0x08,0x07,0x40,0xc0,0x40,0x58,0x46,0x40,0x00 -+// 15268 㮤 ; -+,0x00,0x00,0x00,0x10,0x12,0x01,0x02,0x0e,0x00,0x02,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x42,0x02,0xc8,0x84,0x08,0x1f,0x00,0x10,0x42,0xc0,0x00,0x08,0x02,0x00 -+// 15269 㮥 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x18,0x09,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x00,0x04,0xa2,0x20,0x20,0x40,0x86,0x07,0x24,0x24,0x24,0x24,0x04,0x00 -+// 15270 㮦 ; -+,0x00,0x08,0x08,0x08,0x0a,0x09,0x08,0x18,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x02,0x20,0x48,0x10,0x44,0xf2,0x10,0x92,0x13,0x20,0x00 -+// 15271 㮧 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x0a,0x08,0x00,0x00,0x20,0x00,0x84,0x84,0x84,0x84,0x82,0x80,0x81,0x00,0x0a,0x52,0x02,0x0c,0x00 -+// 15272 㮨 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x00,0x42,0x02,0x44,0x84,0x08,0x10,0x2c,0x03,0x00 -+// 15273 㮩 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x0a,0x0a,0x00,0x00,0x20,0x00,0x86,0x82,0x82,0x82,0x82,0x86,0x80,0x00,0x52,0x41,0x40,0x44,0x00 -+// 15274 㮪 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x0c,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x12,0x90,0x98,0x94,0x83,0x20,0x00,0x31,0x60,0x08,0x84,0x03,0x00,0x00 -+// 15275 㮫 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x08,0x0c,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x83,0x10,0x12,0x10,0x14,0x12,0x10,0x00,0x82,0x82,0x82,0x82,0x00 -+// 15276 㮬 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x0c,0x1a,0x08,0x28,0x08,0x08,0x09,0x08,0x00,0x00,0x08,0x40,0x04,0x22,0x00,0xc4,0x00,0x22,0x22,0xaa,0x22,0x2a,0x32,0x62,0x00 -+// 15277 㮭 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x0d,0x1b,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x06,0x00,0x10,0x12,0x00,0x28,0x10,0x10,0x16,0x10,0x10,0x02,0x00,0x00 -+// 15278 㮮 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x1c,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa1,0x05,0x81,0x89,0x82,0x82,0x3c,0x20,0x24,0x20,0x20,0x20,0x60,0x00 -+// 15279 㮯 ; -+,0x00,0x08,0x08,0x09,0x09,0x09,0x09,0x0d,0x19,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x02,0x06,0x20,0x00,0x30,0x10,0x1c,0x06,0x12,0x30,0x02,0x02,0x00 -+// 15280 㮰 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x1c,0x18,0x08,0x28,0x08,0x08,0x08,0x09,0x00,0x00,0x20,0x00,0x86,0x08,0x30,0x08,0x82,0x00,0x00,0x26,0x08,0x00,0x01,0x8f,0x00 -+// 15281 㮱 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x44,0x44,0x00,0x10,0x90,0x90,0x10,0x12,0x48,0x48,0x48,0x89,0x0f,0x00 -+// 15282 㮲 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x0c,0x0e,0x08,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x00,0xa0,0x6a,0x22,0x46,0x60,0x43,0x80,0x04,0x26,0x22,0x42,0x00 -+// 15283 㮳 ; -+,0x00,0x00,0x08,0x08,0x0c,0x09,0x08,0x1c,0x18,0x08,0x08,0x0a,0x0a,0x08,0x08,0x00,0x00,0x02,0x42,0x54,0x40,0x48,0x48,0x48,0x49,0x48,0x40,0x54,0x52,0x43,0xc1,0x00 -+// 15284 㮴 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0a,0x18,0x18,0x08,0x28,0x08,0x08,0x08,0x00,0x00,0x10,0x50,0x92,0x12,0xd2,0x12,0x12,0x12,0x10,0x04,0x08,0x38,0x30,0x07,0x00 -+// 15285 㮵 ; -+,0x00,0x00,0x08,0x00,0x0c,0x09,0x09,0x1d,0x11,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x80,0x10,0x00,0x12,0x12,0x52,0x52,0x53,0x52,0x52,0x02,0x82,0x06,0x00 -+// 15286 㮶 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x09,0x1d,0x19,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x8b,0x0a,0x4a,0x4a,0x6a,0x6a,0x2a,0xea,0x92,0x92,0x02,0x22,0x02,0x00 -+// 15287 㮷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x0a,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x21,0x40,0x49,0x84,0x48,0x41,0x3e,0x02,0x02,0x02,0x02,0x82,0x00 -+// 15288 㮸 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x06,0x94,0x82,0x08,0x08,0x88,0x88,0x88,0x94,0x82,0x80,0x80,0x3e,0x00 -+// 15289 㮹 ; -+,0x00,0x00,0x08,0x08,0x0a,0x09,0x0b,0x1c,0x18,0x08,0x28,0x08,0x08,0x0b,0x08,0x00,0x00,0x00,0x24,0x88,0x09,0x2a,0x32,0x02,0x82,0xa0,0x84,0x84,0x8c,0x82,0x01,0x00 -+// 15290 㮺 ; -+,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0x15,0x11,0x11,0x15,0x11,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0xd6,0x02,0x00,0x00,0x2a,0x22,0x22,0x22,0x02,0x00 -+// 15291 㮻 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x0e,0x1a,0x10,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x14,0x08,0x30,0x08,0x16,0x10,0x12,0x12,0x12,0x10,0x12,0xf1,0x00 -+// 15292 㮼 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x1a,0x18,0x08,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x10,0x10,0x82,0x02,0x82,0x00,0x91,0x11,0x55,0x11,0x3d,0x91,0x11,0x22,0x00 -+// 15293 㮽 ; -+,0x00,0x00,0x08,0x09,0x0d,0x09,0x0d,0x1d,0x19,0x09,0x28,0x08,0x0a,0x08,0x08,0x00,0x00,0x00,0x02,0x42,0x02,0x12,0xd3,0x00,0x42,0x02,0xc0,0x4c,0x0c,0x4c,0x43,0x00 -+// 15294 㮾 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x01,0x0d,0x08,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x02,0x46,0x00,0xc2,0x20,0x10,0x0e,0x02,0x00 -+// 15295 㮿 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x92,0x92,0x12,0x92,0x10,0x10,0xd6,0x10,0x56,0x10,0x11,0x10,0x10,0x00 -+// 15296 㯀 ; -+,0x00,0x00,0x00,0x00,0x1d,0x01,0x19,0x1d,0x15,0x11,0x20,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x90,0x10,0x00,0x01,0x44,0x44,0x55,0x54,0x44,0x14,0x24,0xac,0x03,0x00 -+// 15297 㯁 ; -+,0x00,0x00,0x08,0x08,0x0c,0x08,0x08,0x1c,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x40,0x00,0x02,0x14,0x00,0x40,0x40,0x42,0x82,0x02,0x02,0x02,0x00 -+// 15298 㯂 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x18,0x19,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x2c,0xad,0xac,0xac,0x23,0x01,0x11,0x10,0x92,0x92,0x92,0x96,0x10,0x00 -+// 15299 㯃 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0e,0x1a,0x18,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x12,0x30,0x5c,0x82,0x30,0x48,0x96,0x10,0x58,0x10,0x94,0x12,0x30,0x00 -+// 15300 㯄 ; -+,0x00,0x00,0x05,0x06,0x09,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x12,0x03,0x00,0x00,0x00,0x12,0x10,0x16,0x00,0x3c,0x00,0x02,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 15301 㯅 ; -+,0x00,0x00,0x08,0x09,0x0b,0x09,0x09,0x0d,0x19,0x19,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x10,0x00,0x10,0x4a,0x4a,0x5a,0x52,0x52,0x28,0x08,0x08,0x08,0x08,0x00 -+// 15302 㯆 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x0c,0x0a,0x18,0x18,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x24,0x20,0x80,0x80,0x88,0x4a,0x08,0x0a,0x08,0x08,0x01,0x00 -+// 15303 㯇 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x48,0x4a,0x40,0x4a,0x40,0x48,0x40,0x00,0x20,0x20,0x20,0x20,0x00,0x00 -+// 15304 㯈 ; -+,0x00,0x00,0x09,0x08,0x0a,0x08,0x09,0x1c,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x08,0x0a,0x08,0x0a,0x8a,0x0a,0x18,0x08,0x0a,0x08,0x88,0x00,0x3f,0x00 -+// 15305 㯉 ; -+,0x00,0x00,0x08,0x08,0x0b,0x09,0x0d,0x0b,0x19,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x14,0x00,0x22,0x04,0x20,0x1e,0x0c,0x10,0x14,0x35,0x10,0x10,0x10,0x00 -+// 15306 㯊 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x1a,0x08,0x28,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x10,0x10,0x50,0x10,0x52,0x00,0x82,0x80,0x83,0x0a,0x56,0x42,0x0e,0x00 -+// 15307 㯋 ; -+,0x00,0x10,0x12,0x14,0x10,0x11,0x04,0x04,0x04,0x0c,0x0c,0x05,0x15,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x52,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x22,0x01,0x00 -+// 15308 㯌 ; -+,0x00,0x00,0x08,0x09,0x08,0x08,0x08,0x0c,0x18,0x18,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x00,0x08,0x10,0x12,0x88,0x94,0x8c,0x96,0xa5,0x84,0x98,0x40,0x1e,0x00 -+// 15309 㯍 ; -+,0x00,0x00,0x08,0x08,0x0c,0x08,0x19,0x1c,0x18,0x09,0x29,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x48,0x51,0x51,0x46,0x44,0x40,0x42,0x42,0x42,0x52,0x42,0x42,0x44,0x00 -+// 15310 㯎 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x1c,0x18,0x08,0x29,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x80,0x80,0x28,0x08,0x0c,0x0c,0x0c,0x1a,0x52,0x21,0x20,0x40,0x00,0x00 -+// 15311 㯏 ; -+,0x00,0x00,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0xa4,0x24,0x27,0x86,0x84,0x98,0x02,0x00,0xc2,0x20,0x10,0x0e,0x02,0x00 -+// 15312 㯐 ; -+,0x00,0x00,0x12,0x10,0x10,0x12,0x12,0x16,0x10,0x10,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x20,0x54,0x92,0x02,0x42,0x42,0x42,0x00,0xc2,0xc0,0x10,0x0c,0x02,0x00 -+// 15313 㯑 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x1e,0x1a,0x08,0x28,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0xd0,0x00,0x10,0x80,0x10,0x00,0x31,0x22,0x28,0xa8,0xa4,0xa2,0xb1,0x00 -+// 15314 㯒 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0c,0x18,0x18,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x04,0x00,0x04,0x94,0x02,0x02,0x82,0x02,0x82,0x82,0x48,0x48,0x89,0x0f,0x00 -+// 15315 㯓 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x18,0x08,0x28,0x09,0x08,0x0a,0x08,0x00,0x00,0x20,0x50,0x48,0x8e,0x01,0x84,0x84,0x00,0x42,0x02,0x0a,0x42,0x12,0x46,0x00 -+// 15316 㯔 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x0c,0x08,0x01,0x01,0x04,0x00,0x00,0x00,0x30,0x80,0x84,0x84,0x0c,0x18,0x1a,0x18,0x0f,0x40,0xe0,0x50,0x4c,0x43,0x00 -+// 15317 㯕 ; -+,0x00,0x00,0x09,0x09,0x0d,0x09,0x19,0x1d,0x19,0x29,0x09,0x08,0x09,0x0a,0x08,0x00,0x00,0x00,0x43,0x48,0x48,0x48,0x4b,0x4a,0x4a,0x4a,0x72,0x12,0x32,0x22,0x02,0x00 -+// 15318 㯖 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x18,0x08,0x08,0x08,0x09,0x0a,0x08,0x00,0x00,0x10,0x10,0x10,0x00,0xea,0x0a,0x0a,0x02,0x02,0x00,0x50,0x01,0x44,0x7c,0x00 -+// 15319 㯗 ; -+,0x00,0x00,0x01,0x00,0x0d,0x01,0x19,0x1c,0x14,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x42,0x02,0x42,0x42,0x02,0x02,0x32,0x22,0x3a,0x06,0x02,0x02,0x06,0x00 -+// 15320 㯘 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1a,0x18,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0xe8,0x09,0x20,0x00,0x00,0x00,0x00,0x0c,0x2c,0x18,0x12,0x81,0x00 -+// 15321 㯙 ; -+,0x00,0x00,0x08,0x08,0x0c,0x08,0x09,0x1c,0x1d,0x19,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x84,0x04,0x28,0x89,0x02,0x22,0x02,0x22,0x22,0x24,0x24,0x24,0x2a,0x61,0x00 -+// 15322 㯚 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x08,0x1c,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0xcc,0x42,0x20,0x20,0x48,0x86,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 15323 㯛 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0d,0x18,0x18,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x02,0x42,0x40,0x42,0x00,0x02,0x00,0x00,0x41,0x00 -+// 15324 㯜 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x18,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x4f,0x40,0x10,0x12,0x00,0x40,0xc8,0x22,0x10,0x11,0x10,0x10,0x10,0x00 -+// 15325 㯝 ; -+,0x00,0x08,0x09,0x09,0x0d,0x09,0x09,0x1c,0x18,0x08,0x28,0x08,0x08,0x0b,0x0a,0x00,0x00,0x08,0x68,0x0a,0x12,0x22,0xc4,0x84,0x83,0x90,0x92,0x92,0x92,0x12,0x12,0x00 -+// 15326 㯞 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x1a,0x1c,0x1d,0x0b,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x00,0x83,0x00,0x40,0x02,0x80,0x11,0x01,0x51,0x01,0x51,0x81,0x01,0x02,0x00 -+// 15327 㯟 ; -+,0x00,0x00,0x00,0x06,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0x08,0x00,0x00,0x00,0x08,0x18,0x3c,0x02,0x00,0x18,0x10,0x00,0x40,0x4c,0x40,0x58,0xc6,0x00 -+// 15328 㯠 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x1e,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x00,0x20,0x48,0x10,0x23,0x48,0x04,0x80,0xb0,0x00,0x30,0x00,0x00,0x00 -+// 15329 㯡 ; -+,0x00,0x00,0x04,0x0c,0x05,0x04,0x04,0x0c,0x04,0x05,0x0e,0x04,0x15,0x24,0x04,0x00,0x00,0x00,0x10,0x20,0x22,0x42,0x6a,0x2a,0xaa,0x2a,0x22,0x26,0x20,0x20,0x3f,0x00 -+// 15330 㯢 ; -+,0x00,0x00,0x09,0x09,0x0b,0x09,0x08,0x0c,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x2a,0x22,0x0a,0x00,0xef,0x00,0x4a,0x48,0x48,0x49,0x40,0x86,0x02,0x00 -+// 15331 㯣 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x1c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0xca,0x08,0x40,0x46,0x86,0x24,0x04,0x08,0x00,0x70,0x48,0x06,0x00,0x00 -+// 15332 㯤 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x14,0x15,0x2c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x22,0x02,0x11,0x08,0x18,0x18,0x24,0x42,0x03,0x08,0x00 -+// 15333 㯥 ; -+,0x00,0x04,0x04,0x04,0x04,0x05,0x05,0x15,0x05,0x15,0x0c,0x0d,0x14,0x04,0x04,0x00,0x00,0x00,0x08,0x09,0x08,0x4a,0x48,0x4a,0x48,0x5a,0x18,0x28,0x0a,0x09,0x08,0x00 -+// 15334 㯦 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0e,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x4a,0x48,0x48,0x48,0x48,0x48,0x84,0x02,0x31,0x70,0x04,0x02,0x00,0x00 -+// 15335 㯧 ; -+,0x00,0x00,0x08,0x08,0x0c,0x08,0x18,0x1c,0x18,0x2a,0x0a,0x0a,0x0b,0x08,0x08,0x00,0x00,0x00,0x80,0x8b,0x88,0x8a,0x82,0x92,0x80,0x92,0x92,0x92,0x92,0x80,0x3e,0x00 -+// 15336 㯨 ; -+,0x00,0x08,0x08,0x08,0x0d,0x09,0x09,0x1c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x48,0x08,0x4a,0x0a,0x4a,0x00,0x84,0x40,0x39,0x70,0x40,0x04,0x03,0x00 -+// 15337 㯩 ; -+,0x00,0x00,0x03,0x06,0x01,0x00,0x08,0x1b,0x00,0x04,0x0c,0x0e,0x15,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x00,0x9a,0x12,0x52,0x50,0x51,0x11,0x10,0x26,0x06,0x03,0x00 -+// 15338 㯪 ; -+,0x00,0x00,0x08,0x08,0x0d,0x08,0x08,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x02,0x10,0x11,0x10,0x10,0x00,0x10,0x28,0x83,0x10,0x06,0x00,0x20,0x10,0x00 -+// 15339 㯫 ; -+,0x00,0x08,0x08,0x08,0x0b,0x09,0x09,0x19,0x19,0x09,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x20,0x32,0x20,0x01,0x20,0x00,0x1c,0x00,0x10,0x16,0x28,0x1a,0x49,0x18,0x00 -+// 15340 㯬 ; -+,0x00,0x00,0x00,0x06,0x0f,0x00,0x00,0x00,0x04,0x08,0x14,0x04,0x04,0x0c,0x01,0x00,0x00,0x00,0x12,0x10,0x34,0x52,0x00,0x20,0x24,0x24,0x20,0x20,0x22,0x20,0xfe,0x00 -+// 15341 㯭 ; -+,0x00,0x00,0x08,0x08,0x0a,0x09,0x08,0x08,0x1b,0x19,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x00,0x01,0x30,0x12,0x00,0x52,0x5a,0x52,0x10,0x32,0x22,0x46,0x00 -+// 15342 㯮 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0xaa,0x2a,0xaa,0x40,0x40,0xa2,0xa2,0xa2,0xaa,0x22,0x2e,0x02,0x06,0x00 -+// 15343 㯯 ; -+,0x00,0x00,0x00,0x00,0x0a,0x08,0x08,0x0e,0x1a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x44,0x08,0x0c,0x17,0x10,0x92,0x10,0x82,0x82,0x82,0x82,0x40,0x82,0x00 -+// 15344 㯰 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x0c,0x0a,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0x10,0x10,0x10,0x02,0x00,0x00,0x44,0x44,0x00,0xc7,0x00 -+// 15345 㯱 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x10,0x04,0x04,0x00,0x04,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0xc0,0xc8,0x08,0x00,0x02,0x00,0xc2,0x00,0x00,0x42,0xe0,0x08,0x46,0x00 -+// 15346 㯲 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x0c,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x44,0x44,0x64,0x4c,0xee,0x45,0x00,0x04,0x00,0x12,0x10,0x90,0x12,0x30,0x00 -+// 15347 㯳 ; -+,0x00,0x08,0x09,0x09,0x0d,0x08,0x0d,0x0b,0x1a,0x1a,0x0a,0x0a,0x0a,0x08,0x08,0x00,0x00,0x04,0x48,0x68,0x49,0x02,0x02,0x22,0x22,0xa2,0xa4,0xa4,0x26,0x6a,0x41,0x00 -+// 15348 㯴 ; -+,0x00,0x00,0x08,0x08,0x0a,0x09,0x09,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x48,0x4a,0x48,0x10,0x02,0x02,0x44,0x30,0x48,0x86,0x85,0x84,0x84,0x84,0x00 -+// 15349 㯵 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x18,0x18,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x48,0x49,0x48,0x0c,0x20,0x20,0x20,0x22,0xb4,0x20,0x24,0x20,0x20,0x21,0x00 -+// 15350 㯶 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x18,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x92,0x8a,0x96,0x82,0x40,0x82,0x64,0x44,0x08,0x10,0x2c,0x03,0x00 -+// 15351 㯷 ; -+,0x00,0x00,0x08,0x08,0x0d,0x09,0x19,0x1d,0x19,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x80,0x90,0x12,0x10,0x04,0x04,0x18,0x08,0x1a,0x10,0x18,0x10,0x20,0x43,0x00 -+// 15352 㯸 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x1c,0x18,0x09,0x0a,0x09,0x09,0x09,0x09,0x00,0x00,0x20,0x20,0x24,0x27,0x24,0x24,0x22,0x00,0x4a,0x08,0x46,0x00,0x00,0x57,0x00 -+// 15353 㯹 ; -+,0x00,0x00,0x08,0x00,0x0f,0x02,0x1a,0x1c,0x14,0x10,0x00,0x01,0x02,0x00,0x08,0x00,0x00,0x00,0xc2,0x42,0xe2,0x43,0x62,0x02,0x0a,0x0a,0xc2,0x02,0x12,0x12,0x84,0x00 -+// 15354 㯺 ; -+,0x00,0x00,0x14,0x14,0x11,0x11,0x15,0x14,0x15,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x20,0x22,0x40,0x08,0x02,0x42,0x42,0x02,0x40,0xe0,0x80,0x18,0x06,0x02,0x00 -+// 15355 㯻 ; -+,0x00,0x00,0x00,0x04,0x04,0x10,0x01,0x03,0x01,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x40,0xc0,0xc8,0xc8,0x02,0x88,0x90,0xe0,0x08,0xc0,0x02,0xc0,0x10,0x06,0x00 -+// 15356 㯼 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x1c,0x18,0x08,0x28,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x4a,0x48,0x00,0x24,0x20,0x20,0x40,0x84,0x00,0x54,0x54,0x54,0x55,0x00 -+// 15357 㯽 ; -+,0x00,0x00,0x00,0x01,0x0b,0x08,0x08,0x0c,0x0a,0x18,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x03,0x02,0x92,0x92,0x80,0xc2,0xc2,0xc2,0x42,0x42,0x20,0x42,0x00 -+// 15358 㯾 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x18,0x1d,0x1c,0x08,0x28,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x10,0x1c,0x1e,0x52,0x5e,0xde,0x00,0x22,0x22,0x22,0x22,0x80,0x3e,0x00 -+// 15359 㯿 ; -+,0x00,0x08,0x08,0x08,0x0c,0x09,0x09,0x1d,0x19,0x28,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x90,0x20,0x24,0x90,0x04,0x14,0x34,0x04,0x00,0x24,0x24,0x2c,0x22,0x31,0x00 -+// 15360 㰀 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x09,0x1c,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x08,0x88,0xa5,0xc5,0xe9,0x02,0x30,0x48,0x94,0x02,0x50,0x10,0x02,0x20,0x00 -+// 15361 㰁 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x0c,0x0a,0x18,0x09,0x09,0x0b,0x09,0x09,0x09,0x00,0x00,0x00,0x22,0x40,0xc2,0x00,0x44,0x00,0x21,0x08,0x08,0x59,0x28,0x08,0x08,0x00 -+// 15362 㰂 ; -+,0x00,0x08,0x08,0x08,0x0b,0x08,0x08,0x08,0x1a,0x19,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x01,0x1c,0x14,0x50,0x78,0x54,0x13,0x96,0x90,0x94,0x90,0x96,0x00 -+// 15363 㰃 ; -+,0x00,0x00,0x08,0x02,0x0a,0x0a,0x1a,0x1e,0x14,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x06,0x48,0x4a,0x54,0x40,0x42,0x1d,0xc4,0x44,0x54,0x45,0xe4,0x0c,0x00 -+// 15364 㰄 ; -+,0x00,0x00,0x0a,0x0a,0x0e,0x0a,0x0a,0x1e,0x1a,0x0a,0x2a,0x08,0x09,0x0a,0x08,0x00,0x00,0x00,0x44,0x58,0x4a,0x4c,0x4c,0x43,0x4c,0x49,0x48,0x0a,0x4c,0x4c,0x03,0x00 -+// 15365 㰅 ; -+,0x00,0x08,0x08,0x09,0x0d,0x08,0x19,0x1d,0x19,0x29,0x29,0x09,0x09,0x0a,0x08,0x00,0x00,0x10,0x00,0x04,0x24,0x00,0x43,0x5c,0x40,0x6c,0x64,0x60,0x42,0x00,0x3f,0x00 -+// 15366 㰆 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x11,0x01,0x01,0x01,0x01,0x00,0x01,0x04,0x00,0x00,0x00,0x40,0xc0,0xc8,0xc8,0x40,0x23,0x20,0x20,0x20,0x00,0xc2,0x00,0x08,0x06,0x00 -+// 15367 㰇 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x1c,0x18,0x08,0x28,0x08,0x08,0x08,0x0a,0x00,0x00,0x48,0x48,0x4a,0x48,0xa8,0xa8,0xb8,0xa0,0xaa,0xa6,0xa4,0xa4,0x8b,0x01,0x00 -+// 15368 㰈 ; -+,0x00,0x00,0x06,0x06,0x09,0x00,0x00,0x08,0x00,0x0c,0x08,0x08,0x08,0x0c,0x11,0x00,0x00,0x08,0x1a,0x18,0x2a,0x08,0x20,0x22,0x24,0x24,0x24,0x24,0x22,0x20,0xfe,0x00 -+// 15369 㰉 ; -+,0x00,0x00,0x08,0x08,0x0d,0x09,0x1b,0x1c,0x18,0x09,0x28,0x08,0x09,0x0a,0x08,0x00,0x00,0x00,0x08,0x08,0x0a,0x08,0x49,0x10,0x03,0xc8,0x08,0x18,0x9a,0x29,0x08,0x00 -+// 15370 㰊 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x18,0x1d,0x10,0x20,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x84,0x85,0x90,0x80,0x0a,0x41,0x04,0x84,0xd1,0x8c,0x8c,0x12,0x01,0x00 -+// 15371 㰋 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x18,0x1c,0x10,0x01,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x80,0x88,0x90,0x90,0x92,0x90,0x92,0xd0,0xd2,0x80,0x0a,0x01,0x00 -+// 15372 㰌 ; -+,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x18,0x1a,0x09,0x29,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x11,0x10,0x10,0x10,0x10,0x92,0x10,0x92,0x10,0x90,0x10,0x92,0x00 -+// 15373 㰍 ; -+,0x00,0x00,0x01,0x01,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x20,0x20,0x24,0x84,0x20,0x20,0x20,0x20,0x3e,0x42,0xe0,0x10,0x0c,0x02,0x00 -+// 15374 㰎 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x09,0x1c,0x1a,0x08,0x28,0x09,0x09,0x09,0x09,0x00,0x00,0x10,0x10,0x92,0x10,0x92,0x92,0x90,0x90,0x90,0x00,0x28,0x28,0x00,0x02,0x00 -+// 15375 㰏 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x08,0x1c,0x1a,0x08,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x88,0x88,0x44,0x40,0x10,0x10,0x00,0x04,0x00,0x03,0x00,0x40,0x48,0x02,0x00 -+// 15376 㰐 ; -+,0x00,0x00,0x02,0x02,0x1a,0x12,0x1a,0x1e,0x12,0x22,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x89,0x10,0x14,0x44,0x80,0x93,0x90,0x72,0x12,0x10,0x12,0x22,0x9f,0x00 -+// 15377 㰑 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x1b,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x52,0x40,0x3c,0x00,0x2a,0x19,0xc9,0x00,0x11,0x30,0x54,0x13,0x10,0x00 -+// 15378 㰒 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x0c,0x1b,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x92,0x12,0x02,0xd2,0x02,0x03,0x00,0x08,0x10,0x11,0x10,0x10,0x20,0x00 -+// 15379 㰓 ; -+,0x00,0x08,0x08,0x09,0x0c,0x09,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x28,0x20,0x24,0x02,0x00,0x82,0x82,0x82,0x82,0x82,0x40,0x82,0x00 -+// 15380 㰔 ; -+,0x00,0x00,0x09,0x01,0x0d,0x0b,0x19,0x1c,0x12,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x06,0x12,0x00,0xd4,0xd5,0x00,0x84,0x08,0x10,0x30,0x07,0x00 -+// 15381 㰕 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x1c,0x18,0x09,0x28,0x08,0x09,0x08,0x08,0x00,0x00,0x48,0x42,0x20,0x20,0x21,0x40,0x8a,0xc9,0xea,0x0a,0x8c,0x4c,0x44,0xc3,0x00 -+// 15382 㰖 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x08,0x1c,0x11,0x10,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x88,0xa8,0x20,0x24,0x02,0x00,0x04,0x04,0x04,0x04,0x5c,0x40,0x89,0x00 -+// 15383 㰗 ; -+,0x00,0x00,0x08,0x09,0x09,0x09,0x0d,0x09,0x18,0x18,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x0a,0x08,0x48,0x4c,0x44,0xdc,0x43,0x84,0x84,0x84,0x00,0x00,0x3e,0x00 -+// 15384 㰘 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x1c,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x48,0x09,0x00,0x2c,0xca,0xc4,0x15,0x00,0x40,0x48,0x00,0x00,0x00 -+// 15385 㰙 ; -+,0x00,0x00,0x00,0x00,0x15,0x10,0x1b,0x1a,0x13,0x20,0x20,0x01,0x01,0x00,0x02,0x00,0x00,0x48,0x48,0x42,0x51,0x10,0xd0,0x56,0xd0,0x10,0x94,0x90,0x10,0x51,0x10,0x00 -+// 15386 㰚 ; -+,0x00,0x00,0x00,0x00,0x18,0x12,0x1a,0x16,0x10,0x20,0x02,0x02,0x03,0x02,0x02,0x00,0x00,0x08,0x8a,0x00,0xd4,0x90,0x75,0x54,0x90,0x95,0x14,0x10,0x50,0x15,0x50,0x00 -+// 15387 㰛 ; -+,0x00,0x08,0x08,0x08,0x08,0x09,0x08,0x1c,0x19,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x4a,0x48,0x00,0x74,0x8a,0x10,0xdd,0x40,0x31,0x70,0x00,0x06,0x01,0x00 -+// 15388 㰜 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x19,0x1c,0x15,0x01,0x20,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x81,0x84,0x85,0x21,0x09,0x01,0x09,0x01,0x29,0x31,0x00,0x29,0x01,0x00 -+// 15389 㰝 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x18,0x11,0x00,0x00,0x00,0x20,0x20,0x21,0x42,0x10,0x10,0x10,0x20,0x28,0x28,0x44,0x82,0x03,0x00 -+// 15390 㰞 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x3a,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x61,0x43,0x10,0x90,0x10,0x10,0x08,0x28,0x24,0x46,0x83,0x00 -+// 15391 㰟 ; -+,0x00,0x08,0x08,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x20,0x21,0x02,0x48,0x08,0x08,0x18,0x10,0x14,0x04,0xa2,0x81,0x00 -+// 15392 㰠 ; -+,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x10,0x13,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x21,0x02,0x40,0x10,0x10,0x10,0x18,0x28,0x24,0x46,0x83,0x00 -+// 15393 㰡 ; -+,0x00,0x00,0x04,0x04,0x08,0x09,0x10,0x09,0x09,0x09,0x09,0x09,0x11,0x11,0x00,0x00,0x00,0x00,0x10,0x20,0x21,0xa3,0xc0,0x10,0x10,0x10,0x18,0x28,0x24,0x46,0x03,0x00 -+// 15394 㰢 ; -+,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x01,0x11,0x11,0x00,0x00,0x00,0x10,0x90,0x10,0x21,0x23,0x10,0xd0,0x10,0x10,0x18,0x28,0x24,0x46,0x03,0x00 -+// 15395 㰣 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x0b,0x09,0x09,0x09,0x09,0x09,0x19,0x20,0x00,0x00,0x00,0x00,0x10,0x20,0x21,0x23,0xd0,0x50,0x10,0x10,0x18,0x28,0x24,0x46,0x83,0x00 -+// 15396 㰤 ; -+,0x00,0x00,0x00,0x01,0x01,0x15,0x15,0x15,0x15,0x15,0x01,0x01,0x01,0x03,0x00,0x00,0x00,0x10,0x90,0x20,0x23,0x02,0x48,0x10,0x10,0x10,0x18,0x00,0x24,0x02,0x03,0x00 -+// 15397 㰥 ; -+,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x14,0x10,0x10,0x00,0x00,0x00,0x00,0x10,0x20,0x21,0xa3,0x50,0x10,0x10,0x10,0x18,0x20,0x24,0x46,0x03,0x00 -+// 15398 㰦 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x0c,0x08,0x08,0x10,0x01,0x30,0x00,0x00,0x00,0x00,0x10,0x10,0x21,0x23,0x00,0x50,0x10,0x10,0x18,0x28,0x24,0x46,0x83,0x00 -+// 15399 㰧 ; -+,0x00,0x04,0x04,0x00,0x08,0x10,0x18,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x10,0x10,0x21,0xa3,0x90,0x50,0x10,0x10,0x18,0x28,0x24,0x46,0x03,0x00 -+// 15400 㰨 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x08,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x20,0x03,0x50,0x10,0x10,0x10,0x18,0x28,0x24,0x46,0x83,0x00 -+// 15401 㰩 ; -+,0x00,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x15,0x04,0x04,0x05,0x30,0x00,0x00,0x00,0x10,0x10,0x20,0x21,0x22,0x50,0x10,0x10,0x10,0x18,0x20,0xa4,0xc2,0x83,0x00 -+// 15402 㰪 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x30,0x00,0x00,0x10,0x10,0x10,0x21,0x23,0x02,0x50,0x10,0x10,0x18,0x28,0x24,0x46,0x83,0x00 -+// 15403 㰫 ; -+,0x00,0x00,0x04,0x14,0x15,0x14,0x04,0x04,0x0b,0x08,0x08,0x08,0x01,0x13,0x00,0x00,0x00,0x10,0x10,0x10,0x21,0x22,0x00,0x10,0x10,0x10,0x18,0x00,0x24,0x46,0x03,0x00 -+// 15404 㰬 ; -+,0x00,0x08,0x08,0x10,0x10,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0xa1,0xa3,0x80,0x90,0x90,0x90,0x98,0x80,0xa4,0x06,0x03,0x00 -+// 15405 㰭 ; -+,0x00,0x00,0x04,0x04,0x08,0x09,0x00,0x00,0x00,0x08,0x09,0x01,0x01,0x02,0x06,0x00,0x00,0x00,0x10,0x20,0x21,0x23,0xd0,0x10,0x90,0x10,0x18,0x28,0x24,0x46,0x83,0x00 -+// 15406 㰮 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x14,0x14,0x14,0x15,0x14,0x04,0x04,0x00,0x00,0x00,0x00,0x90,0x10,0x21,0x23,0x10,0x10,0x90,0x10,0x18,0xa8,0xa4,0x46,0x83,0x00 -+// 15407 㰯 ; -+,0x00,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0x01,0x0a,0x02,0x1c,0x00,0x00,0x00,0x00,0x90,0x10,0x21,0x23,0x10,0x50,0x10,0x10,0x08,0x28,0x24,0x46,0x83,0x00 -+// 15408 㰰 ; -+,0x00,0x04,0x04,0x04,0x06,0x04,0x14,0x14,0x0c,0x04,0x04,0x01,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x21,0xa1,0x80,0x90,0x50,0x10,0x18,0x08,0xa4,0x46,0x83,0x00 -+// 15409 㰱 ; -+,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x14,0x04,0x14,0x04,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x90,0x10,0x21,0x23,0x80,0x90,0x90,0x90,0x98,0xa8,0x24,0x46,0x83,0x00 -+// 15410 㰲 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x03,0x09,0x23,0x04,0x00,0x00,0x00,0x10,0x90,0x10,0x21,0x22,0x08,0x88,0x80,0x18,0x18,0x10,0x84,0xa2,0x43,0x00 -+// 15411 㰳 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x38,0x0a,0x0a,0x0a,0x0e,0x10,0x00,0x00,0x00,0x90,0x10,0x21,0x23,0x80,0xd0,0x90,0x90,0x18,0x00,0x24,0x06,0x43,0x00 -+// 15412 㰴 ; -+,0x00,0x00,0x04,0x00,0x00,0x09,0x08,0x02,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x10,0x10,0x90,0x21,0x23,0x00,0x90,0x10,0x10,0x18,0x08,0x24,0x46,0x03,0x00 -+// 15413 㰵 ; -+,0x00,0x00,0x04,0x00,0x00,0x09,0x19,0x16,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x90,0x21,0x21,0x02,0xd0,0x10,0x10,0x98,0x08,0x24,0x46,0x03,0x00 -+// 15414 㰶 ; -+,0x00,0x00,0x01,0x15,0x05,0x05,0x09,0x09,0x17,0x01,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x10,0x10,0xa1,0x63,0x00,0x48,0x10,0x98,0x18,0x10,0x24,0x22,0x43,0x00 -+// 15415 㰷 ; -+,0x00,0x00,0x00,0x08,0x09,0x11,0x15,0x05,0x25,0x11,0x09,0x09,0x11,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x31,0x22,0x08,0x88,0x18,0x18,0x18,0x14,0x24,0x42,0x83,0x00 -+// 15416 㰸 ; -+,0x00,0x00,0x04,0x09,0x00,0x01,0x00,0x06,0x10,0x10,0x14,0x04,0x05,0x08,0x10,0x00,0x00,0x10,0x10,0x90,0x61,0x22,0x08,0x80,0x98,0x98,0x98,0x14,0x24,0xa2,0x41,0x00 -+// 15417 㰹 ; -+,0x00,0x00,0x01,0x01,0x11,0x11,0x13,0x11,0x1b,0x0b,0x0b,0x0b,0x21,0x02,0x00,0x00,0x00,0x08,0x50,0x10,0x13,0x02,0x08,0x48,0x08,0x88,0x90,0x14,0x94,0x42,0x03,0x00 -+// 15418 㰺 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x10,0x10,0x14,0x10,0x11,0x10,0x11,0x10,0x10,0x00,0x00,0x00,0x50,0x50,0x51,0x61,0x00,0x40,0x50,0x18,0x98,0x80,0xa4,0x02,0x01,0x00 -+// 15419 㰻 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x11,0x10,0x10,0x00,0x01,0x08,0x02,0x30,0x00,0x00,0x00,0x10,0x10,0x31,0xa2,0x08,0x88,0x08,0x18,0x10,0x14,0x24,0x02,0x43,0x00 -+// 15420 㰼 ; -+,0x00,0x00,0x20,0x22,0x22,0x22,0x2a,0x2b,0x26,0x22,0x24,0x24,0x20,0x20,0x00,0x00,0x00,0x10,0x90,0x10,0x21,0x22,0x00,0x00,0x90,0x18,0x18,0x10,0xa4,0x02,0x83,0x00 -+// 15421 㰽 ; -+,0x00,0x00,0x10,0x00,0x04,0x04,0x00,0x06,0x02,0x04,0x05,0x03,0x00,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x83,0xa2,0x88,0x88,0x08,0x88,0x08,0x14,0x94,0x42,0x21,0x00 -+// 15422 㰾 ; -+,0x00,0x00,0x04,0x11,0x11,0x11,0x11,0x00,0x00,0x04,0x04,0x00,0x08,0x01,0x13,0x00,0x00,0x00,0x30,0x20,0x22,0x02,0x50,0x10,0x10,0x10,0x18,0x98,0x24,0x26,0x43,0x00 -+// 15423 㰿 ; -+,0x00,0x01,0x00,0x14,0x01,0x04,0x01,0x14,0x00,0x1c,0x04,0x04,0x04,0x09,0x00,0x00,0x00,0x00,0x10,0xa0,0x21,0x01,0x48,0x08,0x08,0x88,0x18,0x14,0x14,0x22,0x01,0x00 -+// 15424 㱀 ; -+,0x00,0x08,0x08,0x10,0x04,0x05,0x08,0x01,0x08,0x10,0x04,0x14,0x04,0x08,0x01,0x00,0x00,0x00,0x10,0xa0,0xa0,0xa3,0xd2,0x10,0x10,0x90,0x98,0x90,0xa4,0x22,0x03,0x00 -+// 15425 㱁 ; -+,0x00,0x00,0x14,0x14,0x04,0x04,0x04,0x00,0x01,0x00,0x04,0x04,0x14,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x20,0xa3,0x82,0x10,0x10,0x10,0x10,0x10,0xa4,0xa2,0x03,0x00 -+// 15426 㱂 ; -+,0x00,0x00,0x02,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x02,0x0a,0x22,0x02,0x00,0x00,0x00,0x08,0x10,0x11,0x80,0xe8,0x88,0x88,0x88,0x08,0x14,0x94,0x22,0x01,0x00 -+// 15427 㱃 ; -+,0x00,0x00,0x04,0x09,0x12,0x00,0x01,0x00,0x06,0x06,0x12,0x1a,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x90,0xa0,0x23,0x0a,0x08,0x08,0x08,0x88,0x90,0x94,0x82,0x83,0x00 -+// 15428 㱄 ; -+,0x00,0x00,0x15,0x15,0x0f,0x05,0x15,0x04,0x05,0x04,0x04,0x30,0x02,0x04,0x20,0x00,0x00,0x10,0x10,0x20,0x23,0x02,0x10,0x10,0x10,0x10,0x18,0x00,0xa4,0x42,0x83,0x00 -+// 15429 㱅 ; -+,0x00,0x00,0x00,0x06,0x06,0x00,0x20,0x00,0x00,0x11,0x11,0x01,0x09,0x02,0x18,0x00,0x00,0x00,0x10,0x10,0x83,0x22,0xc8,0x10,0x18,0x18,0x10,0x14,0x24,0x02,0x01,0x00 -+// 15430 㱆 ; -+,0x00,0x00,0x02,0x00,0x00,0x01,0x04,0x03,0x00,0x00,0x28,0x28,0x20,0x05,0x1c,0x00,0x00,0x00,0x90,0x00,0x62,0x02,0x10,0x90,0x90,0x18,0x98,0x90,0x24,0x02,0x03,0x00 -+// 15431 㱇 ; -+,0x00,0x00,0x04,0x04,0x05,0x15,0x04,0x04,0x00,0x10,0x02,0x0a,0x0a,0x00,0x10,0x00,0x00,0x00,0x10,0x10,0x03,0x02,0x88,0x00,0x18,0x98,0x90,0x94,0x84,0xa2,0xc1,0x00 -+// 15432 㱈 ; -+,0x00,0x00,0x08,0x0c,0x19,0x08,0x08,0x00,0x00,0x00,0x02,0x0a,0x12,0x02,0x04,0x00,0x00,0x00,0x10,0xd0,0x91,0x62,0x08,0x08,0x08,0x48,0x18,0x14,0x44,0x22,0x41,0x00 -+// 15433 㱉 ; -+,0x00,0x00,0x04,0x04,0x07,0x01,0x00,0x06,0x06,0x00,0x06,0x06,0x08,0x10,0x00,0x00,0x00,0x00,0x90,0x90,0xd1,0x02,0x08,0x00,0x98,0x18,0x50,0x14,0xa4,0x02,0x01,0x00 -+// 15434 㱊 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x20,0x0a,0x09,0x08,0x09,0x11,0x03,0x05,0x00,0x00,0x00,0x10,0x90,0x93,0x82,0x88,0x48,0x88,0x18,0x10,0x94,0x24,0x22,0x01,0x00 -+// 15435 㱋 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x0a,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x10,0x50,0x61,0x22,0x08,0x00,0x98,0x18,0x90,0x14,0x24,0x22,0x43,0x00 -+// 15436 㱌 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x0d,0x09,0x00,0x09,0x1c,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x13,0x02,0x88,0x08,0x48,0x08,0x10,0x14,0x60,0x22,0x41,0x00 -+// 15437 㱍 ; -+,0x00,0x00,0x01,0x11,0x08,0x28,0x00,0x10,0x08,0x34,0x02,0x16,0x22,0x02,0x00,0x00,0x00,0x00,0x24,0xa4,0x10,0x61,0x24,0x04,0x54,0x14,0x94,0x2c,0xca,0x8a,0x01,0x00 -+// 15438 㱎 ; -+,0x00,0x00,0x14,0x10,0x16,0x08,0x0a,0x18,0x0a,0x12,0x10,0x12,0x10,0x02,0x10,0x00,0x00,0x00,0x90,0x90,0x83,0xa2,0x08,0x88,0x08,0x88,0x98,0x94,0x94,0xa2,0x01,0x00 -+// 15439 㱏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0x00,0x02,0xc0,0x00,0x00,0x44,0x00,0x00,0x00,0x00,0xc2,0x00 -+// 15440 㱐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x1a,0x10,0x00,0x00,0x00,0x08,0x04,0x00,0x03,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00 -+// 15441 㱑 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x40,0x40,0x44,0x40,0x40,0x43,0x80,0x08,0x08,0x08,0x90,0x20,0x40,0x00,0x00 -+// 15442 㱒 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x40,0x40,0x44,0x40,0x40,0x00,0x02,0x08,0x88,0x08,0x08,0x88,0x08,0x18,0x00 -+// 15443 㱓 ; -+,0x00,0x04,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x18,0x20,0x00,0x00,0x00,0x10,0x30,0x20,0x00,0x44,0x13,0x10,0x00,0x04,0x04,0x08,0x30,0x18,0x0c,0x00 -+// 15444 㱔 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x1c,0x11,0x01,0x02,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x20,0x26,0x20,0x20,0x20,0x3f,0x80,0x0c,0x08,0x10,0x20,0x80,0x00,0x00 -+// 15445 㱕 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x00,0x00,0x04,0x30,0x20,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x13,0x10,0x92,0x92,0x92,0x92,0x92,0x10,0x00 -+// 15446 㱖 ; -+,0x00,0x00,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x30,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x44,0x44,0x48,0xa2,0x00,0x10,0x11,0x10,0x10,0x10,0x10,0x00 -+// 15447 㱗 ; -+,0x00,0x00,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x30,0x00,0x00,0x00,0x00,0x00,0x20,0x84,0x84,0x80,0x84,0x80,0x84,0x14,0x32,0x20,0x08,0x46,0x03,0x00 -+// 15448 㱘 ; -+,0x00,0x00,0x10,0x14,0x14,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x22,0x02,0x00,0x00,0x00,0x00,0x88,0x8a,0x9a,0x90,0x94,0x80,0x03,0x80,0x40,0x40,0x40,0x42,0x00 -+// 15449 㱙 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x09,0x11,0x18,0x0a,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x10,0x20,0x20,0x20,0x63,0x02,0x02,0x02,0x02,0x02,0x04,0x1c,0x00 -+// 15450 㱚 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x11,0x0a,0x0a,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x82,0x82,0x0e,0x00 -+// 15451 㱛 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x12,0x12,0x0a,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x03,0x10,0x10,0x00,0x23,0x02,0x02,0x14,0x14,0x08,0x10,0x20,0x40,0x00 -+// 15452 㱜 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x09,0x10,0x12,0x0a,0x00,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x40,0x48,0x40,0x00,0x40,0xc0,0xa0,0x18,0x07,0x00 -+// 15453 㱝 ; -+,0x00,0x00,0x00,0x09,0x09,0x01,0x17,0x15,0x05,0x15,0x09,0x09,0x11,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x09,0x09,0x00,0x00,0x10,0x52,0x82,0x02,0x04,0x00 -+// 15454 㱞 ; -+,0x00,0x00,0x01,0x08,0x08,0x10,0x13,0x12,0x2a,0x0a,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x02,0x00,0x04,0x44,0x44,0x20,0x28,0x00,0x00,0x00,0x00 -+// 15455 㱟 ; -+,0x00,0x00,0x01,0x08,0x08,0x00,0x13,0x12,0x0a,0x2a,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x93,0x00,0x00,0x52,0x84,0x84,0x90,0x98,0x18,0x26,0x03,0x00 -+// 15456 㱠 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x11,0x11,0x0a,0x22,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x13,0x10,0x10,0x10,0x12,0x42,0x02,0x02,0x02,0x42,0x02,0x00 -+// 15457 㱡 ; -+,0x00,0x00,0x01,0x08,0x08,0x10,0x13,0x12,0x2a,0x0a,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x52,0x00,0x80,0x11,0x28,0x28,0x28,0x08,0x48,0x89,0x07,0x00 -+// 15458 㱢 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x11,0x11,0x0a,0x22,0x02,0x04,0x00,0x08,0x00,0x00,0x00,0x10,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x41,0x40,0x48,0x48,0x46,0x43,0x00 -+// 15459 㱣 ; -+,0x00,0x00,0x01,0x08,0x08,0x00,0x13,0x12,0x0a,0x0a,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x12,0x50,0x40,0x00,0x20,0x24,0x44,0x48,0x18,0x14,0x42,0x00 -+// 15460 㱤 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x10,0x10,0x2d,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x40,0x40,0x8a,0xe2,0xb2,0x02,0x12,0x12,0x12,0x02,0x02,0x00 -+// 15461 㱥 ; -+,0x00,0x00,0x01,0x08,0x08,0x00,0x12,0x12,0x0a,0x0c,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x11,0x00,0x46,0x83,0x64,0x44,0x28,0x10,0x38,0x47,0x00 -+// 15462 㱦 ; -+,0x00,0x00,0x01,0x08,0x08,0x00,0x02,0x12,0x0a,0x0a,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x24,0x00,0x03,0x00,0x50,0x10,0x10,0x10,0x00,0x0c,0x00 -+// 15463 㱧 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x02,0x12,0x0a,0x0c,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x10,0x11,0x82,0x40,0x4a,0xaa,0xaa,0xaa,0x2a,0x4a,0x08,0x09,0x0f,0x00 -+// 15464 㱨 ; -+,0x00,0x00,0x01,0x08,0x08,0x00,0x12,0x12,0x0a,0x0c,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0x10,0x00,0x03,0x82,0x00,0x12,0x10,0x10,0x12,0x90,0x90,0xd0,0x30,0x1f,0x00 -+// 15465 㱩 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x0a,0x12,0x0a,0x0e,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x02,0x08,0x28,0x48,0x40,0x10,0x10,0x24,0x02,0x00 -+// 15466 㱪 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x02,0x12,0x0a,0x0a,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x92,0x90,0x98,0x88,0xc7,0x02,0x42,0x42,0x46,0x42,0x46,0x00 -+// 15467 㱫 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x0b,0x12,0x0a,0x0a,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x96,0xb0,0xb2,0x30,0x54,0x54,0x93,0x10,0x00 -+// 15468 㱬 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x12,0x0a,0x0a,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x92,0x82,0x01,0x40,0x42,0x48,0x48,0x46,0x43,0x00 -+// 15469 㱭 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x17,0x15,0x15,0x25,0x09,0x09,0x03,0x01,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x50,0x03,0x00,0x02,0x02,0x02,0x0c,0x0c,0x0c,0x03,0x00 -+// 15470 㱮 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x12,0x0a,0x0a,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x52,0x12,0x12,0x11,0x00,0x02,0x02,0x12,0x12,0x10,0x26,0x43,0x00 -+// 15471 㱯 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x12,0x0a,0x0a,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x00,0x00,0x00,0x42,0x42,0x42,0x04,0x04,0x20,0x01,0x00 -+// 15472 㱰 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x12,0x0a,0x0a,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x00,0x81,0x90,0x10,0x00,0x04,0x20,0x0b,0x10,0x12,0x10,0x10,0x10,0x00 -+// 15473 㱱 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x03,0x12,0x0a,0x02,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x00,0x92,0x92,0x92,0x92,0x92,0xb2,0x30,0x20,0x40,0x4b,0x81,0x0b,0x00 -+// 15474 㱲 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x12,0x0a,0x0e,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x44,0x28,0x02,0x00,0x40,0x42,0x82,0x86,0xa8,0xa8,0xa8,0xa8,0xab,0x00 -+// 15475 㱳 ; -+,0x00,0x01,0x01,0x01,0x04,0x04,0x04,0x01,0x01,0x02,0x04,0x01,0x03,0x00,0x00,0x00,0x00,0x10,0x30,0x00,0x08,0x08,0x08,0x80,0x01,0x00,0x84,0x9b,0x10,0x60,0x80,0x00 -+// 15476 㱴 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x12,0x0a,0x0a,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x11,0x00,0x42,0x42,0x42,0x42,0x42,0x20,0x43,0x00 -+// 15477 㱵 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x03,0x12,0x0a,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x44,0x44,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x83,0x00 -+// 15478 㱶 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x14,0x15,0x15,0x2d,0x00,0x08,0x00,0x01,0x00,0x00,0x00,0x40,0x43,0x52,0x44,0x00,0x01,0x22,0x24,0x20,0x01,0x82,0x04,0x88,0x20,0x00 -+// 15479 㱷 ; -+,0x00,0x00,0x00,0x0a,0x08,0x08,0x02,0x12,0x12,0x0c,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x50,0x80,0x92,0x92,0x90,0x9a,0x90,0x80,0x10,0x19,0x30,0x44,0x83,0x01,0x00 -+// 15480 㱸 ; -+,0x00,0x00,0x01,0x11,0x11,0x11,0x15,0x15,0x15,0x0d,0x01,0x0b,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x25,0x20,0x22,0x2a,0x00,0x04,0x64,0x05,0x04,0x04,0x44,0x04,0x00 -+// 15481 㱹 ; -+,0x00,0x00,0x01,0x11,0x11,0x17,0x11,0x05,0x35,0x05,0x01,0x09,0x00,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x64,0x04,0x46,0x6e,0x05,0x04,0x10,0x52,0x50,0x50,0x41,0x00 -+// 15482 㱺 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x12,0x12,0x0c,0x04,0x01,0x09,0x00,0x00,0x00,0x00,0x00,0x14,0x10,0x82,0xa0,0x12,0x00,0x54,0x54,0x54,0x00,0x6a,0x02,0x6b,0x00 -+// 15483 㱻 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x16,0x14,0x15,0x0d,0x00,0x09,0x00,0x02,0x00,0x00,0x00,0x20,0x22,0x80,0x00,0x04,0x80,0x00,0xc2,0x0a,0x3a,0x2e,0x0a,0x0a,0x83,0x00 -+// 15484 㱼 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x14,0x18,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x43,0x02,0x06,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 15485 㱽 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x24,0x04,0x02,0x0a,0x0a,0x02,0x13,0x02,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x84,0x43,0x02,0x06,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 15486 㱾 ; -+,0x00,0x00,0x04,0x00,0x04,0x08,0x01,0x1a,0x04,0x09,0x12,0x06,0x09,0x11,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x43,0x02,0x06,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 15487 㱿 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x24,0xa4,0x24,0x24,0x03,0x02,0x06,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 15488 㲀 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x14,0x01,0x00,0x20,0x04,0x00,0x00,0x00,0x00,0xa4,0x24,0x24,0x24,0x03,0x82,0x06,0x84,0x04,0x98,0x98,0x26,0x03,0x00 -+// 15489 㲁 ; -+,0x00,0x00,0x04,0x00,0x21,0x00,0x10,0x01,0x00,0x04,0x04,0x04,0x04,0x38,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x03,0x02,0x06,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 15490 㲂 ; -+,0x00,0x04,0x04,0x14,0x05,0x04,0x10,0x00,0x0a,0x08,0x08,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0x04,0x04,0x24,0x83,0x82,0x82,0x84,0x94,0x88,0x88,0x94,0x03,0x00 -+// 15491 㲃 ; -+,0x00,0x04,0x04,0x04,0x04,0x10,0x11,0x10,0x11,0x00,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x43,0x80,0x26,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 15492 㲄 ; -+,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x20,0x00,0x04,0x04,0x04,0x04,0x04,0x10,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0xc3,0x82,0x06,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 15493 㲅 ; -+,0x00,0x04,0x04,0x20,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x24,0xa4,0x24,0x24,0x03,0x02,0x82,0x04,0x04,0x18,0x08,0x04,0x03,0x00 -+// 15494 㲆 ; -+,0x00,0x00,0x06,0x04,0x00,0x14,0x14,0x10,0x01,0x22,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0xa7,0x00,0x86,0x8c,0x87,0x80,0x10,0x47,0x40,0x10,0x00,0x40,0x20 -+// 15495 㲇 ; -+,0x00,0x00,0x04,0x04,0x00,0x14,0x14,0x11,0x03,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0xa7,0x04,0x84,0x98,0x06,0x10,0x20,0xc0,0x38,0x40,0x20,0x60,0x10 -+// 15496 㲈 ; -+,0x00,0x00,0x06,0x04,0x00,0x14,0x14,0x10,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0xa4,0xa7,0x00,0x84,0x88,0x06,0x8c,0x00,0x08,0x10,0x04,0x04,0x04,0x00 -+// 15497 㲉 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x21,0x00,0x00,0x04,0x0d,0x04,0x30,0x08,0x10,0x00,0x00,0x00,0x94,0x04,0x04,0xe4,0x03,0x02,0x02,0x04,0x94,0x08,0x88,0x14,0x03,0x00 -+// 15498 㲊 ; -+,0x00,0x00,0x02,0x00,0x10,0x01,0x08,0x02,0x05,0x08,0x19,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x84,0x04,0xc4,0x24,0x03,0x82,0x06,0x84,0x14,0x18,0x08,0x14,0x02,0x00 -+// 15499 㲋 ; -+,0x00,0x03,0x02,0x04,0x08,0x08,0x08,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x10,0x20,0x00,0x04,0x04,0x04,0x00,0x20,0x24,0x20,0x20,0x20,0x3f,0x00 -+// 15500 㲌 ; -+,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x24,0x24,0x20,0x2a,0x02,0x42,0x42,0x42,0x84,0x0c,0x01,0xff,0x00 -+// 15501 㲍 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x02,0x02,0x00,0x0c,0x0c,0x02,0x00,0x00,0x00,0x00,0x0c,0x30,0x00,0x34,0x20,0x00,0x30,0x00,0x00,0x13,0x00,0x00,0xff,0x00 -+// 15502 㲎 ; -+,0x00,0x00,0x02,0x1c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x00,0x00,0x00,0x00,0x0e,0x30,0x10,0x12,0x10,0x10,0x10,0x14,0x10,0x10,0x11,0x11,0x1e,0x00 -+// 15503 㲏 ; -+,0x00,0x00,0x10,0x10,0x10,0x15,0x10,0x10,0x10,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x0e,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 15504 㲐 ; -+,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x10,0x30,0x28,0x44,0x13,0x10,0x04,0x04,0x08,0x08,0x00,0x01,0xff,0x00 -+// 15505 㲑 ; -+,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x10,0x10,0x12,0x30,0x30,0x58,0x54,0x12,0x90,0x30,0x00,0x01,0xff,0x00 -+// 15506 㲒 ; -+,0x00,0x08,0x08,0x10,0x11,0x21,0x15,0x15,0x15,0x15,0x15,0x11,0x01,0x06,0x00,0x00,0x00,0x00,0x06,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 15507 㲓 ; -+,0x00,0x00,0x06,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x14,0x10,0x92,0x90,0x92,0x94,0xd4,0xa8,0x88,0x04,0x02,0x01,0xff,0x00 -+// 15508 㲔 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x08,0x01,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x1f,0x00 -+// 15509 㲕 ; -+,0x00,0x00,0x07,0x00,0x01,0x14,0x10,0x02,0x02,0x02,0x02,0x0a,0x02,0x02,0x06,0x00,0x00,0x00,0x0c,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 15510 㲖 ; -+,0x00,0x04,0x04,0x15,0x14,0x04,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x03,0x00,0x00,0x00,0x86,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 15511 㲗 ; -+,0x00,0x00,0x07,0x00,0x15,0x10,0x00,0x01,0x00,0x04,0x04,0x34,0x04,0x04,0x0c,0x00,0x00,0x00,0x0c,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 15512 㲘 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x0a,0x11,0x00,0x00,0x00,0x00,0x06,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 15513 㲙 ; -+,0x00,0x00,0x06,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x20,0x00,0x48,0x84,0x00,0xa8,0xa8,0xa8,0x2a,0x04,0x01,0xff,0x00 -+// 15514 㲚 ; -+,0x00,0x08,0x00,0x10,0x04,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x82,0x11,0x0c,0x30,0x80,0x38,0x80,0x84,0x82,0x80,0x80,0x81,0x00 -+// 15515 㲛 ; -+,0x00,0x08,0x08,0x10,0x04,0x04,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa2,0x22,0xa2,0x22,0x22,0x80,0xf0,0x80,0x80,0x82,0x80,0x80,0xff,0x00 -+// 15516 㲜 ; -+,0x00,0x04,0x04,0x04,0x14,0x04,0x09,0x04,0x04,0x05,0x14,0x04,0x02,0x09,0x00,0x00,0x00,0x00,0x8e,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x1e,0x00 -+// 15517 㲝 ; -+,0x00,0x00,0x06,0x08,0x08,0x0a,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x40,0x48,0x82,0x90,0x10,0x10,0x10,0x1c,0x10,0x10,0x01,0x01,0xff,0x00 -+// 15518 㲞 ; -+,0x00,0x00,0x04,0x04,0x00,0x10,0x12,0x09,0x00,0x04,0x05,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x98,0x10,0x10,0x1a,0x10,0x10,0x11,0x18,0x10,0x10,0x11,0x0f,0x00 -+// 15519 㲟 ; -+,0x00,0x00,0x00,0x1b,0x00,0x04,0x05,0x15,0x15,0x15,0x15,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x06,0x98,0x00,0x00,0x18,0x10,0x00,0x01,0x98,0x00,0x00,0x01,0x0f,0x00 -+// 15520 㲠 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x84,0x14,0x08,0x96,0x08,0x80,0x88,0x80,0x80,0x81,0xff,0x00 -+// 15521 㲡 ; -+,0x00,0x04,0x04,0x04,0x0c,0x05,0x14,0x00,0x00,0x00,0x04,0x15,0x04,0x04,0x0c,0x00,0x00,0x00,0x06,0x98,0x00,0x00,0x9a,0x10,0x00,0x9a,0x10,0x00,0x80,0x81,0x0f,0x00 -+// 15522 㲢 ; -+,0x00,0x00,0x04,0x10,0x10,0x10,0x10,0x10,0x16,0x16,0x16,0x36,0x16,0x10,0x10,0x00,0x00,0x00,0x06,0x98,0x00,0x00,0x18,0x90,0x80,0x9e,0x90,0x80,0x80,0x81,0x8f,0x00 -+// 15523 㲣 ; -+,0x00,0x02,0x0a,0x02,0x1a,0x02,0x02,0x12,0x02,0x00,0x01,0x07,0x07,0x09,0x00,0x00,0x00,0x00,0xc6,0x18,0x80,0x00,0x08,0x80,0x00,0x88,0x00,0x00,0x00,0x89,0x0f,0x00 -+// 15524 㲤 ; -+,0x00,0x00,0x04,0x00,0x01,0x11,0x11,0x11,0x05,0x04,0x08,0x19,0x08,0x0c,0x08,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x8a,0x10,0x00,0x80,0x10,0x00,0x80,0x01,0x0f,0x00 -+// 15525 㲥 ; -+,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x20,0x28,0x28,0x08,0x08,0x00,0x00,0x00,0x06,0x18,0x08,0x88,0x8a,0x98,0x88,0x8b,0x08,0x88,0x88,0x88,0x8b,0x00 -+// 15526 㲦 ; -+,0x00,0x04,0x04,0x04,0x04,0x11,0x11,0x11,0x11,0x11,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x00,0x24,0x07,0x18,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x1f,0x00 -+// 15527 㲧 ; -+,0x00,0x00,0x06,0x18,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x04,0x2c,0x38,0x30,0x06,0x10,0x84,0x94,0x00,0x04,0xc2,0x01,0xff,0x00 -+// 15528 㲨 ; -+,0x00,0x00,0x09,0x09,0x08,0x00,0x01,0x09,0x01,0x09,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x98,0x00,0x80,0x08,0x00,0x00,0x08,0x00,0x00,0x00,0x01,0x0f,0x00 -+// 15529 㲩 ; -+,0x00,0x00,0x06,0x08,0x08,0x0a,0x08,0x08,0x08,0x0a,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x22,0x22,0xaa,0x22,0x32,0x22,0x45,0xff,0x00 -+// 15530 㲪 ; -+,0x00,0x00,0x00,0x08,0x09,0x10,0x10,0x00,0x01,0x01,0x11,0x00,0x0a,0x02,0x38,0x00,0x00,0x00,0x06,0x10,0x90,0x10,0x90,0x10,0x10,0x12,0x10,0x10,0x10,0x11,0x0f,0x00 -+// 15531 㲫 ; -+,0x00,0x02,0x02,0x12,0x0b,0x01,0x08,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x00,0x00,0x00,0x00,0x86,0x98,0x48,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x89,0x8f,0x00 -+// 15532 㲬 ; -+,0x00,0x00,0x0a,0x10,0x12,0x30,0x12,0x10,0x12,0x10,0x10,0x00,0x02,0x02,0x20,0x00,0x00,0x00,0x06,0x18,0x00,0x00,0x18,0x00,0x00,0x0b,0x18,0x00,0x80,0x81,0x0f,0x00 -+// 15533 㲭 ; -+,0x00,0x04,0x04,0x04,0x14,0x0a,0x09,0x10,0x01,0x01,0x31,0x10,0x1a,0x04,0x00,0x00,0x00,0x00,0x0e,0x30,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x10,0x91,0x51,0x1e,0x00 -+// 15534 㲮 ; -+,0x00,0x00,0x06,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x40,0x40,0x4a,0x22,0x10,0x20,0x04,0x4b,0x00,0x44,0x44,0x45,0x01,0xff,0x00 -+// 15535 㲯 ; -+,0x00,0x00,0x09,0x09,0x1d,0x04,0x08,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x3c,0x00,0x00,0x00,0x04,0x18,0x48,0x08,0x88,0x88,0x08,0x8b,0x88,0x88,0x88,0x88,0x0f,0x00 -+// 15536 㲰 ; -+,0x00,0x00,0x02,0x00,0x0a,0x18,0x0f,0x00,0x16,0x16,0x00,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x06,0x18,0x08,0x08,0x08,0x88,0x88,0xc9,0x18,0x08,0x08,0x09,0x0f,0x00 -+// 15537 㲱 ; -+,0x00,0x00,0x06,0x08,0x08,0x08,0x0a,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x94,0xb4,0x84,0x00,0xec,0xa4,0xa4,0xa6,0x83,0xff,0x00 -+// 15538 㲲 ; -+,0x00,0x00,0x01,0x03,0x00,0x04,0x08,0x19,0x00,0x20,0x01,0x01,0x01,0x01,0x3c,0x00,0x00,0x00,0x0e,0x18,0x00,0x42,0x88,0x80,0x40,0x4b,0x18,0x00,0x00,0x01,0x0f,0x00 -+// 15539 㲳 ; -+,0x00,0x00,0x07,0x14,0x14,0x14,0x17,0x10,0x12,0x12,0x12,0x11,0x11,0x12,0x00,0x00,0x00,0x00,0x10,0x20,0x12,0x50,0x00,0x10,0x19,0x10,0x10,0x84,0xa4,0x42,0x01,0x00 -+// 15540 㲴 ; -+,0x00,0x04,0x04,0x08,0x00,0x10,0x20,0x01,0x01,0x01,0x01,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x00,0x0c,0x00,0x0c,0x08,0x08,0x08,0x08,0x20,0x04,0x04,0x03,0x01 -+// 15541 㲵 ; -+,0x00,0x04,0x08,0x00,0x10,0x00,0x01,0x05,0x05,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x04,0x08,0x00,0x08,0x08,0x48,0xa8,0x28,0x28,0x28,0x24,0x25,0x63,0x00 -+// 15542 㲶 ; -+,0x00,0x04,0x08,0x00,0x10,0x00,0x00,0x01,0x12,0x11,0x11,0x15,0x11,0x10,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x08,0x08,0x38,0x08,0x80,0xa4,0x44,0x07,0x23,0x00 -+// 15543 㲷 ; -+,0x00,0x04,0x04,0x08,0x10,0x00,0x02,0x02,0x00,0x09,0x09,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x06,0x08,0x00,0x0c,0x90,0x88,0x08,0x20,0x24,0x24,0x04,0x16,0x03,0x00 -+// 15544 㲸 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x08,0x08,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x04,0x0c,0x08,0x10,0x30,0x20,0x40,0xc0,0x80,0x00,0x01,0x01,0xff,0x00 -+// 15545 㲹 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x04,0x00,0x08,0x18,0x00,0x11,0x10,0x00,0x00,0x00,0x08,0x08,0x48,0x48,0x48,0x08,0x08,0x08,0x88,0x88,0x08,0x09,0x07,0x00 -+// 15546 㲺 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x00,0x10,0x10,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x42,0x40,0x40,0x40,0x40,0x40,0x40,0x41,0x3e,0x00 -+// 15547 㲻 ; -+,0x00,0x04,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x09,0x08,0x0a,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x22,0x24,0xf0,0xb0,0xa0,0xa8,0x24,0x26,0x23,0x20,0x60,0x00 -+// 15548 㲼 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x06,0x04,0x04,0x88,0x88,0x48,0x50,0x20,0x30,0x48,0x06,0x02,0x00 -+// 15549 㲽 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x05,0x00,0x08,0x18,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x06,0x0c,0x00 -+// 15550 㲾 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x03,0x02,0x02,0x04,0x08,0x00,0x01,0x00,0x00,0x80,0xc0,0x02,0x02,0x80,0x80,0x88,0xd0,0xa0,0xa0,0x90,0x8c,0x86,0x80,0x00 -+// 15551 㲿 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x04,0x00,0x09,0x19,0x01,0x10,0x10,0x00,0x00,0x00,0x10,0x01,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 15552 㳀 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x04,0x00,0x08,0x18,0x00,0x10,0x10,0x00,0x00,0x20,0x20,0x24,0x20,0x23,0x20,0x20,0x26,0x2c,0x10,0x30,0x58,0x0d,0x07,0x00 -+// 15553 㳁 ; -+,0x00,0x00,0x01,0x09,0x01,0x01,0x01,0x11,0x01,0x09,0x08,0x10,0x12,0x10,0x10,0x00,0x00,0x00,0x03,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x28,0x00,0x44,0x82,0x01,0x00 -+// 15554 㳂 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x04,0x00,0x08,0x18,0x00,0x10,0x11,0x00,0x00,0x00,0x08,0x48,0x48,0x84,0x84,0x02,0x20,0x20,0x40,0x40,0x84,0x84,0x82,0x00 -+// 15555 㳃 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x18,0x00,0x10,0x10,0x00,0x00,0x00,0x40,0x48,0x40,0x40,0x41,0x87,0x20,0x20,0x23,0x20,0x20,0x20,0x20,0x00 -+// 15556 㳄 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x00,0x08,0x18,0x00,0x10,0x11,0x00,0x00,0x20,0x20,0x40,0x42,0x82,0xa0,0x20,0x30,0x20,0x28,0x48,0x44,0x86,0x02,0x00 -+// 15557 㳅 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x03,0x30,0x20,0x20,0x20,0x60,0x20,0xa4,0x22,0x22,0x20,0x20,0x20,0x00 -+// 15558 㳆 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x04,0x00,0x08,0x18,0x00,0x10,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0x08,0x88,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x08,0x00 -+// 15559 㳇 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x40,0x02,0x81,0x04,0x04,0x44,0x08,0x28,0x10,0x38,0x04,0x02,0x00 -+// 15560 㳈 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x20,0x22,0x20,0x20,0xa8,0xa8,0xa8,0x28,0x28,0x29,0x27,0x20,0x00 -+// 15561 㳉 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x11,0x10,0x10,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x02,0x02,0x02,0x04,0x00 -+// 15562 㳊 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x40,0x42,0x84,0x84,0x00,0x48,0x08,0x30,0x30,0x38,0xce,0x03,0x00 -+// 15563 㳋 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x1c,0x80,0x80,0x80,0x80,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x00,0x00 -+// 15564 㳌 ; -+,0x00,0x00,0x08,0x09,0x01,0x01,0x11,0x15,0x01,0x09,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x32,0x10,0x10,0x10,0x10,0x10,0x00 -+// 15565 㳍 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x01,0x0a,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x60,0x41,0x40,0x80,0x90,0x92,0x92,0x92,0x92,0x92,0x92,0x16,0x10,0x00 -+// 15566 㳎 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x11,0x10,0x00,0x00,0x10,0x30,0x40,0x82,0xe3,0x00,0x44,0x44,0x45,0x44,0x84,0x84,0x04,0x04,0x00 -+// 15567 㳏 ; -+,0x00,0x00,0x08,0x08,0x01,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x10,0x32,0x12,0x12,0x12,0x32,0x00,0x20,0x20,0x60,0x98,0x07,0x00 -+// 15568 㳐 ; -+,0x00,0x00,0x08,0x08,0x00,0x20,0x10,0x00,0x01,0x00,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0x88,0xc8,0xa8,0x88,0x88,0x88,0x88,0x89,0x87,0x00 -+// 15569 㳑 ; -+,0x00,0x00,0x08,0x0d,0x01,0x01,0x11,0x15,0x01,0x09,0x09,0x19,0x11,0x11,0x10,0x00,0x00,0x00,0x00,0x06,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x51,0x00,0x00 -+// 15570 㳒 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x18,0x10,0x11,0x10,0x00,0x00,0x00,0x20,0x20,0x60,0x40,0x08,0x84,0x23,0x40,0x40,0x80,0x04,0x02,0x02,0x00 -+// 15571 㳓 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x20,0x61,0x40,0x40,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 15572 㳔 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x04,0x24,0x24,0x46,0x44,0xc4,0x94,0xcc,0x44,0x04,0x04,0x04,0x0c,0x00 -+// 15573 㳕 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x04,0x44,0x40,0x00,0x0a,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00 -+// 15574 㳖 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x01,0x08,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x22,0x20,0x60,0x40,0x86,0x80,0x90,0x80,0x88,0x8c,0xc6,0x82,0x00 -+// 15575 㳗 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x04,0x04,0x28,0x50,0x30,0x4c,0x20,0x20,0x24,0x20,0x20,0x20,0x00,0x00 -+// 15576 㳘 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x11,0x10,0x00,0x00,0x20,0x10,0x33,0x20,0x40,0x02,0xf2,0x00,0x48,0x48,0x88,0x88,0x09,0x0f,0x00 -+// 15577 㳙 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x10,0x14,0x04,0x00,0x08,0x18,0x00,0x10,0x10,0x00,0x00,0x20,0x20,0x40,0x86,0x82,0x00,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x8c,0x00 -+// 15578 㳚 ; -+,0x00,0x00,0x08,0x0c,0x01,0x01,0x11,0x15,0x01,0x09,0x09,0x18,0x12,0x12,0x10,0x00,0x00,0x00,0x14,0x10,0x10,0x10,0x10,0x12,0x56,0x54,0x08,0x08,0x14,0x27,0x03,0x00 -+// 15579 㳛 ; -+,0x00,0x00,0x08,0x0d,0x01,0x01,0x11,0x15,0x01,0x09,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x02,0x02,0x22,0x22,0x22,0x22,0x32,0x20,0x40,0x48,0x84,0x03,0x00 -+// 15580 㳜 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x13,0x11,0x09,0x01,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x80,0x80,0x00,0x18,0x18,0x18,0x34,0x24,0x42,0x03,0x00,0x00,0x00,0x00 -+// 15581 㳝 ; -+,0x00,0x00,0x08,0x09,0x01,0x01,0x13,0x11,0x09,0x01,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x86,0x18,0x00,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x02,0x00 -+// 15582 㳞 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x11,0x11,0x09,0x01,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x88,0x00,0x00,0x4a,0x40,0x40,0x40,0x4a,0x00,0x00,0x00,0x00,0x08,0x00 -+// 15583 㳟 ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x03,0x02,0x04,0x0a,0x11,0x00,0x02,0x0c,0x01,0x00,0x00,0x00,0x00,0x34,0x00,0x00,0x20,0x00,0x48,0x17,0x40,0x40,0x18,0x0c,0x80,0x00 -+// 15584 㳠 ; -+,0x00,0x00,0x08,0x09,0x01,0x00,0x10,0x01,0x00,0x08,0x08,0x10,0x10,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x10,0x90,0x90,0x94,0x86,0xa2,0x80,0x00,0x3f,0x00 -+// 15585 㳡 ; -+,0x00,0x00,0x08,0x05,0x00,0x00,0x10,0x00,0x00,0x08,0x08,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x04,0x04,0x85,0x04,0x04,0x94,0x94,0x84,0x84,0x84,0x8c,0x40,0x1f,0x00 -+// 15586 㳢 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x1e,0x20,0x20,0x42,0x40,0x88,0x84,0x8b,0x88,0x88,0x88,0x08,0x08,0x00 -+// 15587 㳣 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x1a,0x10,0x20,0x44,0x48,0x40,0x40,0x41,0x3e,0x00 -+// 15588 㳤 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x10,0x00,0x00,0x08,0x0a,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x44,0x40,0x40,0x40,0x41,0x44,0x44,0x50,0x51,0x80,0x80,0x00,0x04,0x00 -+// 15589 㳥 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x08,0x00,0x10,0x10,0x11,0x12,0x00,0x00,0x02,0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0xc4,0x80,0x80,0x00,0x04,0x00 -+// 15590 㳦 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x11,0x01,0x01,0x09,0x01,0x11,0x12,0x10,0x10,0x00,0x00,0x10,0x12,0x10,0x19,0x00,0x42,0x42,0x7a,0x48,0x4c,0x4c,0x4c,0x13,0x23,0x00 -+// 15591 㳧 ; -+,0x00,0x00,0x08,0x09,0x01,0x01,0x11,0x01,0x01,0x09,0x09,0x11,0x11,0x12,0x10,0x00,0x00,0x00,0x02,0x20,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0xa8,0x29,0x20,0x00 -+// 15592 㳨 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x54,0x00,0xa0,0x54,0x00,0x60,0x40,0x46,0xc4,0x28,0x10,0x20,0x00,0x00 -+// 15593 㳩 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x11,0x01,0x09,0x09,0x01,0x16,0x10,0x10,0x10,0x00,0x00,0x00,0x22,0x62,0x22,0x2a,0x2a,0x23,0x22,0x22,0x22,0x22,0x02,0x42,0x06,0x00 -+// 15594 㳪 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x30,0x20,0x50,0x82,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00 -+// 15595 㳫 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x01,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x48,0x40,0x48,0x46,0x80,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15596 㳬 ; -+,0x00,0x00,0x08,0x00,0x01,0x00,0x10,0x10,0x00,0x08,0x09,0x11,0x00,0x10,0x10,0x00,0x00,0x00,0x80,0x82,0x00,0x00,0x02,0x00,0x00,0x10,0x00,0x00,0x00,0x30,0x0e,0x00 -+// 15597 㳭 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x84,0x04,0x04,0x04,0xa4,0x20,0x21,0x60,0x60,0xa0,0x24,0x23,0x20,0x00 -+// 15598 㳮 ; -+,0x00,0x00,0x09,0x09,0x01,0x01,0x11,0x11,0x01,0x09,0x09,0x11,0x10,0x12,0x10,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x10,0x12,0x3c,0x38,0x10,0x54,0x12,0x13,0x30,0x00 -+// 15599 㳯 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x04,0x00,0x08,0x18,0x00,0x10,0x10,0x00,0x00,0x00,0x20,0x12,0x00,0x88,0x40,0x11,0x20,0x20,0x22,0x20,0x20,0x20,0x20,0x00 -+// 15600 㳰 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x86,0x02,0x40,0x40,0x4c,0x00,0x80,0x00,0x00,0x00 -+// 15601 㳱 ; -+,0x00,0x00,0x00,0x0a,0x02,0x02,0x12,0x12,0x02,0x0a,0x0a,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x40,0x52,0x02,0x02,0x02,0x02,0x42,0x42,0x42,0x82,0x02,0x12,0x00,0x00 -+// 15602 㳲 ; -+,0x00,0x00,0x08,0x09,0x00,0x00,0x10,0x10,0x00,0x08,0x09,0x12,0x10,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x04,0x24,0x22,0x4b,0x00,0x00 -+// 15603 㳳 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x11,0x11,0x01,0x09,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x22,0x20,0x20,0x24,0x00,0x00,0x44,0x40,0x40,0x00,0x80,0x0f,0x00 -+// 15604 㳴 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x10,0x10,0x01,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x16,0x14,0x4a,0x51,0x60,0xc6,0x20,0x20,0x20,0x20,0x20,0x21,0x00,0x00 -+// 15605 㳵 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x11,0x04,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x0c,0x20,0x20,0x62,0x60,0xa8,0x27,0x08,0x08,0x20,0x22,0x20,0x20,0x60,0x00 -+// 15606 㳶 ; -+,0x00,0x00,0x08,0x08,0x01,0x00,0x10,0x10,0x00,0x08,0x08,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0x48,0x18,0x28,0x08,0x28,0x28,0x08,0x88,0xc8,0x88,0x88,0x89,0x87,0x00 -+// 15607 㳷 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x00,0x08,0x10,0x00,0x10,0x10,0x00,0x00,0x40,0x80,0xaf,0x2a,0x4a,0x12,0x26,0x04,0x02,0x02,0x82,0x02,0x82,0x82,0x00 -+// 15608 㳸 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x04,0x01,0x08,0x18,0x00,0x10,0x10,0x00,0x00,0x48,0x48,0x4c,0x48,0x00,0x40,0x82,0x84,0x88,0x88,0x90,0x80,0x81,0x8f,0x00 -+// 15609 㳹 ; -+,0x00,0x00,0x09,0x09,0x01,0x21,0x11,0x01,0x0b,0x09,0x15,0x11,0x11,0x11,0x01,0x00,0x00,0x00,0x02,0x08,0xc8,0x08,0x08,0xc8,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 15610 㳺 ; -+,0x00,0x01,0x09,0x09,0x01,0x01,0x11,0x01,0x03,0x05,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x10,0x12,0x60,0x00,0x06,0x00,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x00 -+// 15611 㳻 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x48,0x48,0x4a,0x48,0x48,0x48,0x00,0x00,0x84,0x04,0x84,0x04,0x84,0x04,0x00 -+// 15612 㳼 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x00,0x18,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x2a,0x20,0xa0,0x24,0x18,0x38,0x06,0x40,0x48,0x60,0x50,0x4c,0xc2,0x00 -+// 15613 㳽 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x12,0x02,0x0a,0x08,0x00,0x10,0x10,0x10,0x11,0x00,0x00,0x00,0xd0,0x10,0x13,0xa0,0x08,0x08,0x88,0xa8,0xa9,0x89,0x89,0x88,0x18,0x00 -+// 15614 㳾 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x00,0x00,0x00,0x08,0x18,0x00,0x11,0x00,0x00,0x00,0x04,0x48,0x08,0x20,0x20,0x26,0x20,0x20,0x48,0x40,0x00,0x80,0x01,0x0f,0x00 -+// 15615 㳿 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x08,0x08,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x10,0x30,0x20,0x44,0xc2,0x00,0x00,0x70,0x60,0x40,0x84,0x03,0x00,0x00 -+// 15616 㴀 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x08,0x08,0x10,0x10,0x11,0x12,0x00,0x00,0x00,0x08,0xc8,0x08,0x0c,0x00,0x20,0x00,0x04,0x08,0x00,0x00,0x00,0x3f,0x00 -+// 15617 㴁 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x11,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x20,0x22,0x48,0x44,0xcb,0x48,0x48,0x48,0xc8,0x88,0x08,0x08,0x00 -+// 15618 㴂 ; -+,0x00,0x00,0x10,0x08,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x36,0x10,0x10,0x10,0x00,0x00,0x08,0x00,0x08,0x4a,0x42,0x4a,0x4a,0x42,0x5b,0x42,0x42,0x42,0x42,0x46,0x00 -+// 15619 㴃 ; -+,0x00,0x00,0x08,0x09,0x01,0x01,0x11,0x11,0x01,0x09,0x08,0x10,0x12,0x10,0x00,0x00,0x00,0x20,0x10,0x02,0x02,0x02,0x12,0x10,0x14,0x38,0x10,0x54,0x12,0x11,0x30,0x00 -+// 15620 㴄 ; -+,0x00,0x00,0x09,0x09,0x01,0x01,0x11,0x11,0x01,0x09,0x09,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x02,0x02,0x22,0x4a,0x06,0x02,0x02,0x4a,0x4a,0x4a,0x4a,0x4a,0x02,0x00 -+// 15621 㴅 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x02,0x01,0x01,0x01,0x08,0x00,0x00,0x40,0x4c,0x40,0x50,0x4e,0x80,0x02,0x02,0x10,0x08,0x00,0x00,0x20,0x02,0x00 -+// 15622 㴆 ; -+,0x00,0x00,0x08,0x00,0x00,0x20,0x14,0x02,0x0a,0x09,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x06,0x04,0x04,0x04,0x00,0x23,0x20,0x22,0x22,0x22,0x22,0x24,0x20,0x00 -+// 15623 㴇 ; -+,0x00,0x00,0x08,0x08,0x0a,0x19,0x19,0x19,0x0d,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x80,0x80,0xa1,0x9e,0x98,0x90,0xd4,0xb4,0xa2,0x82,0x81,0x89,0x88,0x00 -+// 15624 㴈 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x10,0x04,0x08,0x08,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x1c,0x80,0x80,0x98,0x80,0x80,0x91,0x00,0x20,0x22,0x22,0x22,0x02,0x00 -+// 15625 㴉 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x10,0x06,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x04,0x84,0x00,0x08,0x00,0x51,0x00,0x04,0x00,0x00,0x00,0x00,0x00 -+// 15626 㴊 ; -+,0x00,0x00,0x09,0x08,0x00,0x00,0x10,0x10,0x00,0x0b,0x08,0x10,0x11,0x10,0x10,0x00,0x00,0x20,0x02,0x02,0xc2,0x8a,0xaa,0xaa,0xaa,0xaa,0x8a,0x02,0x02,0x02,0x02,0x00 -+// 15627 㴋 ; -+,0x00,0x00,0x08,0x04,0x00,0x00,0x10,0x10,0x01,0x09,0x09,0x10,0x12,0x10,0x10,0x00,0x00,0x20,0x24,0x24,0x27,0x24,0x24,0x20,0x22,0x60,0xa8,0xa8,0x20,0x20,0x22,0x00 -+// 15628 㴌 ; -+,0x00,0x00,0x01,0x09,0x01,0x01,0x00,0x12,0x02,0x0a,0x02,0x11,0x11,0x12,0x10,0x00,0x00,0x00,0x08,0x08,0x09,0x48,0x08,0x88,0x88,0xa2,0x22,0x22,0xa2,0x22,0x22,0x00 -+// 15629 㴍 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x09,0x09,0x10,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0x08,0x10,0x20,0x20,0xaa,0xa0,0x30,0x24,0x24,0x20,0x22,0x21,0x60,0x00 -+// 15630 㴎 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x08,0x08,0x00,0x11,0x11,0x12,0x10,0x00,0x00,0x20,0x20,0x42,0x40,0x88,0x04,0x02,0x00,0x26,0x20,0xa0,0x26,0x22,0x60,0x00 -+// 15631 㴏 ; -+,0x00,0x00,0x08,0x09,0x01,0x00,0x30,0x10,0x08,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x01,0x00,0x44,0x82,0x00,0x20,0x20,0x24,0x20,0x20,0x20,0x00,0x00 -+// 15632 㴐 ; -+,0x00,0x00,0x10,0x0a,0x00,0x00,0x32,0x00,0x08,0x02,0x00,0x30,0x12,0x10,0x10,0x00,0x00,0x00,0x00,0x88,0x88,0xaa,0xaa,0xaa,0xaa,0xa2,0x82,0x82,0x82,0x02,0x0c,0x00 -+// 15633 㴑 ; -+,0x00,0x00,0x08,0x09,0x01,0x01,0x11,0x11,0x09,0x09,0x00,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x10,0x00,0x04,0x20,0x28,0x08,0x42,0x42,0x52,0x12,0x00,0x20,0x00,0x00 -+// 15634 㴒 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x11,0x10,0x00,0x08,0x08,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x28,0x28,0xaa,0x49,0x48,0x08,0x40,0x49,0x48,0x88,0x88,0x08,0x00 -+// 15635 㴓 ; -+,0x00,0x00,0x09,0x09,0x01,0x01,0x11,0x15,0x01,0x08,0x08,0x10,0x12,0x12,0x10,0x00,0x00,0x00,0x26,0x20,0x20,0x24,0x20,0x24,0x04,0x00,0x80,0x90,0x81,0x84,0xfc,0x00 -+// 15636 㴔 ; -+,0x00,0x00,0x08,0x08,0x01,0x00,0x10,0x10,0x08,0x08,0x00,0x10,0x12,0x14,0x10,0x00,0x00,0x40,0x40,0x88,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x90,0x91,0x80,0xfc,0x00 -+// 15637 㴕 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x08,0x08,0x00,0x10,0x11,0x12,0x10,0x00,0x00,0x00,0x08,0xc8,0x08,0x08,0x70,0x20,0x20,0x70,0x60,0xa8,0x24,0x23,0x20,0x00 -+// 15638 㴖 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x04,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0xcc,0x00,0x38,0x00,0x32,0x02,0x32,0x10,0x00,0x31,0x00,0x10,0x00 -+// 15639 㴗 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x11,0x11,0x00,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x48,0x40,0x5a,0x42,0x42,0x42,0x20,0x40,0xcc,0x88,0x50,0x3c,0xc6,0x00 -+// 15640 㴘 ; -+,0x00,0x00,0x09,0x09,0x01,0x01,0x11,0x14,0x04,0x08,0x08,0x18,0x00,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x86,0x80,0x84,0x80,0x84,0x80,0x84,0x00 -+// 15641 㴙 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x09,0x09,0x01,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x3c,0x00,0x00,0x30,0x00,0x42,0x02,0x02,0x42,0x02,0x02,0x32,0x02,0x00 -+// 15642 㴚 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x04,0x48,0x00,0x12,0x20,0x44,0xa8,0x70,0x90,0x34,0x42,0x93,0x10,0x20,0x00 -+// 15643 㴛 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x12,0x10,0x08,0x09,0x00,0x10,0x11,0x14,0x10,0x00,0x00,0x00,0x08,0x90,0x10,0x56,0x72,0x20,0x04,0xc4,0x0c,0x08,0x0c,0x12,0x01,0x00 -+// 15644 㴜 ; -+,0x00,0x00,0x08,0x09,0x01,0x01,0x11,0x11,0x09,0x09,0x10,0x12,0x12,0x10,0x10,0x00,0x00,0x20,0x10,0x02,0x02,0x02,0x00,0x02,0xaa,0xa0,0xae,0xa0,0xa0,0xa0,0x82,0x00 -+// 15645 㴝 ; -+,0x00,0x00,0x06,0x00,0x0e,0x0b,0x02,0x00,0x01,0x04,0x01,0x01,0x02,0x04,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x44,0x8c,0x00,0x4c,0x53,0x60,0x00,0x0c,0x84,0x00 -+// 15646 㴞 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x05,0x01,0x09,0x19,0x09,0x09,0x19,0x00,0x00,0x00,0x1e,0x00,0x22,0x90,0x84,0x02,0x22,0x02,0x22,0x22,0x02,0x22,0x02,0x00 -+// 15647 㴟 ; -+,0x00,0x00,0x09,0x09,0x01,0x01,0x11,0x01,0x01,0x08,0x08,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x02,0x00,0x42,0x02,0x02,0x02,0x00,0x04,0x00,0x19,0x00,0x00,0x10,0x00 -+// 15648 㴠 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x13,0x13,0x0b,0x0b,0x03,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x04,0x08,0x20,0x20,0x66,0x64,0x6c,0x6c,0x66,0x20,0x20,0x00,0x02,0x00 -+// 15649 㴡 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x10,0x11,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x3c,0x00,0x30,0x60,0x84,0x03,0x00,0x84,0x00,0x84,0x00,0x00,0x84,0x00 -+// 15650 㴢 ; -+,0x00,0x00,0x10,0x0a,0x00,0x00,0x12,0x02,0x01,0x00,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x48,0x48,0x08,0xab,0xe8,0xa8,0x28,0x2a,0x08,0x08,0x08,0x08,0x08,0x00 -+// 15651 㴣 ; -+,0x00,0x00,0x12,0x0a,0x00,0x00,0x12,0x00,0x00,0x08,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x12,0x52,0x90,0x91,0x11,0x2a,0x22,0x46,0x03,0x00 -+// 15652 㴤 ; -+,0x00,0x00,0x11,0x09,0x01,0x01,0x11,0x11,0x0b,0x0b,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x08,0x88,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 15653 㴥 ; -+,0x00,0x00,0x11,0x09,0x01,0x03,0x13,0x03,0x0b,0x0b,0x03,0x13,0x12,0x10,0x10,0x00,0x00,0x08,0x0a,0x2a,0x08,0x48,0x22,0x20,0x22,0x20,0x22,0x20,0x20,0x20,0x22,0x00 -+// 15654 㴦 ; -+,0x00,0x00,0x10,0x09,0x01,0x00,0x10,0x14,0x00,0x08,0x09,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x10,0x03,0x00,0x84,0x84,0x84,0x84,0x00,0x02,0x02,0x02,0x02,0x02,0x00 -+// 15655 㴧 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x14,0x14,0x00,0x08,0x08,0x12,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x04,0x84,0x00,0x80,0x90,0x81,0x84,0x7c,0x00 -+// 15656 㴨 ; -+,0x00,0x00,0x10,0x0a,0x02,0x02,0x12,0x02,0x02,0x0a,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x04,0x94,0x80,0x88,0x88,0x88,0x89,0x80,0x94,0x90,0x82,0xa3,0x81,0x00 -+// 15657 㴩 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x00,0x04,0x01,0x09,0x19,0x09,0x09,0x09,0x00,0x00,0x00,0xa4,0x00,0xa4,0x04,0x84,0x84,0x00,0x22,0x22,0x02,0x00,0x01,0xff,0x00 -+// 15658 㴪 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x04,0x04,0x00,0x08,0x18,0x08,0x19,0x18,0x00,0x00,0x20,0x44,0x84,0x84,0x84,0x84,0x84,0xa4,0x20,0x70,0x68,0xa4,0x26,0x20,0x00 -+// 15659 㴫 ; -+,0x00,0x00,0x10,0x08,0x00,0x01,0x11,0x01,0x09,0x09,0x03,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x21,0xa9,0x2a,0x2a,0x28,0x28,0x0a,0x28,0x29,0x29,0x2a,0x28,0x08,0x00 -+// 15660 㴬 ; -+,0x00,0x00,0x10,0x08,0x00,0x01,0x20,0x01,0x08,0x08,0x00,0x10,0x11,0x12,0x10,0x00,0x00,0x80,0x84,0x24,0x24,0x26,0x24,0x24,0x2c,0x2c,0xe4,0xa4,0x24,0x24,0x64,0x04 -+// 15661 㴭 ; -+,0x00,0x00,0x10,0x09,0x01,0x00,0x10,0x10,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x03,0x00,0x44,0x82,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x00 -+// 15662 㴮 ; -+,0x00,0x00,0x11,0x09,0x01,0x01,0x11,0x11,0x01,0x09,0x09,0x10,0x12,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x42,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 15663 㴯 ; -+,0x00,0x00,0x02,0x0a,0x02,0x02,0x12,0x02,0x0a,0x0a,0x02,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0x50,0x56,0x50,0x50,0x53,0x40,0x40,0x53,0x40,0x52,0x40,0x50,0x80,0x00 -+// 15664 㴰 ; -+,0x00,0x00,0x10,0x09,0x00,0x22,0x10,0x02,0x0a,0x0a,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x90,0x14,0x50,0x30,0x1b,0x60,0x00,0x00,0x02,0x48,0x00,0x01,0x4f,0x00 -+// 15665 㴱 ; -+,0x00,0x00,0x08,0x09,0x02,0x00,0x10,0x00,0x00,0x08,0x09,0x10,0x10,0x10,0x12,0x00,0x00,0x20,0x00,0x02,0x00,0xc8,0x24,0x20,0x32,0x22,0xc4,0x48,0x80,0x06,0x02,0x00 -+// 15666 㴲 ; -+,0x00,0x00,0x10,0x09,0x01,0x01,0x15,0x01,0x09,0x09,0x01,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x3c,0x10,0x10,0x52,0x12,0x10,0x12,0x00,0x84,0xa4,0xa4,0x05,0x07,0x00 -+// 15667 㴳 ; -+,0x00,0x00,0x11,0x08,0x00,0x00,0x21,0x10,0x00,0x00,0x01,0x16,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x24,0x22,0x20,0x22,0x28,0x22,0x28,0x02,0x4c,0x48,0x10,0x0e,0x00 -+// 15668 㴴 ; -+,0x00,0x00,0x11,0x09,0x01,0x01,0x15,0x01,0x01,0x09,0x09,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x10,0x56,0x10,0x2c,0x04,0x02,0x10,0x12,0x54,0x18,0x24,0x00,0x00,0x00 -+// 15669 㴵 ; -+,0x00,0x00,0x10,0x08,0x00,0x02,0x10,0x00,0x08,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x24,0x08,0x12,0x21,0x44,0xfc,0x00,0x86,0x00,0x00,0x00,0x02,0x03,0x00 -+// 15670 㴶 ; -+,0x00,0x00,0x08,0x09,0x03,0x00,0x10,0x00,0x01,0x08,0x08,0x10,0x00,0x10,0x00,0x00,0x00,0x20,0x20,0x62,0x42,0x50,0x90,0x90,0x90,0x90,0x90,0x92,0x90,0x92,0x00,0x00 -+// 15671 㴷 ; -+,0x00,0x00,0x10,0x02,0x02,0x22,0x22,0x02,0x02,0x02,0x12,0x32,0x10,0x10,0x10,0x00,0x00,0x00,0x48,0x88,0xab,0xe8,0x88,0x88,0x8c,0x8c,0xd4,0x94,0x84,0xa5,0x87,0x00 -+// 15672 㴸 ; -+,0x00,0x00,0x11,0x09,0x01,0x01,0x15,0x01,0x09,0x09,0x01,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x2b,0x28,0x2a,0x28,0x2a,0x00,0x00,0x00,0x20,0x28,0x44,0x00,0x02,0x00 -+// 15673 㴹 ; -+,0x00,0x00,0x10,0x0a,0x01,0x00,0x30,0x01,0x09,0x09,0x01,0x11,0x11,0x12,0x10,0x00,0x00,0x08,0x00,0x42,0x44,0x08,0x19,0x10,0x18,0x24,0x42,0x80,0x00,0x80,0x7f,0x00 -+// 15674 㴺 ; -+,0x00,0x00,0x10,0x01,0x00,0x00,0x33,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x52,0x52,0x35,0x19,0x18,0x10,0x24,0x42,0x01,0x00 -+// 15675 㴻 ; -+,0x00,0x00,0x10,0x08,0x00,0x02,0x22,0x02,0x0a,0x08,0x00,0x11,0x11,0x13,0x10,0x00,0x00,0x02,0x02,0x02,0x02,0x62,0x02,0x02,0x2a,0x0a,0x42,0x42,0x02,0x82,0x04,0x00 -+// 15676 㴼 ; -+,0x00,0x00,0x00,0x08,0x01,0x20,0x14,0x01,0x01,0x08,0x08,0x10,0x10,0x10,0x11,0x00,0x00,0x00,0x10,0x03,0x00,0x80,0x88,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00 -+// 15677 㴽 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x00,0x08,0x08,0x18,0x10,0x12,0x10,0x00,0x00,0x04,0x38,0x14,0x54,0x3b,0x70,0x54,0x13,0x00,0x00,0x52,0x41,0x44,0x7c,0x00 -+// 15678 㴾 ; -+,0x00,0x00,0x10,0x00,0x00,0x20,0x14,0x00,0x00,0x00,0x10,0x16,0x10,0x10,0x11,0x00,0x00,0x80,0x88,0xa8,0x89,0xb2,0x02,0x42,0x42,0x8c,0x84,0x84,0x8c,0x92,0x21,0x00 -+// 15679 㴿 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x11,0x01,0x01,0x09,0x01,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x0a,0x48,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x10,0x22,0x01,0x00 -+// 15680 㵀 ; -+,0x00,0x00,0x01,0x08,0x01,0x01,0x11,0x01,0x01,0x09,0x08,0x12,0x12,0x10,0x14,0x00,0x00,0x00,0x10,0x12,0x00,0x10,0x12,0x48,0x48,0x49,0x48,0x4c,0x50,0x92,0x01,0x00 -+// 15681 㵁 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x14,0x00,0x09,0x08,0x08,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x8a,0x88,0x20,0x32,0x20,0x40,0xc2,0x00,0xa4,0xa0,0xa0,0x20,0x07,0x00 -+// 15682 㵂 ; -+,0x00,0x00,0x10,0x09,0x01,0x01,0x15,0x01,0x09,0x09,0x00,0x12,0x12,0x10,0x11,0x00,0x00,0x00,0x10,0x02,0x00,0x04,0x44,0x44,0x00,0x00,0x40,0x00,0x0a,0x21,0x00,0x00 -+// 15683 㵃 ; -+,0x00,0x00,0x11,0x01,0x01,0x03,0x21,0x01,0x01,0x03,0x01,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x08,0x00,0x01,0xe0,0x10,0x10,0x12,0x94,0x10,0x10,0x50,0x11,0x1f,0x00 -+// 15684 㵄 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x30,0x00,0x08,0x08,0x10,0x11,0x11,0x10,0x10,0x00,0x00,0x10,0x14,0x12,0x10,0x50,0x12,0x42,0x0a,0x8c,0x8c,0x88,0x4c,0x53,0x01,0x00 -+// 15685 㵅 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x00,0x08,0x08,0x00,0x10,0x10,0x10,0x11,0x00,0x00,0x20,0x50,0x48,0x07,0x08,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x44,0x02,0x00 -+// 15686 㵆 ; -+,0x00,0x00,0x10,0x02,0x04,0x04,0x20,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x28,0xa8,0xaa,0x88,0x88,0x89,0x80,0xa2,0xa2,0xa2,0xa2,0x22,0x20,0x00 -+// 15687 㵇 ; -+,0x00,0x00,0x10,0x09,0x01,0x01,0x21,0x01,0x09,0x0a,0x02,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0xd2,0x12,0x12,0x12,0x12,0x12,0x12,0x52,0x52,0x52,0x52,0x52,0x12,0x00 -+// 15688 㵈 ; -+,0x00,0x00,0x10,0x02,0x00,0x04,0x30,0x00,0x00,0x00,0x10,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x44,0x80,0x80,0xe4,0x80,0x80,0x44,0x52,0xd2,0xd2,0xb2,0x12,0x12,0x00 -+// 15689 㵉 ; -+,0x00,0x00,0x12,0x00,0x00,0x00,0x22,0x00,0x00,0x02,0x02,0x16,0x12,0x14,0x10,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0xec,0xce,0x46,0x55,0x44,0x44,0x44,0x44,0x00 -+// 15690 㵊 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x14,0x01,0x09,0x09,0x01,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x84,0x84,0x80,0x84,0x01,0x20,0x62,0x22,0x62,0x2c,0x64,0x2e,0x21,0x00 -+// 15691 㵋 ; -+,0x00,0x00,0x00,0x08,0x03,0x00,0x10,0x10,0x00,0x08,0x08,0x10,0x10,0x10,0x11,0x00,0x00,0x00,0x48,0x48,0x4a,0x00,0x06,0x00,0x84,0x00,0x04,0x04,0x00,0x84,0x03,0x00 -+// 15692 㵌 ; -+,0x00,0x00,0x11,0x08,0x02,0x01,0x31,0x02,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x0e,0x40,0x40,0x49,0x48,0x48,0x50,0x52,0x40,0x52,0x00,0x12,0x10,0x00 -+// 15693 㵍 ; -+,0x00,0x00,0x01,0x09,0x01,0x01,0x15,0x01,0x09,0x09,0x09,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x6a,0x02,0x02,0x02,0x02,0x10,0x10,0x00,0x06,0x86,0x28,0x00,0x02,0x00 -+// 15694 㵎 ; -+,0x00,0x00,0x01,0x09,0x01,0x01,0x15,0x11,0x01,0x09,0x09,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x4a,0x4a,0x42,0x4a,0x02,0x4a,0x4a,0x4a,0x4a,0x4a,0x1a,0x02,0x02,0x00 -+// 15695 㵏 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x14,0x04,0x00,0x08,0x18,0x08,0x08,0x08,0x00,0x00,0x40,0x4a,0x40,0x00,0x12,0x00,0x88,0xc8,0x22,0x00,0x32,0x20,0x20,0x20,0x00 -+// 15696 㵐 ; -+,0x00,0x00,0x11,0x08,0x00,0x01,0x10,0x00,0x0a,0x0a,0x02,0x12,0x10,0x14,0x10,0x00,0x00,0x00,0x00,0xa4,0x24,0x59,0x40,0xd0,0xd4,0xd0,0xd8,0x48,0x00,0x92,0x21,0x00 -+// 15697 㵑 ; -+,0x00,0x00,0x00,0x08,0x01,0x01,0x10,0x04,0x08,0x08,0x08,0x10,0x10,0x10,0x11,0x00,0x00,0x80,0x80,0xa0,0x20,0x2a,0x40,0x86,0x80,0x00,0x84,0x00,0x00,0xc4,0x02,0x00 -+// 15698 㵒 ; -+,0x00,0x00,0x00,0x08,0x01,0x01,0x14,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x48,0x4a,0x4a,0x48,0x81,0x02,0x84,0x84,0x80,0x84,0x84,0x40,0x82,0x00 -+// 15699 㵓 ; -+,0x00,0x00,0x08,0x09,0x01,0x00,0x10,0x10,0x00,0x08,0x08,0x11,0x11,0x10,0x10,0x00,0x00,0x20,0x10,0x03,0x00,0x84,0x8c,0x84,0x8c,0x02,0x20,0xa0,0x20,0x60,0x3e,0x00 -+// 15700 㵔 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x14,0x10,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x20,0x20,0x40,0x00,0xa2,0x25,0x28,0x30,0x40,0x84,0x04,0x04,0x04,0x04,0x00 -+// 15701 㵕 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x14,0x16,0x00,0x08,0x08,0x10,0x11,0x10,0x10,0x00,0x00,0x00,0x40,0x8c,0x00,0x04,0x2a,0x60,0x48,0xa6,0x22,0xa0,0x21,0x25,0x60,0x00 -+// 15702 㵖 ; -+,0x00,0x00,0x08,0x09,0x01,0x00,0x10,0x00,0x08,0x09,0x10,0x11,0x11,0x12,0x10,0x00,0x00,0x80,0x80,0x32,0x52,0xd2,0x22,0x40,0x88,0x20,0x86,0xa2,0x20,0x22,0x60,0x00 -+// 15703 㵗 ; -+,0x00,0x00,0x08,0x00,0x00,0x04,0x08,0x08,0x0a,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x10,0xb0,0xb4,0x10,0x02,0x56,0x02,0x42,0x48,0x60,0x50,0x4e,0xc2,0x00 -+// 15704 㵘 ; -+,0x00,0x00,0x00,0x0f,0x0a,0x01,0x00,0x04,0x00,0x05,0x0c,0x0c,0x15,0x24,0x0c,0x00,0x00,0x00,0x0a,0x18,0x08,0x2a,0x49,0x18,0x00,0x08,0x1a,0x2c,0x28,0xcb,0x18,0x00 -+// 15705 㵙 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x04,0x00,0x08,0x08,0x10,0x11,0x11,0x11,0x00,0x00,0x20,0x22,0x20,0x20,0x04,0x04,0x04,0x08,0x40,0x00,0x04,0x04,0x04,0x04,0x00 -+// 15706 㵚 ; -+,0x00,0x00,0x08,0x09,0x00,0x00,0x10,0x10,0x08,0x09,0x00,0x30,0x10,0x10,0x10,0x00,0x00,0x00,0x8c,0x1a,0x70,0x78,0x84,0x20,0xc8,0x07,0x20,0x24,0x20,0xa8,0x22,0x00 -+// 15707 㵛 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x04,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x48,0x40,0x30,0x00,0x30,0x31,0x20,0x84,0xb9,0x00,0x84,0x84,0x84,0x84,0x00 -+// 15708 㵜 ; -+,0x00,0x00,0x10,0x02,0x00,0x00,0x12,0x00,0x00,0x00,0x02,0x16,0x10,0x14,0x10,0x00,0x00,0x10,0x10,0x12,0x10,0x13,0x80,0xa8,0x88,0x90,0x92,0x92,0x90,0x92,0x82,0x00 -+// 15709 㵝 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x10,0x00,0x01,0x09,0x09,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x22,0x60,0xd4,0x88,0x47,0x00,0x02,0x4a,0x06,0x4a,0x4a,0x42,0x06,0x00 -+// 15710 㵞 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x11,0x11,0x00,0x08,0x08,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0xc0,0x80,0x89,0x9e,0xcc,0xa8,0x92,0x81,0x00,0x10,0x01,0x05,0x7c,0x00 -+// 15711 㵟 ; -+,0x00,0x01,0x09,0x0a,0x00,0x01,0x10,0x02,0x02,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x04,0x10,0x19,0x9a,0x0a,0x12,0x02,0x66,0x44,0x04,0x36,0x0a,0x01,0x00 -+// 15712 㵠 ; -+,0x00,0x00,0x08,0x01,0x00,0x11,0x11,0x01,0x01,0x09,0x09,0x10,0x12,0x10,0x10,0x00,0x00,0x20,0x10,0x02,0x84,0x02,0x04,0x04,0x04,0x10,0x14,0x54,0x92,0x92,0x92,0x00 -+// 15713 㵡 ; -+,0x00,0x00,0x00,0x08,0x02,0x00,0x10,0x00,0x01,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x20,0x22,0x20,0x20,0x80,0x06,0x12,0x10,0x94,0x0c,0x01,0xff,0x00 -+// 15714 㵢 ; -+,0x00,0x00,0x08,0x00,0x01,0x00,0x10,0x04,0x00,0x09,0x09,0x19,0x11,0x11,0x11,0x00,0x00,0x00,0x10,0x10,0x33,0x00,0x00,0x00,0x00,0x02,0x02,0xb2,0x02,0x12,0x02,0x00 -+// 15715 㵣 ; -+,0x00,0x00,0x12,0x0a,0x02,0x02,0x12,0x02,0x02,0x04,0x01,0x12,0x16,0x10,0x10,0x00,0x00,0x00,0x68,0x48,0x49,0x41,0x44,0x04,0x24,0x24,0x24,0x28,0x2a,0x23,0x41,0x00 -+// 15716 㵤 ; -+,0x00,0x00,0x08,0x09,0x00,0x00,0x12,0x00,0x00,0x08,0x09,0x11,0x10,0x10,0x11,0x00,0x00,0x00,0x42,0x4a,0x42,0x4a,0x52,0x20,0x22,0x20,0x24,0xaa,0x52,0x48,0x06,0x00 -+// 15717 㵥 ; -+,0x00,0x00,0x08,0x09,0x00,0x00,0x12,0x00,0x00,0x08,0x09,0x11,0x11,0x11,0x10,0x00,0x00,0x20,0x00,0x02,0x00,0xa8,0x92,0xe0,0xfc,0x00,0x06,0x50,0x50,0x50,0x00,0x00 -+// 15718 㵦 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x10,0x01,0x01,0x09,0x09,0x11,0x11,0x11,0x12,0x00,0x00,0x10,0x10,0x20,0x22,0x48,0x00,0x00,0x00,0x24,0x00,0x24,0x00,0x04,0x7e,0x00 -+// 15719 㵧 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x11,0x05,0x00,0x09,0x09,0x10,0x11,0x11,0x10,0x00,0x00,0x08,0x4a,0x08,0x04,0x04,0x04,0x04,0x80,0xb2,0x22,0x4a,0x82,0x02,0x04,0x00 -+// 15720 㵨 ; -+,0x00,0x00,0x09,0x01,0x11,0x10,0x19,0x09,0x09,0x00,0x01,0x02,0x02,0x08,0x00,0x00,0x00,0x10,0x02,0x24,0x00,0x18,0x00,0x18,0x00,0x44,0x48,0x60,0x50,0x4c,0x82,0x00 -+// 15721 㵩 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x11,0x11,0x01,0x09,0x00,0x10,0x10,0x11,0x12,0x00,0x00,0x00,0x8a,0x88,0x00,0x6e,0x08,0x28,0x00,0x30,0x21,0x70,0xa0,0x26,0x21,0x00 -+// 15722 㵪 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x09,0x00,0x11,0x12,0x12,0x12,0x00,0x00,0x08,0x40,0x22,0x20,0x20,0x20,0x20,0x20,0x46,0x10,0x10,0x20,0x24,0x42,0x00 -+// 15723 㵫 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x10,0x10,0x02,0x09,0x09,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x22,0x00,0x62,0xc0,0x84,0x04,0x08,0x00,0x04,0x04,0x00,0x04,0x00 -+// 15724 㵬 ; -+,0x00,0x00,0x15,0x05,0x05,0x05,0x05,0x15,0x05,0x05,0x15,0x35,0x11,0x11,0x11,0x00,0x00,0x00,0x24,0x24,0x24,0x28,0x08,0x4a,0x06,0x42,0x5a,0x5a,0x5a,0x5a,0x5b,0x00 -+// 15725 㵭 ; -+,0x00,0x00,0x08,0x04,0x00,0x20,0x10,0x00,0x00,0x08,0x08,0x10,0x00,0x11,0x12,0x00,0x00,0x20,0x22,0x2c,0x28,0x31,0x20,0xc4,0x84,0x04,0x04,0x84,0x00,0x09,0x01,0x00 -+// 15726 㵮 ; -+,0x00,0x00,0x08,0x08,0x00,0x21,0x10,0x00,0x00,0x09,0x09,0x11,0x10,0x10,0x10,0x00,0x00,0x20,0x62,0x40,0x84,0x03,0xc8,0x08,0x20,0x24,0x20,0x24,0x21,0x20,0x20,0x00 -+// 15727 㵯 ; -+,0x00,0x00,0x09,0x08,0x00,0x20,0x10,0x00,0x08,0x08,0x02,0x12,0x13,0x11,0x10,0x00,0x00,0x00,0x04,0x0c,0x04,0x8c,0x8c,0x8c,0x84,0x84,0x8c,0x08,0x2a,0x0b,0x11,0x00 -+// 15728 㵰 ; -+,0x00,0x00,0x09,0x08,0x00,0x20,0x10,0x01,0x00,0x08,0x0a,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x12,0xc2,0x42,0x42,0x53,0x00,0x80,0x06,0x02,0x00 -+// 15729 㵱 ; -+,0x00,0x00,0x08,0x08,0x03,0x22,0x12,0x02,0x08,0x08,0x00,0x10,0x12,0x10,0x11,0x00,0x00,0x00,0x52,0x42,0xe2,0x63,0x62,0x62,0x0a,0x0a,0x82,0x82,0xa2,0x82,0x84,0x00 -+// 15730 㵲 ; -+,0x00,0x00,0x09,0x09,0x01,0x21,0x11,0x01,0x00,0x09,0x09,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x54,0x54,0x54,0x54,0x57,0x00,0x04,0x64,0x54,0x15,0x84,0x04,0x00 -+// 15731 㵳 ; -+,0x00,0x00,0x08,0x00,0x02,0x00,0x10,0x01,0x00,0x08,0x09,0x18,0x00,0x10,0x10,0x00,0x00,0x20,0x00,0x01,0x44,0xcc,0x54,0x00,0x20,0xd4,0x23,0x10,0x44,0x18,0x60,0x00 -+// 15732 㵴 ; -+,0x00,0x00,0x10,0x09,0x01,0x21,0x13,0x01,0x01,0x03,0x11,0x11,0x10,0x12,0x10,0x00,0x00,0x00,0x0a,0x0a,0x08,0x18,0x2a,0x6a,0x1a,0x14,0x64,0x24,0x5c,0x03,0x01,0x00 -+// 15733 㵵 ; -+,0x00,0x00,0x09,0x09,0x01,0x01,0x11,0x03,0x00,0x08,0x08,0x12,0x10,0x11,0x10,0x00,0x00,0x00,0x20,0x01,0x02,0x46,0x23,0x40,0x30,0x22,0xa4,0x30,0xa8,0x26,0x22,0x00 -+// 15734 㵶 ; -+,0x00,0x00,0x08,0x04,0x00,0x20,0x10,0x01,0x01,0x0b,0x09,0x11,0x01,0x11,0x11,0x00,0x00,0x00,0x48,0x4a,0x48,0x49,0x88,0x48,0x4a,0x4a,0x44,0x44,0x44,0x4b,0x01,0x00 -+// 15735 㵷 ; -+,0x00,0x00,0x08,0x00,0x00,0x12,0x14,0x04,0x08,0x08,0x0a,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x04,0x45,0x00,0x02,0x88,0x05,0x00,0x40,0x47,0x40,0x00,0x04,0x04,0x00 -+// 15736 㵸 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x10,0x00,0x08,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x20,0x60,0x40,0x84,0x03,0x52,0x50,0x50,0x02,0x52,0x52,0x12,0x12,0x06,0x00 -+// 15737 㵹 ; -+,0x00,0x00,0x08,0x08,0x00,0x24,0x04,0x04,0x04,0x04,0x14,0x15,0x14,0x10,0x10,0x00,0x00,0x04,0x04,0x14,0x00,0xa2,0xa2,0xa2,0xa2,0x88,0x99,0x90,0x94,0x22,0x03,0x00 -+// 15738 㵺 ; -+,0x00,0x00,0x08,0x09,0x00,0x00,0x10,0x00,0x00,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x88,0x08,0x14,0x44,0x20,0x06,0x00,0x24,0x20,0x40,0x00,0x30,0x00,0x00,0x00 -+// 15739 㵻 ; -+,0x00,0x00,0x12,0x0a,0x02,0x20,0x12,0x00,0x00,0x00,0x04,0x14,0x14,0x10,0x11,0x00,0x00,0x08,0xa8,0xc8,0xc8,0xca,0xc8,0xca,0x88,0x8a,0x82,0x84,0x88,0x9c,0x03,0x00 -+// 15740 㵼 ; -+,0x00,0x00,0x00,0x0a,0x00,0x01,0x11,0x11,0x09,0x08,0x11,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x01,0x00,0x40,0x02,0x42,0x02,0x02,0xc0,0x81,0x01,0x04,0x42,0x06,0x00 -+// 15741 㵽 ; -+,0x00,0x00,0x09,0x09,0x01,0x21,0x11,0x00,0x02,0x0a,0x0a,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x00,0x00,0xd7,0x54,0xd6,0x54,0x54,0xd6,0x50,0x00 -+// 15742 㵾 ; -+,0x00,0x01,0x11,0x09,0x01,0x21,0x11,0x00,0x02,0x02,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x13,0x10,0x52,0x10,0x12,0x10,0x50,0x5e,0x4c,0x4c,0x44,0x54,0x83,0x00 -+// 15743 㵿 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x00,0x01,0x09,0x08,0x12,0x10,0x10,0x10,0x00,0x00,0x20,0x44,0x04,0x84,0x04,0x84,0x00,0x04,0x41,0x51,0x51,0x51,0x51,0x51,0x00 -+// 15744 㶀 ; -+,0x00,0x00,0x0a,0x08,0x00,0x22,0x12,0x00,0x00,0x02,0x00,0x14,0x14,0x10,0x10,0x00,0x00,0x00,0x93,0xb4,0x92,0xb4,0x88,0x88,0x94,0xa9,0x94,0x88,0x82,0x8c,0x00,0x00 -+// 15745 㶁 ; -+,0x00,0x00,0x11,0x00,0x00,0x21,0x10,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x11,0x00,0x00,0x08,0x88,0x08,0x08,0xa0,0x2a,0x28,0xae,0xa0,0x28,0x00,0x00,0x11,0x03,0x00 -+// 15746 㶂 ; -+,0x00,0x00,0x0a,0x08,0x00,0x20,0x10,0x02,0x00,0x02,0x12,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0x20,0x2e,0x20,0x20,0x10,0x12,0x52,0x52,0x52,0x52,0x20,0x62,0x80,0x00 -+// 15747 㶃 ; -+,0x00,0x00,0x12,0x0a,0x00,0x20,0x10,0x02,0x00,0x00,0x10,0x14,0x10,0x14,0x15,0x00,0x00,0x00,0x40,0x42,0x68,0x68,0x68,0x6e,0x68,0x68,0x6d,0x00,0x0a,0xa9,0x01,0x00 -+// 15748 㶄 ; -+,0x00,0x00,0x09,0x09,0x00,0x01,0x10,0x00,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x29,0x29,0x21,0x01,0x21,0x25,0x09,0x25,0x05,0x45,0x45,0x05,0x03,0x00 -+// 15749 㶅 ; -+,0x00,0x00,0x09,0x09,0x01,0x01,0x11,0x01,0x00,0x0c,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x12,0x12,0x02,0x32,0x32,0x02,0x01,0x08,0x10,0x20,0x20,0x20,0x60,0x00 -+// 15750 㶆 ; -+,0x00,0x00,0x09,0x08,0x00,0x20,0x10,0x00,0x08,0x08,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x08,0x08,0x0e,0x0a,0x0c,0x0c,0x08,0x12,0x32,0x82,0x92,0x82,0x92,0x02,0x00 -+// 15751 㶇 ; -+,0x00,0x00,0x11,0x09,0x01,0x21,0x11,0x03,0x03,0x01,0x01,0x11,0x11,0x11,0x11,0x00,0x00,0x04,0x04,0x14,0x04,0x15,0x08,0xaa,0xaa,0x2a,0x2a,0x2a,0x00,0x32,0x01,0x00 -+// 15752 㶈 ; -+,0x00,0x00,0x00,0x09,0x00,0x00,0x10,0x12,0x0c,0x01,0x01,0x11,0x10,0x10,0x13,0x00,0x00,0x80,0xa2,0x94,0x88,0x2a,0x00,0x01,0x20,0x24,0x24,0x24,0x20,0x26,0x82,0x00 -+// 15753 㶉 ; -+,0x00,0x00,0x00,0x08,0x02,0x00,0x10,0x02,0x00,0x03,0x01,0x11,0x11,0x12,0x10,0x00,0x00,0x00,0x80,0x33,0x10,0x16,0x52,0x92,0x50,0x71,0x01,0x05,0x01,0x40,0x02,0x00 -+// 15754 㶊 ; -+,0x00,0x00,0x10,0x08,0x04,0x24,0x16,0x00,0x00,0x00,0x11,0x11,0x11,0x15,0x10,0x00,0x00,0x00,0x45,0x00,0x1a,0x10,0x52,0x52,0x52,0x52,0x10,0x12,0x08,0x52,0x21,0x00 -+// 15755 㶋 ; -+,0x00,0x00,0x11,0x09,0x01,0x01,0x11,0x02,0x09,0x02,0x11,0x12,0x10,0x10,0x11,0x00,0x00,0x00,0x84,0x84,0x94,0x94,0x04,0x04,0x04,0x84,0xa5,0xa0,0x90,0x8c,0x03,0x00 -+// 15756 㶌 ; -+,0x00,0x00,0x10,0x05,0x05,0x05,0x15,0x05,0x05,0x05,0x15,0x35,0x1d,0x11,0x11,0x00,0x00,0x00,0xa0,0x11,0x72,0x20,0x15,0x51,0x04,0x05,0x05,0x15,0x14,0x04,0x04,0x00 -+// 15757 㶍 ; -+,0x00,0x00,0x09,0x09,0x02,0x22,0x12,0x02,0x02,0x02,0x12,0x12,0x10,0x11,0x14,0x00,0x00,0x00,0x02,0x48,0x01,0x04,0xa4,0xa5,0xe4,0xa4,0xa5,0x04,0x04,0x64,0x04,0x00 -+// 15758 㶎 ; -+,0x00,0x00,0x10,0x0a,0x00,0x20,0x10,0x01,0x09,0x01,0x11,0x11,0x11,0x14,0x10,0x00,0x00,0x00,0xaa,0xaa,0xaa,0x00,0x00,0x44,0x40,0x32,0x60,0x24,0x32,0xe0,0x3e,0x00 -+// 15759 㶏 ; -+,0x00,0x00,0x00,0x0a,0x02,0x22,0x12,0x02,0x0a,0x0a,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x06,0x90,0x82,0x00,0x08,0x0a,0x82,0x82,0x82,0x82,0x00,0x29,0xa1,0x1c,0x00 -+// 15760 㶐 ; -+,0x00,0x00,0x08,0x09,0x02,0x02,0x10,0x00,0x02,0x0a,0x0a,0x12,0x12,0x11,0x10,0x00,0x00,0x20,0x10,0x00,0x58,0x22,0xa8,0xa8,0xaa,0xa8,0xa0,0x10,0x49,0x40,0x7e,0x00 -+// 15761 㶑 ; -+,0x00,0x00,0x11,0x09,0x00,0x00,0x10,0x03,0x01,0x01,0x10,0x32,0x12,0x11,0x10,0x00,0x00,0x80,0x88,0x48,0x29,0x41,0x08,0xa8,0x28,0x28,0x0c,0x4c,0x48,0x32,0x01,0x00 -+// 15762 㶒 ; -+,0x00,0x00,0x0a,0x0a,0x02,0x02,0x22,0x02,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x50,0x50,0x50,0x50,0x52,0x08,0xa0,0xa8,0xa4,0x04,0x64,0x08,0x02,0x02 -+// 15763 㶓 ; -+,0x00,0x00,0x00,0x08,0x00,0x02,0x10,0x02,0x08,0x08,0x02,0x12,0x10,0x11,0x10,0x00,0x00,0x80,0x9a,0x80,0x0a,0x88,0x88,0xea,0xea,0xd2,0xd4,0x64,0x64,0x0b,0x11,0x00 -+// 15764 㶔 ; -+,0x00,0x00,0x09,0x09,0x01,0x00,0x17,0x01,0x09,0x0a,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x54,0x54,0x54,0x00,0xd9,0x99,0x99,0xd8,0x20,0x70,0x40,0x8c,0x03,0x00 -+// 15765 㶕 ; -+,0x00,0x01,0x09,0x08,0x00,0x20,0x12,0x02,0x0a,0x0a,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x08,0x29,0x94,0x04,0x42,0x52,0x52,0x42,0x02,0x4a,0x4a,0x4a,0x0a,0x06,0x00 -+// 15766 㶖 ; -+,0x00,0x00,0x01,0x09,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x10,0x12,0x24,0x08,0x14,0x03,0x0a,0x3e,0x1a,0x00,0x08,0x00,0x00,0x15,0x00 -+// 15767 㶗 ; -+,0x00,0x08,0x18,0x11,0x01,0x11,0x13,0x03,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x80,0x28,0x12,0x08,0xa2,0x09,0x80,0x0c,0x08,0x44,0x40,0x58,0x46,0x00 -+// 15768 㶘 ; -+,0x00,0x01,0x11,0x0a,0x00,0x00,0x11,0x11,0x00,0x08,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x08,0x18,0x84,0x02,0x40,0x5a,0x52,0x00,0x04,0x84,0x84,0x20,0x20,0x20,0x00 -+// 15769 㶙 ; -+,0x00,0x00,0x00,0x15,0x00,0x00,0x24,0x00,0x00,0x11,0x14,0x24,0x00,0x20,0x20,0x00,0x00,0x00,0x80,0x8c,0xcc,0x8c,0xb4,0x44,0xc4,0x64,0x55,0x80,0x08,0x46,0xc1,0x00 -+// 15770 㶚 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x10,0x01,0x01,0x00,0x12,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0x50,0x52,0x52,0x02,0x40,0x6a,0x4a,0x8a,0xaa,0xaa,0x82,0x92,0x82,0x00 -+// 15771 㶛 ; -+,0x00,0x00,0x12,0x08,0x02,0x02,0x12,0x02,0x02,0x00,0x10,0x15,0x15,0x11,0x11,0x00,0x00,0x10,0x20,0x20,0x40,0x22,0x08,0xbe,0x00,0x0c,0x0c,0x08,0x00,0x22,0x41,0x00 -+// 15772 㶜 ; -+,0x00,0x00,0x14,0x04,0x04,0x04,0x04,0x07,0x07,0x07,0x17,0x13,0x11,0x11,0x10,0x00,0x00,0x00,0xc9,0xc9,0xcd,0x49,0x51,0x79,0x61,0x7d,0x61,0x61,0x21,0x01,0x02,0x00 -+// 15773 㶝 ; -+,0x00,0x00,0x14,0x10,0x00,0x00,0x24,0x00,0x00,0x00,0x10,0x35,0x05,0x05,0x04,0x00,0x00,0x00,0x10,0xa0,0x94,0x52,0xd6,0x44,0x54,0x55,0x00,0x28,0x29,0xa0,0x3e,0x00 -+// 15774 㶞 ; -+,0x00,0x00,0x11,0x09,0x01,0x00,0x10,0x00,0x08,0x08,0x00,0x10,0x10,0x11,0x10,0x00,0x00,0x04,0x04,0x04,0x04,0x22,0x00,0x54,0x10,0x9a,0x90,0x81,0x86,0x88,0x87,0x80 -+// 15775 㶟 ; -+,0x00,0x00,0x10,0x08,0x00,0x02,0x12,0x02,0x08,0x08,0x00,0x11,0x10,0x10,0x12,0x00,0x00,0x04,0xa4,0x24,0x00,0xd5,0xd5,0xd5,0x20,0xcc,0x30,0xc6,0x90,0x92,0x31,0x00 -+// 15776 㶠 ; -+,0x00,0x00,0x15,0x15,0x05,0x05,0x25,0x05,0x05,0x10,0x11,0x36,0x08,0x20,0x01,0x00,0x00,0x00,0x35,0x25,0xa5,0x25,0x88,0x08,0x09,0x80,0x84,0x88,0x89,0x88,0x08,0x00 -+// 15777 㶡 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x08,0x00,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x98,0xa8,0x88,0x88,0x80,0x24,0x15,0x03,0x01,0x00 -+// 15778 㶢 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x02,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x80,0x84,0x00,0x20,0x18,0x86,0x00,0x10,0x10,0x10,0x10,0x11,0x0e,0x00 -+// 15779 㶣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x0c,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0xc0,0x00,0xc2,0x00,0x00,0x00,0x40,0x8c,0x88,0x80,0x30,0x0c,0x06,0x00 -+// 15780 㶤 ; -+,0x00,0x00,0x04,0x04,0x05,0x06,0x04,0x20,0x00,0x00,0x08,0x0a,0x09,0x10,0x00,0x00,0x00,0x10,0x30,0x20,0x21,0x41,0x42,0x02,0xa4,0x14,0x08,0x08,0x10,0x20,0x00,0x00 -+// 15781 㶥 ; -+,0x00,0x00,0x04,0x04,0x05,0x06,0x04,0x20,0x00,0x00,0x0c,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 15782 㶦 ; -+,0x00,0x00,0x04,0x04,0x05,0x06,0x04,0x20,0x00,0x00,0x08,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x06,0x04,0x10,0x08,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00 -+// 15783 㶧 ; -+,0x00,0x00,0x04,0x00,0x00,0x06,0x04,0x20,0x00,0x08,0x0c,0x0a,0x09,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x93,0x92,0x92,0x92,0x9a,0xa6,0x82,0x82,0x82,0x82,0x86,0x00 -+// 15784 㶨 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x01,0x11,0x30,0x00,0x00,0x00,0x02,0xc0,0x80,0xd0,0x06,0x03,0x00,0x00,0x00,0x00,0x22,0x32,0x00,0x00 -+// 15785 㶩 ; -+,0x00,0x00,0x04,0x04,0x05,0x06,0x04,0x20,0x00,0x00,0x0c,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x32,0x82,0x80,0x30,0x30,0x20,0x20,0x40,0x00,0x81,0x0f,0x00 -+// 15786 㶪 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0xc0,0x80,0x0c,0x06,0x02,0x00,0x00,0x8c,0xd0,0x20,0x20,0x18,0x06,0x00 -+// 15787 㶫 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x02,0x08,0x00,0x0c,0x01,0x03,0x06,0x08,0x00,0x00,0x40,0x40,0xc0,0x84,0x80,0x18,0x04,0x82,0xc8,0x90,0x20,0x10,0x0c,0x06,0x00 -+// 15788 㶬 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x08,0x08,0x08,0x0a,0x11,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x13,0x10,0x10,0x12,0x30,0x10,0x54,0x94,0x13,0x10,0x10,0x00 -+// 15789 㶭 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x29,0x29,0x08,0x08,0x04,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x44,0x80,0xa0,0x2d,0x01,0x41,0x49,0x89,0x29,0xb9,0x10,0x22,0x06,0x00 -+// 15790 㶮 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x04,0x0c,0x09,0x01,0x02,0x08,0x00,0x00,0x00,0x40,0x40,0x84,0x80,0x10,0x04,0x44,0xc8,0xc8,0xa0,0x10,0x18,0x06,0x00 -+// 15791 㶯 ; -+,0x00,0x08,0x08,0x08,0x0b,0x09,0x29,0x29,0x09,0x09,0x05,0x12,0x10,0x00,0x00,0x00,0x00,0x00,0x60,0x89,0x09,0x29,0x29,0x29,0x29,0x29,0xa9,0x09,0x4a,0x08,0x08,0x00 -+// 15792 㶰 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x08,0x28,0x08,0x08,0x08,0x0a,0x13,0x10,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x00 -+// 15793 㶱 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x00,0x08,0x08,0x0a,0x01,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x11,0x30,0x30,0x34,0x54,0x52,0x12,0x95,0x10,0x10,0x10,0x00 -+// 15794 㶲 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x08,0x08,0x0c,0x0a,0x00,0x10,0x00,0x00,0x00,0x00,0x02,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x02,0x00 -+// 15795 㶳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x01,0x02,0x04,0x00,0x00,0x00,0xc8,0x82,0x8c,0x80,0x84,0x80,0xc0,0x00,0xc4,0xc0,0x20,0x18,0x07,0x00 -+// 15796 㶴 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x08,0x28,0x08,0x08,0x08,0x0a,0x12,0x10,0x00,0x00,0x00,0x10,0x30,0x22,0x62,0x04,0x10,0x08,0x10,0x33,0x62,0x14,0x08,0x10,0x40,0x00 -+// 15797 㶵 ; -+,0x00,0x00,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x11,0x10,0x00,0x00,0x00,0x0c,0x20,0x20,0x20,0x22,0x20,0x20,0x22,0x00,0x00,0x24,0x22,0x02,0x00 -+// 15798 㶶 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x0c,0x0a,0x10,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0xb3,0x20,0x20,0x42,0x48,0xc8,0x48,0x44,0x46,0x43,0x40,0x00 -+// 15799 㶷 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x0a,0x00,0x10,0x00,0x00,0x00,0x40,0x40,0x41,0x81,0x81,0x49,0x49,0x49,0x49,0x49,0x49,0x00,0x02,0x06,0x00 -+// 15800 㶸 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x02,0x13,0x10,0x00,0x00,0x00,0x10,0x30,0x22,0x22,0x22,0x4c,0x00,0x04,0xa5,0xa5,0xa5,0x29,0x29,0x46,0x00 -+// 15801 㶹 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x0c,0x0a,0x10,0x11,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x11,0x10,0x10,0x12,0x58,0x50,0x14,0x92,0x11,0x30,0x00 -+// 15802 㶺 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x08,0x28,0x08,0x08,0x08,0x0a,0x12,0x10,0x00,0x00,0x00,0x00,0x02,0x30,0x20,0x21,0x40,0x44,0x86,0x87,0x84,0x84,0x84,0x84,0x84,0x00 -+// 15803 㶻 ; -+,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x11,0x00,0x00,0x00,0x08,0x10,0x60,0x98,0x47,0x40,0x48,0x40,0x42,0x40,0x00,0x12,0x02,0x00 -+// 15804 㶼 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x04,0x12,0x00,0x20,0x00,0x00,0x00,0x20,0x44,0xc2,0x00,0x40,0x94,0x10,0x10,0x30,0x20,0x08,0x44,0x03,0x00 -+// 15805 㶽 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x20,0x00,0x00,0x00,0xc6,0x80,0x80,0x84,0x90,0x10,0x13,0x10,0x28,0x04,0x00,0x02,0x02,0x00 -+// 15806 㶾 ; -+,0x00,0x00,0x01,0x01,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x04,0x09,0x02,0x04,0x00,0x00,0x02,0x20,0x20,0x24,0x24,0x24,0x00,0x02,0x40,0x84,0xc0,0x20,0x10,0x0f,0x00 -+// 15807 㶿 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x29,0x28,0x08,0x08,0x08,0x0e,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x00,0x04,0x08,0x10,0x11,0x10,0x10,0x10,0x30,0x00 -+// 15808 㷀 ; -+,0x00,0x00,0x04,0x14,0x14,0x01,0x09,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x92,0x1c,0x50,0x18,0x06,0x00,0x18,0x00,0x08,0x08,0x08,0x04,0x02,0x00 -+// 15809 㷁 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x08,0x08,0x08,0x0a,0x03,0x10,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x96,0x00 -+// 15810 㷂 ; -+,0x00,0x00,0x14,0x14,0x11,0x10,0x14,0x14,0x10,0x00,0x00,0x09,0x01,0x02,0x04,0x00,0x00,0x00,0x02,0x02,0x84,0x0c,0x06,0x02,0x00,0x80,0x88,0xd0,0x20,0x10,0x0f,0x00 -+// 15811 㷃 ; -+,0x00,0x00,0x04,0x09,0x02,0x00,0x00,0x02,0x02,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x84,0x30,0x0c,0x12,0x00,0x00,0x10,0x00,0x02,0x44,0x20,0x18,0x07,0x00 -+// 15812 㷄 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x08,0x02,0x12,0x11,0x20,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x92,0x90,0x10,0x38,0x30,0x54,0x92,0x13,0x10,0x00 -+// 15813 㷅 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x31,0x00,0x00,0x04,0x09,0x03,0x04,0x00,0x00,0x00,0x00,0x06,0x04,0x04,0x0c,0x16,0x02,0x00,0xc4,0x88,0x20,0x18,0x06,0x00 -+// 15814 㷆 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x08,0x08,0x08,0x0a,0x02,0x10,0x00,0x00,0x00,0x10,0x02,0x02,0x42,0x40,0x00,0x42,0x02,0x52,0x10,0x11,0x10,0x10,0x10,0x00 -+// 15815 㷇 ; -+,0x00,0x04,0x08,0x09,0x12,0x0a,0x04,0x04,0x04,0x09,0x19,0x0a,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x00,0x20,0x20,0x28,0x08,0x4a,0x68,0x0c,0x14,0x10,0x22,0x01,0x00 -+// 15816 㷈 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x29,0x28,0x08,0x08,0x08,0x04,0x12,0x10,0x20,0x00,0x00,0x20,0x20,0x42,0x40,0xa8,0x24,0xa7,0xa4,0xa4,0xa4,0xac,0x20,0x21,0x3f,0x00 -+// 15817 㷉 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x12,0x0a,0x22,0x04,0x00,0x00,0x00,0x04,0x84,0x04,0x84,0x05,0x84,0x04,0x94,0x14,0x84,0x04,0x04,0x84,0x8c,0x00 -+// 15818 㷊 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0e,0x09,0x10,0x00,0x00,0x00,0x00,0x01,0x11,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x34,0x00,0x42,0x01,0x00,0x00,0x24,0x22,0x22,0x00 -+// 15819 㷋 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x0a,0x12,0x10,0x01,0x00,0x00,0x10,0x16,0x18,0x90,0x24,0x42,0x10,0x10,0x32,0xa8,0x28,0x48,0x44,0x83,0x00 -+// 15820 㷌 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x0a,0x08,0x09,0x05,0x13,0x11,0x20,0x00,0x00,0x00,0x06,0x06,0x02,0x06,0x00,0x31,0x00,0x32,0x02,0x02,0x02,0x06,0x00,0x00 -+// 15821 㷍 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x00,0x00,0x00,0x20,0x20,0x00,0x40,0x86,0x07,0x00,0x02,0x2a,0xaa,0xaa,0x2a,0x2a,0x02,0x00 -+// 15822 㷎 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x40,0x40,0x91,0x11,0xb1,0x89,0x81,0x00,0x06,0x00 -+// 15823 㷏 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x0f,0x14,0x04,0x00,0x04,0x0c,0x01,0x02,0x04,0x00,0x00,0x00,0x20,0x08,0x88,0x09,0x08,0x08,0x08,0x80,0xcc,0xa0,0x10,0x0c,0x06,0x00 -+// 15824 㷐 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x00,0x00,0x00,0x00,0x02,0x82,0x82,0xa2,0x82,0x82,0x82,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 15825 㷑 ; -+,0x00,0x00,0x00,0x09,0x02,0x00,0x01,0x01,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x84,0x20,0x18,0x0a,0x20,0x24,0x24,0x24,0x00,0x00,0x80,0x00,0x02,0x00 -+// 15826 㷒 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x08,0x28,0x09,0x09,0x09,0x0d,0x13,0x11,0x01,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x92,0x90,0x11,0x11,0x11,0x35,0x41,0x01,0x02,0x00 -+// 15827 㷓 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x28,0x08,0x08,0x0c,0x0a,0x11,0x10,0x00,0x00,0x00,0x40,0x40,0x63,0xaa,0x6a,0x1a,0x0a,0x02,0x04,0x10,0x51,0x41,0x42,0x7e,0x00 -+// 15828 㷔 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x08,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x00,0x00,0x00,0x00,0x1c,0x00,0x92,0x54,0x00,0x02,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x00 -+// 15829 㷕 ; -+,0x00,0x00,0x09,0x08,0x06,0x06,0x1e,0x12,0x1a,0x13,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x8b,0xaa,0xa8,0x88,0x94,0x94,0x92,0xa2,0x01,0x00 -+// 15830 㷖 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x04,0x05,0x14,0x04,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x22,0x26,0x00,0x02,0x22,0x22,0x22,0x22,0x22,0x00 -+// 15831 㷗 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x00,0x00,0x08,0x09,0x02,0x0c,0x00,0x00,0x00,0x52,0x52,0x52,0x10,0x50,0x51,0x5f,0x80,0x88,0xd0,0x20,0x18,0x07,0x00 -+// 15832 㷘 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x0c,0x0a,0x10,0x10,0x00,0x00,0x00,0x10,0x20,0x40,0xc2,0x00,0x04,0x04,0x04,0x10,0x30,0x50,0x54,0x93,0x10,0x00 -+// 15833 㷙 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x08,0x0a,0x10,0x10,0x00,0x00,0x00,0x00,0x24,0x00,0x01,0x00,0xa1,0x81,0xa1,0x81,0xa1,0xa1,0x81,0x81,0xa2,0x00 -+// 15834 㷚 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x08,0x09,0x08,0x0a,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x00,0x04,0x44,0x44,0x00,0x01,0x00,0x12,0x10,0x10,0x10,0x30,0x00 -+// 15835 㷛 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x11,0x00,0x00,0x00,0x84,0x04,0x04,0x00,0x20,0x70,0x28,0x24,0x23,0x00,0x04,0x12,0x00,0x00 -+// 15836 㷜 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x29,0x28,0x08,0x08,0x0c,0x0a,0x10,0x10,0x00,0x00,0x00,0x00,0x10,0x28,0x28,0xaa,0x09,0x48,0x08,0x30,0x20,0x28,0x48,0x84,0x03,0x00 -+// 15837 㷝 ; -+,0x00,0x08,0x08,0x08,0x0b,0x0c,0x28,0x08,0x08,0x08,0x0c,0x02,0x10,0x00,0x01,0x00,0x00,0x00,0x10,0x91,0x00,0x40,0x42,0x00,0x10,0x31,0x20,0x28,0x44,0x86,0x03,0x00 -+// 15838 㷞 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x08,0x08,0x08,0x0c,0x13,0x11,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xa2,0xa2,0xa2,0xa2,0x80,0x86,0x00,0x09,0x08,0x08,0x18,0x00 -+// 15839 㷟 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x0c,0x0a,0x10,0x11,0x02,0x00,0x00,0x08,0x08,0xa2,0xa2,0x22,0x22,0x20,0xa2,0xa2,0xa2,0xa2,0xa2,0x80,0x3f,0x00 -+// 15840 㷠 ; -+,0x00,0x00,0x02,0x04,0x01,0x00,0x04,0x03,0x02,0x06,0x00,0x05,0x02,0x00,0x00,0x00,0x00,0x40,0x44,0x90,0x04,0x40,0xa0,0x1c,0x02,0x8c,0x80,0x40,0x48,0x00,0x08,0x00 -+// 15841 㷡 ; -+,0x00,0x00,0x11,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x09,0x09,0x02,0x04,0x00,0x00,0x02,0x40,0x40,0x42,0x42,0x42,0x40,0x40,0x80,0x88,0x10,0x20,0x10,0x0f,0x00 -+// 15842 㷢 ; -+,0x00,0x00,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x04,0x08,0x01,0x02,0x00,0x00,0x00,0x00,0x22,0x80,0x80,0x02,0x08,0x40,0x42,0x00,0xc4,0x88,0x20,0x10,0x0e,0x02 -+// 15843 㷣 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0c,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x00,0x00,0x00,0x44,0x20,0x10,0x10,0x10,0x10,0x00,0x50,0x92,0x10,0x11,0x10,0x10,0x10,0x00 -+// 15844 㷤 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x20,0x20,0x01,0x04,0x05,0x14,0x02,0x09,0x00,0x00,0x00,0x00,0x94,0x04,0x04,0x24,0xa3,0x00,0x06,0x04,0x04,0x08,0x08,0x26,0x43,0x00 -+// 15845 㷥 ; -+,0x00,0x04,0x04,0x06,0x10,0x08,0x0b,0x11,0x04,0x05,0x06,0x10,0x0a,0x01,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x12,0x54,0x18,0x18,0x18,0xd4,0x13,0x30,0x10,0x02,0x00 -+// 15846 㷦 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x11,0x01,0x00,0x00,0x01,0x11,0x00,0x00,0x00,0x08,0x08,0x0b,0x2a,0x48,0x18,0x14,0x22,0x01,0x00,0x04,0x22,0x00,0x00 -+// 15847 㷧 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x08,0x0c,0x13,0x10,0x20,0x00,0x00,0x00,0x98,0x90,0x92,0x82,0x82,0x82,0x82,0x8a,0x88,0x28,0x4a,0x09,0x18,0x00 -+// 15848 㷨 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0e,0x0c,0x28,0x08,0x08,0x08,0x0a,0x12,0x10,0x00,0x00,0x00,0x10,0x92,0x92,0x00,0x64,0x44,0x98,0x28,0x17,0x10,0x14,0x10,0x12,0x10,0x00 -+// 15849 㷩 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x02,0x00,0x04,0x0c,0x01,0x02,0x00,0x00,0x00,0x00,0x82,0x82,0x42,0x00,0x80,0x81,0xaf,0x00,0x84,0x88,0x20,0x10,0x0e,0x00 -+// 15850 㷪 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x0a,0x12,0x10,0x21,0x00,0x00,0x00,0x40,0x48,0x80,0x10,0x12,0x00,0x40,0x00,0x24,0x05,0x41,0x82,0x06,0x00 -+// 15851 㷫 ; -+,0x00,0x00,0x06,0x00,0x00,0x10,0x10,0x16,0x10,0x20,0x00,0x0c,0x09,0x03,0x04,0x00,0x00,0x00,0xa4,0x24,0x07,0x84,0x84,0x98,0x3c,0x00,0xc0,0x8c,0x20,0x18,0x07,0x00 -+// 15852 㷬 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x08,0x08,0x08,0x0e,0x12,0x10,0x00,0x00,0x00,0x40,0x40,0x4c,0x40,0x86,0x80,0x84,0x80,0xb0,0x00,0x30,0x28,0x44,0x83,0x00 -+// 15853 㷭 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x00,0x04,0x12,0x00,0x00,0x04,0x08,0x01,0x06,0x00,0x00,0x40,0x98,0x30,0x0e,0x28,0x28,0x24,0x20,0xfe,0x40,0x48,0xa0,0x10,0x07,0x00 -+// 15854 㷮 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0c,0x08,0x28,0x08,0x08,0x08,0x0a,0x12,0x10,0x00,0x00,0x00,0x28,0x28,0x28,0x2a,0x28,0xaa,0x28,0xaa,0x00,0x82,0x82,0x82,0x82,0x82,0x00 -+// 15855 㷯 ; -+,0x00,0x04,0x05,0x06,0x04,0x28,0x0a,0x11,0x00,0x00,0x0c,0x00,0x00,0x18,0x00,0x00,0x00,0x10,0x12,0x10,0x12,0x00,0x21,0x20,0x54,0x16,0x11,0x12,0x10,0x10,0x10,0x00 -+// 15856 㷰 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x08,0x09,0x09,0x05,0x13,0x11,0x21,0x00,0x00,0x10,0x11,0x00,0x8a,0x9a,0x82,0x92,0x10,0x21,0x01,0x45,0x45,0x01,0x02,0x00 -+// 15857 㷱 ; -+,0x00,0x04,0x08,0x10,0x10,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x11,0x11,0x00,0x00,0x00,0x00,0x80,0x98,0x00,0x1a,0x10,0x10,0x22,0x62,0x00,0x04,0x22,0x02,0x00 -+// 15858 㷲 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x28,0x20,0x00,0x00,0x18,0x14,0x10,0x00,0x02,0x00,0x00,0x00,0xc4,0x84,0x84,0x85,0xa5,0xa5,0xa1,0xa1,0x88,0xa8,0x80,0x92,0x06,0x00 -+// 15859 㷳 ; -+,0x00,0x00,0x08,0x01,0x02,0x16,0x12,0x12,0x12,0x12,0x10,0x12,0x04,0x01,0x02,0x00,0x00,0x00,0x00,0x50,0xd2,0x90,0x90,0x90,0x92,0x00,0x40,0x44,0xa0,0x18,0x07,0x00 -+// 15860 㷴 ; -+,0x00,0x00,0x08,0x00,0x01,0x03,0x03,0x01,0x01,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x18,0x8a,0x08,0x08,0x40,0x4c,0xa0,0x90,0x07,0x00 -+// 15861 㷵 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x08,0x08,0x08,0x14,0x12,0x00,0x21,0x00,0x00,0x00,0x92,0x96,0x92,0x92,0x92,0x10,0x12,0x10,0x11,0x00,0x02,0x29,0x21,0x00 -+// 15862 㷶 ; -+,0x00,0x04,0x04,0x08,0x08,0x18,0x28,0x09,0x08,0x08,0x08,0x08,0x00,0x09,0x11,0x00,0x00,0x40,0x40,0x48,0x40,0xc0,0x82,0x92,0x92,0x92,0x12,0x06,0x00,0x22,0x02,0x00 -+// 15863 㷷 ; -+,0x00,0x08,0x09,0x09,0x0b,0x0d,0x29,0x28,0x08,0x08,0x08,0x0c,0x10,0x00,0x20,0x00,0x00,0x00,0xaa,0x28,0x2a,0x08,0xa9,0x40,0x48,0x48,0x48,0x4b,0x40,0x46,0x03,0x00 -+// 15864 㷸 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x00,0x00,0x00,0x00,0x86,0x84,0x80,0x84,0x00,0x94,0x94,0x94,0x95,0x10,0x10,0x10,0x10,0x00 -+// 15865 㷹 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x08,0x08,0x08,0x14,0x12,0x00,0x20,0x00,0x00,0x40,0x40,0x44,0x00,0x12,0x12,0x82,0x82,0x82,0x92,0x10,0x11,0x10,0x10,0x00 -+// 15866 㷺 ; -+,0x00,0x04,0x09,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x04,0x09,0x02,0x04,0x00,0x00,0x10,0x10,0x21,0x24,0x84,0x88,0x96,0x82,0x00,0x84,0xc0,0x20,0x18,0x07,0x00 -+// 15867 㷻 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x08,0x04,0x12,0x10,0x21,0x00,0x00,0x40,0x00,0xa2,0xac,0x2c,0x2c,0xaf,0x2c,0x2c,0x2c,0x00,0x00,0x28,0x21,0x00 -+// 15868 㷼 ; -+,0x00,0x00,0x01,0x00,0x01,0x04,0x05,0x05,0x05,0x24,0x00,0x04,0x05,0x03,0x04,0x00,0x00,0x00,0x13,0x10,0x10,0x08,0x2a,0x28,0x28,0x0f,0xc0,0x84,0x80,0x10,0x07,0x00 -+// 15869 㷽 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x0c,0x12,0x10,0x00,0x00,0x00,0x04,0x48,0x22,0x10,0x30,0x10,0x14,0x14,0x51,0x00,0x84,0x84,0x84,0x84,0x00 -+// 15870 㷾 ; -+,0x00,0x08,0x08,0x08,0x0b,0x0d,0x29,0x29,0x09,0x09,0x09,0x06,0x12,0x02,0x20,0x00,0x00,0x20,0x32,0x20,0x01,0x34,0x00,0x1c,0x01,0x10,0x12,0x28,0x1a,0x49,0x18,0x00 -+// 15871 㷿 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x28,0x28,0x08,0x08,0x08,0x0a,0x12,0x10,0x21,0x00,0x00,0x10,0x30,0x28,0x44,0x87,0x00,0xaa,0xaa,0xaa,0xaa,0x44,0x84,0x8a,0x21,0x00 -+// 15872 㸀 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x29,0x29,0x09,0x09,0x08,0x04,0x12,0x10,0x20,0x00,0x00,0x00,0x10,0x00,0x44,0x00,0x03,0x08,0x08,0x02,0x12,0x12,0x10,0x10,0x11,0x00 -+// 15873 㸁 ; -+,0x00,0x08,0x08,0x08,0x0a,0x08,0x28,0x28,0x08,0x08,0x08,0x14,0x12,0x00,0x00,0x00,0x00,0x08,0x0a,0x88,0x29,0x04,0x20,0x10,0x12,0x10,0x11,0x30,0x54,0x92,0x11,0x00 -+// 15874 㸂 ; -+,0x00,0x00,0x08,0x00,0x08,0x08,0x08,0x08,0x10,0x00,0x00,0x08,0x11,0x03,0x04,0x00,0x00,0x88,0x10,0x40,0x24,0xb8,0x54,0x10,0x30,0x00,0x80,0x88,0x20,0x10,0x0e,0x00 -+// 15875 㸃 ; -+,0x00,0x00,0x15,0x15,0x1e,0x14,0x04,0x04,0x04,0x04,0x04,0x10,0x00,0x01,0x11,0x00,0x00,0x00,0x80,0x00,0x08,0x00,0x00,0x22,0x02,0x02,0x22,0x00,0x00,0x12,0x01,0x00 -+// 15876 㸄 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0d,0x29,0x09,0x08,0x08,0x0c,0x16,0x10,0x01,0x00,0x00,0x00,0x20,0x00,0x08,0x2a,0x54,0x50,0x55,0x00,0x80,0x84,0x84,0x00,0x00,0x00,0x00 -+// 15877 㸅 ; -+,0x00,0x08,0x08,0x08,0x0b,0x0c,0x28,0x29,0x09,0x09,0x09,0x15,0x13,0x01,0x01,0x00,0x00,0x88,0x88,0x29,0x04,0x40,0x20,0x29,0x28,0x28,0x28,0x08,0x2a,0x28,0x08,0x00 -+// 15878 㸆 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x08,0x08,0x08,0x14,0x12,0x00,0x00,0x00,0x00,0x00,0x50,0x90,0x10,0x00,0x46,0x44,0x00,0x29,0x08,0x0a,0x08,0x09,0x08,0x00 -+// 15879 㸇 ; -+,0x00,0x08,0x08,0x08,0x08,0x0c,0x29,0x28,0x08,0x08,0x08,0x12,0x12,0x00,0x01,0x00,0x00,0x04,0xc4,0x04,0x85,0x88,0x21,0x82,0x82,0x82,0x82,0x82,0x82,0xc4,0x82,0x00 -+// 15880 㸈 ; -+,0x00,0x08,0x12,0x12,0x12,0x10,0x12,0x10,0x10,0x10,0x00,0x04,0x00,0x01,0x04,0x00,0x00,0x00,0xa4,0x28,0x2a,0x20,0xa9,0x20,0x20,0x00,0x44,0xc8,0xa0,0x18,0x06,0x00 -+// 15881 㸉 ; -+,0x00,0x00,0x08,0x08,0x08,0x28,0x08,0x04,0x10,0x00,0x00,0x04,0x09,0x03,0x04,0x00,0x00,0x84,0xa4,0x46,0x4c,0x84,0xa4,0x8a,0x83,0x00,0x8c,0x90,0x20,0x10,0x0e,0x00 -+// 15882 㸊 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x28,0x28,0x09,0x08,0x05,0x10,0x10,0x00,0x00,0x00,0x00,0x84,0x84,0x8b,0x80,0xa1,0xa1,0xa9,0xa1,0x89,0x89,0xa0,0x88,0x89,0x81,0x00 -+// 15883 㸋 ; -+,0x00,0x04,0x0c,0x09,0x15,0x12,0x04,0x0c,0x04,0x05,0x14,0x04,0x0c,0x09,0x11,0x00,0x00,0x00,0x1c,0x0a,0x28,0x1d,0x18,0x0a,0x01,0x40,0x48,0x4a,0x48,0x48,0x42,0x00 -+// 15884 㸌 ; -+,0x00,0x08,0x08,0x08,0x0b,0x0c,0x28,0x28,0x08,0x08,0x08,0x14,0x12,0x00,0x00,0x00,0x00,0x02,0x10,0x11,0x11,0x10,0x10,0x00,0x90,0x90,0x92,0x90,0x92,0x90,0x92,0x00 -+// 15885 㸍 ; -+,0x00,0x00,0x08,0x08,0x0b,0x0e,0x28,0x20,0x00,0x02,0x1a,0x16,0x12,0x00,0x01,0x00,0x00,0x04,0x54,0x06,0x94,0xc5,0x14,0x04,0x05,0x06,0x86,0xa4,0x06,0x03,0x81,0x00 -+// 15886 㸎 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x09,0x09,0x09,0x15,0x13,0x01,0x22,0x00,0x00,0x02,0x80,0x88,0x88,0x80,0x0c,0x01,0x0a,0x4a,0x0a,0x4a,0x0a,0x4a,0x02,0x00 -+// 15887 㸏 ; -+,0x00,0x00,0x10,0x11,0x11,0x13,0x11,0x10,0x10,0x10,0x10,0x10,0x02,0x00,0x02,0x00,0x00,0x40,0x42,0x08,0x08,0x98,0x0a,0x00,0x84,0x84,0x82,0x40,0x44,0x90,0x07,0x00 -+// 15888 㸐 ; -+,0x00,0x00,0x09,0x09,0x0c,0x06,0x14,0x04,0x04,0x04,0x0a,0x01,0x00,0x11,0x11,0x00,0x00,0x00,0x20,0x20,0x28,0xc8,0xa8,0x08,0x28,0x88,0x29,0x00,0x00,0x12,0x01,0x00 -+// 15889 㸑 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x12,0x22,0x06,0x0a,0x00,0x00,0x09,0x02,0x00,0x00,0x00,0x14,0x14,0xf0,0xd4,0x10,0x11,0x14,0x30,0x16,0x80,0x8c,0x20,0x0e,0x00 -+// 15890 㸒 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x88,0x48,0x00,0x38,0xc0,0x40,0xc2,0x40,0x40,0x40,0x00,0x00 -+// 15891 㸓 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x3c,0x00,0x04,0x48,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 15892 㸔 ; -+,0x00,0x00,0x01,0x00,0x04,0x05,0x01,0x02,0x02,0x04,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x04,0xf0,0x80,0x88,0x10,0x03,0x00,0x04,0x04,0x0c,0x04,0x0c,0x04,0x0c,0x00 -+// 15893 㸕 ; -+,0x00,0x00,0x03,0x14,0x14,0x15,0x15,0x15,0x05,0x05,0x04,0x24,0x24,0x04,0x04,0x00,0x00,0x00,0x28,0x48,0x4a,0x4a,0x48,0x40,0x02,0x04,0x0c,0x96,0x40,0x30,0x0e,0x00 -+// 15894 㸖 ; -+,0x00,0x00,0x08,0x09,0x10,0x02,0x02,0x02,0x00,0x04,0x06,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0xc4,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x45,0x00,0x00 -+// 15895 㸗 ; -+,0x00,0x01,0x02,0x08,0x00,0x01,0x04,0x08,0x08,0x08,0x09,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x04,0x32,0xc0,0xb8,0x07,0x04,0x14,0x04,0x14,0x14,0x14,0x04,0x0c,0x00 -+// 15896 㸘 ; -+,0x00,0x00,0x02,0x08,0x00,0x01,0x04,0x05,0x01,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x22,0xc0,0x18,0x0f,0x20,0x20,0x28,0x02,0x40,0x40,0x40,0xc0,0x00 -+// 15897 㸙 ; -+,0x00,0x01,0x06,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0x22,0xe0,0x9c,0xaa,0x90,0xe2,0x80,0x08,0x08,0x08,0x08,0x08,0x00 -+// 15898 㸚 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0a,0x10,0x00,0x01,0x02,0x0e,0x06,0x0a,0x10,0x00,0x00,0x00,0x00,0x04,0x08,0x1c,0x22,0x00,0x00,0x06,0x04,0x0c,0x18,0x18,0x24,0x03,0x00 -+// 15899 㸛 ; -+,0x00,0x00,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x10,0x01,0x00,0x00,0x00,0x02,0x12,0x02,0x22,0x22,0x44,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 15900 㸜 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x0a,0x0a,0x0a,0x12,0x12,0x02,0x00,0x00,0x00,0x10,0x00,0x81,0xa0,0x04,0x42,0x00,0x02,0x00,0x00,0x00,0x00,0x01,0x00 -+// 15901 㸝 ; -+,0x00,0x00,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0x20,0x23,0x42,0x10,0x10,0x10,0x10,0x18,0x28,0x24,0x46,0x03,0x00 -+// 15902 㸞 ; -+,0x00,0x02,0x12,0x12,0x12,0x13,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x02,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x2e,0x20,0x20,0x20,0x24,0x04,0x44,0x44,0x04,0x04,0x00 -+// 15903 㸟 ; -+,0x00,0x00,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x13,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x48,0x60,0x41,0x3e,0x00,0x02,0x42,0x42,0x62,0x42,0x42,0x42,0x00 -+// 15904 㸠 ; -+,0x00,0x00,0x10,0x10,0x10,0x17,0x10,0x10,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x6a,0x6c,0x28,0x28,0xaa,0x28,0x08,0x48,0x09,0x07,0x00 -+// 15905 㸡 ; -+,0x00,0x04,0x14,0x14,0x14,0x17,0x10,0x10,0x12,0x12,0x12,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x50,0x52,0x10,0x10,0x11,0x38,0x30,0x54,0x52,0x93,0x11,0x10,0x00 -+// 15906 㸢 ; -+,0x00,0x04,0x14,0x14,0x14,0x17,0x10,0x10,0x10,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x20,0x20,0x28,0x20,0x21,0x20,0x40,0xdb,0x42,0x42,0x5a,0x42,0x42,0x42,0x00 -+// 15907 㸣 ; -+,0x00,0x04,0x14,0x14,0x14,0x15,0x10,0x10,0x12,0x12,0x12,0x02,0x02,0x22,0x02,0x00,0x00,0x28,0xaa,0xa8,0x29,0x04,0x20,0x12,0x10,0x10,0x13,0x30,0x54,0x12,0x11,0x00 -+// 15908 㸤 ; -+,0x00,0x00,0x08,0x0b,0x00,0x14,0x14,0x0b,0x08,0x09,0x0b,0x09,0x01,0x10,0x00,0x00,0x00,0x00,0x40,0x41,0x40,0x42,0x88,0x05,0x00,0x40,0x0f,0x00,0x00,0x00,0x00,0x00 -+// 15909 㸥 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x20,0x48,0x82,0x02,0x00,0x08,0xc9,0x20,0x48,0x92,0x92,0x38,0x28,0x0f,0x00 -+// 15910 㸦 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x18,0x10,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xc0,0x78,0x46,0xc0,0x00 -+// 15911 㸧 ; -+,0x00,0x00,0x01,0x02,0x12,0x12,0x12,0x06,0x02,0x0a,0x02,0x12,0x02,0x02,0x04,0x00,0x00,0x00,0x06,0x44,0x44,0x44,0x44,0x44,0x40,0x40,0x40,0x48,0x44,0x66,0x41,0x00 -+// 15912 㸨 ; -+,0x00,0x00,0x04,0x14,0x14,0x14,0x04,0x04,0x04,0x04,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x62,0x02,0x02,0x02,0x02,0x00 -+// 15913 㸩 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x24,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 15914 㸪 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x04,0x24,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x42,0x4a,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x02,0x82,0x82,0x02,0x00 -+// 15915 㸫 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x24,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0e,0x40,0x40,0x40,0x42,0x48,0x48,0x48,0x08,0x88,0x88,0x08,0x08,0x00 -+// 15916 㸬 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0x1b,0x08,0x08,0x5a,0x4a,0x4a,0x4a,0x4a,0x4a,0x0a,0x08,0x08,0x00 -+// 15917 㸭 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x24,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x52,0x52,0x52,0x52,0x52,0x42,0x40,0x40,0x40,0x40,0x41,0x7f,0x00 -+// 15918 㸮 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x28,0x20,0x04,0x44,0x03,0x00,0x26,0x24,0x24,0x24,0x44,0x44,0x0c,0x00 -+// 15919 㸯 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x60,0x20,0x03,0x0c,0x00,0x00,0x00,0x00,0x00 -+// 15920 㸰 ; -+,0x00,0x04,0x04,0x14,0x14,0x15,0x24,0x24,0x04,0x04,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x43,0x42,0x00,0x20,0x22,0x24,0x20,0x20,0x20,0x20,0x21,0x3f,0x00 -+// 15921 㸱 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x21,0x40,0x10,0x50,0x52,0x52,0x52,0x52,0x54,0x50,0x41,0x7f,0x00 -+// 15922 㸲 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x24,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x40,0x43,0x90,0x90,0x12,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x00 -+// 15923 㸳 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x24,0x04,0x04,0x04,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x28,0x20,0x44,0x93,0x10,0x00,0x06,0x04,0x08,0x10,0x08,0x08,0x00 -+// 15924 㸴 ; -+,0x00,0x00,0x01,0x01,0x02,0x06,0x12,0x02,0x00,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x08,0x08,0x08,0x08,0x40,0x44,0x40,0x40,0x40,0x40,0x40,0x00 -+// 15925 㸵 ; -+,0x00,0x04,0x04,0x14,0x14,0x25,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x42,0x42,0x42,0x46,0x42,0x00 -+// 15926 㸶 ; -+,0x00,0x04,0x04,0x14,0x04,0x26,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x83,0x91,0x91,0x91,0x95,0x91,0x91,0x91,0x81,0xa5,0x81,0x83,0x81,0x00 -+// 15927 㸷 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8b,0x08,0x92,0x12,0x22,0x06,0x00,0x40,0x40,0x40,0x42,0x40,0x40,0x00 -+// 15928 㸸 ; -+,0x00,0x04,0x04,0x14,0x04,0x24,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x0e,0x40,0x00,0x00,0x40,0x00,0x00,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x00 -+// 15929 㸹 ; -+,0x00,0x04,0x04,0x14,0x14,0x05,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x1c,0x00,0x03,0x4a,0x00,0x04,0x05,0x04,0x24,0x24,0x04,0x04,0x0c,0x00 -+// 15930 㸺 ; -+,0x00,0x00,0x04,0x10,0x00,0x00,0x08,0x08,0x08,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x01,0x04,0x18,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 15931 㸻 ; -+,0x00,0x04,0x04,0x14,0x14,0x15,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x00,0xc3,0x01,0x20,0x50,0x10,0x10,0x10,0x20,0x24,0x42,0x01,0x00 -+// 15932 㸼 ; -+,0x00,0x04,0x04,0x14,0x14,0x26,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x44,0x44,0x28,0x10,0x0e,0x12,0x12,0x10,0x14,0x10,0x11,0x10,0x10,0x00 -+// 15933 㸽 ; -+,0x00,0x04,0x04,0x14,0x14,0x15,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x02,0x24,0x42,0x81,0x00 -+// 15934 㸾 ; -+,0x00,0x04,0x04,0x14,0x04,0x24,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x02,0x12,0x12,0xa2,0x22,0x46,0x00,0x10,0x08,0x41,0x40,0x42,0x3e,0x00 -+// 15935 㸿 ; -+,0x00,0x00,0x04,0x14,0x14,0x06,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x83,0x80,0x28,0x00,0x00,0x40,0x01,0x07,0x00 -+// 15936 㹀 ; -+,0x00,0x04,0x04,0x14,0x14,0x06,0x25,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x12,0x10,0x11,0x00,0x04,0x08,0x10,0x11,0x10,0x10,0x10,0x30,0x00 -+// 15937 㹁 ; -+,0x00,0x00,0x04,0x14,0x14,0x15,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x01,0x00,0x42,0x40,0x40,0x44,0x10,0x10,0x50,0x92,0x11,0x30,0x00 -+// 15938 㹂 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x16,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x94,0x08,0x0c,0x83,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 15939 㹃 ; -+,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x22,0x20,0x20,0x20,0x22,0x20,0x00,0x44,0x40,0x42,0x40,0x40,0x40,0x00 -+// 15940 㹄 ; -+,0x00,0x00,0x04,0x14,0x14,0x06,0x24,0x04,0x04,0x0d,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x82,0x40,0xc2,0x24,0x44,0xa8,0x10,0x38,0x47,0x00 -+// 15941 㹅 ; -+,0x00,0x00,0x08,0x18,0x18,0x2a,0x28,0x08,0x0c,0x08,0x38,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x20,0x55,0x15,0xa8,0x1a,0x12,0x02,0x04,0x10,0x49,0x41,0x42,0x7e,0x00 -+// 15942 㹆 ; -+,0x00,0x00,0x04,0x14,0x14,0x04,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x03,0x82,0x12,0x10,0x12,0x92,0x92,0x92,0x92,0x10,0x10,0x10,0x10,0x00 -+// 15943 㹇 ; -+,0x00,0x00,0x04,0x10,0x00,0x2c,0x20,0x00,0x04,0x1d,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x00,0x40,0x93,0x10,0xa0,0x88,0x8a,0x02,0x06,0x00 -+// 15944 㹈 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x0d,0x00,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x23,0xc4,0x08,0x18,0x26,0x00,0x40,0x40,0x40,0x42,0x40,0x40,0x00 -+// 15945 㹉 ; -+,0x00,0x00,0x00,0x10,0x00,0x2c,0x20,0x00,0x04,0x18,0x20,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x9b,0x80,0x92,0xa2,0xa2,0xa2,0xa2,0xaa,0x88,0x28,0x48,0x09,0x18,0x00 -+// 15946 㹊 ; -+,0x00,0x00,0x04,0x14,0x14,0x04,0x24,0x04,0x04,0x0c,0x34,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x33,0xa2,0x20,0x48,0x42,0x80,0x80,0x18,0x1a,0x00,0x00,0x00,0x00 -+// 15947 㹋 ; -+,0x00,0x00,0x04,0x10,0x14,0x05,0x21,0x00,0x04,0x0c,0x30,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x88,0x93,0x82,0x44,0x44,0x4b,0x44,0x48,0x42,0x44,0x01,0x02,0x08,0x00 -+// 15948 㹌 ; -+,0x00,0x00,0x04,0x14,0x14,0x04,0x24,0x04,0x04,0x1c,0x34,0x04,0x05,0x05,0x04,0x00,0x00,0x10,0x00,0x00,0x24,0x00,0x81,0x88,0xa8,0xaa,0xc8,0x0a,0x08,0x08,0x09,0x00 -+// 15949 㹍 ; -+,0x00,0x00,0x04,0x14,0x16,0x04,0x25,0x05,0x05,0x0d,0x35,0x05,0x05,0x05,0x05,0x00,0x00,0x20,0x11,0x44,0x28,0x28,0x13,0x10,0x10,0x18,0x48,0x48,0x48,0x02,0x06,0x00 -+// 15950 㹎 ; -+,0x00,0x00,0x04,0x14,0x14,0x24,0x24,0x04,0x04,0x1c,0x24,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x92,0x92,0x92,0x92,0xb0,0x04,0xd8,0x00,0xd3,0x11,0xd0,0x93,0x31,0x00 -+// 15951 㹏 ; -+,0x00,0x00,0x00,0x10,0x20,0x2c,0x20,0x00,0x04,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x45,0x44,0x40,0x10,0x12,0x92,0x92,0x10,0x12,0x10,0x14,0x10,0x13,0x00 -+// 15952 㹐 ; -+,0x00,0x00,0x0c,0x06,0x0c,0x18,0x08,0x09,0x08,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x40,0x4c,0xa2,0x00,0x92,0x80,0x70,0x1e,0x40,0x40,0x40,0xc3,0x40,0x40,0x00 -+// 15953 㹑 ; -+,0x00,0x00,0x08,0x18,0x0a,0x28,0x28,0x08,0x0d,0x19,0x29,0x09,0x08,0x08,0x08,0x00,0x00,0x0a,0x08,0x09,0x08,0x08,0x08,0x18,0x10,0x14,0x14,0x14,0x02,0x93,0x09,0x00 -+// 15954 㹒 ; -+,0x00,0x00,0x00,0x10,0x02,0x2c,0x20,0x00,0x04,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xa2,0xa8,0x28,0x40,0x28,0x22,0x00,0x30,0x20,0x30,0x20,0x44,0x83,0x00 -+// 15955 㹓 ; -+,0x00,0x00,0x00,0x10,0x06,0x20,0x20,0x00,0x0c,0x19,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x14,0x10,0x12,0x00,0x44,0x44,0x44,0x00,0x01,0x48,0x48,0x09,0x0f,0x00 -+// 15956 㹔 ; -+,0x00,0x00,0x04,0x10,0x00,0x24,0x20,0x00,0x04,0x18,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x86,0x90,0x94,0x90,0x00,0x00,0x82,0x92,0x92,0x92,0x82,0x01,0x00 -+// 15957 㹕 ; -+,0x00,0x00,0x02,0x00,0x0a,0x00,0x00,0x12,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x22,0x42,0x42,0x42,0x20,0x46,0x00,0x48,0x00,0xc2,0x00,0x00,0x00 -+// 15958 㹖 ; -+,0x00,0x00,0x04,0x10,0x12,0x04,0x20,0x00,0x04,0x18,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x14,0x20,0x20,0x20,0x48,0x04,0xa3,0x40,0x30,0x58,0x32,0x82,0x30,0x00 -+// 15959 㹗 ; -+,0x00,0x04,0x04,0x14,0x14,0x04,0x04,0x04,0x04,0x1c,0x24,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x12,0x10,0x00,0x01,0x10,0x10,0x00,0x00,0x02,0xa2,0xaa,0xa2,0x06,0x00 -+// 15960 㹘 ; -+,0x00,0x00,0x00,0x10,0x11,0x0c,0x20,0x00,0x04,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x11,0x11,0x10,0x10,0x00,0x10,0x00,0xaa,0xaa,0xaa,0xaa,0xa2,0x00 -+// 15961 㹙 ; -+,0x00,0x00,0x00,0x10,0x2a,0x28,0x00,0x01,0x0d,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x62,0x54,0x08,0x8a,0x00,0x01,0x00,0x04,0x44,0x04,0x44,0x04,0x44,0x00 -+// 15962 㹚 ; -+,0x00,0x00,0x00,0x10,0x26,0x20,0x00,0x01,0x0d,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x66,0x54,0x00,0x08,0x00,0x03,0x84,0x84,0x04,0x02,0x02,0x00,0x82,0x00 -+// 15963 㹛 ; -+,0x00,0x00,0x08,0x18,0x0d,0x29,0x09,0x09,0x08,0x08,0x28,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x10,0xae,0xe4,0x86,0xa4,0xb5,0x00,0xa2,0x64,0xc8,0x38,0x38,0xc3,0x00 -+// 15964 㹜 ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x0c,0x00,0x08,0x0c,0x0a,0x09,0x11,0x00,0x00,0x00,0x00,0x00,0x10,0x14,0x12,0x10,0x30,0x10,0x20,0x28,0x28,0x24,0x44,0x02,0x01,0x00 -+// 15965 㹝 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x0e,0x90,0x90,0x90,0x90,0x90,0x80,0x88,0x88,0x88,0x84,0xc3,0x81,0x00 -+// 15966 㹞 ; -+,0x00,0x00,0x02,0x0e,0x04,0x04,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x05,0x0c,0x00,0x00,0x00,0x1e,0x40,0x40,0x40,0x41,0x44,0x44,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 15967 㹟 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x00,0x0d,0x00,0x00,0x20,0x20,0x20,0x24,0x24,0x24,0x24,0x25,0x30,0x20,0x48,0x40,0x86,0x03,0x00 -+// 15968 㹠 ; -+,0x00,0x00,0x02,0x0e,0x0c,0x04,0x04,0x06,0x0e,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x92,0x92,0x92,0x96,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 15969 㹡 ; -+,0x00,0x00,0x02,0x0e,0x04,0x04,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x20,0x10,0x13,0x10,0x20,0x04,0x4c,0xf8,0x10,0x10,0x20,0x44,0x82,0x82,0x00 -+// 15970 㹢 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0c,0x08,0x10,0x00,0x05,0x04,0x08,0x00,0x00,0x00,0x80,0x81,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x29,0x29,0x69,0x00,0x00 -+// 15971 㹣 ; -+,0x00,0x01,0x02,0x06,0x04,0x00,0x02,0x06,0x02,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x20,0x40,0x44,0x84,0x20,0x18,0x18,0x2c,0x03,0x18,0x00,0x00,0x18,0x0c,0x00 -+// 15972 㹤 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x10,0x10,0x10,0x36,0x10,0x10,0x10,0x30,0x20,0x20,0x40,0x82,0xf2,0x00,0x00 -+// 15973 㹥 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x20,0x10,0x02,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 15974 㹦 ; -+,0x00,0x00,0x03,0x0e,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x02,0x12,0x12,0x22,0x02,0x44,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 15975 㹧 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x00,0x0c,0x00,0x00,0x10,0x10,0x10,0x12,0x92,0x92,0x92,0x92,0x38,0x20,0x20,0x44,0x86,0x03,0x00 -+// 15976 㹨 ; -+,0x00,0x00,0x03,0x0e,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 15977 㹩 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x04,0x04,0x04,0x28,0x10,0x28,0x16,0x10,0x16,0x10,0x10,0x10,0x02,0x00 -+// 15978 㹪 ; -+,0x00,0x00,0x02,0x0c,0x08,0x04,0x04,0x05,0x04,0x08,0x11,0x05,0x05,0x04,0x08,0x00,0x00,0x00,0x6a,0x02,0x02,0x02,0x02,0xfb,0x02,0x12,0x12,0x12,0x12,0x62,0x06,0x00 -+// 15979 㹫 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x10,0x30,0x10,0x12,0x02,0xb0,0x80,0xa2,0x22,0x22,0x4c,0x86,0x03,0x00 -+// 15980 㹬 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x00,0x20,0x60,0x60,0x58,0x07,0x00 -+// 15981 㹭 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x04,0x04,0x04,0x0e,0x0a,0x12,0x02,0x00,0x04,0x0c,0x00,0x00,0x00,0x00,0x32,0x92,0x82,0xb2,0x82,0xb2,0x90,0x12,0x1c,0x18,0x0d,0x07,0x01 -+// 15982 㹮 ; -+,0x00,0x00,0x02,0x0c,0x04,0x04,0x02,0x06,0x06,0x0a,0x12,0x02,0x02,0x02,0x0c,0x00,0x00,0x00,0x10,0x10,0x00,0x22,0x02,0x02,0x02,0x42,0x02,0x02,0x02,0x42,0x82,0x00 -+// 15983 㹯 ; -+,0x00,0x00,0x02,0x04,0x0c,0x14,0x04,0x04,0x0c,0x00,0x00,0x00,0x04,0x04,0x0c,0x00,0x00,0x48,0x48,0x08,0x88,0x88,0x88,0x98,0x9c,0x88,0xaa,0x8b,0x88,0x88,0x88,0x00 -+// 15984 㹰 ; -+,0x00,0x00,0x03,0x0a,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x00,0x0d,0x00,0x00,0x10,0x10,0x12,0x14,0x50,0x10,0x58,0x48,0x48,0x48,0x48,0x48,0x89,0x0f,0x00 -+// 15985 㹱 ; -+,0x00,0x00,0x02,0x04,0x08,0x10,0x04,0x04,0x0c,0x14,0x04,0x04,0x05,0x05,0x18,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0xd6,0x10,0x10,0x92,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 15986 㹲 ; -+,0x00,0x00,0x02,0x0e,0x04,0x0c,0x04,0x06,0x0e,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x00,0x36,0x04,0x0e,0x10,0x30,0x44,0x00,0x11,0x10,0x10,0x10,0x30,0x00 -+// 15987 㹳 ; -+,0x00,0x00,0x02,0x0e,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0x00,0x00,0x06,0x02,0x02,0x42,0x42,0x00 -+// 15988 㹴 ; -+,0x00,0x00,0x02,0x04,0x0c,0x14,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x20,0x58,0x87,0x00 -+// 15989 㹵 ; -+,0x00,0x00,0x02,0x0e,0x0c,0x04,0x04,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x01,0x02,0x52,0x84,0x84,0x52,0x48,0x02,0x10,0x10,0x10,0x10,0x11,0x00 -+// 15990 㹶 ; -+,0x00,0x00,0x06,0x0c,0x08,0x00,0x05,0x0d,0x04,0x14,0x04,0x04,0x05,0x09,0x12,0x00,0x00,0x00,0x06,0xc8,0x88,0x88,0x0a,0x48,0x48,0x48,0x89,0x80,0xc0,0x30,0x0f,0x00 -+// 15991 㹷 ; -+,0x00,0x00,0x07,0x07,0x00,0x04,0x0c,0x0a,0x02,0x1a,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x80,0x10,0x10,0x92,0x10,0x99,0x18,0x10,0x90,0x94,0x84,0xa2,0xc2,0x01,0x00 -+// 15992 㹸 ; -+,0x00,0x00,0x13,0x0e,0x04,0x0c,0x02,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x10,0x10,0x42,0x02,0x42,0x02,0x02,0x42,0x20,0x20,0x20,0x40,0x41,0x87,0x00 -+// 15993 㹹 ; -+,0x00,0x00,0x06,0x05,0x09,0x11,0x05,0x0d,0x0d,0x15,0x25,0x05,0x04,0x0e,0x18,0x00,0x00,0x10,0x00,0x00,0x10,0x12,0x12,0x13,0x12,0x12,0x12,0x00,0x24,0x42,0x03,0x00 -+// 15994 㹺 ; -+,0x00,0x00,0x02,0x0e,0x04,0x04,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x10,0x10,0x3a,0x58,0x54,0x93,0x10,0x00,0x82,0x82,0xc2,0x82,0xc2,0x82,0x00 -+// 15995 㹻 ; -+,0x00,0x00,0x03,0x0e,0x04,0x0c,0x00,0x06,0x06,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x18,0x10,0x11,0x30,0x54,0x93,0x20,0x21,0x44,0x48,0x38,0x1e,0x02,0x00 -+// 15996 㹼 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x06,0x0a,0x02,0x02,0x02,0x02,0x04,0x0c,0x00,0x00,0x40,0x40,0xc3,0x81,0x20,0x28,0x62,0x26,0x62,0x62,0xaa,0x22,0x22,0x06,0x00 -+// 15997 㹽 ; -+,0x00,0x00,0x02,0x0e,0x04,0x0c,0x04,0x06,0x0e,0x0a,0x12,0x02,0x02,0x04,0x0c,0x00,0x00,0x40,0x48,0x20,0x24,0x28,0x30,0x0e,0x0a,0x22,0x20,0x26,0x18,0x18,0x47,0x00 -+// 15998 㹾 ; -+,0x00,0x00,0x02,0x0c,0x08,0x15,0x04,0x04,0x0c,0x10,0x00,0x00,0x04,0x04,0x08,0x00,0x00,0x00,0x80,0xb0,0xa6,0x21,0x40,0x60,0x98,0x06,0x84,0x84,0x84,0x84,0x84,0x00 -+// 15999 㹿 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x00,0x06,0x0e,0x0a,0x02,0x02,0x00,0x04,0x0c,0x00,0x00,0x10,0x12,0x10,0x10,0x82,0x82,0x82,0x82,0x92,0x10,0x13,0x10,0x10,0x10,0x00 -+// 16000 㺀 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0a,0x02,0x02,0x00,0x05,0x05,0x0c,0x00,0x00,0x20,0x40,0x3f,0x2a,0x0a,0x12,0x22,0x02,0x04,0x10,0x42,0x41,0x40,0x7e,0x00 -+// 16001 㺁 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x10,0x00,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x92,0x00,0x00,0x92,0x20,0x00,0x82,0x0a,0x3a,0x12,0x0a,0x82,0x82,0x00 -+// 16002 㺂 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x00,0x01,0x05,0x05,0x04,0x08,0x00,0x00,0x00,0x0a,0x08,0x88,0x08,0x88,0x0a,0x5e,0x54,0x54,0x54,0x08,0x13,0x01,0x00 -+// 16003 㺃 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0d,0x0a,0x00,0x00,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x4e,0x40,0x40,0x82,0x82,0x02,0x12,0x02,0x52,0x02,0x02,0x0c,0x00 -+// 16004 㺄 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0e,0x0a,0x02,0x00,0x04,0x04,0x0c,0x00,0x00,0x20,0x20,0x48,0x8e,0x01,0x20,0x2a,0xaa,0x2a,0x2a,0xaa,0x2a,0x22,0x22,0x00 -+// 16005 㺅 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x0c,0x04,0x04,0x04,0x08,0x10,0x00,0x05,0x05,0x0c,0x00,0x00,0x20,0x40,0x48,0x80,0x80,0xa0,0xa8,0xc0,0x90,0x98,0x10,0x24,0x22,0x01,0x00 -+// 16006 㺆 ; -+,0x00,0x00,0x06,0x0c,0x08,0x14,0x04,0x04,0x0c,0x10,0x00,0x04,0x04,0x04,0x08,0x00,0x00,0x80,0x08,0x98,0x80,0x94,0xd2,0x81,0x04,0x94,0x94,0x84,0xa4,0x0c,0x06,0x00 -+// 16007 㺇 ; -+,0x00,0x00,0x04,0x08,0x18,0x08,0x09,0x09,0x1d,0x25,0x04,0x04,0x00,0x0b,0x18,0x00,0x00,0x00,0x20,0x02,0x00,0x48,0xac,0x2c,0x2c,0xac,0x08,0x0a,0x02,0x71,0x00,0x00 -+// 16008 㺈 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0c,0x10,0x00,0x00,0x04,0x04,0x0d,0x00,0x00,0x10,0x90,0x92,0x92,0x10,0x00,0x10,0x12,0x92,0x92,0x10,0x10,0x13,0x81,0x00 -+// 16009 㺉 ; -+,0x00,0x00,0x02,0x06,0x06,0x00,0x00,0x20,0x20,0x05,0x04,0x04,0x02,0x09,0x00,0x00,0x00,0x00,0x16,0x10,0x80,0x00,0xe3,0x80,0x02,0x02,0x94,0x04,0x08,0x14,0x03,0x00 -+// 16010 㺊 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0c,0x00,0x00,0x00,0x05,0x04,0x0c,0x00,0x00,0x04,0x24,0x20,0x10,0x10,0x10,0x10,0x00,0x00,0x48,0x49,0x40,0x42,0x7e,0x00 -+// 16011 㺋 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0c,0x08,0x10,0x00,0x04,0x05,0x0c,0x00,0x00,0x08,0x40,0x04,0xa2,0x00,0x44,0x00,0x22,0x20,0xa8,0x22,0x28,0x20,0x62,0x00 -+// 16012 㺌 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x14,0x04,0x04,0x0c,0x10,0x00,0x04,0x04,0x04,0x08,0x00,0x00,0x44,0x28,0x0a,0x00,0x7a,0x02,0x7b,0x02,0x7a,0x48,0xc0,0x00,0x03,0x00,0x00 -+// 16013 㺍 ; -+,0x00,0x00,0x02,0x0c,0x09,0x14,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x10,0x10,0x83,0x00,0x18,0x00,0x46,0x08,0x08,0x49,0x00,0x40,0x86,0x03,0x00 -+// 16014 㺎 ; -+,0x00,0x02,0x16,0x0c,0x08,0x14,0x04,0x04,0x0c,0x00,0x05,0x05,0x05,0x04,0x08,0x00,0x00,0x10,0x03,0x00,0x1a,0x02,0x92,0x12,0x80,0xda,0x52,0x42,0x52,0x42,0x52,0x00 -+// 16015 㺏 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x10,0x92,0x92,0x92,0x92,0x10,0x92,0x92,0x82,0x21,0x44,0x08,0x3c,0x02,0x00 -+// 16016 㺐 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x04,0x14,0x04,0x04,0x04,0x08,0x00,0x00,0x92,0x00,0x00,0x92,0x82,0x92,0x92,0x92,0x92,0x11,0x38,0x50,0x96,0x11,0x00 -+// 16017 㺑 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x05,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x10,0x04,0x42,0x84,0x01,0x29,0x30,0x48,0x13,0x60,0x18,0x22,0x0c,0x20,0x00 -+// 16018 㺒 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x05,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x22,0xa0,0x22,0xa8,0x10,0x30,0x4c,0x93,0x60,0x18,0x22,0x0c,0x20,0x00 -+// 16019 㺓 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x00,0x00,0x04,0x04,0x04,0x08,0x00,0x00,0x10,0x12,0x10,0x10,0x11,0x02,0x82,0x82,0x82,0x82,0x82,0x00,0x46,0x83,0x00 -+// 16020 㺔 ; -+,0x00,0x00,0x04,0x0c,0x08,0x04,0x04,0x0c,0x0c,0x14,0x05,0x05,0x05,0x04,0x08,0x00,0x00,0x0e,0x00,0x84,0x00,0x84,0x80,0x86,0x02,0x83,0x01,0x05,0x29,0x81,0x06,0x00 -+// 16021 㺕 ; -+,0x00,0x00,0x02,0x0c,0x0c,0x04,0x04,0x04,0x0c,0x08,0x10,0x00,0x04,0x04,0x0c,0x00,0x00,0x00,0x10,0x12,0x54,0x31,0x30,0x56,0x13,0x82,0x92,0x92,0x92,0x92,0x82,0x00 -+// 16022 㺖 ; -+,0x00,0x00,0x04,0x08,0x18,0x09,0x01,0x0d,0x15,0x05,0x05,0x05,0x07,0x08,0x18,0x00,0x00,0x04,0x44,0x48,0x29,0x2a,0x22,0x22,0x22,0x22,0x24,0x64,0x24,0x2a,0x31,0x00 -+// 16023 㺗 ; -+,0x00,0x00,0x03,0x0c,0x0d,0x14,0x04,0x04,0x0c,0x08,0x10,0x00,0x04,0x04,0x0c,0x00,0x00,0x00,0x29,0x29,0x29,0x00,0x92,0x92,0x92,0x92,0x12,0x11,0x10,0x10,0x10,0x00 -+// 16024 㺘 ; -+,0x00,0x00,0x02,0x0c,0x08,0x15,0x04,0x04,0x0c,0x00,0x10,0x04,0x04,0x04,0x09,0x00,0x00,0x00,0x48,0x8a,0x90,0x90,0x98,0x90,0x9a,0x90,0x90,0x00,0x00,0x28,0x21,0x00 -+// 16025 㺙 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x00,0x10,0x00,0x04,0x04,0x08,0x00,0x00,0x10,0x11,0x00,0x44,0x54,0xc4,0x14,0x84,0x84,0x90,0x90,0xa0,0x2c,0x46,0x00 -+// 16026 㺚 ; -+,0x00,0x00,0x00,0x0c,0x08,0x14,0x04,0x05,0x0c,0x04,0x04,0x04,0x04,0x05,0x0a,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x24,0x80,0x88,0x88,0x88,0x88,0x88,0x40,0x3f,0x00 -+// 16027 㺛 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0d,0x04,0x04,0x04,0x04,0x04,0x09,0x00,0x00,0x00,0x90,0x94,0x10,0x90,0x02,0x12,0x02,0x04,0x48,0x49,0x48,0x88,0x08,0x00 -+// 16028 㺜 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x00,0x10,0x01,0x05,0x05,0x0c,0x00,0x00,0x28,0x2a,0xaa,0xaa,0xaa,0x82,0x02,0x00,0x00,0x82,0x42,0x48,0x44,0x63,0x00 -+// 16029 㺝 ; -+,0x00,0x00,0x07,0x0d,0x09,0x15,0x05,0x05,0x0d,0x04,0x04,0x05,0x05,0x05,0x09,0x00,0x00,0x04,0x44,0x40,0x61,0x08,0x62,0x42,0x50,0x00,0x02,0x00,0x00,0x00,0x57,0x00 -+// 16030 㺞 ; -+,0x00,0x00,0x02,0x04,0x08,0x14,0x04,0x04,0x0c,0x00,0x00,0x04,0x04,0x04,0x09,0x00,0x00,0x00,0x62,0x22,0x22,0xa2,0x0a,0x2a,0xaa,0x2a,0x2b,0x00,0x44,0x82,0x00,0x00 -+// 16031 㺟 ; -+,0x00,0x00,0x02,0x0c,0x08,0x14,0x04,0x04,0x0c,0x00,0x12,0x00,0x04,0x04,0x0c,0x00,0x00,0x00,0x22,0xa2,0x22,0xaa,0x00,0x50,0xca,0x90,0x92,0x90,0x98,0x90,0x80,0x00 -+// 16032 㺠 ; -+,0x00,0x00,0x02,0x0c,0x09,0x14,0x04,0x05,0x0d,0x01,0x05,0x05,0x04,0x04,0x08,0x00,0x00,0x10,0x10,0x83,0x44,0x82,0x42,0x98,0xd8,0x9a,0xba,0x9a,0x9a,0xef,0x01,0x00 -+// 16033 㺡 ; -+,0x00,0x00,0x05,0x0d,0x09,0x01,0x05,0x0d,0x0d,0x15,0x24,0x04,0x06,0x08,0x18,0x00,0x00,0x00,0x00,0x22,0x40,0x66,0x66,0x56,0x01,0x00,0x10,0x52,0x50,0x50,0x51,0x00 -+// 16034 㺢 ; -+,0x00,0x00,0x06,0x0d,0x09,0x10,0x04,0x04,0x0c,0x15,0x05,0x04,0x04,0x04,0x19,0x00,0x00,0x00,0x10,0x11,0x10,0x10,0x10,0x00,0x92,0x90,0x92,0x10,0x96,0x10,0x92,0x00 -+// 16035 㺣 ; -+,0x00,0x00,0x04,0x08,0x09,0x01,0x01,0x0d,0x0d,0x15,0x04,0x04,0x06,0x08,0x19,0x00,0x00,0x08,0x4a,0x0a,0x18,0x48,0x48,0x4a,0x02,0x06,0xa4,0xa4,0x04,0x03,0x81,0x00 -+// 16036 㺤 ; -+,0x00,0x00,0x14,0x0c,0x09,0x00,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x03,0x18,0x00,0x00,0x00,0xa4,0xa2,0x58,0x08,0xa8,0xa8,0xa2,0xb6,0xa4,0xa4,0xa4,0x83,0x01,0x00 -+// 16037 㺥 ; -+,0x00,0x00,0x06,0x0c,0x08,0x04,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x88,0x82,0x82,0x00,0x80,0x8f,0x40,0x88,0x92,0x92,0x28,0x08,0x8f,0x00 -+// 16038 㺦 ; -+,0x00,0x00,0x04,0x0a,0x1a,0x0a,0x0a,0x0a,0x0a,0x12,0x02,0x02,0x0a,0x08,0x10,0x00,0x00,0x00,0x42,0x08,0x36,0x80,0xb5,0x00,0x84,0xa4,0x24,0xb6,0x94,0x14,0x84,0x00 -+// 16039 㺧 ; -+,0x00,0x00,0x06,0x0c,0x08,0x04,0x04,0x04,0x0c,0x04,0x04,0x04,0x05,0x05,0x09,0x00,0x00,0x00,0x02,0x02,0x00,0x20,0x86,0x80,0x80,0x80,0x40,0x82,0x42,0x02,0x42,0x00 -+// 16040 㺨 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x02,0x82,0xc1,0x00,0x00 -+// 16041 㺩 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x1c,0x20,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x62,0x02,0x02,0x02,0x02,0x00 -+// 16042 㺪 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x1c,0x30,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x10,0x00 -+// 16043 㺫 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x0c,0x10,0x00,0x00,0x00,0x02,0x02,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x02,0x0c,0x00 -+// 16044 㺬 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x18,0x20,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x54,0x54,0x44,0x44,0x84,0x85,0x05,0x07,0x00 -+// 16045 㺭 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x1c,0x20,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x08,0x00,0x09,0x18,0x00,0x00,0x00,0x00,0x00,0x30,0x00 -+// 16046 㺮 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x1c,0x20,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x20,0x20,0x40,0x42,0x02,0x02,0x02,0x04,0x0c,0x00 -+// 16047 㺯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0xc0,0x40,0xcc,0x40,0x40,0x42,0x00,0xc0,0xc2,0x80,0x00,0x08,0x06,0x00 -+// 16048 㺰 ; -+,0x00,0x00,0x01,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x5a,0x40,0x40,0x40,0x40,0x42,0x02,0x00,0x10,0x00 -+// 16049 㺱 ; -+,0x00,0x02,0x04,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x4a,0x02,0x80,0x04,0x08,0x02,0x00,0xc4,0x00,0x08,0x8b,0x00 -+// 16050 㺲 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x1c,0x20,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x20,0x24,0x24,0x24,0x04,0x04,0x44,0x45,0x00 -+// 16051 㺳 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x1c,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x06,0x04,0x04,0x28,0x18,0x18,0x24,0x83,0x00 -+// 16052 㺴 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x1c,0x20,0x00,0x00,0x00,0x00,0x00,0x04,0x22,0x20,0x30,0x20,0x20,0x28,0x08,0x44,0x84,0x02,0x01,0x00 -+// 16053 㺵 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x18,0x20,0x01,0x00,0x00,0x20,0x20,0x40,0x43,0x42,0x90,0x10,0x10,0x20,0x28,0x28,0x44,0x82,0x03,0x00 -+// 16054 㺶 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x0c,0x38,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0x04,0x64,0x24,0x05,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16055 㺷 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x31,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x31,0x30,0x30,0x70,0x54,0x90,0x93,0x11,0x10,0x10,0x00 -+// 16056 㺸 ; -+,0x00,0x02,0x04,0x0c,0x14,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x68,0x08,0x88,0x0f,0x00,0xc0,0x00,0xc4,0x00,0x08,0x01,0x00 -+// 16057 㺹 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x0c,0x38,0x20,0x00,0x00,0x00,0x10,0x30,0x00,0x02,0xe1,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x04,0x04,0x00 -+// 16058 㺺 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x1c,0x20,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x00 -+// 16059 㺻 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x90,0x90,0x90,0x90,0x92,0x10,0x10,0x00 -+// 16060 㺼 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x08,0x38,0x21,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x4b,0x40,0x40,0x40,0xc0,0xb0,0x18,0x07,0x00 -+// 16061 㺽 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x1c,0x20,0x00,0x00,0x00,0x00,0x03,0x10,0x10,0x20,0x30,0x50,0x12,0x12,0x10,0x10,0x10,0x00,0x00,0x00 -+// 16062 㺾 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x20,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x02,0x02,0x02,0x06,0x00 -+// 16063 㺿 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x81,0x88,0x88,0x88,0xa2,0xa2,0xa2,0xa2,0xaa,0x88,0x88,0x88,0x89,0x00 -+// 16064 㻀 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x20,0x60,0x98,0x06,0x00 -+// 16065 㻁 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x82,0x82,0x82,0x80,0x00 -+// 16066 㻂 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x38,0x00,0x00,0x00,0x00,0x44,0x24,0x08,0x46,0x44,0x44,0x44,0x45,0x44,0x44,0x44,0x84,0x84,0x04,0x00 -+// 16067 㻃 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x24,0x00,0x04,0x80,0x88,0x80,0x88,0x83,0x00 -+// 16068 㻄 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x01,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x90,0x90,0x10,0x30,0x0f,0x00 -+// 16069 㻅 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x20,0x44,0x83,0x00,0x00,0x03,0x20,0x20,0x44,0x86,0xe2,0x00 -+// 16070 㻆 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x02,0xe2,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 16071 㻇 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x10,0x30,0x20,0x08,0x44,0x87,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x00,0x00 -+// 16072 㻈 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x0e,0x40,0x00,0x00,0x40,0x00,0x00,0x32,0xa2,0xa2,0xa2,0x22,0x22,0x00 -+// 16073 㻉 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x10,0x10,0x52,0x50,0x50,0x51,0x00,0x10,0x52,0x92,0x14,0x08,0x20,0x80,0x00 -+// 16074 㻊 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x38,0x00,0x00,0x00,0x00,0x20,0x20,0x44,0x08,0x80,0x12,0x12,0x12,0x1a,0x28,0x28,0x49,0x09,0x0f,0x00 -+// 16075 㻋 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x92,0x92,0x92,0x30,0x30,0x54,0x92,0x13,0x10,0x00 -+// 16076 㻌 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x08,0x08,0x08,0x0c,0x30,0x01,0x00,0x00,0x00,0x00,0x30,0x28,0x44,0x02,0x15,0x10,0x12,0x10,0x10,0x50,0x92,0x11,0x30,0x00 -+// 16077 㻍 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x46,0x42,0x42,0x40,0x00,0x12,0x10,0x10,0x38,0x28,0x24,0x46,0x03,0x00 -+// 16078 㻎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x11,0x01,0x02,0x00,0x00,0x00,0x40,0x40,0xc2,0x40,0x42,0x48,0x48,0x08,0xc8,0x88,0x20,0x10,0x18,0x06,0x00 -+// 16079 㻏 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x01,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x30,0x22,0xb4,0xb0,0x28,0x44,0x46,0x03,0x00 -+// 16080 㻐 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x10,0x20,0x42,0xc3,0x00,0x42,0xa3,0x24,0x44,0x04,0x28,0x10,0x38,0x47,0x00 -+// 16081 㻑 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x38,0x10,0x38,0x30,0x52,0x11,0x00,0x04,0x10,0x10,0x10,0x10,0x30,0x00 -+// 16082 㻒 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x83,0x8c,0x90,0x90,0x92,0x90,0x98,0xb6,0x92,0x90,0x90,0x80,0x80,0x00 -+// 16083 㻓 ; -+,0x00,0x00,0x05,0x01,0x01,0x01,0x01,0x1d,0x01,0x01,0x01,0x09,0x33,0x00,0x00,0x00,0x00,0x00,0x20,0x23,0x20,0x22,0x22,0x22,0x22,0x24,0x24,0x24,0xa2,0x23,0x20,0x00 -+// 16084 㻔 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x1e,0x10,0x10,0x54,0x14,0x55,0x54,0x14,0x14,0x10,0x10,0x10,0x00,0x00 -+// 16085 㻕 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x30,0x00,0x00,0x00,0x00,0x00,0x83,0x81,0x83,0x80,0x08,0x4a,0x4a,0x5a,0x08,0x49,0x49,0x49,0x01,0x00 -+// 16086 㻖 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x11,0x00,0x00,0x00,0x00,0x30,0x20,0x36,0x20,0x37,0x20,0x34,0x30,0xb0,0x28,0x24,0xa6,0x20,0x60,0x00 -+// 16087 㻗 ; -+,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x20,0x32,0x20,0x21,0x20,0x00,0x02,0x00,0xc4,0x00,0x08,0x8b,0x00 -+// 16088 㻘 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x10,0x10,0x91,0x80,0x10,0x12,0x12,0x12,0x12,0x12,0x52,0x10,0x10,0x10,0x00 -+// 16089 㻙 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0x02,0xf1,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x86,0x00 -+// 16090 㻚 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0d,0x31,0x00,0x00,0x00,0x00,0x00,0xab,0x28,0x28,0xa8,0x28,0x28,0xa8,0x28,0x28,0x28,0x20,0x30,0x22,0x00 -+// 16091 㻛 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x0c,0x18,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x20,0x61,0xa5,0x29,0x49,0x90,0x22,0x06,0x04 -+// 16092 㻜 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x0c,0x30,0x01,0x00,0x00,0x00,0x00,0x44,0x44,0xec,0xab,0x10,0x00,0x90,0x92,0x90,0x90,0xd0,0x30,0x0f,0x00 -+// 16093 㻝 ; -+,0x00,0x00,0x00,0x08,0x08,0x09,0x09,0x0d,0x09,0x09,0x08,0x08,0x31,0x00,0x00,0x00,0x00,0x41,0x41,0x51,0x41,0x55,0x55,0x55,0x55,0xc5,0xc5,0x51,0x51,0x41,0x42,0x00 -+// 16094 㻞 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0d,0x31,0x02,0x00,0x00,0x00,0x10,0x00,0x82,0x82,0x82,0x80,0x80,0xd5,0xd5,0xd5,0x55,0x55,0x51,0x43,0x00 -+// 16095 㻟 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x38,0x00,0x00,0x00,0x00,0x20,0x21,0x60,0x42,0x00,0x9a,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 16096 㻠 ; -+,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x01,0x00,0x00,0x00,0x10,0x11,0x01,0x40,0x42,0x00,0x10,0x31,0x20,0x28,0x40,0x86,0x03,0x00 -+// 16097 㻡 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x14,0xd7,0x14,0x14,0x14,0x00,0x10,0x10,0x38,0x30,0x54,0x92,0x13,0x00 -+// 16098 㻢 ; -+,0x00,0x00,0x00,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x0a,0x32,0x00,0x01,0x00,0x00,0x08,0x88,0x91,0x00,0x04,0x04,0x55,0x55,0x55,0x55,0x54,0x50,0x11,0x9f,0x00 -+// 16099 㻣 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x38,0x20,0x00,0x00,0x00,0x00,0x44,0x45,0x44,0x44,0x44,0x44,0x44,0x45,0x80,0x84,0xa2,0x80,0x81,0x00 -+// 16100 㻤 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x09,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x44,0x45,0x40,0x40,0x42,0x82,0x02,0x4a,0x0a,0x4a,0x02,0x02,0x0c,0x00 -+// 16101 㻥 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x0c,0x38,0x00,0x00,0x00,0x00,0x00,0x24,0x21,0x28,0x20,0xaf,0xa0,0xa0,0x86,0x80,0x82,0x80,0x82,0x82,0x00 -+// 16102 㻦 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x31,0x01,0x01,0x00,0x00,0x00,0x92,0x92,0xb6,0x92,0x92,0x90,0x10,0x11,0x10,0x34,0x40,0x00,0x06,0x00 -+// 16103 㻧 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0xa5,0x20,0x60,0x57,0x00,0x10,0x10,0x38,0x10,0x54,0x12,0x10,0x00 -+// 16104 㻨 ; -+,0x00,0x00,0x12,0x10,0x11,0x10,0x12,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x8c,0x14,0x28,0x16,0x02,0x04,0x00,0xc4,0x00,0x08,0x03,0x00 -+// 16105 㻩 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x01,0x00,0x00,0x00,0x44,0x20,0x0a,0x00,0x00,0x6a,0x0b,0x02,0x0a,0x48,0x48,0x84,0x02,0x00,0x00 -+// 16106 㻪 ; -+,0x00,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x01,0x00,0x00,0x00,0x50,0x90,0x92,0x90,0x92,0x90,0x91,0x00,0x44,0x44,0x41,0x82,0x06,0x00 -+// 16107 㻫 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x10,0x54,0x54,0x54,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16108 㻬 ; -+,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x02,0x04,0x1c,0x08 -+// 16109 㻭 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x20,0x10,0x02,0x10,0xaa,0x50,0x00,0x0a,0x60,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16110 㻮 ; -+,0x00,0x00,0x00,0x08,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x01,0x00,0x00,0x00,0x80,0x82,0xb2,0x28,0x00,0x44,0x86,0x00,0x00,0x10,0x10,0x92,0x11,0x30,0x00 -+// 16111 㻯 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x31,0x00,0x00,0x00,0x00,0x10,0x10,0x91,0x90,0x94,0x90,0x80,0x8e,0x88,0xa0,0x2a,0x00,0x00,0x10,0x00 -+// 16112 㻰 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 16113 㻱 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x01,0x02,0x00,0x00,0x10,0x12,0xa4,0x8c,0x0c,0x0b,0x0a,0x88,0x0a,0x08,0x08,0x08,0x88,0x3f,0x00 -+// 16114 㻲 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x10,0x92,0x93,0x92,0x92,0x10,0x92,0x92,0x80,0x21,0x44,0x08,0x3c,0x02,0x00 -+// 16115 㻳 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x40,0x4c,0x40,0x00,0x42,0x4a,0x4a,0x4a,0xea,0x5a,0x42,0x42,0x46,0x00 -+// 16116 㻴 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x00,0x02,0x2a,0x2a,0x02,0x06,0x04,0x38,0x38,0x07,0x00 -+// 16117 㻵 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x30,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x00,0x06,0x88,0x08,0x10,0x12,0x02,0x24,0xc4,0x04,0x44,0x00 -+// 16118 㻶 ; -+,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x88,0x84,0x42,0x00,0x12,0x13,0x12,0x34,0x00,0x10,0x11,0x10,0x10,0x00 -+// 16119 㻷 ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x18,0x00,0x00,0x01,0x19,0x30,0x00,0x00,0x00,0x00,0x00,0x80,0x8c,0x80,0x8e,0x92,0x92,0x92,0xde,0x8c,0xdc,0xa2,0xa1,0x80,0x00 -+// 16120 㻸 ; -+,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x44,0x04,0x04,0xc6,0xc0,0x63,0x00,0x86,0x80,0x84,0x80,0x84,0x84,0x00 -+// 16121 㻹 ; -+,0x00,0x00,0x0c,0x08,0x19,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x22,0x18,0x18,0x2a,0x19,0x10,0x80,0x80,0x84,0x80,0x88,0x83,0x00 -+// 16122 㻺 ; -+,0x00,0x00,0x08,0x09,0x09,0x09,0x0b,0x01,0x01,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x8c,0x08,0x1c,0x98,0x4b,0x08,0x04,0x40,0x44,0x40,0x48,0x00,0x00 -+// 16123 㻻 ; -+,0x00,0x00,0x00,0x08,0x08,0x09,0x0d,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x44,0x04,0x01,0x28,0x20,0x02,0x22,0x26,0x44,0xc4,0x4a,0x41,0x81,0x00 -+// 16124 㻼 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x01,0x28,0x2a,0x2a,0x2a,0x00,0x82,0x80,0x80,0x82,0x10,0x11,0x10,0x10,0x00 -+// 16125 㻽 ; -+,0x00,0x00,0x02,0x08,0x09,0x09,0x08,0x08,0x08,0x08,0x09,0x09,0x31,0x01,0x01,0x00,0x00,0x00,0x90,0x92,0x92,0x90,0x92,0x90,0x80,0x00,0x2b,0x28,0x00,0x00,0x02,0x00 -+// 16126 㻾 ; -+,0x00,0x00,0x00,0x04,0x00,0x0e,0x01,0x0a,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x42,0x00,0x4a,0x40,0x58,0x5a,0x40,0x00,0x00,0x00,0xd0,0x08,0x02,0x00 -+// 16127 㻿 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0xaa,0x2a,0xaa,0x40,0x42,0xa2,0xae,0xa2,0xaa,0x22,0x22,0x02,0x06,0x00 -+// 16128 㼀 ; -+,0x00,0x00,0x04,0x08,0x09,0x08,0x0c,0x09,0x09,0x09,0x09,0x09,0x31,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x11,0x00,0x24,0x02,0x00,0x18,0x00,0x18,0x00,0x00,0x3e,0x00 -+// 16129 㼁 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x04,0x20,0x12,0x10,0x10,0x11,0x00,0x6a,0x48,0x48,0x4a,0xcc,0x4c,0xc2,0x00 -+// 16130 㼂 ; -+,0x00,0x00,0x08,0x0a,0x08,0x0a,0x08,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa4,0x84,0xa4,0xa4,0xa4,0xa5,0x00,0xc0,0x00,0xc0,0x00,0x08,0x00,0x00 -+// 16131 㼃 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x39,0x21,0x01,0x00,0x00,0x92,0x04,0x04,0x92,0x0a,0x12,0x0a,0x02,0x00,0x04,0x00,0x0a,0x02,0xb1,0x00 -+// 16132 㼄 ; -+,0x00,0x00,0x00,0x08,0x09,0x08,0x09,0x08,0x08,0x08,0x09,0x09,0x09,0x21,0x00,0x00,0x00,0x00,0x94,0x52,0xd4,0x10,0x5d,0x10,0x11,0x10,0x2a,0x6c,0x24,0x2d,0x01,0x00 -+// 16133 㼅 ; -+,0x00,0x00,0x04,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x19,0x20,0x02,0x00,0x00,0x00,0x10,0x10,0x00,0x20,0x2e,0x20,0x00,0x10,0x52,0x52,0x52,0x42,0x20,0x42,0x00 -+// 16134 㼆 ; -+,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x44,0x44,0x44,0x14,0x22,0x00,0x01,0x01,0x04,0x20,0x24,0x20,0x24,0x21,0x00 -+// 16135 㼇 ; -+,0x00,0x00,0x00,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x10,0x11,0x90,0x10,0x92,0x90,0x90,0x90,0x80,0x00,0xab,0x28,0x08,0x02,0x00 -+// 16136 㼈 ; -+,0x00,0x00,0x03,0x09,0x09,0x08,0x0c,0x09,0x0b,0x08,0x09,0x19,0x20,0x02,0x00,0x00,0x00,0x00,0x29,0x09,0x01,0x10,0x14,0x54,0x94,0x14,0x54,0x14,0x14,0x54,0x90,0x00 -+// 16137 㼉 ; -+,0x00,0x00,0x03,0x14,0x14,0x14,0x15,0x15,0x14,0x14,0x14,0x14,0x05,0x05,0x00,0x00,0x00,0x00,0x08,0x08,0x39,0x00,0x40,0x18,0x10,0x90,0xa0,0x47,0x20,0x18,0x0f,0x00 -+// 16138 㼊 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x21,0x21,0x21,0x2d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x0c,0x50,0x50,0x50,0x54,0x54,0x54,0x50,0x50,0x12,0x96,0x17,0x01,0x00 -+// 16139 㼋 ; -+,0x00,0x08,0x08,0x08,0x0d,0x08,0x08,0x08,0x12,0x02,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x00,0x06,0x50,0x50,0x50,0x54,0x54,0x10,0x10,0x12,0x92,0x92,0x1d,0x11,0x00 -+// 16140 㼌 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x05,0x05,0x04,0x04,0x14,0x15,0x17,0x04,0x00,0x00,0x00,0x00,0x1c,0x50,0x50,0x50,0x54,0x54,0xd4,0xd0,0x52,0x52,0x16,0x95,0x01,0x00 -+// 16141 㼍 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x06,0x0d,0x04,0x14,0x04,0x04,0x00,0x00,0x00,0x0e,0x50,0x50,0x50,0x54,0x54,0x54,0x50,0x52,0x12,0x96,0x15,0x01,0x00 -+// 16142 㼎 ; -+,0x00,0x00,0x03,0x14,0x14,0x14,0x15,0x15,0x15,0x14,0x14,0x14,0x05,0x05,0x00,0x00,0x00,0x00,0x08,0x09,0x00,0x20,0x03,0x04,0x18,0x08,0x84,0xc2,0x60,0x38,0x0f,0x00 -+// 16143 㼏 ; -+,0x00,0x00,0x07,0x00,0x04,0x15,0x10,0x04,0x0c,0x09,0x08,0x12,0x06,0x0b,0x00,0x00,0x00,0x00,0x06,0x50,0xd0,0x50,0x54,0x54,0x54,0x50,0x52,0x52,0x16,0x95,0x01,0x00 -+// 16144 㼐 ; -+,0x00,0x04,0x00,0x11,0x10,0x11,0x10,0x10,0x16,0x14,0x16,0x34,0x14,0x10,0x11,0x00,0x00,0x00,0x04,0xb0,0x20,0x20,0x20,0x20,0xa0,0xa2,0x82,0x82,0x86,0x95,0x01,0x00 -+// 16145 㼑 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x15,0x1c,0x14,0x0c,0x0e,0x05,0x14,0x04,0x04,0x00,0x00,0x00,0x0e,0xf0,0x10,0x90,0x94,0x14,0x10,0x50,0x52,0x52,0x56,0x1d,0x01,0x00 -+// 16146 㼒 ; -+,0x00,0x00,0x03,0x14,0x14,0x14,0x15,0x15,0x15,0x14,0x14,0x14,0x15,0x05,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x01,0x20,0x17,0x02,0x8a,0x82,0x44,0x30,0x0e,0x00 -+// 16147 㼓 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x16,0x15,0x15,0x15,0x04,0x06,0x26,0x00,0x00,0x00,0x00,0x04,0x20,0x29,0x28,0x2a,0x2a,0x2a,0x2a,0x2a,0x68,0x68,0xaa,0x29,0x28,0x00 -+// 16148 㼔 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x1a,0x1a,0x1a,0x1a,0x18,0x20,0x00,0x00,0x00,0x0c,0x30,0x20,0x20,0x20,0x20,0x00,0x02,0x42,0x42,0x46,0x1f,0x01,0x00 -+// 16149 㼕 ; -+,0x00,0x00,0x14,0x05,0x04,0x20,0x01,0x00,0x00,0x01,0x04,0x05,0x04,0x15,0x00,0x00,0x00,0x00,0x8e,0x30,0xa0,0xa0,0x20,0x20,0x20,0x02,0x02,0x42,0x4e,0x91,0x01,0x00 -+// 16150 㼖 ; -+,0x00,0x00,0x04,0x10,0x10,0x10,0x12,0x12,0x10,0x10,0x00,0x00,0x22,0x0c,0x01,0x00,0x00,0x00,0x48,0x08,0x20,0x10,0x18,0x6b,0x10,0x44,0x64,0x64,0x44,0x65,0x1d,0x00 -+// 16151 㼗 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x08,0x00,0x00,0x00,0x02,0x00,0x00,0x40,0x44,0x44,0x44,0x54,0x54,0x44,0x44,0xe4,0x47,0x00 -+// 16152 㼘 ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x20,0x00,0x40,0x44,0x44,0x44,0x54,0x54,0x00,0x80,0xc1,0x87,0x00 -+// 16153 㼙 ; -+,0x00,0x08,0x08,0x08,0x2f,0x29,0x29,0x29,0x29,0x29,0x2b,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x01,0x20,0x20,0x20,0x24,0x44,0x44,0x54,0x54,0x44,0x40,0xe1,0x07,0x00 -+// 16154 㼚 ; -+,0x00,0x00,0x04,0x04,0x01,0x00,0x02,0x02,0x02,0x12,0x12,0x12,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x24,0x24,0x34,0x14,0x44,0x44,0x44,0x65,0x47,0x00 -+// 16155 㼛 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0b,0x08,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x03,0x20,0x20,0x20,0x24,0x84,0x44,0x54,0x54,0x40,0x40,0x61,0x47,0x00 -+// 16156 㼜 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x02,0x08,0x02,0x00,0x04,0x04,0x00,0x08,0x08,0x00,0x00,0x80,0x88,0x88,0x89,0x00,0x10,0x0e,0x00,0x00,0x10,0x90,0xa0,0x21,0x3f,0x00 -+// 16157 㼝 ; -+,0x00,0x04,0x0c,0x00,0x19,0x02,0x00,0x00,0x01,0x01,0x03,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0xa2,0xa2,0x24,0x20,0x21,0x00,0x02,0x00,0x18,0x10,0x50,0x10,0x19,0x00 -+// 16158 㼞 ; -+,0x00,0x00,0x01,0x00,0x01,0x01,0x10,0x14,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x24,0x24,0x34,0x34,0x04,0x44,0x44,0x65,0x47,0x00 -+// 16159 㼟 ; -+,0x00,0x00,0x04,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x24,0x44,0x44,0x54,0x54,0x44,0x44,0xe5,0x87,0x00 -+// 16160 㼠 ; -+,0x00,0x00,0x04,0x00,0x00,0x20,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x20,0xa0,0x20,0x24,0x24,0x14,0x54,0x44,0x44,0x44,0x65,0x47,0x00 -+// 16161 㼡 ; -+,0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x0e,0x0e,0x0b,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x24,0x24,0x24,0x04,0x44,0xc4,0x44,0x65,0x47,0x00 -+// 16162 㼢 ; -+,0x00,0x00,0x01,0x24,0x24,0x25,0x29,0x29,0x29,0x2d,0x24,0x24,0x24,0x25,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x24,0x24,0x34,0x34,0x04,0x44,0x44,0x65,0x47,0x00 -+// 16163 㼣 ; -+,0x00,0x00,0x01,0x00,0x08,0x00,0x11,0x01,0x01,0x13,0x01,0x01,0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x24,0x24,0x34,0x34,0x04,0x44,0x44,0x65,0x47,0x00 -+// 16164 㼤 ; -+,0x00,0x00,0x06,0x00,0x06,0x00,0x04,0x00,0x00,0x02,0x06,0x04,0x04,0x08,0x0c,0x00,0x00,0x00,0x81,0x11,0x90,0x12,0x22,0x44,0x02,0x00,0x30,0x10,0x10,0x11,0x1f,0x00 -+// 16165 㼥 ; -+,0x00,0x00,0x00,0x0d,0x01,0x0e,0x04,0x08,0x14,0x08,0x08,0x01,0x01,0x01,0x06,0x00,0x00,0x00,0x81,0x10,0x10,0x52,0x02,0x20,0x20,0x28,0xa0,0x24,0x04,0x65,0x03,0x00 -+// 16166 㼦 ; -+,0x00,0x00,0x05,0x04,0x04,0x04,0x38,0x00,0x02,0x02,0x02,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x4c,0x40,0x40,0x50,0x87,0x00,0x02,0x00,0x10,0x90,0x10,0x11,0x1f,0x00 -+// 16167 㼧 ; -+,0x00,0x00,0x03,0x00,0x04,0x05,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x21,0x00,0x00,0x00,0x01,0x20,0x20,0x20,0x24,0x24,0x34,0x04,0x04,0x44,0x44,0x65,0x47,0x00 -+// 16168 㼨 ; -+,0x00,0x00,0x0c,0x0a,0x19,0x14,0x20,0x02,0x02,0x04,0x13,0x10,0x10,0x13,0x10,0x00,0x00,0x00,0x01,0x20,0x20,0x20,0x24,0x24,0x14,0x04,0x44,0x44,0x44,0x65,0x47,0x00 -+// 16169 㼩 ; -+,0x00,0x02,0x02,0x02,0x12,0x12,0x12,0x02,0x16,0x07,0x05,0x21,0x29,0x08,0x00,0x00,0x00,0x00,0x81,0x90,0x10,0x00,0x04,0xa4,0x24,0x2c,0x24,0x24,0x24,0xe5,0x87,0x00 -+// 16170 㼪 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x0c,0x04,0x04,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x20,0x24,0x24,0xa4,0x2c,0x24,0x04,0x84,0x65,0x07,0x00 -+// 16171 㼫 ; -+,0x00,0x00,0x15,0x05,0x15,0x05,0x15,0x04,0x04,0x0c,0x0c,0x05,0x05,0x04,0x04,0x00,0x00,0x00,0x01,0x20,0x20,0x20,0x24,0x24,0x34,0x04,0x04,0x44,0x44,0x65,0x47,0x00 -+// 16172 㼬 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x00,0x0a,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0xa0,0x24,0x24,0x24,0x2c,0x24,0x04,0x44,0x65,0x47,0x00 -+// 16173 㼭 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x1c,0x00,0x02,0x02,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x12,0x10,0x52,0x42,0x42,0x00,0x02,0x00,0x10,0x90,0x10,0x11,0x1f,0x00 -+// 16174 㼮 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x00,0x05,0x09,0x0a,0x0a,0x06,0x11,0x00,0x00,0x00,0x01,0x00,0x20,0x20,0xa4,0x24,0x34,0x24,0x04,0x44,0x44,0x65,0x07,0x00 -+// 16175 㼯 ; -+,0x00,0x04,0x04,0x04,0x05,0x05,0x15,0x05,0x05,0x0d,0x0e,0x05,0x15,0x04,0x04,0x00,0x00,0x00,0x03,0x00,0x20,0x20,0x24,0x24,0x34,0x24,0x04,0x44,0x44,0x65,0x47,0x00 -+// 16176 㼰 ; -+,0x00,0x04,0x00,0x14,0x04,0x14,0x04,0x14,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x01,0x90,0x80,0xa0,0xa4,0xa4,0x24,0x2c,0x24,0x24,0x04,0x65,0x07,0x00 -+// 16177 㼱 ; -+,0x00,0x00,0x01,0x01,0x09,0x00,0x00,0x12,0x04,0x01,0x02,0x02,0x02,0x00,0x06,0x00,0x00,0x00,0x24,0x20,0x22,0x00,0x03,0x10,0x0c,0x00,0x00,0x90,0x50,0x10,0x1f,0x00 -+// 16178 㼲 ; -+,0x00,0x00,0x04,0x00,0x0a,0x0a,0x0a,0x0a,0x01,0x04,0x04,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x81,0x10,0x80,0x80,0x84,0xa4,0xa4,0x2c,0xa4,0x24,0x04,0x65,0x07,0x00 -+// 16179 㼳 ; -+,0x00,0x04,0x04,0x04,0x04,0x03,0x04,0x08,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x02,0x80,0xa0,0x20,0x24,0x24,0x24,0x2c,0x04,0x04,0x44,0x65,0x47,0x00 -+// 16180 㼴 ; -+,0x00,0x00,0x11,0x15,0x15,0x15,0x15,0x04,0x04,0x24,0x24,0x25,0x20,0x20,0x21,0x00,0x00,0x00,0x01,0x10,0x00,0x00,0x24,0x24,0xa4,0xac,0xa4,0x84,0x84,0xe5,0x87,0x00 -+// 16181 㼵 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x04,0x04,0x14,0x14,0x04,0x26,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0xa4,0x24,0x84,0x34,0x67,0x00,0xfe,0x00 -+// 16182 㼶 ; -+,0x00,0x04,0x04,0x09,0x10,0x00,0x00,0x14,0x02,0x12,0x02,0x12,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x10,0x80,0x00,0x24,0xa4,0xa4,0xac,0xa4,0xa4,0x84,0xe5,0x07,0x00 -+// 16183 㼷 ; -+,0x00,0x04,0x04,0x14,0x14,0x00,0x01,0x04,0x00,0x1b,0x0a,0x0a,0x0a,0x08,0x01,0x00,0x00,0x00,0x01,0x10,0x00,0x00,0x24,0x24,0x24,0xac,0x24,0x04,0x04,0x65,0x07,0x00 -+// 16184 㼸 ; -+,0x00,0x00,0x02,0x10,0x00,0x09,0x14,0x04,0x09,0x10,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x01,0xd0,0x80,0x00,0xa4,0x24,0x24,0xac,0x24,0x24,0x04,0x65,0x47,0x00 -+// 16185 㼹 ; -+,0x00,0x00,0x00,0x12,0x04,0x00,0x10,0x10,0x10,0x00,0x15,0x15,0x15,0x05,0x01,0x00,0x00,0x00,0x01,0x10,0x00,0x00,0x24,0x24,0x24,0x2c,0x24,0x04,0x04,0x65,0x07,0x00 -+// 16186 㼺 ; -+,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x20,0x28,0x28,0x08,0x00,0x00,0x00,0x00,0x01,0x10,0x10,0x90,0x96,0x80,0xa4,0x2c,0x2c,0xa4,0xa4,0xa5,0x07,0x00 -+// 16187 㼻 ; -+,0x00,0x04,0x08,0x02,0x0c,0x18,0x09,0x08,0x08,0x02,0x06,0x04,0x04,0x08,0x0e,0x00,0x00,0x40,0x88,0x54,0x00,0x94,0x80,0x70,0x06,0x02,0x10,0x10,0x90,0x00,0x1f,0x00 -+// 16188 㼼 ; -+,0x00,0x00,0x00,0x0a,0x1b,0x0a,0x0a,0x10,0x01,0x00,0x04,0x04,0x14,0x04,0x04,0x00,0x00,0x00,0x01,0x10,0x90,0x10,0x16,0x00,0x24,0x2c,0x2c,0x24,0x24,0xa5,0x07,0x00 -+// 16189 㼽 ; -+,0x00,0x00,0x04,0x04,0x0c,0x15,0x1d,0x04,0x0c,0x15,0x1c,0x04,0x01,0x08,0x10,0x00,0x00,0x00,0x01,0x10,0x10,0x90,0x94,0x24,0xa4,0x2c,0xa4,0x24,0x24,0xa5,0x03,0x00 -+// 16190 㼾 ; -+,0x00,0x00,0x00,0x16,0x10,0x16,0x10,0x16,0x10,0x08,0x09,0x08,0x28,0x09,0x00,0x00,0x00,0x00,0x01,0x10,0x10,0x90,0x92,0x80,0x20,0x2c,0xa4,0x24,0x24,0x25,0x00,0x00 -+// 16191 㼿 ; -+,0x00,0x04,0x04,0x09,0x09,0x00,0x00,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x38,0x00,0x00,0x00,0x03,0x10,0x00,0x80,0x24,0xa4,0xa4,0xac,0x24,0x24,0x04,0x65,0x07,0x00 -+// 16192 㽀 ; -+,0x00,0x09,0x08,0x06,0x06,0x1e,0x1a,0x11,0x10,0x10,0x04,0x04,0x04,0x09,0x00,0x00,0x00,0x00,0x03,0x90,0x10,0x90,0x96,0x80,0xa0,0xac,0x2c,0xa4,0x24,0x35,0x23,0x00 -+// 16193 㽁 ; -+,0x00,0x00,0x10,0x11,0x10,0x13,0x13,0x10,0x10,0x11,0x11,0x11,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x8c,0x08,0x18,0x18,0x8a,0x00,0x00,0x00,0x10,0x50,0x10,0x1f,0x00 -+// 16194 㽂 ; -+,0x00,0x04,0x09,0x00,0x00,0x11,0x10,0x10,0x00,0x08,0x01,0x09,0x22,0x00,0x09,0x00,0x00,0x00,0x02,0xd0,0x00,0x80,0x82,0x00,0x20,0xac,0xa4,0xa4,0xa4,0xb5,0xa7,0x00 -+// 16195 㽃 ; -+,0x00,0x00,0x06,0x00,0x09,0x0f,0x06,0x09,0x10,0x14,0x14,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x00,0x80,0x00,0x80,0x24,0xa4,0xa4,0xac,0xa4,0xa4,0xa4,0xb5,0xa7,0x00 -+// 16196 㽄 ; -+,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x09,0x10,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x86,0x20,0x21,0x24,0x24,0x04,0x84,0x02,0x00,0x10,0x90,0x00,0x1f,0x00 -+// 16197 㽅 ; -+,0x00,0x00,0x04,0x08,0x09,0x10,0x10,0x00,0x11,0x01,0x11,0x00,0x0a,0x0e,0x10,0x00,0x00,0x00,0x01,0x10,0x90,0x90,0x82,0x20,0x20,0x28,0x20,0x24,0x24,0x25,0x03,0x00 -+// 16198 㽆 ; -+,0x00,0x04,0x05,0x05,0x04,0x20,0x11,0x10,0x00,0x00,0x04,0x15,0x04,0x04,0x00,0x00,0x00,0x00,0x02,0x00,0xa0,0xa0,0x24,0x24,0x24,0xa4,0x24,0x04,0x04,0x65,0x47,0x00 -+// 16199 㽇 ; -+,0x00,0x00,0x0c,0x0a,0x08,0x0a,0x08,0x10,0x20,0x02,0x06,0x04,0x04,0x00,0x0c,0x00,0x00,0x00,0x44,0xc4,0x04,0x44,0x24,0x07,0x0a,0x00,0x10,0x10,0x90,0x21,0x3f,0x00 -+// 16200 㽈 ; -+,0x00,0x00,0x08,0x0f,0x08,0x14,0x04,0x04,0x09,0x00,0x02,0x06,0x04,0x04,0x0f,0x00,0x00,0x00,0x04,0x10,0x1a,0x10,0x92,0x50,0x18,0x07,0x00,0x10,0x90,0x10,0x11,0x00 -+// 16201 㽉 ; -+,0x00,0x00,0x14,0x14,0x11,0x11,0x14,0x15,0x00,0x02,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x22,0x50,0x08,0x52,0x52,0x52,0x00,0x00,0x00,0x10,0x50,0x11,0x1f,0x00 -+// 16202 㽊 ; -+,0x00,0x00,0x10,0x10,0x10,0x30,0x16,0x04,0x00,0x00,0x01,0x05,0x02,0x05,0x00,0x00,0x00,0x00,0x01,0x10,0xd0,0x90,0x96,0xf2,0x30,0x88,0x28,0x24,0x24,0x34,0x27,0x00 -+// 16203 㽋 ; -+,0x00,0x08,0x00,0x14,0x08,0x10,0x13,0x01,0x28,0x00,0x02,0x04,0x04,0x00,0x0e,0x00,0x00,0x84,0x20,0x2a,0x20,0x01,0x29,0x20,0x09,0x02,0x00,0x10,0x90,0x10,0x1f,0x00 -+// 16204 㽌 ; -+,0x00,0x00,0x00,0x06,0x20,0x00,0x00,0x11,0x10,0x1e,0x00,0x16,0x16,0x10,0x10,0x00,0x00,0x00,0x01,0x50,0x50,0x12,0x12,0xc2,0x08,0x88,0xa0,0xa0,0xa4,0xb4,0xa3,0x00 -+// 16205 㽍 ; -+,0x00,0x00,0x11,0x10,0x10,0x13,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x00,0x20,0x20,0xa0,0x24,0x24,0x34,0x34,0x04,0x44,0x44,0x65,0x47,0x00 -+// 16206 㽎 ; -+,0x00,0x09,0x01,0x19,0x01,0x09,0x01,0x09,0x01,0x19,0x10,0x14,0x18,0x10,0x00,0x00,0x00,0x00,0x10,0x90,0x11,0x51,0x50,0x10,0x18,0x58,0x18,0xa8,0xa8,0x49,0x07,0x00 -+// 16207 㽏 ; -+,0x00,0x00,0x04,0x10,0x15,0x08,0x18,0x00,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x40,0x88,0x03,0x04,0x04,0x84,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x00 -+// 16208 㽐 ; -+,0x00,0x00,0x12,0x10,0x12,0x16,0x10,0x10,0x14,0x10,0x10,0x10,0x14,0x01,0x00,0x00,0x00,0x44,0x20,0x0a,0x00,0x00,0x0a,0x6b,0x02,0x6a,0x48,0x48,0x84,0x02,0x00,0x00 -+// 16209 㽑 ; -+,0x00,0x00,0x02,0x00,0x00,0x27,0x00,0x00,0x04,0x04,0x00,0x00,0x04,0x24,0x00,0x00,0x00,0x01,0x28,0x28,0xaa,0x28,0x82,0x02,0x82,0x82,0x82,0x10,0x11,0x10,0x10,0x10 -+// 16210 㽒 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x04,0x00,0x04,0x0d,0x00,0x08,0x09,0x11,0x03,0x00,0x00,0x00,0x88,0x08,0x28,0x6a,0x48,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x09,0x00 -+// 16211 㽓 ; -+,0x00,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0x14,0x04,0x05,0x04,0x04,0x30,0x00,0x00,0x40,0x40,0x40,0x44,0x40,0x41,0x00,0x28,0x29,0x48,0x0a,0x08,0x08,0x09,0x00 -+// 16212 㽔 ; -+,0x00,0x00,0x0a,0x0a,0x1b,0x0b,0x08,0x09,0x04,0x0a,0x02,0x0e,0x12,0x02,0x04,0x00,0x00,0x00,0x08,0x28,0x28,0xaa,0x08,0x08,0x08,0x08,0x08,0x8b,0x40,0x30,0x0f,0x00 -+// 16213 㽕 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0x04,0x04,0x08,0x08,0x08,0x12,0x02,0x06,0x1c,0x00 -+// 16214 㽖 ; -+,0x00,0x00,0x00,0x21,0x21,0x21,0x21,0x2d,0x21,0x21,0x21,0x3d,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x22,0x22,0x02,0x42,0x02,0x0c,0x00 -+// 16215 㽗 ; -+,0x00,0x00,0x00,0x21,0x21,0x21,0x21,0x2d,0x21,0x21,0x21,0x3d,0x20,0x00,0x01,0x00,0x00,0x00,0x20,0x20,0x20,0x30,0x30,0x20,0x20,0x28,0x28,0x44,0x44,0x82,0x01,0x00 -+// 16216 㽘 ; -+,0x00,0x00,0x00,0x21,0x21,0x21,0x21,0x2d,0x21,0x21,0x21,0x3d,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x03,0x00,0x08,0x40,0x40,0x40,0x40,0x40,0x00,0x81,0x07,0x00 -+// 16217 㽙 ; -+,0x00,0x00,0x00,0x21,0x21,0x21,0x21,0x2d,0x21,0x21,0x21,0x3d,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x02,0xe3,0x00,0x28,0x28,0x08,0x48,0x48,0x88,0x07,0x00 -+// 16218 㽚 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc4,0x04,0xc4,0x04,0x44,0x00,0x40,0xcc,0x00,0xc1,0x00,0x00,0x00,0x00 -+// 16219 㽛 ; -+,0x00,0x00,0x00,0x29,0x21,0x21,0x21,0x29,0x21,0x21,0x21,0x2f,0x20,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x43,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x02,0x02,0x06,0x00 -+// 16220 㽜 ; -+,0x00,0x00,0x04,0x09,0x09,0x05,0x02,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0xa6,0x20,0x24,0x21,0x3f,0x00,0xc4,0x04,0xcc,0x04,0x04,0x0c,0x00 -+// 16221 㽝 ; -+,0x00,0x00,0x04,0x04,0x08,0x05,0x02,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x02,0x12,0x92,0x92,0x12,0x02,0x04,0x04,0x84,0x84,0xc4,0x84,0x84,0x04,0x00 -+// 16222 㽞 ; -+,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x08,0x00,0x00,0x00,0x26,0x20,0x20,0x24,0x20,0x00,0xc4,0x04,0x04,0xc4,0x04,0x04,0x04,0x00 -+// 16223 㽟 ; -+,0x00,0x00,0x00,0x29,0x21,0x21,0x21,0x29,0x21,0x21,0x21,0x2f,0x20,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x12,0x40,0x40,0x04,0x05,0x04,0x24,0x24,0x04,0x04,0x08,0x00 -+// 16224 㽠 ; -+,0x00,0x00,0x00,0x2b,0x20,0x20,0x20,0x2a,0x20,0x20,0x21,0x2e,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x52,0x54,0x56,0x31,0x10,0x28,0x04,0x06,0x03,0x00 -+// 16225 㽡 ; -+,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x92,0x92,0x92,0x92,0x92,0x92,0x20,0x08,0x99,0x08,0x08,0x08,0x00 -+// 16226 㽢 ; -+,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x21,0x00,0x50,0x96,0xd7,0x14,0x14,0x14,0x14,0x10,0x11,0x13,0x00 -+// 16227 㽣 ; -+,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x20,0x01,0x00,0x00,0x00,0x00,0x08,0x0a,0x09,0x08,0xa8,0xaa,0xaa,0xac,0xac,0x0c,0x4c,0x13,0x01,0x00 -+// 16228 㽤 ; -+,0x00,0x00,0x00,0x29,0x21,0x21,0x21,0x29,0x21,0x21,0x21,0x2f,0x20,0x00,0x00,0x00,0x00,0x20,0x40,0x41,0x01,0x11,0x55,0x51,0x35,0x31,0x79,0x55,0x11,0x10,0x16,0x00 -+// 16229 㽥 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x10,0x3a,0x00,0x10,0x10,0x10,0x38,0x30,0x54,0x93,0x10,0x00 -+// 16230 㽦 ; -+,0x00,0x00,0x02,0x03,0x12,0x05,0x00,0x00,0x10,0x04,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x18,0x50,0x24,0x00,0x02,0x02,0x88,0x88,0x88,0x88,0x88,0x08,0x00 -+// 16231 㽧 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x03,0x01,0x00,0x00,0x00,0x04,0x20,0x08,0x00,0x44,0x00,0x2a,0x00,0x44,0x00,0x00,0x3b,0x21,0x00 -+// 16232 㽨 ; -+,0x00,0x00,0x00,0x20,0x20,0x20,0x22,0x2a,0x20,0x20,0x20,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x10,0x10,0x32,0x20,0x21,0x00,0x40,0x08,0x08,0x08,0x09,0x00 -+// 16233 㽩 ; -+,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x00,0x00,0x00,0x00,0x00,0x20,0xc6,0x02,0x84,0x29,0x30,0x44,0x93,0x40,0x18,0x66,0x0c,0x60,0x00 -+// 16234 㽪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x01,0x91,0x95,0xb1,0x91,0x81,0x00,0x42,0x42,0x42,0x42,0x42,0x00 -+// 16235 㽫 ; -+,0x00,0x00,0x00,0x08,0x02,0x18,0x12,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x02,0x40,0x42,0x92,0x12,0x10,0x00,0x04,0x04,0xc4,0x04,0x04,0x04,0x00 -+// 16236 㽬 ; -+,0x00,0x00,0x01,0x00,0x11,0x11,0x11,0x00,0x01,0x05,0x05,0x05,0x05,0x05,0x01,0x00,0x00,0x00,0x02,0x00,0x22,0x22,0x22,0x00,0x03,0x4a,0x4a,0x4a,0x4a,0x4a,0x42,0x00 -+// 16237 㽭 ; -+,0x00,0x00,0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x91,0x10,0x10,0x00,0x10,0x10,0xa9,0x89,0x89,0xa9,0x83,0x00 -+// 16238 㽮 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x15,0x15,0x15,0x00,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x00,0x29,0x28,0x28,0x00,0x44,0x40,0xc4,0x40,0x43,0x00 -+// 16239 㽯 ; -+,0x00,0x00,0x02,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x00,0x00,0x00,0x00,0x00,0x81,0x91,0x80,0x98,0x98,0x9a,0x91,0x00,0x81,0xa5,0xa5,0xa1,0x83,0x00 -+// 16240 㽰 ; -+,0x00,0x00,0x2a,0x22,0x22,0x2a,0x2a,0x22,0x22,0x2a,0x22,0x22,0x22,0x08,0x08,0x00,0x00,0x00,0x80,0x0a,0x08,0x88,0x88,0x28,0x28,0xa8,0x28,0x28,0x08,0xcc,0xc3,0x00 -+// 16241 㽱 ; -+,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x04,0x0c,0x20,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x20,0x21,0x00,0x88,0x88,0x88,0x88,0x88,0x88,0xc8,0x08,0x08,0x08,0x08 -+// 16242 㽲 ; -+,0x00,0x00,0x00,0x04,0x00,0x10,0x10,0x00,0x08,0x20,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x40,0x80,0x84,0x04,0x04,0x04,0x08,0x38,0x00 -+// 16243 㽳 ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x08,0x20,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x04,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x00 -+// 16244 㽴 ; -+,0x00,0x00,0x00,0x04,0x00,0x10,0x00,0x00,0x18,0x20,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x08,0x08,0x1a,0x00,0x10,0x90,0x10,0x60,0x70,0x8c,0x06,0x00 -+// 16245 㽵 ; -+,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x04,0x0c,0x20,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x20,0x21,0x00,0x20,0x20,0x20,0x26,0x20,0x20,0x20,0x20,0x21,0x00,0x00 -+// 16246 㽶 ; -+,0x00,0x00,0x00,0x04,0x04,0x14,0x14,0x04,0x0c,0x21,0x09,0x09,0x09,0x11,0x00,0x00,0x00,0x00,0x20,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0xfe,0x00 -+// 16247 㽷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x08,0x20,0x08,0x09,0x02,0x10,0x00,0x00,0x00,0x00,0x20,0x22,0x00,0x20,0x20,0x66,0x60,0xa0,0xa8,0x24,0x26,0x23,0x40,0x00 -+// 16248 㽸 ; -+,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x05,0x0e,0x20,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x20,0x21,0x00,0x20,0x20,0x22,0x20,0x20,0x70,0x50,0x10,0x91,0x1f,0x00 -+// 16249 㽹 ; -+,0x00,0x00,0x00,0x04,0x00,0x10,0x01,0x01,0x09,0x21,0x09,0x09,0x02,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x3c,0x00,0x00,0x04,0x04,0x48,0x08,0x30,0x38,0x07,0x00 -+// 16250 㽺 ; -+,0x00,0x00,0x00,0x04,0x00,0x10,0x10,0x00,0x08,0x20,0x08,0x09,0x08,0x12,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x0c,0x88,0x88,0x8a,0x84,0x04,0x28,0x10,0x2c,0x06,0x00 -+// 16251 㽻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x22,0x20,0x20,0x04,0x08,0x08,0x30,0x70,0x8e,0x00 -+// 16252 㽼 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x0b,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x24,0x24,0x24,0x04,0x04,0x24,0x24,0x24,0x24,0xc4,0x00 -+// 16253 㽽 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x20,0x20,0x20,0x24,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16254 㽾 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x09,0x09,0x09,0x28,0x08,0x0a,0x02,0x12,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x20,0x22,0x20,0x20,0x20,0x20,0x22,0x22,0x22,0x02,0x00 -+// 16255 㽿 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x09,0x09,0x19,0x29,0x09,0x09,0x02,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x1c,0x40,0x00,0x00,0x00,0x04,0x04,0x0a,0x6b,0x01,0x00 -+// 16256 㾀 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x08,0x00,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x24,0x20,0x20,0x21,0x20,0x40,0x84,0x06,0x82,0x00 -+// 16257 㾁 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x09,0x01,0x12,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x28,0x24,0x22,0x60,0x60,0xa8,0x24,0x26,0x23,0x20,0x00 -+// 16258 㾂 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x09,0x0b,0x28,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x40,0x80,0x06,0x82,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16259 㾃 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x09,0x08,0x0a,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x20,0x02,0x02,0x00,0x8c,0x90,0x80,0x80,0x82,0xfe,0x00 -+// 16260 㾄 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x09,0x09,0x29,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x00 -+// 16261 㾅 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x09,0x09,0x19,0x29,0x08,0x08,0x00,0x12,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x2c,0x30,0x20,0x20,0x22,0x62,0xa2,0xa6,0x20,0x20,0x00 -+// 16262 㾆 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x09,0x09,0x19,0x29,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x25,0x04,0x04,0x04,0x0c,0x00 -+// 16263 㾇 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x09,0x09,0x09,0x29,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16264 㾈 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x09,0x09,0x28,0x08,0x08,0x00,0x10,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x84,0x84,0x05,0x04,0x04,0x14,0x14,0x04,0x04,0x0c,0x00 -+// 16265 㾉 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x40,0x88,0x26,0x00,0x04,0x08,0x00,0x20,0x10,0x00 -+// 16266 㾊 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x29,0x09,0x09,0x00,0x11,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x20,0x20,0x22,0x22,0x22,0x64,0xa8,0x26,0x20,0x00 -+// 16267 㾋 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x09,0x09,0x1b,0x29,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x80,0x88,0x08,0x09,0x18,0x2c,0x28,0x0a,0x09,0x08,0x08,0x00 -+// 16268 㾌 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x09,0x08,0x28,0x08,0x08,0x00,0x11,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0xa0,0xb4,0x20,0x20,0x31,0x40,0x00,0x80,0x01,0x0f,0x00 -+// 16269 㾍 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x02,0x20,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x02,0x00 -+// 16270 㾎 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x08,0x00,0x11,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x52,0x52,0x52,0x52,0x52,0x02,0x02,0x02,0x02,0x00 -+// 16271 㾏 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x24,0x20,0x22,0x20,0x20,0x24,0x20,0x20,0x23,0x00 -+// 16272 㾐 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x22,0x82,0x0a,0x2a,0x2a,0x0a,0x4a,0x02,0x02,0x06,0x00 -+// 16273 㾑 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x20,0x40,0x88,0x0f,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16274 㾒 ; -+,0x00,0x00,0x00,0x08,0x08,0x29,0x09,0x09,0x09,0x28,0x0a,0x0a,0x00,0x11,0x00,0x00,0x00,0x00,0x20,0x00,0x80,0x00,0x12,0x72,0x52,0x52,0x52,0x92,0x92,0x52,0x00,0x00 -+// 16275 㾓 ; -+,0x00,0x00,0x00,0x04,0x00,0x10,0x00,0x08,0x18,0x21,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x04,0x04,0x04,0x02,0x02,0x06,0x02,0x06,0x02,0x06,0x00 -+// 16276 㾔 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x02,0x02,0x02,0x02,0x02,0x00 -+// 16277 㾕 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x00,0x08,0x40,0x31,0x20,0x22,0x20,0x20,0x20,0x00 -+// 16278 㾖 ; -+,0x00,0x00,0x00,0x08,0x08,0x29,0x09,0x09,0x09,0x29,0x09,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x04,0x20,0x24,0x20,0x24,0x20,0x20,0x20,0x20,0x21,0x00 -+// 16279 㾗 ; -+,0x00,0x00,0x00,0x04,0x04,0x14,0x15,0x05,0x0d,0x35,0x01,0x09,0x09,0x11,0x01,0x00,0x00,0x40,0x00,0x00,0x20,0x20,0x04,0x04,0x04,0x04,0x00,0x04,0x18,0x0c,0x83,0x00 -+// 16280 㾘 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x09,0x09,0x29,0x09,0x08,0x00,0x10,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x22,0x20,0x24,0x24,0x24,0x24,0x20,0x00,0x60,0x1f,0x00 -+// 16281 㾙 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x09,0x09,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x08,0x30,0x48,0x24,0x60,0x80,0xb2,0x02,0x02,0x06,0x20,0x00 -+// 16282 㾚 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x0b,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x22,0x08,0x00,0x01,0x0e,0x00,0x00,0x00,0x00,0x00 -+// 16283 㾛 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x0a,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x04,0x04,0x04,0x04,0x00,0x02,0x08,0x08,0x50,0x30,0x0e,0x00 -+// 16284 㾜 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x29,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x20,0x20,0x24,0x24,0xe2,0x50,0x40,0x8c,0x07,0x00 -+// 16285 㾝 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x09,0x09,0x29,0x09,0x09,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x22,0x20,0x26,0x20,0x24,0x24,0x20,0x21,0x20,0x20,0x00 -+// 16286 㾞 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x08,0x09,0x00,0x10,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x42,0x50,0x50,0x52,0x52,0x92,0x02,0x02,0x02,0x02,0x00 -+// 16287 㾟 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x09,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x80,0x80,0xa2,0x20,0xa0,0x26,0x28,0x10,0x40,0x00 -+// 16288 㾠 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x09,0x08,0x68,0x09,0x0a,0x10,0x10,0x01,0x00,0x00,0x40,0x20,0x02,0x00,0x42,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x88,0x80,0x00 -+// 16289 㾡 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x48,0x09,0x09,0x12,0x03,0x00,0x00,0x00,0x40,0x20,0x00,0x80,0x80,0xaa,0x88,0x88,0xa8,0x08,0x08,0x2a,0x28,0x08,0x00 -+// 16290 㾢 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x08,0x08,0x01,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x20,0x24,0x2c,0xa2,0x70,0xe8,0x24,0x23,0x20,0x20 -+// 16291 㾣 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x09,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x40,0x84,0x0b,0x20,0x20,0x20,0xa4,0xa8,0x23,0x00 -+// 16292 㾤 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x0a,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x20,0x02,0x02,0xc0,0x84,0x04,0x20,0x20,0x20,0x22,0x00 -+// 16293 㾥 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x0a,0x00,0x10,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x80,0x83,0x82,0x82,0x8a,0x88,0x84,0xac,0x86,0x83,0x00 -+// 16294 㾦 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x08,0x09,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x00,0x08,0x40,0x13,0x00,0x04,0x04,0x04,0x84,0x00 -+// 16295 㾧 ; -+,0x00,0x00,0x00,0x08,0x08,0x29,0x09,0x09,0x09,0x28,0x08,0x08,0x00,0x11,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x24,0x24,0x24,0x24,0x20,0x22,0x60,0xa0,0x26,0x22,0x00 -+// 16296 㾨 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x08,0x28,0x09,0x09,0x01,0x11,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x22,0x40,0x88,0x04,0x04,0x04,0x04,0x24,0x04,0x0c,0x00 -+// 16297 㾩 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x08,0x08,0x18,0x68,0x08,0x08,0x12,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x0c,0x20,0x20,0x20,0x20,0xaa,0xa8,0xa8,0xa9,0x20,0x20,0x00 -+// 16298 㾪 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x09,0x08,0x08,0x28,0x09,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0xa0,0x22,0x38,0x30,0xc4,0x80,0x84,0x84,0x84,0x84,0x00 -+// 16299 㾫 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x09,0x09,0x19,0x29,0x09,0x0b,0x03,0x11,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x02,0x00,0x00,0x02,0x42,0x4a,0x4a,0x42,0x02,0x00 -+// 16300 㾬 ; -+,0x00,0x00,0x00,0x08,0x29,0x29,0x09,0x09,0x09,0x08,0x09,0x09,0x11,0x11,0x01,0x00,0x00,0x40,0x20,0x00,0x10,0x56,0x10,0x10,0x1e,0x00,0x04,0x00,0x04,0x00,0x04,0x00 -+// 16301 㾭 ; -+,0x00,0x00,0x00,0x08,0x08,0x29,0x09,0x09,0x29,0x49,0x0b,0x01,0x11,0x01,0x01,0x00,0x00,0x40,0x00,0x00,0x08,0x88,0x08,0x09,0x2a,0x8c,0x4c,0x0c,0x12,0x02,0x01,0x00 -+// 16302 㾮 ; -+,0x00,0x00,0x00,0x08,0x08,0x28,0x09,0x09,0x19,0x69,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0x42,0x02,0x04,0x00,0x04,0x02,0x20,0x24,0x20,0x21,0x00 -+// 16303 㾯 ; -+,0x00,0x00,0x00,0x08,0x08,0x29,0x09,0x09,0x29,0x48,0x09,0x01,0x11,0x01,0x01,0x00,0x00,0x40,0x20,0x00,0x04,0x24,0x24,0x24,0x24,0x00,0x20,0x04,0x18,0x4c,0x02,0x00 -+// 16304 㾰 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x08,0x0a,0x0a,0x12,0x12,0x00,0x00,0x00,0x40,0x20,0x00,0x80,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x12,0x62,0x02,0x00 -+// 16305 㾱 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x09,0x08,0x08,0x08,0x08,0x08,0x10,0x11,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0x40,0x4a,0x84,0x07,0x50,0x50,0xd2,0x90,0x10,0x0f,0x00 -+// 16306 㾲 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x09,0x09,0x09,0x12,0x12,0x00,0x00,0x00,0x40,0x20,0x00,0x80,0xa8,0x89,0x8a,0xa2,0x02,0x20,0x04,0x04,0x4a,0x01,0x00 -+// 16307 㾳 ; -+,0x00,0x00,0x00,0x08,0x29,0x29,0x08,0x09,0x29,0x09,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x40,0x22,0x00,0x20,0x22,0x00,0x10,0x20,0x42,0x40,0x88,0x90,0x30,0xc6,0x00 -+// 16308 㾴 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x09,0x08,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x20,0x22,0x60,0xa8,0x26,0x04,0x04,0x04,0x04,0x00,0x01,0x00 -+// 16309 㾵 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x0a,0x12,0x12,0x02,0x00,0x00,0x40,0x20,0x00,0x04,0x84,0x04,0x04,0x05,0x44,0x04,0x44,0x44,0x44,0x44,0x00 -+// 16310 㾶 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x0a,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x08,0x88,0xa0,0xa0,0xa2,0x00,0x80,0x88,0x80,0x80,0x88,0x00 -+// 16311 㾷 ; -+,0x00,0x00,0x00,0x08,0x28,0x29,0x09,0x09,0x19,0x29,0x08,0x0a,0x12,0x15,0x00,0x00,0x00,0x00,0x20,0x00,0x1c,0x00,0x14,0x10,0x92,0x90,0x9c,0x80,0xa4,0x20,0x07,0x00 -+// 16312 㾸 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0x00,0x84,0x84,0x84,0x00,0x00,0x48,0x48,0x48,0x02,0x00 -+// 16313 㾹 ; -+,0x00,0x00,0x00,0x08,0x28,0x29,0x09,0x09,0x29,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x02,0x48,0x00,0x8f,0x20,0x70,0x68,0xa4,0x23,0x20,0x00 -+// 16314 㾺 ; -+,0x00,0x00,0x00,0x08,0x08,0x29,0x09,0x09,0x19,0x69,0x09,0x08,0x10,0x12,0x04,0x00,0x00,0x40,0x20,0x00,0x04,0x20,0x2c,0x20,0x2c,0x20,0x22,0x02,0xaa,0x82,0x04,0x00 -+// 16315 㾻 ; -+,0x00,0x00,0x00,0x08,0x28,0x2a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x02,0x00,0x00,0x40,0x20,0x00,0x08,0x90,0x10,0x23,0x08,0x88,0x09,0x88,0x2a,0x09,0x18,0x00 -+// 16316 㾼 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x09,0x08,0x19,0x29,0x09,0x09,0x01,0x11,0x02,0x00,0x00,0x40,0x20,0x00,0x04,0x04,0x24,0x04,0x24,0x02,0x04,0x04,0x62,0x00,0x7f,0x00 -+// 16317 㾽 ; -+,0x00,0x00,0x00,0x08,0x28,0x29,0x09,0x08,0x09,0x09,0x09,0x09,0x11,0x11,0x02,0x00,0x00,0x40,0x20,0x00,0x00,0x14,0x00,0x24,0x00,0x22,0x02,0x02,0x22,0x00,0x7f,0x00 -+// 16318 㾾 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x11,0x12,0x00,0x00,0x00,0x40,0x20,0x00,0x88,0x02,0x50,0x54,0x54,0x54,0x54,0xd0,0x50,0x56,0x53,0x00 -+// 16319 㾿 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x12,0x13,0x02,0x00,0x00,0x40,0x20,0x00,0x80,0xa0,0x2a,0x2a,0x28,0x28,0x08,0x09,0x4a,0xa8,0x08,0x00 -+// 16320 㿀 ; -+,0x00,0x00,0x00,0x08,0x08,0x29,0x09,0x09,0x09,0x49,0x09,0x01,0x11,0x06,0x00,0x00,0x00,0x40,0x20,0x00,0x10,0x94,0x14,0x04,0x04,0x64,0x04,0x24,0x24,0x04,0x00,0x00 -+// 16321 㿁 ; -+,0x00,0x00,0x00,0x08,0x28,0x29,0x09,0x09,0x09,0x08,0x08,0x09,0x10,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x40,0x04,0x04,0x04,0x24,0x61,0x80,0x24,0x2f,0x20,0x20,0x20 -+// 16322 㿂 ; -+,0x00,0x00,0x00,0x08,0x28,0x0a,0x0a,0x0a,0x18,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x88,0xa8,0xa9,0xb2,0x12,0x82,0x84,0x8c,0x8c,0xae,0x03,0x00 -+// 16323 㿃 ; -+,0x00,0x00,0x00,0x08,0x28,0x09,0x09,0x08,0x18,0x0a,0x08,0x09,0x01,0x11,0x00,0x00,0x00,0x40,0x20,0x00,0x50,0x5e,0x50,0x56,0x00,0x22,0x24,0x24,0x24,0x24,0x20,0x00 -+// 16324 㿄 ; -+,0x00,0x00,0x00,0x08,0x28,0x2a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x13,0x12,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0x14,0x90,0x50,0x03,0x82,0x82,0xc4,0x2c,0x0e,0x13,0x00 -+// 16325 㿅 ; -+,0x00,0x00,0x00,0x08,0x29,0x29,0x0a,0x08,0x29,0x4b,0x09,0x01,0x11,0x01,0x01,0x00,0x00,0x40,0x20,0x00,0x08,0x2a,0x28,0xa8,0x00,0x08,0x2a,0x48,0x68,0x18,0x0f,0x00 -+// 16326 㿆 ; -+,0x00,0x00,0x00,0x08,0x28,0x18,0x08,0x08,0x28,0x08,0x08,0x08,0x11,0x00,0x00,0x00,0x00,0x40,0x22,0x08,0x30,0x22,0x60,0xa4,0x22,0x20,0x60,0x82,0x88,0x84,0xc3,0x00 -+// 16327 㿇 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x09,0x08,0x1b,0x28,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x40,0x20,0x00,0x42,0x42,0x4a,0x46,0x52,0x20,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16328 㿈 ; -+,0x00,0x00,0x00,0x08,0x29,0x29,0x08,0x0a,0x28,0x08,0x0a,0x08,0x11,0x02,0x00,0x00,0x00,0x40,0x20,0x00,0x10,0x04,0xa0,0xa0,0x20,0x2c,0xa0,0xac,0x20,0x20,0x20,0x00 -+// 16329 㿉 ; -+,0x00,0x00,0x00,0x08,0x28,0x18,0x08,0x08,0x28,0x08,0x08,0x08,0x10,0x00,0x01,0x00,0x00,0x40,0x62,0x00,0x24,0x24,0x24,0x21,0x04,0x04,0x84,0x84,0x84,0x00,0x84,0x00 -+// 16330 㿊 ; -+,0x00,0x00,0x00,0x08,0x28,0x1a,0x0b,0x09,0x28,0x0a,0x09,0x09,0x11,0x01,0x01,0x00,0x00,0x40,0x22,0x00,0x42,0x18,0xd8,0x8c,0xd4,0x87,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16331 㿋 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x2a,0x0a,0x08,0x00,0x10,0x01,0x00,0x00,0x00,0x40,0x22,0x00,0x84,0x84,0x80,0x40,0x52,0x52,0x20,0x70,0xa8,0x26,0x20,0x00 -+// 16332 㿌 ; -+,0x00,0x00,0x00,0x08,0x08,0x18,0x08,0x08,0x18,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x40,0x22,0x20,0x60,0x50,0x8c,0x03,0x00,0x54,0x50,0x54,0x88,0x94,0x42,0x00 -+// 16333 㿍 ; -+,0x00,0x00,0x00,0x08,0x28,0x09,0x08,0x0a,0x1a,0x2a,0x0a,0x0a,0x02,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x80,0x48,0x08,0xc2,0x80,0xd4,0x94,0xc4,0x84,0x04,0x44,0x00 -+// 16334 㿎 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x08,0x08,0x39,0x09,0x09,0x09,0x11,0x00,0x01,0x00,0x00,0x40,0x02,0x20,0x20,0x20,0xa8,0x88,0x04,0x04,0x04,0x04,0x04,0x80,0x04,0x00 -+// 16335 㿏 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0x4c,0x4c,0x80,0x84,0x84,0x00,0x00,0x20,0x24,0x21,0x20,0x00 -+// 16336 㿐 ; -+,0x00,0x00,0x00,0x08,0x29,0x29,0x09,0x09,0x29,0x09,0x0b,0x09,0x15,0x01,0x00,0x00,0x00,0x40,0x22,0x00,0x08,0x16,0x14,0x08,0x08,0x03,0x4a,0x04,0x00,0x80,0x7e,0x00 -+// 16337 㿑 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x09,0x09,0x18,0x29,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x40,0x20,0x00,0x42,0x42,0x4a,0x5a,0x00,0x02,0x20,0x20,0x24,0x20,0x02,0x00 -+// 16338 㿒 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x08,0x08,0x18,0x28,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x40,0x20,0x20,0x22,0x20,0x00,0x12,0x20,0x00,0x00,0x44,0x44,0x54,0x04,0x00 -+// 16339 㿓 ; -+,0x00,0x00,0x00,0x08,0x28,0x28,0x09,0x08,0x28,0x08,0x08,0x08,0x11,0x02,0x04,0x00,0x00,0x40,0x22,0x00,0x22,0x20,0x24,0x4a,0x8e,0x88,0x88,0x20,0x24,0xa0,0x3e,0x00 -+// 16340 㿔 ; -+,0x00,0x00,0x00,0x08,0x29,0x09,0x09,0x09,0x18,0x28,0x0d,0x0d,0x05,0x15,0x04,0x00,0x00,0x40,0x20,0x00,0x04,0x24,0x24,0x24,0x04,0x40,0x52,0x52,0x52,0x40,0x52,0x00 -+// 16341 㿕 ; -+,0x00,0x00,0x00,0x08,0x2a,0x0a,0x0a,0x0a,0x1a,0x2a,0x0a,0x0a,0x02,0x12,0x02,0x00,0x00,0x40,0x20,0x00,0x42,0x42,0x42,0x52,0x42,0x12,0x02,0x8a,0x8a,0x8a,0x06,0x00 -+// 16342 㿖 ; -+,0x00,0x00,0x00,0x08,0x28,0x0a,0x0a,0x0a,0x1a,0x2a,0x0a,0x0a,0x01,0x15,0x01,0x00,0x00,0x40,0x20,0x00,0x08,0x02,0x08,0x64,0x04,0xa4,0xa4,0x00,0x02,0x02,0x43,0x00 -+// 16343 㿗 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x09,0x09,0x18,0x28,0x0a,0x0a,0x02,0x10,0x00,0x00,0x00,0x40,0x20,0x00,0xc1,0x08,0xc8,0x92,0x52,0x02,0x92,0x02,0x40,0x92,0x21,0x00 -+// 16344 㿘 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x08,0x08,0x18,0x2a,0x08,0x08,0x01,0x11,0x01,0x00,0x00,0x40,0x20,0x88,0x88,0x88,0x88,0x02,0x02,0x02,0x08,0x08,0x04,0x04,0x04,0x00 -+// 16345 㿙 ; -+,0x00,0x00,0x00,0x08,0x29,0x19,0x09,0x08,0x28,0x08,0x08,0x08,0x10,0x00,0x01,0x00,0x00,0x40,0x20,0x00,0x04,0x54,0x14,0x00,0xdd,0x5c,0x00,0x61,0x40,0x88,0x07,0x00 -+// 16346 㿚 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x08,0x08,0x19,0x28,0x0b,0x08,0x02,0x10,0x05,0x00,0x00,0x40,0x20,0x00,0x02,0x42,0x52,0x10,0x14,0xa1,0x20,0x24,0x6d,0x20,0x21,0x00 -+// 16347 㿛 ; -+,0x00,0x00,0x00,0x08,0x28,0x08,0x08,0x08,0x18,0x2a,0x0a,0x0a,0x02,0x14,0x01,0x00,0x00,0x40,0x20,0x00,0x42,0x42,0x52,0x02,0x22,0x48,0x4a,0x02,0x14,0x10,0x8f,0x00 -+// 16348 㿜 ; -+,0x00,0x00,0x00,0x08,0x29,0x09,0x09,0x08,0x18,0x28,0x0b,0x08,0x00,0x12,0x00,0x00,0x00,0x40,0x22,0x40,0x04,0x04,0x04,0x60,0x9c,0x02,0x68,0x00,0x02,0x92,0x92,0x00 -+// 16349 㿝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x06,0x08,0x08,0x00,0x00,0x80,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x80,0x80,0x00,0x08,0x04,0x04,0x00 -+// 16350 㿞 ; -+,0x00,0x00,0x08,0x00,0x22,0x22,0x22,0x22,0x32,0x22,0x22,0x22,0x32,0x20,0x00,0x00,0x00,0x00,0x0c,0x30,0x20,0x22,0x30,0x20,0x21,0x30,0x20,0x20,0x20,0x21,0x1f,0x00 -+// 16351 㿟 ; -+,0x00,0x00,0x00,0x08,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x10,0x10,0x00,0x22,0x02,0x02,0x02,0x42,0x02,0x02,0x02,0x02,0x42,0x82,0x00 -+// 16352 㿠 ; -+,0x00,0x00,0x08,0x00,0x22,0x22,0x22,0x22,0x32,0x22,0x22,0x22,0x32,0x20,0x01,0x00,0x00,0x00,0x00,0x06,0x84,0x40,0x00,0x5a,0x48,0x48,0x48,0x48,0x08,0x89,0x0f,0x00 -+// 16353 㿡 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x01,0x09,0x05,0x01,0x18,0x02,0x04,0x00,0x00,0x80,0x04,0x04,0x04,0x04,0x04,0x04,0x20,0x0c,0x20,0x20,0x0c,0x01,0x3f,0x00 -+// 16354 㿢 ; -+,0x00,0x00,0x13,0x10,0x12,0x10,0x10,0x10,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x02,0x86,0x80,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16355 㿣 ; -+,0x00,0x00,0x08,0x00,0x22,0x22,0x22,0x22,0x32,0x22,0x22,0x22,0x32,0x20,0x00,0x00,0x00,0x00,0x86,0x80,0x80,0x80,0x00,0x40,0x91,0x11,0xb1,0x89,0x81,0x80,0x06,0x00 -+// 16356 㿤 ; -+,0x00,0x00,0x08,0x00,0x22,0x22,0x22,0x22,0x36,0x22,0x23,0x22,0x36,0x20,0x00,0x00,0x00,0x10,0x10,0x12,0x00,0x20,0x20,0x48,0x44,0xc6,0x44,0x44,0x44,0x44,0x44,0x00 -+// 16357 㿥 ; -+,0x00,0x00,0x08,0x00,0x22,0x22,0x22,0x22,0x32,0x22,0x22,0x22,0x32,0x20,0x00,0x00,0x00,0x10,0x10,0xb2,0x20,0x00,0x48,0x58,0x80,0x5a,0x00,0x5a,0x00,0x00,0x40,0x00 -+// 16358 㿦 ; -+,0x00,0x00,0x06,0x02,0x00,0x12,0x10,0x10,0x10,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa4,0x20,0x06,0x80,0x84,0x18,0x18,0x02,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16359 㿧 ; -+,0x00,0x00,0x08,0x00,0x22,0x22,0x22,0x22,0x36,0x22,0x22,0x22,0x22,0x20,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x03,0x10,0x12,0x00,0x00,0x02,0xa2,0xaa,0xa2,0x06,0x00 -+// 16360 㿨 ; -+,0x00,0x00,0x09,0x01,0x27,0x21,0x21,0x21,0x25,0x21,0x21,0x21,0x27,0x22,0x00,0x00,0x00,0x00,0x02,0x02,0x24,0x24,0x24,0x7e,0x05,0x00,0x00,0x42,0x40,0x40,0x51,0x00 -+// 16361 㿩 ; -+,0x00,0x00,0x08,0x00,0x25,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x01,0x00,0x00,0x00,0x54,0x10,0x01,0x44,0x44,0x02,0x16,0xba,0x10,0x10,0x00,0x00,0x29,0x00 -+// 16362 㿪 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x14,0x15,0x11,0x10,0x12,0x02,0x26,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x04,0x24,0x24,0x34,0x3c,0x40,0x42,0x83,0x01,0x00 -+// 16363 㿫 ; -+,0x00,0x00,0x08,0x09,0x08,0x08,0x0c,0x00,0x04,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x44,0x48,0x40,0x42,0x3e,0x40,0x42,0x40,0x4c,0x08,0x10,0x60,0x1e,0x00 -+// 16364 㿬 ; -+,0x00,0x00,0x04,0x04,0x15,0x14,0x14,0x14,0x11,0x11,0x12,0x02,0x06,0x21,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x4a,0x40,0x40,0x40,0x40,0x40,0x41,0x3f,0x00 -+// 16365 㿭 ; -+,0x00,0x00,0x04,0x10,0x10,0x11,0x14,0x14,0x14,0x06,0x04,0x04,0x24,0x05,0x04,0x00,0x00,0x10,0x10,0x11,0x53,0x10,0x10,0x50,0x66,0x04,0x84,0x98,0x98,0x3c,0x42,0x00 -+// 16366 㿮 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x3b,0x08,0x08,0x0a,0x12,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x49,0x48,0x48,0x4a,0x82,0x00,0x94,0x8c,0x88,0x14,0x03,0x00 -+// 16367 㿯 ; -+,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x00,0x10,0x01,0x00,0x00,0x80,0x00,0x10,0x07,0x18,0x00,0x10,0x40,0xc4,0x40,0x18,0x20,0xe0,0x1e,0x00 -+// 16368 㿰 ; -+,0x00,0x00,0x04,0x05,0x00,0x09,0x10,0x02,0x02,0x04,0x04,0x0a,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x49,0x48,0x48,0x4a,0x42,0x42,0x14,0x88,0x8c,0x06,0x01,0x00 -+// 16369 㿱 ; -+,0x00,0x04,0x05,0x04,0x06,0x1c,0x04,0x0c,0x00,0x08,0x08,0x08,0x08,0x00,0x11,0x00,0x00,0x06,0x40,0x40,0x48,0x40,0x88,0x08,0x40,0x42,0x40,0x0c,0x18,0x60,0x9e,0x00 -+// 16370 㿲 ; -+,0x00,0x04,0x04,0x0c,0x08,0x02,0x00,0x01,0x00,0x14,0x14,0x14,0x00,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0x4b,0x48,0x48,0x48,0x42,0x44,0x44,0x08,0x08,0x16,0x03,0x00 -+// 16371 㿳 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x03,0x22,0x22,0x24,0x26,0x08,0x00,0x00,0x00,0x00,0x4b,0x40,0x00,0x52,0x4a,0x00,0x43,0x42,0x42,0x5a,0x42,0x42,0x42,0x00 -+// 16372 㿴 ; -+,0x00,0x04,0x04,0x0c,0x0a,0x01,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x08,0x08,0x08,0x4b,0x48,0xc8,0x48,0x42,0x42,0x44,0x4c,0x88,0x94,0x03,0x00 -+// 16373 㿵 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x14,0x14,0x11,0x10,0x12,0x06,0x06,0x29,0x00,0x00,0x00,0x00,0x18,0x10,0x53,0x50,0x50,0x50,0x42,0x10,0x11,0x10,0x24,0x02,0x01,0x00 -+// 16374 㿶 ; -+,0x00,0x00,0x04,0x00,0x09,0x0a,0x10,0x24,0x04,0x08,0x09,0x09,0x01,0x11,0x02,0x00,0x00,0x08,0x08,0x08,0x4b,0x48,0xc8,0x48,0xc2,0x42,0x44,0x4c,0x08,0x94,0x03,0x00 -+// 16375 㿷 ; -+,0x00,0x01,0x08,0x0a,0x04,0x04,0x04,0x00,0x08,0x08,0x0c,0x10,0x00,0x04,0x00,0x00,0x00,0x08,0x08,0x88,0x4b,0x48,0x48,0x48,0x42,0x42,0x44,0x4c,0x08,0x94,0x03,0x00 -+// 16376 㿸 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x14,0x15,0x11,0x10,0x12,0x02,0x26,0x29,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x01,0x81,0x81,0x80,0x02,0x04,0x08,0x18,0x47,0x00 -+// 16377 㿹 ; -+,0x00,0x04,0x04,0x15,0x14,0x14,0x14,0x16,0x12,0x12,0x06,0x06,0x06,0x08,0x01,0x00,0x00,0x00,0x08,0x88,0x08,0x00,0xd2,0x0e,0x08,0x0a,0x08,0x08,0x08,0x88,0x1f,0x00 -+// 16378 㿺 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x0a,0x0a,0x0a,0x08,0x10,0x0c,0x07,0x10,0x04,0x00,0x00,0x00,0x88,0x08,0x29,0x28,0x28,0x28,0xa2,0x22,0xa0,0x0c,0x4c,0xc2,0x03,0x00 -+// 16379 㿻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x08,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16380 㿼 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x14,0x10,0x12,0x10,0x10,0x10,0x10,0x00,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16381 㿽 ; -+,0x00,0x00,0x02,0x04,0x09,0x01,0x01,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x10,0x08,0x16,0x00,0x18,0x10,0x10,0x20,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16382 㿾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x44,0x04,0x00,0x40,0x40,0x40,0x40,0x80,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16383 㿿 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x09,0x10,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x06,0x00,0x00,0x40,0x00,0x80,0x7e,0x04,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16384 䀀 ; -+,0x00,0x00,0x04,0x00,0x00,0x04,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x84,0x84,0x84,0x8c,0x80,0x80,0xfe,0x00,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16385 䀁 ; -+,0x00,0x00,0x01,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x80,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x10,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16386 䀂 ; -+,0x00,0x00,0x00,0x10,0x11,0x03,0x02,0x00,0x01,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x80,0x00,0x86,0x00,0x10,0x20,0xe0,0x08,0x04,0x2c,0x24,0x24,0x24,0x25,0x00 -+// 16387 䀃 ; -+,0x00,0x00,0x01,0x03,0x04,0x02,0x00,0x02,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x80,0x00,0xc0,0x60,0xa0,0x26,0x40,0x80,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16388 䀄 ; -+,0x00,0x00,0x00,0x10,0x00,0x02,0x0a,0x03,0x07,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x40,0x02,0x90,0x30,0x42,0x82,0xf8,0x00,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16389 䀅 ; -+,0x00,0x00,0x04,0x02,0x02,0x04,0x05,0x04,0x04,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x10,0x10,0x14,0x10,0x10,0x10,0x02,0x00,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16390 䀆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0xcc,0xcf,0x00,0x00,0x80,0x88,0x10,0x1e,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16391 䀇 ; -+,0x00,0x00,0x04,0x04,0x04,0x15,0x11,0x11,0x11,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x20,0x50,0x00,0x10,0x42,0x42,0x42,0x00,0x24,0x24,0x24,0x24,0x27,0x00 -+// 16392 䀈 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x11,0x18,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x10,0x50,0x52,0x18,0x08,0x29,0x0f,0x00,0x2c,0x24,0x24,0x24,0x25,0x00 -+// 16393 䀉 ; -+,0x00,0x00,0x01,0x03,0x06,0x02,0x00,0x02,0x02,0x00,0x08,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x80,0x02,0x10,0x13,0x04,0x24,0x24,0x04,0x04,0x24,0x24,0x24,0x25,0x00 -+// 16394 䀊 ; -+,0x00,0x00,0x08,0x00,0x11,0x00,0x08,0x10,0x10,0x10,0x01,0x09,0x09,0x09,0x09,0x00,0x00,0x02,0x0a,0x42,0x32,0x40,0x26,0x30,0x08,0x60,0x04,0x24,0x24,0x24,0x27,0x00 -+// 16395 䀋 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x18,0x00,0x08,0x09,0x09,0x09,0x09,0x00,0x00,0x40,0x50,0x90,0x12,0x82,0x9a,0x9e,0x8a,0x82,0x04,0x24,0x24,0x24,0x27,0x00 -+// 16396 䀌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x0a,0x12,0x12,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x80,0x88,0x88,0x80,0xc1,0x82,0x80,0xa4,0xa4,0x04,0x24,0x24,0x24,0x25,0x00 -+// 16397 䀍 ; -+,0x00,0x00,0x01,0x0a,0x00,0x11,0x11,0x11,0x04,0x04,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x20,0x24,0x1c,0x08,0x00,0x02,0x02,0x22,0x24,0x06,0x24,0x24,0x24,0x25,0x00 -+// 16398 䀎 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x01,0x10,0x20,0x20,0x20,0x62,0x02,0x02,0x02,0x02,0x00,0x04,0x1c,0x00 -+// 16399 䀏 ; -+,0x00,0x06,0x04,0x0c,0x08,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x12,0x02,0x02,0x02,0x22,0x02,0x02,0x22,0x04,0x0c,0x00 -+// 16400 䀐 ; -+,0x00,0x00,0x13,0x00,0x00,0x12,0x00,0x00,0x12,0x12,0x00,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x0c,0x18,0x20,0x02,0x04,0x08,0x10,0x42,0x02,0x04,0x08,0x30,0x40,0x00 -+// 16401 䀑 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x20,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x14,0x44,0x04,0x28,0x28,0x10,0x10,0x28,0x06,0x03,0x00 -+// 16402 䀒 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x06,0x38,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16403 䀓 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x01,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x24,0x24,0x24,0x64,0x64,0x54,0x44,0x80,0x03,0x01,0x00 -+// 16404 䀔 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x92,0x92,0x22,0x22,0x02,0x42,0x8e,0x04,0x00 -+// 16405 䀕 ; -+,0x00,0x00,0x02,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x42,0x82,0x82,0x92,0x12,0x12,0x12,0x12,0x62,0x00 -+// 16406 䀖 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x02,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x48,0x48,0x04,0x06,0x02,0x00 -+// 16407 䀗 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x25,0x20,0x20,0x28,0x40,0x86,0x03,0x00 -+// 16408 䀘 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x02,0x24,0x04,0x04,0x04,0x65,0x44,0x44,0x44,0x44,0x84,0x04,0x04,0x00 -+// 16409 䀙 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x02,0x02,0x16,0x02,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0xc9,0x09,0x09,0x09,0x41,0xd0,0x00,0x22,0x06,0x00 -+// 16410 䀚 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x42,0x42,0x42,0x42,0x42,0x44,0x40,0x00 -+// 16411 䀛 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x40,0x55,0x05,0xa5,0x21,0x09,0x49,0x11,0x11,0x20,0x42,0x06,0x00 -+// 16412 䀜 ; -+,0x00,0x02,0x06,0x08,0x01,0x00,0x00,0x01,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x92,0x92,0x22,0x42,0x84,0x0c,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16413 䀝 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x49,0x5a,0x48,0x48,0x48,0x48,0x48,0x48,0x69,0x4f,0x00 -+// 16414 䀞 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x40,0x20,0x01,0x0c,0x00,0x00,0x00,0x08,0x00 -+// 16415 䀟 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x20,0x28,0x2a,0x2a,0x2a,0xaa,0xa8,0xa8,0xab,0x29,0x29,0x4a,0x4a,0x08,0x00 -+// 16416 䀠 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x00 -+// 16417 䀡 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x92,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16418 䀢 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x10,0x90,0x10,0x10,0x30,0x20,0x28,0x00,0x44,0x02,0x01,0x00 -+// 16419 䀣 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x03,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x12,0x16,0x24,0x24,0x24,0x20,0x29,0xa9,0xb0,0x20,0x60,0x22,0x3c,0x00 -+// 16420 䀤 ; -+,0x00,0x02,0x06,0x00,0x04,0x05,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x50,0x90,0x12,0x10,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16421 䀥 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x04,0x04,0x14,0x20,0x00,0x00,0x00,0x00,0x0e,0x80,0x90,0x90,0x90,0x90,0x90,0x10,0x50,0x92,0x11,0x11,0x30,0x00 -+// 16422 䀦 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x42,0x02,0x02,0x02,0x42,0x02,0x00 -+// 16423 䀧 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x68,0x08,0x08,0x08,0x49,0x00,0x40,0x86,0x02,0x01,0x00 -+// 16424 䀨 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x1e,0x10,0x10,0x10,0x10,0x10,0x10,0x92,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16425 䀩 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x40,0x46,0x04,0x88,0x18,0x18,0x06,0x02,0x46,0x40,0x40,0x40,0x44,0x00 -+// 16426 䀪 ; -+,0x00,0x00,0x04,0x00,0x00,0x14,0x00,0x00,0x04,0x14,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x40,0x41,0x00,0x40,0x40,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x8c,0x00 -+// 16427 䀫 ; -+,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x28,0x20,0x44,0x83,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x00 -+// 16428 䀬 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x14,0x02,0x02,0x16,0x20,0x00,0x00,0x00,0x10,0x30,0x20,0x08,0x44,0x86,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x11,0x00 -+// 16429 䀭 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x20,0x00,0x00,0x00,0x00,0x10,0x13,0x20,0x24,0x44,0xe8,0x12,0x36,0x44,0x88,0x14,0x22,0xc1,0x00 -+// 16430 䀮 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x20,0x00,0x00,0x00,0x00,0x10,0x12,0x00,0x00,0x80,0x80,0x00,0x54,0x14,0x94,0x94,0x14,0x03,0x00 -+// 16431 䀯 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x20,0x00,0x00,0x00,0x10,0x14,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x96,0x00 -+// 16432 䀰 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x20,0x00,0x00,0x00,0x00,0x64,0x42,0x91,0x20,0x20,0x44,0x82,0x03,0x44,0x44,0x44,0x44,0x44,0x00 -+// 16433 䀱 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x14,0x20,0x00,0x00,0x00,0x20,0x20,0x44,0x0c,0x18,0x0c,0x03,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10 -+// 16434 䀲 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x14,0x04,0x04,0x15,0x20,0x00,0x00,0x00,0x40,0x40,0x80,0x80,0x82,0x82,0x92,0x87,0x80,0x10,0x14,0x05,0x04,0x0c,0x00 -+// 16435 䀳 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x21,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x12,0x92,0x92,0x92,0xb0,0x10,0x54,0x92,0x13,0x10,0x00 -+// 16436 䀴 ; -+,0x00,0x00,0x02,0x00,0x00,0x10,0x00,0x00,0x00,0x16,0x02,0x02,0x16,0x20,0x00,0x00,0x00,0x00,0x00,0x42,0x92,0x84,0x20,0x94,0x92,0x00,0x12,0x10,0x10,0x10,0x11,0x00 -+// 16437 䀵 ; -+,0x00,0x00,0x04,0x00,0x00,0x04,0x14,0x00,0x00,0x14,0x00,0x00,0x14,0x00,0x01,0x00,0x00,0x20,0x20,0x04,0x86,0x02,0x80,0x84,0x20,0x20,0x22,0x20,0x48,0x04,0x03,0x00 -+// 16438 䀶 ; -+,0x00,0x00,0x04,0x00,0x00,0x14,0x10,0x00,0x00,0x14,0x00,0x00,0x14,0x00,0x01,0x00,0x00,0x20,0x20,0x04,0x04,0x84,0x04,0x04,0x84,0x00,0x06,0x10,0x08,0x04,0x83,0x00 -+// 16439 䀷 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x21,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x0d,0x01,0x01,0x01,0x89,0x89,0x09,0x29,0xb0,0x02,0x00 -+// 16440 䀸 ; -+,0x00,0x04,0x04,0x05,0x04,0x06,0x34,0x04,0x04,0x00,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x40,0x40,0x41,0x40,0x40,0x80,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16441 䀹 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x92,0x94,0x56,0x71,0x20,0x28,0x40,0x84,0x03,0x00 -+// 16442 䀺 ; -+,0x00,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x44,0x48,0x28,0x10,0x2c,0x82,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16443 䀻 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x10,0x12,0x92,0x92,0x92,0x92,0x82,0x00,0x20,0x40,0x46,0x04,0x04,0x1c,0x00 -+// 16444 䀼 ; -+,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0x25,0x25,0x24,0x26,0x00,0x00,0x00,0x00,0x82,0x80,0x84,0x80,0x80,0x82,0x00,0x02,0x08,0x08,0x0c,0x26,0x40,0x00 -+// 16445 䀽 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x25,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x04,0x44,0x84,0x84,0x14,0x54,0x54,0x54,0x14,0x94,0xc0,0x20,0x0f,0x00 -+// 16446 䀾 ; -+,0x00,0x00,0x04,0x04,0x08,0x18,0x08,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x82,0x04,0x94,0x88,0x94,0x82,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16447 䀿 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x27,0x24,0x24,0x24,0x00,0x01,0x00,0x00,0x00,0x86,0x90,0x90,0x90,0x91,0x92,0x92,0x92,0x92,0x82,0xa2,0xa2,0x82,0x00 -+// 16448 䁀 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x04,0x04,0x04,0x04,0x1c,0x04,0x04,0x0c,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x04,0x40,0x40,0x48,0x08,0x08,0x88,0x08,0x00 -+// 16449 䁁 ; -+,0x00,0x00,0x04,0x00,0x00,0x04,0x14,0x00,0x00,0x14,0x00,0x00,0x14,0x01,0x00,0x00,0x00,0x20,0x10,0x11,0x00,0x00,0x82,0x82,0x82,0x90,0x10,0xd0,0x92,0x11,0x31,0x00 -+// 16450 䁂 ; -+,0x00,0x00,0x00,0x14,0x00,0x10,0x00,0x14,0x00,0x04,0x04,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x02,0x04,0x84,0x98,0x18,0xa4,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 16451 䁃 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x14,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x16,0x10,0x11,0x30,0x42,0xc0,0x48,0x44,0x62,0x41,0x00 -+// 16452 䁄 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x04,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16453 䁅 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x14,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x11,0x10,0x10,0x30,0x00,0xaa,0xa0,0xa0,0xa0,0xaf,0x00 -+// 16454 䁆 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x02,0x14,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x20,0x20,0x60,0x40,0x08,0x84,0xb7,0x84,0xa4,0x84,0xa4,0x84,0x00,0x13,0x00 -+// 16455 䁇 ; -+,0x00,0x00,0x00,0x10,0x02,0x0a,0x0b,0x03,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x42,0x02,0x30,0x40,0x82,0xf8,0x00,0x0c,0x08,0x00,0x08,0x00,0x08,0x00 -+// 16456 䁈 ; -+,0x00,0x00,0x02,0x08,0x00,0x08,0x10,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x00,0xa4,0x84,0x98,0x18,0x27,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 16457 䁉 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x00,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x14,0x92,0x94,0x9c,0x18,0x06,0x0c,0x04,0x0c,0x04,0x04,0x0c,0x04,0x00 -+// 16458 䁊 ; -+,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x22,0x22,0x22,0x20,0x00,0x00,0x00,0x00,0x86,0x14,0x08,0x10,0x6e,0x83,0x86,0x80,0x84,0x80,0x80,0x84,0x80,0x00 -+// 16459 䁋 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x16,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x84,0xb7,0x84,0x84,0x94,0x80,0x90,0x10,0x38,0x38,0x54,0x92,0x10,0x00 -+// 16460 䁌 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x02,0x20,0x00,0x00,0x00,0x00,0x93,0x90,0x92,0x90,0x93,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x86,0x00 -+// 16461 䁍 ; -+,0x00,0x00,0x24,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x26,0x22,0x00,0x00,0x00,0x08,0x0a,0x08,0x08,0x08,0x09,0x0a,0x6a,0x4a,0x44,0x44,0x0c,0x13,0x01,0x00 -+// 16462 䁎 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x17,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x44,0x44,0x00,0x01,0x00,0x12,0x10,0x10,0x10,0x30,0x00 -+// 16463 䁏 ; -+,0x00,0x00,0x02,0x02,0x03,0x03,0x03,0x03,0x02,0x16,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x28,0x08,0x2a,0x0a,0x0a,0x02,0x20,0x21,0x48,0x88,0x08,0x38,0x42,0x00 -+// 16464 䁐 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x04,0x20,0x01,0x00,0x00,0x40,0x40,0x4f,0x40,0x10,0x32,0x82,0x82,0x82,0xb3,0x20,0x48,0x86,0x03,0x00 -+// 16465 䁑 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x02,0x02,0x42,0x02,0x42,0x00,0x21,0x40,0x65,0x29,0x48,0x92,0x22,0x06,0x00 -+// 16466 䁒 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x44,0x04,0x44,0x00,0x01,0x04,0x44,0x04,0x44,0x05,0x06,0x04,0x04,0x00 -+// 16467 䁓 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x16,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x90,0x28,0x80,0x42,0x44,0xa2,0x25,0x44,0x88,0x10,0x2c,0x03,0x00 -+// 16468 䁔 ; -+,0x00,0x00,0x04,0x20,0x20,0x24,0x24,0x20,0x22,0x24,0x20,0x20,0x24,0x20,0x00,0x00,0x00,0x06,0x00,0x04,0x94,0x00,0x20,0x00,0x40,0x44,0x44,0x88,0x18,0x18,0x47,0x00 -+// 16469 䁕 ; -+,0x00,0x00,0x02,0x20,0x20,0x20,0x20,0x20,0x20,0x24,0x20,0x20,0x24,0x20,0x00,0x00,0x00,0x00,0x82,0x82,0xb2,0x90,0x90,0x88,0x87,0x83,0x86,0x80,0x84,0x80,0x86,0x00 -+// 16470 䁖 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x84,0x40,0x32,0x20,0x44,0x83,0x20,0x20,0x4c,0x48,0x50,0x3c,0x42,0x00 -+// 16471 䁗 ; -+,0x00,0x00,0x04,0x20,0x20,0x24,0x24,0x20,0x20,0x24,0x20,0x20,0x24,0x20,0x00,0x00,0x00,0x00,0x10,0x92,0x92,0x00,0x02,0x00,0x82,0x82,0x82,0x00,0x44,0x00,0x01,0x00 -+// 16472 䁘 ; -+,0x00,0x00,0x04,0x20,0x20,0x24,0x24,0x20,0x21,0x26,0x20,0x20,0x24,0x20,0x00,0x00,0x00,0x00,0x1c,0x02,0x92,0x14,0x40,0xc2,0x10,0x11,0x10,0x12,0x12,0x12,0x82,0x00 -+// 16473 䁙 ; -+,0x00,0x00,0x04,0x20,0x20,0x24,0x24,0x20,0x21,0x24,0x20,0x20,0x24,0x20,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x00,0x10,0x22,0x20,0x41,0x48,0x18,0x26,0x02,0x00 -+// 16474 䁚 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0x44,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x80,0x40,0x03,0x00 -+// 16475 䁛 ; -+,0x00,0x00,0x04,0x20,0x20,0x24,0x24,0x20,0x20,0x24,0x20,0x20,0x24,0x21,0x00,0x00,0x00,0x20,0x00,0xa6,0xa2,0xb6,0xa2,0xa2,0xb4,0x30,0x34,0x50,0x9e,0x11,0x1f,0x00 -+// 16476 䁜 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x06,0x20,0x01,0x00,0x00,0x02,0x82,0x82,0x82,0x82,0x00,0x10,0x54,0x11,0x48,0x48,0x48,0x89,0x8f,0x00 -+// 16477 䁝 ; -+,0x00,0x02,0x00,0x0a,0x04,0x01,0x00,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x94,0x50,0x50,0x24,0x04,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 16478 䁞 ; -+,0x00,0x02,0x06,0x09,0x04,0x0a,0x01,0x00,0x02,0x02,0x04,0x02,0x02,0x00,0x02,0x00,0x00,0x00,0x10,0x24,0x08,0x18,0x06,0x03,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16479 䁟 ; -+,0x00,0x00,0x00,0x22,0x20,0x20,0x24,0x20,0x20,0x24,0x20,0x20,0x20,0x26,0x00,0x00,0x00,0x04,0x24,0x20,0x10,0x00,0x20,0x20,0x21,0x40,0x42,0x88,0x08,0x08,0x01,0x00 -+// 16480 䁠 ; -+,0x00,0x00,0x06,0x22,0x20,0x24,0x20,0x20,0x20,0x24,0x20,0x20,0x25,0x22,0x00,0x00,0x00,0x08,0x48,0x41,0x40,0x50,0x52,0x53,0x52,0x50,0xd8,0xc8,0x44,0x42,0x50,0x00 -+// 16481 䁡 ; -+,0x00,0x00,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x25,0x01,0x00,0x00,0x00,0x2b,0x28,0x28,0x28,0x28,0x00,0x10,0x10,0x20,0x04,0x00,0x00,0x02,0x00 -+// 16482 䁢 ; -+,0x00,0x00,0x24,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x24,0x26,0x22,0x00,0x00,0x00,0x08,0x88,0x11,0x10,0x05,0x44,0x44,0x55,0x54,0x54,0x54,0x4c,0xe4,0x03,0x00 -+// 16483 䁣 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x06,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x82,0x92,0x92,0x00,0x31,0x04,0x05,0x44,0x04,0x0c,0x00 -+// 16484 䁤 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x10,0x04,0x00,0x28,0x93,0x10,0x10,0x10,0x2c,0x00,0x28,0x00,0x02,0x00 -+// 16485 䁥 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x02,0x01,0x00,0x00,0x00,0x80,0x04,0xa4,0xa4,0x00,0x1a,0x10,0x20,0x22,0xa0,0x24,0x00,0x81,0x00 -+// 16486 䁦 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x13,0x03,0x03,0x13,0x02,0x00,0x00,0x00,0x00,0x14,0x00,0xa3,0x04,0x30,0x12,0x00,0x44,0x44,0x44,0x44,0x40,0x45,0x00 -+// 16487 䁧 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x40,0x44,0x40,0x00,0x32,0x02,0xb2,0x20,0x20,0x22,0x20,0x44,0x83,0x00 -+// 16488 䁨 ; -+,0x00,0x00,0x04,0x24,0x24,0x25,0x25,0x24,0x24,0x24,0x24,0x25,0x24,0x20,0x00,0x00,0x00,0x00,0x41,0x08,0x0a,0x28,0x28,0x08,0x29,0x09,0x49,0xcb,0x48,0x48,0x88,0x00 -+// 16489 䁩 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x01,0x00,0x00,0x00,0x40,0x48,0x80,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x00,0x29,0x21,0x00 -+// 16490 䁪 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x00,0x00,0x81,0xa8,0x88,0xa8,0xab,0xaa,0xaa,0xaa,0xa2,0x82,0x92,0x82,0x82,0x00 -+// 16491 䁫 ; -+,0x00,0x00,0x02,0x02,0x02,0x16,0x02,0x02,0x02,0x16,0x02,0x02,0x16,0x01,0x01,0x00,0x00,0x00,0x92,0x02,0x4a,0x5a,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x09,0x09,0x00 -+// 16492 䁬 ; -+,0x00,0x00,0x02,0x02,0x03,0x13,0x03,0x03,0x03,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x44,0x20,0x08,0x11,0x56,0x54,0x10,0x93,0x00,0x86,0x82,0x86,0x82,0x86,0x00 -+// 16493 䁭 ; -+,0x00,0x00,0x06,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x14,0x01,0x00,0x00,0x00,0x00,0x04,0x32,0x20,0x48,0x86,0x00,0xea,0xa9,0x88,0x8c,0x44,0x32,0x01,0x00 -+// 16494 䁮 ; -+,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x06,0x04,0x00,0x00,0x04,0x20,0x00,0x00,0x00,0x00,0x44,0x4c,0x0c,0xc6,0xc2,0x63,0x00,0x86,0x80,0x84,0x80,0x80,0x80,0x00 -+// 16495 䁯 ; -+,0x00,0x00,0x06,0x00,0x02,0x14,0x00,0x00,0x00,0x14,0x00,0x00,0x14,0x01,0x00,0x00,0x00,0x10,0x20,0x44,0x00,0x84,0x84,0x84,0x00,0x62,0x8a,0x02,0x8a,0x12,0x46,0x00 -+// 16496 䁰 ; -+,0x00,0x00,0x06,0x00,0x00,0x14,0x00,0x00,0x00,0x14,0x00,0x03,0x14,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x80,0x92,0x82,0x92,0x82,0x92,0x82,0x12,0x00,0x32,0x41,0x00 -+// 16497 䁱 ; -+,0x00,0x00,0x02,0x02,0x02,0x16,0x02,0x02,0x02,0x17,0x02,0x02,0x16,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x22,0x00,0x80,0x88,0x80,0x00,0x02,0x40,0x40,0x81,0x0f,0x00 -+// 16498 䁲 ; -+,0x00,0x00,0x03,0x03,0x03,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x01,0x00,0x00,0x00,0x2b,0x08,0x08,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x02,0x00 -+// 16499 䁳 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x00,0x20,0x27,0x40,0x44,0x03,0x20,0x6a,0x40,0x40,0x80,0x00 -+// 16500 䁴 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x11,0x00,0x82,0x0a,0x0a,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x01,0x00 -+// 16501 䁵 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0x00,0x01,0x82,0x82,0x82,0x20,0x42,0xc8,0x04,0x63,0x00 -+// 16502 䁶 ; -+,0x00,0x00,0x24,0x25,0x25,0x25,0x25,0x24,0x24,0x24,0x24,0x25,0x25,0x24,0x00,0x00,0x00,0x00,0x88,0x28,0x29,0x21,0x22,0x02,0x02,0x82,0xa4,0x24,0x2c,0x4a,0x41,0x00 -+// 16503 䁷 ; -+,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x10,0x24,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x44,0x84,0x44,0xc4,0x04,0x03,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 16504 䁸 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x03,0x13,0x03,0x03,0x13,0x01,0x02,0x00,0x00,0x28,0x2a,0xaa,0xaa,0x2a,0x82,0x02,0x00,0x00,0x82,0x40,0x40,0x4c,0x67,0x00 -+// 16505 䁹 ; -+,0x00,0x00,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x27,0x25,0x21,0x01,0x00,0x00,0x00,0x24,0x25,0x20,0x22,0x2a,0x00,0x04,0x24,0x25,0x24,0x24,0x24,0x04,0x00 -+// 16506 䁺 ; -+,0x00,0x00,0x02,0x02,0x02,0x06,0x02,0x02,0x02,0x06,0x02,0x02,0x06,0x20,0x00,0x00,0x00,0x00,0xaa,0x2a,0xaa,0x10,0x14,0x10,0x00,0x40,0x2a,0x10,0x11,0x10,0x10,0x00 -+// 16507 䁻 ; -+,0x00,0x00,0x24,0x25,0x24,0x25,0x24,0x24,0x25,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x00,0x82,0x28,0x21,0xae,0x20,0x20,0x25,0x00,0x31,0x30,0x40,0x86,0x12,0x00 -+// 16508 䁼 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x03,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x96,0x92,0x92,0x10,0x12,0x10,0x00,0x0a,0x00,0x10,0x12,0x10,0x13,0x00 -+// 16509 䁽 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x01,0x00,0x00,0x12,0x80,0x00,0x92,0x02,0x1a,0x8a,0x02,0x00,0x04,0x10,0x0a,0x02,0x91,0x00 -+// 16510 䁾 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x01,0x00,0x00,0x00,0x00,0x4f,0x40,0x02,0xaa,0xaa,0x80,0x14,0x90,0x92,0xcc,0x6c,0x0c,0x03,0x00 -+// 16511 䁿 ; -+,0x00,0x00,0x04,0x0c,0x04,0x04,0x04,0x18,0x00,0x00,0x04,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x8a,0x80,0x18,0x10,0x04,0x22,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16512 䂀 ; -+,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0x24,0x24,0x25,0x20,0x00,0x00,0x00,0x48,0x42,0x20,0x24,0x21,0x40,0x8a,0x89,0xe8,0x0a,0x8c,0xcc,0x4c,0xc3,0x00 -+// 16513 䂁 ; -+,0x00,0x00,0x24,0x25,0x24,0x24,0x24,0x25,0x24,0x24,0x25,0x24,0x24,0x20,0x00,0x00,0x00,0x40,0x98,0x12,0x02,0x10,0x14,0x93,0x40,0x98,0x92,0x02,0x3a,0x20,0x09,0x00 -+// 16514 䂂 ; -+,0x00,0x00,0x06,0x00,0x00,0x14,0x00,0x00,0x00,0x14,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x2a,0xaa,0xaa,0xaa,0xaa,0x00,0x50,0x92,0x90,0x90,0x90,0x90,0x90,0x80,0x00 -+// 16515 䂃 ; -+,0x00,0x00,0x06,0x20,0x21,0x25,0x21,0x20,0x25,0x25,0x21,0x21,0x25,0x21,0x01,0x00,0x00,0x0e,0x20,0x94,0x1a,0x0a,0x2a,0x00,0x22,0x23,0x22,0x2a,0x02,0x62,0xa6,0x00 -+// 16516 䂄 ; -+,0x00,0x00,0x25,0x25,0x25,0x25,0x24,0x25,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x20,0x2a,0x28,0x28,0x80,0x92,0x90,0x90,0x90,0x91,0x04,0x0c,0x30,0x4e,0x02 -+// 16517 䂅 ; -+,0x00,0x00,0x2d,0x20,0x23,0x28,0x22,0x20,0x24,0x28,0x21,0x21,0x28,0x20,0x03,0x00,0x00,0x02,0x00,0x86,0x00,0x04,0x1d,0xd0,0x0b,0x20,0x24,0x24,0x20,0x26,0x81,0x00 -+// 16518 䂆 ; -+,0x00,0x00,0x01,0x02,0x0c,0x04,0x01,0x0d,0x0c,0x04,0x14,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x10,0x20,0x20,0x02,0x02,0x02,0x02,0x12,0x12,0x02,0x02,0x02,0x04,0x00 -+// 16519 䂇 ; -+,0x00,0x00,0x01,0x02,0x0c,0x04,0x01,0x0d,0x0c,0x04,0x14,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x02,0x12,0x12,0x00,0x00,0x04,0x34,0x04,0x24,0x24,0x24,0x24,0x00,0x00 -+// 16520 䂈 ; -+,0x00,0x00,0x01,0x02,0x0c,0x04,0x01,0x0d,0x0c,0x04,0x14,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x10,0x52,0x42,0x42,0x42,0x5a,0x00,0x00,0x02,0x1b,0xc1,0x00 -+// 16521 䂉 ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x0b,0x18,0x18,0x18,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x00,0x44,0x84,0x84,0x00,0xa0,0xa2,0x88,0x80,0x98,0x90,0x94,0xa2,0x83,0x00 -+// 16522 䂊 ; -+,0x00,0x00,0x01,0x02,0x0c,0x04,0x01,0x0d,0x0c,0x14,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x20,0x20,0x48,0xca,0x92,0x92,0xa2,0x22,0x14,0x28,0x1c,0x2a,0x0b,0x18,0x10 -+// 16523 䂋 ; -+,0x00,0x04,0x04,0x04,0x04,0x11,0x01,0x15,0x04,0x04,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x18,0x09,0x18,0x28,0x48,0x00,0x08,0x38,0x28,0x40,0x83,0x08,0x00 -+// 16524 䂌 ; -+,0x00,0x00,0x02,0x02,0x0c,0x04,0x00,0x0c,0x0c,0x14,0x14,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x10,0x00,0x20,0x01,0x00,0x92,0x92,0x92,0x92,0x90,0x12,0x10,0x13,0x00 -+// 16525 䂍 ; -+,0x00,0x00,0x03,0x02,0x0c,0x04,0x01,0x0c,0x0c,0x14,0x14,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x42,0x42,0x42,0x00,0x2e,0x20,0x29,0x40,0x54,0x3b,0x10,0x96,0x30,0x00 -+// 16526 䂎 ; -+,0x00,0x00,0x02,0x04,0x08,0x04,0x00,0x08,0x18,0x10,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0xcc,0x44,0x45,0xa6,0xab,0x00,0x02,0x02,0x02,0x42,0xc2,0x00,0x42,0x00 -+// 16527 䂏 ; -+,0x00,0x00,0x08,0x00,0x14,0x04,0x04,0x04,0x0c,0x00,0x0c,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x02,0x22,0x06,0x00,0x02,0x02,0x02,0x02,0x02,0x22,0x00 -+// 16528 䂐 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x04,0x0c,0x00,0x0c,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x08,0x08,0x4a,0x4a,0x4a,0x4a,0x08,0x48,0x48,0x48,0x48,0x48,0x42,0x00 -+// 16529 䂑 ; -+,0x00,0x00,0x08,0x10,0x1c,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x02,0x10,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0xa5,0xb6,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xc5,0x87,0x00 -+// 16530 䂒 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x04,0x0c,0x00,0x0c,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 16531 䂓 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x4a,0x08,0x28,0x28,0x48,0x0f,0x00 -+// 16532 䂔 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x04,0x0c,0x00,0x0c,0x0a,0x0b,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x00,0x24,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16533 䂕 ; -+,0x00,0x08,0x10,0x10,0x1c,0x08,0x08,0x0a,0x08,0x08,0x0c,0x0a,0x12,0x10,0x00,0x00,0x00,0x20,0x64,0x44,0x48,0x08,0x29,0x60,0x82,0x38,0x90,0x3c,0x4a,0x89,0x30,0x00 -+// 16534 䂖 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x0c,0x14,0x04,0x04,0x06,0x04,0x00,0x00,0x00,0x03,0x80,0x00,0x10,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16535 䂗 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x00,0x1a,0x12,0x02,0x02,0x02,0x0a,0x02,0x00,0x00,0x00,0x00,0x20,0x20,0x22,0x24,0x28,0x30,0x20,0x60,0x20,0x20,0x21,0x21,0x1e,0x00 -+// 16536 䂘 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x14,0x04,0x04,0x28,0x28,0x10,0x10,0x28,0x46,0x03,0x00 -+// 16537 䂙 ; -+,0x00,0x00,0x00,0x04,0x00,0x08,0x08,0x09,0x19,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x22,0x22,0x20,0x24,0x20,0x20,0x20,0x22,0x22,0x2e,0x20,0x20,0x20,0x00 -+// 16538 䂚 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1b,0x10,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x1c,0x22,0x00,0x00,0x06,0x04,0x2c,0x18,0x18,0x2c,0x07,0x00 -+// 16539 䂛 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1a,0x12,0x02,0x02,0x02,0x0a,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x10,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 16540 䂜 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1a,0x12,0x02,0x02,0x02,0x0a,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16541 䂝 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x1b,0x19,0x08,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x20,0x20,0x24,0x20,0x23,0x20,0x02,0x12,0x14,0x1c,0x08,0x18,0x24,0x03,0x00 -+// 16542 䂞 ; -+,0x00,0x00,0x01,0x02,0x02,0x0c,0x10,0x02,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x40,0x42,0xe0,0x50,0x48,0x46,0x42,0x00 -+// 16543 䂟 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x09,0x00,0x03,0x02,0x06,0x0a,0x12,0x02,0x02,0x00,0x00,0x00,0x02,0xa2,0xa2,0xa2,0xa2,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 16544 䂠 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1b,0x10,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x50,0x10,0x10,0x10,0x18,0x10,0x20,0x24,0x04,0x03,0x01,0x00 -+// 16545 䂡 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1b,0x10,0x20,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x0e,0xc0,0x00,0x00,0x00,0x4e,0x08,0x08,0x08,0x08,0x08,0x08,0x03,0x00 -+// 16546 䂢 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x1b,0x19,0x08,0x08,0x09,0x0a,0x08,0x00,0x00,0x00,0x00,0x20,0x22,0x42,0x04,0x08,0x08,0x18,0x26,0x03,0x08,0x00,0x10,0x0c,0x00 -+// 16547 䂣 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x11,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x8a,0x3c,0x08,0x08,0x08,0x08,0x08,0x08,0x89,0x00,0x00 -+// 16548 䂤 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1a,0x12,0x02,0x02,0x02,0x0a,0x02,0x00,0x00,0x00,0x00,0x44,0x44,0x04,0xc4,0x84,0x04,0x14,0x14,0x04,0x04,0x04,0x04,0x0c,0x00 -+// 16549 䂥 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x1b,0x18,0x08,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0xd2,0x80,0x80,0xdb,0x88,0x88,0x88,0x84,0xc7,0x83,0x00 -+// 16550 䂦 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1b,0x12,0x02,0x02,0x02,0x0a,0x02,0x00,0x00,0x00,0x10,0x30,0x28,0x44,0x86,0x10,0x20,0x40,0x08,0x10,0x02,0x04,0x18,0x20,0x00 -+// 16551 䂧 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1b,0x12,0x22,0x02,0x02,0x0b,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x23,0x42,0x10,0x10,0x50,0x50,0x12,0x93,0x10,0x10,0x30,0x00 -+// 16552 䂨 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1b,0x10,0x20,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x08,0x40,0x40,0x41,0x48,0x48,0x48,0x4c,0x0a,0x08,0x88,0x08,0x08,0x00 -+// 16553 䂩 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1a,0x12,0x22,0x02,0x02,0x0a,0x02,0x00,0x00,0x00,0x00,0x83,0x91,0x91,0x95,0x91,0x91,0x91,0x9d,0xa7,0x81,0x81,0x83,0x81,0x00 -+// 16554 䂪 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1a,0x12,0x22,0x02,0x02,0x0a,0x02,0x00,0x00,0x00,0x28,0x28,0x28,0x2a,0xac,0xa8,0x28,0x6c,0x6a,0xa8,0x48,0x48,0x89,0x0f,0x00 -+// 16555 䂫 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x10,0x12,0x12,0x02,0x02,0x02,0x02,0x10,0x00,0x00,0x00,0x40,0x46,0x04,0x88,0x18,0x2c,0x13,0x12,0x10,0x90,0x90,0x10,0x10,0x10,0x00 -+// 16556 䂬 ; -+,0x00,0x00,0x05,0x04,0x04,0x04,0x04,0x10,0x00,0x01,0x02,0x06,0x0a,0x02,0x02,0x00,0x00,0x00,0x64,0x44,0x54,0x54,0x45,0x87,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 16557 䂭 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x10,0x12,0x12,0x32,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x10,0x02,0x00,0x20,0x42,0x84,0x04,0x08,0x08,0x10,0x18,0x0c,0x07,0x00 -+// 16558 䂮 ; -+,0x00,0x00,0x04,0x00,0x04,0x00,0x04,0x00,0x00,0x02,0x02,0x06,0x12,0x02,0x02,0x00,0x00,0x00,0x82,0x02,0x12,0x12,0x22,0x04,0x02,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 16559 䂯 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x12,0x12,0x12,0x22,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x08,0x01,0x80,0x88,0x88,0x88,0x8a,0x88,0x88,0x88,0x08,0x08,0x00,0x00 -+// 16560 䂰 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x10,0x16,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x00,0x00,0x00,0x60,0x40,0x44,0x40,0x40,0x40,0xe0,0xd0,0x40,0x40,0x40,0x40,0x42,0x00 -+// 16561 䂱 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x18,0x10,0x20,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x04,0x20,0x00,0x44,0x40,0x40,0x44,0x28,0x28,0x28,0x28,0x49,0x8f,0x00 -+// 16562 䂲 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x08,0x19,0x00,0x03,0x02,0x06,0x08,0x00,0x02,0x00,0x00,0x08,0x08,0x19,0x40,0x12,0x02,0x86,0x00,0x00,0x00,0x04,0x04,0x04,0x0c,0x00 -+// 16563 䂳 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x52,0x54,0x54,0x54,0x92,0x31,0x10,0x12,0x10,0x10,0x10,0x11,0x00 -+// 16564 䂴 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x10,0x03,0x00,0x02,0x00,0x02,0x00,0x00,0x42,0x42,0x42,0x42,0x40,0x00 -+// 16565 䂵 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x13,0x00,0x46,0x12,0x12,0x12,0x12,0x20,0x44,0x82,0x00 -+// 16566 䂶 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x10,0x14,0x10,0x10,0x10,0x10,0x15,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x09,0x01,0x09,0x89,0x89,0x89,0x29,0x31,0x12,0x02,0x00 -+// 16567 䂷 ; -+,0x00,0x00,0x03,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x13,0x12,0x10,0x00,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x10,0x55,0x56,0x54,0x54,0x55,0x10,0x10,0x10,0x00 -+// 16568 䂸 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x12,0x10,0x11,0x10,0x10,0xa2,0xaa,0xac,0x0c,0x08,0x84,0x07,0x03,0x00 -+// 16569 䂹 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x01,0x00,0x00,0x00,0x22,0x66,0xd4,0x28,0x10,0x60,0x10,0x12,0xb0,0xa0,0x48,0x44,0x03,0x00 -+// 16570 䂺 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x92,0x90,0x10,0x33,0x30,0x50,0x14,0x93,0x10,0x00 -+// 16571 䂻 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x02,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x12,0x08,0x08,0x46,0xc3,0x00 -+// 16572 䂼 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x12,0x32,0x12,0x12,0x12,0x11,0x00,0x00,0x00,0x10,0x30,0x28,0x44,0x13,0x00,0x04,0x08,0x08,0x10,0x2a,0x81,0x04,0x3c,0x00 -+// 16573 䂽 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x02,0x02,0x02,0x02,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x82,0x82,0x82,0x82,0x92,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16574 䂾 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x02,0x02,0x02,0x02,0x11,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x90,0xd4,0x31,0x38,0x30,0x54,0x92,0x11,0x10,0x00 -+// 16575 䂿 ; -+,0x00,0x00,0x0a,0x08,0x08,0x00,0x12,0x12,0x02,0x02,0x02,0x02,0x02,0x10,0x00,0x00,0x00,0x10,0x10,0x32,0x58,0x54,0x92,0x10,0x10,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16576 䃀 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x12,0x12,0x02,0x02,0x02,0x0a,0x02,0x00,0x00,0x00,0x00,0x20,0x22,0x20,0x24,0x24,0x25,0x24,0x24,0x20,0x42,0x08,0x00,0x1c,0x02,0x00 -+// 16577 䃁 ; -+,0x00,0x00,0x08,0x08,0x08,0x00,0x1a,0x12,0x02,0x02,0x02,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x2c,0x20,0x20,0xa4,0x80,0x80,0x80,0x82,0x20,0x20,0x20,0x20,0x21,0x00 -+// 16578 䃂 ; -+,0x00,0x00,0x01,0x08,0x08,0x00,0x1a,0x12,0x02,0x02,0x02,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x08,0x0a,0x68,0x08,0x08,0x48,0xcf,0x00 -+// 16579 䃃 ; -+,0x00,0x00,0x0a,0x08,0x08,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x83,0x80,0xa0,0x8e,0x80,0x80,0xa2,0xa0,0xa0,0xa2,0x82,0x82,0x82,0x00 -+// 16580 䃄 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x12,0x12,0x12,0x02,0x02,0x02,0x02,0x10,0x00,0x00,0x00,0x10,0x08,0x03,0x00,0x02,0x42,0x42,0x42,0x40,0x00,0x40,0x03,0x01,0x10,0x00 -+// 16581 䃅 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x44,0x08,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x13,0x10,0x10,0x10,0x00 -+// 16582 䃆 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x01,0x00,0x00,0x44,0x44,0x47,0x44,0x44,0x44,0x44,0x44,0x44,0x45,0x00,0x40,0x82,0x02,0x00 -+// 16583 䃇 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x1a,0x12,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x22,0x02,0x02,0x02,0x02,0x10,0x10,0x93,0x90,0x90,0x90,0x92,0x12,0x00 -+// 16584 䃈 ; -+,0x00,0x00,0x02,0x08,0x10,0x10,0x16,0x31,0x10,0x10,0x10,0x10,0x14,0x10,0x00,0x00,0x00,0x00,0x08,0x02,0x88,0x00,0x81,0x8f,0x20,0x22,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16585 䃉 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x82,0x82,0xb2,0x90,0x90,0x88,0x87,0x82,0x82,0x80,0x84,0x80,0x84,0x00 -+// 16586 䃊 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x02,0x02,0x02,0x02,0x10,0x00,0x00,0x00,0x00,0x48,0x49,0x48,0x00,0x04,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x45,0x00 -+// 16587 䃋 ; -+,0x00,0x00,0x0a,0x08,0x00,0x10,0x12,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x00,0x00,0x00,0x20,0x20,0x00,0x44,0x8b,0x00,0xa2,0xaa,0xaa,0xaa,0xaa,0xa2,0xa2,0xa6,0x00 -+// 16588 䃌 ; -+,0x00,0x00,0x0a,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0xaa,0xaa,0xaa,0x82,0x10,0x10,0x10,0x10,0x10,0x13,0x00 -+// 16589 䃍 ; -+,0x00,0x00,0x0a,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x04,0x44,0x28,0x0a,0x20,0x22,0x14,0x38,0x48,0x1c,0x28,0x4a,0x09,0x30,0x00 -+// 16590 䃎 ; -+,0x00,0x00,0x0a,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x10,0x10,0x28,0x20,0x56,0x21,0x44,0x28,0x30,0x18,0x22,0x14,0x08,0x20,0x00 -+// 16591 䃏 ; -+,0x00,0x00,0x0a,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0xc2,0x82,0xc2,0x82,0x82,0x10,0xd0,0x90,0x10,0x12,0x10,0x10,0x00,0x00 -+// 16592 䃐 ; -+,0x00,0x00,0x0a,0x08,0x00,0x11,0x12,0x32,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x20,0x10,0x11,0x00,0x44,0x02,0x14,0x12,0x31,0x20,0x28,0x40,0x04,0x03,0x00 -+// 16593 䃑 ; -+,0x00,0x00,0x04,0x01,0x11,0x11,0x15,0x15,0x15,0x15,0x15,0x14,0x16,0x16,0x00,0x00,0x00,0x00,0x02,0x62,0x02,0x12,0x53,0x20,0x42,0x02,0xc0,0x0c,0x0c,0x44,0x43,0x00 -+// 16594 䃒 ; -+,0x00,0x00,0x08,0x08,0x00,0x10,0x12,0x32,0x13,0x13,0x13,0x13,0x11,0x11,0x01,0x00,0x00,0x02,0x00,0x04,0x44,0x44,0x44,0x02,0x02,0x2a,0x02,0x12,0x12,0x12,0x02,0x00 -+// 16595 䃓 ; -+,0x00,0x00,0x08,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x68,0x6a,0x00,0x10,0x10,0x92,0x92,0x92,0x93,0x82,0x82,0x86,0x00 -+// 16596 䃔 ; -+,0x00,0x00,0x08,0x08,0x00,0x10,0x12,0x32,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x10,0x81,0x80,0x00,0x44,0x44,0x44,0x00,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16597 䃕 ; -+,0x00,0x02,0x00,0x14,0x04,0x09,0x00,0x00,0x10,0x01,0x02,0x06,0x0a,0x02,0x02,0x00,0x00,0x10,0x92,0x50,0x10,0x04,0x06,0x03,0x02,0x08,0x00,0x08,0x08,0x08,0x08,0x00 -+// 16598 䃖 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x00,0x12,0x12,0x32,0x12,0x12,0x12,0x11,0x00,0x00,0x00,0x20,0x20,0x86,0x80,0x80,0x80,0x81,0x80,0x81,0x01,0x14,0x56,0x02,0x06,0x04 -+// 16599 䃗 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x10,0x14,0x14,0x14,0x14,0x14,0x15,0x14,0x10,0x00,0x00,0x00,0x21,0x20,0x24,0x20,0x70,0x40,0x50,0xc0,0x40,0x50,0x50,0x42,0xc2,0x00 -+// 16600 䃘 ; -+,0x00,0x00,0x03,0x09,0x09,0x11,0x11,0x15,0x11,0x11,0x10,0x10,0x14,0x10,0x00,0x00,0x00,0x00,0x43,0x40,0x62,0x02,0x24,0x44,0x4b,0x00,0x00,0x32,0x00,0x00,0x11,0x00 -+// 16601 䃙 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x10,0x16,0x10,0x10,0x10,0x11,0x15,0x10,0x10,0x00,0x00,0x10,0x11,0xa8,0xa8,0xab,0xa8,0xa8,0x80,0xc8,0x5b,0x48,0x48,0x49,0x4f,0x00 -+// 16602 䃚 ; -+,0x00,0x00,0x05,0x08,0x01,0x11,0x11,0x15,0x35,0x15,0x15,0x14,0x16,0x12,0x00,0x00,0x00,0x00,0x10,0x12,0x00,0x10,0x12,0x48,0x48,0x49,0x48,0x48,0x40,0x92,0x21,0x00 -+// 16603 䃛 ; -+,0x00,0x00,0x03,0x08,0x08,0x00,0x10,0x16,0x10,0x10,0x10,0x10,0x14,0x10,0x01,0x00,0x00,0x00,0x08,0x88,0x08,0x2a,0x0a,0xaa,0x8a,0x8a,0x88,0x88,0x88,0x88,0x3f,0x00 -+// 16604 䃜 ; -+,0x00,0x00,0x14,0x15,0x10,0x14,0x14,0x11,0x10,0x00,0x01,0x02,0x0a,0x02,0x02,0x00,0x00,0x00,0x24,0x24,0x06,0x04,0x04,0x18,0x26,0x03,0x00,0x04,0x04,0x04,0x04,0x00 -+// 16605 䃝 ; -+,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x14,0x14,0x34,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x84,0xe8,0xa9,0xe2,0x42,0x82,0x20,0x04,0x04,0xc4,0x0c,0x02,0x81,0x00 -+// 16606 䃞 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x1e,0x04,0x04,0x01,0x02,0x0e,0x00,0x02,0x00,0x00,0x00,0x90,0x14,0x14,0x14,0x34,0x2a,0x43,0x02,0x00,0x00,0x04,0x04,0x04,0x00 -+// 16607 䃟 ; -+,0x00,0x00,0x08,0x00,0x10,0x10,0x14,0x14,0x15,0x15,0x15,0x15,0x11,0x01,0x01,0x00,0x00,0x00,0xa4,0xa8,0x88,0xaa,0xb2,0x02,0x22,0x22,0x24,0x24,0x24,0x2a,0x21,0x00 -+// 16608 䃠 ; -+,0x00,0x00,0x00,0x00,0x11,0x11,0x15,0x15,0x15,0x15,0x14,0x16,0x12,0x00,0x04,0x00,0x00,0x08,0x90,0x10,0x00,0x01,0x44,0x44,0x55,0x54,0x44,0x54,0x64,0xac,0x03,0x00 -+// 16609 䃡 ; -+,0x00,0x00,0x00,0x01,0x11,0x10,0x14,0x14,0x14,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x44,0x04,0xfc,0xc4,0xc8,0x43,0x00,0x86,0x80,0x84,0x80,0x84,0x80,0x00 -+// 16610 䃢 ; -+,0x00,0x00,0x02,0x10,0x10,0x10,0x14,0x14,0x34,0x14,0x14,0x15,0x14,0x13,0x00,0x00,0x00,0x00,0x88,0xc8,0x29,0x11,0x80,0x80,0x80,0x88,0xac,0x8c,0x80,0x12,0x21,0x00 -+// 16611 䃣 ; -+,0x00,0x00,0x02,0x00,0x10,0x10,0x14,0x14,0x35,0x15,0x15,0x15,0x10,0x02,0x00,0x00,0x00,0x0c,0x00,0xa4,0x80,0x04,0x00,0x8e,0x00,0x01,0x01,0x05,0x2b,0x81,0x02,0x00 -+// 16612 䃤 ; -+,0x00,0x00,0x02,0x00,0x10,0x10,0x14,0x15,0x35,0x15,0x15,0x15,0x11,0x00,0x00,0x00,0x00,0x10,0x16,0x10,0x16,0x14,0x10,0x52,0x5a,0x12,0x12,0x12,0x5a,0x5a,0x5a,0x00 -+// 16613 䃥 ; -+,0x00,0x00,0x0a,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x14,0x10,0x00,0x00,0x00,0x00,0x10,0x44,0x48,0x09,0x00,0xb4,0xb4,0x84,0xb4,0x00,0x32,0x00,0x33,0x00 -+// 16614 䃦 ; -+,0x00,0x00,0x00,0x09,0x09,0x01,0x00,0x1e,0x00,0x04,0x01,0x02,0x0e,0x02,0x02,0x00,0x00,0x10,0x10,0x23,0x24,0x04,0x18,0x18,0x07,0x02,0x00,0x00,0x04,0x04,0x04,0x00 -+// 16615 䃧 ; -+,0x00,0x00,0x16,0x14,0x10,0x10,0x12,0x14,0x10,0x00,0x03,0x02,0x06,0x02,0x02,0x00,0x00,0x40,0x4c,0x30,0x4e,0x20,0xa4,0x24,0x20,0x00,0x00,0x00,0x04,0x04,0x04,0x00 -+// 16616 䃨 ; -+,0x00,0x00,0x04,0x00,0x10,0x11,0x11,0x15,0x35,0x14,0x14,0x14,0x14,0x14,0x01,0x00,0x00,0x00,0x52,0x52,0x52,0x50,0x04,0x05,0x41,0x41,0x45,0x00,0x00,0x8d,0xa1,0x00 -+// 16617 䃩 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x11,0x00,0x00,0x00,0x00,0x28,0xaa,0xaa,0xaa,0x02,0x00,0x80,0x80,0x81,0xc2,0x48,0x44,0x63,0x00 -+// 16618 䃪 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x12,0x00,0x82,0x8a,0x8a,0x82,0x82,0x00,0x04,0x04,0x00,0x04,0x01,0x00 -+// 16619 䃫 ; -+,0x00,0x00,0x03,0x08,0x08,0x10,0x12,0x12,0x12,0x12,0x12,0x13,0x13,0x10,0x00,0x00,0x00,0x20,0x44,0x88,0x81,0xa0,0xc2,0x89,0x80,0x80,0x02,0x00,0x22,0x02,0x22,0x00 -+// 16620 䃬 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x92,0x92,0x12,0x20,0xa2,0x92,0x92,0x82,0xb0,0x24,0x4f,0x09,0x0f,0x00 -+// 16621 䃭 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x16,0x14,0x15,0x15,0x14,0x14,0x14,0x11,0x00,0x00,0x00,0x08,0x0a,0x8b,0x88,0x88,0x82,0x54,0x54,0x1b,0x01,0x50,0x49,0x41,0x7e,0x00 -+// 16622 䃮 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x16,0x12,0x10,0x10,0x10,0x14,0x10,0x11,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x04,0x80,0x88,0x88,0x88,0x88,0x88,0x00,0x1e,0x00 -+// 16623 䃯 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x11,0x00,0x00,0x00,0x00,0x00,0xaa,0x88,0x28,0x48,0x8a,0x18,0x10,0x38,0x50,0x94,0x13,0x10,0x00 -+// 16624 䃰 ; -+,0x00,0x00,0x02,0x09,0x01,0x10,0x14,0x15,0x14,0x14,0x14,0x14,0x14,0x11,0x00,0x00,0x00,0x10,0x10,0x03,0xc0,0xba,0x28,0x44,0x4e,0x83,0x14,0x10,0x90,0x13,0x30,0x00 -+// 16625 䃱 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x16,0x14,0x14,0x14,0x14,0x14,0x14,0x11,0x00,0x00,0x00,0x48,0x48,0x5a,0x48,0x49,0x08,0x28,0xaa,0xba,0x24,0xa4,0x24,0x83,0x01,0x00 -+// 16626 䃲 ; -+,0x00,0x00,0x02,0x08,0x08,0x00,0x16,0x10,0x10,0x10,0x10,0x10,0x14,0x10,0x00,0x00,0x00,0x00,0x4a,0xaa,0xe2,0xa2,0xa2,0x62,0x24,0x2b,0x02,0xaa,0xaa,0xaa,0xab,0x00 -+// 16627 䃳 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x16,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x01,0x00,0x00,0x12,0x80,0x00,0x12,0x8a,0x9a,0x8a,0x02,0x02,0x12,0x12,0x12,0x12,0x91,0x00 -+// 16628 䃴 ; -+,0x00,0x00,0x14,0x10,0x10,0x10,0x14,0x14,0x34,0x14,0x14,0x14,0x14,0x11,0x00,0x00,0x00,0x00,0x80,0x4f,0x02,0x06,0x04,0x08,0x1a,0x10,0x52,0x52,0x50,0x52,0x10,0x00 -+// 16629 䃵 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x16,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x10,0x00,0x90,0x94,0x90,0x91,0x01,0x00,0x22,0x40,0xc8,0x44,0x63,0x00 -+// 16630 䃶 ; -+,0x00,0x00,0x04,0x10,0x11,0x11,0x15,0x34,0x14,0x14,0x15,0x14,0x10,0x10,0x00,0x00,0x00,0x20,0x10,0x00,0x0a,0x0a,0x0a,0x02,0x00,0x06,0x20,0x44,0xc8,0x44,0x63,0x00 -+// 16631 䃷 ; -+,0x00,0x00,0x02,0x08,0x10,0x10,0x14,0x14,0x35,0x15,0x15,0x15,0x14,0x10,0x00,0x00,0x00,0x10,0x12,0x00,0x00,0x44,0x04,0x00,0x22,0x3a,0x16,0x52,0x1a,0x2a,0xc1,0x00 -+// 16632 䃸 ; -+,0x00,0x00,0x02,0x01,0x10,0x10,0x16,0x10,0x10,0x10,0x10,0x14,0x14,0x10,0x02,0x00,0x00,0x08,0x28,0xaa,0x18,0x29,0xa8,0xa0,0xa1,0xa4,0xa6,0xa6,0xa6,0xeb,0x01,0x00 -+// 16633 䃹 ; -+,0x00,0x00,0x03,0x09,0x01,0x11,0x17,0x11,0x11,0x11,0x11,0x15,0x11,0x11,0x01,0x00,0x00,0x00,0x29,0x29,0x29,0x21,0x11,0x11,0x55,0x55,0x55,0x31,0x15,0x11,0x03,0x00 -+// 16634 䃺 ; -+,0x00,0x00,0x02,0x08,0x00,0x10,0x16,0x10,0x10,0x10,0x11,0x15,0x11,0x10,0x00,0x00,0x00,0x00,0x10,0x20,0x24,0x26,0x76,0xa5,0x00,0x08,0x28,0x28,0x08,0x29,0x08,0x00 -+// 16635 䃻 ; -+,0x00,0x00,0x00,0x09,0x10,0x10,0x14,0x14,0x14,0x14,0x15,0x15,0x14,0x10,0x00,0x00,0x00,0x04,0x20,0x21,0x00,0x00,0x00,0xaa,0x8a,0x0a,0x6a,0x6a,0x02,0x52,0x02,0x00 -+// 16636 䃼 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x02,0x04,0x0e,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x14,0x12,0x91,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16637 䃽 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x12,0x10,0x10,0x16,0x04,0x04,0x08,0x38,0x10,0x28,0x86,0x00 -+// 16638 䃾 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x88,0x88,0x88,0x89,0xaa,0x8c,0x88,0x88,0x88,0x88,0x88,0xc9,0x8f,0x00 -+// 16639 䃿 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x30,0x28,0x28,0x44,0x46,0x03,0x00 -+// 16640 䄀 ; -+,0x00,0x08,0x04,0x00,0x02,0x02,0x04,0x04,0x0e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x24,0x20,0x22,0x20,0x20,0x26,0x2c,0x10,0x30,0x58,0x0d,0x03,0x00 -+// 16641 䄁 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x94,0x84,0x84,0x84,0x95,0x84,0x84,0x84,0x84,0x94,0x80,0x80,0x80,0x00 -+// 16642 䄂 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x93,0x90,0x90,0x90,0x92,0x90,0x90,0x90,0x92,0x81,0x00 -+// 16643 䄃 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x08,0x0a,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x16,0x10,0x10,0x10,0x10,0xb7,0x20,0x28,0x48,0x86,0x03,0x00 -+// 16644 䄄 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x83,0x91,0x91,0x91,0x95,0x91,0x91,0x91,0x89,0xa5,0x81,0x83,0x81,0x00 -+// 16645 䄅 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0x04,0x08,0x00,0x00,0x00,0x88,0x90,0x80,0x84,0x00,0x00,0x10,0x0c,0x07,0x40,0x40,0x48,0x44,0xc0,0x00 -+// 16646 䄆 ; -+,0x00,0x08,0x04,0x00,0x06,0x06,0x04,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x3c,0x10,0x10,0x10,0x10,0x10,0x10,0x92,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16647 䄇 ; -+,0x00,0x08,0x04,0x00,0x06,0x06,0x04,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x42,0x02,0x02,0x42,0x02,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x00 -+// 16648 䄈 ; -+,0x00,0x08,0x04,0x00,0x02,0x06,0x04,0x08,0x0a,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x00,0x00,0x86,0x80,0x80,0x80,0x80,0x00,0x44,0x44,0x00,0x01,0x00 -+// 16649 䄉 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x08,0x08,0x1a,0x28,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x68,0xca,0x4a,0x48,0x48,0x4a,0x4a,0x4c,0xcc,0x4c,0x54,0x43,0x81,0x00 -+// 16650 䄊 ; -+,0x00,0x08,0x04,0x00,0x06,0x06,0x04,0x08,0x0a,0x08,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x52,0x49,0x41,0x40,0x7c,0x00 -+// 16651 䄋 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x04,0x08,0x1a,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x60,0x40,0x00,0x94,0x97,0x84,0x94,0x84,0x94,0x84,0x01,0x1f,0x00 -+// 16652 䄌 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x08,0x1a,0x0a,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x22,0x02,0x44,0x44,0x2a,0x00,0x42,0x42,0x42,0x8c,0xcc,0x4c,0x13,0x00 -+// 16653 䄍 ; -+,0x00,0x08,0x04,0x00,0x06,0x06,0x04,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x48,0x4a,0x48,0x48,0x48,0x00,0x00,0x04,0x04,0x44,0x04,0x04,0x84,0x00 -+// 16654 䄎 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x04,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x30,0x20,0x04,0x00,0x06,0x00,0x90,0x90,0x90,0x90,0x00,0x04,0x00 -+// 16655 䄏 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x04,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x48,0x4b,0x48,0x00,0x1c,0x30,0x20,0x32,0x20,0x20,0x48,0x84,0x03,0x00 -+// 16656 䄐 ; -+,0x00,0x00,0x00,0x10,0x16,0x00,0x10,0x10,0x00,0x00,0x02,0x0a,0x12,0x02,0x04,0x00,0x00,0x00,0x80,0xa2,0xa2,0x22,0xa2,0xa2,0x20,0x20,0x20,0x20,0xa0,0x61,0x1f,0x00 -+// 16657 䄑 ; -+,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x0c,0x90,0x90,0x98,0x88,0xc4,0x02,0x04,0x00,0x04,0x00,0x04,0x80,0x00 -+// 16658 䄒 ; -+,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x08,0x1a,0x08,0x08,0x08,0x09,0x0a,0x08,0x00,0x00,0x00,0x30,0x20,0x44,0x93,0x00,0x04,0x08,0x10,0x00,0x52,0x11,0x04,0x7c,0x00 -+// 16659 䄓 ; -+,0x00,0x08,0x04,0x00,0x06,0x06,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x02,0x02,0x42,0x02,0x42,0x00,0x02,0x10,0x12,0x10,0x10,0x11,0x00 -+// 16660 䄔 ; -+,0x00,0x08,0x04,0x00,0x04,0x04,0x00,0x0c,0x1a,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x06,0x10,0x10,0x92,0x92,0x92,0x90,0x10,0x11,0x11,0x15,0x63,0x01,0x03,0x00 -+// 16661 䄕 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x32,0x58,0x54,0x92,0x30,0x00,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 16662 䄖 ; -+,0x00,0x00,0x08,0x00,0x04,0x05,0x08,0x09,0x1b,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x20,0x20,0x48,0x8e,0x03,0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x66,0x00 -+// 16663 䄗 ; -+,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x08,0x1a,0x08,0x08,0x09,0x09,0x09,0x08,0x00,0x00,0x28,0xaa,0x2a,0xaa,0x02,0x02,0x82,0x02,0x02,0x6a,0x0a,0x0a,0x0a,0x0a,0x00 -+// 16664 䄘 ; -+,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x09,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x00,0x20,0x03,0x10,0x10,0x60,0x00,0x44,0x44,0x04,0x0c,0x00 -+// 16665 䄙 ; -+,0x00,0x00,0x0c,0x01,0x06,0x04,0x04,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x81,0x00,0x06,0x00,0x44,0x00,0x44,0x00,0x10,0x00,0x40,0x42,0x83,0x00 -+// 16666 䄚 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x28,0x29,0x28,0x2a,0xaa,0xaa,0xaa,0xaa,0x00,0x02,0x02,0x42,0x02,0x42,0x00 -+// 16667 䄛 ; -+,0x00,0x08,0x04,0x00,0x04,0x04,0x00,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x92,0x92,0x92,0x92,0x10,0x92,0x92,0x82,0x20,0x44,0x08,0x3c,0x42,0x00 -+// 16668 䄜 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x08,0x1a,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x10,0x11,0x00,0x8a,0x9a,0x82,0x92,0x10,0x23,0x01,0x45,0x45,0x01,0x02,0x00 -+// 16669 䄝 ; -+,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x32,0x20,0x20,0x40,0x40,0x80,0x43,0x84,0x84,0x84,0x84,0x84,0x00 -+// 16670 䄞 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x08,0x1a,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x51,0x92,0xe0,0x20,0x84,0x42,0x80,0x00,0x10,0x10,0x92,0x11,0x10,0x00 -+// 16671 䄟 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x09,0x08,0x0c,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x30,0x90,0x84,0xc4,0x0c,0x14,0x12,0x10,0x1e,0x00,0x02,0x40,0x4c,0xc2,0x00 -+// 16672 䄠 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x82,0x82,0x8a,0x82,0x82,0x04,0x04,0x04,0x04,0x04,0x01,0x00 -+// 16673 䄡 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x00,0x08,0x1a,0x08,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x20,0x44,0x88,0x83,0x20,0x42,0x89,0x00,0x00,0x02,0x00,0x02,0x02,0x02,0x00 -+// 16674 䄢 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x08,0x1c,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x10,0x10,0x00,0x2a,0xd4,0xd0,0x50,0x55,0x82,0x82,0x82,0x82,0x02,0x02,0x00 -+// 16675 䄣 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x04,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x12,0x14,0x00,0xaa,0xaa,0x82,0x04,0x04,0x04,0x44,0x44,0x44,0x82,0x00 -+// 16676 䄤 ; -+,0x00,0x00,0x08,0x00,0x04,0x08,0x0a,0x0a,0x16,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x88,0x88,0x82,0x80,0x91,0x91,0x91,0xd1,0x91,0x91,0xd1,0x80,0x88,0x81,0x00 -+// 16677 䄥 ; -+,0x00,0x00,0x08,0x01,0x04,0x04,0x08,0x09,0x1e,0x09,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0xf6,0x00,0xb2,0x02,0x00,0x84,0x4a,0x31,0x00 -+// 16678 䄦 ; -+,0x00,0x00,0x06,0x04,0x04,0x05,0x04,0x0c,0x0d,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 16679 䄧 ; -+,0x00,0x00,0x06,0x04,0x04,0x05,0x04,0x0c,0x0d,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0x41,0x41,0x41,0x41,0x00,0x82,0x02,0x04,0x00 -+// 16680 䄨 ; -+,0x00,0x00,0x06,0x04,0x04,0x05,0x04,0x0c,0x0d,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 16681 䄩 ; -+,0x00,0x00,0x06,0x04,0x04,0x05,0x04,0x0c,0x0d,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0x24,0x20,0x20,0x30,0x00,0x10,0x10,0x10,0x08,0x08,0x06,0x02,0x00 -+// 16682 䄪 ; -+,0x00,0x00,0x06,0x04,0x04,0x05,0x04,0x0c,0x0d,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x30,0x20,0x22,0x42,0x02,0x02,0x22,0x12,0x12,0x02,0x02,0x02,0x0c,0x00 -+// 16683 䄫 ; -+,0x00,0x00,0x06,0x04,0x04,0x05,0x04,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x40,0x40,0x40,0x40,0x41,0x41,0x7e,0x00 -+// 16684 䄬 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x50,0x52,0x52,0x52,0x52,0x52,0x52,0x54,0x50,0x40,0x41,0x3f,0x00 -+// 16685 䄭 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 16686 䄮 ; -+,0x00,0x00,0x0c,0x04,0x04,0x05,0x0c,0x0c,0x0f,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x30,0x30,0x28,0x28,0x44,0x06,0x03,0x00 -+// 16687 䄯 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x24,0x24,0x24,0x24,0x6d,0x04,0x04,0x44,0x44,0x04,0x04,0x00,0x00 -+// 16688 䄰 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x04,0x44,0x44,0x44,0x4c,0x0c,0x14,0x04,0x24,0x44,0x04,0x0c,0x00 -+// 16689 䄱 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x00,0x03,0x20,0x20,0x22,0x22,0x22,0x02,0x42,0x04,0x84,0x0c,0x00 -+// 16690 䄲 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x93,0x90,0x90,0x90,0x98,0x84,0x80,0x80,0x80,0x82,0x82,0x00 -+// 16691 䄳 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x48,0x40,0x40,0x40,0x40,0x40,0x40,0x41,0x00 -+// 16692 䄴 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x0d,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x82,0x02,0x06,0x00 -+// 16693 䄵 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0xe0,0x00,0xc2,0x00,0x10,0x07,0x48,0xc0,0x00,0x42,0x40,0x00,0x00,0x00 -+// 16694 䄶 ; -+,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x08,0x0c,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0x2a,0x2a,0x2a,0xaa,0xa8,0xa8,0xaa,0x28,0x48,0x4a,0x88,0x08,0x00 -+// 16695 䄷 ; -+,0x00,0x00,0x0e,0x00,0x00,0x00,0x0c,0x08,0x0c,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x20,0x20,0x42,0x42,0xc2,0x42,0x42,0x42,0x42,0x42,0x00 -+// 16696 䄸 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x04,0x0c,0x0e,0x15,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x20,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 16697 䄹 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x42,0xc0,0x48,0x06,0xc0,0x00,0x2f,0xc0,0x04,0x00,0x00,0x00,0x00 -+// 16698 䄺 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x0c,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x33,0x10,0x32,0x02,0xb2,0x80,0xa1,0x21,0x2a,0x48,0x06,0x03,0x00 -+// 16699 䄻 ; -+,0x00,0x00,0x0e,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x01,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x28,0x28,0x28,0xaa,0xa8,0x28,0x28,0xea,0x4a,0x48,0x08,0x89,0x0f,0x00 -+// 16700 䄼 ; -+,0x00,0x00,0x0e,0x00,0x00,0x0d,0x08,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0x8a,0xa6,0xc2,0x82,0x82,0x82,0x00 -+// 16701 䄽 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0c,0x08,0x0c,0x1a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x28,0x2a,0xaa,0xaa,0xaa,0xaa,0xce,0xc2,0x82,0x82,0x82,0x00 -+// 16702 䄾 ; -+,0x00,0x00,0x0e,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x10,0x12,0x10,0x18,0x00,0x8a,0xe8,0x8c,0x88,0x88,0x94,0x03,0x01,0x00 -+// 16703 䄿 ; -+,0x00,0x00,0x0e,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x10,0x12,0x92,0x92,0x92,0x92,0x92,0x90,0x12,0x1c,0x38,0x0d,0x07,0x01 -+// 16704 䅀 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0e,0x1b,0x10,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x40,0x40,0x50,0x90,0x90,0x60,0x20,0x00,0x40,0x00,0x02,0x06,0x00 -+// 16705 䅁 ; -+,0x00,0x00,0x00,0x10,0x11,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x80,0x02,0x02,0x02,0x10,0x20,0xf0,0x1c,0xc0,0x42,0xc0,0x10,0x0e,0x02,0x00 -+// 16706 䅂 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x0c,0x0c,0x0e,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0x22,0x42,0x04,0x08,0x18,0x26,0x41,0x46,0x42,0x42,0x42,0x42,0x00 -+// 16707 䅃 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x30,0x00,0x00,0x01,0x01,0x06,0x08,0x00,0x00,0x00,0x00,0x24,0x04,0x44,0x54,0x05,0x16,0xe0,0x00,0xe0,0x00,0x18,0x06,0x02,0x00 -+// 16708 䅄 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x08,0x28,0x09,0x09,0x08,0x08,0x00,0x00,0x10,0x00,0x32,0x22,0x40,0x04,0x00,0x84,0xa5,0xa1,0x29,0x29,0x10,0x42,0x00 -+// 16709 䅅 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x0a,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00 -+// 16710 䅆 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x0c,0x1a,0x08,0x29,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x10,0x90,0x91,0x22,0x08,0x08,0x88,0x98,0x18,0x14,0x24,0x22,0x01,0x00 -+// 16711 䅇 ; -+,0x00,0x00,0x01,0x01,0x09,0x09,0x09,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x02,0x20,0x20,0x24,0x24,0x24,0x00,0xc0,0x00,0xe0,0x00,0x08,0x06,0x00,0x00 -+// 16712 䅈 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x08,0x90,0x84,0x80,0x00,0x00,0x10,0xec,0x43,0xc4,0x40,0x50,0x44,0x40,0x00 -+// 16713 䅉 ; -+,0x00,0x00,0x0e,0x00,0x00,0x0e,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x28,0x28,0x28,0x29,0x2a,0xaa,0xec,0x2c,0x28,0x28,0x28,0x09,0x00 -+// 16714 䅊 ; -+,0x00,0x00,0x0e,0x00,0x00,0x08,0x08,0x0c,0x0a,0x11,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x80,0x80,0x84,0x90,0x90,0x90,0x98,0x90,0x10,0x10,0x10,0x0e,0x00 -+// 16715 䅋 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x0c,0x0c,0x0e,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x44,0x08,0x80,0x12,0x12,0x12,0x1a,0x08,0x28,0x49,0x09,0x0f,0x00 -+// 16716 䅌 ; -+,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x02,0x46,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x86,0x00 -+// 16717 䅍 ; -+,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x60,0x40,0x40,0x0e,0xa4,0x20,0x00,0x40,0x40,0x40,0xb0,0x0f,0x00 -+// 16718 䅎 ; -+,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x10,0x10,0x32,0x30,0x54,0x93,0x24,0x00,0x48,0x42,0x42,0x82,0x0c,0x00 -+// 16719 䅏 ; -+,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x0c,0x0e,0x10,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x8c,0x90,0x90,0x90,0x90,0x18,0x10,0x11,0x0f,0x00 -+// 16720 䅐 ; -+,0x00,0x00,0x0e,0x08,0x08,0x08,0x08,0x08,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x42,0x02,0x42,0x02,0x42,0x02,0x02,0x28,0x28,0x28,0x48,0x09,0x0f,0x00 -+// 16721 䅑 ; -+,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x18,0x00,0x12,0x50,0x40,0x20,0x23,0x44,0x44,0x08,0x1c,0x33,0x40,0x00 -+// 16722 䅒 ; -+,0x00,0x00,0x0e,0x00,0x00,0x04,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x45,0x44,0x44,0x10,0x08,0x41,0x40,0x40,0x40,0x40,0x40,0x62,0x00 -+// 16723 䅓 ; -+,0x00,0x00,0x0c,0x08,0x09,0x0e,0x08,0x09,0x1d,0x19,0x29,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0x03,0x22,0x22,0x22,0x6a,0x28,0x24,0x24,0x24,0x2a,0x23,0x41,0x00 -+// 16724 䅔 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0f,0x08,0x0c,0x1a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x52,0x04,0x04,0x92,0x52,0x00,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 16725 䅕 ; -+,0x00,0x00,0x0e,0x00,0x00,0x08,0x08,0x0c,0x0a,0x12,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x80,0x9a,0x80,0x80,0x82,0x02,0x02,0x02,0x02,0x00 -+// 16726 䅖 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x0a,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x70,0x40,0x00,0x96,0x87,0x84,0xb4,0x84,0xb4,0x80,0x01,0x1f,0x00 -+// 16727 䅗 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x18,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x13,0x30,0x54,0x12,0x00,0x20,0x64,0x44,0x28,0x1c,0x42,0x00 -+// 16728 䅘 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x1a,0x28,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x90,0x54,0x31,0x38,0x30,0x54,0x92,0x11,0x10,0x00 -+// 16729 䅙 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0f,0x08,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x86,0x82,0x86,0x82,0x86,0x00,0x88,0x8a,0x8c,0x88,0x88,0x89,0x8f,0x00 -+// 16730 䅚 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x0a,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x94,0x50,0x32,0x20,0x21,0x40,0x44,0xce,0x49,0x48,0x58,0x42,0x7e,0x00 -+// 16731 䅛 ; -+,0x00,0x00,0x0e,0x00,0x00,0x08,0x08,0x08,0x1a,0x11,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x83,0x80,0x82,0x80,0x82,0x80,0x00 -+// 16732 䅜 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x08,0x1e,0x12,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x38,0x10,0x10,0x54,0x14,0x14,0x54,0x14,0x14,0x55,0x10,0x10,0x02,0x00 -+// 16733 䅝 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0b,0x08,0x08,0x1e,0x0a,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x11,0x81,0x00,0x60,0x42,0x02,0x04,0x10,0x10,0x10,0x10,0x13,0x00 -+// 16734 䅞 ; -+,0x00,0x00,0x0c,0x04,0x04,0x05,0x0c,0x0c,0x0e,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x04,0x04,0x04,0x04,0x24,0x04,0x0c,0x00 -+// 16735 䅟 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x40,0xc2,0x10,0x21,0x00,0x54,0x33,0x08,0x10,0x06,0x18,0x60,0x00 -+// 16736 䅠 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x12,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x42,0x02,0x42,0x02,0x42,0x00,0x10,0x10,0xd2,0x90,0x90,0x30,0x1f,0x00 -+// 16737 䅡 ; -+,0x00,0x00,0x0c,0x04,0x04,0x05,0x0c,0x0c,0x0e,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x12,0x00,0x22,0x02,0x42,0x02,0x02,0x42,0x02,0x42,0x20,0x42,0x01,0x00 -+// 16738 䅢 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0x00,0x02,0x02,0x42,0x02,0x42,0x02,0x06,0x00 -+// 16739 䅣 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x0c,0x0c,0x0e,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x82,0x02,0x02,0x02,0x02,0x00,0x02,0x10,0x10,0x10,0x10,0x11,0x00 -+// 16740 䅤 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x10,0x70,0x90,0x90,0xb2,0x90,0x90,0x92,0x80,0x00 -+// 16741 䅥 ; -+,0x00,0x00,0x0c,0x00,0x00,0x08,0x08,0x08,0x1e,0x12,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x86,0x80,0x80,0x80,0x00,0x40,0x91,0x11,0xb1,0x89,0x81,0x80,0x06,0x00 -+// 16742 䅦 ; -+,0x00,0x02,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x04,0x65,0x04,0x04,0x00,0x92,0x90,0x90,0x92,0x90,0x90,0x92,0x80,0x00 -+// 16743 䅧 ; -+,0x00,0x02,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x44,0x48,0x08,0x00,0x00,0x86,0x80,0x84,0x80,0x84,0x80,0x00 -+// 16744 䅨 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x0e,0x10,0x10,0x32,0x30,0x54,0x12,0x10,0x02,0x02,0x02,0x02,0x02,0x82,0x00 -+// 16745 䅩 ; -+,0x00,0x00,0x0e,0x00,0x00,0x0d,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x04,0x08,0x3c,0x02,0x46,0x40,0x44,0x00,0x42,0x81,0x00 -+// 16746 䅪 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x08,0x1a,0x12,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x12,0x92,0x92,0x10,0x11,0x00,0x82,0x92,0x92,0x82,0x20,0x46,0x83,0x00 -+// 16747 䅫 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0d,0x08,0x08,0x1e,0x12,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x01,0x00,0x46,0x02,0x42,0x02,0x10,0x10,0x50,0x92,0x11,0x30,0x00 -+// 16748 䅬 ; -+,0x00,0x02,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x28,0x0a,0x00,0x20,0x42,0x80,0x86,0xa8,0xa8,0xa8,0xa8,0xab,0x00 -+// 16749 䅭 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x09,0x1e,0x1a,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x13,0x00,0x24,0x00,0x83,0x10,0x00,0x20,0x20,0x02,0x44,0x04,0x0c,0x00 -+// 16750 䅮 ; -+,0x00,0x00,0x0e,0x00,0x00,0x0e,0x08,0x0c,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x44,0x93,0x82,0x82,0x82,0xc2,0x80,0xc2,0x82,0x02,0x42,0x00 -+// 16751 䅯 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x0a,0x28,0x09,0x09,0x08,0x08,0x00,0x00,0x10,0x10,0x90,0x90,0x92,0x93,0x92,0x92,0x90,0x10,0x46,0x42,0x42,0x46,0x00 -+// 16752 䅰 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x0e,0x10,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x92,0x92,0x96,0x92,0x8a,0xa6,0xc2,0x82,0x10,0x50,0x41,0x40,0x7e,0x00 -+// 16753 䅱 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x08,0x1e,0x12,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x10,0x92,0x92,0x00,0x02,0x00,0x42,0x02,0x42,0x00,0x04,0x20,0x09,0x00 -+// 16754 䅲 ; -+,0x00,0x00,0x0c,0x04,0x04,0x05,0x04,0x0c,0x0e,0x15,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x02,0x16,0x1d,0x10,0x04,0x40,0x42,0x00,0x42,0x42,0x42,0x42,0x42,0x00 -+// 16755 䅳 ; -+,0x00,0x02,0x0c,0x00,0x00,0x0e,0x08,0x08,0x1a,0x00,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x42,0x02,0x82,0x2a,0x22,0x46,0x60,0x42,0x02,0x22,0x6a,0x22,0x46,0x00 -+// 16756 䅴 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x09,0x08,0x1e,0x12,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x93,0x20,0x04,0x58,0x20,0xf2,0x10,0xd4,0x92,0x30,0x00 -+// 16757 䅵 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x08,0x1e,0x12,0x20,0x00,0x00,0x00,0x09,0x00,0x00,0x04,0x24,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x00,0x00,0x21,0x01,0x00 -+// 16758 䅶 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x0a,0x29,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0x80,0x80,0x81,0x82,0x88,0x24,0x03,0x04,0x24,0x24,0x04,0x0c,0x00 -+// 16759 䅷 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x0a,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x44,0x44,0x44,0x40,0x20,0x40,0x86,0x10,0x10,0x12,0x10,0x90,0x12,0x30,0x00 -+// 16760 䅸 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x44,0x44,0x50,0x12,0x00,0x04,0x00,0x10,0x10,0x12,0x10,0x10,0x10,0x00 -+// 16761 䅹 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x92,0x92,0x92,0x92,0x10,0x92,0x92,0x82,0x20,0x44,0x08,0x3c,0x42,0x00 -+// 16762 䅺 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1e,0x10,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x28,0x28,0xab,0xa8,0xaa,0x80,0x06,0x00,0x11,0x10,0xd0,0x13,0x31,0x00 -+// 16763 䅻 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0a,0x08,0x08,0x1a,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x10,0x10,0x00,0x88,0x9a,0x82,0x92,0x10,0x21,0x21,0x45,0x65,0x01,0x02,0x00 -+// 16764 䅼 ; -+,0x00,0x00,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x00,0x83,0xa8,0xa8,0x02,0x06,0x04,0x38,0x38,0x07,0x00 -+// 16765 䅽 ; -+,0x00,0x00,0x06,0x00,0x00,0x16,0x10,0x10,0x00,0x20,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0xa4,0xa7,0x02,0x86,0x8c,0x16,0x32,0x40,0x42,0xe0,0x50,0x4c,0x42,0x00 -+// 16766 䅾 ; -+,0x00,0x06,0x18,0x08,0x08,0x08,0x08,0x08,0x1c,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x4c,0x4c,0xc6,0x82,0x6a,0x02,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16767 䅿 ; -+,0x00,0x02,0x08,0x08,0x08,0x0a,0x08,0x08,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x44,0x00,0x02,0x50,0x50,0x56,0x50,0x12,0x10,0x11,0x10,0x10,0x00 -+// 16768 䆀 ; -+,0x00,0x02,0x0c,0x00,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x92,0x92,0x96,0xb2,0x92,0x10,0x10,0x10,0x10,0x11,0x00,0x2a,0x21,0x00 -+// 16769 䆁 ; -+,0x00,0x02,0x18,0x08,0x08,0x08,0x08,0x0c,0x1a,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xaa,0xaa,0xaa,0x82,0x10,0x10,0x11,0x04,0x2a,0x10,0x13,0x10,0x10,0x00 -+// 16770 䆂 ; -+,0x00,0x04,0x18,0x08,0x08,0x08,0x08,0x18,0x1d,0x29,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x10,0x12,0x00,0x20,0xa8,0x2a,0x2a,0x2b,0x2a,0x2a,0x68,0x28,0x2b,0x28,0x00 -+// 16771 䆃 ; -+,0x00,0x00,0x08,0x00,0x09,0x01,0x01,0x09,0x11,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x88,0x50,0x40,0x08,0x08,0x08,0x08,0xfe,0x38,0x40,0xe0,0x40,0x44,0x42,0x00 -+// 16772 䆄 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x11,0x00,0x82,0x8a,0x8a,0x8a,0x82,0x00,0x44,0x44,0x04,0x44,0x01,0x00 -+// 16773 䆅 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x90,0x0a,0x08,0x84,0x82,0x02,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x00 -+// 16774 䆆 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x44,0x44,0x21,0x29,0xab,0x00,0x10,0x38,0x30,0x54,0x92,0x10,0x00 -+// 16775 䆇 ; -+,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x0c,0x1a,0x18,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x86,0x80,0xa8,0xc8,0xc8,0xc8,0x48,0x44,0x4e,0x06,0x0a,0x09,0x01,0x00 -+// 16776 䆈 ; -+,0x00,0x00,0x08,0x09,0x09,0x08,0x08,0x19,0x1d,0x09,0x29,0x09,0x09,0x0a,0x08,0x00,0x00,0x00,0x42,0x42,0x42,0x4a,0x48,0x4a,0x40,0x48,0x08,0x0a,0x08,0x48,0x1f,0x00 -+// 16777 䆉 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x0d,0x1a,0x09,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0xa9,0x28,0x00,0x48,0x8a,0x98,0x08,0x27,0x28,0x2b,0x28,0x28,0x27,0x00 -+// 16778 䆊 ; -+,0x00,0x00,0x0c,0x08,0x09,0x0a,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x28,0x2a,0x28,0x2f,0x82,0x92,0x92,0x92,0x28,0x2a,0x28,0x20,0x60,0x83,0x00 -+// 16779 䆋 ; -+,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x0c,0x18,0x08,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x40,0x48,0x80,0x22,0x22,0x28,0xaa,0xe2,0xaa,0x22,0xea,0xa0,0x20,0x39,0x00 -+// 16780 䆌 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x0c,0x1a,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xca,0x08,0x8c,0xcc,0x14,0x07,0x10,0x00,0x04,0x04,0x82,0x82,0x82,0x00 -+// 16781 䆍 ; -+,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x08,0x1f,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x08,0x08,0x28,0x08,0x00,0x20,0x08,0x28,0x28,0x28,0x28,0x28,0x29,0x6f,0x00 -+// 16782 䆎 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x84,0xa6,0x74,0x00,0xa4,0xa4,0xa7,0xb6,0xa6,0xa4,0xa4,0x83,0x01,0x00 -+// 16783 䆏 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0a,0x08,0x08,0x1a,0x0a,0x28,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x3a,0x70,0x16,0x84,0x84,0x94,0x84,0x4a,0x48,0x49,0x40,0x82,0x00 -+// 16784 䆐 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x01,0x00,0x04,0x08,0x11,0x04,0x0c,0x0d,0x04,0x00,0x00,0x40,0x88,0x02,0x60,0x4a,0x40,0x08,0x18,0x10,0x20,0x89,0x18,0x2c,0x0a,0x00 -+// 16785 䆑 ; -+,0x00,0x00,0x00,0x10,0x13,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x80,0x40,0x02,0x00,0x08,0x04,0x04,0xc0,0x40,0x40,0x40,0x40,0x40,0x80,0x00 -+// 16786 䆒 ; -+,0x00,0x00,0x00,0x10,0x10,0x02,0x08,0x01,0x01,0x01,0x01,0x02,0x03,0x04,0x00,0x00,0x00,0x80,0x40,0x03,0x02,0x08,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 16787 䆓 ; -+,0x00,0x00,0x00,0x00,0x10,0x02,0x08,0x01,0x06,0x00,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x80,0x40,0x02,0x00,0x08,0x84,0x10,0x08,0x08,0x20,0x20,0x20,0x20,0x3f,0x00 -+// 16788 䆔 ; -+,0x00,0x00,0x00,0x10,0x13,0x06,0x08,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x03,0x02,0x08,0x44,0x00,0xc4,0x04,0x44,0xc4,0x00,0x00,0x00,0x00 -+// 16789 䆕 ; -+,0x00,0x00,0x00,0x10,0x10,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x80,0x40,0x03,0x02,0x08,0x84,0x80,0x88,0x88,0x8a,0x00,0x10,0x18,0x06,0x00 -+// 16790 䆖 ; -+,0x00,0x00,0x00,0x10,0x10,0x02,0x08,0x00,0x01,0x01,0x02,0x04,0x01,0x06,0x04,0x00,0x00,0x80,0x40,0x03,0x02,0x08,0x84,0x80,0x86,0x00,0xc0,0x80,0x00,0x0c,0x04,0x00 -+// 16791 䆗 ; -+,0x00,0x00,0x00,0x00,0x11,0x06,0x08,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x40,0x40,0x03,0x00,0x0c,0x04,0x04,0x04,0x04,0x04,0x64,0x04,0x04,0x04,0x00 -+// 16792 䆘 ; -+,0x00,0x00,0x00,0x10,0x13,0x04,0x08,0x00,0x00,0x04,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x03,0x00,0x0c,0x04,0x0c,0x00,0xc8,0x00,0x48,0x40,0x00,0x00,0x00 -+// 16793 䆙 ; -+,0x00,0x00,0x00,0x10,0x11,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x03,0x02,0x08,0x04,0x04,0x40,0x40,0x44,0x40,0x40,0x40,0x42,0x00 -+// 16794 䆚 ; -+,0x00,0x00,0x00,0x10,0x13,0x04,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x40,0x03,0x00,0x04,0x02,0x04,0x04,0x04,0x24,0x24,0x24,0x04,0x0c,0x00 -+// 16795 䆛 ; -+,0x00,0x00,0x00,0x10,0x13,0x04,0x08,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x40,0x03,0x00,0x0c,0x04,0x18,0x20,0x20,0x22,0x20,0x20,0x20,0x1e,0x00 -+// 16796 䆜 ; -+,0x00,0x00,0x00,0x10,0x12,0x04,0x00,0x01,0x02,0x06,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x40,0x40,0x02,0x10,0xcc,0x84,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 16797 䆝 ; -+,0x00,0x00,0x00,0x10,0x10,0x02,0x08,0x01,0x05,0x05,0x05,0x05,0x05,0x05,0x00,0x00,0x00,0x80,0x40,0x03,0x02,0x08,0x84,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x00,0x00 -+// 16798 䆞 ; -+,0x00,0x00,0x00,0x10,0x02,0x00,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x40,0x40,0x02,0x0c,0x02,0x08,0x08,0x08,0x08,0x00,0x78,0x00,0x04,0x0c,0x00 -+// 16799 䆟 ; -+,0x00,0x00,0x00,0x10,0x23,0x04,0x01,0x02,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x40,0x02,0x10,0x8c,0x80,0x00,0x08,0x06,0x00,0x18,0x08,0x08,0x18,0x00 -+// 16800 䆠 ; -+,0x00,0x00,0x00,0x10,0x22,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x80,0x40,0x03,0x18,0x04,0x0a,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x04,0x00 -+// 16801 䆡 ; -+,0x00,0x00,0x00,0x10,0x23,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x80,0x40,0x02,0x18,0x44,0x48,0x08,0x08,0x08,0x08,0x0c,0x40,0x30,0x0e,0x00 -+// 16802 䆢 ; -+,0x00,0x00,0x00,0x10,0x23,0x04,0x00,0x04,0x04,0x04,0x04,0x1c,0x04,0x04,0x0c,0x00,0x00,0x80,0x40,0x02,0x10,0x04,0x22,0x20,0x24,0x24,0x25,0x30,0x08,0x44,0x03,0x00 -+// 16803 䆣 ; -+,0x00,0x00,0x00,0x10,0x03,0x04,0x00,0x04,0x04,0x04,0x05,0x01,0x09,0x01,0x01,0x00,0x00,0x40,0x40,0x02,0x08,0x06,0x04,0x00,0x08,0x00,0x04,0x04,0x10,0x08,0x06,0x00 -+// 16804 䆤 ; -+,0x00,0x00,0x00,0x10,0x02,0x0c,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x40,0x41,0x02,0x08,0x86,0x08,0x08,0x08,0x0a,0x0c,0x38,0x68,0x88,0x18,0x00 -+// 16805 䆥 ; -+,0x00,0x00,0x00,0x11,0x03,0x04,0x00,0x01,0x06,0x01,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x03,0x08,0x06,0x88,0x80,0x98,0xc0,0x40,0xe8,0x24,0x43,0xc0,0x00 -+// 16806 䆦 ; -+,0x00,0x00,0x00,0x10,0x02,0x08,0x02,0x00,0x03,0x04,0x00,0x04,0x01,0x03,0x04,0x00,0x00,0x80,0x40,0x02,0x0c,0x4e,0x90,0xa0,0x18,0x44,0xc8,0xd0,0xa0,0x18,0x0e,0x00 -+// 16807 䆧 ; -+,0x00,0x00,0x00,0x10,0x02,0x0c,0x00,0x01,0x02,0x01,0x01,0x02,0x02,0x00,0x01,0x00,0x00,0x40,0x40,0x02,0x0c,0x72,0x44,0xc0,0x48,0x42,0x02,0x10,0x20,0xf0,0x0c,0x00 -+// 16808 䆨 ; -+,0x00,0x00,0x00,0x11,0x02,0x0c,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x80,0x40,0x02,0x08,0x0e,0x08,0x08,0x18,0x08,0x80,0x86,0x80,0x10,0x0e,0x00 -+// 16809 䆩 ; -+,0x00,0x00,0x00,0x10,0x06,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x80,0x40,0x02,0x0c,0x0e,0x08,0x08,0x08,0x08,0x88,0x86,0x00,0x10,0x0e,0x00 -+// 16810 䆪 ; -+,0x00,0x04,0x04,0x05,0x15,0x04,0x07,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x02,0x01,0x00,0x00,0x00,0x10,0x00,0x42,0x20,0x24,0x42,0x04,0x10,0x10,0x10,0x12,0x01,0xff,0x00 -+// 16811 䆫 ; -+,0x00,0x00,0x00,0x10,0x12,0x06,0x05,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x00,0x40,0x02,0x0c,0x04,0x24,0x44,0xe4,0xa8,0x18,0x80,0x42,0x09,0xf8,0x00 -+// 16812 䆬 ; -+,0x00,0x00,0x00,0x11,0x02,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x01,0x06,0x00,0x00,0x40,0x41,0x00,0x0c,0x18,0x00,0x00,0x0c,0x08,0x00,0x08,0x08,0x00,0x0c,0x00 -+// 16813 䆭 ; -+,0x00,0x00,0x00,0x11,0x06,0x00,0x06,0x00,0x16,0x14,0x10,0x14,0x00,0x04,0x00,0x00,0x00,0x00,0x41,0x02,0x04,0x00,0x02,0x08,0x88,0x88,0x89,0x88,0x08,0x08,0x08,0x00 -+// 16814 䆮 ; -+,0x00,0x00,0x00,0x11,0x02,0x00,0x08,0x00,0x10,0x00,0x02,0x08,0x18,0x08,0x08,0x00,0x00,0x80,0x42,0x02,0x0c,0x04,0x04,0x0c,0x0c,0x02,0x00,0x98,0x50,0x60,0x8e,0x00 -+// 16815 䆯 ; -+,0x00,0x00,0x00,0x12,0x04,0x01,0x03,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x01,0x00,0x00,0x40,0x41,0x00,0x06,0x08,0x18,0x08,0x2c,0x18,0x84,0x82,0x10,0x60,0x8c,0x00 -+// 16816 䆰 ; -+,0x00,0x00,0x00,0x10,0x22,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x0a,0x08,0x0c,0x00,0x00,0x80,0x40,0x03,0x0c,0x06,0x00,0x10,0x10,0x10,0x00,0xa4,0xa4,0x00,0x02,0x00 -+// 16817 䆱 ; -+,0x00,0x00,0x00,0x10,0x12,0x00,0x08,0x00,0x10,0x04,0x00,0x08,0x09,0x08,0x09,0x00,0x00,0x00,0x41,0x00,0x0c,0x12,0x2c,0xa0,0x68,0xe6,0x20,0x24,0x50,0xc8,0x06,0x00 -+// 16818 䆲 ; -+,0x00,0x00,0x00,0x10,0x06,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x02,0x00,0x00,0x00,0x00,0x42,0x02,0x0c,0x44,0x44,0x40,0x48,0x48,0x48,0x44,0x50,0x4c,0x42,0x00 -+// 16819 䆳 ; -+,0x00,0x00,0x00,0x10,0x03,0x00,0x00,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x11,0x00,0x00,0x40,0x40,0x02,0x0c,0x02,0x04,0x40,0x28,0x70,0x30,0x92,0x10,0x20,0xfe,0x00 -+// 16820 䆴 ; -+,0x00,0x00,0x00,0x10,0x12,0x01,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x03,0x08,0x04,0x20,0x44,0x44,0x44,0x40,0x40,0x44,0x40,0x41,0x00 -+// 16821 䆵 ; -+,0x00,0x00,0x00,0x11,0x13,0x01,0x01,0x10,0x10,0x10,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0x03,0x0c,0x04,0x22,0x02,0x12,0x62,0x00,0x08,0x08,0x08,0x08,0x00 -+// 16822 䆶 ; -+,0x00,0x00,0x00,0x10,0x22,0x0a,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x09,0x18,0x00,0x00,0x80,0x40,0x02,0x0c,0x44,0x44,0x40,0x44,0x40,0x40,0x42,0x00,0x12,0x91,0x00 -+// 16823 䆷 ; -+,0x00,0x00,0x00,0x10,0x22,0x00,0x00,0x01,0x02,0x08,0x09,0x0a,0x09,0x09,0x08,0x00,0x00,0x80,0x40,0x02,0x0c,0x34,0xc0,0xcc,0x40,0x80,0x04,0x1c,0x24,0x24,0x0c,0x00 -+// 16824 䆸 ; -+,0x00,0x00,0x00,0x10,0x02,0x00,0x01,0x09,0x06,0x08,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x40,0x40,0x02,0x0c,0x04,0xa0,0x00,0x38,0x07,0x10,0x10,0x10,0x10,0x22,0x00 -+// 16825 䆹 ; -+,0x00,0x00,0x00,0x10,0x22,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x80,0x40,0x22,0x0c,0x44,0x00,0x20,0x02,0x08,0x48,0x48,0x48,0x40,0x42,0x00 -+// 16826 䆺 ; -+,0x00,0x00,0x00,0x10,0x02,0x00,0x00,0x02,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x42,0x02,0x0c,0x72,0x40,0x52,0xe0,0x40,0x0e,0x48,0x48,0x08,0x08,0x00 -+// 16827 䆻 ; -+,0x00,0x00,0x00,0x12,0x04,0x10,0x02,0x03,0x11,0x11,0x11,0x11,0x11,0x39,0x01,0x00,0x00,0x00,0x42,0x02,0x0c,0x14,0x20,0xa2,0x04,0x04,0x04,0x08,0x08,0x14,0x23,0x00 -+// 16828 䆼 ; -+,0x00,0x00,0x00,0x10,0x06,0x00,0x08,0x00,0x00,0x0d,0x00,0x00,0x00,0x0c,0x13,0x00,0x00,0x00,0x42,0x02,0x0c,0x84,0x88,0xa8,0xa8,0xa2,0x0a,0x02,0x02,0x04,0xfe,0x00 -+// 16829 䆽 ; -+,0x00,0x00,0x00,0x10,0x06,0x08,0x00,0x00,0x00,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x41,0x00,0x0c,0x82,0x84,0x90,0x80,0x72,0xc0,0x48,0x70,0x8c,0x22,0x00 -+// 16830 䆾 ; -+,0x00,0x00,0x00,0x10,0x06,0x08,0x0a,0x08,0x08,0x0a,0x0a,0x00,0x01,0x01,0x0d,0x00,0x00,0x80,0x42,0x02,0x0c,0x92,0x20,0xa0,0x80,0x08,0x00,0x04,0x24,0x24,0x2f,0x00 -+// 16831 䆿 ; -+,0x00,0x00,0x00,0x11,0x06,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x0a,0x12,0x02,0x00,0x00,0x40,0x43,0x02,0x04,0x24,0x84,0x84,0x84,0x84,0x10,0x32,0x10,0x56,0x11,0x00 -+// 16832 䇀 ; -+,0x00,0x00,0x00,0x10,0x06,0x08,0x0b,0x0a,0x04,0x15,0x15,0x14,0x04,0x04,0x04,0x00,0x00,0x40,0x41,0x02,0x0c,0x04,0x82,0x24,0x24,0x24,0x24,0x24,0xa5,0x04,0x04,0x00 -+// 16833 䇁 ; -+,0x00,0x00,0x00,0x10,0x02,0x04,0x04,0x0b,0x12,0x02,0x0a,0x02,0x00,0x02,0x10,0x00,0x00,0x80,0xc2,0x02,0x0c,0x06,0x20,0x08,0x80,0x80,0x90,0x80,0x10,0x80,0x80,0x00 -+// 16834 䇂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x44,0x00,0x10,0x20,0x20,0x43,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 16835 䇃 ; -+,0x00,0x00,0x08,0x04,0x00,0x00,0x00,0x12,0x12,0x0a,0x00,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x42,0x40,0x00,0x00,0x00,0x01,0x41,0x7f,0x00 -+// 16836 䇄 ; -+,0x00,0x00,0x08,0x04,0x00,0x00,0x02,0x12,0x12,0x10,0x14,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x20,0x20,0x42,0x00,0x00,0x04,0x0c,0x10,0x20,0x20,0x40,0x81,0x7f,0x00 -+// 16837 䇅 ; -+,0x00,0x00,0x08,0x04,0x04,0x01,0x00,0x02,0x12,0x0a,0x08,0x00,0x04,0x38,0x00,0x00,0x00,0x20,0x20,0x24,0x20,0x23,0x20,0x02,0x12,0x14,0x1c,0x08,0x18,0x24,0x03,0x00 -+// 16838 䇆 ; -+,0x00,0x00,0x04,0x04,0x00,0x00,0x02,0x12,0x02,0x0a,0x00,0x00,0x1c,0x10,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x04,0x04,0x24,0x24,0x07,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16839 䇇 ; -+,0x00,0x00,0x08,0x00,0x02,0x00,0x00,0x12,0x14,0x14,0x14,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x92,0x90,0x90,0x91,0x80,0x88,0x88,0x84,0xc5,0x83,0x00 -+// 16840 䇈 ; -+,0x00,0x00,0x08,0x04,0x00,0x00,0x02,0x02,0x12,0x00,0x04,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x38,0x10,0x2c,0x12,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 16841 䇉 ; -+,0x00,0x00,0x08,0x04,0x01,0x00,0x02,0x12,0x12,0x11,0x04,0x00,0x1c,0x20,0x00,0x00,0x00,0x00,0x03,0x20,0x20,0x20,0x40,0x42,0xc2,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 16842 䇊 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x02,0x10,0x14,0x00,0x04,0x30,0x01,0x00,0x00,0x00,0x00,0x08,0x8b,0x80,0x80,0x88,0x88,0x90,0x90,0x80,0x82,0x43,0x71,0x00,0x00 -+// 16843 䇋 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x02,0x10,0x14,0x00,0x04,0x30,0x00,0x00,0x00,0x00,0x00,0x20,0x22,0x44,0x04,0x10,0x20,0x18,0x33,0x62,0x14,0x04,0x10,0x40,0x00 -+// 16844 䇌 ; -+,0x00,0x00,0x08,0x00,0x02,0x00,0x02,0x12,0x10,0x10,0x00,0x04,0x20,0x00,0x00,0x00,0x00,0x10,0x12,0x52,0x54,0x10,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x86,0x00 -+// 16845 䇍 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x02,0x00,0x10,0x14,0x00,0x04,0x30,0x01,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x52,0x10,0x10,0xdb,0x90,0x90,0xd0,0x30,0x1f,0x00 -+// 16846 䇎 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x02,0x10,0x14,0x00,0x04,0x30,0x00,0x00,0x00,0x00,0x00,0x08,0x2a,0x08,0x08,0x08,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 16847 䇏 ; -+,0x00,0x00,0x08,0x00,0x02,0x00,0x02,0x10,0x14,0x10,0x00,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x04,0x04,0x00,0x04,0x00,0x10,0x10,0x10,0x10,0x30,0x00 -+// 16848 䇐 ; -+,0x00,0x00,0x08,0x00,0x02,0x00,0x02,0x00,0x10,0x14,0x00,0x04,0x31,0x00,0x00,0x00,0x00,0x20,0x20,0x36,0x24,0x37,0x24,0x34,0x20,0xb6,0x70,0x28,0x24,0x23,0x60,0x00 -+// 16849 䇑 ; -+,0x00,0x00,0x08,0x00,0x02,0x00,0x02,0x12,0x10,0x10,0x00,0x04,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x82,0xa2,0x00,0x10,0x93,0x10,0x10,0x10,0x00 -+// 16850 䇒 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x12,0x1d,0x18,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x10,0x50,0x52,0x18,0x28,0x49,0x0f,0x40,0x44,0x10,0x10,0x20,0x42,0x00 -+// 16851 䇓 ; -+,0x00,0x04,0x04,0x00,0x06,0x08,0x02,0x04,0x08,0x01,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0xa4,0x84,0x84,0x84,0x84,0x40,0x86,0x40,0x00,0x10,0x20,0x22,0x00 -+// 16852 䇔 ; -+,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x00,0x14,0x14,0x10,0x14,0x10,0x01,0x04,0x00,0x00,0x80,0x82,0x08,0x00,0x08,0x08,0x00,0x16,0x30,0x50,0x5c,0x10,0x80,0x23,0x00 -+// 16853 䇕 ; -+,0x00,0x00,0x08,0x08,0x05,0x00,0x04,0x04,0x14,0x10,0x00,0x08,0x30,0x00,0x00,0x00,0x00,0x02,0x10,0x11,0x11,0x10,0x10,0x00,0x20,0x20,0xaa,0x2a,0x2a,0x2a,0x02,0x00 -+// 16854 䇖 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x06,0x04,0x08,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x4c,0x04,0x00,0x46,0x44,0x84,0x84,0x04,0x04,0x04,0x18,0x00 -+// 16855 䇗 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x02,0x04,0x08,0x11,0x02,0x00,0x0c,0x04,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x20,0x00,0x10,0x8c,0x07,0x00,0x10,0x08,0x04,0x00 -+// 16856 䇘 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x01,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x06,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x23,0x00 -+// 16857 䇙 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x03,0x00,0x00,0x10,0x10,0x28,0x04,0x00,0x84,0x84,0x84,0x04,0x04,0x84,0x84,0x84,0x04,0x00 -+// 16858 䇚 ; -+,0x00,0x04,0x08,0x0a,0x11,0x00,0x02,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x28,0x04,0x04,0x20,0x20,0x20,0x30,0x24,0x22,0x20,0x20,0x20,0x00 -+// 16859 䇛 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x40,0x40,0x40,0x44,0x40,0x40,0x40,0x40,0x43,0x00 -+// 16860 䇜 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x02,0x02,0x04,0x08,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x00,0x04,0x04,0xc0,0xc0,0xa0,0x10,0x18,0x06,0x00 -+// 16861 䇝 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x10,0x12,0x80,0x80,0x88,0xb0,0xc0,0x32,0x1e,0x00 -+// 16862 䇞 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x02,0x00,0x06,0x00,0x02,0x02,0x00,0x02,0x02,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x08,0x00,0x18,0x00,0x10,0x00,0x00,0x10,0x10,0x00 -+// 16863 䇟 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x04,0x04,0x09,0x01,0x05,0x02,0x04,0x08,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x10,0x10,0x92,0x12,0x02,0x22,0x22,0x42,0x04,0x00 -+// 16864 䇠 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x04,0x04,0x80,0x04,0x80,0x80,0xcc,0x80,0x80,0x80,0x02,0x00 -+// 16865 䇡 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x04,0x04,0x40,0x06,0x04,0x02,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 16866 䇢 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x28,0x04,0x04,0x80,0x83,0x80,0x80,0x0c,0x00,0x00,0x08,0x08,0x00 -+// 16867 䇣 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x01,0x02,0x0c,0x00,0x02,0x04,0x00,0x01,0x00,0x00,0x10,0x10,0x28,0x04,0x04,0x80,0x00,0x10,0x4f,0x00,0x08,0x04,0x04,0x80,0x00 -+// 16868 䇤 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x0a,0x08,0x08,0x00,0x00,0x10,0x10,0x28,0x44,0x00,0x02,0x00,0xc6,0x84,0x84,0x24,0x14,0x04,0x0c,0x00 -+// 16869 䇥 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x02,0xc0,0x00,0x00,0x44,0x00,0x00,0x00,0x42,0x00 -+// 16870 䇦 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x00,0x08,0x08,0x08,0x08,0x01,0x01,0x02,0x08,0x00,0x00,0x10,0x10,0x28,0x04,0x84,0x80,0xc8,0x88,0x88,0x8b,0x00,0x00,0x08,0x06,0x00 -+// 16871 䇧 ; -+,0x00,0x04,0x08,0x08,0x12,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x28,0x08,0x02,0xc0,0x80,0x84,0x84,0x84,0x34,0x14,0x04,0x04,0x00 -+// 16872 䇨 ; -+,0x00,0x04,0x08,0x10,0x02,0x01,0x02,0x00,0x01,0x00,0x00,0x04,0x08,0x00,0x00,0x00,0x00,0x10,0xb1,0x00,0x04,0x10,0x30,0xe0,0xb0,0x4f,0x48,0x40,0x42,0x40,0x40,0x00 -+// 16873 䇩 ; -+,0x00,0x04,0x08,0x00,0x12,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xa1,0x28,0x00,0x80,0x8c,0x80,0x88,0x80,0xcc,0x48,0x70,0xe0,0x1e,0x00 -+// 16874 䇪 ; -+,0x00,0x04,0x08,0x08,0x12,0x02,0x00,0x01,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x48,0x00,0x02,0x00,0x00,0x0c,0x40,0x04,0x00,0x00,0x03,0x00 -+// 16875 䇫 ; -+,0x00,0x08,0x08,0x14,0x02,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x22,0x50,0x48,0x00,0x40,0x40,0x48,0x08,0x08,0x08,0x48,0x40,0x43,0x00 -+// 16876 䇬 ; -+,0x00,0x04,0x08,0x08,0x12,0x00,0x04,0x04,0x08,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x10,0x28,0x08,0x40,0x00,0xc8,0x00,0xc2,0x80,0x00,0x18,0x06,0x02,0x00 -+// 16877 䇭 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x03,0x02,0x01,0x00,0x00,0x10,0x91,0x28,0x04,0x84,0x9c,0x98,0xb2,0x40,0x08,0x30,0x00,0x02,0xfe,0x00 -+// 16878 䇮 ; -+,0x00,0x04,0x08,0x0a,0x11,0x00,0x06,0x04,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x04,0x00,0x00,0x38,0x20,0x20,0x23,0x20,0x20,0x20,0x02,0x00 -+// 16879 䇯 ; -+,0x00,0x00,0x08,0x10,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0xa1,0x28,0x44,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x00 -+// 16880 䇰 ; -+,0x00,0x04,0x08,0x12,0x02,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x10,0xb1,0x28,0x04,0x08,0x10,0x00,0x4c,0x40,0x50,0x48,0x46,0x80,0x06,0x00 -+// 16881 䇱 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x08,0x00,0x01,0x00,0x00,0x00,0x01,0x08,0x08,0x00,0x00,0x10,0x10,0x28,0x04,0x00,0x06,0x82,0x12,0x12,0x62,0x62,0x02,0x02,0x06,0x00 -+// 16882 䇲 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x10,0x91,0x28,0x04,0x40,0xc6,0x80,0x88,0x90,0xa3,0x80,0x10,0x08,0x06,0x00 -+// 16883 䇳 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xa1,0x28,0x04,0x00,0x9c,0x80,0x88,0x82,0xc8,0x48,0x60,0x11,0x0f,0x00 -+// 16884 䇴 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x01,0x01,0x09,0x01,0x02,0x02,0x08,0x08,0x08,0x00,0x00,0x10,0xa1,0x28,0x04,0x02,0x20,0x20,0x24,0x24,0x24,0x2c,0x04,0x04,0x04,0x00 -+// 16885 䇵 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x08,0x00,0x12,0x08,0x04,0x18,0x08,0x09,0x08,0x00,0x00,0x10,0x20,0x28,0x44,0x00,0x1c,0x80,0x80,0x88,0x88,0x88,0x08,0x08,0x08,0x00 -+// 16886 䇶 ; -+,0x00,0x00,0x08,0x10,0x02,0x01,0x03,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x91,0x28,0x04,0x00,0x30,0x20,0x44,0x44,0x44,0x44,0x44,0x44,0x4c,0x00 -+// 16887 䇷 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x08,0x01,0x00,0x00,0x00,0xa1,0x28,0x44,0x00,0x84,0x84,0x94,0x04,0x84,0x94,0x84,0x84,0x8c,0x00 -+// 16888 䇸 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xa1,0x28,0x04,0x00,0x08,0x08,0x08,0x04,0x80,0x80,0x80,0x80,0x82,0x00 -+// 16889 䇹 ; -+,0x00,0x04,0x08,0x08,0x12,0x00,0x01,0x01,0x01,0x03,0x02,0x06,0x0a,0x02,0x02,0x00,0x00,0x10,0x20,0x28,0x48,0x00,0x08,0x0a,0x08,0x08,0x00,0x08,0x08,0x08,0x08,0x00 -+// 16890 䇺 ; -+,0x00,0x04,0x08,0x08,0x12,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x10,0x20,0x28,0x48,0x00,0x06,0x00,0x08,0x08,0x08,0x00,0x10,0x20,0x02,0x00 -+// 16891 䇻 ; -+,0x00,0x04,0x08,0x0a,0x12,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x10,0x91,0x28,0x00,0x06,0x00,0x04,0x18,0x40,0x4c,0x42,0x40,0x40,0x7e,0x00 -+// 16892 䇼 ; -+,0x00,0x04,0x08,0x02,0x12,0x00,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x10,0xb1,0x28,0x00,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x00,0x02,0xfe,0x00 -+// 16893 䇽 ; -+,0x00,0x04,0x08,0x08,0x12,0x00,0x04,0x04,0x04,0x04,0x04,0x1c,0x04,0x04,0x0c,0x00,0x00,0x10,0x20,0x28,0x48,0x00,0x06,0x40,0x40,0x48,0x08,0x08,0x88,0x08,0x08,0x00 -+// 16894 䇾 ; -+,0x00,0x00,0x08,0x0a,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x30,0x28,0x00,0x80,0x40,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 16895 䇿 ; -+,0x00,0x04,0x08,0x00,0x12,0x00,0x00,0x00,0x08,0x08,0x08,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0xb1,0x28,0x04,0x00,0xc2,0x00,0xc4,0x04,0xc4,0x80,0x10,0x08,0x06,0x00 -+// 16896 䈀 ; -+,0x00,0x00,0x08,0x02,0x12,0x00,0x0d,0x09,0x09,0x0f,0x09,0x01,0x11,0x16,0x04,0x00,0x00,0x10,0xa1,0x28,0x40,0x00,0x40,0x48,0x48,0x68,0x48,0x48,0x40,0x40,0xcc,0x00 -+// 16897 䈁 ; -+,0x00,0x04,0x08,0x10,0x02,0x00,0x01,0x02,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x10,0xa1,0x28,0x00,0xc0,0x20,0x1c,0x12,0x00,0x24,0x24,0x24,0x24,0x0c,0x00 -+// 16898 䈂 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x01,0x00,0x01,0x00,0x03,0x02,0x02,0x04,0x08,0x00,0x00,0x10,0x20,0x28,0x44,0x10,0x00,0x24,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x00 -+// 16899 䈃 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x04,0x00,0x10,0x00,0x04,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0x26,0x24,0x04,0x44,0x00,0x86,0x84,0x84,0x84,0x00 -+// 16900 䈄 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x00,0x02,0x11,0x10,0x12,0x14,0x10,0x18,0x00,0x00,0x00,0x20,0x28,0x00,0x00,0x10,0x40,0x5a,0x42,0x42,0x5a,0x4a,0x82,0x02,0x00 -+// 16901 䈅 ; -+,0x00,0x04,0x08,0x08,0x12,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x00,0x1c,0x00,0x00,0x00,0x00,0x20,0x08,0x08,0x00,0x28,0x22,0x20,0x24,0x28,0x18,0x10,0x2c,0x03,0x00 -+// 16902 䈆 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x11,0x02,0x00,0x00,0x00,0xa0,0x08,0x08,0x40,0x44,0x04,0x04,0x50,0x40,0xc0,0xa0,0x10,0x0e,0x00 -+// 16903 䈇 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0x40,0xc8,0x00,0x08,0x08,0x00,0xc2,0x00,0x00,0x00 -+// 16904 䈈 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x09,0x09,0x09,0x09,0x09,0x01,0x01,0x11,0x03,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0x42,0x50,0x50,0x50,0x40,0x40,0x40,0x40,0x3e,0x00 -+// 16905 䈉 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0x04,0x10,0x20,0x00,0x02,0x10,0x20,0xf0,0x0c,0x00 -+// 16906 䈊 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x00,0x02,0x05,0x0b,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0xc0,0x02,0x00,0x08,0x14,0x10,0x20,0xc0,0x1e,0x00 -+// 16907 䈋 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x02,0x02,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0x4c,0x40,0x10,0x8e,0x80,0x08,0x08,0x08,0x08,0x00 -+// 16908 䈌 ; -+,0x00,0x04,0x08,0x0c,0x12,0x00,0x08,0x00,0x10,0x08,0x04,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x20,0x28,0x48,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x00 -+// 16909 䈍 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x04,0x04,0x00,0x04,0x04,0x04,0x06,0x04,0x06,0x00,0x00,0x00,0xa1,0x08,0x00,0x42,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 16910 䈎 ; -+,0x00,0x04,0x0c,0x02,0x12,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x20,0xa1,0x48,0x00,0x90,0x92,0x90,0x90,0x02,0x40,0xc2,0x40,0x4c,0x42,0x00 -+// 16911 䈏 ; -+,0x00,0x04,0x08,0x02,0x12,0x00,0x00,0x02,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0xa0,0x48,0x08,0x02,0x00,0x08,0x08,0x00,0x44,0x44,0x44,0x44,0x44,0x00 -+// 16912 䈐 ; -+,0x00,0x04,0x08,0x0a,0x12,0x08,0x08,0x0c,0x0a,0x28,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa0,0x08,0x08,0x40,0x40,0x40,0x10,0x90,0x54,0x58,0x20,0x44,0x03,0x00 -+// 16913 䈑 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa0,0x08,0x04,0x08,0x08,0x48,0x48,0x4a,0x02,0x12,0x12,0x02,0x06,0x00 -+// 16914 䈒 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa0,0x28,0x08,0x00,0x80,0x00,0x24,0x24,0x14,0x04,0x84,0x04,0x0c,0x00 -+// 16915 䈓 ; -+,0x00,0x04,0x08,0x0a,0x10,0x04,0x04,0x04,0x06,0x02,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x00,0xa0,0x08,0x08,0x0c,0x08,0x08,0x08,0x02,0x42,0xc2,0x22,0x14,0x0c,0x00 -+// 16916 䈔 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0x86,0x02,0x06,0x00,0x06,0x24,0x18,0x18,0x03,0x00 -+// 16917 䈕 ; -+,0x00,0x04,0x0c,0x02,0x10,0x00,0x00,0x02,0x02,0x00,0x00,0x04,0x04,0x09,0x10,0x00,0x00,0x20,0xa1,0x08,0x08,0x18,0x00,0x10,0x10,0x02,0x40,0x4c,0x40,0x40,0x7e,0x00 -+// 16918 䈖 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x06,0x04,0x04,0x04,0x0f,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0x08,0x28,0x08,0x08,0x28,0x0d,0x08,0x08,0x08,0x00 -+// 16919 䈗 ; -+,0x00,0x04,0x08,0x0a,0x10,0x00,0x04,0x0c,0x08,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x20,0x40,0xc2,0x00,0x84,0x22,0x4c,0x30,0x38,0x07,0x00 -+// 16920 䈘 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x02,0x01,0x02,0x04,0x09,0x0a,0x04,0x09,0x19,0x00,0x00,0x00,0xa0,0x28,0x48,0x10,0x00,0x22,0x00,0x10,0x04,0x68,0x10,0x22,0x62,0x00 -+// 16921 䈙 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x04,0x09,0x12,0x04,0x01,0x19,0x00,0x05,0x10,0x00,0x00,0x10,0xa0,0x28,0x48,0x00,0x04,0x04,0x05,0x04,0x24,0x04,0x04,0x04,0x0c,0x00 -+// 16922 䈚 ; -+,0x00,0x04,0x08,0x00,0x12,0x01,0x00,0x06,0x00,0x04,0x04,0x00,0x02,0x12,0x03,0x00,0x00,0x00,0xa0,0x28,0x08,0x00,0x08,0x04,0x08,0x08,0x08,0x00,0x42,0x02,0xf8,0x00 -+// 16923 䈛 ; -+,0x00,0x04,0x08,0x0a,0x12,0x04,0x04,0x04,0x04,0x02,0x02,0x1a,0x02,0x02,0x00,0x00,0x00,0x00,0xa0,0x08,0x08,0x00,0x82,0x02,0x82,0x84,0x94,0x88,0x88,0x96,0x83,0x00 -+// 16924 䈜 ; -+,0x00,0x04,0x0c,0x0a,0x12,0x04,0x04,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa0,0x08,0x08,0x04,0x04,0x04,0x00,0x02,0x00,0x88,0x10,0x30,0x0e,0x00 -+// 16925 䈝 ; -+,0x00,0x00,0x08,0x10,0x02,0x00,0x04,0x0c,0x08,0x10,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0xa2,0x08,0x00,0x44,0x48,0x00,0xfe,0x0c,0x08,0x08,0x08,0x08,0x08,0x00 -+// 16926 䈞 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x00,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa1,0x08,0x80,0x41,0x00,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16927 䈟 ; -+,0x00,0x00,0x08,0x14,0x02,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x08,0x10,0x00,0x00,0x10,0x20,0x08,0x08,0x00,0xc0,0x10,0x90,0x90,0x10,0x90,0x00,0x80,0x4c,0x00 -+// 16928 䈠 ; -+,0x00,0x00,0x08,0x10,0x02,0x00,0x00,0x02,0x00,0x01,0x03,0x03,0x04,0x08,0x01,0x00,0x00,0x10,0x22,0x00,0x08,0x7c,0x08,0x50,0x04,0x02,0x00,0x08,0x90,0x60,0x8f,0x00 -+// 16929 䈡 ; -+,0x00,0x00,0x08,0x12,0x02,0x04,0x09,0x13,0x02,0x00,0x00,0x00,0x10,0x30,0x03,0x00,0x00,0x00,0x20,0x10,0x08,0x04,0x24,0x44,0x64,0x88,0x18,0x40,0x42,0x01,0xf8,0x00 -+// 16930 䈢 ; -+,0x00,0x00,0x08,0x10,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x01,0x06,0x00,0x00,0x00,0x10,0xa2,0x08,0x88,0x00,0x0c,0x04,0x08,0x08,0x00,0xc2,0x00,0x08,0x07,0x00 -+// 16931 䈣 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x00,0x04,0x00,0x11,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x04,0xb0,0x22,0x24,0x44,0x20,0x18,0x10,0x2c,0x06,0x00 -+// 16932 䈤 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x04,0x04,0x0c,0x0c,0x0e,0x15,0x04,0x04,0x04,0x00,0x00,0x10,0x31,0x28,0x44,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x00 -+// 16933 䈥 ; -+,0x00,0x04,0x08,0x0a,0x12,0x04,0x09,0x10,0x1a,0x00,0x02,0x12,0x10,0x12,0x01,0x00,0x00,0x10,0x10,0x28,0x04,0x04,0x10,0x10,0x92,0x92,0x92,0x92,0x82,0xa2,0x84,0x00 -+// 16934 䈦 ; -+,0x00,0x00,0x08,0x02,0x02,0x00,0x00,0x01,0x04,0x02,0x05,0x03,0x00,0x00,0x02,0x00,0x00,0x10,0xb2,0x28,0x44,0x24,0xc4,0x24,0x04,0x00,0x84,0x14,0x20,0xc0,0x1e,0x00 -+// 16935 䈧 ; -+,0x00,0x04,0x0c,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x08,0x08,0x02,0x00,0x00,0x00,0x10,0xb1,0x04,0x54,0x80,0x90,0x00,0x10,0x14,0x04,0x02,0x2a,0xaa,0x06,0x04 -+// 16936 䈨 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x12,0x10,0x10,0x10,0x12,0x10,0x12,0x10,0x10,0x00,0x00,0x10,0xb2,0x28,0x44,0x00,0x84,0x84,0x84,0x84,0x80,0x96,0x88,0x84,0xc3,0x00 -+// 16937 䈩 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x02,0x04,0x08,0x10,0x00,0x0a,0x08,0x01,0x18,0x00,0x00,0x10,0x90,0x28,0x48,0x00,0x00,0x90,0x50,0x10,0x10,0x90,0x00,0x00,0x0c,0x00 -+// 16938 䈪 ; -+,0x00,0x04,0x0c,0x0a,0x12,0x02,0x00,0x02,0x02,0x00,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x10,0xb1,0x28,0x44,0x06,0x00,0x08,0x08,0x00,0x26,0x20,0x40,0x04,0x0c,0x00 -+// 16939 䈫 ; -+,0x00,0x00,0x08,0x0a,0x11,0x02,0x04,0x09,0x12,0x04,0x09,0x19,0x00,0x04,0x10,0x00,0x00,0x00,0xa0,0x28,0x44,0x00,0x08,0x18,0x40,0x40,0x50,0x46,0x40,0x40,0x42,0x00 -+// 16940 䈬 ; -+,0x00,0x00,0x08,0x02,0x02,0x00,0x08,0x00,0x01,0x11,0x09,0x19,0x09,0x01,0x11,0x00,0x00,0x10,0xb3,0x24,0x44,0x28,0x26,0x20,0x26,0x22,0x22,0x26,0x22,0x22,0x24,0x00 -+// 16941 䈭 ; -+,0x00,0x04,0x0c,0x0a,0x12,0x00,0x00,0x08,0x08,0x08,0x09,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x90,0x28,0x04,0x80,0x80,0x80,0x88,0x80,0x48,0x40,0x54,0x40,0x7f,0x00 -+// 16942 䈮 ; -+,0x00,0x04,0x08,0x0a,0x12,0x00,0x04,0x00,0x00,0x02,0x0a,0x08,0x00,0x1c,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x24,0x40,0x42,0x02,0x0a,0x0a,0x0a,0x0a,0x02,0x0c,0x00 -+// 16943 䈯 ; -+,0x00,0x04,0x08,0x12,0x02,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x04,0x00,0x00,0x10,0xa2,0x08,0x08,0x42,0x80,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0x04,0x00 -+// 16944 䈰 ; -+,0x00,0x04,0x08,0x0a,0x02,0x04,0x04,0x0e,0x04,0x04,0x0c,0x34,0x04,0x04,0x08,0x00,0x00,0x00,0x20,0x08,0x08,0x10,0x14,0x50,0x12,0x82,0x82,0x82,0x82,0x82,0x86,0x00 -+// 16945 䈱 ; -+,0x00,0x04,0x08,0x02,0x02,0x00,0x00,0x04,0x04,0x03,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0xa2,0x08,0x08,0x0c,0x00,0x8c,0x48,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16946 䈲 ; -+,0x00,0x04,0x08,0x02,0x00,0x04,0x01,0x09,0x01,0x01,0x11,0x15,0x11,0x11,0x03,0x00,0x00,0x10,0xa2,0x08,0x08,0x00,0x2c,0x00,0x00,0x46,0x04,0x24,0x18,0x18,0x26,0x00 -+// 16947 䈳 ; -+,0x00,0x04,0x08,0x12,0x02,0x04,0x04,0x04,0x04,0x01,0x01,0x05,0x01,0x19,0x01,0x00,0x00,0x10,0xa2,0x04,0x00,0x08,0x08,0x08,0x08,0x04,0x04,0x14,0x0c,0x64,0x04,0x00 -+// 16948 䈴 ; -+,0x00,0x04,0x08,0x14,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x05,0x09,0x01,0x00,0x00,0x10,0xa2,0x00,0x14,0x12,0x20,0x20,0x2c,0x2f,0x20,0x28,0x20,0x24,0x22,0x00 -+// 16949 䈵 ; -+,0x00,0x00,0x08,0x10,0x00,0x02,0x04,0x00,0x03,0x01,0x01,0x09,0x01,0x19,0x13,0x00,0x00,0x20,0xa1,0x40,0x08,0x00,0x88,0x16,0x10,0x04,0x04,0x24,0x04,0x64,0x04,0x00 -+// 16950 䈶 ; -+,0x00,0x00,0x08,0x08,0x12,0x00,0x10,0x12,0x04,0x01,0x02,0x06,0x02,0x02,0x02,0x00,0x00,0x10,0x92,0x28,0x80,0x40,0x02,0x00,0xc8,0x24,0x10,0x1e,0x10,0x10,0x10,0x00 -+// 16951 䈷 ; -+,0x00,0x08,0x08,0x10,0x02,0x04,0x04,0x05,0x04,0x0e,0x0e,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0x48,0x08,0x20,0x24,0x48,0x18,0x18,0x06,0x44,0x44,0x44,0x44,0x00 -+// 16952 䈸 ; -+,0x00,0x08,0x08,0x12,0x02,0x04,0x09,0x10,0x12,0x10,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0xa2,0x08,0x08,0x00,0x04,0x14,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x00 -+// 16953 䈹 ; -+,0x00,0x08,0x08,0x10,0x02,0x00,0x10,0x22,0x04,0x0c,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0xa2,0x08,0x88,0x00,0x02,0x00,0x20,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 16954 䈺 ; -+,0x00,0x08,0x08,0x12,0x02,0x00,0x04,0x01,0x12,0x04,0x00,0x19,0x00,0x05,0x10,0x00,0x00,0x20,0x20,0x48,0x08,0x20,0x24,0x44,0x28,0x18,0x2c,0x13,0x08,0x10,0x08,0x00 -+// 16955 䈻 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x01,0x01,0x09,0x01,0x01,0x11,0x11,0x01,0x22,0x00,0x00,0x00,0xa2,0x08,0x40,0x00,0x00,0x10,0x12,0x52,0x52,0x42,0x52,0x42,0x56,0x00 -+// 16956 䈼 ; -+,0x00,0x00,0x08,0x12,0x00,0x00,0x10,0x10,0x0a,0x1a,0x03,0x00,0x00,0x00,0x0c,0x00,0x00,0x10,0x92,0x28,0x04,0x00,0x03,0x90,0xa0,0xc2,0xfa,0x00,0x04,0x04,0x44,0x00 -+// 16957 䈽 ; -+,0x00,0x00,0x08,0x12,0x00,0x02,0x02,0x02,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa2,0x08,0x04,0x10,0x12,0x00,0x00,0xc8,0xc8,0x80,0x80,0xc0,0x83,0x00 -+// 16958 䈾 ; -+,0x00,0x00,0x08,0x12,0x02,0x04,0x04,0x05,0x04,0x0c,0x0d,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0xa2,0x08,0x44,0x10,0x52,0x10,0x12,0x02,0x42,0x42,0x02,0x02,0x06,0x00 -+// 16959 䈿 ; -+,0x00,0x00,0x08,0x12,0x00,0x00,0x10,0x04,0x04,0x04,0x04,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0xa2,0x08,0x04,0x02,0x00,0x08,0x08,0x08,0x88,0x42,0x00,0x18,0x04,0x00 -+// 16960 䉀 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x08,0x08,0x09,0x09,0x09,0x00,0x10,0x10,0x04,0x00,0x00,0x10,0x92,0x28,0x04,0x80,0x02,0x10,0x10,0x10,0x10,0x00,0x00,0x92,0x92,0x00 -+// 16961 䉁 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x0b,0x00,0x0a,0x00,0x0a,0x00,0x02,0x3a,0x02,0x00,0x00,0x00,0xa2,0x08,0x44,0x10,0x30,0x28,0x46,0x03,0x00,0x04,0x00,0x10,0x08,0x00 -+// 16962 䉂 ; -+,0x00,0x00,0x08,0x12,0x00,0x04,0x04,0x04,0x00,0x03,0x00,0x03,0x07,0x02,0x08,0x00,0x00,0x10,0xb1,0x08,0x00,0x44,0x44,0x04,0xc4,0x18,0x00,0x04,0x42,0x48,0x46,0x00 -+// 16963 䉃 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x02,0x02,0x12,0x02,0x02,0x0a,0x0a,0x02,0x02,0x00,0x00,0x00,0xa2,0x08,0x44,0x10,0x22,0x54,0x48,0x34,0x04,0x04,0x24,0x04,0x0c,0x00 -+// 16964 䉄 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x12,0x10,0x10,0x10,0x12,0x12,0x16,0x10,0x10,0x00,0x00,0x00,0xa2,0x08,0x44,0x10,0x10,0x10,0x40,0x42,0x35,0x44,0x08,0x18,0x47,0x00 -+// 16965 䉅 ; -+,0x00,0x00,0x08,0x12,0x02,0x04,0x05,0x04,0x04,0x09,0x0a,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xb2,0x28,0x44,0x10,0x10,0x34,0x84,0x04,0x34,0x38,0xa0,0x42,0x01,0x00 -+// 16966 䉆 ; -+,0x00,0x00,0x08,0x12,0x00,0x01,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x12,0x10,0x00,0x00,0x10,0x93,0x28,0x84,0x08,0x08,0x08,0x08,0x04,0x00,0x02,0x12,0x4a,0x0c,0x00 -+// 16967 䉇 ; -+,0x00,0x00,0x08,0x12,0x00,0x08,0x09,0x08,0x09,0x09,0x08,0x10,0x15,0x18,0x10,0x00,0x00,0x00,0xb2,0x28,0x04,0x00,0xc2,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x44,0x00 -+// 16968 䉈 ; -+,0x00,0x08,0x08,0x12,0x02,0x00,0x09,0x09,0x09,0x00,0x09,0x09,0x09,0x01,0x01,0x00,0x00,0x10,0xa2,0x28,0x44,0x00,0x90,0x20,0xa4,0x24,0x04,0x18,0x18,0x14,0x03,0x00 -+// 16969 䉉 ; -+,0x00,0x00,0x08,0x12,0x02,0x0c,0x0b,0x12,0x15,0x15,0x15,0x15,0x14,0x14,0x01,0x00,0x00,0x00,0xb2,0x28,0x44,0x00,0x0c,0x10,0x10,0x10,0x50,0x52,0x52,0x1f,0x91,0x00 -+// 16970 䉊 ; -+,0x00,0x00,0x08,0x12,0x03,0x00,0x07,0x03,0x06,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xb2,0x28,0x84,0x10,0x88,0x10,0x4c,0xc3,0xc8,0xc8,0xc8,0x02,0x80,0x00 -+// 16971 䉋 ; -+,0x00,0x00,0x08,0x12,0x02,0x04,0x04,0x08,0x0a,0x02,0x12,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0xb2,0x28,0x44,0x00,0x52,0x02,0x42,0x00,0x62,0xa2,0x82,0x02,0x22,0x00 -+// 16972 䉌 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x12,0x10,0x10,0x10,0x12,0x12,0x14,0x10,0x10,0x00,0x00,0x10,0x92,0x24,0x00,0x40,0x00,0x30,0x62,0x90,0x30,0x1c,0x6a,0x89,0x10,0x00 -+// 16973 䉍 ; -+,0x00,0x00,0x08,0x12,0x02,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x15,0x11,0x10,0x00,0x00,0x20,0xa2,0x48,0x08,0x22,0x02,0x22,0x22,0x02,0x42,0x4a,0x02,0xe2,0x06,0x04 -+// 16974 䉎 ; -+,0x00,0x04,0x08,0x12,0x00,0x02,0x02,0x10,0x02,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x20,0xa2,0x08,0x08,0x10,0x82,0x02,0x10,0x10,0x40,0xc2,0x00,0x08,0x02,0x00 -+// 16975 䉏 ; -+,0x00,0x04,0x08,0x02,0x02,0x04,0x0b,0x10,0x08,0x0e,0x00,0x16,0x10,0x10,0x01,0x00,0x00,0x10,0xa0,0x08,0x08,0x00,0x12,0x12,0xa6,0xa8,0xaa,0x88,0x89,0x88,0x08,0x00 -+// 16976 䉐 ; -+,0x00,0x04,0x08,0x10,0x02,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x04,0x04,0x04,0x00,0x00,0x20,0xa0,0x48,0x08,0x00,0x88,0x1a,0x08,0x08,0x0a,0x02,0x02,0x02,0x22,0x00 -+// 16977 䉑 ; -+,0x00,0x04,0x08,0x02,0x02,0x04,0x05,0x0d,0x05,0x05,0x05,0x05,0x00,0x01,0x19,0x00,0x00,0x10,0xa0,0x48,0x08,0x00,0x58,0x00,0x00,0x58,0x00,0x53,0x00,0x24,0x12,0x00 -+// 16978 䉒 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x02,0x03,0x03,0x04,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xa2,0x48,0x14,0xc0,0x10,0xe2,0x00,0x08,0x06,0x88,0x88,0x08,0x08,0x00 -+// 16979 䉓 ; -+,0x00,0x04,0x08,0x10,0x02,0x04,0x04,0x05,0x04,0x0e,0x0c,0x14,0x24,0x04,0x04,0x00,0x00,0x20,0xa0,0x48,0x08,0x00,0x12,0x12,0x12,0x12,0x11,0x30,0x54,0x93,0x10,0x00 -+// 16980 䉔 ; -+,0x00,0x04,0x08,0x10,0x02,0x00,0x04,0x04,0x09,0x01,0x0a,0x02,0x04,0x00,0x00,0x00,0x00,0x20,0xa0,0x48,0x08,0x28,0x2c,0x14,0x18,0x06,0x20,0x20,0x14,0x18,0x07,0x00 -+// 16981 䉕 ; -+,0x00,0x00,0x08,0x12,0x02,0x02,0x09,0x08,0x0a,0x08,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0xa0,0x48,0x08,0x10,0x24,0x14,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x00 -+// 16982 䉖 ; -+,0x00,0x04,0x08,0x10,0x02,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x04,0x04,0x04,0x00,0x00,0x30,0xa2,0x48,0x08,0x10,0x90,0x24,0x52,0x01,0x02,0x04,0x80,0x10,0x08,0x00 -+// 16983 䉗 ; -+,0x00,0x04,0x08,0x12,0x02,0x04,0x04,0x04,0x04,0x04,0x0c,0x14,0x04,0x04,0x08,0x00,0x00,0x10,0xa0,0x48,0x08,0x04,0x44,0x44,0x01,0x44,0x44,0x44,0x44,0x44,0x04,0x00 -+// 16984 䉘 ; -+,0x00,0x04,0x08,0x12,0x02,0x04,0x04,0x06,0x04,0x0c,0x0e,0x14,0x04,0x04,0x04,0x00,0x00,0x30,0xa0,0x48,0x08,0x10,0x00,0x03,0x80,0x00,0x03,0x10,0x50,0x93,0x30,0x00 -+// 16985 䉙 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x01,0x00,0x0e,0x00,0x00,0x00,0xa2,0x40,0x08,0x04,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x08,0x04,0x00 -+// 16986 䉚 ; -+,0x00,0x04,0x08,0x12,0x02,0x01,0x01,0x00,0x00,0x10,0x02,0x02,0x00,0x04,0x06,0x00,0x00,0x20,0xa2,0x48,0x0c,0x24,0x24,0x04,0x02,0x02,0x00,0x10,0x90,0x20,0x3e,0x00 -+// 16987 䉛 ; -+,0x00,0x04,0x08,0x12,0x02,0x01,0x04,0x01,0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0xa2,0x48,0x08,0x00,0x04,0x24,0xd4,0xc4,0x14,0xc2,0x80,0x10,0x0e,0x00 -+// 16988 䉜 ; -+,0x00,0x04,0x08,0x10,0x02,0x08,0x08,0x04,0x04,0x05,0x04,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0xa0,0x48,0x08,0x28,0x48,0x42,0xc8,0x4a,0x48,0x4a,0x48,0x49,0x40,0x00 -+// 16989 䉝 ; -+,0x00,0x04,0x08,0x12,0x02,0x02,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x12,0x04,0x00,0x00,0x20,0xa2,0x48,0x20,0x04,0x80,0x80,0x82,0x28,0x22,0x24,0x08,0x30,0x0e,0x00 -+// 16990 䉞 ; -+,0x00,0x04,0x08,0x10,0x02,0x00,0x08,0x08,0x08,0x00,0x10,0x00,0x02,0x12,0x02,0x00,0x00,0x20,0xa0,0x48,0x04,0x28,0x22,0x24,0x14,0x98,0x98,0x02,0x42,0x01,0x08,0x00 -+// 16991 䉟 ; -+,0x00,0x04,0x08,0x10,0x02,0x08,0x08,0x09,0x08,0x08,0x08,0x38,0x08,0x08,0x18,0x00,0x00,0x20,0xa0,0x48,0x08,0x50,0x92,0x10,0x90,0x90,0x80,0x04,0x0c,0x30,0x0f,0x00 -+// 16992 䉠 ; -+,0x00,0x00,0x08,0x10,0x02,0x08,0x12,0x0a,0x08,0x10,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xa2,0x08,0x08,0x88,0x88,0x89,0x12,0x52,0x04,0x4c,0x4c,0x46,0x23,0x00 -+// 16993 䉡 ; -+,0x00,0x00,0x08,0x10,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x22,0x08,0x08,0x82,0x00,0x28,0x20,0x00,0x00,0x10,0x10,0x10,0x02,0x00 -+// 16994 䉢 ; -+,0x00,0x00,0x08,0x12,0x02,0x00,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa2,0x48,0x08,0x80,0xc8,0x18,0x05,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 16995 䉣 ; -+,0x00,0x00,0x08,0x12,0x02,0x03,0x08,0x09,0x08,0x06,0x04,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0xa2,0x08,0x08,0x04,0x04,0x04,0x04,0x00,0x02,0x02,0x54,0x04,0x0c,0x00 -+// 16996 䉤 ; -+,0x00,0x00,0x08,0x12,0x00,0x00,0x09,0x0e,0x0d,0x10,0x04,0x09,0x0b,0x07,0x08,0x00,0x00,0x10,0xa2,0x08,0x08,0x10,0x20,0x24,0x24,0x04,0x04,0x18,0x18,0x14,0xc3,0x00 -+// 16997 䉥 ; -+,0x00,0x04,0x04,0x0a,0x11,0x04,0x04,0x0c,0x04,0x04,0x1c,0x14,0x04,0x05,0x08,0x00,0x00,0x10,0xa1,0x08,0x04,0x20,0x92,0xbe,0x8a,0x8a,0x82,0x00,0x51,0x41,0x7e,0x00 -+// 16998 䉦 ; -+,0x00,0x04,0x08,0x02,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x21,0x00,0x00,0x10,0xa0,0x08,0x00,0x50,0x54,0x50,0x64,0x42,0x88,0x8b,0x80,0xfc,0xfe,0x00 -+// 16999 䉧 ; -+,0x00,0x04,0x0c,0x09,0x00,0x00,0x10,0x10,0x12,0x04,0x0a,0x02,0x02,0x06,0x06,0x00,0x00,0x10,0xb1,0x28,0x04,0x22,0xa2,0x2a,0x42,0x82,0x42,0x8a,0x82,0x02,0x06,0x00 -+// 17000 䉨 ; -+,0x00,0x04,0x0c,0x0a,0x00,0x04,0x00,0x0a,0x04,0x08,0x06,0x0a,0x06,0x02,0x06,0x00,0x00,0x10,0xa0,0x00,0x00,0x84,0x04,0x24,0x27,0x00,0x06,0x04,0x98,0x18,0x03,0x00 -+// 17001 䉩 ; -+,0x00,0x04,0x08,0x0a,0x12,0x04,0x04,0x0e,0x0c,0x0e,0x15,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x28,0x44,0x02,0x80,0x84,0x84,0x80,0x92,0x92,0x92,0x80,0x81,0x00 -+// 17002 䉪 ; -+,0x00,0x04,0x0c,0x0a,0x01,0x04,0x04,0x04,0x04,0x00,0x15,0x15,0x15,0x15,0x11,0x00,0x00,0x10,0xb1,0x08,0x04,0x08,0x08,0x08,0x08,0x00,0x0a,0x0a,0x2a,0x0a,0x22,0x00 -+// 17003 䉫 ; -+,0x00,0x04,0x0c,0x02,0x00,0x02,0x06,0x07,0x12,0x00,0x03,0x0e,0x00,0x02,0x08,0x00,0x00,0x10,0xb0,0x00,0x00,0x2a,0x82,0x12,0x04,0xc0,0x10,0x1f,0x40,0x58,0x84,0x00 -+// 17004 䉬 ; -+,0x00,0x04,0x0a,0x12,0x00,0x08,0x08,0x08,0x09,0x0a,0x00,0x10,0x12,0x00,0x01,0x00,0x00,0x10,0xa0,0x04,0x40,0x42,0x40,0x90,0x0c,0xab,0xa8,0x04,0x84,0x88,0x84,0x00 -+// 17005 䉭 ; -+,0x00,0x04,0x08,0x01,0x04,0x00,0x04,0x08,0x08,0x08,0x00,0x0a,0x02,0x00,0x0c,0x00,0x00,0x10,0x90,0x04,0x40,0x80,0x48,0x24,0xe4,0x24,0x00,0x88,0xa8,0x84,0xc3,0x00 -+// 17006 䉮 ; -+,0x00,0x00,0x08,0x12,0x00,0x11,0x11,0x11,0x11,0x11,0x12,0x16,0x12,0x12,0x12,0x00,0x00,0x20,0xa2,0x48,0x00,0x22,0x22,0x02,0x02,0x42,0x52,0x52,0x52,0x4a,0x0c,0x00 -+// 17007 䉯 ; -+,0x00,0x04,0x0c,0x12,0x00,0x14,0x10,0x14,0x10,0x04,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0xa0,0x08,0x00,0x24,0x84,0x18,0x26,0x08,0x08,0x08,0x08,0x08,0x0c,0x02 -+// 17008 䉰 ; -+,0x00,0x04,0x0c,0x02,0x00,0x09,0x0d,0x05,0x0d,0x21,0x01,0x01,0x01,0x01,0x11,0x00,0x00,0x10,0xb3,0x04,0x04,0x08,0x0b,0x00,0xb2,0x21,0x04,0x00,0x08,0x14,0x03,0x00 -+// 17009 䉱 ; -+,0x00,0x04,0x0c,0x0a,0x00,0x04,0x02,0x04,0x04,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x00,0x00,0x10,0xb1,0x28,0x04,0x02,0x80,0xa4,0xa4,0x80,0x90,0xda,0xda,0x80,0x81,0x00 -+// 17010 䉲 ; -+,0x00,0x04,0x0c,0x02,0x00,0x00,0x04,0x04,0x15,0x11,0x11,0x05,0x05,0x05,0x09,0x00,0x00,0x10,0xa0,0x48,0x00,0x03,0x80,0x02,0x32,0x46,0x26,0x02,0x4e,0x12,0x02,0x00 -+// 17011 䉳 ; -+,0x00,0x04,0x0c,0x08,0x00,0x08,0x02,0x11,0x15,0x15,0x15,0x15,0x00,0x02,0x00,0x00,0x00,0x10,0xa0,0x08,0x00,0x24,0x02,0x00,0x00,0x18,0x00,0x1a,0x00,0x80,0x80,0x00 -+// 17012 䉴 ; -+,0x00,0x04,0x0c,0x02,0x00,0x00,0x09,0x09,0x00,0x02,0x02,0x03,0x02,0x0e,0x03,0x02,0x00,0x10,0xb1,0x08,0x80,0x02,0x00,0x00,0x20,0x20,0x20,0x22,0x08,0x30,0x1c,0x00 -+// 17013 䉵 ; -+,0x00,0x04,0x0a,0x10,0x04,0x04,0x04,0x01,0x02,0x09,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0xb2,0x28,0x00,0x08,0x08,0x08,0x09,0x80,0x86,0x5c,0x10,0x10,0x10,0x08,0x00 -+// 17014 䉶 ; -+,0x00,0x04,0x0c,0x01,0x04,0x08,0x0a,0x0a,0x0a,0x0a,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0xa1,0x04,0x20,0x2a,0x68,0xa8,0xaa,0xaa,0x00,0x0c,0x10,0xe0,0x0e,0x00 -+// 17015 䉷 ; -+,0x00,0x08,0x0a,0x12,0x01,0x01,0x00,0x08,0x01,0x08,0x02,0x00,0x12,0x12,0x00,0x00,0x00,0x20,0x20,0x48,0x24,0x24,0x00,0x00,0x10,0xd2,0xa4,0x84,0x88,0x88,0x82,0x00 -+// 17016 䉸 ; -+,0x00,0x04,0x0c,0x00,0x00,0x08,0x00,0x02,0x04,0x0c,0x00,0x0a,0x08,0x00,0x00,0x00,0x00,0x10,0xa0,0x04,0x00,0x00,0x00,0x02,0x08,0x04,0x04,0xa4,0x24,0xa4,0x04,0x00 -+// 17017 䉹 ; -+,0x00,0x04,0x0e,0x01,0x00,0x00,0x10,0x00,0x00,0x0a,0x0a,0x00,0x06,0x04,0x00,0x00,0x00,0x10,0xa0,0x08,0x02,0x40,0x02,0x00,0x00,0x54,0x50,0x04,0xc8,0x18,0x04,0x00 -+// 17018 䉺 ; -+,0x00,0x04,0x04,0x15,0x14,0x04,0x05,0x0c,0x0c,0x17,0x15,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 17019 䉻 ; -+,0x00,0x04,0x04,0x05,0x14,0x04,0x05,0x0c,0x0e,0x07,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x44,0x44,0x63,0x41,0x00 -+// 17020 䉼 ; -+,0x00,0x04,0x04,0x15,0x14,0x04,0x05,0x0c,0x0c,0x07,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x40,0x40,0x40,0x41,0x48,0x48,0x48,0x08,0x88,0x88,0x08,0x08,0x00 -+// 17021 䉽 ; -+,0x00,0x04,0x04,0x15,0x14,0x04,0x05,0x0c,0x0e,0x17,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x52,0x30,0x30,0x1a,0x10,0x10,0x10,0x18,0x10,0x10,0x10,0x10,0x00 -+// 17022 䉾 ; -+,0x00,0x00,0x00,0x02,0x00,0x02,0x30,0x00,0x02,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x20,0x26,0x28,0x20,0x22,0x3e,0x00,0x10,0x02,0xe0,0x00,0x10,0x06,0x02,0x00 -+// 17023 䉿 ; -+,0x00,0x04,0x00,0x01,0x12,0x04,0x0d,0x08,0x0e,0x1b,0x10,0x20,0x00,0x00,0x04,0x00,0x00,0x00,0x0e,0x00,0x03,0x42,0x20,0x00,0x1b,0x00,0x00,0x00,0x00,0x00,0x10,0x00 -+// 17024 䊀 ; -+,0x00,0x04,0x00,0x23,0x12,0x04,0x0d,0x08,0x0e,0x1b,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x52,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17025 䊁 ; -+,0x00,0x00,0x00,0x01,0x12,0x04,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x00,0x00,0x01,0x00,0x00,0x10,0x50,0x50,0x52,0x90,0x10,0x11,0x48,0x48,0x48,0x48,0x08,0x89,0x0f,0x00 -+// 17026 䊂 ; -+,0x00,0x00,0x04,0x01,0x12,0x04,0x0f,0x08,0x0c,0x0a,0x10,0x20,0x00,0x05,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x12,0x12,0x12,0x3a,0x54,0x92,0x11,0x10,0x00 -+// 17027 䊃 ; -+,0x00,0x00,0x00,0x03,0x12,0x04,0x0e,0x08,0x0c,0x0a,0x10,0x20,0x01,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0x92,0x92,0x9a,0xd2,0xd2,0x52,0x52,0x5a,0x1b,0x11,0x11,0x00 -+// 17028 䊄 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x0c,0x10,0x00,0x02,0x01,0x01,0x06,0x08,0x00,0x00,0x00,0x00,0x4c,0x48,0x48,0x58,0x88,0x07,0x48,0x10,0xe0,0x00,0x00,0x04,0x42,0x00 -+// 17029 䊅 ; -+,0x00,0x04,0x00,0x01,0x12,0x04,0x0c,0x0c,0x0e,0x12,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x10,0x20,0x22,0x42,0x64,0x88,0x10,0x20,0x63,0xc2,0x42,0x42,0x42,0x42,0x00 -+// 17030 䊆 ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x80,0x04,0x04,0x04,0x04,0x04,0x40,0x58,0x42,0xe0,0x40,0x48,0x47,0x40,0x00 -+// 17031 䊇 ; -+,0x00,0x04,0x04,0x05,0x16,0x04,0x0c,0x0c,0x0e,0x1e,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x10,0x12,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x96,0x00 -+// 17032 䊈 ; -+,0x00,0x04,0x04,0x05,0x16,0x04,0x0c,0x0c,0x0c,0x0e,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x61,0x40,0x02,0x42,0x4a,0x43,0x42,0x50,0x40,0xc7,0x04,0x0c,0x00 -+// 17033 䊉 ; -+,0x00,0x00,0x00,0x01,0x12,0x04,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x83,0x90,0x10,0x10,0x30,0x10,0x54,0x94,0x13,0x11,0x10,0x00 -+// 17034 䊊 ; -+,0x00,0x04,0x04,0x05,0x16,0x04,0x0d,0x0c,0x0c,0x0e,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x88,0x80,0x98,0x80,0x98,0x00,0x09,0x0f,0x00 -+// 17035 䊋 ; -+,0x00,0x08,0x08,0x0b,0x18,0x09,0x0a,0x08,0x1c,0x1a,0x08,0x08,0x09,0x09,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x45,0x04,0x04,0xc4,0x84,0x04,0x04,0x05,0x00,0x00 -+// 17036 䊌 ; -+,0x00,0x00,0x00,0x02,0x12,0x00,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x01,0x01,0x00,0x00,0x00,0x00,0x10,0x80,0x80,0xa0,0xa1,0xa2,0xbc,0xa0,0xa0,0x20,0x28,0x25,0x00,0x00 -+// 17037 䊍 ; -+,0x00,0x01,0x04,0x04,0x0c,0x0c,0x15,0x04,0x00,0x02,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x20,0x0a,0x52,0x12,0x22,0x0c,0x08,0x10,0xe2,0x80,0x10,0x0e,0x82,0x00 -+// 17038 䊎 ; -+,0x00,0x04,0x04,0x05,0x16,0x04,0x0e,0x0c,0x0e,0x1c,0x15,0x24,0x04,0x04,0x04,0x00,0x00,0x10,0x16,0x54,0x12,0x20,0x21,0x40,0x44,0xce,0x49,0x48,0x48,0x42,0x7e,0x00 -+// 17039 䊏 ; -+,0x00,0x00,0x04,0x21,0x12,0x04,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x00,0x00,0x04,0x00,0x00,0x10,0x10,0x16,0x90,0x90,0x24,0x43,0x10,0x12,0x92,0xa0,0x28,0x44,0x83,0x00 -+// 17040 䊐 ; -+,0x00,0x04,0x05,0x05,0x16,0x04,0x05,0x0c,0x0e,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x88,0x8a,0xa8,0x88,0x88,0x89,0xcf,0x00 -+// 17041 䊑 ; -+,0x00,0x00,0x00,0x01,0x12,0x00,0x0c,0x0c,0x0e,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x52,0x50,0x10,0x82,0x80,0xa4,0xa4,0xa4,0xa4,0x80,0x82,0x86,0x00 -+// 17042 䊒 ; -+,0x00,0x00,0x01,0x01,0x16,0x04,0x0d,0x08,0x0c,0x1a,0x00,0x20,0x00,0x00,0x04,0x00,0x00,0x00,0x48,0x48,0x02,0x88,0x80,0x1a,0x00,0x00,0x5a,0x00,0x00,0x09,0x00,0x00 -+// 17043 䊓 ; -+,0x00,0x00,0x00,0x00,0x16,0x04,0x0c,0x0c,0x0e,0x10,0x00,0x20,0x00,0x01,0x04,0x00,0x00,0x00,0x04,0x00,0x44,0x00,0x44,0x00,0x10,0x10,0x52,0x90,0x90,0x30,0x0f,0x00 -+// 17044 䊔 ; -+,0x00,0x00,0x04,0x05,0x16,0x04,0x0d,0x0c,0x0e,0x1c,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x65,0x04,0x10,0x10,0x52,0x12,0x12,0x13,0x00,0x20,0x46,0x03,0x00 -+// 17045 䊕 ; -+,0x00,0x08,0x08,0x2a,0x0c,0x08,0x0a,0x09,0x08,0x18,0x28,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x00,0x9a,0x82,0x9a,0x02,0x40,0x42,0x40,0x00,0x80,0x80,0x40,0x3f,0x00 -+// 17046 䊖 ; -+,0x00,0x00,0x00,0x03,0x12,0x04,0x0e,0x08,0x0e,0x18,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x12,0x82,0xaa,0x82,0x92,0x92,0x92,0x92,0x92,0x96,0x00 -+// 17047 䊗 ; -+,0x00,0x00,0x04,0x05,0x16,0x04,0x0d,0x0c,0x0e,0x0d,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x10,0x00,0x42,0x02,0x42,0x02,0x42,0x00,0x02,0x10,0x10,0x10,0x10,0x11,0x00 -+// 17048 䊘 ; -+,0x00,0x00,0x04,0x05,0x16,0x04,0x0e,0x0c,0x0c,0x1f,0x14,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x92,0x10,0x12,0x12,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 17049 䊙 ; -+,0x00,0x00,0x04,0x08,0x19,0x01,0x01,0x09,0x00,0x02,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x14,0x04,0x35,0x24,0x24,0x44,0x80,0x50,0xe2,0x00,0x10,0x06,0x40,0x00 -+// 17050 䊚 ; -+,0x00,0x00,0x00,0x02,0x12,0x04,0x0e,0x08,0x0c,0x1a,0x10,0x20,0x00,0x01,0x00,0x00,0x00,0x08,0x08,0xa2,0xa2,0x22,0x22,0xa0,0xa3,0xa2,0xa2,0xa2,0xa0,0x40,0x3f,0x00 -+// 17051 䊛 ; -+,0x00,0x00,0x08,0x0a,0x18,0x08,0x0e,0x08,0x0c,0x1a,0x09,0x28,0x08,0x08,0x08,0x00,0x00,0x00,0x4a,0xca,0xe2,0x03,0x40,0x02,0xc2,0x02,0x2c,0x14,0x0c,0x02,0x81,0x00 -+// 17052 䊜 ; -+,0x00,0x08,0x08,0x2a,0x18,0x08,0x0a,0x08,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x12,0x10,0x92,0x92,0x92,0x90,0x12,0xe0,0x04,0x04,0x40,0x00,0x08,0x00 -+// 17053 䊝 ; -+,0x00,0x00,0x00,0x02,0x12,0x04,0x0e,0x08,0x0c,0x1a,0x00,0x20,0x00,0x01,0x00,0x00,0x00,0x00,0x1c,0x10,0x54,0x1b,0x30,0x54,0x13,0x00,0x10,0x48,0x41,0x41,0x7e,0x00 -+// 17054 䊞 ; -+,0x00,0x00,0x01,0x02,0x14,0x00,0x0e,0x08,0x0c,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x24,0x20,0x93,0x91,0x91,0x91,0xa5,0xa5,0xa5,0x81,0x82,0x00 -+// 17055 䊟 ; -+,0x00,0x00,0x00,0x02,0x14,0x04,0x0e,0x08,0x0e,0x1b,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x50,0x10,0x92,0x92,0x12,0x76,0xb6,0x92,0x12,0x16,0x00 -+// 17056 䊠 ; -+,0x00,0x00,0x11,0x19,0x11,0x10,0x13,0x1c,0x10,0x02,0x02,0x01,0x02,0x0c,0x00,0x00,0x00,0x02,0x18,0x50,0x5a,0x18,0x28,0x09,0x0e,0x48,0x41,0xe0,0x50,0x46,0x42,0x00 -+// 17057 䊡 ; -+,0x00,0x00,0x00,0x01,0x12,0x04,0x0e,0x08,0x0e,0x1a,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x40,0x00,0x81,0x81,0x80,0x02,0x04,0x08,0x18,0x46,0x00 -+// 17058 䊢 ; -+,0x00,0x00,0x08,0x0a,0x00,0x0a,0x08,0x00,0x00,0x02,0x02,0x01,0x02,0x04,0x00,0x00,0x00,0x20,0x64,0x58,0x00,0x0a,0x48,0x08,0x08,0x08,0x82,0xc0,0x10,0x0c,0x02,0x00 -+// 17059 䊣 ; -+,0x00,0x08,0x08,0x2a,0x18,0x08,0x08,0x08,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x6c,0x00,0x11,0x10,0x92,0x92,0x92,0x92,0x92,0x00,0x42,0x01,0x00 -+// 17060 䊤 ; -+,0x00,0x08,0x08,0x2a,0x08,0x08,0x0a,0x08,0x08,0x1a,0x08,0x28,0x08,0x08,0x08,0x00,0x00,0x01,0x28,0x28,0x2a,0x2a,0x02,0x82,0x82,0x82,0x82,0x10,0x11,0x10,0x10,0x10 -+// 17061 䊥 ; -+,0x00,0x08,0x08,0x2a,0x08,0x08,0x0a,0x08,0x0c,0x1a,0x08,0x28,0x08,0x09,0x08,0x00,0x00,0x10,0x12,0x12,0x12,0x12,0x10,0x92,0x96,0x92,0x92,0x92,0xd2,0x52,0x12,0x00 -+// 17062 䊦 ; -+,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x09,0x08,0x1a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x44,0x00,0x04,0x29,0x00 -+// 17063 䊧 ; -+,0x00,0x00,0x08,0x0a,0x18,0x08,0x0a,0x08,0x0c,0x1a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x28,0x2a,0x2a,0xaa,0xa8,0x49,0x8a,0x82,0x02,0x02,0x42,0x42,0x20,0x43,0x00 -+// 17064 䊨 ; -+,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x00,0x14,0x15,0x14,0x14,0x15,0x04,0x04,0x00,0x00,0x80,0x82,0x08,0x00,0x08,0x08,0x00,0x96,0x90,0x90,0xd0,0xb0,0x81,0xa3,0x00 -+// 17065 䊩 ; -+,0x00,0x08,0x08,0x2a,0x08,0x08,0x0a,0x08,0x18,0x1a,0x0a,0x28,0x08,0x08,0x08,0x00,0x00,0x00,0x18,0x12,0x54,0x11,0x30,0x56,0x93,0x02,0x12,0x12,0x12,0x12,0x82,0x00 -+// 17066 䊪 ; -+,0x00,0x08,0x08,0x2a,0x08,0x08,0x0a,0x08,0x18,0x1a,0x08,0x28,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x2c,0x00,0x92,0x92,0x92,0x92,0x10,0x91,0x11,0x17,0x41,0x03,0x00 -+// 17067 䊫 ; -+,0x00,0x08,0x08,0x2b,0x08,0x08,0x0a,0x08,0x1c,0x1a,0x08,0x28,0x08,0x08,0x08,0x00,0x00,0x00,0x2a,0x28,0x2a,0x00,0x28,0x29,0x28,0x28,0x28,0x28,0x29,0x28,0x28,0x00 -+// 17068 䊬 ; -+,0x00,0x00,0x04,0x04,0x04,0x0c,0x05,0x04,0x04,0x00,0x02,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x5a,0x5a,0x5a,0x10,0x38,0x42,0x00,0x08,0x02,0xa0,0x10,0x0c,0x02,0x00 -+// 17069 䊭 ; -+,0x00,0x08,0x08,0x0a,0x28,0x08,0x0a,0x08,0x08,0x1a,0x08,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x32,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x54,0x44,0x0c,0x00 -+// 17070 䊮 ; -+,0x00,0x08,0x08,0x0a,0x28,0x08,0x0a,0x08,0x08,0x1a,0x08,0x28,0x08,0x08,0x08,0x00,0x00,0x00,0x22,0x2a,0x22,0x2a,0x22,0x40,0x42,0x90,0x9a,0x80,0x9a,0x80,0x80,0x00 -+// 17071 䊯 ; -+,0x00,0x08,0x08,0x0b,0x09,0x09,0x0b,0x09,0x09,0x1b,0x09,0x29,0x08,0x08,0x08,0x00,0x00,0x10,0x01,0x00,0x24,0x24,0x24,0x00,0x08,0x4a,0x4a,0x42,0x42,0x20,0x42,0x00 -+// 17072 䊰 ; -+,0x00,0x00,0x08,0x0a,0x28,0x08,0x0c,0x08,0x1c,0x1c,0x08,0x08,0x08,0x08,0x0a,0x00,0x00,0x00,0x88,0x4f,0x0a,0x0c,0x0c,0x08,0x10,0x12,0x52,0x12,0x12,0x12,0x12,0x00 -+// 17073 䊱 ; -+,0x00,0x08,0x08,0x0a,0x28,0x08,0x0c,0x08,0x08,0x18,0x08,0x28,0x08,0x09,0x08,0x00,0x00,0x00,0x84,0xa6,0x74,0x00,0xa4,0xa4,0xa7,0xb6,0xa6,0xa4,0xa4,0x83,0x01,0x00 -+// 17074 䊲 ; -+,0x00,0x00,0x0a,0x08,0x2b,0x29,0x29,0x21,0x05,0x14,0x0d,0x0c,0x16,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0x24,0x04,0x41,0x40,0x58,0x4a,0x48,0x48,0x08,0x88,0x09,0x00 -+// 17075 䊳 ; -+,0x00,0x08,0x08,0x2b,0x29,0x09,0x0b,0x09,0x09,0x1b,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x10,0x10,0x24,0x24,0x26,0x7e,0x25,0x00,0x08,0x28,0x28,0x08,0x29,0x08,0x00 -+// 17076 䊴 ; -+,0x00,0x08,0x08,0x0a,0x29,0x08,0x0e,0x08,0x08,0x1a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x88,0x88,0x40,0x30,0x20,0x44,0x03,0xa2,0x22,0xa2,0x44,0xc8,0x32,0x00 -+// 17077 䊵 ; -+,0x00,0x00,0x08,0x08,0x12,0x34,0x04,0x08,0x12,0x31,0x00,0x02,0x01,0x24,0x20,0x00,0x00,0x00,0x20,0x20,0x20,0x24,0x24,0x20,0x20,0x20,0x00,0x40,0x40,0x85,0x07,0x00 -+// 17078 䊶 ; -+,0x00,0x00,0x08,0x00,0x12,0x34,0x04,0x08,0x12,0x32,0x00,0x02,0x09,0x24,0x20,0x00,0x00,0x10,0x50,0x50,0x52,0x52,0x52,0x52,0x52,0x52,0x54,0x50,0x40,0x41,0x7f,0x00 -+// 17079 䊷 ; -+,0x00,0x00,0x0c,0x08,0x12,0x32,0x04,0x08,0x10,0x39,0x00,0x02,0x09,0x24,0x20,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x14,0x14,0x24,0x04,0x04,0x04,0x04,0x0c,0x00 -+// 17080 䊸 ; -+,0x00,0x00,0x08,0x00,0x12,0x34,0x04,0x08,0x12,0x33,0x00,0x02,0x09,0x24,0x20,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x20,0x20,0x40,0x42,0x02,0x02,0x02,0x04,0x0c,0x00 -+// 17081 䊹 ; -+,0x00,0x00,0x08,0x00,0x12,0x34,0x04,0x08,0x12,0x32,0x00,0x02,0x09,0x24,0x20,0x00,0x00,0x00,0x0e,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 17082 䊺 ; -+,0x00,0x00,0x08,0x08,0x12,0x34,0x04,0x08,0x12,0x33,0x00,0x02,0x01,0x20,0x20,0x00,0x00,0x00,0x02,0x20,0x20,0x00,0x46,0x44,0x44,0x44,0x44,0x04,0x04,0x04,0x07,0x00 -+// 17083 䊻 ; -+,0x00,0x00,0x0c,0x08,0x12,0x36,0x04,0x08,0x10,0x39,0x00,0x00,0x01,0x04,0x20,0x00,0x00,0x20,0x20,0x20,0x21,0x40,0x10,0x90,0x10,0x10,0x18,0x28,0x24,0x42,0x01,0x00 -+// 17084 䊼 ; -+,0x00,0x00,0x08,0x00,0x12,0x34,0x04,0x08,0x12,0x33,0x00,0x02,0x09,0x24,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x50,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x50,0x01,0x00 -+// 17085 䊽 ; -+,0x00,0x00,0x08,0x08,0x12,0x36,0x04,0x08,0x12,0x33,0x00,0x02,0x01,0x20,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x14,0x14,0x14,0x15,0x30,0x20,0x28,0x04,0x42,0x03,0x00 -+// 17086 䊾 ; -+,0x00,0x00,0x08,0x00,0x12,0x34,0x04,0x08,0x12,0x32,0x00,0x02,0x0b,0x20,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x30,0x30,0x10,0x54,0x52,0x93,0x11,0x10,0x10,0x00 -+// 17087 䊿 ; -+,0x00,0x00,0x08,0x08,0x12,0x36,0x04,0x08,0x12,0x33,0x00,0x02,0x09,0x24,0x20,0x00,0x00,0x00,0x00,0x20,0x32,0x20,0x20,0x22,0x20,0x20,0x20,0x48,0x40,0x86,0x03,0x00 -+// 17088 䋀 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x02,0x00,0x13,0x10,0x03,0x04,0x08,0x00,0x00,0x80,0x40,0x04,0x04,0x44,0x40,0x10,0x60,0x84,0x04,0x00,0x08,0x06,0x42,0x40 -+// 17089 䋁 ; -+,0x00,0x00,0x08,0x08,0x12,0x06,0x34,0x08,0x10,0x31,0x20,0x00,0x0a,0x28,0x21,0x00,0x00,0x00,0x20,0x10,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x0f,0x00 -+// 17090 䋂 ; -+,0x00,0x00,0x08,0x08,0x12,0x06,0x34,0x08,0x00,0x11,0x20,0x00,0x0a,0x28,0x20,0x00,0x00,0x00,0x04,0x08,0x18,0x2c,0x04,0x00,0x04,0x04,0x08,0x38,0x10,0x4c,0x06,0x00 -+// 17091 䋃 ; -+,0x00,0x00,0x04,0x08,0x02,0x12,0x34,0x08,0x00,0x11,0x10,0x02,0x0a,0x20,0x20,0x00,0x00,0x00,0x04,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x1f,0x00 -+// 17092 䋄 ; -+,0x00,0x00,0x08,0x08,0x12,0x16,0x24,0x08,0x00,0x33,0x00,0x00,0x0a,0x28,0x20,0x00,0x00,0x00,0x83,0x80,0x80,0x88,0x88,0x98,0x98,0x84,0x84,0x80,0x80,0x82,0x82,0x00 -+// 17093 䋅 ; -+,0x00,0x00,0x08,0x08,0x12,0x06,0x34,0x08,0x02,0x13,0x20,0x02,0x0a,0x20,0x20,0x00,0x00,0x10,0x10,0x50,0x50,0x10,0x90,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x00 -+// 17094 䋆 ; -+,0x00,0x00,0x08,0x08,0x12,0x16,0x24,0x08,0x02,0x33,0x00,0x00,0x0a,0x29,0x20,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x42,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 17095 䋇 ; -+,0x00,0x00,0x08,0x08,0x12,0x06,0x34,0x08,0x00,0x11,0x20,0x00,0x0a,0x29,0x20,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x00,0x10,0x80,0x88,0x04,0x06,0x03,0x00 -+// 17096 䋈 ; -+,0x00,0x04,0x04,0x09,0x09,0x03,0x05,0x01,0x02,0x04,0x00,0x0f,0x02,0x04,0x00,0x00,0x00,0x00,0x02,0x82,0x14,0x08,0x07,0x00,0x30,0x80,0x04,0x42,0x40,0x44,0xc2,0x00 -+// 17097 䋉 ; -+,0x00,0x00,0x04,0x08,0x13,0x12,0x04,0x08,0x12,0x31,0x00,0x02,0x05,0x24,0x21,0x00,0x00,0x00,0x10,0x10,0x03,0x80,0x00,0x28,0x28,0x00,0x40,0x44,0x04,0x82,0x03,0x00 -+// 17098 䋊 ; -+,0x00,0x00,0x04,0x08,0x11,0x12,0x04,0x08,0x10,0x31,0x00,0x00,0x05,0x24,0x20,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x48,0x4a,0x48,0x48,0x48,0x48,0x48,0x48,0x4b,0x00 -+// 17099 䋋 ; -+,0x00,0x00,0x04,0x08,0x11,0x32,0x04,0x08,0x10,0x31,0x00,0x00,0x01,0x25,0x20,0x00,0x00,0x00,0x02,0x02,0x02,0x42,0x08,0x08,0x08,0x48,0x08,0x08,0x04,0x65,0xc3,0x00 -+// 17100 䋌 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x04,0x08,0x11,0x39,0x00,0x00,0x05,0x24,0x20,0x00,0x00,0x00,0x43,0x40,0x40,0x40,0x42,0x42,0x42,0x42,0x42,0x40,0x40,0x40,0x41,0x00 -+// 17101 䋍 ; -+,0x00,0x00,0x04,0x08,0x11,0x12,0x04,0x08,0x11,0x31,0x00,0x00,0x01,0x25,0x20,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x52,0x52,0x52,0x52,0x52,0x02,0x02,0x02,0x06,0x00 -+// 17102 䋎 ; -+,0x00,0x00,0x04,0x08,0x11,0x12,0x04,0x08,0x11,0x39,0x00,0x00,0x05,0x24,0x20,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x01,0x00,0x00 -+// 17103 䋏 ; -+,0x00,0x00,0x04,0x08,0x11,0x12,0x04,0x08,0x11,0x39,0x00,0x00,0x01,0x25,0x20,0x00,0x00,0x20,0x20,0x40,0x43,0x10,0x90,0x12,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x00 -+// 17104 䋐 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x04,0x00,0x01,0x19,0x00,0x00,0x05,0x24,0x20,0x00,0x00,0x00,0x10,0x12,0x10,0x58,0x40,0x42,0x4a,0x48,0x4c,0x44,0x4c,0x43,0x01,0x00 -+// 17105 䋑 ; -+,0x00,0x00,0x04,0x08,0x11,0x12,0x04,0x08,0x11,0x39,0x00,0x00,0x01,0x25,0x20,0x00,0x00,0x00,0x03,0x10,0x10,0x1b,0x91,0x90,0x90,0x94,0xa6,0xc0,0x80,0x82,0x82,0x00 -+// 17106 䋒 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x14,0x00,0x01,0x11,0x00,0x00,0x05,0x14,0x20,0x00,0x00,0x00,0x02,0x02,0x00,0x08,0x09,0x19,0x18,0x28,0x28,0x48,0x08,0x08,0x18,0x00 -+// 17107 䋓 ; -+,0x00,0x00,0x04,0x08,0x11,0x12,0x04,0x08,0x11,0x39,0x00,0x00,0x01,0x25,0x20,0x00,0x00,0x00,0x20,0x20,0x46,0x44,0x80,0x03,0x00,0x00,0x02,0x00,0x00,0x02,0x02,0x00 -+// 17108 䋔 ; -+,0x00,0x00,0x08,0x08,0x12,0x36,0x04,0x08,0x12,0x30,0x00,0x00,0x28,0x28,0x00,0x00,0x00,0x00,0x03,0x10,0x10,0x10,0x30,0x10,0x12,0x12,0x10,0x10,0x10,0x10,0x00,0x00 -+// 17109 䋕 ; -+,0x00,0x02,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x04,0x00,0x00,0x00,0x00,0x30,0x00,0x32,0x00,0x22,0x00,0x10,0xc0,0x08,0xc4,0x00,0x0c,0x86,0x00 -+// 17110 䋖 ; -+,0x00,0x00,0x08,0x08,0x12,0x36,0x04,0x08,0x12,0x30,0x00,0x00,0x29,0x28,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x17,0x10,0x16,0x10,0x12,0x10,0x11,0x10,0x10,0x10,0x00 -+// 17111 䋗 ; -+,0x00,0x00,0x08,0x08,0x13,0x32,0x04,0x08,0x12,0x30,0x00,0x02,0x28,0x28,0x00,0x00,0x00,0x00,0x92,0x90,0x90,0x90,0x92,0x82,0x82,0x82,0x82,0x90,0x90,0x90,0x91,0x00 -+// 17112 䋘 ; -+,0x00,0x04,0x08,0x08,0x13,0x32,0x04,0x08,0x12,0x3a,0x00,0x02,0x00,0x21,0x20,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x11,0x30,0x30,0x54,0x92,0x13,0x10,0x00 -+// 17113 䋙 ; -+,0x00,0x00,0x08,0x08,0x12,0x36,0x04,0x08,0x12,0x32,0x00,0x02,0x2a,0x28,0x00,0x00,0x00,0x00,0x46,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x45,0x04,0x04,0x04,0x00 -+// 17114 䋚 ; -+,0x00,0x00,0x08,0x08,0x12,0x32,0x04,0x08,0x12,0x32,0x00,0x00,0x2a,0x29,0x00,0x00,0x00,0x00,0x23,0x20,0x20,0xa8,0x64,0x20,0x22,0x66,0xa8,0x20,0x20,0x22,0x66,0x00 -+// 17115 䋛 ; -+,0x00,0x00,0x08,0x08,0x12,0x36,0x04,0x08,0x12,0x30,0x00,0x02,0x2a,0x28,0x00,0x00,0x00,0x10,0x10,0x92,0xd4,0x14,0x10,0x30,0x30,0x30,0x54,0x12,0x93,0x10,0x10,0x00 -+// 17116 䋜 ; -+,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x11,0x06,0x00,0x0e,0x0c,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0xa6,0x84,0x98,0x06,0x00,0x38,0x00,0x06,0x42,0x48,0x46,0xc2,0x00 -+// 17117 䋝 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x02,0x0a,0x28,0x20,0x00,0x00,0x00,0x00,0x12,0x50,0x44,0x00,0x20,0x21,0x4c,0x48,0x48,0x38,0x26,0x02,0x00 -+// 17118 䋞 ; -+,0x00,0x00,0x04,0x08,0x10,0x32,0x04,0x08,0x02,0x32,0x00,0x00,0x0a,0x28,0x20,0x00,0x00,0x00,0x82,0x82,0x82,0x86,0xa6,0xa2,0xa2,0xa6,0x86,0x86,0x82,0x82,0x86,0x00 -+// 17119 䋟 ; -+,0x00,0x00,0x04,0x08,0x12,0x36,0x04,0x08,0x12,0x32,0x00,0x02,0x0a,0x29,0x20,0x00,0x00,0x00,0x02,0x02,0x02,0x40,0x40,0x41,0x3e,0x00,0x18,0x41,0x41,0x42,0x3e,0x00 -+// 17120 䋠 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x00,0x0a,0x28,0x20,0x00,0x00,0x10,0x12,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x96,0x00 -+// 17121 䋡 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x00,0x0a,0x29,0x20,0x00,0x00,0x10,0x30,0x28,0x04,0x43,0x14,0x10,0x10,0x10,0x50,0x54,0x92,0x12,0x30,0x00 -+// 17122 䋢 ; -+,0x00,0x00,0x00,0x06,0x06,0x10,0x04,0x04,0x00,0x02,0x00,0x07,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x40,0x48,0x40,0x88,0x80,0x30,0xc0,0x04,0xc4,0x40,0x46,0xc2,0x00 -+// 17123 䋣 ; -+,0x00,0x08,0x10,0x10,0x20,0x11,0x15,0x15,0x11,0x11,0x04,0x00,0x03,0x02,0x04,0x00,0x00,0x00,0x08,0x10,0x02,0x24,0x28,0x10,0xa2,0x7a,0x08,0x28,0x4a,0x09,0x10,0x00 -+// 17124 䋤 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x04,0x00,0x12,0x04,0x00,0x12,0x02,0x12,0x06,0x00,0x00,0x10,0x90,0x20,0x22,0xa2,0x42,0x02,0x12,0x12,0x82,0x02,0x02,0x84,0x0c,0x00 -+// 17125 䋥 ; -+,0x00,0x00,0x0c,0x08,0x12,0x26,0x24,0x08,0x12,0x3a,0x00,0x02,0x2a,0x28,0x00,0x00,0x00,0x00,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x10,0x10,0x10,0x01,0x00 -+// 17126 䋦 ; -+,0x00,0x00,0x0c,0x08,0x12,0x26,0x24,0x08,0x12,0x3a,0x00,0x02,0x0a,0x20,0x00,0x00,0x00,0x00,0x40,0x42,0x80,0x02,0x40,0x50,0x44,0x44,0x54,0x14,0xc4,0x04,0x0c,0x08 -+// 17127 䋧 ; -+,0x00,0x00,0x04,0x08,0x12,0x16,0x04,0x08,0x12,0x3a,0x00,0x0a,0x0b,0x20,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x88,0x89,0x88,0x88,0x8a,0x02,0x02,0x22,0x02,0x00 -+// 17128 䋨 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x04,0x08,0x00,0x19,0x00,0x02,0x01,0x20,0x00,0x00,0x00,0x00,0x10,0x02,0x00,0x04,0x24,0x01,0x00,0x00,0x42,0x42,0x42,0x42,0x46,0x00 -+// 17129 䋩 ; -+,0x00,0x00,0x04,0x08,0x12,0x16,0x04,0x08,0x12,0x3a,0x00,0x02,0x20,0x20,0x00,0x00,0x00,0x00,0x22,0x82,0x82,0xa2,0x82,0x82,0xaa,0x28,0x28,0x48,0x48,0x89,0x0f,0x00 -+// 17130 䋪 ; -+,0x00,0x00,0x09,0x09,0x11,0x35,0x09,0x09,0x15,0x35,0x01,0x01,0x2b,0x21,0x01,0x00,0x00,0x00,0x63,0x40,0x40,0x16,0x14,0x54,0x54,0x14,0x10,0xc0,0x00,0x00,0x06,0x00 -+// 17131 䋫 ; -+,0x00,0x00,0x04,0x08,0x12,0x36,0x04,0x08,0x12,0x3a,0x00,0x02,0x0a,0x20,0x00,0x00,0x00,0x20,0x40,0x4c,0x08,0x92,0x12,0x12,0x32,0x12,0x32,0x10,0x10,0x10,0x20,0x00 -+// 17132 䋬 ; -+,0x00,0x00,0x0c,0x08,0x12,0x34,0x04,0x08,0x10,0x3a,0x00,0x02,0x2a,0x20,0x00,0x00,0x00,0x00,0x02,0x00,0x20,0x20,0x20,0x44,0x53,0x10,0x10,0x12,0x95,0x11,0x20,0x00 -+// 17133 䋭 ; -+,0x00,0x00,0x0c,0x08,0x12,0x34,0x04,0x08,0x12,0x3a,0x00,0x02,0x0a,0x20,0x00,0x00,0x00,0x10,0x10,0x20,0x24,0x02,0x81,0x00,0x00,0x04,0x00,0x44,0x00,0x00,0x84,0x00 -+// 17134 䋮 ; -+,0x00,0x00,0x0c,0x08,0x12,0x34,0x04,0x08,0x12,0x3a,0x00,0x02,0x0a,0x20,0x00,0x00,0x00,0x10,0x20,0x08,0x44,0x07,0x04,0x00,0x00,0x30,0x00,0x84,0x44,0x00,0x00,0x00 -+// 17135 䋯 ; -+,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x11,0x00,0x07,0x02,0x0f,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x92,0x90,0x96,0x08,0x04,0x23,0xc0,0x08,0xc4,0x00,0x04,0x82,0x00 -+// 17136 䋰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x04,0x12,0x01,0x07,0x00,0x06,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x80,0x34,0xc3,0x00,0xc4,0x40,0x44,0x42,0x00 -+// 17137 䋱 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x14,0x00,0x00,0x11,0x00,0x02,0x15,0x14,0x00,0x00,0x00,0x00,0x00,0x19,0x00,0x42,0x42,0x35,0x18,0x18,0x38,0x24,0x42,0x00,0x10,0x00 -+// 17138 䋲 ; -+,0x00,0x00,0x04,0x08,0x12,0x16,0x04,0x08,0x12,0x32,0x00,0x02,0x02,0x20,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x1f,0x00 -+// 17139 䋳 ; -+,0x00,0x00,0x00,0x08,0x02,0x02,0x34,0x08,0x12,0x32,0x00,0x02,0x09,0x20,0x00,0x00,0x00,0x00,0x28,0x2a,0x28,0x28,0xaf,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 17140 䋴 ; -+,0x00,0x00,0x04,0x08,0x02,0x12,0x14,0x08,0x02,0x32,0x00,0x02,0x05,0x20,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x3b,0x20,0x00,0x10,0x10,0x32,0x30,0x54,0x92,0x11,0x00 -+// 17141 䋵 ; -+,0x00,0x04,0x04,0x08,0x02,0x14,0x04,0x08,0x12,0x32,0x00,0x02,0x05,0x20,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x60,0x41,0x91,0x91,0x29,0x81,0x81,0x06,0x00 -+// 17142 䋶 ; -+,0x00,0x00,0x04,0x00,0x01,0x12,0x14,0x00,0x00,0x11,0x11,0x00,0x05,0x14,0x20,0x00,0x00,0x02,0x10,0x10,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x82,0x00 -+// 17143 䋷 ; -+,0x00,0x00,0x01,0x02,0x06,0x02,0x02,0x06,0x00,0x04,0x02,0x0f,0x02,0x04,0x00,0x00,0x00,0x00,0x90,0x16,0x84,0x08,0x14,0x03,0x20,0xc0,0x08,0xc4,0x00,0x04,0x82,0x80 -+// 17144 䋸 ; -+,0x00,0x00,0x0c,0x08,0x10,0x22,0x24,0x08,0x12,0x22,0x00,0x00,0x0b,0x29,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x88,0x8a,0xa2,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x00 -+// 17145 䋹 ; -+,0x00,0x00,0x0c,0x08,0x10,0x32,0x04,0x08,0x12,0x22,0x00,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x02,0x00,0x44,0x44,0x44,0x40,0x02,0x90,0x90,0x92,0x90,0x92,0x82,0x00 -+// 17146 䋺 ; -+,0x00,0x00,0x0c,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x00,0x2a,0x28,0x00,0x00,0x00,0x04,0x64,0x44,0x44,0x45,0x4c,0x54,0xe4,0xd4,0x44,0x4a,0x4a,0x52,0x41,0x00 -+// 17147 䋻 ; -+,0x00,0x00,0x0c,0x08,0x12,0x36,0x04,0x08,0x12,0x32,0x00,0x00,0x2a,0x28,0x00,0x00,0x00,0x10,0x10,0x13,0x10,0x10,0x82,0xa0,0x88,0x90,0x90,0x96,0x90,0x90,0x92,0x00 -+// 17148 䋼 ; -+,0x00,0x00,0x0c,0x08,0x10,0x02,0x34,0x08,0x00,0x22,0x20,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x4c,0x48,0x4b,0x4a,0x5a,0x1a,0x06,0x00,0xaa,0xaa,0xaa,0xaa,0xab,0x00 -+// 17149 䋽 ; -+,0x00,0x00,0x04,0x08,0x10,0x22,0x24,0x08,0x10,0x22,0x20,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x43,0x42,0x02,0x4a,0x42,0x42,0x42,0x42,0xc2,0x06,0x00 -+// 17150 䋾 ; -+,0x00,0x00,0x04,0x08,0x10,0x12,0x04,0x08,0x12,0x32,0x00,0x02,0x0a,0x28,0x00,0x00,0x00,0x10,0x20,0x20,0x40,0x14,0x2b,0x48,0x30,0x28,0x12,0x24,0x1c,0x18,0x20,0x00 -+// 17151 䋿 ; -+,0x00,0x00,0x0c,0x08,0x10,0x22,0x24,0x08,0x10,0x22,0x20,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x96,0x92,0x96,0x92,0x92,0x80,0x01,0xc0,0x16,0x08,0x08,0x44,0xc3,0x00 -+// 17152 䌀 ; -+,0x00,0x00,0x04,0x08,0x10,0x22,0x24,0x08,0x10,0x22,0x01,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x62,0x42,0x4a,0x62,0x42,0x4a,0xea,0xc3,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17153 䌁 ; -+,0x00,0x00,0x04,0x08,0x10,0x32,0x04,0x08,0x12,0x22,0x00,0x00,0x0a,0x28,0x00,0x00,0x00,0x01,0x28,0x20,0xa9,0xa1,0xa1,0xa9,0x20,0x21,0x44,0x48,0x18,0x26,0x41,0x00 -+// 17154 䌂 ; -+,0x00,0x00,0x08,0x08,0x10,0x26,0x24,0x08,0x12,0x22,0x00,0x00,0x2b,0x28,0x00,0x00,0x00,0x00,0x82,0x80,0x82,0x80,0x82,0x80,0x82,0xe2,0x88,0x08,0x08,0x08,0x09,0x00 -+// 17155 䌃 ; -+,0x00,0x00,0x00,0x09,0x00,0x12,0x14,0x08,0x00,0x22,0x00,0x00,0x0a,0x28,0x00,0x00,0x00,0x40,0x40,0x50,0xc0,0x44,0x14,0x14,0x14,0x14,0x14,0x10,0x10,0x10,0x32,0x00 -+// 17156 䌄 ; -+,0x00,0x00,0x04,0x08,0x10,0x22,0x24,0x08,0x12,0x22,0x20,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x10,0x10,0x92,0xaa,0x82,0x96,0x12,0x10,0x06,0x04,0x08,0x38,0x03,0x00 -+// 17157 䌅 ; -+,0x00,0x00,0x04,0x08,0x00,0x12,0x14,0x00,0x02,0x13,0x00,0x00,0x0a,0x29,0x20,0x00,0x00,0x10,0x12,0x80,0x80,0xd2,0x92,0x92,0x92,0x90,0x80,0xa2,0x82,0x02,0x26,0x00 -+// 17158 䌆 ; -+,0x00,0x00,0x04,0x08,0x00,0x12,0x14,0x08,0x02,0x32,0x00,0x02,0x08,0x20,0x20,0x00,0x00,0x20,0x00,0x92,0x92,0x92,0x92,0x82,0xb0,0x20,0x24,0x48,0x4a,0x80,0x0f,0x00 -+// 17159 䌇 ; -+,0x00,0x00,0x04,0x08,0x10,0x22,0x25,0x08,0x12,0x22,0x20,0x00,0x0a,0x28,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x93,0x20,0x04,0x58,0x20,0xf2,0x10,0x54,0x92,0x30,0x00 -+// 17160 䌈 ; -+,0x00,0x00,0x04,0x08,0x10,0x22,0x24,0x08,0x02,0x22,0x20,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x40,0x00,0x31,0x11,0x55,0x33,0x5d,0x91,0x33,0x00 -+// 17161 䌉 ; -+,0x00,0x00,0x04,0x08,0x00,0x12,0x04,0x08,0x02,0x32,0x00,0x02,0x0a,0x20,0x20,0x00,0x00,0x00,0x82,0xaa,0xaa,0xaa,0x02,0x00,0x10,0x00,0x40,0x40,0x40,0x40,0x41,0x00 -+// 17162 䌊 ; -+,0x00,0x00,0x04,0x08,0x10,0x12,0x34,0x08,0x10,0x22,0x20,0x00,0x0a,0x28,0x00,0x00,0x00,0x02,0x10,0x02,0x92,0x00,0x40,0x42,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x00 -+// 17163 䌋 ; -+,0x00,0x00,0x04,0x08,0x10,0x32,0x04,0x08,0x10,0x22,0x00,0x00,0x0a,0x28,0x20,0x00,0x00,0x40,0x40,0x4e,0x40,0x30,0x20,0x44,0x87,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 17164 䌌 ; -+,0x00,0x00,0x04,0x08,0x00,0x12,0x05,0x08,0x02,0x32,0x20,0x00,0x0a,0x20,0x20,0x00,0x00,0x00,0x21,0xa1,0x21,0x23,0xa9,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 17165 䌍 ; -+,0x00,0x00,0x04,0x08,0x10,0x22,0x24,0x08,0x12,0x22,0x20,0x00,0x0a,0x28,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x50,0x12,0x92,0x92,0x10,0x13,0x10,0x12,0x10,0x11,0x00 -+// 17166 䌎 ; -+,0x00,0x00,0x11,0x05,0x15,0x05,0x15,0x01,0x00,0x06,0x00,0x0f,0x02,0x04,0x00,0x00,0x00,0x20,0x24,0x08,0x0e,0x44,0x04,0x04,0x20,0xc0,0x08,0xc4,0x40,0x44,0xc2,0x00 -+// 17167 䌏 ; -+,0x00,0x00,0x04,0x08,0x12,0x36,0x04,0x08,0x12,0x32,0x00,0x00,0x0a,0x28,0x20,0x00,0x00,0x00,0x10,0x11,0x80,0x14,0x0a,0x81,0x34,0x20,0x00,0x00,0x42,0x02,0x42,0x00 -+// 17168 䌐 ; -+,0x00,0x00,0x04,0x08,0x12,0x32,0x04,0x08,0x12,0x32,0x00,0x00,0x0a,0x28,0x20,0x00,0x00,0x00,0x38,0x02,0x94,0x00,0x86,0x84,0x80,0x84,0x80,0xa8,0x48,0x48,0x8f,0x00 -+// 17169 䌑 ; -+,0x00,0x00,0x0d,0x09,0x13,0x35,0x01,0x01,0x15,0x33,0x00,0x00,0x0a,0x28,0x20,0x00,0x00,0x00,0x41,0x40,0x62,0x02,0x04,0x46,0x43,0x00,0x10,0x12,0x10,0x10,0x11,0x00 -+// 17170 䌒 ; -+,0x00,0x00,0x04,0x08,0x12,0x36,0x04,0x08,0x12,0x32,0x00,0x01,0x0b,0x28,0x20,0x00,0x00,0x10,0x10,0xa8,0xa8,0xab,0xa8,0xa8,0x80,0x48,0x4b,0x48,0x48,0x49,0x4f,0x00 -+// 17171 䌓 ; -+,0x00,0x04,0x08,0x18,0x08,0x09,0x01,0x01,0x03,0x03,0x02,0x03,0x00,0x06,0x08,0x00,0x00,0x00,0x94,0xa4,0x07,0x84,0x18,0x16,0x80,0x30,0x80,0x04,0x40,0x48,0x44,0x80 -+// 17172 䌔 ; -+,0x00,0x00,0x04,0x08,0x12,0x12,0x04,0x08,0x12,0x32,0x00,0x02,0x0a,0x28,0x20,0x00,0x00,0x00,0x80,0x80,0xa4,0xa4,0xa4,0x80,0x80,0xd0,0xd0,0xd6,0x90,0x80,0x80,0x00 -+// 17173 䌕 ; -+,0x00,0x00,0x08,0x00,0x13,0x35,0x09,0x01,0x01,0x33,0x01,0x05,0x29,0x20,0x00,0x00,0x00,0x10,0x10,0x02,0x04,0x24,0x24,0x24,0x34,0x7c,0x6c,0xa5,0x25,0x24,0x04,0x00 -+// 17174 䌖 ; -+,0x00,0x00,0x0c,0x08,0x13,0x34,0x00,0x00,0x12,0x32,0x00,0x02,0x2a,0x20,0x00,0x00,0x00,0x50,0x80,0x92,0x92,0x90,0x92,0x90,0x90,0x10,0x31,0x30,0x54,0x92,0x11,0x00 -+// 17175 䌗 ; -+,0x00,0x00,0x04,0x08,0x02,0x12,0x14,0x08,0x02,0x12,0x20,0x00,0x0a,0x28,0x21,0x00,0x00,0x40,0x40,0xc3,0xa8,0x28,0x28,0x6f,0x28,0x28,0x28,0x2b,0x00,0x20,0x21,0x00 -+// 17176 䌘 ; -+,0x00,0x00,0x09,0x04,0x14,0x16,0x11,0x10,0x00,0x00,0x01,0x06,0x00,0x02,0x08,0x00,0x00,0x10,0x00,0xa4,0xa4,0x98,0x98,0x86,0x80,0x30,0x80,0x04,0x40,0x44,0xc2,0x00 -+// 17177 䌙 ; -+,0x00,0x00,0x04,0x08,0x12,0x16,0x04,0x08,0x12,0x32,0x00,0x02,0x0a,0x28,0x20,0x00,0x00,0x00,0x00,0x4e,0x00,0x4d,0x10,0x92,0x92,0x92,0x92,0x92,0x00,0x44,0x83,0x00 -+// 17178 䌚 ; -+,0x00,0x00,0x0c,0x08,0x12,0x34,0x04,0x08,0x12,0x32,0x00,0x0a,0x2a,0x20,0x00,0x00,0x00,0x00,0x28,0x28,0xaa,0xaa,0xaa,0xaa,0x10,0x54,0x59,0x30,0x50,0x16,0x11,0x00 -+// 17179 䌛 ; -+,0x00,0x04,0x09,0x11,0x02,0x0c,0x04,0x04,0x01,0x00,0x00,0x01,0x11,0x11,0x11,0x00,0x00,0x00,0x8c,0x08,0x10,0x24,0x28,0x80,0x02,0x7b,0x08,0x28,0x2a,0x49,0x18,0x00 -+// 17180 䌜 ; -+,0x00,0x00,0x04,0x08,0x12,0x14,0x04,0x08,0x12,0x32,0x00,0x02,0x0a,0x28,0x00,0x00,0x00,0x20,0x20,0xa4,0x28,0x08,0x08,0x12,0x10,0x10,0x10,0x30,0x50,0x96,0x10,0x00 -+// 17181 䌝 ; -+,0x00,0x00,0x04,0x08,0x02,0x16,0x04,0x08,0x12,0x32,0x00,0x02,0x0a,0x29,0x20,0x00,0x00,0x44,0x44,0x65,0x44,0xce,0x45,0x40,0x04,0x00,0x01,0x10,0xd0,0x13,0x30,0x00 -+// 17182 䌞 ; -+,0x00,0x00,0x04,0x08,0x12,0x12,0x04,0x08,0x02,0x32,0x00,0x02,0x2a,0x20,0x00,0x00,0x00,0x10,0x20,0x28,0x44,0x8f,0x00,0xaa,0xaa,0xaa,0x08,0x44,0x44,0xaa,0x01,0x00 -+// 17183 䌟 ; -+,0x00,0x00,0x04,0x08,0x02,0x14,0x00,0x01,0x11,0x33,0x01,0x01,0x2a,0x22,0x00,0x00,0x00,0x00,0x24,0x21,0x20,0x2a,0xaa,0x00,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0x04,0x00 -+// 17184 䌠 ; -+,0x00,0x00,0x00,0x10,0x11,0x1b,0x1b,0x00,0x00,0x06,0x00,0x0f,0x02,0x04,0x00,0x00,0x00,0x10,0x80,0x2a,0x88,0x08,0x14,0x42,0x20,0xc0,0x08,0xc4,0x40,0x44,0xc2,0x00 -+// 17185 䌡 ; -+,0x00,0x00,0x04,0x08,0x12,0x36,0x04,0x08,0x02,0x32,0x00,0x02,0x2a,0x20,0x00,0x00,0x00,0x28,0x28,0xaa,0xaa,0xaa,0xaa,0x00,0x01,0x00,0x42,0x40,0x40,0x24,0x2b,0x00 -+// 17186 䌢 ; -+,0x00,0x00,0x08,0x08,0x13,0x34,0x00,0x08,0x10,0x32,0x00,0x02,0x2a,0x20,0x00,0x00,0x00,0x02,0x10,0x11,0x10,0x10,0x00,0x30,0x28,0x83,0x10,0x06,0x00,0x20,0x10,0x00 -+// 17187 䌣 ; -+,0x00,0x00,0x04,0x08,0x12,0x16,0x04,0x09,0x00,0x32,0x00,0x02,0x2a,0x20,0x00,0x00,0x00,0x04,0x40,0x4c,0x22,0x10,0x11,0x00,0x44,0x44,0x44,0x40,0x46,0x40,0x44,0x00 -+// 17188 䌤 ; -+,0x00,0x00,0x04,0x08,0x12,0x14,0x04,0x08,0x02,0x12,0x00,0x02,0x2a,0x20,0x00,0x00,0x00,0x00,0x00,0x52,0x91,0x12,0x92,0xb6,0xb6,0x92,0x96,0xb4,0xf6,0x90,0x92,0x00 -+// 17189 䌥 ; -+,0x00,0x00,0x04,0x08,0x00,0x12,0x04,0x08,0x02,0x32,0x00,0x00,0x0a,0x2a,0x00,0x00,0x00,0x00,0x02,0x82,0x00,0x10,0x10,0x00,0x02,0x02,0x02,0x00,0x50,0x41,0x7c,0x00 -+// 17190 䌦 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x02,0x32,0x00,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x22,0x04,0x22,0x6a,0x00,0x08,0x49,0x48,0x4a,0x48,0x4a,0x48,0x40,0x00 -+// 17191 䌧 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x10,0x32,0x00,0x00,0x0a,0x28,0x00,0x00,0x00,0x10,0x16,0x00,0x00,0x01,0x04,0x00,0x00,0x01,0x00,0xa7,0xa0,0xa0,0x04,0x00 -+// 17192 䌨 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x00,0x32,0x00,0x02,0x2a,0x28,0x00,0x00,0x00,0x00,0x6d,0x00,0x40,0xc3,0xa0,0x84,0x4e,0x00,0x12,0x10,0xd6,0x12,0x30,0x00 -+// 17193 䌩 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x00,0x0b,0x29,0x00,0x00,0x00,0x00,0x4f,0x40,0x02,0xaa,0xaa,0x80,0x14,0x90,0x92,0xcc,0x6c,0x0c,0x03,0x00 -+// 17194 䌪 ; -+,0x00,0x00,0x04,0x08,0x11,0x37,0x04,0x08,0x12,0x33,0x01,0x00,0x0b,0x28,0x01,0x00,0x00,0x00,0x29,0x29,0x29,0x29,0x01,0x29,0x41,0x45,0x05,0x05,0x05,0x01,0x02,0x00 -+// 17195 䌫 ; -+,0x00,0x00,0x05,0x09,0x11,0x05,0x25,0x08,0x02,0x12,0x00,0x00,0x0a,0x28,0x00,0x00,0x00,0x00,0x48,0x69,0x20,0x44,0x42,0x00,0x82,0x82,0x82,0x82,0xa8,0x48,0x89,0x00 -+// 17196 䌬 ; -+,0x00,0x00,0x04,0x08,0x10,0x24,0x28,0x00,0x01,0x23,0x01,0x05,0x0b,0x29,0x01,0x00,0x00,0x80,0x80,0x28,0x0a,0x02,0x22,0x00,0x2a,0x20,0x2a,0x20,0x2a,0x21,0x6f,0x00 -+// 17197 䌭 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x00,0x0a,0x28,0x01,0x00,0x00,0x00,0x64,0x04,0x00,0x48,0xc8,0x80,0x58,0x1a,0x00,0x01,0x00,0x21,0x05,0x00 -+// 17198 䌮 ; -+,0x00,0x00,0x04,0x08,0x11,0x14,0x3c,0x08,0x12,0x32,0x00,0x00,0x2a,0x29,0x00,0x00,0x00,0x02,0x10,0x91,0x10,0x10,0x10,0x40,0x4b,0x4a,0x4a,0xda,0x4a,0x4a,0x4a,0x00 -+// 17199 䌯 ; -+,0x00,0x00,0x04,0x08,0x10,0x32,0x04,0x08,0x02,0x32,0x00,0x02,0x0a,0x28,0x00,0x00,0x00,0x24,0x25,0x24,0x00,0xa8,0xaa,0x00,0x40,0x48,0xc8,0x48,0x4a,0x00,0x41,0x00 -+// 17200 䌰 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x02,0x2a,0x29,0x00,0x00,0x00,0x00,0x4c,0x48,0x48,0x42,0x00,0x00,0xaa,0xaa,0x2a,0xaa,0x2a,0xa2,0x22,0x00 -+// 17201 䌱 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x11,0x33,0x01,0x01,0x0b,0x20,0x00,0x00,0x00,0x20,0x12,0x00,0x00,0x04,0x04,0x00,0x56,0x50,0x44,0x6e,0x52,0x48,0x41,0x00 -+// 17202 䌲 ; -+,0x00,0x00,0x04,0x08,0x00,0x16,0x04,0x08,0x02,0x32,0x00,0x02,0x2a,0x20,0x01,0x00,0x00,0x48,0x4a,0x40,0x1c,0x10,0x10,0x94,0xbc,0xb4,0x10,0x10,0x12,0x08,0x29,0x00 -+// 17203 䌳 ; -+,0x00,0x00,0x04,0x08,0x10,0x36,0x04,0x08,0x12,0x32,0x00,0x02,0x2a,0x28,0x00,0x00,0x00,0x00,0x50,0x91,0x92,0xf6,0xb6,0xb6,0xb6,0x96,0x02,0x10,0x12,0x14,0x11,0x00 -+// 17204 䌴 ; -+,0x00,0x00,0x04,0x08,0x12,0x34,0x00,0x00,0x12,0x32,0x00,0x00,0x2b,0x20,0x00,0x00,0x00,0x10,0x11,0x00,0x00,0x02,0x42,0x00,0x66,0x5a,0x5e,0x4e,0x4a,0x4a,0x43,0x00 -+// 17205 䌵 ; -+,0x00,0x00,0x05,0x09,0x11,0x35,0x09,0x01,0x01,0x33,0x01,0x03,0x2b,0x28,0x00,0x00,0x00,0x00,0x03,0x02,0x00,0x14,0x02,0x4a,0x4a,0x20,0x51,0x55,0x55,0x14,0x06,0x02 -+// 17206 䌶 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x3c,0x04,0x08,0x10,0x18,0x00,0x00,0x30,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x0c,0x0c,0x1c,0x14,0x24,0x04,0x04,0x04,0x04,0x0c,0x00 -+// 17207 䌷 ; -+,0x00,0x00,0x04,0x08,0x02,0x12,0x3c,0x00,0x08,0x10,0x38,0x00,0x04,0x30,0x00,0x00,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17208 䌸 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x3e,0x04,0x08,0x10,0x18,0x00,0x00,0x30,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x20,0x20,0x20,0x00,0x42,0x04,0x00,0x00,0x10,0x0c,0x00 -+// 17209 䌹 ; -+,0x00,0x00,0x04,0x08,0x09,0x12,0x3c,0x04,0x08,0x10,0x38,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x81,0x81,0x80,0x88,0xa0,0xa0,0xa0,0xa0,0xa8,0x80,0x80,0x82,0x82,0x00 -+// 17210 䌺 ; -+,0x00,0x00,0x04,0x08,0x03,0x12,0x3c,0x00,0x08,0x10,0x30,0x00,0x18,0x20,0x00,0x00,0x00,0x00,0x07,0x04,0x04,0x44,0x04,0x04,0x44,0x04,0x04,0x07,0x04,0x04,0x04,0x04 -+// 17211 䌻 ; -+,0x00,0x00,0x04,0x08,0x02,0x12,0x3c,0x00,0x08,0x10,0x31,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x21,0x20,0x20,0x20,0xa4,0x20,0x22,0x24,0x28,0x20,0x20,0x20,0x62,0x00 -+// 17212 䌼 ; -+,0x00,0x00,0x04,0x08,0x01,0x12,0x3c,0x04,0x08,0x10,0x18,0x00,0x00,0x30,0x00,0x00,0x00,0x00,0x04,0x20,0x00,0x44,0x40,0x40,0x44,0x28,0x28,0x28,0x28,0x49,0x8f,0x00 -+// 17213 䌽 ; -+,0x00,0x00,0x08,0x08,0x12,0x12,0x24,0x20,0x08,0x00,0x18,0x00,0x04,0x18,0x00,0x00,0x00,0x00,0x1c,0x00,0x12,0x54,0x00,0x10,0x31,0x30,0x58,0x14,0x96,0x13,0x10,0x00 -+// 17214 䌾 ; -+,0x00,0x00,0x08,0x08,0x12,0x12,0x24,0x24,0x08,0x00,0x18,0x00,0x04,0x10,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x82,0xaa,0x82,0x92,0x92,0x92,0x92,0x92,0x96,0x00 -+// 17215 䌿 ; -+,0x00,0x00,0x0c,0x08,0x00,0x12,0x16,0x34,0x00,0x00,0x18,0x00,0x04,0x18,0x00,0x00,0x00,0x00,0x01,0x00,0x44,0x44,0x44,0x40,0x00,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17216 䍀 ; -+,0x00,0x00,0x08,0x08,0x10,0x12,0x24,0x20,0x08,0x00,0x18,0x00,0x04,0x10,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x04,0x02,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0xab,0x00 -+// 17217 䍁 ; -+,0x00,0x00,0x08,0x09,0x00,0x16,0x34,0x09,0x08,0x10,0x38,0x00,0x08,0x30,0x02,0x00,0x00,0x00,0x24,0x00,0x18,0x10,0x21,0x18,0x2c,0x0e,0x15,0x24,0x18,0x80,0x3f,0x00 -+// 17218 䍂 ; -+,0x00,0x08,0x00,0x11,0x04,0x04,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x1d,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 17219 䍃 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x08,0x60,0x04,0x88,0x40,0x00,0x08,0x00,0x02,0xc0,0x00,0x04,0x04,0x04,0x00 -+// 17220 䍄 ; -+,0x00,0x00,0x08,0x10,0x14,0x04,0x04,0x05,0x04,0x05,0x05,0x05,0x15,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17221 䍅 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x05,0x04,0x05,0x15,0x15,0x15,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x24,0x02,0x11,0x08,0x00,0x06,0x04,0x08,0x20,0x18,0x08,0x00 -+// 17222 䍆 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x05,0x04,0x15,0x15,0x15,0x15,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x40,0x00,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 17223 䍇 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x05,0x04,0x15,0x15,0x15,0x15,0x10,0x00,0x00,0x00,0x02,0x1c,0x00,0x10,0x10,0x02,0x06,0x04,0x08,0x10,0x00,0x00,0xe0,0x1f,0x00 -+// 17224 䍈 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x05,0x04,0x05,0x15,0x15,0x15,0x11,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x42,0x00,0x20,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00 -+// 17225 䍉 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x05,0x04,0x05,0x15,0x15,0x15,0x11,0x00,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x30,0x20,0x42,0x01,0x01,0x00 -+// 17226 䍊 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x05,0x04,0x05,0x15,0x15,0x15,0x11,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x22,0x41,0x04,0x04,0x08,0x10,0x18,0x04,0x03,0x00 -+// 17227 䍋 ; -+,0x00,0x08,0x08,0x00,0x14,0x04,0x04,0x05,0x04,0x05,0x15,0x15,0x15,0x11,0x00,0x00,0x00,0x00,0x0c,0x10,0x10,0x5e,0x50,0x50,0x5f,0x50,0x50,0x5e,0x10,0x10,0x12,0x00 -+// 17228 䍌 ; -+,0x00,0x08,0x08,0x11,0x14,0x04,0x04,0x04,0x04,0x15,0x05,0x05,0x15,0x11,0x00,0x00,0x00,0x10,0x10,0x02,0x00,0x24,0x10,0x09,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17229 䍍 ; -+,0x00,0x00,0x04,0x04,0x00,0x00,0x20,0x00,0x00,0x14,0x04,0x04,0x14,0x14,0x10,0x00,0x00,0x00,0x84,0x24,0x24,0x24,0xa7,0x00,0x02,0x02,0x04,0x18,0x08,0x14,0x03,0x00 -+// 17230 䍎 ; -+,0x00,0x00,0x10,0x12,0x18,0x08,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0b,0x3b,0x00,0x00,0x00,0x00,0x65,0x00,0x11,0x80,0xaa,0xaa,0x80,0xa2,0x00,0x02,0x04,0x02,0x06,0x00 -+// 17231 䍏 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x26,0x22,0x22,0x22,0x22,0x22,0x26,0x02,0x02,0x02,0x02,0x06,0x0c,0x00 -+// 17232 䍐 ; -+,0x00,0x00,0x09,0x01,0x01,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x20,0x20,0x24,0x00,0x0c,0x00,0x00,0xc2,0x00,0x00,0x00,0x00,0x00 -+// 17233 䍑 ; -+,0x00,0x00,0x10,0x11,0x13,0x11,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x0a,0x32,0x0a,0x02,0x0c,0x40,0x00,0xc2,0x00,0x00,0x40,0x40,0x00 -+// 17234 䍒 ; -+,0x00,0x00,0x09,0x01,0x01,0x09,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x26,0x20,0x20,0x24,0x00,0x00,0xc2,0x00,0x00,0x10,0x0c,0x02,0x00,0x00 -+// 17235 䍓 ; -+,0x00,0x00,0x09,0x01,0x01,0x09,0x00,0x00,0x04,0x08,0x08,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x26,0x20,0x20,0x24,0x00,0x10,0x10,0x10,0xf0,0x90,0x10,0x10,0x70,0x20 -+// 17236 䍔 ; -+,0x00,0x00,0x09,0x01,0x01,0x09,0x00,0x00,0x01,0x01,0x02,0x04,0x01,0x02,0x06,0x00,0x00,0x00,0x26,0x20,0x20,0x24,0x80,0x80,0x80,0x00,0x40,0x80,0x08,0x0c,0x04,0x00 -+// 17237 䍕 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0x08,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x18,0xc0,0x40,0x42,0x00,0x20,0x10,0x58,0x06,0x00 -+// 17238 䍖 ; -+,0x00,0x00,0x08,0x00,0x00,0x08,0x04,0x04,0x08,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x00,0x04,0x04,0x44,0x04,0x08,0x18,0x02,0xfe,0x00 -+// 17239 䍗 ; -+,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x00,0x00,0x01,0x04,0x04,0x01,0x04,0x0e,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x80,0xc2,0x80,0x00,0x30,0x40,0x00,0x08,0x04,0x00 -+// 17240 䍘 ; -+,0x00,0x00,0x08,0x00,0x00,0x08,0x00,0x02,0x02,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x00,0x48,0x10,0xe2,0x00,0x10,0x0c,0x43,0x40,0x00 -+// 17241 䍙 ; -+,0x00,0x00,0x09,0x09,0x09,0x00,0x06,0x08,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x00,0x00,0x00,0x0c,0x80,0x4f,0x08,0x48,0x08,0x18,0x00 -+// 17242 䍚 ; -+,0x00,0x00,0x09,0x01,0x09,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x26,0x22,0x26,0x80,0x40,0x08,0x08,0x08,0x48,0x4c,0x20,0x10,0x0e,0x00 -+// 17243 䍛 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x0a,0x08,0x08,0x00,0x00,0x00,0x26,0x22,0x22,0x00,0x04,0x04,0x94,0x84,0x84,0x04,0x24,0x04,0x04,0x00 -+// 17244 䍜 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x04,0x04,0x0c,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x26,0x22,0x22,0x00,0x40,0x00,0x40,0x40,0x40,0x44,0x40,0x40,0x42,0x00 -+// 17245 䍝 ; -+,0x00,0x00,0x09,0x09,0x09,0x00,0x01,0x01,0x06,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x24,0x24,0x44,0x48,0x60,0x58,0x86,0x08,0x08,0x08,0x08,0x08,0x00 -+// 17246 䍞 ; -+,0x00,0x00,0x08,0x01,0x03,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0x10,0x30,0x00,0x28,0x22,0x20,0x24,0x28,0x18,0x10,0x28,0x02,0x00 -+// 17247 䍟 ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x08,0x08,0x0a,0x02,0x09,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x22,0x02,0x02,0x30,0xe4,0x14,0x04,0x08,0x04,0x10,0x20,0xe0,0x1e,0x00 -+// 17248 䍠 ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x09,0x0b,0x08,0x08,0x00,0x00,0x02,0x22,0x22,0x80,0x42,0x20,0xc0,0x20,0xc8,0x80,0x04,0x14,0x04,0x04,0x00 -+// 17249 䍡 ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x0a,0x02,0x12,0x02,0x00,0x00,0x00,0x22,0x22,0x02,0x40,0x22,0x20,0x24,0x24,0x00,0x24,0x20,0x20,0x3e,0x00 -+// 17250 䍢 ; -+,0x00,0x00,0x01,0x01,0x00,0x04,0x0c,0x05,0x05,0x05,0x05,0x05,0x00,0x09,0x11,0x00,0x00,0x00,0x22,0x02,0x02,0x00,0x00,0x40,0x50,0x50,0x50,0x52,0x00,0x24,0x02,0x00 -+// 17251 䍣 ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x22,0x02,0x00,0x04,0x00,0xc2,0x00,0x00,0x00,0xcc,0xcc,0x84,0xcc,0x00 -+// 17252 䍤 ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x02,0x0a,0x02,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x22,0x02,0x02,0x42,0x20,0xac,0x10,0x14,0x00,0x08,0x08,0x08,0x08,0x00 -+// 17253 䍥 ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x08,0x09,0x09,0x0b,0x09,0x00,0x10,0x12,0x02,0x00,0x00,0x00,0x22,0x02,0x00,0x04,0x08,0x10,0x9c,0x14,0x02,0x00,0x48,0x40,0x42,0x00 -+// 17254 䍦 ; -+,0x00,0x00,0x11,0x11,0x04,0x04,0x02,0x06,0x12,0x10,0x04,0x20,0x2a,0x20,0x21,0x00,0x00,0x02,0x22,0x22,0x00,0xa8,0x2a,0x28,0xa8,0xa8,0x28,0xaa,0xa8,0xa8,0xa9,0x00 -+// 17255 䍧 ; -+,0x00,0x00,0x04,0x14,0x14,0x15,0x14,0x04,0x04,0x04,0x3c,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x44,0x28,0x02,0x10,0x10,0x12,0x10,0x10,0x13,0x10,0x10,0x10,0x10,0x00 -+// 17256 䍨 ; -+,0x00,0x00,0x12,0x08,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x10,0x52,0x42,0x42,0x42,0x42,0x42,0x00,0x10,0x00 -+// 17257 䍩 ; -+,0x00,0x00,0x12,0x08,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x20,0x20,0x22,0x44,0x44,0x04,0x00,0x28,0x18,0x10,0x38,0x4c,0x07,0x00 -+// 17258 䍪 ; -+,0x00,0x00,0x12,0x08,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x12,0x38,0x30,0x54,0x12,0x13,0x10,0x10,0x00 -+// 17259 䍫 ; -+,0x00,0x00,0x12,0x08,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x10,0x08,0x03,0x80,0x20,0x20,0x26,0x28,0x20,0x20,0x20,0x20,0x3e,0x00 -+// 17260 䍬 ; -+,0x00,0x00,0x12,0x08,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0x42,0x00,0x20,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00 -+// 17261 䍭 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x46,0x40,0x50,0x48,0x42,0xc6,0x00,0x10,0x04,0x85,0x84,0x04,0x0c,0x00 -+// 17262 䍮 ; -+,0x00,0x02,0x12,0x00,0x05,0x04,0x04,0x0e,0x04,0x04,0x0c,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x28,0x28,0x28,0x2a,0x6c,0x68,0x28,0x2a,0xaa,0x28,0x48,0x09,0x0f,0x00 -+// 17263 䍯 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x01,0x10,0x00,0x00,0x20,0x24,0x44,0x00,0xc0,0x40,0x52,0x02,0x02,0x82,0x84,0x80,0x01,0x1f,0x00 -+// 17264 䍰 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x01,0x01,0x91,0x11,0x15,0x11,0x11,0x11,0x05,0x25,0x01,0x01,0x81,0x00 -+// 17265 䍱 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x10,0x28,0x24,0x46,0x07,0x10,0x10,0x10,0x10,0x54,0x92,0x12,0x30,0x00 -+// 17266 䍲 ; -+,0x00,0x00,0x0a,0x08,0x07,0x04,0x04,0x06,0x04,0x04,0x0c,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x22,0x82,0x82,0xa2,0x82,0x82,0xa2,0x28,0x28,0x28,0x48,0x09,0x07,0x00 -+// 17267 䍳 ; -+,0x00,0x02,0x12,0x00,0x0e,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x00,0x11,0x00,0x00,0x00,0x00,0x22,0x22,0x04,0x44,0x2a,0x00,0x02,0x42,0x42,0xcc,0xcc,0x4c,0x03,0x00 -+// 17268 䍴 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0e,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x3c,0x10,0x13,0x30,0x54,0x93,0x10,0x30,0x6c,0x48,0x38,0x2c,0x02,0x00 -+// 17269 䍵 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x20,0x2c,0x48,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x10,0x30,0x00 -+// 17270 䍶 ; -+,0x00,0x02,0x12,0x00,0x06,0x00,0x00,0x0e,0x00,0x08,0x0e,0x08,0x08,0x00,0x10,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x30,0x10,0x54,0x12,0x10,0x00 -+// 17271 䍷 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x20,0x22,0x22,0x23,0x02,0x02,0x42,0x00,0x12,0x80,0x91,0x00,0x10,0x00 -+// 17272 䍸 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x08,0x0c,0x08,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x12,0x12,0x52,0x52,0x52,0x04,0x05,0x04,0x24,0x04,0x0c,0x00 -+// 17273 䍹 ; -+,0x00,0x02,0x12,0x00,0x05,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x00,0x10,0x00,0x00,0x10,0x00,0x42,0x02,0x42,0x42,0x02,0x42,0x10,0x14,0x28,0x28,0x44,0x83,0x00 -+// 17274 䍺 ; -+,0x00,0x00,0x12,0x02,0x07,0x04,0x04,0x0e,0x04,0x04,0x0c,0x00,0x09,0x09,0x10,0x00,0x00,0x00,0x10,0x5a,0x52,0x5a,0x10,0x1b,0x10,0x1a,0x00,0x40,0x49,0x40,0x7e,0x00 -+// 17275 䍻 ; -+,0x00,0x02,0x12,0x00,0x06,0x00,0x00,0x0e,0x00,0x00,0x0d,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0xaa,0x88,0xaa,0x88,0xff,0x00,0x24,0x24,0x24,0x25,0x00,0x20,0x01,0x00 -+// 17276 䍼 ; -+,0x00,0x02,0x10,0x04,0x06,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x44,0x44,0x4c,0xec,0x04,0xa8,0x03,0x04,0x04,0x44,0x04,0x04,0x44,0x00 -+// 17277 䍽 ; -+,0x00,0x00,0x14,0x04,0x07,0x08,0x09,0x0f,0x09,0x09,0x09,0x09,0x08,0x12,0x00,0x00,0x00,0x00,0x02,0x22,0x64,0x24,0x64,0x2e,0x05,0x00,0x00,0x42,0x40,0x40,0x53,0x00 -+// 17278 䍾 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x16,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x22,0x22,0x22,0x66,0x62,0x22,0x26,0xaa,0x22,0x22,0x22,0x22,0x00 -+// 17279 䍿 ; -+,0x00,0x01,0x01,0x09,0x01,0x01,0x19,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x0c,0x24,0x00,0x06,0x00,0x00,0xc8,0x00,0x00,0x42,0x00 -+// 17280 䎀 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x1b,0x09,0x09,0x1b,0x2d,0x09,0x09,0x09,0x19,0x00,0x00,0x00,0x08,0x0a,0x4a,0x48,0x48,0x4a,0x4a,0x4a,0x4c,0x44,0x4c,0x46,0x42,0x00 -+// 17281 䎁 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x1e,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x33,0x22,0x22,0x22,0x66,0x62,0x22,0x26,0xaa,0x22,0x22,0x22,0x22,0x00 -+// 17282 䎂 ; -+,0x00,0x00,0x09,0x09,0x09,0x0b,0x1b,0x09,0x09,0x1b,0x29,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x20,0x20,0x23,0x02,0x4a,0x22,0x22,0x2a,0x22,0x26,0x20,0x21,0x1f,0x00 -+// 17283 䎃 ; -+,0x00,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x35,0x01,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x12,0x10,0x10,0x10,0x54,0x10,0x12,0xb6,0x58,0x90,0x10,0x10,0x22,0x00 -+// 17284 䎄 ; -+,0x00,0x00,0x0d,0x09,0x09,0x09,0x12,0x02,0x00,0x13,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x33,0x00,0x00,0x00,0x44,0x00,0x22,0x66,0x88,0x00,0x00,0x22,0x22,0x00 -+// 17285 䎅 ; -+,0x00,0x00,0x00,0x08,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x62,0x62,0x22,0x26,0xaa,0x22,0x22,0x22,0x22,0x00 -+// 17286 䎆 ; -+,0x00,0x01,0x01,0x01,0x01,0x05,0x11,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x10,0x00,0x30,0x02,0x80,0x00,0x98,0x02,0x18,0x20,0xc0,0x60,0x00 -+// 17287 䎇 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x16,0x12,0x12,0x12,0x16,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x22,0x22,0x22,0xa2,0x62,0x62,0x22,0x26,0xaa,0x22,0x22,0x22,0x22,0x00 -+// 17288 䎈 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x1a,0x08,0x08,0x19,0x2a,0x08,0x08,0x08,0x19,0x00,0x00,0x00,0x90,0x90,0xd2,0xd2,0xd2,0xc2,0xca,0x88,0x8a,0x8c,0x8c,0x83,0x01,0x00 -+// 17289 䎉 ; -+,0x00,0x00,0x09,0x09,0x09,0x0b,0x1b,0x09,0x09,0x1b,0x2b,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x0a,0x48,0x48,0x48,0x48,0x4a,0x6a,0x5c,0x44,0x4c,0x04,0x03,0x01,0x00 -+// 17290 䎊 ; -+,0x00,0x00,0x08,0x0b,0x12,0x02,0x04,0x0a,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x66,0x22,0x22,0x26,0xaa,0x22,0x22,0x22,0x22,0x00 -+// 17291 䎋 ; -+,0x00,0x00,0x14,0x14,0x15,0x04,0x04,0x05,0x00,0x12,0x12,0x13,0x12,0x12,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0xa2,0x62,0x62,0x22,0x26,0xaa,0x22,0x22,0x22,0x22,0x00 -+// 17292 䎌 ; -+,0x00,0x00,0x09,0x08,0x08,0x2a,0x0a,0x08,0x09,0x1b,0x2a,0x08,0x08,0x09,0x01,0x00,0x00,0x00,0xa2,0x22,0x22,0x22,0x22,0x08,0x08,0x2a,0x08,0x28,0x48,0x08,0x07,0x00 -+// 17293 䎍 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x08,0x09,0x19,0x2a,0x08,0x08,0x09,0x09,0x00,0x00,0x00,0x8a,0x09,0x08,0x08,0x0b,0x08,0x0a,0x08,0x08,0x08,0x08,0x0a,0x4a,0x00 -+// 17294 䎎 ; -+,0x00,0x00,0x09,0x08,0x08,0x0a,0x0a,0x08,0x09,0x1b,0x2a,0x08,0x08,0x09,0x09,0x00,0x00,0x00,0x81,0x00,0x00,0x20,0x00,0x00,0x20,0x00,0x08,0x30,0x40,0x01,0x00,0x00 -+// 17295 䎏 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x04,0x00,0x03,0x02,0x04,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x32,0x02,0x02,0x02,0x42,0x02,0x02,0x26,0x6a,0x82,0x02,0x22,0x22,0x00 -+// 17296 䎐 ; -+,0x00,0x00,0x04,0x05,0x04,0x05,0x11,0x12,0x10,0x11,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x33,0x22,0x22,0x22,0x62,0x22,0x22,0x66,0xaa,0x22,0x22,0x22,0x22,0x00 -+// 17297 䎑 ; -+,0x00,0x00,0x09,0x09,0x09,0x2b,0x1b,0x09,0x09,0x19,0x2b,0x29,0x09,0x09,0x09,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x08,0x0a,0x28,0x0c,0x2c,0x4a,0x09,0x18,0x00 -+// 17298 䎒 ; -+,0x00,0x00,0x09,0x08,0x08,0x0a,0x1a,0x08,0x08,0x19,0x2a,0x28,0x08,0x08,0x19,0x00,0x00,0x00,0x94,0x12,0x10,0x0c,0x08,0x27,0x14,0x15,0x10,0x12,0x0c,0x1c,0x03,0x00 -+// 17299 䎓 ; -+,0x00,0x00,0x09,0x08,0x08,0x0b,0x1b,0x08,0x09,0x19,0x2a,0x28,0x08,0x09,0x09,0x00,0x00,0x08,0x88,0x1a,0x1c,0x2c,0x0a,0x0b,0x10,0x02,0x02,0x22,0x02,0x02,0x02,0x00 -+// 17300 䎔 ; -+,0x00,0x00,0x09,0x08,0x08,0x0a,0x1a,0x08,0x09,0x19,0x0a,0x28,0x08,0x08,0x19,0x00,0x00,0x00,0x8a,0x09,0x08,0x4a,0x4a,0x4a,0x4a,0x42,0x05,0x04,0x14,0x04,0x0c,0x00 -+// 17301 䎕 ; -+,0x00,0x02,0x02,0x0a,0x00,0x05,0x00,0x10,0x20,0x01,0x05,0x01,0x01,0x09,0x03,0x00,0x00,0x00,0x94,0x10,0x50,0x04,0x00,0x03,0x00,0x04,0x24,0x04,0x04,0x44,0x0c,0x00 -+// 17302 䎖 ; -+,0x00,0x01,0x0a,0x0a,0x24,0x35,0x2e,0x24,0x20,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x11,0x11,0x91,0x95,0xb5,0x91,0x11,0x33,0x15,0x55,0x11,0x11,0x32,0x00 -+// 17303 䎗 ; -+,0x00,0x01,0x04,0x04,0x0a,0x01,0x19,0x09,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x21,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0xb5,0x11,0x11,0x93,0xb5,0xd5,0x91,0x91,0x92,0x00 -+// 17304 䎘 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x1d,0x04,0x14,0x0d,0x2c,0x2c,0x04,0x00,0x00,0x00,0x89,0x89,0x81,0x85,0x21,0x81,0x81,0x93,0xa5,0x8d,0x81,0x81,0x93,0x00 -+// 17305 䎙 ; -+,0x00,0x04,0x04,0x00,0x21,0x0d,0x17,0x04,0x11,0x10,0x10,0x10,0x10,0x09,0x10,0x00,0x00,0x00,0x19,0x81,0x01,0x05,0x25,0x01,0x91,0x33,0x25,0xc9,0x01,0x11,0x92,0x00 -+// 17306 䎚 ; -+,0x00,0x00,0x09,0x09,0x09,0x29,0x1b,0x09,0x09,0x19,0x2b,0x2d,0x09,0x09,0x19,0x00,0x00,0x00,0x36,0x20,0x24,0x35,0x00,0x02,0x02,0x02,0x02,0x28,0x29,0x20,0x3e,0x00 -+// 17307 䎛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x94,0x98,0xb2,0x40,0x18,0x40,0x04,0x00,0x0c,0x08,0x08,0x08,0x08,0x00 -+// 17308 䎜 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x07,0x04,0x08,0x08,0x08,0x00,0x00,0x0c,0x08,0x00,0x00,0x10,0x10,0x96,0x14,0x14,0x19,0x08,0x10,0x20,0xec,0x30,0x20,0x22,0x3e,0x00 -+// 17309 䎝 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x03,0x00,0x01,0x09,0x01,0x01,0x11,0x03,0x00,0x00,0x80,0x9c,0x98,0xe0,0x10,0x00,0xfc,0x00,0x04,0x24,0x04,0x04,0x44,0x0c,0x00 -+// 17310 䎞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0a,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xac,0x90,0xe2,0x80,0x08,0x08,0x08,0x08,0x08,0x04,0x04,0x04,0x04,0x00 -+// 17311 䎟 ; -+,0x00,0x04,0x04,0x08,0x09,0x09,0x0a,0x02,0x12,0x12,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x22,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x82,0x82,0x00 -+// 17312 䎠 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x09,0x09,0x09,0x0d,0x0d,0x09,0x11,0x11,0x00,0x00,0x00,0x00,0x02,0x10,0x20,0x6a,0x2a,0x2a,0x2a,0x2a,0x2a,0x02,0x04,0x01,0xfe,0x00 -+// 17313 䎡 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x0c,0x01,0x02,0x00,0x00,0x00,0x00,0x02,0x80,0x24,0x24,0x24,0x24,0x24,0x80,0x84,0xc8,0x20,0x18,0x07,0x00 -+// 17314 䎢 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0e,0x00,0x0d,0x0c,0x0c,0x09,0x10,0x00,0x00,0x04,0x00,0x00,0x00,0x20,0x20,0x42,0x00,0x00,0x04,0x08,0x10,0x10,0x20,0x40,0x41,0x7f,0x00 -+// 17315 䎣 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0e,0x00,0x0d,0x0c,0x0c,0x0b,0x11,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x04,0x54,0x44,0x44,0x44,0x44,0x44,0x60,0x48,0x12,0x21,0x01,0x00 -+// 17316 䎤 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0e,0x00,0x0d,0x0c,0x0c,0x09,0x11,0x00,0x01,0x04,0x00,0x00,0x00,0xc2,0x02,0x02,0x42,0x80,0xc1,0x81,0xa5,0xa5,0xa5,0x21,0x02,0x06,0x00 -+// 17317 䎥 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0e,0x00,0x0d,0x0c,0x0c,0x0a,0x10,0x00,0x00,0x04,0x00,0x00,0x00,0x20,0x22,0x50,0x10,0x20,0x24,0x42,0x03,0x04,0x00,0x00,0x00,0x40,0x00 -+// 17318 䎦 ; -+,0x00,0x04,0x04,0x05,0x04,0x05,0x04,0x05,0x04,0x04,0x0d,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x06,0x48,0x10,0x14,0x22,0x10,0x10,0x52,0x58,0x14,0x24,0x43,0x00 -+// 17319 䎧 ; -+,0x00,0x04,0x04,0x0d,0x04,0x0e,0x04,0x0d,0x04,0x0c,0x0d,0x15,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x02,0x00,0x24,0x24,0x09,0x00,0x02,0x02,0x02,0x02,0x26,0x00,0x00 -+// 17320 䎨 ; -+,0x00,0x04,0x04,0x06,0x04,0x06,0x04,0x07,0x04,0x0c,0x0d,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x22,0x20,0x44,0x12,0x53,0x52,0x52,0x52,0x52,0x10,0x11,0x1f,0x00 -+// 17321 䎩 ; -+,0x00,0x00,0x04,0x0d,0x04,0x0e,0x04,0x05,0x04,0x0c,0x0f,0x15,0x04,0x04,0x04,0x00,0x00,0x00,0x4a,0x10,0x00,0x12,0x42,0x00,0x42,0x42,0x42,0x5a,0x42,0x42,0x42,0x00 -+// 17322 䎪 ; -+,0x00,0x04,0x04,0x05,0x04,0x05,0x04,0x05,0x04,0x0c,0x0d,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x42,0x42,0x46,0x42,0x44,0x00,0x04,0x04,0x04,0x24,0x24,0x04,0x08,0x00 -+// 17323 䎫 ; -+,0x00,0x00,0x00,0x0e,0x00,0x0e,0x00,0x0d,0x0c,0x0c,0x0e,0x10,0x00,0x00,0x04,0x00,0x00,0x00,0x0c,0x18,0x04,0xc6,0x00,0x42,0x21,0x24,0x44,0x08,0x10,0x2c,0x03,0x00 -+// 17324 䎬 ; -+,0x00,0x00,0x00,0x0e,0x00,0x0e,0x00,0x0d,0x0c,0x0c,0x0a,0x10,0x00,0x00,0x04,0x00,0x00,0x00,0x81,0x81,0x81,0xa9,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x02,0xc0,0x00 -+// 17325 䎭 ; -+,0x00,0x00,0x04,0x0e,0x04,0x0e,0x04,0x0c,0x04,0x0e,0x0e,0x14,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0xa8,0x28,0x08,0x09,0x00,0xc2,0x02,0x02,0x12,0x02,0xc0,0x3f,0x00 -+// 17326 䎮 ; -+,0x00,0x00,0x00,0x0e,0x00,0x0e,0x00,0x0d,0x0c,0x0c,0x0a,0x10,0x00,0x00,0x04,0x00,0x00,0x10,0x00,0x00,0x24,0x00,0x93,0x80,0x92,0x80,0xa4,0xa4,0xa4,0xa0,0x82,0x00 -+// 17327 䎯 ; -+,0x00,0x04,0x00,0x0e,0x00,0x0e,0x00,0x0f,0x0c,0x0e,0x1a,0x10,0x20,0x00,0x04,0x00,0x00,0x00,0x00,0x48,0x08,0x10,0x92,0x92,0x92,0x10,0x20,0x21,0x00,0x44,0x03,0x00 -+// 17328 䎰 ; -+,0x00,0x08,0x08,0x0a,0x08,0x0a,0x08,0x0a,0x08,0x0d,0x1b,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0xa1,0xa8,0xa8,0xa8,0xb9,0x0a,0x2a,0x2a,0x2a,0x2a,0x22,0x22,0x02,0x00 -+// 17329 䎱 ; -+,0x00,0x08,0x09,0x0f,0x09,0x08,0x08,0x0b,0x08,0x0d,0x1b,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x08,0x08,0x0a,0x48,0x8a,0xa8,0x09,0x20,0x28,0x2a,0x28,0x28,0x2d,0x00 -+// 17330 䎲 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x3a,0x02,0x02,0x00,0x00,0x00,0x80,0x04,0x0c,0x08,0x10,0x10,0x20,0x20,0x40,0x40,0x41,0x41,0x00,0x00 -+// 17331 䎳 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x32,0x02,0x02,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x42,0x42,0x02,0x06,0x00 -+// 17332 䎴 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x32,0x02,0x02,0x00,0x00,0x00,0x24,0x24,0x27,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x44,0x84,0x00 -+// 17333 䎵 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x32,0x02,0x02,0x00,0x00,0x00,0x10,0x04,0x24,0x24,0x24,0x20,0xa8,0xa9,0x31,0x20,0x22,0x22,0x1c,0x00 -+// 17334 䎶 ; -+,0x00,0x00,0x01,0x10,0x10,0x12,0x10,0x10,0x12,0x10,0x10,0x13,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x01,0x00,0x1a,0x00,0x00,0x9b,0x00,0x00,0x00,0x00,0x00 -+// 17335 䎷 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x32,0x02,0x02,0x00,0x00,0x10,0x10,0x50,0x50,0x90,0x10,0x12,0x30,0x30,0x54,0x14,0x13,0x10,0x10,0x00 -+// 17336 䎸 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x32,0x02,0x02,0x00,0x00,0x00,0x13,0x00,0x20,0x24,0x24,0x24,0x25,0x00,0x46,0x42,0x42,0x42,0x42,0x00 -+// 17337 䎹 ; -+,0x00,0x00,0x01,0x00,0x02,0x01,0x02,0x04,0x00,0x00,0x02,0x02,0x00,0x06,0x00,0x00,0x00,0x1c,0xc0,0x10,0x12,0xc0,0x10,0x0c,0x0a,0x10,0x10,0x10,0x10,0x1a,0x10,0x00 -+// 17338 䎺 ; -+,0x00,0x00,0x16,0x14,0x15,0x14,0x14,0x14,0x14,0x15,0x15,0x35,0x05,0x04,0x04,0x00,0x00,0x00,0x41,0xc1,0x45,0x45,0x55,0x45,0x45,0x55,0x45,0x41,0x51,0x51,0x43,0x00 -+// 17339 䎻 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x32,0x02,0x02,0x00,0x00,0x00,0x53,0x12,0x56,0x12,0x52,0x42,0x02,0x26,0xa2,0xaa,0xa2,0x02,0x06,0x00 -+// 17340 䎼 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3b,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x10,0x12,0x50,0x10,0x54,0x92,0x11,0x30,0x00 -+// 17341 䎽 ; -+,0x00,0x00,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3a,0x02,0x02,0x00,0x00,0x00,0x1c,0x00,0x49,0x08,0x04,0x43,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17342 䎾 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x32,0x02,0x02,0x00,0x00,0x10,0x30,0x28,0x44,0x02,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xa2,0x86,0x00 -+// 17343 䎿 ; -+,0x00,0x00,0x12,0x10,0x10,0x14,0x10,0x10,0x14,0x10,0x11,0x16,0x30,0x00,0x00,0x00,0x00,0x00,0x64,0x44,0x45,0x45,0x54,0xd4,0xc4,0xec,0x48,0x4a,0x42,0x51,0x41,0x00 -+// 17344 䏀 ; -+,0x00,0x00,0x12,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x35,0x04,0x04,0x00,0x00,0x00,0x42,0x52,0x46,0x56,0x56,0x56,0x56,0x46,0x66,0xd6,0x42,0x42,0x46,0x00 -+// 17345 䏁 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x22,0x02,0x02,0x00,0x00,0x10,0x10,0x81,0x90,0x10,0x00,0x04,0x24,0x0b,0x10,0x10,0x10,0x10,0x10,0x00 -+// 17346 䏂 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0x22,0x02,0x02,0x00,0x00,0x10,0x30,0x12,0x10,0x12,0x10,0x52,0x10,0x10,0x06,0x04,0x08,0x18,0x07,0x00 -+// 17347 䏃 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x22,0x02,0x02,0x00,0x00,0x00,0x81,0x80,0x02,0x42,0x42,0x02,0x42,0x02,0x10,0x01,0x00,0x42,0x81,0x00 -+// 17348 䏄 ; -+,0x00,0x00,0x02,0x00,0x01,0x14,0x00,0x00,0x14,0x00,0x00,0x3e,0x20,0x00,0x04,0x00,0x00,0x00,0x10,0x01,0x20,0x44,0x00,0x20,0x40,0xc2,0x10,0x10,0x10,0x10,0x12,0x00 -+// 17349 䏅 ; -+,0x00,0x00,0x02,0x00,0x00,0x15,0x02,0x00,0x14,0x00,0x00,0x1e,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0xbb,0xa2,0x24,0xc4,0x42,0x81,0x00,0x10,0x00,0x42,0x81,0x10,0x00 -+// 17350 䏆 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x22,0x02,0x02,0x00,0x00,0x28,0x28,0x28,0xaa,0xaa,0xaa,0xaa,0xaa,0x00,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17351 䏇 ; -+,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x22,0x02,0x02,0x00,0x00,0x00,0x28,0x28,0xaa,0xaa,0xaa,0x82,0x00,0x00,0x03,0x10,0x50,0x93,0x11,0x00 -+// 17352 䏈 ; -+,0x00,0x00,0x16,0x14,0x14,0x14,0x15,0x14,0x14,0x14,0x15,0x14,0x35,0x05,0x04,0x00,0x00,0x00,0x44,0x40,0x02,0x3c,0x44,0x08,0x13,0x34,0x24,0x04,0x35,0x05,0x0c,0x00 -+// 17353 䏉 ; -+,0x00,0x00,0x16,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x16,0x24,0x04,0x05,0x00,0x00,0x00,0x82,0x02,0x02,0x82,0x40,0x04,0xaa,0x40,0xaa,0x80,0x00,0xa9,0x01,0x00 -+// 17354 䏊 ; -+,0x00,0x00,0x16,0x14,0x14,0x14,0x14,0x14,0x15,0x15,0x15,0x15,0x25,0x05,0x05,0x00,0x00,0x00,0x88,0x28,0x08,0x02,0x20,0x08,0x28,0x28,0x2a,0x28,0x28,0x29,0x69,0x00 -+// 17355 䏋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x0c,0x09,0x28,0x0a,0x00,0x00,0x00,0x00,0xc4,0x04,0xc5,0x04,0xc4,0x10,0x06,0x02,0x22,0xa0,0xa0,0x20,0x1e,0x00 -+// 17356 䏌 ; -+,0x00,0x00,0x03,0x02,0x04,0x0c,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 17357 䏍 ; -+,0x00,0x00,0x01,0x02,0x08,0x0c,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x00,0x00,0x0c,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 17358 䏎 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x04,0x44,0x40,0x40,0x40,0x50,0x58,0x40,0x40,0x40,0x00,0x85,0x07,0x00 -+// 17359 䏏 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x1b,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 17360 䏐 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0x24,0x24,0x30,0x20,0x48,0x48,0x86,0x02,0x00 -+// 17361 䏑 ; -+,0x00,0x00,0x01,0x03,0x00,0x02,0x03,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x80,0x84,0x08,0x90,0x40,0x40,0x40,0xc6,0x20,0x50,0xc0,0x30,0x00,0x0c,0x00 -+// 17362 䏒 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x12,0x12,0x10,0x10,0x10,0x02,0x02,0x00,0x00,0x00,0x44,0x04,0x04,0x06,0x20,0x40,0x40,0x44,0x44,0x44,0x04,0x84,0x04,0x00 -+// 17363 䏓 ; -+,0x00,0x00,0x13,0x10,0x10,0x14,0x12,0x10,0x12,0x14,0x10,0x10,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x28,0x28,0x28,0x08,0x48,0x48,0x09,0x07,0x00 -+// 17364 䏔 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x02,0x02,0x36,0x22,0x20,0x20,0x20,0x24,0x01,0x00 -+// 17365 䏕 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x00,0x00,0x3c,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 17366 䏖 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x42,0x02,0x82,0x12,0x12,0x12,0x12,0x12,0x72,0x00 -+// 17367 䏗 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x40,0x42,0x00,0x84,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x02,0x03,0x00 -+// 17368 䏘 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x21,0x46,0x00,0x80,0x81,0x00 -+// 17369 䏙 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x12,0x12,0x10,0x10,0x10,0x02,0x02,0x00,0x00,0x10,0x10,0x10,0x13,0x92,0x90,0x00,0x30,0x30,0x30,0x50,0x50,0x91,0x0f,0x00 -+// 17370 䏚 ; -+,0x00,0x00,0x13,0x11,0x11,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x52,0x51,0x10,0x10,0x12,0x14,0x04,0x08,0x20,0x40,0x00 -+// 17371 䏛 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x10,0x10,0x20,0x23,0x42,0x02,0x12,0x12,0x02,0x12,0x42,0x02,0x02,0x0e,0x00 -+// 17372 䏜 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x08,0x08,0x22,0x62,0x44,0x54,0x48,0x88,0x84,0x02,0x00 -+// 17373 䏝 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x20,0x20,0x20,0x62,0x04,0x00,0x00,0x18,0x0c,0x00 -+// 17374 䏞 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x32,0x30,0x30,0x54,0x12,0x13,0x10,0x10,0x00 -+// 17375 䏟 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x10,0x16,0x24,0x24,0x24,0x24,0x29,0xa9,0xb0,0x20,0x20,0x22,0x1c,0x00 -+// 17376 䏠 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x02,0x00,0x06,0x04,0x24,0x24,0x20,0x20,0x00,0x01,0x00,0x00 -+// 17377 䏡 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x12,0x12,0x10,0x10,0x10,0x02,0x02,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x60,0x42,0x01,0x01,0x00,0x10,0x00 -+// 17378 䏢 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x00,0x00,0x00,0x5b,0x00,0x00,0x00,0x66,0x04,0x84,0x90,0x98,0x1c,0x03,0x00 -+// 17379 䏣 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x24,0x04,0x04,0x04,0x24,0x04,0x04,0x04,0x00,0x00 -+// 17380 䏤 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x4a,0x4a,0x4a,0x4a,0x4a,0x02,0x02,0x06,0x00 -+// 17381 䏥 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x00,0x1a,0x42,0x42,0x42,0x52,0x42,0x42,0x43,0x42,0x42,0x42,0x46,0x00 -+// 17382 䏦 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x01,0x02,0x00,0x00,0x00,0x06,0x10,0x10,0x10,0x10,0x10,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17383 䏧 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x20,0x22,0x24,0x28,0x10,0x08,0x10,0x33,0x62,0x14,0x08,0x10,0x00,0x00 -+// 17384 䏨 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x10,0x20,0x40,0x00,0x40,0x40,0x00,0x40,0x42,0x02,0x02,0x42,0x02,0x00 -+// 17385 䏩 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x10,0x28,0x20,0x44,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x44,0x40,0x00 -+// 17386 䏪 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x46,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x47,0x04,0x04,0x04,0x04 -+// 17387 䏫 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x48,0x48,0x08,0x8d,0xcc,0x0c,0x18,0x1a,0x0a,0x49,0x48,0x08,0x48,0x00 -+// 17388 䏬 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x10,0x20,0x42,0x61,0x10,0x50,0x9a,0x90,0x10,0x18,0x10,0x10,0x10,0x00 -+// 17389 䏭 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x10,0x50,0x52,0x10,0x10,0x11,0x38,0x30,0x34,0x54,0x12,0x11,0x10,0x00 -+// 17390 䏮 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x10,0x12,0x12,0x22,0x22,0x04,0x00,0x02,0x20,0x00,0x04,0x43,0x81,0x00 -+// 17391 䏯 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x03,0x06,0x00,0x00,0x10,0x10,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x10,0x41,0x41,0x42,0x3e,0x00 -+// 17392 䏰 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x13,0x12,0x12,0x82,0x22,0x46,0x04,0x10,0x08,0x01,0x81,0x04,0x3c,0x00 -+// 17393 䏱 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x42,0x42,0x42,0x40,0x40,0x41,0x41,0x05,0x05,0x85,0x81,0x02,0x02,0x00 -+// 17394 䏲 ; -+,0x00,0x00,0x12,0x10,0x10,0x14,0x10,0x10,0x10,0x14,0x00,0x00,0x20,0x00,0x04,0x00,0x00,0x08,0x08,0x00,0x12,0x12,0x92,0x90,0x90,0xb3,0x30,0x50,0x92,0x12,0x10,0x00 -+// 17395 䏳 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x00,0x07,0x10,0xd0,0x10,0x11,0x10,0x90,0x90,0x10,0x00,0x20,0xa0,0x80,0x00 -+// 17396 䏴 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x12,0x52,0x14,0x10,0x02,0x02,0x42,0x02,0x42,0x02,0x02,0x02,0x86,0x00 -+// 17397 䏵 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x07,0x00,0x00,0x00,0x20,0x24,0x21,0x20,0x22,0x08,0x42,0x4c,0x42,0x4c,0x98,0x91,0x0f,0x00 -+// 17398 䏶 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x88,0x88,0xaa,0x88,0x88,0x89,0x8f,0x10,0x10,0x12,0x10,0x10,0x11,0x00 -+// 17399 䏷 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x86,0x82,0x86,0x82,0x86,0x00,0x02,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 17400 䏸 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x02,0x20,0x20,0x24,0x24,0x24,0x00,0x00,0x46,0x40,0x40,0x44,0x44,0x00 -+// 17401 䏹 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x02,0x04,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xaa,0x08,0x48,0x48,0x89,0x0f,0x00 -+// 17402 䏺 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x40,0x44,0xa8,0x10,0x0e,0x12,0x12,0x10,0x10,0x10,0x11,0x10,0x10,0x00 -+// 17403 䏻 ; -+,0x00,0x04,0x08,0x00,0x11,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x10,0x10,0x92,0x90,0x10,0x10,0x10,0x10,0x20,0x20,0x00,0x72,0x02,0x00 -+// 17404 䏼 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x28,0x20,0x24,0x18,0x30,0x0f,0x70,0x22,0x20,0x24,0x18,0x38,0x07,0x00 -+// 17405 䏽 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x02,0x00,0x04,0x20,0x09,0x00,0x02,0x42,0x42,0x42,0x42,0x46,0x00 -+// 17406 䏾 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x10,0x12,0x00,0x20,0x20,0x60,0x48,0x84,0x33,0x00,0x36,0x00,0x00,0x00 -+// 17407 䏿 ; -+,0x00,0x04,0x02,0x09,0x00,0x11,0x10,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0x24,0x08,0x18,0x18,0x03,0x0c,0x00,0x08,0x00,0x08,0x00,0x18,0x00 -+// 17408 䐀 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x12,0x30,0x20,0x04,0x00,0x06,0x00,0x90,0x90,0x90,0x90,0x00,0x0c,0x00 -+// 17409 䐁 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x10,0x20,0x20,0x22,0x34,0x30,0xc0,0x5c,0x28,0x4a,0x0b,0x00,0x30,0x00 -+// 17410 䐂 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x03,0x02,0x06,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x10,0x12,0x50,0x18,0x54,0x92,0x11,0x30,0x00 -+// 17411 䐃 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x83,0x84,0x90,0x80,0x96,0x90,0x98,0xb4,0x80,0x80,0x90,0x80,0x82,0x00 -+// 17412 䐄 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x20,0x20,0x46,0x44,0x80,0x00,0xa0,0x82,0x82,0xa2,0x82,0x82,0x82,0x82,0x00 -+// 17413 䐅 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x81,0x81,0x81,0x80,0x80,0xa2,0xa8,0x88,0x99,0x90,0x14,0x22,0x01,0x00 -+// 17414 䐆 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x1c,0x00,0x12,0x54,0x00,0x10,0x30,0x30,0x30,0x54,0x12,0x11,0x10,0x00 -+// 17415 䐇 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x40,0x55,0xa8,0x08,0x12,0x22,0x04,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17416 䐈 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x10,0x12,0x10,0x54,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x45,0x00 -+// 17417 䐉 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x06,0x00,0x00,0x40,0x52,0x80,0x24,0x84,0x92,0x10,0x82,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17418 䐊 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x88,0x8a,0x88,0x88,0x88,0xc9,0x8f,0x00 -+// 17419 䐋 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x03,0x02,0x06,0x00,0x00,0x00,0x28,0x24,0x42,0x91,0x20,0x46,0x00,0x00,0x28,0x21,0x20,0x22,0x1c,0x00 -+// 17420 䐌 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x09,0x03,0x04,0x0e,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x24,0x24,0x24,0x10,0x08,0x1f,0x00,0x00,0x10,0x00,0x30,0x00 -+// 17421 䐍 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x00,0x10,0x12,0x10,0x12,0x00,0x04,0x40,0x44,0x00,0x04,0x24,0x28,0x01,0x00 -+// 17422 䐎 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x00,0x03,0x10,0x50,0x50,0xd0,0xb0,0x1e,0x00 -+// 17423 䐏 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x06,0x00,0x00,0x10,0x10,0x12,0x10,0x20,0x22,0x60,0x44,0xc7,0x44,0x44,0x44,0x44,0x44,0x00 -+// 17424 䐐 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x34,0x44,0x44,0x45,0x4c,0x4c,0x64,0xd4,0x46,0x4a,0x4a,0x41,0x41,0x00 -+// 17425 䐑 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x04,0x44,0xd5,0x14,0x04,0x14,0x00,0x50,0x10,0x18,0x30,0x10,0x13,0x10,0x00 -+// 17426 䐒 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x00,0x10,0x20,0x20,0x54,0xb3,0x08,0x30,0x28,0x1a,0x22,0x14,0x08,0x20,0x00 -+// 17427 䐓 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x00,0x10,0x10,0x22,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x22,0x02,0x00 -+// 17428 䐔 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x00,0x82,0x82,0x82,0x80,0x80,0xd4,0xd4,0x96,0x94,0x14,0x14,0x42,0x00 -+// 17429 䐕 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x06,0x00,0x00,0x00,0x44,0x04,0x44,0x00,0x44,0x04,0x44,0x04,0x44,0x04,0x44,0x04,0x04,0x00 -+// 17430 䐖 ; -+,0x00,0x00,0x16,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x20,0x21,0x04,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x88,0xaa,0x88,0x98,0x98,0x2c,0x0a,0x09,0x08,0x00 -+// 17431 䐗 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x00,0x10,0x16,0x14,0x14,0x19,0x10,0x20,0x42,0x42,0x66,0x42,0x42,0x66,0x00 -+// 17432 䐘 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x02,0x18,0x02,0x54,0x04,0x20,0x20,0x20,0x20,0x26,0x44,0x18,0x98,0x07,0x00 -+// 17433 䐙 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x04,0x04,0x44,0x04,0x14,0x10,0x92,0x92,0x92,0x90,0x10,0x10,0x10,0x10,0x00 -+// 17434 䐚 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x06,0x00,0x00,0x00,0x00,0x9a,0x88,0x88,0x88,0x88,0x98,0x88,0x88,0xaa,0xd8,0x88,0x08,0x00 -+// 17435 䐛 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x10,0x10,0x30,0x20,0x44,0x87,0x44,0x48,0x40,0x48,0x40,0x4c,0x00,0x00,0x00 -+// 17436 䐜 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x06,0x00,0x00,0x10,0x12,0x10,0x10,0x44,0x44,0x44,0x44,0x44,0x44,0x47,0x00,0x42,0x81,0x00 -+// 17437 䐝 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x06,0x00,0x00,0x10,0x12,0x54,0x10,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x20,0x46,0x82,0x00 -+// 17438 䐞 ; -+,0x00,0x00,0x16,0x10,0x10,0x15,0x11,0x11,0x14,0x14,0x00,0x00,0x23,0x24,0x0c,0x00,0x00,0x00,0x22,0x20,0x2a,0x08,0x08,0x6a,0x00,0xa8,0x22,0x22,0x3a,0x02,0xc6,0x00 -+// 17439 䐟 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x20,0x24,0x24,0x26,0x24,0x25,0x10,0x52,0x52,0x52,0x52,0x42,0x42,0x46,0x00 -+// 17440 䐠 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x07,0x00,0x00,0x40,0x40,0x4c,0x40,0x10,0x00,0x00,0xc4,0x00,0x54,0x44,0x84,0x84,0x07,0x00 -+// 17441 䐡 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x02,0x00,0x08,0x08,0x09,0x08,0x09,0x08,0x00,0x00,0x00,0x43,0x20,0x84,0x50,0x14,0x12,0x00,0xc4,0x84,0x14,0x84,0x14,0x0c,0x00 -+// 17442 䐢 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x00,0x43,0x00,0x80,0x5a,0x22,0x46,0x20,0x43,0x80,0x04,0x76,0x22,0x42,0x00 -+// 17443 䐣 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x06,0x00,0x00,0x00,0x44,0x00,0x44,0x00,0x02,0x82,0x82,0x82,0x82,0x82,0x80,0x40,0x83,0x00 -+// 17444 䐤 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x44,0x20,0x12,0x10,0x12,0x10,0x20,0x20,0x00,0x42,0x80,0x00,0x09,0x00 -+// 17445 䐥 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x00,0x20,0x44,0x12,0x23,0x44,0x40,0x22,0x22,0xa6,0x22,0xa6,0x2a,0x62,0x00 -+// 17446 䐦 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x22,0x20,0x44,0xc2,0x00,0xaa,0xaa,0xaa,0xaa,0xab,0x00 -+// 17447 䐧 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x05,0x00,0x00,0x10,0x12,0x00,0x44,0x44,0x44,0x00,0x03,0x00,0x08,0x08,0x08,0x00,0x02,0x00 -+// 17448 䐨 ; -+,0x00,0x00,0x04,0x04,0x05,0x00,0x20,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0xa7,0x40,0x02,0x04,0x04,0x18,0x08,0x14,0x03,0x00 -+// 17449 䐩 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x00,0x10,0x92,0x92,0x82,0x00,0x00,0x02,0x42,0x42,0x00,0x04,0x20,0x01,0x00 -+// 17450 䐪 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x00,0x40,0x92,0x92,0x90,0x92,0x90,0x91,0x00,0x24,0x25,0x41,0x00,0x06,0x00 -+// 17451 䐫 ; -+,0x00,0x00,0x16,0x10,0x10,0x16,0x10,0x10,0x11,0x13,0x10,0x10,0x00,0x20,0x04,0x00,0x00,0x00,0x92,0x04,0x36,0x89,0x80,0x08,0x28,0x2a,0x28,0x28,0x08,0x08,0x87,0x00 -+// 17452 䐬 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x20,0x28,0x28,0x28,0xaa,0xaa,0xaa,0xaa,0x00,0x02,0x02,0x42,0x02,0x42,0x00 -+// 17453 䐭 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x00,0x28,0x29,0x2c,0xa8,0x2b,0x00,0x11,0x10,0x52,0x12,0x12,0x12,0x10,0x00 -+// 17454 䐮 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x03,0x23,0x06,0x00,0x00,0x10,0x10,0x00,0x26,0x24,0x81,0x88,0xa8,0xaa,0xc8,0x0a,0x08,0x08,0x09,0x00 -+// 17455 䐯 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x00,0x92,0x92,0x92,0x92,0x10,0x24,0xc8,0x00,0xc2,0x10,0x50,0x92,0x31,0x00 -+// 17456 䐰 ; -+,0x00,0x00,0x16,0x10,0x10,0x15,0x11,0x13,0x12,0x10,0x10,0x10,0x00,0x20,0x04,0x00,0x00,0x00,0x80,0x93,0x44,0x4c,0x4e,0x41,0x52,0x52,0x52,0x52,0x12,0x12,0x16,0x00 -+// 17457 䐱 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x10,0x00,0x00,0x28,0x93,0x90,0x94,0x90,0xac,0x80,0xa8,0x80,0x82,0x00 -+// 17458 䐲 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x21,0xa4,0x64,0x22,0xa9,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0xc2,0x00 -+// 17459 䐳 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x00,0x20,0x28,0x48,0x80,0xd2,0x12,0x52,0x12,0x12,0x42,0x00,0x02,0x81,0x00 -+// 17460 䐴 ; -+,0x00,0x00,0x11,0x11,0x11,0x10,0x13,0x1c,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x10,0x50,0x5a,0x18,0x28,0x4b,0x00,0x0c,0x08,0x00,0x08,0x00,0x08,0x00 -+// 17461 䐵 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x00,0x48,0x00,0x11,0x10,0x92,0x92,0x92,0x92,0x92,0x00,0x42,0x01,0x00 -+// 17462 䐶 ; -+,0x00,0x00,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x26,0x04,0x00,0x00,0x00,0x44,0x4c,0x6c,0x46,0x8a,0xa3,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 17463 䐷 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x29,0x29,0x29,0x00,0x92,0x92,0x92,0x92,0x10,0x11,0x10,0x10,0x10,0x00 -+// 17464 䐸 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x10,0x12,0x16,0x14,0x10,0x10,0x13,0x00,0x92,0x92,0x92,0x80,0x03,0x00 -+// 17465 䐹 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x23,0x04,0x00,0x00,0x10,0x12,0x12,0x12,0x12,0x10,0x90,0x90,0x90,0x92,0x10,0x52,0x50,0x50,0x00 -+// 17466 䐺 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x02,0x28,0x2a,0xaa,0xaa,0x02,0x86,0x80,0x80,0x84,0x10,0x10,0x10,0x10,0x00 -+// 17467 䐻 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x10,0x12,0x10,0x12,0x00,0x04,0x10,0x04,0x20,0x30,0x10,0x12,0x10,0x10,0x00 -+// 17468 䐼 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x41,0x45,0x45,0x48,0x42,0x10,0x24,0x58,0x02,0xf3,0x50,0x92,0x10,0x00 -+// 17469 䐽 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x04,0x44,0x47,0x44,0x44,0x10,0x11,0x91,0x91,0xb5,0xb7,0x93,0x91,0x92,0x00 -+// 17470 䐾 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x00,0x02,0xa0,0xaa,0x00,0x12,0x10,0x04,0x24,0x12,0x10,0x19,0x10,0x10,0x00 -+// 17471 䐿 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x04,0x00,0x00,0x10,0x00,0x82,0x92,0xb2,0x92,0xba,0x96,0x82,0x11,0x30,0x28,0x44,0x03,0x00 -+// 17472 䑀 ; -+,0x00,0x00,0x16,0x10,0x10,0x14,0x10,0x10,0x10,0x14,0x10,0x11,0x00,0x04,0x04,0x00,0x00,0x00,0x24,0x25,0x20,0x2a,0xaa,0x00,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0x04,0x00 -+// 17473 䑁 ; -+,0x00,0x02,0x08,0x0a,0x08,0x0a,0x08,0x18,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x44,0xc4,0x04,0xc4,0x44,0x07,0x02,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 17474 䑂 ; -+,0x00,0x00,0x16,0x10,0x10,0x14,0x10,0x10,0x14,0x14,0x10,0x00,0x00,0x24,0x04,0x00,0x00,0x00,0x42,0x8a,0x82,0x82,0xba,0x8a,0x8a,0x8a,0x8a,0x00,0x40,0x82,0x02,0x00 -+// 17475 䑃 ; -+,0x00,0x00,0x12,0x12,0x12,0x16,0x12,0x12,0x16,0x1a,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x24,0x24,0x20,0x01,0x80,0x04,0x02,0x20,0x54,0x28,0x18,0x0a,0x09,0x18,0x00 -+// 17476 䑄 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x00,0x22,0x80,0x80,0x80,0x80,0x02,0x92,0x92,0x82,0x01,0x40,0x40,0x80,0x00 -+// 17477 䑅 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x04,0x04,0x24,0x24,0x04,0x00,0x00,0x00,0x49,0x48,0x02,0xaa,0xaa,0x00,0x01,0x20,0x64,0xc4,0x28,0x30,0x40,0x00 -+// 17478 䑆 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x22,0x04,0x00,0x00,0x04,0x20,0x10,0x34,0x20,0x60,0x54,0x87,0x44,0x44,0x44,0x42,0x44,0x42,0x00 -+// 17479 䑇 ; -+,0x00,0x00,0x16,0x10,0x10,0x14,0x10,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x04,0x00,0x00,0x00,0x88,0x88,0xaa,0x0a,0x02,0x12,0x82,0x82,0x82,0x82,0x82,0x60,0x83,0x00 -+// 17480 䑈 ; -+,0x00,0x00,0x24,0x25,0x25,0x24,0x24,0x25,0x26,0x24,0x24,0x24,0x24,0x05,0x08,0x00,0x00,0x92,0x82,0x38,0xcd,0x8a,0x00,0x85,0x44,0x00,0x31,0x60,0x80,0x02,0x00,0x00 -+// 17481 䑉 ; -+,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x06,0x08,0x00,0x00,0x20,0x12,0x80,0x00,0x84,0x84,0x00,0x0a,0x3a,0x1e,0xde,0x1a,0x0a,0x83,0x00 -+// 17482 䑊 ; -+,0x00,0x00,0x14,0x15,0x14,0x14,0x14,0x15,0x14,0x14,0x04,0x04,0x24,0x25,0x04,0x00,0x00,0x00,0x08,0x0a,0x8a,0x08,0x02,0xa2,0x22,0x22,0x22,0x00,0x22,0x82,0x30,0x00 -+// 17483 䑋 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x25,0x04,0x00,0x00,0x00,0x13,0x00,0xaa,0xaa,0x00,0x4a,0x48,0x48,0x49,0x42,0xc0,0x44,0x43,0x00 -+// 17484 䑌 ; -+,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x05,0x25,0x25,0x05,0x00,0x00,0x00,0x29,0x29,0x29,0x29,0x01,0x15,0x11,0x55,0x55,0x75,0x39,0x15,0x03,0x00 -+// 17485 䑍 ; -+,0x00,0x00,0x15,0x11,0x11,0x15,0x11,0x10,0x10,0x14,0x10,0x00,0x00,0x24,0x04,0x00,0x00,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x00,0xa9,0x20,0x65,0x44,0x08,0x1c,0x26,0x00 -+// 17486 䑎 ; -+,0x00,0x00,0x14,0x04,0x04,0x14,0x04,0x04,0x04,0x04,0x04,0x24,0x24,0x24,0x04,0x00,0x00,0x00,0x28,0xa9,0x58,0x89,0xa8,0xa0,0xa1,0xb4,0xa6,0xa4,0xa4,0xcb,0x01,0x00 -+// 17487 䑏 ; -+,0x00,0x00,0x16,0x10,0x10,0x14,0x10,0x10,0x10,0x10,0x11,0x12,0x00,0x00,0x04,0x00,0x00,0x40,0x4a,0x48,0x00,0x2a,0x2a,0x40,0x10,0x90,0x90,0x90,0x90,0x90,0x92,0x00 -+// 17488 䑐 ; -+,0x00,0x00,0x01,0x14,0x14,0x14,0x15,0x11,0x11,0x11,0x15,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x10,0x20,0x22,0x00,0x48,0x08,0x08,0x28,0x28,0x49,0x09,0x08,0x18,0x00 -+// 17489 䑑 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x28,0x2a,0xa8,0x28,0x04,0x28,0x12,0x10,0x12,0x10,0x38,0x28,0x44,0x83,0x00 -+// 17490 䑒 ; -+,0x00,0x00,0x00,0x04,0x08,0x00,0x11,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x10,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x02,0x12,0x52,0x12,0x12,0x22,0x02,0x02,0x04,0x00 -+// 17491 䑓 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x10,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x00,0x10,0x10,0x10,0x03,0x08,0x00,0x10,0x00,0xc8,0x00,0x02,0x00 -+// 17492 䑔 ; -+,0x00,0x00,0x08,0x11,0x01,0x01,0x01,0x01,0x11,0x01,0x01,0x01,0x01,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x5a,0x42,0x42,0x42,0x42,0x4e,0x00,0x00,0x00 -+// 17493 䑕 ; -+,0x00,0x01,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x08,0x88,0x88,0x88,0x88,0x00,0x04,0x82,0x00 -+// 17494 䑖 ; -+,0x00,0x00,0x08,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x12,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x17,0x10,0x14,0x10,0x10,0x90,0x90,0x30,0x0e,0x00 -+// 17495 䑗 ; -+,0x00,0x00,0x08,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x20,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x60,0x40,0x17,0x2a,0x4a,0x12,0x22,0x06,0x00 -+// 17496 䑘 ; -+,0x00,0x00,0x08,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x10,0x10,0x30,0x20,0x20,0x20,0x42,0x48,0x88,0x08,0x09,0x00 -+// 17497 䑙 ; -+,0x00,0x00,0x03,0x04,0x00,0x00,0x04,0x00,0x00,0x13,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x26,0x00,0x00,0x26,0x24,0x00,0x00,0x67,0x00,0x00,0x00,0x04,0x04,0x00 -+// 17498 䑚 ; -+,0x00,0x00,0x03,0x04,0x00,0x00,0x04,0x00,0x00,0x11,0x11,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x02,0x42,0x02,0x06,0x00 -+// 17499 䑛 ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x02,0x0e,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x63,0x09,0x00 -+// 17500 䑜 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x12,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x54,0x57,0x54,0x54,0x54,0x40,0x50,0x10,0x38,0x30,0x54,0x92,0x11,0x00 -+// 17501 䑝 ; -+,0x00,0x00,0x09,0x09,0x09,0x00,0x10,0x14,0x04,0x09,0x09,0x06,0x02,0x04,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x00,0x03,0x00,0x00,0x98,0x40,0x40,0x58,0x00,0x00,0x00 -+// 17502 䑞 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x04,0x04,0x09,0x05,0x02,0x00,0x00,0x00,0x04,0x40,0x48,0x98,0x40,0x40,0x18,0x0a,0x08,0x88,0x08,0x48,0x08,0x08,0x00 -+// 17503 䑟 ; -+,0x00,0x01,0x00,0x01,0x14,0x00,0x20,0x31,0x11,0x09,0x08,0x1f,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x22,0x22,0x22,0xa2,0x22,0x00,0x08,0x08,0x0a,0x08,0x08,0x09,0x00 -+// 17504 䑠 ; -+,0x00,0x04,0x04,0x09,0x01,0x05,0x01,0x01,0x19,0x01,0x11,0x11,0x11,0x01,0x03,0x00,0x00,0x00,0x02,0x02,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x00 -+// 17505 䑡 ; -+,0x00,0x04,0x04,0x09,0x01,0x05,0x01,0x01,0x19,0x01,0x11,0x11,0x11,0x01,0x01,0x00,0x00,0x00,0x00,0x42,0x02,0x12,0x04,0x24,0x20,0x08,0x10,0x18,0x2c,0x06,0x00,0x00 -+// 17506 䑢 ; -+,0x00,0x04,0x04,0x09,0x01,0x05,0x05,0x01,0x19,0x01,0x15,0x11,0x11,0x01,0x03,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x40,0x05,0x07,0x00 -+// 17507 䑣 ; -+,0x00,0x04,0x04,0x09,0x01,0x05,0x01,0x01,0x19,0x01,0x11,0x11,0x11,0x01,0x03,0x00,0x00,0x00,0x04,0x08,0x00,0x02,0x04,0x08,0x20,0x01,0x02,0x04,0x08,0x10,0x40,0x00 -+// 17508 䑤 ; -+,0x00,0x04,0x04,0x09,0x01,0x05,0x05,0x01,0x19,0x01,0x15,0x11,0x11,0x01,0x03,0x00,0x00,0x00,0x10,0x10,0x20,0x24,0x42,0x13,0x00,0x00,0x04,0x04,0x08,0x08,0x10,0x00 -+// 17509 䑥 ; -+,0x00,0x04,0x04,0x11,0x11,0x15,0x15,0x11,0x11,0x11,0x15,0x11,0x11,0x01,0x02,0x00,0x00,0x00,0x02,0x24,0x24,0x24,0x28,0x22,0x22,0x00,0x54,0x08,0x08,0x06,0x03,0x00 -+// 17510 䑦 ; -+,0x00,0x04,0x04,0x09,0x01,0x05,0x05,0x01,0x19,0x01,0x15,0x11,0x11,0x01,0x03,0x00,0x00,0x00,0x30,0x20,0x22,0x42,0x02,0x2a,0x2a,0x2a,0x2a,0x22,0x02,0x02,0x06,0x00 -+// 17511 䑧 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x16,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x24,0x24,0x44,0x44,0x44,0x44,0x44,0x54,0x44,0x44,0x44,0x44,0x4c,0x00 -+// 17512 䑨 ; -+,0x00,0x04,0x00,0x13,0x11,0x15,0x15,0x11,0x11,0x11,0x15,0x11,0x01,0x01,0x02,0x00,0x00,0x20,0x20,0x21,0x40,0x00,0x02,0x5a,0x72,0x42,0x42,0x40,0x40,0x41,0x3f,0x00 -+// 17513 䑩 ; -+,0x00,0x04,0x00,0x13,0x11,0x15,0x15,0x11,0x11,0x11,0x15,0x11,0x01,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x02,0x02,0x02,0x02,0x26,0x42,0x00 -+// 17514 䑪 ; -+,0x00,0x04,0x00,0x13,0x11,0x15,0x15,0x11,0x11,0x11,0x15,0x11,0x01,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x20,0x04,0x42,0x05,0x00,0x00,0x04,0x00,0x00,0x04,0x40,0x00 -+// 17515 䑫 ; -+,0x00,0x04,0x00,0x13,0x11,0x15,0x15,0x11,0x11,0x11,0x15,0x11,0x01,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0x2a,0x24,0x24,0x24,0x25,0x24,0x24,0x24,0x44,0x04,0x04,0x00 -+// 17516 䑬 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x16,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x28,0x28,0x28,0xaa,0x28,0x28,0x28,0xaa,0x28,0x48,0x48,0x89,0x0f,0x00 -+// 17517 䑭 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x16,0x12,0x12,0x12,0x16,0x02,0x02,0x22,0x02,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x80,0x00,0x00,0x40,0x80,0x00,0x80,0x00,0x00 -+// 17518 䑮 ; -+,0x00,0x04,0x00,0x11,0x11,0x15,0x11,0x11,0x11,0x11,0x15,0x11,0x01,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x04,0x00,0x10,0x18,0x18,0x34,0x42,0x03,0x00,0x00 -+// 17519 䑯 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x24,0x08,0x12,0x12,0x12,0x50,0x10,0x91,0x31,0x10,0x56,0x10,0x10,0x00 -+// 17520 䑰 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x16,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x40,0x48,0x40,0x41,0x00,0x00,0x60,0x42,0x04,0x08,0x10,0x40,0x00 -+// 17521 䑱 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x03,0x82,0x40,0x4a,0x2a,0xaa,0xaa,0x2a,0x0a,0x48,0x09,0x0f,0x00 -+// 17522 䑲 ; -+,0x00,0x04,0x00,0x12,0x10,0x10,0x14,0x12,0x12,0x10,0x14,0x10,0x00,0x02,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x52,0x42,0x42,0x42,0x42,0x10,0x11,0x10,0x10,0x10,0x00 -+// 17523 䑳 ; -+,0x00,0x04,0x00,0x12,0x10,0x10,0x14,0x12,0x12,0x10,0x14,0x10,0x00,0x02,0x06,0x00,0x00,0x00,0x10,0x28,0x24,0x46,0x03,0x00,0xaa,0xaa,0xaa,0xaa,0xaa,0xa2,0x82,0x00 -+// 17524 䑴 ; -+,0x00,0x04,0x00,0x12,0x10,0x10,0x14,0x12,0x12,0x10,0x14,0x10,0x00,0x02,0x06,0x00,0x00,0x00,0x24,0x25,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0x00,0x24,0x42,0x02,0x00 -+// 17525 䑵 ; -+,0x00,0x04,0x00,0x13,0x10,0x14,0x10,0x12,0x10,0x10,0x14,0x10,0x00,0x02,0x02,0x00,0x00,0x00,0x41,0x41,0x41,0x41,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 17526 䑶 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x02,0x02,0x22,0x02,0x00,0x00,0x08,0x12,0x18,0x1a,0x00,0x19,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 17527 䑷 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x02,0x02,0x22,0x06,0x00,0x00,0x00,0x00,0x02,0x00,0x42,0x00,0x22,0xa2,0xa2,0xa2,0xa2,0xa2,0x22,0x26,0x00 -+// 17528 䑸 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x02,0x02,0x22,0x06,0x00,0x00,0x00,0x10,0x00,0x41,0x80,0x00,0x00,0x08,0x08,0x28,0x4a,0x09,0x09,0x10,0x00 -+// 17529 䑹 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x02,0x02,0x22,0x06,0x00,0x00,0x00,0x10,0x00,0x80,0x10,0x54,0x24,0x42,0x04,0x04,0x08,0x10,0x28,0x06,0x00 -+// 17530 䑺 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x86,0x82,0x9a,0x92,0x9a,0x9a,0x9a,0x98,0x90,0x92,0x1a,0x03,0x01,0x00 -+// 17531 䑻 ; -+,0x00,0x04,0x00,0x16,0x10,0x1c,0x10,0x14,0x10,0x18,0x14,0x00,0x01,0x06,0x02,0x00,0x00,0x00,0x88,0x09,0x80,0x90,0x82,0xa0,0xa4,0xa5,0x24,0x24,0x04,0x44,0x44,0x00 -+// 17532 䑼 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x22,0x06,0x00,0x00,0x20,0x61,0x01,0x10,0x40,0x6a,0x02,0x20,0x43,0x80,0x02,0x7a,0x22,0x46,0x00 -+// 17533 䑽 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x00,0x33,0x80,0x00,0x22,0x88,0x00,0x22,0x00 -+// 17534 䑾 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x48,0x40,0x80,0x5a,0x50,0x58,0x50,0x40,0x02,0x04,0x0c,0x18,0x07,0x00 -+// 17535 䑿 ; -+,0x00,0x04,0x00,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x22,0x06,0x00,0x00,0x10,0x10,0x81,0x00,0x40,0x48,0x80,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x00 -+// 17536 䒀 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x44,0x99,0x8a,0x22,0x00,0x44,0x47,0xc4,0x54,0x4c,0x44,0x44,0x44,0x00 -+// 17537 䒁 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x02,0x02,0x22,0x04,0x00,0x00,0x00,0x23,0x20,0xa0,0x22,0x6c,0xa0,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x00 -+// 17538 䒂 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x04,0x00,0x00,0x04,0x04,0x88,0x8b,0x8a,0x30,0x02,0x02,0xa3,0x82,0x8a,0x8a,0x02,0x26,0x00 -+// 17539 䒃 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x90,0x0e,0x00,0x00,0xc0,0x00,0x12,0x12,0x12,0x12,0x80,0x1f,0x00 -+// 17540 䒄 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x44,0x44,0x44,0x00,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17541 䒅 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x54,0x0a,0x20,0x21,0x00,0x04,0x47,0x44,0x44,0x44,0x44,0x44,0x44,0x00 -+// 17542 䒆 ; -+,0x00,0x04,0x00,0x14,0x10,0x1c,0x15,0x10,0x15,0x11,0x1d,0x01,0x01,0x21,0x0d,0x00,0x00,0x04,0x44,0x00,0x88,0x2a,0x02,0x02,0x22,0x22,0x24,0x24,0x24,0x2a,0x21,0x00 -+// 17543 䒇 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x10,0x91,0x80,0x00,0x00,0x44,0x44,0x00,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17544 䒈 ; -+,0x00,0x04,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x06,0x00,0x00,0x10,0x12,0x10,0x24,0x24,0x00,0x42,0x42,0x02,0x42,0x02,0x42,0x20,0x42,0x00 -+// 17545 䒉 ; -+,0x00,0x04,0x08,0x16,0x12,0x1c,0x10,0x14,0x10,0x10,0x04,0x02,0x22,0x20,0x04,0x00,0x00,0x00,0x81,0xa8,0x28,0x2a,0x28,0x2b,0x40,0x84,0xa4,0xa4,0x55,0x04,0x04,0x00 -+// 17546 䒊 ; -+,0x00,0x00,0x08,0x11,0x10,0x20,0x08,0x08,0x10,0x11,0x00,0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x30,0x24,0xc0,0x40,0xd2,0x42,0x42,0x5a,0x40,0x40,0x40,0x41,0x7f,0x00 -+// 17547 䒋 ; -+,0x00,0x00,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x0c,0x04,0x0a,0x09,0x11,0x00,0x00,0x00,0x00,0x20,0x24,0x00,0x40,0x4a,0x42,0x42,0x4a,0x40,0x40,0x40,0x41,0x7f,0x00 -+// 17548 䒌 ; -+,0x00,0x00,0x00,0x20,0x11,0x11,0x11,0x11,0x11,0x04,0x04,0x00,0x09,0x11,0x00,0x00,0x00,0x10,0x90,0x24,0x20,0x40,0x4a,0x42,0x42,0x4a,0xc0,0x40,0x40,0x41,0x7f,0x00 -+// 17549 䒍 ; -+,0x00,0x00,0x04,0x00,0x0a,0x0a,0x00,0x24,0x04,0x08,0x09,0x09,0x09,0x10,0x02,0x00,0x00,0x10,0x10,0x24,0x00,0x00,0xca,0x4a,0x4a,0x4a,0x40,0x40,0x40,0x41,0x3f,0x00 -+// 17550 䒎 ; -+,0x00,0x00,0x09,0x09,0x08,0x05,0x04,0x08,0x01,0x00,0x08,0x0b,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x24,0x20,0x40,0x4a,0x4a,0xca,0x4a,0x40,0x40,0x40,0x41,0x3f,0x00 -+// 17551 䒏 ; -+,0x00,0x00,0x0a,0x02,0x24,0x24,0x24,0x24,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x10,0x10,0x24,0xa0,0x80,0xca,0xca,0x4a,0x4a,0x40,0x40,0x40,0x41,0x3f,0x00 -+// 17552 䒐 ; -+,0x00,0x08,0x0b,0x08,0x12,0x12,0x12,0x00,0x20,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x90,0x16,0xa4,0x80,0xea,0xca,0x8a,0x2a,0x00,0x00,0x00,0x01,0x3f,0x00 -+// 17553 䒑 ; -+,0x00,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 17554 䒒 ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x06,0x18,0x00,0x00,0x00,0x00,0x10,0x10,0x33,0x10,0x00,0x04,0x04,0x04,0x04,0x84,0x04,0x04,0x0c,0x18,0x00 -+// 17555 䒓 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x02,0x00,0x00,0x04,0x04,0x04,0x08,0x08,0x30,0x00 -+// 17556 䒔 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x20,0x20,0x20,0x20,0x10,0x10,0x08,0x04,0x03,0x00 -+// 17557 䒕 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x40,0x40,0x40,0x48,0x44,0x42,0x42,0xc0,0x80,0x00 -+// 17558 䒖 ; -+,0x00,0x00,0x02,0x03,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x33,0x00,0x00,0x08,0x08,0x08,0x28,0x08,0x08,0x08,0x05,0x03,0x00 -+// 17559 䒗 ; -+,0x00,0x01,0x01,0x01,0x01,0x00,0x04,0x08,0x00,0x00,0x00,0x01,0x06,0x08,0x0f,0x00,0x00,0x10,0x10,0x12,0x10,0x00,0x04,0x00,0x00,0x38,0x40,0x00,0x00,0x02,0xff,0x00 -+// 17560 䒘 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x01,0x03,0x06,0x08,0x01,0x00,0x01,0x02,0x08,0x00,0x00,0x10,0x10,0x13,0x10,0x00,0x00,0x08,0x18,0x10,0x20,0xc0,0xe0,0x18,0x06,0x00 -+// 17561 䒙 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x13,0x10,0x00,0x80,0x80,0x84,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 17562 䒚 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x40,0x48,0x44,0x42,0x58,0x30,0x60,0x80,0x00,0x00 -+// 17563 䒛 ; -+,0x00,0x00,0x00,0x03,0x00,0x02,0x02,0x04,0x01,0x1a,0x02,0x04,0x08,0x18,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x86,0x0c,0x00 -+// 17564 䒜 ; -+,0x00,0x00,0x02,0x03,0x02,0x00,0x02,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x13,0x10,0x00,0x40,0x40,0x40,0x40,0x42,0x40,0x40,0x40,0x40,0x00 -+// 17565 䒝 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x10,0x32,0x00,0x10,0x20,0xe0,0x30,0x00,0x18,0x20,0xc0,0x20,0x0e,0x00 -+// 17566 䒞 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x08,0x10,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x10,0x13,0x10,0x80,0x80,0x86,0x80,0x80,0x80,0x00,0x00,0x01,0x3e,0x00 -+// 17567 䒟 ; -+,0x00,0x00,0x02,0x03,0x02,0x00,0x02,0x02,0x02,0x00,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x32,0x10,0x00,0x18,0x00,0x40,0x00,0x18,0x00,0x00,0x00,0x30,0x00 -+// 17568 䒠 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x32,0x10,0x00,0xc2,0x00,0x00,0xc4,0x00,0x00,0xc0,0x00,0x80,0x00 -+// 17569 䒡 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x10,0x10,0x00,0x00,0x01,0x07,0x00,0x00,0x10,0x10,0x12,0x10,0x00,0x84,0x80,0x80,0x00,0x80,0x80,0x80,0x00,0x00,0x00 -+// 17570 䒢 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x01,0x00,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x44,0x40,0x40,0x00 -+// 17571 䒣 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x12,0x10,0x10,0x00,0x08,0x08,0x0e,0x08,0x08,0x0c,0x08,0x08,0x18,0x00 -+// 17572 䒤 ; -+,0x00,0x00,0x02,0x03,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x10,0x33,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 17573 䒥 ; -+,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x80,0x80,0xc4,0x84,0x84,0x84,0x8c,0x88,0x80,0x00 -+// 17574 䒦 ; -+,0x00,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x38,0x00,0x00,0x48,0x10,0x60,0x80,0x00,0x00,0xfe,0x00 -+// 17575 䒧 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x04,0x0c,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0xc0,0x00,0x81,0x80,0x00,0x08,0x0c,0x04,0x00 -+// 17576 䒨 ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x04,0x08,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x08,0xc0,0x80,0x82,0x80,0x20,0x10,0x0c,0x02,0x00 -+// 17577 䒩 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x18,0xc0,0x00,0xc2,0xc0,0x20,0x10,0x0c,0x06,0x00,0x00 -+// 17578 䒪 ; -+,0x00,0x00,0x02,0x02,0x02,0x01,0x02,0x04,0x0c,0x02,0x02,0x02,0x00,0x04,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x00,0x00,0x0c,0x04,0x10,0x12,0x10,0x10,0x10,0x10,0x00 -+// 17579 䒫 ; -+,0x00,0x00,0x01,0x03,0x00,0x02,0x02,0x04,0x0c,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x28,0x20,0x22,0x20,0x20,0x00,0x10,0x08,0x07,0x00 -+// 17580 䒬 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x40,0x40,0x4c,0x46,0x42,0xc0,0x00 -+// 17581 䒭 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x10,0x12,0x10,0x10,0x12,0x10,0x10,0x10,0x30,0x00 -+// 17582 䒮 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x10,0x10,0x03,0x02,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x02,0x00,0x30,0x00,0x80,0x40,0x00,0x01,0x1e,0x00 -+// 17583 䒯 ; -+,0x00,0x01,0x01,0x01,0x01,0x00,0x10,0x21,0x01,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x02,0x00,0x10,0x10,0x10,0x10,0x90,0x11,0x1f,0x00 -+// 17584 䒰 ; -+,0x00,0x00,0x02,0x03,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x30,0x00,0x04,0x00,0x04,0x40,0x48,0x40,0x40,0x44,0x00,0x02,0x00 -+// 17585 䒱 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x08,0x10,0x40,0x4c,0x60,0x50,0x4c,0x46,0x80,0x06,0x00 -+// 17586 䒲 ; -+,0x00,0x01,0x01,0x01,0x01,0x04,0x08,0x09,0x09,0x0a,0x02,0x02,0x04,0x0b,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x04,0x18,0x10,0x10,0x12,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 17587 䒳 ; -+,0x00,0x00,0x01,0x01,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x10,0x10,0x10,0x1e,0x00,0xc2,0x00,0x10,0x0e,0x02,0x00 -+// 17588 䒴 ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x02,0x06,0x0a,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x12,0x10,0x00,0x82,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 17589 䒵 ; -+,0x00,0x01,0x01,0x01,0x01,0x04,0x04,0x09,0x09,0x09,0x02,0x0a,0x06,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x06,0x00,0x08,0x09,0x08,0x08,0x08,0x08,0x10,0x00 -+// 17590 䒶 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x30,0x10,0x80,0x84,0x84,0x84,0x04,0x40,0x4c,0x30,0x99,0x07,0x00 -+// 17591 䒷 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x1c,0xc0,0x00,0xc2,0x00,0xc8,0x00,0x00,0x00,0x08,0x00 -+// 17592 䒸 ; -+,0x00,0x00,0x01,0x03,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x80,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00 -+// 17593 䒹 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x40,0xc0,0x00,0x80,0x02,0xe0,0x00,0x08,0x06,0x02,0x00 -+// 17594 䒺 ; -+,0x00,0x02,0x02,0x02,0x02,0x01,0x02,0x07,0x00,0x02,0x0f,0x02,0x06,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x88,0x18,0x60,0x80,0x04,0x42,0x40,0x4c,0x46,0xc2,0x00 -+// 17595 䒻 ; -+,0x00,0x00,0x01,0x03,0x01,0x00,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x39,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x42,0x42,0x42,0x42,0x42,0x40,0x40,0x40,0x7f,0x00 -+// 17596 䒼 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x01,0x09,0x01,0x01,0x09,0x01,0x01,0x09,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x00 -+// 17597 䒽 ; -+,0x00,0x00,0x02,0x03,0x02,0x00,0x10,0x11,0x11,0x12,0x13,0x15,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x32,0x00,0x02,0x02,0x0a,0x12,0x12,0x32,0x0a,0x0a,0x02,0x06,0x00 -+// 17598 䒾 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x01,0x01,0x02,0x06,0x0a,0x02,0x02,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x40,0x43,0x00,0x0c,0x30,0x20,0x10,0x18,0x8c,0x02,0x00 -+// 17599 䒿 ; -+,0x00,0x00,0x02,0x03,0x02,0x10,0x10,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x30,0x00,0x02,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 17600 䓀 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x12,0x10,0x10,0x00,0xc0,0x00,0x84,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 17601 䓁 ; -+,0x00,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x00,0xc0,0x00,0x00,0x10,0x12,0x10,0x10,0x10,0x10,0x00 -+// 17602 䓂 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0x40,0x00,0x08,0x00,0x08,0x00,0x08,0x08,0x08,0x08,0x00 -+// 17603 䓃 ; -+,0x00,0x02,0x02,0x02,0x00,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x01,0x10,0x00,0x08,0x08,0x08,0x04,0x84,0x84,0x04,0x00,0x02,0xfe,0x00 -+// 17604 䓄 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x02,0x0c,0x04,0x02,0x06,0x0a,0x02,0x02,0x0e,0x00,0x00,0x00,0x12,0x32,0x00,0x02,0x40,0x40,0x40,0x48,0x48,0x48,0x08,0x88,0x08,0x00 -+// 17605 䓅 ; -+,0x00,0x00,0x02,0x03,0x02,0x08,0x00,0x00,0x10,0x04,0x00,0x08,0x09,0x09,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x04,0x10,0x80,0x80,0x98,0x80,0x00,0x00,0x00,0x00,0x00 -+// 17606 䓆 ; -+,0x00,0x00,0x00,0x03,0x00,0x04,0x04,0x05,0x04,0x04,0x1c,0x24,0x04,0x04,0x0c,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x5c,0x40,0x40,0x48,0x48,0x48,0x88,0x88,0x08,0x00 -+// 17607 䓇 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x05,0x09,0x10,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x40,0xc4,0x00,0xc3,0x00,0x00,0x04,0x02,0x20,0x60,0x00 -+// 17608 䓈 ; -+,0x00,0x00,0x02,0x03,0x00,0x04,0x04,0x02,0x06,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0x48,0x48,0x48,0x8e,0x00,0x44,0x48,0x30,0x30,0x07,0x00 -+// 17609 䓉 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x11,0x13,0x07,0x05,0x09,0x01,0x02,0x00,0x00,0x10,0x10,0x12,0x10,0x00,0x82,0x22,0x20,0x60,0x20,0x20,0x20,0x26,0x20,0x00 -+// 17610 䓊 ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x30,0x00,0x04,0x00,0x10,0x10,0x12,0x00,0x08,0x08,0x08,0x08,0x00 -+// 17611 䓋 ; -+,0x00,0x00,0x03,0x02,0x02,0x08,0x08,0x01,0x11,0x01,0x09,0x09,0x11,0x11,0x11,0x00,0x00,0x00,0x33,0x10,0x00,0x04,0x10,0x10,0x10,0x10,0x00,0x08,0x08,0xc4,0x02,0x00 -+// 17612 䓌 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x12,0x02,0x03,0x00,0x00,0x00,0x10,0x30,0x00,0x40,0xc0,0x00,0xc4,0x00,0x40,0x42,0x01,0x08,0xf8,0x00 -+// 17613 䓍 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x0c,0x00,0x08,0x08,0x00,0x40,0x40,0xc0,0x40,0x40,0x00 -+// 17614 䓎 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x04,0x04,0x15,0x14,0x04,0x05,0x09,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xa2,0x42,0x02,0x12,0x0a,0x82,0x02,0x0e,0x00 -+// 17615 䓏 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x01,0x02,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x00,0x02,0x80,0x80,0x08,0x06,0x00,0x08,0x08,0x08,0x08,0x00 -+// 17616 䓐 ; -+,0x00,0x00,0x02,0x03,0x00,0x00,0x01,0x02,0x04,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x80,0x82,0x00,0x08,0x14,0x83,0x08,0xc8,0x00,0x02,0x7e,0x00 -+// 17617 䓑 ; -+,0x00,0x00,0x03,0x01,0x00,0x08,0x00,0x00,0x10,0x00,0x08,0x18,0x08,0x00,0x10,0x00,0x00,0x10,0x13,0x10,0x10,0x00,0x4a,0x48,0x48,0x49,0x48,0x08,0x88,0x08,0x08,0x00 -+// 17618 䓒 ; -+,0x00,0x00,0x02,0x02,0x06,0x04,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x00,0x00,0x06,0x02,0x12,0x92,0x92,0x90,0x94,0x04,0x0c,0x00 -+// 17619 䓓 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x13,0x00,0x80,0x82,0x80,0x88,0x00,0x00,0x10,0x10,0x10,0x90,0x30,0x00 -+// 17620 䓔 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x33,0x10,0x00,0x9c,0x18,0xb2,0x40,0x98,0x00,0x42,0x40,0x40,0xc0,0x00 -+// 17621 䓕 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x10,0x00,0x00,0x10,0x10,0x12,0x10,0x00,0x08,0x00,0x42,0x50,0x50,0x92,0x0e,0x00,0xfe,0x00 -+// 17622 䓖 ; -+,0x00,0x02,0x02,0x02,0x02,0x00,0x10,0x02,0x04,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x10,0x12,0x10,0x50,0x42,0x02,0x08,0x04,0x80,0x8c,0x00,0x08,0x08,0x18,0x00 -+// 17623 䓗 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x01,0x00,0x06,0x00,0x00,0x10,0x10,0x03,0x00,0x00,0x10,0x12,0x10,0x00,0x00,0x88,0x86,0x00,0x18,0x08,0x40,0x42,0x0a,0xf8,0x00 -+// 17624 䓘 ; -+,0x00,0x00,0x00,0x03,0x00,0x04,0x04,0x09,0x03,0x04,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x12,0x10,0x00,0x10,0x90,0x14,0x10,0xf0,0x1e,0x08,0x08,0x08,0x08,0x00 -+// 17625 䓙 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0xc0,0x00,0xc2,0x00,0x14,0x10,0x10,0x12,0x00,0x00,0x00 -+// 17626 䓚 ; -+,0x00,0x00,0x00,0x02,0x00,0x04,0x08,0x12,0x04,0x08,0x18,0x00,0x00,0x00,0x08,0x00,0x00,0x10,0x12,0x10,0x10,0x00,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x00 -+// 17627 䓛 ; -+,0x00,0x00,0x02,0x02,0x00,0x08,0x08,0x08,0x08,0x0a,0x0a,0x08,0x02,0x10,0x02,0x00,0x00,0x10,0x12,0x10,0x00,0x04,0x04,0x04,0x40,0x40,0x48,0x40,0x44,0x44,0x04,0x00 -+// 17628 䓜 ; -+,0x00,0x00,0x00,0x03,0x00,0x08,0x08,0x00,0x10,0x04,0x00,0x08,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x30,0x00,0x04,0x30,0x10,0x10,0x92,0x08,0x08,0x04,0xc7,0x91,0x00 -+// 17629 䓝 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x12,0x10,0x00,0x38,0x40,0xc2,0x00,0x80,0x80,0x28,0x08,0x08,0x2b,0x00 -+// 17630 䓞 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x11,0x02,0x00,0x00,0x10,0x13,0x10,0x40,0x44,0x04,0x04,0x40,0x48,0x4c,0x00,0x90,0x08,0x07,0x00 -+// 17631 䓟 ; -+,0x00,0x00,0x02,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x01,0x10,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x06,0x44,0x54,0x04,0x04,0x24,0x24,0x24,0x04,0x0c,0x00 -+// 17632 䓠 ; -+,0x00,0x00,0x02,0x02,0x00,0x01,0x01,0x02,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x12,0x10,0x40,0x4c,0x70,0x50,0x4c,0x82,0x08,0x08,0x08,0x08,0x08,0x00 -+// 17633 䓡 ; -+,0x00,0x00,0x02,0x02,0x02,0x0c,0x08,0x12,0x02,0x06,0x04,0x04,0x01,0x09,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x00,0x80,0x22,0x22,0xa2,0x22,0x22,0x26,0xa0,0x00,0x00 -+// 17634 䓢 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x02,0x02,0x02,0x42,0x02,0x12,0x12,0x12,0x02,0x02,0x00 -+// 17635 䓣 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x13,0x11,0x10,0x10,0x10,0x00,0x00,0x10,0x10,0x10,0x10,0x02,0x00,0x42,0x42,0x02,0x1a,0x96,0x42,0x02,0x06,0x00 -+// 17636 䓤 ; -+,0x00,0x01,0x01,0x01,0x04,0x05,0x09,0x02,0x04,0x00,0x00,0x00,0x14,0x34,0x03,0x00,0x00,0x00,0x12,0x10,0x00,0x24,0x24,0x44,0x44,0x88,0x18,0x40,0x42,0x01,0xf8,0x00 -+// 17637 䓥 ; -+,0x00,0x01,0x00,0x02,0x04,0x03,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x18,0x27,0x24,0x00,0x08,0x08,0x08,0x08,0x80,0xc3,0x80,0x80,0x00 -+// 17638 䓦 ; -+,0x00,0x02,0x02,0x02,0x02,0x01,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x06,0x08,0x00,0x00,0x10,0x12,0x10,0x00,0x20,0x6c,0x24,0x24,0x24,0x24,0x25,0x00,0x0c,0x06,0x00 -+// 17639 䓧 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x03,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x00,0x00,0x18,0x00,0x42,0x40,0x44,0x4c,0x52,0x40,0x80,0x02,0x00 -+// 17640 䓨 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x10,0x12,0x06,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x00,0x10,0x10,0x12,0x10,0x00,0x02,0x00,0x08,0x40,0x42,0x40,0x44,0x44,0x44,0x00 -+// 17641 䓩 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x04,0x05,0x04,0x0e,0x0d,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x12,0x30,0x00,0x00,0x00,0x18,0x00,0x1a,0x02,0x24,0x18,0x1c,0x03,0x00 -+// 17642 䓪 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x02,0x04,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x08,0x08,0x08,0x08,0x00,0x92,0x20,0x44,0x84,0x1c,0x00 -+// 17643 䓫 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x08,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x80,0x84,0x00,0x18,0x0b,0x08,0x48,0x48,0x48,0x08,0x18,0x00 -+// 17644 䓬 ; -+,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x04,0x00,0x0c,0x08,0x08,0x08,0x00,0xc2,0x00,0x00,0x00 -+// 17645 䓭 ; -+,0x00,0x02,0x02,0x02,0x02,0x01,0x06,0x05,0x00,0x02,0x02,0x0a,0x12,0x02,0x04,0x00,0x00,0x00,0x12,0x10,0x00,0x02,0x10,0x10,0x90,0x10,0x10,0x10,0x80,0x40,0x0c,0x00 -+// 17646 䓮 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x02,0x06,0x0a,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x12,0x10,0x00,0x90,0x10,0x21,0xa4,0x44,0x04,0x18,0x18,0x24,0x03,0x00 -+// 17647 䓯 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x80,0xc8,0x00,0x00,0x88,0x08,0x88,0x48,0x08,0x18,0x00 -+// 17648 䓰 ; -+,0x00,0x00,0x02,0x02,0x00,0x01,0x01,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x22,0x20,0x24,0x24,0x24,0x80,0x80,0x80,0x80,0x82,0x00 -+// 17649 䓱 ; -+,0x00,0x00,0x02,0x02,0x00,0x02,0x02,0x00,0x02,0x1c,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x26,0xa0,0x20,0x20,0x1e,0x40,0xe0,0x50,0x4c,0x43,0x00 -+// 17650 䓲 ; -+,0x00,0x02,0x02,0x02,0x00,0x02,0x04,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x10,0x12,0x10,0x00,0x04,0x48,0x00,0x84,0x84,0x84,0x00,0x40,0x01,0x0f,0x00 -+// 17651 䓳 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x08,0x02,0x04,0x0c,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x12,0x10,0x00,0x00,0x84,0x84,0x84,0x84,0x82,0x94,0x88,0x84,0xc3,0x00 -+// 17652 䓴 ; -+,0x00,0x02,0x02,0x02,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x12,0x10,0x00,0x80,0x84,0x24,0x24,0x24,0x04,0x82,0x80,0x18,0x06,0x00 -+// 17653 䓵 ; -+,0x00,0x02,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x10,0x12,0x10,0x00,0x18,0x00,0x00,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x00 -+// 17654 䓶 ; -+,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x12,0x12,0x12,0x16,0x0e,0x0a,0x12,0x02,0x00,0x00,0x00,0x23,0x20,0x00,0x82,0x02,0x92,0x92,0x92,0x92,0x12,0x82,0x02,0x0c,0x00 -+// 17655 䓷 ; -+,0x00,0x02,0x02,0x02,0x02,0x08,0x08,0x00,0x10,0x01,0x00,0x08,0x10,0x10,0x10,0x00,0x00,0x00,0x12,0x10,0x00,0x40,0x80,0x40,0x80,0x84,0x04,0x04,0x04,0x04,0x0c,0x00 -+// 17656 䓸 ; -+,0x00,0x00,0x03,0x01,0x00,0x04,0x09,0x09,0x07,0x00,0x04,0x09,0x09,0x07,0x00,0x00,0x00,0x10,0x13,0x10,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x88,0x00 -+// 17657 䓹 ; -+,0x00,0x00,0x02,0x02,0x02,0x01,0x06,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x12,0x10,0x80,0x00,0x58,0x47,0x08,0x08,0x08,0x08,0x08,0x18,0x04,0x00 -+// 17658 䓺 ; -+,0x00,0x02,0x02,0x02,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x32,0x00,0x10,0x00,0x06,0x00,0x80,0x82,0x80,0x82,0x20,0x10,0x0e,0x00 -+// 17659 䓻 ; -+,0x00,0x00,0x02,0x02,0x00,0x10,0x30,0x01,0x00,0x01,0x01,0x01,0x09,0x09,0x11,0x00,0x00,0x00,0x10,0x30,0x00,0x02,0x00,0x10,0x12,0xa4,0x20,0x18,0x14,0x00,0xff,0x00 -+// 17660 䓼 ; -+,0x00,0x00,0x00,0x03,0x00,0x04,0x00,0x09,0x09,0x08,0x02,0x0a,0x06,0x09,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x20,0x24,0x22,0x24,0x28,0x06,0x48,0x46,0x98,0x0f,0x00 -+// 17661 䓽 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x01,0x00,0x00,0x01,0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x32,0x10,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x3f,0x00 -+// 17662 䓾 ; -+,0x00,0x00,0x02,0x02,0x08,0x00,0x10,0x04,0x08,0x08,0x08,0x03,0x02,0x00,0x01,0x00,0x00,0x00,0x33,0x00,0x00,0x50,0x92,0x11,0x08,0x00,0x00,0x10,0x20,0xe0,0x18,0x00 -+// 17663 䓿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x12,0x10,0x00,0x18,0x80,0x42,0x02,0x22,0x52,0x0a,0xc2,0x02,0x06,0x00 -+// 17664 䔀 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x12,0x10,0x00,0x3c,0x00,0x32,0x60,0x06,0x40,0xc8,0x98,0x38,0x86,0x00 -+// 17665 䔁 ; -+,0x00,0x00,0x02,0x02,0x00,0x01,0x01,0x09,0x09,0x08,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x20,0x20,0x24,0x24,0x24,0x02,0xc0,0x00,0x0c,0x02,0x00 -+// 17666 䔂 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x10,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x80,0x00,0x82,0x00,0x00,0x10,0x22,0x00,0xc4,0x00,0x00,0x00 -+// 17667 䔃 ; -+,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x02,0x02,0x04,0x0e,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x45,0x00 -+// 17668 䔄 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x13,0x10,0x08,0x00,0x84,0x48,0x00,0x40,0x00,0xc0,0x00,0x04,0x04,0x00 -+// 17669 䔅 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x12,0x10,0x02,0x08,0x48,0x48,0x48,0x0a,0x08,0x48,0x48,0x08,0x10,0x00 -+// 17670 䔆 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x0a,0x0c,0x04,0x06,0x0a,0x02,0x02,0x02,0x0c,0x00,0x00,0x00,0x10,0x32,0x00,0x00,0x96,0x90,0x94,0x90,0x90,0x10,0x10,0x10,0x11,0x00 -+// 17671 䔇 ; -+,0x00,0x02,0x02,0x02,0x00,0x00,0x0c,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x10,0x12,0x10,0x80,0x84,0xc4,0x00,0x00,0x08,0x08,0x08,0x00,0x20,0x03,0x00 -+// 17672 䔈 ; -+,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x06,0x00,0x00,0x10,0x12,0x10,0x00,0x40,0x40,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x04,0x00 -+// 17673 䔉 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x06,0x00,0x04,0x0c,0x0e,0x09,0x10,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x04,0x18,0x00,0x02,0x38,0x24,0x40,0x03,0x00,0x00,0x00 -+// 17674 䔊 ; -+,0x00,0x02,0x02,0x02,0x02,0x00,0x02,0x08,0x08,0x0e,0x08,0x08,0x0c,0x18,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x44,0x08,0x2c,0x20,0x20,0x2d,0x00,0x40,0x00,0x00,0x00 -+// 17675 䔋 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x01,0x12,0x00,0x01,0x18,0x00,0x15,0x20,0x00,0x00,0x10,0x10,0x10,0x00,0x08,0x08,0x28,0x09,0x49,0x02,0x04,0x08,0x10,0x00,0x00 -+// 17676 䔌 ; -+,0x00,0x02,0x02,0x02,0x00,0x04,0x04,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x08,0x08,0x08,0x80,0x83,0x00,0x08,0xdf,0x00,0x00,0x00 -+// 17677 䔍 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x12,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x0c,0x00,0xc8,0x00,0xc0,0x00,0x02,0x0a,0x42,0x0c,0x00 -+// 17678 䔎 ; -+,0x00,0x00,0x02,0x02,0x02,0x08,0x08,0x00,0x01,0x09,0x08,0x08,0x08,0x08,0x21,0x00,0x00,0x10,0x12,0x10,0x00,0x20,0x20,0x20,0x20,0x28,0x60,0xa8,0x24,0x20,0xfe,0x00 -+// 17679 䔏 ; -+,0x00,0x00,0x02,0x02,0x02,0x08,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x0c,0x11,0x00,0x00,0x10,0x10,0x10,0x00,0x40,0xd4,0x00,0x02,0x00,0x84,0x84,0x84,0x00,0xfe,0x00 -+// 17680 䔐 ; -+,0x00,0x00,0x03,0x02,0x00,0x08,0x00,0x10,0x10,0x04,0x08,0x18,0x08,0x08,0x08,0x00,0x00,0x00,0x33,0x00,0x00,0x4c,0x60,0x28,0x38,0x06,0x4a,0x60,0x24,0x38,0x0f,0x00 -+// 17681 䔑 ; -+,0x00,0x02,0x02,0x02,0x00,0x02,0x05,0x08,0x10,0x02,0x02,0x02,0x0a,0x12,0x06,0x00,0x00,0x10,0x12,0x10,0x00,0x04,0x14,0x84,0x84,0x14,0x44,0x04,0x84,0x44,0x04,0x00 -+// 17682 䔒 ; -+,0x00,0x02,0x02,0x02,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x14,0x10,0x10,0x00,0x00,0x00,0x20,0x30,0x00,0x10,0x12,0x04,0x08,0x09,0x00,0x46,0x40,0x40,0x44,0x00 -+// 17683 䔓 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x04,0x00,0x00,0x01,0x00,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xa0,0x28,0x48,0x08,0x09,0x08,0x08,0x08,0x08,0x00 -+// 17684 䔔 ; -+,0x00,0x02,0x02,0x02,0x00,0x00,0x01,0x01,0x00,0x04,0x04,0x04,0x01,0x02,0x04,0x00,0x00,0x10,0x12,0x10,0x00,0x04,0x10,0x23,0x00,0x08,0x08,0x08,0x20,0x20,0x3f,0x00 -+// 17685 䔕 ; -+,0x00,0x02,0x02,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x06,0x00,0x00,0x10,0x12,0x10,0x00,0x14,0x12,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x96,0x00 -+// 17686 䔖 ; -+,0x00,0x02,0x02,0x02,0x00,0x04,0x14,0x10,0x10,0x10,0x10,0x14,0x14,0x10,0x10,0x00,0x00,0x00,0x22,0x20,0x00,0x10,0x10,0x11,0x40,0xa2,0x6c,0x88,0x10,0x38,0x87,0x00 -+// 17687 䔗 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x00,0x02,0x04,0x0c,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x12,0x30,0x00,0x44,0x08,0x10,0x10,0x16,0x10,0x31,0x10,0x10,0x10,0x00 -+// 17688 䔘 ; -+,0x00,0x00,0x00,0x03,0x00,0x08,0x11,0x14,0x04,0x04,0x04,0x15,0x05,0x05,0x19,0x00,0x00,0x10,0x12,0x10,0x10,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x01,0x00 -+// 17689 䔙 ; -+,0x00,0x00,0x00,0x03,0x00,0x04,0x05,0x08,0x11,0x00,0x06,0x00,0x09,0x06,0x10,0x00,0x00,0x00,0x12,0x10,0x00,0x20,0x20,0x82,0x42,0x02,0x12,0x12,0x02,0x02,0x0c,0x00 -+// 17690 䔚 ; -+,0x00,0x01,0x01,0x01,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x0a,0x02,0x12,0x02,0x00,0x00,0x10,0x13,0x10,0x04,0x08,0x04,0x24,0x18,0x07,0x0c,0x08,0x08,0x00,0x08,0x00 -+// 17691 䔛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x10,0x1c,0x18,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x30,0x20,0x86,0x84,0x80,0x84,0x80,0x84,0x44,0x82,0x00 -+// 17692 䔜 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x12,0x12,0x12,0x12,0x12,0x12,0x1e,0x02,0x02,0x00,0x00,0x00,0x12,0x10,0x00,0x00,0x12,0x42,0x42,0x52,0x42,0x43,0x42,0x42,0x46,0x00 -+// 17693 䔝 ; -+,0x00,0x00,0x02,0x02,0x00,0x02,0x00,0x02,0x10,0x03,0x00,0x03,0x00,0x06,0x00,0x00,0x00,0x00,0x22,0x00,0x26,0xa0,0x20,0x23,0x80,0x30,0x40,0xc4,0x40,0x44,0xc2,0x00 -+// 17694 䔞 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x09,0x00,0x08,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x80,0x82,0x84,0x68,0x80,0x24,0x94,0x40,0xc2,0x00,0x40,0x00 -+// 17695 䔟 ; -+,0x00,0x02,0x02,0x02,0x00,0x06,0x08,0x00,0x0c,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x20,0x10,0x10,0x26,0x64,0x18,0x18,0x19,0x32,0x14,0x08,0x20,0x00 -+// 17696 䔠 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x05,0x0c,0x0c,0x0e,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x12,0x10,0x10,0x42,0x02,0x02,0x02,0x42,0x02,0x06,0x00 -+// 17697 䔡 ; -+,0x00,0x02,0x02,0x02,0x02,0x01,0x02,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x11,0x00,0x00,0x10,0x12,0x10,0x00,0x00,0x20,0x44,0x04,0xc4,0x04,0xc4,0x00,0x20,0x12,0x00 -+// 17698 䔢 ; -+,0x00,0x01,0x01,0x01,0x04,0x04,0x01,0x06,0x01,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x10,0x13,0x10,0x08,0x10,0x02,0x10,0x02,0x00,0x02,0x00,0x08,0x08,0x30,0x00 -+// 17699 䔣 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x06,0x0a,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x10,0x50,0x10,0x80,0x0c,0x40,0x40,0x42,0x40,0x40,0x00 -+// 17700 䔤 ; -+,0x00,0x00,0x01,0x03,0x00,0x00,0x0a,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x12,0x10,0x00,0x01,0x10,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17701 䔥 ; -+,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x0a,0x09,0x09,0x01,0x10,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0xcc,0xcf,0x00,0x80,0x10,0x24,0xc4,0x04,0x14,0x04,0x00 -+// 17702 䔦 ; -+,0x00,0x00,0x00,0x03,0x00,0x04,0x00,0x0e,0x08,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x10,0x00,0x20,0x42,0x80,0x42,0x52,0x43,0x00,0x80,0x86,0x0c,0x00 -+// 17703 䔧 ; -+,0x00,0x00,0x02,0x02,0x00,0x02,0x02,0x07,0x0a,0x02,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x13,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0xc0,0x00,0x0c,0x02,0x00 -+// 17704 䔨 ; -+,0x00,0x00,0x02,0x02,0x00,0x0c,0x02,0x16,0x04,0x0a,0x12,0x12,0x04,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x40,0x48,0x82,0x90,0x90,0x90,0x90,0xda,0x90,0x90,0x80,0x00 -+// 17705 䔩 ; -+,0x00,0x01,0x01,0x01,0x00,0x06,0x04,0x06,0x10,0x10,0x14,0x0e,0x10,0x00,0x00,0x00,0x00,0x10,0x13,0x10,0x00,0x98,0x10,0x91,0xa4,0x84,0x84,0x18,0x98,0x24,0x43,0x00 -+// 17706 䔪 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x02,0x06,0x02,0x02,0x0c,0x0b,0x01,0x02,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0xc2,0x80,0x98,0x94,0x84,0x88,0x14,0x20,0x10,0x0e,0x00 -+// 17707 䔫 ; -+,0x00,0x00,0x01,0x01,0x00,0x02,0x02,0x04,0x04,0x14,0x14,0x14,0x14,0x1c,0x20,0x00,0x00,0x00,0x12,0x00,0x00,0x10,0x12,0x10,0x52,0x52,0x52,0x3a,0x54,0x92,0x11,0x00 -+// 17708 䔬 ; -+,0x00,0x00,0x03,0x00,0x00,0x04,0x04,0x00,0x04,0x01,0x01,0x01,0x00,0x02,0x04,0x00,0x00,0x00,0x12,0x10,0x04,0x44,0x44,0x44,0x44,0x00,0x32,0x00,0x00,0x08,0x06,0x00 -+// 17709 䔭 ; -+,0x00,0x02,0x02,0x02,0x00,0x00,0x12,0x0a,0x03,0x00,0x00,0x04,0x00,0x00,0x08,0x00,0x00,0x10,0x12,0x10,0x40,0x02,0x00,0x44,0xf0,0x04,0x04,0x44,0x44,0x04,0x0c,0x00 -+// 17710 䔮 ; -+,0x00,0x00,0x02,0x02,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x09,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x02,0x70,0x00,0x11,0x04,0x24,0x24,0x24,0x44,0x04,0x00 -+// 17711 䔯 ; -+,0x00,0x00,0x03,0x00,0x00,0x0a,0x0a,0x1b,0x1b,0x1b,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x33,0x00,0x80,0x08,0x08,0x0a,0x08,0x08,0x2a,0x22,0x22,0x22,0x22,0x00 -+// 17712 䔰 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x10,0x00,0x02,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x40,0x42,0x0a,0x00,0x10,0x10,0x00,0x04,0x04,0x04,0x04,0x00 -+// 17713 䔱 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x0c,0x34,0x04,0x04,0x0c,0x00,0x00,0x00,0x12,0x10,0x00,0x44,0x44,0x44,0x02,0x44,0x44,0x44,0x44,0x44,0x04,0x00 -+// 17714 䔲 ; -+,0x00,0x02,0x02,0x02,0x00,0x01,0x01,0x0a,0x04,0x00,0x02,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x12,0x10,0x00,0x10,0x06,0x18,0x0c,0x12,0x10,0x10,0x10,0x10,0x22,0x00 -+// 17715 䔳 ; -+,0x00,0x00,0x00,0x03,0x00,0x04,0x09,0x05,0x09,0x0a,0x04,0x08,0x00,0x01,0x11,0x00,0x00,0x10,0x10,0x10,0x00,0x14,0x90,0x32,0x20,0x28,0x44,0x03,0x00,0x22,0x02,0x00 -+// 17716 䔴 ; -+,0x00,0x00,0x01,0x01,0x00,0x02,0x0a,0x12,0x12,0x00,0x00,0x02,0x0a,0x12,0x06,0x00,0x00,0x10,0x12,0x10,0x00,0x00,0x82,0x02,0x02,0x10,0x04,0x48,0x0c,0x16,0x43,0x00 -+// 17717 䔵 ; -+,0x00,0x02,0x02,0x02,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x11,0x12,0x10,0x10,0x00,0x00,0x00,0x33,0x00,0x02,0x22,0x20,0x20,0x00,0x00,0xc0,0xe0,0x10,0x00,0x04,0x04 -+// 17718 䔶 ; -+,0x00,0x02,0x02,0x02,0x00,0x04,0x00,0x0c,0x00,0x04,0x18,0x20,0x00,0x01,0x08,0x00,0x00,0x10,0x12,0x10,0x00,0x44,0x44,0x44,0x44,0x03,0x10,0x92,0x90,0x10,0x0f,0x00 -+// 17719 䔷 ; -+,0x00,0x02,0x02,0x02,0x01,0x04,0x05,0x04,0x01,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x20,0x22,0x20,0x02,0x00,0x14,0x00,0x00,0x80,0x10,0x4e,0x10,0x30,0x20,0x00 -+// 17720 䔸 ; -+,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x00,0x01,0x05,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x22,0x20,0x88,0x8c,0x00,0x10,0x0e,0x14,0x12,0x18,0x20,0x04,0x03,0x00 -+// 17721 䔹 ; -+,0x00,0x00,0x02,0x02,0x00,0x02,0x14,0x10,0x10,0x10,0x10,0x12,0x14,0x10,0x10,0x00,0x00,0x00,0x33,0x00,0x04,0x48,0x0b,0x20,0x42,0x14,0x40,0x18,0x4a,0x09,0x30,0x00 -+// 17722 䔺 ; -+,0x00,0x00,0x02,0x02,0x00,0x12,0x14,0x10,0x10,0x10,0x12,0x12,0x14,0x10,0x10,0x00,0x00,0x00,0x21,0x20,0x00,0x20,0x40,0x90,0x10,0x00,0x44,0x44,0x44,0x00,0x04,0x00 -+// 17723 䔻 ; -+,0x00,0x01,0x01,0x01,0x04,0x02,0x00,0x09,0x09,0x00,0x01,0x00,0x06,0x10,0x04,0x00,0x00,0x10,0x13,0x10,0x00,0x90,0x00,0x21,0x24,0x04,0x00,0x18,0x18,0x26,0x03,0x00 -+// 17724 䔼 ; -+,0x00,0x00,0x02,0x02,0x00,0x05,0x04,0x15,0x09,0x00,0x00,0x02,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x20,0x00,0x0a,0x02,0x52,0x26,0x00,0x00,0x08,0x00,0x00,0x52,0x00 -+// 17725 䔽 ; -+,0x00,0x00,0x01,0x01,0x00,0x08,0x00,0x00,0x08,0x04,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x13,0x10,0x00,0x86,0x80,0x80,0xc0,0x40,0x92,0xb0,0x88,0x82,0x06,0x00 -+// 17726 䔾 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x0c,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x12,0x10,0x00,0x46,0x44,0x00,0x40,0x41,0x91,0x99,0x80,0x82,0x06,0x00 -+// 17727 䔿 ; -+,0x00,0x00,0x01,0x00,0x02,0x03,0x09,0x09,0x08,0x08,0x08,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x22,0x10,0x10,0x22,0x24,0x2c,0x0c,0x04,0x14,0x11,0x10,0x10,0x30,0x00 -+// 17728 䕀 ; -+,0x00,0x01,0x01,0x01,0x00,0x02,0x02,0x02,0x00,0x00,0x02,0x02,0x12,0x02,0x04,0x00,0x00,0x10,0x11,0x10,0x00,0x10,0x10,0xa2,0x08,0x00,0x18,0x10,0x84,0x22,0x01,0x00 -+// 17729 䕁 ; -+,0x00,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x11,0x00,0x00,0x22,0x20,0x20,0x20,0x20,0x42,0xe0,0x00,0x08,0x06,0x00 -+// 17730 䕂 ; -+,0x00,0x00,0x03,0x00,0x00,0x08,0x01,0x00,0x0c,0x00,0x00,0x00,0x01,0x0e,0x10,0x00,0x00,0x10,0x12,0x10,0x20,0x00,0x84,0x00,0x80,0x88,0x26,0x68,0x24,0x20,0xfe,0x00 -+// 17731 䕃 ; -+,0x00,0x00,0x00,0x02,0x00,0x12,0x14,0x10,0x10,0x14,0x10,0x14,0x10,0x10,0x11,0x00,0x00,0x00,0x12,0x10,0x00,0x20,0x40,0x87,0x00,0x40,0x44,0xc1,0x40,0x04,0x82,0x00 -+// 17732 䕄 ; -+,0x00,0x00,0x03,0x02,0x00,0x00,0x03,0x02,0x04,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x20,0x23,0x20,0x18,0x00,0x0c,0x10,0x0c,0x82,0x00,0x24,0x24,0x24,0x27,0x00 -+// 17733 䕅 ; -+,0x00,0x00,0x02,0x02,0x04,0x04,0x08,0x0b,0x0a,0x02,0x12,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x10,0x12,0x92,0x92,0x92,0x92,0x10,0x46,0x24,0x18,0x27,0x00 -+// 17734 䕆 ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x0c,0x0c,0x0e,0x0e,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x12,0x00,0x10,0x20,0x44,0x8f,0x00,0x92,0x8a,0x8a,0x8a,0x82,0xa6,0x00 -+// 17735 䕇 ; -+,0x00,0x00,0x02,0x02,0x00,0x10,0x10,0x12,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x33,0x00,0x42,0x00,0x80,0x4c,0x40,0x40,0xc4,0xa0,0x24,0x20,0x3f,0x00 -+// 17736 䕈 ; -+,0x00,0x02,0x02,0x02,0x00,0x02,0x12,0x12,0x12,0x02,0x0a,0x02,0x12,0x12,0x02,0x00,0x00,0x00,0x32,0x00,0x00,0x04,0xf4,0x14,0x00,0x10,0x11,0x30,0x14,0x12,0x10,0x00 -+// 17737 䕉 ; -+,0x00,0x00,0x01,0x00,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x24,0x24,0x04,0x00,0xc0,0x02,0x10,0x04,0x00,0xc0,0x00,0x00 -+// 17738 䕊 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x09,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x32,0x00,0xc2,0x00,0x04,0x24,0x04,0x00,0x10,0x00,0x00,0x00,0x02,0x00 -+// 17739 䕋 ; -+,0x00,0x00,0x01,0x00,0x00,0x08,0x08,0x0a,0x08,0x08,0x09,0x19,0x01,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x10,0x02,0x00,0x12,0x13,0x10,0x10,0x00,0x40,0x40,0x44,0x00 -+// 17740 䕌 ; -+,0x00,0x02,0x02,0x02,0x00,0x06,0x08,0x00,0x0c,0x0c,0x0a,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x20,0x00,0x28,0x48,0x42,0xc8,0x4a,0x48,0x4a,0x48,0x48,0x40,0x00 -+// 17741 䕍 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x06,0x02,0x03,0x08,0x09,0x0b,0x09,0x08,0x08,0x00,0x00,0x10,0x12,0x00,0x42,0x00,0x08,0x18,0x06,0x04,0x14,0x1c,0x14,0x04,0x0c,0x00 -+// 17742 䕎 ; -+,0x00,0x02,0x02,0x02,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x10,0x12,0x10,0x02,0x00,0x44,0x44,0x44,0x02,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17743 䕏 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x06,0x00,0x04,0x00,0x00,0x00,0x12,0x00,0x10,0x00,0x88,0x80,0x02,0x28,0x22,0x00,0x18,0x28,0x06,0x00 -+// 17744 䕐 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x04,0x0e,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x00,0x44,0x44,0x44,0x00,0x92,0x90,0x92,0x90,0x82,0x00 -+// 17745 䕑 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x01,0x1a,0x04,0x01,0x19,0x00,0x05,0x20,0x00,0x00,0x00,0x10,0x10,0x02,0x18,0x12,0x54,0x00,0x10,0x24,0x24,0x08,0x1c,0x03,0x00 -+// 17746 䕒 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x04,0x06,0x04,0x00,0x09,0x00,0x00,0x10,0x12,0x00,0x42,0x44,0x00,0x08,0x18,0x00,0x00,0x20,0xa0,0xa0,0x20,0x00 -+// 17747 䕓 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x16,0x04,0x09,0x0a,0x04,0x00,0x02,0x04,0x00,0x00,0x00,0x10,0x12,0x10,0x40,0x02,0x04,0xa8,0x00,0x10,0x0c,0x0a,0x00,0x08,0x84,0x00 -+// 17748 䕔 ; -+,0x00,0x02,0x03,0x02,0x08,0x08,0x11,0x08,0x00,0x10,0x10,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x33,0x00,0x00,0x80,0x20,0x20,0x81,0x82,0x82,0xa2,0x82,0x82,0x04,0x00 -+// 17749 䕕 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x10,0x00,0x01,0x09,0x18,0x00,0x00,0x18,0x00,0x00,0x00,0x12,0x00,0x00,0x84,0x84,0x84,0x02,0x42,0x02,0x04,0x08,0x30,0x0f,0x00 -+// 17750 䕖 ; -+,0x00,0x00,0x03,0x00,0x00,0x08,0x00,0x00,0x08,0x09,0x08,0x08,0x09,0x0c,0x21,0x00,0x00,0x10,0x12,0x00,0x06,0x48,0x00,0x1c,0x00,0xba,0x08,0x2a,0x09,0x08,0xc2,0x02 -+// 17751 䕗 ; -+,0x00,0x00,0x02,0x00,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x00,0x03,0x02,0x04,0x00,0x00,0x10,0x12,0x80,0x08,0x08,0x08,0x08,0x04,0x84,0x84,0x00,0x10,0x10,0x10,0x00 -+// 17752 䕘 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x0a,0x01,0x04,0x00,0x01,0x01,0x00,0x04,0x04,0x00,0x00,0x00,0x32,0x00,0x02,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x00 -+// 17753 䕙 ; -+,0x00,0x00,0x03,0x00,0x02,0x02,0x02,0x0a,0x0a,0x1a,0x12,0x02,0x02,0x0a,0x00,0x00,0x00,0x00,0x12,0x00,0x10,0x54,0x10,0x10,0x10,0x14,0x94,0x08,0x18,0x86,0x03,0x00 -+// 17754 䕚 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x01,0x1e,0x00,0x00,0x00,0x12,0x00,0x00,0x40,0x48,0x40,0x00,0x08,0x08,0x08,0x00,0x08,0x06,0x00 -+// 17755 䕛 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x01,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x32,0x10,0x00,0x10,0x11,0x10,0x52,0x52,0x35,0x18,0x20,0x24,0x03,0x00 -+// 17756 䕜 ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x00,0x18,0x00,0x00,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x00,0x84,0x14,0x04,0x24,0x40,0x04,0x10,0x28,0x40,0x80,0x00,0x00 -+// 17757 䕝 ; -+,0x00,0x02,0x02,0x02,0x00,0x06,0x08,0x00,0x0c,0x0c,0x0a,0x10,0x00,0x00,0x08,0x00,0x00,0x00,0x22,0x20,0x04,0x20,0x10,0x50,0x10,0x92,0x92,0x92,0x83,0x82,0x86,0x00 -+// 17758 䕞 ; -+,0x00,0x00,0x03,0x02,0x01,0x11,0x11,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x33,0x00,0x22,0x22,0x22,0x22,0x42,0x12,0x12,0x12,0x12,0x12,0x02,0x02 -+// 17759 䕟 ; -+,0x00,0x00,0x01,0x00,0x04,0x01,0x01,0x09,0x01,0x09,0x01,0x01,0x00,0x06,0x08,0x00,0x00,0x00,0x12,0x00,0x00,0x26,0x20,0x04,0xe0,0xc4,0x00,0x27,0x00,0x08,0x04,0x00 -+// 17760 䕠 ; -+,0x00,0x00,0x02,0x02,0x00,0x10,0x10,0x13,0x12,0x11,0x10,0x10,0x00,0x00,0x03,0x00,0x00,0x00,0x33,0x00,0x42,0x00,0x88,0x14,0x0e,0x28,0x08,0x00,0x88,0x18,0x04,0x00 -+// 17761 䕡 ; -+,0x00,0x02,0x02,0x02,0x01,0x11,0x11,0x11,0x10,0x12,0x12,0x10,0x12,0x12,0x10,0x00,0x00,0x10,0x33,0x00,0x02,0x22,0x22,0x22,0x02,0x32,0x02,0x12,0x12,0x12,0x06,0x00 -+// 17762 䕢 ; -+,0x00,0x00,0x03,0x00,0x00,0x09,0x08,0x08,0x00,0x1a,0x02,0x02,0x02,0x0a,0x00,0x00,0x00,0x00,0x12,0x10,0x04,0x20,0x02,0x00,0x20,0x20,0x20,0x40,0x40,0x80,0x00,0x00 -+// 17763 䕣 ; -+,0x00,0x00,0x01,0x00,0x08,0x04,0x02,0x02,0x04,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x32,0x00,0x00,0x46,0x44,0x40,0x60,0x62,0x12,0x92,0x82,0x82,0x06,0x00 -+// 17764 䕤 ; -+,0x00,0x00,0x01,0x00,0x00,0x14,0x14,0x00,0x16,0x16,0x10,0x16,0x06,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x80,0x92,0x10,0x90,0x90,0x90,0x92,0x56,0x10,0x10,0x00 -+// 17765 䕥 ; -+,0x00,0x01,0x03,0x00,0x02,0x04,0x09,0x00,0x09,0x0b,0x09,0x08,0x0b,0x09,0x08,0x00,0x00,0x20,0x33,0x00,0x00,0x00,0x16,0x02,0x4e,0x10,0x08,0x40,0x10,0x48,0x0c,0x00 -+// 17766 䕦 ; -+,0x00,0x00,0x03,0x00,0x00,0x04,0x00,0x04,0x00,0x02,0x02,0x10,0x10,0x10,0x06,0x00,0x00,0x10,0x12,0x00,0x42,0x00,0x00,0x08,0x00,0x94,0xd0,0x5c,0x54,0xc0,0x23,0x00 -+// 17767 䕧 ; -+,0x00,0x00,0x01,0x00,0x01,0x11,0x15,0x15,0x00,0x21,0x01,0x01,0x01,0x01,0x13,0x00,0x00,0x00,0x12,0x00,0x00,0x08,0x01,0x00,0xa2,0x41,0x04,0x08,0x18,0x1c,0x03,0x00 -+// 17768 䕨 ; -+,0x00,0x00,0x03,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x06,0x00,0x00,0x10,0x33,0x00,0x00,0x28,0x22,0x22,0x48,0x0c,0x70,0x04,0xd0,0xd4,0x32,0x00 -+// 17769 䕩 ; -+,0x00,0x00,0x01,0x00,0x00,0x08,0x08,0x0a,0x08,0x0e,0x1a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x12,0x00,0x10,0x10,0x20,0x82,0x04,0x45,0x44,0x44,0x10,0x92,0x30,0x00 -+// 17770 䕪 ; -+,0x00,0x00,0x02,0x02,0x00,0x08,0x00,0x00,0x10,0x00,0x08,0x18,0x10,0x10,0x10,0x00,0x00,0x10,0x12,0x00,0x02,0x0a,0x2a,0x00,0x10,0x13,0x48,0x12,0x00,0x20,0x00,0x00 -+// 17771 䕫 ; -+,0x00,0x00,0x03,0x00,0x00,0x11,0x11,0x11,0x39,0x02,0x09,0x06,0x00,0x00,0x02,0x00,0x00,0x00,0x12,0x00,0x40,0x2a,0x2a,0x20,0x2f,0x08,0x04,0x10,0x60,0xe0,0x0e,0x00 -+// 17772 䕬 ; -+,0x00,0x00,0x02,0x00,0x00,0x02,0x02,0x02,0x00,0x20,0x06,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x12,0x00,0x02,0x00,0x56,0x14,0x14,0x01,0x02,0x10,0x10,0x14,0x01,0x00 -+// 17773 䕭 ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x04,0x00,0x09,0x04,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x12,0x10,0x08,0x08,0x02,0x50,0x26,0x02,0x00,0x56,0x58,0x24,0x43,0x00 -+// 17774 䕮 ; -+,0x00,0x00,0x01,0x01,0x00,0x04,0x04,0x04,0x02,0x00,0x04,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x20,0x21,0x51,0x95,0x31,0x31,0x38,0x14,0x12,0x06,0x00 -+// 17775 䕯 ; -+,0x00,0x00,0x02,0x00,0x00,0x02,0x0a,0x12,0x12,0x01,0x00,0x00,0x04,0x15,0x04,0x00,0x00,0x00,0x12,0x00,0x80,0x0e,0x30,0x10,0x10,0x10,0x10,0x92,0x52,0x5d,0x01,0x00 -+// 17776 䕰 ; -+,0x00,0x00,0x03,0x00,0x08,0x08,0x0a,0x0c,0x28,0x08,0x09,0x08,0x04,0x12,0x00,0x00,0x00,0x00,0x12,0x00,0x0c,0x30,0x04,0x59,0x70,0x94,0x03,0x80,0x94,0x80,0x84,0x00 -+// 17777 䕱 ; -+,0x00,0x00,0x02,0x00,0x00,0x01,0x00,0x11,0x11,0x11,0x00,0x02,0x08,0x04,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x22,0x41,0x00 -+// 17778 䕲 ; -+,0x00,0x02,0x02,0x00,0x10,0x10,0x10,0x12,0x12,0x12,0x10,0x10,0x00,0x02,0x00,0x00,0x00,0x10,0x30,0x00,0x42,0x40,0x00,0x04,0x94,0x94,0x08,0x02,0x00,0x04,0x44,0x00 -+// 17779 䕳 ; -+,0x00,0x00,0x01,0x00,0x00,0x02,0x02,0x02,0x10,0x00,0x22,0x00,0x00,0x04,0x0c,0x00,0x00,0x00,0x12,0x00,0x00,0x10,0x54,0x92,0x10,0x54,0x10,0x12,0x54,0x10,0x12,0x00 -+// 17780 䕴 ; -+,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x04,0x0c,0x0c,0x0e,0x14,0x04,0x04,0x05,0x00,0x00,0x00,0x12,0x00,0x00,0x48,0x40,0xc8,0x4a,0x48,0x48,0x49,0x00,0x01,0x85,0x00 -+// 17781 䕵 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x00,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x12,0x40,0x40,0x40,0x40,0x40,0x01,0x05,0xa0,0x02,0x00 -+// 17782 䕶 ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x01,0x00,0x00,0x00,0x00,0x12,0x10,0x12,0x10,0x00,0x00,0x00,0x12,0x00,0x28,0x40,0x48,0x4a,0x4a,0x48,0x40,0x02,0x04,0x18,0x27,0x00 -+// 17783 䕷 ; -+,0x00,0x02,0x02,0x02,0x10,0x10,0x13,0x13,0x14,0x10,0x11,0x10,0x03,0x02,0x04,0x00,0x00,0x00,0x32,0x00,0x42,0x10,0x1a,0xb0,0x12,0x00,0x90,0x00,0x44,0x00,0x44,0x40 -+// 17784 䕸 ; -+,0x00,0x00,0x02,0x02,0x00,0x15,0x15,0x1c,0x14,0x04,0x04,0x04,0x00,0x02,0x20,0x00,0x00,0x00,0x12,0x10,0x00,0x08,0x09,0x08,0x0a,0x00,0x00,0x22,0x22,0xa2,0xa2,0x00 -+// 17785 䕹 ; -+,0x00,0x00,0x02,0x00,0x04,0x04,0x00,0x12,0x19,0x00,0x04,0x04,0x15,0x24,0x0c,0x00,0x00,0x10,0x12,0x10,0x20,0x24,0x40,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 17786 䕺 ; -+,0x00,0x00,0x03,0x00,0x05,0x01,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x01,0x00,0x00,0x10,0x12,0x00,0x28,0x22,0x20,0x84,0x80,0x00,0x02,0x04,0x18,0x18,0x06,0x00 -+// 17787 䕻 ; -+,0x00,0x00,0x03,0x00,0x00,0x0d,0x01,0x00,0x09,0x09,0x09,0x00,0x10,0x10,0x06,0x00,0x00,0x10,0x12,0x00,0x00,0x24,0x24,0x42,0x20,0x24,0x24,0x00,0xac,0x20,0x22,0x00 -+// 17788 䕼 ; -+,0x00,0x01,0x01,0x00,0x08,0x0b,0x0a,0x04,0x15,0x15,0x04,0x04,0x0c,0x0a,0x11,0x00,0x00,0x10,0x12,0x00,0x00,0xa4,0x20,0x68,0xa0,0x28,0x20,0x2e,0x20,0x20,0x20,0x00 -+// 17789 䕽 ; -+,0x00,0x00,0x01,0x00,0x00,0x12,0x12,0x12,0x00,0x00,0x14,0x10,0x10,0x1c,0x20,0x00,0x00,0x00,0x12,0x00,0x00,0xaa,0xaa,0x82,0x40,0x91,0x14,0x50,0x00,0xc6,0x06,0x00 -+// 17790 䕾 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x10,0x12,0x10,0x12,0x06,0x08,0x00,0x00,0x00,0x12,0x00,0xa4,0x24,0x02,0x10,0x10,0xd6,0xa4,0x84,0x88,0x8c,0x83,0x00 -+// 17791 䕿 ; -+,0x00,0x00,0x01,0x00,0x08,0x0b,0x08,0x04,0x05,0x05,0x04,0x04,0x0c,0x0a,0x11,0x00,0x00,0x00,0x12,0x00,0x00,0xa2,0x20,0x00,0x20,0x21,0x21,0x01,0x0b,0x40,0x02,0x00 -+// 17792 䖀 ; -+,0x00,0x00,0x02,0x01,0x09,0x00,0x00,0x04,0x04,0x04,0x06,0x04,0x09,0x09,0x09,0x00,0x00,0x10,0x10,0x00,0x24,0x04,0x80,0x04,0x04,0x04,0x08,0x06,0x27,0x04,0x24,0x00 -+// 17793 䖁 ; -+,0x00,0x00,0x0a,0x0a,0x00,0x15,0x15,0x05,0x15,0x04,0x25,0x27,0x2f,0x21,0x21,0x00,0x00,0x00,0x08,0x00,0x04,0x11,0x00,0x22,0x22,0x22,0x22,0x00,0x69,0xe0,0x3e,0x00 -+// 17794 䖂 ; -+,0x00,0x00,0x03,0x08,0x00,0x14,0x08,0x12,0x01,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x28,0x2e,0x20,0x09,0x20,0x35,0x38,0x40,0x40,0x42,0x40,0x80 -+// 17795 䖃 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x02,0x00,0x02,0x12,0x08,0x08,0x12,0x10,0x02,0x00,0x00,0x10,0x12,0x80,0x00,0x08,0x08,0x00,0x24,0x24,0x10,0x30,0x20,0x20,0x24,0x00 -+// 17796 䖄 ; -+,0x00,0x01,0x01,0x01,0x09,0x09,0x08,0x14,0x14,0x04,0x04,0x0a,0x01,0x00,0x11,0x00,0x00,0x00,0x12,0x00,0x10,0x20,0x20,0x20,0x28,0x28,0x20,0x20,0x20,0x02,0x13,0x00 -+// 17797 䖅 ; -+,0x00,0x01,0x01,0x00,0x00,0x10,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x10,0x10,0x04,0x00,0xc3,0x00,0x00,0x04,0x00,0x04,0x02,0x08,0x14,0xc7,0x00 -+// 17798 䖆 ; -+,0x00,0x00,0x01,0x00,0x01,0x0c,0x0c,0x0e,0x04,0x14,0x16,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x22,0x00,0x08,0x00,0x2a,0x2a,0x20,0x2a,0x28,0x29,0x22,0x04,0x23,0x00 -+// 17799 䖇 ; -+,0x00,0x00,0x01,0x01,0x0d,0x08,0x08,0x09,0x10,0x23,0x03,0x00,0x00,0x08,0x0a,0x00,0x00,0x00,0x32,0x00,0x05,0xc4,0x06,0x24,0x02,0x08,0x90,0x0c,0x12,0x04,0x10,0x00 -+// 17800 䖈 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x11,0x01,0x01,0x00,0x00,0x80,0x84,0x80,0x82,0x80,0x90,0x82,0xfe,0x00,0x0c,0x00,0x00,0x02,0xfe,0x00 -+// 17801 䖉 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x80,0x84,0x80,0x82,0x80,0x80,0x82,0x7c,0x04,0x20,0x22,0x20,0x20,0x60,0x00 -+// 17802 䖊 ; -+,0x00,0x00,0x00,0x02,0x02,0x12,0x0c,0x0c,0x04,0x0e,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x10,0x12,0x10,0x91,0x80,0x94,0x90,0x9e,0x80,0xa4,0x24,0x24,0x25,0x47,0x00 -+// 17803 䖋 ; -+,0x00,0x02,0x02,0x02,0x12,0x10,0x12,0x12,0x13,0x10,0x15,0x04,0x04,0x20,0x00,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0x08,0x08,0x88,0x18,0x94,0x14,0x22,0xa2,0x41,0x00 -+// 17804 䖌 ; -+,0x00,0x02,0x02,0x02,0x10,0x10,0x12,0x12,0x13,0x10,0x16,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x42,0x02,0x52,0x12,0x92,0x12,0xd2,0x12,0x92,0x82,0x82,0x82,0x06,0x00 -+// 17805 䖍 ; -+,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x11,0x11,0x13,0x10,0x10,0x00,0x00,0x00,0x00,0x80,0x84,0x80,0x82,0x88,0x80,0xc6,0x00,0x00,0x18,0x90,0x60,0xb0,0x0e,0x00 -+// 17806 䖎 ; -+,0x00,0x00,0x12,0x12,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x11,0x11,0x10,0x00,0x00,0x00,0x10,0x10,0xb1,0x80,0x94,0xb0,0x9e,0x80,0xa4,0x24,0x24,0x05,0x47,0x00 -+// 17807 䖏 ; -+,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0x10,0x11,0x12,0x14,0x11,0x00,0x20,0x00,0x00,0x00,0x80,0x84,0x80,0x02,0x90,0x84,0x00,0x00,0xd4,0xb4,0x24,0x7c,0x8e,0x18,0x00 -+// 17808 䖐 ; -+,0x00,0x00,0x06,0x10,0x10,0x10,0x11,0x14,0x14,0x14,0x14,0x04,0x04,0x05,0x00,0x00,0x00,0x10,0x12,0x10,0x11,0x91,0x94,0x90,0x92,0x80,0xa4,0xa4,0x24,0x24,0x47,0x00 -+// 17809 䖑 ; -+,0x00,0x02,0x02,0x02,0x12,0x12,0x12,0x12,0x13,0x10,0x14,0x04,0x24,0x20,0x00,0x00,0x00,0x00,0x40,0x12,0x50,0x10,0x10,0x14,0xd0,0x10,0x90,0x90,0x80,0x81,0xff,0x00 -+// 17810 䖒 ; -+,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x10,0x00,0x00,0x00,0x00,0x80,0x84,0x80,0x82,0x88,0x80,0xfe,0x02,0x00,0x08,0x08,0x00,0x90,0xa2,0x00 -+// 17811 䖓 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x0c,0x00,0x01,0x00,0x00,0x1d,0x10,0x00,0x00,0x00,0x00,0x10,0x10,0x13,0x00,0x14,0x10,0x92,0x80,0x94,0x84,0x84,0x24,0x07,0x00 -+// 17812 䖔 ; -+,0x00,0x00,0x04,0x00,0x04,0x00,0x00,0x0d,0x08,0x08,0x00,0x02,0x39,0x01,0x00,0x00,0x00,0x10,0x12,0x10,0x11,0x91,0x94,0x90,0x9b,0x80,0xa4,0xa4,0xa4,0x24,0x47,0x00 -+// 17813 䖕 ; -+,0x00,0x02,0x02,0x00,0x12,0x10,0x12,0x10,0x13,0x10,0x05,0x04,0x20,0x08,0x00,0x00,0x00,0x00,0x80,0x24,0x64,0x04,0x04,0x04,0x84,0x04,0x04,0x04,0x00,0x01,0xff,0x00 -+// 17814 䖖 ; -+,0x00,0x02,0x02,0x02,0x12,0x10,0x12,0x14,0x13,0x10,0x05,0x04,0x20,0x28,0x00,0x00,0x00,0x00,0x82,0x0a,0x4a,0x1a,0x0a,0x0a,0x8a,0x08,0x08,0x08,0x08,0x01,0xff,0x00 -+// 17815 䖗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x14,0x14,0x15,0x05,0x08,0x00,0x00,0x80,0x88,0x80,0x8a,0x80,0x84,0x08,0x04,0x10,0x14,0x14,0x58,0x58,0x07,0x00 -+// 17816 䖘 ; -+,0x00,0x00,0x00,0x00,0x14,0x10,0x15,0x14,0x13,0x00,0x05,0x01,0x29,0x21,0x00,0x00,0x00,0x10,0x10,0x24,0xa4,0x00,0x4a,0x02,0x82,0x1a,0x18,0x12,0x22,0x00,0x07,0x00 -+// 17817 䖙 ; -+,0x00,0x00,0x12,0x10,0x12,0x12,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x08,0x14,0x00,0x00,0x00,0x80,0x00,0x80,0x92,0x80,0xfc,0x24,0x00,0x42,0x40,0x7c,0x00,0x88,0x89,0x00 -+// 17818 䖚 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x15,0x14,0x03,0x00,0x05,0x00,0x29,0x29,0x00,0x00,0x00,0x00,0x00,0x22,0xe2,0x22,0x20,0x22,0x20,0x21,0x00,0x06,0x4a,0x42,0x06,0x00 -+// 17819 䖛 ; -+,0x00,0x00,0x00,0x02,0x16,0x10,0x10,0x12,0x13,0x10,0x15,0x04,0x20,0x28,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0xab,0x08,0x14,0x88,0x12,0x08,0x2a,0x08,0x01,0xff,0x00 -+// 17820 䖜 ; -+,0x00,0x00,0x00,0x14,0x10,0x14,0x13,0x14,0x01,0x08,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x08,0x08,0x8a,0x20,0x28,0x0e,0x14,0x54,0x03,0x08,0x08,0x08,0x08,0x08,0x00 -+// 17821 䖝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x1c,0x80,0x40,0x00,0xc4,0x04,0x04,0x44,0x00,0x00,0x04,0xc2,0x03,0x00 -+// 17822 䖞 ; -+,0x00,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x15,0x04,0x05,0x05,0x38,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x24,0x14,0x04,0x04,0x84,0x84,0x0c,0x00 -+// 17823 䖟 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x40,0xc4,0x04,0x44,0x00,0x00,0xc6,0x02,0x00 -+// 17824 䖠 ; -+,0x00,0x00,0x00,0x00,0x2f,0x21,0x21,0x21,0x21,0x2f,0x00,0x00,0x0d,0x30,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x44,0x74,0x54,0x44,0x44,0x44,0x04,0x85,0x07,0x00 -+// 17825 䖡 ; -+,0x00,0x00,0x00,0x00,0x2d,0x21,0x21,0x21,0x21,0x2f,0x00,0x00,0x0d,0x30,0x00,0x00,0x00,0x00,0x02,0x20,0x20,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x05,0x00 -+// 17826 䖢 ; -+,0x00,0x00,0x04,0x00,0x05,0x25,0x21,0x21,0x21,0x2d,0x00,0x00,0x05,0x38,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x52,0x52,0x50,0x10,0x12,0x04,0x08,0x10,0x20,0x80,0x00 -+// 17827 䖣 ; -+,0x00,0x00,0x00,0x00,0x2f,0x20,0x20,0x20,0x20,0x2e,0x00,0x00,0x0d,0x30,0x00,0x00,0x00,0x00,0x06,0x50,0x50,0x50,0x54,0x54,0x54,0x54,0x50,0x12,0x92,0x13,0x10,0x00 -+// 17828 䖤 ; -+,0x00,0x04,0x04,0x09,0x09,0x01,0x02,0x04,0x08,0x08,0x00,0x04,0x00,0x00,0x1f,0x00,0x00,0x00,0x04,0xa4,0x24,0x24,0x20,0x22,0x80,0x8c,0x80,0x8c,0x80,0x84,0x82,0x00 -+// 17829 䖥 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x08,0x08,0x08,0x00,0x1f,0x00,0x00,0x00,0x1c,0x40,0xc3,0x42,0x40,0xc0,0x00,0x44,0x84,0x04,0xc0,0x04,0x82,0x00 -+// 17830 䖦 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x08,0x0b,0x39,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x12,0x12,0xd2,0x10,0x10,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17831 䖧 ; -+,0x00,0x00,0x00,0x00,0x0d,0x20,0x20,0x20,0x20,0x2e,0x00,0x00,0x05,0x38,0x00,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x00,0x00 -+// 17832 䖨 ; -+,0x00,0x00,0x00,0x00,0x0f,0x20,0x20,0x20,0x20,0x2e,0x00,0x00,0x05,0x38,0x00,0x00,0x00,0x00,0x01,0x10,0x00,0x20,0x20,0x22,0x62,0x22,0x22,0x22,0x22,0x22,0x22,0x00 -+// 17833 䖩 ; -+,0x00,0x00,0x00,0x00,0x0d,0x20,0x20,0x20,0x20,0x2e,0x00,0x00,0x05,0x39,0x00,0x00,0x00,0x00,0x12,0x0a,0x06,0x24,0x24,0x24,0x28,0xa9,0xb1,0x20,0x20,0x22,0x3c,0x00 -+// 17834 䖪 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x18,0x00,0x04,0x00,0x04,0x00,0x00,0x1e,0x00,0x00,0x20,0x22,0x28,0x20,0x20,0x21,0x1e,0x00,0xc4,0x04,0xc4,0x00,0xc4,0x02,0x00 -+// 17835 䖫 ; -+,0x00,0x00,0x00,0x00,0x0d,0x21,0x21,0x21,0x21,0x2d,0x00,0x00,0x05,0x39,0x00,0x00,0x00,0x00,0x20,0x24,0x42,0x03,0x02,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00 -+// 17836 䖬 ; -+,0x00,0x00,0x00,0x00,0x08,0x0a,0x02,0x02,0x02,0x0a,0x20,0x00,0x0f,0x39,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5a,0x00,0x00,0x5a,0x00,0x00,0x00,0x00,0x10,0x00 -+// 17837 䖭 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x02,0x04,0x08,0x04,0x04,0x04,0x00,0x00,0x08,0x00,0x00,0x00,0x90,0x84,0x00,0x00,0x20,0x10,0x4c,0xca,0x08,0xc8,0x00,0xc4,0x02,0x00 -+// 17838 䖮 ; -+,0x00,0x00,0x00,0x00,0x0c,0x20,0x20,0x20,0x20,0x2e,0x00,0x00,0x05,0x39,0x00,0x00,0x00,0x00,0x10,0x00,0x42,0x40,0x40,0x58,0x40,0x40,0x40,0x40,0x40,0x42,0x42,0x00 -+// 17839 䖯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x1c,0x00,0x00,0x00,0xc4,0x00,0x02,0x44,0x40,0x42,0x00,0xc4,0x04,0xc4,0x00,0xc4,0x02,0x00 -+// 17840 䖰 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x09,0x20,0x00,0x00,0x00,0x00,0x0c,0x40,0x46,0x58,0x40,0x42,0x44,0x40,0x04,0x84,0x82,0x1b,0x10,0x00 -+// 17841 䖱 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x0b,0x30,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x00,0x00,0xc1,0x00 -+// 17842 䖲 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0b,0x30,0x00,0x00,0x00,0x00,0x40,0x42,0x02,0x82,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x02,0x04,0x00 -+// 17843 䖳 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0f,0x31,0x00,0x00,0x00,0x00,0x10,0x00,0x01,0x80,0x18,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x1e,0x00 -+// 17844 䖴 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x0b,0x30,0x00,0x00,0x00,0x00,0x28,0x28,0x2a,0x2a,0x28,0x28,0x28,0x6a,0xa8,0x28,0x48,0x09,0x07,0x00 -+// 17845 䖵 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0d,0x30,0x00,0x00,0x00,0x00,0x10,0x10,0x52,0x52,0x52,0x52,0x52,0x52,0x10,0x10,0x12,0x1b,0xc1,0x00 -+// 17846 䖶 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x0b,0x30,0x00,0x00,0x00,0x00,0x12,0x20,0x62,0xa6,0x30,0x30,0x18,0x1c,0x4a,0x8a,0x09,0x08,0x30,0x00 -+// 17847 䖷 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x0b,0x30,0x00,0x00,0x00,0x04,0x0c,0x18,0x04,0x10,0x31,0x20,0x48,0x5a,0x42,0x42,0x42,0x4a,0x08,0x00 -+// 17848 䖸 ; -+,0x00,0x01,0x06,0x02,0x02,0x02,0x12,0x02,0x02,0x00,0x08,0x08,0x08,0x00,0x1f,0x00,0x00,0x20,0x24,0x22,0x20,0x18,0x10,0x08,0x02,0xc0,0x84,0x80,0x80,0x04,0x82,0x00 -+// 17849 䖹 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x0b,0x39,0x00,0x00,0x00,0x00,0x20,0x25,0x20,0x28,0x00,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00 -+// 17850 䖺 ; -+,0x00,0x00,0x0c,0x08,0x0a,0x1a,0x1a,0x2a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x09,0x00,0x00,0x20,0x40,0x44,0x84,0x18,0x18,0x13,0x10,0x96,0x90,0x92,0x10,0x12,0xe2,0x00 -+// 17851 䖻 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x09,0x30,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x20,0x42,0x42,0x00,0x54,0x54,0x54,0x14,0x95,0x07,0x00 -+// 17852 䖼 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x08,0x0b,0x30,0x00,0x00,0x00,0x00,0x40,0x4b,0x48,0x48,0x48,0x58,0x48,0x48,0x08,0xa8,0x9a,0x08,0x08,0x08 -+// 17853 䖽 ; -+,0x00,0x00,0x03,0x02,0x06,0x06,0x0a,0x12,0x00,0x08,0x08,0x08,0x00,0x00,0x1f,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x82,0x04,0x40,0xc4,0x04,0xc4,0x00,0x04,0xc2,0x00 -+// 17854 䖾 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x15,0x00,0x00,0x05,0x38,0x00,0x00,0x00,0x00,0x10,0x00,0x43,0x80,0x04,0x00,0x00,0x28,0x28,0x28,0x48,0x08,0x0f,0x00 -+// 17855 䖿 ; -+,0x00,0x00,0x04,0x04,0x04,0x0c,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x20,0x2b,0x4a,0x12,0x02,0x06,0x00,0xc8,0x00,0x80,0x80,0x0c,0x02,0x00 -+// 17856 䗀 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x08,0x09,0x30,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x11,0x00,0x42,0x30,0x24,0x44,0x08,0x10,0x28,0x07,0x00 -+// 17857 䗁 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x05,0x38,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x24,0x00,0x02,0x00,0x50,0x40,0x50,0x50,0x00,0x04,0x00 -+// 17858 䗂 ; -+,0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x05,0x30,0x00,0x00,0x00,0x00,0x12,0x10,0x53,0x40,0x54,0x40,0x4e,0x00,0x14,0x84,0x84,0x25,0x07,0x00 -+// 17859 䗃 ; -+,0x00,0x04,0x00,0x00,0x15,0x01,0x01,0x01,0x01,0x14,0x00,0x00,0x05,0x38,0x00,0x00,0x00,0x20,0x20,0x22,0x34,0x18,0x18,0x06,0x28,0x22,0x20,0x14,0x18,0x28,0x07,0x00 -+// 17860 䗄 ; -+,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x00,0x2a,0x00,0x00,0x0d,0x30,0x00,0x00,0x00,0x00,0x22,0x45,0x08,0x18,0x1c,0x47,0x1c,0x40,0x42,0x48,0x48,0x08,0x88,0x00 -+// 17861 䗅 ; -+,0x00,0x00,0x00,0x00,0x0c,0x02,0x02,0x02,0x02,0x0e,0x00,0x01,0x0d,0x20,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x42,0x40,0x41,0x40,0x42,0x48,0x44,0x73,0x60,0x00 -+// 17862 䗆 ; -+,0x00,0x00,0x00,0x00,0x0e,0x02,0x02,0x02,0x02,0x0c,0x00,0x01,0x0d,0x30,0x00,0x00,0x00,0x00,0x08,0x09,0x80,0x80,0x44,0x44,0x44,0x40,0x40,0x42,0x42,0x42,0x42,0x00 -+// 17863 䗇 ; -+,0x00,0x00,0x00,0x00,0x0c,0x02,0x02,0x02,0x02,0x0e,0x00,0x01,0x0d,0x20,0x00,0x00,0x00,0x00,0x40,0x41,0x41,0x01,0x11,0x59,0x11,0x31,0x39,0x55,0x11,0x10,0x06,0x00 -+// 17864 䗈 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x09,0x0d,0x20,0x00,0x00,0x00,0x10,0x10,0x40,0x40,0x40,0x40,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17865 䗉 ; -+,0x00,0x00,0x00,0x00,0x0e,0x20,0x20,0x20,0x20,0x2e,0x00,0x01,0x0d,0x20,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x43,0x00,0x42,0x00,0x42,0x00,0x00 -+// 17866 䗊 ; -+,0x00,0x00,0x00,0x00,0x0e,0x02,0x02,0x02,0x02,0x28,0x00,0x01,0x0d,0x20,0x00,0x00,0x00,0x00,0x10,0x14,0x50,0x10,0x24,0x02,0x10,0x10,0x52,0x08,0x28,0x44,0x83,0x00 -+// 17867 䗋 ; -+,0x00,0x00,0x00,0x00,0x0e,0x22,0x22,0x22,0x2a,0x28,0x00,0x01,0x1d,0x20,0x00,0x00,0x00,0x44,0x44,0x47,0x44,0x44,0x44,0x44,0x10,0x13,0x30,0x30,0x54,0x12,0x11,0x00 -+// 17868 䗌 ; -+,0x00,0x00,0x00,0x00,0x0e,0x22,0x22,0x22,0x2a,0x28,0x00,0x01,0x0d,0x20,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x50,0x50,0x10,0x12,0x10,0x10,0x11,0x00 -+// 17869 䗍 ; -+,0x00,0x02,0x02,0x02,0x00,0x03,0x01,0x00,0x02,0x00,0x00,0x00,0x04,0x00,0x0e,0x00,0x00,0x00,0x10,0x10,0x11,0x08,0x40,0xc0,0x47,0x40,0x44,0x44,0xc4,0x00,0xc2,0x00 -+// 17870 䗎 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x01,0x01,0x15,0x00,0x00,0x05,0x38,0x00,0x00,0x00,0x00,0x28,0x28,0x2a,0x2a,0x2a,0x2a,0x2a,0x10,0x10,0x12,0x10,0x10,0x01,0x00 -+// 17871 䗏 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x01,0x38,0x00,0x00,0x00,0x10,0x08,0x43,0x80,0x10,0x50,0x20,0x02,0x00,0x04,0x08,0x10,0x08,0x06,0x00 -+// 17872 䗐 ; -+,0x00,0x00,0x04,0x08,0x08,0x0a,0x0a,0x12,0x06,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x20,0x42,0x80,0x52,0x52,0x52,0x40,0x3f,0x00,0xc4,0x04,0xc4,0x00,0xc2,0x00 -+// 17873 䗑 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0f,0x20,0x00,0x00,0x00,0x00,0x42,0x02,0x42,0x02,0x42,0x00,0x10,0x02,0x00,0x04,0x24,0x00,0x01,0x00 -+// 17874 䗒 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x0f,0x30,0x00,0x00,0x00,0x00,0x44,0x28,0x0a,0x28,0x28,0x28,0x2a,0x2a,0x2c,0x28,0x28,0x28,0x29,0x00 -+// 17875 䗓 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0c,0x21,0x00,0x00,0x00,0x00,0x40,0x5d,0x08,0x28,0x1a,0x16,0x22,0x06,0x00,0x08,0x01,0x00,0x3e,0x00 -+// 17876 䗔 ; -+,0x00,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0a,0x30,0x00,0x00,0x00,0x40,0x44,0x44,0x84,0x80,0x90,0xaa,0x88,0x88,0x88,0x80,0x94,0x92,0xa3,0x00 -+// 17877 䗕 ; -+,0x00,0x00,0x00,0x12,0x14,0x05,0x05,0x02,0x04,0x08,0x04,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x40,0x02,0x08,0xc0,0x00,0x08,0x3e,0x40,0xc4,0x44,0x44,0x44,0x02,0x00 -+// 17878 䗖 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2b,0x2a,0x08,0x0a,0x0f,0x30,0x00,0x00,0x00,0x00,0x54,0x55,0x54,0x54,0x00,0x91,0x10,0x14,0x10,0x10,0x10,0x14,0x10,0x00 -+// 17879 䗗 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x0b,0x20,0x00,0x00,0x00,0x00,0x44,0xcd,0x80,0x02,0x02,0x24,0x24,0x25,0x24,0x04,0x44,0x44,0x84,0x00 -+// 17880 䗘 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0f,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x04,0xc2,0x00,0xaa,0xaa,0xaa,0xaa,0xab,0x00 -+// 17881 䗙 ; -+,0x00,0x00,0x00,0x10,0x01,0x01,0x01,0x03,0x02,0x00,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x80,0x42,0x20,0x24,0x20,0x20,0x00,0x00,0x8c,0x8b,0x88,0x88,0x88,0x84,0x00 -+// 17882 䗚 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0a,0x20,0x00,0x00,0x00,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x90,0x04,0x04,0x44,0x04,0x0c,0x00 -+// 17883 䗛 ; -+,0x00,0x08,0x08,0x08,0x2e,0x29,0x2a,0x28,0x28,0x2c,0x08,0x08,0x0a,0x20,0x00,0x00,0x00,0x48,0x88,0x92,0x82,0x84,0x8a,0x81,0x92,0x92,0x92,0xd2,0x92,0x92,0x92,0x00 -+// 17884 䗜 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0a,0x20,0x00,0x00,0x00,0x00,0x81,0x81,0xa9,0xa8,0x82,0x02,0x00,0x92,0x92,0x92,0x92,0x92,0x82,0x00 -+// 17885 䗝 ; -+,0x00,0x04,0x00,0x03,0x02,0x06,0x05,0x04,0x04,0x00,0x08,0x08,0x08,0x00,0x1f,0x00,0x00,0x00,0x10,0x52,0x52,0x52,0x52,0x10,0x10,0x80,0xc4,0x04,0xc0,0x04,0xc2,0x00 -+// 17886 䗞 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x04,0x15,0x15,0x15,0x04,0x05,0x10,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x0c,0x02,0x00,0x52,0x42,0x52,0x00,0x02,0x61,0x00 -+// 17887 䗟 ; -+,0x00,0x00,0x14,0x01,0x00,0x04,0x05,0x18,0x00,0x00,0x08,0x08,0x00,0x00,0x1e,0x00,0x00,0x00,0x24,0x24,0x00,0x06,0x14,0x88,0x02,0x80,0x8c,0x80,0x80,0x84,0x02,0x00 -+// 17888 䗠 ; -+,0x00,0x00,0x04,0x09,0x08,0x09,0x08,0x02,0x12,0x00,0x08,0x08,0x08,0x00,0x1f,0x00,0x00,0x00,0x42,0x40,0x02,0x40,0x42,0x80,0x18,0x00,0xc4,0x04,0xc0,0x00,0x82,0x00 -+// 17889 䗡 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x0a,0x30,0x01,0x00,0x00,0x00,0x10,0x10,0x52,0x50,0x51,0x40,0x42,0x40,0x81,0x01,0x14,0x12,0x06,0x00 -+// 17890 䗢 ; -+,0x00,0x08,0x08,0x08,0x2a,0x28,0x28,0x2a,0x28,0x28,0x08,0x08,0x0a,0x21,0x00,0x00,0x00,0x00,0x08,0xa8,0xa8,0x08,0x09,0x80,0x82,0x82,0x82,0x92,0x82,0x40,0x3f,0x00 -+// 17891 䗣 ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x02,0x00,0x04,0x05,0x05,0x05,0x04,0x05,0x38,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x08,0x4a,0x48,0x4a,0x08,0x0a,0xf9,0x00 -+// 17892 䗤 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x0b,0x31,0x00,0x00,0x00,0x00,0x09,0x88,0x8a,0x8a,0x8a,0x8a,0x88,0xca,0x8a,0x8a,0x0a,0x0a,0x0a,0x00 -+// 17893 䗥 ; -+,0x00,0x00,0x08,0x08,0x0c,0x0a,0x08,0x08,0x08,0x0c,0x08,0x08,0x0a,0x30,0x00,0x00,0x00,0x10,0x52,0x90,0x0c,0x01,0x40,0x80,0x80,0xa0,0xa4,0xa0,0xa0,0xa8,0x87,0x00 -+// 17894 䗦 ; -+,0x00,0x08,0x08,0x08,0x08,0x2a,0x28,0x2a,0x28,0x28,0x08,0x08,0x0e,0x30,0x01,0x00,0x00,0x00,0x10,0x16,0xa4,0x0c,0x03,0x8a,0x88,0x8a,0x88,0x88,0x88,0x80,0x1e,0x00 -+// 17895 䗧 ; -+,0x00,0x00,0x08,0x08,0x1a,0x0a,0x0a,0x0a,0x0a,0x1a,0x08,0x08,0x0b,0x31,0x00,0x00,0x00,0x00,0x09,0x80,0x88,0x8a,0x9b,0x82,0x9a,0x88,0xae,0x94,0x22,0x03,0x10,0x00 -+// 17896 䗨 ; -+,0x00,0x00,0x00,0x00,0x0a,0x02,0x02,0x02,0x02,0x1a,0x00,0x02,0x0e,0x30,0x00,0x00,0x00,0x20,0x20,0x48,0x40,0xd2,0x52,0x52,0x52,0x52,0x52,0x42,0x00,0xa1,0x81,0x00 -+// 17897 䗩 ; -+,0x00,0x08,0x08,0x08,0x0e,0x28,0x28,0x28,0x28,0x28,0x09,0x09,0x0b,0x20,0x00,0x00,0x00,0x00,0x0a,0x0a,0x88,0xa8,0x28,0x0a,0x9a,0x26,0x24,0x74,0x2c,0x22,0x40,0x00 -+// 17898 䗪 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x00,0x12,0x12,0x00,0x07,0x00,0x00,0x40,0x42,0x00,0x90,0x90,0x90,0x00,0x92,0x02,0x64,0x04,0x44,0x00,0x42,0x00 -+// 17899 䗫 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1c,0x09,0x09,0x0f,0x30,0x00,0x00,0x00,0x00,0x10,0x03,0x00,0x24,0x24,0x24,0x34,0x64,0x6c,0x24,0xa5,0x24,0x24,0x00 -+// 17900 䗬 ; -+,0x00,0x00,0x08,0x08,0x00,0x0c,0x00,0x00,0x0c,0x10,0x00,0x08,0x08,0x00,0x0e,0x00,0x00,0x40,0xcc,0x38,0x06,0x24,0x24,0x22,0x20,0xfe,0x40,0x44,0x44,0x00,0xc2,0x00 -+// 17901 䗭 ; -+,0x00,0x00,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x19,0x21,0x00,0x00,0x00,0x00,0x10,0x56,0x10,0x54,0x10,0x92,0x92,0x92,0x00,0x52,0x41,0x40,0x64,0x00 -+// 17902 䗮 ; -+,0x00,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0d,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x52,0xd6,0xf6,0x10,0x52,0xf2,0x69,0x28,0x44,0x86,0x03,0x00 -+// 17903 䗯 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x0e,0x21,0x00,0x00,0x00,0x00,0x14,0x80,0x28,0x20,0x2a,0xa0,0xaa,0xa8,0xa0,0xa8,0xa0,0x00,0x1f,0x00 -+// 17904 䗰 ; -+,0x00,0x00,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x1d,0x20,0x00,0x00,0x00,0x02,0x42,0x53,0x52,0x50,0x00,0x02,0x02,0x42,0x42,0x02,0x02,0x60,0x81,0x00 -+// 17905 䗱 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x1a,0x20,0x00,0x00,0x00,0x20,0x2a,0x28,0x28,0x04,0x28,0x0a,0x10,0x12,0x10,0x30,0x28,0x44,0x86,0x00 -+// 17906 䗲 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x0a,0x0e,0x30,0x00,0x00,0x00,0x00,0x52,0x34,0x18,0x30,0x52,0x00,0x40,0xa7,0xa8,0x68,0x46,0x00,0x00,0x00 -+// 17907 䗳 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x19,0x20,0x00,0x00,0x00,0x00,0x24,0x08,0xca,0x04,0x9e,0x03,0x04,0x04,0x04,0x00,0x08,0x40,0x12,0x00 -+// 17908 䗴 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2b,0x08,0x0a,0x0a,0x20,0x01,0x00,0x00,0x00,0x88,0xcc,0x02,0x00,0x4c,0x00,0x80,0xc8,0x40,0x40,0x89,0xc0,0x1f,0x00 -+// 17909 䗵 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x0b,0x30,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x52,0x12,0x00,0x00,0x02,0x12,0x12,0x12,0x02,0x01,0x00 -+// 17910 䗶 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x0a,0x20,0x00,0x00,0x00,0x00,0x44,0x40,0x02,0x02,0x42,0x02,0x40,0x43,0x90,0x18,0x42,0x82,0x06,0x00 -+// 17911 䗷 ; -+,0x00,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x0e,0x31,0x00,0x00,0x00,0x00,0x10,0x00,0x24,0x01,0x00,0x44,0x40,0x44,0x44,0x00,0x49,0x41,0x64,0x00 -+// 17912 䗸 ; -+,0x00,0x00,0x00,0x04,0x0a,0x1c,0x00,0x1a,0x04,0x08,0x00,0x08,0x08,0x00,0x0f,0x00,0x00,0x80,0x42,0x50,0x52,0x90,0x10,0x50,0x52,0x00,0x44,0x44,0x44,0x00,0xc2,0x00 -+// 17913 䗹 ; -+,0x00,0x08,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x28,0x08,0x08,0x0a,0x21,0x00,0x00,0x00,0x04,0x20,0x02,0x04,0x44,0x8a,0x4e,0x00,0xaa,0x00,0x50,0x41,0x44,0x3c,0x00 -+// 17914 䗺 ; -+,0x00,0x00,0x04,0x08,0x0a,0x00,0x04,0x0e,0x00,0x04,0x15,0x14,0x14,0x04,0x18,0x00,0x00,0x00,0x30,0x00,0x90,0x80,0x90,0x00,0x1c,0x08,0x4a,0x42,0x08,0x02,0xf1,0x00 -+// 17915 䗻 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x0a,0x30,0x00,0x00,0x00,0x00,0x88,0xa9,0x44,0x00,0x00,0x8b,0xa8,0x88,0xa8,0x88,0xaa,0xa8,0x08,0x00 -+// 17916 䗼 ; -+,0x00,0x00,0x00,0x00,0x1e,0x02,0x02,0x02,0x02,0x1a,0x00,0x02,0x0e,0x30,0x01,0x00,0x00,0x04,0x10,0x10,0x10,0x12,0x96,0xb2,0x92,0x10,0x10,0x12,0x00,0xaa,0x01,0x00 -+// 17917 䗽 ; -+,0x00,0x04,0x00,0x02,0x1c,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x08,0x00,0x1e,0x00,0x00,0x00,0x48,0x42,0x80,0x50,0x5a,0x00,0x41,0x00,0x44,0x44,0x44,0x40,0x42,0x00 -+// 17918 䗾 ; -+,0x00,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x0a,0x30,0x01,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x00,0x40,0xaa,0x44,0x2a,0x80,0x00,0xa8,0x21,0x00 -+// 17919 䗿 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x0a,0x30,0x00,0x00,0x00,0x10,0x10,0x80,0x10,0x80,0xa4,0x00,0xaa,0xaa,0xab,0x02,0x10,0x10,0x30,0x00 -+// 17920 䘀 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x15,0x15,0x15,0x04,0x05,0x30,0x00,0x00,0x80,0x08,0x08,0x00,0x00,0x40,0xc0,0x00,0x5a,0x42,0x52,0x00,0x02,0xe1,0x00 -+// 17921 䘁 ; -+,0x00,0x02,0x02,0x02,0x08,0x09,0x1a,0x0a,0x0a,0x08,0x00,0x08,0x08,0x00,0x1e,0x00,0x00,0x00,0x24,0x22,0x10,0x54,0x18,0x88,0x1c,0x02,0xc0,0x00,0xc0,0x00,0x86,0x00 -+// 17922 䘂 ; -+,0x00,0x00,0x08,0x00,0x08,0x2c,0x24,0x24,0x24,0x2c,0x00,0x04,0x0c,0x21,0x00,0x00,0x00,0x00,0x48,0x4a,0x48,0x49,0x08,0xa8,0xaa,0xb6,0xa4,0xb4,0xa4,0x83,0x01,0x00 -+// 17923 䘃 ; -+,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x0a,0x30,0x00,0x00,0x00,0x00,0x96,0x92,0x92,0x10,0x10,0x10,0x00,0xaa,0x80,0x10,0x10,0x10,0x11,0x00 -+// 17924 䘄 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x02,0x02,0x04,0x15,0x14,0x14,0x04,0x14,0x00,0x00,0x80,0x9c,0x90,0xc0,0x80,0x08,0x08,0x08,0x08,0x0a,0x02,0x0a,0x02,0xb1,0x00 -+// 17925 䘅 ; -+,0x00,0x04,0x08,0x18,0x00,0x01,0x01,0x01,0x11,0x04,0x15,0x15,0x15,0x05,0x30,0x00,0x00,0x00,0x28,0xa0,0x3e,0x00,0x28,0x20,0x3e,0x00,0x0a,0x02,0x0a,0x02,0xf1,0x00 -+// 17926 䘆 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x0a,0x0a,0x30,0x00,0x00,0x00,0x10,0x10,0x80,0x14,0x14,0x12,0x10,0x02,0xaa,0xaa,0x00,0x08,0x01,0x26,0x00 -+// 17927 䘇 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x08,0x00,0x1c,0x04,0x14,0x14,0x04,0x1c,0x00,0x00,0x80,0x14,0x20,0xc0,0x1e,0x84,0x80,0x80,0x02,0x08,0x0a,0x0a,0x00,0xb1,0x00 -+// 17928 䘈 ; -+,0x00,0x00,0x12,0x12,0x3a,0x32,0x32,0x32,0x32,0x3a,0x12,0x13,0x17,0x25,0x01,0x00,0x00,0x00,0x04,0xa4,0xa4,0x05,0xf5,0xc5,0x45,0x45,0x51,0x51,0x71,0x11,0x12,0x00 -+// 17929 䘉 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x00,0x00,0x14,0x04,0x14,0x14,0x04,0x14,0x00,0x00,0x00,0x80,0x82,0x00,0x0e,0xc8,0x88,0x82,0x00,0x08,0x0a,0x0a,0x08,0xb9,0x00 -+// 17930 䘊 ; -+,0x00,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x28,0x08,0x0a,0x0a,0x21,0x00,0x00,0x00,0x40,0x8d,0x88,0x22,0x82,0xaa,0xaa,0x16,0x10,0x80,0x8a,0x2c,0x0c,0x13,0x00 -+// 17931 䘋 ; -+,0x00,0x08,0x08,0x08,0x0c,0x2c,0x2c,0x2c,0x2c,0x2c,0x08,0x08,0x0c,0x31,0x00,0x00,0x00,0x00,0x84,0xa6,0x74,0x00,0xa4,0xa4,0xa7,0xb6,0xa6,0xa4,0xa4,0x83,0x01,0x00 -+// 17932 䘌 ; -+,0x00,0x00,0x09,0x01,0x00,0x01,0x01,0x01,0x08,0x04,0x14,0x14,0x14,0x05,0x38,0x00,0x00,0x00,0x10,0x10,0x40,0x00,0x08,0x08,0x02,0x08,0xaa,0x08,0x08,0x0a,0xf1,0x00 -+// 17933 䘍 ; -+,0x00,0x02,0x02,0x02,0x04,0x04,0x00,0x00,0x02,0x04,0x04,0x04,0x15,0x05,0x30,0x00,0x00,0x20,0x20,0x08,0x88,0x88,0x80,0x96,0x00,0x0c,0x08,0x08,0x0a,0x08,0xf1,0x00 -+// 17934 䘎 ; -+,0x00,0x00,0x08,0x01,0x08,0x2c,0x25,0x24,0x24,0x2c,0x20,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0x9a,0x45,0x80,0x01,0x2c,0x63,0x00,0x02,0x82,0x80,0x02,0x02,0x02,0x04 -+// 17935 䘏 ; -+,0x00,0x00,0x04,0x04,0x04,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x13,0x92,0x90,0x90,0x90,0x90,0x92,0x91,0x92,0x10,0x10,0x10,0x00 -+// 17936 䘐 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x0b,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x32,0x52,0x01,0x25,0x24,0x04,0x44,0x84,0x08,0x00 -+// 17937 䘑 ; -+,0x00,0x00,0x04,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x0b,0x38,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x12,0x38,0x28,0x28,0x44,0x42,0x03,0x10,0x30,0x00 -+// 17938 䘒 ; -+,0x00,0x00,0x08,0x08,0x01,0x09,0x09,0x09,0x09,0x09,0x09,0x0b,0x38,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x62,0x00,0x22,0x01,0x10,0x26,0x44,0x04,0x18,0x1c,0x03,0x00 -+// 17939 䘓 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x0b,0x38,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x24,0x00,0x00,0x10,0x41,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 17940 䘔 ; -+,0x00,0x00,0x08,0x08,0x01,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x38,0x00,0x00,0x00,0x00,0x10,0x10,0x43,0x80,0x24,0x44,0x08,0x18,0x24,0x43,0x44,0x44,0x44,0x44,0x00 -+// 17941 䘕 ; -+,0x00,0x00,0x08,0x00,0x00,0x04,0x08,0x19,0x09,0x09,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x80,0x80,0x20,0x00,0x02,0x02,0x02,0x02,0x02,0x22,0x62,0x02,0x04,0x00 -+// 17942 䘖 ; -+,0x00,0x00,0x08,0x11,0x01,0x0c,0x08,0x10,0x08,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0x00,0x80,0x00,0x80,0x00,0x06,0x90,0x00,0x20,0x20,0x20,0x20,0xa0,0x0c,0x00 -+// 17943 䘗 ; -+,0x00,0x00,0x08,0x11,0x05,0x08,0x08,0x18,0x29,0x08,0x09,0x08,0x09,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x62,0x82,0x62,0x02,0x12,0x42,0x52,0x52,0xc6,0x00 -+// 17944 䘘 ; -+,0x00,0x00,0x08,0x10,0x00,0x04,0x08,0x18,0x19,0x08,0x08,0x0b,0x09,0x0a,0x08,0x00,0x00,0x00,0xa0,0x80,0xa0,0x80,0xa1,0x80,0x40,0x80,0x20,0x80,0x20,0x00,0x84,0x00 -+// 17945 䘙 ; -+,0x00,0x00,0x08,0x10,0x00,0x08,0x00,0x10,0x22,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0xa2,0x20,0x20,0x20,0xa2,0xa2,0x82,0x82,0x82,0x82,0xa2,0xa2,0x84,0x00 -+// 17946 䘚 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x0c,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x82,0x04,0x08,0x10,0x18,0x06,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 17947 䘛 ; -+,0x00,0x00,0x04,0x02,0x02,0x04,0x05,0x0d,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x08,0x88,0x09,0x07,0x00 -+// 17948 䘜 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x00 -+// 17949 䘝 ; -+,0x00,0x00,0x04,0x00,0x02,0x00,0x05,0x0d,0x16,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0x24,0x20,0x20,0x22,0x20,0x20,0x20,0x10,0x10,0x00,0x09,0x07,0x01 -+// 17950 䘞 ; -+,0x00,0x00,0x04,0x00,0x02,0x04,0x04,0x0c,0x04,0x06,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x44,0x44,0x41,0x01,0x01,0x00,0x02,0x02,0x06,0x00 -+// 17951 䘟 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x05,0x0a,0x0c,0x02,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x10,0x90,0x90,0x12,0x12,0x12,0x16,0x10,0x10,0x00 -+// 17952 䘠 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x05,0x0c,0x06,0x05,0x04,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x20,0x20,0x22,0x20,0x00,0x04,0x44,0x44,0x08,0x98,0x18,0x26,0x03,0x00 -+// 17953 䘡 ; -+,0x00,0x00,0x00,0x09,0x00,0x00,0x08,0x08,0x00,0x01,0x02,0x04,0x00,0x00,0x07,0x00,0x00,0x00,0x40,0x4c,0x40,0x40,0x62,0x80,0xc2,0x00,0x04,0x20,0x10,0x0c,0x03,0x00 -+// 17954 䘢 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x82,0x80,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 17955 䘣 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x0b,0x08,0x1c,0x0a,0x08,0x08,0x08,0x09,0x09,0x00,0x00,0x00,0x48,0x48,0x48,0x49,0x4a,0x4c,0x48,0x48,0x48,0x48,0x48,0xc9,0x0f,0x00 -+// 17956 䘤 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x08,0x0c,0x02,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x12,0x10,0x32,0x30,0x30,0x10,0x54,0x54,0x92,0x11,0x10,0x10,0x00 -+// 17957 䘥 ; -+,0x00,0x08,0x04,0x00,0x02,0x04,0x04,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x10,0x10,0x10,0x00 -+// 17958 䘦 ; -+,0x00,0x08,0x00,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x80,0x90,0x83,0x84,0x90,0x80,0x00,0x11,0x1f,0x00 -+// 17959 䘧 ; -+,0x00,0x08,0x00,0x00,0x06,0x04,0x00,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x94,0x94,0x94,0x94,0xb7,0x20,0x20,0x28,0x44,0x82,0x03,0x00 -+// 17960 䘨 ; -+,0x00,0x08,0x00,0x02,0x02,0x04,0x04,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x02,0x00,0x24,0x42,0x04,0x04,0x08,0x28,0x10,0x38,0x4c,0x02,0x00 -+// 17961 䘩 ; -+,0x00,0x08,0x08,0x00,0x06,0x04,0x00,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x20,0x20,0x42,0x02,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x42,0x02,0x06,0x00 -+// 17962 䘪 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x04,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x10,0x12,0x10,0x20,0x42,0xe2,0x00,0x28,0x48,0x48,0x48,0x89,0x0f,0x00 -+// 17963 䘫 ; -+,0x00,0x04,0x04,0x08,0x09,0x03,0x04,0x00,0x00,0x01,0x01,0x02,0x0a,0x02,0x03,0x00,0x00,0x00,0xa2,0xa2,0x22,0x22,0xe2,0x00,0x40,0x00,0x00,0x28,0x10,0x0c,0x02,0x00 -+// 17964 䘬 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x00,0x0a,0x18,0x0c,0x0a,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x10,0x12,0x12,0x10,0x50,0x02,0xe4,0x0c,0x88,0x88,0x84,0x03,0x01,0x00 -+// 17965 䘭 ; -+,0x00,0x08,0x08,0x00,0x06,0x04,0x04,0x0a,0x1c,0x0a,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x03,0x10,0x20,0x00,0x42,0x50,0x10,0x10,0x12,0x10,0x10,0x10,0x13,0x00 -+// 17966 䘮 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0a,0x01,0x00,0x04,0x04,0x04,0x04,0x06,0x04,0x00,0x00,0x00,0x40,0xc0,0x08,0x10,0x14,0x00,0xc2,0x00,0x48,0x20,0x30,0x0c,0x06,0x00 -+// 17967 䘯 ; -+,0x00,0x00,0x04,0x00,0x02,0x02,0x04,0x09,0x0c,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x50,0x50,0x12,0x02,0x02,0x42,0x02,0x42,0x02,0x02,0x02,0x06,0x00 -+// 17968 䘰 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0b,0x08,0x0c,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x0e,0x40,0x00,0x80,0x96,0xd0,0x50,0x50,0x50,0x94,0x80,0x20,0x0f,0x00 -+// 17969 䘱 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x03,0x04,0x02,0x02,0x01,0x02,0x0e,0x02,0x03,0x00,0x00,0x80,0x02,0x00,0x08,0x86,0x00,0x0c,0x10,0x10,0x00,0x0c,0x10,0x08,0x06,0x00 -+// 17970 䘲 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x19,0x2c,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x02,0x02,0x0c,0x08,0x00,0x30,0x18,0x06,0x00 -+// 17971 䘳 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x08,0x18,0x2c,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x30,0x20,0x48,0x04,0x03,0x30,0x00,0x00,0x00,0x84,0x44,0x00,0x01,0x00 -+// 17972 䘴 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x18,0x2d,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0xf2,0x92,0xc1,0xe4,0x28,0x08,0x00,0x00,0x19,0x01,0x00 -+// 17973 䘵 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x18,0x0c,0x0a,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x10,0x12,0x50,0x18,0x14,0x12,0x10,0x30,0x00 -+// 17974 䘶 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x18,0x2c,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x06,0x00,0x10,0x10,0x94,0xb0,0x90,0xb4,0xd6,0x90,0x90,0x80,0x82,0x00 -+// 17975 䘷 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x18,0x0c,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x54,0x50,0x12,0x12,0x12,0x32,0x16,0x16,0x92,0x12,0x12,0x12,0x00 -+// 17976 䘸 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x19,0x0c,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x11,0x58,0x90,0x92,0xa2,0xaa,0x84,0x84,0x88,0x8c,0x96,0xa3,0x00 -+// 17977 䘹 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x02,0x44,0x44,0x48,0xa2,0x00,0x10,0x11,0x10,0x10,0x10,0x10,0x00 -+// 17978 䘺 ; -+,0x00,0x08,0x08,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x0a,0x08,0x08,0x09,0x08,0x00,0x00,0x10,0x10,0x83,0x82,0x00,0x12,0x10,0x10,0x52,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 17979 䘻 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x20,0x20,0x42,0x80,0x00,0x84,0x84,0x80,0x84,0x80,0x80,0x84,0x00 -+// 17980 䘼 ; -+,0x00,0x00,0x08,0x00,0x05,0x04,0x0a,0x0a,0x0c,0x0b,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x13,0x02,0x40,0x8a,0xaa,0x2a,0xaa,0x0a,0x4a,0x08,0x09,0x0f,0x00 -+// 17981 䘽 ; -+,0x00,0x08,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x42,0x82,0x82,0xa2,0x82,0x82,0xaa,0x28,0x08,0x48,0x08,0x89,0x0f,0x00 -+// 17982 䘾 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x04,0x0a,0x18,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x01,0x80,0x04,0x44,0x44,0x44,0x40,0x42,0x42,0x42,0x42,0x42,0x00 -+// 17983 䘿 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x0a,0x1c,0x0a,0x0a,0x08,0x09,0x08,0x08,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x88,0x82,0x82,0x8a,0x00,0x42,0x42,0x4a,0x02,0x00 -+// 17984 䙀 ; -+,0x00,0x10,0x09,0x05,0x05,0x09,0x09,0x1d,0x1d,0x0d,0x09,0x09,0x08,0x0a,0x08,0x00,0x00,0x00,0x72,0x12,0x12,0x52,0x12,0x12,0x52,0x12,0x12,0x12,0x12,0x22,0x66,0x00 -+// 17985 䙁 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x28,0x20,0x24,0x18,0x28,0x06,0x50,0x02,0x20,0x24,0x38,0x30,0x8f,0x00 -+// 17986 䙂 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x18,0x0e,0x08,0x08,0x0a,0x08,0x08,0x00,0x00,0x00,0x20,0x48,0x84,0x23,0x00,0x04,0xc4,0x00,0x90,0x92,0x81,0x80,0x7c,0x00 -+// 17987 䙃 ; -+,0x00,0x08,0x00,0x00,0x06,0x04,0x0a,0x08,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x40,0x42,0x90,0x92,0x00,0x86,0x80,0xc4,0x80,0xc4,0x80,0x84,0x00 -+// 17988 䙄 ; -+,0x00,0x08,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x04,0x38,0x10,0x11,0x10,0x10,0x52,0x12,0x12,0xd2,0x12,0x12,0x92,0x02,0x00 -+// 17989 䙅 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x18,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x29,0x28,0xaa,0x2a,0x2a,0x82,0x20,0x21,0x64,0x48,0x48,0x18,0x42,0x00 -+// 17990 䙆 ; -+,0x00,0x08,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x32,0x2c,0x8a,0x44,0x04,0x8f,0x20,0x20,0x22,0x20,0x08,0x46,0x02,0x00 -+// 17991 䙇 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x32,0x20,0xa2,0xa2,0xa2,0xa2,0x82,0x20,0x22,0x20,0x48,0x44,0x02,0x00 -+// 17992 䙈 ; -+,0x00,0x00,0x08,0x00,0x04,0x00,0x09,0x00,0x1c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x84,0x84,0x85,0x20,0x20,0x38,0x00,0x80,0x18,0x10,0x14,0x22,0x01,0x00 -+// 17993 䙉 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0a,0x08,0x0e,0x0a,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x88,0x8a,0xa2,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x00 -+// 17994 䙊 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x19,0x0c,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x14,0x55,0x14,0x14,0x00,0x13,0x00,0xb4,0x84,0x84,0x84,0x84,0x00,0x00 -+// 17995 䙋 ; -+,0x00,0x00,0x04,0x00,0x06,0x05,0x00,0x0a,0x18,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x81,0x00,0x04,0x00,0x00,0x02,0x02,0x46,0x02,0x46,0x00,0x03,0x00 -+// 17996 䙌 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x92,0x92,0x92,0x11,0x00,0x02,0x12,0x12,0x12,0x20,0x26,0x43,0x00 -+// 17997 䙍 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x18,0x0e,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x0c,0x06,0x44,0x82,0x84,0x83,0xb9,0x8a,0x8c,0x82,0x80,0x04,0x03,0x00 -+// 17998 䙎 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x06,0x30,0x02,0x14,0x20,0x44,0xd8,0x20,0xe2,0x00,0x33,0x20,0x48,0x87,0x00 -+// 17999 䙏 ; -+,0x00,0x08,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x14,0x00,0x10,0x10,0x92,0x92,0x82,0x92,0x80,0x04,0x04,0x44,0x04,0x08,0x00 -+// 18000 䙐 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x02,0x00,0x44,0x44,0x44,0x44,0x02,0x00,0x28,0x20,0x12,0x10,0x10,0x02,0x00 -+// 18001 䙑 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x00,0x00,0x44,0x44,0x44,0x44,0x30,0x42,0x48,0x4c,0x46,0x63,0x00 -+// 18002 䙒 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x04,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x00,0x24,0x4c,0x10,0x02,0xf3,0x00,0x92,0x92,0x92,0x92,0x82,0x00 -+// 18003 䙓 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x00,0x0a,0x18,0x0c,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x83,0xa8,0xa8,0xa2,0x10,0x10,0x10,0x10,0x10,0x20,0x40,0x86,0x82,0x00 -+// 18004 䙔 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x00,0x0a,0x18,0x0a,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x82,0x80,0xa2,0xa2,0xa2,0xa0,0x80,0xd5,0xd5,0xd5,0xd5,0x80,0x83,0x00 -+// 18005 䙕 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x09,0x1d,0x0f,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0xa2,0x24,0x35,0x09,0x80,0x08,0x08,0x29,0x28,0x08,0x48,0x58,0x07,0x00 -+// 18006 䙖 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x0a,0x18,0x0e,0x08,0x09,0x09,0x08,0x08,0x00,0x00,0x10,0x92,0x92,0x82,0x00,0xaa,0x28,0xaa,0x28,0xaa,0x28,0x28,0x30,0x02,0x00 -+// 18007 䙗 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x04,0x00,0x08,0x93,0x11,0x11,0x11,0x2d,0x01,0x25,0x01,0x02,0x00 -+// 18008 䙘 ; -+,0x00,0x08,0x08,0x04,0x05,0x09,0x09,0x15,0x1d,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x0a,0x08,0x48,0x48,0x48,0x4a,0x5a,0x06,0x44,0xd4,0x4c,0x53,0x41,0x00 -+// 18009 䙙 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x00,0x0a,0x18,0x0d,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x83,0x01,0x80,0x02,0x00,0x12,0xc0,0x00,0x5a,0x00,0x18,0x00,0x00,0x00 -+// 18010 䙚 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0x10,0x00,0x01,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0x0c,0x00,0x02,0x02,0x02,0x40,0x4c,0x42,0x04,0x20,0x18,0x06,0x00 -+// 18011 䙛 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x00,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x10,0x00,0x44,0x82,0x04,0x04,0x44,0x00,0x42,0x88,0x08,0xc6,0xc2,0x00 -+// 18012 䙜 ; -+,0x00,0x00,0x08,0x01,0x06,0x04,0x02,0x08,0x1c,0x0a,0x08,0x08,0x08,0x08,0x0a,0x00,0x00,0x10,0x10,0x24,0x14,0x08,0x07,0x0a,0x08,0x0a,0x08,0x0a,0x08,0x88,0x3e,0x00 -+// 18013 䙝 ; -+,0x00,0x00,0x00,0x00,0x05,0x04,0x08,0x0a,0x04,0x04,0x04,0x01,0x06,0x02,0x03,0x00,0x00,0x80,0x43,0x00,0x10,0x14,0x14,0x14,0x34,0x03,0x80,0x08,0x20,0x10,0x07,0x00 -+// 18014 䙞 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x0a,0x18,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x32,0x28,0xa9,0xc4,0x86,0x03,0x04,0x04,0x04,0x04,0x40,0x08,0x03,0x00 -+// 18015 䙟 ; -+,0x00,0x08,0x09,0x01,0x05,0x05,0x09,0x0b,0x19,0x0d,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x02,0x00,0x28,0x28,0x0e,0x08,0x00,0x10,0x10,0x52,0x12,0x00,0x02,0x00 -+// 18016 䙠 ; -+,0x00,0x00,0x09,0x01,0x05,0x01,0x09,0x05,0x19,0x0d,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x24,0x15,0x09,0x84,0x94,0x94,0xf4,0x4a,0x4a,0x92,0x21,0x00 -+// 18017 䙡 ; -+,0x00,0x08,0x00,0x00,0x06,0x04,0x08,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x92,0x92,0x92,0x10,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x44,0x83,0x00 -+// 18018 䙢 ; -+,0x00,0x08,0x04,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x20,0x28,0x93,0x96,0xb4,0x92,0x82,0x00,0x02,0x02,0x02,0x02,0x46,0x00 -+// 18019 䙣 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x30,0x20,0x20,0x40,0x06,0x01,0x00,0x48,0x4a,0x40,0x4a,0x00,0x00,0x00 -+// 18020 䙤 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x08,0x0c,0x0a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x22,0xa0,0xa8,0x28,0x2a,0xc3,0xc1,0xd5,0xd5,0xc1,0xc3,0x80,0x3f,0x00 -+// 18021 䙥 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x02,0x10,0x11,0x10,0x10,0x00,0x30,0x28,0x47,0x10,0x06,0x00,0x20,0x10,0x00 -+// 18022 䙦 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x08,0x0c,0x0b,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x08,0x49,0x48,0x00,0xaa,0xaa,0x82,0x01,0x20,0x44,0xc4,0x08,0x20,0x80,0x00 -+// 18023 䙧 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x0c,0x0a,0x08,0x08,0x08,0x09,0x09,0x00,0x00,0x00,0x18,0x10,0x10,0x92,0x92,0x9a,0x92,0x12,0x10,0x11,0x00,0x28,0x21,0x00 -+// 18024 䙨 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x0a,0x0c,0x0c,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x92,0x92,0x92,0x10,0x7c,0x12,0x00,0x10,0x70,0x42,0x88,0x04,0x42,0x00 -+// 18025 䙩 ; -+,0x00,0x08,0x08,0x00,0x04,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x25,0x20,0x01,0x02,0x04,0x02,0x20,0x44,0x38,0x18,0x2a,0x09,0x18,0x00 -+// 18026 䙪 ; -+,0x00,0x00,0x04,0x0c,0x0c,0x16,0x04,0x00,0x01,0x02,0x08,0x03,0x06,0x02,0x03,0x00,0x00,0x00,0x48,0x08,0x0c,0xda,0x48,0x80,0x22,0x00,0x0f,0x00,0x08,0x10,0x06,0x00 -+// 18027 䙫 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x00,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x2a,0x28,0x2f,0x00,0x12,0x12,0x92,0x08,0x6a,0x08,0x00,0x44,0x82,0x00 -+// 18028 䙬 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x09,0x0a,0x1c,0x0c,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x22,0x2a,0xaa,0x2a,0x2a,0xaa,0x00,0xa9,0x20,0x64,0x44,0x08,0x1c,0x22,0x00 -+// 18029 䙭 ; -+,0x00,0x00,0x08,0x00,0x04,0x04,0x08,0x0a,0x1c,0x0a,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0x00,0x10,0x02,0x48,0x58,0x58,0x5a,0x80,0x8c,0x0b,0x28,0xa4,0xa0,0x3e,0x00 -+// 18030 䙮 ; -+,0x00,0x00,0x08,0x00,0x06,0x04,0x08,0x0a,0x1c,0x0b,0x0b,0x08,0x08,0x08,0x08,0x00,0x00,0x48,0x4a,0x48,0x22,0x22,0x22,0x00,0x92,0x10,0x92,0x10,0x92,0x10,0x80,0x00 -+// 18031 䙯 ; -+,0x00,0x00,0x08,0x00,0x04,0x00,0x09,0x19,0x1d,0x0c,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0x08,0x0a,0x08,0x28,0x0c,0x24,0x34,0x43,0x44,0x44,0x10,0x90,0x50,0x3e,0x00 -+// 18032 䙰 ; -+,0x00,0x10,0x08,0x00,0x0c,0x08,0x09,0x14,0x18,0x0e,0x02,0x03,0x02,0x02,0x12,0x00,0x00,0x00,0x88,0x82,0x50,0x94,0x74,0x54,0x94,0xb4,0x34,0x74,0x34,0x35,0x50,0x00 -+// 18033 䙱 ; -+,0x00,0x00,0x09,0x01,0x07,0x05,0x09,0x0b,0x1d,0x0f,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0x02,0x00,0x06,0x02,0x42,0x62,0x21,0x51,0x55,0x55,0x15,0x43,0x00 -+// 18034 䙲 ; -+,0x00,0x00,0x01,0x01,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0x20,0x20,0x22,0x22,0x22,0x22,0x00,0xc0,0xc3,0x80,0x20,0x18,0x06,0x00 -+// 18035 䙳 ; -+,0x00,0x00,0x01,0x01,0x09,0x09,0x09,0x08,0x00,0x00,0x08,0x09,0x01,0x02,0x08,0x00,0x00,0x00,0x20,0x20,0x24,0x24,0x24,0x04,0xc0,0xcc,0xd0,0xa0,0x10,0x18,0x07,0x00 -+// 18036 䙴 ; -+,0x00,0x00,0x01,0x01,0x09,0x09,0x09,0x00,0x03,0x02,0x06,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x22,0x20,0x24,0x24,0x24,0x80,0x02,0x00,0x17,0x10,0x10,0x00,0xfc,0x00 -+// 18037 䙵 ; -+,0x00,0x00,0x01,0x01,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x20,0x24,0x24,0x24,0x40,0xc4,0x40,0x40,0x40,0x40,0x00,0x00,0x00 -+// 18038 䙶 ; -+,0x00,0x00,0x01,0x08,0x08,0x08,0x2d,0x29,0x29,0x21,0x31,0x33,0x21,0x21,0x01,0x00,0x00,0x00,0x08,0x08,0x5b,0x90,0x10,0x32,0x24,0x68,0x68,0x24,0x22,0x33,0x20,0x00 -+// 18039 䙷 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x01,0x02,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x28,0x20,0x21,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 18040 䙸 ; -+,0x00,0x00,0x11,0x10,0x11,0x10,0x11,0x10,0x10,0x1f,0x0a,0x0a,0x0a,0x12,0x03,0x00,0x00,0x00,0x84,0x84,0x84,0x86,0x84,0x84,0xa4,0x04,0x04,0x04,0x0c,0x01,0xff,0x00 -+// 18041 䙹 ; -+,0x00,0x00,0x09,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x02,0x22,0x02,0x02,0x02,0x02,0x36,0x10,0x10,0x00,0x21,0x47,0x00 -+// 18042 䙺 ; -+,0x00,0x04,0x04,0x04,0x05,0x06,0x04,0x24,0x04,0x04,0x04,0x0a,0x09,0x10,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x6a,0x22,0x20,0x20,0x41,0x87,0x00 -+// 18043 䙻 ; -+,0x00,0x00,0x04,0x07,0x14,0x14,0x14,0x14,0x04,0x0c,0x04,0x05,0x05,0x04,0x04,0x00,0x00,0x00,0x02,0x02,0x22,0x02,0x02,0x82,0x82,0xb6,0x90,0x10,0x00,0x21,0x47,0x00 -+// 18044 䙼 ; -+,0x00,0x00,0x05,0x04,0x01,0x09,0x01,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0xc2,0x42,0x42,0x42,0x42,0x42,0x42,0x56,0x14,0x04,0x24,0x05,0x07,0x00 -+// 18045 䙽 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x04,0x04,0x04,0x04,0x04,0x05,0x01,0x02,0x04,0x00,0x00,0x40,0x42,0x80,0x04,0x08,0x07,0x08,0x08,0x08,0x08,0x28,0x20,0x20,0x3f,0x00 -+// 18046 䙾 ; -+,0x00,0x00,0x04,0x00,0x01,0x20,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x5a,0x10,0x00,0x20,0x01,0x07,0x00 -+// 18047 䙿 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x05,0x0c,0x0e,0x15,0x15,0x04,0x04,0x04,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x5a,0x08,0x08,0x28,0x49,0x07,0x00 -+// 18048 䚀 ; -+,0x00,0x04,0x00,0x09,0x01,0x05,0x05,0x11,0x11,0x01,0x15,0x11,0x11,0x01,0x03,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x02,0x20,0x20,0x01,0x07,0x00 -+// 18049 䚁 ; -+,0x00,0x00,0x08,0x00,0x01,0x01,0x01,0x0b,0x0b,0x0b,0x0b,0x01,0x01,0x01,0x20,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x6a,0x08,0x28,0x28,0x49,0x0f,0x00 -+// 18050 䚂 ; -+,0x00,0x00,0x04,0x05,0x04,0x04,0x04,0x00,0x08,0x19,0x08,0x08,0x00,0x10,0x02,0x00,0x00,0x00,0x42,0x02,0x02,0x02,0xc2,0x02,0x02,0x7a,0x90,0x00,0x20,0x21,0x07,0x00 -+// 18051 䚃 ; -+,0x00,0x00,0x00,0x04,0x00,0x05,0x01,0x01,0x15,0x05,0x05,0x01,0x01,0x11,0x01,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x7a,0x10,0x00,0x20,0x01,0x07,0x00 -+// 18052 䚄 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x0a,0x06,0x01,0x20,0x00,0x04,0x00,0x00,0x00,0x22,0x02,0x22,0x02,0xe2,0x02,0x02,0x3e,0x10,0x10,0xa0,0x01,0x07,0x00 -+// 18053 䚅 ; -+,0x00,0x00,0x00,0x06,0x00,0x09,0x11,0x19,0x0e,0x04,0x07,0x09,0x10,0x00,0x00,0x00,0x00,0x00,0x02,0x82,0x22,0x02,0x02,0xa2,0x82,0x32,0x10,0x00,0x20,0x01,0x07,0x00 -+// 18054 䚆 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x04,0x15,0x15,0x15,0x15,0x04,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x02,0x82,0x22,0x02,0x02,0x22,0x02,0x32,0x10,0x10,0x20,0x01,0x07,0x00 -+// 18055 䚇 ; -+,0x00,0x00,0x04,0x0c,0x14,0x01,0x02,0x04,0x09,0x01,0x09,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x02,0xc2,0x02,0x02,0x02,0x02,0x36,0x10,0x00,0x20,0x01,0x07,0x00 -+// 18056 䚈 ; -+,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x1a,0x04,0x04,0x04,0x04,0x04,0x30,0x00,0x00,0x00,0xa2,0x22,0x22,0xa2,0xa2,0xa2,0xa2,0x32,0x10,0x00,0x20,0x01,0x07,0x00 -+// 18057 䚉 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x12,0x10,0x11,0x00,0x04,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x82,0xa2,0xa2,0xa2,0xa2,0xa2,0x22,0x32,0x90,0x10,0x20,0x21,0x47,0x00 -+// 18058 䚊 ; -+,0x00,0x01,0x08,0x0a,0x02,0x00,0x09,0x00,0x10,0x1b,0x11,0x11,0x11,0x13,0x38,0x00,0x00,0x00,0x02,0x02,0xa2,0x22,0x02,0xa2,0x02,0x32,0x10,0x10,0x20,0x01,0x07,0x00 -+// 18059 䚋 ; -+,0x00,0x00,0x11,0x11,0x11,0x00,0x10,0x00,0x00,0x10,0x00,0x10,0x08,0x11,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0xa2,0xa2,0xa2,0xb6,0x94,0x94,0x14,0x25,0x47,0x00 -+// 18060 䚌 ; -+,0x00,0x04,0x00,0x11,0x11,0x11,0x11,0x04,0x0c,0x09,0x14,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x36,0x94,0x14,0x04,0x25,0x47,0x00 -+// 18061 䚍 ; -+,0x00,0x00,0x04,0x04,0x05,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x09,0x00,0x00,0x00,0x00,0x82,0x02,0x22,0x02,0x02,0x22,0x02,0x22,0x12,0x10,0x00,0x21,0x47,0x00 -+// 18062 䚎 ; -+,0x00,0x04,0x04,0x04,0x04,0x0c,0x08,0x08,0x11,0x15,0x11,0x19,0x11,0x11,0x11,0x00,0x00,0x00,0x22,0xa2,0x22,0x22,0x22,0x22,0x22,0xb6,0x14,0x14,0x14,0x25,0x07,0x00 -+// 18063 䚏 ; -+,0x00,0x00,0x10,0x09,0x06,0x0f,0x00,0x00,0x11,0x1d,0x2b,0x19,0x11,0x01,0x01,0x00,0x00,0x00,0x22,0x22,0xa2,0x22,0xa2,0x22,0x22,0xb6,0x14,0x14,0x04,0x25,0x47,0x00 -+// 18064 䚐 ; -+,0x00,0x10,0x10,0x2a,0x0a,0x1e,0x12,0x16,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x22,0xa2,0xa2,0xa2,0xa2,0xa2,0x22,0x36,0x14,0x14,0x04,0x25,0x47,0x00 -+// 18065 䚑 ; -+,0x00,0x00,0x12,0x02,0x02,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x10,0x09,0x00,0x00,0x00,0x00,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x22,0x36,0x14,0x14,0x14,0x25,0x07,0x00 -+// 18066 䚒 ; -+,0x00,0x04,0x00,0x00,0x08,0x0a,0x00,0x15,0x15,0x15,0x14,0x05,0x04,0x04,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0xa2,0x22,0x22,0x22,0x36,0x14,0x14,0x14,0x25,0x07,0x00 -+// 18067 䚓 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x01,0x11,0x11,0x11,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x22,0x22,0xa2,0xa2,0xa2,0x22,0x22,0x3e,0x10,0x10,0x90,0x25,0x07,0x00 -+// 18068 䚔 ; -+,0x00,0x04,0x04,0x20,0x04,0x15,0x06,0x08,0x11,0x11,0x11,0x11,0x00,0x09,0x10,0x00,0x00,0x00,0x82,0x02,0x22,0x22,0x02,0x22,0x02,0x32,0x12,0x10,0x00,0x21,0x47,0x00 -+// 18069 䚕 ; -+,0x00,0x00,0x00,0x0a,0x0b,0x00,0x00,0x12,0x16,0x10,0x10,0x08,0x29,0x28,0x09,0x00,0x00,0x00,0x22,0xa2,0x22,0x22,0x22,0x22,0x22,0xb6,0x96,0x14,0x14,0x25,0x87,0x00 -+// 18070 䚖 ; -+,0x00,0x00,0x04,0x24,0x00,0x00,0x00,0x37,0x22,0x23,0x00,0x04,0x1d,0x04,0x3c,0x00,0x00,0x00,0x22,0x62,0x22,0x22,0x22,0xa2,0xa2,0xb2,0x96,0x14,0x94,0x25,0x07,0x00 -+// 18071 䚗 ; -+,0x00,0x08,0x08,0x0b,0x12,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x25,0x01,0x00,0x00,0x00,0x08,0x20,0x20,0x24,0x04,0x03,0x10,0x10,0x00,0x20,0x04,0x42,0x42,0x00 -+// 18072 䚘 ; -+,0x00,0x00,0x08,0x11,0x01,0x0a,0x0b,0x18,0x09,0x08,0x08,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x82,0xa0,0x40,0x00,0x22,0x22,0xa2,0x22,0xa2,0x22,0x22,0x22,0x24,0x00 -+// 18073 䚙 ; -+,0x00,0x08,0x08,0x0b,0x12,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x25,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x26,0x02,0x02,0x22,0x02,0x02,0x22,0x00,0x01,0x00,0x00 -+// 18074 䚚 ; -+,0x00,0x08,0x08,0x1b,0x12,0x35,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x25,0x01,0x00,0x00,0x00,0x20,0x20,0x3e,0x40,0x00,0x00,0x38,0x28,0x28,0x28,0x28,0x49,0x0f,0x00 -+// 18075 䚛 ; -+,0x00,0x00,0x08,0x0b,0x12,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x05,0x01,0x00,0x00,0x00,0x08,0x28,0x2a,0x48,0x08,0x08,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x00 -+// 18076 䚜 ; -+,0x00,0x08,0x08,0x0b,0x12,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x25,0x01,0x00,0x00,0x00,0x00,0x4b,0x08,0x0a,0x08,0x08,0x1a,0x10,0x08,0x09,0x08,0x08,0x08,0x00 -+// 18077 䚝 ; -+,0x00,0x08,0x08,0x1a,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x05,0x25,0x25,0x00,0x00,0x00,0x00,0x10,0x02,0x20,0x24,0x64,0x4a,0x02,0x10,0x13,0x10,0x10,0x10,0x10,0x00 -+// 18078 䚞 ; -+,0x00,0x08,0x08,0x12,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x05,0x05,0x25,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x76,0x18,0x18,0x18,0x24,0x02,0x00,0x00,0x00 -+// 18079 䚟 ; -+,0x00,0x08,0x08,0x0a,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x05,0x05,0x25,0x00,0x00,0x00,0x00,0x22,0x02,0x22,0x02,0x22,0x00,0x04,0x04,0x04,0x24,0x24,0x04,0x0c,0x00 -+// 18080 䚠 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x05,0x01,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x42,0x4c,0x40,0x40,0x41,0x47,0x00 -+// 18081 䚡 ; -+,0x00,0x08,0x08,0x12,0x10,0x35,0x11,0x15,0x11,0x11,0x1d,0x01,0x01,0x25,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x5a,0x42,0x4a,0x42,0x00,0x28,0x29,0xa1,0xa0,0x3c,0x00 -+// 18082 䚢 ; -+,0x00,0x08,0x08,0x12,0x10,0x25,0x01,0x09,0x19,0x01,0x1d,0x21,0x21,0x21,0x02,0x00,0x00,0x00,0x54,0x54,0x54,0x54,0x54,0x40,0x50,0x10,0x38,0x30,0x14,0x13,0x10,0x00 -+// 18083 䚣 ; -+,0x00,0x08,0x08,0x0a,0x12,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x25,0x05,0x00,0x00,0x00,0x26,0x20,0x24,0x20,0x24,0x00,0x03,0x08,0x28,0x48,0x48,0x18,0x07,0x00 -+// 18084 䚤 ; -+,0x00,0x08,0x08,0x0b,0x12,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x25,0x05,0x00,0x00,0x00,0x22,0x0a,0x2a,0x0a,0x0a,0x08,0x08,0x4a,0x48,0x4e,0x40,0x40,0x42,0x00 -+// 18085 䚥 ; -+,0x00,0x08,0x08,0x12,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x05,0x03,0x00,0x00,0x00,0x22,0x02,0x02,0x48,0x08,0x4a,0x00,0x40,0x42,0x06,0x8a,0x22,0x26,0x00 -+// 18086 䚦 ; -+,0x00,0x08,0x08,0x12,0x00,0x35,0x11,0x15,0x11,0x15,0x15,0x01,0x05,0x25,0x03,0x00,0x00,0x00,0x18,0x0a,0x08,0xaa,0xa8,0xa8,0xae,0xa0,0xac,0x80,0x90,0x41,0x03,0x00 -+// 18087 䚧 ; -+,0x00,0x08,0x08,0x12,0x10,0x35,0x01,0x15,0x15,0x01,0x15,0x01,0x01,0x25,0x03,0x00,0x00,0x00,0x12,0x56,0x12,0x5a,0x10,0x10,0x46,0x10,0x04,0x18,0x06,0x08,0x20,0x00 -+// 18088 䚨 ; -+,0x00,0x08,0x08,0x12,0x10,0x27,0x01,0x0a,0x00,0x00,0x0e,0x20,0x20,0x20,0x02,0x00,0x00,0x00,0x34,0x28,0x44,0x02,0x2e,0x28,0xa2,0x80,0xa2,0x22,0x24,0x22,0x40,0x00 -+// 18089 䚩 ; -+,0x00,0x08,0x08,0x12,0x00,0x25,0x05,0x15,0x15,0x15,0x15,0x05,0x05,0x25,0x03,0x00,0x00,0x00,0x38,0x10,0x20,0x20,0x4e,0x01,0x00,0x02,0x02,0x2a,0x2a,0x02,0x06,0x00 -+// 18090 䚪 ; -+,0x00,0x08,0x08,0x1a,0x10,0x35,0x01,0x14,0x10,0x00,0x1e,0x00,0x01,0x21,0x02,0x00,0x00,0x00,0x6a,0x0a,0x4a,0x00,0x00,0x42,0x40,0x50,0x20,0x42,0x0c,0x06,0x20,0x00 -+// 18091 䚫 ; -+,0x00,0x00,0x08,0x08,0x00,0x02,0x04,0x09,0x01,0x01,0x06,0x02,0x02,0x00,0x04,0x00,0x00,0x10,0x90,0xa4,0x84,0x58,0x08,0x06,0x80,0x30,0x22,0x22,0x22,0x22,0x26,0x00 -+// 18092 䚬 ; -+,0x00,0x00,0x08,0x0a,0x12,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x05,0x05,0x02,0x00,0x00,0x00,0x54,0x10,0x18,0x30,0x50,0x10,0x44,0x54,0x84,0x64,0x04,0x44,0x04,0x00 -+// 18093 䚭 ; -+,0x00,0x08,0x08,0x16,0x14,0x35,0x11,0x11,0x15,0x11,0x15,0x01,0x05,0x21,0x02,0x00,0x00,0x24,0x24,0x24,0x00,0x0a,0x2a,0x00,0x40,0x48,0x4a,0x40,0x5a,0x40,0x40,0x00 -+// 18094 䚮 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x13,0x00,0x00,0x12,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x21,0x21,0x21,0x21,0x41,0x40,0x02,0x04,0x00 -+// 18095 䚯 ; -+,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x02,0x82,0x12,0x92,0x12,0x12,0x12,0x12,0x92,0x02,0x02,0x02,0x04,0x00 -+// 18096 䚰 ; -+,0x00,0x04,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x20,0xa0,0x20,0x22,0x24,0x30,0x20,0x20,0x20,0x20,0x20,0x21,0x1e,0x00 -+// 18097 䚱 ; -+,0x00,0x08,0x04,0x01,0x00,0x01,0x00,0x02,0x00,0x00,0x13,0x11,0x11,0x13,0x11,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x28,0x28,0x48,0x49,0x09,0x09,0x08,0x08,0x18,0x00 -+// 18098 䚲 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x06,0x84,0x00,0x80,0x02,0x04,0x08,0x00,0x03,0x06,0x0c,0x10,0x20,0x00 -+// 18099 䚳 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x13,0x11,0x11,0x13,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x04,0x04,0x20,0x18,0x18,0x2c,0x07,0x00 -+// 18100 䚴 ; -+,0x00,0x08,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x42,0x42,0x02,0x86,0x00 -+// 18101 䚵 ; -+,0x00,0x00,0x04,0x04,0x00,0x01,0x00,0x01,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0x04,0x24,0x24,0x05,0x04,0x04,0x04,0x04,0x04,0x00 -+// 18102 䚶 ; -+,0x00,0x00,0x04,0x05,0x00,0x02,0x00,0x00,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x02,0x10,0x10,0x10,0x10,0x13,0x10,0x08,0x28,0x24,0x04,0x42,0x01,0x00 -+// 18103 䚷 ; -+,0x00,0x00,0x04,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x13,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x20,0x20,0x44,0x42,0x05,0x00,0x20,0x20,0x02,0x02,0x00,0x04,0x0c,0x00 -+// 18104 䚸 ; -+,0x00,0x00,0x04,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x13,0x11,0x11,0x13,0x10,0x00,0x00,0x10,0x10,0x20,0x20,0x46,0x80,0x24,0x24,0x24,0x24,0x04,0x44,0x44,0x04,0x00 -+// 18105 䚹 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x03,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x49,0x5a,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x47,0x00 -+// 18106 䚺 ; -+,0x00,0x00,0x04,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x13,0x11,0x11,0x13,0x00,0x00,0x00,0x00,0x20,0x20,0x27,0x44,0x44,0x04,0x28,0x28,0x18,0x10,0x18,0x0c,0x07,0x00 -+// 18107 䚻 ; -+,0x00,0x00,0x01,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x80,0x84,0x08,0x30,0xc0,0x00,0x42,0x00,0x08,0x08,0x00,0x08,0x08,0x08,0x00 -+// 18108 䚼 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x00,0x00 -+// 18109 䚽 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x0c,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 18110 䚾 ; -+,0x00,0x00,0x04,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x0e,0x10,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x02,0x00 -+// 18111 䚿 ; -+,0x00,0x00,0x04,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x10,0x30,0x20,0x22,0x42,0x10,0x10,0x10,0x10,0x18,0x00,0x24,0x42,0x01,0x00 -+// 18112 䛀 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x13,0x10,0x10,0x12,0x01,0x00,0x00,0x00,0x06,0x20,0x20,0x20,0x22,0x22,0x02,0x44,0x44,0x48,0x0c,0x96,0x03,0x00 -+// 18113 䛁 ; -+,0x00,0x00,0x04,0x01,0x00,0x03,0x00,0x02,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x26,0x00,0x00,0x02,0x66,0x00,0x00,0x67,0x00,0x00,0x00,0x04,0x04,0x00 -+// 18114 䛂 ; -+,0x00,0x00,0x04,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x14,0x24,0x24,0x24,0x24,0x25,0x24,0x24,0x24,0x04,0x44,0x04,0x04,0x00 -+// 18115 䛃 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x03,0x00,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x03,0x20,0x20,0x20,0x20,0x00,0x40,0x01,0x07,0x00 -+// 18116 䛄 ; -+,0x00,0x00,0x08,0x0a,0x00,0x04,0x00,0x04,0x00,0x00,0x02,0x00,0x00,0x14,0x00,0x00,0x00,0x00,0x40,0x00,0xb8,0xa8,0x28,0xa8,0x68,0x0a,0x4a,0x48,0x88,0x09,0x0f,0x00 -+// 18117 䛅 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x13,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x5a,0x48,0x48,0x5a,0x08,0x08,0x08,0x08,0x08,0x00 -+// 18118 䛆 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x08,0x08,0x08,0x08,0x49,0x48,0x48,0x48,0x4a,0x48,0x48,0x48,0x42,0x40,0x00 -+// 18119 䛇 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x24,0x24,0x04,0x44,0x44,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18120 䛈 ; -+,0x00,0x00,0x04,0x05,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x20,0x20,0x52,0x10,0x10,0x10,0x18,0x10,0x10,0x24,0x04,0x42,0x01,0x00 -+// 18121 䛉 ; -+,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x42,0x08,0x08,0x49,0x08,0x08,0x08,0x04,0x67,0xc3,0x00 -+// 18122 䛊 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x13,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x30,0x20,0x42,0x01,0x01,0x00 -+// 18123 䛋 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x01,0x00,0x00,0x00,0x02,0x02,0x0a,0x48,0x48,0x4a,0x4a,0x0c,0x0c,0x88,0x94,0x86,0x02,0x00 -+// 18124 䛌 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x20,0x22,0x02,0x42,0x2a,0x0a,0x0a,0x2a,0x02,0x04,0x00,0x01,0x3f,0x00 -+// 18125 䛍 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x20,0x28,0x2a,0x2a,0x2a,0x2a,0xa8,0xa8,0xa9,0x29,0x08,0x4a,0x0a,0x08,0x00 -+// 18126 䛎 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x01,0x00,0x00,0x00,0x10,0x00,0x43,0x80,0x08,0x28,0x28,0x08,0x40,0x44,0x04,0x82,0x03,0x00 -+// 18127 䛏 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x11,0x10,0x10,0x13,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x40,0x40,0x52,0x54,0x58,0x10,0x90,0x91,0x1f,0x00 -+// 18128 䛐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x02,0x22,0x22,0x22,0x04,0xc2,0x08,0x08,0x00,0x08,0x08,0x08,0x00 -+// 18129 䛑 ; -+,0x00,0x00,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x02,0x8a,0x0c,0x14,0x14,0x10,0x58,0x99,0x11,0x10,0x30,0x10,0x1e,0x00 -+// 18130 䛒 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x30,0x20,0x02,0x00,0x8c,0x4a,0x00,0x00,0x0c,0x00,0x08,0x08,0x08,0x00 -+// 18131 䛓 ; -+,0x00,0x02,0x12,0x12,0x12,0x12,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x40,0x08,0x0c,0x00,0x40,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x00 -+// 18132 䛔 ; -+,0x00,0x00,0x04,0x05,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18133 䛕 ; -+,0x00,0x00,0x04,0x05,0x00,0x03,0x00,0x03,0x00,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x10,0x10,0x52,0x52,0x52,0x52,0x52,0x10,0x10,0x10,0x20,0x58,0x07,0x00 -+// 18134 䛖 ; -+,0x00,0x00,0x04,0x05,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x10,0x10,0x12,0x12,0x12,0x52,0x12,0x12,0x90,0x10,0x0c,0x18,0x05,0x03,0x01 -+// 18135 䛗 ; -+,0x00,0x00,0x11,0x14,0x14,0x14,0x15,0x11,0x11,0x11,0x15,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x10,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x24,0x04,0x00 -+// 18136 䛘 ; -+,0x00,0x00,0x08,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x00,0x00,0x00,0x42,0x4c,0xc0,0xc0,0x40,0x40,0x4d,0x40,0x40,0x40,0x40,0x40,0x41,0x00 -+// 18137 䛙 ; -+,0x00,0x00,0x08,0x0a,0x00,0x04,0x00,0x00,0x00,0x00,0x26,0x22,0x22,0x26,0x22,0x00,0x00,0x48,0x48,0x08,0x88,0x8d,0x8c,0x8c,0x9c,0x9a,0xaa,0x89,0xc8,0x88,0x88,0x00 -+// 18138 䛚 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x92,0x12,0x12,0x22,0x04,0x80,0x02,0x08,0x08,0x00,0x08,0x08,0x08,0x00 -+// 18139 䛛 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x42,0x00,0x00 -+// 18140 䛜 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x10,0x63,0x40,0x44,0x40,0x48,0x48,0x48,0x44,0x44,0x40,0x42,0x40,0x00 -+// 18141 䛝 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x02,0x10,0x10,0x34,0x10,0x00,0x03,0x10,0x10,0x12,0x12,0x12,0xd2,0x00 -+// 18142 䛞 ; -+,0x00,0x00,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x02,0x10,0x10,0x18,0x10,0x10,0x10,0x00 -+// 18143 䛟 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x50,0x54,0x76,0x30,0x20,0x28,0x40,0x84,0x03,0x00 -+// 18144 䛠 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x04,0x24,0x20,0x20,0x02,0x00 -+// 18145 䛡 ; -+,0x00,0x08,0x04,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x1c,0x48,0x48,0x48,0x40,0x44,0x43,0x00,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18146 䛢 ; -+,0x00,0x00,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x04,0x10,0x10,0x12,0x30,0x54,0x13,0x00,0x64,0x44,0x44,0x44,0x05,0x06,0x00 -+// 18147 䛣 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x10,0x12,0x12,0x12,0x52,0x12,0x42,0x00,0x20,0x20,0x02,0x02,0x02,0x0c,0x00 -+// 18148 䛤 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x46,0x44,0x44,0x44,0x44,0x00,0x00,0x4a,0x40,0x40,0x80,0x10,0x0f,0x00 -+// 18149 䛥 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x04,0x08,0x18,0x24,0x10,0x21,0x20,0x48,0xda,0x40,0x40,0x40,0x42,0x00,0x00 -+// 18150 䛦 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x24,0x02,0x58,0x10,0x20,0x24,0x42,0x05,0x04,0x04,0x04,0x04,0x04,0x00 -+// 18151 䛧 ; -+,0x00,0x00,0x08,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x08,0x8a,0xaa,0x98,0x88,0x98,0x98,0x9a,0x8a,0x88,0x88,0x88,0x81,0x00 -+// 18152 䛨 ; -+,0x00,0x08,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x10,0x02,0x04,0x44,0x28,0x28,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 18153 䛩 ; -+,0x00,0x00,0x08,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x26,0x22,0x22,0x26,0x20,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0xa2,0x80,0x80,0x82,0x28,0x28,0x28,0x28,0x29,0x00 -+// 18154 䛪 ; -+,0x00,0x00,0x04,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x10,0x08,0x01,0x80,0x22,0x43,0x04,0x04,0x00,0x80,0x02,0x02,0x02,0x0c,0x00 -+// 18155 䛫 ; -+,0x00,0x08,0x08,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x22,0x00,0x00,0x00,0x42,0x40,0x40,0x40,0x40,0x40,0x50,0x42,0x44,0x48,0x4c,0x66,0x43,0x00 -+// 18156 䛬 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x20,0x20,0x41,0x41,0x21,0x59,0x11,0x17,0x10,0x54,0x56,0x06,0x02,0x06,0x00 -+// 18157 䛭 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x08,0x00,0x18,0x00,0x19,0x00,0x24,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 18158 䛮 ; -+,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x04,0x44,0x54,0x56,0x15,0x24,0x34,0x0e,0x02,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18159 䛯 ; -+,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x88,0x8b,0x88,0x88,0xaa,0xa2,0x22,0x22,0x22,0x00 -+// 18160 䛰 ; -+,0x00,0x00,0x04,0x05,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x48,0x4a,0x58,0x48,0x48,0x48,0x4f,0x00 -+// 18161 䛱 ; -+,0x00,0x00,0x08,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x22,0x00,0x00,0x00,0x00,0x10,0x52,0x42,0x42,0x52,0x00,0x00,0x28,0x09,0x81,0x22,0x3e,0x00 -+// 18162 䛲 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x02,0x00,0x00,0x10,0x00,0x42,0x42,0x42,0x42,0x52,0x10,0x11,0x11,0x11,0x11,0x93,0x10,0x00 -+// 18163 䛳 ; -+,0x00,0x08,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x10,0x10,0x32,0x20,0x00,0x54,0xd7,0x54,0x54,0x54,0x54,0x10,0x11,0x1f,0x00 -+// 18164 䛴 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x10,0x10,0x10,0x24,0x00,0x03,0x00,0x58,0x40,0x40,0x50,0x00,0x0c,0x00 -+// 18165 䛵 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x0e,0x00,0x42,0x00,0x05,0x81,0x00,0x04,0x04,0x08,0x10,0x28,0x07,0x00 -+// 18166 䛶 ; -+,0x00,0x08,0x08,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x32,0x02,0x02,0x12,0x22,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x10,0x00,0x10,0x38,0x30,0x54,0x13,0x10,0x00 -+// 18167 䛷 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x20,0x00,0x00,0x00,0x10,0x13,0x82,0x40,0x4a,0xba,0xaa,0xaa,0x4a,0x4a,0x08,0x09,0x0f,0x00 -+// 18168 䛸 ; -+,0x00,0x00,0x08,0x02,0x00,0x00,0x00,0x06,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x08,0x83,0x80,0x88,0x8a,0x88,0x88,0x88,0xa2,0xa2,0x22,0x22,0x22,0x00 -+// 18169 䛹 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x20,0x20,0x04,0x48,0x08,0x19,0x10,0x42,0x30,0x48,0x18,0x4a,0x09,0x10,0x00 -+// 18170 䛺 ; -+,0x00,0x00,0x08,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x52,0x12,0x52,0x12,0x52,0x20,0x44,0x03,0x24,0x20,0x00,0x40,0x04,0x00 -+// 18171 䛻 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x0c,0x40,0x08,0x08,0x08,0x2a,0x22,0xa2,0xa2,0xa2,0xa2,0x22,0x22,0x00 -+// 18172 䛼 ; -+,0x00,0x08,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x20,0x42,0x00,0x42,0x00,0x00,0x02,0x00,0x10,0x10,0x10,0x10,0x13,0x00 -+// 18173 䛽 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x1c,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x72,0x12,0x12,0x52,0x82,0x00 -+// 18174 䛾 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x4c,0x00,0x62,0x10,0x50,0x92,0x11,0x00 -+// 18175 䛿 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x00,0x83,0xa0,0x88,0x90,0x90,0x90,0x82,0x00 -+// 18176 䜀 ; -+,0x00,0x00,0x08,0x0c,0x00,0x04,0x00,0x04,0x00,0x00,0x34,0x24,0x24,0x34,0x20,0x00,0x00,0x00,0x25,0xa5,0xa5,0xa5,0x21,0x63,0x00,0x10,0x10,0x10,0x10,0x10,0x93,0x00 -+// 18177 䜁 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x08,0x0a,0x08,0x0a,0x08,0x08,0x08,0x00,0x80,0x10,0x10,0x28,0x24,0x03,0x00 -+// 18178 䜂 ; -+,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x10,0x00,0x42,0x42,0x02,0x42,0x10,0x31,0x20,0x54,0x13,0x10,0x10,0x10,0x00 -+// 18179 䜃 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x40,0x48,0x4a,0x48,0x48,0x48,0x00,0x40,0x44,0x40,0x40,0xc3,0x00 -+// 18180 䜄 ; -+,0x00,0x00,0x08,0x06,0x00,0x02,0x00,0x00,0x00,0x00,0x12,0x12,0x13,0x13,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0xa8,0x88,0x8a,0x80,0xa8,0xaa,0x08,0x09,0x08,0x08,0x00 -+// 18181 䜅 ; -+,0x00,0x00,0x04,0x05,0x00,0x02,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x52,0x52,0x42,0x00,0x48,0x42,0x80,0xda,0x00,0x5a,0x00,0x00,0x40,0x00 -+// 18182 䜆 ; -+,0x00,0x00,0x00,0x11,0x11,0x13,0x13,0x11,0x10,0x10,0x10,0x10,0x10,0x02,0x02,0x00,0x00,0x40,0x42,0x00,0x1a,0x18,0xa4,0x02,0x00,0x22,0x08,0x08,0x00,0x08,0x08,0x00 -+// 18183 䜇 ; -+,0x00,0x00,0x08,0x02,0x00,0x00,0x00,0x02,0x00,0x02,0x02,0x02,0x02,0x12,0x00,0x00,0x00,0x10,0x01,0x00,0x20,0x52,0x30,0x04,0x62,0x30,0x22,0x4c,0x04,0x02,0x21,0x00 -+// 18184 䜈 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x48,0x40,0x00,0x08,0x42,0x42,0x5a,0x42,0x5a,0x11,0x18,0x24,0x42,0x00,0x00 -+// 18185 䜉 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x10,0x12,0x30,0x1c,0x13,0x10,0x28,0x54,0x17,0x50,0x10,0xd6,0x93,0x30,0x00 -+// 18186 䜊 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x08,0x29,0x08,0x3a,0x0a,0x2a,0x0a,0x0a,0x00,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18187 䜋 ; -+,0x00,0x00,0x04,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x08,0x4a,0x4a,0x00,0x01,0x02,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x00 -+// 18188 䜌 ; -+,0x00,0x00,0x08,0x08,0x04,0x04,0x28,0x00,0x10,0x24,0x21,0x01,0x05,0x29,0x20,0x00,0x00,0x00,0x00,0x04,0x01,0x0a,0x02,0x04,0x00,0x29,0x29,0x20,0x25,0x23,0x10,0x00 -+// 18189 䜍 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x10,0x20,0xa2,0x44,0x83,0x04,0x44,0x04,0x54,0x10,0x50,0x92,0x30,0x00 -+// 18190 䜎 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x05,0xa4,0xc4,0x11,0x00,0x81,0x90,0x10,0x32,0x22,0x22,0x42,0x0c,0x00 -+// 18191 䜏 ; -+,0x00,0x10,0x00,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x26,0x22,0x22,0x2e,0x02,0x00,0x00,0x00,0x89,0x88,0x84,0x04,0x00,0x20,0xa0,0x2a,0x2a,0xa0,0x22,0x40,0x0f,0x00 -+// 18192 䜐 ; -+,0x00,0x00,0x12,0x10,0x10,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x20,0x64,0x10,0x02,0x42,0x44,0x40,0x84,0x82,0x04,0x04,0x00,0x08,0x08,0x00 -+// 18193 䜑 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x16,0x02,0x02,0x17,0x00,0x00,0x00,0x00,0x22,0x28,0x2a,0x82,0x82,0x28,0x28,0x00,0x10,0x48,0x41,0x42,0x7e,0x00 -+// 18194 䜒 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x36,0x20,0x20,0x34,0x20,0x00,0x00,0x00,0x20,0x82,0x92,0x92,0x92,0xba,0x96,0x82,0x10,0x30,0x28,0x44,0x83,0x00 -+// 18195 䜓 ; -+,0x00,0x00,0x08,0x02,0x00,0x04,0x00,0x04,0x00,0x00,0x36,0x24,0x24,0x34,0x20,0x00,0x00,0x00,0x08,0x68,0x00,0x54,0x56,0x54,0x40,0x40,0x10,0x38,0x50,0x92,0x10,0x00 -+// 18196 䜔 ; -+,0x00,0x00,0x08,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x00,0x00,0x08,0x08,0x90,0x22,0x00,0x00,0x02,0x52,0x12,0x12,0x12,0x12,0xc2,0x3f,0x00 -+// 18197 䜕 ; -+,0x00,0x00,0x08,0x02,0x00,0x04,0x00,0x02,0x00,0x00,0x12,0x10,0x10,0x16,0x00,0x00,0x00,0x00,0x20,0x2c,0x00,0x92,0x92,0x92,0x92,0x10,0x91,0x11,0x17,0x41,0x03,0x00 -+// 18198 䜖 ; -+,0x00,0x00,0x08,0x02,0x00,0x00,0x00,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00,0x28,0x28,0xaa,0xaa,0xaa,0x00,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x00 -+// 18199 䜗 ; -+,0x00,0x00,0x08,0x02,0x00,0x00,0x00,0x06,0x00,0x00,0x16,0x00,0x00,0x15,0x00,0x00,0x00,0x08,0x0a,0x88,0x88,0x88,0xda,0xd4,0x54,0x00,0x03,0x10,0x42,0x40,0x7c,0x00 -+// 18200 䜘 ; -+,0x00,0x00,0x08,0x04,0x00,0x04,0x00,0x05,0x03,0x01,0x15,0x05,0x04,0x14,0x00,0x00,0x00,0x00,0xa4,0xb4,0xa0,0x8b,0xa2,0x22,0x62,0x62,0x64,0x64,0x26,0x2b,0x41,0x00 -+// 18201 䜙 ; -+,0x00,0x08,0x08,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x02,0x02,0x02,0x12,0x01,0x00,0x00,0x00,0x42,0x42,0x02,0x02,0x20,0x44,0xab,0x40,0x8c,0x11,0x00,0x21,0x21,0x00 -+// 18202 䜚 ; -+,0x00,0x00,0x08,0x0a,0x00,0x04,0x00,0x04,0x00,0x00,0x14,0x14,0x14,0x14,0x01,0x00,0x00,0x00,0x01,0x94,0x94,0x14,0x08,0x08,0xaa,0x88,0xa8,0x8a,0x88,0x88,0x32,0x00 -+// 18203 䜛 ; -+,0x00,0x00,0x08,0x0a,0x00,0x02,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x16,0x00,0x00,0x00,0x20,0x48,0x82,0x12,0x1a,0x28,0x0f,0x20,0x48,0x92,0x92,0xb8,0x28,0x0f,0x00 -+// 18204 䜜 ; -+,0x00,0x00,0x08,0x0a,0x00,0x05,0x00,0x04,0x00,0x00,0x12,0x02,0x02,0x16,0x00,0x00,0x00,0x10,0x12,0x10,0x81,0x00,0x50,0xa2,0x00,0x47,0x44,0x44,0x44,0x44,0x44,0x00 -+// 18205 䜝 ; -+,0x00,0x00,0x09,0x03,0x01,0x05,0x01,0x05,0x01,0x01,0x25,0x25,0x25,0x25,0x01,0x00,0x00,0x00,0x44,0x00,0xaa,0x00,0xd9,0x00,0x00,0x44,0x00,0xee,0x00,0xd9,0x11,0x00 -+// 18206 䜞 ; -+,0x00,0x00,0x08,0x02,0x00,0x04,0x00,0x04,0x00,0x00,0x02,0x00,0x00,0x14,0x01,0x00,0x00,0x10,0x10,0x00,0x09,0xc4,0x94,0x55,0x54,0x02,0x42,0x02,0x82,0x82,0x02,0x00 -+// 18207 䜟 ; -+,0x00,0x08,0x08,0x02,0x00,0x04,0x00,0x04,0x00,0x00,0x04,0x04,0x04,0x15,0x00,0x00,0x00,0x00,0x44,0x52,0x40,0x49,0x00,0x20,0xa6,0xb6,0x26,0xa4,0x24,0x8b,0x01,0x00 -+// 18208 䜠 ; -+,0x00,0x00,0x08,0x02,0x00,0x04,0x00,0x02,0x00,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x00,0x21,0x88,0x99,0xaa,0x2a,0x22,0x82,0x82,0x82,0x82,0x82,0x82,0x40,0x81,0x00 -+// 18209 䜡 ; -+,0x00,0x00,0x08,0x0a,0x00,0x04,0x00,0x05,0x00,0x00,0x16,0x00,0x00,0x16,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x45,0x00,0x02,0xa5,0x40,0x44,0x88,0x10,0x4e,0x00 -+// 18210 䜢 ; -+,0x00,0x00,0x08,0x0a,0x00,0x06,0x00,0x04,0x00,0x00,0x34,0x24,0x24,0x35,0x00,0x00,0x00,0x10,0x10,0x92,0x14,0x14,0x12,0x10,0xaa,0xaa,0xaa,0x00,0x51,0x41,0x7c,0x00 -+// 18211 䜣 ; -+,0x00,0x00,0x08,0x04,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x08,0x0c,0x0d,0x00,0x00,0x00,0x00,0x0e,0x40,0x40,0x40,0x49,0x48,0x48,0x48,0x88,0x88,0x88,0x08,0x08,0x00 -+// 18212 䜤 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x40,0x48,0x48,0x4a,0x48,0x48,0x48,0x48,0x49,0x00,0x40,0xc4,0x02,0x00,0x00 -+// 18213 䜥 ; -+,0x00,0x00,0x10,0x10,0x01,0x01,0x1a,0x02,0x00,0x00,0x00,0x01,0x09,0x10,0x00,0x00,0x00,0x00,0x82,0xa2,0x22,0x22,0x22,0xa2,0xa2,0xa2,0x00,0x00,0x80,0x60,0x1e,0x00 -+// 18214 䜦 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x00,0x00,0x48,0x48,0x08,0x00,0x82,0x02,0x8a,0x8a,0x8a,0x8a,0x8a,0x02,0x0c,0x00 -+// 18215 䜧 ; -+,0x00,0x00,0x10,0x08,0x02,0x01,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xa5,0xa5,0xb1,0x39,0x09,0x52,0x00,0x10,0x90,0x90,0x90,0x90,0x91,0x00 -+// 18216 䜨 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x0a,0x00,0x00,0x00,0x10,0x10,0x92,0x92,0x90,0x10,0x92,0x12,0x12,0x00,0x12,0x11,0x00,0x7c,0x00 -+// 18217 䜩 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x0c,0x09,0x03,0x00,0x00,0x48,0x48,0x48,0x48,0x00,0x84,0x86,0x84,0x84,0xb5,0x00,0x00,0x4a,0x08,0x00 -+// 18218 䜪 ; -+,0x00,0x00,0x09,0x10,0x00,0x04,0x08,0x01,0x00,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x10,0x80,0x00,0x34,0x04,0x04,0x24,0x24,0x24,0x04,0x44,0x05,0x07,0x00 -+// 18219 䜫 ; -+,0x00,0x00,0x09,0x10,0x00,0x04,0x08,0x01,0x00,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x00,0x82,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 18220 䜬 ; -+,0x00,0x00,0x09,0x11,0x04,0x04,0x08,0x01,0x00,0x11,0x11,0x11,0x11,0x13,0x10,0x00,0x00,0x00,0x08,0x88,0x08,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x42,0x42,0x00 -+// 18221 䜭 ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x06,0x08,0x01,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xc4,0x80,0x82,0x1a,0x00,0x08,0x84,0x10,0x0e,0x08,0x08,0x08,0x08,0x00 -+// 18222 䜮 ; -+,0x00,0x00,0x09,0x11,0x00,0x04,0x0a,0x01,0x00,0x13,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x08,0x08,0x41,0x00,0x20,0x3a,0x40,0x00,0x19,0x00,0x00,0x00,0x00,0x00 -+// 18223 䜯 ; -+,0x00,0x00,0x08,0x11,0x00,0x04,0x0a,0x01,0x00,0x12,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x20,0x20,0x00,0x41,0x11,0x15,0x51,0x15,0x31,0x18,0x14,0x10,0x12,0x06,0x00 -+// 18224 䜰 ; -+,0x00,0x00,0x08,0x11,0x04,0x04,0x0a,0x01,0x00,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x10,0x00,0x44,0x44,0x44,0x44,0x10,0x31,0x20,0x54,0x13,0x10,0x10,0x10,0x00 -+// 18225 䜱 ; -+,0x00,0x00,0x09,0x11,0x04,0x04,0x0a,0x01,0x00,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x01,0x81,0x81,0x80,0x02,0x06,0x18,0x18,0x47,0x00 -+// 18226 䜲 ; -+,0x00,0x00,0x02,0x11,0x04,0x0c,0x0a,0x11,0x00,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x54,0x00,0x00,0x82,0x8a,0x8a,0x02,0x00,0x94,0x90,0x92,0x92,0x91,0x00 -+// 18227 䜳 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x00,0x08,0x08,0x08,0x08,0x10,0x21,0x00,0x00,0x00,0x00,0x00,0x00 -+// 18228 䜴 ; -+,0x00,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0x01,0x0a,0x02,0x1c,0x00,0x00,0x00,0x10,0x90,0x10,0x12,0x10,0x10,0x06,0x04,0x04,0x28,0x18,0x18,0x2c,0x03,0x00 -+// 18229 䜵 ; -+,0x00,0x00,0x01,0x00,0x00,0x13,0x10,0x10,0x12,0x00,0x02,0x0a,0x02,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x53,0x40,0x40,0x52,0x42,0x00,0x04,0x98,0x88,0x04,0x03,0x00 -+// 18230 䜶 ; -+,0x00,0x00,0x01,0x00,0x00,0x13,0x10,0x10,0x12,0x00,0x02,0x0a,0x02,0x18,0x00,0x00,0x00,0x00,0x22,0x24,0x60,0x18,0x18,0x07,0x10,0x10,0x50,0x50,0x10,0x10,0x10,0x00 -+// 18231 䜷 ; -+,0x00,0x00,0x01,0x00,0x00,0x13,0x10,0x10,0x13,0x00,0x02,0x0a,0x02,0x18,0x00,0x00,0x00,0x00,0x06,0x00,0x04,0x00,0x00,0x01,0x80,0x04,0x04,0x28,0x10,0x38,0x47,0x00 -+// 18232 䜸 ; -+,0x00,0x00,0x01,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x02,0x08,0x00,0x38,0x00,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x44,0x48,0x0a,0x08,0x08,0x98,0x88,0x09,0x0f,0x00 -+// 18233 䜹 ; -+,0x00,0x00,0x01,0x00,0x00,0x13,0x10,0x10,0x12,0x00,0x02,0x0a,0x02,0x18,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x12,0x52,0x52,0x5a,0x58,0x38,0x34,0x52,0x93,0x10,0x00 -+// 18234 䜺 ; -+,0x00,0x00,0x01,0x00,0x00,0x13,0x11,0x11,0x13,0x00,0x02,0x0a,0x02,0x18,0x00,0x00,0x00,0x00,0x20,0x20,0x28,0x20,0x20,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18235 䜻 ; -+,0x00,0x00,0x01,0x00,0x00,0x13,0x10,0x10,0x12,0x00,0x02,0x0a,0x02,0x38,0x00,0x00,0x00,0x00,0x06,0x04,0x24,0x04,0x24,0x00,0x10,0x10,0x52,0x50,0x90,0x30,0x0f,0x00 -+// 18236 䜼 ; -+,0x00,0x00,0x00,0x02,0x06,0x02,0x02,0x02,0x00,0x00,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x90,0x22,0xe4,0x00,0x18,0x06,0x04,0x00,0x08,0x08,0x00,0x20,0x22,0x00 -+// 18237 䜽 ; -+,0x00,0x00,0x01,0x00,0x02,0x12,0x12,0x12,0x12,0x00,0x12,0x08,0x04,0x38,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x03,0x00,0xb2,0x82,0xa2,0x82,0xa2,0x8a,0x82,0xa6,0x00 -+// 18238 䜾 ; -+,0x00,0x00,0x01,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x12,0x0a,0x00,0x18,0x00,0x00,0x00,0x10,0x10,0x02,0x04,0x24,0x20,0x01,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18239 䜿 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x10,0x10,0x33,0x20,0x08,0x04,0x00,0x00,0x00,0x08,0x08,0x00,0x10,0x23,0x00 -+// 18240 䝀 ; -+,0x00,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x02,0x00,0x10,0x14,0x04,0x38,0x00,0x00,0x00,0x00,0x81,0x81,0xa1,0xb9,0xca,0x02,0x00,0x92,0x82,0x92,0x82,0x92,0x82,0x00 -+// 18241 䝁 ; -+,0x00,0x02,0x02,0x0a,0x04,0x05,0x00,0x00,0x20,0x00,0x04,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x82,0x38,0x10,0x96,0x20,0x03,0x0a,0x00,0x08,0x08,0x10,0x00,0x22,0x00 -+// 18242 䝂 ; -+,0x00,0x00,0x12,0x12,0x11,0x11,0x10,0x12,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x24,0x24,0x86,0x24,0x1c,0x9c,0x04,0x00,0x08,0x08,0x18,0x10,0x22,0x00 -+// 18243 䝃 ; -+,0x00,0x00,0x02,0x00,0x00,0x12,0x02,0x02,0x02,0x00,0x10,0x14,0x04,0x38,0x00,0x00,0x00,0x00,0x02,0x02,0x42,0x42,0x20,0x40,0xaa,0x00,0x2a,0x80,0x00,0xa0,0x01,0x00 -+// 18244 䝄 ; -+,0x00,0x00,0x02,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x14,0x04,0x30,0x00,0x00,0x00,0x00,0xa2,0x89,0x0a,0xfa,0x0a,0xca,0x8b,0x08,0x06,0x04,0x08,0x18,0x07,0x00 -+// 18245 䝅 ; -+,0x00,0x00,0x06,0x04,0x08,0x05,0x06,0x0a,0x12,0x06,0x0a,0x12,0x02,0x02,0x0e,0x00,0x00,0x00,0x88,0x08,0x08,0x08,0x0a,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x00,0x00 -+// 18246 䝆 ; -+,0x00,0x02,0x02,0x04,0x09,0x02,0x00,0x00,0x01,0x02,0x01,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x02,0x92,0x20,0x44,0x0c,0x0a,0x80,0x08,0xf0,0x60,0xa4,0x27,0xc0,0x00 -+// 18247 䝇 ; -+,0x00,0x00,0x08,0x09,0x11,0x00,0x0a,0x0a,0x0a,0x0a,0x02,0x12,0x12,0x12,0x01,0x00,0x00,0x00,0x02,0x10,0x20,0x42,0x18,0x28,0x1c,0x2a,0x4a,0x08,0x10,0x01,0xff,0x00 -+// 18248 䝈 ; -+,0x00,0x00,0x05,0x04,0x08,0x01,0x04,0x0c,0x03,0x06,0x0a,0x02,0x02,0x06,0x0c,0x00,0x00,0x00,0x0c,0x40,0x40,0x40,0x40,0x52,0x52,0xd2,0x52,0x54,0x10,0x91,0x1f,0x00 -+// 18249 䝉 ; -+,0x00,0x00,0x01,0x05,0x01,0x00,0x10,0x01,0x01,0x04,0x01,0x02,0x01,0x02,0x00,0x00,0x00,0x20,0x24,0x28,0x20,0x03,0x02,0x80,0x00,0x90,0x40,0x50,0x88,0x04,0xc2,0x80 -+// 18250 䝊 ; -+,0x00,0x00,0x05,0x04,0x08,0x09,0x04,0x0c,0x06,0x07,0x0a,0x02,0x02,0x04,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x14,0x14,0x14,0x14,0x14,0x50,0x50,0x90,0x30,0x0e,0x00 -+// 18251 䝋 ; -+,0x00,0x00,0x05,0x08,0x08,0x09,0x04,0x0c,0x16,0x07,0x0a,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x10,0x00,0x42,0x00,0x04,0x00,0x03,0x00,0x40,0x42,0x81,0x11,0x10,0x00 -+// 18252 䝌 ; -+,0x00,0x00,0x06,0x08,0x10,0x0a,0x0c,0x0c,0x06,0x05,0x10,0x00,0x04,0x04,0x08,0x00,0x00,0x00,0x12,0x02,0x26,0x24,0x02,0x00,0x22,0x22,0x42,0x4c,0x64,0xac,0x03,0x00 -+// 18253 䝍 ; -+,0x00,0x00,0x05,0x04,0x08,0x01,0x04,0x0c,0x12,0x07,0x0a,0x12,0x02,0x04,0x04,0x00,0x00,0x00,0x01,0x80,0x02,0x10,0x00,0x52,0x42,0x52,0x52,0x00,0x19,0x00,0x00,0x00 -+// 18254 䝎 ; -+,0x00,0x00,0x05,0x08,0x00,0x0a,0x0c,0x0c,0x06,0x05,0x08,0x00,0x04,0x04,0x08,0x00,0x00,0x00,0x52,0x52,0x52,0x00,0x02,0x10,0x02,0xaa,0x2a,0x2a,0x2a,0x2a,0x82,0x00 -+// 18255 䝏 ; -+,0x00,0x00,0x06,0x08,0x08,0x0a,0x0c,0x0c,0x04,0x07,0x08,0x00,0x04,0x04,0x08,0x00,0x00,0x10,0x12,0x12,0xd2,0x12,0x10,0x92,0x92,0xa2,0x20,0x64,0x48,0x1c,0x42,0x00 -+// 18256 䝐 ; -+,0x00,0x00,0x06,0x08,0x00,0x12,0x08,0x18,0x04,0x0d,0x14,0x04,0x04,0x0c,0x08,0x00,0x00,0x00,0x28,0x08,0x00,0x04,0x05,0x00,0x32,0x30,0x52,0x12,0x12,0x10,0x12,0x00 -+// 18257 䝑 ; -+,0x00,0x00,0x05,0x08,0x08,0x0a,0x04,0x0c,0x06,0x07,0x0a,0x02,0x02,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x24,0x20,0x00,0x42,0x52,0x52,0x52,0x50,0x12,0x10,0x11,0x00 -+// 18258 䝒 ; -+,0x00,0x00,0x0a,0x08,0x10,0x0a,0x0c,0x14,0x06,0x05,0x10,0x04,0x04,0x0c,0x08,0x00,0x00,0x00,0x10,0x02,0x02,0x06,0x12,0x80,0x18,0x10,0x54,0x38,0x54,0x13,0x10,0x00 -+// 18259 䝓 ; -+,0x00,0x00,0x04,0x08,0x00,0x01,0x00,0x0c,0x16,0x05,0x08,0x00,0x00,0x04,0x08,0x00,0x00,0x42,0x10,0x10,0x4a,0x02,0x8a,0x9a,0x82,0x00,0x10,0x10,0x12,0x12,0xd1,0x00 -+// 18260 䝔 ; -+,0x00,0x00,0x0c,0x08,0x10,0x09,0x0c,0x1c,0x06,0x05,0x0a,0x02,0x04,0x04,0x08,0x00,0x00,0x20,0x25,0x24,0x20,0x2a,0x2a,0x00,0x48,0x42,0xc8,0x40,0x5a,0x40,0x40,0x00 -+// 18261 䝕 ; -+,0x00,0x00,0x04,0x08,0x10,0x02,0x08,0x0c,0x06,0x05,0x0c,0x04,0x04,0x05,0x08,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x04,0x00,0xaa,0xaa,0xaa,0xaa,0xab,0xa2,0x22,0x00 -+// 18262 䝖 ; -+,0x00,0x02,0x04,0x10,0x01,0x0a,0x0c,0x04,0x06,0x02,0x07,0x09,0x01,0x02,0x0e,0x00,0x00,0x00,0x0c,0x50,0x40,0x40,0x44,0x44,0x40,0x40,0x42,0x42,0x02,0x03,0x10,0x00 -+// 18263 䝗 ; -+,0x00,0x02,0x04,0x10,0x03,0x02,0x04,0x04,0x06,0x02,0x07,0x09,0x01,0x02,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x18,0x38,0x20,0x04,0x44,0x02,0x03,0x00,0x00,0x00 -+// 18264 䝘 ; -+,0x00,0x02,0x04,0x12,0x03,0x0a,0x04,0x02,0x06,0x0a,0x03,0x09,0x01,0x03,0x0e,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x40,0x02,0x02,0x04,0x04,0x08,0x18,0x24,0x03,0x00 -+// 18265 䝙 ; -+,0x00,0x02,0x04,0x10,0x03,0x02,0x0c,0x04,0x06,0x0a,0x07,0x09,0x01,0x02,0x0e,0x00,0x00,0x00,0x43,0x40,0x42,0x42,0x54,0x4c,0x4c,0x4c,0x42,0x42,0x40,0x40,0x41,0x00 -+// 18266 䝚 ; -+,0x00,0x02,0x04,0x14,0x01,0x02,0x04,0x04,0x06,0x0a,0x06,0x08,0x12,0x02,0x0e,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x40,0x50,0x52,0x54,0x50,0x10,0x90,0x11,0x1f,0x00 -+// 18267 䝛 ; -+,0x00,0x02,0x04,0x14,0x11,0x02,0x08,0x04,0x06,0x12,0x06,0x0a,0x02,0x02,0x0c,0x00,0x00,0x10,0x10,0x10,0x53,0x52,0x50,0x50,0x66,0x04,0x04,0x98,0x98,0x1c,0x47,0x00 -+// 18268 䝜 ; -+,0x00,0x02,0x04,0x10,0x03,0x0a,0x0c,0x00,0x06,0x0a,0x03,0x0d,0x01,0x02,0x06,0x00,0x00,0x00,0x10,0x22,0x71,0x00,0x22,0x41,0x30,0x26,0x44,0x04,0x18,0x18,0x47,0x00 -+// 18269 䝝 ; -+,0x00,0x02,0x0c,0x14,0x13,0x04,0x00,0x06,0x0a,0x02,0x04,0x00,0x00,0x02,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x24,0x00,0x06,0x00,0x50,0x10,0x50,0x10,0x00,0x0c,0x00 -+// 18270 䝞 ; -+,0x00,0x02,0x0c,0x10,0x16,0x04,0x08,0x04,0x0c,0x02,0x06,0x0a,0x02,0x03,0x0c,0x00,0x00,0x10,0x12,0x10,0x91,0x90,0x94,0x90,0x9e,0x80,0xa4,0xa0,0x20,0x01,0x07,0x00 -+// 18271 䝟 ; -+,0x00,0x02,0x0c,0x14,0x16,0x04,0x00,0x04,0x0a,0x02,0x06,0x0a,0x02,0x02,0x0c,0x00,0x00,0x00,0x40,0x45,0x40,0x40,0x48,0x42,0x42,0x00,0x31,0x20,0x28,0x44,0x03,0x00 -+// 18272 䝠 ; -+,0x00,0x06,0x0c,0x14,0x16,0x04,0x08,0x04,0x08,0x02,0x06,0x02,0x02,0x02,0x0c,0x00,0x00,0x00,0x81,0x88,0x80,0xa3,0xa0,0xa2,0xa0,0xaa,0x88,0xa8,0x29,0x49,0x18,0x00 -+// 18273 䝡 ; -+,0x00,0x06,0x0c,0x14,0x16,0x04,0x18,0x04,0x0a,0x02,0x06,0x12,0x02,0x02,0x0c,0x00,0x00,0x04,0x44,0x44,0x44,0x54,0x10,0x92,0x90,0x90,0xb6,0xb6,0x92,0x90,0x92,0x00 -+// 18274 䝢 ; -+,0x00,0x02,0x04,0x14,0x11,0x06,0x0c,0x04,0x0a,0x02,0x06,0x0a,0x02,0x02,0x04,0x00,0x00,0x00,0x42,0x42,0x42,0x40,0x00,0x81,0x81,0x80,0x02,0x04,0x08,0x18,0x46,0x00 -+// 18275 䝣 ; -+,0x00,0x02,0x0c,0x14,0x12,0x04,0x08,0x04,0x0c,0x12,0x06,0x0a,0x02,0x02,0x0c,0x00,0x00,0x00,0x50,0x10,0x92,0x12,0x92,0x90,0x90,0x10,0x30,0x30,0x54,0x92,0x11,0x00 -+// 18276 䝤 ; -+,0x00,0x00,0x0c,0x14,0x12,0x04,0x08,0x04,0x0c,0x02,0x06,0x0a,0x02,0x02,0x0c,0x00,0x00,0x00,0x10,0x30,0x22,0x64,0x44,0xc7,0x44,0x44,0x44,0x10,0x94,0x12,0x30,0x00 -+// 18277 䝥 ; -+,0x00,0x02,0x0c,0x14,0x13,0x04,0x08,0x04,0x0a,0x02,0x06,0x0a,0x02,0x02,0x0c,0x00,0x00,0x10,0x00,0x42,0x42,0x02,0x42,0x02,0x12,0x12,0x10,0x52,0x11,0x10,0x10,0x00 -+// 18278 䝦 ; -+,0x00,0x04,0x08,0x14,0x13,0x04,0x08,0x04,0x0a,0x02,0x06,0x02,0x02,0x02,0x0c,0x00,0x00,0x00,0x00,0x6a,0x0a,0x0a,0x6b,0x00,0x10,0x12,0x50,0x10,0x50,0x13,0x10,0x00 -+// 18279 䝧 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x10,0x12,0x10,0x10,0x12,0x00,0x0a,0x11,0x00,0x00,0x00,0x10,0x10,0x20,0x22,0x42,0x02,0x12,0x12,0x02,0x12,0x42,0x02,0x02,0x0e,0x00 -+// 18280 䝨 ; -+,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x04,0x00,0x00,0x04,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x04,0x0c,0x38,0x38,0x07,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x06,0x00 -+// 18281 䝩 ; -+,0x00,0x00,0x13,0x00,0x10,0x10,0x01,0x12,0x00,0x00,0x13,0x00,0x0a,0x11,0x01,0x00,0x00,0x10,0x10,0x28,0x04,0x06,0x19,0x30,0x40,0x08,0x10,0x02,0x04,0x18,0x20,0x00 -+// 18282 䝪 ; -+,0x00,0x00,0x13,0x00,0x12,0x12,0x00,0x12,0x00,0x00,0x12,0x00,0x12,0x11,0x01,0x00,0x00,0x00,0x02,0x12,0x10,0x10,0x10,0x52,0x50,0x50,0x50,0x50,0xb0,0x98,0x07,0x00 -+// 18283 䝫 ; -+,0x00,0x00,0x13,0x01,0x01,0x01,0x01,0x11,0x01,0x01,0x11,0x00,0x0a,0x11,0x00,0x00,0x00,0x20,0x20,0x20,0x50,0x50,0x10,0x92,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x00 -+// 18284 䝬 ; -+,0x00,0x00,0x03,0x00,0x02,0x02,0x00,0x12,0x00,0x00,0x12,0x00,0x12,0x11,0x00,0x00,0x00,0x00,0x10,0x00,0x12,0x10,0x10,0x10,0x16,0x10,0x10,0x10,0x10,0x10,0x12,0x00 -+// 18285 䝭 ; -+,0x00,0x00,0x13,0x00,0x12,0x02,0x00,0x12,0x00,0x00,0x12,0x00,0x1a,0x11,0x00,0x00,0x00,0x20,0x20,0x40,0x42,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x0e,0x00 -+// 18286 䝮 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x0a,0x11,0x01,0x00,0x00,0x00,0x10,0x00,0x00,0x10,0x20,0x06,0x44,0x68,0x10,0x00,0x22,0x52,0x40,0x00 -+// 18287 䝯 ; -+,0x00,0x00,0x13,0x00,0x12,0x10,0x00,0x12,0x00,0x00,0x12,0x00,0x0a,0x11,0x01,0x00,0x00,0x00,0x20,0x22,0x40,0x00,0x00,0x02,0x32,0x42,0x02,0x14,0x00,0x01,0x3f,0x00 -+// 18288 䝰 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x0a,0x11,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x11,0x00,0x04,0x0c,0x04,0x24,0x04,0x04,0x0c,0x00 -+// 18289 䝱 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x09,0x04,0x04,0x04,0x04,0x04,0x01,0x06,0x00,0x00,0x00,0x84,0x08,0x00,0x92,0x12,0x06,0x0c,0x08,0x00,0x08,0x08,0x00,0x04,0x00 -+// 18290 䝲 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x12,0x11,0x21,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x40,0x48,0x04,0x92,0x88,0x00,0x00,0x08,0x04,0x00 -+// 18291 䝳 ; -+,0x00,0x02,0x02,0x0a,0x11,0x09,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x04,0x00,0x00,0x00,0x82,0x02,0x84,0x18,0x07,0x0c,0x00,0x08,0x08,0x00,0x08,0x00,0x04,0x00 -+// 18292 䝴 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x10,0x20,0x00,0x04,0x04,0x00,0x04,0x02,0x04,0x00,0x00,0x00,0xc0,0xc8,0x08,0x00,0x03,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x0c,0x00 -+// 18293 䝵 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x12,0x11,0x20,0x00,0x00,0x00,0x12,0x10,0x10,0x10,0x52,0x12,0x52,0x12,0x52,0x12,0x12,0x12,0x16,0x00 -+// 18294 䝶 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x12,0x11,0x20,0x00,0x00,0x00,0x10,0x01,0x00,0x00,0x42,0x42,0x42,0x18,0x20,0x60,0x01,0x01,0x10,0x00 -+// 18295 䝷 ; -+,0x00,0x08,0x08,0x12,0x06,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x04,0x00,0x00,0x00,0x82,0x02,0x62,0x02,0x80,0x04,0x04,0x04,0x04,0x04,0x00,0x08,0x06,0x00 -+// 18296 䝸 ; -+,0x00,0x00,0x13,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x1a,0x11,0x20,0x00,0x00,0x00,0x24,0x2d,0x24,0x10,0x10,0x10,0x10,0x12,0x04,0x24,0x18,0x18,0x07,0x00 -+// 18297 䝹 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x02,0x02,0x02,0x12,0x00,0x12,0x12,0x20,0x00,0x00,0x00,0x10,0x03,0x82,0x40,0x4a,0x0a,0xaa,0xaa,0x2a,0x0a,0x48,0x09,0x0f,0x00 -+// 18298 䝺 ; -+,0x00,0x00,0x00,0x03,0x02,0x02,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x04,0x00,0x00,0x00,0x00,0x24,0x08,0x18,0x26,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x00 -+// 18299 䝻 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x12,0x13,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x00,0x08,0x09,0x08,0x08,0xaa,0xa2,0xa2,0x22,0x22,0x00 -+// 18300 䝼 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x13,0x00,0x0a,0x11,0x00,0x00,0x00,0x08,0x00,0x18,0x1a,0x00,0x19,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 18301 䝽 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x12,0x12,0x02,0x12,0x00,0x0a,0x12,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x00,0x00,0x80,0x88,0x80,0x88,0x80,0x00,0x01,0x00 -+// 18302 䝾 ; -+,0x00,0x00,0x00,0x00,0x02,0x0a,0x0a,0x14,0x04,0x04,0x04,0x04,0x04,0x02,0x06,0x00,0x00,0x20,0x28,0x22,0x10,0x10,0x0e,0x0e,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x00 -+// 18303 䝿 ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x06,0x00,0x00,0x40,0x42,0x00,0x80,0x80,0x00,0x0e,0x0c,0x08,0x08,0x08,0x08,0x00,0x04,0x00 -+// 18304 䞀 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x00,0x12,0x20,0x00,0x00,0x00,0x44,0x80,0x87,0x80,0x90,0xa8,0x88,0x88,0x88,0x80,0x94,0x82,0x81,0x00 -+// 18305 䞁 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x02,0x12,0x12,0x00,0x00,0x00,0x00,0x82,0x80,0xa2,0xa2,0xa2,0xa2,0x90,0xd6,0x84,0x8c,0x86,0x80,0x80,0x00 -+// 18306 䞂 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x12,0x12,0x00,0x00,0x00,0x00,0x10,0x00,0xa2,0xa8,0xa8,0xa8,0x82,0x10,0x30,0x20,0x20,0x44,0x03,0x00 -+// 18307 䞃 ; -+,0x00,0x00,0x06,0x20,0x20,0x24,0x21,0x24,0x20,0x20,0x24,0x00,0x14,0x03,0x00,0x00,0x00,0x00,0x2c,0x08,0x89,0x22,0xb2,0x02,0x00,0xec,0x04,0x04,0x4c,0x12,0x01,0x00 -+// 18308 䞄 ; -+,0x00,0x04,0x00,0x00,0x09,0x08,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x00,0x06,0x00,0x00,0x20,0x40,0x50,0x36,0x14,0x04,0x3e,0x04,0x04,0x04,0x04,0x04,0x00,0x04,0x00 -+// 18309 䞅 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x00,0x10,0x03,0x00,0x00,0x00,0x00,0x82,0x80,0x80,0x83,0xa2,0xa4,0xa2,0x80,0x82,0xa2,0x22,0x22,0x22,0x00 -+// 18310 䞆 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x18,0x12,0x00,0x00,0x00,0x10,0x12,0x54,0x10,0x02,0x02,0x02,0x02,0x02,0x02,0x42,0x00,0x42,0x83,0x00 -+// 18311 䞇 ; -+,0x00,0x00,0x05,0x04,0x08,0x00,0x04,0x0e,0x04,0x04,0x04,0x04,0x04,0x02,0x04,0x00,0x00,0x00,0x10,0x1c,0x00,0xa4,0x34,0x03,0x0c,0x00,0x00,0x08,0x08,0x08,0x04,0x00 -+// 18312 䞈 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x12,0x03,0x00,0x00,0x00,0x04,0x18,0x04,0x50,0x00,0x00,0x44,0x02,0x02,0x81,0x81,0x8b,0x40,0x02,0x00 -+// 18313 䞉 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x10,0x12,0x00,0x00,0x00,0x00,0x54,0x72,0x20,0x20,0x40,0x86,0x04,0x44,0x44,0x04,0x44,0x40,0x42,0x00 -+// 18314 䞊 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x02,0x12,0x02,0x02,0x12,0x00,0x15,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x92,0x90,0x92,0x80,0xba,0x90,0x26,0x24,0x24,0x24,0x24,0x00 -+// 18315 䞋 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x00,0x14,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x12,0x52,0x12,0x92,0x12,0x9e,0x8c,0x24,0x14,0x84,0x07,0x00 -+// 18316 䞌 ; -+,0x00,0x00,0x11,0x11,0x11,0x15,0x15,0x15,0x15,0x15,0x11,0x08,0x0a,0x11,0x00,0x00,0x00,0x00,0x0e,0x10,0x00,0x00,0x11,0x00,0x00,0x12,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18317 䞍 ; -+,0x00,0x00,0x11,0x11,0x11,0x15,0x15,0x15,0x15,0x11,0x11,0x08,0x0a,0x11,0x00,0x00,0x00,0x00,0x00,0x18,0x12,0x10,0x19,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 18318 䞎 ; -+,0x00,0x00,0x13,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x0a,0x11,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x42,0x00,0x42,0x00,0x42,0x02,0x00 -+// 18319 䞏 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x18,0x08,0x0a,0x11,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x52,0x42,0x52,0x42,0x00,0x02,0x89,0x01,0x02,0x3e,0x00 -+// 18320 䞐 ; -+,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x18,0x18,0x08,0x02,0x11,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x00,0x46,0xc5,0x44,0x44,0x44,0x44,0x00 -+// 18321 䞑 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x10,0x00,0x08,0x08,0x10,0x02,0x00,0x00,0x00,0x00,0x88,0x08,0x08,0xc8,0x08,0x08,0x08,0x48,0x48,0x08,0x08,0x09,0x00 -+// 18322 䞒 ; -+,0x00,0x00,0x00,0x05,0x00,0x00,0x04,0x02,0x02,0x1a,0x0a,0x0a,0x02,0x12,0x06,0x00,0x00,0x00,0x43,0x40,0x40,0x42,0xc0,0x54,0x54,0x54,0xd4,0x50,0x40,0x40,0x42,0x00 -+// 18323 䞓 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x0a,0x0a,0x1a,0x2a,0x0a,0x02,0x12,0x06,0x00,0x00,0x00,0x02,0x00,0x2a,0x50,0x54,0x2a,0x00,0x02,0x80,0x80,0x00,0x00,0x01,0x00 -+// 18324 䞔 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x0a,0x0a,0x1a,0x0a,0x0a,0x02,0x12,0x06,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0xc0,0x48,0x48,0x48,0xc8,0x08,0x08,0x09,0x0f,0x00 -+// 18325 䞕 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x0a,0x0a,0x1a,0x2a,0x02,0x02,0x12,0x06,0x00,0x00,0x00,0x10,0x10,0x93,0x90,0x10,0x00,0x10,0x00,0x5a,0x4a,0x4a,0x4a,0x42,0x00 -+// 18326 䞖 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x14,0x14,0x14,0x14,0x0c,0x26,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x00,0x10,0x00,0x10,0x90,0x08,0x0a,0x06,0x00,0xfe,0x00 -+// 18327 䞗 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x14,0x14,0x14,0x14,0x0c,0x26,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x0c,0x08,0x18,0x00,0x80,0x00,0x00,0x08,0x00,0xfe,0x00 -+// 18328 䞘 ; -+,0x00,0x00,0x04,0x05,0x04,0x04,0x05,0x04,0x14,0x14,0x14,0x14,0x0c,0x26,0x01,0x00,0x00,0x00,0x20,0x20,0x22,0x40,0x00,0x0c,0x08,0x90,0x10,0x20,0x3f,0x00,0xfe,0x00 -+// 18329 䞙 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x14,0x15,0x14,0x14,0x0c,0x22,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x52,0x42,0x42,0x42,0x42,0x42,0x04,0x10,0x00,0xfe,0x00 -+// 18330 䞚 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x14,0x14,0x14,0x14,0x0c,0x26,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x06,0x04,0x98,0x08,0x14,0x00,0x00,0xfe,0x00 -+// 18331 䞛 ; -+,0x00,0x04,0x04,0x06,0x04,0x04,0x05,0x04,0x14,0x15,0x14,0x14,0x2c,0x22,0x00,0x00,0x00,0x00,0x02,0x10,0x10,0x52,0x52,0x52,0x56,0x00,0x04,0x04,0x0c,0x00,0xfe,0x00 -+// 18332 䞜 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x0c,0x26,0x01,0x00,0x00,0x00,0x00,0x08,0x10,0x10,0x10,0x30,0x12,0x10,0x10,0x10,0x10,0x00,0xfe,0x00 -+// 18333 䞝 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x14,0x16,0x14,0x14,0x0c,0x26,0x00,0x00,0x00,0x00,0x02,0x10,0x00,0x00,0x80,0x18,0x00,0x84,0x02,0x00,0x02,0x00,0xfe,0x00 -+// 18334 䞞 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x0c,0x26,0x01,0x00,0x00,0x00,0x28,0x2a,0x2a,0x2a,0x68,0x68,0x2a,0x28,0x2a,0x08,0x48,0x00,0xff,0x00 -+// 18335 䞟 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x0c,0x06,0x00,0x00,0x00,0x00,0x08,0x10,0x12,0x42,0x42,0x42,0x42,0xc2,0x42,0x42,0x42,0x00,0xff,0x00 -+// 18336 䞠 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0xff,0x00 -+// 18337 䞡 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x14,0x15,0x14,0x14,0x0c,0x26,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x24,0x00,0x00,0x24,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 18338 䞢 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x2c,0x26,0x00,0x00,0x00,0x00,0x20,0x22,0x10,0x10,0x12,0x10,0x10,0x92,0x10,0x10,0x10,0x00,0xff,0x00 -+// 18339 䞣 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x0c,0x06,0x00,0x00,0x00,0x00,0x0c,0x40,0x40,0x42,0x48,0x48,0x48,0x4a,0x08,0x08,0x08,0x00,0xff,0x00 -+// 18340 䞤 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x0c,0x06,0x00,0x00,0x00,0x00,0x20,0x20,0x42,0x02,0x2a,0x2a,0x2a,0x2a,0x0a,0x02,0x0c,0x00,0xff,0x00 -+// 18341 䞥 ; -+,0x00,0x00,0x00,0x0a,0x00,0x00,0x09,0x04,0x04,0x15,0x04,0x24,0x24,0x04,0x01,0x00,0x00,0x10,0x10,0x32,0x20,0x20,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xff,0x00 -+// 18342 䞦 ; -+,0x00,0x00,0x00,0x0a,0x00,0x00,0x09,0x04,0x04,0x15,0x04,0x24,0x0c,0x04,0x01,0x00,0x00,0x10,0x20,0x26,0x24,0x08,0x18,0x0c,0x07,0x24,0x24,0x24,0x24,0x00,0xff,0x00 -+// 18343 䞧 ; -+,0x00,0x04,0x00,0x06,0x00,0x00,0x05,0x04,0x04,0x15,0x04,0x04,0x04,0x04,0x01,0x00,0x00,0x00,0x0e,0x40,0x40,0x40,0x40,0x40,0x60,0x20,0x20,0xa0,0x24,0x00,0xfe,0x00 -+// 18344 䞨 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x05,0x04,0x14,0x15,0x04,0x04,0x24,0x04,0x01,0x00,0x00,0x00,0x10,0x14,0x10,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x00 -+// 18345 䞩 ; -+,0x00,0x04,0x00,0x05,0x00,0x00,0x05,0x04,0x04,0x15,0x14,0x04,0x24,0x04,0x01,0x00,0x00,0x00,0x10,0x10,0x24,0x43,0x04,0x00,0x04,0x00,0x00,0x00,0x24,0x00,0xff,0x00 -+// 18346 䞪 ; -+,0x00,0x00,0x00,0x0a,0x00,0x00,0x09,0x04,0x04,0x15,0x04,0x04,0x0c,0x04,0x01,0x00,0x00,0x00,0x42,0x00,0x00,0x00,0x12,0x04,0x04,0x24,0x24,0x44,0x40,0x00,0xff,0x00 -+// 18347 䞫 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x09,0x04,0x04,0x15,0x04,0x24,0x04,0x04,0x01,0x00,0x00,0x00,0x34,0x04,0x37,0x24,0x24,0x20,0x40,0x62,0xa2,0x22,0x22,0x00,0xff,0x00 -+// 18348 䞬 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x09,0x04,0x04,0x15,0x04,0x24,0x24,0x04,0x01,0x00,0x00,0x00,0x18,0x00,0x18,0x30,0x02,0x00,0x24,0x24,0x23,0x42,0x82,0x04,0xff,0x00 -+// 18349 䞭 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x09,0x04,0x04,0x15,0x04,0x24,0x24,0x04,0x01,0x00,0x00,0x10,0x10,0x00,0x62,0x00,0x22,0x12,0x30,0x44,0x08,0x1c,0x26,0x00,0xff,0x00 -+// 18350 䞮 ; -+,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x04,0x15,0x04,0x24,0x2c,0x04,0x01,0x00,0x00,0x00,0x10,0x08,0x24,0x42,0x10,0x10,0x12,0x10,0x54,0x92,0x10,0x00,0xfe,0x00 -+// 18351 䞯 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0d,0x04,0x04,0x15,0x04,0x04,0x24,0x04,0x01,0x00,0x00,0x00,0x1c,0x00,0x52,0x00,0x04,0x04,0x08,0x1a,0x00,0x00,0x10,0x00,0xfe,0x00 -+// 18352 䞰 ; -+,0x00,0x04,0x00,0x06,0x00,0x00,0x05,0x04,0x04,0x15,0x14,0x04,0x24,0x04,0x01,0x00,0x00,0x00,0x00,0x1a,0x00,0x00,0x14,0x14,0x64,0x25,0x25,0x04,0x0c,0x00,0xff,0x00 -+// 18353 䞱 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x05,0x04,0x04,0x15,0x04,0x04,0x24,0x04,0x01,0x00,0x00,0x00,0x20,0x22,0x48,0x18,0x24,0x02,0x27,0x20,0x20,0x20,0x24,0x00,0xfe,0x00 -+// 18354 䞲 ; -+,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x04,0x00,0x14,0x00,0x20,0x08,0x04,0x01,0x00,0x00,0x00,0x28,0x4a,0x48,0x4a,0x48,0x4a,0x4c,0xc8,0x4c,0x46,0x42,0x00,0xfe,0x00 -+// 18355 䞳 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x05,0x04,0x04,0x15,0x14,0x14,0x24,0x24,0x01,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x00,0x00,0x00,0x26,0x20,0x20,0x20,0x00,0xff,0x00 -+// 18356 䞴 ; -+,0x00,0x00,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x04,0x14,0x2c,0x26,0x01,0x00,0x00,0x00,0x42,0x52,0x5a,0x52,0x56,0x02,0x2a,0x22,0xaa,0x02,0x06,0x00,0xff,0x00 -+// 18357 䞵 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x09,0x04,0x04,0x15,0x04,0x04,0x2c,0x04,0x01,0x00,0x00,0x00,0x11,0x02,0x66,0x26,0x0a,0x00,0x32,0x22,0x24,0x66,0x8a,0x00,0xfe,0x00 -+// 18358 䞶 ; -+,0x00,0x04,0x04,0x06,0x04,0x04,0x05,0x04,0x14,0x15,0x04,0x04,0x24,0x04,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x20,0x20,0x55,0x04,0x0a,0x12,0x02,0x04,0xff,0x00 -+// 18359 䞷 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x0c,0x06,0x01,0x00,0x00,0x00,0x42,0x42,0x42,0x48,0x2a,0x2a,0x2a,0x88,0xaa,0x2a,0x22,0x00,0xff,0x00 -+// 18360 䞸 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x04,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x0a,0x09,0x10,0x42,0x42,0x42,0x42,0x00,0xfe,0x00 -+// 18361 䞹 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x04,0x06,0x01,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x00,0x10,0x10,0x14,0x10,0x12,0x00,0xfe,0x00 -+// 18362 䞺 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x0c,0x06,0x00,0x00,0x00,0x00,0x18,0x48,0x4a,0x48,0x2a,0x22,0x20,0x20,0xa0,0x20,0x22,0x00,0xfe,0x00 -+// 18363 䞻 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x04,0x06,0x01,0x00,0x00,0x00,0x04,0x18,0x4a,0x4a,0x42,0x4a,0x42,0x12,0x12,0x22,0x06,0x00,0xff,0x00 -+// 18364 䞼 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x04,0x06,0x00,0x00,0x00,0x20,0x24,0x24,0x08,0x09,0x10,0x02,0x18,0x2a,0x11,0x00,0x08,0x00,0xff,0x00 -+// 18365 䞽 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x2c,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x51,0x04,0x28,0x10,0x22,0x00,0x42,0x11,0x10,0xff,0x00 -+// 18366 䞾 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x14,0x14,0x14,0x0c,0x04,0x01,0x00,0x00,0x00,0x18,0x0a,0x08,0x2a,0x28,0x28,0x80,0x84,0x94,0x54,0x05,0x00,0xfe,0x00 -+// 18367 䞿 ; -+,0x00,0x00,0x10,0x11,0x01,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x04,0x0e,0x00,0x00,0x00,0x40,0x42,0x20,0x20,0x28,0x20,0x00,0x10,0x84,0x82,0x80,0x08,0x80,0xfe,0x00 -+// 18368 䟀 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x24,0x22,0x00,0x00,0x00,0x04,0x20,0x02,0x10,0x12,0x10,0x22,0x20,0x02,0x00,0x00,0x01,0x00,0xfe,0x00 -+// 18369 䟁 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x2c,0x26,0x01,0x00,0x00,0x0a,0x04,0x04,0x20,0x42,0x52,0x52,0x52,0x10,0x18,0x34,0x02,0x00,0xff,0x00 -+// 18370 䟂 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x24,0x22,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x00,0x55,0x54,0x40,0x06,0x04,0x18,0x24,0x00,0xfe,0x00 -+// 18371 䟃 ; -+,0x00,0x04,0x04,0x07,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x24,0x26,0x00,0x00,0x00,0x10,0x04,0x20,0x24,0x0e,0x10,0x10,0x2f,0x10,0x08,0x24,0x18,0x00,0xfe,0x00 -+// 18372 䟄 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x04,0x15,0x14,0x14,0x04,0x26,0x00,0x00,0x00,0x00,0x1a,0x10,0x18,0x11,0x00,0x42,0x42,0x42,0x42,0x40,0x24,0x02,0xff,0x00 -+// 18373 䟅 ; -+,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x04,0x00,0x00,0x00,0x00,0x04,0x0c,0x09,0x00,0x00,0x00,0x04,0x80,0x85,0xa4,0x24,0x04,0x00,0xc8,0x02,0xc0,0x44,0x00,0xe0,0x00 -+// 18374 䟆 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0d,0x04,0x04,0x15,0x14,0x04,0x24,0x04,0x01,0x00,0x00,0x00,0x42,0x40,0x40,0x40,0x10,0x76,0x14,0x14,0x10,0x10,0x10,0x00,0xfe,0x00 -+// 18375 䟇 ; -+,0x00,0x08,0x08,0x0a,0x08,0x08,0x0a,0x00,0x00,0x14,0x20,0x20,0x28,0x04,0x01,0x00,0x00,0x00,0x50,0x10,0xfa,0x50,0xb6,0x10,0x44,0x48,0x4c,0x2c,0x06,0x00,0xfe,0x00 -+// 18376 䟈 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x00,0x00,0x16,0x00,0x00,0x28,0x04,0x01,0x00,0x00,0x00,0x4a,0x48,0x48,0x08,0x10,0x12,0x02,0x26,0x74,0x04,0xcb,0x00,0xff,0x00 -+// 18377 䟉 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x0d,0x04,0x04,0x15,0x14,0x14,0x0c,0x06,0x00,0x00,0x00,0x00,0x6a,0x0a,0x2a,0x20,0x43,0x10,0x54,0x54,0x02,0x06,0x06,0x00,0xff,0x00 -+// 18378 䟊 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x0c,0x04,0x04,0x14,0x14,0x04,0x2c,0x04,0x01,0x00,0x00,0x00,0x12,0x10,0x80,0x90,0x9e,0x82,0x90,0xaa,0x98,0x1a,0x08,0x08,0xff,0x00 -+// 18379 䟋 ; -+,0x00,0x00,0x00,0x04,0x0c,0x00,0x0d,0x04,0x04,0x15,0x14,0x14,0x04,0x04,0x01,0x00,0x00,0x20,0x2c,0x48,0xc0,0x00,0x4a,0x00,0x00,0x80,0x82,0xa2,0x22,0x00,0xff,0x00 -+// 18380 䟌 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x0a,0x00,0x00,0x16,0x10,0x00,0x28,0x04,0x01,0x00,0x00,0x08,0x08,0x4a,0x48,0x08,0xa0,0xa2,0xa6,0x84,0xa4,0xa4,0x82,0x00,0xff,0x00 -+// 18381 䟍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x04,0x04,0x14,0x14,0x04,0x24,0x04,0x00,0x00,0x00,0x10,0x46,0x44,0x44,0x40,0x10,0x01,0x20,0x00,0x10,0x20,0x04,0x04,0xff,0x00 -+// 18382 䟎 ; -+,0x00,0x00,0x00,0x0a,0x00,0x00,0x0a,0x00,0x04,0x15,0x04,0x14,0x2c,0x26,0x01,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x0b,0x52,0x42,0x42,0x42,0x40,0x22,0x00,0xff,0x00 -+// 18383 䟏 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x0a,0x00,0x00,0x16,0x10,0x00,0x28,0x04,0x01,0x00,0x00,0x10,0x12,0x29,0xee,0x2a,0x28,0x6d,0x10,0x12,0x30,0x54,0x12,0x10,0xff,0x00 -+// 18384 䟐 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x00,0x00,0x14,0x00,0x00,0x28,0x04,0x01,0x00,0x00,0x00,0x80,0x84,0x84,0xa4,0xb6,0x85,0x80,0x88,0x2a,0x28,0x28,0x00,0xff,0x00 -+// 18385 䟑 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x09,0x00,0x00,0x14,0x10,0x00,0x08,0x24,0x01,0x00,0x00,0x10,0x20,0x44,0x81,0x00,0x0e,0xce,0x00,0xaa,0xaa,0xaa,0xaa,0x02,0xff,0x00 -+// 18386 䟒 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x09,0x04,0x04,0x14,0x04,0x04,0x2c,0x04,0x01,0x00,0x00,0x00,0x2a,0x00,0xaa,0xaa,0x20,0x40,0x58,0xda,0x40,0x58,0x5a,0x00,0xff,0x00 -+// 18387 䟓 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 18388 䟔 ; -+,0x00,0x00,0x11,0x01,0x01,0x01,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0x1c,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x16,0x93,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 18389 䟕 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x14,0x14,0x04,0x28,0x28,0x10,0x10,0x28,0x06,0x03,0x00 -+// 18390 䟖 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x20,0x00,0x00,0x00,0x08,0x08,0x08,0x48,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x42,0x00 -+// 18391 䟗 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x14,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x00,0x06,0x58,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x44,0x44,0x63,0x41,0x00 -+// 18392 䟘 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x40,0x40,0x40,0x81,0x07,0x00 -+// 18393 䟙 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x16,0x10,0x10,0x10,0x16,0x38,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0xc9,0x09,0x09,0x09,0x50,0xd0,0x22,0x02,0x06,0x00 -+// 18394 䟚 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x20,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x04,0x44,0x04,0x04,0x00 -+// 18395 䟛 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x14,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x5a,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x00 -+// 18396 䟜 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x5b,0x50,0x50,0x50,0x50,0x56,0x66,0x40,0x40,0x42,0x42,0x00 -+// 18397 䟝 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x04,0x43,0x02,0x02,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 18398 䟞 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x52,0x50,0x10,0x12,0x04,0x08,0x10,0x20,0xc0,0x00 -+// 18399 䟟 ; -+,0x00,0x00,0x07,0x10,0x10,0x11,0x10,0x10,0x14,0x12,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x40,0x40,0x40,0x44,0x00,0x00,0x4a,0x40,0x40,0xa0,0x10,0x07,0x00 -+// 18400 䟠 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x14,0x14,0x14,0x14,0x14,0x18,0x20,0x00,0x00,0x00,0x08,0x0a,0x4a,0x48,0x48,0x4a,0x4a,0x48,0x4c,0x44,0x6c,0x42,0x01,0x00 -+// 18401 䟡 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x20,0x00,0x00,0x02,0x1c,0x48,0x08,0x08,0x49,0x48,0x08,0x08,0x08,0x04,0x65,0xd3,0x09,0x00 -+// 18402 䟢 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x04,0x04,0x04,0x04,0x38,0x20,0x00,0x00,0x00,0x20,0x20,0x41,0x42,0x10,0x10,0x10,0x50,0x52,0x91,0x11,0x10,0x30,0x00 -+// 18403 䟣 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x14,0x14,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x19,0x18,0x18,0x30,0x34,0x54,0x12,0x13,0x10,0x10,0x00 -+// 18404 䟤 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x20,0x00,0x00,0x00,0x12,0x0a,0x00,0x24,0x24,0x24,0x28,0x29,0xb0,0x20,0x20,0x22,0x1e,0x00 -+// 18405 䟥 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x04,0x04,0x04,0x04,0x04,0x38,0x20,0x00,0x00,0x00,0x02,0x04,0x00,0x08,0x09,0x19,0x18,0x28,0x08,0x48,0x08,0x08,0x18,0x00 -+// 18406 䟦 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x16,0x00,0x14,0x04,0x00,0x00,0x04,0x38,0x20,0x00,0x00,0x00,0x0e,0x30,0x20,0x20,0x20,0x20,0x26,0x04,0x44,0x08,0x88,0x14,0x03,0x00 -+// 18407 䟧 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x00,0x14,0x14,0x10,0x10,0x14,0x18,0x20,0x00,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x52,0x12,0x12,0x12,0x12,0x52,0x02,0x00 -+// 18408 䟨 ; -+,0x00,0x00,0x12,0x10,0x10,0x10,0x16,0x00,0x14,0x14,0x10,0x10,0x14,0x38,0x20,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x48,0x48,0x48,0x48,0x48,0x48,0x44,0x63,0x41,0x00 -+// 18409 䟩 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x14,0x14,0x14,0x14,0x14,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x19,0x10,0x10,0x20,0x00,0x42,0xc1,0x00 -+// 18410 䟪 ; -+,0x00,0x00,0x11,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x18,0x20,0x00,0x00,0x00,0x06,0x30,0x00,0x10,0x00,0x06,0x04,0x08,0x10,0x00,0x00,0x80,0x1f,0x00 -+// 18411 䟫 ; -+,0x00,0x00,0x04,0x02,0x00,0x10,0x30,0x02,0x00,0x00,0x00,0x04,0x04,0x09,0x10,0x00,0x00,0x00,0x08,0x10,0x80,0x02,0x00,0x08,0x08,0x40,0x40,0x40,0x40,0xc0,0x7e,0x00 -+// 18412 䟬 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x30,0x00,0x00,0x00,0x0e,0x40,0x40,0x40,0x40,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x00,0x00 -+// 18413 䟭 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x20,0x00,0x00,0x20,0x20,0x00,0x50,0x10,0x10,0x12,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x00 -+// 18414 䟮 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x16,0x00,0x00,0x14,0x10,0x10,0x10,0x1c,0x20,0x00,0x00,0x00,0x40,0x52,0x92,0x90,0x99,0x90,0x98,0x90,0x90,0x94,0x80,0xa2,0x81,0x00 -+// 18415 䟯 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x20,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x18,0x00,0x00,0x5a,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18416 䟰 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x16,0x00,0x14,0x14,0x10,0x10,0x14,0x1c,0x00,0x00,0x00,0x00,0x22,0x40,0x00,0x20,0x41,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x44,0x00 -+// 18417 䟱 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x04,0x14,0x14,0x14,0x14,0x1c,0x20,0x00,0x00,0x10,0x10,0x12,0x10,0x10,0x52,0x12,0x12,0x12,0x38,0x30,0x54,0x93,0x10,0x00 -+// 18418 䟲 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x01,0x00,0x00,0x00,0x10,0x02,0x10,0x20,0x00,0x62,0x00,0x28,0x48,0x48,0x48,0x89,0x07,0x00 -+// 18419 䟳 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x14,0x14,0x14,0x14,0x04,0x22,0x00,0x00,0x00,0x00,0x00,0x22,0x02,0x42,0x46,0x22,0x22,0x66,0x8a,0x02,0x22,0x00,0xff,0x00 -+// 18420 䟴 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x1e,0x00,0x10,0x14,0x10,0x10,0x10,0x19,0x20,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x60,0x20,0xa2,0xa4,0xa4,0xa6,0x33,0x20,0x00 -+// 18421 䟵 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x10,0x00,0x00,0x10,0x14,0x12,0x11,0x10,0x12,0x52,0x18,0x10,0x54,0x92,0x11,0x10,0x30,0x00 -+// 18422 䟶 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x16,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x10,0x10,0x52,0x52,0x54,0x56,0xb1,0x10,0x10,0x12,0x10,0x10,0x10,0x01,0x00 -+// 18423 䟷 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x1a,0x00,0x10,0x10,0x11,0x10,0x10,0x18,0x20,0x00,0x00,0x00,0x42,0x50,0x50,0x50,0x51,0x50,0x50,0xd0,0x50,0x50,0x60,0x60,0x80,0x00 -+// 18424 䟸 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x10,0x00,0x00,0x00,0x10,0x23,0x52,0x24,0x08,0x20,0x24,0x24,0x24,0x24,0x04,0x44,0x04,0x00 -+// 18425 䟹 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x10,0x00,0x00,0x00,0x1c,0x00,0x12,0x44,0x00,0x04,0x05,0x04,0x24,0x14,0x04,0x04,0x0c,0x00 -+// 18426 䟺 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x10,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x24,0x42,0x81,0x00 -+// 18427 䟻 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x10,0x10,0x28,0x24,0x42,0x05,0x10,0x10,0x10,0x10,0x50,0x92,0x11,0x30,0x00 -+// 18428 䟼 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x1a,0x00,0x10,0x14,0x10,0x10,0x10,0x18,0x20,0x00,0x00,0x08,0x08,0x0a,0x08,0x09,0x08,0x08,0x88,0x18,0x00,0x04,0x04,0xc3,0x03,0x00 -+// 18429 䟽 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x11,0x00,0x00,0x00,0x10,0x12,0x10,0x20,0x46,0x42,0x00,0x54,0x14,0x14,0x94,0x94,0x05,0x00 -+// 18430 䟾 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x1a,0x08,0x08,0x18,0x18,0x18,0x18,0x19,0x20,0x00,0x00,0x00,0x22,0x22,0x44,0x66,0xa9,0x00,0x22,0x22,0x42,0x44,0xa4,0x0a,0x01,0x00 -+// 18431 䟿 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x04,0x14,0x14,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x13,0x10,0x52,0x18,0x14,0x14,0x92,0x10,0x30,0x00 -+// 18432 䠀 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x1c,0x00,0x00,0x00,0x00,0x00,0x42,0x24,0x00,0x03,0x00,0x2c,0xa0,0x20,0x28,0x00,0x02,0x82,0x00 -+// 18433 䠁 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x16,0x00,0x10,0x14,0x10,0x10,0x10,0x1c,0x20,0x00,0x00,0x10,0x10,0x04,0x42,0x00,0x22,0x44,0x89,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 18434 䠂 ; -+,0x00,0x02,0x02,0x06,0x06,0x0a,0x12,0x00,0x04,0x04,0x04,0x04,0x04,0x0a,0x10,0x00,0x00,0x00,0x00,0x18,0x10,0xb4,0x42,0x00,0x08,0x08,0xc0,0x44,0x00,0x80,0xfe,0x00 -+// 18435 䠃 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x00,0x00,0x10,0x04,0x00,0x00,0x04,0x38,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0x91,0x91,0x91,0x95,0xb5,0xb7,0x93,0x91,0x91,0x93,0x00 -+// 18436 䠄 ; -+,0x00,0x00,0x02,0x12,0x12,0x12,0x10,0x00,0x10,0x00,0x00,0x00,0x00,0x38,0x20,0x00,0x00,0x00,0x28,0x28,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x00,0x40,0x42,0x00,0x00 -+// 18437 䠅 ; -+,0x00,0x00,0x02,0x12,0x12,0x12,0x14,0x00,0x14,0x14,0x10,0x10,0x14,0x38,0x20,0x00,0x00,0x00,0x83,0x80,0x98,0x80,0x80,0x90,0x98,0xa4,0x82,0x80,0x80,0x80,0x81,0x00 -+// 18438 䠆 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x00,0x00,0x00,0x00,0x42,0x40,0x40,0x40,0x40,0x41,0x40,0x42,0x56,0x58,0x48,0x66,0x40,0x00 -+// 18439 䠇 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x10,0x14,0x10,0x10,0x14,0x38,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x40,0x08,0x2a,0x2a,0x2a,0x88,0xa9,0x29,0x29,0x00,0x00 -+// 18440 䠈 ; -+,0x00,0x00,0x12,0x10,0x10,0x12,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x00,0x00,0x00,0x10,0x10,0x14,0x10,0x17,0x10,0x14,0x10,0x52,0x58,0x10,0x54,0x13,0x30,0x00 -+// 18441 䠉 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x10,0x08,0x01,0x81,0x80,0x46,0x40,0x44,0x40,0x42,0x42,0x42,0x42,0x40,0x00 -+// 18442 䠊 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x10,0x00,0x00,0x00,0x04,0x38,0x20,0x00,0x00,0x00,0x28,0x28,0x2a,0x28,0x28,0x2a,0x28,0x28,0x28,0x29,0x28,0x28,0x28,0x00 -+// 18443 䠋 ; -+,0x00,0x00,0x13,0x10,0x10,0x12,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x00,0x00,0x00,0x10,0x00,0x0a,0x02,0x1a,0x12,0x12,0x92,0x20,0x08,0x8b,0x08,0x08,0x08,0x00 -+// 18444 䠌 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x10,0x14,0x10,0x10,0x14,0x38,0x20,0x00,0x00,0x00,0x00,0x3a,0x28,0x44,0x02,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 18445 䠍 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0xa2,0xa2,0xa2,0xa2,0x80,0x80,0x82,0x82,0x82,0x84,0x84,0x8a,0x83,0x00 -+// 18446 䠎 ; -+,0x00,0x00,0x12,0x10,0x10,0x12,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x80,0x82,0x88,0x82,0xa2,0x88,0x8a,0x08,0x08,0x09,0x00 -+// 18447 䠏 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x10,0x14,0x10,0x10,0x14,0x38,0x00,0x00,0x00,0x00,0x22,0x20,0xa1,0x44,0x46,0x13,0x10,0x10,0x12,0x00,0x24,0x02,0x01,0x00 -+// 18448 䠐 ; -+,0x00,0x00,0x13,0x10,0x10,0x10,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x52,0x14,0x13,0x20,0x20,0x46,0x03,0x00 -+// 18449 䠑 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x10,0x04,0x00,0x00,0x00,0x38,0x20,0x00,0x00,0x10,0x10,0x20,0x28,0x44,0x12,0x14,0x10,0x12,0x10,0x14,0x10,0x10,0x13,0x00 -+// 18450 䠒 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x18,0x08,0x18,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x4b,0x48,0x48,0x4a,0x48,0x40,0xe0,0x2a,0x20,0x30,0xb0,0x02,0x02,0x00 -+// 18451 䠓 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x16,0x00,0x14,0x14,0x10,0x10,0x14,0x38,0x00,0x00,0x00,0x04,0x24,0x20,0x28,0x28,0x2a,0xaa,0xaa,0x8a,0x82,0x82,0x82,0x82,0x82,0x00 -+// 18452 䠔 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x00,0x14,0x14,0x10,0x10,0x14,0x38,0x00,0x00,0x00,0x04,0x44,0x28,0x0a,0x10,0x22,0x54,0x38,0x08,0x1c,0x2a,0x4a,0x09,0x30,0x00 -+// 18453 䠕 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x08,0x08,0x1a,0x08,0x08,0x08,0x0c,0x30,0x00,0x00,0x00,0x00,0x08,0x0a,0xa8,0x88,0x88,0xc9,0x10,0x10,0x38,0x50,0x54,0x13,0x10,0x00 -+// 18454 䠖 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x20,0x00,0x00,0x00,0x08,0x52,0x12,0x48,0x48,0x14,0x02,0x00,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18455 䠗 ; -+,0x00,0x00,0x12,0x10,0x10,0x12,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x00,0x00,0x00,0x00,0x00,0x46,0x40,0x44,0x40,0x40,0x44,0x00,0x14,0x30,0x28,0x44,0x83,0x00 -+// 18456 䠘 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x10,0x14,0x10,0x10,0x14,0x18,0x20,0x00,0x00,0x10,0x00,0x42,0x4a,0x5a,0x42,0x42,0x00,0x88,0xaa,0x88,0x88,0x88,0x8f,0x00 -+// 18457 䠙 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x14,0x00,0x10,0x14,0x10,0x10,0x14,0x18,0x20,0x00,0x00,0x00,0x10,0x02,0x00,0x20,0x02,0x82,0x10,0x20,0x20,0x24,0x44,0x44,0x88,0x00 -+// 18458 䠚 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x10,0x04,0x00,0x00,0x04,0x38,0x20,0x00,0x00,0x00,0x10,0x83,0x80,0x62,0x84,0x30,0x40,0x00,0x04,0x04,0x80,0x9a,0x01,0x00 -+// 18459 䠛 ; -+,0x00,0x00,0x02,0x12,0x12,0x12,0x16,0x00,0x10,0x14,0x10,0x10,0x14,0x38,0x20,0x00,0x00,0x02,0x38,0x02,0x10,0x54,0x00,0x42,0x10,0x10,0x10,0x10,0x52,0x12,0x42,0x00 -+// 18460 䠜 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x14,0x04,0x14,0x14,0x14,0x14,0x14,0x38,0x20,0x00,0x00,0x00,0x00,0x6c,0x00,0x02,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x04,0x04,0x00 -+// 18461 䠝 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x10,0x00,0x10,0x14,0x10,0x10,0x14,0x38,0x20,0x00,0x00,0x00,0x42,0x42,0x42,0x00,0x02,0x02,0x42,0x02,0x02,0x42,0x00,0x62,0x83,0x00 -+// 18462 䠞 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x00,0x10,0x10,0x10,0x11,0x1d,0x30,0x00,0x00,0x00,0x00,0x0a,0x89,0x88,0xa8,0xa8,0xa2,0xaa,0xa6,0x24,0x64,0x24,0x23,0x01,0x00 -+// 18463 䠟 ; -+,0x00,0x04,0x04,0x04,0x0a,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x04,0x08,0x10,0x00,0x00,0x10,0x10,0x94,0x04,0x34,0x88,0x03,0x01,0x08,0x08,0x40,0x48,0x40,0xff,0x00 -+// 18464 䠠 ; -+,0x00,0x00,0x07,0x04,0x01,0x00,0x18,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x2a,0x00,0x0e,0x00,0x02,0xc8,0x08,0x88,0x08,0x00,0x44,0x00,0xfe,0x00 -+// 18465 䠡 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x16,0x04,0x04,0x14,0x14,0x14,0x14,0x19,0x00,0x00,0x00,0x00,0x12,0x10,0x83,0x90,0x90,0x9e,0x80,0xa6,0xa0,0xa4,0x20,0x24,0x27,0x00 -+// 18466 䠢 ; -+,0x00,0x01,0x01,0x00,0x09,0x09,0x09,0x00,0x10,0x04,0x04,0x00,0x04,0x08,0x11,0x00,0x00,0x00,0x33,0x00,0x24,0x24,0x24,0x01,0x00,0x08,0x08,0x00,0x48,0x00,0xe6,0x00 -+// 18467 䠣 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x08,0x08,0x18,0x18,0x18,0x18,0x1c,0x30,0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0x88,0xef,0x00,0x20,0x28,0x00,0x2b,0x00,0x44,0x82,0x00 -+// 18468 䠤 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x1a,0x00,0x10,0x00,0x00,0x00,0x0c,0x30,0x00,0x00,0x00,0x00,0xaa,0xa8,0xaa,0x00,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x00 -+// 18469 䠥 ; -+,0x00,0x00,0x04,0x05,0x04,0x04,0x09,0x09,0x19,0x09,0x09,0x09,0x09,0x31,0x01,0x00,0x00,0x00,0x04,0x20,0xa9,0x4a,0x70,0x02,0xc2,0xe6,0xa4,0x04,0x06,0x0a,0x31,0x00 -+// 18470 䠦 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x1e,0x00,0x10,0x14,0x10,0x10,0x14,0x38,0x00,0x00,0x00,0x00,0x80,0xca,0x48,0x48,0x48,0xaa,0x00,0x46,0x40,0x44,0x40,0x40,0x44,0x00 -+// 18471 䠧 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x08,0x08,0x1a,0x08,0x08,0x08,0x09,0x30,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x90,0x96,0x94,0x9c,0x90,0x26,0x20,0x24,0x20,0x24,0x00 -+// 18472 䠨 ; -+,0x00,0x00,0x12,0x02,0x02,0x12,0x0a,0x00,0x10,0x10,0x10,0x10,0x14,0x38,0x00,0x00,0x00,0x20,0x64,0x44,0xc1,0x82,0x48,0x41,0x00,0x00,0x00,0x82,0xa2,0x22,0x22,0x00 -+// 18473 䠩 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x30,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x04,0x08,0x08,0x08,0x2a,0x62,0x34,0x24,0x4a,0x11,0x00 -+// 18474 䠪 ; -+,0x00,0x00,0x03,0x03,0x03,0x03,0x29,0x09,0x09,0x09,0x09,0x09,0x09,0x39,0x01,0x00,0x00,0x00,0x04,0x02,0xac,0x00,0xd9,0x00,0x04,0x44,0xaa,0x2c,0x00,0xd8,0x01,0x00 -+// 18475 䠫 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x00,0x00,0x00,0x00,0x90,0x82,0x82,0x86,0x82,0x80,0x1c,0x10,0x54,0x18,0x54,0x96,0x11,0x00 -+// 18476 䠬 ; -+,0x00,0x00,0x24,0x24,0x25,0x24,0x2d,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0x01,0x00,0x00,0x00,0x90,0x89,0x95,0x15,0x3c,0x04,0x24,0x05,0x25,0x25,0xa4,0x44,0x04,0x00 -+// 18477 䠭 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x0d,0x09,0x09,0x08,0x08,0x09,0x08,0x30,0x00,0x00,0x00,0x00,0x08,0xaa,0x00,0x80,0x20,0x28,0x20,0x88,0xc0,0x28,0x08,0x08,0x01,0x00 -+// 18478 䠮 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x16,0x04,0x14,0x15,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x10,0x54,0x12,0x00,0x20,0x44,0x43,0x54,0x50,0x50,0x52,0x02,0xa2,0x02,0x00 -+// 18479 䠯 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x10,0x20,0x44,0x8a,0x00,0x6d,0x6d,0x6f,0x00,0xaa,0x2a,0xaa,0x2a,0x2a,0x00 -+// 18480 䠰 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x00,0x00,0x00,0x00,0x2e,0x00,0x20,0xaa,0xaa,0x00,0x40,0xd0,0xd2,0x00,0x5a,0x00,0x40,0x00 -+// 18481 䠱 ; -+,0x00,0x00,0x03,0x01,0x01,0x01,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x30,0x00,0x00,0x00,0x00,0x03,0x02,0x00,0x14,0x02,0x4a,0x4a,0x20,0x51,0x55,0x55,0x14,0x06,0x02 -+// 18482 䠲 ; -+,0x00,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x03,0x05,0x09,0x01,0x03,0x00,0x00,0x00,0x10,0x00,0x20,0x04,0x02,0x0a,0x00,0x06,0x04,0x00,0x00,0x10,0x08,0x00 -+// 18483 䠳 ; -+,0x00,0x04,0x04,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x03,0x05,0x09,0x11,0x03,0x00,0x00,0x00,0x08,0x08,0x0a,0x0a,0x0a,0x6a,0x08,0x08,0x4a,0x4a,0x4a,0x4a,0x42,0x00 -+// 18484 䠴 ; -+,0x00,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x03,0x05,0x09,0x11,0x03,0x00,0x00,0x00,0x10,0x10,0x02,0x00,0x04,0x04,0x24,0x24,0x20,0x20,0x00,0x00,0x00,0x00 -+// 18485 䠵 ; -+,0x00,0x04,0x00,0x13,0x10,0x12,0x10,0x13,0x10,0x12,0x02,0x04,0x08,0x00,0x06,0x00,0x00,0x20,0x20,0x00,0x40,0x43,0x40,0x40,0x50,0x40,0x40,0x40,0x40,0x40,0x4c,0x00 -+// 18486 䠶 ; -+,0x00,0x04,0x00,0x11,0x10,0x12,0x10,0x13,0x10,0x12,0x06,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x20,0x20,0x50,0x10,0x10,0x10,0x13,0x10,0x00,0x20,0x24,0x42,0x01,0x00 -+// 18487 䠷 ; -+,0x00,0x04,0x00,0x13,0x10,0x12,0x10,0x12,0x10,0x12,0x06,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x28,0x28,0x28,0xaa,0x68,0x28,0x28,0xaa,0x28,0x08,0x48,0x09,0x0f,0x00 -+// 18488 䠸 ; -+,0x00,0x04,0x00,0x11,0x10,0x12,0x10,0x13,0x10,0x12,0x02,0x04,0x08,0x00,0x02,0x00,0x00,0x10,0x10,0x28,0x24,0x46,0x03,0x00,0x20,0x20,0x42,0x00,0x04,0x04,0x18,0x00 -+// 18489 䠹 ; -+,0x00,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x03,0x05,0x09,0x01,0x02,0x00,0x00,0x00,0x08,0x00,0x10,0x10,0x02,0x24,0x08,0x12,0x26,0x04,0x08,0x22,0x41,0x00 -+// 18490 䠺 ; -+,0x00,0x04,0x00,0x13,0x10,0x12,0x10,0x12,0x10,0x12,0x02,0x04,0x08,0x00,0x02,0x00,0x00,0x00,0x40,0x02,0x02,0x02,0x2a,0x2a,0x2a,0x2a,0x2a,0x02,0x02,0x02,0x06,0x00 -+// 18491 䠻 ; -+,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x06,0x06,0x0a,0x02,0x02,0x06,0x00,0x00,0x10,0x10,0x01,0xa0,0x42,0x02,0x06,0x04,0x40,0x80,0x02,0x02,0x02,0x0c,0x00 -+// 18492 䠼 ; -+,0x00,0x00,0x08,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x06,0x0a,0x02,0x02,0x06,0x00,0x00,0x10,0x30,0x28,0x44,0x8f,0x00,0xb2,0x82,0xa2,0x82,0xa2,0x8a,0x82,0xa6,0x00 -+// 18493 䠽 ; -+,0x00,0x00,0x08,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x06,0x06,0x0a,0x12,0x06,0x00,0x00,0x00,0x12,0x52,0x52,0x42,0x02,0x00,0x42,0x40,0x42,0x00,0x24,0x28,0x01,0x00 -+// 18494 䠾 ; -+,0x00,0x00,0x08,0x12,0x12,0x12,0x12,0x12,0x12,0x06,0x06,0x0a,0x12,0x02,0x06,0x00,0x00,0x00,0xaa,0xa8,0xaa,0xa8,0xaa,0x82,0x90,0x90,0x90,0xa4,0x80,0x82,0x82,0x00 -+// 18495 䠿 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x06,0x06,0x0a,0x02,0x06,0x00,0x00,0x10,0x10,0x14,0x14,0x10,0x00,0x06,0x00,0x44,0x44,0x00,0x44,0x44,0x82,0x00 -+// 18496 䡀 ; -+,0x00,0x04,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x06,0x0a,0x02,0x02,0x06,0x00,0x00,0x10,0x10,0x00,0x02,0x02,0x2a,0x2a,0x02,0x00,0x44,0x44,0x44,0x44,0x03,0x00 -+// 18497 䡁 ; -+,0x00,0x08,0x00,0x14,0x04,0x14,0x04,0x14,0x05,0x05,0x05,0x0d,0x15,0x05,0x0d,0x00,0x00,0x00,0x88,0x28,0x08,0x02,0x20,0x08,0x2a,0x28,0x2a,0x28,0x28,0x29,0x69,0x00 -+// 18498 䡂 ; -+,0x00,0x04,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x02,0x02,0x82,0x82,0x82,0x82,0x82,0x32,0x82,0x02,0x02,0x02,0x00 -+// 18499 䡃 ; -+,0x00,0x04,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x91,0x91,0x91,0x91,0x90,0x02,0xa2,0x02,0x42,0x0c,0x00 -+// 18500 䡄 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x14,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x24,0x84,0x44,0x05,0x07,0x00 -+// 18501 䡅 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x22,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x0a,0x0a,0x4a,0x42,0x02,0x02,0x00 -+// 18502 䡆 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x14,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x20,0x24,0x02,0x43,0x10,0x10,0x20,0xa0,0x00,0x42,0x42,0x00 -+// 18503 䡇 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x20,0x20,0x20,0x20,0xa0,0x00,0x41,0x87,0x00 -+// 18504 䡈 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x04,0x08,0x16,0x02,0x00,0x06,0x24,0x04,0x98,0x18,0x24,0x03,0x00 -+// 18505 䡉 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x01,0x00,0x24,0x24,0x24,0x24,0x24,0xa4,0x04,0x45,0x87,0x00 -+// 18506 䡊 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x20,0x20,0x20,0x22,0x02,0x04,0x44,0x48,0x48,0x14,0x86,0x03,0x00 -+// 18507 䡋 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x02,0x02,0x04,0x24,0x98,0x18,0x2c,0x03,0x00 -+// 18508 䡌 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x28,0x28,0x08,0x50,0x10,0xa2,0x22,0x22,0x00 -+// 18509 䡍 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x10,0x12,0x10,0x10,0x10,0x12,0x10,0x10,0x24,0x24,0x42,0x01,0x00 -+// 18510 䡎 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x14,0x15,0x14,0x14,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x23,0xa0,0x20,0x22,0x00,0x00,0x00,0x40,0x40,0x00,0x00,0x00 -+// 18511 䡏 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1e,0x02,0x1e,0x02,0x02,0x08,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x32,0x00,0x00,0x04,0x84,0x84,0x80,0xa0,0x28,0x28,0x29,0x2d,0x40,0x00 -+// 18512 䡐 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0x43,0x40,0x20,0x20,0x26,0x28,0x20,0x20,0x20,0x20,0x1f,0x00 -+// 18513 䡑 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x48,0x48,0x4a,0x48,0x48,0x40,0x44,0x63,0x41,0x00 -+// 18514 䡒 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x5a,0x42,0x42,0x42,0x42,0x5a,0x42,0x42,0x42,0x42,0x5a,0x42,0x00 -+// 18515 䡓 ; -+,0x00,0x00,0x08,0x10,0x00,0x0e,0x0a,0x12,0x12,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0xa0,0x80,0xa0,0xa7,0xa4,0xa4,0xa4,0x84,0x84,0x84,0x84,0x8c,0x00 -+// 18516 䡔 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x22,0x26,0x04,0x08,0x08,0x10,0x13,0x22,0x94,0x08,0x10,0x00,0x00 -+// 18517 䡕 ; -+,0x00,0x00,0x04,0x05,0x04,0x05,0x05,0x15,0x05,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x04,0x00,0x08,0x1a,0x38,0x28,0x04,0x02,0x01,0x10,0x00,0x02,0x00 -+// 18518 䡖 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x42,0x12,0x10,0x12,0x10,0x10,0x10,0x10,0x00,0x00 -+// 18519 䡗 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x40,0x50,0x40,0x87,0x40,0xc0,0xc4,0xc4,0x04,0xc4,0xc3,0x00,0x00 -+// 18520 䡘 ; -+,0x00,0x00,0x04,0x0d,0x00,0x0d,0x01,0x1d,0x01,0x05,0x04,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x43,0x02,0x5a,0x52,0x52,0x5a,0x52,0x52,0x4a,0x02,0x06,0x00 -+// 18521 䡙 ; -+,0x00,0x00,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x40,0x42,0x48,0x40,0x46,0x41,0x00 -+// 18522 䡚 ; -+,0x00,0x04,0x04,0x05,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x02,0x42,0x42,0x42,0x42,0x42,0x00,0x20,0x20,0x20,0x40,0x87,0x00 -+// 18523 䡛 ; -+,0x00,0x04,0x04,0x05,0x04,0x15,0x15,0x15,0x15,0x15,0x14,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x0a,0x2a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x08,0x00 -+// 18524 䡜 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x01,0x20,0x22,0x10,0x10,0x18,0x10,0x10,0x00,0x00 -+// 18525 䡝 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0e,0x02,0x1e,0x02,0x1e,0x00,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x82,0x40,0x4a,0x2a,0xaa,0xaa,0x2a,0x0a,0x48,0x09,0x0f,0x00 -+// 18526 䡞 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x02,0x0c,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x5e,0x40,0x48,0x48,0x48,0x43,0x40,0x00 -+// 18527 䡟 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x0b,0x08,0x08,0x08,0x08,0x32,0x10,0x28,0x09,0x08,0x08,0x08,0x00 -+// 18528 䡠 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x22,0x01,0x00 -+// 18529 䡡 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x48,0x4a,0x48,0x48,0x49,0x40,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 18530 䡢 ; -+,0x00,0x00,0x04,0x0c,0x00,0x1f,0x00,0x1e,0x00,0x1e,0x00,0x06,0x04,0x00,0x00,0x00,0x00,0x10,0x00,0x42,0x42,0x42,0x40,0x40,0x75,0x55,0xb5,0x95,0x95,0x15,0x03,0x00 -+// 18531 䡣 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x41,0x40,0x00,0x18,0x1a,0x42,0x5a,0x42,0x5a,0x00,0x18,0x00,0x00,0x00 -+// 18532 䡤 ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x80,0x98,0xb2,0xc0,0x08,0x08,0x08,0x00,0xc0,0xc4,0xc4,0xc4,0xc3,0x00,0x00 -+// 18533 䡥 ; -+,0x00,0x00,0x00,0x0c,0x00,0x2e,0x02,0x0e,0x02,0x0e,0x00,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x02,0x82,0x20,0x56,0x10,0x28,0x44,0x47,0x44,0x44,0x44,0x44,0x00 -+// 18534 䡦 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1f,0x00,0x1e,0x00,0x1e,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x0c,0x00,0x22,0x26,0x62,0x00,0x18,0x38,0x14,0x13,0x10,0x00 -+// 18535 䡧 ; -+,0x00,0x00,0x04,0x0c,0x00,0x1f,0x00,0x1e,0x00,0x1e,0x00,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x04,0x44,0x40,0x42,0x00,0x43,0x00,0x06,0xa2,0x82,0x06,0x00 -+// 18536 䡨 ; -+,0x00,0x01,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x10,0x24,0x88,0x02,0x00,0x40,0x00,0x42,0x40,0x44,0x44,0x44,0x43,0x40,0x00 -+// 18537 䡩 ; -+,0x00,0x00,0x04,0x04,0x04,0x15,0x05,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x00,0x22,0x22,0x02,0x22,0x22,0x02,0x23,0x00,0x22,0x01,0x00 -+// 18538 䡪 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0e,0x02,0x0e,0x02,0x0a,0x08,0x0a,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x82,0x82,0x82,0x80,0x92,0x90,0xb4,0x92,0xb6,0x58,0x10,0x32,0x00 -+// 18539 䡫 ; -+,0x00,0x00,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x0a,0x08,0x08,0x09,0x00,0x00,0x00,0x10,0x92,0xa4,0x0c,0x17,0x08,0x8a,0x08,0x08,0x0a,0x08,0xc8,0x3f,0x00 -+// 18540 䡬 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1f,0x00,0x1e,0x00,0x1e,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x81,0x81,0x80,0x02,0x06,0x04,0x18,0x66,0x00 -+// 18541 䡭 ; -+,0x00,0x00,0x04,0x0c,0x00,0x1f,0x00,0x1e,0x00,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x24,0x28,0x12,0x10,0x30,0x20,0x20,0x20,0x52,0x10,0x14,0x14,0x35,0x00 -+// 18542 䡮 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x2a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x52,0x10,0x1e,0x45,0x40,0x80,0x80,0x80,0x84,0xa0,0xa0,0xac,0x87,0x00 -+// 18543 䡯 ; -+,0x00,0x00,0x04,0x0c,0x00,0x1d,0x01,0x1d,0x01,0x1d,0x00,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x42,0x52,0x56,0x4a,0x4a,0x42,0x42,0x08,0x28,0xa1,0xa0,0x3e,0x00 -+// 18544 䡰 ; -+,0x00,0x00,0x06,0x06,0x00,0x16,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa4,0xa6,0x00,0x84,0x88,0x06,0x00,0xc0,0xc4,0xc4,0xc4,0x01,0xc0,0x00 -+// 18545 䡱 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0e,0x02,0x1e,0x02,0x1e,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x80,0x84,0x84,0x84,0x80,0x80,0xb2,0x92,0x92,0xb6,0x80,0x81,0x00 -+// 18546 䡲 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0e,0x02,0x0e,0x02,0x0e,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x1a,0x0a,0x1a,0x00,0x52,0x52,0x52,0x52,0x12,0x10,0x10,0x10,0x10,0x00 -+// 18547 䡳 ; -+,0x00,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0xa0,0xaa,0xa8,0xa8,0xa8,0xaa,0xaa,0xaa,0xaa,0xaa,0xba,0x0a,0x32,0x12,0x00 -+// 18548 䡴 ; -+,0x00,0x00,0x04,0x05,0x04,0x17,0x04,0x16,0x04,0x16,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x04,0x24,0x29,0x00,0x52,0x52,0x52,0x52,0x10,0x12,0x10,0x11,0x00 -+// 18549 䡵 ; -+,0x00,0x00,0x08,0x0a,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x12,0x94,0x81,0x10,0x12,0x08,0x90,0x8e,0x95,0x84,0x88,0x80,0x3f,0x00 -+// 18550 䡶 ; -+,0x00,0x00,0x08,0x0a,0x08,0x0a,0x0a,0x1a,0x0a,0x1a,0x08,0x0a,0x09,0x08,0x08,0x00,0x00,0x00,0x04,0xa1,0x80,0x8b,0xaa,0x83,0x84,0xf4,0x84,0x04,0x04,0x04,0x04,0x00 -+// 18551 䡷 ; -+,0x00,0x00,0x00,0x0e,0x00,0x0e,0x02,0x0e,0x02,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x10,0x14,0x10,0x10,0x00,0x04,0x42,0x0a,0x0a,0x0a,0x6b,0x00 -+// 18552 䡸 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0e,0x02,0x0e,0x02,0x0a,0x08,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x00,0x5a,0x02,0x42,0x0c,0x1a,0x48,0x4a,0x4c,0x6c,0x43,0x00 -+// 18553 䡹 ; -+,0x00,0x00,0x04,0x04,0x04,0x17,0x04,0x16,0x04,0x16,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x11,0x80,0x14,0x14,0x14,0x00,0x13,0x50,0x50,0xb0,0x0f,0x00 -+// 18554 䡺 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0e,0x02,0x1e,0x02,0x1e,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x02,0x02,0x02,0x00,0x49,0x41,0x7e,0x00 -+// 18555 䡻 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1f,0x00,0x1e,0x00,0x1e,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x10,0x42,0x42,0x42,0x42,0x52,0x08,0x01,0x26,0x08,0x30,0x22,0x02,0x04,0x00 -+// 18556 䡼 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1e,0x02,0x1e,0x02,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x91,0x80,0x00,0x00,0x00,0xdb,0xd9,0xd9,0xd9,0xd9,0xd9,0x00 -+// 18557 䡽 ; -+,0x00,0x00,0x08,0x0a,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0xcc,0x44,0x44,0x48,0x88,0x83,0x44,0x44,0x40,0x44,0x44,0x20,0x42,0x00 -+// 18558 䡾 ; -+,0x00,0x00,0x08,0x0a,0x08,0x0a,0x0a,0x1a,0x0a,0x0a,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x04,0x04,0x0c,0x44,0x45,0x14,0x04,0x54,0x04,0x94,0x94,0xb0,0x99,0x91,0x00 -+// 18559 䡿 ; -+,0x00,0x00,0x08,0x0a,0x08,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x11,0x90,0x10,0x00,0xcc,0x4c,0x00,0x12,0x50,0xd4,0x32,0x11,0x00 -+// 18560 䢀 ; -+,0x00,0x08,0x08,0x09,0x00,0x14,0x14,0x35,0x04,0x04,0x04,0x3c,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x20,0x22,0x40,0x00,0x02,0x04,0x08,0x10,0x20,0x40,0x81,0x7f,0x00 -+// 18561 䢁 ; -+,0x00,0x00,0x08,0x09,0x08,0x04,0x14,0x15,0x04,0x04,0x06,0x3c,0x04,0x04,0x04,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x42,0x42,0x82,0x06,0x00 -+// 18562 䢂 ; -+,0x00,0x04,0x08,0x09,0x08,0x04,0x14,0x15,0x04,0x04,0x06,0x3c,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x84,0x04,0x24,0x20,0x28,0x08,0x00,0x00,0x00 -+// 18563 䢃 ; -+,0x00,0x00,0x19,0x11,0x10,0x10,0x19,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x10,0x12,0x04,0x20,0x10,0x10,0x10,0x10,0x00,0x08,0x10,0xa0,0xe0,0x0e,0x00 -+// 18564 䢄 ; -+,0x00,0x04,0x08,0x11,0x00,0x11,0x11,0x11,0x14,0x04,0x0d,0x0c,0x07,0x05,0x04,0x00,0x00,0x10,0x02,0x00,0x14,0x08,0x08,0x08,0x00,0x08,0x18,0x18,0x28,0x0b,0x08,0x00 -+// 18565 䢅 ; -+,0x00,0x01,0x08,0x08,0x08,0x08,0x00,0x08,0x08,0x08,0x0a,0x02,0x02,0x12,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x06,0x00,0x00,0x02,0x08,0x30,0x18,0x06,0x00 -+// 18566 䢆 ; -+,0x00,0x00,0x00,0x23,0x20,0x14,0x14,0x14,0x14,0x14,0x14,0x16,0x04,0x20,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x81,0xa0,0xa0,0xa6,0xa2,0x85,0x84,0x14,0x04,0x0c,0x00 -+// 18567 䢇 ; -+,0x00,0x00,0x04,0x00,0x01,0x21,0x00,0x00,0x10,0x10,0x10,0x12,0x12,0x00,0x00,0x00,0x00,0x00,0x42,0x40,0xc0,0x42,0x42,0x44,0x52,0x04,0x85,0x84,0x94,0x04,0x0c,0x00 -+// 18568 䢈 ; -+,0x00,0x00,0x08,0x08,0x0a,0x02,0x12,0x01,0x04,0x08,0x09,0x08,0x00,0x02,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x18,0x4c,0x80,0x07,0x04,0x54,0x04,0x08,0x08,0x08,0x00 -+// 18569 䢉 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x08,0x08,0x08,0x0a,0x0a,0x12,0x03,0x00,0x00,0x00,0x82,0x22,0x42,0x62,0x22,0x00,0x00,0x08,0x00,0x00,0x28,0x10,0x0e,0x00 -+// 18570 䢊 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x12,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x20,0x20,0x00,0xff,0x00 -+// 18571 䢋 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x12,0x00,0x00,0x00,0x00,0x00,0x02,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08,0x00,0x00,0xfe,0x00 -+// 18572 䢌 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x08,0x08,0x13,0x00,0x00,0x00,0x00,0x20,0x22,0x20,0x20,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x7e,0x00 -+// 18573 䢍 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x33,0x00,0x00,0x00,0x00,0x20,0x00,0x22,0x20,0x00,0x44,0x44,0x44,0x84,0x0c,0x08,0x00,0xfe,0x00 -+// 18574 䢎 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x33,0x20,0x00,0x00,0x00,0x02,0x48,0x48,0x48,0x48,0x48,0x08,0x88,0x08,0x08,0x08,0x00,0xfe,0x00 -+// 18575 䢏 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x33,0x00,0x00,0x00,0x00,0x10,0x50,0x50,0x10,0x90,0x90,0x18,0x10,0x10,0x10,0x10,0x00,0x7e,0x00 -+// 18576 䢐 ; -+,0x00,0x00,0x08,0x0c,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x33,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x87,0x00,0x00,0x7e,0x00 -+// 18577 䢑 ; -+,0x00,0x00,0x10,0x09,0x01,0x01,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x33,0x00,0x00,0x00,0x00,0x18,0x20,0x20,0x00,0x10,0x10,0x10,0x10,0x08,0xa6,0x02,0x00,0x7e,0x00 -+// 18578 䢒 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x12,0x00,0x00,0x00,0x00,0x20,0x02,0x00,0x44,0x86,0x0a,0x10,0x30,0x30,0x0c,0x00,0x00,0xff,0x00 -+// 18579 䢓 ; -+,0x00,0x00,0x08,0x08,0x01,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x31,0x00,0x00,0x00,0x00,0x10,0x00,0x02,0x00,0x20,0x00,0x22,0x00,0x00,0x00,0x60,0x20,0x3e,0x00 -+// 18580 䢔 ; -+,0x00,0x00,0x08,0x08,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x13,0x00,0x00,0x00,0x00,0x20,0x40,0x8c,0x03,0x00,0x00,0x8c,0x04,0x04,0x8c,0x00,0x00,0xfe,0x00 -+// 18581 䢕 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x09,0x09,0x09,0x09,0x08,0x0a,0x18,0x22,0x00,0x00,0x00,0x00,0x14,0x10,0x12,0x10,0x10,0x14,0x1c,0x08,0x18,0x26,0x02,0x00,0xfe,0x00 -+// 18582 䢖 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x23,0x00,0x00,0x00,0x00,0x20,0x24,0x26,0x24,0x24,0x20,0x24,0x20,0x26,0x20,0x20,0x00,0x7e,0x00 -+// 18583 䢗 ; -+,0x00,0x00,0x00,0x08,0x01,0x01,0x09,0x09,0x09,0x09,0x09,0x09,0x0c,0x33,0x00,0x00,0x00,0x00,0x40,0x40,0x5a,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x00,0x7e,0x00 -+// 18584 䢘 ; -+,0x00,0x00,0x00,0x08,0x01,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x21,0x00,0x00,0x00,0x00,0x20,0x00,0x02,0x00,0x08,0x1a,0x08,0x48,0x48,0x08,0x30,0x00,0x7e,0x00 -+// 18585 䢙 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x32,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x04,0x84,0x84,0x04,0x84,0x40,0x84,0x02,0x00,0xfe,0x00 -+// 18586 䢚 ; -+,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x12,0x00,0x00,0x00,0x00,0x02,0x00,0x32,0x00,0xa0,0x20,0x22,0x20,0x60,0x48,0x04,0x00,0xfe,0x00 -+// 18587 䢛 ; -+,0x00,0x00,0x01,0x09,0x01,0x01,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x23,0x00,0x00,0x00,0x00,0x02,0x02,0x42,0x4a,0x86,0x52,0x42,0x52,0x02,0x02,0x04,0x00,0x7e,0x00 -+// 18588 䢜 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x0a,0x09,0x09,0x09,0x09,0x08,0x23,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x22,0x28,0x20,0x20,0x28,0x20,0x00,0x7e,0x00 -+// 18589 䢝 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x09,0x09,0x09,0x08,0x08,0x08,0x0c,0x33,0x00,0x00,0x00,0x00,0x02,0x50,0x50,0x52,0x02,0x02,0x42,0x50,0x50,0x52,0x00,0x00,0x7e,0x00 -+// 18590 䢞 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x09,0x08,0x0a,0x08,0x08,0x08,0x23,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x88,0x88,0xcc,0xba,0x91,0xa0,0x80,0x80,0x00,0x7e,0x00 -+// 18591 䢟 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x0a,0x1c,0x23,0x00,0x00,0x00,0x00,0x88,0x88,0x28,0x14,0x84,0x24,0x0c,0x44,0x4a,0x52,0x00,0x00,0x7e,0x00 -+// 18592 䢠 ; -+,0x00,0x00,0x00,0x08,0x01,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x33,0x00,0x00,0x00,0x00,0x02,0xa4,0x20,0x48,0x07,0x48,0x4a,0x48,0x08,0x88,0x08,0x00,0xfe,0x00 -+// 18593 䢡 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x12,0x00,0x00,0x00,0x00,0xa0,0xae,0xa0,0xa8,0x80,0x80,0x00,0x30,0x70,0x84,0x02,0x00,0xfe,0x00 -+// 18594 䢢 ; -+,0x00,0x00,0x10,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x32,0x00,0x00,0x00,0x20,0x60,0x48,0x26,0x04,0x84,0x84,0x84,0x00,0x84,0x84,0x84,0x00,0xfe,0x00 -+// 18595 䢣 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x12,0x00,0x00,0x00,0x20,0x64,0xcc,0x18,0x20,0x90,0x02,0x04,0x00,0x00,0x84,0x84,0x00,0xfe,0x00 -+// 18596 䢤 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x09,0x09,0x09,0x0a,0x08,0x08,0x08,0x23,0x00,0x00,0x00,0x00,0x48,0x8a,0x88,0x88,0x88,0x88,0xdc,0x9a,0xa8,0x88,0x88,0x00,0x7e,0x00 -+// 18597 䢥 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x0c,0x13,0x00,0x00,0x00,0x00,0x22,0x20,0xb0,0xa0,0x00,0x02,0x82,0x84,0x84,0x80,0x86,0x00,0xfe,0x00 -+// 18598 䢦 ; -+,0x00,0x00,0x00,0x08,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x13,0x00,0x00,0x00,0x00,0x20,0x22,0x20,0x54,0x20,0x04,0xca,0x20,0x22,0x20,0x20,0x20,0x7e,0x00 -+// 18599 䢧 ; -+,0x00,0x00,0x00,0x08,0x00,0x01,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x33,0x00,0x00,0x00,0x00,0x42,0x0a,0x42,0x0a,0x20,0x48,0x27,0x50,0x20,0x0c,0x30,0x80,0xfe,0x00 -+// 18600 䢨 ; -+,0x00,0x00,0x11,0x09,0x02,0x01,0x09,0x0b,0x09,0x09,0x09,0x09,0x09,0x32,0x20,0x00,0x00,0x00,0x24,0x24,0x4c,0x12,0x00,0x10,0x52,0x50,0x50,0x10,0x0e,0x00,0xfe,0x00 -+// 18601 䢩 ; -+,0x00,0x00,0x08,0x08,0x01,0x01,0x09,0x08,0x08,0x08,0x08,0x09,0x08,0x23,0x00,0x00,0x00,0x00,0x24,0x08,0x48,0x42,0x42,0x02,0x44,0x04,0x0a,0x42,0x20,0x00,0x7e,0x00 -+// 18602 䢪 ; -+,0x00,0x00,0x10,0x08,0x00,0x00,0x00,0x08,0x08,0x09,0x09,0x09,0x09,0x33,0x00,0x00,0x00,0x00,0x30,0x22,0x40,0x8c,0x08,0x08,0x02,0x02,0x52,0x52,0x06,0x00,0xfe,0x00 -+// 18603 䢫 ; -+,0x00,0x00,0x00,0x0a,0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x12,0x20,0x00,0x00,0x00,0x90,0x90,0x00,0x28,0x08,0x00,0x22,0xa2,0x22,0x22,0x26,0x00,0xfe,0x00 -+// 18604 䢬 ; -+,0x00,0x00,0x00,0x08,0x00,0x01,0x02,0x08,0x09,0x08,0x08,0x08,0x08,0x33,0x00,0x00,0x00,0x00,0x00,0xa8,0x00,0x02,0x80,0xc8,0x48,0xc8,0xa8,0x08,0x08,0x08,0x7e,0x00 -+// 18605 䢭 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x08,0x09,0x08,0x09,0x09,0x08,0x12,0x20,0x00,0x00,0x08,0x00,0x20,0x24,0x20,0x00,0x20,0x02,0x50,0x10,0x28,0x04,0x00,0xfe,0x00 -+// 18606 䢮 ; -+,0x00,0x00,0x00,0x08,0x02,0x00,0x08,0x08,0x09,0x09,0x09,0x09,0x0d,0x13,0x00,0x00,0x00,0x00,0x20,0x20,0x22,0x20,0x20,0x00,0x24,0x24,0x24,0x24,0x04,0x00,0xfe,0x00 -+// 18607 䢯 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x0c,0x13,0x00,0x00,0x00,0x00,0xa4,0x48,0x96,0xa4,0x48,0x86,0xa0,0x48,0xc0,0x8c,0x00,0x00,0x7e,0x00 -+// 18608 䢰 ; -+,0x00,0x00,0x00,0x08,0x08,0x01,0x00,0x0c,0x09,0x08,0x08,0x08,0x0c,0x13,0x00,0x00,0x00,0x00,0x42,0xca,0x42,0x52,0x90,0x80,0x90,0x94,0x90,0x90,0x92,0x00,0xfe,0x00 -+// 18609 䢱 ; -+,0x00,0x00,0x00,0x08,0x09,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x00,0x00,0x20,0x20,0x20,0x04,0x50,0x54,0x04,0x04,0x04,0x84,0x04,0x48,0x04,0xe6,0x02 -+// 18610 䢲 ; -+,0x00,0x00,0x11,0x09,0x01,0x00,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x33,0x00,0x00,0x00,0x02,0x52,0x52,0x52,0x80,0x24,0x24,0x22,0x04,0x0c,0x30,0x08,0x00,0x7e,0x00 -+// 18611 䢳 ; -+,0x00,0x00,0x00,0x0b,0x09,0x09,0x09,0x09,0x09,0x01,0x11,0x11,0x10,0x20,0x00,0x00,0x00,0x00,0x22,0x22,0x20,0x24,0x20,0x20,0x22,0x20,0xa1,0x22,0x26,0x20,0x20,0x00 -+// 18612 䢴 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x06,0x00,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x82,0x22,0x22,0x24,0x20,0xe0,0x22,0x20,0x21,0x22,0x26,0x20,0x20,0x00 -+// 18613 䢵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x01,0x11,0x38,0x00,0x00,0x00,0x00,0x00,0x01,0x13,0x02,0x00,0x80,0x00,0x02,0x01,0x01,0x81,0x86,0x00,0x00,0x00 -+// 18614 䢶 ; -+,0x00,0x02,0x00,0x00,0x00,0x06,0x04,0x06,0x0d,0x08,0x10,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x22,0x22,0x24,0x20,0x20,0x20,0xa2,0x21,0x22,0x26,0x20,0x20,0x00 -+// 18615 䢷 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x08,0x08,0x08,0x08,0x10,0x00,0x01,0x00,0x00,0x00,0x93,0x92,0x92,0x90,0x90,0x90,0x92,0x90,0x91,0x91,0x96,0x90,0x10,0x00 -+// 18616 䢸 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x09,0x01,0x01,0x01,0x38,0x00,0x00,0x00,0x00,0x01,0x13,0x02,0x00,0x00,0x00,0x02,0x00,0x01,0x01,0x06,0x00,0x00,0x00 -+// 18617 䢹 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x82,0x12,0x12,0x10,0x90,0x10,0x12,0x10,0x11,0x11,0x16,0xd0,0x10,0x00 -+// 18618 䢺 ; -+,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x04,0x04,0x14,0x14,0x14,0x14,0x18,0x00,0x00,0x00,0x00,0x00,0x93,0x92,0x90,0x90,0x90,0x12,0x90,0x91,0x91,0x96,0x90,0x10,0x00 -+// 18619 䢻 ; -+,0x00,0x00,0x10,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x16,0x00,0x00,0x00,0x00,0x93,0x12,0x12,0x10,0x90,0x90,0x92,0x90,0x11,0x11,0x16,0x90,0x10,0x00 -+// 18620 䢼 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x08,0x08,0x10,0x00,0x00,0x00,0x00,0x13,0x12,0x12,0x10,0x10,0x10,0x12,0x50,0x11,0x11,0x96,0x50,0x10,0x00 -+// 18621 䢽 ; -+,0x00,0x01,0x01,0x01,0x01,0x02,0x06,0x0a,0x02,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x26,0x20,0x23,0x10,0x18,0x13,0x10,0x00,0xcc,0x00,0x08,0x00,0xfe,0x00 -+// 18622 䢾 ; -+,0x00,0x00,0x02,0x0a,0x0a,0x12,0x02,0x02,0x05,0x01,0x09,0x09,0x01,0x11,0x00,0x00,0x00,0x00,0x00,0x13,0x82,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x96,0x00,0x00,0x00 -+// 18623 䢿 ; -+,0x00,0x00,0x02,0x02,0x00,0x04,0x04,0x0c,0x09,0x09,0x01,0x06,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x53,0x12,0x12,0x10,0xd0,0x10,0x10,0x11,0x11,0x96,0x90,0x10,0x00 -+// 18624 䣀 ; -+,0x00,0x04,0x04,0x09,0x00,0x18,0x08,0x0a,0x00,0x00,0x00,0x10,0x10,0x06,0x00,0x00,0x00,0x00,0x00,0x12,0x02,0x00,0x00,0x80,0x80,0x80,0x81,0x02,0x16,0x00,0x00,0x00 -+// 18625 䣁 ; -+,0x00,0x00,0x04,0x04,0x04,0x15,0x04,0x04,0x04,0x04,0x26,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x40,0x53,0x52,0x50,0x50,0x50,0x52,0x50,0x51,0x51,0x56,0x50,0x50,0x00 -+// 18626 䣂 ; -+,0x00,0x00,0x02,0x06,0x02,0x02,0x02,0x02,0x06,0x06,0x07,0x0a,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x92,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x81,0x06,0x00,0x00,0x00 -+// 18627 䣃 ; -+,0x00,0x00,0x08,0x08,0x12,0x02,0x02,0x02,0x02,0x0a,0x02,0x02,0x02,0x1c,0x00,0x00,0x00,0x00,0x00,0x92,0x02,0x00,0x40,0x00,0x00,0x82,0x00,0x00,0x16,0x00,0x00,0x00 -+// 18628 䣄 ; -+,0x00,0x04,0x04,0x05,0x08,0x00,0x02,0x02,0x02,0x02,0x0a,0x12,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x92,0x92,0x10,0x10,0x10,0x92,0x10,0x11,0x91,0x56,0x10,0x10,0x00 -+// 18629 䣅 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x14,0x14,0x15,0x14,0x14,0x06,0x04,0x00,0x00,0x00,0x80,0x13,0x12,0x10,0x10,0x90,0x10,0x52,0x11,0x91,0x56,0x10,0x10,0x00 -+// 18630 䣆 ; -+,0x00,0x00,0x00,0x00,0x0a,0x00,0x10,0x0a,0x08,0x00,0x02,0x02,0x02,0x06,0x18,0x00,0x00,0x00,0x80,0x13,0x92,0x12,0x10,0x90,0x10,0x90,0x11,0x11,0x16,0x10,0x10,0x00 -+// 18631 䣇 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x0a,0x02,0x0a,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x80,0x13,0x52,0x12,0x90,0x10,0x10,0x10,0x91,0x51,0x16,0x10,0x10,0x00 -+// 18632 䣈 ; -+,0x00,0x00,0x11,0x11,0x11,0x01,0x00,0x15,0x15,0x15,0x11,0x10,0x10,0x14,0x18,0x00,0x00,0x00,0x26,0x20,0x20,0x00,0x00,0x0a,0x0a,0x0a,0x02,0x00,0x00,0x01,0x3f,0x00 -+// 18633 䣉 ; -+,0x00,0x00,0x04,0x10,0x00,0x08,0x08,0x08,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x82,0x00,0x0c,0x20,0x00,0x08,0x08,0x00,0xc4,0x04,0x00,0x02,0x00 -+// 18634 䣊 ; -+,0x00,0x02,0x02,0x0a,0x0a,0x02,0x10,0x10,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x80,0x92,0x12,0x10,0x90,0x90,0x90,0x92,0x90,0x90,0x92,0x94,0x90,0x00 -+// 18635 䣋 ; -+,0x00,0x00,0x03,0x02,0x02,0x0a,0x02,0x06,0x06,0x07,0x0a,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x80,0x12,0x92,0x10,0x14,0x10,0x10,0x12,0x90,0x11,0x12,0x14,0x10,0x00 -+// 18636 䣌 ; -+,0x00,0x02,0x02,0x10,0x10,0x11,0x15,0x15,0x15,0x14,0x14,0x14,0x04,0x25,0x00,0x00,0x00,0x00,0x00,0x12,0x12,0x90,0x10,0x10,0x50,0x12,0x90,0x90,0x56,0x50,0x10,0x00 -+// 18637 䣍 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x12,0x12,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x00,0x00,0x00,0x00,0x13,0x12,0x90,0x50,0x90,0x92,0x90,0x91,0x91,0x13,0x12,0x10,0x00 -+// 18638 䣎 ; -+,0x00,0x00,0x0a,0x00,0x00,0x12,0x0a,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x12,0x12,0x90,0x90,0x10,0x90,0x90,0x91,0x90,0x96,0x90,0x90,0x00 -+// 18639 䣏 ; -+,0x00,0x00,0x08,0x08,0x00,0x13,0x10,0x30,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x00,0x00,0x01,0x01,0x02,0xe0,0x00,0x00,0x00,0x01,0x11,0x03,0x42,0x20,0x00,0x00 -+// 18640 䣐 ; -+,0x00,0x00,0x00,0x0c,0x00,0x02,0x02,0x02,0x02,0x02,0x06,0x04,0x04,0x08,0x00,0x00,0x00,0x80,0x80,0x89,0x80,0x02,0x80,0x80,0x80,0x81,0x01,0x01,0x81,0xc2,0x00,0x00 -+// 18641 䣑 ; -+,0x00,0x00,0x10,0x10,0x15,0x15,0x15,0x15,0x15,0x11,0x11,0x11,0x01,0x0e,0x00,0x00,0x00,0x00,0x40,0x12,0x52,0x50,0x50,0x50,0x50,0x12,0x51,0x11,0x12,0x10,0x10,0x00 -+// 18642 䣒 ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x08,0x02,0x02,0x02,0x00,0x04,0x08,0x00,0x00,0x00,0x40,0x51,0x52,0x10,0x70,0x10,0x90,0x11,0x11,0x11,0x16,0x90,0x50,0x00 -+// 18643 䣓 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x10,0x10,0x15,0x15,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x00,0x93,0x92,0x90,0x10,0x50,0x50,0x50,0x51,0x51,0x53,0x50,0x90,0x00 -+// 18644 䣔 ; -+,0x00,0x02,0x02,0x0a,0x02,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x10,0x00,0x00,0x00,0x40,0x93,0x12,0x90,0x10,0x90,0x10,0x90,0x11,0x91,0x12,0x90,0x50,0x00 -+// 18645 䣕 ; -+,0x00,0x00,0x0a,0x02,0x0a,0x02,0x0a,0x02,0x02,0x00,0x00,0x01,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x13,0x92,0x10,0x90,0x10,0x10,0x50,0x51,0x11,0x92,0x90,0x90,0x00 -+// 18646 䣖 ; -+,0x00,0x00,0x14,0x10,0x15,0x10,0x15,0x10,0x14,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x22,0x22,0x22,0x20,0x00,0x2a,0x0a,0x8a,0x2a,0x00,0x00,0x01,0x3f,0x00 -+// 18647 䣗 ; -+,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x0a,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xd3,0x12,0x90,0x90,0x10,0x50,0x10,0x50,0x10,0x16,0x10,0x10,0x00 -+// 18648 䣘 ; -+,0x00,0x02,0x02,0x0a,0x02,0x00,0x00,0x08,0x08,0x0a,0x02,0x02,0x02,0x02,0x10,0x00,0x00,0x00,0x40,0x93,0x12,0x52,0x90,0x90,0x90,0x90,0x10,0x90,0x16,0x10,0x10,0x00 -+// 18649 䣙 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x17,0x11,0x15,0x11,0x15,0x11,0x11,0x06,0x00,0x00,0x00,0x00,0x00,0x53,0x42,0x02,0x60,0x00,0x40,0x00,0x40,0x00,0x02,0x00,0x50,0x00 -+// 18650 䣚 ; -+,0x00,0x02,0x02,0x02,0x12,0x02,0x02,0x12,0x12,0x14,0x04,0x08,0x09,0x03,0x0c,0x00,0x00,0x00,0x00,0x93,0xd2,0x12,0x10,0xd0,0x10,0x10,0x90,0x90,0x16,0x90,0x50,0x00 -+// 18651 䣛 ; -+,0x00,0x02,0x02,0x06,0x06,0x0a,0x00,0x02,0x04,0x02,0x06,0x02,0x02,0x12,0x02,0x00,0x00,0x00,0x00,0x13,0x12,0x50,0x10,0x10,0xd0,0x50,0x90,0x10,0x96,0x50,0x10,0x00 -+// 18652 䣜 ; -+,0x00,0x02,0x02,0x02,0x12,0x12,0x12,0x13,0x10,0x14,0x14,0x14,0x04,0x04,0x0c,0x00,0x00,0x00,0x40,0x13,0x52,0x12,0x10,0xd0,0x10,0x90,0x10,0x10,0x16,0x50,0x10,0x00 -+// 18653 䣝 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x13,0x10,0x11,0x12,0x14,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x42,0x12,0x12,0x10,0xd0,0x90,0x10,0x10,0xd0,0x12,0x94,0x10,0x10,0x00 -+// 18654 䣞 ; -+,0x00,0x00,0x15,0x15,0x15,0x15,0x00,0x05,0x02,0x02,0x02,0x0a,0x04,0x04,0x00,0x00,0x00,0x00,0x40,0x53,0x52,0x52,0x90,0x50,0x10,0x50,0x10,0x50,0x16,0x10,0x10,0x00 -+// 18655 䣟 ; -+,0x00,0x00,0x08,0x18,0x19,0x0c,0x04,0x15,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0x91,0x92,0xd2,0x50,0x50,0x10,0x50,0x50,0x50,0x56,0x50,0x50,0x00 -+// 18656 䣠 ; -+,0x00,0x00,0x08,0x0c,0x08,0x08,0x08,0x15,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0xd3,0x92,0x92,0x90,0x50,0x10,0x90,0x90,0x90,0x96,0x90,0x90,0x00 -+// 18657 䣡 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x04,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x13,0x92,0x12,0x10,0x10,0x10,0x50,0x10,0x90,0x16,0xd0,0x50,0x00 -+// 18658 䣢 ; -+,0x00,0x00,0x08,0x0a,0x08,0x08,0x08,0x0a,0x08,0x0d,0x1b,0x19,0x09,0x09,0x09,0x00,0x00,0x00,0xc0,0x4b,0xca,0x4a,0x48,0x08,0x28,0x28,0x28,0x28,0x2a,0x28,0x28,0x00 -+// 18659 䣣 ; -+,0x00,0x02,0x0a,0x02,0x10,0x08,0x08,0x00,0x12,0x16,0x02,0x02,0x06,0x00,0x10,0x00,0x00,0x00,0x81,0xb1,0x12,0x92,0x90,0x50,0x50,0x50,0x10,0x10,0x16,0x50,0x10,0x00 -+// 18660 䣤 ; -+,0x00,0x00,0x13,0x11,0x11,0x11,0x08,0x0b,0x0b,0x0b,0x08,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x53,0x52,0x52,0x10,0x50,0x50,0x50,0x10,0xd0,0x96,0x10,0x90,0x00 -+// 18661 䣥 ; -+,0x00,0x00,0x06,0x06,0x06,0x16,0x12,0x12,0x1b,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x90,0x00,0x80,0x82,0x84,0x98,0x90,0x80,0x80,0x80,0x80,0x81,0x9f,0x00 -+// 18662 䣦 ; -+,0x00,0x00,0x04,0x04,0x06,0x16,0x10,0x10,0x19,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x88,0x00,0x80,0x9b,0x81,0x91,0x90,0x92,0x92,0x82,0xa2,0x82,0x04,0x00 -+// 18663 䣧 ; -+,0x00,0x00,0x02,0x02,0x02,0x12,0x12,0x1a,0x1b,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x80,0x04,0x80,0x90,0x90,0x90,0x90,0x90,0x90,0x88,0x88,0x85,0x83,0x00 -+// 18664 䣨 ; -+,0x00,0x00,0x0a,0x02,0x0a,0x1a,0x1a,0x1a,0x1b,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x12,0x9c,0x90,0x90,0x90,0x92,0x90,0x90,0x90,0x90,0x91,0x0e,0x00 -+// 18665 䣩 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x0b,0x0b,0x13,0x11,0x11,0x01,0x01,0x11,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x52,0x52,0x52,0x52,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 18666 䣪 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x1a,0x1a,0x1a,0x13,0x10,0x11,0x10,0x10,0x11,0x00,0x00,0x00,0x00,0x88,0x09,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x00 -+// 18667 䣫 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0b,0x0a,0x0a,0x03,0x00,0x11,0x00,0x00,0x11,0x00,0x00,0x00,0x00,0x88,0x08,0x18,0x08,0x08,0x0a,0x02,0x24,0x24,0x18,0x18,0x04,0x03,0x00 -+// 18668 䣬 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x0b,0x0b,0x03,0x11,0x01,0x01,0x01,0x01,0x21,0x00,0x00,0x00,0x90,0x12,0x10,0x12,0x10,0x10,0x12,0x14,0x18,0x18,0x08,0x04,0x02,0x00 -+// 18669 䣭 ; -+,0x00,0x00,0x08,0x0a,0x0a,0x0b,0x0a,0x0a,0x13,0x01,0x11,0x00,0x00,0x11,0x00,0x00,0x00,0x00,0x90,0x16,0x12,0x10,0x10,0x10,0x10,0x10,0x00,0x24,0x24,0x42,0x03,0x00 -+// 18670 䣮 ; -+,0x00,0x00,0x08,0x08,0x08,0x0b,0x09,0x09,0x03,0x11,0x01,0x01,0x01,0x11,0x01,0x00,0x00,0x00,0x94,0x12,0x11,0x10,0x00,0x12,0x22,0x22,0x04,0x0c,0x0c,0x16,0x23,0x00 -+// 18671 䣯 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x0b,0x0b,0x03,0x11,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x80,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x00 -+// 18672 䣰 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0b,0x10,0x11,0x00,0x00,0x11,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x22,0x02,0x02,0x22,0x00,0x00,0x00,0x00,0x20,0x00 -+// 18673 䣱 ; -+,0x00,0x00,0x08,0x0a,0x0a,0x0b,0x0b,0x0b,0x0b,0x11,0x01,0x01,0x01,0x11,0x01,0x00,0x00,0x00,0xb0,0x20,0x23,0x40,0x00,0x28,0x2a,0x2a,0x2a,0x2a,0x02,0x02,0x04,0x00 -+// 18674 䣲 ; -+,0x00,0x00,0x08,0x0a,0x0a,0x0b,0x0b,0x0b,0x0b,0x11,0x01,0x01,0x01,0x11,0x01,0x00,0x00,0x00,0x90,0x00,0x02,0x60,0x04,0x24,0x25,0x24,0x24,0x24,0x04,0x04,0x04,0x00 -+// 18675 䣳 ; -+,0x00,0x00,0x02,0x0a,0x0a,0x0b,0x0a,0x0a,0x0b,0x11,0x11,0x01,0x00,0x11,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x2a,0x0a,0x0a,0x0a,0x2a,0x02,0x02,0x06,0x00 -+// 18676 䣴 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0b,0x0a,0x0a,0x0b,0x11,0x01,0x01,0x00,0x11,0x00,0x00,0x00,0x00,0x04,0x46,0x4a,0x4a,0x56,0x46,0x42,0x00,0x00,0x20,0x20,0x00,0x47,0x00 -+// 18677 䣵 ; -+,0x00,0x00,0x0b,0x0a,0x0a,0x0b,0x0b,0x0b,0x03,0x11,0x01,0x01,0x01,0x01,0x20,0x00,0x00,0x00,0x02,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0x04,0x04,0x00 -+// 18678 䣶 ; -+,0x00,0x00,0x02,0x0a,0x0a,0x1b,0x0a,0x0a,0x03,0x01,0x01,0x01,0x00,0x11,0x00,0x00,0x00,0x00,0x8e,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x02,0x02,0x02,0x22,0x02,0x00 -+// 18679 䣷 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x0b,0x0b,0x03,0x11,0x01,0x01,0x01,0x01,0x21,0x00,0x00,0x00,0x08,0x28,0x4a,0x48,0x08,0x0b,0x18,0x18,0x2c,0x2a,0x4b,0x89,0x08,0x00 -+// 18680 䣸 ; -+,0x00,0x02,0x04,0x08,0x18,0x00,0x00,0x00,0x01,0x01,0x09,0x0a,0x08,0x08,0x08,0x00,0x00,0x08,0x20,0x20,0x20,0x20,0x22,0x02,0xa0,0xa4,0x24,0x3c,0x04,0x04,0x04,0x00 -+// 18681 䣹 ; -+,0x00,0x00,0x09,0x08,0x08,0x2d,0x29,0x21,0x33,0x21,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x2a,0x2a,0x08,0x48,0x48,0x49,0x4a,0x4a,0x44,0x44,0x4c,0x42,0x41,0x00 -+// 18682 䣺 ; -+,0x00,0x00,0x08,0x08,0x08,0x2f,0x29,0x29,0x23,0x21,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x22,0x22,0x22,0x00,0x00,0x40,0x40,0x42,0x40,0x42,0x40,0x40,0x42,0x00 -+// 18683 䣻 ; -+,0x00,0x00,0x08,0x08,0x08,0x2b,0x29,0x29,0x33,0x21,0x21,0x21,0x21,0x21,0x20,0x00,0x00,0x10,0x90,0x10,0x24,0x02,0x01,0x04,0x04,0x08,0x22,0x02,0x02,0x22,0x02,0x00 -+// 18684 䣼 ; -+,0x00,0x00,0x08,0x08,0x08,0x0f,0x09,0x09,0x03,0x11,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x88,0x01,0x00,0x00,0x22,0x22,0x22,0x0a,0x08,0x28,0x09,0x09,0x18,0x00 -+// 18685 䣽 ; -+,0x00,0x00,0x08,0x02,0x02,0x04,0x00,0x00,0x01,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xa2,0x22,0x62,0x22,0x80,0x03,0x00,0x24,0x24,0x34,0x04,0x04,0x04,0x00 -+// 18686 䣾 ; -+,0x00,0x00,0x0a,0x08,0x0a,0x1b,0x09,0x09,0x13,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x08,0x08,0x41,0x40,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0x00 -+// 18687 䣿 ; -+,0x00,0x00,0x0c,0x08,0x0d,0x09,0x09,0x09,0x11,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x02,0x08,0x09,0x08,0x08,0x08,0x00,0x42,0x4a,0x4a,0x4a,0x4a,0x03,0x00 -+// 18688 䤀 ; -+,0x00,0x00,0x0a,0x08,0x0b,0x09,0x09,0x09,0x13,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x24,0x25,0x24,0x00,0x10,0x10,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x00 -+// 18689 䤁 ; -+,0x00,0x00,0x09,0x08,0x08,0x1f,0x09,0x09,0x01,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x60,0x40,0x50,0x62,0x40,0x40,0x00 -+// 18690 䤂 ; -+,0x00,0x00,0x0c,0x08,0x0d,0x09,0x09,0x09,0x13,0x11,0x01,0x11,0x01,0x11,0x00,0x00,0x00,0x04,0x24,0x25,0x24,0x24,0x24,0x24,0x00,0x00,0x18,0x30,0x00,0x03,0x00,0x00 -+// 18691 䤃 ; -+,0x00,0x00,0x0a,0x08,0x08,0x1b,0x09,0x09,0x13,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x26,0x00,0x24,0x00,0x20,0x20,0x00 -+// 18692 䤄 ; -+,0x00,0x00,0x0a,0x08,0x0a,0x09,0x09,0x09,0x13,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x02,0x10,0x10,0x52,0x50,0x50,0x58,0x50,0x58,0x50,0x50,0x52,0x40,0x00 -+// 18693 䤅 ; -+,0x00,0x00,0x08,0x08,0x08,0x1d,0x09,0x09,0x11,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x10,0x10,0x20,0x04,0x07,0x00,0x52,0x56,0x56,0x56,0x56,0x52,0x52,0x52,0x00 -+// 18694 䤆 ; -+,0x00,0x00,0x0c,0x0c,0x0c,0x2d,0x2d,0x25,0x37,0x23,0x21,0x23,0x21,0x21,0x20,0x00,0x00,0x00,0x12,0x20,0xa1,0x24,0x46,0x13,0x10,0x10,0x12,0x10,0x24,0x02,0x00,0x00 -+// 18695 䤇 ; -+,0x00,0x00,0x0c,0x08,0x0d,0x09,0x09,0x09,0x13,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x08,0x41,0x48,0x2c,0x10,0x14,0x22,0x02,0x04,0x04,0x18,0x18,0x27,0x00 -+// 18696 䤈 ; -+,0x00,0x00,0x08,0x08,0x08,0x1f,0x09,0x09,0x11,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x20,0x24,0x47,0x20,0x22,0x00,0x04,0x08,0x52,0x5a,0x5a,0x5a,0x5b,0x00 -+// 18697 䤉 ; -+,0x00,0x00,0x08,0x08,0x08,0x1f,0x09,0x09,0x03,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x00,0x04,0x20,0xa9,0x30,0x32,0x00,0x02,0x12,0x12,0x12,0x12,0x13,0x00 -+// 18698 䤊 ; -+,0x00,0x00,0x0c,0x08,0x0d,0x09,0x09,0x09,0x13,0x11,0x01,0x11,0x01,0x11,0x01,0x00,0x00,0x00,0x24,0x24,0x20,0x01,0x24,0x24,0x24,0x24,0x24,0x25,0x24,0x04,0x04,0x00 -+// 18699 䤋 ; -+,0x00,0x00,0x12,0x04,0x08,0x0c,0x2d,0x29,0x21,0x23,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x0a,0x08,0x09,0x08,0x58,0x5a,0x52,0x56,0x44,0x04,0x4a,0x03,0x01,0x00 -+// 18700 䤌 ; -+,0x00,0x00,0x09,0x0c,0x0d,0x2d,0x2d,0x25,0x37,0x21,0x21,0x21,0x21,0x21,0x20,0x00,0x00,0x10,0x10,0x20,0x42,0x00,0x46,0x40,0x40,0x40,0x40,0x42,0x42,0x42,0x42,0x00 -+// 18701 䤍 ; -+,0x00,0x00,0x01,0x08,0x0c,0x2d,0x29,0x29,0x21,0x31,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x00,0x59,0x40,0x48,0x76,0x7a,0x40,0x40,0x42,0x00 -+// 18702 䤎 ; -+,0x00,0x00,0x01,0x08,0x08,0x2f,0x29,0x29,0x23,0x33,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x06,0x18,0x09,0x1a,0x08,0x18,0x02,0x50,0x66,0x5a,0x40,0x40,0x42,0x00 -+// 18703 䤏 ; -+,0x00,0x00,0x0f,0x0c,0x0c,0x2f,0x2d,0x25,0x27,0x23,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x00,0x22,0x00,0x22,0x00,0x22,0x20,0x0c,0x00,0x1a,0x00,0x18,0x00,0x10,0x00 -+// 18704 䤐 ; -+,0x00,0x00,0x01,0x0c,0x0c,0x2f,0x25,0x25,0x25,0x23,0x21,0x21,0x21,0x21,0x20,0x00,0x00,0x00,0x44,0x44,0xcc,0xee,0x66,0x22,0x03,0x44,0x40,0x44,0x40,0x40,0x40,0x00 -+// 18705 䤑 ; -+,0x00,0x00,0x01,0x08,0x08,0x2f,0x29,0x29,0x21,0x33,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x04,0x24,0x24,0x24,0x25,0x00,0x5a,0x42,0x5a,0x42,0x42,0x00,0x22,0x41,0x00 -+// 18706 䤒 ; -+,0x00,0x00,0x01,0x0c,0x0c,0x2f,0x2e,0x26,0x26,0x22,0x20,0x22,0x20,0x22,0x20,0x00,0x00,0x00,0x12,0x10,0xb7,0x50,0x10,0xbd,0x10,0x42,0x58,0x4a,0x6c,0x8c,0x13,0x00 -+// 18707 䤓 ; -+,0x00,0x00,0x01,0x0c,0x0c,0x2d,0x2d,0x25,0x25,0x23,0x21,0x21,0x21,0x21,0x20,0x00,0x00,0x04,0x24,0x24,0x00,0x01,0x84,0x00,0x10,0x30,0x14,0x28,0x18,0x0b,0x18,0x00 -+// 18708 䤔 ; -+,0x00,0x00,0x08,0x02,0x12,0x0a,0x00,0x00,0x00,0x00,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x82,0x80,0xc0,0x8c,0x80,0x90,0x90,0xa7,0x00,0x24,0x24,0x04,0x04,0x04,0x00 -+// 18709 䤕 ; -+,0x00,0x00,0x05,0x04,0x04,0x26,0x24,0x24,0x36,0x22,0x22,0x20,0x20,0x22,0x20,0x00,0x00,0x00,0x42,0x38,0x2a,0x48,0x08,0xed,0x00,0x10,0x38,0x30,0x14,0x13,0x10,0x00 -+// 18710 䤖 ; -+,0x00,0x00,0x0c,0x0c,0x0f,0x2d,0x24,0x24,0x27,0x20,0x22,0x20,0x21,0x23,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x20,0x2a,0x20,0x29,0x20,0x54,0x3b,0x18,0x56,0x10,0x00 -+// 18711 䤗 ; -+,0x00,0x00,0x02,0x08,0x00,0x12,0x12,0x04,0x04,0x04,0x01,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x24,0x08,0x18,0x00,0x10,0x50,0x10,0x04,0x00,0x48,0x38,0x08,0x08,0x00 -+// 18712 䤘 ; -+,0x00,0x00,0x04,0x04,0x04,0x3e,0x26,0x36,0x36,0x26,0x22,0x22,0x22,0x22,0x20,0x00,0x00,0x00,0x50,0x52,0x30,0x01,0x44,0x48,0x46,0x56,0x46,0x54,0x44,0xcb,0x11,0x00 -+// 18713 䤙 ; -+,0x00,0x00,0x04,0x04,0x04,0x3e,0x26,0x26,0x36,0x26,0x22,0x22,0x22,0x22,0x20,0x00,0x00,0x20,0x04,0x08,0x32,0x14,0x28,0x3a,0x19,0x44,0x66,0x64,0xe4,0x44,0x0d,0x00 -+// 18714 䤚 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x02,0x52,0x52,0x52,0x52,0x52,0x52,0x10,0x10,0x10,0x10,0x10,0x13,0x00 -+// 18715 䤛 ; -+,0x00,0x04,0x04,0x09,0x00,0x11,0x04,0x04,0x05,0x04,0x05,0x15,0x04,0x06,0x18,0x00,0x00,0x00,0x02,0x22,0xa2,0x22,0x22,0x22,0x22,0x26,0x32,0x02,0x02,0x02,0x02,0x00 -+// 18716 䤜 ; -+,0x00,0x04,0x04,0x09,0x00,0x10,0x04,0x04,0x05,0x04,0x15,0x14,0x04,0x1c,0x10,0x00,0x00,0x00,0x10,0x10,0x1e,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x0e,0x00 -+// 18717 䤝 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x02,0x04,0x00,0x07,0x00,0x11,0x12,0x04,0x1c,0x00,0x00,0x00,0x00,0x10,0x00,0x49,0x08,0x08,0x08,0x08,0x08,0x48,0x4a,0x0a,0x08,0x08,0x00 -+// 18718 䤞 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x10,0x04,0x04,0x05,0x04,0x05,0x14,0x04,0x1c,0x00,0x00,0x00,0x00,0x10,0x14,0x10,0x12,0x08,0x08,0x28,0x28,0x28,0x08,0x48,0x89,0x0f,0x00 -+// 18719 䤟 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x00,0x04,0x04,0x07,0x04,0x05,0x14,0x04,0x0c,0x10,0x00,0x00,0x00,0x00,0x43,0x40,0x00,0x24,0x24,0x24,0x24,0x24,0x04,0x44,0x05,0x07,0x00 -+// 18720 䤠 ; -+,0x00,0x04,0x04,0x0a,0x11,0x10,0x04,0x04,0x05,0x04,0x05,0x16,0x04,0x1c,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x40,0x48,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00 -+// 18721 䤡 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x00,0x04,0x04,0x05,0x04,0x05,0x14,0x14,0x0c,0x10,0x00,0x00,0x00,0x08,0x00,0x5a,0x42,0x42,0x4a,0x42,0x42,0x4b,0x42,0x42,0x42,0x46,0x00 -+// 18722 䤢 ; -+,0x00,0x04,0x0c,0x0b,0x11,0x02,0x04,0x04,0x05,0x04,0x15,0x14,0x04,0x1c,0x00,0x00,0x00,0x00,0x22,0x02,0x02,0x02,0x02,0x10,0x12,0x12,0x12,0x22,0x22,0x42,0x0c,0x00 -+// 18723 䤣 ; -+,0x00,0x04,0x04,0x09,0x01,0x10,0x04,0x04,0x05,0x04,0x15,0x14,0x04,0x1c,0x10,0x00,0x00,0x00,0x06,0x18,0x00,0x42,0x22,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x30,0x00 -+// 18724 䤤 ; -+,0x00,0x04,0x04,0x09,0x10,0x11,0x04,0x04,0x05,0x04,0x15,0x14,0x04,0x1c,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x10,0x02,0x24,0x08,0x12,0x26,0x04,0x00,0x23,0x01,0x00 -+// 18725 䤥 ; -+,0x00,0x04,0x04,0x0a,0x11,0x12,0x04,0x04,0x07,0x04,0x05,0x14,0x04,0x0c,0x00,0x00,0x00,0x00,0x20,0x24,0x40,0x41,0x40,0x52,0x52,0x52,0x52,0x56,0x10,0x91,0x1f,0x00 -+// 18726 䤦 ; -+,0x00,0x00,0x0c,0x0a,0x12,0x02,0x0c,0x00,0x0e,0x00,0x02,0x10,0x14,0x1c,0x00,0x00,0x00,0x00,0x50,0x52,0x90,0x90,0x90,0x92,0x82,0x8c,0x8c,0x88,0x94,0x87,0x83,0x00 -+// 18727 䤧 ; -+,0x00,0x00,0x08,0x0a,0x11,0x02,0x0c,0x00,0x0e,0x00,0x01,0x12,0x10,0x1c,0x20,0x00,0x00,0x00,0x83,0x81,0x81,0x8d,0x81,0x81,0x81,0x81,0x89,0x81,0x81,0x83,0x80,0x00 -+// 18728 䤨 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x12,0x00,0x00,0x0e,0x00,0x12,0x14,0x04,0x18,0x00,0x00,0x00,0x00,0x0e,0x40,0x42,0x58,0x50,0x50,0x56,0x54,0x54,0x14,0x92,0x13,0x01,0x00 -+// 18729 䤩 ; -+,0x00,0x04,0x04,0x0a,0x01,0x10,0x04,0x04,0x07,0x04,0x05,0x14,0x04,0x0c,0x10,0x00,0x00,0x00,0x08,0x00,0x41,0x80,0x0c,0x10,0x10,0x13,0x10,0x10,0x10,0x11,0x1f,0x00 -+// 18730 䤪 ; -+,0x00,0x04,0x04,0x0a,0x11,0x12,0x04,0x04,0x06,0x04,0x05,0x16,0x04,0x0c,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x45,0x00,0x10,0x18,0x10,0x34,0x42,0x01,0x00,0x00 -+// 18731 䤫 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x12,0x04,0x00,0x06,0x00,0x02,0x10,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x5a,0x10,0x10,0x26,0x09,0x00,0x06,0x04,0x08,0x08,0x00 -+// 18732 䤬 ; -+,0x00,0x00,0x0c,0x0a,0x12,0x02,0x00,0x00,0x0e,0x00,0x02,0x10,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0x44,0x04,0x0c,0x95,0x95,0x04,0x45,0x02,0x84,0x88,0x90,0x20,0x00 -+// 18733 䤭 ; -+,0x00,0x04,0x04,0x0a,0x11,0x12,0x04,0x04,0x06,0x04,0x04,0x14,0x04,0x18,0x00,0x00,0x00,0x00,0x04,0x18,0x24,0x00,0x11,0x20,0x28,0x4a,0x08,0x08,0x0a,0x0a,0x08,0x00 -+// 18734 䤮 ; -+,0x00,0x04,0x04,0x0a,0x11,0x00,0x04,0x04,0x0e,0x04,0x14,0x14,0x04,0x0c,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0x59,0x00,0x00,0x20,0x42,0x04,0x08,0x10,0x00,0x00 -+// 18735 䤯 ; -+,0x00,0x00,0x04,0x0a,0x01,0x10,0x00,0x00,0x0e,0x00,0x02,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x02,0xe2,0x44,0x00,0x00,0x32,0xa4,0x00,0x81,0x83,0x82,0x04,0x08,0x00 -+// 18736 䤰 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x04,0x10,0x00,0x03,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x20,0x22,0x40,0x10,0x20,0x48,0x04,0xc0,0x10,0x17,0x00,0xc4,0x00,0xd1,0x00 -+// 18737 䤱 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x00,0x04,0x04,0x05,0x04,0x05,0x14,0x14,0x0c,0x10,0x00,0x00,0x08,0x08,0x48,0x48,0x42,0x00,0x0c,0x40,0x61,0x48,0x48,0x48,0x08,0x08,0x00 -+// 18738 䤲 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x00,0x04,0x04,0x05,0x04,0x05,0x16,0x04,0x0c,0x10,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x11,0x04,0x04,0x64,0x24,0x25,0x04,0x44,0x08,0x00 -+// 18739 䤳 ; -+,0x00,0x00,0x08,0x02,0x10,0x00,0x08,0x00,0x0e,0x00,0x02,0x10,0x00,0x1c,0x00,0x00,0x00,0x00,0x10,0x00,0x28,0x48,0x42,0x92,0x4a,0x44,0x44,0x48,0x48,0x56,0x43,0x00 -+// 18740 䤴 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x00,0x04,0x00,0x06,0x00,0x01,0x12,0x10,0x0c,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x14,0xb0,0xb8,0x90,0xb8,0xd4,0x90,0x90,0x80,0x82,0x00 -+// 18741 䤵 ; -+,0x00,0x04,0x04,0x0a,0x01,0x00,0x04,0x04,0x05,0x04,0x05,0x14,0x04,0x0c,0x10,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x29,0x28,0x28,0x28,0x00 -+// 18742 䤶 ; -+,0x00,0x04,0x04,0x0b,0x01,0x00,0x04,0x04,0x07,0x04,0x05,0x14,0x04,0x0c,0x10,0x00,0x00,0x00,0x10,0x12,0x20,0x24,0x52,0x57,0x54,0x54,0x54,0x54,0x10,0x11,0x1f,0x00 -+// 18743 䤷 ; -+,0x00,0x00,0x08,0x0a,0x11,0x00,0x0c,0x00,0x02,0x00,0x02,0x12,0x10,0x0c,0x10,0x00,0x00,0x00,0x82,0x80,0xa2,0xa2,0xa2,0xa2,0x88,0x96,0x84,0x8c,0x82,0x80,0x83,0x00 -+// 18744 䤸 ; -+,0x00,0x04,0x04,0x0a,0x01,0x10,0x04,0x04,0x05,0x04,0x05,0x14,0x04,0x0c,0x10,0x00,0x00,0x00,0x20,0x24,0x04,0x00,0x09,0x20,0x42,0x1c,0x28,0x1a,0x2b,0x09,0x18,0x00 -+// 18745 䤹 ; -+,0x00,0x00,0x08,0x0a,0x11,0x00,0x04,0x04,0x07,0x04,0x05,0x16,0x14,0x0c,0x10,0x00,0x00,0x00,0x08,0x51,0x90,0x14,0x50,0x04,0x02,0x06,0x04,0x04,0x18,0x18,0x07,0x00 -+// 18746 䤺 ; -+,0x00,0x08,0x08,0x16,0x12,0x20,0x08,0x08,0x0e,0x08,0x0a,0x08,0x08,0x18,0x20,0x00,0x00,0x00,0x03,0x48,0x08,0x08,0x8b,0xa2,0xa2,0xa2,0xa2,0xb2,0xb2,0x92,0x02,0x00 -+// 18747 䤻 ; -+,0x00,0x00,0x08,0x0a,0x10,0x00,0x04,0x00,0x06,0x00,0x11,0x12,0x04,0x0c,0x00,0x00,0x00,0x00,0x20,0x20,0x02,0x48,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 18748 䤼 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x00,0x04,0x00,0x06,0x00,0x01,0x12,0x14,0x0c,0x10,0x00,0x00,0x10,0x10,0x42,0x42,0x42,0x42,0x42,0x10,0x3a,0x18,0x54,0x54,0x93,0x10,0x00 -+// 18749 䤽 ; -+,0x00,0x00,0x08,0x0a,0x11,0x02,0x08,0x00,0x0e,0x00,0x00,0x10,0x00,0x18,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x45,0x00,0x08,0x22,0x01,0x00,0x28,0x43,0x00,0x00,0x00 -+// 18750 䤾 ; -+,0x00,0x00,0x08,0x0a,0x11,0x02,0x08,0x00,0x0e,0x00,0x02,0x10,0x04,0x18,0x00,0x00,0x00,0x00,0x06,0x00,0x12,0x50,0x40,0x20,0x42,0x02,0x02,0x02,0x02,0x02,0x02,0x00 -+// 18751 䤿 ; -+,0x00,0x00,0x08,0x02,0x10,0x02,0x00,0x00,0x0c,0x00,0x12,0x14,0x04,0x38,0x00,0x00,0x00,0x00,0x41,0x44,0x40,0x4a,0x42,0x40,0x1c,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 18752 䥀 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x12,0x00,0x00,0x0e,0x00,0x02,0x12,0x04,0x18,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0x10,0x10,0x10,0x12,0x52,0x52,0x52,0x10,0x12,0xc1,0x00 -+// 18753 䥁 ; -+,0x00,0x00,0x08,0x0a,0x11,0x02,0x00,0x00,0x0e,0x00,0x02,0x10,0x04,0x38,0x00,0x00,0x00,0x00,0x06,0x04,0x10,0x12,0x80,0xa0,0x80,0x90,0x94,0x90,0x90,0x80,0x80,0x00 -+// 18754 䥂 ; -+,0x00,0x00,0x08,0x0a,0x12,0x22,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x82,0x84,0x00,0x02,0x20,0x56,0x38,0x08,0x1a,0x2a,0x09,0x10,0x00 -+// 18755 䥃 ; -+,0x00,0x00,0x08,0x0a,0x10,0x02,0x08,0x00,0x0e,0x00,0x02,0x10,0x00,0x38,0x00,0x00,0x00,0x00,0x10,0x11,0x82,0xa0,0x08,0x42,0x48,0x4a,0x48,0x4a,0x48,0x48,0x40,0x00 -+// 18756 䥄 ; -+,0x00,0x00,0x08,0x0a,0x13,0x02,0x08,0x08,0x0a,0x08,0x0a,0x18,0x09,0x39,0x00,0x00,0x00,0x00,0x82,0x80,0x94,0x96,0x94,0x94,0x80,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x00 -+// 18757 䥅 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x03,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0xc2,0x00,0x08,0x08,0x08,0x80,0x80,0x10,0x07,0x00,0xc0,0x10,0xe2,0x00 -+// 18758 䥆 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x03,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0x42,0x00,0x22,0x22,0x20,0x20,0x80,0x10,0x27,0x00,0xc0,0x10,0x02,0x00 -+// 18759 䥇 ; -+,0x00,0x00,0x08,0x0a,0x12,0x00,0x08,0x08,0x0a,0x08,0x0a,0x18,0x09,0x19,0x00,0x00,0x00,0x00,0x10,0x82,0x82,0x82,0x80,0x91,0x91,0xb5,0x91,0x35,0x51,0x11,0x32,0x00 -+// 18760 䥈 ; -+,0x00,0x04,0x0c,0x0a,0x01,0x12,0x04,0x00,0x06,0x00,0x02,0x16,0x04,0x1c,0x00,0x00,0x00,0x00,0x24,0x24,0x20,0x14,0x11,0x20,0x44,0x03,0x24,0x24,0x24,0x44,0x04,0x00 -+// 18761 䥉 ; -+,0x00,0x00,0x08,0x0a,0x11,0x12,0x00,0x00,0x0e,0x00,0x02,0x10,0x04,0x1c,0x00,0x00,0x00,0x00,0x10,0x03,0x80,0x20,0x48,0x02,0x52,0x12,0x7a,0x28,0x2a,0x49,0x0f,0x00 -+// 18762 䥊 ; -+,0x00,0x04,0x08,0x0a,0x11,0x12,0x00,0x00,0x0e,0x00,0x02,0x10,0x04,0x18,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x10,0x00,0x02,0x02,0x02,0x42,0x42,0x00,0x64,0x82,0x00 -+// 18763 䥋 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x00,0x04,0x04,0x06,0x04,0x14,0x16,0x04,0x1c,0x10,0x00,0x00,0x10,0x10,0x00,0x44,0x40,0x00,0x06,0x00,0x10,0x10,0x10,0x00,0x85,0x81,0x00 -+// 18764 䥌 ; -+,0x00,0x00,0x00,0x10,0x01,0x08,0x09,0x08,0x00,0x01,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x41,0x00,0x04,0x04,0x04,0x04,0x80,0x80,0x1c,0x02,0xc0,0x10,0x02,0x00 -+// 18765 䥍 ; -+,0x00,0x04,0x04,0x04,0x00,0x02,0x04,0x04,0x04,0x00,0x02,0x00,0x00,0x02,0x03,0x00,0x00,0x10,0x10,0x94,0x14,0x34,0x34,0x43,0x83,0x80,0x18,0x43,0xc0,0x00,0x53,0x00 -+// 18766 䥎 ; -+,0x00,0x04,0x0c,0x0a,0x01,0x12,0x04,0x00,0x06,0x00,0x12,0x14,0x04,0x18,0x00,0x00,0x00,0x00,0x00,0x04,0x80,0xba,0x84,0x94,0x83,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x00 -+// 18767 䥏 ; -+,0x00,0x00,0x08,0x11,0x14,0x00,0x08,0x09,0x0d,0x09,0x0d,0x19,0x09,0x31,0x01,0x00,0x00,0x00,0xa0,0x25,0x25,0x85,0x25,0x05,0x05,0x45,0x45,0x45,0x67,0x44,0x04,0x00 -+// 18768 䥐 ; -+,0x00,0x00,0x01,0x02,0x06,0x02,0x02,0x02,0x01,0x02,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x10,0xb4,0x04,0x98,0x0a,0x14,0x84,0x84,0x10,0x06,0x80,0x80,0x10,0xa2,0x00 -+// 18769 䥑 ; -+,0x00,0x00,0x08,0x0a,0x12,0x00,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x38,0x00,0x00,0x00,0x10,0x12,0x10,0x54,0xdc,0x02,0x30,0x20,0x33,0x24,0x48,0x18,0x28,0x00,0x00 -+// 18770 䥒 ; -+,0x00,0x00,0x01,0x12,0x10,0x11,0x00,0x02,0x04,0x00,0x03,0x00,0x00,0x02,0x01,0x00,0x00,0x04,0x04,0x04,0x12,0x52,0x50,0x12,0x41,0xc0,0x10,0x07,0xc8,0x10,0xe3,0x00 -+// 18771 䥓 ; -+,0x00,0x00,0x08,0x0a,0x12,0x02,0x08,0x00,0x0a,0x00,0x02,0x18,0x00,0x18,0x00,0x00,0x00,0x04,0x04,0x64,0x24,0x04,0x24,0x04,0x25,0x00,0x52,0x13,0x10,0x10,0x10,0x00 -+// 18772 䥔 ; -+,0x00,0x00,0x08,0x0a,0x10,0x02,0x08,0x00,0x0a,0x00,0x02,0x10,0x00,0x18,0x00,0x00,0x00,0x00,0x02,0x28,0xaa,0xa8,0xa8,0x82,0x10,0x34,0x31,0x30,0x54,0x13,0x10,0x00 -+// 18773 䥕 ; -+,0x00,0x00,0x08,0x14,0x12,0x20,0x09,0x09,0x0d,0x09,0x09,0x1d,0x09,0x11,0x01,0x00,0x00,0x00,0x04,0x04,0x80,0x42,0x5a,0x12,0x52,0xc2,0xe4,0x04,0x04,0x42,0x23,0x00 -+// 18774 䥖 ; -+,0x00,0x00,0x08,0x0a,0x10,0x12,0x00,0x00,0x0e,0x00,0x12,0x10,0x04,0x18,0x00,0x00,0x00,0x04,0x28,0x28,0x2a,0xaa,0xae,0x82,0x82,0x82,0x10,0x13,0x20,0x20,0xc6,0x00 -+// 18775 䥗 ; -+,0x00,0x00,0x08,0x14,0x12,0x20,0x08,0x08,0x0a,0x08,0x0a,0x18,0x09,0x10,0x00,0x00,0x00,0x00,0x08,0xe8,0x00,0x41,0x00,0x20,0x00,0x04,0x44,0x48,0x5a,0x53,0x81,0x00 -+// 18776 䥘 ; -+,0x00,0x08,0x08,0x12,0x12,0x22,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x38,0x00,0x00,0x00,0x00,0x44,0x44,0x8a,0x00,0x44,0x6c,0x93,0x02,0x42,0x42,0x42,0x42,0x46,0x00 -+// 18777 䥙 ; -+,0x00,0x00,0x09,0x15,0x13,0x05,0x09,0x09,0x09,0x09,0x0b,0x19,0x09,0x39,0x01,0x00,0x00,0x00,0x52,0x44,0x08,0x00,0x10,0x0a,0x48,0x44,0x4e,0x14,0x05,0x05,0x08,0x00 -+// 18778 䥚 ; -+,0x00,0x00,0x08,0x00,0x05,0x05,0x05,0x05,0x15,0x10,0x11,0x10,0x10,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x54,0x54,0x54,0x44,0xd4,0x84,0x24,0x84,0x92,0x23,0x09,0x00 -+// 18779 䥛 ; -+,0x00,0x08,0x08,0x14,0x12,0x24,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x30,0x00,0x00,0x00,0x00,0x65,0x44,0x41,0x48,0x52,0x00,0x04,0xd8,0x00,0xd2,0x10,0x92,0x30,0x00 -+// 18780 䥜 ; -+,0x00,0x08,0x09,0x15,0x13,0x25,0x09,0x09,0x0d,0x09,0x09,0x1d,0x09,0x39,0x01,0x00,0x00,0x00,0x2b,0x22,0x2a,0x20,0x22,0x00,0x10,0x32,0x30,0x18,0x10,0x00,0x02,0x00 -+// 18781 䥝 ; -+,0x00,0x08,0x08,0x04,0x12,0x04,0x08,0x08,0x0a,0x08,0x0b,0x19,0x09,0x18,0x00,0x00,0x00,0x00,0x10,0xa8,0xa8,0x2a,0xaa,0x00,0x4a,0x48,0x47,0x04,0x20,0x00,0x3e,0x00 -+// 18782 䥞 ; -+,0x00,0x00,0x08,0x14,0x12,0x24,0x08,0x08,0x0c,0x08,0x0c,0x0c,0x08,0x30,0x00,0x00,0x00,0x40,0x04,0x20,0x28,0x2a,0x22,0x22,0x42,0x80,0xa4,0xa4,0x2c,0x42,0x01,0x00 -+// 18783 䥟 ; -+,0x00,0x00,0x08,0x04,0x12,0x00,0x08,0x08,0x0a,0x09,0x0a,0x18,0x08,0x18,0x01,0x00,0x00,0x00,0xa2,0x82,0x82,0xe2,0x82,0x90,0x91,0xa1,0xa9,0xa5,0xa1,0x81,0x82,0x00 -+// 18784 䥠 ; -+,0x00,0x00,0x08,0x0a,0x12,0x00,0x08,0x08,0x0a,0x08,0x0a,0x18,0x09,0x19,0x00,0x00,0x00,0x00,0x08,0x68,0x00,0x0a,0x88,0x88,0x88,0x8a,0xde,0x54,0x54,0x02,0x03,0x00 -+// 18785 䥡 ; -+,0x00,0x00,0x09,0x15,0x01,0x21,0x09,0x09,0x0d,0x08,0x0c,0x1c,0x0a,0x30,0x00,0x00,0x00,0x00,0x88,0xbb,0x88,0xc8,0x08,0x00,0x00,0x08,0x0d,0x1c,0x1a,0x09,0x08,0x00 -+// 18786 䥢 ; -+,0x00,0x04,0x04,0x04,0x00,0x00,0x01,0x08,0x18,0x01,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x8a,0x08,0x0a,0x04,0x0c,0x12,0xc0,0x00,0x1e,0x00,0xc8,0x10,0x02,0x00 -+// 18787 䥣 ; -+,0x00,0x00,0x10,0x10,0x10,0x00,0x04,0x04,0x1c,0x01,0x02,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0xa8,0xa0,0x86,0x04,0x04,0x18,0x86,0x80,0x18,0x82,0xc8,0x10,0xa2,0x00 -+// 18788 䥤 ; -+,0x00,0x00,0x08,0x04,0x12,0x01,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x18,0x00,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x40,0x82,0x4a,0x4a,0x4a,0x44,0x40,0x7e,0x00 -+// 18789 䥥 ; -+,0x00,0x00,0x08,0x0a,0x12,0x00,0x08,0x08,0x0a,0x08,0x0a,0x1c,0x08,0x19,0x00,0x00,0x00,0x10,0x1a,0x04,0x20,0xb8,0x88,0x9a,0x9a,0x9a,0x9a,0x2c,0x2a,0x09,0x08,0x00 -+// 18790 䥦 ; -+,0x00,0x00,0x08,0x0a,0x12,0x00,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x18,0x00,0x00,0x00,0x00,0x08,0x90,0x92,0x28,0x08,0x00,0x92,0x92,0x92,0x92,0x82,0x80,0x3f,0x00 -+// 18791 䥧 ; -+,0x00,0x00,0x0c,0x0a,0x10,0x02,0x00,0x00,0x0e,0x00,0x02,0x12,0x04,0x18,0x00,0x00,0x00,0x00,0x02,0x10,0x81,0x00,0x20,0x12,0x24,0x43,0x46,0x04,0x00,0x00,0x04,0x00 -+// 18792 䥨 ; -+,0x00,0x00,0x09,0x15,0x15,0x21,0x09,0x09,0x0d,0x09,0x09,0x0d,0x09,0x19,0x21,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x08,0x08,0x08,0x00,0x44,0x44,0x00,0x02,0x00 -+// 18793 䥩 ; -+,0x00,0x00,0x08,0x15,0x10,0x24,0x08,0x09,0x0d,0x08,0x08,0x18,0x08,0x18,0x00,0x00,0x00,0x80,0x04,0x4c,0x4d,0xcd,0x01,0x00,0x00,0x32,0x12,0x12,0x16,0x01,0x01,0x00 -+// 18794 䥪 ; -+,0x00,0x00,0x08,0x04,0x12,0x00,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x38,0x01,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x44,0x00,0xaa,0x44,0x22,0x88,0x00,0x29,0x21,0x00 -+// 18795 䥫 ; -+,0x00,0x08,0x08,0x04,0x12,0x00,0x08,0x08,0x0c,0x09,0x08,0x18,0x08,0x38,0x00,0x00,0x00,0x08,0x48,0x5a,0x48,0x4b,0x88,0x8a,0x42,0x66,0x44,0xe4,0x4c,0x03,0x01,0x00 -+// 18796 䥬 ; -+,0x00,0x00,0x08,0x0c,0x12,0x00,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x18,0x00,0x00,0x00,0x00,0x48,0x48,0x10,0x13,0x10,0x92,0x92,0x92,0x90,0x0d,0x00,0x20,0x08,0x00 -+// 18797 䥭 ; -+,0x00,0x00,0x04,0x05,0x15,0x06,0x05,0x14,0x00,0x03,0x06,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x0a,0x0a,0x2a,0x0c,0x2a,0x08,0xc0,0x00,0x17,0x00,0xc0,0x10,0xd2,0x00 -+// 18798 䥮 ; -+,0x00,0x08,0x08,0x14,0x12,0x24,0x08,0x08,0x08,0x08,0x0a,0x18,0x08,0x38,0x00,0x00,0x00,0x00,0x28,0x28,0xaa,0xaa,0xaa,0x00,0xcb,0x48,0xa8,0x08,0xc8,0x4a,0x08,0x00 -+// 18799 䥯 ; -+,0x00,0x08,0x08,0x14,0x12,0x24,0x08,0x09,0x08,0x09,0x0b,0x19,0x0d,0x39,0x01,0x00,0x00,0x00,0xab,0x28,0x02,0x08,0x8a,0x98,0x08,0x27,0x20,0x29,0x28,0x28,0x27,0x00 -+// 18800 䥰 ; -+,0x00,0x08,0x08,0x14,0x02,0x24,0x08,0x08,0x0c,0x09,0x29,0x1d,0x08,0x38,0x03,0x00,0x00,0x00,0x10,0x40,0x40,0x42,0x00,0x04,0xa5,0x25,0x25,0xa5,0x04,0x25,0x08,0x00 -+// 18801 䥱 ; -+,0x00,0x00,0x08,0x0e,0x12,0x02,0x08,0x08,0x0a,0x08,0x0a,0x18,0x08,0x18,0x00,0x00,0x00,0x00,0x10,0x81,0xa0,0x42,0x42,0x42,0x42,0x40,0x41,0x80,0x26,0xa2,0x06,0x00 -+// 18802 䥲 ; -+,0x00,0x00,0x08,0x15,0x03,0x21,0x09,0x09,0x0d,0x09,0x09,0x1d,0x09,0x19,0x00,0x00,0x00,0x00,0x28,0x08,0x29,0x21,0x24,0x04,0x54,0x54,0x54,0xf0,0x0a,0x28,0x11,0x00 -+// 18803 䥳 ; -+,0x00,0x08,0x08,0x02,0x10,0x02,0x08,0x08,0x09,0x08,0x1a,0x18,0x0c,0x30,0x00,0x00,0x00,0x02,0x20,0x44,0x44,0x44,0x44,0x45,0x10,0x82,0x20,0x4c,0x88,0x30,0x4e,0x00 -+// 18804 䥴 ; -+,0x00,0x08,0x08,0x16,0x12,0x22,0x08,0x08,0x08,0x08,0x1a,0x18,0x08,0x38,0x00,0x00,0x00,0x10,0x92,0x92,0x50,0x52,0x90,0x10,0x50,0x52,0x00,0xab,0x88,0x80,0x82,0x00 -+// 18805 䥵 ; -+,0x00,0x00,0x08,0x15,0x00,0x20,0x08,0x09,0x0c,0x08,0x0c,0x1c,0x09,0x18,0x00,0x00,0x00,0x00,0x0a,0x88,0x8b,0x80,0xb6,0xa4,0xa4,0x80,0x94,0x90,0xa0,0x21,0x07,0x00 -+// 18806 䥶 ; -+,0x00,0x00,0x09,0x15,0x13,0x21,0x09,0x09,0x0d,0x09,0x09,0x0d,0x08,0x38,0x00,0x00,0x00,0x00,0x02,0x00,0x24,0x00,0x26,0x64,0x05,0x00,0x00,0x42,0x40,0x40,0x51,0x00 -+// 18807 䥷 ; -+,0x00,0x00,0x08,0x14,0x10,0x24,0x08,0x08,0x0c,0x08,0x0a,0x18,0x08,0x18,0x01,0x00,0x00,0x00,0x80,0xb0,0x10,0x14,0x14,0x14,0x94,0x14,0x04,0xa0,0xa0,0xa0,0x22,0x00 -+// 18808 䥸 ; -+,0x00,0x00,0x04,0x04,0x11,0x11,0x05,0x05,0x05,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x02,0x50,0x00,0x76,0x4e,0x16,0x46,0x36,0x82,0x10,0x07,0xc4,0x10,0xd3,0x00 -+// 18809 䥹 ; -+,0x00,0x00,0x08,0x08,0x12,0x00,0x08,0x08,0x08,0x08,0x0a,0x18,0x08,0x38,0x00,0x00,0x00,0x00,0x55,0x45,0x41,0x68,0x52,0x10,0x50,0x01,0x20,0x80,0xa6,0xac,0xd2,0x00 -+// 18810 䥺 ; -+,0x00,0x08,0x08,0x0b,0x10,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x00,0x00,0x00,0x00,0x02,0x04,0x44,0x44,0x44,0xcd,0x1c,0x14,0x24,0x04,0x04,0x04,0x08,0x00 -+// 18811 䥻 ; -+,0x00,0x08,0x08,0x0a,0x10,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x00,0x00,0x00,0x00,0x06,0x20,0x20,0x20,0x20,0x28,0x28,0x28,0x48,0x48,0x88,0x09,0x0f,0x00 -+// 18812 䥼 ; -+,0x00,0x08,0x08,0x0b,0x10,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x20,0x00,0x57,0x14,0x04,0x28,0x28,0x4a,0x12,0x02,0x22,0x42,0x0c,0x00 -+// 18813 䥽 ; -+,0x00,0x08,0x08,0x0a,0x10,0x10,0x2a,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x08,0x00,0x00,0x00,0x50,0x54,0x12,0x90,0x20,0x20,0x26,0x24,0x44,0x18,0x98,0x2c,0x07,0x00 -+// 18814 䥾 ; -+,0x00,0x08,0x08,0x0a,0x10,0x00,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x01,0x80,0x00,0x00,0x20,0x40,0x40,0x43,0x02,0x0a,0x02,0x02,0x04,0x00 -+// 18815 䥿 ; -+,0x00,0x08,0x08,0x02,0x10,0x00,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x06,0x80,0x80,0x82,0x90,0x90,0x92,0x92,0x92,0x82,0x22,0x06,0x04,0x00 -+// 18816 䦀 ; -+,0x00,0x08,0x08,0x12,0x10,0x00,0x28,0x08,0x0a,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x22,0x22,0x2a,0xa6,0x22,0x22,0x26,0x2a,0x22,0x22,0x22,0x62,0x00 -+// 18817 䦁 ; -+,0x00,0x00,0x08,0x1a,0x10,0x00,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x48,0x4a,0x4a,0x48,0x48,0x48,0x4a,0x49,0x49,0x09,0x8a,0x08,0x08,0x00 -+// 18818 䦂 ; -+,0x00,0x08,0x08,0x12,0x10,0x00,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x00,0x00,0x00,0x00,0x10,0x82,0x82,0x82,0x80,0x93,0x90,0xb4,0x92,0x34,0x58,0x10,0x32,0x00 -+// 18819 䦃 ; -+,0x00,0x08,0x08,0x0a,0x10,0x00,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x48,0x00,0x18,0x14,0x18,0x10,0x20,0x42,0x02,0x02,0x02,0x02,0x00 -+// 18820 䦄 ; -+,0x00,0x00,0x08,0x0a,0x10,0x00,0x2a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x10,0x11,0x10,0x96,0x90,0x90,0x90,0x10,0xf1,0x32,0x48,0xc8,0x46,0x63,0x00 -+// 18821 䦅 ; -+,0x00,0x08,0x08,0x1a,0x10,0x00,0x28,0x08,0x0a,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x04,0x48,0x2a,0x10,0x14,0x10,0x14,0x54,0x51,0x00,0x04,0x00,0x00,0x44,0x00 -+// 18822 䦆 ; -+,0x00,0x00,0x08,0x10,0x10,0x00,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x10,0x50,0x90,0x10,0x10,0x02,0x04,0x04,0x18,0x07,0x00 -+// 18823 䦇 ; -+,0x00,0x00,0x01,0x00,0x08,0x00,0x08,0x00,0x00,0x0c,0x08,0x00,0x11,0x39,0x00,0x00,0x00,0x00,0x20,0x20,0x04,0x42,0x03,0x10,0x20,0x20,0x02,0x02,0x02,0x02,0x0c,0x00 -+// 18824 䦈 ; -+,0x00,0x00,0x01,0x00,0x08,0x00,0x08,0x00,0x00,0x0c,0x08,0x00,0x11,0x39,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x20,0x20,0x22,0x40,0x40,0x00,0x00,0x00,0x01,0x00 -+// 18825 䦉 ; -+,0x00,0x00,0x01,0x00,0x08,0x00,0x08,0x00,0x19,0x00,0x08,0x00,0x13,0x39,0x00,0x00,0x00,0x00,0x02,0x4a,0x4a,0x4a,0x4a,0x4a,0x6a,0x6a,0x46,0x42,0x42,0x42,0x02,0x00 -+// 18826 䦊 ; -+,0x00,0x00,0x01,0x00,0x08,0x00,0x08,0x00,0x00,0x08,0x08,0x00,0x13,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x01,0x00,0x08,0x28,0x2a,0x4a,0x09,0x08,0x10,0x00 -+// 18827 䦋 ; -+,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x12,0x08,0x08,0x10,0x37,0x22,0x00,0x00,0x00,0x00,0x04,0xe0,0x08,0xeb,0x02,0x22,0x82,0xa0,0xa4,0x24,0x2c,0x42,0x01,0x00 -+// 18828 䦌 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x02,0x42,0x02,0xc2,0x02,0x02,0x02,0x02,0x06,0x00 -+// 18829 䦍 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x10,0x10,0x11,0x12,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0x12,0x02,0x22,0x42,0x02,0x12,0x02,0x06,0x00 -+// 18830 䦎 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x02,0x22,0x02,0x0a,0x22,0x22,0x2a,0x02,0x06,0x00 -+// 18831 䦏 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x10,0x11,0x11,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x82,0x82,0x22,0x3a,0x22,0x22,0x22,0x02,0x06,0x00 -+// 18832 䦐 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x02,0xc2,0x42,0x42,0x4a,0x42,0x42,0x82,0x06,0x00 -+// 18833 䦑 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x82,0xa2,0xa2,0xa2,0x82,0x02,0x12,0x02,0x06,0x00 -+// 18834 䦒 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x11,0x13,0x11,0x11,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0x92,0x82,0x02,0x12,0x12,0x12,0x02,0x06,0x00 -+// 18835 䦓 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0x82,0x92,0x82,0x12,0x12,0x12,0x02,0x06,0x00 -+// 18836 䦔 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0x32,0x02,0x02,0x22,0x02,0x0a,0x02,0x06,0x00 -+// 18837 䦕 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x11,0x10,0x10,0x11,0x11,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0x22,0x32,0x22,0x2a,0x22,0x22,0x22,0x06,0x00 -+// 18838 䦖 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0x42,0x02,0x02,0x02,0x02,0x22,0x02,0x06,0x00 -+// 18839 䦗 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x13,0x12,0x12,0x12,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0x82,0x12,0x12,0x12,0x12,0x02,0x02,0x06,0x00 -+// 18840 䦘 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x12,0x12,0x12,0x13,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x02,0x12,0x12,0x12,0x12,0x62,0x12,0x02,0x06,0x00 -+// 18841 䦙 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x42,0x42,0x42,0x22,0x2a,0x22,0x22,0x62,0x06,0x00 -+// 18842 䦚 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x02,0xc2,0x4a,0x42,0x12,0x12,0x12,0x02,0x06,0x00 -+// 18843 䦛 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x82,0x42,0x52,0xda,0x12,0xc2,0x02,0x82,0x06,0x00 -+// 18844 䦜 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x12,0x82,0xa2,0x8a,0x02,0x12,0x12,0x12,0x06,0x00 -+// 18845 䦝 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x11,0x11,0x15,0x11,0x12,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x02,0x82,0x02,0xa2,0x22,0x2a,0x2a,0x42,0x06,0x00 -+// 18846 䦞 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x12,0x14,0x10,0x10,0x14,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x02,0x22,0x22,0x32,0x22,0x22,0x2a,0x02,0x06,0x00 -+// 18847 䦟 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x12,0x12,0x11,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x02,0x12,0x32,0xca,0xd2,0x02,0x0a,0x02,0x06,0x00 -+// 18848 䦠 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x0a,0x82,0x12,0xc2,0x62,0x92,0x02,0xc2,0x06,0x00 -+// 18849 䦡 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x14,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x42,0x0a,0x22,0x22,0x22,0x12,0x12,0x12,0x06,0x00 -+// 18850 䦢 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x14,0x10,0x10,0x14,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x22,0x22,0x22,0x22,0x42,0x42,0x8a,0x02,0x06,0x00 -+// 18851 䦣 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x02,0x02,0x22,0x0a,0x02,0x32,0x02,0x02,0x06,0x00 -+// 18852 䦤 ; -+,0x00,0x00,0x11,0x11,0x11,0x10,0x10,0x11,0x13,0x10,0x10,0x11,0x13,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x02,0x0a,0x02,0x12,0x0a,0x8a,0x12,0x1a,0x02,0x06,0x00 -+// 18853 䦥 ; -+,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x13,0x13,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x02,0x12,0x92,0x12,0xba,0x16,0x12,0x02,0x06,0x00 -+// 18854 䦦 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x11,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0xc2,0x22,0x3a,0x02,0x42,0x02,0x02,0x02,0x06,0x00 -+// 18855 䦧 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x11,0x12,0x12,0x10,0x11,0x11,0x12,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x02,0x12,0x12,0x12,0x42,0x02,0x2a,0x02,0x06,0x00 -+// 18856 䦨 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x02,0x82,0xd2,0x92,0x92,0xc2,0x12,0x02,0x06,0x00 -+// 18857 䦩 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x12,0x12,0x12,0x11,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x12,0x12,0x12,0x12,0x12,0x22,0xe2,0x12,0x06,0x00 -+// 18858 䦪 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x12,0x12,0x12,0x10,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x12,0x12,0x12,0x02,0xd2,0xc2,0x32,0x12,0x06,0x00 -+// 18859 䦫 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x11,0x11,0x10,0x12,0x12,0x10,0x11,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x22,0x22,0x82,0x92,0x92,0x82,0x12,0x02,0x06,0x00 -+// 18860 䦬 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x0a,0x0a,0x2a,0x0a,0x82,0x82,0x12,0x02,0x06,0x00 -+// 18861 䦭 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x11,0x10,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x62,0x42,0xe2,0x5a,0x12,0x12,0x12,0x12,0x06,0x00 -+// 18862 䦮 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x11,0x13,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x02,0x42,0x02,0x82,0x22,0x32,0x02,0x22,0x22,0x06,0x00 -+// 18863 䦯 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x12,0x10,0x16,0x12,0x12,0x12,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x02,0x22,0x22,0x0a,0x82,0x12,0x12,0x4a,0x02,0x06,0x00 -+// 18864 䦰 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x11,0x12,0x12,0x10,0x14,0x14,0x14,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x02,0x42,0x12,0x92,0x92,0x82,0xd2,0x8a,0x7a,0x06,0x00 -+// 18865 䦱 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x11,0x12,0x12,0x12,0x12,0x10,0x16,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0xa2,0xa2,0x22,0x32,0x12,0x0a,0xca,0x1a,0x06,0x00 -+// 18866 䦲 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x11,0x12,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x82,0x22,0x2a,0x02,0x0a,0x12,0x12,0x12,0x92,0x06,0x00 -+// 18867 䦳 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x12,0x10,0x16,0x11,0x17,0x12,0x14,0x10,0x10,0x00,0x00,0x02,0x22,0x22,0x22,0x02,0x02,0xb6,0x92,0x92,0x12,0x56,0xb2,0x12,0x06,0x00 -+// 18868 䦴 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x12,0x12,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x22,0x22,0x22,0x22,0x02,0x02,0x82,0x02,0x82,0x22,0x12,0xca,0x02,0x06,0x00 -+// 18869 䦵 ; -+,0x00,0x01,0x11,0x11,0x11,0x10,0x10,0x12,0x14,0x11,0x10,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x22,0x22,0x22,0x02,0x82,0x0a,0xce,0xb2,0x92,0xb2,0x92,0x12,0x06,0x00 -+// 18870 䦶 ; -+,0x00,0x00,0x04,0x10,0x10,0x11,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x82,0x22,0x52,0x12,0xda,0x12,0xd2,0x02,0x02,0x82,0x06,0x00 -+// 18871 䦷 ; -+,0x00,0x00,0x04,0x00,0x10,0x11,0x12,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x02,0x52,0x52,0x5a,0x4a,0x4a,0x42,0x42,0x02,0x02,0x06,0x00 -+// 18872 䦸 ; -+,0x00,0x00,0x04,0x10,0x10,0x10,0x10,0x12,0x10,0x12,0x10,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x12,0x52,0x52,0x52,0x42,0x4a,0x4a,0x8a,0x0a,0x02,0x06,0x00 -+// 18873 䦹 ; -+,0x00,0x00,0x13,0x12,0x12,0x10,0x10,0x12,0x10,0x11,0x13,0x16,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 18874 䦺 ; -+,0x00,0x00,0x12,0x12,0x12,0x10,0x10,0x12,0x10,0x11,0x12,0x16,0x10,0x10,0x10,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x00 -+// 18875 䦻 ; -+,0x00,0x00,0x12,0x12,0x10,0x14,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 18876 䦼 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x10,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x10,0x34,0x04,0x04,0x24,0x24,0x20,0x20,0x48,0x40,0x84,0x03,0x00 -+// 18877 䦽 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x12,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x04,0x00,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x00 -+// 18878 䦾 ; -+,0x00,0x04,0x00,0x08,0x11,0x00,0x10,0x10,0x00,0x11,0x01,0x01,0x01,0x11,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x42,0x41,0x00,0x28,0x28,0x08,0x08,0x48,0x09,0x07,0x00 -+// 18879 䦿 ; -+,0x00,0x00,0x12,0x12,0x10,0x14,0x10,0x10,0x12,0x12,0x12,0x16,0x10,0x10,0x10,0x00,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x10,0x10,0x10,0x10,0x00 -+// 18880 䧀 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x20,0x22,0x20,0x00,0x40,0x50,0x10,0xa0,0x00,0x42,0x02,0x42,0x00 -+// 18881 䧁 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x40,0x40,0x40,0x82,0x02,0x1a,0x82,0x82,0x82,0x92,0x82,0x02,0x02,0x0e,0x00 -+// 18882 䧂 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x12,0x02,0x22,0x22,0x02,0x44,0x80,0x42,0x02,0x02,0x02,0x46,0x02,0x00 -+// 18883 䧃 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x93,0x90,0x90,0x90,0x90,0x92,0x90,0x90,0x90,0x90,0x92,0x80,0x00 -+// 18884 䧄 ; -+,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x42,0x44,0x84,0x18,0x18,0x26,0x02,0x46,0x40,0x40,0x40,0x42,0x00 -+// 18885 䧅 ; -+,0x00,0x00,0x12,0x10,0x10,0x10,0x10,0x10,0x12,0x13,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x10,0x10,0x30,0x10,0x12,0x02,0xb0,0x00,0x21,0x21,0x02,0x4a,0x84,0x03,0x00 -+// 18886 䧆 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x11,0x00,0x00,0x00,0x00,0x00,0x06,0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x82,0x01,0x00 -+// 18887 䧇 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x00,0x10,0x10,0x20,0x22,0x40,0x48,0x48,0x44,0x46,0x43,0x40,0x00 -+// 18888 䧈 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x28,0x28,0x28,0xaa,0xaa,0xaa,0xaa,0x8a,0xce,0x82,0x82,0x82,0x82,0x00 -+// 18889 䧉 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x10,0x12,0x10,0x10,0x10,0x00,0x00 -+// 18890 䧊 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x10,0x10,0x50,0x92,0x90,0x10,0x11,0x00,0x02,0x02,0x02,0x02,0x46,0x82,0x00 -+// 18891 䧋 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x10,0x12,0x16,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x82,0x82,0x82,0x82,0x82,0x82,0xaa,0x28,0x48,0x48,0x89,0x0f,0x00 -+// 18892 䧌 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x04,0x18,0x02,0x12,0x14,0x40,0x00,0x20,0x64,0x48,0x48,0x38,0x26,0x02,0x00 -+// 18893 䧍 ; -+,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x04,0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x04,0x82,0x10,0x20,0x08,0x44,0x87,0x04,0x04,0x04,0x44,0x04,0x00 -+// 18894 䧎 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x46,0x42,0x46,0x00,0x00,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x86,0x00 -+// 18895 䧏 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x44,0xa8,0x10,0x2c,0x12,0x12,0x10,0x10,0x10,0x11,0x10,0x10,0x00 -+// 18896 䧐 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x10,0x00,0x04,0x04,0x44,0x00,0x04,0x00,0x10,0x10,0x10,0x10,0x30,0x00 -+// 18897 䧑 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x11,0x10,0x00,0x00,0x10,0x10,0x81,0x82,0x00,0x12,0x10,0x10,0x92,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 18898 䧒 ; -+,0x00,0x00,0x12,0x12,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x10,0x10,0x10,0x10,0x52,0x90,0xd4,0x11,0x30,0x30,0x54,0x92,0x13,0x10,0x00 -+// 18899 䧓 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x11,0x11,0x10,0x00,0x00,0x00,0x81,0x91,0x95,0x91,0x91,0x81,0x81,0xa5,0xa5,0x25,0x21,0x01,0x02,0x00 -+// 18900 䧔 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x11,0x12,0x16,0x11,0x11,0x10,0x00,0x00,0x10,0x30,0x28,0x44,0x93,0x00,0x04,0x08,0x08,0x00,0x50,0x41,0x40,0x7e,0x00 -+// 18901 䧕 ; -+,0x00,0x00,0x16,0x04,0x04,0x00,0x01,0x05,0x01,0x03,0x16,0x04,0x03,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x11,0x10,0x32,0x32,0x24,0x2c,0x08,0x08,0x94,0x23,0x03,0x00 -+// 18902 䧖 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x08,0x22,0x24,0x18,0x38,0x0f,0x28,0x22,0x20,0x14,0x18,0x18,0x47,0x00 -+// 18903 䧗 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x80,0x02,0x42,0x42,0x42,0x42,0x20,0x46,0x84,0x18,0x18,0x07,0x00 -+// 18904 䧘 ; -+,0x00,0x00,0x12,0x12,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x40,0x40,0xc8,0x08,0x30,0x22,0x04,0x38,0x5c,0x28,0x4a,0x09,0x30,0x00 -+// 18905 䧙 ; -+,0x00,0x00,0x16,0x04,0x04,0x00,0x00,0x04,0x02,0x02,0x16,0x04,0x01,0x00,0x00,0x00,0x00,0x10,0x12,0x92,0x92,0x12,0x30,0x28,0x44,0x13,0x10,0x12,0x15,0x10,0x20,0x00 -+// 18906 䧚 ; -+,0x00,0x00,0x16,0x04,0x04,0x00,0x00,0x04,0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x44,0x44,0x00,0x02,0x02,0x2a,0x02,0x2a,0x02,0x02,0x00 -+// 18907 䧛 ; -+,0x00,0x00,0x12,0x12,0x14,0x10,0x10,0x11,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x10,0x12,0x00,0x24,0x20,0x83,0x10,0x11,0x20,0x00,0x42,0x44,0x84,0x0c,0x00 -+// 18908 䧜 ; -+,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x04,0x00,0x03,0x07,0x05,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x80,0x10,0x16,0x12,0x12,0x10,0x10,0x00,0x42,0x42,0x42,0x42,0x00 -+// 18909 䧝 ; -+,0x00,0x00,0x12,0x12,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x11,0x00,0x00,0x00,0x92,0x92,0x92,0x10,0x12,0x10,0x92,0x92,0x92,0x92,0x10,0x12,0xc1,0x00 -+// 18910 䧞 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x11,0x10,0x10,0x00,0x00,0x00,0x82,0x90,0x94,0x90,0x92,0x90,0x90,0x81,0x00,0x56,0x02,0x02,0x0c,0x00 -+// 18911 䧟 ; -+,0x00,0x00,0x16,0x04,0x04,0x00,0x00,0x04,0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x02,0x90,0x00,0x20,0x83,0x80,0xa2,0x82,0x80,0x82,0x82,0x00 -+// 18912 䧠 ; -+,0x00,0x00,0x12,0x14,0x14,0x10,0x10,0x14,0x10,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x90,0x12,0x80,0x05,0x04,0x44,0x0c,0x00 -+// 18913 䧡 ; -+,0x00,0x00,0x16,0x05,0x05,0x01,0x01,0x05,0x01,0x03,0x07,0x05,0x00,0x02,0x00,0x00,0x00,0x10,0x11,0x10,0x12,0x12,0x12,0x12,0x10,0x52,0x52,0x12,0x52,0x12,0x12,0x00 -+// 18914 䧢 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x00,0x80,0x80,0xa4,0xa4,0xa4,0x80,0x80,0xd2,0xd2,0xd2,0xd2,0x80,0x82,0x00 -+// 18915 䧣 ; -+,0x00,0x00,0x12,0x10,0x14,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x11,0x12,0x00,0x00,0x00,0x28,0x28,0xab,0xaa,0xaa,0x82,0x02,0x00,0x11,0x10,0xd4,0x13,0x30,0x00 -+// 18916 䧤 ; -+,0x00,0x00,0x16,0x04,0x04,0x00,0x00,0x04,0x00,0x02,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x84,0x09,0x00,0x48,0x02,0x00,0x30,0x20,0x30,0x20,0x4c,0x83,0x00 -+// 18917 䧥 ; -+,0x00,0x00,0x12,0x12,0x14,0x14,0x10,0x10,0x12,0x12,0x16,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x10,0x12,0x12,0x92,0x92,0x92,0x92,0x12,0xc1,0x50,0x49,0x41,0x7e,0x00 -+// 18918 䧦 ; -+,0x00,0x00,0x16,0x04,0x04,0x00,0x00,0x04,0x02,0x02,0x1c,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x30,0x04,0xa0,0x80,0x84,0x80,0x82,0x02,0x81,0x01,0x05,0xa0,0x06,0x00 -+// 18919 䧧 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x14,0x11,0x10,0x10,0x00,0x00,0x04,0x20,0x10,0x10,0x10,0x13,0x00,0x6a,0x48,0x48,0x4a,0xc4,0x4c,0x42,0x00 -+// 18920 䧨 ; -+,0x00,0x00,0x16,0x10,0x14,0x10,0x10,0x14,0x12,0x12,0x1e,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x0a,0x88,0x29,0x04,0x20,0x00,0x10,0x10,0x11,0x30,0x50,0x92,0x13,0x00 -+// 18921 䧩 ; -+,0x00,0x00,0x24,0x24,0x20,0x21,0x21,0x21,0x25,0x25,0x25,0x29,0x21,0x22,0x20,0x00,0x00,0x08,0x48,0x48,0xe9,0x52,0x42,0x42,0x42,0x4a,0x44,0x44,0x4c,0x4a,0x51,0x00 -+// 18922 䧪 ; -+,0x00,0x00,0x16,0x05,0x01,0x01,0x01,0x05,0x01,0x01,0x0d,0x00,0x02,0x02,0x20,0x00,0x00,0x00,0x10,0x00,0x08,0x18,0x40,0x72,0x10,0x22,0x10,0x25,0x24,0x18,0x26,0x00 -+// 18923 䧫 ; -+,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x05,0x00,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x44,0x44,0x00,0x00,0x20,0x44,0x38,0x54,0x22,0x83,0x30,0x00 -+// 18924 䧬 ; -+,0x00,0x00,0x16,0x04,0x05,0x00,0x00,0x04,0x02,0x00,0x0c,0x00,0x00,0x00,0x20,0x00,0x00,0x10,0x10,0x01,0x14,0x52,0x9c,0x32,0x82,0x82,0x82,0x82,0x82,0x40,0x81,0x00 -+// 18925 䧭 ; -+,0x00,0x00,0x16,0x14,0x14,0x10,0x10,0x10,0x12,0x12,0x1c,0x10,0x10,0x12,0x10,0x00,0x00,0x20,0x00,0x82,0x0a,0x0a,0x56,0x2a,0x82,0x82,0x00,0x11,0x01,0x00,0x7c,0x00 -+// 18926 䧮 ; -+,0x00,0x00,0x12,0x00,0x05,0x00,0x00,0x04,0x02,0x02,0x14,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x10,0x02,0x10,0x10,0x10,0x10,0xb2,0xaa,0xaa,0x00,0x12,0x00,0x7c,0x00 -+// 18927 䧯 ; -+,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x10,0x12,0x12,0x16,0x10,0x10,0x10,0x10,0x00,0x00,0x40,0x48,0x83,0x82,0x08,0x88,0xcf,0x68,0x80,0x92,0x92,0x28,0x0a,0x09,0x00 -+// 18928 䧰 ; -+,0x00,0x01,0x05,0x00,0x02,0x02,0x02,0x02,0x06,0x06,0x0a,0x00,0x00,0x04,0x20,0x00,0x00,0x02,0x04,0xc8,0x8a,0x50,0x54,0x40,0xc2,0x5d,0x44,0x14,0xc5,0x05,0x0c,0x00 -+// 18929 䧱 ; -+,0x00,0x00,0x08,0x00,0x0a,0x1a,0x02,0x02,0x12,0x12,0x12,0x12,0x02,0x00,0x00,0x00,0x00,0x20,0x48,0x40,0x41,0xc8,0xc8,0x4a,0x48,0x48,0x4a,0x48,0x48,0x59,0x40,0x00 -+// 18930 䧲 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x20,0x28,0x40,0x42,0x48,0xc8,0x4a,0x48,0x48,0x4a,0x48,0x48,0x5b,0x40,0x00 -+// 18931 䧳 ; -+,0x00,0x00,0x04,0x04,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x38,0x00,0x00,0x00,0x00,0x20,0x28,0x40,0x40,0x48,0xc8,0x4a,0x48,0x48,0x4a,0x48,0x48,0x4b,0x40,0x00 -+// 18932 䧴 ; -+,0x00,0x00,0x04,0x00,0x0d,0x00,0x00,0x0f,0x02,0x02,0x0c,0x04,0x0a,0x02,0x00,0x00,0x00,0x20,0x24,0x40,0x49,0x48,0x48,0x4a,0x48,0x48,0x4a,0x48,0x48,0x49,0x40,0x00 -+// 18933 䧵 ; -+,0x00,0x00,0x04,0x04,0x04,0x25,0x00,0x0c,0x08,0x08,0x00,0x12,0x02,0x00,0x00,0x00,0x00,0x20,0x28,0x40,0x41,0xc8,0xc8,0x4a,0x48,0x48,0x4a,0x48,0x48,0x49,0x40,0x00 -+// 18934 䧶 ; -+,0x00,0x02,0x04,0x04,0x0c,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x40,0x00,0x40,0x40,0x40,0x44,0x40,0x42,0x40,0x40,0x00,0x00,0x04,0x02,0x00 -+// 18935 䧷 ; -+,0x00,0x00,0x08,0x0b,0x12,0x02,0x04,0x06,0x01,0x00,0x02,0x00,0x04,0x02,0x02,0x00,0x00,0x00,0x48,0x40,0x48,0xc8,0x4a,0x48,0x48,0x4a,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18936 䧸 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x17,0x10,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x20,0x28,0x48,0x42,0x48,0x48,0x48,0x48,0x48,0x4a,0x48,0x48,0x4b,0x40,0x00 -+// 18937 䧹 ; -+,0x00,0x00,0x00,0x08,0x09,0x0a,0x02,0x06,0x0a,0x12,0x12,0x12,0x12,0x22,0x02,0x00,0x00,0x00,0x42,0x00,0x48,0x42,0xd8,0x80,0x1a,0x00,0x0a,0x08,0x00,0x5b,0x00,0x00 -+// 18938 䧺 ; -+,0x00,0x00,0x04,0x04,0x0d,0x08,0x08,0x08,0x1b,0x18,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x28,0x40,0x48,0xc8,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18939 䧻 ; -+,0x00,0x00,0x0c,0x0a,0x01,0x10,0x02,0x00,0x02,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x28,0x40,0x48,0xc8,0x48,0x4a,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18940 䧼 ; -+,0x00,0x00,0x00,0x10,0x1e,0x20,0x00,0x05,0x00,0x12,0x12,0x12,0x12,0x12,0x10,0x00,0x00,0x00,0x28,0x40,0x48,0xc8,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18941 䧽 ; -+,0x00,0x00,0x07,0x04,0x05,0x14,0x04,0x05,0x04,0x0e,0x0d,0x14,0x04,0x04,0x04,0x00,0x00,0x20,0x28,0x40,0x4a,0x48,0x48,0x4a,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18942 䧾 ; -+,0x00,0x00,0x04,0x0a,0x01,0x10,0x04,0x04,0x05,0x04,0x15,0x11,0x11,0x11,0x11,0x00,0x00,0x20,0x28,0x40,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18943 䧿 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x20,0x20,0x00,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18944 䨀 ; -+,0x00,0x00,0x04,0x06,0x09,0x04,0x04,0x04,0x04,0x0c,0x0c,0x05,0x15,0x04,0x04,0x00,0x00,0x00,0x28,0x20,0x41,0x48,0x48,0x4a,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 18945 䨁 ; -+,0x00,0x00,0x01,0x02,0x06,0x0a,0x02,0x03,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x24,0x98,0x18,0x04,0x43,0x20,0x40,0x44,0x40,0x44,0x40,0x02,0x00 -+// 18946 䨂 ; -+,0x00,0x00,0x06,0x04,0x06,0x0d,0x04,0x02,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x12,0x58,0x24,0x02,0x40,0x00,0x40,0x44,0x40,0x44,0x40,0x00,0x00 -+// 18947 䨃 ; -+,0x00,0x00,0x09,0x01,0x00,0x01,0x00,0x02,0x20,0x04,0x0d,0x09,0x0a,0x07,0x00,0x00,0x00,0x00,0x14,0x00,0x20,0x24,0x24,0xa4,0xa4,0x24,0x24,0x24,0x24,0x25,0xa0,0x00 -+// 18948 䨄 ; -+,0x00,0x04,0x04,0x08,0x12,0x01,0x02,0x02,0x02,0x1f,0x1a,0x11,0x11,0x10,0x11,0x00,0x00,0x00,0x14,0xa4,0x20,0x20,0x20,0xae,0x20,0xa0,0x2e,0x20,0x20,0x28,0xa0,0x00 -+// 18949 䨅 ; -+,0x00,0x04,0x04,0x08,0x28,0x11,0x11,0x11,0x11,0x11,0x14,0x04,0x15,0x24,0x0c,0x00,0x00,0x10,0x14,0x24,0x20,0x60,0xa0,0x2e,0x20,0x20,0x2e,0x20,0x20,0x20,0x20,0x00 -+// 18950 䨆 ; -+,0x00,0x00,0x08,0x0a,0x10,0x16,0x11,0x10,0x02,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x20,0xa4,0x84,0x98,0x88,0x86,0x40,0x44,0x40,0x40,0x44,0x40,0x42,0x00 -+// 18951 䨇 ; -+,0x00,0x00,0x02,0x11,0x14,0x14,0x15,0x14,0x10,0x00,0x01,0x01,0x06,0x05,0x00,0x00,0x00,0x00,0x28,0x28,0x6a,0x08,0x2a,0x08,0x20,0x02,0x02,0x04,0x18,0x1c,0x03,0x00 -+// 18952 䨈 ; -+,0x00,0x04,0x04,0x20,0x01,0x05,0x16,0x04,0x11,0x11,0x11,0x10,0x10,0x09,0x10,0x00,0x00,0x00,0x30,0xa4,0x21,0x60,0x20,0x2e,0xa0,0x20,0x2c,0x20,0x20,0x21,0xa0,0x00 -+// 18953 䨉 ; -+,0x00,0x00,0x0a,0x0a,0x02,0x0a,0x0a,0x00,0x02,0x04,0x09,0x09,0x0a,0x06,0x09,0x00,0x00,0x00,0x94,0x84,0xa0,0xa0,0xa0,0x24,0x20,0x20,0xa4,0x20,0x20,0x21,0xa0,0x00 -+// 18954 䨊 ; -+,0x00,0x02,0x04,0x04,0x04,0x00,0x0a,0x17,0x07,0x16,0x00,0x08,0x08,0x08,0x10,0x00,0x00,0x40,0x44,0x48,0xc4,0x00,0x28,0x68,0x2a,0xa8,0x02,0x12,0x02,0x02,0x02,0x00 -+// 18955 䨋 ; -+,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x82,0x80,0x80,0x80,0x18,0x80,0x82,0x80,0x80,0x80,0xff,0x00 -+// 18956 䨌 ; -+,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x06,0x08,0x00,0x00,0x04,0x80,0x81,0x82,0x00,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0x21,0x3f,0x00 -+// 18957 䨍 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x08,0x00,0x00,0x04,0x80,0xc1,0x02,0x00,0x00,0x00,0x10,0x14,0x10,0x13,0x10,0x10,0x10,0x00 -+// 18958 䨎 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x01,0x07,0x00,0x00,0x00,0x40,0xc3,0x42,0x40,0x00,0x80,0x88,0x88,0x10,0x10,0x22,0x43,0x41,0x00 -+// 18959 䨏 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x00,0x0c,0x40,0x43,0x42,0x40,0x40,0x40,0x42,0x84,0x20,0x20,0x10,0x4c,0x03,0x00 -+// 18960 䨐 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x04,0x04,0x04,0x00,0x00,0x04,0x40,0xc3,0x42,0x40,0x00,0x00,0x80,0x18,0x17,0x00,0x08,0x08,0x08,0x00 -+// 18961 䨑 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x01,0x04,0x00,0x00,0x04,0x00,0x82,0x00,0x80,0x00,0x80,0x84,0x84,0x80,0x82,0x02,0x24,0x0e,0x00 -+// 18962 䨒 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x01,0x01,0x05,0x01,0x05,0x19,0x03,0x00,0x00,0x04,0xc0,0xc3,0x02,0x00,0x00,0x00,0x06,0x00,0x10,0x04,0x10,0x20,0x0c,0x00 -+// 18963 䨓 ; -+,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0x04,0x80,0x80,0x82,0x80,0x80,0x80,0x04,0x04,0x34,0x04,0x24,0x04,0x04,0x00 -+// 18964 䨔 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x02,0x02,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0xc2,0x00,0x00,0x00,0x48,0x08,0x00,0x20,0x20,0x20,0x22,0x3e,0x00 -+// 18965 䨕 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x04,0x00,0x10,0x00,0x04,0x08,0x08,0x08,0x00,0x00,0x04,0x00,0xc3,0x00,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x10,0x30,0x00 -+// 18966 䨖 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x01,0x02,0x06,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x04,0x80,0x82,0x00,0x80,0x80,0x82,0x00,0x08,0x08,0x08,0x08,0x00,0x08,0x00 -+// 18967 䨗 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0xc2,0x00,0x80,0x18,0x88,0x90,0x00,0x10,0x40,0xc2,0x00,0x80,0x80 -+// 18968 䨘 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x01,0x02,0x04,0x00,0x00,0x04,0x80,0xc3,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x28,0x20,0x20,0x3e,0x00 -+// 18969 䨙 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x08,0x00,0x10,0x04,0x00,0x08,0x08,0x08,0x00,0x00,0x04,0xc0,0xc3,0x02,0x80,0x00,0x04,0x30,0x00,0x22,0x20,0x00,0x00,0x02,0x00 -+// 18970 䨚 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x02,0x06,0x09,0x02,0x00,0x00,0x02,0x12,0x02,0x00,0x00,0x04,0x80,0xc3,0x00,0x80,0x00,0xa4,0x24,0x44,0x0c,0x08,0x42,0x01,0x08,0x00 -+// 18971 䨛 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x04,0x04,0x0c,0x0c,0x15,0x04,0x04,0x04,0x00,0x00,0x04,0x40,0xc3,0x42,0x40,0x40,0x06,0x40,0x40,0x48,0x48,0x48,0x88,0x08,0x00 -+// 18972 䨜 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x01,0x11,0x01,0x00,0x00,0x04,0x40,0xc3,0x02,0x00,0x00,0x00,0x00,0x24,0x00,0x24,0x40,0x40,0x04,0x00 -+// 18973 䨝 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x80,0xc3,0x80,0x00,0x00,0x40,0x40,0x42,0x08,0x08,0x08,0x08,0x08,0x00 -+// 18974 䨞 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x08,0x08,0x00,0x08,0x00,0x02,0x00,0x00,0x00,0x04,0xc0,0xc3,0x02,0x00,0x30,0x40,0xcc,0xc4,0x40,0xc2,0xd2,0x02,0x06,0x00 -+// 18975 䨟 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x08,0x04,0x00,0x10,0x00,0x08,0x18,0x00,0x00,0x00,0x00,0xc0,0xc2,0x02,0x00,0x00,0x20,0x24,0x20,0x22,0x20,0x24,0x20,0x22,0x00 -+// 18976 䨠 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x04,0x00,0x06,0x04,0x08,0x05,0x04,0x00,0x00,0x00,0x04,0x00,0xc2,0x00,0x80,0x08,0x08,0x08,0x00,0x02,0xc2,0x20,0x04,0x0c,0x00 -+// 18977 䨡 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x01,0x10,0x10,0x14,0x10,0x10,0x00,0x00,0x0c,0x00,0xc3,0x00,0x00,0x00,0x30,0x08,0x02,0x02,0x12,0x0a,0x82,0x02,0x00 -+// 18978 䨢 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x01,0x04,0x00,0x00,0x04,0x40,0x43,0x40,0x40,0x00,0x12,0x10,0x10,0x10,0x11,0x80,0x08,0x02,0x00 -+// 18979 䨣 ; -+,0x00,0x00,0x00,0x10,0x20,0x00,0x02,0x02,0x02,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x80,0xc3,0x80,0x80,0x00,0x30,0x20,0x00,0xcc,0xc8,0x00,0xc0,0x80,0x00 -+// 18980 䨤 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x08,0x01,0x05,0x05,0x01,0x01,0x0c,0x11,0x00,0x00,0x04,0x40,0x43,0x40,0x40,0x00,0x20,0x24,0x24,0x24,0x24,0x24,0x00,0xfe,0x00 -+// 18981 䨥 ; -+,0x00,0x00,0x00,0x10,0x20,0x02,0x04,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x00,0xc3,0x00,0x00,0x44,0x40,0x40,0x40,0x44,0x08,0x18,0x20,0x3e,0x00 -+// 18982 䨦 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x01,0x00,0x10,0x01,0x01,0x02,0x04,0x00,0x00,0x04,0x40,0x43,0x40,0x00,0x40,0x10,0x00,0x43,0x40,0x00,0x08,0x08,0x18,0x00 -+// 18983 䨧 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x01,0x09,0x0a,0x00,0x1c,0x00,0x00,0x00,0x04,0x40,0xc3,0x40,0x40,0x00,0x10,0xa0,0x02,0x09,0x06,0x04,0x00,0x08,0x00 -+// 18984 䨨 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x08,0x00,0x0c,0x00,0x00,0x00,0x0c,0x11,0x00,0x00,0x04,0x40,0x43,0x40,0x40,0x00,0x20,0x84,0x84,0x80,0x86,0x80,0x00,0xfe,0x00 -+// 18985 䨩 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x04,0x03,0x02,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x0c,0x00,0xc3,0x00,0x00,0x00,0x10,0x52,0x12,0x52,0x12,0x52,0x10,0x10,0x00 -+// 18986 䨪 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x04,0x04,0x06,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x04,0x00,0xc3,0x00,0x00,0x00,0x06,0x90,0x94,0x90,0x90,0x14,0x10,0x13,0x00 -+// 18987 䨫 ; -+,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x04,0x04,0x0b,0x02,0x01,0x00,0x00,0x01,0x00,0x00,0x08,0x80,0x82,0x80,0x00,0x82,0x88,0x88,0x84,0x10,0x96,0x30,0xe0,0x30,0x00 -+// 18988 䨬 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x08,0x00,0x11,0x01,0x09,0x12,0x10,0x10,0x00,0x00,0x04,0xc0,0xc3,0x02,0x00,0x00,0x88,0x88,0x8c,0x8c,0x5a,0x09,0x08,0x08,0x00 -+// 18989 䨭 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x04,0x01,0x00,0x00,0x04,0x08,0x11,0x10,0x00,0x00,0x08,0x08,0x2a,0x88,0x08,0x2a,0x20,0x22,0x20,0xa2,0x22,0x20,0x20,0xa2,0x00 -+// 18990 䨮 ; -+,0x00,0x00,0x00,0x10,0x20,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0xc3,0x00,0x80,0x10,0x10,0x10,0x12,0x00,0x0c,0x0c,0x04,0x0c,0x00 -+// 18991 䨯 ; -+,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x12,0x14,0x10,0x10,0x12,0x14,0x10,0x10,0x00,0x00,0x04,0x80,0xc3,0x80,0x80,0x00,0x32,0x00,0xa4,0xa4,0xb4,0x60,0x84,0x02,0x00 -+// 18992 䨰 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x08,0x00,0x10,0x01,0x09,0x18,0x08,0x08,0x00,0x00,0x04,0x80,0x83,0x00,0x80,0x00,0x8a,0x08,0x20,0x24,0x24,0x20,0x20,0x20,0x00 -+// 18993 䨱 ; -+,0x00,0x00,0x00,0x00,0x20,0x00,0x04,0x08,0x05,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x80,0xc3,0x80,0x00,0x82,0x80,0x84,0x84,0xc4,0x44,0x08,0x30,0x0c,0x00 -+// 18994 䨲 ; -+,0x00,0x00,0x04,0x04,0x24,0x04,0x04,0x00,0x04,0x08,0x1a,0x1a,0x1a,0x11,0x00,0x00,0x00,0x10,0x10,0xa4,0x80,0x40,0x5a,0x42,0x52,0x18,0x18,0x0a,0x2a,0x09,0x07,0x00 -+// 18995 䨳 ; -+,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x0a,0x0a,0x12,0x00,0x00,0x04,0x80,0x83,0x80,0x80,0x00,0x44,0x44,0x44,0x40,0x4c,0x28,0x28,0x4f,0x00 -+// 18996 䨴 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x05,0x05,0x05,0x04,0x02,0x02,0x02,0x1e,0x00,0x00,0x04,0x80,0xc3,0x00,0x80,0x00,0x40,0x05,0x40,0x00,0x08,0x00,0x00,0x04,0x00 -+// 18997 䨵 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x08,0x01,0x11,0x00,0x08,0x18,0x08,0x08,0x00,0x00,0x04,0x80,0xc3,0x80,0x80,0x02,0x50,0x52,0x04,0x84,0x84,0x84,0x21,0x20,0x00 -+// 18998 䨶 ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x06,0x02,0x0a,0x0a,0x0a,0x08,0x00,0x04,0x08,0x00,0x00,0x04,0x40,0x43,0x40,0x80,0x08,0x08,0x00,0x00,0x00,0xa0,0xa2,0xa2,0xa2,0x00 -+// 18999 䨷 ; -+,0x00,0x00,0x00,0x10,0x20,0x00,0x08,0x09,0x1c,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x00,0xc3,0x00,0x00,0x80,0x8a,0xc0,0x9a,0x82,0x84,0x9c,0x88,0x96,0x00 -+// 19000 䨸 ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x12,0x12,0x10,0x10,0x10,0x12,0x16,0x10,0x10,0x00,0x00,0x04,0x00,0xc3,0x00,0x00,0x1c,0x10,0x00,0x02,0x04,0x04,0x00,0x11,0x44,0x00 -+// 19001 䨹 ; -+,0x00,0x00,0x00,0x10,0x10,0x00,0x04,0x08,0x0a,0x1a,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x04,0x00,0xc3,0x00,0x00,0x64,0x08,0x38,0x86,0x98,0x94,0x10,0x00,0x0a,0x00 -+// 19002 䨺 ; -+,0x00,0x00,0x00,0x10,0x00,0x00,0x01,0x02,0x01,0x04,0x24,0x02,0x00,0x08,0x11,0x00,0x00,0x04,0x80,0x02,0x00,0x00,0x10,0x08,0x0a,0x09,0x08,0x00,0x01,0x10,0x22,0x00 -+// 19003 䨻 ; -+,0x00,0x00,0x04,0x04,0x00,0x15,0x15,0x15,0x01,0x04,0x24,0x00,0x15,0x15,0x15,0x00,0x00,0x00,0x08,0xc9,0x00,0x2a,0x2a,0x2a,0x02,0x08,0x48,0x00,0x2a,0x2a,0x2a,0x00 -+// 19004 䨼 ; -+,0x00,0x04,0x04,0x0c,0x04,0x04,0x05,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x2e,0x00,0x00,0x42,0x50,0x40,0x58,0x52,0x00,0x04,0x28,0x18,0x06,0x00 -+// 19005 䨽 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x22,0x20,0x20,0x20,0x20,0x00,0x08,0x08,0x08,0x00,0x00,0x02,0xfe,0x00 -+// 19006 䨾 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x20,0x00,0x00,0x40,0x40,0x02,0x00,0x90,0x92,0x80,0x80,0x90,0x80,0x82,0x90,0x80,0x80,0x00 -+// 19007 䨿 ; -+,0x00,0x00,0x00,0x01,0x03,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x80,0x00,0x00,0x10,0x0c,0x22,0x24,0x20,0x24,0x20,0x20,0x20,0x20,0x00 -+// 19008 䩀 ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x04,0x04,0x00,0x04,0x03,0x06,0x00,0x00,0x20,0x22,0x20,0x20,0x21,0x20,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x06,0x00 -+// 19009 䩁 ; -+,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x20,0x22,0x30,0x88,0x84,0x80,0x0c,0x10,0x10,0x12,0x10,0x1f,0x00 -+// 19010 䩂 ; -+,0x00,0x00,0x00,0x04,0x00,0x09,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x2b,0x20,0x00,0x00,0x00,0x90,0x10,0x00,0xa4,0x02,0x09,0x08,0x04,0x04,0x04,0x08,0x08,0x10,0x00 -+// 19011 䩃 ; -+,0x00,0x00,0x01,0x04,0x00,0x09,0x29,0x29,0x2d,0x29,0x2d,0x29,0x29,0x2d,0x21,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x5c,0x40,0x40,0x40,0x40,0x40,0x48,0x61,0x47,0x00 -+// 19012 䩄 ; -+,0x00,0x00,0x01,0x04,0x00,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x2b,0x20,0x00,0x00,0x00,0x02,0x02,0x02,0x92,0x12,0x12,0x12,0x12,0x18,0x08,0x28,0x48,0x0f,0x00 -+// 19013 䩅 ; -+,0x00,0x00,0x00,0x04,0x00,0x29,0x29,0x29,0x2d,0x29,0x29,0x29,0x29,0x2f,0x20,0x00,0x00,0x00,0x88,0x08,0x49,0x48,0x48,0x4a,0x42,0x40,0x44,0x48,0x08,0x94,0x03,0x00 -+// 19014 䩆 ; -+,0x00,0x00,0x00,0x04,0x00,0x09,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x2b,0x20,0x00,0x00,0x10,0x90,0x20,0x31,0x90,0x10,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 19015 䩇 ; -+,0x00,0x00,0x00,0x04,0x00,0x29,0x29,0x29,0x29,0x29,0x2d,0x29,0x29,0x2f,0x01,0x00,0x00,0x00,0x90,0x10,0x11,0x10,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19016 䩈 ; -+,0x00,0x00,0x04,0x00,0x00,0x2d,0x29,0x2d,0x29,0x29,0x2d,0x29,0x29,0x21,0x21,0x00,0x00,0x00,0x20,0x21,0x40,0x22,0x22,0x2a,0x23,0x42,0x42,0x40,0x47,0x04,0x0c,0x00 -+// 19017 䩉 ; -+,0x00,0x00,0x01,0x00,0x08,0x2d,0x25,0x25,0x2d,0x25,0x2d,0x25,0x25,0x2d,0x21,0x00,0x00,0x00,0x00,0x12,0x10,0x00,0x52,0x42,0x52,0x42,0x52,0x42,0x42,0x52,0x52,0x00 -+// 19018 䩊 ; -+,0x00,0x00,0x01,0x00,0x08,0x2d,0x25,0x25,0x2d,0x25,0x2d,0x25,0x25,0x2d,0x21,0x00,0x00,0x00,0x08,0x01,0x41,0x00,0x4a,0x5a,0x0a,0x6a,0x2a,0x0a,0x48,0x08,0x0d,0x00 -+// 19019 䩋 ; -+,0x00,0x00,0x02,0x08,0x00,0x36,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x27,0x00,0x00,0x00,0x00,0x08,0x82,0x80,0xa0,0xa5,0xa6,0xb6,0xa6,0xad,0xa1,0xa0,0x20,0x20,0x00 -+// 19020 䩌 ; -+,0x00,0x00,0x01,0x00,0x08,0x2d,0x25,0x25,0x25,0x25,0x2d,0x25,0x25,0x25,0x00,0x00,0x00,0x20,0x28,0x40,0x48,0x48,0x48,0x48,0x4a,0x48,0x48,0x40,0x00,0x00,0x95,0x00 -+// 19021 䩍 ; -+,0x00,0x00,0x01,0x08,0x00,0x2f,0x24,0x25,0x25,0x24,0x2c,0x24,0x24,0x27,0x00,0x00,0x00,0x00,0x10,0x30,0xa2,0x44,0x46,0x47,0x44,0x44,0x54,0x10,0x50,0x92,0x30,0x00 -+// 19022 䩎 ; -+,0x00,0x00,0x01,0x08,0x08,0x2d,0x25,0x25,0x25,0x25,0x2d,0x25,0x25,0x25,0x00,0x00,0x00,0x00,0x10,0x20,0x04,0x07,0x00,0x3b,0x00,0x00,0x00,0x20,0x44,0x44,0x91,0x00 -+// 19023 䩏 ; -+,0x00,0x00,0x02,0x08,0x08,0x27,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x26,0x21,0x00,0x00,0x00,0x24,0x24,0x00,0x2a,0x2a,0x2a,0x08,0x0a,0x08,0xca,0xa4,0x8c,0x13,0x00 -+// 19024 䩐 ; -+,0x00,0x00,0x09,0x0b,0x08,0x04,0x04,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x20,0x20,0x20,0x00,0x00,0x8c,0x08,0x00,0x10,0x80,0x20,0x21,0x3e,0x00 -+// 19025 䩑 ; -+,0x00,0x00,0x00,0x1b,0x08,0x0c,0x04,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x22,0x20,0x20,0x22,0x02,0x82,0x02,0x02,0x0c,0x00 -+// 19026 䩒 ; -+,0x00,0x00,0x00,0x1b,0x0a,0x04,0x04,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x08,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x80,0x00,0x00,0x10,0x00 -+// 19027 䩓 ; -+,0x00,0x00,0x09,0x0b,0x08,0x04,0x04,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x30,0x20,0x21,0x41,0x01,0x98,0x10,0x20,0x0c,0xa6,0x02,0x02,0x06,0x00 -+// 19028 䩔 ; -+,0x00,0x00,0x00,0x1b,0x00,0x04,0x04,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x14,0x04,0x24,0x24,0x03,0x02,0x02,0x04,0x04,0x98,0x18,0x24,0x03,0x00 -+// 19029 䩕 ; -+,0x00,0x00,0x02,0x1a,0x02,0x0c,0x04,0x15,0x15,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x01,0x41,0x41,0x41,0x41,0x41,0x49,0x61,0x43,0x00,0x00,0x08,0x00 -+// 19030 䩖 ; -+,0x00,0x00,0x09,0x0b,0x08,0x04,0x04,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x22,0x01,0x80,0x00,0x0a,0x04,0x88,0x10,0x20,0x00,0x00 -+// 19031 䩗 ; -+,0x00,0x09,0x09,0x09,0x09,0x04,0x04,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0xa2,0x22,0x22,0x22,0x82,0x42,0x02,0x06,0x00 -+// 19032 䩘 ; -+,0x00,0x00,0x09,0x0b,0x08,0x04,0x04,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x12,0xa4,0x3c,0x08,0x00,0x80,0x22,0x73,0x00,0x00 -+// 19033 䩙 ; -+,0x00,0x00,0x00,0x1b,0x00,0x04,0x04,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x01,0x00,0x08,0x10,0x06,0x24,0x28,0x08,0x90,0x22,0x72,0x00,0x00 -+// 19034 䩚 ; -+,0x00,0x00,0x00,0x1b,0x08,0x04,0x04,0x15,0x15,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0e,0x28,0x08,0x08,0x28,0xa8,0x08,0x00,0x04,0x84,0x04,0x23,0x09,0x00 -+// 19035 䩛 ; -+,0x00,0x00,0x02,0x1a,0x0a,0x04,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x0a,0x02,0x10,0x04,0x04,0x49,0x59,0x10,0x90,0x20,0x52,0x1e,0x00 -+// 19036 䩜 ; -+,0x00,0x00,0x09,0x09,0x09,0x0c,0x04,0x15,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x29,0x09,0x89,0x29,0x29,0x09,0x89,0x09,0x29,0x00,0x00 -+// 19037 䩝 ; -+,0x00,0x00,0x00,0x0b,0x00,0x0c,0x04,0x15,0x15,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x50,0x50,0x54,0x54,0x50,0x50,0x52,0x52,0x52,0x17,0x91,0x01,0x00 -+// 19038 䩞 ; -+,0x00,0x00,0x02,0x1a,0x02,0x06,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19039 䩟 ; -+,0x00,0x00,0x02,0x1a,0x02,0x06,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x00,0x1a,0x12,0x52,0x50,0x51,0x11,0x01,0x26,0x40,0x03,0x00 -+// 19040 䩠 ; -+,0x00,0x10,0x12,0x12,0x10,0x08,0x00,0x1a,0x02,0x0a,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x44,0x44,0x64,0x24,0x24,0x24,0x45,0x40,0x70,0x0f,0x00 -+// 19041 䩡 ; -+,0x00,0x02,0x12,0x12,0x12,0x16,0x00,0x2d,0x01,0x25,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x52,0x52,0x35,0x18,0x18,0x20,0x24,0x46,0x03,0x00 -+// 19042 䩢 ; -+,0x00,0x10,0x12,0x12,0x10,0x08,0x08,0x2a,0x2a,0x2a,0x09,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x42,0x10,0xf0,0x10,0x11,0x50,0x50,0x90,0x90,0x10,0x00,0x20,0x80,0x00 -+// 19043 䩣 ; -+,0x00,0x02,0x12,0x12,0x12,0x0c,0x00,0x0d,0x01,0x2d,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x24,0x42,0x05,0x10,0x10,0x10,0x10,0x50,0x12,0x11,0x30,0x00 -+// 19044 䩤 ; -+,0x00,0x00,0x02,0x1a,0x02,0x06,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x22,0x02,0x22,0x02,0x02,0x02,0x02,0x36,0x14,0x94,0x24,0x25,0x47,0x00 -+// 19045 䩥 ; -+,0x00,0x12,0x12,0x12,0x10,0x18,0x08,0x2a,0x2a,0x2a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x42,0x4c,0x44,0x04,0x94,0xb4,0x34,0x14,0x54,0x54,0x40,0x30,0x0f,0x00 -+// 19046 䩦 ; -+,0x00,0x04,0x0c,0x18,0x08,0x08,0x08,0x00,0x02,0x02,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x20,0x42,0x48,0x38,0x30,0x06,0x10,0x30,0x20,0x80,0x84,0xc0,0xc2,0x80,0x00 -+// 19047 䩧 ; -+,0x00,0x00,0x01,0x13,0x02,0x04,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0xa2,0x22,0x22,0x22,0x00 -+// 19048 䩨 ; -+,0x00,0x00,0x02,0x1a,0x02,0x04,0x04,0x05,0x05,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x00,0x24,0x00,0x24,0x00,0x41,0x40,0x44,0x48,0x44,0x66,0x40,0x00 -+// 19049 䩩 ; -+,0x00,0x00,0x12,0x12,0x12,0x1a,0x00,0x2f,0x20,0x2d,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x41,0x82,0x40,0x4a,0x7a,0x0a,0xaa,0x6a,0x0a,0x48,0x09,0x0f,0x00 -+// 19050 䩪 ; -+,0x00,0x00,0x13,0x02,0x02,0x04,0x04,0x15,0x05,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x02,0x80,0x04,0x00,0x04,0x00,0x00,0x02,0x02,0x02,0x42,0x00 -+// 19051 䩫 ; -+,0x00,0x02,0x13,0x12,0x02,0x00,0x00,0x05,0x01,0x05,0x00,0x05,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x19,0x01,0x01,0x05,0x35,0x73,0x5b,0x01,0x01,0x83,0x00 -+// 19052 䩬 ; -+,0x00,0x00,0x02,0x1a,0x02,0x04,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x18,0x10,0x10,0x31,0x20,0x02,0x01,0x10,0x00,0x18,0x00,0x00,0x00 -+// 19053 䩭 ; -+,0x00,0x00,0x03,0x02,0x02,0x04,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x12,0x10,0x04,0x00,0x03,0x02,0x52,0x42,0x42,0x42,0x02,0x04,0x00 -+// 19054 䩮 ; -+,0x00,0x00,0x03,0x02,0x0a,0x04,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x10,0x52,0x38,0x18,0x14,0x92,0x13,0x30,0x00 -+// 19055 䩯 ; -+,0x00,0x00,0x02,0x12,0x02,0x04,0x04,0x05,0x05,0x1d,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x04,0x00,0x08,0x29,0x28,0x2a,0x2a,0x29,0x09,0x10,0x00,0x00,0x00 -+// 19056 䩰 ; -+,0x00,0x00,0x02,0x12,0x02,0x0e,0x00,0x25,0x01,0x05,0x00,0x05,0x00,0x00,0x04,0x00,0x00,0x00,0x44,0x44,0x44,0x00,0x02,0x00,0x04,0x00,0x04,0x00,0x07,0x04,0x00,0x00 -+// 19057 䩱 ; -+,0x00,0x02,0x12,0x12,0x02,0x04,0x00,0x15,0x01,0x05,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x20,0x46,0x03,0x00,0x12,0x12,0x52,0x12,0x52,0x12,0x12,0x32,0x00 -+// 19058 䩲 ; -+,0x00,0x00,0x0b,0x02,0x0a,0x04,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x41,0x50,0x55,0x54,0x54,0x10,0x42,0x04,0x94,0x88,0x1c,0x03,0x00 -+// 19059 䩳 ; -+,0x00,0x00,0x02,0x12,0x02,0x04,0x04,0x05,0x05,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x83,0x90,0x14,0x50,0x20,0x02,0x02,0x04,0x04,0x18,0x18,0x06,0x00 -+// 19060 䩴 ; -+,0x00,0x10,0x13,0x12,0x12,0x08,0x0a,0x0a,0x0a,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x49,0x48,0x48,0x48,0x4a,0x48,0xa8,0x8a,0x88,0xb8,0x90,0x10,0x22,0x00 -+// 19061 䩵 ; -+,0x00,0x02,0x12,0x12,0x12,0x0e,0x04,0x05,0x01,0x25,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x40,0x08,0x18,0x08,0x4a,0x5a,0x42,0x5a,0x00,0x18,0x00,0x00,0x00 -+// 19062 䩶 ; -+,0x00,0x02,0x02,0x12,0x02,0x0e,0x04,0x05,0x05,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x42,0x5a,0x00,0x1b,0x00,0x00,0x5a,0x42,0x5a,0x00,0x0a,0xc1,0x00 -+// 19063 䩷 ; -+,0x00,0x12,0x13,0x12,0x12,0x1c,0x00,0x2d,0x21,0x2d,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x02,0x24,0x04,0x43,0x10,0x00,0x30,0x20,0x22,0x22,0x44,0x0c,0x00 -+// 19064 䩸 ; -+,0x00,0x02,0x12,0x12,0x12,0x1a,0x00,0x0d,0x01,0x0d,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x01,0x24,0x24,0x24,0x24,0x24,0x25,0x24,0x04,0x04,0x00 -+// 19065 䩹 ; -+,0x00,0x02,0x12,0x12,0x12,0x1e,0x00,0x2d,0x21,0x2d,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x24,0x00,0x24,0x00,0x43,0x00,0x00,0x58,0x00,0x00,0x02,0x00 -+// 19066 䩺 ; -+,0x00,0x02,0x12,0x12,0x12,0x0e,0x04,0x25,0x20,0x24,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x44,0x12,0x23,0x44,0x40,0x22,0x22,0x66,0x22,0xa6,0x22,0x62,0x00 -+// 19067 䩻 ; -+,0x00,0x12,0x12,0x12,0x12,0x04,0x04,0x05,0x01,0x25,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x4a,0x48,0x4a,0x48,0x49,0x41,0x05,0x2f,0x21,0x00,0x06,0x00 -+// 19068 䩼 ; -+,0x00,0x02,0x12,0x12,0x12,0x1c,0x00,0x0f,0x00,0x0e,0x00,0x0d,0x00,0x00,0x01,0x00,0x00,0x00,0x1a,0x12,0x44,0x0c,0x13,0x08,0x48,0x4a,0x48,0x48,0x48,0x88,0x1f,0x00 -+// 19069 䩽 ; -+,0x00,0x02,0x12,0x12,0x12,0x1e,0x00,0x0d,0x01,0x05,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x12,0x12,0x12,0x00,0x00,0x2d,0x25,0x3d,0x00,0x00,0xc0,0x00 -+// 19070 䩾 ; -+,0x00,0x12,0x12,0x12,0x12,0x1c,0x00,0x2f,0x20,0x29,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x83,0x80,0x84,0x84,0xb4,0x84,0x84,0x94,0x80,0x00,0x55,0x54,0x00 -+// 19071 䩿 ; -+,0x00,0x02,0x12,0x12,0x12,0x1e,0x00,0x0d,0x01,0x05,0x00,0x0d,0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x00,0x24,0x24,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x00 -+// 19072 䪀 ; -+,0x00,0x02,0x12,0x12,0x12,0x1e,0x00,0x0d,0x01,0x05,0x00,0x0d,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x41,0x80,0x04,0x04,0x00,0x02,0x02,0x00,0x00,0x09,0x80,0x3e,0x00 -+// 19073 䪁 ; -+,0x00,0x12,0x12,0x12,0x12,0x18,0x08,0x2a,0x28,0x2a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x08,0x28,0x2a,0x28,0x04,0x24,0x20,0x10,0x14,0x10,0x30,0x28,0x44,0x83,0x00 -+// 19074 䪂 ; -+,0x00,0x14,0x14,0x14,0x14,0x08,0x09,0x2f,0x29,0x2d,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x65,0x04,0x44,0x6d,0x25,0x25,0xe5,0xc6,0xee,0x05,0x05,0x44,0x00 -+// 19075 䪃 ; -+,0x00,0x10,0x16,0x14,0x14,0x08,0x08,0x2a,0x2a,0x2a,0x08,0x0a,0x09,0x08,0x08,0x00,0x00,0x00,0x48,0x08,0x08,0x2a,0x22,0x02,0x20,0x04,0x44,0x44,0x4c,0x42,0xc1,0x00 -+// 19076 䪄 ; -+,0x00,0x02,0x12,0x12,0x12,0x0c,0x00,0x0d,0x00,0x2c,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x20,0x2d,0x00,0x5a,0x42,0x5a,0x42,0x42,0x00,0x62,0x81,0x00 -+// 19077 䪅 ; -+,0x00,0x02,0x12,0x12,0x12,0x0c,0x00,0x28,0x21,0x28,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x02,0x0a,0x00,0x40,0x41,0x01,0x29,0x00,0x20,0x08,0xc2,0x06,0x00 -+// 19078 䪆 ; -+,0x00,0x02,0x12,0x12,0x12,0x1e,0x00,0x0d,0x01,0x05,0x00,0x0d,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x5f,0x50,0x5e,0x50,0x00,0x01,0x00,0x02,0x02,0x00,0x04,0x11,0x00 -+// 19079 䪇 ; -+,0x00,0x02,0x12,0x12,0x12,0x0c,0x00,0x2d,0x21,0x2d,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x24,0x25,0x20,0x00,0x12,0x10,0x52,0x52,0x52,0x42,0x05,0x04,0x24,0x0c,0x00 -+// 19080 䪈 ; -+,0x00,0x10,0x12,0x16,0x10,0x18,0x08,0x2a,0x2a,0x2a,0x08,0x0a,0x08,0x08,0x09,0x00,0x00,0x00,0x08,0xaa,0x2a,0x08,0x00,0x22,0xa0,0xa0,0xa2,0xa2,0xa2,0x80,0x3e,0x00 -+// 19081 䪉 ; -+,0x00,0x10,0x10,0x12,0x10,0x1c,0x08,0x2a,0x28,0x2a,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x02,0x10,0x10,0x0a,0x02,0x8a,0x9a,0x82,0x00,0x94,0x94,0x90,0x92,0xd3,0x00 -+// 19082 䪊 ; -+,0x00,0x10,0x16,0x14,0x14,0x18,0x08,0x2a,0x2a,0x2a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x08,0x48,0x28,0xa8,0x80,0x02,0x28,0xaa,0xa8,0xa8,0xa8,0xa8,0xa9,0xaf,0x00 -+// 19083 䪋 ; -+,0x00,0x10,0x10,0x16,0x10,0x18,0x08,0x2a,0x2a,0x2a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0xaa,0x2a,0x08,0x00,0x22,0x22,0x22,0x22,0x22,0x10,0x82,0x1f,0x00 -+// 19084 䪌 ; -+,0x00,0x02,0x02,0x1a,0x02,0x0e,0x04,0x15,0x05,0x15,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x48,0xc2,0x02,0x00,0x48,0x4f,0x20,0x48,0xd2,0x12,0x18,0x2a,0x09,0x00 -+// 19085 䪍 ; -+,0x00,0x14,0x16,0x14,0x14,0x18,0x08,0x2a,0x2a,0x2a,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x00,0xa9,0xa9,0x29,0xa9,0x11,0x11,0x15,0x55,0x55,0x31,0x35,0x11,0x03,0x00 -+// 19086 䪎 ; -+,0x00,0x02,0x12,0x12,0x02,0x08,0x00,0x22,0x20,0x2e,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x52,0x08,0x4a,0x48,0x48,0x48,0x40,0x01,0x25,0x65,0x05,0x01,0x00 -+// 19087 䪏 ; -+,0x00,0x08,0x09,0x08,0x0b,0x00,0x11,0x11,0x04,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x49,0x49,0x49,0x49,0x45,0x53,0x41,0x41,0x41,0x41,0x43,0x00 -+// 19088 䪐 ; -+,0x00,0x08,0x08,0x08,0x0b,0x00,0x11,0x11,0x14,0x04,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x0a,0x82,0x24,0x24,0x24,0x28,0x69,0xb0,0x20,0x20,0x22,0x1c,0x00 -+// 19089 䪑 ; -+,0x00,0x04,0x04,0x09,0x09,0x00,0x11,0x11,0x15,0x04,0x04,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0xa1,0x40,0x00,0x02,0x04,0x18,0x10,0x00,0x00,0x01,0x1f,0x00 -+// 19090 䪒 ; -+,0x00,0x04,0x05,0x01,0x09,0x00,0x11,0x11,0x15,0x05,0x04,0x14,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00 -+// 19091 䪓 ; -+,0x00,0x00,0x08,0x09,0x0b,0x00,0x11,0x11,0x15,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0x89,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x22,0x02,0x00 -+// 19092 䪔 ; -+,0x00,0x00,0x08,0x0a,0x0a,0x00,0x11,0x11,0x15,0x05,0x04,0x05,0x24,0x04,0x04,0x00,0x00,0x00,0x0a,0x02,0x88,0x00,0x4a,0x40,0x4a,0x40,0x40,0x5a,0x40,0x40,0x42,0x00 -+// 19093 䪕 ; -+,0x00,0x08,0x08,0x0a,0x0b,0x00,0x11,0x11,0x14,0x05,0x04,0x24,0x24,0x04,0x04,0x00,0x00,0x00,0x20,0x21,0xc1,0x11,0x11,0x11,0x15,0x31,0x39,0x55,0x11,0x10,0x16,0x00 -+// 19094 䪖 ; -+,0x00,0x08,0x08,0x0a,0x0b,0x00,0x11,0x11,0x04,0x05,0x04,0x24,0x04,0x04,0x04,0x00,0x00,0x20,0x20,0x40,0x40,0x02,0x00,0x00,0x22,0x20,0x26,0x44,0x08,0x1c,0x47,0x00 -+// 19095 䪗 ; -+,0x00,0x08,0x08,0x0a,0x0b,0x00,0x12,0x00,0x06,0x04,0x00,0x20,0x2d,0x00,0x00,0x00,0x00,0x00,0x12,0x10,0x10,0x12,0x00,0x61,0x03,0x02,0x72,0x04,0x04,0x0a,0x01,0x00 -+// 19096 䪘 ; -+,0x00,0x00,0x08,0x08,0x0b,0x00,0x11,0x11,0x14,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x00,0xa4,0x00,0x24,0x00,0x03,0x00,0x42,0x48,0x40,0xb0,0x1e,0x00 -+// 19097 䪙 ; -+,0x00,0x08,0x08,0x08,0x0b,0x00,0x11,0x11,0x14,0x05,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x0a,0x09,0x08,0x4a,0x4a,0x4a,0x4a,0x40,0x04,0x04,0x24,0x04,0x0c,0x00 -+// 19098 䪚 ; -+,0x00,0x08,0x0a,0x0a,0x0b,0x00,0x13,0x10,0x04,0x0d,0x00,0x20,0x04,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x40,0x00,0x31,0x11,0x55,0x33,0xdd,0x91,0x22,0x00 -+// 19099 䪛 ; -+,0x00,0x08,0x0a,0x0a,0x0b,0x00,0x11,0x11,0x04,0x05,0x04,0x25,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x02,0x20,0x38,0x30,0x04,0x01,0x42,0x42,0x52,0x42,0x42,0x42,0x00 -+// 19100 䪜 ; -+,0x00,0x08,0x0a,0x0a,0x0b,0x00,0x13,0x10,0x04,0x05,0x00,0x25,0x04,0x00,0x00,0x00,0x00,0x20,0x24,0x40,0x40,0x52,0x48,0x40,0x42,0x40,0x00,0x00,0xa2,0x22,0x22,0x00 -+// 19101 䪝 ; -+,0x00,0x08,0x08,0x0a,0x0b,0x00,0x11,0x11,0x14,0x05,0x04,0x25,0x04,0x04,0x04,0x00,0x00,0x00,0x26,0x20,0xa8,0x22,0x48,0x48,0x4a,0x49,0x40,0x26,0x04,0x18,0x06,0x00 -+// 19102 䪞 ; -+,0x00,0x00,0x00,0x01,0x03,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x06,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x00 -+// 19103 䪟 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x08,0x08,0x00,0x00,0x00,0x44,0x2c,0x18,0x2c,0x0b,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x29,0x00 -+// 19104 䪠 ; -+,0x00,0x04,0x07,0x14,0x15,0x0d,0x05,0x04,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x22,0x02,0x10,0x10,0x28,0x46,0x20,0x24,0x20,0x24,0x20,0x20,0x23,0x00 -+// 19105 䪡 ; -+,0x00,0x00,0x06,0x10,0x1d,0x09,0x06,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x92,0x20,0x08,0x00,0x14,0x23,0x20,0x24,0x20,0x20,0x24,0x20,0x23,0x00 -+// 19106 䪢 ; -+,0x00,0x08,0x08,0x0e,0x08,0x08,0x28,0x2a,0x0a,0x1a,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x10,0x92,0xa2,0x08,0x90,0x80,0x86,0x00,0x0a,0x00,0x48,0x02,0x00,0x09,0x00 -+// 19107 䪣 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x08,0x18,0x08,0x08,0x08,0x00,0x00,0x10,0x90,0x02,0x08,0x98,0x90,0xa6,0x00,0x2a,0x08,0x0a,0x08,0x08,0x29,0x00 -+// 19108 䪤 ; -+,0x00,0x00,0x08,0x08,0x0b,0x08,0x08,0x0b,0x08,0x08,0x0a,0x08,0x08,0x0c,0x30,0x00,0x00,0x06,0x10,0x10,0x34,0x11,0x30,0x14,0x13,0x02,0x12,0x52,0x52,0x12,0x42,0x00 -+// 19109 䪥 ; -+,0x00,0x00,0x05,0x04,0x00,0x20,0x00,0x13,0x12,0x10,0x12,0x10,0x00,0x12,0x01,0x00,0x00,0x00,0x02,0x04,0x98,0x18,0x06,0x00,0x00,0x20,0x22,0x00,0x20,0x00,0x01,0x00 -+// 19110 䪦 ; -+,0x00,0x04,0x04,0x00,0x01,0x08,0x02,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00 -+// 19111 䪧 ; -+,0x00,0x04,0x04,0x00,0x00,0x0a,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x28,0x28,0x28,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x20,0x20,0x21,0x1f,0x00 -+// 19112 䪨 ; -+,0x00,0x04,0x04,0x00,0x00,0x0a,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x02,0x02,0x12,0x12,0x02,0x02,0x02,0x0c,0x00 -+// 19113 䪩 ; -+,0x00,0x04,0x04,0x00,0x01,0x0a,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x10,0x10,0x00,0x24,0x42,0x03,0x00,0x04,0x04,0x0c,0x08,0x18,0x10,0x00 -+// 19114 䪪 ; -+,0x00,0x00,0x06,0x04,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x82,0xa2,0x22,0x22,0x00,0x44,0x10,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 19115 䪫 ; -+,0x00,0x04,0x04,0x01,0x02,0x0a,0x09,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x02,0x00,0x0a,0x54,0x14,0x0a,0x00,0x02,0x00,0x00,0x00,0x00,0x01,0x00 -+// 19116 䪬 ; -+,0x00,0x04,0x04,0x01,0x02,0x0a,0x09,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x40,0x04,0x04,0x08,0x09,0x08,0x08,0x08,0x10,0x00 -+// 19117 䪭 ; -+,0x00,0x04,0x04,0x01,0x02,0x0a,0x08,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x01,0x00,0x00,0x22,0x02,0x22,0x02,0x22,0x02,0x00 -+// 19118 䪮 ; -+,0x00,0x04,0x00,0x00,0x02,0x08,0x05,0x00,0x02,0x10,0x10,0x12,0x10,0x12,0x10,0x00,0x00,0x20,0x20,0x42,0x16,0x56,0x22,0x24,0x20,0x41,0x10,0x54,0x56,0x22,0x46,0x00 -+// 19119 䪯 ; -+,0x00,0x02,0x03,0x04,0x01,0x00,0x10,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x90,0x14,0x50,0x24,0x00,0x82,0x48,0x10,0x20,0x00,0x08,0x08,0x08,0x08,0x00 -+// 19120 䪰 ; -+,0x00,0x00,0x04,0x01,0x02,0x02,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0x10,0x00,0x00,0x24,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x09,0x80,0x3e,0x00 -+// 19121 䪱 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x12,0x10,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0x00,0x10,0x00,0x62,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x82,0x00 -+// 19122 䪲 ; -+,0x00,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x04,0x06,0x00,0x00,0x00,0x00,0x02,0x10,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x46,0x82,0x00 -+// 19123 䪳 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x52,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x20,0x44,0x02,0x00 -+// 19124 䪴 ; -+,0x00,0x00,0x08,0x08,0x08,0x29,0x28,0x08,0x0c,0x0c,0x04,0x14,0x16,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x46,0x82,0x00 -+// 19125 䪵 ; -+,0x00,0x00,0x01,0x00,0x10,0x10,0x13,0x06,0x04,0x08,0x00,0x10,0x20,0x00,0x04,0x00,0x00,0x03,0x10,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x82,0x00 -+// 19126 䪶 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x16,0x30,0x00,0x00,0x00,0x00,0x10,0x00,0x62,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x46,0x82,0x00 -+// 19127 䪷 ; -+,0x00,0x08,0x08,0x10,0x11,0x01,0x15,0x15,0x15,0x15,0x15,0x11,0x01,0x06,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x42,0x02,0x00 -+// 19128 䪸 ; -+,0x00,0x00,0x01,0x21,0x21,0x21,0x24,0x24,0x24,0x24,0x24,0x22,0x23,0x30,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x22,0x02,0x00 -+// 19129 䪹 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0c,0x05,0x15,0x04,0x04,0x04,0x04,0x18,0x00,0x00,0x00,0x00,0x08,0x10,0x12,0x02,0x02,0x02,0x02,0x02,0x02,0x42,0x00,0x22,0x00,0x00 -+// 19130 䪺 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x08,0x08,0x01,0x15,0x10,0x00,0x00,0x00,0x02,0x10,0x10,0x42,0x42,0x42,0xc2,0x42,0x42,0x42,0x42,0x20,0x42,0x02,0x00 -+// 19131 䪻 ; -+,0x00,0x00,0x04,0x00,0x01,0x18,0x00,0x09,0x08,0x09,0x08,0x08,0x10,0x10,0x00,0x00,0x00,0x00,0x18,0x10,0x12,0x82,0x02,0x02,0x02,0x42,0x02,0x62,0x00,0x22,0x42,0x00 -+// 19132 䪼 ; -+,0x00,0x04,0x04,0x05,0x15,0x15,0x15,0x04,0x04,0x05,0x05,0x05,0x05,0x18,0x00,0x00,0x00,0x00,0x18,0x10,0x12,0x02,0x02,0x02,0x02,0x22,0x02,0x22,0x00,0x22,0x41,0x00 -+// 19133 䪽 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x00,0x09,0x08,0x19,0x01,0x00,0x02,0x02,0x04,0x00,0x00,0x00,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x62,0x42,0x62,0x10,0x22,0x41,0x00 -+// 19134 䪾 ; -+,0x00,0x00,0x04,0x00,0x09,0x01,0x11,0x01,0x01,0x11,0x01,0x11,0x0a,0x11,0x00,0x00,0x00,0x18,0x10,0x18,0x20,0x24,0x4b,0x10,0x20,0x0c,0x10,0x02,0x0c,0x10,0x00,0x00 -+// 19135 䪿 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x04,0x04,0x06,0x0b,0x11,0x10,0x11,0x00,0x00,0x00,0x00,0x08,0x00,0x03,0x20,0x22,0x22,0x22,0x22,0x20,0x22,0x10,0x22,0x41,0x00 -+// 19136 䫀 ; -+,0x00,0x00,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x13,0x15,0x10,0x00,0x00,0x00,0x00,0x18,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x20,0x22,0x01,0x00 -+// 19137 䫁 ; -+,0x00,0x00,0x00,0x09,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x18,0x10,0x02,0x42,0x42,0x42,0x42,0x62,0x42,0x42,0x00,0x22,0x41,0x00 -+// 19138 䫂 ; -+,0x00,0x04,0x08,0x0b,0x12,0x08,0x04,0x04,0x04,0x09,0x09,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x18,0x10,0x02,0x02,0x22,0x02,0x02,0x22,0x02,0x42,0x00,0x22,0x41,0x00 -+// 19139 䫃 ; -+,0x00,0x00,0x11,0x10,0x10,0x10,0x10,0x11,0x10,0x11,0x01,0x01,0x20,0x0c,0x00,0x00,0x00,0x00,0x18,0x10,0x02,0x02,0x22,0x02,0x02,0x22,0x02,0x42,0x80,0x22,0x41,0x00 -+// 19140 䫄 ; -+,0x00,0x00,0x01,0x0a,0x03,0x11,0x01,0x01,0x11,0x08,0x08,0x08,0x12,0x12,0x20,0x00,0x00,0x00,0x18,0x10,0x02,0x02,0x22,0x02,0x02,0x22,0x02,0x42,0x00,0x22,0x41,0x00 -+// 19141 䫅 ; -+,0x00,0x00,0x04,0x00,0x20,0x24,0x04,0x05,0x0c,0x0c,0x05,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x10,0x82,0x02,0x02,0x02,0x02,0x02,0x02,0x42,0x00,0x22,0x41,0x00 -+// 19142 䫆 ; -+,0x00,0x00,0x02,0x02,0x12,0x02,0x02,0x16,0x07,0x01,0x21,0x2b,0x28,0x00,0x00,0x00,0x00,0x00,0x88,0x00,0x22,0x22,0x22,0xa2,0x22,0x22,0x22,0x22,0x90,0x22,0x01,0x00 -+// 19143 䫇 ; -+,0x00,0x02,0x08,0x02,0x01,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x08,0x08,0x02,0x22,0x22,0x22,0x22,0x22,0x02,0x22,0x10,0x22,0x01,0x00 -+// 19144 䫈 ; -+,0x00,0x04,0x04,0x04,0x05,0x04,0x04,0x09,0x10,0x00,0x00,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0x02,0x02,0x22,0x22,0xa2,0x22,0x02,0x22,0x10,0x22,0x01,0x00 -+// 19145 䫉 ; -+,0x00,0x02,0x04,0x10,0x03,0x0a,0x0c,0x02,0x0e,0x03,0x05,0x09,0x01,0x02,0x06,0x00,0x00,0x00,0x08,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x42,0x20,0x22,0x01,0x00 -+// 19146 䫊 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x14,0x04,0x04,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x88,0x08,0x02,0x20,0xa2,0x22,0x22,0x22,0x20,0x22,0x10,0x22,0x01,0x00 -+// 19147 䫋 ; -+,0x00,0x00,0x07,0x04,0x04,0x0c,0x15,0x04,0x04,0x09,0x09,0x12,0x06,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x02,0x02,0x22,0x22,0x22,0x22,0x02,0x22,0x10,0x22,0x01,0x00 -+// 19148 䫌 ; -+,0x00,0x00,0x00,0x15,0x14,0x15,0x14,0x15,0x00,0x0c,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x02,0x02,0x22,0x02,0x22,0x22,0x02,0xa2,0x10,0x22,0x01,0x00 -+// 19149 䫍 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x08,0x08,0x82,0x02,0x22,0x82,0x22,0x22,0x02,0x22,0x10,0x22,0x01,0x00 -+// 19150 䫎 ; -+,0x00,0x00,0x00,0x08,0x19,0x19,0x0a,0x00,0x08,0x08,0x08,0x11,0x19,0x0a,0x00,0x00,0x00,0x00,0x88,0x88,0x22,0x22,0xa2,0x22,0xa2,0xa2,0x22,0x22,0x10,0xa2,0x01,0x00 -+// 19151 䫏 ; -+,0x00,0x00,0x01,0x19,0x01,0x09,0x01,0x01,0x09,0x01,0x00,0x00,0x09,0x10,0x00,0x00,0x00,0x00,0x08,0x88,0x02,0x22,0x22,0x22,0x22,0x22,0xa2,0x22,0x10,0xa2,0x01,0x00 -+// 19152 䫐 ; -+,0x00,0x00,0x09,0x01,0x09,0x09,0x19,0x1d,0x13,0x23,0x01,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0xc2,0x22,0x22,0xa2,0x62,0x22,0x22,0x22,0x10,0x22,0x01,0x00 -+// 19153 䫑 ; -+,0x00,0x04,0x04,0x04,0x00,0x09,0x00,0x01,0x01,0x15,0x05,0x15,0x01,0x01,0x03,0x00,0x00,0x00,0x08,0x08,0x02,0x22,0xa2,0x22,0x22,0x22,0x22,0x22,0x10,0x22,0x01,0x00 -+// 19154 䫒 ; -+,0x00,0x00,0x06,0x04,0x15,0x00,0x02,0x11,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x08,0x12,0x02,0x22,0x02,0x22,0x22,0x02,0x22,0x00,0x22,0x01,0x00 -+// 19155 䫓 ; -+,0x00,0x00,0x04,0x01,0x00,0x02,0x0a,0x02,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x08,0x08,0x02,0x02,0x22,0x82,0x22,0x22,0x02,0x22,0x10,0x22,0x01,0x00 -+// 19156 䫔 ; -+,0x00,0x00,0x00,0x11,0x11,0x10,0x16,0x00,0x00,0x04,0x04,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x08,0x88,0x22,0x22,0xa2,0xa2,0x22,0x22,0xa2,0x22,0x10,0x22,0x01,0x00 -+// 19157 䫕 ; -+,0x00,0x00,0x04,0x00,0x02,0x0a,0x20,0x24,0x04,0x15,0x15,0x15,0x15,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x12,0x02,0xa2,0x22,0x02,0x22,0x02,0x22,0x00,0x22,0x01,0x00 -+// 19158 䫖 ; -+,0x00,0x00,0x01,0x01,0x01,0x08,0x00,0x08,0x00,0x10,0x10,0x11,0x18,0x10,0x00,0x00,0x00,0x00,0x08,0x80,0x12,0x22,0x22,0x22,0x22,0xa2,0x22,0x22,0x10,0x22,0x01,0x00 -+// 19159 䫗 ; -+,0x00,0x00,0x04,0x24,0x24,0x24,0x20,0x20,0x20,0x20,0x25,0x21,0x21,0x20,0x20,0x00,0x00,0x00,0x88,0x88,0x82,0xa2,0x22,0xa2,0xa2,0xa2,0x22,0x22,0x80,0xb2,0x01,0x00 -+// 19160 䫘 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x00,0x08,0x10,0x14,0x16,0x11,0x10,0x00,0x01,0x00,0x00,0x00,0x81,0x08,0x12,0x02,0x22,0x22,0x82,0xa2,0x82,0xa2,0x90,0xa2,0x01,0x00 -+// 19161 䫙 ; -+,0x00,0x04,0x04,0x04,0x15,0x11,0x11,0x14,0x04,0x04,0x0c,0x0d,0x14,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x12,0x22,0x22,0x22,0x22,0xa2,0x22,0x22,0x90,0x22,0x01,0x00 -+// 19162 䫚 ; -+,0x00,0x00,0x11,0x11,0x15,0x15,0x15,0x15,0x20,0x2a,0x2a,0x2a,0x2a,0x20,0x00,0x00,0x00,0x00,0x01,0x08,0x12,0x22,0x22,0xa2,0xa2,0xa2,0xa2,0xa2,0x80,0xa2,0x01,0x00 -+// 19163 䫛 ; -+,0x00,0x08,0x08,0x10,0x10,0x10,0x10,0x14,0x11,0x10,0x13,0x12,0x12,0x14,0x10,0x00,0x00,0x00,0x09,0x08,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x10,0x92,0x01,0x00 -+// 19164 䫜 ; -+,0x00,0x00,0x04,0x04,0x24,0x24,0x3f,0x2d,0x24,0x34,0x3f,0x24,0x24,0x30,0x00,0x00,0x00,0x00,0x08,0x00,0x82,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x90,0x22,0x01,0x00 -+// 19165 䫝 ; -+,0x00,0x00,0x0f,0x04,0x04,0x0c,0x0f,0x14,0x04,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x08,0x08,0x00,0x22,0x22,0x22,0x20,0x22,0x20,0x22,0x00,0x22,0x01,0x00 -+// 19166 䫞 ; -+,0x00,0x00,0x09,0x0a,0x05,0x04,0x04,0x04,0x04,0x04,0x0c,0x00,0x02,0x00,0x20,0x00,0x00,0x00,0x08,0x08,0x12,0x02,0x22,0x22,0x02,0x22,0x02,0x22,0x80,0x22,0x01,0x00 -+// 19167 䫟 ; -+,0x00,0x00,0x11,0x11,0x11,0x00,0x11,0x10,0x10,0x11,0x10,0x11,0x08,0x11,0x00,0x00,0x00,0x00,0x08,0x08,0x12,0x02,0x22,0x22,0x02,0x22,0x02,0x22,0x00,0x22,0x01,0x00 -+// 19168 䫠 ; -+,0x00,0x02,0x09,0x04,0x01,0x04,0x10,0x04,0x04,0x04,0x04,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0xa2,0x22,0x02,0xa2,0x02,0x22,0x00,0x22,0x01,0x00 -+// 19169 䫡 ; -+,0x00,0x00,0x0a,0x02,0x0a,0x0a,0x0a,0x0b,0x0a,0x0a,0x0a,0x1b,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x08,0x00,0x02,0x22,0xa2,0xa2,0x22,0xa2,0x22,0x22,0x90,0x22,0x01,0x00 -+// 19170 䫢 ; -+,0x00,0x00,0x03,0x10,0x12,0x18,0x08,0x0a,0x08,0x0b,0x09,0x05,0x05,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x22,0x22,0x22,0x02,0x22,0x02,0x22,0x00,0x22,0x01,0x00 -+// 19171 䫣 ; -+,0x00,0x01,0x00,0x05,0x10,0x08,0x12,0x04,0x01,0x14,0x04,0x04,0x08,0x01,0x01,0x00,0x00,0x00,0x08,0x00,0x12,0x22,0x22,0x22,0x02,0x22,0x02,0x22,0x00,0x22,0x01,0x00 -+// 19172 䫤 ; -+,0x00,0x00,0x00,0x20,0x11,0x11,0x11,0x11,0x11,0x04,0x04,0x00,0x08,0x11,0x00,0x00,0x00,0x00,0x80,0x08,0x12,0x22,0x22,0x22,0x02,0x22,0x82,0x22,0x00,0x22,0x01,0x00 -+// 19173 䫥 ; -+,0x00,0x04,0x00,0x29,0x25,0x2d,0x21,0x29,0x2c,0x0c,0x0d,0x06,0x14,0x04,0x07,0x00,0x00,0x00,0x08,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x90,0x22,0x01,0xff,0x00 -+// 19174 䫦 ; -+,0x00,0x04,0x04,0x05,0x04,0x04,0x08,0x01,0x10,0x00,0x1b,0x1b,0x1b,0x1b,0x30,0x00,0x00,0x00,0x08,0x00,0x12,0x82,0x22,0x22,0xa2,0x22,0x02,0x22,0x10,0x22,0x01,0x00 -+// 19175 䫧 ; -+,0x00,0x04,0x00,0x11,0x11,0x11,0x11,0x04,0x0c,0x09,0x14,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x12,0x02,0x02,0x22,0x02,0x22,0x82,0x22,0x00,0x22,0x01,0x00 -+// 19176 䫨 ; -+,0x00,0x08,0x08,0x0c,0x09,0x0d,0x08,0x08,0x10,0x14,0x14,0x14,0x05,0x0c,0x00,0x00,0x00,0x00,0x88,0x08,0x0a,0xe2,0x22,0xa2,0xa2,0xa2,0xa2,0xa2,0x10,0x22,0x01,0x00 -+// 19177 䫩 ; -+,0x00,0x04,0x00,0x09,0x00,0x01,0x07,0x0e,0x09,0x14,0x02,0x04,0x01,0x02,0x08,0x00,0x00,0x00,0x08,0x08,0x00,0x22,0xe2,0x22,0xa0,0xa2,0x20,0x22,0x10,0x22,0x01,0x00 -+// 19178 䫪 ; -+,0x00,0x04,0x04,0x04,0x0c,0x15,0x0d,0x04,0x0d,0x15,0x0c,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x92,0x02,0x22,0x22,0x22,0x22,0x02,0x22,0x10,0x22,0x01,0x00 -+// 19179 䫫 ; -+,0x00,0x04,0x15,0x14,0x15,0x14,0x04,0x15,0x14,0x04,0x04,0x09,0x0a,0x07,0x00,0x00,0x00,0x00,0x08,0x00,0x92,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x10,0x22,0x01,0x00 -+// 19180 䫬 ; -+,0x00,0x00,0x09,0x11,0x33,0x19,0x1b,0x09,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x08,0x12,0x22,0x22,0xa2,0x22,0x22,0x22,0x22,0x10,0x22,0x01,0x00 -+// 19181 䫭 ; -+,0x00,0x04,0x04,0x15,0x15,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x09,0x00,0x00,0x00,0x00,0x08,0x08,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x10,0x22,0x01,0x00 -+// 19182 䫮 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x02,0x10,0x12,0x20,0x01,0x03,0x08,0x00,0x02,0x00,0x00,0x00,0x02,0x08,0x02,0x22,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x10,0x22,0x01,0x00 -+// 19183 䫯 ; -+,0x00,0x00,0x08,0x08,0x04,0x11,0x10,0x14,0x14,0x16,0x12,0x02,0x00,0x08,0x08,0x00,0x00,0x80,0x85,0x80,0x03,0x50,0x12,0x50,0x50,0x50,0x50,0x52,0x48,0x40,0xc1,0x00 -+// 19184 䫰 ; -+,0x00,0x00,0x04,0x00,0x13,0x00,0x12,0x00,0x00,0x12,0x00,0x12,0x00,0x12,0x20,0x00,0x00,0x00,0x02,0x20,0x19,0x30,0x03,0x00,0x40,0x57,0x88,0x68,0x26,0x40,0x00,0x00 -+// 19185 䫱 ; -+,0x00,0x00,0x04,0x08,0x08,0x0a,0x09,0x00,0x04,0x00,0x1b,0x0a,0x0a,0x09,0x00,0x00,0x00,0x01,0x08,0x00,0x02,0x02,0x22,0x02,0x22,0x02,0x02,0x02,0x10,0x22,0x01,0x00 -+// 19186 䫲 ; -+,0x00,0x00,0x00,0x23,0x20,0x20,0x25,0x25,0x25,0x20,0x00,0x04,0x20,0x21,0x0f,0x00,0x00,0x00,0x08,0x88,0x22,0xa2,0xa2,0x22,0x22,0xa2,0x22,0xa2,0x90,0x22,0x01,0x00 -+// 19187 䫳 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x10,0x00,0x2c,0x00,0x16,0x00,0x19,0x01,0x01,0x00,0x00,0x00,0x88,0x08,0x12,0x22,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x90,0x22,0x01,0x00 -+// 19188 䫴 ; -+,0x00,0x01,0x01,0x09,0x19,0x05,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x00,0x04,0x00,0x00,0x00,0x08,0x08,0x00,0xa2,0x22,0x20,0x22,0xa2,0x20,0x22,0x90,0x22,0x01,0x00 -+// 19189 䫵 ; -+,0x00,0x04,0x00,0x11,0x11,0x10,0x04,0x06,0x20,0x11,0x04,0x00,0x09,0x01,0x03,0x00,0x00,0x00,0x08,0x08,0x00,0x22,0x22,0xa0,0xa2,0x22,0xa0,0x22,0x10,0x22,0x01,0x00 -+// 19190 䫶 ; -+,0x00,0x00,0x12,0x1c,0x12,0x10,0x12,0x14,0x12,0x14,0x04,0x04,0x08,0x09,0x10,0x00,0x00,0x00,0x08,0x88,0x22,0xa2,0xe2,0x22,0x22,0x22,0xa2,0x20,0x10,0xa2,0x01,0x00 -+// 19191 䫷 ; -+,0x00,0x00,0x04,0x04,0x1d,0x0c,0x1c,0x04,0x04,0x0c,0x0c,0x0c,0x04,0x04,0x18,0x00,0x00,0x00,0x08,0x08,0x83,0xa0,0xa2,0x20,0x20,0xa2,0xa0,0xa2,0x10,0x22,0x01,0x00 -+// 19192 䫸 ; -+,0x00,0x00,0x10,0x10,0x14,0x10,0x1d,0x19,0x19,0x1d,0x00,0x01,0x2d,0x20,0x00,0x00,0x00,0x00,0x80,0x9a,0x82,0x82,0x82,0x92,0x92,0x92,0x82,0x46,0x40,0x21,0x1f,0x00 -+// 19193 䫹 ; -+,0x00,0x00,0x10,0x10,0x14,0x10,0x1d,0x19,0x19,0x1d,0x00,0x01,0x2d,0x20,0x00,0x00,0x00,0x00,0xc2,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x40,0x40,0x31,0x0f,0x00 -+// 19194 䫺 ; -+,0x00,0x00,0x08,0x08,0x0a,0x08,0x0c,0x04,0x14,0x10,0x00,0x02,0x1b,0x01,0x00,0x00,0x00,0x00,0x86,0x80,0x90,0x92,0x9e,0x9a,0x9a,0x9a,0x92,0x92,0x36,0x01,0x01,0x00 -+// 19195 䫻 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1f,0x1d,0x1d,0x1f,0x04,0x05,0x2d,0x20,0x00,0x00,0x00,0x00,0x80,0x82,0x82,0x82,0x92,0x82,0x82,0x82,0x82,0x42,0x40,0x21,0x1f,0x00 -+// 19196 䫼 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1f,0x0c,0x0c,0x0e,0x04,0x24,0x2d,0x00,0x00,0x00,0x00,0x00,0x88,0x80,0x9a,0x82,0x82,0x99,0x90,0x94,0x82,0xa2,0x40,0x21,0x1f,0x00 -+// 19197 䫽 ; -+,0x00,0x00,0x10,0x02,0x04,0x04,0x1f,0x1c,0x0c,0x0e,0x04,0x24,0x2d,0x00,0x00,0x00,0x00,0x00,0x84,0x98,0x80,0x92,0x90,0x82,0x98,0x80,0x80,0x8e,0x40,0x21,0x1f,0x00 -+// 19198 䫾 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1d,0x0c,0x0c,0x0c,0x04,0x24,0x29,0x00,0x00,0x00,0x00,0x00,0x80,0x8a,0x96,0x94,0x95,0x91,0xd8,0x90,0x92,0x9e,0x40,0x21,0x1f,0x00 -+// 19199 䫿 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1f,0x1d,0x1d,0x0e,0x04,0x05,0x2d,0x20,0x00,0x00,0x00,0x00,0x82,0x8a,0x82,0x92,0xa2,0x80,0x82,0x82,0x82,0x42,0x60,0x31,0x0f,0x00 -+// 19200 䬀 ; -+,0x00,0x00,0x10,0x02,0x04,0x24,0x2e,0x24,0x24,0x2e,0x24,0x24,0x29,0x00,0x00,0x00,0x00,0x00,0x84,0xa4,0xa5,0x95,0xd5,0x85,0xa5,0x91,0xf8,0x82,0x40,0x21,0x1f,0x00 -+// 19201 䬁 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1f,0x1d,0x1d,0x1f,0x04,0x05,0x2d,0x20,0x00,0x00,0x00,0x00,0x88,0x88,0xa1,0x80,0x92,0x94,0x90,0x90,0x90,0x5e,0x40,0x21,0x1f,0x00 -+// 19202 䬂 ; -+,0x00,0x00,0x10,0x10,0x14,0x10,0x1f,0x19,0x19,0x1f,0x10,0x01,0x0d,0x20,0x00,0x00,0x00,0x00,0x8a,0x88,0xaa,0xa8,0xaa,0xa2,0xa4,0xa4,0xa4,0x42,0x41,0x31,0x0f,0x00 -+// 19203 䬃 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1f,0x1d,0x1d,0x0e,0x04,0x05,0x2d,0x20,0x00,0x00,0x00,0x00,0x88,0x88,0x82,0x80,0x82,0x94,0x94,0x80,0x80,0x40,0x40,0x31,0x0f,0x00 -+// 19204 䬄 ; -+,0x00,0x00,0x10,0x10,0x14,0x14,0x1f,0x1d,0x1d,0x0f,0x04,0x05,0x2d,0x20,0x00,0x00,0x00,0x00,0x82,0x80,0xa8,0xa0,0xa2,0xa6,0xb4,0x84,0x8b,0x40,0x40,0x21,0x1f,0x00 -+// 19205 䬅 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1d,0x1c,0x1c,0x0c,0x04,0x25,0x29,0x20,0x00,0x00,0x00,0x08,0x8a,0x8a,0x92,0x80,0x80,0xa7,0xa1,0xa5,0x85,0xd2,0x40,0x21,0x1f,0x00 -+// 19206 䬆 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1e,0x1c,0x1c,0x0c,0x04,0x25,0x29,0x00,0x00,0x00,0x00,0x00,0x89,0x91,0x95,0x9d,0x95,0xbd,0x9d,0x91,0x91,0x93,0x40,0x21,0x1f,0x00 -+// 19207 䬇 ; -+,0x00,0x00,0x02,0x08,0x00,0x02,0x02,0x02,0x12,0x0c,0x04,0x04,0x14,0x04,0x00,0x00,0x00,0x00,0x06,0x80,0x98,0x90,0x90,0x9c,0x90,0x9c,0x92,0x92,0x36,0x03,0x01,0x00 -+// 19208 䬈 ; -+,0x00,0x00,0x10,0x12,0x14,0x10,0x1d,0x19,0x19,0x1d,0x00,0x01,0x2d,0x00,0x00,0x00,0x00,0x00,0x92,0x80,0x82,0x82,0x82,0x9e,0x84,0x94,0x94,0x43,0x40,0x31,0x0f,0x00 -+// 19209 䬉 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1d,0x1c,0x1c,0x0c,0x04,0x05,0x29,0x00,0x00,0x00,0x00,0x00,0x88,0x8a,0x88,0x88,0x94,0x94,0xb6,0x95,0x84,0x04,0x40,0x31,0x0f,0x00 -+// 19210 䬊 ; -+,0x00,0x00,0x10,0x02,0x04,0x04,0x1e,0x0c,0x0c,0x0c,0x24,0x24,0x29,0x00,0x00,0x00,0x00,0x00,0x88,0x89,0x88,0x8a,0xaa,0xb8,0x88,0x84,0x92,0x80,0x40,0x21,0x1f,0x00 -+// 19211 䬋 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1d,0x1c,0x1c,0x0c,0x04,0x25,0x29,0x20,0x00,0x00,0x00,0x00,0x88,0x88,0x89,0x80,0x92,0x81,0x96,0x84,0x8c,0x92,0x40,0x21,0x1f,0x00 -+// 19212 䬌 ; -+,0x00,0x04,0x05,0x04,0x11,0x04,0x14,0x04,0x03,0x02,0x0a,0x2a,0x2a,0x02,0x00,0x00,0x00,0x00,0x42,0x42,0x5a,0x52,0x76,0x72,0x72,0x72,0x12,0x92,0x96,0x81,0x01,0x00 -+// 19213 䬍 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1d,0x1c,0x1c,0x0c,0x04,0x25,0x29,0x00,0x00,0x00,0x00,0x00,0x90,0xaf,0x84,0x80,0x82,0x82,0x80,0x90,0xd1,0x52,0x4c,0x21,0x0f,0x00 -+// 19214 䬎 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1d,0x0c,0x0c,0x0c,0x04,0x25,0x29,0x00,0x00,0x00,0x00,0x00,0x86,0x80,0x84,0x84,0x94,0x96,0xb4,0x86,0xa3,0x80,0x40,0x31,0x0f,0x00 -+// 19215 䬏 ; -+,0x00,0x00,0x10,0x12,0x14,0x10,0x1d,0x19,0x19,0x0c,0x00,0x01,0x2d,0x00,0x00,0x00,0x00,0x00,0x88,0x82,0x82,0x90,0x80,0x80,0x82,0x92,0x92,0x12,0x40,0x21,0x0f,0x00 -+// 19216 䬐 ; -+,0x00,0x00,0x10,0x12,0x14,0x10,0x1d,0x19,0x19,0x0c,0x00,0x01,0x2d,0x20,0x00,0x00,0x00,0x00,0x8c,0x80,0x8c,0x9c,0x81,0x88,0x96,0x94,0x8c,0x03,0x40,0x31,0x0f,0x00 -+// 19217 䬑 ; -+,0x00,0x00,0x10,0x02,0x04,0x14,0x1e,0x1c,0x0c,0x0c,0x04,0x24,0x29,0x00,0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0x82,0x82,0x82,0x82,0x82,0x82,0x40,0x21,0x0f,0x00 -+// 19218 䬒 ; -+,0x00,0x00,0x10,0x02,0x04,0x04,0x1e,0x0c,0x0c,0x0c,0x24,0x24,0x29,0x00,0x00,0x00,0x00,0x08,0x80,0xa1,0x88,0xaa,0x8c,0x93,0x82,0x84,0x8c,0x84,0x40,0x21,0x0f,0x00 -+// 19219 䬓 ; -+,0x00,0x00,0x10,0x12,0x14,0x10,0x1d,0x19,0x19,0x0c,0x00,0x01,0x2d,0x00,0x00,0x00,0x00,0x00,0x88,0x82,0x80,0x94,0x81,0x82,0x82,0x92,0x82,0x52,0x40,0x31,0x0f,0x00 -+// 19220 䬔 ; -+,0x00,0x00,0x10,0x02,0x04,0x04,0x1f,0x0c,0x0c,0x0e,0x04,0x05,0x29,0x00,0x00,0x00,0x00,0x00,0x88,0x94,0xa3,0x80,0x80,0xa6,0xa4,0xa4,0xa0,0x22,0x42,0x21,0x0f,0x00 -+// 19221 䬕 ; -+,0x00,0x00,0x11,0x01,0x05,0x01,0x1f,0x0d,0x0d,0x01,0x21,0x2b,0x20,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x7e,0x6a,0x6a,0x5a,0x42,0xc6,0xd2,0x01,0x01,0x00 -+// 19222 䬖 ; -+,0x00,0x00,0x10,0x10,0x14,0x10,0x1d,0x19,0x19,0x1d,0x00,0x01,0x2d,0x20,0x00,0x00,0x00,0x00,0x80,0xa2,0xa2,0xa2,0xa2,0x82,0x88,0x8a,0x88,0x4a,0x40,0x21,0x1f,0x00 -+// 19223 䬗 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x01,0x10,0x1b,0x09,0x05,0x09,0x00,0x02,0x00,0x00,0x00,0x42,0x4a,0x52,0x52,0x7e,0xf2,0x72,0x3e,0x12,0x92,0xb6,0x01,0x01,0x00 -+// 19224 䬘 ; -+,0x00,0x00,0x10,0x00,0x14,0x14,0x1d,0x0c,0x0c,0x0c,0x04,0x04,0x2d,0x20,0x00,0x00,0x00,0x00,0x88,0x80,0x82,0x92,0x80,0xa1,0x95,0x95,0x95,0x41,0x41,0x20,0x0f,0x00 -+// 19225 䬙 ; -+,0x00,0x00,0x10,0x12,0x14,0x14,0x1f,0x1d,0x1d,0x0e,0x04,0x25,0x2d,0x00,0x00,0x00,0x00,0x00,0x8c,0x80,0xaa,0x80,0x90,0xa8,0x88,0x88,0xaa,0x2a,0x40,0x21,0x0f,0x00 -+// 19226 䬚 ; -+,0x00,0x00,0x10,0x10,0x14,0x14,0x1f,0x1d,0x1d,0x1f,0x04,0x05,0x2d,0x20,0x00,0x00,0x00,0x00,0xa2,0xa8,0xaa,0xa8,0xa8,0xa8,0x81,0x83,0x91,0x41,0x43,0x21,0x1f,0x00 -+// 19227 䬛 ; -+,0x00,0x00,0x10,0x10,0x14,0x14,0x1d,0x1c,0x1c,0x0c,0x04,0x24,0x2d,0x20,0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,0x88,0xbe,0x88,0x88,0x89,0x08,0x48,0x21,0x0f,0x00 -+// 19228 䬜 ; -+,0x00,0x00,0x10,0x10,0x14,0x14,0x1f,0x1d,0x1d,0x0f,0x04,0x24,0x2d,0x20,0x00,0x00,0x00,0x08,0x88,0x84,0xae,0xa6,0x84,0x89,0xa1,0xb3,0xa1,0x01,0x40,0x21,0x0f,0x00 -+// 19229 䬝 ; -+,0x00,0x00,0x10,0x00,0x04,0x04,0x1f,0x1c,0x1c,0x0e,0x24,0x24,0x2d,0x00,0x00,0x00,0x00,0x00,0x94,0x94,0x94,0x88,0xaa,0xaa,0xaa,0xaa,0x80,0x82,0x40,0x21,0x1f,0x00 -+// 19230 䬞 ; -+,0x00,0x00,0x10,0x02,0x04,0x04,0x1e,0x14,0x14,0x0e,0x04,0x24,0x29,0x00,0x00,0x00,0x00,0x00,0x8a,0x88,0x80,0x9d,0x80,0x80,0x82,0x93,0x92,0xd2,0x42,0x21,0x0f,0x00 -+// 19231 䬟 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x17,0x15,0x15,0x16,0x24,0x26,0x28,0x00,0x00,0x00,0x00,0x00,0xc9,0x41,0x65,0x09,0x21,0x4d,0x81,0x01,0x21,0xf3,0x40,0x61,0x1f,0x00 -+// 19232 䬠 ; -+,0x00,0x00,0x00,0x10,0x20,0x00,0x00,0x00,0x06,0x04,0x04,0x04,0x04,0x08,0x10,0x00,0x00,0x04,0x00,0xc3,0x00,0x00,0x10,0x10,0x94,0x88,0xa3,0xa8,0xa0,0x94,0x8d,0x01 -+// 19233 䬡 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x06,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x80,0x88,0xb2,0x80,0x08,0x08,0x08,0x14,0x10,0x08,0xd7,0x18,0x14,0x06,0x00 -+// 19234 䬢 ; -+,0x00,0x00,0x04,0x09,0x08,0x12,0x01,0x01,0x09,0x01,0x09,0x00,0x01,0x1d,0x10,0x00,0x00,0x00,0x00,0x1a,0x82,0x02,0x12,0x12,0x12,0x12,0x02,0x22,0x22,0x42,0x04,0x00 -+// 19235 䬣 ; -+,0x00,0x04,0x04,0x09,0x10,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x13,0x19,0x10,0x00,0x00,0x00,0x10,0x20,0xa2,0x40,0x00,0x0c,0x08,0x10,0x20,0x20,0x41,0x41,0x7f,0x00 -+// 19236 䬤 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x0a,0x08,0x09,0x00,0x11,0x10,0x00,0x03,0x00,0x00,0x02,0x02,0x02,0x40,0x80,0x08,0x22,0x08,0x08,0x08,0x08,0x04,0x0c,0x84,0x00 -+// 19237 䬥 ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x06,0x04,0x04,0x07,0x00,0x00,0x00,0x82,0x80,0x40,0x99,0x01,0x48,0x4a,0x08,0x08,0x08,0x04,0x18,0x04,0x00 -+// 19238 䬦 ; -+,0x00,0x00,0x04,0x09,0x00,0x02,0x01,0x11,0x11,0x11,0x11,0x10,0x11,0x19,0x10,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x07,0x00,0x26,0x04,0x04,0x18,0x18,0x24,0x03,0x00 -+// 19239 䬧 ; -+,0x00,0x04,0x04,0x09,0x10,0x02,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x19,0x10,0x00,0x00,0x00,0x02,0x00,0x80,0x00,0x01,0x00,0x00,0x20,0x20,0x20,0x00,0x41,0x07,0x00 -+// 19240 䬨 ; -+,0x00,0x04,0x04,0x0b,0x15,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x18,0x10,0x00,0x00,0x00,0x20,0x20,0x41,0x20,0x20,0x28,0x20,0x20,0x00,0x4c,0x0e,0x02,0x06,0x00 -+// 19241 䬩 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x01,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x02,0x80,0x80,0x86,0x80,0x80,0x18,0x46,0x08,0x08,0x08,0x08,0x10,0x0c,0x00 -+// 19242 䬪 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x12,0x19,0x10,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x30,0x12,0x53,0x11,0x10,0x10,0x10,0x10,0x00 -+// 19243 䬫 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x24,0x12,0x10,0x12,0x10,0x10,0x10,0x12,0x18,0x00,0x00,0x00,0x00,0x0e,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x40,0x64,0x53,0x01,0x00 -+// 19244 䬬 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x04,0x00,0x10,0x12,0x10,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x10,0x10,0x56,0x50,0x50,0x50,0x50,0x10,0x20,0x28,0x04,0x02,0x03,0x00 -+// 19245 䬭 ; -+,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x02,0x04,0x02,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x0a,0x02,0x12,0x86,0x80,0x10,0x46,0x18,0x00,0x08,0x08,0x18,0x0c,0x00 -+// 19246 䬮 ; -+,0x00,0x00,0x08,0x0a,0x11,0x04,0x00,0x12,0x12,0x12,0x12,0x10,0x12,0x12,0x10,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x04,0x04,0x04,0x00,0x28,0x48,0x12,0x11,0x01,0x00 -+// 19247 䬯 ; -+,0x00,0x00,0x04,0x0a,0x01,0x14,0x00,0x11,0x11,0x11,0x11,0x10,0x11,0x19,0x10,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19248 䬰 ; -+,0x00,0x00,0x04,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x12,0x19,0x10,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x22,0x04,0x00,0x42,0x02,0x02,0x02,0x02,0x42,0x00 -+// 19249 䬱 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x12,0x18,0x00,0x00,0x00,0x10,0x10,0x10,0x11,0x10,0x30,0x30,0x14,0x52,0x13,0x11,0x10,0x10,0x10,0x00 -+// 19250 䬲 ; -+,0x00,0x00,0x04,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x13,0x19,0x00,0x00,0x00,0x00,0x20,0x20,0x02,0x02,0x02,0x4a,0x4a,0x4a,0x4a,0x4a,0x02,0x02,0x0c,0x00 -+// 19251 䬳 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x04,0x05,0x11,0x11,0x11,0x11,0x10,0x12,0x11,0x10,0x00,0x00,0x00,0x10,0x52,0x30,0x30,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 19252 䬴 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x13,0x19,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x12,0x18,0x30,0x34,0x14,0x12,0x13,0x10,0x00 -+// 19253 䬵 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x13,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x64,0x08,0x12,0x26,0x04,0x10,0x22,0x01,0x00 -+// 19254 䬶 ; -+,0x00,0x04,0x04,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x12,0x19,0x10,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x44,0x44,0x40,0x42,0x44,0x48,0x44,0x66,0x40,0x00 -+// 19255 䬷 ; -+,0x00,0x00,0x04,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x13,0x19,0x00,0x00,0x00,0x00,0x10,0x22,0x42,0x14,0x10,0x00,0x10,0x23,0x22,0x14,0x00,0x10,0x20,0x00 -+// 19256 䬸 ; -+,0x00,0x00,0x04,0x04,0x09,0x0a,0x04,0x09,0x06,0x02,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x02,0x02,0x0c,0x06,0xc2,0x00,0x4e,0x08,0x08,0x08,0x0c,0x78,0x06,0x00 -+// 19257 䬹 ; -+,0x00,0x04,0x04,0x0a,0x01,0x14,0x01,0x11,0x11,0x11,0x11,0x10,0x11,0x19,0x10,0x00,0x00,0x00,0x00,0x18,0x10,0x22,0x72,0x00,0x10,0x10,0x1a,0x10,0x10,0x10,0x00,0x00 -+// 19258 䬺 ; -+,0x00,0x04,0x04,0x0b,0x11,0x04,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x19,0x10,0x00,0x00,0x00,0x04,0x20,0x0a,0x10,0x10,0x12,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x00 -+// 19259 䬻 ; -+,0x00,0x04,0x04,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x13,0x19,0x10,0x00,0x00,0x00,0x24,0x20,0x36,0x20,0x12,0x30,0x12,0x10,0x12,0x0c,0x08,0x05,0x03,0x00 -+// 19260 䬼 ; -+,0x00,0x04,0x04,0x0a,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x13,0x19,0x10,0x00,0x00,0x00,0x26,0x00,0x24,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 19261 䬽 ; -+,0x00,0x04,0x04,0x0b,0x11,0x04,0x01,0x11,0x11,0x11,0x11,0x10,0x11,0x19,0x10,0x00,0x00,0x00,0x04,0x20,0x08,0x42,0x42,0x42,0x42,0x6a,0x28,0x28,0x08,0x48,0x0f,0x00 -+// 19262 䬾 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x04,0x01,0x10,0x10,0x10,0x10,0x10,0x13,0x19,0x10,0x00,0x00,0x00,0x24,0x08,0x1a,0x02,0x5a,0x40,0x40,0x59,0x31,0x21,0x42,0x00,0x00,0x00 -+// 19263 䬿 ; -+,0x00,0x04,0x0c,0x0a,0x10,0x24,0x12,0x10,0x12,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x00,0x82,0x82,0x82,0x82,0x84,0x90,0x90,0x90,0x92,0x98,0x10,0x11,0x0f,0x00 -+// 19264 䭀 ; -+,0x00,0x00,0x08,0x0a,0x12,0x04,0x02,0x12,0x12,0x12,0x12,0x10,0x12,0x1a,0x10,0x00,0x00,0x00,0x04,0x94,0x94,0x14,0x14,0x94,0x14,0x10,0x12,0x13,0x11,0x80,0x1f,0x00 -+// 19265 䭁 ; -+,0x00,0x02,0x02,0x02,0x06,0x12,0x06,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x90,0x11,0x04,0x24,0xc4,0x00,0x4f,0x08,0x08,0x08,0x0c,0x78,0x06,0x00 -+// 19266 䭂 ; -+,0x00,0x00,0x04,0x0a,0x01,0x04,0x00,0x12,0x12,0x10,0x12,0x10,0x12,0x11,0x10,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x02,0x42,0x42,0x42,0x40,0x40,0x40,0x41,0x7f,0x00 -+// 19267 䭃 ; -+,0x00,0x00,0x08,0x0a,0x11,0x04,0x02,0x12,0x12,0x12,0x12,0x10,0x12,0x19,0x10,0x00,0x00,0x10,0x10,0x20,0x20,0x56,0x00,0x04,0x04,0x08,0x00,0x28,0x29,0xa0,0x24,0x00 -+// 19268 䭄 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x04,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x10,0x10,0x10,0x52,0x52,0x10,0x12,0x12,0x13,0x12,0x12,0x10,0x10,0x30,0x00 -+// 19269 䭅 ; -+,0x00,0x04,0x04,0x0b,0x01,0x04,0x11,0x10,0x10,0x10,0x10,0x10,0x12,0x19,0x10,0x00,0x00,0x00,0x01,0x40,0x48,0x4e,0x40,0x40,0x5c,0x44,0x44,0x44,0x40,0x42,0x40,0x00 -+// 19270 䭆 ; -+,0x00,0x00,0x14,0x11,0x11,0x14,0x00,0x01,0x04,0x02,0x02,0x02,0x00,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x12,0x10,0x80,0x00,0x4e,0x08,0x08,0x08,0x08,0x10,0x04,0x00 -+// 19271 䭇 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x04,0x11,0x11,0x10,0x10,0x10,0x10,0x13,0x18,0x10,0x00,0x00,0x00,0x20,0x20,0x43,0x50,0x94,0x10,0x10,0x00,0x48,0x08,0x08,0x00,0x06,0x00 -+// 19272 䭈 ; -+,0x00,0x08,0x08,0x12,0x10,0x24,0x12,0x13,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x08,0x4a,0x0a,0x8b,0x8a,0xca,0x48,0x4a,0x48,0x88,0x88,0xc8,0x3f,0x00 -+// 19273 䭉 ; -+,0x00,0x04,0x0c,0x0b,0x10,0x04,0x12,0x10,0x12,0x10,0x10,0x12,0x13,0x18,0x00,0x00,0x00,0x10,0x10,0x20,0x24,0x50,0x10,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 19274 䭊 ; -+,0x00,0x00,0x08,0x0a,0x11,0x04,0x02,0x10,0x12,0x10,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x24,0x25,0x24,0x10,0x10,0x52,0x50,0x50,0x53,0x10,0x20,0x44,0x03,0x00 -+// 19275 䭋 ; -+,0x00,0x00,0x08,0x0a,0x10,0x04,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x42,0x02,0x82,0x82,0x80,0x88,0x89,0x88,0x98,0x98,0xaa,0x89,0x88,0x00 -+// 19276 䭌 ; -+,0x00,0x00,0x04,0x04,0x11,0x11,0x11,0x01,0x02,0x00,0x02,0x02,0x02,0x00,0x03,0x00,0x00,0x00,0x92,0x12,0x12,0x02,0x82,0x00,0x4c,0x08,0x08,0x08,0x04,0x18,0x06,0x00 -+// 19277 䭍 ; -+,0x00,0x00,0x08,0x0a,0x11,0x24,0x02,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x10,0x12,0x00,0x04,0xa8,0xa8,0xa8,0xa8,0x01,0x00 -+// 19278 䭎 ; -+,0x00,0x00,0x08,0x0a,0x11,0x04,0x00,0x10,0x12,0x10,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x54,0x54,0x54,0x54,0x54,0x40,0x00,0x10,0x38,0x30,0x54,0x12,0x11,0x00 -+// 19279 䭏 ; -+,0x00,0x04,0x0c,0x0a,0x10,0x04,0x12,0x10,0x12,0x10,0x10,0x10,0x12,0x19,0x10,0x00,0x00,0x10,0x00,0x82,0x02,0x42,0x00,0x00,0xf5,0x95,0xb5,0x95,0x15,0x15,0x03,0x00 -+// 19280 䭐 ; -+,0x00,0x00,0x08,0x02,0x10,0x04,0x12,0x10,0x12,0x12,0x10,0x10,0x13,0x18,0x10,0x00,0x00,0x00,0x28,0x0a,0x10,0x10,0x10,0x10,0x00,0x00,0x0a,0x81,0x81,0x20,0x3c,0x00 -+// 19281 䭑 ; -+,0x00,0x04,0x0c,0x0a,0x10,0x04,0x13,0x10,0x12,0x10,0x10,0x10,0x12,0x18,0x00,0x00,0x00,0x04,0x20,0x2a,0x28,0x2a,0x2a,0x2b,0x2a,0x2a,0x68,0x68,0xa8,0x2b,0x28,0x00 -+// 19282 䭒 ; -+,0x00,0x04,0x0c,0x0b,0x11,0x04,0x01,0x10,0x10,0x10,0x10,0x10,0x12,0x19,0x10,0x00,0x00,0x10,0x00,0x46,0x40,0x40,0x40,0x44,0x40,0x00,0x10,0x08,0x81,0x82,0x3e,0x00 -+// 19283 䭓 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x04,0x12,0x10,0x12,0x10,0x12,0x10,0x12,0x19,0x10,0x00,0x00,0x00,0x12,0x12,0x52,0x00,0x00,0x00,0x42,0x42,0x42,0x00,0x24,0x00,0x01,0x00 -+// 19284 䭔 ; -+,0x00,0x08,0x08,0x02,0x10,0x24,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x08,0xa2,0x60,0x20,0x20,0xe0,0x22,0x22,0x22,0x22,0x22,0x80,0x1f,0x00 -+// 19285 䭕 ; -+,0x00,0x00,0x04,0x05,0x05,0x04,0x04,0x04,0x01,0x06,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x04,0x04,0x04,0x84,0x10,0x5e,0x10,0x10,0x04,0x10,0x0c,0x00 -+// 19286 䭖 ; -+,0x00,0x04,0x0c,0x0b,0x11,0x24,0x12,0x12,0x12,0x12,0x10,0x10,0x12,0x19,0x00,0x00,0x00,0x10,0x08,0x81,0x80,0x84,0x85,0x84,0x84,0x84,0x84,0x80,0x00,0x55,0x00,0x00 -+// 19287 䭗 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x04,0x12,0x10,0x12,0x10,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x10,0x00,0x04,0x24,0x00,0x00,0x02,0x42,0x42,0x42,0x28,0x28,0x49,0x87,0x00 -+// 19288 䭘 ; -+,0x00,0x00,0x0c,0x0a,0x11,0x24,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x40,0x10,0x00,0x02,0x42,0x42,0x10,0x50,0x92,0x11,0x00 -+// 19289 䭙 ; -+,0x00,0x00,0x08,0x02,0x10,0x24,0x02,0x02,0x12,0x02,0x12,0x00,0x02,0x10,0x00,0x00,0x00,0x00,0x64,0x44,0x4c,0x66,0x00,0xa1,0x00,0x04,0x04,0x44,0x44,0x04,0x44,0x00 -+// 19290 䭚 ; -+,0x00,0x00,0x08,0x02,0x10,0x24,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x00,0x00,0x00,0x00,0x10,0x04,0x24,0x28,0x00,0x52,0x10,0x50,0x50,0x10,0x12,0x10,0x13,0x00 -+// 19291 䭛 ; -+,0x00,0x00,0x08,0x02,0x10,0x04,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x19,0x10,0x00,0x00,0x00,0x44,0x48,0x48,0xab,0xa2,0xa2,0xa2,0xa2,0xa6,0xa4,0xa4,0x2a,0x23,0x00 -+// 19292 䭜 ; -+,0x00,0x00,0x08,0x02,0x10,0x24,0x02,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x10,0x18,0x82,0xa4,0x46,0x47,0x44,0x44,0x54,0x10,0x52,0x92,0x10,0x00 -+// 19293 䭝 ; -+,0x00,0x00,0x08,0x12,0x10,0x04,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x00,0x00,0x00,0x10,0x30,0x28,0x46,0x03,0x02,0x16,0x12,0x02,0x44,0x44,0x44,0x44,0x44,0x00 -+// 19294 䭞 ; -+,0x00,0x04,0x0c,0x0b,0x10,0x24,0x12,0x10,0x12,0x10,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x2a,0x0a,0x2a,0x10,0x10,0x11,0x04,0x20,0x02,0x10,0x10,0x10,0x10,0x00 -+// 19295 䭟 ; -+,0x00,0x08,0x08,0x12,0x10,0x24,0x02,0x02,0x12,0x02,0x12,0x00,0x02,0x10,0x00,0x00,0x00,0x00,0x2a,0x28,0x00,0x04,0xa4,0x00,0xc2,0x10,0x12,0x30,0x54,0x92,0x10,0x00 -+// 19296 䭠 ; -+,0x00,0x00,0x08,0x0a,0x10,0x24,0x12,0x12,0x12,0x12,0x10,0x13,0x13,0x11,0x00,0x00,0x00,0x10,0x10,0x84,0x80,0xa8,0xa8,0xaa,0xab,0xaa,0x2e,0x28,0x68,0x2b,0x28,0x00 -+// 19297 䭡 ; -+,0x00,0x08,0x08,0x12,0x10,0x04,0x12,0x12,0x12,0x12,0x10,0x10,0x12,0x19,0x00,0x00,0x00,0x04,0x00,0x14,0x40,0x10,0x13,0x00,0x02,0x02,0x02,0x00,0x50,0x41,0x26,0x00 -+// 19298 䭢 ; -+,0x00,0x00,0x08,0x02,0x10,0x24,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x10,0x10,0x83,0x00,0x20,0x3c,0x00,0x2a,0x2a,0x00,0x10,0x10,0x10,0x30,0x10 -+// 19299 䭣 ; -+,0x00,0x00,0x0c,0x0a,0x10,0x24,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x12,0x08,0x18,0xd4,0x94,0x15,0x54,0x42,0x42,0x42,0x42,0x82,0x02,0x00 -+// 19300 䭤 ; -+,0x00,0x08,0x08,0x12,0x10,0x24,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x18,0x10,0x00,0x00,0x00,0x08,0xaa,0xaa,0x08,0x00,0x02,0xc2,0x12,0x12,0x02,0x12,0xc0,0x3f,0x00 -+// 19301 䭥 ; -+,0x00,0x08,0x08,0x02,0x10,0x24,0x12,0x12,0x12,0x12,0x10,0x10,0x12,0x18,0x10,0x00,0x00,0x20,0x20,0x10,0x10,0x20,0x20,0x54,0xd7,0x44,0x44,0x44,0x42,0x4c,0x42,0x00 -+// 19302 䭦 ; -+,0x00,0x08,0x0c,0x12,0x10,0x04,0x12,0x12,0x12,0x12,0x10,0x10,0x12,0x10,0x00,0x00,0x00,0x20,0x25,0x20,0x02,0x88,0x08,0x28,0xaa,0x2a,0x00,0x07,0x80,0x80,0x84,0x00 -+// 19303 䭧 ; -+,0x00,0x04,0x08,0x0a,0x11,0x04,0x12,0x10,0x12,0x10,0x12,0x10,0x13,0x19,0x10,0x00,0x00,0x00,0x08,0x40,0x80,0xb6,0xb6,0x85,0x80,0x84,0x98,0xb3,0x88,0x28,0x08,0x00 -+// 19304 䭨 ; -+,0x00,0x04,0x0c,0x0a,0x11,0x04,0x13,0x10,0x12,0x10,0x10,0x12,0x11,0x18,0x10,0x00,0x00,0x00,0x52,0x52,0x00,0x4a,0x4a,0x4a,0x48,0x40,0x41,0x67,0x55,0x55,0x43,0x00 -+// 19305 䭩 ; -+,0x00,0x04,0x08,0x0a,0x11,0x04,0x12,0x10,0x12,0x10,0x12,0x10,0x12,0x19,0x10,0x00,0x00,0x00,0x08,0x00,0x10,0x96,0xb6,0x85,0x80,0x94,0x94,0x94,0x95,0x14,0x14,0x00 -+// 19306 䭪 ; -+,0x00,0x08,0x08,0x00,0x13,0x02,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x00,0x01,0x02,0x92,0x92,0x92,0x92,0x12,0x10,0x11,0x00 -+// 19307 䭫 ; -+,0x00,0x00,0x10,0x16,0x10,0x10,0x19,0x00,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x04,0x24,0x09,0x10,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19308 䭬 ; -+,0x00,0x00,0x10,0x16,0x10,0x10,0x1f,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x2a,0x00,0x54,0x2a,0x00,0x10,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19309 䭭 ; -+,0x00,0x00,0x08,0x08,0x04,0x04,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x00,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x22,0x01,0x00 -+// 19310 䭮 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x11,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x84,0x88,0x86,0x00,0x06,0x90,0x10,0x23,0x80,0x0c,0x08,0x00,0x08,0x08,0x00 -+// 19311 䭯 ; -+,0x00,0x00,0x06,0x04,0x05,0x0c,0x05,0x14,0x00,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x08,0x00,0x42,0x42,0x42,0x5a,0x00,0x00,0x40,0x40,0x40,0x4a,0x00,0x00 -+// 19312 䭰 ; -+,0x00,0x00,0x06,0x04,0x05,0x0c,0x05,0x14,0x00,0x13,0x11,0x10,0x10,0x11,0x10,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x21,0x20,0x04,0x12,0x11,0x12,0x10,0x10,0x10,0x00 -+// 19313 䭱 ; -+,0x00,0x00,0x06,0x04,0x05,0x0c,0x0d,0x14,0x04,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x0a,0x02,0x24,0x00,0x59,0x01,0x19,0x2d,0x27,0x41,0x01,0x01,0x02,0x00 -+// 19314 䭲 ; -+,0x00,0x00,0x06,0x04,0x05,0x0c,0x0d,0x14,0x00,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0x00,0x12,0x10,0x24,0x00,0x01,0x04,0x54,0x44,0x44,0x44,0x04,0x0c,0x00 -+// 19315 䭳 ; -+,0x00,0x03,0x04,0x0c,0x05,0x0c,0x0a,0x06,0x01,0x00,0x01,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x52,0x52,0x52,0x58,0x28,0x0f,0xb8,0x40,0xc0,0x4c,0x08,0x08,0x08,0x00 -+// 19316 䭴 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x40,0xc8,0x44,0x40,0x42,0x02,0x4a,0x04,0x4c,0xc2,0x00,0x00,0x00,0x00 -+// 19317 䭵 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x15,0x14,0x15,0x01,0x03,0x07,0x21,0x01,0x02,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0x24,0x14,0x1c,0x44,0x44,0x44,0x04,0x85,0x07,0x00 -+// 19318 䭶 ; -+,0x00,0x00,0x14,0x14,0x15,0x14,0x15,0x14,0x15,0x00,0x03,0x07,0x21,0x01,0x02,0x00,0x00,0x00,0x00,0x14,0x14,0x14,0x14,0x04,0x04,0x24,0x24,0x24,0x04,0x04,0x04,0x00 -+// 19319 䭷 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x15,0x14,0x15,0x01,0x03,0x07,0x21,0x01,0x02,0x00,0x00,0x00,0x0c,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 19320 䭸 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x03,0x17,0x21,0x01,0x02,0x00,0x00,0x00,0x20,0x24,0x02,0x41,0x04,0x04,0x08,0x28,0x38,0x10,0x18,0x0c,0x03,0x00 -+// 19321 䭹 ; -+,0x00,0x00,0x14,0x14,0x15,0x14,0x15,0x14,0x15,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x29,0x49,0x48,0x48,0x48,0x48,0x48,0x48,0x4a,0x0a,0x08,0x08,0x00 -+// 19322 䭺 ; -+,0x00,0x00,0x14,0x14,0x15,0x14,0x15,0x14,0x15,0x01,0x01,0x07,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x01,0x00,0x00,0x20,0x20,0x00,0x00,0x00,0x40,0x01,0x87,0x00 -+// 19323 䭻 ; -+,0x00,0x00,0x14,0x14,0x15,0x14,0x15,0x14,0x15,0x01,0x03,0x25,0x21,0x01,0x02,0x00,0x00,0x00,0x00,0x20,0x24,0x00,0x42,0x01,0x16,0x12,0x12,0x02,0x20,0x04,0x0c,0x00 -+// 19324 䭼 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x15,0x14,0x15,0x01,0x03,0x15,0x21,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x24,0x24,0x24,0x24,0x24,0x04,0x44,0x84,0x00 -+// 19325 䭽 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x00,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x08,0x08,0x28,0x2a,0x08,0x48,0x08,0x88,0x09,0x08,0x08,0x08,0x08,0x08,0x00 -+// 19326 䭾 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x15,0x04,0x14,0x00,0x02,0x25,0x21,0x01,0x03,0x00,0x00,0x10,0x10,0x14,0x10,0x11,0x10,0x10,0x90,0x80,0x20,0x24,0x04,0x42,0x03,0x00 -+// 19327 䭿 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x50,0x52,0x50,0x10,0x10,0x11,0x10,0x18,0x00,0x24,0x42,0x03,0x00 -+// 19328 䮀 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x20,0x22,0x02,0x42,0x6a,0x0a,0x0a,0x2a,0x02,0x04,0x00,0x01,0x3f,0x00 -+// 19329 䮁 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x00,0x02,0x63,0x00,0x04,0x04,0x25,0x24,0x24,0x24,0x44,0x04,0x00 -+// 19330 䮂 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x03,0x15,0x21,0x01,0x02,0x00,0x00,0x00,0x20,0x24,0x20,0x20,0x20,0x22,0x22,0x24,0x14,0x48,0x48,0x14,0x03,0x00 -+// 19331 䮃 ; -+,0x00,0x00,0x14,0x04,0x15,0x04,0x15,0x04,0x15,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x1a,0x10,0x10,0x10,0x12,0x10,0x10,0x20,0x22,0x42,0x40,0x00 -+// 19332 䮄 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x02,0x24,0x28,0x08,0x10,0x00,0x42,0x40,0x00 -+// 19333 䮅 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x01,0x01,0x17,0x21,0x01,0x02,0x00,0x00,0x00,0x0c,0x08,0x0a,0x48,0x48,0x4a,0x4a,0x4c,0x4c,0x44,0x6c,0x43,0x01,0x00 -+// 19334 䮆 ; -+,0x00,0x01,0x14,0x04,0x14,0x04,0x14,0x04,0x14,0x01,0x01,0x17,0x21,0x01,0x06,0x00,0x00,0x00,0x18,0x10,0x30,0x12,0x11,0x10,0x00,0x08,0x19,0x00,0x00,0x00,0x00,0x00 -+// 19335 䮇 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x15,0x14,0x15,0x01,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x10,0x11,0x10,0x10,0x10,0x00 -+// 19336 䮈 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x03,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x12,0x22,0x14,0x08,0x20,0x90,0x93,0x22,0x14,0x00,0x10,0x20,0x00 -+// 19337 䮉 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x03,0x15,0x21,0x01,0x02,0x00,0x00,0x20,0x20,0x40,0x40,0x00,0x0c,0x40,0x42,0x40,0x40,0x48,0x44,0x66,0x43,0x00 -+// 19338 䮊 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x15,0x04,0x15,0x01,0x03,0x15,0x21,0x01,0x06,0x00,0x00,0x00,0x00,0x18,0x00,0x1a,0x02,0x5a,0x50,0x51,0x11,0x1a,0x20,0x26,0x03,0x00 -+// 19339 䮋 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x14,0x01,0x01,0x11,0x00,0x02,0x06,0x00,0x00,0x00,0x02,0x22,0x06,0x06,0x56,0x56,0x56,0x36,0x26,0x22,0x02,0x42,0x06,0x00 -+// 19340 䮌 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x14,0x01,0x01,0x03,0x21,0x00,0x06,0x00,0x00,0x00,0x28,0x48,0x48,0x0d,0xcc,0x4c,0x5c,0x4a,0x4a,0x49,0x48,0x48,0x48,0x00 -+// 19341 䮍 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x12,0x10,0x00,0x03,0x06,0x0a,0x02,0x03,0x00,0x00,0x04,0x40,0xc0,0xc4,0xc2,0x00,0x50,0x84,0x00,0x00,0x48,0x20,0x18,0x07,0x00 -+// 19342 䮎 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x01,0x01,0x06,0x00,0x00,0x04,0x0c,0x1c,0x02,0x10,0x31,0x20,0x08,0x6a,0x0a,0x0a,0x0a,0x0a,0x08,0x00 -+// 19343 䮏 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x15,0x01,0x01,0x06,0x00,0x00,0x00,0x12,0x10,0x10,0x14,0x04,0x04,0x00,0x00,0x06,0x00,0x00,0x24,0x00,0x00 -+// 19344 䮐 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x17,0x31,0x02,0x06,0x00,0x00,0x00,0x02,0x00,0x00,0x26,0x42,0x00,0x00,0x00,0x08,0x20,0x00,0x02,0x06,0x00 -+// 19345 䮑 ; -+,0x00,0x00,0x14,0x14,0x15,0x14,0x15,0x14,0x14,0x01,0x01,0x17,0x21,0x01,0x02,0x00,0x00,0x00,0x1c,0x00,0x12,0x28,0x20,0x04,0x05,0x04,0x04,0x14,0x04,0x04,0x0c,0x00 -+// 19346 䮒 ; -+,0x00,0x00,0x14,0x14,0x15,0x14,0x15,0x14,0x14,0x01,0x01,0x17,0x21,0x01,0x02,0x00,0x00,0x00,0x02,0x00,0x18,0x00,0x5a,0x40,0x4a,0x40,0x40,0x4a,0x40,0x40,0x42,0x00 -+// 19347 䮓 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x15,0x21,0x01,0x06,0x00,0x00,0x00,0x10,0x10,0x10,0x52,0x42,0x42,0x42,0x42,0x00,0x09,0x00,0x00,0x00,0x00 -+// 19348 䮔 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x11,0x02,0x06,0x00,0x00,0x00,0x1c,0x10,0x10,0x54,0x54,0x54,0x54,0x54,0x54,0x10,0x10,0x10,0x02,0x00 -+// 19349 䮕 ; -+,0x00,0x00,0x14,0x00,0x1c,0x00,0x1c,0x00,0x14,0x00,0x06,0x1a,0x02,0x02,0x04,0x00,0x00,0x00,0x22,0x22,0x44,0x46,0xaa,0x00,0x23,0x22,0x02,0x44,0x64,0x0a,0x00,0x00 -+// 19350 䮖 ; -+,0x00,0x01,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x03,0x17,0x21,0x01,0x02,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x22,0x00,0x00,0x42,0x40,0x42,0x40,0x42,0x40,0x00 -+// 19351 䮗 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x15,0x31,0x01,0x02,0x00,0x00,0x00,0x08,0x48,0x48,0x42,0x00,0x40,0x40,0x48,0x48,0x49,0x08,0x88,0x08,0x00 -+// 19352 䮘 ; -+,0x00,0x01,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x05,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x42,0x42,0x52,0x42,0x42,0x42,0x00,0x00,0x20,0x20,0x41,0x07,0x00 -+// 19353 䮙 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x1b,0x21,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x19,0x00,0x00,0x2a,0xaa,0x28,0x2c,0x04,0x4c,0x13,0x01,0x00 -+// 19354 䮚 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x17,0x21,0x01,0x02,0x00,0x00,0x00,0x10,0x12,0x10,0x11,0x00,0x22,0x51,0x34,0x24,0x48,0x18,0x18,0x47,0x00 -+// 19355 䮛 ; -+,0x00,0x00,0x1c,0x00,0x1c,0x00,0x1c,0x00,0x19,0x02,0x06,0x1a,0x22,0x02,0x04,0x00,0x00,0x00,0xd2,0xd2,0xc2,0xa2,0x92,0xd2,0x92,0xb6,0xd2,0x92,0x92,0x92,0x96,0x00 -+// 19356 䮜 ; -+,0x00,0x01,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x17,0x01,0x01,0x02,0x00,0x00,0x00,0x54,0x54,0x54,0x54,0x54,0x40,0x50,0x10,0x18,0x38,0x14,0x12,0x10,0x00 -+// 19357 䮝 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x00,0x01,0x80,0x1a,0x00,0x5a,0x42,0x5a,0x42,0x52,0x10,0x10,0x00,0x00,0x00 -+// 19358 䮞 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x21,0x00,0x02,0x00,0x00,0x00,0x10,0x12,0x10,0x30,0x20,0x20,0x04,0x46,0x45,0x44,0x44,0x44,0x44,0x00 -+// 19359 䮟 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x00,0x00,0x03,0x88,0x12,0x50,0x14,0x22,0x40,0x04,0x00,0x18,0x18,0x07,0x00 -+// 19360 䮠 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x21,0x01,0x02,0x00,0x00,0x00,0x02,0x00,0x06,0x00,0x04,0x00,0x00,0x10,0x00,0x52,0x00,0x00,0x42,0x00 -+// 19361 䮡 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x17,0x21,0x01,0x03,0x00,0x00,0x20,0x20,0x00,0x42,0x22,0x22,0x02,0x32,0x00,0x22,0x04,0x08,0x18,0x27,0x00 -+// 19362 䮢 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x21,0x01,0x02,0x00,0x00,0x00,0x0c,0x10,0x00,0x1a,0x00,0x32,0x82,0x82,0x52,0x02,0x02,0x42,0x02,0x00 -+// 19363 䮣 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x17,0x21,0x01,0x02,0x00,0x00,0x00,0x04,0x18,0x04,0x00,0x22,0x66,0x22,0x00,0x12,0x10,0x34,0x52,0x10,0x00 -+// 19364 䮤 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x21,0x01,0x02,0x00,0x00,0x08,0x10,0x51,0x10,0x00,0x20,0x22,0x48,0x4a,0x48,0x4a,0x48,0x48,0x40,0x00 -+// 19365 䮥 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x21,0x00,0x02,0x00,0x00,0x00,0x02,0x00,0x44,0x40,0x00,0x00,0x83,0xa0,0x80,0x90,0x90,0x90,0x82,0x00 -+// 19366 䮦 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x15,0x21,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x00,0x01,0x01,0x05,0x05,0x05,0x01,0x03,0x00 -+// 19367 䮧 ; -+,0x00,0x04,0x04,0x04,0x04,0x13,0x10,0x12,0x10,0x12,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x44,0x03,0x58,0x5c,0x40,0x5a,0x40,0x43,0x00,0x2e,0x82,0x06,0x00 -+// 19368 䮨 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x15,0x14,0x15,0x11,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x10,0x00,0x01,0x90,0x00,0x00,0x24,0x20,0x09,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19369 䮩 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x11,0x00,0x02,0x00,0x00,0x00,0x44,0x04,0x0c,0x04,0x81,0x80,0x46,0x04,0x00,0x04,0x00,0x00,0x44,0x00 -+// 19370 䮪 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x1b,0x31,0x02,0x02,0x00,0x00,0x40,0x44,0x74,0xa4,0xac,0x55,0x44,0x14,0x10,0x30,0x38,0x14,0x12,0x10,0x00 -+// 19371 䮫 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x31,0x00,0x06,0x00,0x00,0x00,0x52,0x52,0x52,0x52,0x10,0x52,0x52,0x02,0x10,0x24,0x08,0x18,0x22,0x00 -+// 19372 䮬 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x20,0x24,0x24,0x20,0x42,0x42,0x42,0x42,0x52,0x10,0x10,0x28,0x20,0x47,0x00 -+// 19373 䮭 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x00,0x18,0x02,0x04,0x00,0x42,0x40,0x40,0x40,0x40,0x68,0x28,0x28,0x0f,0x00 -+// 19374 䮮 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x00,0x00,0x08,0x02,0x46,0x18,0x34,0x11,0x10,0x26,0x44,0x08,0x14,0x02,0x00 -+// 19375 䮯 ; -+,0x00,0x00,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x12,0x30,0x02,0x06,0x00,0x00,0x00,0x04,0x48,0x48,0x6a,0x02,0x42,0x4a,0x48,0x04,0x24,0xac,0x22,0x03,0x00 -+// 19376 䮰 ; -+,0x00,0x01,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x17,0x21,0x01,0x02,0x00,0x00,0x10,0x00,0x00,0x24,0x20,0x43,0x10,0xd4,0x10,0x24,0x20,0x20,0x00,0x02,0x00 -+// 19377 䮱 ; -+,0x00,0x00,0x14,0x00,0x14,0x00,0x14,0x00,0x15,0x01,0x01,0x1b,0x30,0x03,0x06,0x00,0x00,0x00,0x02,0x08,0x50,0x02,0x08,0xd4,0x0e,0x15,0x05,0x04,0x08,0x80,0x1f,0x00 -+// 19378 䮲 ; -+,0x00,0x01,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x01,0x01,0x17,0x31,0x01,0x02,0x00,0x00,0x04,0x24,0x26,0x24,0x25,0x00,0x1a,0x42,0x5a,0x42,0x42,0x00,0x22,0x41,0x00 -+// 19379 䮳 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x11,0x02,0x06,0x00,0x00,0x00,0x1c,0x14,0x10,0x38,0x30,0x12,0x00,0x52,0x12,0x52,0x12,0x12,0x42,0x00 -+// 19380 䮴 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x00,0x30,0x28,0xa2,0x44,0x4e,0x01,0x44,0x44,0x44,0x44,0x00,0x28,0x29,0x00 -+// 19381 䮵 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x31,0x01,0x02,0x00,0x00,0x00,0x10,0x00,0x24,0x01,0x00,0x52,0x52,0x52,0x52,0x10,0x12,0x10,0x11,0x00 -+// 19382 䮶 ; -+,0x00,0x00,0x14,0x00,0x14,0x00,0x14,0x00,0x15,0x01,0x01,0x13,0x30,0x02,0x06,0x00,0x00,0x00,0x48,0x42,0xc0,0x58,0x42,0x40,0x5a,0x10,0x12,0x30,0x34,0x12,0x11,0x00 -+// 19383 䮷 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x11,0x00,0x02,0x00,0x00,0x00,0x6a,0x0a,0x6a,0x00,0x41,0x01,0x10,0x50,0x50,0x00,0x16,0xc2,0x06,0x00 -+// 19384 䮸 ; -+,0x00,0x02,0x08,0x0a,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x0c,0x00,0x02,0x10,0x00,0x00,0x04,0xc4,0x04,0x44,0xc4,0x00,0x0a,0x80,0x88,0x88,0x82,0x12,0x42,0x04,0x00 -+// 19385 䮹 ; -+,0x00,0x00,0x04,0x00,0x0c,0x00,0x0c,0x00,0x05,0x00,0x04,0x1a,0x02,0x02,0x06,0x00,0x00,0x10,0x54,0x50,0x50,0x08,0x00,0x88,0x98,0x80,0xa2,0xf4,0xb4,0x2a,0x03,0x00 -+// 19386 䮺 ; -+,0x00,0x00,0x14,0x04,0x14,0x04,0x14,0x04,0x15,0x01,0x01,0x13,0x20,0x02,0x06,0x00,0x00,0x00,0x01,0x00,0x1a,0xa4,0x90,0x15,0x10,0x42,0x42,0x42,0x42,0x02,0x82,0x00 -+// 19387 䮻 ; -+,0x00,0x00,0x04,0x00,0x14,0x00,0x14,0x00,0x15,0x01,0x01,0x1a,0x02,0x02,0x06,0x00,0x00,0x00,0x12,0x00,0x00,0x01,0x04,0x10,0x00,0x01,0x02,0x22,0x22,0x22,0x02,0x00 -+// 19388 䮼 ; -+,0x00,0x00,0x04,0x00,0x14,0x00,0x14,0x00,0x15,0x01,0x01,0x1a,0x02,0x02,0x06,0x00,0x00,0x00,0x02,0x54,0x22,0x02,0x54,0x24,0x00,0x40,0x56,0x88,0x6f,0x00,0x00,0x00 -+// 19389 䮽 ; -+,0x00,0x00,0x14,0x00,0x14,0x00,0x14,0x00,0x15,0x01,0x04,0x1a,0x03,0x03,0x00,0x00,0x00,0x10,0x00,0x98,0x88,0x8a,0x8a,0x80,0x82,0xa4,0x80,0xa7,0x00,0x10,0x91,0x00 -+// 19390 䮾 ; -+,0x00,0x00,0x1c,0x00,0x1c,0x00,0x1e,0x00,0x14,0x00,0x06,0x1a,0x22,0x02,0x06,0x00,0x00,0x00,0x48,0x08,0x28,0x02,0x02,0x0a,0x8a,0xa8,0x8a,0xa8,0x88,0x88,0xab,0x00 -+// 19391 䮿 ; -+,0x00,0x02,0x08,0x00,0x0c,0x00,0x0c,0x00,0x0a,0x02,0x06,0x1a,0x02,0x02,0x04,0x00,0x00,0x00,0x10,0x8a,0x28,0x28,0x28,0x28,0x44,0x46,0x45,0x54,0x52,0x90,0x3e,0x00 -+// 19392 䯀 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x0c,0x00,0x03,0x00,0x06,0x1a,0x02,0x02,0x04,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x04,0x01,0xa8,0xa2,0xa0,0xa0,0xab,0x20,0x20,0x00 -+// 19393 䯁 ; -+,0x00,0x02,0x08,0x00,0x08,0x08,0x08,0x00,0x23,0x03,0x06,0x1b,0x43,0x03,0x04,0x00,0x00,0x10,0x12,0x40,0x40,0x42,0x42,0x00,0x64,0x5c,0x54,0x56,0x58,0x50,0x81,0x00 -+// 19394 䯂 ; -+,0x00,0x04,0x04,0x04,0x00,0x09,0x15,0x15,0x14,0x00,0x21,0x00,0x01,0x02,0x08,0x00,0x00,0x08,0xc8,0xc0,0x04,0x18,0x0a,0x2e,0x2a,0x02,0x42,0xc2,0xc0,0x10,0x0e,0x00 -+// 19395 䯃 ; -+,0x00,0x00,0x02,0x02,0x10,0x10,0x14,0x14,0x17,0x00,0x02,0x22,0x02,0x02,0x0c,0x00,0x00,0x00,0x08,0x41,0x40,0x10,0x10,0x20,0x24,0x24,0x04,0x28,0x18,0x12,0x41,0x00 -+// 19396 䯄 ; -+,0x00,0x00,0x02,0x02,0x12,0x12,0x10,0x10,0x11,0x01,0x00,0x30,0x02,0x02,0x04,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x10,0x11,0x11,0x09,0x25,0x41,0x01,0x03,0x00 -+// 19397 䯅 ; -+,0x00,0x00,0x06,0x00,0x14,0x14,0x14,0x14,0x12,0x02,0x02,0x22,0x02,0x02,0x04,0x00,0x00,0x00,0x24,0x04,0x04,0x24,0x25,0x04,0x00,0x23,0x22,0x42,0x44,0x2a,0x01,0x00 -+// 19398 䯆 ; -+,0x00,0x00,0x08,0x0a,0x0a,0x0a,0x00,0x20,0x08,0x09,0x08,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x90,0x10,0x10,0x90,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x1e,0x00 -+// 19399 䯇 ; -+,0x00,0x01,0x11,0x15,0x15,0x15,0x20,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x08,0x00,0x00,0x19,0x81,0x11,0x11,0x11,0x10,0x22,0x22,0x02,0x0e,0x00 -+// 19400 䯈 ; -+,0x00,0x00,0x11,0x05,0x05,0x05,0x20,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x14,0x14,0x04,0x24,0x24,0x24,0x45,0x07,0x00 -+// 19401 䯉 ; -+,0x00,0x01,0x01,0x05,0x01,0x15,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x10,0x10,0x10,0x02,0x22,0xa8,0x08,0x08,0x18,0x14,0x14,0x22,0x03,0x41,0x00 -+// 19402 䯊 ; -+,0x00,0x01,0x11,0x15,0x15,0x15,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x00,0x00,0x00,0x01,0x02,0x02,0x0a,0xca,0x0a,0x0a,0x2a,0x02,0x02,0x02,0x02,0x06,0x00 -+// 19403 䯋 ; -+,0x00,0x00,0x11,0x05,0x01,0x01,0x20,0x20,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x04,0x00,0x00,0x20,0xa0,0x22,0x22,0x24,0x04,0x08,0x48,0x14,0x03,0x00 -+// 19404 䯌 ; -+,0x00,0x00,0x13,0x14,0x14,0x14,0x21,0x00,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0xc0,0x40,0x54,0x50,0x50,0x50,0x00,0x21,0x03,0x00 -+// 19405 䯍 ; -+,0x00,0x01,0x11,0x15,0x15,0x15,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x00,0x10,0x10,0x10,0x24,0x82,0x09,0x00,0x02,0x04,0x00,0x00,0x10,0x08,0x00 -+// 19406 䯎 ; -+,0x00,0x01,0x11,0x15,0x15,0x15,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x00,0x00,0x00,0x08,0x10,0x00,0x24,0xc3,0x05,0x00,0x00,0x1a,0x00,0x00,0x00,0x00,0x00 -+// 19407 䯏 ; -+,0x00,0x00,0x11,0x15,0x15,0x15,0x20,0x01,0x01,0x09,0x01,0x09,0x01,0x01,0x13,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x89,0x08,0x08,0x0a,0x02,0x02,0x02,0x02,0x42,0x00 -+// 19408 䯐 ; -+,0x00,0x00,0x11,0x14,0x14,0x14,0x20,0x21,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x00,0x00,0x00,0x08,0x08,0x09,0x09,0xd5,0x03,0x09,0x09,0x15,0x07,0x01,0x01,0x02,0x00 -+// 19409 䯑 ; -+,0x00,0x00,0x13,0x14,0x14,0x14,0x20,0x21,0x11,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x08,0x08,0x0a,0x28,0x88,0x19,0x18,0x08,0x28,0x28,0x08,0x49,0x07,0x00 -+// 19410 䯒 ; -+,0x00,0x00,0x12,0x16,0x14,0x14,0x20,0x03,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x20,0x40,0x00,0x20,0x83,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x44,0x00 -+// 19411 䯓 ; -+,0x00,0x00,0x11,0x14,0x14,0x14,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x1a,0x00,0x80,0x19,0x00,0x00,0x00,0x18,0x00,0x00,0x01,0x00 -+// 19412 䯔 ; -+,0x00,0x00,0x13,0x14,0x14,0x14,0x20,0x21,0x11,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x10,0x19,0x00,0x00,0x98,0x10,0x10,0x12,0x10,0x10,0x10,0x10,0x0f,0x00 -+// 19413 䯕 ; -+,0x00,0x00,0x12,0x16,0x14,0x14,0x20,0x03,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x02,0x24,0x04,0x04,0xc5,0x64,0x24,0x24,0x24,0x00,0x40,0x70,0x0f,0x00 -+// 19414 䯖 ; -+,0x00,0x00,0x11,0x14,0x14,0x14,0x20,0x01,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x08,0x22,0x22,0x22,0xa2,0x22,0x22,0x20,0x2a,0x28,0x24,0x22,0x21,0x00 -+// 19415 䯗 ; -+,0x00,0x00,0x12,0x16,0x16,0x16,0x21,0x01,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x40,0x41,0x54,0x40,0xc0,0x61,0x06,0x00,0x00,0x18,0x00,0x00,0x01,0x00 -+// 19416 䯘 ; -+,0x00,0x00,0x12,0x16,0x14,0x14,0x20,0x01,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x10,0x00,0x42,0x00,0x84,0x00,0x02,0x28,0x28,0x28,0x28,0x49,0x8f,0x00 -+// 19417 䯙 ; -+,0x00,0x00,0x13,0x14,0x14,0x14,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x00,0x00,0x00,0x08,0x0a,0x08,0x08,0x89,0x08,0x28,0x08,0x28,0x08,0x08,0x08,0x0a,0x00 -+// 19418 䯚 ; -+,0x00,0x00,0x11,0x14,0x14,0x14,0x20,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x00,0x00,0x00,0x10,0x04,0x28,0x02,0xb3,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00 -+// 19419 䯛 ; -+,0x00,0x00,0x12,0x16,0x16,0x16,0x21,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x08,0x49,0x40,0x20,0x3a,0x58,0x10,0x40,0x20,0x02,0x40,0x01,0x07,0x00 -+// 19420 䯜 ; -+,0x00,0x00,0x13,0x14,0x14,0x14,0x20,0x01,0x11,0x10,0x10,0x10,0x10,0x10,0x12,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0xa2,0x20,0x75,0x15,0x28,0x0a,0x12,0x02,0x0e,0x00 -+// 19421 䯝 ; -+,0x00,0x00,0x12,0x16,0x14,0x14,0x21,0x01,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x10,0x10,0x20,0x28,0xc8,0x00,0x02,0x22,0x22,0x22,0x22,0x22,0x26,0x00 -+// 19422 䯞 ; -+,0x00,0x00,0x13,0x14,0x14,0x14,0x21,0x03,0x10,0x12,0x10,0x12,0x10,0x12,0x12,0x00,0x00,0x00,0x22,0x20,0x28,0x20,0xa0,0x2f,0x41,0x45,0x45,0x55,0x41,0x41,0x43,0x00 -+// 19423 䯟 ; -+,0x00,0x00,0x12,0x16,0x14,0x16,0x21,0x03,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x24,0x00,0x0a,0x10,0xa0,0x16,0x18,0x48,0x18,0x2a,0x09,0x08,0x10,0x00 -+// 19424 䯠 ; -+,0x00,0x00,0x13,0x16,0x14,0x14,0x21,0x01,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x06,0x40,0x44,0x40,0xc0,0x04,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x00 -+// 19425 䯡 ; -+,0x00,0x00,0x12,0x16,0x12,0x12,0x21,0x00,0x12,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x04,0x00,0x18,0x28,0x28,0x2a,0x2b,0x2a,0x2a,0x28,0x28,0x6a,0x2b,0x29,0x00 -+// 19426 䯢 ; -+,0x00,0x00,0x10,0x11,0x11,0x13,0x10,0x10,0x11,0x11,0x14,0x10,0x00,0x00,0x00,0x00,0x00,0x40,0x42,0x00,0x9a,0x94,0x02,0x00,0x40,0x40,0x0a,0x08,0x08,0x08,0x08,0x00 -+// 19427 䯣 ; -+,0x00,0x00,0x12,0x16,0x16,0x16,0x21,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x20,0x42,0x00 -+// 19428 䯤 ; -+,0x00,0x00,0x12,0x14,0x14,0x14,0x21,0x00,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x00,0x10,0x24,0x06,0x01,0x42,0x46,0x5a,0x00,0x44,0x40,0x44,0x40,0x44,0x00 -+// 19429 䯥 ; -+,0x00,0x00,0x12,0x16,0x16,0x16,0x21,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x24,0x00,0x6a,0x04,0x5d,0x10,0x00,0x01,0x81,0x00 -+// 19430 䯦 ; -+,0x00,0x00,0x12,0x14,0x14,0x14,0x21,0x00,0x10,0x12,0x10,0x12,0x10,0x10,0x12,0x00,0x00,0x04,0x25,0x24,0x00,0x5a,0xc2,0x42,0x00,0x4b,0x40,0x42,0x24,0x8c,0x03,0x00 -+// 19431 䯧 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x10,0x20,0x04,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x80,0x42,0x00,0x18,0x00,0x00,0x03,0x00,0x08,0x28,0x28,0x28,0x08,0x18,0x00 -+// 19432 䯨 ; -+,0x00,0x00,0x00,0x02,0x02,0x00,0x08,0x0a,0x0a,0x08,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x40,0x44,0x10,0x10,0x00,0x04,0x14,0x04,0x04,0x84,0x82,0x00,0x08,0x06,0x00 -+// 19433 䯩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x04,0x10,0x10,0x02,0x12,0x12,0x06,0x04,0x84,0x84,0x00,0x00,0xfe,0x00 -+// 19434 䯪 ; -+,0x00,0x04,0x04,0x00,0x01,0x01,0x01,0x00,0x10,0x10,0x1a,0x1a,0x1a,0x10,0x01,0x00,0x00,0x00,0x88,0x08,0x02,0x22,0x22,0x22,0xa2,0xa2,0xa2,0xa2,0x90,0xa2,0x81,0x00 -+// 19435 䯫 ; -+,0x00,0x00,0x11,0x11,0x11,0x15,0x04,0x00,0x01,0x01,0x01,0x04,0x15,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0x00,0x41,0x41,0x55,0x45,0x55,0xc1,0x43,0x00 -+// 19436 䯬 ; -+,0x00,0x04,0x05,0x00,0x00,0x00,0x0b,0x0a,0x00,0x00,0x01,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x51,0x51,0x51,0x00,0x0a,0x0a,0x0a,0x0a,0x08,0x09,0x08,0x08,0x08,0x00 -+// 19437 䯭 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x09,0x18,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0x0c,0x00,0x86,0x40,0x03,0x8c,0x80,0x0c,0x08,0x10,0xe0,0xe0,0x0e,0x00 -+// 19438 䯮 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x09,0x18,0x01,0x01,0x00,0x02,0x04,0x00,0x00,0x00,0x80,0x0c,0x00,0x86,0x40,0x03,0x88,0x80,0x18,0x10,0x13,0x02,0x02,0x0e,0x00 -+// 19439 䯯 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x09,0x18,0x00,0x02,0x04,0x00,0x00,0x01,0x00,0x00,0x80,0x0c,0x00,0x84,0x40,0x03,0x88,0x00,0x40,0x44,0x42,0x58,0x30,0x80,0x00 -+// 19440 䯰 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x0c,0x19,0x10,0x01,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x84,0x88,0x02,0x04,0x40,0x06,0x40,0x80,0x10,0x1e,0x10,0x10,0x10,0x10,0x00 -+// 19441 䯱 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x04,0x08,0x18,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x84,0x08,0x00,0x86,0x40,0x03,0x88,0x00,0xc0,0x80,0x48,0x06,0x01,0x00,0x00 -+// 19442 䯲 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x04,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x84,0x08,0x02,0x04,0x40,0x02,0x88,0x00,0x04,0x04,0xc4,0x00,0x00,0xfe,0x00 -+// 19443 䯳 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x1d,0x00,0x02,0x04,0x00,0x01,0x00,0x07,0x00,0x00,0xc4,0x08,0x02,0x04,0x40,0x06,0x80,0x00,0x00,0x08,0x86,0x00,0x08,0x0c,0x00 -+// 19444 䯴 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x1c,0x02,0x02,0x04,0x00,0x00,0x00,0x03,0x00,0x00,0xc4,0x08,0x06,0x00,0x03,0x0c,0x80,0x20,0x20,0x1e,0x18,0x30,0xc0,0x38,0x00 -+// 19445 䯵 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x11,0x10,0x00,0x02,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x88,0x80,0x84,0x40,0x02,0x08,0x00,0xc4,0x10,0x12,0x10,0x10,0x10,0x00 -+// 19446 䯶 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x10,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x80,0x88,0x82,0x04,0x40,0x06,0x80,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x00 -+// 19447 䯷 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x40,0x88,0x82,0x0c,0x40,0x0e,0x80,0x20,0x22,0x24,0xa8,0x18,0x28,0x06,0x00 -+// 19448 䯸 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x11,0x10,0x00,0x08,0x04,0x08,0x00,0x10,0x00,0x00,0x00,0x8c,0x80,0x86,0x40,0x02,0x08,0x00,0x80,0x86,0x20,0x60,0x48,0x06,0x00 -+// 19449 䯹 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x18,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x84,0x08,0x02,0x08,0x02,0x88,0x08,0x08,0x08,0x02,0x08,0x10,0xc0,0x3c,0x00 -+// 19450 䯺 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x04,0x00,0x00,0x84,0x90,0x84,0x00,0x0c,0x80,0x7c,0x00,0x20,0x18,0x06,0x08,0x00,0x08,0x00 -+// 19451 䯻 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x09,0x18,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x84,0x08,0x02,0x08,0x02,0x8c,0x00,0x00,0xc0,0x42,0x00,0x08,0x08,0x08,0x00 -+// 19452 䯼 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x10,0x02,0x04,0x02,0x06,0x0a,0x02,0x06,0x00,0x00,0x84,0x98,0x82,0x08,0x02,0x88,0x00,0x10,0x12,0x12,0x90,0x28,0x24,0x03,0x00 -+// 19453 䯽 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x10,0x00,0x00,0x01,0x00,0x04,0x04,0x04,0x00,0x00,0x84,0x98,0x86,0x08,0x02,0x88,0x00,0x44,0x10,0x00,0x00,0x08,0x08,0x08,0x00 -+// 19454 䯾 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x09,0x10,0x04,0x04,0x04,0x00,0x01,0x09,0x00,0x00,0x00,0x84,0x88,0x82,0x08,0x02,0x88,0x00,0x04,0xc4,0xd4,0x04,0x14,0x04,0x0c,0x00 -+// 19455 䯿 ; -+,0x00,0x00,0x08,0x08,0x08,0x0c,0x01,0x10,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x84,0x08,0x06,0x08,0x02,0x08,0x00,0x44,0x00,0x10,0x00,0x82,0x80,0x80,0x00 -+// 19456 䰀 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x09,0x00,0x00,0x01,0x02,0x01,0x02,0x00,0x01,0x00,0x00,0x84,0x88,0x86,0x08,0x06,0x80,0x18,0x42,0x40,0x4c,0x04,0x30,0x60,0x0c,0x00 -+// 19457 䰁 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x0c,0x00,0x00,0x00,0x84,0x98,0x86,0x88,0x06,0x80,0x00,0x08,0x08,0x40,0x4c,0x60,0x48,0xc6,0x00 -+// 19458 䰂 ; -+,0x00,0x00,0x08,0x08,0x08,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x84,0x88,0x86,0x88,0x02,0x88,0x08,0x00,0x08,0x00,0xc2,0xa0,0x18,0x06,0x00 -+// 19459 䰃 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x10,0x01,0x00,0x01,0x01,0x05,0x05,0x01,0x00,0x00,0x84,0x98,0x86,0x88,0x06,0x80,0x10,0x10,0x26,0x20,0x24,0x28,0x20,0x22,0x00 -+// 19460 䰄 ; -+,0x00,0x00,0x08,0x08,0x08,0x04,0x08,0x18,0x04,0x00,0x00,0x00,0x02,0x12,0x03,0x00,0x00,0x84,0x88,0x86,0x08,0x02,0x88,0x00,0x88,0x88,0x08,0x00,0x40,0x02,0xf8,0x00 -+// 19461 䰅 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x10,0x00,0x04,0x04,0x04,0x04,0x00,0x06,0x00,0x00,0x84,0x88,0x86,0x08,0x02,0x88,0x02,0x80,0x84,0x08,0x04,0x04,0x00,0x0c,0x02 -+// 19462 䰆 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x18,0x00,0x00,0x01,0x02,0x00,0x01,0x03,0x00,0x00,0x00,0x84,0x88,0x84,0x80,0x04,0x80,0x10,0x40,0xc4,0x40,0x40,0xe0,0x50,0x47,0x00 -+// 19463 䰇 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x18,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x00,0x00,0x84,0x90,0x86,0x80,0x06,0x80,0x40,0x58,0x71,0x80,0x04,0x04,0x04,0x0c,0x00 -+// 19464 䰈 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x01,0x01,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x84,0x98,0x86,0x80,0x06,0x80,0x00,0x24,0x88,0x00,0x00,0x08,0x00,0x42,0x00 -+// 19465 䰉 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x08,0x00,0x04,0x08,0x0a,0x08,0x02,0x00,0x01,0x00,0x00,0x84,0x98,0x86,0x88,0x06,0x80,0x00,0x24,0xa4,0x06,0x04,0x04,0x18,0x06,0x00 -+// 19466 䰊 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x18,0x00,0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x84,0x10,0x84,0x02,0x0c,0x00,0xd2,0x40,0x44,0xc4,0x04,0x1a,0x00,0x10,0x00 -+// 19467 䰋 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x1c,0x04,0x04,0x00,0x09,0x01,0x02,0x00,0x01,0x00,0x00,0x84,0x90,0x84,0x02,0x0c,0x00,0x08,0x08,0x40,0x02,0x02,0x20,0x60,0x98,0x00 -+// 19468 䰌 ; -+,0x00,0x00,0x08,0x08,0x08,0x04,0x19,0x00,0x04,0x02,0x04,0x0c,0x04,0x04,0x04,0x00,0x00,0x84,0x08,0x06,0x00,0x06,0x00,0x04,0x4c,0xaa,0x00,0x10,0x90,0x10,0x1e,0x00 -+// 19469 䰍 ; -+,0x00,0x00,0x08,0x08,0x08,0x04,0x19,0x00,0x01,0x02,0x01,0x06,0x01,0x00,0x08,0x00,0x00,0x80,0x08,0x02,0x00,0x06,0x00,0x42,0xe0,0x18,0x84,0x58,0x12,0x40,0x84,0x00 -+// 19470 䰎 ; -+,0x00,0x08,0x08,0x08,0x08,0x04,0x18,0x04,0x04,0x00,0x00,0x04,0x04,0x00,0x06,0x00,0x00,0x86,0x08,0x06,0x40,0x06,0x80,0x4c,0x48,0x42,0x04,0x04,0x04,0x00,0x0c,0x02 -+// 19471 䰏 ; -+,0x00,0x08,0x08,0x08,0x0c,0x08,0x18,0x02,0x02,0x00,0x09,0x18,0x0b,0x0b,0x08,0x00,0x00,0x84,0x00,0x06,0x42,0x0c,0x00,0x94,0x10,0x10,0x14,0x1c,0x08,0x0c,0x02,0x00 -+// 19472 䰐 ; -+,0x00,0x08,0x08,0x08,0x04,0x09,0x10,0x02,0x0a,0x08,0x02,0x00,0x09,0x09,0x09,0x00,0x00,0x84,0x00,0x06,0x00,0x0c,0x00,0x90,0x90,0xa0,0x84,0x00,0x24,0x24,0x25,0x00 -+// 19473 䰑 ; -+,0x00,0x00,0x08,0x08,0x04,0x09,0x00,0x00,0x10,0x00,0x00,0x00,0x09,0x09,0x09,0x00,0x00,0x84,0x00,0x06,0x02,0x08,0x84,0x40,0x42,0x00,0x04,0x80,0x22,0x20,0x24,0x00 -+// 19474 䰒 ; -+,0x00,0x00,0x08,0x08,0x04,0x08,0x00,0x01,0x00,0x10,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x84,0x00,0x04,0x02,0x80,0x00,0x30,0x02,0x10,0x04,0x88,0x50,0xa8,0x62,0x00 -+// 19475 䰓 ; -+,0x00,0x00,0x00,0x00,0x0c,0x19,0x04,0x07,0x04,0x00,0x12,0x04,0x01,0x01,0x02,0x00,0x00,0x84,0x00,0x00,0x06,0x40,0x04,0xfc,0x04,0x40,0x02,0x4c,0x80,0x08,0x10,0x00 -+// 19476 䰔 ; -+,0x00,0x00,0x00,0x00,0x0c,0x18,0x00,0x0d,0x09,0x09,0x01,0x11,0x01,0x01,0x09,0x00,0x00,0x84,0x00,0x04,0x02,0x00,0x24,0x24,0x06,0x04,0x08,0x06,0x2c,0x20,0x25,0x00 -+// 19477 䰕 ; -+,0x00,0x00,0x08,0x08,0x04,0x09,0x10,0x00,0x08,0x08,0x08,0x0a,0x08,0x04,0x14,0x00,0x00,0x84,0x00,0x04,0x02,0x00,0x44,0x42,0x82,0xf0,0x78,0x48,0x00,0xa4,0xa7,0x00 -+// 19478 䰖 ; -+,0x00,0x00,0x08,0x08,0x0c,0x09,0x08,0x02,0x04,0x09,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x84,0x00,0x04,0x02,0x00,0x28,0x08,0x10,0x25,0x08,0x08,0x08,0x08,0x08,0x00 -+// 19479 䰗 ; -+,0x00,0x10,0x12,0x12,0x12,0x11,0x12,0x16,0x12,0x10,0x14,0x14,0x14,0x10,0x10,0x00,0x00,0x00,0x12,0x12,0x16,0x02,0x42,0x12,0x12,0x8a,0x8a,0x8a,0x82,0x7e,0x06,0x00 -+// 19480 䰘 ; -+,0x00,0x00,0x12,0x12,0x12,0x10,0x11,0x10,0x14,0x10,0x12,0x11,0x10,0x10,0x10,0x00,0x00,0x02,0x12,0x12,0x16,0x02,0x2a,0x0a,0x2a,0x82,0xd2,0x4a,0xb2,0x42,0x06,0x00 -+// 19481 䰙 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x10,0x00,0x20,0x2a,0x28,0x24,0x24,0x24,0x21,0x00,0x00,0x00,0x80,0x00,0x18,0x00,0x00,0x02,0x82,0x84,0x94,0x98,0x88,0x94,0x02,0x00 -+// 19482 䰚 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x00,0x20,0x2a,0x20,0x24,0x24,0x24,0x20,0x00,0x00,0x00,0x90,0x08,0x01,0x04,0x04,0x04,0x84,0x94,0x98,0x88,0x9c,0xa6,0x43,0x00 -+// 19483 䰛 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x10,0x00,0x20,0x2a,0x22,0x24,0x24,0x24,0x21,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x02,0xa0,0xa0,0xac,0xa4,0xa4,0xa4,0xa5,0x83,0x00 -+// 19484 䰜 ; -+,0x00,0x00,0x04,0x04,0x05,0x05,0x11,0x20,0x22,0x26,0x06,0x06,0x06,0x0a,0x1a,0x00,0x00,0x00,0x03,0x00,0x20,0x22,0x20,0x08,0x18,0x59,0x41,0x81,0x00,0x00,0x26,0x00 -+// 19485 䰝 ; -+,0x00,0x00,0x00,0x00,0x11,0x11,0x00,0x00,0x20,0x2a,0x20,0x24,0x24,0x24,0x21,0x00,0x00,0x00,0x84,0x04,0x49,0x4b,0x4d,0x49,0x80,0xa2,0x82,0xa2,0x82,0x82,0x22,0x00 -+// 19486 䰞 ; -+,0x00,0x00,0x04,0x14,0x15,0x05,0x09,0x00,0x00,0x04,0x04,0x18,0x11,0x10,0x10,0x00,0x00,0x00,0xe2,0xea,0x8a,0x22,0x26,0x22,0x08,0x08,0x08,0x06,0x02,0x42,0x06,0x00 -+// 19487 䰟 ; -+,0x00,0x00,0x00,0x01,0x02,0x07,0x00,0x08,0x08,0x08,0x08,0x01,0x02,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x08,0x04,0x80,0x84,0x84,0x84,0x84,0x28,0x20,0x31,0x3f,0x00 -+// 19488 䰠 ; -+,0x00,0x04,0x04,0x1d,0x15,0x15,0x15,0x15,0x1d,0x0c,0x08,0x03,0x10,0x00,0x03,0x00,0x00,0x00,0x08,0x00,0x0a,0x02,0x02,0x0a,0x02,0x4a,0x00,0x80,0x00,0x01,0xff,0x00 -+// 19489 䰡 ; -+,0x00,0x04,0x08,0x15,0x05,0x1d,0x01,0x09,0x0d,0x0c,0x05,0x17,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x30,0x20,0x18,0x10,0x10,0x10,0x10,0x14,0xa4,0x00,0x01,0xff,0x00 -+// 19490 䰢 ; -+,0x00,0x04,0x00,0x15,0x15,0x15,0x15,0x11,0x1f,0x08,0x09,0x03,0x12,0x00,0x03,0x00,0x00,0x00,0x20,0x00,0x40,0x20,0x06,0x20,0x20,0x20,0x20,0xa0,0x24,0x01,0xff,0x00 -+// 19491 䰣 ; -+,0x00,0x04,0x00,0x15,0x15,0x15,0x15,0x15,0x1d,0x0c,0x0d,0x06,0x14,0x04,0x03,0x00,0x00,0x00,0x42,0x42,0x42,0x56,0x56,0x52,0x56,0x42,0x42,0xc2,0x46,0x01,0xff,0x00 -+// 19492 䰤 ; -+,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x14,0x15,0x14,0x0e,0x0d,0x15,0x04,0x04,0x00,0x00,0x10,0x00,0x52,0x52,0x5a,0x52,0x52,0x5a,0x18,0x08,0x2e,0x08,0x09,0x0f,0x00 -+// 19493 䰥 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x08,0x08,0x08,0x09,0x01,0x02,0x00,0x00,0x00,0x20,0x22,0x04,0x18,0x18,0x8e,0x00,0x84,0x84,0x84,0xcc,0x40,0x55,0x3e,0x00 -+// 19494 䰦 ; -+,0x00,0x00,0x00,0x1d,0x01,0x1d,0x01,0x01,0x1d,0x0c,0x0d,0x07,0x14,0x04,0x03,0x00,0x00,0x00,0x10,0x52,0x42,0x5a,0x52,0x52,0x20,0x08,0x08,0x88,0x08,0x01,0xff,0x00 -+// 19495 䰧 ; -+,0x00,0x04,0x00,0x1d,0x01,0x1d,0x01,0x09,0x1c,0x0c,0x0c,0x16,0x14,0x04,0x03,0x00,0x00,0x00,0x0a,0x00,0x0a,0x40,0x48,0x4a,0x40,0x54,0x54,0xc4,0x27,0x01,0xff,0x00 -+// 19496 䰨 ; -+,0x00,0x04,0x00,0x1d,0x01,0x1d,0x01,0x09,0x0c,0x0d,0x04,0x16,0x04,0x04,0x03,0x00,0x00,0x00,0x02,0x4a,0x4a,0x40,0x42,0x52,0x52,0x52,0x52,0x92,0x12,0x01,0xff,0x00 -+// 19497 䰩 ; -+,0x00,0x00,0x00,0x07,0x01,0x02,0x06,0x04,0x09,0x11,0x01,0x01,0x01,0x09,0x00,0x00,0x00,0x10,0x00,0x42,0x42,0x5a,0xc2,0x52,0x5a,0x18,0x08,0x2e,0x08,0x49,0x0f,0x00 -+// 19498 䰪 ; -+,0x00,0x04,0x15,0x04,0x05,0x0a,0x01,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x10,0x00,0x42,0x42,0x5a,0xc2,0x52,0x5a,0x18,0x08,0x2e,0x08,0x49,0x0f,0x00 -+// 19499 䰫 ; -+,0x00,0x04,0x00,0x15,0x05,0x1f,0x01,0x09,0x1c,0x0c,0x04,0x17,0x04,0x04,0x03,0x00,0x00,0x10,0x14,0x10,0x12,0x40,0x44,0x40,0x00,0x28,0x28,0x08,0x4e,0x01,0xfe,0x00 -+// 19500 䰬 ; -+,0x00,0x04,0x00,0x15,0x05,0x1f,0x01,0x09,0x1c,0x0c,0x04,0x16,0x04,0x04,0x03,0x00,0x00,0x00,0x0c,0x08,0x1a,0x28,0x08,0x12,0x42,0x46,0x6a,0x6a,0x42,0x01,0xff,0x00 -+// 19501 䰭 ; -+,0x00,0x00,0x04,0x00,0x1b,0x08,0x0b,0x00,0x04,0x00,0x1a,0x02,0x02,0x0b,0x00,0x00,0x00,0x10,0x00,0x4a,0x0a,0x0a,0x0a,0x02,0x7a,0x18,0x98,0x8e,0xa8,0xc9,0x0f,0x00 -+// 19502 䰮 ; -+,0x00,0x00,0x08,0x0d,0x01,0x1d,0x01,0x09,0x1c,0x0c,0x0c,0x17,0x14,0x04,0x03,0x00,0x00,0x00,0x08,0x10,0x14,0x10,0x00,0x2a,0x29,0x28,0x64,0x24,0x22,0x01,0xff,0x00 -+// 19503 䰯 ; -+,0x00,0x00,0x00,0x0a,0x08,0x0a,0x08,0x08,0x0c,0x0c,0x04,0x17,0x04,0x04,0x03,0x00,0x00,0x00,0xa2,0x80,0xa4,0x04,0x05,0xe4,0x44,0x44,0x44,0x24,0x07,0x01,0xff,0x00 -+// 19504 䰰 ; -+,0x00,0x00,0x04,0x04,0x24,0x24,0x04,0x00,0x04,0x00,0x0a,0x0a,0x0a,0x09,0x00,0x00,0x00,0x00,0x00,0x0a,0xca,0x2a,0x0a,0x02,0x3a,0x18,0x98,0x0e,0x28,0x09,0x0f,0x00 -+// 19505 䰱 ; -+,0x00,0x00,0x04,0x04,0x24,0x04,0x00,0x0a,0x2b,0x00,0x04,0x15,0x1c,0x04,0x38,0x00,0x00,0x00,0x00,0xea,0x0a,0x2a,0x0a,0x8a,0xba,0x18,0x18,0x0e,0x28,0x08,0x0f,0x00 -+// 19506 䰲 ; -+,0x00,0x00,0x05,0x0b,0x02,0x14,0x14,0x14,0x14,0x14,0x17,0x00,0x02,0x02,0x20,0x00,0x00,0x00,0x10,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x80,0x00,0x80,0x93,0x1c,0x00 -+// 19507 䰳 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x14,0x15,0x15,0x14,0x15,0x00,0x02,0x0a,0x20,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x00 -+// 19508 䰴 ; -+,0x00,0x08,0x08,0x12,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x2a,0x20,0x00,0x00,0x00,0x10,0x20,0x22,0x40,0x00,0x04,0x04,0x08,0x10,0x10,0x20,0xa1,0x1f,0x00 -+// 19509 䰵 ; -+,0x00,0x00,0x09,0x0b,0x10,0x15,0x14,0x15,0x15,0x14,0x15,0x00,0x02,0x02,0x20,0x00,0x00,0x00,0x02,0x02,0x04,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0x10,0x00 -+// 19510 䰶 ; -+,0x00,0x00,0x08,0x0a,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x02,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x00,0x00 -+// 19511 䰷 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x02,0x0a,0x20,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x1a,0x00,0x00,0x19,0x00,0x00,0x80,0x10,0x00 -+// 19512 䰸 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x0a,0x20,0x00,0x00,0x00,0x00,0x10,0x24,0x24,0x02,0x43,0x88,0x10,0x10,0x00,0x24,0xc6,0x22,0x00 -+// 19513 䰹 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x14,0x15,0x15,0x14,0x15,0x00,0x02,0x0a,0x20,0x00,0x00,0x10,0x10,0x14,0x10,0x12,0x10,0x12,0x12,0x14,0x0c,0x08,0x94,0x86,0x03,0x00 -+// 19514 䰺 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x03,0x2a,0x20,0x00,0x00,0x00,0x06,0x20,0x20,0x20,0x23,0x24,0x24,0x04,0x04,0x44,0x44,0x04,0x04,0x00 -+// 19515 䰻 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x14,0x15,0x15,0x14,0x15,0x00,0x02,0x0a,0x20,0x00,0x00,0x10,0x10,0x00,0x20,0x26,0x20,0x40,0x04,0x14,0x10,0x08,0x18,0x24,0x03,0x00 -+// 19516 䰼 ; -+,0x00,0x04,0x09,0x0a,0x10,0x15,0x14,0x14,0x15,0x14,0x15,0x00,0x02,0x02,0x20,0x00,0x00,0x00,0x18,0x10,0x04,0xa6,0x03,0x08,0x08,0x02,0x06,0x04,0x84,0x84,0x08,0x00 -+// 19517 䰽 ; -+,0x00,0x00,0x08,0x02,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x0a,0x20,0x00,0x00,0x08,0x08,0x19,0x08,0x08,0x5b,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x88,0x08,0x00 -+// 19518 䰾 ; -+,0x00,0x00,0x08,0x02,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x2a,0x20,0x00,0x00,0x00,0x00,0x5a,0x42,0x42,0x42,0x42,0x42,0x40,0x40,0x40,0x40,0xc1,0x7f,0x00 -+// 19519 䰿 ; -+,0x00,0x00,0x08,0x02,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x0a,0x20,0x00,0x00,0x00,0x20,0x20,0x00,0x48,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0xa1,0x3f,0x00 -+// 19520 䱀 ; -+,0x00,0x00,0x08,0x02,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x0a,0x20,0x00,0x00,0x08,0x08,0x00,0x5a,0x42,0x42,0x52,0x53,0x10,0x10,0x20,0x24,0xc2,0x03,0x00 -+// 19521 䱁 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x00,0x10,0x10,0x12,0x18,0x18,0x18,0x34,0x14,0x52,0x13,0x10,0x10,0x10,0x00 -+// 19522 䱂 ; -+,0x00,0x08,0x10,0x12,0x00,0x36,0x12,0x12,0x1e,0x12,0x1e,0x00,0x01,0x09,0x20,0x00,0x00,0x04,0x44,0x44,0x04,0xa5,0xa4,0x00,0x40,0x08,0xa8,0xd8,0x00,0x02,0x06,0x00 -+// 19523 䱃 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x08,0x08,0x20,0x1a,0x50,0x10,0x10,0x13,0x10,0x20,0x20,0x44,0xc6,0x03,0x00 -+// 19524 䱄 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x02,0x0e,0x30,0x00,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x0e,0x91,0x00,0x00 -+// 19525 䱅 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x28,0x20,0x00,0x00,0x10,0x10,0x10,0x12,0x10,0x10,0x12,0x10,0x38,0x30,0x14,0x12,0x13,0x10,0x00 -+// 19526 䱆 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x00,0x26,0x24,0x25,0x01,0x43,0x0c,0x00,0x10,0x11,0x10,0x10,0x10,0x10,0x00 -+// 19527 䱇 ; -+,0x00,0x00,0x08,0x0b,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x22,0x02,0x02,0x02,0x02,0x02,0x00,0x80,0x01,0x00 -+// 19528 䱈 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x08,0x28,0x0a,0x48,0x49,0x09,0x08,0x10,0x00 -+// 19529 䱉 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x0a,0x20,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x46,0x42,0x42,0x42,0x46,0x42,0x42,0xc2,0x43,0x00 -+// 19530 䱊 ; -+,0x00,0x08,0x08,0x12,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x2a,0x20,0x00,0x00,0x00,0x10,0x12,0x50,0x10,0x10,0x18,0x18,0x38,0x34,0x14,0x52,0x93,0x10,0x00 -+// 19531 䱋 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0x00,0x00,0x22,0xc1,0x01,0x00 -+// 19532 䱌 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x0a,0x20,0x00,0x00,0x00,0x40,0x48,0x48,0x48,0x62,0x62,0x62,0x62,0x68,0x48,0x48,0xc8,0x40,0x00 -+// 19533 䱍 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x0a,0x20,0x00,0x00,0x00,0x02,0x00,0x20,0x22,0x20,0x24,0x2c,0x04,0x44,0x54,0x04,0x80,0x0a,0x00 -+// 19534 䱎 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x00,0x03,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x40,0x80,0x01,0x00 -+// 19535 䱏 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x0a,0x20,0x00,0x00,0x00,0x02,0x00,0x00,0x42,0x42,0x42,0x42,0x00,0x02,0x24,0x24,0x80,0x01,0x00 -+// 19536 䱐 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x0a,0x20,0x00,0x00,0x00,0x0e,0x00,0x52,0x40,0x00,0x04,0x00,0x00,0x18,0x00,0x00,0x80,0x10,0x00 -+// 19537 䱑 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x12,0x12,0x12,0x1e,0x00,0x04,0x09,0x20,0x00,0x00,0x00,0x42,0x50,0x70,0x50,0x51,0x50,0x50,0xd0,0x50,0x50,0x40,0x40,0x80,0x00 -+// 19538 䱒 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x00,0x42,0x42,0x42,0x00,0x00,0x4a,0x40,0x5a,0x40,0x40,0x40,0xc1,0x7f,0x00 -+// 19539 䱓 ; -+,0x00,0x08,0x08,0x12,0x00,0x36,0x12,0x12,0x16,0x12,0x16,0x00,0x05,0x08,0x20,0x00,0x00,0x00,0x23,0x04,0x44,0x44,0x87,0xa4,0x24,0x24,0x04,0x45,0x40,0x98,0x06,0x00 -+// 19540 䱔 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x12,0x12,0x12,0x1e,0x00,0x04,0x09,0x20,0x00,0x00,0x08,0x48,0x08,0x80,0xa2,0xa2,0xa2,0x20,0x2c,0x24,0x24,0x0c,0x02,0x81,0x00 -+// 19541 䱕 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x00,0x20,0x21,0x40,0x22,0x02,0x0a,0x43,0x42,0x40,0x40,0x47,0x04,0x0c,0x00 -+// 19542 䱖 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x25,0x01,0x01,0xa4,0x20,0x20,0x20,0x40,0x80,0x00 -+// 19543 䱗 ; -+,0x00,0x02,0x02,0x06,0x09,0x05,0x04,0x01,0x06,0x0c,0x00,0x00,0x04,0x00,0x11,0x00,0x00,0x00,0x86,0x04,0x98,0x18,0x06,0x00,0x20,0x4c,0x04,0x04,0x0c,0x00,0x12,0x00 -+// 19544 䱘 ; -+,0x00,0x01,0x04,0x06,0x06,0x0d,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x00,0x11,0x00,0x00,0x00,0x04,0x84,0x04,0x04,0x04,0x20,0x40,0x44,0x04,0x84,0x04,0x00,0x12,0x00 -+// 19545 䱙 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x12,0x12,0x12,0x1e,0x00,0x06,0x0d,0x20,0x00,0x00,0x00,0x40,0x43,0x42,0x42,0x42,0x42,0x44,0x44,0xd4,0x54,0x42,0x42,0x41,0x00 -+// 19546 䱚 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x03,0x00,0x08,0x2a,0x04,0x14,0x42,0x01,0x10,0x00 -+// 19547 䱛 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x05,0x2d,0x20,0x00,0x00,0x00,0x0a,0x08,0x09,0x08,0x28,0xaa,0xaa,0xa8,0x0c,0x04,0xcc,0x13,0x01,0x00 -+// 19548 䱜 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x24,0x24,0x26,0x24,0x24,0x25,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19549 䱝 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x03,0x02,0x20,0x00,0x00,0x00,0x10,0x4a,0x4a,0x4a,0x42,0x42,0x52,0x28,0x08,0x08,0x08,0x88,0x08,0x00 -+// 19550 䱞 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x12,0x16,0x12,0x16,0x00,0x01,0x08,0x20,0x00,0x00,0x00,0x10,0x12,0x20,0x00,0x06,0x04,0x00,0x02,0x10,0x10,0x52,0x90,0x30,0x00 -+// 19551 䱟 ; -+,0x00,0x00,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x28,0x20,0x00,0x00,0x00,0x41,0x41,0x41,0x43,0x48,0x48,0x48,0x48,0x48,0x21,0x20,0xa2,0x20,0x00 -+// 19552 䱠 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x20,0x28,0x22,0x32,0x14,0x18,0x07,0x20,0x22,0x30,0x16,0x18,0x98,0x07,0x01 -+// 19553 䱡 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x12,0x02,0x12,0x00,0x05,0x28,0x20,0x00,0x00,0x00,0x40,0x42,0x00,0x02,0x0a,0x42,0x36,0x22,0x3a,0x6a,0x42,0x82,0x06,0x00 -+// 19554 䱢 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x20,0x20,0x4c,0x08,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x90,0x30,0x00 -+// 19555 䱣 ; -+,0x00,0x08,0x08,0x1a,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x10,0x10,0x02,0x00,0x44,0x64,0x11,0x00,0x10,0x13,0x10,0x10,0x90,0x10,0x00 -+// 19556 䱤 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x10,0x20,0x22,0x22,0x44,0x00,0x10,0x43,0x40,0x40,0x42,0x40,0xc0,0x42,0x00 -+// 19557 䱥 ; -+,0x00,0x00,0x0a,0x02,0x02,0x02,0x02,0x01,0x02,0x04,0x00,0x00,0x04,0x00,0x11,0x00,0x00,0x00,0x00,0x50,0x10,0x50,0x84,0x00,0x20,0x44,0x04,0x04,0x08,0x04,0x12,0x00 -+// 19558 䱦 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x00,0x28,0x40,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x40,0x00 -+// 19559 䱧 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x10,0x14,0x54,0x12,0x10,0x00,0x28,0x04,0x47,0x24,0x04,0x04,0x00,0x3f,0x00 -+// 19560 䱨 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x12,0x12,0x12,0x1e,0x00,0x04,0x09,0x20,0x00,0x00,0x00,0x00,0x70,0x04,0x04,0x94,0x94,0x94,0xd4,0x64,0x70,0x80,0x00,0x02,0x00 -+// 19561 䱩 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0b,0x20,0x00,0x00,0x00,0x03,0x05,0x01,0x05,0x01,0x09,0x01,0x01,0x01,0x35,0x81,0x81,0x83,0x00 -+// 19562 䱪 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x00,0x10,0x12,0x10,0x12,0x10,0x12,0x30,0x22,0x6c,0x20,0x24,0x22,0x21,0x00 -+// 19563 䱫 ; -+,0x00,0x02,0x02,0x02,0x02,0x07,0x0a,0x01,0x02,0x04,0x00,0x00,0x04,0x00,0x11,0x00,0x00,0x00,0x40,0x10,0x50,0x10,0x80,0x04,0x20,0x44,0x04,0x04,0x08,0x04,0x12,0x00 -+// 19564 䱬 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x00,0x0b,0x48,0x4a,0x48,0x18,0x06,0x42,0x42,0x42,0x42,0x42,0x42,0x46,0x00 -+// 19565 䱭 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x13,0x12,0x12,0x1e,0x00,0x04,0x09,0x20,0x00,0x00,0x00,0x00,0x08,0x40,0x20,0x92,0x92,0x16,0x12,0x1a,0x14,0x00,0x04,0x00,0x00 -+// 19566 䱮 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x12,0x16,0x12,0x16,0x00,0x01,0x09,0x20,0x00,0x00,0x00,0x40,0x45,0x45,0x41,0x48,0x4a,0x42,0x10,0x13,0x00,0x28,0x44,0x03,0x00 -+// 19567 䱯 ; -+,0x00,0x00,0x01,0x02,0x06,0x0a,0x06,0x01,0x02,0x0c,0x04,0x00,0x00,0x00,0x11,0x00,0x00,0x10,0x22,0x24,0x88,0x18,0x06,0x00,0x20,0x4c,0xcc,0x04,0x00,0x04,0x12,0x00 -+// 19568 䱰 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x52,0x12,0x52,0x12,0x52,0x10,0x10,0x10,0x13,0x00 -+// 19569 䱱 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x1e,0x02,0x1a,0x00,0x04,0x2d,0x20,0x00,0x00,0x00,0x10,0x02,0x00,0x20,0x09,0x90,0x10,0x56,0x10,0x10,0x10,0x14,0x10,0x00 -+// 19570 䱲 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x00,0x20,0x24,0x24,0x00,0x10,0x20,0x04,0x18,0x28,0x5a,0x2a,0x09,0x18,0x00 -+// 19571 䱳 ; -+,0x00,0x08,0x08,0x14,0x00,0x3a,0x12,0x1a,0x12,0x12,0x1a,0x00,0x07,0x29,0x00,0x00,0x00,0x00,0x80,0x80,0xaa,0x8a,0xaa,0x8a,0xaa,0x88,0x88,0x8a,0x08,0x08,0x00,0x00 -+// 19572 䱴 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x13,0x12,0x12,0x1e,0x00,0x04,0x09,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x72,0x92,0x92,0x12,0x12,0x12,0x12,0x00,0x00,0x00,0x00 -+// 19573 䱵 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x1e,0x02,0x1a,0x00,0x04,0x2d,0x20,0x00,0x00,0x00,0x28,0x40,0x56,0x23,0x44,0x40,0x00,0x22,0x62,0x22,0x62,0x2a,0x22,0x00 -+// 19574 䱶 ; -+,0x00,0x08,0x10,0x16,0x04,0x32,0x1a,0x1a,0x1a,0x1a,0x1a,0x00,0x02,0x0d,0x20,0x00,0x00,0x00,0x40,0x6b,0x8a,0x8a,0xa8,0x88,0xaa,0x89,0x89,0x89,0xa8,0x98,0x08,0x00 -+// 19575 䱷 ; -+,0x00,0x02,0x02,0x02,0x12,0x10,0x12,0x13,0x14,0x10,0x15,0x15,0x04,0x00,0x0a,0x00,0x00,0x00,0x90,0x10,0x40,0x22,0x22,0x80,0x04,0x14,0x84,0x08,0x0c,0x16,0x23,0x00 -+// 19576 䱸 ; -+,0x00,0x08,0x08,0x12,0x14,0x17,0x14,0x14,0x16,0x14,0x16,0x10,0x01,0x0b,0x20,0x00,0x00,0x00,0x30,0x12,0x12,0x12,0x12,0x12,0x10,0x12,0x06,0x24,0x18,0x18,0x07,0x00 -+// 19577 䱹 ; -+,0x00,0x08,0x08,0x14,0x14,0x36,0x12,0x12,0x12,0x12,0x12,0x00,0x04,0x2d,0x20,0x00,0x00,0x00,0x24,0x20,0x10,0x10,0x12,0x20,0x22,0x20,0x42,0x48,0x88,0x08,0x00,0x00 -+// 19578 䱺 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x10,0x52,0x12,0x52,0x02,0x02,0x00,0x02,0x42,0x42,0x42,0x04,0x20,0x09,0x00 -+// 19579 䱻 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x0a,0x20,0x00,0x00,0x00,0x26,0x00,0x28,0x00,0x81,0x00,0x26,0x20,0x00,0x24,0x00,0x00,0x04,0x00 -+// 19580 䱼 ; -+,0x00,0x08,0x08,0x12,0x10,0x17,0x10,0x10,0x16,0x10,0x16,0x00,0x04,0x2d,0x20,0x00,0x00,0x00,0x42,0x40,0x42,0x54,0x54,0x54,0x14,0x55,0xa0,0xaa,0xa4,0x26,0x33,0x00 -+// 19581 䱽 ; -+,0x00,0x08,0x08,0x14,0x14,0x36,0x12,0x12,0x12,0x12,0x12,0x00,0x06,0x2d,0x20,0x00,0x00,0x10,0x30,0x28,0x44,0x93,0x00,0x82,0x84,0x80,0x80,0x82,0x82,0x02,0x22,0x00 -+// 19582 䱾 ; -+,0x00,0x08,0x08,0x16,0x14,0x36,0x12,0x12,0x16,0x12,0x16,0x00,0x01,0x09,0x20,0x00,0x00,0x00,0x12,0x52,0x5b,0x52,0x12,0x52,0x42,0x52,0x11,0x24,0x28,0x1c,0x23,0x00 -+// 19583 䱿 ; -+,0x00,0x08,0x10,0x14,0x00,0x2a,0x0a,0x1a,0x1a,0x0a,0x1a,0x00,0x02,0x2c,0x20,0x00,0x00,0x00,0x42,0x48,0x48,0xd8,0x5a,0xda,0x5a,0xda,0x4a,0x4a,0x42,0x42,0x42,0x00 -+// 19584 䲀 ; -+,0x00,0x00,0x04,0x00,0x02,0x04,0x04,0x05,0x02,0x04,0x00,0x00,0x04,0x00,0x11,0x00,0x00,0x10,0x10,0x14,0x14,0x14,0x02,0x02,0x20,0x44,0x04,0x04,0x08,0x04,0x12,0x00 -+// 19585 䲁 ; -+,0x00,0x00,0x10,0x15,0x01,0x21,0x0b,0x09,0x19,0x09,0x09,0x01,0x01,0x07,0x20,0x00,0x00,0x00,0x12,0x12,0x12,0x03,0x12,0x02,0x26,0x26,0x22,0x2a,0xaa,0x22,0x26,0x00 -+// 19586 䲂 ; -+,0x00,0x00,0x10,0x14,0x00,0x20,0x0a,0x08,0x18,0x08,0x08,0x01,0x01,0x06,0x20,0x00,0x00,0x00,0x88,0x08,0x30,0x80,0x81,0xa5,0x84,0x94,0x14,0x14,0x54,0x4c,0x07,0x00 -+// 19587 䲃 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x05,0x2c,0x20,0x00,0x00,0x42,0x10,0x04,0x52,0x02,0x12,0x52,0x12,0x52,0x10,0x38,0x30,0x96,0x12,0x00 -+// 19588 䲄 ; -+,0x00,0x00,0x10,0x14,0x00,0x21,0x0a,0x08,0x1b,0x09,0x09,0x01,0x01,0x06,0x20,0x00,0x00,0x00,0x88,0xa8,0x08,0x22,0x22,0x62,0x20,0x20,0x24,0x24,0x24,0x02,0x43,0x00 -+// 19589 䲅 ; -+,0x00,0x00,0x10,0x14,0x00,0x20,0x0a,0x0a,0x18,0x08,0x08,0x00,0x02,0x07,0x20,0x00,0x00,0x00,0x92,0x92,0xd2,0x92,0x92,0x92,0x92,0x9e,0xcc,0xac,0x14,0x04,0x07,0x00 -+// 19590 䲆 ; -+,0x00,0x08,0x08,0x12,0x10,0x36,0x12,0x12,0x12,0x12,0x12,0x00,0x05,0x28,0x20,0x00,0x00,0x20,0x24,0x44,0x00,0xd2,0x12,0x52,0x52,0x12,0x52,0x00,0x00,0xa5,0x95,0x00 -+// 19591 䲇 ; -+,0x00,0x08,0x08,0x16,0x04,0x2a,0x0a,0x0a,0x0a,0x0a,0x1a,0x00,0x04,0x2c,0x21,0x00,0x00,0x00,0x08,0x8a,0x88,0x0a,0x2a,0xaa,0x2a,0x08,0x1a,0x08,0x08,0xc8,0x10,0x00 -+// 19592 䲈 ; -+,0x00,0x08,0x08,0x16,0x04,0x2a,0x0a,0x0a,0x0a,0x0a,0x1a,0x00,0x07,0x25,0x20,0x00,0x00,0x00,0x00,0x03,0x80,0xa0,0xa0,0xa6,0xa4,0xa6,0xa6,0x6a,0xa1,0x20,0x20,0x00 -+// 19593 䲉 ; -+,0x00,0x00,0x10,0x14,0x01,0x20,0x0a,0x08,0x18,0x08,0x08,0x00,0x02,0x07,0x22,0x00,0x00,0x00,0x2a,0x28,0xa8,0x28,0xab,0x2a,0x2a,0xaa,0x2a,0x2a,0x0a,0x22,0x12,0x00 -+// 19594 䲊 ; -+,0x00,0x08,0x08,0x16,0x04,0x2a,0x0a,0x0a,0x0a,0x0a,0x1a,0x00,0x03,0x25,0x20,0x00,0x00,0x00,0xe8,0x40,0x50,0x00,0x00,0x00,0x12,0x12,0x12,0xd2,0x12,0x12,0x12,0x00 -+// 19595 䲋 ; -+,0x00,0x08,0x08,0x16,0x04,0x2a,0x0a,0x0a,0x0a,0x0a,0x1a,0x00,0x00,0x2c,0x20,0x00,0x00,0x00,0x44,0x6e,0x40,0x6a,0x48,0xa8,0x12,0x02,0x86,0x80,0x84,0x80,0x84,0x00 -+// 19596 䲌 ; -+,0x00,0x00,0x10,0x14,0x00,0x20,0x0a,0x08,0x18,0x08,0x08,0x00,0x02,0x04,0x20,0x00,0x00,0x00,0x44,0x40,0x48,0x60,0x04,0x04,0x04,0x44,0x44,0xc0,0x52,0x42,0x41,0x00 -+// 19597 䲍 ; -+,0x00,0x00,0x00,0x12,0x12,0x16,0x12,0x12,0x12,0x12,0x16,0x12,0x02,0x02,0x02,0x00,0x00,0x10,0x54,0x50,0x30,0x20,0x60,0x44,0xab,0x40,0xd2,0x52,0x52,0x00,0xaa,0x00 -+// 19598 䲎 ; -+,0x00,0x00,0x10,0x14,0x00,0x20,0x0a,0x08,0x18,0x08,0x08,0x00,0x00,0x15,0x20,0x00,0x00,0x00,0x44,0x48,0x48,0xab,0xa2,0xa2,0xa2,0xa2,0xa6,0xa4,0xe4,0xaa,0x23,0x00 -+// 19599 䲏 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x00,0x34,0x2e,0x84,0x12,0x00,0x41,0x10,0x10,0x12,0x12,0x22,0x42,0x8c,0x00 -+// 19600 䲐 ; -+,0x00,0x08,0x08,0x14,0x00,0x3a,0x12,0x1a,0x12,0x12,0x1a,0x00,0x05,0x2d,0x20,0x00,0x00,0x10,0x12,0x10,0x90,0x90,0x92,0x82,0xaa,0xaa,0xaa,0x08,0x1a,0x12,0x22,0x00 -+// 19601 䲑 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x01,0x2a,0x20,0x00,0x00,0x04,0x20,0x10,0x1a,0x00,0x01,0x38,0x2a,0x29,0x20,0x26,0xe4,0x22,0x63,0x00 -+// 19602 䲒 ; -+,0x00,0x00,0x10,0x14,0x00,0x21,0x0b,0x08,0x18,0x08,0x09,0x01,0x01,0x16,0x20,0x00,0x00,0x00,0x81,0xe5,0x05,0x60,0x62,0x60,0x6c,0x6e,0x64,0x65,0x64,0x24,0x24,0x00 -+// 19603 䲓 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x05,0x2c,0x20,0x00,0x00,0x10,0x30,0x28,0x46,0x8e,0x00,0xaa,0xaa,0xaa,0xaa,0x44,0x44,0xa2,0x29,0x00 -+// 19604 䲔 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x01,0x0a,0x20,0x00,0x00,0x00,0x00,0x42,0x42,0x52,0x52,0x00,0x00,0x02,0x42,0x5a,0x42,0x42,0x01,0x00 -+// 19605 䲕 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x05,0x2d,0x20,0x00,0x00,0x00,0x28,0x2a,0x28,0xaa,0x6c,0x28,0x00,0x06,0x02,0x00,0x04,0x00,0x46,0x00 -+// 19606 䲖 ; -+,0x00,0x08,0x08,0x12,0x04,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x05,0x2d,0x20,0x00,0x00,0x00,0x12,0x10,0x00,0x01,0x04,0x10,0x00,0x01,0x02,0xa2,0xa2,0xa2,0x06,0x00 -+// 19607 䲗 ; -+,0x00,0x08,0x08,0x14,0x14,0x1a,0x12,0x12,0x1a,0x12,0x1a,0x00,0x02,0x24,0x20,0x00,0x00,0x00,0x90,0x90,0x28,0x48,0x82,0x92,0x92,0x92,0x9a,0xb2,0x92,0xa2,0x82,0x00 -+// 19608 䲘 ; -+,0x00,0x08,0x08,0x12,0x00,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x01,0x2d,0x20,0x00,0x00,0x44,0x55,0x88,0x22,0x10,0x81,0x80,0x44,0x44,0x44,0x40,0x46,0x40,0x44,0x00 -+// 19609 䲙 ; -+,0x00,0x08,0x08,0x12,0x00,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x00,0x2d,0x20,0x00,0x00,0x00,0x80,0xc8,0x22,0x20,0xaa,0xa8,0xa8,0xa8,0xa8,0x88,0x8a,0x9a,0x88,0x00 -+// 19610 䲚 ; -+,0x00,0x00,0x10,0x14,0x00,0x20,0x0b,0x09,0x19,0x08,0x08,0x00,0x00,0x16,0x20,0x00,0x00,0x00,0x08,0x2a,0x00,0x11,0x20,0x28,0x60,0x88,0xc0,0xa0,0x08,0x08,0x01,0x00 -+// 19611 䲛 ; -+,0x00,0x08,0x08,0x12,0x10,0x26,0x02,0x02,0x1a,0x02,0x1a,0x00,0x01,0x2d,0x20,0x00,0x00,0x20,0x2d,0x20,0xaa,0xaa,0xaa,0x01,0x00,0x44,0x44,0x44,0x44,0x04,0x44,0x00 -+// 19612 䲜 ; -+,0x00,0x00,0x0a,0x15,0x15,0x15,0x00,0x22,0x08,0x02,0x15,0x15,0x15,0x00,0x2a,0x00,0x00,0x00,0x14,0x2a,0x2a,0x2a,0x00,0xc5,0x10,0x24,0x2a,0x2a,0x2a,0x00,0xd5,0x00 -+// 19613 䲝 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x1c,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x06,0x03,0x24,0x24,0x24,0x24,0x2c,0x20,0x21,0x3f,0x00 -+// 19614 䲞 ; -+,0x00,0x08,0x08,0x0a,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x1c,0x00,0x00,0x00,0x00,0x10,0x10,0x02,0x00,0x06,0x04,0x24,0x24,0x20,0x20,0x00,0x01,0x00,0x00 -+// 19615 䲟 ; -+,0x00,0x08,0x0a,0x12,0x10,0x15,0x14,0x14,0x14,0x14,0x15,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x20,0x49,0x08,0x08,0x48,0x48,0x08,0x08,0x08,0x4a,0x08,0x08,0x08,0x00 -+// 19616 䲠 ; -+,0x00,0x08,0x08,0x12,0x10,0x35,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x20,0x20,0x44,0x46,0x45,0x44,0x44,0x44,0x44,0x00 -+// 19617 䲡 ; -+,0x00,0x08,0x08,0x12,0x10,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x18,0x00,0x00,0x00,0x04,0x24,0x00,0x18,0x08,0x3a,0x4a,0x6a,0x6a,0x46,0x42,0x42,0x42,0x42,0x00 -+// 19618 䲢 ; -+,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x22,0x04,0x00,0x00,0x10,0x14,0x50,0x32,0x21,0x68,0x44,0xab,0x40,0xd2,0x52,0x12,0x52,0x03,0x00 -+// 19619 䲣 ; -+,0x00,0x02,0x02,0x02,0x10,0x13,0x12,0x10,0x15,0x18,0x12,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x90,0x10,0x53,0x22,0xa0,0x04,0x04,0x94,0x88,0x88,0x9c,0x26,0x43,0x00 -+// 19620 䲤 ; -+,0x00,0x08,0x00,0x16,0x04,0x20,0x2a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x81,0x84,0x04,0x2f,0xa4,0xa4,0x24,0x22,0x20,0xa2,0xa0,0xa2,0xa1,0x00 -+// 19621 䲥 ; -+,0x00,0x01,0x01,0x01,0x02,0x05,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x12,0x00,0x00,0x00,0x00,0x10,0x10,0x13,0x00,0x10,0x10,0x00,0x02,0x06,0x04,0x94,0x0c,0x08 -+// 19622 䲦 ; -+,0x00,0x04,0x08,0x11,0x11,0x01,0x11,0x10,0x10,0x10,0x00,0x02,0x25,0x21,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x11,0x10,0x90,0x10,0x90,0x80,0xa4,0x24,0x42,0x03,0x00 -+// 19623 䲧 ; -+,0x00,0x00,0x08,0x08,0x08,0x0a,0x08,0x08,0x08,0x08,0x08,0x0c,0x30,0x01,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x02,0xb6,0x02,0x06,0x04 -+// 19624 䲨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x01,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x44,0x44,0x40,0x40,0x43,0x00,0x02,0x16,0x02,0x06,0x04 -+// 19625 䲩 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x0e,0x0c,0x0c,0x06,0x14,0x10,0x01,0x08,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x02,0x0a,0x22,0x0c,0x00 -+// 19626 䲪 ; -+,0x00,0x04,0x04,0x04,0x04,0x0d,0x00,0x0c,0x0c,0x0a,0x09,0x09,0x10,0x01,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x01,0x04,0xb6,0x02,0x02,0x04 -+// 19627 䲫 ; -+,0x00,0x00,0x00,0x0a,0x02,0x02,0x02,0x02,0x02,0x12,0x12,0x12,0x12,0x02,0x03,0x00,0x00,0x00,0x20,0x46,0x44,0x00,0x44,0x40,0x00,0x02,0x02,0x16,0x02,0x05,0xff,0x00 -+// 19628 䲬 ; -+,0x00,0x04,0x08,0x11,0x11,0x01,0x11,0x10,0x10,0x11,0x00,0x03,0x25,0x01,0x03,0x02,0x00,0x00,0x02,0x48,0x48,0x48,0x48,0xc8,0x48,0xc0,0x40,0x44,0x44,0x63,0x41,0x00 -+// 19629 䲭 ; -+,0x00,0x00,0x06,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x33,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x00,0x44,0x00,0x00,0x41,0x00,0x04,0x2e,0x82,0x06,0x00 -+// 19630 䲮 ; -+,0x00,0x00,0x02,0x00,0x00,0x01,0x02,0x02,0x02,0x12,0x12,0x13,0x02,0x20,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x04,0xaa,0x82,0x06,0x00 -+// 19631 䲯 ; -+,0x00,0x00,0x01,0x09,0x0a,0x0a,0x0b,0x01,0x01,0x04,0x12,0x12,0x05,0x01,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x06,0xaa,0x02,0x06,0x00 -+// 19632 䲰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x00,0x12,0x02,0x39,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x04,0xaa,0x82,0x06,0x00 -+// 19633 䲱 ; -+,0x00,0x04,0x08,0x11,0x11,0x01,0x11,0x10,0x10,0x11,0x00,0x03,0x25,0x01,0x03,0x02,0x00,0x00,0x08,0x08,0x01,0x10,0x10,0x92,0x02,0xa2,0x22,0x22,0x02,0x42,0x0c,0x00 -+// 19634 䲲 ; -+,0x00,0x00,0x00,0x08,0x01,0x11,0x11,0x04,0x08,0x08,0x08,0x02,0x10,0x19,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x04,0xaa,0x82,0x06,0x00 -+// 19635 䲳 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x00,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x04,0xaa,0x82,0x06,0x00 -+// 19636 䲴 ; -+,0x00,0x00,0x04,0x00,0x01,0x06,0x04,0x20,0x00,0x08,0x0c,0x0a,0x08,0x11,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x02,0xb6,0x02,0x06,0x04 -+// 19637 䲵 ; -+,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x30,0xc0,0x00,0x10,0x10,0x10,0x02,0x00,0x04,0x94,0x1c,0x00 -+// 19638 䲶 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x20,0x20,0x3f,0x10,0x10,0x10,0x02,0x00,0x04,0x94,0x1c,0x00 -+// 19639 䲷 ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x12,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x02,0x02,0x92,0x06,0x44,0xc2,0xc0,0x18,0x06,0x00 -+// 19640 䲸 ; -+,0x00,0x00,0x04,0x04,0x09,0x01,0x10,0x0a,0x0a,0x0a,0x0a,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xa6,0x02,0x06,0x00 -+// 19641 䲹 ; -+,0x00,0x00,0x00,0x04,0x00,0x08,0x08,0x08,0x01,0x01,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x01,0x04,0xa2,0x02,0x06,0x00 -+// 19642 䲺 ; -+,0x00,0x00,0x10,0x10,0x10,0x13,0x10,0x10,0x12,0x12,0x10,0x10,0x10,0x12,0x10,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xa6,0x02,0x06,0x00 -+// 19643 䲻 ; -+,0x00,0x00,0x04,0x04,0x08,0x08,0x08,0x02,0x14,0x24,0x00,0x0a,0x12,0x11,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xa6,0x82,0x06,0x00 -+// 19644 䲼 ; -+,0x00,0x00,0x04,0x14,0x14,0x15,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x38,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x44,0x44,0x40,0x40,0x42,0x02,0x06,0xb6,0x02,0x06,0x00 -+// 19645 䲽 ; -+,0x00,0x00,0x03,0x08,0x08,0x08,0x10,0x12,0x12,0x02,0x02,0x02,0x0a,0x12,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x44,0x44,0x40,0x40,0x41,0x00,0x06,0xa6,0x02,0x06,0x00 -+// 19646 䲾 ; -+,0x00,0x00,0x05,0x04,0x04,0x1d,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x12,0x00,0x00,0x00,0x20,0x20,0x02,0x02,0x04,0x10,0x10,0x00,0x02,0x06,0x04,0x94,0x0c,0x08 -+// 19647 䲿 ; -+,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x10,0x10,0x15,0x10,0x10,0x00,0x04,0x00,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x06,0xa6,0x02,0x06,0x00 -+// 19648 䳀 ; -+,0x00,0x04,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x01,0x01,0x23,0x01,0x03,0x00,0x00,0x08,0x08,0x28,0x2a,0x48,0x08,0x08,0x1b,0x10,0x10,0x10,0x24,0x42,0x03,0x00 -+// 19649 䳁 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x01,0x01,0x33,0x21,0x03,0x02,0x00,0x20,0x24,0x22,0x20,0x20,0x20,0x20,0x26,0x24,0x04,0x4c,0x48,0x14,0x23,0x00 -+// 19650 䳂 ; -+,0x00,0x00,0x01,0x09,0x09,0x01,0x11,0x06,0x00,0x13,0x10,0x10,0x10,0x13,0x12,0x00,0x00,0x10,0x00,0x44,0x44,0x40,0x44,0x41,0x40,0x41,0x00,0x06,0xa6,0x02,0x06,0x00 -+// 19651 䳃 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x12,0x10,0x0c,0x09,0x09,0x02,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x02,0x04,0x04,0x94,0x18,0x84,0x04,0x04,0x04,0x21,0x00 -+// 19652 䳄 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0e,0x0a,0x0a,0x0a,0x0a,0x0a,0x13,0x20,0x00,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0xe2,0x00,0x00,0x61,0x01,0x05,0x0a,0x42,0x06,0x00 -+// 19653 䳅 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x00,0x01,0x27,0x21,0x03,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x00,0x10,0x22,0x22,0x41,0x00,0x00 -+// 19654 䳆 ; -+,0x00,0x00,0x08,0x08,0x12,0x02,0x02,0x02,0x12,0x02,0x02,0x02,0x12,0x00,0x00,0x00,0x00,0x10,0x00,0x46,0x46,0x42,0x44,0x41,0x40,0x41,0x01,0x05,0xae,0x02,0x06,0x00 -+// 19655 䳇 ; -+,0x00,0x00,0x01,0x11,0x15,0x15,0x11,0x11,0x11,0x05,0x05,0x33,0x00,0x02,0x02,0x00,0x00,0x10,0x10,0x42,0x42,0x42,0x42,0x40,0x40,0x41,0x01,0x09,0x5b,0x40,0x06,0x00 -+// 19656 䳈 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x01,0x01,0x23,0x21,0x02,0x00,0x00,0x00,0x10,0x20,0x23,0x02,0x6a,0x2a,0x2a,0x2a,0x22,0x26,0x20,0x21,0x3f,0x00 -+// 19657 䳉 ; -+,0x00,0x00,0x08,0x09,0x11,0x12,0x06,0x06,0x09,0x00,0x02,0x00,0x04,0x02,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xae,0x82,0x06,0x00 -+// 19658 䳊 ; -+,0x00,0x00,0x04,0x01,0x08,0x08,0x08,0x09,0x09,0x00,0x16,0x02,0x05,0x00,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xae,0x82,0x06,0x00 -+// 19659 䳋 ; -+,0x00,0x00,0x00,0x00,0x08,0x29,0x20,0x20,0x20,0x29,0x00,0x02,0x0f,0x30,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x01,0x04,0x2e,0x82,0x02,0x00 -+// 19660 䳌 ; -+,0x00,0x04,0x08,0x01,0x11,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x00,0x00,0x10,0x00,0x46,0xc4,0x40,0x44,0x40,0x40,0x41,0x01,0x04,0x2e,0x82,0x02,0x00 -+// 19661 䳍 ; -+,0x00,0x00,0x02,0x02,0x02,0x1a,0x02,0x02,0x02,0x03,0x00,0x08,0x12,0x01,0x01,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xae,0x82,0x06,0x00 -+// 19662 䳎 ; -+,0x00,0x00,0x08,0x01,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xae,0x82,0x06,0x00 -+// 19663 䳏 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x05,0x04,0x00,0x00,0x04,0x00,0x04,0x38,0x00,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xae,0x82,0x06,0x00 -+// 19664 䳐 ; -+,0x00,0x00,0x04,0x00,0x04,0x04,0x09,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x40,0x42,0x10,0x10,0x28,0x06,0x10,0x10,0x10,0x02,0x00,0x04,0x94,0x1c,0x00 -+// 19665 䳑 ; -+,0x00,0x00,0x08,0x09,0x08,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xae,0x82,0x06,0x00 -+// 19666 䳒 ; -+,0x00,0x02,0x02,0x02,0x02,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x01,0x00,0x00,0x10,0x54,0x12,0x11,0x10,0x90,0x92,0x92,0x0c,0x0c,0x4c,0x4c,0x93,0xa3,0x00 -+// 19667 䳓 ; -+,0x00,0x00,0x08,0x09,0x0b,0x0a,0x0a,0x04,0x08,0x08,0x09,0x08,0x08,0x0e,0x08,0x00,0x00,0x10,0x00,0x46,0x44,0x40,0x44,0x40,0x40,0x41,0x00,0x04,0xae,0x82,0x06,0x00 -+// 19668 䳔 ; -+,0x00,0x01,0x08,0x09,0x08,0x08,0x00,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x08,0x10,0x18,0x02,0x00,0x04,0x94,0x1c,0x00 -+// 19669 䳕 ; -+,0x00,0x00,0x06,0x00,0x05,0x14,0x00,0x01,0x00,0x04,0x04,0x1c,0x04,0x04,0x0c,0x00,0x00,0x10,0x00,0x42,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x04,0x6a,0x02,0x06,0x00 -+// 19670 䳖 ; -+,0x00,0x00,0x00,0x10,0x12,0x00,0x10,0x11,0x10,0x11,0x01,0x01,0x33,0x01,0x02,0x00,0x00,0x00,0x01,0x50,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x74,0x14,0x15,0x10,0x00 -+// 19671 䳗 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x02,0x18,0x07,0x04,0x00,0x06,0x10,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x02,0x48,0x0c,0x28,0x2a,0x20,0x04,0x18,0x2e,0x00 -+// 19672 䳘 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x01,0x01,0x33,0x20,0x02,0x00,0x00,0x08,0x18,0x2a,0x2a,0x28,0x28,0x28,0x2a,0x2e,0x64,0x2c,0x24,0x23,0x61,0x00 -+// 19673 䳙 ; -+,0x00,0x04,0x04,0x15,0x05,0x15,0x05,0x01,0x00,0x08,0x10,0x01,0x01,0x00,0x06,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x22,0x00,0x00,0x21,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19674 䳚 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x22,0x00,0x00,0x21,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19675 䳛 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x08,0x09,0x11,0x12,0x0e,0x06,0x01,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x22,0x01,0x00,0x21,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19676 䳜 ; -+,0x00,0x00,0x04,0x0a,0x09,0x10,0x04,0x04,0x05,0x04,0x04,0x15,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x22,0x01,0x00,0x21,0x01,0x05,0xab,0x80,0x02,0x00 -+// 19677 䳝 ; -+,0x00,0x00,0x04,0x05,0x00,0x01,0x0a,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x22,0x81,0x00,0x21,0x01,0x05,0x2b,0x80,0x02,0x00 -+// 19678 䳞 ; -+,0x00,0x00,0x04,0x05,0x04,0x0d,0x08,0x08,0x05,0x04,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x22,0x01,0x00,0xa1,0x01,0x05,0x2b,0x80,0x02,0x00 -+// 19679 䳟 ; -+,0x00,0x00,0x03,0x00,0x28,0x2b,0x28,0x28,0x2b,0x28,0x28,0x2c,0x04,0x05,0x01,0x00,0x00,0x10,0x10,0x42,0x42,0x42,0x42,0x41,0x40,0x41,0x01,0x0b,0x4b,0x01,0x06,0x00 -+// 19680 䳠 ; -+,0x00,0x00,0x04,0x04,0x04,0x15,0x15,0x15,0x15,0x15,0x15,0x04,0x04,0x1c,0x00,0x00,0x00,0x10,0x10,0x22,0xa2,0x02,0x22,0x80,0x00,0x21,0x81,0x09,0x5b,0x40,0x02,0x00 -+// 19681 䳡 ; -+,0x00,0x00,0x08,0x12,0x10,0x10,0x10,0x12,0x10,0x10,0x16,0x10,0x11,0x10,0x10,0x00,0x00,0x10,0x10,0x46,0x44,0x40,0x46,0x40,0x40,0x41,0x01,0x05,0x4a,0x42,0x06,0x00 -+// 19682 䳢 ; -+,0x00,0x00,0x00,0x01,0x1a,0x00,0x0a,0x00,0x0a,0x00,0x0a,0x00,0x08,0x11,0x00,0x00,0x00,0x10,0x10,0x22,0x22,0x02,0x22,0x00,0x00,0x21,0x81,0x09,0x5b,0xc0,0x02,0x00 -+// 19683 䳣 ; -+,0x00,0x00,0x02,0x02,0x04,0x01,0x09,0x01,0x04,0x04,0x04,0x04,0x00,0x02,0x12,0x00,0x00,0x20,0x24,0x22,0x10,0x1c,0x1e,0x82,0x08,0x08,0x08,0x02,0x02,0x52,0x0c,0x00 -+// 19684 䳤 ; -+,0x00,0x00,0x04,0x15,0x14,0x04,0x05,0x05,0x0d,0x0f,0x1d,0x05,0x05,0x01,0x03,0x00,0x00,0x10,0x10,0x46,0x46,0x42,0x46,0x41,0x40,0x41,0x01,0x05,0x2b,0x80,0x06,0x00 -+// 19685 䳥 ; -+,0x00,0x00,0x04,0x14,0x04,0x05,0x04,0x09,0x04,0x00,0x01,0x01,0x02,0x0c,0x06,0x00,0x00,0x10,0x10,0x46,0x44,0x40,0x44,0x41,0xc0,0x41,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19686 䳦 ; -+,0x00,0x00,0x04,0x00,0x20,0x00,0x00,0x13,0x10,0x10,0x10,0x11,0x00,0x08,0x00,0x00,0x00,0x10,0x10,0xc6,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19687 䳧 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x01,0x01,0x33,0x20,0x02,0x00,0x00,0x00,0x40,0x44,0x44,0xc0,0x50,0x52,0x48,0x48,0x48,0x48,0x40,0x52,0x41,0x00 -+// 19688 䳨 ; -+,0x00,0x00,0x00,0x11,0x01,0x11,0x01,0x11,0x01,0x04,0x04,0x04,0x04,0x0c,0x30,0x00,0x00,0x10,0x10,0x46,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19689 䳩 ; -+,0x00,0x00,0x0a,0x0a,0x2b,0x2a,0x2a,0x28,0x08,0x09,0x11,0x12,0x1a,0x06,0x01,0x00,0x00,0x10,0x10,0x46,0xc4,0xc0,0xc4,0x41,0x40,0x41,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19690 䳪 ; -+,0x00,0x04,0x04,0x25,0x25,0x21,0x01,0x08,0x08,0x2f,0x29,0x29,0x29,0x29,0x23,0x00,0x00,0x10,0x10,0x42,0x42,0x42,0xc2,0x40,0x40,0x41,0x01,0x01,0x4b,0x80,0x06,0x00 -+// 19691 䳫 ; -+,0x00,0x00,0x08,0x09,0x21,0x10,0x10,0x04,0x04,0x05,0x04,0x02,0x09,0x01,0x00,0x00,0x00,0x10,0x10,0xe6,0x26,0x02,0x26,0x01,0x00,0xe1,0x01,0x05,0x6b,0x80,0x06,0x00 -+// 19692 䳬 ; -+,0x00,0x00,0x00,0x1b,0x00,0x04,0x04,0x15,0x05,0x15,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x10,0x10,0x46,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x05,0x2a,0x82,0x06,0x00 -+// 19693 䳭 ; -+,0x00,0x00,0x00,0x22,0x22,0x2a,0x22,0x22,0x2a,0x22,0x22,0x2a,0x36,0x22,0x02,0x00,0x00,0x00,0x10,0xa2,0x22,0x22,0x22,0x21,0x20,0x21,0x01,0x89,0x1b,0x41,0x02,0x00 -+// 19694 䳮 ; -+,0x00,0x09,0x09,0x09,0x09,0x09,0x02,0x01,0x00,0x00,0x04,0x00,0x00,0x12,0x20,0x00,0x00,0x10,0x00,0x0a,0x28,0x0c,0x13,0x00,0x08,0x08,0x0a,0x00,0x04,0x14,0x04,0x00 -+// 19695 䳯 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x15,0x15,0x05,0x15,0x04,0x05,0x04,0x0c,0x20,0x00,0x00,0x10,0x10,0x46,0x44,0x40,0x44,0x41,0x40,0x41,0x01,0x05,0x0a,0x82,0x06,0x00 -+// 19696 䳰 ; -+,0x00,0x00,0x14,0x14,0x04,0x34,0x36,0x12,0x12,0x13,0x12,0x16,0x12,0x12,0x12,0x00,0x00,0x00,0x80,0xa2,0xa2,0xa2,0x22,0x20,0xa0,0x21,0x81,0x89,0x5b,0x40,0x02,0x00 -+// 19697 䳱 ; -+,0x00,0x01,0x00,0x02,0x06,0x02,0x02,0x01,0x04,0x04,0x04,0x04,0x00,0x12,0x20,0x00,0x00,0x24,0x0c,0x9c,0x8a,0x14,0x24,0x08,0x08,0x08,0x0a,0x00,0x04,0x94,0x04,0x08 -+// 19698 䳲 ; -+,0x00,0x04,0x04,0x04,0x04,0x14,0x0c,0x01,0x08,0x08,0x0c,0x08,0x00,0x00,0x20,0x00,0x00,0x04,0x80,0x80,0x80,0x08,0x26,0x00,0x08,0x08,0x02,0x00,0x04,0x94,0x14,0x08 -+// 19699 䳳 ; -+,0x00,0x04,0x14,0x15,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x14,0x15,0x04,0x0c,0x00,0x00,0x10,0x10,0x42,0x42,0x42,0x42,0x41,0x40,0x41,0x01,0x05,0x4b,0x00,0x02,0x00 -+// 19700 䳴 ; -+,0x00,0x00,0x21,0x2a,0x2a,0x2a,0x20,0x04,0x14,0x04,0x04,0x14,0x05,0x04,0x04,0x00,0x00,0x10,0x90,0xc2,0xc2,0xc2,0x42,0x41,0x40,0x41,0x01,0x05,0x4b,0x80,0x06,0x00 -+// 19701 䳵 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x2d,0x2b,0x09,0x09,0x1d,0x1e,0x0a,0x0a,0x08,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x20,0x20,0x21,0x01,0x09,0x9b,0xc0,0x02,0x00 -+// 19702 䳶 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x01,0x01,0x33,0x22,0x02,0x00,0x00,0x02,0x00,0x12,0x40,0x10,0x24,0x78,0x02,0x73,0x10,0x18,0x00,0x24,0x03,0x00 -+// 19703 䳷 ; -+,0x00,0x04,0x08,0x04,0x0c,0x04,0x04,0x01,0x08,0x08,0x0c,0x08,0x00,0x00,0x20,0x00,0x00,0x08,0xd0,0x00,0xa8,0x20,0x3e,0x08,0x08,0x08,0x02,0x00,0x04,0x94,0x14,0x08 -+// 19704 䳸 ; -+,0x00,0x00,0x00,0x11,0x11,0x13,0x11,0x11,0x14,0x14,0x14,0x14,0x04,0x02,0x10,0x00,0x00,0x40,0x42,0x00,0x9a,0x18,0x16,0x00,0x84,0x08,0x00,0x00,0x02,0x12,0x0e,0x00 -+// 19705 䳹 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x01,0x01,0x33,0x21,0x02,0x00,0x00,0x00,0x08,0x01,0x80,0x04,0x04,0x04,0x46,0x42,0x46,0x42,0x46,0x00,0x19,0x00 -+// 19706 䳺 ; -+,0x00,0x04,0x0a,0x11,0x04,0x01,0x02,0x06,0x02,0x1f,0x1b,0x13,0x11,0x11,0x11,0x00,0x00,0x10,0x12,0x02,0x22,0x02,0x02,0xa1,0x00,0x01,0x01,0x0b,0x4a,0x82,0x06,0x00 -+// 19707 䳻 ; -+,0x00,0x00,0x04,0x14,0x14,0x14,0x04,0x01,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x00,0x00,0x06,0xa0,0xa2,0xa4,0x24,0x44,0x00,0x08,0x08,0x00,0x00,0x04,0x94,0x04,0x08 -+// 19708 䳼 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x01,0x01,0x33,0x20,0x02,0x00,0x00,0x00,0x40,0x00,0x12,0x12,0x12,0x00,0x00,0x2d,0x25,0x3d,0x00,0x00,0x40,0x00 -+// 19709 䳽 ; -+,0x00,0x04,0x04,0x04,0x14,0x04,0x10,0x15,0x24,0x15,0x04,0x15,0x14,0x04,0x10,0x00,0x00,0x10,0x90,0xc2,0xc2,0x42,0x42,0x41,0x40,0x41,0x01,0x01,0x4b,0x80,0x06,0x00 -+// 19710 䳾 ; -+,0x00,0x00,0x00,0x09,0x28,0x11,0x13,0x00,0x01,0x11,0x11,0x00,0x0a,0x02,0x18,0x00,0x00,0x00,0x00,0x22,0xa2,0x02,0xa2,0x21,0x20,0x21,0x01,0x09,0x5b,0x41,0x02,0x00 -+// 19711 䳿 ; -+,0x00,0x00,0x11,0x15,0x15,0x0d,0x21,0x09,0x0a,0x02,0x00,0x00,0x00,0x2a,0x20,0x00,0x00,0x00,0x00,0xa2,0x22,0x22,0x22,0x20,0xa0,0xa1,0x01,0x09,0x1b,0xc1,0x02,0x00 -+// 19712 䴀 ; -+,0x00,0x00,0x04,0x00,0x08,0x08,0x00,0x15,0x15,0x14,0x15,0x04,0x04,0x04,0x3c,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x21,0x20,0x21,0x01,0x09,0x5b,0x41,0x02,0x00 -+// 19713 䴁 ; -+,0x00,0x04,0x04,0x20,0x20,0x15,0x15,0x15,0x15,0x04,0x24,0x24,0x2f,0x20,0x21,0x00,0x00,0x00,0x00,0xe2,0x22,0x02,0x22,0x20,0x20,0x21,0x81,0x05,0x5b,0xc1,0x02,0x00 -+// 19714 䴂 ; -+,0x00,0x04,0x09,0x00,0x12,0x14,0x14,0x08,0x08,0x04,0x0b,0x06,0x0a,0x02,0x06,0x00,0x00,0x00,0x00,0x22,0xa2,0x82,0xa2,0x20,0xa0,0x21,0x01,0x85,0x5b,0x41,0x02,0x00 -+// 19715 䴃 ; -+,0x00,0x04,0x04,0x04,0x04,0x00,0x11,0x11,0x11,0x20,0x0a,0x0a,0x0a,0x12,0x02,0x00,0x00,0x00,0x00,0x22,0xa2,0x02,0x22,0x20,0x20,0x21,0x81,0x05,0x5b,0x41,0x02,0x00 -+// 19716 䴄 ; -+,0x00,0x01,0x00,0x01,0x15,0x00,0x20,0x11,0x19,0x29,0x19,0x09,0x01,0x11,0x01,0x00,0x00,0x00,0x00,0xa2,0x22,0xa2,0xa2,0x21,0xa0,0x21,0x01,0x89,0x5b,0x41,0x02,0x00 -+// 19717 䴅 ; -+,0x00,0x04,0x05,0x04,0x11,0x13,0x00,0x11,0x01,0x11,0x11,0x01,0x11,0x08,0x11,0x00,0x00,0x10,0x00,0x42,0x42,0x42,0x42,0x40,0x40,0x41,0x01,0x05,0x4b,0x00,0x02,0x00 -+// 19718 䴆 ; -+,0x00,0x00,0x0a,0x1b,0x0a,0x02,0x0a,0x0b,0x04,0x05,0x04,0x0c,0x0a,0x01,0x01,0x00,0x00,0x10,0x00,0x22,0x22,0x02,0x22,0x00,0x00,0x21,0x01,0x05,0x5a,0x42,0x06,0x00 -+// 19719 䴇 ; -+,0x00,0x01,0x04,0x04,0x24,0x04,0x00,0x04,0x08,0x11,0x00,0x03,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0xa2,0x22,0x02,0x22,0x01,0x20,0x21,0x01,0x05,0x5b,0x40,0x02,0x00 -+// 19720 䴈 ; -+,0x00,0x00,0x08,0x20,0x24,0x2c,0x2c,0x2e,0x24,0x20,0x04,0x04,0x08,0x09,0x10,0x00,0x00,0x00,0x00,0xa2,0xa2,0x82,0xa2,0x81,0xa0,0x21,0x81,0x05,0x5b,0x40,0x82,0x00 -+// 19721 䴉 ; -+,0x00,0x00,0x09,0x09,0x09,0x01,0x01,0x00,0x11,0x01,0x09,0x09,0x19,0x09,0x08,0x00,0x00,0x10,0x10,0x42,0x42,0x42,0x42,0x41,0x40,0x41,0x01,0x01,0x4b,0x80,0x06,0x00 -+// 19722 䴊 ; -+,0x00,0x00,0x0a,0x04,0x04,0x04,0x04,0x0a,0x12,0x12,0x12,0x12,0x33,0x11,0x10,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0xa2,0x20,0xa0,0xa1,0x01,0x89,0x13,0x41,0x82,0x00 -+// 19723 䴋 ; -+,0x00,0x08,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x21,0x01,0x01,0x33,0x00,0x02,0x00,0x00,0x00,0xaa,0xaa,0xaa,0x00,0x00,0x02,0x02,0x52,0x20,0x2a,0x24,0x26,0x20,0x00 -+// 19724 䴌 ; -+,0x00,0x08,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x21,0x01,0x01,0x33,0x00,0x02,0x00,0x00,0x04,0x24,0x24,0x00,0x01,0x80,0x00,0x00,0x10,0x14,0x28,0x18,0x0b,0x18,0x00 -+// 19725 䴍 ; -+,0x00,0x00,0x2a,0x22,0x2a,0x2a,0x22,0x2a,0x22,0x22,0x2a,0x00,0x1a,0x26,0x00,0x00,0x00,0x00,0x80,0xa2,0xa2,0xa2,0xa2,0xa1,0xa0,0xa1,0x81,0x09,0xb3,0xc1,0x02,0x00 -+// 19726 䴎 ; -+,0x00,0x00,0x04,0x04,0x01,0x05,0x05,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x00,0x00,0x08,0xc8,0x08,0x01,0x08,0x08,0x80,0x08,0x08,0x00,0x00,0x04,0x94,0x04,0x08 -+// 19727 䴏 ; -+,0x00,0x00,0x08,0x0b,0x08,0x0a,0x10,0x12,0x12,0x12,0x32,0x00,0x00,0x2a,0x2a,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0xe0,0x20,0x21,0x41,0x09,0x33,0xc1,0x02,0x00 -+// 19728 䴐 ; -+,0x00,0x00,0x00,0x20,0x00,0x11,0x11,0x10,0x01,0x10,0x10,0x10,0x10,0x08,0x10,0x00,0x00,0x00,0x00,0xa2,0x22,0x22,0x22,0xa0,0xa0,0x21,0x01,0x09,0x1b,0x41,0x82,0x00 -+// 19729 䴑 ; -+,0x00,0x00,0x01,0x07,0x00,0x08,0x19,0x00,0x20,0x21,0x11,0x11,0x11,0x11,0x3c,0x00,0x00,0x00,0x00,0x22,0xa2,0xa2,0xa2,0x20,0xa0,0x21,0x01,0x09,0x1b,0x41,0x02,0x00 -+// 19730 䴒 ; -+,0x00,0x00,0x04,0x24,0x24,0x04,0x00,0x02,0x33,0x00,0x04,0x15,0x0c,0x04,0x3c,0x00,0x00,0x00,0x00,0xa2,0x22,0x22,0x22,0xa0,0xa0,0xa1,0x01,0x09,0x9b,0x41,0x02,0x00 -+// 19731 䴓 ; -+,0x00,0x00,0x01,0x00,0x00,0x1d,0x01,0x01,0x01,0x01,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x42,0x52,0x40,0x4c,0x41,0x01,0x01,0x01,0x00,0x02,0x06,0x00 -+// 19732 䴔 ; -+,0x00,0x00,0x04,0x00,0x00,0x08,0x09,0x10,0x02,0x02,0x04,0x06,0x09,0x10,0x00,0x00,0x00,0x10,0x00,0x42,0x42,0x42,0x40,0xc4,0x40,0x41,0x01,0x05,0x00,0x02,0x0e,0x00 -+// 19733 䴕 ; -+,0x00,0x00,0x04,0x0c,0x19,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x42,0x12,0x92,0x12,0x02,0x86,0x08,0x08,0xc8,0x10,0x02,0x12,0x02,0x0e,0x04 -+// 19734 䴖 ; -+,0x00,0x04,0x05,0x04,0x05,0x04,0x04,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x00,0x00,0x10,0x00,0x42,0x42,0x50,0x40,0x4c,0x40,0x41,0x01,0x05,0x00,0x02,0x0e,0x00 -+// 19735 䴗 ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x05,0x0c,0x0c,0x0a,0x11,0x00,0x00,0x00,0x10,0x00,0x62,0x40,0x50,0x44,0x4c,0x41,0x01,0x81,0x05,0x01,0x02,0x06,0x00 -+// 19736 䴘 ; -+,0x00,0x00,0x02,0x02,0x02,0x08,0x0a,0x0a,0x0a,0x09,0x09,0x2d,0x25,0x01,0x00,0x00,0x00,0x00,0x00,0x22,0x22,0xaa,0x20,0x24,0x20,0x81,0x01,0x05,0x01,0x00,0x06,0x00 -+// 19737 䴙 ; -+,0x00,0x00,0x05,0x04,0x04,0x06,0x16,0x00,0x01,0x15,0x35,0x15,0x15,0x15,0x11,0x00,0x00,0x00,0x00,0xa2,0x22,0xaa,0x22,0x24,0x20,0x21,0x81,0x05,0x01,0x00,0x06,0x00 -+// 19738 䴚 ; -+,0x00,0x04,0x05,0x00,0x00,0x21,0x23,0x25,0x2d,0x37,0x25,0x23,0x25,0x21,0x21,0x00,0x00,0x00,0x10,0x10,0x02,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x04,0x45,0x07,0x00 -+// 19739 䴛 ; -+,0x00,0x04,0x04,0x04,0x04,0x21,0x23,0x27,0x25,0x37,0x2b,0x23,0x25,0x21,0x20,0x00,0x00,0x08,0x08,0x2a,0x28,0x08,0x43,0x41,0x43,0x41,0x41,0x41,0x41,0x41,0x42,0x00 -+// 19740 䴜 ; -+,0x00,0x00,0x01,0x00,0x00,0x21,0x23,0x25,0x2d,0x37,0x25,0x23,0x25,0x21,0x20,0x00,0x00,0x10,0x00,0x52,0x52,0x52,0x52,0x52,0x5a,0x18,0x08,0x2a,0x08,0x09,0x0f,0x00 -+// 19741 䴝 ; -+,0x00,0x00,0x00,0x00,0x00,0x21,0x29,0x25,0x2d,0x3b,0x25,0x23,0x21,0x21,0x21,0x00,0x00,0x00,0x44,0x44,0x40,0x44,0x01,0x50,0x51,0x51,0x50,0x56,0x52,0x96,0x11,0x00 -+// 19742 䴞 ; -+,0x00,0x00,0x00,0x00,0x00,0x21,0x29,0x25,0x2d,0x37,0x25,0x23,0x25,0x21,0x21,0x00,0x00,0x00,0x10,0x54,0x12,0x14,0x10,0x20,0x00,0x48,0x4a,0x48,0x48,0x48,0x40,0x00 -+// 19743 䴟 ; -+,0x00,0x00,0x00,0x01,0x09,0x09,0x0a,0x02,0x02,0x03,0x10,0x11,0x11,0x01,0x02,0x00,0x00,0x40,0x42,0x20,0x26,0x22,0x20,0xa4,0x20,0x3f,0x00,0x10,0x10,0x51,0x1f,0x00 -+// 19744 䴠 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x12,0x12,0x12,0x12,0x10,0x10,0x00,0x20,0x00,0x00,0x00,0x80,0x42,0x20,0x22,0x22,0x20,0x20,0x22,0x08,0x40,0x42,0x80,0x90,0x07,0x00 -+// 19745 䴡 ; -+,0x00,0x00,0x01,0x05,0x01,0x09,0x09,0x09,0x01,0x08,0x00,0x12,0x10,0x02,0x06,0x00,0x00,0x00,0x20,0x24,0x28,0x20,0x20,0x22,0x22,0x00,0x20,0xa8,0x20,0x20,0x1e,0x00 -+// 19746 䴢 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x12,0x12,0x12,0x12,0x10,0x10,0x01,0x02,0x00,0x00,0x00,0x80,0x42,0x20,0x22,0x22,0x00,0xac,0x20,0x3e,0x42,0xe0,0xd0,0x46,0x40,0x00 -+// 19747 䴣 ; -+,0x00,0x00,0x00,0x1e,0x02,0x1e,0x02,0x12,0x10,0x09,0x09,0x29,0x29,0x09,0x09,0x00,0x00,0x00,0x06,0x08,0x08,0xaa,0x9a,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 19748 䴤 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x12,0x12,0x12,0x12,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x80,0x42,0x20,0x26,0x20,0x20,0xa4,0x20,0x1e,0x40,0x40,0x40,0x40,0x42,0x00 -+// 19749 䴥 ; -+,0x00,0x00,0x00,0x11,0x11,0x11,0x10,0x12,0x10,0x12,0x11,0x13,0x02,0x00,0x00,0x00,0x00,0x80,0x42,0x20,0x26,0x24,0x20,0xa4,0x20,0x1e,0x00,0x56,0x42,0x12,0x80,0x00 -+// 19750 䴦 ; -+,0x00,0x00,0x11,0x11,0x11,0x10,0x12,0x10,0x16,0x10,0x10,0x00,0x00,0x02,0x02,0x00,0x00,0x80,0x22,0x20,0x24,0x24,0xa4,0x20,0x3e,0x42,0x0c,0x08,0x00,0x0c,0x08,0x00 -+// 19751 䴧 ; -+,0x00,0x04,0x04,0x0a,0x0a,0x1a,0x0a,0x1a,0x00,0x08,0x2d,0x28,0x28,0x09,0x08,0x00,0x00,0x00,0x0c,0x08,0x09,0x98,0x88,0x8b,0x00,0x10,0x94,0x24,0x08,0x16,0x01,0x00 -+// 19752 䴨 ; -+,0x00,0x04,0x04,0x1a,0x0a,0x1a,0x0a,0x0a,0x00,0x2a,0x2e,0x2a,0x2a,0x0a,0x08,0x00,0x00,0x00,0x01,0x48,0x40,0xd2,0xc2,0xd2,0x42,0x46,0x40,0x50,0x21,0x01,0x08,0x00 -+// 19753 䴩 ; -+,0x00,0x00,0x11,0x19,0x11,0x12,0x12,0x12,0x10,0x12,0x12,0x10,0x00,0x00,0x04,0x00,0x00,0x40,0x22,0x24,0x24,0x20,0x20,0x1e,0x04,0xa4,0xa4,0x08,0x02,0x00,0x46,0x00 -+// 19754 䴪 ; -+,0x00,0x00,0x01,0x19,0x11,0x12,0x12,0x12,0x10,0x13,0x11,0x13,0x02,0x02,0x02,0x00,0x00,0x00,0x22,0x24,0x24,0x20,0x20,0x3e,0x04,0x04,0x04,0x10,0x18,0x14,0x93,0x00 -+// 19755 䴫 ; -+,0x00,0x00,0x04,0x2a,0x2a,0x3b,0x2b,0x2b,0x20,0x2a,0x2a,0x22,0x22,0x0a,0x00,0x00,0x00,0x00,0x08,0x08,0x49,0x08,0x00,0x00,0x10,0x24,0x0b,0x04,0x04,0x08,0x08,0x00 -+// 19756 䴬 ; -+,0x00,0x02,0x02,0x02,0x0a,0x1b,0x06,0x0a,0x00,0x0c,0x01,0x01,0x02,0x05,0x01,0x00,0x00,0x00,0x00,0x02,0x80,0x00,0x18,0x80,0x08,0x88,0x08,0x08,0x04,0x05,0x03,0x01 -+// 19757 䴭 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x06,0x0d,0x08,0x09,0x11,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0x84,0x04,0x04,0x8c,0x0c,0x0c,0x14,0x14,0x24,0x04,0x04,0x04,0x0c,0x00 -+// 19758 䴮 ; -+,0x00,0x04,0x04,0x04,0x15,0x1c,0x06,0x0d,0x08,0x09,0x11,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0x88,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x02,0x00 -+// 19759 䴯 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x06,0x0d,0x08,0x09,0x11,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0xa0,0x20,0x21,0x95,0x15,0x15,0x01,0x29,0x08,0x00,0x12,0x22,0x06,0x00 -+// 19760 䴰 ; -+,0x00,0x04,0x04,0x04,0x15,0x1c,0x06,0x0d,0x08,0x09,0x11,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0x90,0x14,0x10,0x92,0x10,0x12,0x16,0x14,0x08,0x08,0x18,0x06,0x02,0x00 -+// 19761 䴱 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x0c,0x0d,0x08,0x09,0x11,0x02,0x06,0x0a,0x00,0x00,0x00,0x00,0x88,0x00,0x43,0xc0,0x00,0x00,0x02,0x04,0x10,0x00,0x00,0x00,0x1f,0x00 -+// 19762 䴲 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x06,0x0d,0x08,0x09,0x11,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0x88,0x08,0x0a,0x88,0x08,0x18,0x18,0x08,0x28,0x0a,0x09,0x08,0x08,0x00 -+// 19763 䴳 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x0c,0x0d,0x08,0x09,0x11,0x02,0x06,0x0a,0x00,0x00,0x00,0x00,0x88,0x00,0x43,0xc0,0x00,0x10,0x00,0x24,0x24,0x24,0x42,0x02,0x03,0x00 -+// 19764 䴴 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x06,0x0d,0x08,0x09,0x11,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0x90,0x10,0x10,0x90,0x10,0x10,0x12,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19765 䴵 ; -+,0x00,0x04,0x04,0x04,0x15,0x0c,0x0e,0x0d,0x08,0x09,0x11,0x02,0x06,0x02,0x00,0x00,0x00,0x00,0xa4,0x20,0x0a,0xa4,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x44,0x84,0x00 -+// 19766 䴶 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x20,0x20,0x24,0x04,0x08,0x14,0x03,0x08,0x18,0x0a,0x08,0x09,0x18,0x08,0x00 -+// 19767 䴷 ; -+,0x00,0x04,0x05,0x04,0x15,0x04,0x0c,0x15,0x00,0x11,0x02,0x02,0x04,0x0e,0x10,0x00,0x00,0x00,0x08,0x43,0x40,0x00,0x00,0x00,0x21,0x20,0x20,0x20,0x00,0x41,0x87,0x00 -+// 19768 䴸 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x00,0x08,0x02,0x42,0x00,0x04,0x04,0x08,0x09,0x08,0x08,0x08,0x08,0x18,0x00 -+// 19769 䴹 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x00,0x4a,0x42,0x5a,0x42,0x4a,0x42,0x00,0x18,0x18,0x24,0x02,0x03,0x00,0x00 -+// 19770 䴺 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x00,0x10,0x02,0x00,0x04,0x24,0x00,0x01,0x00,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19771 䴻 ; -+,0x00,0x01,0x02,0x06,0x0b,0x12,0x00,0x00,0x0c,0x03,0x03,0x03,0x00,0x00,0x01,0x00,0x00,0x80,0x2a,0x8a,0x12,0x04,0x40,0xc2,0x88,0xf0,0x0e,0x10,0x30,0xe0,0x18,0x00 -+// 19772 䴼 ; -+,0x00,0x04,0x05,0x04,0x15,0x04,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x20,0x28,0x20,0x22,0x14,0x18,0x07,0x20,0x2a,0x20,0x24,0x18,0x18,0x07,0x00 -+// 19773 䴽 ; -+,0x00,0x04,0x05,0x04,0x15,0x04,0x0c,0x15,0x00,0x11,0x02,0x02,0x04,0x0e,0x10,0x00,0x00,0x10,0x10,0x4b,0x48,0x5a,0x40,0x40,0x52,0x30,0x00,0x19,0x00,0x00,0x10,0x00 -+// 19774 䴾 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x0c,0x05,0x04,0x19,0x02,0x02,0x04,0x0e,0x13,0x00,0x00,0x00,0x24,0x20,0x10,0x10,0x12,0x10,0x23,0x20,0x22,0x48,0x08,0x88,0x00,0x00 -+// 19775 䴿 ; -+,0x00,0x04,0x04,0x04,0x15,0x14,0x0c,0x05,0x04,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x00,0x41,0x40,0x04,0x00,0x10,0x22,0x04,0x18,0x08,0x1a,0x01,0x08,0x18,0x00 -+// 19776 䵀 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x18,0x02,0x40,0x00,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x00,0x22,0x01,0x00 -+// 19777 䵁 ; -+,0x00,0x00,0x0a,0x08,0x0a,0x29,0x08,0x1a,0x08,0x12,0x02,0x04,0x0c,0x0c,0x00,0x00,0x00,0x04,0x04,0x88,0x8b,0x8a,0x30,0x02,0x02,0xa3,0x82,0x8a,0x8a,0x02,0x26,0x00 -+// 19778 䵂 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x00,0x08,0x02,0x04,0x04,0x41,0x48,0x4c,0x48,0x4c,0x44,0x44,0x40,0x42,0x00 -+// 19779 䵃 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x04,0x24,0x26,0x24,0x25,0x00,0x1a,0x42,0x5a,0x42,0x42,0x00,0x22,0x41,0x00 -+// 19780 䵄 ; -+,0x00,0x00,0x05,0x04,0x15,0x14,0x0c,0x15,0x00,0x19,0x02,0x02,0x04,0x0e,0x12,0x00,0x00,0x00,0x00,0x5a,0x5a,0x42,0x42,0x00,0x00,0x42,0x42,0x42,0x24,0x24,0x01,0x00 -+// 19781 䵅 ; -+,0x00,0x00,0x02,0x02,0x0c,0x09,0x01,0x00,0x0c,0x03,0x03,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x02,0x04,0x08,0x8c,0x42,0xc4,0x88,0xf0,0x0e,0x10,0x30,0xe0,0x18,0x00 -+// 19782 䵆 ; -+,0x00,0x00,0x05,0x10,0x12,0x0d,0x0c,0x15,0x08,0x0a,0x12,0x04,0x04,0x0a,0x00,0x00,0x00,0x04,0x24,0x24,0x00,0x81,0x84,0x00,0x10,0x10,0x14,0x28,0x18,0x0b,0x18,0x00 -+// 19783 䵇 ; -+,0x00,0x02,0x00,0x10,0x14,0x14,0x16,0x14,0x16,0x15,0x15,0x14,0x04,0x24,0x04,0x00,0x00,0x00,0x08,0x08,0x00,0x12,0xd2,0x82,0x80,0xcc,0x2c,0x04,0x0c,0x02,0x01,0x00 -+// 19784 䵈 ; -+,0x00,0x02,0x08,0x06,0x0c,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x13,0x11,0x01,0x00,0x00,0x20,0xb0,0x44,0x40,0x8c,0x38,0x42,0x42,0x08,0x8a,0x18,0x9c,0x0b,0x08,0x00 -+// 19785 䵉 ; -+,0x00,0x00,0x00,0x10,0x11,0x13,0x12,0x10,0x10,0x10,0x10,0x12,0x02,0x02,0x02,0x00,0x00,0x00,0x42,0x00,0x0a,0x18,0x0a,0x40,0x90,0x16,0x00,0x44,0x04,0x04,0x0c,0x00 -+// 19786 䵊 ; -+,0x00,0x00,0x12,0x12,0x02,0x06,0x02,0x13,0x12,0x12,0x12,0x12,0x02,0x02,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x29,0x10,0x12,0x12,0x52,0x12,0x52,0x00,0x64,0x81,0x00 -+// 19787 䵋 ; -+,0x00,0x08,0x0a,0x0a,0x0a,0x04,0x04,0x15,0x14,0x15,0x14,0x15,0x00,0x09,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0xa0,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00 -+// 19788 䵌 ; -+,0x00,0x0a,0x0a,0x0a,0x0a,0x06,0x04,0x15,0x15,0x15,0x15,0x15,0x00,0x09,0x00,0x00,0x00,0x00,0x08,0x00,0x18,0x80,0x02,0x42,0x25,0x18,0x10,0x10,0x24,0x02,0x03,0x00 -+// 19789 䵍 ; -+,0x00,0x0a,0x0a,0x0a,0x0a,0x0e,0x04,0x15,0x15,0x15,0x15,0x15,0x00,0x19,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xa2,0x20,0x00,0x04,0x00,0x08,0x08,0x08,0x08,0x18,0x00 -+// 19790 䵎 ; -+,0x00,0x0a,0x0a,0x0a,0x0a,0x0e,0x04,0x15,0x15,0x15,0x15,0x15,0x00,0x19,0x00,0x00,0x00,0x00,0x02,0x42,0x4a,0x00,0x01,0x10,0x10,0x57,0x50,0x50,0x50,0x50,0x42,0x00 -+// 19791 䵏 ; -+,0x00,0x0a,0x0a,0x0a,0x0a,0x0e,0x04,0x15,0x15,0x15,0x15,0x15,0x00,0x11,0x01,0x00,0x00,0x00,0x12,0x56,0x12,0x5a,0x00,0x10,0x24,0x09,0x04,0x08,0x22,0x0c,0x30,0x00 -+// 19792 䵐 ; -+,0x00,0x0a,0x0a,0x0a,0x0a,0x0e,0x04,0x15,0x15,0x15,0x15,0x15,0x00,0x19,0x00,0x00,0x00,0x00,0x51,0x51,0x51,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x08,0x09,0x08,0x08,0x00 -+// 19793 䵑 ; -+,0x00,0x01,0x04,0x04,0x06,0x08,0x00,0x04,0x08,0x00,0x0b,0x06,0x0d,0x10,0x04,0x00,0x00,0x00,0x00,0x89,0x08,0x88,0x08,0x28,0xa0,0x90,0x10,0x12,0x82,0xa2,0x06,0x00 -+// 19794 䵒 ; -+,0x00,0x01,0x04,0x04,0x06,0x08,0x00,0x04,0x08,0x00,0x0b,0x06,0x0d,0x10,0x04,0x00,0x00,0x00,0x01,0xa0,0x20,0xa0,0x20,0x20,0xa0,0xa0,0x20,0x20,0x20,0xa2,0x20,0x00 -+// 19795 䵓 ; -+,0x00,0x01,0x04,0x04,0x06,0x0d,0x04,0x04,0x09,0x10,0x0f,0x06,0x0d,0x20,0x04,0x00,0x00,0x00,0x08,0xa8,0x28,0xaa,0x08,0x08,0x08,0x89,0x08,0x08,0x08,0x88,0x08,0x00 -+// 19796 䵔 ; -+,0x00,0x01,0x04,0x04,0x0c,0x0d,0x04,0x04,0x09,0x14,0x0d,0x04,0x0d,0x24,0x04,0x00,0x00,0x08,0x08,0x88,0x08,0xaa,0x0a,0x2a,0x0a,0x9a,0x18,0x0c,0x2a,0x8b,0x08,0x00 -+// 19797 䵕 ; -+,0x00,0x00,0x04,0x04,0x0c,0x0d,0x04,0x04,0x09,0x14,0x05,0x0c,0x0f,0x24,0x04,0x00,0x00,0x00,0x42,0x40,0x42,0x40,0x48,0x49,0x48,0xc8,0x63,0x60,0x20,0xa0,0x20,0x00 -+// 19798 䵖 ; -+,0x00,0x00,0x10,0x10,0x11,0x14,0x01,0x00,0x01,0x04,0x03,0x04,0x01,0x00,0x0c,0x00,0x00,0x00,0x04,0x04,0x0c,0x02,0xf8,0xc2,0xc0,0x86,0x10,0x1e,0x00,0xc0,0x8c,0x00 -+// 19799 䵗 ; -+,0x00,0x01,0x04,0x04,0x0c,0x0d,0x04,0x04,0x09,0x14,0x05,0x0c,0x0d,0x24,0x04,0x00,0x00,0x00,0x00,0x00,0x22,0x02,0x22,0x00,0x41,0xc9,0x49,0x49,0x49,0x49,0x41,0x00 -+// 19800 䵘 ; -+,0x00,0x01,0x04,0x04,0x0c,0x05,0x04,0x0c,0x09,0x04,0x05,0x0c,0x0d,0x24,0x0c,0x00,0x00,0x00,0x42,0x02,0x02,0x02,0x00,0x01,0x20,0xa1,0x15,0x28,0x0a,0x12,0x06,0x00 -+// 19801 䵙 ; -+,0x00,0x01,0x04,0x04,0x0c,0x05,0x04,0x0c,0x09,0x04,0x05,0x0c,0x0d,0x24,0x0c,0x00,0x00,0x00,0x10,0x13,0x00,0x24,0x53,0x24,0x28,0x98,0x08,0x12,0x14,0x08,0x10,0x00 -+// 19802 䵚 ; -+,0x00,0x00,0x04,0x04,0x0c,0x05,0x04,0x0c,0x09,0x04,0x05,0x0c,0x0d,0x24,0x0c,0x00,0x00,0x00,0x1e,0x00,0x13,0x4a,0x00,0x00,0x03,0xc0,0x40,0x42,0x40,0x42,0x41,0x00 -+// 19803 䵛 ; -+,0x00,0x02,0x08,0x08,0x0c,0x1b,0x08,0x08,0x12,0x04,0x1e,0x04,0x1e,0x21,0x08,0x00,0x00,0x00,0x81,0x81,0xd2,0x96,0x94,0x86,0x81,0x00,0x10,0x12,0x10,0x10,0x11,0x00 -+// 19804 䵜 ; -+,0x00,0x00,0x04,0x05,0x0c,0x05,0x04,0x0a,0x05,0x04,0x0c,0x04,0x1d,0x04,0x04,0x00,0x00,0x14,0x55,0x55,0x55,0x55,0x40,0x01,0x40,0x40,0x41,0x60,0x22,0xa4,0xa3,0x00 -+// 19805 䵝 ; -+,0x00,0x00,0x10,0x10,0x1d,0x12,0x16,0x00,0x06,0x00,0x02,0x18,0x00,0x05,0x00,0x00,0x00,0x00,0x90,0x90,0x90,0x90,0x90,0x10,0x90,0x10,0x10,0x10,0x51,0x51,0x1f,0x00 -+// 19806 䵞 ; -+,0x00,0x00,0x14,0x14,0x1d,0x14,0x14,0x04,0x04,0x04,0x04,0x18,0x00,0x05,0x00,0x00,0x00,0x00,0x82,0x80,0x90,0x90,0x90,0x10,0x90,0x10,0x10,0x00,0x40,0x44,0x0c,0x00 -+// 19807 䵟 ; -+,0x00,0x00,0x15,0x15,0x1f,0x04,0x15,0x04,0x04,0x04,0x04,0x30,0x00,0x00,0x20,0x00,0x00,0x00,0x82,0x88,0x88,0x88,0x88,0x09,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0x00 -+// 19808 䵠 ; -+,0x00,0x00,0x15,0x14,0x1e,0x04,0x15,0x04,0x04,0x04,0x04,0x30,0x00,0x00,0x20,0x00,0x00,0x00,0x90,0x90,0xa0,0xa2,0xc2,0x02,0x12,0x12,0x12,0x02,0x82,0x02,0x04,0x00 -+// 19809 䵡 ; -+,0x00,0x00,0x00,0x03,0x02,0x08,0x08,0x0a,0x08,0x08,0x00,0x00,0x00,0x01,0x11,0x00,0x00,0x00,0x80,0x02,0x00,0x06,0x88,0x80,0x80,0x80,0x84,0x80,0x00,0x22,0x12,0x00 -+// 19810 䵢 ; -+,0x00,0x00,0x25,0x05,0x0f,0x05,0x05,0x05,0x04,0x04,0x0c,0x20,0x02,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x12,0x00,0x00,0x12,0x18,0x38,0x24,0x04,0x82,0x01,0x00,0x00 -+// 19811 䵣 ; -+,0x00,0x00,0x05,0x05,0x0f,0x05,0x05,0x04,0x04,0x04,0x04,0x30,0x02,0x0a,0x20,0x00,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x80,0x00,0x00,0x00 -+// 19812 䵤 ; -+,0x00,0x00,0x01,0x03,0x02,0x04,0x08,0x00,0x01,0x08,0x00,0x00,0x00,0x01,0x11,0x00,0x00,0x00,0x10,0x12,0x10,0x10,0x04,0x90,0x80,0x80,0x84,0x80,0x00,0x02,0x10,0x00 -+// 19813 䵥 ; -+,0x00,0x00,0x05,0x05,0x0f,0x05,0x05,0x04,0x05,0x04,0x04,0x30,0x00,0x0a,0x20,0x00,0x00,0x00,0x10,0x14,0x24,0x00,0x4a,0x0a,0x0a,0x2a,0x00,0x00,0x00,0x81,0x3f,0x00 -+// 19814 䵦 ; -+,0x00,0x00,0x2b,0x22,0x3e,0x28,0x28,0x00,0x08,0x00,0x08,0x20,0x01,0x28,0x20,0x00,0x00,0x00,0x01,0x44,0x04,0x04,0x04,0x05,0x04,0x04,0x44,0x04,0x04,0x84,0x0c,0x00 -+// 19815 䵧 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x12,0x12,0x02,0x02,0x02,0x10,0x05,0x10,0x00,0x00,0x20,0x20,0x24,0x00,0x30,0x90,0x96,0x14,0x14,0x18,0x08,0x18,0x45,0x03,0x00 -+// 19816 䵨 ; -+,0x00,0x00,0x25,0x05,0x1f,0x05,0x25,0x04,0x04,0x04,0x0c,0x30,0x02,0x08,0x20,0x00,0x00,0x00,0x20,0x24,0x22,0x30,0x34,0x38,0x32,0x34,0x13,0x54,0x58,0x91,0x0f,0x00 -+// 19817 䵩 ; -+,0x00,0x01,0x02,0x06,0x06,0x02,0x02,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x11,0x00,0x00,0x02,0x12,0x02,0x02,0x06,0x04,0x44,0x44,0x64,0x40,0x40,0x41,0x00,0x02,0x00 -+// 19818 䵪 ; -+,0x00,0x00,0x25,0x25,0x3f,0x25,0x25,0x04,0x05,0x04,0x04,0x30,0x02,0x0a,0x20,0x00,0x00,0x00,0x42,0x42,0x42,0x42,0x42,0x00,0x40,0x43,0x5c,0x40,0x40,0x48,0x47,0x00 -+// 19819 䵫 ; -+,0x00,0x00,0x00,0x12,0x05,0x07,0x04,0x04,0x01,0x05,0x00,0x00,0x00,0x00,0x11,0x00,0x00,0x40,0x42,0x00,0x80,0x08,0x1c,0x44,0x54,0x64,0x44,0x40,0x41,0x00,0x12,0x00 -+// 19820 䵬 ; -+,0x00,0x00,0x01,0x01,0x17,0x05,0x05,0x00,0x04,0x00,0x04,0x30,0x01,0x0a,0x20,0x00,0x00,0x00,0x08,0x0a,0x38,0x2c,0x4a,0x09,0x10,0x42,0x42,0x42,0x42,0x42,0x42,0x00 -+// 19821 䵭 ; -+,0x00,0x00,0x01,0x01,0x17,0x05,0x05,0x00,0x05,0x00,0x04,0x30,0x00,0x0a,0x20,0x00,0x00,0x00,0x10,0x16,0x14,0x14,0x19,0x10,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0x00 -+// 19822 䵮 ; -+,0x00,0x00,0x25,0x21,0x25,0x25,0x05,0x00,0x0c,0x00,0x0c,0x30,0x01,0x0a,0x20,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x00,0x01,0x20,0x21,0x15,0x28,0x0a,0x12,0x06,0x00 -+// 19823 䵯 ; -+,0x00,0x00,0x21,0x21,0x37,0x25,0x25,0x00,0x0c,0x00,0x04,0x30,0x00,0x0a,0x20,0x00,0x00,0x00,0x1c,0x00,0x19,0x00,0x5a,0x42,0x5a,0x42,0x5a,0x00,0x18,0x00,0x00,0x00 -+// 19824 䵰 ; -+,0x00,0x00,0x21,0x21,0x37,0x25,0x25,0x00,0x0c,0x00,0x04,0x30,0x01,0x0a,0x20,0x00,0x00,0x20,0x20,0x40,0x02,0x02,0x22,0x22,0x01,0x20,0x55,0x15,0x21,0x01,0x02,0x00 -+// 19825 䵱 ; -+,0x00,0x00,0x01,0x01,0x17,0x05,0x05,0x00,0x04,0x00,0x04,0x30,0x01,0x08,0x20,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x02,0x02,0x02,0x04,0x01,0x00,0x02,0x02,0x02,0x00 -+// 19826 䵲 ; -+,0x00,0x00,0x21,0x21,0x3f,0x25,0x29,0x00,0x0c,0x00,0x0c,0x30,0x01,0x0a,0x20,0x00,0x00,0x00,0x24,0x24,0x24,0x00,0x21,0x00,0x00,0x00,0x38,0x30,0x04,0x03,0x00,0x00 -+// 19827 䵳 ; -+,0x00,0x00,0x21,0x21,0x27,0x25,0x2d,0x00,0x0c,0x00,0x0c,0x30,0x01,0x0a,0x20,0x00,0x00,0x00,0x10,0x20,0x46,0x01,0x42,0x46,0x62,0x42,0x00,0x00,0x24,0x00,0x24,0x00 -+// 19828 䵴 ; -+,0x00,0x00,0x25,0x01,0x1d,0x05,0x05,0x00,0x0c,0x00,0x0c,0x30,0x01,0x0a,0x20,0x00,0x00,0x00,0x6a,0x0a,0x6a,0x08,0x2a,0x88,0x88,0xaa,0x88,0xaa,0x08,0x08,0x1f,0x00 -+// 19829 䵵 ; -+,0x00,0x04,0x0a,0x02,0x04,0x04,0x04,0x03,0x04,0x06,0x04,0x00,0x00,0x00,0x08,0x10,0x00,0x10,0x08,0x48,0x08,0x08,0x00,0x02,0x08,0xbb,0x88,0x88,0x80,0x00,0x24,0x00 -+// 19830 䵶 ; -+,0x00,0x08,0x08,0x10,0x11,0x00,0x14,0x14,0x14,0x14,0x14,0x12,0x02,0x02,0x06,0x00,0x00,0x00,0x2a,0x2a,0x6a,0x28,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xa8,0x28,0x19,0x00 -+// 19831 䵷 ; -+,0x00,0x00,0x04,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x00,0x0c,0x10,0x00,0x00,0x00,0x7a,0x0a,0x6a,0x08,0x2a,0x8a,0x8a,0xaa,0x8a,0xaa,0x88,0x08,0x19,0x00 -+// 19832 䵸 ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x11,0x11,0x01,0x11,0x11,0x11,0x01,0x01,0x00,0x00,0x00,0x10,0x54,0x18,0x24,0x02,0x44,0x44,0x40,0x42,0x42,0x42,0x40,0xff,0x00 -+// 19833 䵹 ; -+,0x00,0x00,0x12,0x08,0x08,0x06,0x12,0x11,0x11,0x01,0x11,0x11,0x11,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x00,0x44,0x04,0x00,0x02,0x02,0x02,0x00,0xff,0x00 -+// 19834 䵺 ; -+,0x00,0x00,0x08,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x18,0x20,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x46,0x46,0x46,0x02,0x2a,0x28,0xab,0xaa,0x2a,0x2a,0x2a,0x00 -+// 19835 䵻 ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x28,0x08,0x0b,0x08,0x08,0x28,0x08,0x00,0x00,0x00,0x22,0x20,0x27,0x20,0x37,0x20,0x00,0x02,0x80,0x02,0x00,0x02,0x02,0x00 -+// 19836 䵼 ; -+,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x02,0x0a,0x0a,0x08,0x00,0x04,0x08,0x00,0x00,0x30,0x66,0x18,0x04,0x24,0x24,0x08,0x10,0x10,0x10,0x00,0x20,0x22,0x22,0x00 -+// 19837 䵽 ; -+,0x00,0x04,0x04,0x04,0x00,0x10,0x01,0x08,0x18,0x00,0x00,0x00,0x01,0x02,0x06,0x00,0x00,0x08,0x8b,0x08,0x2a,0x14,0x08,0x14,0x00,0x44,0xc0,0xc2,0x00,0x00,0x04,0x00 -+// 19838 䵾 ; -+,0x00,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0x04,0x05,0x01,0x11,0x10,0x08,0x08,0x00,0x00,0x00,0x0d,0x00,0x40,0x08,0x08,0x08,0x1a,0x08,0x1a,0x02,0x14,0x08,0x27,0x00 -+// 19839 䵿 ; -+,0x00,0x04,0x04,0x04,0x00,0x10,0x11,0x08,0x18,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x08,0x89,0x08,0x02,0x00,0x08,0x0c,0x02,0x80,0x80,0x84,0x04,0x04,0x04,0x00 -+// 19840 䶀 ; -+,0x00,0x04,0x04,0x04,0x00,0x10,0x11,0x08,0x18,0x01,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x08,0x8b,0x08,0x02,0x04,0x08,0x04,0x82,0x00,0x1c,0x02,0x08,0x08,0x08,0x00 -+// 19841 䶁 ; -+,0x00,0x04,0x04,0x01,0x11,0x11,0x00,0x02,0x10,0x01,0x02,0x08,0x04,0x04,0x04,0x00,0x00,0x08,0x0a,0x08,0x06,0x04,0x1c,0x02,0x58,0x60,0x08,0x84,0x08,0x08,0x08,0x00 -+// 19842 䶂 ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x10,0x00,0x14,0x0c,0x04,0x0e,0x04,0x16,0x04,0x00,0x00,0x00,0x90,0x90,0xa0,0xa1,0xc0,0x00,0x90,0x88,0x80,0x82,0x82,0xc2,0x06,0x00 -+// 19843 䶃 ; -+,0x00,0x00,0x10,0x00,0x18,0x00,0x10,0x00,0x04,0x0d,0x04,0x0e,0x04,0x14,0x00,0x00,0x00,0x00,0x90,0x90,0xa0,0x84,0xc2,0x11,0x80,0x02,0x06,0x04,0x80,0xc8,0x08,0x00 -+// 19844 䶄 ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x24,0x2f,0x24,0x2e,0x24,0x34,0x24,0x00,0x00,0x00,0x82,0x08,0x0a,0x2a,0xa8,0x08,0x09,0x08,0x08,0x08,0x88,0xc8,0x08,0x00 -+// 19845 䶅 ; -+,0x00,0x00,0x01,0x20,0x29,0x20,0x21,0x00,0x25,0x2f,0x25,0x2f,0x24,0x34,0x24,0x00,0x00,0x00,0x90,0x32,0x22,0x04,0x08,0x18,0x26,0x03,0x22,0x22,0x22,0xa2,0x20,0x00 -+// 19846 䶆 ; -+,0x00,0x00,0x01,0x20,0x29,0x20,0x21,0x00,0x25,0x2f,0x25,0x2f,0x24,0x34,0x24,0x00,0x00,0x00,0x20,0x24,0x21,0x60,0x60,0x2e,0x20,0x20,0x2c,0x20,0x20,0xa9,0x20,0x00 -+// 19847 䶇 ; -+,0x00,0x00,0x01,0x21,0x29,0x21,0x21,0x00,0x25,0x2f,0x21,0x2f,0x29,0x34,0x24,0x00,0x00,0x00,0x08,0x49,0x49,0x49,0x49,0x00,0x22,0x22,0x22,0x22,0x22,0xa2,0x22,0x00 -+// 19848 䶈 ; -+,0x00,0x00,0x01,0x21,0x29,0x21,0x21,0x00,0x25,0x2f,0x25,0x2f,0x21,0x24,0x24,0x00,0x00,0x00,0x0a,0x09,0x08,0x2a,0x2a,0x0a,0x2a,0x08,0x05,0x04,0x14,0x84,0x8c,0x00 -+// 19849 䶉 ; -+,0x00,0x00,0x01,0x21,0x29,0x21,0x21,0x00,0x21,0x2b,0x21,0x2b,0x21,0x25,0x20,0x00,0x00,0x00,0x00,0x45,0x45,0x55,0x6a,0x02,0x00,0x0a,0x0a,0x2a,0x4a,0x8a,0x42,0x00 -+// 19850 䶊 ; -+,0x00,0x04,0x0d,0x01,0x01,0x01,0x01,0x14,0x14,0x14,0x10,0x00,0x09,0x09,0x11,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x12,0x92,0x92,0x90,0x10,0x10,0x14,0x04,0x00,0x00 -+// 19851 䶋 ; -+,0x00,0x04,0x09,0x11,0x11,0x11,0x01,0x15,0x15,0x14,0x00,0x08,0x08,0x08,0x10,0x00,0x00,0x00,0x02,0x14,0x14,0x04,0x0c,0x82,0x22,0x30,0x24,0x8c,0x4c,0x16,0x03,0x00 -+// 19852 䶌 ; -+,0x00,0x04,0x09,0x01,0x09,0x01,0x00,0x14,0x14,0x14,0x00,0x09,0x09,0x09,0x11,0x00,0x00,0x10,0x10,0x22,0x22,0x42,0x2a,0xaa,0xaa,0xaa,0x22,0x22,0x20,0x21,0x3f,0x00 -+// 19853 䶍 ; -+,0x00,0x00,0x01,0x04,0x08,0x00,0x11,0x00,0x04,0x05,0x04,0x04,0x04,0x1c,0x00,0x00,0x00,0x10,0x12,0x42,0x42,0x42,0x42,0x02,0x12,0x12,0x02,0x01,0x24,0x04,0x44,0x00 -+// 19854 䶎 ; -+,0x00,0x04,0x19,0x11,0x11,0x11,0x00,0x25,0x05,0x05,0x01,0x00,0x0a,0x12,0x12,0x00,0x00,0x00,0x08,0x10,0x14,0x22,0x03,0x00,0x00,0x00,0x22,0xa2,0x22,0x22,0x22,0x00 -+// 19855 䶏 ; -+,0x00,0x00,0x0a,0x00,0x05,0x01,0x15,0x00,0x04,0x0d,0x09,0x15,0x00,0x00,0x04,0x00,0x00,0x00,0x12,0x22,0x02,0x22,0x02,0x42,0x4a,0x4a,0x00,0x24,0x24,0x24,0x44,0x00 -+// 19856 䶐 ; -+,0x00,0x04,0x11,0x11,0x11,0x11,0x00,0x15,0x15,0x05,0x00,0x0a,0x0a,0x02,0x02,0x00,0x00,0x10,0x10,0x24,0x07,0x00,0x4a,0x5e,0x48,0x00,0x22,0x22,0x22,0x22,0x22,0x00 -+// 19857 䶑 ; -+,0x00,0x04,0x19,0x11,0x11,0x11,0x00,0x15,0x15,0x04,0x00,0x0a,0x0a,0x02,0x12,0x00,0x00,0x00,0x1a,0x00,0x01,0x02,0x00,0x00,0x10,0x00,0x32,0x00,0x40,0x40,0x9e,0x00 -+// 19858 䶒 ; -+,0x00,0x00,0x00,0x00,0x00,0x0a,0x0a,0x02,0x00,0x00,0x00,0x09,0x09,0x00,0x00,0x00,0x00,0x80,0x02,0x00,0x8c,0x10,0x10,0x92,0x20,0x14,0x84,0x2c,0x04,0xc4,0x14,0x00 -+// 19859 䶓 ; -+,0x00,0x08,0x08,0x08,0x2a,0x2a,0x28,0x28,0x2a,0x2a,0x2c,0x28,0x08,0x08,0x09,0x00,0x00,0x00,0x10,0x00,0x28,0xc4,0x54,0x55,0x54,0x82,0x80,0x80,0x80,0x80,0x02,0x00 -+// 19860 䶔 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x14,0x0a,0x3b,0x21,0x21,0x2a,0x2b,0x21,0x39,0x00,0x00,0x00,0x08,0x08,0x28,0x28,0x2a,0x28,0x28,0x2a,0x28,0x20,0x20,0x21,0x1f,0x00 -+// 19861 䶕 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x00,0x0a,0x3b,0x20,0x21,0x2a,0x2b,0x21,0x38,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x2a,0x80,0x00,0x00,0x00,0x01,0x01,0x3f,0x00 -+// 19862 䶖 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x14,0x0a,0x3a,0x21,0x21,0x2a,0x2a,0x25,0x38,0x00,0x00,0x08,0x18,0x10,0x04,0x24,0x02,0x09,0x80,0x02,0x00,0x04,0x04,0x08,0x88,0x00 -+// 19863 䶗 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x00,0x0a,0x33,0x20,0x21,0x2a,0x2b,0x21,0x38,0x00,0x00,0x00,0x01,0x02,0x02,0x0a,0x0a,0x0a,0x0a,0x2a,0x02,0x02,0x02,0x02,0x06,0x00 -+// 19864 䶘 ; -+,0x00,0x00,0x14,0x17,0x14,0x14,0x02,0x0a,0x3b,0x21,0x21,0x2a,0x2b,0x21,0x38,0x00,0x00,0x00,0x10,0x08,0x00,0x00,0x00,0x04,0x84,0x14,0x14,0x10,0x00,0x00,0x00,0x00 -+// 19865 䶙 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x02,0x0a,0x3b,0x21,0x21,0x2a,0x2b,0x21,0x38,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x22,0x02,0x02,0x02,0x22,0x00,0x00,0x00,0x40,0x00 -+// 19866 䶚 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x00,0x0a,0x3a,0x20,0x21,0x2a,0x2a,0x21,0x38,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x08,0x08,0x88,0x2a,0x08,0x08,0x08,0x0b,0xf1,0x00 -+// 19867 䶛 ; -+,0x00,0x00,0x02,0x04,0x0c,0x01,0x06,0x02,0x02,0x01,0x08,0x08,0x09,0x0a,0x08,0x00,0x00,0x40,0x12,0x92,0x92,0x02,0x56,0x40,0x42,0x10,0x8a,0x00,0x10,0x88,0x02,0x00 -+// 19868 䶜 ; -+,0x00,0x04,0x04,0x15,0x14,0x14,0x1f,0x0a,0x3b,0x20,0x21,0x2a,0x2b,0x21,0x30,0x00,0x00,0x00,0x28,0x28,0x2a,0x08,0x08,0x0b,0x00,0x02,0x22,0x22,0x22,0x22,0x22,0x00 -+// 19869 䶝 ; -+,0x00,0x04,0x04,0x15,0x14,0x14,0x0a,0x0a,0x33,0x20,0x21,0x2a,0x2b,0x21,0x30,0x00,0x00,0x00,0x00,0x00,0x19,0x00,0x32,0x12,0x72,0x19,0x18,0x10,0x24,0x02,0x01,0x00 -+// 19870 䶞 ; -+,0x00,0x04,0x04,0x15,0x14,0x14,0x0b,0x0a,0x31,0x20,0x21,0x2a,0x2b,0x21,0x30,0x00,0x00,0x00,0x20,0x22,0x24,0x20,0x24,0x20,0x24,0x20,0x20,0x00,0x00,0x22,0x41,0x00 -+// 19871 䶟 ; -+,0x00,0x04,0x04,0x15,0x14,0x14,0x1a,0x02,0x31,0x21,0x21,0x2a,0x39,0x21,0x30,0x00,0x00,0x00,0x10,0x32,0x20,0x04,0x00,0x11,0x01,0x01,0x11,0x01,0x01,0x21,0x41,0x00 -+// 19872 䶠 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x10,0x02,0x02,0x01,0x09,0x08,0x09,0x0b,0x08,0x00,0x00,0x28,0x24,0x00,0x1c,0x98,0x06,0x48,0x40,0x10,0x32,0x88,0x10,0x08,0x04,0x00 -+// 19873 䶡 ; -+,0x00,0x04,0x14,0x14,0x14,0x14,0x00,0x00,0x2f,0x21,0x29,0x25,0x2f,0x21,0x30,0x00,0x00,0x00,0x01,0x51,0x45,0x55,0x45,0x45,0x55,0x45,0x45,0x51,0x01,0x41,0x03,0x00 -+// 19874 䶢 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x00,0x02,0x3f,0x21,0x21,0x21,0x2b,0x21,0x38,0x00,0x00,0x00,0x05,0x04,0x44,0x44,0x44,0x45,0x6e,0x6e,0x6a,0x2e,0x02,0x89,0x01,0x00 -+// 19875 䶣 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x00,0x02,0x3b,0x21,0x21,0x2b,0x3b,0x21,0x39,0x00,0x00,0x00,0x08,0x4a,0x4a,0x42,0x00,0x00,0x22,0x22,0x22,0x00,0x02,0x14,0x01,0x00 -+// 19876 䶤 ; -+,0x00,0x04,0x14,0x15,0x14,0x14,0x00,0x0a,0x3b,0x21,0x21,0x2a,0x2b,0x21,0x38,0x00,0x00,0x00,0x22,0x22,0x2a,0x2a,0x41,0x00,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x00 -+// 19877 䶥 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x00,0x00,0x3d,0x21,0x21,0x21,0x21,0x21,0x39,0x00,0x00,0x00,0x0a,0x00,0x49,0x40,0x48,0x4e,0x40,0x52,0x52,0x42,0x12,0x82,0x13,0x00 -+// 19878 䶦 ; -+,0x00,0x04,0x04,0x15,0x14,0x14,0x00,0x0a,0x3b,0x21,0x21,0x2b,0x2b,0x21,0x38,0x00,0x00,0x00,0x08,0x08,0x0a,0x08,0x01,0x02,0x02,0x22,0x22,0x02,0x22,0x20,0x43,0x00 -+// 19879 䶧 ; -+,0x00,0x04,0x04,0x15,0x14,0x14,0x00,0x02,0x3f,0x21,0x21,0x2b,0x2b,0x21,0x39,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x04,0x24,0x24,0x40,0x01,0x14,0x04,0x25,0x47,0x00 -+// 19880 䶨 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x00,0x00,0x3f,0x21,0x21,0x21,0x2b,0x21,0x39,0x00,0x00,0x00,0x18,0x10,0x24,0x07,0x00,0x52,0x52,0x52,0x00,0x20,0x24,0x44,0x91,0x00 -+// 19881 䶩 ; -+,0x00,0x04,0x14,0x14,0x14,0x15,0x00,0x10,0x2f,0x21,0x21,0x21,0x2b,0x21,0x30,0x00,0x00,0x00,0x00,0x04,0x11,0x62,0x6c,0x25,0x04,0x00,0x02,0x42,0x42,0x42,0x02,0x00 -+// 19882 䶪 ; -+,0x00,0x04,0x14,0x14,0x14,0x14,0x00,0x14,0x2f,0x21,0x21,0x21,0x2d,0x21,0x30,0x00,0x00,0x00,0x28,0x2a,0x20,0x09,0x40,0x40,0xa8,0xa2,0x26,0x74,0x24,0x72,0x01,0x00 -+// 19883 䶫 ; -+,0x00,0x04,0x04,0x14,0x14,0x14,0x00,0x21,0x2d,0x21,0x21,0x21,0x2d,0x21,0x20,0x00,0x00,0x00,0x52,0x50,0x00,0x01,0x90,0x94,0xbd,0xa8,0xb0,0xb2,0xa2,0x32,0x01,0x00 -+// 19884 䶬 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x0a,0x00,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x08,0x09,0x08,0x20,0x20,0x22,0x02,0x20,0x20,0x24,0x20,0x20,0x3f,0x00 -+// 19885 䶭 ; -+,0x00,0x08,0x08,0x09,0x08,0x0a,0x0a,0x0a,0x0b,0x0b,0x0a,0x12,0x16,0x02,0x01,0x00,0x00,0x00,0x00,0x10,0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x01,0xff,0x00 -+// 19886 䶮 ; -+,0x00,0x01,0x01,0x01,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x08,0x40,0x48,0x70,0x41,0x3e,0x04,0x80,0x82,0x80,0x20,0x08,0x06,0x00 -+// 19887 䶯 ; -+,0x00,0x00,0x08,0x08,0x0a,0x0a,0x12,0x12,0x14,0x14,0x04,0x08,0x0c,0x12,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0xaa,0x28,0x6a,0x6e,0x2e,0x2e,0xaa,0xa8,0xa8,0x1f,0x00 -+// 19888 䶰 ; -+,0x00,0x04,0x00,0x00,0x00,0x06,0x1a,0x1a,0x13,0x03,0x12,0x12,0x12,0x06,0x07,0x00,0x00,0x00,0x06,0x98,0x88,0x08,0x08,0x88,0x88,0x0a,0xc8,0x88,0x08,0x29,0xcf,0x00 -+// 19889 䶱 ; -+,0x00,0x00,0x08,0x12,0x12,0x04,0x0c,0x0c,0x02,0x00,0x04,0x00,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x82,0x82,0xaa,0x28,0x6a,0x6e,0x2e,0x2e,0xea,0xa8,0xa8,0x1f,0x00 -+// 19890 䶲 ; -+,0x00,0x00,0x00,0x00,0x1e,0x02,0x02,0x3e,0x02,0x02,0x33,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x00,0x02,0x02,0x2a,0x48,0x6a,0x6e,0x4c,0x0e,0x6a,0x48,0x48,0x1f,0x00 -+// 19891 䶳 ; -+,0x00,0x04,0x0c,0x09,0x10,0x00,0x1f,0x14,0x17,0x00,0x0a,0x0a,0x0a,0x0a,0x01,0x00,0x00,0x00,0x18,0x08,0x82,0x00,0xa4,0xa4,0xa4,0x24,0xa4,0xa4,0xa4,0xc5,0x87,0x00 -+// 19892 䶴 ; -+,0x00,0x04,0x05,0x16,0x09,0x00,0x02,0x00,0x0a,0x0a,0x00,0x08,0x09,0x09,0x08,0x00,0x00,0x20,0x22,0x08,0x10,0x82,0x30,0x07,0x24,0x14,0x00,0x24,0x24,0x24,0x04,0x00 -+// 19893 䶵 ; -+,0x00,0x04,0x0c,0x09,0x10,0x00,0x37,0x30,0x35,0x00,0x29,0x29,0x29,0x29,0x21,0x00,0x00,0x00,0x0e,0x48,0xc8,0x49,0xe0,0x68,0x61,0x60,0x6a,0x60,0x00,0x90,0x03,0x00 -+// 19894 䶶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19895 䶷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19896 䶸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19897 䶹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19898 䶺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19899 䶻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19900 䶼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19901 䶽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19902 䶾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19903 䶿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19904 ䷀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19905 ䷁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19906 ䷂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19907 ䷃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19908 ䷄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19909 ䷅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19910 ䷆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19911 ䷇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19912 ䷈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19913 ䷉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19914 ䷊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19915 ䷋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19916 ䷌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19917 ䷍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19918 ䷎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19919 ䷏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19920 ䷐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19921 ䷑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19922 ䷒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19923 ䷓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19924 ䷔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19925 ䷕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19926 ䷖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19927 ䷗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19928 ䷘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19929 ䷙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19930 ䷚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19931 ䷛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19932 ䷜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19933 ䷝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19934 ䷞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19935 ䷟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19936 ䷠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19937 ䷡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19938 ䷢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19939 ䷣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19940 ䷤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19941 ䷥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19942 ䷦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19943 ䷧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19944 ䷨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19945 ䷩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19946 ䷪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19947 ䷫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19948 ䷬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19949 ䷭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19950 ䷮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19951 ䷯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19952 ䷰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19953 ䷱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19954 ䷲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19955 ䷳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19956 ䷴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19957 ䷵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19958 ䷶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19959 ䷷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19960 ䷸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19961 ䷹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19962 ䷺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19963 ䷻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19964 ䷼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19965 ䷽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19966 ䷾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19967 ䷿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19968 一 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19969 丁 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 19970 丂 ; -+,0x00,0x3f,0x01,0x01,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x08,0x08,0x90,0x60,0x00 -+// 19971 七 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x82,0x82,0x82,0x7c,0x00 -+// 19972 丄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x00,0x00 -+// 19973 丅 ; -+,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 19974 丆 ; -+,0x00,0x3f,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 19975 万 ; -+,0x00,0x3f,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xff,0x00,0x00,0x08,0xfc,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x70,0x20,0x00 -+// 19976 丈 ; -+,0x00,0x00,0x00,0x3f,0x00,0x08,0x04,0x04,0x02,0x01,0x00,0x01,0x02,0x0c,0x30,0x00,0x40,0x40,0x42,0xff,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x40,0x30,0x0f,0x02,0x00 -+// 19977 三 ; -+,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 19978 上 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0x80,0x80,0x82,0xff,0x00 -+// 19979 下 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x80,0x80,0x80,0xe0,0xb0,0x98,0x90,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 19980 丌 ; -+,0x00,0x3f,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 19981 不 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x02,0xff,0xc0,0x80,0x80,0x80,0xb0,0x98,0x8c,0x86,0x84,0x80,0x80,0x80,0x80,0x00 -+// 19982 与 ; -+,0x00,0x04,0x04,0x07,0x04,0x04,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x00,0x00,0xfe,0x02,0x02,0x12,0xfa,0x02,0x02,0x24,0x18,0x00 -+// 19983 丏 ; -+,0x00,0x3f,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x02,0x02,0x02,0x24,0x18,0x00 -+// 19984 丐 ; -+,0x00,0x3f,0x00,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x80,0x80,0xfe,0x80,0x80,0x82,0xff,0x02,0x02,0x02,0x02,0x24,0x18,0x00 -+// 19985 丑 ; -+,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x1f,0x02,0x02,0x02,0x02,0x02,0x3f,0x00,0x00,0x08,0xfc,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x0a,0xff,0x00,0x00 -+// 19986 丒 ; -+,0x00,0x1f,0x00,0x08,0x06,0x01,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x3f,0x00,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xc2,0x22,0x04,0x24,0x1c,0x08,0x00,0xff,0x00,0x00 -+// 19987 专 ; -+,0x00,0x00,0x1f,0x01,0x01,0x7f,0x02,0x04,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x80,0x80,0xfc,0x00,0x00,0xff,0x00,0x10,0xf8,0x10,0x20,0x40,0x80,0x40,0x20,0x00 -+// 19988 且 ; -+,0x00,0x07,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x3f,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0xff,0x00,0x00 -+// 19989 丕 ; -+,0x00,0x3f,0x00,0x00,0x00,0x01,0x03,0x06,0x0c,0x18,0x20,0x00,0x00,0x3f,0x00,0x00,0x00,0xff,0x40,0x40,0xc0,0xf0,0x58,0x4e,0x43,0x41,0x40,0x40,0x40,0xff,0x00,0x00 -+// 19990 世 ; -+,0x00,0x09,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0xf8,0x08,0x00,0x04,0xfe,0x00,0x00 -+// 19991 丗 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x88,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0xf8,0x08,0x00 -+// 19992 丘 ; -+,0x00,0x08,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x7f,0x00,0x00,0x00,0x78,0x80,0x00,0x00,0x00,0x04,0xfe,0x20,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 19993 丙 ; -+,0x00,0x3f,0x00,0x00,0x1f,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0xff,0x80,0x80,0xfe,0x82,0x82,0x82,0x42,0x22,0x1a,0x12,0x02,0x0a,0x04,0x00 -+// 19994 业 ; -+,0x02,0x02,0x02,0x02,0x22,0x12,0x12,0x0a,0x0e,0x0a,0x02,0x02,0x02,0x7f,0x00,0x00,0x20,0x20,0x20,0x22,0x23,0x26,0x24,0x28,0x28,0x30,0x20,0x20,0x22,0xff,0x00,0x00 -+// 19995 丛 ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0a,0x09,0x11,0x10,0x21,0x7f,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x30,0x48,0x4c,0x86,0x83,0x02,0xff,0x00,0x00 -+// 19996 东 ; -+,0x01,0x01,0x3f,0x02,0x04,0x04,0x08,0x0f,0x00,0x04,0x06,0x0c,0x08,0x11,0x00,0x00,0x00,0x00,0xfe,0x00,0x40,0x40,0x40,0xfc,0x40,0x50,0x48,0x44,0x46,0x42,0xc0,0x40 -+// 19997 丝 ; -+,0x00,0x04,0x06,0x0c,0x08,0x11,0x3f,0x12,0x04,0x08,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x10,0x18,0x10,0x34,0x26,0x7c,0x28,0x10,0x20,0x7e,0x00,0x00,0x02,0xff,0x00 -+// 19998 丞 ; -+,0x00,0x1f,0x00,0x01,0x00,0x3e,0x02,0x04,0x04,0x08,0x10,0x22,0x41,0x00,0x7f,0x00,0x00,0xfc,0x18,0x60,0x88,0x8c,0xb0,0xc0,0xa0,0x90,0x8c,0x87,0x80,0x82,0xff,0x00 -+// 19999 丟 ; -+,0x00,0x1f,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x01,0x02,0x04,0x0f,0x00,0x00,0x04,0xfe,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x80,0x20,0x10,0xf8,0x8c,0x04,0x00 -+// 20000 丠 ; -+,0x00,0x02,0x02,0x02,0x3e,0x02,0x02,0x02,0x0e,0x3a,0x12,0x02,0x00,0x3f,0x00,0x00,0x00,0x20,0x20,0x24,0x2e,0x38,0x20,0x20,0x22,0x22,0x23,0x1e,0x00,0xff,0x00,0x00 -+// 20001 両 ; -+,0x00,0x7f,0x00,0x00,0x3f,0x20,0x24,0x24,0x24,0x24,0x27,0x24,0x20,0x20,0x20,0x00,0x00,0xff,0x80,0x80,0xfe,0x82,0x92,0x92,0x92,0x92,0xf2,0x12,0x02,0x0a,0x04,0x00 -+// 20002 丢 ; -+,0x00,0x01,0x1e,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x01,0x03,0x04,0x0f,0x04,0x00,0x08,0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0x90,0x08,0x04,0xfe,0x04,0x00 -+// 20003 丣 ; -+,0x00,0x7f,0x01,0x01,0x1f,0x11,0x11,0x11,0x11,0x1f,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0xff,0x20,0x20,0x3e,0x22,0x22,0x22,0x22,0x3e,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20004 两 ; -+,0x00,0x7f,0x02,0x02,0x3f,0x22,0x22,0x23,0x24,0x24,0x28,0x30,0x21,0x20,0x20,0x00,0x02,0xff,0x20,0x22,0xff,0x22,0x22,0x22,0xb2,0x4a,0x4a,0x82,0x02,0x0a,0x04,0x00 -+// 20005 严 ; -+,0x00,0x3f,0x11,0x09,0x05,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x02,0xff,0x24,0x24,0x28,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20006 並 ; -+,0x00,0x08,0x06,0x02,0x3f,0x02,0x02,0x22,0x12,0x0a,0x0e,0x0a,0x02,0x02,0x7f,0x00,0x10,0x18,0x10,0x20,0xfe,0x20,0x20,0x24,0x26,0x2c,0x28,0x30,0x20,0x20,0xff,0x00 -+// 20007 丧 ; -+,0x00,0x00,0x3f,0x00,0x0c,0x06,0x04,0x3f,0x08,0x08,0x08,0x08,0x08,0x09,0x0e,0x08,0x80,0x80,0xfe,0x80,0x90,0x98,0xa0,0xff,0x80,0x88,0x5c,0x60,0x30,0x1c,0x08,0x00 -+// 20008 丨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 20009 丩 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x0e,0x04,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0xa0,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20010 个 ; -+,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x40,0x20,0x10,0x8c,0x87,0x82,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 20011 丫 ; -+,0x00,0x04,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x20,0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 20012 丬 ; -+,0x00,0x00,0x04,0x03,0x01,0x01,0x00,0x00,0x01,0x03,0x0e,0x04,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0xa0,0x20,0x20,0x60,0xa0,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20013 中 ; -+,0x00,0x00,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x84,0xfe,0x84,0x84,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x80,0x80,0x80 -+// 20014 丮 ; -+,0x00,0x3f,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x7f,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0xf8,0x08,0x08,0x08,0xe8,0x08,0x08,0x48,0xe8,0x08,0x05,0x05,0x03,0x01,0x00 -+// 20015 丯 ; -+,0x00,0x00,0x00,0x00,0x03,0x1c,0x00,0x01,0x1e,0x00,0x01,0x0e,0x30,0x00,0x00,0x00,0x80,0x80,0x86,0xb8,0xc0,0x86,0xb8,0xc0,0x83,0x9c,0xe0,0x80,0x80,0x80,0x80,0x00 -+// 20016 丰 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x84,0xfe,0x80,0x88,0xfc,0x80,0x80,0x82,0xff,0x80,0x80,0x80,0x80,0x80 -+// 20017 丱 ; -+,0x01,0x01,0x01,0x11,0x11,0x11,0x13,0x15,0x19,0x11,0x02,0x02,0x04,0x18,0x60,0x00,0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20018 串 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x80,0x80,0xf8,0x88,0x88,0xf8,0x80,0xfc,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x80 -+// 20019 丳 ; -+,0x02,0x02,0x1f,0x12,0x1f,0x12,0x02,0x3f,0x22,0x3f,0x22,0x02,0x04,0x08,0x30,0x00,0x20,0x20,0xfc,0x24,0xfc,0x24,0x20,0xfe,0x22,0xfe,0x22,0x20,0x20,0x20,0x20,0x00 -+// 20020 临 ; -+,0x00,0x04,0x04,0x24,0x25,0x25,0x26,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x04,0x00,0x80,0xc0,0x80,0xff,0x10,0x08,0x08,0x82,0xff,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 20021 丵 ; -+,0x02,0x12,0x0a,0x0a,0x7f,0x04,0x02,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x24,0x28,0xff,0x10,0x20,0xfc,0x80,0x80,0xfe,0x80,0x80,0x80,0x80,0x80 -+// 20022 丶 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x60,0x30,0x20,0x00,0x00,0x00,0x00,0x00 -+// 20023 丷 ; -+,0x00,0x00,0x00,0x08,0x04,0x02,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x08,0x18,0x10,0xa0,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20024 丸 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x05,0x03,0x01,0x02,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x10,0x10,0x90,0x92,0x12,0x13,0x0e,0x00 -+// 20025 丹 ; -+,0x00,0x07,0x04,0x05,0x04,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0xf8,0x08,0x08,0xc8,0x68,0x48,0xff,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00 -+// 20026 为 ; -+,0x00,0x08,0x06,0x02,0x3f,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x40,0x40,0x40,0x42,0xff,0x82,0x82,0xc2,0xa2,0x12,0x12,0x02,0x22,0x14,0x08,0x00 -+// 20027 主 ; -+,0x01,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0xc0,0x80,0x04,0xfe,0x80,0x80,0x84,0xfe,0x80,0x80,0x80,0x82,0xff,0x00,0x00 -+// 20028 丼 ; -+,0x04,0x04,0x04,0x3f,0x04,0x05,0x04,0x04,0x04,0x7f,0x04,0x08,0x08,0x10,0x60,0x00,0x08,0x08,0x08,0xff,0x08,0x08,0xc8,0x48,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x00 -+// 20029 丽 ; -+,0x00,0x7f,0x00,0x00,0x3f,0x21,0x21,0x31,0x29,0x2d,0x29,0x21,0x21,0x27,0x22,0x00,0x00,0xff,0x00,0x00,0x7e,0x42,0x62,0x52,0x5a,0x52,0x42,0x42,0x42,0x5e,0x44,0x00 -+// 20030 举 ; -+,0x12,0x09,0x04,0x04,0x7f,0x02,0x04,0x08,0x17,0x20,0x40,0x1f,0x00,0x00,0x00,0x00,0x08,0x0c,0x88,0x90,0xff,0x20,0x90,0x88,0xf4,0x83,0x80,0xfc,0x80,0x80,0x80,0x80 -+// 20031 丿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x0c,0x30,0x00,0x40,0x60,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20032 乀 ; -+,0x00,0x00,0x00,0x08,0x18,0x28,0x44,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x0f,0x02,0x00,0x00 -+// 20033 乁 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xf0,0x20,0x20,0x20,0x20,0x20,0x20,0x10,0x10,0x08,0x08,0x04,0x07,0x02,0x00 -+// 20034 乂 ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x03,0x0c,0x70,0x00,0x00,0x08,0x0c,0x08,0x08,0x10,0x10,0x10,0x20,0xe0,0x40,0xa0,0x18,0x0f,0x02,0x00 -+// 20035 乃 ; -+,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x60,0x00,0x08,0xfc,0x08,0x08,0x10,0x12,0x3f,0x02,0x02,0x02,0x02,0x02,0x22,0x14,0x08,0x00 -+// 20036 乄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x43,0x4c,0x30,0x00,0x04,0x06,0x04,0x04,0x04,0x88,0x68,0x38,0x1c,0x36,0x62,0xc0,0x00,0x00,0x00,0x00 -+// 20037 久 ; -+,0x01,0x01,0x02,0x03,0x04,0x04,0x08,0x10,0x20,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0x20,0xf0,0x20,0x20,0x40,0x60,0xa0,0x90,0x10,0x08,0x0c,0x07,0x02,0x00 -+// 20038 乆 ; -+,0x02,0x03,0x02,0x02,0x04,0x08,0x1f,0x08,0x00,0x00,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x10,0x18,0x10,0x20,0x20,0xe0,0x40,0x60,0xa0,0x90,0x18,0x0c,0x07,0x02,0x00 -+// 20039 乇 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x03,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xfc,0x80,0x80,0x80,0x8e,0xf0,0x80,0x80,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 20040 么 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x01,0x02,0x04,0x0f,0x00,0x00,0x80,0xc0,0x80,0x80,0x20,0x30,0x20,0x40,0x40,0x80,0x08,0x04,0x3e,0xe3,0x02,0x00 -+// 20041 义 ; -+,0x00,0x02,0x11,0x10,0x08,0x08,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x10,0x18,0x90,0x90,0x20,0x20,0x40,0x40,0x80,0x40,0x20,0x18,0x07,0x02,0x00 -+// 20042 乊 ; -+,0x00,0x00,0x00,0x00,0x03,0x3c,0x00,0x08,0x06,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x3e,0xc0,0x04,0x06,0x0c,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00 -+// 20043 之 ; -+,0x01,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x14,0x73,0x20,0x00,0x00,0x80,0x44,0xfe,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x80,0x7f,0x00 -+// 20044 乌 ; -+,0x00,0x09,0x0f,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x80,0x10,0xf8,0x10,0x10,0x10,0x50,0x20,0xfe,0x02,0x02,0xfa,0x02,0x12,0x0a,0x04 -+// 20045 乍 ; -+,0x04,0x04,0x07,0x08,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x80,0x80,0x84,0xfe,0x80,0x80,0x84,0xfe,0x80,0x80,0x80,0x80,0x00 -+// 20046 乎 ; -+,0x00,0x00,0x3f,0x08,0x04,0x06,0x02,0x7f,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x04,0xfe,0x80,0x88,0x8c,0x88,0x92,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 20047 乏 ; -+,0x00,0x00,0x3f,0x02,0x01,0x01,0x3f,0x00,0x00,0x00,0x03,0x04,0x18,0x2c,0x43,0x00,0x18,0xfc,0x00,0x00,0x80,0x08,0xfc,0x10,0x20,0xc0,0x00,0x00,0x00,0x00,0xff,0x00 -+// 20048 乐 ; -+,0x00,0x00,0x0f,0x08,0x08,0x08,0x1f,0x08,0x04,0x06,0x0c,0x18,0x12,0x21,0x00,0x00,0x18,0xfc,0x80,0x40,0x40,0x40,0xfe,0x40,0x40,0x48,0x44,0x46,0x43,0x42,0x80,0x00 -+// 20049 乑 ; -+,0x00,0x00,0x3f,0x00,0x04,0x06,0x0c,0x10,0x24,0x46,0x0c,0x18,0x20,0x40,0x00,0x00,0x08,0xfc,0x80,0x84,0x8e,0x98,0xe0,0xa0,0x90,0x90,0x88,0x8c,0x87,0x82,0x80,0x00 -+// 20050 乒 ; -+,0x00,0x07,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x7f,0x02,0x03,0x06,0x0c,0x18,0x20,0x3c,0xe0,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20051 乓 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xfc,0x80,0x00,0x00,0xfe,0x20,0x20,0x20,0xff,0x00,0x20,0x18,0x0c,0x06,0x04 -+// 20052 乔 ; -+,0x00,0x1f,0x00,0x00,0x3f,0x01,0x03,0x04,0x1a,0x62,0x02,0x04,0x04,0x08,0x30,0x00,0x7c,0xc0,0x80,0x82,0xff,0xa0,0x10,0x0c,0x17,0x12,0x10,0x10,0x10,0x10,0x10,0x00 -+// 20053 乕 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x1f,0x10,0x14,0x17,0x14,0x14,0x24,0x24,0x40,0x00,0x1c,0xe0,0x40,0x44,0xfe,0x40,0xff,0x40,0x44,0xfe,0x44,0x44,0x54,0x48,0x40,0x00 -+// 20054 乖 ; -+,0x00,0x1f,0x00,0x7f,0x00,0x04,0x3c,0x04,0x04,0x04,0x1c,0x64,0x00,0x00,0x00,0x00,0x3c,0xc0,0x80,0xff,0x80,0x90,0x94,0x9e,0x90,0x92,0x93,0x9e,0x80,0x80,0x80,0x00 -+// 20055 乗 ; -+,0x00,0x1f,0x00,0x1f,0x04,0x04,0x3f,0x04,0x04,0x1f,0x01,0x03,0x06,0x18,0x60,0x00,0x1c,0xe0,0x80,0xfe,0x88,0x88,0xff,0x88,0x88,0xfe,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 20056 乘 ; -+,0x00,0x1f,0x00,0x7f,0x04,0x3c,0x04,0x04,0x1c,0x65,0x03,0x06,0x18,0x60,0x00,0x00,0x3c,0xc0,0x82,0xff,0x90,0x96,0x98,0x91,0x9f,0xc0,0xb0,0x98,0x8e,0x84,0x80,0x00 -+// 20057 乙 ; -+,0x00,0x7f,0x00,0x00,0x00,0x01,0x03,0x06,0x0c,0x18,0x10,0x30,0x20,0x30,0x1f,0x00,0x00,0xf8,0x30,0x60,0xc0,0x80,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 20058 乚 ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0xfe,0x00 -+// 20059 乛 ; -+,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x06,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20060 乜 ; -+,0x04,0x06,0x04,0x04,0x04,0x0f,0x74,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x1c,0xe4,0x04,0x04,0x04,0x04,0x3c,0x08,0x02,0x02,0x03,0xfe,0x00 -+// 20061 九 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x12,0x13,0x1e,0x00 -+// 20062 乞 ; -+,0x08,0x0c,0x0f,0x08,0x10,0x10,0x2f,0x40,0x00,0x01,0x03,0x06,0x0c,0x08,0x07,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0xf0,0x60,0xc0,0x80,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 20063 也 ; -+,0x00,0x00,0x08,0x0c,0x08,0x0b,0x7c,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x80,0xc0,0x80,0x84,0xbe,0xc4,0x84,0x84,0x84,0xa4,0x94,0x0a,0x02,0x03,0xfe,0x00 -+// 20064 习 ; -+,0x00,0x1f,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x03,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x82,0x8a,0x32,0xc2,0x02,0x02,0x02,0x02,0x12,0x0a,0x04 -+// 20065 乡 ; -+,0x00,0x00,0x01,0x03,0x04,0x0f,0x00,0x01,0x06,0x0f,0x04,0x00,0x00,0x03,0x3c,0x00,0x80,0xc0,0x88,0x0c,0x18,0xf0,0x44,0x86,0x3c,0xc8,0x08,0x10,0x60,0x80,0x00,0x00 -+// 20066 乢 ; -+,0x04,0x06,0x04,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x27,0x78,0x20,0x00,0x10,0x18,0x10,0x10,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x91,0x91,0x91,0x0f,0x00 -+// 20067 乣 ; -+,0x02,0x03,0x02,0x04,0x04,0x08,0x11,0x3f,0x12,0x04,0x09,0x10,0x3f,0x00,0x00,0x00,0x10,0x18,0x10,0x10,0x90,0xd0,0x90,0x10,0x10,0x10,0x10,0x91,0xd1,0x91,0x0f,0x00 -+// 20068 乤 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x03,0x0c,0x18,0x1f,0x00,0x00,0xff,0x80,0xe0,0x98,0x88,0x80,0xfc,0x18,0x30,0xc0,0x02,0x02,0x03,0xfe,0x00 -+// 20069 乥 ; -+,0x00,0x3f,0x00,0x08,0x04,0x06,0x04,0x3f,0x00,0x00,0x01,0x06,0x0c,0x18,0x1f,0x00,0x3c,0xe0,0x10,0x18,0x30,0x20,0x48,0xfc,0x18,0x60,0x80,0x02,0x02,0x03,0xfe,0x00 -+// 20070 书 ; -+,0x01,0x01,0x01,0x1f,0x01,0x01,0x01,0x7f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x06,0xfb,0x0a,0x08,0x08,0xfe,0x02,0x02,0x02,0x02,0x24,0x14,0x08,0x00 -+// 20071 乧 ; -+,0x04,0x03,0x09,0x06,0x04,0x3f,0x00,0x00,0x3f,0x00,0x00,0x01,0x06,0x08,0x0f,0x00,0x20,0x20,0x20,0x22,0x7f,0xa0,0x20,0x28,0xfc,0x18,0x60,0x82,0x02,0x03,0xfe,0x00 -+// 20072 乨 ; -+,0x04,0x06,0x0c,0x09,0x10,0x27,0x3c,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x10,0x10,0x10,0x10,0x90,0xd0,0x50,0x10,0x90,0x90,0x90,0x90,0x91,0x91,0x8f,0x00 -+// 20073 乩 ; -+,0x04,0x04,0x04,0x05,0x07,0x04,0x04,0x24,0x3f,0x20,0x20,0x20,0x20,0x3f,0x20,0x00,0x20,0x20,0x20,0x20,0xa0,0x20,0x20,0xa0,0xa0,0xa0,0xa0,0xa2,0xa2,0xa3,0x9e,0x00 -+// 20074 乪 ; -+,0x00,0x00,0x7e,0x03,0x05,0x05,0x09,0x09,0x11,0x11,0x11,0x21,0x21,0x20,0x1f,0x00,0x00,0x00,0x00,0xfc,0x24,0x24,0x24,0xfc,0x24,0x24,0x24,0xfc,0x05,0x01,0xff,0x00 -+// 20075 乫 ; -+,0x04,0x04,0x3f,0x04,0x04,0x08,0x13,0x20,0x1f,0x00,0x00,0x01,0x06,0x0c,0x0f,0x00,0x00,0x00,0xbe,0xa2,0xa2,0xbe,0x22,0x00,0xf8,0x30,0xc0,0x82,0x02,0x03,0xfe,0x00 -+// 20076 乬 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x1f,0x00,0x00,0x03,0x06,0x0c,0x07,0x00,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xfe,0x00,0xf8,0x30,0xc0,0x02,0x02,0x03,0xfe,0x00 -+// 20077 乭 ; -+,0x00,0x3f,0x02,0x07,0x0c,0x14,0x27,0x00,0x3f,0x00,0x00,0x03,0x0c,0x10,0x1f,0x00,0x04,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x00,0xf8,0x30,0xc0,0x02,0x02,0x03,0xfe,0x00 -+// 20078 乮 ; -+,0x03,0x1c,0x12,0x13,0x3e,0x12,0x04,0x18,0x00,0x3f,0x00,0x00,0x03,0x0c,0x0f,0x00,0x00,0x3c,0x24,0x24,0x24,0x34,0x28,0x20,0x00,0xf8,0x30,0xc2,0x02,0x03,0xfe,0x00 -+// 20079 乯 ; -+,0x01,0x3e,0x08,0x04,0x7f,0x00,0x00,0x02,0x01,0x3f,0x00,0x01,0x06,0x08,0x1f,0x00,0xf8,0x90,0x98,0xa0,0xfe,0x80,0x80,0x80,0x10,0xf8,0x60,0x82,0x02,0x03,0xfe,0x00 -+// 20080 买 ; -+,0x00,0x1f,0x00,0x02,0x01,0x09,0x04,0x04,0x00,0x1f,0x00,0x01,0x03,0x0c,0x30,0x00,0x00,0xff,0x02,0x44,0x60,0x40,0x40,0x40,0x42,0xff,0xa0,0x98,0x0c,0x06,0x02,0x00 -+// 20081 乱 ; -+,0x03,0x3c,0x04,0x04,0x05,0x7f,0x04,0x04,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x00,0x20,0x20,0x20,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 20082 乲 ; -+,0x00,0x20,0x11,0x02,0x08,0x18,0x31,0x12,0x3f,0x00,0x01,0x06,0x08,0x10,0x1f,0x00,0x80,0x80,0xfe,0x44,0x48,0xa0,0x18,0x06,0xf0,0x60,0x80,0x04,0x04,0x06,0xfc,0x00 -+// 20083 乳 ; -+,0x03,0x3e,0x00,0x24,0x15,0x00,0x3f,0x01,0x02,0x03,0x3e,0x02,0x02,0x0a,0x04,0x00,0x90,0x10,0x90,0xd0,0x10,0x10,0xd0,0x10,0x10,0xd0,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 20084 乴 ; -+,0x04,0x04,0x3f,0x04,0x0e,0x34,0x04,0x3c,0x09,0x3f,0x00,0x00,0x03,0x0c,0x1f,0x00,0x06,0x78,0x42,0x7f,0x48,0x48,0x88,0x88,0x00,0xf8,0x30,0xc2,0x02,0x03,0xfe,0x00 -+// 20085 乵 ; -+,0x08,0x04,0x3f,0x01,0x21,0x19,0x12,0x7f,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x04,0x00,0x10,0xd0,0x10,0x90,0x10,0x10,0xd0,0x10,0x10,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 20086 乶 ; -+,0x00,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x00,0x3f,0x00,0x00,0x03,0x0c,0x1f,0x88,0xfe,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xfc,0x18,0xe2,0x02,0x03,0xfe -+// 20087 乷 ; -+,0x10,0x08,0x48,0x20,0x25,0x08,0x30,0x13,0x00,0x3f,0x00,0x00,0x03,0x0c,0x0f,0x00,0x20,0x20,0xac,0xa6,0x23,0x22,0x1c,0xe0,0x00,0xf8,0x30,0xc2,0x02,0x03,0xfe,0x00 -+// 20088 乸 ; -+,0x04,0x04,0x04,0x17,0x1d,0x75,0x15,0x15,0x15,0x15,0x13,0x10,0x10,0x10,0x0f,0x00,0x00,0x7c,0x64,0x54,0x44,0xff,0x64,0x54,0x44,0x7f,0x04,0x14,0x09,0x01,0xff,0x00 -+// 20089 乹 ; -+,0x04,0x04,0x7f,0x08,0x3f,0x20,0x3f,0x20,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x10,0x10,0xd0,0x10,0x90,0x90,0x90,0x90,0x90,0x10,0x90,0xd1,0x11,0x11,0x0f,0x00 -+// 20090 乺 ; -+,0x03,0x1c,0x10,0x1f,0x11,0x1f,0x10,0x20,0x40,0x3f,0x00,0x01,0x06,0x08,0x1f,0x00,0x06,0x78,0x40,0x7f,0x44,0x44,0x44,0x84,0x00,0xf0,0x60,0x80,0x02,0x02,0xfe,0x00 -+// 20091 乻 ; -+,0x08,0x04,0x3f,0x08,0x0f,0x11,0x11,0x25,0x42,0x3f,0x00,0x01,0x06,0x18,0x1f,0x00,0x10,0x10,0xa8,0x44,0x93,0x24,0x08,0x30,0x00,0xf0,0x60,0x80,0x02,0x02,0xff,0x00 -+// 20092 乼 ; -+,0x20,0x12,0x25,0x14,0x09,0x38,0x13,0x10,0x1f,0x00,0x00,0x01,0x06,0x08,0x1f,0x00,0x40,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x18,0x60,0x80,0x02,0x02,0xfe,0x00 -+// 20093 乽 ; -+,0x00,0x0f,0x00,0x7f,0x03,0x1c,0x64,0x07,0x00,0x3f,0x00,0x01,0x06,0x08,0x0f,0x00,0x80,0xe8,0x90,0xff,0xf8,0x88,0x48,0xf8,0x00,0xf8,0x30,0xc2,0x02,0x03,0xfe,0x00 -+// 20094 乾 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x25,0x04,0x7f,0x04,0x04,0x04,0x04,0x20,0x30,0xa0,0x3f,0x40,0x40,0xbe,0x04,0x08,0x10,0x20,0xa2,0x42,0x43,0x3e,0x00 -+// 20095 乿 ; -+,0x01,0x3e,0x24,0x14,0x13,0x0c,0x11,0x3f,0x0c,0x3f,0x24,0x15,0x24,0x44,0x14,0x08,0xc0,0x90,0xd0,0x90,0x10,0x10,0x90,0x10,0x10,0xd0,0x10,0x11,0x91,0xd1,0x0f,0x00 -+// 20096 亀 ; -+,0x02,0x07,0x08,0x1f,0x28,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x00,0x00,0xf0,0x60,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x82,0xfe,0x82,0xfe,0x81,0xff -+// 20097 亁 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x29,0x25,0x3f,0x00,0x3f,0x08,0x7f,0x08,0x08,0x08,0x00,0x20,0x30,0x20,0x7f,0x40,0x80,0x7e,0x04,0x08,0x10,0x20,0xc0,0x41,0x41,0x3f,0x00 -+// 20098 亂 ; -+,0x03,0x3e,0x14,0x0a,0x3f,0x03,0x3f,0x24,0x2a,0x3f,0x20,0x2f,0x26,0x3b,0x20,0x00,0xc8,0x88,0xc8,0x88,0xc8,0x08,0xc8,0x48,0x48,0x48,0x48,0x48,0x49,0x49,0x8f,0x00 -+// 20099 亃 ; -+,0x02,0x12,0x0a,0x3f,0x07,0x0a,0x12,0x72,0x1c,0x17,0x26,0x5b,0x08,0x10,0x60,0x00,0x88,0xc8,0x88,0xe8,0x08,0x88,0x48,0x88,0x88,0xe8,0x88,0xe9,0x89,0x89,0x8f,0x00 -+// 20100 亄 ; -+,0x02,0x3f,0x02,0x1f,0x00,0x3f,0x20,0x5f,0x00,0x1f,0x10,0x1f,0x10,0x09,0x07,0x3c,0x10,0xd0,0x10,0xd0,0x10,0xf0,0x50,0x90,0x10,0x90,0x90,0x91,0x91,0x11,0xcf,0x00 -+// 20101 亅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 20102 了 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0xfe,0x0c,0x30,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 20103 亇 ; -+,0x02,0x02,0x04,0x07,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xff,0x42,0x44,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x00 -+// 20104 予 ; -+,0x0f,0x00,0x02,0x01,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0xfc,0x18,0x30,0x40,0x82,0xff,0x86,0x84,0x88,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 20105 争 ; -+,0x02,0x02,0x07,0x08,0x1f,0x20,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x04,0x02,0x01,0x00,0x20,0xf0,0x20,0xfc,0x84,0x84,0xff,0x84,0x84,0xfc,0x84,0x80,0x80,0x80,0x00 -+// 20106 亊 ; -+,0x00,0x00,0x7f,0x08,0x04,0x04,0x3f,0x00,0x7f,0x00,0x3f,0x00,0x00,0x04,0x02,0x01,0x80,0x80,0xff,0x90,0x98,0xa0,0xfc,0x84,0xff,0x84,0xfc,0x80,0x80,0x80,0x80,0x00 -+// 20107 事 ; -+,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x04,0x02,0x01,0x80,0xff,0x80,0xfc,0x84,0xfc,0x80,0xfc,0x84,0xff,0x84,0xfc,0x84,0x80,0x80,0x00 -+// 20108 二 ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x00,0x00,0x00 -+// 20109 亍 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0xfc,0x00,0x00,0x00,0x00,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 20110 于 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0xfe,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 20111 亏 ; -+,0x00,0x1f,0x00,0x00,0x7f,0x02,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x00,0x02,0xff,0x00,0x00,0x04,0xfe,0x04,0x04,0x08,0x88,0x50,0x20,0x00 -+// 20112 亐 ; -+,0x00,0x1f,0x01,0x01,0x3f,0x02,0x02,0x04,0x0f,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x00,0x06,0xff,0x00,0x00,0x08,0xfc,0x08,0x08,0x08,0x08,0x90,0x50,0x20 -+// 20113 云 ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x01,0x03,0x03,0x06,0x0c,0x18,0x3f,0x10,0x00,0x00,0x18,0xfc,0x00,0x00,0x06,0xff,0x80,0x80,0x20,0x10,0x08,0xfc,0x86,0x04,0x00 -+// 20114 互 ; -+,0x00,0x3f,0x02,0x02,0x02,0x03,0x04,0x04,0x04,0x04,0x0f,0x04,0x00,0x3f,0x00,0x00,0x00,0xfe,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0xff,0x00,0x00 -+// 20115 亓 ; -+,0x00,0x1f,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x08,0xfc,0x00,0x00,0x06,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 20116 五 ; -+,0x00,0x3f,0x01,0x01,0x01,0x01,0x01,0x1f,0x02,0x02,0x02,0x02,0x02,0x7f,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x10,0x10,0x12,0xff,0x00,0x00 -+// 20117 井 ; -+,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x7f,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x10,0x10,0x10,0x12,0xff,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 20118 亖 ; -+,0x00,0x0f,0x00,0x00,0x00,0x7f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x08,0xfc,0x00,0x00,0x02,0xff,0x00,0x08,0xfc,0x00,0x00,0x00,0x02,0xff,0x00,0x00 -+// 20119 亗 ; -+,0x00,0x00,0x10,0x10,0x10,0x1f,0x10,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x80,0x80,0x84,0x84,0x84,0xfc,0x04,0x08,0xfc,0x00,0x00,0x00,0x02,0xff,0x00,0x00 -+// 20120 亘 ; -+,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x7f,0x00,0x00,0x04,0xfe,0x00,0x08,0xfc,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x02,0xff,0x00,0x00 -+// 20121 亙 ; -+,0x00,0x3f,0x02,0x02,0x03,0x02,0x05,0x04,0x04,0x04,0x09,0x08,0x08,0x00,0x7f,0x00,0x00,0xff,0x00,0x08,0xfc,0x08,0x08,0xc8,0x48,0x08,0x08,0xd0,0x90,0x10,0xff,0x00 -+// 20122 亚 ; -+,0x00,0x3f,0x01,0x01,0x01,0x11,0x09,0x09,0x05,0x05,0x05,0x01,0x01,0x7f,0x00,0x00,0x00,0xff,0x20,0x20,0x24,0x26,0x24,0x24,0x28,0x28,0x30,0x20,0x22,0xff,0x00,0x00 -+// 20123 些 ; -+,0x04,0x04,0x24,0x37,0x24,0x24,0x25,0x2e,0x70,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x20,0x20,0x24,0xae,0x30,0x20,0xa2,0x22,0x3e,0x00,0xfc,0x00,0x00,0x00,0xff,0x00 -+// 20124 亜 ; -+,0x00,0x3f,0x01,0x01,0x11,0x1f,0x11,0x11,0x11,0x1f,0x11,0x01,0x01,0x01,0x7f,0x00,0x00,0xff,0x20,0x20,0x24,0xfe,0x24,0x24,0x24,0xfc,0x24,0x20,0x20,0x20,0xff,0x00 -+// 20125 亝 ; -+,0x01,0x01,0x02,0x07,0x00,0x08,0x0a,0x11,0x3f,0x01,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0x20,0x10,0xf8,0x10,0x00,0x14,0x22,0xbf,0x22,0xfc,0x00,0x00,0xff,0x00,0x00 -+// 20126 亞 ; -+,0x00,0x3f,0x02,0x02,0x1e,0x12,0x10,0x10,0x12,0x1f,0x02,0x02,0x02,0x7f,0x00,0x00,0x04,0xfe,0x20,0x24,0x7e,0x24,0x04,0x04,0x24,0x3c,0x20,0x20,0x22,0xff,0x00,0x00 -+// 20127 亟 ; -+,0x00,0x1f,0x00,0x00,0x00,0x1e,0x12,0x12,0x12,0x1e,0x00,0x00,0x02,0x01,0x3f,0x00,0x00,0xfe,0x0c,0x30,0x40,0xbe,0xa2,0x94,0x88,0x8c,0x96,0xa2,0x80,0x00,0xff,0x00 -+// 20128 亠 ; -+,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20129 亡 ; -+,0x01,0x00,0x00,0x00,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x1f,0x08,0x00,0x00,0x80,0x40,0x02,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00 -+// 20130 亢 ; -+,0x01,0x00,0x00,0x7f,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x30,0x00,0x00,0x80,0x82,0xff,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x1f,0x00 -+// 20131 亣 ; -+,0x01,0x00,0x00,0x00,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0x80,0xc0,0x80,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 20132 交 ; -+,0x01,0x00,0x00,0x3f,0x04,0x06,0x08,0x10,0x04,0x02,0x01,0x00,0x01,0x02,0x0c,0x30,0x00,0x80,0xc0,0xff,0x10,0x0c,0x06,0x10,0x18,0x30,0x60,0xc0,0xa0,0x18,0x0e,0x04 -+// 20133 亥 ; -+,0x01,0x00,0x7f,0x00,0x01,0x02,0x04,0x0f,0x04,0x01,0x06,0x38,0x01,0x06,0x38,0x00,0x00,0xc0,0xff,0x80,0x10,0x18,0x30,0xe4,0x8e,0x18,0x30,0x70,0x8c,0x06,0x02,0x00 -+// 20134 亦 ; -+,0x01,0x00,0x00,0x3f,0x01,0x01,0x09,0x0d,0x09,0x12,0x22,0x04,0x04,0x08,0x10,0x00,0x00,0xc0,0x40,0xff,0x20,0x20,0x28,0x24,0x22,0x23,0x22,0x20,0x20,0xa0,0x40,0x00 -+// 20135 产 ; -+,0x00,0x00,0x3f,0x04,0x03,0x12,0x1f,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x80,0x40,0xff,0x08,0x10,0x22,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20136 亨 ; -+,0x01,0x00,0x3f,0x00,0x07,0x04,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x82,0xff,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x18,0x20,0x40,0x40,0x40,0x40,0x80 -+// 20137 亩 ; -+,0x01,0x00,0x7f,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x80,0xff,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 20138 亪 ; -+,0x00,0x00,0x3f,0x09,0x0d,0x09,0x12,0x24,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x42,0xff,0x20,0x28,0x26,0x24,0x20,0xf8,0x08,0x08,0x08,0x04,0x04,0x03,0x00 -+// 20139 享 ; -+,0x01,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x00,0x7f,0x00,0x02,0x01,0x00,0x00,0x80,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xf8,0x30,0x40,0xff,0x40,0x40,0x40,0x80 -+// 20140 京 ; -+,0x01,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x04,0x0c,0x18,0x20,0x02,0x01,0x00,0x84,0xfe,0x00,0x00,0xf8,0x08,0x08,0xf8,0x80,0x98,0x8c,0x86,0x84,0x80,0x00 -+// 20141 亭 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x3f,0x20,0x4f,0x00,0x00,0x00,0x02,0x01,0x00,0x80,0xfe,0x00,0xf8,0x08,0xf8,0x02,0xff,0x02,0xfc,0x40,0x40,0x40,0x40,0x40,0x80 -+// 20142 亮 ; -+,0x00,0x3f,0x00,0x07,0x04,0x07,0x00,0x3f,0x20,0x43,0x02,0x02,0x04,0x08,0x30,0x00,0x80,0xfe,0x00,0xf0,0x10,0xf0,0x02,0xff,0x02,0xe4,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20143 亯 ; -+,0x01,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x00,0x82,0xff,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 20144 亰 ; -+,0x00,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x04,0x0e,0x18,0x62,0x01,0x00,0x80,0x40,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x44,0x50,0x48,0x46,0x42,0x40,0x80 -+// 20145 亱 ; -+,0x01,0x00,0x7f,0x04,0x04,0x09,0x09,0x19,0x19,0x29,0x49,0x09,0x08,0x0b,0x08,0x00,0x00,0x80,0xff,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00,0xfe,0x00,0x00 -+// 20146 亲 ; -+,0x01,0x00,0x1f,0x04,0x02,0x02,0x3f,0x00,0x00,0x1f,0x00,0x08,0x0c,0x10,0x22,0x01,0x00,0x80,0xfe,0x10,0x18,0x20,0xff,0x80,0x80,0xfe,0x80,0x90,0x8c,0x86,0x84,0x00 -+// 20147 亳 ; -+,0x01,0x00,0x3f,0x04,0x07,0x00,0x3f,0x20,0x40,0x0f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x84,0xfe,0x10,0xf0,0x02,0xff,0x02,0x78,0x80,0x80,0xfc,0x80,0x82,0x82,0x7e -+// 20148 亴 ; -+,0x00,0x3f,0x04,0x07,0x00,0x3f,0x20,0x4f,0x00,0x1f,0x01,0x1f,0x01,0x02,0x04,0x18,0x80,0xff,0x08,0xf8,0x00,0xff,0x82,0xf4,0x80,0xf8,0x00,0xf0,0x10,0x11,0x11,0x0f -+// 20149 亵 ; -+,0x00,0x00,0x7f,0x04,0x3e,0x04,0x0e,0x34,0x15,0x08,0x03,0x06,0x1a,0x62,0x07,0x02,0x80,0x42,0xff,0x20,0xf8,0xa8,0x49,0xa5,0x03,0x90,0xb8,0x60,0x18,0xcf,0x02,0x00 -+// 20150 亶 ; -+,0x00,0x3f,0x00,0x1f,0x12,0x13,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x80,0xff,0x00,0xfe,0x12,0xf2,0x02,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff -+// 20151 亷 ; -+,0x00,0x3f,0x04,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x13,0x25,0x29,0x51,0x01,0x80,0xfe,0x08,0x10,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x30,0x28,0x27,0x22,0x20 -+// 20152 亸 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7e,0x04,0x09,0x1e,0x68,0x08,0x28,0x10,0x84,0x46,0x28,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 20153 亹 ; -+,0x00,0x7f,0x08,0x37,0x24,0x35,0x24,0x35,0x25,0x7f,0x44,0x07,0x04,0x07,0x04,0x7f,0x80,0xff,0x00,0xf6,0x12,0xd6,0x12,0xd6,0x52,0xff,0x09,0xf8,0x08,0xf8,0x08,0xff -+// 20154 人 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x80,0xc0,0x80,0x80,0x80,0x80,0x40,0x40,0x40,0x20,0x30,0x18,0x0c,0x07,0x02,0x00 -+// 20155 亻 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0xc0,0x80,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 20156 亼 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x60,0x00,0x3f,0x00,0x00,0x80,0x80,0x80,0x80,0x40,0x20,0x20,0x10,0x08,0x0c,0x07,0x02,0x00,0xfe,0x00,0x00 -+// 20157 亽 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x62,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x40,0x20,0x10,0x0c,0x07,0x02,0x80,0xc0,0x60,0x40,0x00,0x00,0x00 -+// 20158 亾 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x18,0x10,0x3f,0x10,0x00,0x40,0x40,0x40,0x40,0x40,0xa0,0xa0,0x10,0x10,0x08,0x0e,0x04,0x00,0xfe,0x00,0x00 -+// 20159 亿 ; -+,0x04,0x06,0x04,0x08,0x08,0x18,0x28,0x48,0x08,0x08,0x09,0x09,0x0a,0x0a,0x09,0x08,0x00,0xfe,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x80,0x00,0x02,0x02,0x02,0xfe,0x00 -+// 20160 什 ; -+,0x04,0x06,0x04,0x0c,0x08,0x18,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20161 仁 ; -+,0x08,0x0c,0x0b,0x18,0x10,0x30,0x50,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x00,0x00,0x04,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x00,0x00,0x00 -+// 20162 仂 ; -+,0x04,0x06,0x0c,0x08,0x1b,0x18,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x20,0x20,0x22,0xff,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 20163 仃 ; -+,0x04,0x06,0x0d,0x08,0x18,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 20164 仄 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x22,0x24,0x48,0x00,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0xa0,0xa0,0x90,0x10,0x08,0x0c,0x07,0x02,0x00 -+// 20165 仅 ; -+,0x04,0x06,0x0d,0x09,0x11,0x18,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x0e,0x08,0x00,0x00,0xfc,0x04,0x04,0x88,0x88,0x88,0x50,0x50,0x20,0x70,0xcc,0x87,0x02,0x00 -+// 20166 仆 ; -+,0x02,0x03,0x06,0x04,0x08,0x0c,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x20,0x20,0x20,0x20,0x20,0x30,0x28,0x26,0x23,0x21,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20167 仇 ; -+,0x04,0x04,0x08,0x0b,0x10,0x30,0x50,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x18,0x00,0x40,0x40,0x48,0xfc,0x48,0x48,0x48,0x88,0x88,0x88,0x08,0x09,0x09,0x09,0x0f,0x00 -+// 20168 仈 ; -+,0x08,0x0c,0x08,0x10,0x10,0x30,0x30,0x50,0x10,0x11,0x11,0x11,0x12,0x12,0x14,0x00,0x00,0x10,0x90,0x90,0x90,0x90,0x88,0x88,0x88,0x08,0x04,0x04,0x06,0x03,0x02,0x00 -+// 20169 仉 ; -+,0x04,0x06,0x0c,0x08,0x08,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x08,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x09,0x09,0x07,0x00 -+// 20170 今 ; -+,0x00,0x00,0x01,0x02,0x04,0x09,0x10,0x60,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x40,0x20,0x10,0x0c,0xc7,0x42,0x00,0xf8,0x10,0x10,0x20,0x20,0x40,0x80 -+// 20171 介 ; -+,0x00,0x00,0x01,0x01,0x02,0x0c,0x32,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x80,0x80,0x40,0x20,0x18,0x0e,0x14,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 20172 仌 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x01,0x02,0x04,0x08,0x30,0x00,0x80,0x80,0x80,0x40,0x30,0x18,0x8e,0x84,0x80,0x80,0x40,0x30,0x0c,0x07,0x02,0x00 -+// 20173 仍 ; -+,0x08,0x0d,0x08,0x10,0x18,0x30,0x50,0x10,0x10,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x00,0xfc,0x84,0x84,0x88,0x88,0x9e,0x8a,0x82,0x02,0x02,0x02,0x04,0x24,0x14,0x08 -+// 20174 从 ; -+,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0a,0x09,0x09,0x10,0x11,0x21,0x42,0x04,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50,0x50,0x48,0x48,0x84,0x86,0x03,0x02,0x00 -+// 20175 仏 ; -+,0x04,0x06,0x04,0x08,0x0c,0x18,0x18,0x28,0x08,0x08,0x08,0x09,0x09,0x0b,0x09,0x08,0x20,0x30,0x20,0x20,0x20,0x20,0x40,0x40,0x40,0x80,0x84,0x02,0x3f,0xe3,0x02,0x00 -+// 20176 仐 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x40,0x20,0x10,0x8e,0x84,0x80,0x80,0xfe,0x80,0x80,0x80,0x80,0x80,0x80 -+// 20177 仑 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x34,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x03,0x00,0x80,0x80,0x40,0x20,0x18,0x0e,0x04,0x20,0x70,0xc0,0x00,0x04,0x04,0x06,0xfc,0x00 -+// 20178 仒 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0xc0,0x20,0x10,0x8c,0x47,0x62,0x20,0x00,0xc0,0x60,0x40,0x00,0x00 -+// 20179 仓 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x17,0x24,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x80,0x80,0x40,0x20,0x18,0x0c,0xf7,0x12,0x10,0x10,0x10,0x70,0x20,0x04,0x06,0xfc -+// 20180 仔 ; -+,0x04,0x05,0x08,0x08,0x18,0x18,0x2f,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x04,0x08,0x10,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 20181 仕 ; -+,0x04,0x06,0x0c,0x08,0x18,0x17,0x30,0x50,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x00,0x20,0x20,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 20182 他 ; -+,0x08,0x0c,0x09,0x09,0x11,0x39,0x57,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0x20,0x22,0x2f,0x72,0xa2,0x22,0x22,0x2a,0x24,0x21,0x21,0x01,0xff,0x00 -+// 20183 仗 ; -+,0x08,0x0c,0x08,0x17,0x18,0x32,0x52,0x11,0x11,0x10,0x10,0x10,0x10,0x13,0x14,0x00,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20,0xa0,0x40,0x60,0x98,0x0f,0x02,0x00 -+// 20184 付 ; -+,0x04,0x06,0x08,0x08,0x13,0x18,0x2a,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x88,0xc8,0x88,0x08,0x08,0x28,0x10,0x00 -+// 20185 仙 ; -+,0x04,0x06,0x04,0x08,0x08,0x19,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x0b,0x09,0x00,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 20186 仚 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x18,0x60,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x80,0x80,0xc0,0x20,0x18,0x8c,0x87,0x82,0x84,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 20187 仛 ; -+,0x04,0x06,0x05,0x08,0x08,0x18,0x18,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x0e,0xf0,0x20,0x20,0x20,0x22,0x3f,0xe0,0x20,0x20,0x20,0x21,0x21,0x3f,0x00 -+// 20188 仜 ; -+,0x04,0x06,0x04,0x0b,0x08,0x18,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x04,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 20189 仝 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x60,0x1f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x80,0x80,0x40,0x20,0x10,0x0c,0x07,0x02,0xfc,0x80,0x80,0x80,0x80,0x82,0xff,0x00 -+// 20190 仞 ; -+,0x04,0x06,0x0c,0x08,0x08,0x19,0x29,0x29,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x02,0xff,0x22,0x22,0x22,0x22,0xa2,0x22,0x22,0x42,0x42,0x82,0xa4,0x14,0x08,0x00 -+// 20191 仟 ; -+,0x04,0x06,0x05,0x08,0x08,0x18,0x2f,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x1e,0xe0,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20192 仠 ; -+,0x04,0x07,0x0c,0x08,0x18,0x10,0x37,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x04,0xfe,0x20,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20193 仡 ; -+,0x08,0x0c,0x09,0x19,0x12,0x33,0x54,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x10,0x00,0x80,0x82,0xff,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0x80,0x81,0x01,0x01,0xff,0x00 -+// 20194 仢 ; -+,0x04,0x06,0x04,0x08,0x0c,0x19,0x1a,0x2c,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x40,0x60,0x42,0xff,0x82,0x02,0x82,0x62,0x32,0x22,0x02,0x02,0x02,0x22,0x14,0x08 -+// 20195 代 ; -+,0x08,0x0c,0x08,0x08,0x10,0x1f,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x80,0x90,0x88,0x84,0xfe,0x80,0x40,0x40,0x40,0x20,0x20,0x12,0x0a,0x06,0x03,0x00 -+// 20196 令 ; -+,0x00,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x0f,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x80,0x80,0x40,0x20,0x10,0x8c,0x47,0x0a,0xfc,0x08,0x10,0x20,0x40,0xc0,0x60,0x40 -+// 20197 以 ; -+,0x00,0x12,0x11,0x11,0x11,0x10,0x10,0x10,0x11,0x16,0x1c,0x38,0x10,0x00,0x03,0x00,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x88,0x08,0x18,0x18,0x34,0x62,0x83,0x01,0x00 -+// 20198 仦 ; -+,0x04,0x06,0x04,0x08,0x09,0x19,0x29,0x49,0x0a,0x0a,0x0c,0x08,0x09,0x08,0x08,0x00,0x20,0x20,0x20,0x20,0x20,0xa8,0x24,0x26,0x23,0x23,0x22,0x20,0x20,0xa0,0x40,0x00 -+// 20199 仧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x80,0x80,0x80,0xfc,0x80,0x80,0x82,0xff,0x80,0x80,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 20200 仨 ; -+,0x04,0x04,0x0b,0x08,0x10,0x18,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 20201 仩 ; -+,0x04,0x06,0x04,0x08,0x0c,0x18,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 20202 仪 ; -+,0x04,0x04,0x08,0x09,0x11,0x31,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x40,0x20,0x34,0x24,0x04,0x08,0x88,0x88,0x50,0x50,0x20,0x50,0x88,0x07,0x02,0x00 -+// 20203 仫 ; -+,0x04,0x06,0x0c,0x08,0x10,0x18,0x28,0x29,0x4e,0x08,0x08,0x08,0x09,0x0b,0x08,0x08,0x20,0x30,0x20,0x40,0x48,0x88,0x90,0x10,0x20,0x28,0x44,0x82,0x3f,0xe3,0x01,0x00 -+// 20204 们 ; -+,0x05,0x04,0x08,0x08,0x1a,0x12,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x80,0xde,0x82,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 20205 仭 ; -+,0x04,0x06,0x0c,0x08,0x1a,0x1a,0x29,0x49,0x08,0x08,0x08,0x08,0x09,0x0a,0x0c,0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0xc4,0x64,0x94,0x8c,0x06,0x39,0x10,0x00 -+// 20206 仮 ; -+,0x04,0x06,0x05,0x05,0x09,0x09,0x19,0x29,0x49,0x09,0x09,0x09,0x0a,0x0a,0x0b,0x0c,0x00,0x1e,0xe0,0x00,0x00,0xfe,0x42,0x42,0x44,0x24,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 20207 仯 ; -+,0x04,0x06,0x04,0x08,0x08,0x18,0x19,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0x10,0x10,0x10,0x90,0xd4,0x92,0x11,0x11,0x14,0x16,0x04,0x08,0x10,0x60,0x80,0x00 -+// 20208 仰 ; -+,0x04,0x04,0x0b,0x0a,0x1a,0x12,0x32,0x52,0x12,0x12,0x12,0x13,0x12,0x10,0x10,0x00,0x00,0x60,0x9f,0x11,0x11,0x11,0x11,0x11,0x11,0x51,0x97,0x12,0x10,0x10,0x10,0x00 -+// 20209 仱 ; -+,0x04,0x06,0x04,0x08,0x09,0x11,0x32,0x54,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0xa0,0x90,0x08,0x44,0x33,0x20,0x00,0xfc,0x08,0x08,0x10,0x10,0x20,0x20 -+// 20210 仲 ; -+,0x04,0x06,0x0c,0x0b,0x1a,0x12,0x32,0x52,0x13,0x12,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0xfe,0x22,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20211 仳 ; -+,0x09,0x0d,0x09,0x09,0x19,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x10,0x10,0x10,0x10,0x12,0xd7,0x1c,0x10,0x10,0x10,0x10,0x10,0x51,0x91,0x0f,0x00 -+// 20212 仴 ; -+,0x04,0x06,0x04,0x08,0x0c,0x18,0x18,0x28,0x48,0x08,0x08,0x09,0x09,0x09,0x0a,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x04,0x04,0x1c,0x08,0x00 -+// 20213 仵 ; -+,0x04,0x04,0x08,0x09,0x19,0x2a,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x80,0x80,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 20214 件 ; -+,0x08,0x0d,0x09,0x19,0x11,0x32,0x52,0x14,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xa0,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 20215 价 ; -+,0x04,0x06,0x0c,0x08,0x19,0x32,0x54,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x12,0x14,0x20,0x20,0x50,0x88,0x0c,0x07,0x8a,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08 -+// 20216 仸 ; -+,0x04,0x04,0x0b,0x08,0x10,0x10,0x37,0x50,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x3c,0xc0,0x40,0x40,0x40,0xfe,0x40,0x40,0x40,0xa0,0xa0,0x10,0x08,0x07,0x02 -+// 20217 仹 ; -+,0x04,0x06,0x04,0x0b,0x08,0x18,0x19,0x28,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x22,0xff,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20 -+// 20218 仺 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x1f,0x68,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x00,0x80,0x80,0x40,0x20,0x18,0x0c,0xff,0x02,0x00,0x10,0xf8,0x00,0x00,0x04,0xfe,0x00 -+// 20219 任 ; -+,0x04,0x06,0x0d,0x08,0x18,0x18,0x28,0x4f,0x08,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 20220 仼 ; -+,0x08,0x0c,0x0b,0x08,0x10,0x18,0x28,0x2b,0x48,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x02,0xff,0x20,0x20,0x20,0x24,0xfe,0x20,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 20221 份 ; -+,0x04,0x06,0x04,0x09,0x09,0x12,0x34,0x5b,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x00,0x98,0xd0,0x90,0x08,0x04,0x07,0x02,0xfc,0x44,0x44,0x44,0x84,0x84,0x1c,0x08,0x00 -+// 20222 仾 ; -+,0x08,0x0f,0x08,0x08,0x10,0x10,0x30,0x50,0x10,0x11,0x10,0x10,0x10,0x13,0x10,0x00,0x00,0xff,0x40,0x40,0x80,0xfc,0x84,0x84,0x84,0xfc,0x88,0x08,0x0a,0xff,0x00,0x00 -+// 20223 仿 ; -+,0x04,0x06,0x0c,0x0b,0x10,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x0c,0x00,0x40,0x30,0x12,0xff,0x40,0x40,0x42,0x7f,0x42,0x82,0x82,0x02,0x22,0x14,0x08,0x00 -+// 20224 伀 ; -+,0x04,0x06,0x0c,0x08,0x18,0x19,0x29,0x2a,0x4c,0x08,0x08,0x08,0x09,0x0b,0x09,0x08,0x00,0x90,0xd0,0x88,0x88,0x04,0x07,0x42,0x60,0x40,0x80,0x88,0x04,0xfe,0x04,0x00 -+// 20225 企 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x18,0x60,0x08,0x0c,0x08,0x08,0x08,0x08,0x7f,0x00,0x80,0xc0,0x80,0x40,0x20,0x18,0x8f,0xc2,0x88,0xfc,0x80,0x80,0x80,0x82,0xff,0x00 -+// 20226 伂 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x20,0x20,0x24,0xfe,0x20,0xfc,0x24,0x24,0x24,0x24,0x24,0x3c,0x28,0x20,0x20,0x20 -+// 20227 伃 ; -+,0x04,0x06,0x0c,0x08,0x18,0x18,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0xfe,0x04,0x48,0x30,0x12,0xff,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 20228 伄 ; -+,0x04,0x06,0x0c,0x08,0x19,0x19,0x29,0x4a,0x0b,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x22,0x22,0x22,0xfe,0x20,0x22,0xff,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 20229 伅 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x19,0x29,0x49,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x24,0xfe,0x20,0x24,0x24,0x24,0x24,0xfc,0x20,0x21,0x21,0x21,0x1e,0x00 -+// 20230 伆 ; -+,0x08,0x0c,0x08,0x08,0x19,0x19,0x2a,0x2c,0x48,0x09,0x0a,0x08,0x08,0x08,0x09,0x08,0x80,0xc0,0x82,0xff,0x2a,0x2a,0x4a,0x4a,0x92,0x12,0x22,0x22,0x42,0x82,0x14,0x08 -+// 20231 伇 ; -+,0x04,0x06,0x04,0x08,0x08,0x19,0x2a,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0xf8,0x88,0x88,0x88,0x0f,0x00,0xfc,0x84,0x84,0x48,0x30,0x30,0x48,0x87,0x02 -+// 20232 伈 ; -+,0x08,0x0c,0x08,0x18,0x10,0x30,0x30,0x52,0x12,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x00,0x20,0x18,0x08,0x80,0xc0,0x84,0x82,0x83,0x81,0x84,0x84,0x84,0x7c,0x00,0x00 -+// 20233 伉 ; -+,0x08,0x0c,0x08,0x1b,0x10,0x30,0x30,0x50,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x80,0x60,0x22,0xff,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x0a,0x0a,0x0b,0x06,0x00 -+// 20234 伊 ; -+,0x08,0x0d,0x08,0x08,0x13,0x10,0x30,0x53,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x00,0x04,0xfe,0x44,0x44,0xff,0x44,0x44,0xfc,0x44,0x40,0x80,0x80,0x00,0x00,0x00,0x00 -+// 20235 伋 ; -+,0x08,0x0d,0x08,0x18,0x10,0x30,0x30,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0x13,0x00,0x08,0xfc,0x88,0x88,0x90,0x94,0xbe,0x44,0x44,0x28,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 20236 伌 ; -+,0x08,0x0d,0x09,0x09,0x11,0x11,0x31,0x31,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x02,0xff,0x00,0x02,0x7f,0x42,0x42,0x42,0x42,0x4a,0x44,0x41,0x41,0x41,0x3f,0x00 -+// 20237 伍 ; -+,0x08,0x0c,0x09,0x18,0x10,0x30,0x50,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x00,0x04,0xfe,0x40,0x40,0x40,0x44,0xfe,0x84,0x84,0x84,0x84,0x84,0x84,0xff,0x00 -+// 20238 伎 ; -+,0x08,0x0c,0x08,0x0b,0x10,0x18,0x31,0x31,0x50,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x20,0x30,0x24,0xfe,0x20,0x20,0xfc,0x04,0x88,0x88,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 20239 伏 ; -+,0x08,0x0c,0x08,0x08,0x10,0x17,0x30,0x50,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x40,0x68,0x46,0x44,0x40,0xfe,0x40,0x40,0x40,0xa0,0x90,0x18,0x0c,0x07,0x02,0x00 -+// 20240 伐 ; -+,0x08,0x0e,0x0c,0x08,0x18,0x1b,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0x40,0x68,0x4c,0x48,0x7f,0xc0,0x48,0x4c,0x48,0x58,0x30,0x31,0xc9,0x05,0x03,0x00 -+// 20241 休 ; -+,0x08,0x0c,0x08,0x08,0x13,0x10,0x30,0x30,0x50,0x11,0x11,0x12,0x14,0x10,0x10,0x00,0x20,0x30,0x20,0x24,0xfe,0x60,0x70,0xb0,0xa8,0x28,0x24,0x27,0x22,0x20,0x20,0x00 -+// 20242 伒 ; -+,0x08,0x0c,0x09,0x09,0x19,0x11,0x31,0x31,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0x00,0x04,0x1e,0xe0,0x00,0x00,0x02,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 20243 伓 ; -+,0x04,0x07,0x08,0x08,0x10,0x18,0x28,0x48,0x08,0x09,0x0a,0x0c,0x08,0x08,0x08,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x70,0xec,0xa6,0x23,0x22,0x20,0x20,0x20,0x20,0x00 -+// 20244 伔 ; -+,0x08,0x0d,0x0a,0x1a,0x18,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x00,0x00,0xfe,0x02,0x04,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x88,0x09,0x09,0x07,0x00 -+// 20245 伕 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x18,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x20,0x20,0x50,0x48,0x8c,0x86,0x03,0x02 -+// 20246 伖 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x10,0x30,0x50,0x10,0x10,0x11,0x11,0x12,0x14,0x18,0x11,0x40,0x40,0x40,0xff,0x40,0x40,0x7c,0x84,0x84,0xc8,0x28,0x10,0x28,0x44,0x83,0x02 -+// 20247 众 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x18,0x64,0x04,0x04,0x04,0x0a,0x11,0x21,0x40,0x00,0x80,0x80,0x80,0x40,0x20,0x18,0x07,0x12,0x10,0x10,0x10,0x28,0x24,0x46,0x84,0x00 -+// 20248 优 ; -+,0x08,0x0c,0x08,0x10,0x1b,0x30,0x50,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x40,0x50,0x4c,0x48,0xfe,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x22,0x22,0x23,0x1e,0x00 -+// 20249 伙 ; -+,0x04,0x06,0x0c,0x08,0x19,0x11,0x31,0x52,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x20,0x20,0x20,0x24,0x26,0x24,0x28,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02,0x00 -+// 20250 会 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x37,0x40,0x00,0x1f,0x01,0x02,0x04,0x08,0x1f,0x08,0x80,0x80,0x40,0x20,0x10,0x0c,0xf7,0x02,0x00,0xfc,0x00,0x10,0x08,0xfc,0x8c,0x08 -+// 20251 伛 ; -+,0x08,0x0f,0x0a,0x1a,0x12,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x10,0x00,0x00,0xff,0x04,0x06,0x84,0x48,0x28,0x10,0x10,0x28,0x24,0x46,0x84,0xff,0x00,0x00 -+// 20252 伜 ; -+,0x04,0x06,0x0d,0x08,0x18,0x18,0x28,0x49,0x08,0x0b,0x08,0x08,0x08,0x08,0x08,0x00,0x40,0x48,0xfc,0x48,0x48,0x89,0x89,0x2f,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20253 伝 ; -+,0x04,0x06,0x0c,0x08,0x18,0x18,0x2b,0x48,0x08,0x08,0x08,0x08,0x09,0x0b,0x08,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x40,0x48,0x84,0x3e,0xe2,0x00,0x00 -+// 20254 伞 ; -+,0x00,0x00,0x01,0x02,0x04,0x18,0x60,0x08,0x06,0x04,0x7f,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x40,0x30,0x8c,0x87,0x92,0x98,0x90,0xa0,0xff,0x80,0x80,0x80,0x80,0x80 -+// 20255 伟 ; -+,0x04,0x06,0x04,0x0b,0x08,0x19,0x18,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x20,0xfe,0x20,0xfe,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x2a,0x24,0x20 -+// 20256 传 ; -+,0x08,0x0c,0x0b,0x10,0x10,0x30,0x57,0x10,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x24,0xfe,0x20,0x40,0x42,0xff,0x40,0x84,0xfe,0x04,0x88,0x50,0x20,0x10,0x00 -+// 20257 伡 ; -+,0x04,0x06,0x0d,0x08,0x18,0x10,0x31,0x53,0x11,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0xfe,0x40,0xa0,0xa0,0x24,0xfe,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x00 -+// 20258 伢 ; -+,0x08,0x0d,0x08,0x19,0x11,0x31,0x53,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x00,0xfe,0x10,0x10,0x90,0x10,0xff,0x10,0x30,0x50,0x90,0x10,0x10,0x50,0x20,0x00 -+// 20259 伣 ; -+,0x04,0x07,0x0d,0x09,0x19,0x19,0x29,0x49,0x09,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0xfc,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x50,0x50,0x92,0x92,0x12,0x0e,0x00 -+// 20260 伤 ; -+,0x04,0x06,0x04,0x08,0x09,0x1a,0x2d,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x80,0xc0,0x82,0xff,0x20,0x20,0xfe,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 20261 伥 ; -+,0x08,0x0c,0x08,0x18,0x10,0x30,0x50,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x80,0x88,0x8c,0x98,0xa0,0xc0,0x82,0xff,0xa0,0xa0,0x90,0x88,0x8c,0xa7,0xc2,0x80 -+// 20262 伦 ; -+,0x08,0x0c,0x08,0x18,0x10,0x31,0x52,0x14,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x20,0x50,0x8c,0x07,0x82,0x88,0x9c,0xe0,0x80,0x82,0x82,0x82,0x7c,0x00 -+// 20263 伧 ; -+,0x08,0x0c,0x08,0x10,0x11,0x32,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x40,0x40,0xa0,0x98,0x0e,0x04,0xf8,0x08,0x08,0x08,0x38,0x10,0x04,0x04,0xfc,0x00 -+// 20264 伨 ; -+,0x04,0x06,0x04,0x08,0x08,0x19,0x2a,0x48,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x40,0xfe,0x82,0x42,0x22,0x32,0x22,0x1a,0xe2,0x82,0x02,0x22,0x14,0x08 -+// 20265 伩 ; -+,0x04,0x06,0x0c,0x0b,0x10,0x30,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x40,0x30,0x20,0xff,0x84,0x84,0x84,0x48,0x48,0x48,0x30,0x30,0x4c,0x87,0x02,0x00 -+// 20266 伪 ; -+,0x04,0x06,0x05,0x08,0x08,0x13,0x18,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x0c,0x00,0x20,0x20,0x20,0xa0,0xa0,0xfe,0x22,0x42,0x52,0x4a,0x8a,0x82,0x02,0x14,0x08,0x00 -+// 20267 伫 ; -+,0x04,0x06,0x04,0x09,0x0d,0x1a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0x20,0x18,0x10,0xff,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 20268 伬 ; -+,0x04,0x06,0x04,0x08,0x0c,0x18,0x28,0x48,0x08,0x08,0x08,0x09,0x09,0x0a,0x0c,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0xa0,0xa0,0x90,0x90,0x08,0x0c,0x07,0x02,0x00 -+// 20269 伭 ; -+,0x04,0x06,0x04,0x0b,0x08,0x18,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x40,0x30,0x20,0xff,0x20,0x44,0x86,0xfc,0x88,0x10,0x20,0x44,0x82,0xff,0x82,0x00 -+// 20270 伮 ; -+,0x09,0x0d,0x09,0x11,0x17,0x31,0x52,0x12,0x14,0x12,0x11,0x11,0x11,0x12,0x14,0x00,0x00,0x80,0x1e,0x12,0xd2,0x52,0x52,0x54,0x54,0x88,0x88,0x88,0x54,0x22,0x41,0x00 -+// 20271 伯 ; -+,0x04,0x06,0x04,0x0d,0x09,0x19,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x30,0x40,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20272 估 ; -+,0x04,0x06,0x08,0x08,0x13,0x18,0x30,0x50,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20273 伱 ; -+,0x04,0x06,0x0c,0x08,0x10,0x11,0x32,0x54,0x11,0x11,0x13,0x12,0x14,0x18,0x10,0x00,0x20,0x20,0x20,0x50,0x8c,0x27,0x22,0x20,0x20,0xa8,0x24,0x22,0x23,0xa2,0x40,0x00 -+// 20274 伲 ; -+,0x08,0x0d,0x09,0x19,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x00,0x00,0xfe,0x02,0x02,0xfe,0x00,0x40,0x44,0x4e,0x70,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 20275 伳 ; -+,0x08,0x0d,0x09,0x09,0x11,0x17,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x02,0xff,0x00 -+// 20276 伴 ; -+,0x04,0x04,0x0a,0x09,0x11,0x3b,0x50,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x24,0xa6,0x28,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20277 伵 ; -+,0x04,0x04,0x0b,0x0a,0x12,0x3a,0x52,0x12,0x12,0x12,0x13,0x12,0x13,0x12,0x12,0x00,0x00,0x00,0xff,0x49,0x49,0x49,0x49,0x49,0x89,0x89,0x07,0x01,0xff,0x01,0x01,0x00 -+// 20278 伶 ; -+,0x04,0x06,0x0c,0x08,0x19,0x32,0x54,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x60,0x90,0x48,0x24,0x37,0x22,0xfe,0x04,0x08,0x90,0x60,0x30,0x20,0x00 -+// 20279 伷 ; -+,0x04,0x06,0x04,0x08,0x0d,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x10,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 20280 伸 ; -+,0x04,0x06,0x0c,0x0b,0x1a,0x1a,0x2b,0x4a,0x0a,0x0b,0x0a,0x0a,0x08,0x08,0x08,0x00,0x20,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x20,0x20,0x20,0x20,0x00 -+// 20281 伹 ; -+,0x04,0x07,0x0d,0x09,0x11,0x19,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x0f,0x08,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xff,0x00,0x00 -+// 20282 伺 ; -+,0x04,0x07,0x04,0x08,0x0b,0x18,0x19,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0xfe,0x02,0x02,0xfa,0x02,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04,0x00 -+// 20283 伻 ; -+,0x04,0x07,0x08,0x0a,0x11,0x39,0x51,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x20,0x24,0x26,0xa4,0x28,0x22,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20284 似 ; -+,0x08,0x0c,0x08,0x12,0x1a,0x12,0x32,0x52,0x12,0x12,0x12,0x13,0x12,0x10,0x11,0x00,0x84,0x44,0x64,0x44,0x04,0x04,0x04,0x04,0x24,0x44,0x8a,0x0a,0x11,0x61,0x81,0x00 -+// 20285 伽 ; -+,0x09,0x0d,0x09,0x11,0x1f,0x11,0x31,0x51,0x12,0x12,0x12,0x14,0x14,0x19,0x10,0x00,0x00,0x00,0x00,0x1f,0xd1,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x5f,0xd1,0x90,0x00 -+// 20286 伾 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x30,0x50,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x17,0x10,0x00,0x02,0xff,0x20,0x20,0x40,0x70,0xa8,0x2c,0x26,0x24,0x20,0x20,0x22,0xff,0x00 -+// 20287 伿 ; -+,0x04,0x07,0x0d,0x09,0x11,0x19,0x31,0x51,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x00,0x80,0xc8,0x84,0x02,0x03,0x01,0x00 -+// 20288 佀 ; -+,0x04,0x07,0x0d,0x09,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x02,0x02,0x02,0xfe,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02 -+// 20289 佁 ; -+,0x04,0x06,0x0c,0x08,0x10,0x19,0x2b,0x48,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x30,0x60,0x44,0x82,0x3f,0xe2,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20290 佂 ; -+,0x04,0x06,0x0d,0x08,0x10,0x39,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x17,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0x24,0x3e,0x20,0x20,0x20,0x20,0x20,0x22,0xff,0x00 -+// 20291 佃 ; -+,0x04,0x06,0x0d,0x09,0x11,0x39,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0xff,0x11,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0x11,0xff,0x01,0x00,0x00 -+// 20292 佄 ; -+,0x09,0x0d,0x09,0x11,0x17,0x39,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x04,0x04,0x04,0x04,0xff,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x04 -+// 20293 佅 ; -+,0x08,0x0c,0x08,0x13,0x10,0x38,0x57,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x70,0x70,0xa8,0xa4,0x26,0x23,0x22,0x20,0x20 -+// 20294 但 ; -+,0x08,0x0d,0x09,0x11,0x11,0x39,0x51,0x11,0x11,0x11,0x11,0x11,0x10,0x17,0x10,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0x00,0xff,0x00,0x00 -+// 20295 佇 ; -+,0x04,0x06,0x0d,0x0a,0x1a,0x10,0x30,0x53,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x40,0x20,0xff,0x02,0x04,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 20296 佈 ; -+,0x08,0x0c,0x0b,0x18,0x18,0x28,0x49,0x0b,0x0d,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x20,0x20,0xff,0x40,0x50,0x90,0xfe,0x12,0x12,0x12,0x12,0x1a,0x14,0x10,0x10,0x00 -+// 20297 佉 ; -+,0x04,0x06,0x04,0x0b,0x08,0x10,0x30,0x57,0x10,0x10,0x10,0x11,0x12,0x17,0x10,0x00,0x20,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x40,0x40,0x90,0x08,0x04,0xfe,0x04,0x00 -+// 20298 佊 ; -+,0x04,0x06,0x0c,0x09,0x11,0x31,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0x14,0x1b,0x00,0x10,0x10,0x12,0xff,0x12,0x14,0x10,0xfe,0x84,0x44,0x48,0x30,0x30,0xcc,0x03,0x00 -+// 20299 佋 ; -+,0x04,0x06,0x0c,0x08,0x10,0x18,0x28,0x49,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x42,0x42,0x42,0x82,0x9e,0x04,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 20300 佌 ; -+,0x08,0x0c,0x08,0x10,0x10,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x13,0x1e,0x10,0x00,0x88,0xc8,0x88,0x88,0x89,0x8b,0xec,0x88,0x88,0x88,0x88,0xe8,0x89,0x09,0x07,0x00 -+// 20301 位 ; -+,0x04,0x06,0x08,0x0b,0x10,0x1a,0x29,0x29,0x48,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x60,0x20,0xfe,0x00,0x08,0x0c,0x08,0x88,0x90,0x90,0x10,0x20,0xff,0x00,0x00 -+// 20302 低 ; -+,0x04,0x06,0x0d,0x09,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x0c,0x3e,0xd0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x08,0x29,0x45,0xa3,0x11,0x00 -+// 20303 住 ; -+,0x04,0x04,0x08,0x0b,0x10,0x30,0x50,0x10,0x13,0x10,0x10,0x10,0x10,0x17,0x10,0x00,0x80,0x40,0x24,0xfe,0x20,0x20,0x20,0x24,0xfe,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 20304 佐 ; -+,0x08,0x0c,0x08,0x1f,0x10,0x30,0x30,0x50,0x11,0x11,0x12,0x14,0x18,0x13,0x10,0x00,0x40,0x40,0x40,0xff,0x40,0x40,0x80,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 20305 佑 ; -+,0x08,0x0c,0x08,0x17,0x10,0x30,0x50,0x11,0x11,0x13,0x15,0x19,0x11,0x11,0x11,0x00,0x40,0x40,0x40,0xff,0x40,0x80,0x80,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20306 佒 ; -+,0x08,0x0c,0x08,0x13,0x12,0x3a,0x52,0x12,0x17,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0xff,0x20,0x50,0x50,0x88,0x0c,0x07,0x02 -+// 20307 体 ; -+,0x08,0x0c,0x08,0x10,0x1b,0x30,0x50,0x10,0x10,0x11,0x12,0x15,0x10,0x10,0x10,0x00,0x20,0x20,0x20,0x20,0xfe,0x60,0x70,0xb0,0xa8,0x24,0x27,0xfa,0x20,0x20,0x20,0x00 -+// 20308 佔 ; -+,0x04,0x06,0x0c,0x08,0x1c,0x18,0x28,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20309 何 ; -+,0x04,0x06,0x0d,0x08,0x18,0x13,0x32,0x52,0x12,0x13,0x12,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0xff,0x04,0x04,0xe4,0x24,0x24,0x24,0xe4,0x24,0x04,0x04,0x14,0x08,0x00 -+// 20310 佖 ; -+,0x08,0x0c,0x08,0x10,0x10,0x38,0x52,0x12,0x12,0x12,0x14,0x10,0x10,0x11,0x16,0x00,0x00,0x48,0x26,0x24,0x84,0x88,0x88,0x94,0x92,0xa1,0xa1,0xc4,0x84,0x86,0x7c,0x00 -+// 20311 佗 ; -+,0x04,0x06,0x0d,0x09,0x1a,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x40,0x22,0xff,0x02,0x04,0x80,0x84,0x8e,0x98,0xe0,0x80,0x82,0x82,0x82,0x7e,0x00 -+// 20312 佘 ; -+,0x00,0x00,0x01,0x02,0x04,0x0b,0x30,0x00,0x0f,0x00,0x04,0x06,0x0c,0x08,0x11,0x00,0x80,0x80,0x40,0x30,0x0c,0xf7,0x02,0x00,0xfc,0x40,0x50,0x4c,0x46,0x44,0x40,0x80 -+// 20313 余 ; -+,0x00,0x00,0x01,0x02,0x04,0x1f,0x60,0x00,0x1f,0x00,0x08,0x0c,0x08,0x10,0x22,0x01,0x80,0x80,0x40,0x30,0x08,0xff,0x82,0x80,0xfe,0x80,0xa0,0x98,0x8c,0x88,0x80,0x00 -+// 20314 佚 ; -+,0x08,0x0d,0x09,0x09,0x12,0x12,0x34,0x57,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x20,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 20315 佛 ; -+,0x04,0x04,0x0b,0x08,0x18,0x1b,0x2a,0x4a,0x0b,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xff,0x49,0x49,0x8d,0x8a,0x08,0x08,0x08 -+// 20316 作 ; -+,0x04,0x06,0x04,0x09,0x09,0x1a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x80,0xff,0x40,0x44,0x7e,0x40,0x40,0x42,0x7f,0x40,0x40,0x40,0x40,0x40 -+// 20317 佝 ; -+,0x08,0x0c,0x08,0x19,0x11,0x32,0x55,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x00,0x80,0x82,0xff,0x02,0x02,0x02,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04,0x00 -+// 20318 佞 ; -+,0x04,0x05,0x08,0x08,0x13,0x30,0x50,0x17,0x10,0x10,0x11,0x10,0x10,0x10,0x13,0x00,0x00,0xfc,0x00,0x02,0xff,0x40,0x42,0xff,0x84,0x84,0x88,0x70,0x28,0xc4,0x02,0x00 -+// 20319 佟 ; -+,0x04,0x06,0x0c,0x09,0x12,0x34,0x58,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x80,0xfe,0x84,0x88,0x48,0x20,0x50,0x8c,0x47,0x32,0x10,0x40,0x30,0x10,0x00 -+// 20320 你 ; -+,0x04,0x04,0x08,0x09,0x11,0x1a,0x34,0x51,0x11,0x11,0x12,0x12,0x14,0x10,0x10,0x00,0x80,0xc0,0x82,0xff,0x02,0x24,0x20,0x28,0xa4,0x24,0x22,0x23,0x22,0xa0,0x40,0x00 -+// 20321 佡 ; -+,0x04,0x06,0x0c,0x08,0x18,0x19,0x2a,0x4c,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x20,0x50,0x58,0x8c,0x27,0x22,0x20,0x22,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 20322 佢 ; -+,0x08,0x0f,0x0a,0x12,0x1a,0x33,0x52,0x12,0x12,0x13,0x12,0x12,0x12,0x13,0x12,0x00,0x04,0xfe,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0x00,0xff,0x00,0x00 -+// 20323 佣 ; -+,0x04,0x05,0x09,0x09,0x19,0x19,0x29,0x49,0x09,0x09,0x09,0x0a,0x0a,0x0a,0x0c,0x00,0x00,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0x22,0x2a,0x24,0x00 -+// 20324 佤 ; -+,0x08,0x0f,0x08,0x08,0x10,0x18,0x28,0x49,0x09,0x09,0x09,0x09,0x09,0x0b,0x09,0x00,0x00,0xff,0x80,0x80,0xf8,0x88,0x88,0x48,0x28,0x28,0x08,0x29,0x49,0x89,0x07,0x00 -+// 20325 佥 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x17,0x20,0x01,0x08,0x04,0x06,0x04,0x00,0x3f,0x00,0x80,0x80,0x40,0x20,0x10,0x0c,0xf7,0x02,0x08,0x8c,0xc8,0xd0,0x90,0x20,0xfe,0x00 -+// 20326 佦 ; -+,0x04,0x07,0x0c,0x08,0x18,0x28,0x48,0x08,0x09,0x0a,0x0c,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x40,0x40,0x40,0x80,0xfc,0x84,0x84,0x84,0x84,0x84,0xfc,0x84,0x80,0x00 -+// 20327 佧 ; -+,0x04,0x06,0x0c,0x08,0x18,0x30,0x57,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x40,0x40,0x7e,0x40,0x40,0x40,0xff,0x40,0x60,0x58,0x4c,0x46,0x44,0x40,0x40,0x00 -+// 20328 佨 ; -+,0x04,0x06,0x0c,0x09,0x19,0x32,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x80,0xc0,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x0a,0x04,0x01,0x01,0xff,0x00 -+// 20329 佩 ; -+,0x08,0x0f,0x0a,0x1a,0x13,0x32,0x53,0x13,0x13,0x13,0x15,0x15,0x15,0x19,0x10,0x00,0x00,0xfc,0x04,0x04,0xf4,0x44,0xf4,0x54,0x54,0x54,0x54,0x55,0x75,0x43,0x41,0x00 -+// 20330 佪 ; -+,0x08,0x0f,0x0a,0x12,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x12,0x00,0x00,0xff,0x01,0x01,0x79,0x49,0x49,0x49,0x49,0x79,0x49,0x01,0xff,0x01,0x01,0x00 -+// 20331 佫 ; -+,0x04,0x06,0x0c,0x09,0x1a,0x34,0x50,0x11,0x16,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x80,0xfc,0x84,0x88,0x50,0x20,0x58,0x87,0x02,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20332 佬 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x10,0x37,0x50,0x11,0x11,0x16,0x18,0x10,0x10,0x10,0x00,0x40,0x42,0x43,0xf6,0x44,0x48,0xff,0x20,0x40,0x88,0x9c,0xe2,0x82,0x83,0x7e,0x00 -+// 20333 佭 ; -+,0x08,0x0c,0x08,0x10,0x11,0x32,0x54,0x13,0x15,0x11,0x11,0x13,0x10,0x10,0x10,0x00,0x80,0x80,0xfc,0x88,0x48,0x30,0xcc,0x23,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20,0x00 -+// 20334 佮 ; -+,0x08,0x0c,0x08,0x10,0x18,0x31,0x53,0x14,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0x50,0x58,0x8c,0x07,0xfa,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20335 佯 ; -+,0x09,0x0c,0x08,0x17,0x10,0x38,0x53,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x00,0x08,0x88,0x92,0xff,0x20,0x24,0xfe,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20,0x00 -+// 20336 佰 ; -+,0x08,0x0d,0x08,0x18,0x10,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xff,0x20,0x20,0x40,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x00 -+// 20337 佱 ; -+,0x00,0x00,0x01,0x02,0x04,0x0f,0x30,0x4f,0x00,0x00,0x08,0x08,0x08,0x08,0x3f,0x00,0x80,0x80,0x40,0x20,0x18,0xf7,0x02,0xfc,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 20338 佲 ; -+,0x04,0x06,0x0c,0x08,0x10,0x31,0x52,0x10,0x10,0x11,0x16,0x18,0x10,0x10,0x10,0x00,0x40,0x40,0x7e,0x82,0x84,0x44,0x28,0x30,0xc0,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 20339 佳 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x30,0x57,0x10,0x10,0x10,0x13,0x10,0x10,0x10,0x17,0x10,0x20,0x20,0x24,0xfe,0x20,0x22,0xff,0x20,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x00 -+// 20340 佴 ; -+,0x04,0x07,0x0d,0x09,0x19,0x11,0x31,0x51,0x11,0x11,0x11,0x17,0x10,0x10,0x10,0x00,0x00,0xff,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x00 -+// 20341 併 ; -+,0x09,0x0c,0x08,0x17,0x10,0x30,0x50,0x17,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x04,0x84,0x88,0xff,0x88,0x88,0x8a,0xff,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x00 -+// 20342 佶 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x18,0x29,0x48,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x20,0x22,0xff,0x20,0x24,0xfe,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20343 佷 ; -+,0x08,0x0d,0x09,0x11,0x11,0x39,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x11,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x22,0x26,0x28,0x10,0x4c,0x87,0x02,0x00 -+// 20344 佸 ; -+,0x04,0x06,0x0d,0x08,0x18,0x1b,0x28,0x48,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x1e,0xe0,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20345 佹 ; -+,0x04,0x06,0x04,0x09,0x0a,0x1d,0x29,0x49,0x09,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x00,0x80,0xfe,0x84,0x08,0xff,0x00,0x7c,0x44,0x44,0x44,0x5c,0x48,0x41,0x41,0x3f,0x00 -+// 20346 佺 ; -+,0x04,0x06,0x0c,0x08,0x11,0x32,0x55,0x10,0x10,0x11,0x10,0x10,0x10,0x13,0x10,0x00,0x20,0x20,0x50,0x88,0x04,0x03,0xfa,0x20,0x20,0xf8,0x20,0x20,0x20,0xfe,0x00,0x00 -+// 20347 佻 ; -+,0x08,0x0c,0x08,0x08,0x14,0x12,0x32,0x51,0x12,0x14,0x10,0x11,0x11,0x12,0x14,0x00,0x90,0x90,0x90,0x94,0x96,0x98,0x90,0x98,0x94,0x92,0x90,0x11,0x11,0x0f,0x00,0x00 -+// 20348 佼 ; -+,0x08,0x0c,0x08,0x13,0x11,0x31,0x51,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x40,0x30,0x20,0xfe,0x10,0x8c,0x06,0x8a,0x88,0x50,0x50,0x20,0x50,0x88,0x07,0x02 -+// 20349 佽 ; -+,0x08,0x0c,0x08,0x10,0x12,0x31,0x51,0x10,0x11,0x11,0x12,0x16,0x12,0x10,0x13,0x00,0x20,0x30,0x20,0x20,0x7f,0x42,0x14,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 20350 佾 ; -+,0x04,0x06,0x04,0x09,0x19,0x13,0x35,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x90,0xd0,0x88,0x0c,0x07,0xfe,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x14,0x08,0x00 -+// 20351 使 ; -+,0x04,0x06,0x0d,0x08,0x1b,0x32,0x52,0x13,0x12,0x11,0x10,0x10,0x10,0x11,0x16,0x00,0x20,0x20,0xff,0x20,0xfe,0x22,0x22,0xfe,0x22,0x20,0xc0,0x40,0xb8,0x0f,0x02,0x00 -+// 20352 侀 ; -+,0x08,0x0c,0x0b,0x12,0x12,0x32,0x52,0x1f,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x00,0x02,0xe2,0x4a,0x4a,0x4a,0x4a,0xfa,0x4a,0x4a,0x4a,0x4a,0x42,0x4a,0x44,0x00 -+// 20353 侁 ; -+,0x08,0x0c,0x09,0x11,0x12,0x3a,0x50,0x17,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x00,0xa0,0xa0,0x24,0xfe,0x20,0x20,0x22,0xff,0x90,0x90,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 20354 侂 ; -+,0x08,0x0c,0x0b,0x12,0x12,0x32,0x52,0x12,0x12,0x13,0x12,0x12,0x14,0x14,0x18,0x10,0x40,0x20,0xfe,0x00,0x00,0xfc,0x20,0x20,0x20,0xfe,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 20355 侃 ; -+,0x04,0x07,0x0d,0x09,0x19,0x11,0x30,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0x18,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x24,0x24,0x24,0x24,0x24,0x25,0x25,0x23,0x00 -+// 20356 侄 ; -+,0x08,0x0d,0x08,0x18,0x10,0x39,0x53,0x10,0x10,0x13,0x10,0x10,0x10,0x17,0x10,0x00,0x00,0xfe,0x40,0x48,0x84,0x3e,0xe2,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 20357 侅 ; -+,0x08,0x0c,0x08,0x13,0x10,0x38,0x51,0x13,0x11,0x10,0x10,0x13,0x14,0x10,0x13,0x00,0x40,0x30,0x20,0xff,0x40,0x88,0x3c,0xd8,0x34,0x66,0x8c,0x18,0x26,0xc3,0x02,0x00 -+// 20358 來 ; -+,0x00,0x00,0x3f,0x08,0x08,0x08,0x14,0x33,0x42,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0x80,0xff,0x88,0x88,0x88,0x94,0xa2,0xc2,0xa0,0x90,0x8c,0x87,0x82,0x80,0x00 -+// 20359 侇 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x30,0x53,0x12,0x12,0x13,0x10,0x10,0x10,0x10,0x11,0x12,0x20,0x20,0xff,0x20,0xfe,0x22,0xfe,0x20,0x20,0xff,0x21,0x75,0x4a,0x84,0x02,0x01 -+// 20360 侈 ; -+,0x04,0x06,0x0c,0x08,0x19,0x1a,0x28,0x49,0x0a,0x08,0x09,0x0a,0x08,0x08,0x08,0x0b,0x40,0x7e,0xc2,0x84,0x48,0x30,0x60,0xa0,0x7f,0x81,0x42,0x24,0x28,0x10,0x60,0x80 -+// 20361 侉 ; -+,0x08,0x0c,0x0b,0x18,0x11,0x32,0x5c,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0xff,0x90,0x0c,0xf3,0x02,0x00,0xfe,0x80,0x80,0xfc,0x04,0x04,0x14,0x08 -+// 20362 侊 ; -+,0x04,0x06,0x0c,0x0a,0x11,0x18,0x37,0x51,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x40,0x40,0x48,0x4c,0x50,0x40,0xfe,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x0e,0x00 -+// 20363 例 ; -+,0x08,0x0d,0x08,0x10,0x10,0x31,0x51,0x12,0x15,0x19,0x10,0x10,0x11,0x11,0x12,0x14,0x01,0xf1,0x81,0x89,0xe9,0x29,0x29,0x29,0x49,0x49,0x89,0x81,0x01,0x01,0x05,0x02 -+// 20364 侌 ; -+,0x00,0x01,0x02,0x04,0x18,0x6f,0x00,0x00,0x0f,0x00,0x3f,0x01,0x02,0x04,0x0f,0x00,0x80,0x40,0x20,0x98,0x47,0xfa,0x10,0x20,0xf8,0x00,0xff,0x00,0x10,0x08,0xfc,0x08 -+// 20365 侍 ; -+,0x04,0x04,0x0b,0x08,0x10,0x37,0x50,0x10,0x13,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0x08,0xff,0x08,0x08,0xc8,0x88,0x08,0x28,0x10 -+// 20366 侎 ; -+,0x08,0x0c,0x0a,0x19,0x11,0x31,0x57,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x20,0x24,0x26,0x24,0xa8,0x30,0xff,0x60,0xb0,0xa8,0x2c,0x27,0x22,0x20,0x20,0x00 -+// 20367 侏 ; -+,0x04,0x06,0x0d,0x09,0x19,0x12,0x30,0x53,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x20,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x70,0xb0,0xa8,0x24,0x23,0x22,0x20,0x00 -+// 20368 侐 ; -+,0x08,0x0c,0x08,0x13,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x1f,0x10,0x00,0x20,0x30,0x40,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0xff,0x00,0x00 -+// 20369 侑 ; -+,0x08,0x0c,0x08,0x13,0x10,0x31,0x51,0x13,0x13,0x15,0x19,0x11,0x11,0x11,0x11,0x11,0x40,0x40,0x40,0xfe,0x80,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 20370 侒 ; -+,0x08,0x0c,0x0b,0x12,0x14,0x38,0x50,0x17,0x10,0x11,0x10,0x10,0x10,0x10,0x17,0x00,0xc0,0x42,0xff,0x02,0x44,0x40,0x82,0xff,0x88,0x08,0x88,0x50,0x30,0xcc,0x04,0x00 -+// 20371 侓 ; -+,0x08,0x0c,0x0b,0x18,0x17,0x30,0x53,0x10,0x17,0x10,0x10,0x17,0x10,0x10,0x10,0x00,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x00 -+// 20372 侔 ; -+,0x04,0x06,0x0c,0x09,0x1b,0x11,0x31,0x53,0x12,0x14,0x17,0x10,0x10,0x10,0x10,0x00,0x40,0x60,0xc4,0x1e,0xf3,0x22,0x24,0xfe,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x00 -+// 20373 侕 ; -+,0x08,0x0f,0x08,0x18,0x10,0x33,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0xff,0x20,0x20,0x40,0xfe,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x8a,0x04,0x00 -+// 20374 侖 ; -+,0x00,0x00,0x01,0x02,0x04,0x1b,0x60,0x0f,0x09,0x09,0x0f,0x09,0x09,0x09,0x08,0x00,0x80,0x80,0x40,0x30,0x0c,0xf7,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0x14,0x08,0x00 -+// 20375 侗 ; -+,0x08,0x0f,0x0a,0x1a,0x12,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0xff,0x01,0xfd,0x01,0x01,0xfd,0x85,0x85,0x85,0xfd,0x85,0x01,0x05,0x02,0x00 -+// 20376 侘 ; -+,0x08,0x0c,0x09,0x13,0x12,0x30,0x33,0x50,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x40,0x22,0xff,0x02,0x04,0x1c,0xe0,0x40,0x4f,0xf0,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 20377 侙 ; -+,0x08,0x0c,0x08,0x17,0x10,0x38,0x50,0x13,0x10,0x10,0x10,0x10,0x10,0x13,0x10,0x10,0x10,0x14,0x12,0xff,0x10,0x10,0x10,0xf0,0x90,0x88,0x88,0x89,0xe5,0x85,0x02,0x00 -+// 20378 侚 ; -+,0x04,0x06,0x0d,0x09,0x12,0x3b,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x00,0x80,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x12,0x12,0xf2,0x02,0x0a,0x04,0x00 -+// 20379 供 ; -+,0x08,0x0c,0x08,0x10,0x1b,0x30,0x50,0x10,0x10,0x17,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x88,0x88,0x88,0xfe,0x88,0x88,0x88,0x88,0xff,0x90,0x88,0x0c,0x06,0x04,0x00 -+// 20380 侜 ; -+,0x04,0x06,0x0d,0x09,0x11,0x39,0x51,0x17,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x00,0x20,0x40,0xfc,0x04,0x44,0x34,0x24,0xff,0x04,0x44,0x34,0x24,0x04,0x14,0x08,0x00 -+// 20381 依 ; -+,0x08,0x0c,0x08,0x1f,0x18,0x28,0x28,0x49,0x09,0x0a,0x0c,0x08,0x08,0x09,0x08,0x00,0x80,0x60,0x40,0xff,0x40,0x62,0xa7,0x98,0x90,0x98,0x88,0x94,0xa7,0xc2,0x80,0x00 -+// 20382 侞 ; -+,0x05,0x05,0x09,0x09,0x17,0x31,0x51,0x12,0x12,0x12,0x11,0x10,0x11,0x12,0x14,0x00,0x00,0x80,0x00,0x0f,0xe9,0x49,0x49,0x49,0x49,0x49,0x89,0xc9,0x6f,0x29,0x00,0x00 -+// 20383 侟 ; -+,0x08,0x0c,0x08,0x1b,0x10,0x31,0x51,0x13,0x15,0x19,0x11,0x11,0x11,0x11,0x11,0x11,0x40,0x40,0x42,0xff,0x80,0x7e,0x04,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x28,0x10 -+// 20384 侠 ; -+,0x04,0x06,0x04,0x0b,0x08,0x1a,0x29,0x49,0x0f,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x20,0x20,0x20,0xfe,0x24,0x26,0xa4,0x28,0xff,0x50,0x50,0x88,0x8c,0x07,0x02,0x00 -+// 20385 価 ; -+,0x04,0x07,0x0c,0x08,0x18,0x1b,0x2a,0x4a,0x0a,0x0a,0x0a,0x0a,0x0a,0x0b,0x0a,0x00,0x00,0xff,0x50,0x50,0x50,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0xfe,0x02,0x00 -+// 20386 侢 ; -+,0x08,0x0f,0x08,0x18,0x13,0x32,0x52,0x13,0x12,0x12,0x17,0x12,0x12,0x12,0x12,0x00,0x00,0xff,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x02,0x0a,0x04,0x00 -+// 20387 侣 ; -+,0x08,0x0d,0x09,0x19,0x11,0x31,0x51,0x10,0x13,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20388 侤 ; -+,0x04,0x06,0x0d,0x08,0x18,0x13,0x30,0x50,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x10,0x20,0x24,0xff,0x24,0x28,0xff,0x20,0x42,0xff,0x40,0x40,0xfe,0x42,0x02,0x0a,0x04 -+// 20389 侥 ; -+,0x08,0x0c,0x08,0x17,0x18,0x30,0x50,0x17,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x00,0x40,0x40,0x7e,0xc0,0x48,0x31,0xd1,0x0d,0x02,0xfe,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 20390 侦 ; -+,0x04,0x06,0x04,0x0c,0x08,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x09,0x0a,0x20,0x20,0x3f,0x20,0x20,0xfe,0x02,0x22,0x22,0x22,0x22,0x52,0x48,0x86,0x02,0x00 -+// 20391 侧 ; -+,0x08,0x0f,0x0a,0x12,0x1a,0x32,0x52,0x12,0x12,0x12,0x11,0x11,0x12,0x14,0x18,0x00,0x02,0xe2,0x22,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x4a,0x22,0x32,0x2a,0x04,0x00 -+// 20392 侨 ; -+,0x08,0x0d,0x08,0x10,0x17,0x30,0x51,0x13,0x14,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x1c,0xe0,0x40,0x40,0xff,0xd0,0x8c,0x07,0x8a,0x88,0x88,0x08,0x08,0x08,0x08,0x00 -+// 20393 侩 ; -+,0x08,0x0c,0x08,0x08,0x11,0x12,0x35,0x50,0x10,0x17,0x10,0x10,0x11,0x12,0x17,0x10,0x40,0x40,0x60,0x90,0x0c,0x07,0xfa,0x00,0x04,0xfe,0x80,0x90,0x08,0x7c,0xcc,0x08 -+// 20394 侪 ; -+,0x04,0x04,0x0b,0x09,0x10,0x30,0x50,0x11,0x16,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x40,0x20,0xfe,0x08,0x90,0x60,0x60,0x98,0x06,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 20395 侫 ; -+,0x08,0x0c,0x08,0x1b,0x11,0x31,0x51,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x11,0x16,0x40,0x30,0x20,0xff,0x00,0x00,0xfe,0x40,0x40,0xff,0x88,0xc8,0x30,0x4c,0x86,0x04 -+// 20396 侬 ; -+,0x08,0x0c,0x08,0x13,0x12,0x34,0x50,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x22,0xff,0x42,0x64,0xa0,0xa6,0x98,0x90,0x88,0x84,0xb7,0xe2,0x80,0x00 -+// 20397 侭 ; -+,0x04,0x07,0x0d,0x09,0x11,0x31,0x51,0x11,0x12,0x12,0x14,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x02,0x02,0xfe,0x10,0x18,0x0c,0x47,0x32,0x10,0x40,0x30,0x18,0x08,0x00 -+// 20398 侮 ; -+,0x09,0x0d,0x09,0x1a,0x15,0x31,0x51,0x11,0x17,0x11,0x11,0x11,0x11,0x10,0x10,0x10,0x00,0x00,0xff,0x00,0xfc,0x44,0x24,0x24,0xff,0x44,0x24,0x24,0xff,0x04,0x14,0x08 -+// 20399 侯 ; -+,0x08,0x0d,0x08,0x10,0x17,0x31,0x51,0x11,0x12,0x17,0x10,0x10,0x10,0x11,0x12,0x14,0x00,0xf8,0x08,0x08,0xff,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x90,0x0c,0x07,0x02 -+// 20400 侰 ; -+,0x08,0x0f,0x08,0x18,0x13,0x30,0x50,0x13,0x10,0x11,0x11,0x12,0x12,0x14,0x18,0x00,0x00,0xfc,0x44,0x44,0xff,0x44,0x84,0xfc,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 20401 侱 ; -+,0x04,0x07,0x0d,0x09,0x19,0x11,0x30,0x53,0x10,0x10,0x13,0x10,0x10,0x10,0x17,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 20402 侲 ; -+,0x08,0x0f,0x0a,0x12,0x12,0x32,0x53,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x00,0xfe,0x00,0x00,0xfe,0x00,0xff,0x50,0x54,0x56,0x48,0x4c,0x57,0x62,0x40,0x00 -+// 20403 侳 ; -+,0x04,0x06,0x0d,0x09,0x11,0x1a,0x32,0x54,0x10,0x13,0x10,0x10,0x10,0x17,0x10,0x00,0x20,0x20,0x24,0x24,0x24,0xaa,0x69,0x31,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 20404 侴 ; -+,0x00,0x01,0x02,0x04,0x1b,0x60,0x1f,0x04,0x04,0x1f,0x08,0x08,0x0b,0x7c,0x00,0x00,0x80,0x40,0x20,0x18,0xf7,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xc4,0x14,0x08,0x00 -+// 20405 侵 ; -+,0x08,0x0d,0x08,0x11,0x10,0x39,0x50,0x13,0x14,0x15,0x10,0x10,0x10,0x10,0x17,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x01,0xfa,0x88,0x90,0x60,0xd8,0x07,0x00 -+// 20406 侶 ; -+,0x04,0x07,0x0d,0x09,0x19,0x19,0x28,0x48,0x0b,0x0a,0x0a,0x0a,0x0a,0x0b,0x0a,0x00,0x00,0xfe,0x02,0x02,0x02,0xfe,0x20,0x40,0xff,0x01,0x01,0x01,0x01,0xff,0x01,0x00 -+// 20407 侷 ; -+,0x08,0x0d,0x09,0x09,0x11,0x19,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x00,0x00,0xfe,0x02,0x02,0xfe,0x00,0xff,0x01,0x79,0x49,0x79,0x49,0x01,0x05,0x02,0x00 -+// 20408 侸 ; -+,0x08,0x0f,0x08,0x18,0x11,0x31,0x31,0x51,0x11,0x10,0x11,0x10,0x10,0x10,0x17,0x00,0x00,0xfe,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x08,0x8c,0xc8,0x90,0xff,0x00 -+// 20409 侹 ; -+,0x08,0x0f,0x08,0x11,0x11,0x3a,0x57,0x10,0x10,0x14,0x12,0x11,0x11,0x12,0x1c,0x00,0x00,0x87,0xb8,0x08,0x08,0x08,0xff,0x88,0x88,0x88,0xbe,0x00,0x00,0xc0,0x3e,0x00 -+// 20410 侺 ; -+,0x08,0x0c,0x0a,0x12,0x13,0x30,0x50,0x10,0x13,0x1c,0x13,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x22,0x22,0xfe,0x20,0x50,0x8c,0x27,0x12,0xfc,0x04,0x08,0x08,0x10,0x20 -+// 20411 侻 ; -+,0x08,0x0d,0x08,0x1b,0x12,0x32,0x52,0x13,0x12,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x08,0x0c,0x90,0xfc,0x04,0x04,0x04,0xfc,0x94,0x90,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 20412 侼 ; -+,0x08,0x0c,0x0b,0x10,0x1b,0x34,0x54,0x11,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0xfe,0x02,0x02,0xfc,0x08,0x10,0xff,0x20,0x20,0x20,0xa0,0x40 -+// 20413 侽 ; -+,0x04,0x07,0x0d,0x09,0x19,0x19,0x29,0x49,0x08,0x0b,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0xfe,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 20414 侾 ; -+,0x04,0x06,0x0d,0x08,0x10,0x37,0x50,0x10,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x00,0x20,0x24,0xfe,0x24,0x28,0xff,0x20,0x7c,0x88,0x12,0xff,0x10,0x10,0x50,0x20,0x00 -+// 20415 便 ; -+,0x04,0x07,0x0c,0x0b,0x1a,0x33,0x52,0x12,0x13,0x12,0x11,0x10,0x10,0x10,0x11,0x16,0x00,0xff,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x20,0x20,0xc0,0x60,0x98,0x07,0x02 -+// 20416 俀 ; -+,0x08,0x0f,0x08,0x19,0x10,0x30,0x50,0x10,0x17,0x10,0x11,0x10,0x10,0x10,0x17,0x00,0x1e,0xe0,0x44,0x26,0xac,0x48,0x90,0x80,0xff,0x88,0x08,0xf0,0x38,0xc6,0x02,0x00 -+// 20417 俁 ; -+,0x08,0x0c,0x08,0x1a,0x12,0x32,0x52,0x13,0x10,0x17,0x10,0x10,0x10,0x11,0x16,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0xfe,0x22,0xff,0x20,0x50,0x8c,0x07,0x02,0x00 -+// 20418 係 ; -+,0x04,0x05,0x0c,0x08,0x18,0x19,0x28,0x48,0x09,0x08,0x08,0x08,0x09,0x0a,0x08,0x00,0x0e,0xf8,0x20,0x64,0x8e,0xf8,0x30,0xc4,0xfe,0x22,0xa8,0xa4,0x26,0xa4,0x40,0x00 -+// 20419 促 ; -+,0x08,0x0d,0x19,0x11,0x31,0x51,0x11,0x10,0x11,0x11,0x11,0x11,0x12,0x14,0x18,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x24,0x20,0x24,0x3e,0x20,0x20,0xa0,0x60,0x1f,0x00 -+// 20420 俄 ; -+,0x08,0x0c,0x0b,0x11,0x1f,0x31,0x51,0x11,0x11,0x13,0x15,0x11,0x11,0x17,0x12,0x00,0x10,0xd4,0x12,0x12,0xff,0x10,0x12,0x53,0x96,0x14,0x08,0x18,0x25,0x45,0x02,0x00 -+// 20421 俅 ; -+,0x08,0x0c,0x08,0x1b,0x10,0x32,0x51,0x11,0x11,0x10,0x11,0x17,0x12,0x10,0x10,0x00,0x20,0x28,0x24,0xff,0x20,0x24,0x26,0xa8,0x30,0x68,0xa4,0x23,0x22,0xa0,0x40,0x00 -+// 20422 俆 ; -+,0x04,0x06,0x0c,0x08,0x19,0x32,0x54,0x10,0x17,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x20,0x20,0x50,0x88,0x06,0xfb,0x21,0x20,0xfe,0x20,0x28,0xa4,0x26,0xa4,0x40,0x00 -+// 20423 俇 ; -+,0x08,0x0c,0x08,0x15,0x1b,0x35,0x58,0x11,0x11,0x12,0x14,0x18,0x10,0x15,0x12,0x00,0x00,0x80,0xbf,0x08,0x08,0x08,0x88,0xbe,0x88,0x88,0x88,0x88,0x88,0x7f,0x00,0x00 -+// 20424 俈 ; -+,0x04,0x07,0x0d,0x09,0x11,0x1a,0x34,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20425 俉 ; -+,0x08,0x0d,0x08,0x18,0x13,0x30,0x50,0x17,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x40,0x40,0xfc,0x84,0x84,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20426 俊 ; -+,0x04,0x06,0x04,0x09,0x0b,0x18,0x29,0x4a,0x0c,0x08,0x09,0x0a,0x08,0x08,0x0b,0x00,0x40,0x60,0xc4,0x1e,0xf3,0x8a,0x04,0x82,0xfc,0x88,0x48,0x50,0x30,0xcc,0x03,0x00 -+// 20427 俋 ; -+,0x08,0x0d,0x09,0x11,0x11,0x38,0x53,0x12,0x12,0x12,0x13,0x12,0x12,0x12,0x11,0x00,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0x22,0xfe,0x00,0x01,0x01,0xff,0x00 -+// 20428 俌 ; -+,0x08,0x0c,0x08,0x17,0x10,0x33,0x52,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x00,0x20,0x28,0x2a,0xff,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x24,0x00 -+// 20429 俍 ; -+,0x08,0x0c,0x0b,0x12,0x12,0x3b,0x52,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x80,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x20,0x24,0x2c,0x10,0x8c,0x07,0x02 -+// 20430 俎 ; -+,0x08,0x08,0x08,0x14,0x12,0x22,0x40,0x08,0x08,0x08,0x14,0x12,0x22,0x41,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 20431 俏 ; -+,0x04,0x06,0x0d,0x08,0x19,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x24,0x26,0xa8,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x0a,0x04,0x00 -+// 20432 俐 ; -+,0x08,0x0c,0x0b,0x19,0x11,0x37,0x51,0x13,0x13,0x15,0x15,0x19,0x11,0x11,0x11,0x00,0x42,0xe2,0x02,0x0a,0x0a,0xea,0x8a,0x4a,0x6a,0x4a,0x0a,0x02,0x02,0x1e,0x04,0x00 -+// 20433 俑 ; -+,0x08,0x0b,0x08,0x10,0x13,0x32,0x52,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x00,0x04,0xfe,0x48,0x30,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x24,0x00 -+// 20434 俒 ; -+,0x08,0x0c,0x0b,0x1a,0x14,0x33,0x50,0x10,0x17,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x40,0x22,0xff,0x02,0x04,0xfc,0x00,0x00,0xff,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 20435 俓 ; -+,0x08,0x0c,0x0b,0x10,0x19,0x32,0x54,0x12,0x11,0x13,0x10,0x10,0x10,0x10,0x17,0x10,0x00,0x00,0xfe,0x00,0x24,0x48,0x90,0x4c,0x24,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 20436 俔 ; -+,0x08,0x0d,0x09,0x11,0x11,0x31,0x51,0x11,0x11,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x90,0x90,0x12,0x12,0x12,0x0e,0x00 -+// 20437 俕 ; -+,0x04,0x06,0x04,0x09,0x09,0x1a,0x28,0x4b,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x40,0x30,0x22,0xff,0x02,0x24,0x20,0xff,0x70,0xa8,0xac,0x26,0x23,0x22,0x20,0x00 -+// 20438 俖 ; -+,0x04,0x07,0x0c,0x08,0x18,0x10,0x31,0x56,0x10,0x13,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0xff,0x20,0x30,0x68,0xa6,0x22,0x20,0x20,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20439 俗 ; -+,0x08,0x0c,0x09,0x1a,0x14,0x30,0x50,0x11,0x12,0x15,0x11,0x11,0x11,0x11,0x11,0x00,0x90,0x8c,0x26,0x24,0x20,0x50,0x8c,0x07,0x02,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20440 俘 ; -+,0x08,0x0f,0x0a,0x19,0x11,0x33,0x50,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x00,0x3e,0xe0,0x44,0x26,0x28,0xfe,0x04,0x18,0x20,0xff,0x20,0x20,0x20,0xa0,0x40,0x00 -+// 20441 俙 ; -+,0x04,0x06,0x08,0x08,0x10,0x39,0x57,0x10,0x11,0x13,0x15,0x19,0x11,0x11,0x10,0x10,0x04,0x86,0x48,0x30,0xc8,0x44,0xff,0xa0,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 20442 俚 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x51,0x11,0x10,0x10,0x13,0x10,0x10,0x10,0x17,0x10,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 20443 俛 ; -+,0x04,0x04,0x08,0x09,0x12,0x15,0x31,0x51,0x11,0x11,0x10,0x10,0x10,0x11,0x12,0x14,0x80,0x80,0xfe,0x04,0x08,0xfe,0x22,0x22,0xfe,0x52,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 20444 俜 ; -+,0x08,0x0c,0x09,0x11,0x11,0x39,0x51,0x10,0x17,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff,0x80,0xfc,0x84,0x04,0x04,0x14,0x08 -+// 20445 保 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x50,0x17,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x20,0xff,0x70,0xb0,0xa8,0x2c,0x27,0x22,0x20,0x00 -+// 20446 俞 ; -+,0x00,0x01,0x02,0x04,0x1f,0x60,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x15,0x12,0x00,0x80,0x40,0x20,0x10,0xfc,0x07,0x02,0x24,0x24,0x24,0x24,0x24,0x04,0x14,0x08,0x00 -+// 20447 俟 ; -+,0x04,0x06,0x0d,0x0b,0x18,0x11,0x31,0x51,0x12,0x17,0x10,0x10,0x10,0x11,0x12,0x14,0x80,0xc8,0x04,0xfe,0x04,0x00,0xfc,0x20,0x20,0xff,0x20,0x50,0x88,0x0c,0x06,0x04 -+// 20448 俠 ; -+,0x08,0x0c,0x08,0x1b,0x10,0x31,0x51,0x11,0x12,0x14,0x10,0x10,0x10,0x11,0x12,0x14,0x20,0x20,0x20,0xff,0x20,0x24,0x24,0x2a,0xb1,0xa1,0x50,0x50,0x88,0x04,0x03,0x02 -+// 20449 信 ; -+,0x04,0x06,0x0c,0x0b,0x18,0x19,0x28,0x49,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x40,0x30,0x20,0xff,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20450 俢 ; -+,0x04,0x06,0x04,0x08,0x09,0x1a,0x28,0x49,0x0e,0x09,0x08,0x08,0x0b,0x08,0x08,0x0b,0x80,0x84,0xfe,0x84,0x48,0x30,0x6f,0x92,0x68,0x9c,0x34,0xc6,0x0c,0x30,0xc0,0x00 -+// 20451 俣 ; -+,0x04,0x07,0x0d,0x09,0x19,0x30,0x53,0x10,0x10,0x17,0x10,0x10,0x10,0x11,0x16,0x00,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x20,0x22,0xff,0x50,0x58,0x8c,0x07,0x02,0x00 -+// 20452 俤 ; -+,0x09,0x0c,0x08,0x1b,0x10,0x3b,0x52,0x12,0x13,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x08,0x8c,0x90,0xfe,0x22,0xfe,0x20,0x20,0xfe,0x62,0xa2,0x22,0x2a,0x24,0x20,0x20 -+// 20453 俥 ; -+,0x08,0x0c,0x0b,0x18,0x11,0x31,0x51,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x20,0xff,0x20,0x20,0x20,0x20 -+// 20454 俦 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x20,0x57,0x10,0x10,0x11,0x11,0x12,0x14,0x18,0x10,0x10,0x20,0x20,0xfe,0x20,0xfe,0x40,0xff,0x88,0x88,0xff,0x48,0x28,0x28,0x08,0x28,0x10 -+// 20455 俧 ; -+,0x04,0x06,0x04,0x0b,0x08,0x18,0x28,0x4b,0x08,0x08,0x0a,0x0a,0x0a,0x0c,0x08,0x08,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xfe,0x40,0x24,0xb2,0xa3,0x85,0x84,0x7c,0x00 -+// 20456 俨 ; -+,0x08,0x0f,0x08,0x1a,0x11,0x31,0x53,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x00,0xff,0x54,0x56,0x54,0x58,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20457 俩 ; -+,0x08,0x0f,0x08,0x10,0x13,0x32,0x52,0x12,0x12,0x12,0x12,0x13,0x12,0x12,0x12,0x00,0x00,0xff,0x48,0x48,0xff,0x49,0x49,0x49,0x49,0xb5,0x95,0x23,0x41,0x05,0x02,0x00 -+// 20458 俪 ; -+,0x08,0x0f,0x08,0x18,0x13,0x3a,0x52,0x13,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0xff,0x00,0x00,0xde,0x52,0x52,0x5a,0xd6,0xd6,0x52,0x52,0x52,0x5a,0x94,0x00 -+// 20459 俫 ; -+,0x04,0x04,0x0b,0x08,0x11,0x30,0x50,0x13,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x20,0x20,0xfe,0x24,0x26,0xa4,0xa8,0xff,0x20,0x70,0xa8,0x24,0x23,0x22,0x20,0x20 -+// 20460 俬 ; -+,0x08,0x0c,0x0b,0x19,0x11,0x37,0x51,0x13,0x13,0x15,0x15,0x19,0x11,0x11,0x11,0x00,0x00,0x64,0x84,0x04,0x04,0xe8,0x08,0x88,0x50,0x50,0x14,0x22,0x2f,0x7b,0x22,0x00 -+// 20461 俭 ; -+,0x04,0x06,0x0c,0x08,0x19,0x32,0x55,0x10,0x10,0x12,0x11,0x11,0x10,0x17,0x10,0x00,0x20,0x20,0x50,0x88,0x06,0x13,0xfa,0x00,0x88,0x4c,0x68,0x50,0x10,0xff,0x00,0x00 -+// 20462 修 ; -+,0x08,0x0c,0x18,0x11,0x35,0x56,0x14,0x15,0x14,0x14,0x13,0x10,0x13,0x10,0x13,0x00,0x80,0x80,0xfc,0x84,0x48,0x30,0x4c,0xa7,0x72,0xcc,0x30,0xc6,0x18,0x60,0x80,0x00 -+// 20463 俯 ; -+,0x08,0x0c,0x0b,0x1a,0x12,0x32,0x52,0x12,0x13,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x40,0x20,0xff,0x44,0x64,0x44,0xbf,0x84,0xa4,0x94,0x94,0x84,0x84,0x94,0x88,0x00 -+// 20464 俰 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x37,0x51,0x11,0x12,0x12,0x14,0x14,0x18,0x10,0x10,0x00,0x00,0x60,0x8f,0x89,0x89,0xe9,0x89,0x89,0xc9,0xa9,0x89,0x8f,0x89,0x89,0x80,0x00 -+// 20465 俱 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x51,0x11,0x11,0x11,0x17,0x10,0x11,0x13,0x1c,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xff,0x88,0xc4,0x06,0x04,0x00 -+// 20466 俲 ; -+,0x08,0x0d,0x08,0x1f,0x12,0x32,0x54,0x14,0x1a,0x11,0x11,0x12,0x14,0x18,0x10,0x00,0x08,0x08,0x88,0xe8,0x9e,0x4a,0x6a,0x4a,0x8a,0x0a,0x92,0x52,0x22,0x4a,0x84,0x00 -+// 20467 俳 ; -+,0x08,0x0c,0x18,0x17,0x30,0x50,0x17,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00,0x90,0x90,0x90,0x9f,0x90,0x90,0x9e,0x90,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x00 -+// 20468 俴 ; -+,0x08,0x0c,0x08,0x13,0x10,0x38,0x53,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x17,0x00,0x50,0x48,0x4e,0xf0,0x4c,0x31,0x59,0xa7,0x90,0xf8,0x44,0x48,0x31,0xd9,0x07,0x00 -+// 20469 俵 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x30,0x57,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x60,0x44,0xe6,0xa8,0x90,0x8c,0xa7,0xc2,0x80 -+// 20470 俶 ; -+,0x09,0x0d,0x09,0x19,0x11,0x31,0x3f,0x51,0x15,0x17,0x15,0x19,0x11,0x15,0x12,0x00,0x00,0x00,0x3f,0xd1,0x11,0x11,0xd2,0x12,0x12,0x8c,0x4c,0x6c,0x56,0x23,0x42,0x00 -+// 20471 俷 ; -+,0x08,0x0c,0x0b,0x12,0x1a,0x33,0x52,0x12,0x13,0x12,0x12,0x12,0x14,0x16,0x19,0x00,0x00,0x00,0xbe,0xaa,0xaa,0xaa,0xaa,0xbe,0xa2,0xa0,0xa0,0xa1,0xa1,0xa1,0x1f,0x00 -+// 20472 俸 ; -+,0x08,0x0c,0x0b,0x10,0x1b,0x30,0x57,0x10,0x13,0x1d,0x10,0x10,0x13,0x10,0x10,0x10,0x40,0x40,0xfe,0x40,0xfc,0x40,0xff,0x88,0x24,0xfb,0x20,0x20,0xfe,0x20,0x20,0x20 -+// 20473 俹 ; -+,0x08,0x0f,0x08,0x18,0x10,0x3b,0x52,0x12,0x12,0x13,0x10,0x10,0x10,0x10,0x17,0x00,0x00,0xff,0x50,0x50,0x50,0xde,0x02,0x02,0x02,0xde,0x50,0x50,0x50,0x50,0xff,0x00 -+// 20474 俺 ; -+,0x08,0x0c,0x0b,0x10,0x19,0x32,0x5f,0x12,0x13,0x12,0x12,0x13,0x12,0x10,0x10,0x00,0x40,0x40,0xfe,0x90,0x08,0x44,0xfb,0x48,0xf8,0x48,0x48,0xf8,0x41,0x41,0x3f,0x00 -+// 20475 俻 ; -+,0x04,0x06,0x0d,0x09,0x1a,0x34,0x50,0x13,0x1d,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x80,0xfc,0x84,0x88,0x50,0x30,0xcc,0x07,0xfe,0x24,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 20476 俼 ; -+,0x08,0x0c,0x1b,0x10,0x31,0x53,0x10,0x13,0x12,0x13,0x12,0x13,0x12,0x12,0x12,0x12,0x40,0x20,0xfe,0x88,0x04,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 20477 俽 ; -+,0x08,0x0c,0x09,0x12,0x12,0x33,0x52,0x12,0x12,0x12,0x14,0x14,0x14,0x18,0x18,0x10,0x10,0x58,0x90,0x10,0x1f,0xd2,0xa8,0x88,0x88,0x88,0x94,0x94,0x92,0xa3,0xc2,0x80 -+// 20478 俾 ; -+,0x04,0x04,0x0b,0x0a,0x1b,0x2a,0x2a,0x4b,0x0a,0x09,0x0f,0x08,0x08,0x08,0x08,0x08,0x20,0x40,0xfe,0x22,0xfe,0x22,0x42,0xfe,0xa2,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 20479 俿 ; -+,0x08,0x0c,0x08,0x13,0x3a,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x14,0x1b,0x00,0x20,0x3c,0x20,0xff,0x22,0x3c,0xe2,0x3e,0x00,0x78,0x48,0x48,0x49,0x89,0x07,0x00 -+// 20480 倀 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x51,0x11,0x17,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x04,0xfe,0x00,0xfc,0x00,0xfc,0x00,0x02,0xff,0x44,0x2c,0x10,0x4c,0x87,0x02,0x00 -+// 20481 倁 ; -+,0x09,0x0d,0x09,0x13,0x12,0x34,0x38,0x57,0x10,0x10,0x11,0x11,0x12,0x14,0x18,0x00,0x00,0x80,0x1e,0xf2,0x92,0x92,0x92,0xf2,0x92,0x92,0x52,0x72,0x5e,0x12,0x10,0x00 -+// 20482 倂 ; -+,0x08,0x0c,0x09,0x1b,0x11,0x31,0x51,0x11,0x17,0x11,0x11,0x11,0x12,0x12,0x14,0x00,0x84,0xc6,0x08,0xde,0x08,0x08,0x08,0x08,0xdf,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 20483 倃 ; -+,0x09,0x0d,0x09,0x12,0x19,0x31,0x50,0x11,0x12,0x1c,0x13,0x12,0x12,0x12,0x13,0x10,0x08,0x08,0xec,0x2b,0x29,0x48,0x88,0x60,0x18,0x07,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 20484 倄 ; -+,0x08,0x0c,0x08,0x10,0x11,0x27,0x50,0x11,0x13,0x15,0x19,0x11,0x11,0x11,0x11,0x00,0x84,0x48,0x30,0xcc,0x44,0xff,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08,0x00 -+// 20485 倅 ; -+,0x08,0x0c,0x0b,0x11,0x19,0x31,0x52,0x12,0x14,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0x40,0x24,0xfe,0x08,0x08,0x08,0x94,0x62,0x40,0x22,0xff,0x20,0x20,0x20,0x20,0x00 -+// 20486 倆 ; -+,0x04,0x07,0x0c,0x08,0x13,0x3a,0x53,0x12,0x12,0x13,0x13,0x12,0x12,0x12,0x12,0x00,0x00,0xff,0x20,0x20,0xfe,0x22,0x32,0xaa,0xaa,0x76,0x72,0x22,0x22,0x2a,0x24,0x00 -+// 20487 倇 ; -+,0x08,0x0c,0x0b,0x12,0x15,0x31,0x51,0x12,0x12,0x15,0x10,0x10,0x11,0x12,0x1c,0x00,0x40,0x22,0xff,0x02,0x00,0x1e,0xd2,0x52,0x52,0x5a,0x94,0x90,0x12,0x12,0x0e,0x00 -+// 20488 倈 ; -+,0x08,0x0c,0x08,0x17,0x19,0x31,0x51,0x12,0x14,0x18,0x10,0x11,0x12,0x14,0x10,0x00,0x20,0x20,0x20,0xfe,0x28,0x28,0x34,0xb2,0x62,0x70,0xa8,0x2c,0x27,0x22,0x20,0x00 -+// 20489 倉 ; -+,0x00,0x01,0x03,0x04,0x18,0x67,0x04,0x04,0x07,0x08,0x0f,0x14,0x14,0x27,0x44,0x00,0x80,0x40,0x20,0x98,0x07,0xfa,0x88,0x48,0xf8,0x00,0xf8,0x08,0x08,0xf8,0x08,0x00 -+// 20490 倊 ; -+,0x08,0x0c,0x08,0x11,0x1a,0x34,0x51,0x13,0x10,0x10,0x12,0x12,0x12,0x14,0x10,0x00,0x98,0xd0,0x90,0x4c,0x67,0x92,0x08,0xfc,0x08,0xc0,0xa4,0xb3,0xa9,0x8c,0xf8,0x00 -+// 20491 個 ; -+,0x08,0x0f,0x0a,0x1a,0x13,0x3a,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfa,0x8a,0x8a,0xfa,0x8a,0x02,0xfe,0x02,0x00 -+// 20492 倌 ; -+,0x08,0x0c,0x0b,0x1a,0x14,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x22,0xff,0x02,0x04,0xfc,0x04,0xfc,0x04,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 20493 倍 ; -+,0x04,0x04,0x0b,0x09,0x18,0x28,0x08,0x0b,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x40,0x20,0xff,0x08,0x8c,0xc8,0x90,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20494 倎 ; -+,0x08,0x0c,0x08,0x13,0x1a,0x32,0x53,0x12,0x12,0x12,0x1f,0x11,0x11,0x13,0x14,0x00,0x90,0x90,0x90,0xfc,0x94,0x94,0xfc,0x94,0x94,0x94,0xff,0x10,0x88,0x04,0x04,0x00 -+// 20495 倏 ; -+,0x08,0x0c,0x18,0x11,0x36,0x54,0x14,0x17,0x14,0x17,0x14,0x14,0x10,0x11,0x16,0x00,0x80,0x80,0xfe,0x84,0x48,0x30,0xcf,0x22,0x28,0xfe,0x20,0x50,0x88,0x04,0x03,0x00 -+// 20496 倐 ; -+,0x08,0x0c,0x08,0x10,0x14,0x35,0x54,0x15,0x14,0x14,0x14,0x11,0x10,0x10,0x10,0x13,0x40,0x7e,0x44,0xc4,0xa8,0x10,0x6c,0x83,0x20,0xa4,0xa6,0x28,0x30,0x48,0x87,0x02 -+// 20497 們 ; -+,0x08,0x0f,0x0a,0x13,0x1a,0x33,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0xde,0x52,0xde,0x52,0xde,0x52,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 20498 倒 ; -+,0x08,0x0f,0x09,0x11,0x1a,0x34,0x57,0x11,0x11,0x17,0x11,0x11,0x11,0x11,0x17,0x10,0x02,0xe2,0x02,0x02,0x0a,0x4a,0xea,0x4a,0x0a,0xea,0x0a,0x0a,0x02,0xe2,0x0a,0x04 -+// 20499 倓 ; -+,0x08,0x0c,0x09,0x19,0x12,0x30,0x51,0x12,0x14,0x12,0x12,0x14,0x10,0x11,0x12,0x14,0x40,0x40,0x48,0x4c,0x50,0xa0,0x10,0x48,0x44,0x48,0x50,0xa0,0x90,0x0c,0x07,0x02 -+// 20500 倔 ; -+,0x08,0x0d,0x09,0x19,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x12,0x14,0x18,0x00,0xfe,0x02,0x02,0xfe,0x10,0x52,0x52,0x7e,0x52,0x10,0x92,0x92,0x92,0xfe,0x82 -+// 20501 倕 ; -+,0x08,0x0d,0x08,0x17,0x11,0x31,0x57,0x11,0x11,0x11,0x17,0x10,0x10,0x10,0x17,0x10,0x00,0xfc,0x20,0xff,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x20,0x20,0x20,0xfe,0x00 -+// 20502 倖 ; -+,0x08,0x0c,0x09,0x10,0x10,0x33,0x50,0x10,0x13,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x84,0x48,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 20503 倗 ; -+,0x08,0x0f,0x0a,0x12,0x1b,0x32,0x52,0x12,0x13,0x12,0x12,0x12,0x14,0x15,0x18,0x00,0x00,0xcf,0x49,0x49,0xcf,0x49,0x49,0x49,0xcf,0x49,0x49,0x49,0x51,0x55,0xa2,0x00 -+// 20504 倘 ; -+,0x08,0x0c,0x09,0x08,0x10,0x13,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x20,0x24,0x26,0xa4,0xa8,0xfe,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x82,0x0a,0x04,0x00 -+// 20505 候 ; -+,0x08,0x0d,0x08,0x13,0x14,0x34,0x54,0x14,0x15,0x17,0x14,0x14,0x10,0x11,0x12,0x00,0x00,0xfc,0x08,0xff,0x80,0x80,0xfe,0xa0,0x20,0xff,0x50,0x48,0x8c,0x07,0x02,0x00 -+// 20506 倚 ; -+,0x08,0x0c,0x0b,0x10,0x10,0x31,0x57,0x10,0x13,0x12,0x12,0x13,0x12,0x10,0x10,0x10,0x20,0x20,0xfe,0x50,0x88,0x04,0xff,0x04,0xe4,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 20507 倛 ; -+,0x09,0x0d,0x09,0x17,0x11,0x31,0x51,0x11,0x11,0x17,0x10,0x11,0x11,0x12,0x14,0x00,0x08,0x08,0x08,0xfe,0x08,0xf8,0x08,0xf8,0x08,0xff,0x00,0x08,0x04,0x06,0x04,0x00 -+// 20508 倜 ; -+,0x08,0x0f,0x0a,0x12,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x00,0xfe,0x22,0x22,0xfa,0x22,0xfa,0x02,0xfa,0x8a,0x8a,0xfa,0x82,0x0a,0x04,0x00 -+// 20509 倝 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x08,0x7f,0x08,0x08,0x08,0x08,0x09,0x10,0x10,0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xa8,0x24,0x46,0x43,0x82,0x00 -+// 20510 倞 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x31,0x51,0x11,0x11,0x10,0x11,0x11,0x12,0x14,0x10,0x10,0x40,0x20,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x20,0x28,0xa4,0x26,0x24,0xa0,0x40 -+// 20511 借 ; -+,0x08,0x0c,0x08,0x13,0x10,0x30,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x88,0x88,0x88,0xfe,0x88,0x88,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 20512 倠 ; -+,0x09,0x0d,0x09,0x11,0x1b,0x33,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x98,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 20513 倡 ; -+,0x08,0x0d,0x09,0x19,0x11,0x31,0x51,0x10,0x13,0x12,0x13,0x12,0x12,0x13,0x12,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x00,0xff,0x01,0xff,0x01,0x01,0xff,0x01,0x00 -+// 20514 倢 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x38,0x57,0x10,0x13,0x10,0x12,0x12,0x12,0x15,0x14,0x18,0x40,0x40,0xfe,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0x40,0x7c,0x40,0x40,0xe0,0x1e -+// 20515 倣 ; -+,0x14,0x1a,0x12,0x17,0x32,0x52,0x13,0x12,0x12,0x12,0x14,0x14,0x1a,0x19,0x10,0x00,0x20,0x30,0x20,0xbf,0x44,0x44,0xa4,0xa4,0xa4,0x94,0x88,0x88,0x94,0x23,0x42,0x00 -+// 20516 値 ; -+,0x04,0x06,0x0d,0x08,0x10,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x10,0x10,0x10,0xff,0x10,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00 -+// 20517 倥 ; -+,0x08,0x0c,0x08,0x13,0x12,0x34,0x51,0x12,0x15,0x10,0x10,0x10,0x10,0x10,0x13,0x00,0x40,0x30,0x22,0xff,0x02,0x88,0x84,0x02,0xfc,0x20,0x20,0x20,0x20,0x20,0xfe,0x00 -+// 20518 倦 ; -+,0x08,0x0c,0x0a,0x11,0x13,0x30,0x57,0x10,0x11,0x13,0x1d,0x11,0x11,0x11,0x10,0x00,0x40,0x48,0x4c,0x50,0xfe,0x40,0xff,0x90,0xec,0x17,0x12,0x50,0x24,0x04,0xfc,0x00 -+// 20519 倧 ; -+,0x08,0x0c,0x0b,0x12,0x14,0x31,0x50,0x10,0x17,0x10,0x11,0x11,0x13,0x12,0x14,0x10,0x40,0x22,0xff,0x02,0x04,0xfc,0x00,0x00,0xff,0x20,0x28,0xa6,0x23,0x22,0xa0,0x40 -+// 20520 倨 ; -+,0x08,0x0d,0x09,0x11,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x12,0x14,0x10,0x00,0xfe,0x02,0x02,0xfe,0x10,0x12,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x00 -+// 20521 倩 ; -+,0x08,0x08,0x0f,0x08,0x11,0x18,0x33,0x50,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0xfe,0x20,0xfe,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 20522 倪 ; -+,0x08,0x0d,0x09,0x09,0x11,0x11,0x31,0x51,0x11,0x10,0x10,0x10,0x11,0x12,0x14,0x00,0x30,0xce,0x02,0x02,0xde,0x02,0x02,0xfe,0x52,0x50,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 20523 倫 ; -+,0x04,0x06,0x0c,0x09,0x12,0x35,0x50,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x00,0x40,0x40,0xa0,0x18,0x07,0xfa,0x00,0xfc,0x94,0x94,0xfc,0x94,0x94,0x84,0x0c,0x00 -+// 20524 倬 ; -+,0x08,0x0c,0x08,0x10,0x1b,0x32,0x53,0x12,0x13,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x40,0x40,0x7e,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x40,0xfe,0x40,0x40,0x40,0x40 -+// 20525 倭 ; -+,0x08,0x0d,0x08,0x13,0x10,0x31,0x52,0x14,0x10,0x1f,0x11,0x10,0x10,0x10,0x17,0x00,0x0c,0xf0,0x20,0xfe,0xb0,0xa8,0x27,0x42,0x80,0xff,0x08,0xd0,0x30,0xcc,0x06,0x00 -+// 20526 倮 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x51,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x60,0xb0,0x2c,0x27,0x22,0x20,0x00 -+// 20527 倯 ; -+,0x09,0x0d,0x09,0x11,0x17,0x33,0x53,0x15,0x15,0x19,0x19,0x11,0x11,0x11,0x11,0x00,0x00,0x14,0x14,0x14,0xe2,0x22,0x43,0x92,0x50,0x50,0x24,0x22,0x7f,0x22,0x00,0x00 -+// 20528 倰 ; -+,0x08,0x0c,0x09,0x10,0x17,0x30,0x50,0x11,0x12,0x14,0x11,0x12,0x10,0x10,0x17,0x00,0x20,0x20,0xfc,0x20,0xff,0x90,0xcc,0x86,0x42,0xfc,0x48,0x48,0x30,0xcf,0x02,0x00 -+// 20529 倱 ; -+,0x08,0x0f,0x0a,0x13,0x12,0x3a,0x53,0x12,0x12,0x13,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x10,0x12,0xd7,0x18,0x10,0xd1,0x11,0x0f,0x00 -+// 20530 倲 ; -+,0x08,0x0c,0x0b,0x10,0x19,0x31,0x51,0x11,0x11,0x11,0x10,0x10,0x11,0x12,0x14,0x10,0x20,0x20,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x70,0xac,0x27,0x22,0x20,0x20 -+// 20531 倳 ; -+,0x08,0x0c,0x0b,0x10,0x1b,0x32,0x53,0x10,0x13,0x10,0x17,0x10,0x13,0x10,0x10,0x10,0x20,0x20,0xff,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xa0,0x40 -+// 20532 倴 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x31,0x56,0x10,0x11,0x11,0x17,0x11,0x11,0x12,0x1c,0x00,0x20,0x20,0xff,0x50,0x8c,0x27,0xfa,0x20,0x28,0x28,0xff,0x08,0x08,0x08,0x08,0x00 -+// 20533 倵 ; -+,0x08,0x0c,0x0b,0x10,0x1f,0x30,0x50,0x12,0x12,0x12,0x12,0x12,0x13,0x16,0x10,0x00,0x08,0x0c,0xea,0x08,0xff,0x08,0x88,0x88,0xe8,0x88,0x88,0xb5,0xc5,0x03,0x01,0x00 -+// 20534 倶 ; -+,0x08,0x0d,0x09,0x11,0x11,0x31,0x51,0x11,0x11,0x10,0x17,0x11,0x11,0x13,0x14,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00,0xff,0x10,0x8c,0x06,0x02,0x00 -+// 20535 倷 ; -+,0x08,0x0c,0x0b,0x10,0x11,0x32,0x55,0x18,0x17,0x10,0x12,0x13,0x14,0x19,0x10,0x00,0x40,0x44,0xfe,0xa0,0x18,0x0e,0xf4,0x00,0xfe,0x40,0x50,0x4c,0x46,0x44,0x80,0x00 -+// 20536 倸 ; -+,0x08,0x0d,0x08,0x12,0x11,0x31,0x50,0x17,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x0e,0xf0,0x04,0x46,0x24,0x08,0x20,0xff,0x60,0xf0,0xa8,0x26,0x23,0x22,0x20,0x00 -+// 20537 倹 ; -+,0x08,0x0c,0x08,0x11,0x12,0x35,0x50,0x13,0x12,0x13,0x12,0x10,0x10,0x11,0x16,0x00,0x40,0x40,0xb0,0x0c,0x03,0xfc,0x20,0xfe,0x22,0xfe,0x22,0x50,0x8c,0x07,0x02,0x00 -+// 20538 债 ; -+,0x08,0x0b,0x08,0x11,0x10,0x33,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x13,0x00,0x20,0xfe,0x20,0xfc,0x20,0xfe,0x00,0xfc,0x04,0x24,0x24,0x24,0x50,0x8c,0x04,0x00 -+// 20539 倻 ; -+,0x08,0x0c,0x0f,0x0a,0x12,0x1b,0x32,0x52,0x13,0x12,0x12,0x13,0x16,0x10,0x10,0x10,0x00,0x00,0xff,0x52,0x52,0xd4,0x54,0x54,0xd2,0x52,0x71,0xd1,0x5f,0x52,0x50,0x50 -+// 20540 值 ; -+,0x08,0x0c,0x0b,0x08,0x10,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x20,0x30,0xfe,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xff,0x00 -+// 20541 倽 ; -+,0x04,0x04,0x08,0x08,0x19,0x2b,0x4c,0x08,0x0b,0x08,0x08,0x09,0x09,0x09,0x09,0x09,0x20,0x20,0x50,0x88,0x06,0xfb,0x20,0x20,0xfe,0x20,0x20,0xfc,0x04,0x04,0xfc,0x04 -+// 20542 倾 ; -+,0x08,0x0c,0x08,0x14,0x34,0x57,0x14,0x14,0x14,0x14,0x15,0x16,0x14,0x10,0x10,0x11,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x10,0x28,0x46,0x82,0x00 -+// 20543 倿 ; -+,0x08,0x0c,0x0b,0x11,0x10,0x38,0x57,0x10,0x10,0x17,0x11,0x11,0x10,0x10,0x11,0x16,0x40,0x20,0xfe,0x08,0xcc,0x90,0xff,0x40,0x80,0xff,0x08,0xd0,0x30,0x4c,0x86,0x04 -+// 20544 偀 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x30,0x51,0x11,0x11,0x11,0x17,0x10,0x10,0x10,0x11,0x16,0x88,0x88,0xff,0x88,0xa8,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 20545 偁 ; -+,0x08,0x0f,0x0a,0x11,0x19,0x33,0x52,0x12,0x13,0x12,0x12,0x1f,0x12,0x12,0x12,0x00,0x3e,0xe0,0x44,0x24,0x28,0xfc,0x24,0x24,0xfc,0x24,0x24,0xff,0x04,0x14,0x08,0x00 -+// 20546 偂 ; -+,0x09,0x0c,0x08,0x17,0x10,0x33,0x52,0x13,0x12,0x12,0x13,0x12,0x12,0x13,0x12,0x00,0x08,0x8c,0x90,0xff,0x00,0xc2,0x52,0xd2,0x52,0x52,0xd2,0x52,0x42,0x4a,0x84,0x00 -+// 20547 偃 ; -+,0x08,0x0f,0x0a,0x12,0x1a,0x32,0x52,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x13,0x00,0x00,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x48,0x30,0x28,0xc4,0xff,0x00 -+// 20548 偄 ; -+,0x08,0x0f,0x18,0x13,0x3a,0x52,0x12,0x12,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x00,0x02,0xff,0x40,0xfe,0x52,0x52,0x52,0x0a,0x44,0xff,0x40,0xb0,0x18,0x0e,0x04,0x00 -+// 20549 偅 ; -+,0x08,0x0c,0x0b,0x10,0x1b,0x30,0x53,0x12,0x13,0x12,0x13,0x10,0x13,0x10,0x10,0x17,0x0c,0x3e,0xe0,0x20,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xfe,0x20,0x20,0xff -+// 20550 偆 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x30,0x5f,0x10,0x11,0x13,0x1d,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0xfc,0x20,0xfc,0x40,0xff,0x88,0xfc,0x0b,0x0a,0xf8,0x08,0x08,0xf8,0x08 -+// 20551 假 ; -+,0x08,0x0f,0x0a,0x12,0x13,0x32,0x52,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x00,0x00,0xde,0x42,0x42,0xde,0x42,0x00,0xde,0x22,0x14,0xd4,0x08,0x1c,0x27,0xc2,0x00 -+// 20552 偈 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x50,0x11,0x13,0x15,0x11,0x11,0x13,0x11,0x10,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x80,0xfe,0x22,0x22,0x52,0x8a,0xfa,0x02,0x0a,0x04 -+// 20553 偉 ; -+,0x00,0x08,0x0d,0x08,0x17,0x10,0x31,0x51,0x11,0x10,0x13,0x12,0x12,0x17,0x10,0x10,0x40,0x40,0xfc,0x44,0xff,0x00,0xfc,0x04,0xfc,0x20,0xfe,0x20,0x20,0xff,0x20,0x20 -+// 20554 偊 ; -+,0x08,0x0d,0x08,0x11,0x39,0x51,0x11,0x10,0x13,0x12,0x12,0x12,0x13,0x12,0x12,0x12,0x1c,0xe0,0x20,0xfc,0x24,0x24,0xfc,0x20,0xfe,0x22,0x2a,0x3e,0xca,0x82,0x0a,0x04 -+// 20555 偋 ; -+,0x00,0x0b,0x0a,0x12,0x13,0x3a,0x52,0x13,0x12,0x12,0x13,0x12,0x12,0x14,0x14,0x19,0x00,0xfe,0x02,0x02,0xfe,0x82,0x44,0xff,0x44,0x44,0xff,0x44,0x44,0x84,0x84,0x04 -+// 20556 偌 ; -+,0x08,0x0c,0x0b,0x10,0x10,0x30,0x57,0x10,0x10,0x11,0x13,0x15,0x11,0x11,0x11,0x00,0x88,0x88,0xff,0x88,0xa8,0x20,0xff,0x40,0x80,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20557 偍 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x50,0x17,0x10,0x11,0x11,0x11,0x11,0x12,0x14,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x20,0x20,0x3e,0x20,0x20,0xe0,0x3f,0x00 -+// 20558 偎 ; -+,0x08,0x0d,0x19,0x11,0x11,0x31,0x51,0x10,0x17,0x11,0x11,0x11,0x11,0x11,0x13,0x11,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xff,0x22,0x23,0x14,0x18,0x4c,0x87,0x02 -+// 20559 偏 ; -+,0x08,0x0c,0x0b,0x12,0x1a,0x33,0x52,0x13,0x13,0x13,0x15,0x15,0x15,0x19,0x11,0x11,0x40,0x20,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0x42,0x06 -+// 20560 偐 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x33,0x52,0x12,0x12,0x13,0x12,0x14,0x15,0x14,0x18,0x13,0x20,0x10,0xff,0x84,0x48,0xff,0x08,0x18,0x64,0x8c,0x13,0x66,0x8c,0x30,0xc0,0x00 -+// 20561 偑 ; -+,0x10,0x1f,0x14,0x25,0x24,0x65,0x25,0x25,0x25,0x25,0x24,0x24,0x2b,0x29,0x30,0x20,0x00,0xfc,0x04,0xf4,0x44,0xf4,0x54,0x54,0x54,0xf4,0x44,0x54,0xfd,0x15,0x02,0x00 -+// 20562 偒 ; -+,0x09,0x0d,0x09,0x11,0x11,0x38,0x57,0x10,0x10,0x11,0x12,0x10,0x11,0x12,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x80,0xfe,0x52,0x52,0x92,0x22,0x4a,0x84,0x00 -+// 20563 偓 ; -+,0x08,0x0f,0x0a,0x12,0x1b,0x32,0x53,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x19,0x00,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x44,0x82,0xff,0x12,0xfe,0x10,0x10,0xff,0x00 -+// 20564 偔 ; -+,0x08,0x0f,0x0a,0x0a,0x13,0x18,0x29,0x48,0x0f,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0xde,0x52,0x52,0xde,0x00,0xfc,0x00,0xff,0x80,0xfe,0x82,0x02,0x02,0x14,0x08 -+// 20565 偕 ; -+,0x0a,0x0e,0x0a,0x13,0x12,0x32,0x53,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x12,0x17,0xd8,0x11,0xd1,0x2f,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 20566 偖 ; -+,0x08,0x0c,0x09,0x18,0x10,0x37,0x50,0x10,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfd,0x22,0x24,0xff,0x10,0x60,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 20567 偗 ; -+,0x04,0x05,0x09,0x09,0x1a,0x18,0x28,0x49,0x0e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x28,0xa6,0x22,0x2c,0x38,0x60,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 20568 偘 ; -+,0x08,0x0d,0x09,0x19,0x11,0x39,0x50,0x10,0x17,0x14,0x14,0x14,0x14,0x17,0x14,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0xdf,0x51,0x51,0x51,0x51,0xdf,0x51,0x00 -+// 20569 偙 ; -+,0x08,0x0c,0x0b,0x11,0x10,0x33,0x52,0x14,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x40,0x20,0xff,0x04,0x88,0xff,0x21,0x22,0xfc,0x24,0x24,0x24,0x34,0x28,0x20,0x20 -+// 20570 做 ; -+,0x09,0x0d,0x09,0x17,0x11,0x31,0x51,0x17,0x14,0x14,0x14,0x17,0x14,0x14,0x10,0x00,0x10,0x18,0x10,0xd0,0x3f,0x34,0x54,0xd4,0x54,0x54,0x48,0xc8,0x56,0x23,0xc2,0x00 -+// 20571 偛 ; -+,0x08,0x0c,0x0b,0x08,0x17,0x18,0x2b,0x2a,0x4a,0x0b,0x0a,0x0a,0x0a,0x0b,0x0a,0x00,0x04,0x1e,0xe0,0x20,0xff,0x20,0xae,0x22,0x22,0xae,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 20572 停 ; -+,0x04,0x06,0x05,0x08,0x08,0x18,0x28,0x48,0x0b,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x01,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 20573 偝 ; -+,0x08,0x0c,0x0b,0x10,0x19,0x36,0x52,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x90,0x92,0x9c,0x91,0x91,0x8f,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08,0x00 -+// 20574 偞 ; -+,0x08,0x0d,0x09,0x17,0x11,0x31,0x51,0x11,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x10,0x48,0x48,0x48,0xff,0x48,0x78,0x00,0xfe,0x20,0xff,0x70,0xa8,0x24,0x23,0x22,0x20 -+// 20575 偟 ; -+,0x08,0x0c,0x0b,0x12,0x13,0x32,0x53,0x10,0x17,0x10,0x10,0x13,0x10,0x10,0x17,0x10,0x40,0x80,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 20576 偠 ; -+,0x08,0x0f,0x08,0x13,0x1a,0x32,0x53,0x10,0x10,0x17,0x10,0x11,0x10,0x10,0x11,0x12,0x00,0xfe,0x50,0xfe,0x52,0x52,0xfe,0x40,0x44,0xff,0x84,0x88,0x70,0x88,0x06,0x02 -+// 20577 偡 ; -+,0x08,0x0c,0x0b,0x10,0x10,0x30,0x50,0x10,0x10,0x17,0x11,0x11,0x11,0x11,0x13,0x11,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0x88,0xff,0x48,0x64,0x86,0x04,0xff,0x00 -+// 20578 偢 ; -+,0x08,0x0c,0x0b,0x11,0x19,0x37,0x53,0x13,0x15,0x15,0x19,0x11,0x11,0x11,0x11,0x11,0x00,0xc8,0x08,0x08,0x2a,0xeb,0x2c,0xa8,0x48,0x48,0x08,0x14,0x14,0x22,0x23,0x42 -+// 20579 偣 ; -+,0x08,0x0c,0x0b,0x11,0x10,0x30,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x20,0xfe,0x08,0x88,0x90,0xff,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 20580 偤 ; -+,0x09,0x0c,0x08,0x17,0x18,0x30,0x53,0x12,0x12,0x13,0x13,0x12,0x12,0x13,0x12,0x00,0x08,0xcc,0x90,0xfe,0x50,0x50,0xfc,0x94,0x9c,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 20581 健 ; -+,0x08,0x08,0x16,0x12,0x32,0x54,0x17,0x11,0x11,0x19,0x16,0x12,0x15,0x18,0x10,0x00,0x10,0x10,0xfc,0x14,0xff,0x14,0xfc,0x10,0x7c,0x10,0xfe,0x10,0x10,0xd0,0x7e,0x00 -+// 20582 偦 ; -+,0x08,0x0d,0x08,0x11,0x19,0x32,0x54,0x18,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x21,0x3a,0x20,0xa0,0x7f,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x0a,0x04 -+// 20583 偧 ; -+,0x08,0x0c,0x1b,0x10,0x31,0x52,0x1d,0x12,0x10,0x11,0x16,0x10,0x13,0x10,0x10,0x17,0x40,0x42,0xff,0x90,0x4c,0xff,0x8a,0x50,0x60,0xa2,0x7f,0x86,0x2c,0x18,0xe0,0x00 -+// 20584 偨 ; -+,0x08,0x0c,0x08,0x12,0x3a,0x52,0x12,0x17,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x10,0x90,0x90,0x92,0xf7,0x98,0x91,0xd1,0x0f,0x20,0xff,0x60,0xb0,0x2c,0x27,0x22,0x20 -+// 20585 偩 ; -+,0x04,0x06,0x04,0x09,0x0d,0x19,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x09,0x09,0x0a,0x80,0xfc,0x84,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xc8,0x84,0x06,0x04 -+// 20586 偪 ; -+,0x08,0x0f,0x08,0x19,0x11,0x31,0x51,0x10,0x13,0x12,0x13,0x12,0x12,0x13,0x12,0x00,0x00,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02,0x00 -+// 20587 偫 ; -+,0x09,0x0d,0x1a,0x14,0x39,0x51,0x12,0x17,0x1a,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x08,0x88,0x7f,0x08,0x08,0xff,0x04,0x04,0x7f,0x44,0x24,0x24,0x04,0x14,0x08,0x00 -+// 20588 偬 ; -+,0x08,0x0c,0x19,0x12,0x15,0x38,0x53,0x14,0x11,0x12,0x10,0x12,0x12,0x12,0x14,0x00,0xc0,0x82,0xff,0x52,0x92,0xc2,0x32,0x4a,0x9c,0x48,0x24,0xb2,0xa5,0x85,0x7c,0x00 -+// 20589 偭 ; -+,0x08,0x0f,0x08,0x10,0x1b,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0xff,0x40,0x40,0xff,0x49,0x49,0x79,0x49,0x49,0x79,0x49,0x49,0xff,0x01,0x00 -+// 20590 偮 ; -+,0x08,0x0d,0x09,0x19,0x11,0x18,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x0b,0x08,0x08,0x00,0xfc,0x04,0x04,0xfc,0x00,0xff,0x04,0xfc,0x04,0xfc,0x04,0x7f,0xc4,0x04,0x04 -+// 20591 偯 ; -+,0x08,0x0c,0x1b,0x10,0x39,0x51,0x11,0x11,0x10,0x10,0x11,0x13,0x15,0x11,0x13,0x11,0x40,0x20,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x44,0xae,0x90,0x18,0x2c,0x47,0x82,0x00 -+// 20592 偰 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x30,0x57,0x10,0x10,0x10,0x13,0x10,0x10,0x11,0x16,0x00,0x80,0x9e,0xea,0x8a,0xea,0x8a,0xd2,0xae,0x84,0x20,0xfe,0x20,0x58,0x8e,0x04,0x00 -+// 20593 偱 ; -+,0x08,0x0f,0x0a,0x12,0x1b,0x32,0x52,0x12,0x12,0x12,0x12,0x14,0x14,0x14,0x18,0x00,0x1e,0xf0,0x10,0x12,0xff,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 20594 偲 ; -+,0x08,0x0f,0x0a,0x12,0x1b,0x32,0x52,0x13,0x10,0x10,0x12,0x12,0x14,0x14,0x10,0x00,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x00,0xa4,0x92,0x93,0x85,0x84,0x7c,0x00 -+// 20595 偳 ; -+,0x08,0x0e,0x0a,0x12,0x13,0x30,0x57,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x20,0x22,0x22,0x22,0xfe,0x00,0xff,0x40,0xfe,0x92,0x92,0x92,0x92,0x9a,0x84,0x00 -+// 20596 側 ; -+,0x08,0x0f,0x0a,0x12,0x13,0x32,0x53,0x12,0x12,0x13,0x11,0x11,0x12,0x14,0x18,0x00,0x01,0xe1,0x29,0x29,0xe9,0x29,0xe9,0x29,0x29,0xe9,0x49,0x49,0x21,0x25,0x02,0x00 -+// 20597 偵 ; -+,0x04,0x06,0x0c,0x08,0x19,0x19,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x09,0x09,0x02,0x20,0x20,0x3e,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xc8,0x84,0x06,0x04 -+// 20598 偶 ; -+,0x00,0x09,0x0d,0x09,0x19,0x11,0x31,0x51,0x10,0x13,0x12,0x12,0x12,0x13,0x12,0x12,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0xfe,0x22,0x2a,0x7e,0xc2,0x0a,0x04 -+// 20599 偷 ; -+,0x08,0x0c,0x08,0x11,0x1a,0x34,0x53,0x12,0x12,0x13,0x12,0x13,0x12,0x13,0x12,0x00,0x40,0x40,0xb0,0x0c,0xf7,0x02,0xc4,0x54,0x54,0xd4,0x54,0xd4,0x44,0x54,0x88,0x00 -+// 20600 偸 ; -+,0x04,0x06,0x0c,0x09,0x12,0x34,0x53,0x12,0x13,0x12,0x13,0x12,0x12,0x13,0x12,0x00,0x40,0x60,0x90,0x0c,0xf7,0x02,0xc9,0x49,0xd2,0x64,0xd2,0x4a,0x49,0x45,0x84,0x00 -+// 20601 偹 ; -+,0x08,0x0c,0x08,0x18,0x11,0x36,0x54,0x17,0x15,0x15,0x15,0x15,0x11,0x11,0x11,0x00,0x40,0x40,0x7e,0xc4,0x28,0x10,0x6f,0x82,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x04,0x00 -+// 20602 偺 ; -+,0x05,0x05,0x09,0x0a,0x12,0x35,0x50,0x11,0x1e,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x08,0x08,0xec,0x2a,0x2a,0x48,0xc8,0x3f,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 20603 偻 ; -+,0x08,0x0d,0x08,0x13,0x18,0x30,0x31,0x56,0x10,0x17,0x10,0x10,0x10,0x10,0x17,0x00,0x20,0x24,0xa8,0xff,0x70,0xac,0x27,0xa2,0x80,0xff,0x88,0x88,0x70,0xcc,0x04,0x00 -+// 20604 偼 ; -+,0x04,0x06,0x0c,0x08,0x19,0x10,0x33,0x50,0x11,0x10,0x11,0x11,0x12,0x14,0x18,0x00,0x20,0x20,0x3f,0x20,0xfc,0x04,0xff,0x04,0xfc,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x00 -+// 20605 偽 ; -+,0x08,0x0d,0x09,0x0b,0x10,0x10,0x30,0x50,0x11,0x11,0x12,0x13,0x15,0x18,0x10,0x00,0x40,0x40,0x44,0xfe,0x44,0x48,0xfe,0x84,0xff,0x29,0x95,0x45,0x51,0x0a,0x04,0x00 -+// 20606 偾 ; -+,0x08,0x0f,0x08,0x11,0x17,0x31,0x50,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x12,0x20,0xfe,0x20,0x24,0xff,0x04,0x00,0xfc,0x24,0x24,0x24,0x54,0x48,0x8c,0x06,0x04 -+// 20607 偿 ; -+,0x08,0x0d,0x08,0x10,0x13,0x3a,0x50,0x11,0x10,0x13,0x10,0x10,0x11,0x13,0x11,0x00,0x20,0x24,0xa6,0xa8,0xff,0x02,0x00,0xfc,0x00,0xff,0x40,0xc8,0x04,0xfe,0x04,0x00 -+// 20608 傀 ; -+,0x08,0x0c,0x0b,0x1a,0x13,0x32,0x52,0x13,0x12,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0x40,0x80,0xf8,0x48,0xf8,0x48,0x48,0xf8,0xa0,0xa8,0xaa,0x3e,0x21,0x21,0x1f,0x00 -+// 20609 傁 ; -+,0x08,0x0c,0x0b,0x12,0x1b,0x32,0x53,0x12,0x10,0x11,0x10,0x10,0x10,0x10,0x11,0x16,0x00,0xa0,0x2e,0x22,0xae,0x22,0xfe,0x22,0x20,0xfc,0x88,0x50,0x20,0x58,0x87,0x02 -+// 20610 傂 ; -+,0x04,0x04,0x0b,0x0a,0x12,0x3a,0x52,0x12,0x12,0x12,0x15,0x15,0x15,0x1a,0x15,0x00,0x04,0x3e,0xd0,0x1c,0x10,0xff,0x92,0xfc,0x92,0x9e,0x00,0x78,0x49,0x89,0x07,0x00 -+// 20611 傃 ; -+,0x08,0x0d,0x08,0x11,0x18,0x37,0x50,0x13,0x10,0x13,0x10,0x11,0x11,0x12,0x14,0x10,0x20,0xfe,0x20,0xfc,0x20,0xff,0x88,0xf0,0x88,0xfc,0x22,0x24,0xa2,0x23,0xa2,0x40 -+// 20612 傄 ; -+,0x08,0x0c,0x0b,0x0a,0x11,0x18,0x29,0x4e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x54,0x56,0x88,0x87,0xfe,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 20613 傅 ; -+,0x08,0x0c,0x0f,0x08,0x13,0x12,0x3b,0x52,0x13,0x12,0x10,0x17,0x10,0x10,0x10,0x10,0x28,0x24,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x08,0xff,0x88,0x88,0x28,0x10 -+// 20614 傆 ; -+,0x08,0x0f,0x0a,0x12,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x15,0x18,0x00,0x00,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x52,0x10,0x54,0x52,0x91,0x51,0x20,0x00 -+// 20615 傇 ; -+,0x08,0x0c,0x0b,0x18,0x10,0x37,0x51,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x10,0x00,0x88,0x88,0xff,0x88,0x00,0xff,0x08,0xf8,0x08,0xf8,0x08,0x3f,0xc8,0x08,0x08,0x00 -+// 20616 傈 ; -+,0x08,0x0f,0x08,0x13,0x1a,0x32,0x53,0x12,0x10,0x17,0x10,0x10,0x11,0x13,0x14,0x10,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x22,0x20,0xff,0x70,0xec,0xa7,0x22,0x20,0x20 -+// 20617 傉 ; -+,0x08,0x0d,0x09,0x11,0x11,0x39,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x18,0x00,0x00,0xff,0x00,0xfe,0x00,0xff,0x56,0x48,0x67,0x04,0x7f,0x24,0x14,0x04,0x14,0x08 -+// 20618 傊 ; -+,0x04,0x06,0x0c,0x08,0x10,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x09,0x0a,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x88,0xc6,0x03,0x02 -+// 20619 傋 ; -+,0x00,0x08,0x0f,0x08,0x13,0x10,0x37,0x50,0x13,0x12,0x13,0x12,0x1f,0x12,0x12,0x12,0x00,0x90,0xfe,0x90,0xfe,0x90,0xff,0x20,0xfc,0x24,0xfc,0x24,0xff,0x04,0x14,0x08 -+// 20620 傌 ; -+,0x08,0x0f,0x0a,0x13,0x1a,0x33,0x52,0x12,0x13,0x10,0x13,0x12,0x14,0x10,0x10,0x00,0x04,0xfe,0x20,0xfe,0x20,0xfe,0x20,0x20,0xfe,0x52,0x2a,0xaa,0x82,0x0a,0x04,0x00 -+// 20621 傍 ; -+,0x08,0x0c,0x0b,0x11,0x10,0x33,0x52,0x14,0x13,0x10,0x10,0x10,0x11,0x11,0x12,0x00,0x40,0x20,0xfe,0x08,0x92,0xff,0x42,0x24,0xfe,0x80,0xfc,0x84,0x04,0x14,0x08,0x00 -+// 20622 傎 ; -+,0x08,0x08,0x17,0x18,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x11,0x12,0x20,0x22,0xff,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff,0x88,0x86,0x04 -+// 20623 傏 ; -+,0x08,0x0c,0x0b,0x12,0x1a,0x32,0x53,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x40,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 20624 傐 ; -+,0x08,0x0c,0x0b,0x10,0x19,0x31,0x51,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x40,0x20,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xfe,0x02,0xf2,0x92,0xf2,0x0a,0x04,0x00 -+// 20625 傑 ; -+,0x0a,0x0e,0x0b,0x14,0x14,0x3a,0x51,0x12,0x1c,0x13,0x10,0x10,0x11,0x12,0x14,0x10,0x08,0x08,0xbf,0xa8,0xa8,0xff,0x08,0x28,0x20,0xff,0x60,0xb0,0x2c,0x27,0x22,0x20 -+// 20626 傒 ; -+,0x08,0x0d,0x09,0x10,0x10,0x38,0x51,0x10,0x11,0x10,0x10,0x13,0x10,0x10,0x11,0x12,0x1e,0xe0,0x26,0xa4,0x40,0x8c,0xf0,0x48,0xfe,0xa4,0x20,0xfe,0x50,0x8c,0x07,0x02 -+// 20627 傓 ; -+,0x08,0x0c,0x0b,0x12,0x13,0x3a,0x53,0x12,0x12,0x12,0x12,0x12,0x15,0x14,0x18,0x00,0x40,0x20,0xfe,0x02,0xfe,0x00,0xee,0x22,0xb2,0xaa,0x22,0xaa,0x32,0xaa,0x44,0x00 -+// 20628 傔 ; -+,0x09,0x0c,0x0b,0x10,0x1b,0x30,0x57,0x10,0x13,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x08,0x90,0xff,0x90,0xfc,0x94,0xff,0x94,0xfc,0x90,0x98,0x94,0x97,0x92,0x90,0x00 -+// 20629 傕 ; -+,0x08,0x0c,0x0a,0x13,0x12,0x34,0x51,0x13,0x15,0x19,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x60,0x42,0xff,0x82,0x90,0xfe,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00,0x00 -+// 20630 傖 ; -+,0x08,0x0c,0x08,0x11,0x1a,0x35,0x51,0x11,0x11,0x11,0x13,0x13,0x15,0x15,0x19,0x00,0x40,0x60,0x98,0x4e,0x04,0xfc,0x44,0x24,0xfc,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 20631 傗 ; -+,0x08,0x0c,0x0b,0x10,0x10,0x39,0x50,0x13,0x10,0x13,0x12,0x13,0x12,0x13,0x12,0x00,0x40,0x20,0xfe,0x40,0x8c,0xf0,0xc4,0xfe,0x04,0xfc,0x24,0xfc,0x24,0xfc,0x04,0x00 -+// 20632 傘 ; -+,0x00,0x00,0x01,0x06,0x18,0x64,0x0a,0x34,0x04,0x0a,0x11,0x7f,0x00,0x00,0x00,0x00,0x80,0xc0,0x20,0x98,0x97,0x92,0xa8,0xd4,0x90,0xa8,0xc4,0xff,0x80,0x80,0x80,0x80 -+// 20633 備 ; -+,0x08,0x0c,0x0b,0x10,0x17,0x30,0x51,0x13,0x1d,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x90,0x90,0xfe,0x90,0xff,0x80,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x24,0x24,0x2c,0x00 -+// 20634 傚 ; -+,0x0a,0x09,0x11,0x17,0x32,0x52,0x14,0x1a,0x12,0x11,0x11,0x12,0x14,0x18,0x10,0x00,0x08,0x08,0x10,0xdf,0x32,0x92,0x52,0xd2,0x92,0x0c,0x88,0x54,0x22,0x43,0x82,0x00 -+// 20635 傛 ; -+,0x08,0x0c,0x1b,0x12,0x34,0x51,0x16,0x10,0x10,0x13,0x15,0x11,0x11,0x11,0x11,0x00,0x40,0x22,0xff,0x92,0x88,0x24,0x24,0x50,0x8c,0x07,0xfa,0x08,0x08,0xf8,0x08,0x00 -+// 20636 傜 ; -+,0x08,0x0f,0x09,0x10,0x10,0x39,0x51,0x11,0x12,0x17,0x10,0x12,0x12,0x13,0x12,0x00,0x1e,0xf0,0x44,0xa6,0xa8,0x00,0xfe,0x20,0x20,0xff,0x20,0x22,0x22,0xfe,0x02,0x00 -+// 20637 傝 ; -+,0x08,0x0d,0x09,0x19,0x11,0x31,0x50,0x17,0x14,0x12,0x11,0x12,0x14,0x11,0x10,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x42,0x52,0x4a,0x4a,0x52,0x6a,0x84,0x00 -+// 20638 傞 ; -+,0x09,0x0c,0x0b,0x18,0x13,0x30,0x50,0x17,0x10,0x11,0x11,0x12,0x14,0x1b,0x10,0x00,0x08,0x90,0xfe,0x20,0xfc,0x20,0x40,0xff,0x80,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 20639 傟 ; -+,0x08,0x0c,0x08,0x11,0x12,0x35,0x50,0x17,0x10,0x12,0x12,0x11,0x16,0x11,0x10,0x00,0x90,0xd0,0x88,0x4c,0x97,0xfa,0x88,0xde,0x42,0x5a,0xc6,0x4a,0x52,0x4a,0x84,0x00 -+// 20640 傠 ; -+,0x08,0x0d,0x08,0x0f,0x10,0x1b,0x30,0x53,0x10,0x13,0x12,0x12,0x13,0x12,0x10,0x00,0x00,0x02,0x82,0xe2,0x1f,0xc2,0x02,0xd2,0x0a,0xca,0x42,0x42,0xc2,0x4a,0x04,0x00 -+// 20641 傡 ; -+,0x08,0x0c,0x0a,0x09,0x17,0x10,0x38,0x54,0x14,0x15,0x11,0x11,0x13,0x1c,0x10,0x00,0x00,0x08,0x04,0x04,0xbf,0x02,0xa2,0xa2,0x94,0x14,0x14,0x04,0x84,0x7f,0x00,0x00 -+// 20642 傢 ; -+,0x08,0x0c,0x0b,0x12,0x15,0x30,0x50,0x13,0x14,0x11,0x16,0x10,0x13,0x1c,0x10,0x00,0x40,0x20,0xff,0x02,0xfc,0x40,0x88,0x4c,0x58,0xb0,0x68,0xa4,0x27,0xa2,0x40,0x00 -+// 20643 傣 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x30,0x57,0x10,0x11,0x13,0x1c,0x10,0x10,0x13,0x10,0x00,0x40,0x40,0xfe,0x40,0xfc,0x40,0xff,0x90,0x2c,0x23,0xaa,0x70,0xac,0x24,0x60,0x00 -+// 20644 傤 ; -+,0x08,0x0c,0x0b,0x10,0x1f,0x31,0x51,0x17,0x12,0x14,0x17,0x10,0x17,0x10,0x10,0x00,0x88,0x88,0xea,0x89,0xff,0x08,0x0a,0xeb,0x8a,0xec,0x8c,0xe8,0x95,0xa5,0x82,0x00 -+// 20645 傥 ; -+,0x08,0x0d,0x08,0x1a,0x13,0x34,0x55,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x16,0x00,0x20,0x24,0xa6,0x28,0xff,0x02,0xfc,0x08,0x08,0xf8,0x50,0x52,0x92,0x12,0x0e,0x00 -+// 20646 傦 ; -+,0x04,0x06,0x08,0x08,0x12,0x1b,0x2c,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xfc,0x84,0xf4,0x94,0x94,0xff,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08,0x00 -+// 20647 傧 ; -+,0x08,0x0c,0x09,0x12,0x12,0x31,0x51,0x11,0x11,0x11,0x17,0x10,0x10,0x11,0x12,0x00,0x40,0x20,0xff,0x02,0x1c,0xe0,0x00,0xfe,0x10,0x12,0xff,0x90,0xcc,0x06,0x02,0x00 -+// 20648 储 ; -+,0x08,0x0c,0x0a,0x12,0x10,0x2e,0x52,0x12,0x12,0x13,0x12,0x12,0x12,0x17,0x12,0x00,0x10,0x12,0xff,0x12,0x14,0xff,0x10,0x20,0xfe,0x42,0x7e,0x42,0xc2,0x7e,0x42,0x00 -+// 20649 傩 ; -+,0x08,0x0c,0x08,0x17,0x11,0x39,0x55,0x15,0x12,0x15,0x15,0x19,0x10,0x10,0x10,0x00,0x50,0x68,0x48,0x7f,0xc8,0x48,0x7f,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 20650 傪 ; -+,0x08,0x0c,0x08,0x11,0x19,0x32,0x57,0x10,0x10,0x13,0x1c,0x13,0x10,0x10,0x13,0x00,0x40,0x60,0x88,0xfc,0x08,0x92,0xbf,0x52,0x88,0x27,0xd8,0x26,0xcc,0x30,0xc0,0x00 -+// 20651 傫 ; -+,0x08,0x0f,0x0a,0x13,0x1a,0x33,0x50,0x11,0x13,0x10,0x13,0x11,0x13,0x16,0x18,0x00,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x60,0x8c,0xf8,0x64,0xfe,0x2a,0x24,0xa6,0x44,0x00 -+// 20652 催 ; -+,0x08,0x0e,0x0a,0x13,0x11,0x31,0x53,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x22,0x22,0xfe,0x20,0x12,0xff,0x10,0xfe,0x10,0xfe,0x10,0x12,0xff,0x00,0x00 -+// 20653 傭 ; -+,0x08,0x0f,0x0a,0x12,0x12,0x3b,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x14,0x20,0xff,0x10,0xfc,0x14,0xff,0x14,0xfc,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x96 -+// 20654 傮 ; -+,0x08,0x0c,0x0b,0x10,0x13,0x3a,0x53,0x12,0x13,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x50,0x50,0xff,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc -+// 20655 傯 ; -+,0x08,0x0c,0x0b,0x12,0x1a,0x32,0x53,0x12,0x13,0x10,0x11,0x15,0x15,0x19,0x10,0x00,0x60,0x40,0xfe,0x42,0x7a,0xd2,0x22,0xd2,0xfe,0x42,0x20,0x2a,0x29,0x09,0xf8,0x00 -+// 20656 傰 ; -+,0x08,0x0e,0x0a,0x13,0x10,0x3b,0x52,0x13,0x12,0x12,0x13,0x12,0x12,0x15,0x18,0x00,0x20,0x22,0x22,0xfe,0x00,0xde,0x52,0xde,0x52,0x52,0xde,0x52,0x52,0xde,0xa4,0x00 -+// 20657 傱 ; -+,0x12,0x1b,0x12,0x14,0x3a,0x53,0x12,0x16,0x1a,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x24,0x24,0x24,0x6c,0x92,0x21,0x10,0x50,0x5e,0x50,0x50,0x50,0xb0,0x18,0x07,0x00 -+// 20658 傲 ; -+,0x09,0x0d,0x0b,0x11,0x13,0x31,0x57,0x12,0x12,0x13,0x12,0x12,0x14,0x15,0x18,0x00,0x08,0x0c,0xe8,0x08,0xdf,0x12,0xf2,0x0a,0x0a,0xc4,0x44,0x4a,0x4a,0xd3,0xa2,0x00 -+// 20659 傳 ; -+,0x08,0x0f,0x08,0x11,0x11,0x31,0x51,0x11,0x10,0x13,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xff,0x0a,0xff,0x88,0x88,0x28,0x10 -+// 20660 傴 ; -+,0x08,0x0f,0x0a,0x12,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x00,0x00,0xff,0x00,0x7c,0x44,0x7c,0x00,0x00,0xee,0xaa,0xaa,0xee,0x00,0xff,0x00,0x00 -+// 20661 債 ; -+,0x08,0x0f,0x08,0x1b,0x10,0x37,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x12,0x20,0xfe,0x20,0xfc,0x20,0xff,0x04,0xfc,0x04,0x04,0xfc,0x04,0xfc,0x88,0x86,0x04 -+// 20662 傶 ; -+,0x08,0x0c,0x08,0x13,0x1a,0x32,0x52,0x12,0x13,0x12,0x12,0x12,0x14,0x15,0x18,0x10,0x08,0x0a,0x0a,0xff,0x88,0xea,0x8b,0x8a,0xea,0x8c,0xc8,0xa9,0x95,0xa3,0x41,0x80 -+// 20663 傷 ; -+,0x09,0x0d,0x0a,0x13,0x11,0x31,0x51,0x17,0x10,0x11,0x12,0x1c,0x13,0x10,0x11,0x10,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xff,0x80,0xfe,0x52,0x92,0x22,0x42,0x8a,0x04 -+// 20664 傸 ; -+,0x08,0x08,0x17,0x10,0x15,0x32,0x55,0x10,0x15,0x12,0x15,0x10,0x10,0x11,0x12,0x14,0x40,0x40,0xfe,0x40,0x54,0x48,0x54,0x40,0x54,0x48,0x54,0x60,0x90,0x0c,0x07,0x02 -+// 20665 傹 ; -+,0x08,0x0c,0x0b,0x11,0x18,0x33,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x12,0x40,0x20,0xfe,0x08,0x90,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x92,0x12,0x0e -+// 20666 傺 ; -+,0x09,0x0d,0x0a,0x13,0x15,0x3a,0x51,0x13,0x14,0x1b,0x10,0x11,0x11,0x11,0x12,0x10,0x00,0xde,0x52,0x54,0x48,0x88,0x04,0xff,0x02,0xfe,0x20,0x28,0xa4,0x26,0xa4,0x40 -+// 20667 傻 ; -+,0x08,0x0d,0x09,0x11,0x19,0x31,0x51,0x12,0x13,0x15,0x11,0x12,0x14,0x10,0x17,0x00,0x40,0xfe,0x4a,0x32,0x4a,0x02,0xfe,0x04,0x03,0xfe,0x88,0x50,0x20,0xd8,0x07,0x00 -+// 20668 傼 ; -+,0x08,0x0f,0x08,0x10,0x18,0x33,0x52,0x13,0x10,0x13,0x10,0x17,0x10,0x10,0x11,0x16,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x50,0x8c,0x07,0x02 -+// 20669 傽 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x37,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x40,0x22,0xff,0x88,0x50,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20 -+// 20670 傾 ; -+,0x08,0x0c,0x08,0x14,0x14,0x37,0x54,0x14,0x14,0x14,0x15,0x16,0x14,0x10,0x10,0x11,0x00,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0x44,0x62,0xc3,0x02 -+// 20671 傿 ; -+,0x08,0x0f,0x09,0x11,0x11,0x37,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x10,0x00,0xff,0x20,0x3e,0x20,0xff,0x00,0xfe,0x00,0xfe,0x22,0x92,0xda,0x92,0x0a,0x04 -+// 20672 僀 ; -+,0x0a,0x0a,0x17,0x12,0x34,0x50,0x17,0x14,0x14,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x94,0x94,0xff,0x94,0xf7,0x00,0xff,0x21,0x21,0xfc,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 20673 僁 ; -+,0x08,0x0f,0x0a,0x11,0x17,0x30,0x51,0x12,0x14,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x3c,0xc8,0x4c,0x50,0xfe,0xe0,0x58,0x47,0x42,0x24,0x92,0x9a,0x94,0x84,0x7c,0x00 -+// 20674 僂 ; -+,0x08,0x0f,0x0a,0x17,0x12,0x33,0x50,0x13,0x12,0x13,0x10,0x17,0x11,0x10,0x10,0x17,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x80,0xff,0x08,0x90,0x6c,0x82 -+// 20675 僃 ; -+,0x08,0x0c,0x0b,0x10,0x12,0x33,0x54,0x17,0x1a,0x13,0x12,0x13,0x12,0x14,0x14,0x18,0x90,0x94,0xfe,0x90,0x92,0xff,0x02,0xf2,0x52,0xf2,0x52,0xf2,0x52,0x52,0x0a,0x04 -+// 20676 僄 ; -+,0x08,0x0f,0x08,0x13,0x1a,0x33,0x50,0x11,0x10,0x17,0x10,0x11,0x11,0x12,0x14,0x10,0x02,0xff,0x50,0xfe,0x52,0xfe,0x00,0xfe,0x00,0xff,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 20677 僅 ; -+,0x08,0x0c,0x0b,0x10,0x18,0x30,0x53,0x12,0x13,0x10,0x13,0x10,0x11,0x10,0x17,0x10,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00 -+// 20678 僆 ; -+,0x08,0x0c,0x09,0x12,0x1a,0x30,0x56,0x12,0x12,0x12,0x12,0x12,0x12,0x15,0x14,0x10,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x90,0x7f,0x00 -+// 20679 僇 ; -+,0x0b,0x08,0x12,0x12,0x30,0x56,0x10,0x10,0x13,0x1c,0x17,0x10,0x13,0x10,0x11,0x16,0xbc,0xa4,0x94,0x8c,0x94,0xa4,0x60,0x90,0x2f,0xc2,0x34,0xc6,0x18,0x60,0x80,0x00 -+// 20680 僈 ; -+,0x08,0x0d,0x09,0x11,0x11,0x30,0x53,0x12,0x13,0x10,0x11,0x10,0x10,0x10,0x11,0x16,0x00,0xfc,0x44,0x24,0xfc,0x00,0xfe,0x52,0xfe,0x00,0xfc,0x88,0x88,0x70,0x8e,0x04 -+// 20681 僉 ; -+,0x00,0x01,0x02,0x04,0x1b,0x60,0x1f,0x11,0x11,0x1f,0x15,0x04,0x0a,0x09,0x11,0x20,0x80,0x40,0x20,0x10,0xec,0x03,0x7c,0x44,0x44,0x7c,0x10,0x10,0x28,0x24,0x46,0x44 -+// 20682 僊 ; -+,0x0b,0x0c,0x0b,0x12,0x1b,0x32,0x50,0x17,0x11,0x13,0x1d,0x11,0x11,0x11,0x11,0x10,0xfe,0x50,0xfe,0x52,0xfe,0x42,0x80,0xff,0x08,0xfc,0x0b,0x08,0xf8,0x04,0x04,0xfc -+// 20683 僋 ; -+,0x08,0x0c,0x08,0x11,0x12,0x35,0x50,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x12,0x40,0x40,0xb0,0x4e,0x24,0xf8,0x10,0xfc,0x04,0xc4,0x3c,0x04,0xfc,0x88,0x86,0x04 -+// 20684 僌 ; -+,0x09,0x0d,0x0b,0x11,0x1f,0x35,0x57,0x15,0x17,0x15,0x11,0x1f,0x11,0x11,0x11,0x11,0x10,0x18,0xd0,0x12,0xff,0x54,0xd4,0x54,0xd4,0x54,0x08,0xe8,0x14,0x22,0xc1,0x00 -+// 20685 働 ; -+,0x08,0x0f,0x08,0x17,0x10,0x37,0x54,0x17,0x14,0x17,0x10,0x17,0x10,0x11,0x1e,0x10,0x30,0xc4,0x84,0xe4,0x84,0xff,0xa5,0xe5,0xa5,0xe5,0x89,0xe9,0x89,0xf1,0x2e,0x44 -+// 20686 僎 ; -+,0x08,0x0f,0x0a,0x13,0x1a,0x32,0x53,0x10,0x17,0x10,0x10,0x1f,0x11,0x11,0x12,0x14,0x00,0xde,0x52,0xde,0x10,0x51,0xcf,0x90,0xfe,0x90,0x90,0xff,0x10,0x88,0x06,0x02 -+// 20687 像 ; -+,0x08,0x0c,0x09,0x13,0x1a,0x32,0x53,0x12,0x10,0x17,0x11,0x16,0x11,0x16,0x10,0x10,0x80,0xf8,0x10,0xfe,0x22,0x22,0xfe,0x44,0xce,0x30,0xa8,0x54,0x93,0x12,0x50,0x20 -+// 20688 僐 ; -+,0x09,0x0c,0x0b,0x10,0x1b,0x30,0x57,0x11,0x10,0x17,0x10,0x11,0x11,0x11,0x11,0x11,0x08,0x90,0xfe,0x20,0xfe,0x20,0xff,0x24,0xa8,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 20689 僑 ; -+,0x08,0x0f,0x08,0x17,0x10,0x33,0x5c,0x10,0x17,0x14,0x15,0x15,0x15,0x15,0x14,0x00,0x0c,0xf0,0x42,0xff,0x88,0xf4,0x93,0xf2,0xfc,0x04,0xf4,0x14,0xf4,0x14,0x0c,0x00 -+// 20690 僒 ; -+,0x08,0x0c,0x0b,0x12,0x15,0x33,0x50,0x17,0x10,0x13,0x11,0x12,0x14,0x18,0x10,0x10,0x40,0x20,0xff,0x89,0x04,0xfe,0x44,0xff,0x84,0xfc,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 20691 僓 ; -+,0x08,0x0d,0x09,0x11,0x38,0x57,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x12,0x20,0xfc,0x24,0xfc,0x20,0xff,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xc4,0x06,0x04 -+// 20692 僔 ; -+,0x09,0x0c,0x0b,0x10,0x1b,0x32,0x52,0x13,0x12,0x13,0x10,0x17,0x11,0x10,0x10,0x10,0x08,0x90,0xfe,0x50,0xfc,0x54,0x9c,0xfc,0x04,0xfc,0x08,0xff,0x08,0x88,0xa8,0x10 -+// 20693 僕 ; -+,0x08,0x0c,0x0a,0x12,0x17,0x31,0x53,0x10,0x13,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x90,0x94,0x96,0x98,0xff,0x10,0xfc,0x40,0xfc,0x40,0xff,0x40,0xa0,0x18,0x0e,0x04 -+// 20694 僖 ; -+,0x08,0x0f,0x08,0x1b,0x10,0x31,0x51,0x11,0x10,0x17,0x10,0x11,0x11,0x11,0x11,0x00,0x20,0xfe,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0x00 -+// 20695 僗 ; -+,0x08,0x0c,0x0a,0x12,0x1a,0x31,0x52,0x13,0x14,0x13,0x10,0x10,0x10,0x10,0x11,0x12,0x88,0xaa,0xec,0x98,0x88,0x54,0x62,0xff,0x42,0xfc,0x44,0x44,0x84,0x84,0x1c,0x08 -+// 20696 僘 ; -+,0x09,0x0d,0x09,0x15,0x1b,0x37,0x54,0x17,0x15,0x15,0x15,0x17,0x14,0x15,0x14,0x00,0x08,0x0c,0x28,0x48,0x0f,0xd2,0x52,0x72,0x54,0x54,0x4c,0x48,0x54,0x53,0xa2,0x00 -+// 20697 僙 ; -+,0x08,0x0c,0x0b,0x10,0x1f,0x30,0x53,0x12,0x13,0x12,0x13,0x10,0x10,0x11,0x12,0x14,0x88,0x88,0xfe,0x88,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x90,0xc8,0x8c,0x06,0x04 -+// 20698 僚 ; -+,0x08,0x0c,0x0b,0x14,0x1a,0x31,0x53,0x15,0x19,0x11,0x11,0x11,0x11,0x12,0x14,0x10,0x40,0x40,0xff,0x64,0x96,0x08,0xff,0x0a,0xf8,0x08,0xf8,0x28,0xa4,0x26,0xa4,0x40 -+// 20699 僛 ; -+,0x08,0x0e,0x0a,0x17,0x32,0x53,0x12,0x13,0x12,0x1f,0x14,0x16,0x14,0x18,0x10,0x00,0x10,0x58,0x50,0xf0,0x5f,0xe9,0x4a,0xc8,0x54,0xf4,0x94,0x52,0x52,0x21,0x21,0x40 -+// 20700 僜 ; -+,0x08,0x0d,0x0a,0x19,0x10,0x31,0x52,0x1d,0x11,0x11,0x11,0x10,0x10,0x10,0x17,0x00,0x20,0xd4,0x59,0x56,0x88,0xf4,0x03,0xfe,0x04,0x04,0xfc,0x88,0x88,0x52,0xff,0x00 -+// 20701 僝 ; -+,0x08,0x0f,0x0a,0x13,0x1a,0x32,0x53,0x12,0x12,0x15,0x14,0x15,0x14,0x18,0x19,0x10,0x00,0xfe,0x02,0xfe,0xf8,0x12,0xff,0x50,0x20,0xfe,0x44,0xff,0x44,0x44,0x54,0x88 -+// 20702 僞 ; -+,0x08,0x0d,0x0a,0x11,0x1b,0x32,0x53,0x12,0x13,0x12,0x13,0x13,0x15,0x14,0x18,0x00,0x0e,0xf0,0x44,0x48,0xfc,0x04,0xf8,0x08,0xfe,0x12,0xaa,0x5a,0x42,0x0a,0x04,0x00 -+// 20703 僟 ; -+,0x09,0x0d,0x0a,0x0b,0x11,0x32,0x57,0x11,0x1f,0x11,0x11,0x12,0x12,0x14,0x18,0x00,0x28,0x2c,0xa9,0xff,0x22,0xa5,0xef,0x21,0xff,0x24,0x14,0x98,0x49,0x55,0x23,0x00 -+// 20704 僠 ; -+,0x08,0x0d,0x09,0x10,0x17,0x38,0x51,0x12,0x17,0x12,0x13,0x12,0x12,0x13,0x12,0x00,0x0e,0xf0,0x2c,0xa8,0xfe,0xb0,0x2c,0x27,0xfe,0x24,0xfc,0x24,0x24,0xfc,0x04,0x00 -+// 20705 僡 ; -+,0x08,0x0c,0x0b,0x10,0x3b,0x52,0x13,0x12,0x13,0x10,0x17,0x10,0x15,0x15,0x15,0x10,0x20,0x20,0xfe,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x24,0xff,0x42,0x20,0x2a,0x09,0xf8 -+// 20706 僢 ; -+,0x08,0x0f,0x0a,0x19,0x11,0x37,0x54,0x12,0x13,0x12,0x15,0x10,0x11,0x12,0x14,0x00,0x04,0xfe,0x44,0x24,0x28,0xff,0x0a,0x08,0xff,0x48,0xa8,0xff,0x08,0x08,0x08,0x00 -+// 20707 僣 ; -+,0x11,0x19,0x17,0x31,0x37,0x51,0x12,0x14,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x08,0x08,0xdf,0x08,0xdf,0x08,0xd4,0x23,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 20708 僤 ; -+,0x08,0x0f,0x0a,0x13,0x18,0x33,0x52,0x13,0x12,0x13,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0xde,0x52,0xde,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 20709 僥 ; -+,0x08,0x0c,0x0b,0x10,0x1b,0x31,0x57,0x11,0x17,0x10,0x17,0x10,0x11,0x13,0x1c,0x00,0x40,0x40,0xfc,0x40,0xfe,0x08,0xbe,0x08,0xbf,0x00,0xfe,0x90,0x91,0x11,0x0f,0x00 -+// 20710 僦 ; -+,0x08,0x0a,0x09,0x17,0x10,0x37,0x54,0x14,0x17,0x11,0x15,0x15,0x19,0x15,0x12,0x00,0x10,0x18,0x14,0xd6,0x14,0xbe,0x90,0x90,0xa8,0x28,0xa8,0x68,0x29,0x49,0x87,0x00 -+// 20711 僧 ; -+,0x09,0x0c,0x08,0x13,0x1b,0x32,0x52,0x13,0x12,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x08,0x8c,0x90,0xfe,0x2a,0xae,0xb2,0xfe,0x02,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 20712 僨 ; -+,0x08,0x0f,0x08,0x11,0x1f,0x31,0x53,0x12,0x13,0x12,0x13,0x12,0x13,0x11,0x13,0x14,0x20,0xfe,0x20,0x28,0xff,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x08,0x06,0x04 -+// 20713 僩 ; -+,0x10,0x1f,0x14,0x17,0x34,0x57,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x16,0x14,0x00,0x00,0xdf,0x51,0xdf,0x51,0xdf,0xf9,0x89,0xf9,0x89,0xf9,0x89,0x29,0x11,0x05,0x02 -+// 20714 僪 ; -+,0x09,0x0c,0x08,0x13,0x18,0x30,0x51,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0xfe,0x04,0x08,0xff,0x52,0x94,0x30,0xfe,0x52,0x8a,0x76,0x52,0x52,0x72,0x0a,0x04 -+// 20715 僫 ; -+,0x08,0x0f,0x08,0x13,0x1a,0x33,0x50,0x10,0x17,0x10,0x12,0x12,0x14,0x14,0x10,0x00,0x00,0xff,0x50,0xde,0x02,0xde,0x50,0x50,0xff,0x40,0x24,0xb2,0x95,0x84,0x7c,0x00 -+// 20716 僬 ; -+,0x08,0x0c,0x09,0x11,0x13,0x35,0x51,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x14,0x00,0xa0,0x90,0xfe,0x20,0x20,0xfe,0x20,0xfe,0x20,0x20,0xfe,0x00,0xa4,0x52,0x52,0x00 -+// 20717 僭 ; -+,0x08,0x0f,0x09,0x15,0x17,0x32,0x52,0x14,0x18,0x13,0x12,0x13,0x12,0x13,0x12,0x00,0x00,0xbe,0x08,0x28,0xff,0x8c,0xd5,0xa7,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00 -+// 20718 僮 ; -+,0x08,0x0c,0x0b,0x10,0x17,0x30,0x53,0x12,0x13,0x12,0x13,0x10,0x17,0x10,0x1f,0x10,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x00 -+// 20719 僯 ; -+,0x08,0x0d,0x08,0x13,0x38,0x50,0x11,0x16,0x13,0x12,0x14,0x1a,0x10,0x11,0x1e,0x00,0x24,0x26,0xa8,0xfe,0x70,0xac,0x27,0x2a,0xdf,0x48,0x68,0xbf,0xa8,0x08,0x08,0x00 -+// 20720 僰 ; -+,0x04,0x3f,0x04,0x3f,0x25,0x25,0x2e,0x15,0x64,0x04,0x00,0x01,0x02,0x0c,0x30,0x00,0x10,0x7f,0x10,0x7e,0x52,0x5a,0x34,0x52,0x92,0x90,0x80,0x40,0x30,0x0c,0x03,0x00 -+// 20721 僱 ; -+,0x08,0x0c,0x0b,0x12,0x1b,0x32,0x52,0x13,0x12,0x12,0x12,0x14,0x14,0x14,0x18,0x00,0x40,0x20,0xfe,0x02,0xfe,0x90,0x88,0xff,0x88,0xfe,0x88,0xfe,0x88,0xff,0x80,0x00 -+// 20722 僲 ; -+,0x08,0x0f,0x08,0x13,0x1a,0x33,0x50,0x12,0x13,0x14,0x1a,0x11,0x11,0x12,0x14,0x10,0x00,0xff,0x50,0xfe,0x52,0xfe,0x08,0x08,0xbf,0xa8,0xa8,0x7f,0x08,0x08,0x08,0x08 -+// 20723 僳 ; -+,0x08,0x0f,0x08,0x13,0x1a,0x32,0x53,0x11,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0xff,0x50,0xfe,0x52,0x52,0xfe,0x24,0xa8,0xff,0x70,0xa8,0x26,0x23,0x22,0x20 -+// 20724 僴 ; -+,0x08,0x0f,0x0a,0x0b,0x12,0x13,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0xde,0x52,0xde,0x52,0xde,0x02,0xfa,0x8a,0xfa,0x8a,0xfa,0x82,0x0a,0x04,0x00 -+// 20725 僵 ; -+,0x08,0x0f,0x08,0x1b,0x12,0x33,0x52,0x17,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x17,0x00,0xff,0x00,0xfe,0x22,0xfe,0x22,0xff,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff -+// 20726 僶 ; -+,0x08,0x0f,0x0a,0x12,0x1b,0x30,0x57,0x14,0x17,0x14,0x17,0x10,0x10,0x10,0x10,0x00,0x00,0xfc,0x94,0x94,0x9c,0x90,0x9e,0x92,0x9e,0x92,0x9e,0x90,0x91,0x91,0x7f,0x00 -+// 20727 僷 ; -+,0x09,0x0f,0x09,0x12,0x12,0x3f,0x52,0x12,0x13,0x10,0x17,0x10,0x11,0x12,0x14,0x10,0x10,0xfe,0x10,0x48,0x48,0xfe,0x48,0x78,0xff,0x20,0xfc,0xb0,0x2c,0x27,0x22,0x20 -+// 20728 僸 ; -+,0x09,0x09,0x17,0x11,0x33,0x55,0x19,0x13,0x10,0x17,0x10,0x12,0x13,0x12,0x14,0x10,0x08,0x08,0xdf,0x9c,0x5a,0x2b,0x48,0xfe,0x00,0xff,0x20,0x24,0x22,0x23,0xa2,0x40 -+// 20729 價 ; -+,0x08,0x0f,0x08,0x1b,0x12,0x33,0x51,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x12,0x00,0xff,0x50,0xfe,0x52,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xc4,0x06,0x04 -+// 20730 僺 ; -+,0x08,0x0d,0x09,0x11,0x10,0x3b,0x52,0x13,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0xf8,0x08,0xf8,0x00,0xde,0x52,0xde,0x20,0xfe,0x60,0xb0,0x2c,0x27,0x22,0x20 -+// 20731 僻 ; -+,0x08,0x0f,0x14,0x14,0x34,0x57,0x14,0x14,0x17,0x16,0x16,0x1a,0x1b,0x12,0x12,0x00,0x10,0x88,0xff,0x82,0xa3,0x92,0x14,0x7f,0x88,0x88,0xbf,0x88,0x88,0x88,0x08,0x08 -+// 20732 僼 ; -+,0x08,0x0c,0x0b,0x12,0x1b,0x32,0x53,0x10,0x17,0x10,0x13,0x12,0x13,0x11,0x10,0x17,0x90,0x90,0xfc,0x94,0xfc,0x94,0xfc,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x08,0x90,0xff -+// 20733 僽 ; -+,0x08,0x0f,0x09,0x11,0x1f,0x33,0x55,0x15,0x19,0x10,0x10,0x15,0x15,0x15,0x14,0x00,0xc8,0x08,0x09,0x2a,0xdc,0x88,0x54,0x22,0x43,0x82,0x40,0x22,0x25,0x05,0xfc,0x00 -+// 20734 僾 ; -+,0x08,0x0d,0x0a,0x11,0x1b,0x34,0x52,0x12,0x14,0x11,0x11,0x12,0x1c,0x11,0x16,0x10,0x1c,0xe4,0x46,0x28,0xff,0x4a,0xa4,0x8a,0xf8,0x00,0xf8,0x90,0x60,0x9e,0x04,0x00 -+// 20735 僿 ; -+,0x10,0x18,0x17,0x14,0x21,0x30,0x53,0x10,0x17,0x11,0x12,0x15,0x10,0x10,0x17,0x10,0x40,0x20,0xff,0x89,0xfc,0x88,0xfc,0x88,0xff,0x28,0x24,0xfb,0x22,0x20,0xfe,0x00 -+// 20736 儀 ; -+,0x09,0x0c,0x0b,0x18,0x13,0x30,0x57,0x10,0x17,0x11,0x17,0x11,0x17,0x11,0x17,0x12,0x08,0x90,0xfe,0x20,0xfe,0x20,0xff,0x14,0x92,0x10,0xff,0x94,0x18,0x29,0x45,0x03 -+// 20737 儁 ; -+,0x09,0x0d,0x09,0x13,0x15,0x31,0x51,0x11,0x11,0x13,0x12,0x12,0x12,0x12,0x12,0x00,0x20,0xfc,0x20,0xfc,0x20,0xfc,0x20,0xfe,0x00,0xde,0x52,0x72,0x02,0x0a,0x04,0x00 -+// 20738 儂 ; -+,0x08,0x0f,0x0a,0x13,0x1a,0x33,0x50,0x13,0x12,0x13,0x12,0x13,0x12,0x14,0x15,0x18,0x90,0xfc,0x94,0xfc,0x94,0xfc,0x00,0xfe,0x00,0xfc,0x00,0xff,0xa0,0x98,0xee,0x84 -+// 20739 儃 ; -+,0x08,0x0c,0x0b,0x18,0x13,0x32,0x52,0x12,0x13,0x10,0x11,0x11,0x11,0x11,0x10,0x17,0x40,0x20,0xff,0x00,0xfe,0x92,0xf2,0x02,0xfe,0x00,0xfc,0x44,0x24,0xfc,0x00,0xff -+// 20740 億 ; -+,0x04,0x06,0x05,0x08,0x0b,0x18,0x29,0x49,0x09,0x09,0x09,0x08,0x0a,0x0a,0x0c,0x08,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x92,0x95,0x85,0x7c -+// 20741 儅 ; -+,0x0a,0x0d,0x08,0x13,0x14,0x35,0x51,0x11,0x10,0x13,0x12,0x13,0x12,0x13,0x12,0x00,0x24,0x26,0xa8,0xff,0x01,0xfe,0x04,0xfc,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x02,0x00 -+// 20742 儆 ; -+,0x0a,0x0a,0x17,0x12,0x32,0x57,0x14,0x1b,0x15,0x15,0x17,0x10,0x10,0x12,0x11,0x00,0x88,0x8c,0xe8,0x90,0x9f,0xe2,0x52,0x52,0x54,0x44,0x48,0x48,0x54,0xa3,0x42,0x00 -+// 20743 儇 ; -+,0x0b,0x0a,0x12,0x13,0x38,0x57,0x10,0x11,0x11,0x11,0x10,0x11,0x16,0x18,0x11,0x10,0xfe,0x52,0x52,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0xa2,0x94,0x88,0xa7,0xc2,0x80 -+// 20744 儈 ; -+,0x08,0x0c,0x08,0x13,0x1d,0x30,0x53,0x12,0x12,0x13,0x10,0x11,0x11,0x11,0x11,0x11,0x40,0x40,0xb0,0x0c,0xfb,0x00,0xfe,0xaa,0x72,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 20745 儉 ; -+,0x04,0x06,0x04,0x09,0x0a,0x1c,0x2b,0x4a,0x0a,0x0b,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x20,0x50,0x88,0x04,0xfb,0x00,0xde,0x52,0x52,0xde,0x08,0x08,0x88,0xd4,0xa2,0x41 -+// 20746 儊 ; -+,0x08,0x0c,0x0b,0x11,0x12,0x32,0x54,0x13,0x10,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x88,0x88,0xde,0x88,0xdc,0xab,0x88,0xff,0x22,0x20,0x3e,0x20,0x20,0xa0,0x7f,0x00 -+// 20747 儋 ; -+,0x08,0x0c,0x09,0x13,0x3a,0x52,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x80,0xfc,0x08,0xff,0x48,0xa4,0x12,0xff,0x00,0xfe,0x00,0xfe,0x00,0xfe,0x82,0xfe -+// 20748 儌 ; -+,0x08,0x0d,0x0b,0x12,0x1b,0x32,0x53,0x10,0x17,0x11,0x11,0x11,0x12,0x12,0x15,0x18,0x88,0x0c,0xc8,0x50,0xdf,0x52,0xd2,0x2a,0xea,0x04,0xc4,0x44,0x4c,0x4a,0x53,0xa2 -+// 20749 儍 ; -+,0x08,0x0c,0x0b,0x12,0x1a,0x32,0x53,0x11,0x12,0x1c,0x11,0x12,0x14,0x10,0x13,0x1c,0x20,0x94,0x4a,0xb6,0x4a,0xa6,0xfe,0x04,0x42,0xfd,0x89,0x50,0x20,0xd8,0x07,0x02 -+// 20750 儎 ; -+,0x09,0x0d,0x0b,0x11,0x1f,0x31,0x57,0x15,0x17,0x15,0x17,0x11,0x1f,0x11,0x11,0x11,0x10,0x14,0xd2,0x10,0xff,0x10,0xd2,0x53,0xd2,0x4c,0xc8,0x09,0xd5,0x25,0x42,0x00 -+// 20751 儏 ; -+,0x08,0x0c,0x08,0x09,0x11,0x13,0x34,0x51,0x16,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x80,0xee,0x82,0xf2,0x2c,0x4c,0x92,0x22,0xa4,0x68,0xff,0x70,0xa8,0x24,0x23,0x22 -+// 20752 儐 ; -+,0x08,0x0d,0x0a,0x12,0x10,0x31,0x50,0x11,0x13,0x15,0x11,0x11,0x11,0x11,0x10,0x13,0x20,0xff,0x2a,0xa8,0xe6,0x2c,0x70,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04 -+// 20753 儑 ; -+,0x00,0x09,0x0d,0x09,0x11,0x39,0x51,0x12,0x13,0x10,0x11,0x13,0x10,0x12,0x12,0x14,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x08,0x52,0xde,0x84,0x4a,0xde,0x02,0x94,0x4a,0x4a -+// 20754 儒 ; -+,0x0b,0x0c,0x0b,0x14,0x13,0x30,0x53,0x10,0x17,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0xfc,0x20,0xff,0x22,0xbc,0x20,0x9c,0x00,0xff,0x40,0xfe,0x52,0x52,0x52,0x4a,0x04 -+// 20755 儓 ; -+,0x08,0x0c,0x0b,0x10,0x11,0x30,0x57,0x14,0x11,0x10,0x11,0x10,0x13,0x10,0x17,0x10,0x20,0x20,0xfe,0x20,0xfc,0x00,0xff,0x01,0xfa,0x88,0xfc,0x20,0xfc,0x20,0xff,0x00 -+// 20756 儔 ; -+,0x08,0x0f,0x08,0x13,0x10,0x37,0x50,0x13,0x10,0x17,0x10,0x17,0x14,0x14,0x17,0x10,0x40,0xfe,0x40,0xfc,0x00,0xff,0x02,0xf8,0x40,0xff,0x04,0xbf,0x94,0x84,0x94,0x08 -+// 20757 儕 ; -+,0x08,0x0f,0x09,0x10,0x17,0x35,0x55,0x17,0x18,0x12,0x13,0x12,0x13,0x12,0x14,0x18,0x40,0xff,0x10,0xa6,0x48,0x4c,0x4a,0x4d,0x08,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04 -+// 20758 儖 ; -+,0x08,0x0f,0x0a,0x13,0x12,0x33,0x52,0x12,0x13,0x10,0x13,0x12,0x12,0x12,0x17,0x10,0x08,0xe8,0x88,0xef,0x28,0xea,0x91,0x91,0xe0,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 20759 儗 ; -+,0x0a,0x0e,0x0b,0x12,0x12,0x33,0x54,0x17,0x19,0x11,0x1f,0x11,0x12,0x14,0x19,0x10,0x00,0xbf,0x02,0x4c,0x44,0xff,0x09,0xce,0x28,0x2f,0xe8,0x28,0xa8,0x58,0x8f,0x02 -+// 20760 儘 ; -+,0x08,0x0c,0x0b,0x18,0x13,0x30,0x53,0x10,0x17,0x11,0x14,0x18,0x13,0x12,0x12,0x1f,0x40,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0xfe,0x24,0x92,0x92,0xfc,0x94,0x94,0xff -+// 20761 儙 ; -+,0x08,0x0c,0x08,0x10,0x10,0x35,0x50,0x16,0x12,0x12,0x12,0x12,0x12,0x12,0x15,0x18,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x80,0xfe,0x82,0xfe,0x00,0xff -+// 20762 儚 ; -+,0x08,0x0f,0x08,0x09,0x11,0x19,0x28,0x49,0x09,0x0a,0x08,0x09,0x0e,0x08,0x09,0x0e,0x48,0xff,0x48,0xfe,0x52,0xfe,0x00,0xff,0x41,0x7e,0x84,0x48,0x30,0x60,0x80,0x00 -+// 20763 儛 ; -+,0x0a,0x0b,0x16,0x12,0x27,0x32,0x52,0x1f,0x12,0x17,0x14,0x1a,0x11,0x11,0x12,0x14,0x00,0xfe,0xa8,0xa8,0xfe,0xa8,0xa8,0xff,0x08,0xfe,0x68,0xa8,0xbf,0x08,0x08,0x08 -+// 20764 儜 ; -+,0x08,0x0b,0x0a,0x15,0x12,0x30,0x50,0x13,0x12,0x17,0x10,0x13,0x10,0x10,0x10,0x10,0x40,0xff,0x22,0x94,0x96,0xfc,0x00,0xfc,0x94,0xff,0x00,0xfe,0x20,0x20,0xa0,0x40 -+// 20765 儝 ; -+,0x08,0x0e,0x09,0x18,0x18,0x29,0x0a,0x0b,0x0a,0x08,0x09,0x08,0x08,0x09,0x0a,0x08,0x88,0xaa,0xdc,0x88,0xcc,0x51,0x00,0xff,0x22,0x20,0xfe,0xa8,0xa4,0x23,0x20,0x20 -+// 20766 儞 ; -+,0x08,0x0f,0x08,0x11,0x37,0x52,0x13,0x12,0x13,0x12,0x13,0x12,0x13,0x12,0x12,0x00,0x02,0xff,0xac,0x22,0xff,0x22,0x76,0xaa,0x76,0x22,0x76,0xaa,0x76,0x22,0x26,0x00 -+// 20767 償 ; -+,0x09,0x0c,0x0b,0x12,0x15,0x31,0x51,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x13,0x24,0xaa,0xff,0x02,0xfc,0x08,0xf8,0x00,0xfc,0x04,0xc4,0x3c,0x04,0xfc,0x88,0x06 -+// 20768 儠 ; -+,0x08,0x0d,0x0a,0x11,0x37,0x55,0x14,0x15,0x17,0x14,0x16,0x15,0x16,0x15,0x1e,0x14,0x94,0x26,0x48,0x24,0xfe,0x14,0xe4,0x14,0xfc,0x44,0x64,0x54,0x44,0x55,0xe5,0x43 -+// 20769 儡 ; -+,0x08,0x0d,0x09,0x11,0x11,0x31,0x50,0x17,0x15,0x15,0x17,0x15,0x15,0x17,0x14,0x00,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xdf,0x55,0x55,0xdf,0x55,0x55,0xdf,0x51,0x00 -+// 20770 儢 ; -+,0x04,0x06,0x0c,0x0b,0x12,0x3a,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x15,0x15,0x1a,0x20,0x3e,0x20,0xff,0x22,0xf8,0x24,0x1c,0xfe,0x92,0xfe,0x92,0xfe,0x51,0x55,0x7c -+// 20771 儣 ; -+,0x08,0x0c,0x0b,0x12,0x1b,0x32,0x53,0x12,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x19,0x20,0x10,0xff,0x48,0xfe,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0xc3,0x02 -+// 20772 儤 ; -+,0x09,0x0d,0x09,0x11,0x19,0x30,0x53,0x10,0x17,0x11,0x16,0x19,0x10,0x13,0x10,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xfe,0x88,0xff,0x28,0x27,0x2a,0xb0,0x2c,0xa4,0x40 -+// 20773 儥 ; -+,0x08,0x0f,0x08,0x11,0x18,0x33,0x52,0x13,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x13,0x20,0xfe,0x20,0xfc,0x00,0xfe,0x52,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 20774 儦 ; -+,0x08,0x0c,0x0b,0x12,0x13,0x3a,0x53,0x12,0x12,0x12,0x12,0x12,0x14,0x15,0x1a,0x10,0x20,0x10,0xff,0x48,0xfe,0x4a,0xfe,0x8a,0xeb,0x8c,0xe9,0x87,0x14,0x4a,0x29,0x00 -+// 20775 儧 ; -+,0x09,0x0d,0x0b,0x11,0x17,0x31,0x52,0x1d,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x13,0x08,0x08,0xde,0x08,0xff,0x8c,0x52,0xfc,0x84,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 20776 儨 ; -+,0x08,0x0d,0x0a,0x13,0x1a,0x34,0x55,0x19,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x12,0x63,0x8c,0x10,0xdf,0x92,0xa2,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x86,0x04 -+// 20777 儩 ; -+,0x10,0x1f,0x14,0x24,0x27,0x64,0x27,0x24,0x24,0x27,0x20,0x25,0x28,0x30,0x20,0x00,0x00,0xbe,0xa2,0xbe,0xa2,0xa2,0xbe,0xa0,0xbf,0xd5,0x25,0x49,0x91,0xaa,0x04,0x00 -+// 20778 優 ; -+,0x0b,0x0c,0x09,0x11,0x19,0x31,0x53,0x14,0x12,0x12,0x10,0x11,0x12,0x14,0x10,0x17,0xfe,0x40,0xfc,0x04,0xfc,0x04,0xff,0xa2,0x94,0x7c,0xf8,0x88,0x50,0x20,0xd8,0x06 -+// 20779 儫 ; -+,0x08,0x0c,0x0b,0x10,0x10,0x30,0x53,0x14,0x11,0x10,0x11,0x16,0x11,0x16,0x11,0x16,0x40,0x20,0xff,0x88,0xf8,0x00,0xff,0x01,0xfc,0x60,0xae,0x50,0xa8,0x54,0x93,0x60 -+// 20780 儬 ; -+,0x09,0x09,0x0f,0x11,0x17,0x31,0x5f,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x15,0x14,0x00,0x1e,0xd2,0x1e,0x92,0x12,0xfe,0x12,0xd2,0x5e,0xcc,0x4c,0xd5,0x55,0x63,0x80 -+// 20781 儭 ; -+,0x12,0x19,0x17,0x20,0x24,0x63,0x2f,0x22,0x22,0x2f,0x22,0x2b,0x32,0x22,0x2a,0x24,0x00,0x3e,0xa2,0x22,0xbe,0x22,0xbe,0x22,0x22,0xbe,0x14,0x14,0xa5,0xa5,0x47,0x80 -+// 20782 儮 ; -+,0x08,0x0f,0x0a,0x13,0x32,0x53,0x12,0x13,0x13,0x12,0x12,0x12,0x14,0x14,0x1b,0x00,0x00,0xff,0x22,0xdc,0x44,0xff,0xec,0x56,0x45,0x10,0x90,0x9e,0x90,0x90,0xff,0x00 -+// 20783 儯 ; -+,0x09,0x0c,0x0b,0x18,0x17,0x31,0x53,0x15,0x19,0x11,0x11,0x11,0x10,0x12,0x14,0x10,0x24,0xa8,0xfe,0x40,0xff,0x88,0x04,0xff,0x20,0xfc,0x20,0xfe,0x0a,0xa6,0xaa,0x04 -+// 20784 儰 ; -+,0x08,0x0f,0x08,0x10,0x17,0x32,0x51,0x11,0x11,0x12,0x13,0x12,0x15,0x15,0x15,0x18,0x90,0xfe,0x90,0x3c,0xe8,0x46,0xf8,0x08,0xfc,0x04,0xfe,0x0a,0x56,0x52,0x0a,0x04 -+// 20785 儱 ; -+,0x0a,0x0d,0x17,0x12,0x32,0x57,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x14,0x15,0x14,0x10,0x10,0xde,0x90,0x9e,0xc2,0x1e,0xd0,0x5e,0xd0,0x5e,0xd0,0x5e,0x50,0x51,0x8f -+// 20786 儲 ; -+,0x08,0x0d,0x11,0x17,0x30,0x57,0x10,0x17,0x10,0x10,0x17,0x14,0x14,0x14,0x17,0x10,0x08,0x08,0x0a,0xbf,0x0a,0x8c,0x3f,0x90,0x3e,0x62,0xa2,0xbe,0xa2,0xa2,0xbe,0x22 -+// 20787 儳 ; -+,0x08,0x0c,0x09,0x13,0x32,0x53,0x12,0x13,0x12,0x13,0x15,0x13,0x12,0x13,0x10,0x13,0x80,0xfc,0x08,0xfc,0x04,0xfc,0x10,0xde,0x90,0xfe,0x08,0xfc,0x44,0xfc,0x95,0x1f -+// 20788 儴 ; -+,0x08,0x0f,0x08,0x13,0x3a,0x53,0x10,0x17,0x10,0x17,0x10,0x17,0x11,0x17,0x1d,0x11,0x40,0xfe,0x00,0xde,0x52,0xde,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x08,0x47,0x82 -+// 20789 儵 ; -+,0x08,0x0c,0x08,0x11,0x14,0x37,0x54,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x10,0x11,0x80,0xfe,0xc4,0x38,0xc6,0xff,0x92,0xd6,0xba,0xfe,0x10,0xfe,0x10,0xff,0xaa,0x29 -+// 20790 儶 ; -+,0x09,0x0d,0x09,0x19,0x11,0x33,0x55,0x11,0x11,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x22,0x22,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xff,0x45,0x45,0x7d,0x05,0x02 -+// 20791 儷 ; -+,0x0b,0x0c,0x0b,0x13,0x1a,0x32,0x50,0x13,0x12,0x13,0x12,0x15,0x15,0x15,0x15,0x19,0xdf,0x00,0xde,0x5a,0xd6,0x52,0x20,0xff,0x48,0xfe,0x4a,0xfe,0x10,0xde,0x51,0x8f -+// 20792 儸 ; -+,0x08,0x0f,0x0a,0x12,0x13,0x31,0x52,0x17,0x11,0x12,0x17,0x10,0x15,0x15,0x19,0x10,0x00,0xff,0x49,0x49,0xff,0x28,0xa4,0xbf,0x64,0xbe,0xe4,0x7f,0x24,0x24,0x3f,0x20 -+// 20793 儹 ; -+,0x15,0x1f,0x15,0x1f,0x13,0x35,0x55,0x1b,0x12,0x13,0x12,0x13,0x12,0x13,0x11,0x16,0x28,0xbe,0x28,0xfe,0x14,0x55,0xa7,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x98,0x06 -+// 20794 儺 ; -+,0x0a,0x0a,0x0f,0x12,0x13,0x31,0x57,0x15,0x17,0x11,0x17,0x11,0x17,0x12,0x14,0x18,0x80,0x94,0xd4,0x9f,0xb4,0x14,0xdf,0x54,0xd4,0x14,0xdf,0x14,0xd4,0x9f,0x50,0x50 -+// 20795 儻 ; -+,0x09,0x0c,0x0b,0x12,0x30,0x50,0x13,0x12,0x12,0x13,0x10,0x13,0x10,0x17,0x12,0x14,0x24,0xa8,0xff,0x85,0xfc,0x00,0xfe,0xaa,0x72,0xfe,0x20,0xfe,0x20,0xff,0x92,0x92 -+// 20796 儼 ; -+,0x0b,0x0e,0x0b,0x10,0x17,0x35,0x54,0x17,0x15,0x15,0x15,0x15,0x15,0x17,0x18,0x10,0xde,0x52,0xde,0x00,0xff,0xe8,0x48,0xff,0x2a,0x3a,0xe4,0x34,0xe4,0x2a,0x31,0x21 -+// 20797 儽 ; -+,0x09,0x0d,0x09,0x11,0x17,0x35,0x57,0x15,0x17,0x10,0x11,0x10,0x13,0x11,0x16,0x10,0xfc,0x24,0xfc,0x24,0xff,0x55,0xdf,0x55,0xdf,0x4c,0xf8,0xcc,0xf2,0x28,0xa6,0x44 -+// 20798 儾 ; -+,0x08,0x0f,0x08,0x0b,0x12,0x17,0x35,0x51,0x10,0x13,0x10,0x17,0x11,0x13,0x15,0x11,0x20,0xff,0x20,0xfe,0x22,0xff,0x55,0xdc,0x88,0xfe,0x88,0xff,0x12,0x54,0x8c,0x07 -+// 20799 儿 ; -+,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 20800 兀 ; -+,0x00,0x3f,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00,0x00 -+// 20801 允 ; -+,0x01,0x01,0x02,0x02,0x04,0x0f,0x05,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x08,0x04,0xfe,0x24,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20802 兂 ; -+,0x00,0x00,0x1f,0x08,0x0c,0x08,0x10,0x3f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0xfe,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 20803 元 ; -+,0x00,0x0f,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xfc,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20804 兄 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x0a,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x28,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 20805 充 ; -+,0x01,0x00,0x3f,0x01,0x03,0x06,0x08,0x1f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x80,0xfe,0x00,0xa0,0x10,0x08,0xfc,0x48,0x40,0x40,0x40,0x42,0x42,0x3e,0x00 -+// 20806 兆 ; -+,0x02,0x02,0x02,0x22,0x1a,0x12,0x02,0x02,0x0a,0x72,0x22,0x04,0x04,0x08,0x10,0x20,0x20,0x20,0x24,0x26,0x28,0x30,0x20,0x30,0x28,0x26,0x24,0x20,0x21,0x21,0x1f,0x00 -+// 20807 兇 ; -+,0x00,0x12,0x11,0x10,0x11,0x12,0x14,0x1f,0x12,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x20,0x30,0x44,0x84,0x44,0x34,0x24,0xfc,0x24,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20808 先 ; -+,0x00,0x08,0x08,0x0f,0x08,0x10,0x10,0x3f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0xfe,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20809 光 ; -+,0x00,0x10,0x0c,0x06,0x04,0x00,0x3f,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x80,0x88,0x8c,0x88,0x90,0x82,0xff,0x20,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 20810 兊 ; -+,0x02,0x03,0x04,0x09,0x11,0x62,0x07,0x00,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x20,0x10,0x8c,0x27,0x12,0xf8,0x08,0x20,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 20811 克 ; -+,0x00,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x0a,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x80,0xfe,0x80,0x80,0xf8,0x08,0x08,0xf8,0x28,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20812 兌 ; -+,0x02,0x02,0x04,0x08,0x1f,0x28,0x08,0x08,0x0f,0x09,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x10,0x0c,0x07,0xfa,0x08,0x08,0x08,0xf8,0x28,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20813 免 ; -+,0x02,0x02,0x07,0x08,0x10,0x2f,0x08,0x08,0x0f,0x09,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0xf8,0x10,0x20,0xfc,0x84,0x84,0xfc,0x24,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20814 兎 ; -+,0x00,0x1f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x09,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x1c,0xe0,0x80,0x80,0xfc,0x84,0x84,0xfc,0x44,0x50,0x48,0x4c,0x49,0x41,0x3f,0x00 -+// 20815 兏 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x17,0x11,0x11,0x11,0x11,0x22,0x22,0x44,0x08,0x02,0xff,0x40,0x40,0x7c,0x40,0x40,0xff,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20816 児 ; -+,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20817 兑 ; -+,0x08,0x06,0x02,0x0f,0x08,0x08,0x08,0x08,0x0f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x30,0x40,0xf8,0x08,0x08,0x08,0x08,0xf8,0x20,0x20,0x22,0x22,0x22,0x1e,0x00 -+// 20818 兒 ; -+,0x01,0x1e,0x10,0x10,0x1f,0x10,0x10,0x1f,0x12,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x80,0x7c,0x04,0x04,0x7c,0x04,0x04,0xfc,0x24,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 20819 兓 ; -+,0x00,0x00,0x3f,0x04,0x14,0x14,0x3f,0x04,0x0c,0x0a,0x0a,0x12,0x13,0x26,0x43,0x00,0x00,0x00,0x7f,0x08,0x48,0x48,0x7f,0x10,0x10,0x28,0x28,0xa8,0x49,0x89,0x07,0x00 -+// 20820 兔 ; -+,0x02,0x03,0x04,0x08,0x1f,0x28,0x48,0x08,0x0f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0xf8,0x10,0x20,0xfc,0x84,0x84,0x84,0xfc,0x50,0x48,0x4c,0x49,0x41,0x7f,0x00 -+// 20821 兕 ; -+,0x00,0x1f,0x11,0x11,0x11,0x11,0x10,0x1f,0x12,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x3e,0x22,0x22,0x22,0xe2,0x02,0xfe,0x22,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20822 兖 ; -+,0x01,0x00,0x3f,0x04,0x06,0x09,0x31,0x02,0x0f,0x05,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0xc0,0xff,0x10,0x0c,0x06,0x94,0x08,0xfc,0x28,0x20,0x22,0x22,0x22,0x1e,0x00 -+// 20823 兗 ; -+,0x00,0x00,0x3f,0x04,0x0c,0x17,0x24,0x04,0x07,0x05,0x01,0x02,0x02,0x04,0x08,0x30,0x80,0x40,0xff,0x08,0x06,0xfb,0x0a,0x08,0xf8,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 20824 兘 ; -+,0x00,0x3f,0x00,0x00,0x00,0x7f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x21,0x40,0x10,0x10,0x28,0x24,0x43,0xbd,0x00,0x7c,0x44,0x44,0x44,0x7d,0x45,0x01,0xff,0x00 -+// 20825 兙 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x20,0x20,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x08,0x08,0xc8,0x08,0x08,0xff,0x88,0x88,0x88,0x08,0x08,0x08,0x09,0x01,0xff,0x00 -+// 20826 党 ; -+,0x00,0x08,0x04,0x1f,0x10,0x20,0x07,0x04,0x04,0x07,0x02,0x02,0x04,0x04,0x08,0x30,0x80,0x88,0x90,0xff,0x02,0x04,0xf0,0x10,0x10,0xf0,0x20,0x22,0x22,0x22,0x1e,0x00 -+// 20827 兛 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x11,0x11,0x11,0x1f,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x04,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x11,0x11,0x01,0xff,0x00 -+// 20828 兜 ; -+,0x08,0x19,0x23,0x22,0x23,0x22,0x22,0x3b,0x00,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x80,0x0e,0xe2,0x22,0xe2,0x22,0x22,0xee,0x00,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 20829 兝 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x11,0x11,0x11,0x1f,0x0a,0x0a,0x12,0x13,0x22,0x41,0x00,0x24,0x36,0xa4,0x22,0x42,0x41,0xbd,0x24,0x24,0x24,0x44,0x9c,0x09,0x01,0xff,0x00 -+// 20830 兞 ; -+,0x04,0x04,0x3f,0x04,0x04,0x1f,0x11,0x11,0x1f,0x0a,0x0a,0x12,0x12,0x22,0x41,0x00,0x00,0x04,0x9e,0x70,0x10,0x1e,0xf0,0x10,0x1e,0xf0,0x12,0x12,0x0e,0x01,0xff,0x00 -+// 20831 兟 ; -+,0x04,0x24,0x24,0x3f,0x24,0x45,0x05,0x7f,0x12,0x12,0x12,0x12,0x23,0x26,0x41,0x00,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 20832 兠 ; -+,0x00,0x09,0x0b,0x0a,0x7b,0x0a,0x0a,0x1b,0x68,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x08,0xea,0x2b,0xec,0x28,0x29,0xe9,0x07,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 20833 兡 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x21,0x21,0x21,0x3f,0x12,0x12,0x12,0x12,0x22,0x21,0x40,0x00,0x7e,0x10,0x10,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x7c,0x45,0x01,0xff,0x00 -+// 20834 兢 ; -+,0x08,0x08,0x7f,0x08,0x08,0x3f,0x21,0x21,0x3f,0x14,0x14,0x14,0x15,0x2e,0x45,0x00,0x10,0x10,0x7f,0x10,0x10,0x7e,0x42,0x42,0x7e,0x28,0x28,0xa9,0x29,0x49,0x87,0x00 -+// 20835 兣 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x22,0x22,0x22,0x3e,0x15,0x15,0x15,0x16,0x24,0x43,0x00,0x00,0xff,0x80,0xbe,0xaa,0xbe,0xaa,0xbe,0x88,0x7e,0x08,0xff,0x01,0x01,0xff,0x00 -+// 20836 兤 ; -+,0x08,0x0a,0x4b,0x2a,0x2c,0x08,0x7e,0x14,0x14,0x15,0x15,0x15,0x15,0x26,0x24,0x43,0x10,0x08,0xff,0xa8,0xfe,0xa4,0xff,0x90,0xfe,0x52,0x7e,0x52,0x7e,0x29,0x45,0xff -+// 20837 入 ; -+,0x06,0x03,0x01,0x00,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x40,0x00,0x00,0x00,0x00,0x80,0x80,0x40,0x40,0x20,0x10,0x10,0x08,0x04,0x07,0x02,0x00,0x00 -+// 20838 兦 ; -+,0x01,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x18,0x10,0x3f,0x10,0x00,0x00,0x80,0x80,0x40,0x40,0xa0,0xa0,0x10,0x08,0x0c,0x07,0x02,0x00,0xff,0x00,0x00,0x00 -+// 20839 內 ; -+,0x03,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x18,0x10,0x10,0x10,0x00,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0xc4,0x24,0x34,0x1c,0x14,0x04,0x14,0x08,0x00 -+// 20840 全 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x1f,0x20,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x80,0x80,0x40,0x20,0x18,0x0e,0xfc,0x80,0x80,0x88,0xfc,0x80,0x80,0x82,0xff,0x00 -+// 20841 兩 ; -+,0x00,0x3f,0x00,0x00,0x3f,0x20,0x28,0x24,0x26,0x2a,0x2a,0x30,0x20,0x20,0x20,0x00,0x02,0xff,0x80,0x80,0xfe,0x82,0xa2,0x92,0x9a,0xae,0xca,0x82,0x82,0x8a,0x84,0x00 -+// 20842 兪 ; -+,0x00,0x01,0x03,0x04,0x1f,0x60,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x00,0x80,0x40,0x20,0x18,0xf7,0x02,0x14,0x16,0x24,0x48,0x90,0x48,0x24,0x12,0x12,0x00 -+// 20843 八 ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x00,0x00,0x20,0x30,0x20,0x20,0x20,0x20,0x10,0x10,0x08,0x08,0x04,0x07,0x02,0x00,0x00 -+// 20844 公 ; -+,0x00,0x02,0x03,0x02,0x04,0x04,0x08,0x11,0x21,0x01,0x02,0x04,0x08,0x1f,0x08,0x00,0x00,0x20,0x20,0x20,0x10,0x08,0x0c,0x07,0x82,0x00,0x10,0x08,0xfc,0x8c,0x08,0x00 -+// 20845 六 ; -+,0x02,0x01,0x00,0x00,0x7f,0x00,0x00,0x02,0x03,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0x80,0xc0,0x80,0xff,0x00,0x00,0x40,0x20,0x10,0x08,0x0c,0x06,0x06,0x04,0x00 -+// 20846 兮 ; -+,0x02,0x03,0x06,0x04,0x08,0x10,0x2f,0x42,0x04,0x0f,0x04,0x00,0x00,0x01,0x00,0x00,0x60,0x40,0x20,0x10,0x08,0x07,0xfa,0x00,0x10,0xf8,0x10,0x10,0x10,0x10,0xa0,0x40 -+// 20847 兯 ; -+,0x08,0x04,0x06,0x02,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x10,0x20,0xfe,0x82,0x82,0x82,0x82,0x82,0x8e,0x84,0x80,0x80,0x80,0x80 -+// 20848 兰 ; -+,0x00,0x08,0x04,0x02,0x00,0x3f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x10,0x18,0x10,0x20,0x40,0xfe,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xff,0x00,0x00 -+// 20849 共 ; -+,0x00,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x7f,0x02,0x03,0x06,0x04,0x08,0x10,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x20,0x10,0x08,0x0c,0x06,0x04 -+// 20850 兲 ; -+,0x00,0x1f,0x00,0x00,0x0f,0x00,0x00,0x7f,0x00,0x02,0x03,0x06,0x0c,0x18,0x20,0x40,0x00,0xfe,0x80,0x88,0xfc,0x80,0x82,0xff,0x00,0x20,0x20,0x10,0x08,0x0c,0x07,0x02 -+// 20851 关 ; -+,0x04,0x02,0x03,0x02,0x3f,0x00,0x00,0x00,0x7f,0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x10,0x18,0x10,0x24,0xfe,0x80,0x80,0x80,0xff,0x80,0x40,0x20,0x10,0x18,0x0e,0x04 -+// 20852 兴 ; -+,0x00,0x22,0x11,0x19,0x0c,0x08,0x00,0x3f,0x00,0x04,0x06,0x0c,0x18,0x20,0x40,0x00,0x00,0x04,0x06,0x84,0xcc,0x88,0x10,0xff,0x00,0x20,0x10,0x08,0x0c,0x06,0x04,0x00 -+// 20853 兵 ; -+,0x00,0x07,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x7f,0x02,0x03,0x06,0x0c,0x18,0x20,0x38,0xc0,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x10,0x08,0x04,0x06,0x03,0x02 -+// 20854 其 ; -+,0x04,0x04,0x3f,0x04,0x04,0x07,0x04,0x07,0x04,0x04,0x7f,0x04,0x06,0x0c,0x18,0x20,0x10,0x10,0xfe,0x10,0x10,0xf0,0x10,0xf0,0x10,0x10,0xff,0x20,0x10,0x08,0x0c,0x08 -+// 20855 具 ; -+,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x04,0x04,0x7f,0x02,0x03,0x06,0x08,0x10,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0xff,0x00,0x10,0x08,0x0c,0x04 -+// 20856 典 ; -+,0x01,0x01,0x01,0x0f,0x09,0x09,0x0f,0x09,0x09,0x09,0x3f,0x02,0x03,0x06,0x0c,0x10,0x20,0x20,0x20,0xfc,0x24,0x24,0xfc,0x24,0x24,0x24,0xff,0x10,0x08,0x0c,0x06,0x04 -+// 20857 兹 ; -+,0x08,0x06,0x02,0x7f,0x04,0x04,0x09,0x11,0x3f,0x02,0x04,0x08,0x12,0x3f,0x01,0x00,0x10,0x18,0x22,0xff,0x10,0x10,0x14,0xa6,0x7c,0x28,0x08,0x10,0x22,0x7f,0x02,0x00 -+// 20858 兺 ; -+,0x02,0x06,0x08,0x17,0x22,0x02,0x04,0x08,0x10,0x1f,0x11,0x11,0x11,0x11,0x1f,0x00,0x20,0x10,0x0c,0xf7,0x12,0x10,0x50,0x20,0x44,0x4e,0x70,0x40,0x42,0x42,0x3e,0x00 -+// 20859 养 ; -+,0x04,0x02,0x1f,0x00,0x0f,0x00,0x3f,0x01,0x03,0x06,0x1a,0x62,0x04,0x04,0x08,0x10,0x10,0x24,0xfe,0x80,0xfc,0x82,0xff,0xa0,0x10,0x0c,0x17,0x12,0x10,0x10,0x10,0x10 -+// 20860 兼 ; -+,0x04,0x02,0x3f,0x02,0x0f,0x02,0x3f,0x02,0x1f,0x06,0x06,0x0a,0x12,0x22,0x42,0x02,0x10,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x24,0x30,0x28,0x24,0x27,0x22,0x20 -+// 20861 兽 ; -+,0x04,0x02,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x10,0x20,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 20862 兾 ; -+,0x02,0x04,0x0f,0x14,0x67,0x04,0x07,0x02,0x1f,0x02,0x02,0x7f,0x02,0x0c,0x38,0x10,0x20,0x18,0xff,0x8a,0xf8,0x88,0xf8,0x20,0xfe,0x20,0x22,0xff,0x10,0x0c,0x06,0x04 -+// 20863 兿 ; -+,0x04,0x02,0x7f,0x04,0x3f,0x04,0x0e,0x34,0x04,0x1f,0x00,0x7f,0x04,0x08,0x1f,0x08,0x10,0x20,0xff,0x20,0x7c,0x24,0x64,0x35,0xc5,0xfb,0x00,0xfe,0x10,0x08,0xfc,0x08 -+// 20864 冀 ; -+,0x02,0x3e,0x02,0x3e,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x3f,0x02,0x7f,0x03,0x0c,0x30,0x20,0x3e,0x20,0x1f,0xf8,0x88,0xf8,0x88,0xf8,0x20,0xfe,0x20,0xff,0x20,0x18,0x08 -+// 20865 冁 ; -+,0x22,0x12,0x14,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x09,0x09,0x0a,0x0c,0x08,0x00,0xfe,0x82,0xfe,0xaa,0xa8,0xfe,0xa8,0xff,0xb2,0xb6,0x28,0x24,0x73,0x22,0x00 -+// 20866 冂 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x1e,0x04,0x00 -+// 20867 冃 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0x02,0xfa,0x02,0x02,0x02,0x02,0x0e,0x04,0x00 -+// 20868 冄 ; -+,0x00,0x0f,0x08,0x08,0x08,0x3f,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x04,0x04,0x04,0xff,0x04,0x04,0x04,0xff,0x04,0x04,0x04,0x04,0x14,0x08 -+// 20869 内 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x18,0x10,0x10,0x10,0x10,0x80,0x80,0x80,0xfe,0x82,0x82,0xc2,0x22,0x12,0x0a,0x0a,0x02,0x02,0x02,0x0a,0x04 -+// 20870 円 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0x84,0xfc,0x04,0x04,0x04,0x04,0x04,0x14,0x08,0x00 -+// 20871 冇 ; -+,0x00,0x00,0x7f,0x01,0x02,0x07,0x0e,0x1a,0x22,0x42,0x02,0x02,0x02,0x02,0x02,0x02,0x80,0x80,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 20872 冈 ; -+,0x00,0x1f,0x10,0x10,0x14,0x12,0x11,0x10,0x11,0x12,0x14,0x18,0x10,0x10,0x10,0x00,0x00,0xfe,0x02,0x22,0x32,0x22,0x42,0x82,0x62,0x32,0x1a,0x0a,0x02,0x0a,0x04,0x00 -+// 20873 冉 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x7f,0x10,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x04,0x04,0x04,0x04,0x14,0x08 -+// 20874 冊 ; -+,0x00,0x1f,0x11,0x11,0x11,0x11,0x11,0x7f,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0xff,0x22,0x22,0x22,0x22,0x22,0x2a,0x24,0x00 -+// 20875 冋 ; -+,0x00,0x1f,0x10,0x10,0x10,0x13,0x12,0x12,0x12,0x12,0x13,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x02,0x02,0x02,0xf2,0x12,0x12,0x12,0x12,0xf2,0x02,0x02,0x0a,0x04,0x00 -+// 20876 册 ; -+,0x1e,0x12,0x12,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x3c,0x24,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x44,0x44,0x94,0x08,0x00 -+// 20877 再 ; -+,0x3f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0xfe,0x80,0x80,0xf8,0x88,0x88,0xf8,0x88,0x88,0x88,0xff,0x08,0x08,0x08,0x28,0x10 -+// 20878 冎 ; -+,0x00,0x07,0x04,0x07,0x04,0x04,0x04,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xf8,0x08,0xc8,0x48,0x48,0x48,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 20879 冏 ; -+,0x00,0x3f,0x20,0x22,0x23,0x24,0x38,0x27,0x24,0x24,0x27,0x24,0x20,0x20,0x20,0x00,0x00,0xfe,0x02,0x22,0x12,0x1a,0x0a,0xf2,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04,0x00 -+// 20880 冐 ; -+,0x1f,0x10,0x17,0x10,0x17,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x00,0xfe,0x02,0xfa,0x02,0xfa,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x14,0x08,0x00 -+// 20881 冑 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x0f,0x08,0x0b,0x08,0x08,0x0b,0x08,0x08,0x08,0x80,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfc,0x04,0xf4,0x04,0x04,0xf4,0x04,0x14,0x08 -+// 20882 冒 ; -+,0x1f,0x10,0x17,0x10,0x17,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0xfe,0x02,0xfa,0x02,0xfa,0x02,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 20883 冓 ; -+,0x02,0x3f,0x02,0x1f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x7f,0x08,0x08,0x08,0x08,0x20,0xfe,0x20,0xfc,0x20,0xff,0x80,0xf8,0x88,0xf8,0x88,0xff,0x08,0x08,0x28,0x10 -+// 20884 冔 ; -+,0x1f,0x10,0x17,0x10,0x17,0x00,0x00,0x1f,0x11,0x11,0x11,0x11,0x1f,0x00,0x00,0x00,0xfe,0x02,0xfa,0x02,0xfa,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x50,0x20 -+// 20885 冕 ; -+,0x1f,0x10,0x17,0x10,0x17,0x08,0x0f,0x18,0x2f,0x09,0x0f,0x01,0x02,0x04,0x08,0x10,0xfc,0x04,0xf4,0x04,0xf4,0x00,0xf0,0x20,0xf8,0x08,0xf8,0x40,0x41,0x41,0x3f,0x00 -+// 20886 冖 ; -+,0x20,0x3f,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20887 冗 ; -+,0x00,0x3f,0x20,0x40,0x03,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x60,0x00,0x00,0xff,0x02,0x04,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x0f,0x00,0x00 -+// 20888 冘 ; -+,0x00,0x00,0x00,0x1f,0x10,0x20,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x80,0x80,0x82,0xff,0x82,0x84,0x80,0x80,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 20889 写 ; -+,0x00,0x1f,0x10,0x24,0x07,0x04,0x04,0x0f,0x04,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x02,0x04,0xfe,0x00,0x00,0xfe,0x02,0x12,0xfa,0x02,0x02,0x04,0x14,0x08 -+// 20890 冚 ; -+,0x00,0x1f,0x10,0x20,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0xff,0x02,0x84,0x80,0x80,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 20891 军 ; -+,0x00,0x1f,0x11,0x21,0x22,0x1f,0x02,0x04,0x04,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0xff,0x01,0x82,0x08,0xfc,0x00,0x80,0x88,0xfc,0x80,0x82,0xff,0x80,0x80,0x80 -+// 20892 农 ; -+,0x01,0x01,0x01,0x1f,0x11,0x22,0x02,0x06,0x0c,0x14,0x24,0x44,0x04,0x05,0x0e,0x04,0x00,0x80,0x02,0xff,0x02,0x84,0x88,0x5c,0x50,0x20,0x10,0x18,0x8c,0x07,0x04,0x00 -+// 20893 冝 ; -+,0x00,0x1f,0x10,0x20,0x07,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x04,0x7f,0x00,0x00,0x00,0xfe,0x02,0x04,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x00,0x00 -+// 20894 冞 ; -+,0x00,0x1f,0x10,0x28,0x04,0x04,0x00,0x3f,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0xff,0x82,0x94,0x90,0xa0,0x84,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x00 -+// 20895 冟 ; -+,0x00,0x1f,0x11,0x22,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x08,0x0f,0x08,0x08,0x07,0x00,0x00,0xff,0x02,0x04,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x78,0x82,0x02,0x03,0xfe,0x00 -+// 20896 冠 ; -+,0x00,0x1f,0x10,0x20,0x1f,0x00,0x00,0x3f,0x09,0x09,0x09,0x11,0x11,0x21,0x40,0x00,0x00,0xff,0x02,0x00,0x04,0x04,0x7f,0x84,0x24,0x14,0x04,0x14,0x09,0x01,0xff,0x00 -+// 20897 冡 ; -+,0x10,0x1f,0x20,0x2f,0x00,0x1f,0x01,0x03,0x0d,0x32,0x04,0x09,0x32,0x0c,0x71,0x00,0x02,0xff,0x02,0xf4,0x00,0xfe,0x88,0x1c,0x90,0xa0,0xd0,0x48,0x4c,0x47,0x42,0x80 -+// 20898 冢 ; -+,0x00,0x3f,0x20,0x40,0x1f,0x02,0x05,0x09,0x1a,0x24,0x0b,0x12,0x24,0x08,0x11,0x00,0x02,0xff,0x02,0x04,0xfc,0x00,0x04,0x88,0x50,0xe0,0x60,0x50,0x48,0x47,0x42,0x80 -+// 20899 冣 ; -+,0x00,0x7f,0x40,0x00,0x3f,0x11,0x11,0x1f,0x11,0x1f,0x11,0x11,0x13,0x7d,0x21,0x01,0x00,0xff,0x01,0x00,0xfe,0x00,0x00,0xfc,0x44,0x44,0x28,0x28,0x90,0x2c,0x47,0x82 -+// 20900 冤 ; -+,0x00,0x1f,0x12,0x23,0x04,0x08,0x0f,0x08,0x0f,0x08,0x01,0x01,0x02,0x0c,0x30,0x00,0x00,0xff,0x02,0xf4,0x10,0x20,0xfc,0x84,0xfc,0xa4,0x28,0x25,0x25,0x1f,0x00,0x00 -+// 20901 冥 ; -+,0x00,0x1f,0x10,0x2f,0x08,0x0f,0x08,0x0f,0x01,0x00,0x7f,0x04,0x06,0x0c,0x18,0x20,0x02,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x82,0xff,0x20,0x18,0x0c,0x06,0x04 -+// 20902 冦 ; -+,0x00,0x1f,0x20,0x3f,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x00,0x00,0xff,0x02,0x10,0x1e,0x10,0xfc,0x04,0x44,0x28,0x18,0x26,0x41,0xff,0x00,0x00 -+// 20903 冧 ; -+,0x00,0x1f,0x14,0x24,0x04,0x3f,0x0c,0x0c,0x16,0x15,0x24,0x25,0x46,0x04,0x04,0x00,0x00,0xff,0x12,0x14,0x10,0xfe,0x10,0x38,0x58,0x54,0x92,0x13,0x12,0x10,0x10,0x00 -+// 20904 冨 ; -+,0x00,0x1f,0x10,0x2f,0x00,0x07,0x04,0x07,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00,0xff,0x02,0xfc,0x00,0xf0,0x10,0xf0,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 20905 冩 ; -+,0x3f,0x20,0x5f,0x10,0x1f,0x10,0x1f,0x08,0x0f,0x10,0x64,0x12,0x12,0x20,0x00,0x00,0xfe,0x02,0x7c,0x08,0x78,0x08,0xf8,0x00,0xfe,0x02,0xa2,0x92,0x52,0x42,0x14,0x08 -+// 20906 冪 ; -+,0x3f,0x24,0x4f,0x04,0x0f,0x09,0x08,0x0f,0x01,0x7f,0x0c,0x17,0x24,0x44,0x04,0x00,0xff,0x22,0xf8,0x20,0xf8,0x08,0x88,0xf8,0x00,0xff,0x98,0xf7,0x92,0x90,0xb0,0x80 -+// 20907 冫 ; -+,0x40,0x20,0x18,0x0a,0x02,0x02,0x04,0x04,0x08,0x78,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 20908 冬 ; -+,0x02,0x02,0x05,0x0a,0x31,0x00,0x01,0x06,0x19,0x60,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0xf8,0x10,0x20,0xc0,0xc0,0x30,0x0f,0x82,0x60,0x40,0x00,0xc0,0x70,0x20 -+// 20909 冭 ; -+,0x00,0x00,0x00,0x3f,0x01,0x02,0x04,0x09,0x10,0x20,0x00,0x00,0x00,0x01,0x0e,0x00,0x80,0x80,0x80,0xfe,0x40,0x20,0x18,0x0c,0xc7,0x62,0x40,0x00,0x38,0xc0,0x00,0x00 -+// 20910 冮 ; -+,0x00,0x20,0x13,0x18,0x10,0x04,0x04,0x08,0x08,0x70,0x10,0x10,0x10,0x17,0x00,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 20911 冯 ; -+,0x00,0x23,0x10,0x14,0x04,0x04,0x08,0x09,0x10,0x70,0x17,0x10,0x10,0x10,0x10,0x10,0x00,0xfc,0x04,0x84,0x88,0x88,0x88,0xfe,0x82,0x02,0xfa,0x02,0x02,0x02,0x14,0x08 -+// 20912 冰 ; -+,0x00,0x20,0x10,0x10,0x07,0x01,0x11,0x11,0x12,0x62,0x24,0x24,0x28,0x30,0x20,0x00,0x20,0x20,0x20,0x24,0xa6,0x2c,0x30,0x30,0x28,0x28,0x24,0x23,0x22,0xa0,0x40,0x00 -+// 20913 冱 ; -+,0x00,0x27,0x10,0x10,0x08,0x08,0x09,0x11,0x11,0x63,0x21,0x20,0x20,0x20,0x2f,0x00,0x00,0xff,0x80,0x80,0x84,0xfe,0x04,0x04,0x04,0xf8,0x08,0x08,0x08,0x0a,0xff,0x00 -+// 20914 冲 ; -+,0x00,0x20,0x10,0x1b,0x12,0x02,0x0a,0x0a,0x0b,0x12,0x70,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0xfe,0x22,0x20,0x20,0x20,0x20,0x20,0x20 -+// 20915 决 ; -+,0x00,0x40,0x20,0x1b,0x10,0x00,0x10,0x10,0x17,0x60,0x20,0x20,0x21,0x22,0x24,0x28,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0xff,0x40,0xa0,0x90,0x0c,0x07,0x02,0x00 -+// 20916 冴 ; -+,0x00,0x21,0x18,0x14,0x04,0x05,0x09,0x08,0x10,0x70,0x10,0x11,0x12,0x14,0x10,0x00,0x00,0xfe,0x08,0x88,0x88,0x0a,0xff,0x18,0x28,0x48,0x88,0x08,0x08,0x78,0x10,0x00 -+// 20917 况 ; -+,0x20,0x11,0x19,0x15,0x05,0x09,0x09,0x10,0x10,0x60,0x20,0x20,0x21,0x22,0x2c,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x50,0x50,0x50,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 20918 冶 ; -+,0x00,0x20,0x10,0x18,0x10,0x09,0x0b,0x08,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x60,0x40,0x88,0x84,0x3e,0xc3,0x02,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20919 冷 ; -+,0x00,0x40,0x20,0x30,0x29,0x0a,0x14,0x10,0x17,0x60,0x20,0x20,0x20,0x20,0x20,0x00,0x40,0x40,0xa0,0x90,0x0c,0x47,0x22,0x20,0xfc,0x08,0x08,0x90,0x60,0x30,0x20,0x00 -+// 20920 冸 ; -+,0x00,0x22,0x11,0x19,0x15,0x04,0x0b,0x08,0x08,0x77,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x24,0x26,0xa4,0x28,0x22,0xff,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 20921 冹 ; -+,0x00,0x40,0x20,0x30,0x27,0x08,0x08,0x08,0x11,0x71,0x11,0x12,0x12,0x14,0x19,0x10,0x40,0x50,0x4c,0x48,0xff,0x80,0x80,0xfe,0x44,0x48,0x30,0x30,0x4c,0x87,0x02,0x00 -+// 20922 冺 ; -+,0x00,0x43,0x32,0x12,0x0b,0x0a,0x0a,0x13,0x12,0x62,0x22,0x22,0x22,0x27,0x22,0x00,0x00,0xfc,0x04,0x04,0xfc,0x24,0x20,0xfc,0x20,0x10,0x10,0x49,0x89,0x05,0x02,0x00 -+// 20923 冻 ; -+,0x00,0x40,0x37,0x10,0x08,0x09,0x12,0x17,0x10,0x61,0x21,0x21,0x22,0x24,0x28,0x20,0x40,0x40,0xff,0x80,0xa0,0x20,0x24,0xfe,0x20,0x28,0xa4,0x26,0x23,0x22,0xa0,0x40 -+// 20924 冼 ; -+,0x00,0x01,0x21,0x11,0x1a,0x14,0x00,0x0b,0x08,0x08,0x70,0x11,0x11,0x32,0x14,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0x22,0xff,0x90,0x90,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 20925 冽 ; -+,0x00,0x07,0x01,0x11,0x09,0x0a,0x02,0x14,0x12,0x61,0x20,0x21,0x22,0x04,0x08,0x00,0x02,0xe2,0x02,0x0a,0xca,0x4a,0x4a,0x4a,0x4a,0x8a,0x8a,0x02,0x02,0x0a,0x04,0x00 -+// 20926 冾 ; -+,0x00,0x20,0x10,0x18,0x09,0x02,0x0d,0x08,0x08,0x11,0x71,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0x50,0x88,0x04,0x03,0xfc,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 20927 冿 ; -+,0x00,0x40,0x33,0x10,0x03,0x08,0x0b,0x08,0x10,0x13,0x70,0x10,0x17,0x10,0x10,0x10,0x40,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0x40,0xfc,0x40,0x42,0xff,0x40,0x40,0x40 -+// 20928 净 ; -+,0x00,0x20,0x11,0x19,0x13,0x04,0x10,0x17,0x10,0x10,0x63,0x20,0x20,0x20,0x20,0x20,0x80,0xfc,0x08,0x10,0xfc,0x24,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 20929 凁 ; -+,0x00,0x20,0x1b,0x10,0x01,0x09,0x09,0x09,0x11,0x70,0x10,0x11,0x12,0x14,0x10,0x00,0x20,0x22,0xff,0x20,0xfc,0x24,0x24,0xfc,0x24,0x70,0xa8,0x24,0x23,0x22,0x20,0x00 -+// 20930 凂 ; -+,0x00,0x40,0x20,0x11,0x01,0x0b,0x09,0x09,0x11,0x71,0x10,0x10,0x10,0x11,0x16,0x10,0x80,0x80,0xfc,0x08,0x10,0xfc,0x24,0x24,0xfc,0x54,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 20931 凃 ; -+,0x00,0x20,0x10,0x18,0x15,0x07,0x08,0x08,0x0b,0x70,0x11,0x11,0x11,0x12,0x14,0x10,0x20,0x20,0x50,0x88,0x06,0xff,0x20,0x20,0xff,0x20,0x2c,0xa2,0x23,0x21,0xa0,0x40 -+// 20932 凄 ; -+,0x00,0x47,0x30,0x17,0x00,0x0f,0x10,0x17,0x10,0x6f,0x21,0x22,0x21,0x20,0x23,0x2c,0x40,0xff,0x40,0xf8,0x48,0xff,0x48,0xf8,0x82,0xff,0x08,0x10,0x20,0xc0,0x38,0x06 -+// 20933 凅 ; -+,0x43,0x22,0x32,0x22,0x0b,0x0a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x00,0xfe,0x22,0x22,0x22,0xfa,0x22,0x22,0xfa,0x8a,0x8a,0xfa,0x8a,0x02,0xfe,0x02,0x00 -+// 20934 准 ; -+,0x01,0x21,0x11,0x19,0x13,0x05,0x09,0x09,0x09,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x90,0x12,0xff,0x10,0x14,0xfe,0x10,0x14,0xfe,0x10,0x10,0x12,0xff,0x00,0x00 -+// 20935 凇 ; -+,0x02,0x42,0x22,0x32,0x27,0x12,0x17,0x26,0x2a,0x6a,0x32,0x22,0x22,0x22,0x22,0x00,0x00,0x04,0x14,0x14,0x94,0x22,0x22,0xd1,0x59,0x90,0x20,0x24,0x42,0xfe,0x42,0x00 -+// 20936 凈 ; -+,0x00,0x27,0x14,0x12,0x02,0x0b,0x08,0x0f,0x10,0x70,0x17,0x10,0x10,0x10,0x11,0x10,0x38,0xc8,0x8c,0x48,0x50,0xfc,0x44,0xff,0x44,0x44,0xfc,0x40,0x40,0x40,0x40,0x80 -+// 20937 凉 ; -+,0x00,0x20,0x17,0x18,0x10,0x09,0x09,0x11,0x11,0x60,0x22,0x23,0x22,0x24,0x28,0x20,0x40,0x20,0xff,0x00,0x00,0xfc,0x04,0x04,0xfc,0x20,0x28,0x24,0x26,0x23,0xa2,0x40 -+// 20938 凊 ; -+,0x00,0x43,0x30,0x1b,0x10,0x07,0x10,0x11,0x11,0x71,0x21,0x21,0x21,0x21,0x21,0x00,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08,0x00 -+// 20939 凋 ; -+,0x20,0x13,0x1a,0x12,0x02,0x0a,0x0b,0x12,0x12,0x72,0x12,0x12,0x14,0x34,0x18,0x10,0x00,0xfe,0x22,0xfa,0x22,0x22,0xfa,0x02,0xfa,0x8a,0x8a,0xfa,0x8a,0x02,0x0a,0x04 -+// 20940 凌 ; -+,0x00,0x20,0x11,0x18,0x17,0x00,0x11,0x12,0x14,0x61,0x26,0x20,0x20,0x21,0x0e,0x00,0x20,0x20,0xfc,0x20,0xff,0xd8,0x84,0x42,0xfc,0x88,0x50,0x20,0x58,0x87,0x02,0x00 -+// 20941 凍 ; -+,0x00,0x40,0x37,0x10,0x09,0x09,0x09,0x11,0x11,0x71,0x21,0x20,0x21,0x22,0x24,0x28,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x64,0xb0,0x2c,0x27,0x22,0x20 -+// 20942 凎 ; -+,0x00,0x20,0x10,0x18,0x15,0x07,0x08,0x08,0x13,0x10,0x72,0x11,0x11,0x11,0x17,0x10,0x20,0x20,0x50,0x88,0x06,0xff,0x20,0x20,0xfe,0x20,0x24,0x26,0xa4,0x28,0xff,0x00 -+// 20943 减 ; -+,0x00,0x20,0x10,0x17,0x04,0x17,0x14,0x14,0x25,0x65,0x25,0x29,0x29,0x10,0x20,0x00,0x10,0x14,0x12,0xff,0x10,0xf2,0x13,0x16,0xd4,0x54,0x48,0xc9,0x55,0x23,0xc1,0x00 -+// 20944 凐 ; -+,0x00,0x27,0x10,0x18,0x13,0x02,0x12,0x13,0x12,0x10,0x63,0x20,0x20,0x20,0x27,0x00,0x02,0xff,0x50,0x50,0xfe,0x52,0x52,0xfe,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 20945 凑 ; -+,0x00,0x20,0x17,0x18,0x13,0x00,0x1f,0x11,0x13,0x6c,0x37,0x20,0x20,0x21,0x22,0x2c,0x40,0x40,0xfe,0x80,0xfc,0x80,0xff,0x08,0xf4,0x42,0xff,0x40,0xa0,0x18,0x0e,0x04 -+// 20946 凒 ; -+,0x00,0x22,0x12,0x1b,0x10,0x07,0x10,0x13,0x12,0x73,0x20,0x21,0x21,0x20,0x27,0x20,0x20,0x22,0x22,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0x00,0x08,0x08,0x90,0xff,0x00 -+// 20947 凓 ; -+,0x00,0x27,0x10,0x1b,0x12,0x02,0x13,0x12,0x10,0x6f,0x20,0x21,0x22,0x24,0x28,0x20,0x02,0xff,0x50,0xfe,0x52,0x52,0xfe,0x20,0x22,0xff,0xb0,0x28,0x2c,0x27,0x22,0x20 -+// 20948 凔 ; -+,0x00,0x20,0x10,0x19,0x0a,0x05,0x11,0x11,0x11,0x11,0x63,0x23,0x25,0x29,0x31,0x20,0x40,0x60,0x98,0x4e,0x24,0xfc,0x44,0x24,0xfc,0x00,0xfe,0x04,0x04,0xfc,0x04,0x00 -+// 20949 凕 ; -+,0x00,0x43,0x22,0x15,0x19,0x11,0x01,0x11,0x10,0x10,0x67,0x21,0x21,0x23,0x26,0x28,0x00,0xff,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x20,0xff,0x10,0x88,0x0c,0x06,0x04 -+// 20950 凖 ; -+,0x01,0x21,0x15,0x17,0x09,0x09,0x31,0x11,0x11,0x11,0x00,0x3f,0x00,0x00,0x00,0x00,0x20,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x40,0x40,0xff,0x40,0x40,0x40,0x40 -+// 20951 凗 ; -+,0x00,0x22,0x12,0x1b,0x11,0x09,0x0b,0x16,0x7b,0x12,0x13,0x12,0x12,0x13,0x12,0x00,0x20,0x22,0x22,0xfe,0x20,0x20,0xfe,0x20,0xfe,0x20,0xfe,0x20,0x20,0xff,0x00,0x00 -+// 20952 凘 ; -+,0x02,0x22,0x17,0x1a,0x13,0x02,0x0a,0x0b,0x12,0x17,0x62,0x22,0x24,0x24,0x28,0x00,0x40,0x43,0xec,0x48,0xc8,0x4f,0x4a,0xca,0x4a,0xea,0x8a,0x52,0x52,0x22,0x42,0x00 -+// 20953 凙 ; -+,0x23,0x12,0x1a,0x13,0x08,0x0b,0x08,0x13,0x10,0x70,0x23,0x20,0x27,0x20,0x20,0x20,0xfe,0x92,0x92,0xfe,0x20,0xfc,0x20,0xfe,0x88,0x50,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 20954 凚 ; -+,0x01,0x41,0x37,0x1b,0x13,0x0d,0x09,0x13,0x10,0x67,0x21,0x21,0x23,0x22,0x24,0x20,0x08,0x08,0xbf,0x18,0xac,0x6b,0x49,0xfc,0x00,0xfe,0x20,0xa8,0x26,0x22,0xa0,0x40 -+// 20955 凛 ; -+,0x00,0x27,0x10,0x13,0x0a,0x0a,0x12,0x13,0x10,0x63,0x20,0x2f,0x22,0x22,0x24,0x28,0x40,0xff,0x00,0xfe,0xf2,0x92,0xf2,0xfe,0x00,0xfc,0x00,0xff,0x28,0x24,0xa6,0x44 -+// 20956 凜 ; -+,0x00,0x47,0x20,0x23,0x0a,0x0a,0x0a,0x13,0x10,0x70,0x13,0x10,0x17,0x11,0x11,0x12,0x20,0xff,0x00,0xfe,0x8a,0xfa,0x02,0xfe,0x00,0x3c,0xe0,0x20,0xff,0x28,0x24,0x24 -+// 20957 凝 ; -+,0x04,0x44,0x27,0x34,0x24,0x13,0x14,0x27,0x2a,0x6f,0x22,0x26,0x25,0x29,0x31,0x20,0x00,0xbf,0x06,0x18,0x88,0xff,0x09,0x8a,0x08,0xee,0x28,0x28,0x28,0xb8,0x4f,0x80 -+// 20958 凞 ; -+,0x00,0x05,0x25,0x25,0x15,0x15,0x05,0x15,0x1d,0x15,0x25,0x20,0x45,0x04,0x08,0x08,0x00,0xfe,0x4a,0x4a,0xea,0x2e,0x28,0xe8,0x49,0x49,0xe7,0x04,0x22,0x93,0xd9,0x90 -+// 20959 凟 ; -+,0x00,0x43,0x20,0x11,0x18,0x03,0x0a,0x0b,0x09,0x71,0x11,0x11,0x11,0x11,0x10,0x13,0x20,0xff,0x20,0xfc,0x00,0xfe,0x52,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 20960 几 ; -+,0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x0f,0x00,0x00 -+// 20961 凡 ; -+,0x00,0x07,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0x90,0x50,0x50,0x10,0x11,0x11,0x11,0x0f,0x00,0x00 -+// 20962 凢 ; -+,0x00,0x00,0x01,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x80,0xc0,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 20963 凣 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x80,0x80,0x80,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 20964 凤 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x0a,0x09,0x08,0x09,0x12,0x14,0x28,0x20,0x40,0x00,0x00,0xf8,0x08,0x08,0xe8,0x28,0x48,0x48,0x88,0x48,0x24,0x35,0x05,0x03,0x01,0x00 -+// 20965 凥 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x12,0x22,0x24,0x48,0x00,0xfc,0x04,0x04,0xfc,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x09,0x09,0x07,0x00,0x00 -+// 20966 処 ; -+,0x08,0x0c,0x08,0x0f,0x11,0x11,0x31,0x2a,0x4a,0x04,0x04,0x0a,0x11,0x20,0x40,0x00,0x00,0x00,0x38,0xa8,0x28,0x28,0x28,0x28,0x4a,0x4a,0x86,0x00,0x00,0xc0,0x3f,0x00 -+// 20967 凧 ; -+,0x00,0x1f,0x10,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x14,0x10,0x20,0x20,0x40,0x00,0x00,0xfc,0x84,0x84,0x84,0xf4,0x94,0x94,0x94,0xd4,0xa4,0x85,0x85,0x83,0x81,0x00 -+// 20968 凨 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x1f,0x11,0x11,0x12,0x12,0x24,0x2f,0x40,0x00,0x00,0xfc,0x04,0x04,0xe4,0x04,0x04,0xf4,0x04,0x04,0x44,0x25,0xf5,0x13,0x01,0x00 -+// 20969 凩 ; -+,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x09,0x09,0x12,0x12,0x14,0x28,0x20,0x40,0x00,0xfc,0x04,0x84,0x84,0xa4,0xf4,0x84,0x84,0xc4,0xa4,0x94,0x95,0x85,0x83,0x81,0x00 -+// 20970 凪 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x2f,0x40,0x00,0x00,0xfc,0x04,0x84,0x84,0x84,0x84,0xf4,0x84,0x84,0x85,0x85,0x85,0xfb,0x01,0x00 -+// 20971 凫 ; -+,0x00,0x01,0x0f,0x09,0x08,0x08,0x08,0x0f,0x00,0x03,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x00,0xf8,0x08,0xc8,0x50,0x00,0xfe,0x02,0xea,0x24,0x20,0x22,0x22,0x1e,0x00 -+// 20972 凬 ; -+,0x00,0x1f,0x10,0x17,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x17,0x24,0x20,0x40,0x00,0x00,0xfc,0x04,0xf4,0x04,0xf4,0x14,0x14,0xf4,0x14,0x14,0xf5,0x15,0x03,0x01,0x00 -+// 20973 凭 ; -+,0x08,0x0d,0x08,0x18,0x2f,0x48,0x08,0x0b,0x08,0x03,0x02,0x02,0x04,0x04,0x08,0x10,0x0c,0xf0,0x20,0x20,0xff,0x20,0x20,0xfe,0x00,0xf0,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 20974 凮 ; -+,0x00,0x1f,0x10,0x17,0x10,0x10,0x13,0x12,0x12,0x13,0x12,0x12,0x23,0x22,0x40,0x00,0x00,0xfc,0x04,0xf4,0x84,0x84,0xe4,0x24,0x24,0xe4,0x24,0x25,0xe5,0x23,0x01,0x00 -+// 20975 凯 ; -+,0x08,0x49,0x49,0x49,0x7f,0x00,0x7f,0x01,0x3f,0x20,0x21,0x22,0x2c,0x71,0x22,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x85,0x05,0x03,0x00 -+// 20976 凰 ; -+,0x00,0x1f,0x11,0x11,0x17,0x14,0x17,0x14,0x17,0x10,0x17,0x10,0x17,0x20,0x2f,0x40,0x00,0xfc,0x84,0x04,0xf4,0x14,0xf4,0x14,0xf4,0x04,0xf4,0x84,0xf5,0x85,0xfb,0x01 -+// 20977 凱 ; -+,0x04,0x24,0x24,0x3f,0x00,0x1f,0x00,0x1f,0x10,0x1f,0x11,0x09,0x0a,0x07,0x38,0x00,0x00,0xbc,0xa4,0xa4,0x24,0xa4,0x24,0xa4,0xa4,0xa4,0x24,0xa4,0x25,0xc5,0x43,0x80 -+// 20978 凲 ; -+,0x00,0x1f,0x14,0x12,0x1f,0x11,0x17,0x11,0x1f,0x11,0x17,0x23,0x25,0x49,0x51,0x00,0x00,0xfc,0x24,0x44,0xf4,0x44,0xf4,0x54,0xfc,0x54,0xf4,0x65,0x55,0x5b,0x51,0x00 -+// 20979 凳 ; -+,0x1f,0x22,0x14,0x0b,0x30,0x47,0x04,0x07,0x02,0x7f,0x00,0x07,0x04,0x04,0x08,0x30,0x48,0x30,0x16,0xe8,0x07,0xf2,0x10,0xf0,0x20,0xff,0x00,0xe0,0x21,0x21,0x1f,0x00 -+// 20980 凴 ; -+,0x03,0x22,0x13,0x12,0x0b,0x0a,0x33,0x12,0x14,0x19,0x13,0x02,0x02,0x04,0x04,0x08,0xfe,0x20,0xfc,0x20,0xfc,0x20,0xfe,0x52,0xaa,0x2a,0xe4,0x20,0x20,0x21,0x21,0x1f -+// 20981 凵 ; -+,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x10,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20982 凶 ; -+,0x00,0x08,0x04,0x12,0x11,0x11,0x10,0x11,0x11,0x12,0x14,0x18,0x10,0x3f,0x10,0x00,0x00,0x10,0x18,0x12,0x22,0x42,0xc2,0x42,0x22,0x32,0x12,0x02,0x02,0xfe,0x02,0x00 -+// 20983 凷 ; -+,0x00,0x00,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x80,0x82,0x82,0x92,0xfa,0x82,0x82,0x82,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20984 凸 ; -+,0x03,0x02,0x02,0x02,0x02,0x02,0x1e,0x12,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,0x3e,0x12,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 20985 凹 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x23,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0xe2,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x00 -+// 20986 出 ; -+,0x00,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x80,0x80,0x82,0x82,0x82,0x82,0xfe,0x82,0x80,0x82,0x82,0x82,0x82,0xfe,0x02,0x00 -+// 20987 击 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0x80,0xfc,0x80,0x80,0x82,0xff,0x80,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 20988 凼 ; -+,0x00,0x00,0x00,0x20,0x2f,0x21,0x21,0x22,0x22,0x24,0x28,0x32,0x21,0x3f,0x20,0x00,0x80,0x80,0x80,0x92,0x9a,0xa2,0xc2,0xa2,0x92,0x8a,0x8e,0x8a,0x02,0xfe,0x02,0x00 -+// 20989 函 ; -+,0x00,0x1f,0x00,0x00,0x08,0x24,0x26,0x24,0x21,0x22,0x2c,0x22,0x21,0x3f,0x20,0x00,0x08,0xfc,0x18,0x20,0xc0,0x92,0x9a,0xa2,0xc2,0xa2,0x9a,0x8a,0x02,0xfe,0x02,0x00 -+// 20990 凾 ; -+,0x1f,0x00,0x00,0x00,0x2e,0x2a,0x2a,0x2a,0x2a,0x2e,0x2a,0x20,0x20,0x3f,0x20,0x00,0xf8,0x10,0x20,0x40,0xba,0x8a,0xaa,0xaa,0x92,0xaa,0xa6,0xc6,0x82,0xfe,0x02,0x00 -+// 20991 凿 ; -+,0x01,0x11,0x09,0x05,0x7f,0x02,0x11,0x17,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x20,0x24,0x26,0x28,0xff,0x10,0x24,0xf4,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04,0x00 -+// 20992 刀 ; -+,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x78,0x10,0x00 -+// 20993 刁 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x1c,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x14,0x64,0x84,0x04,0x04,0x04,0x04,0x04,0x1c,0x08,0x00 -+// 20994 刂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x04,0x04,0x04,0x14,0x08 -+// 20995 刃 ; -+,0x00,0x1f,0x00,0x00,0x00,0x04,0x04,0x0c,0x18,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x02,0x02,0x02,0x02,0x1c,0x08,0x00 -+// 20996 刄 ; -+,0x00,0x1f,0x01,0x09,0x05,0x05,0x03,0x03,0x01,0x02,0x04,0x08,0x10,0x60,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0xc8,0x68,0x38,0x1f,0x9a,0x70,0x20 -+// 20997 刅 ; -+,0x00,0x1f,0x01,0x01,0x01,0x11,0x11,0x32,0x62,0x02,0x04,0x04,0x08,0x11,0x20,0x00,0x00,0xf0,0x10,0x10,0x18,0x14,0x12,0x13,0x12,0x10,0x10,0x10,0x10,0xe0,0x40,0x00 -+// 20998 分 ; -+,0x04,0x06,0x04,0x08,0x08,0x10,0x20,0x4f,0x02,0x02,0x02,0x02,0x04,0x08,0x10,0x20,0x40,0x40,0x20,0x10,0x18,0x0c,0x07,0xf2,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 20999 切 ; -+,0x08,0x08,0x09,0x08,0x08,0x0f,0x78,0x08,0x08,0x09,0x0a,0x0c,0x08,0x01,0x02,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x0a,0x04,0x00 -+// 21000 刈 ; -+,0x00,0x01,0x41,0x21,0x12,0x0a,0x04,0x04,0x0a,0x0b,0x11,0x21,0x41,0x00,0x00,0x00,0x02,0x02,0xa2,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x02,0x02,0x0a,0x04 -+// 21001 刉 ; -+,0x10,0x18,0x10,0x1f,0x20,0x40,0x1f,0x01,0x02,0x04,0x08,0x10,0x20,0x20,0x1f,0x00,0x02,0x02,0x82,0xd2,0x12,0x12,0x92,0x12,0x12,0x12,0x12,0x02,0x42,0x4a,0xc4,0x00 -+// 21002 刊 ; -+,0x00,0x3f,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x82,0x22,0x22,0x22,0x22,0xa2,0x22,0x22,0x22,0x22,0x22,0x02,0x0a,0x04,0x00 -+// 21003 刋 ; -+,0x00,0x07,0x3c,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x60,0x00,0x82,0xc2,0x12,0x12,0x12,0x12,0xd2,0x12,0x12,0x12,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 21004 刌 ; -+,0x01,0x01,0x01,0x01,0x7f,0x01,0x21,0x11,0x19,0x0d,0x09,0x01,0x01,0x01,0x05,0x02,0x02,0x02,0x12,0x12,0xd2,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x0a,0x04 -+// 21005 刍 ; -+,0x02,0x03,0x07,0x04,0x08,0x10,0x3f,0x40,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0xf8,0x10,0x20,0x40,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21006 刎 ; -+,0x08,0x0c,0x08,0x0f,0x15,0x25,0x45,0x09,0x09,0x12,0x62,0x04,0x18,0x63,0x01,0x00,0x01,0x01,0x49,0xe9,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x41,0x81,0x05,0x02 -+// 21007 刏 ; -+,0x08,0x08,0x0f,0x10,0x1f,0x20,0x5f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0xe2,0x12,0x92,0x12,0x12,0x12,0x12,0x12,0x12,0x82,0xa2,0xaa,0x64,0x00 -+// 21008 刐 ; -+,0x00,0x1f,0x11,0x19,0x15,0x15,0x11,0x7f,0x11,0x11,0x11,0x11,0x21,0x25,0x42,0x00,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0xd2,0x12,0x12,0x12,0x02,0x02,0x0a,0x04,0x00 -+// 21009 刑 ; -+,0x00,0x3f,0x09,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x41,0x00,0x02,0xc2,0x12,0x12,0x12,0x12,0xd2,0x12,0x12,0x12,0x12,0x02,0x02,0x0a,0x04,0x00 -+// 21010 划 ; -+,0x08,0x0a,0x09,0x08,0x7f,0x09,0x09,0x09,0x0a,0x06,0x0c,0x1a,0x32,0x41,0x00,0x00,0x02,0x02,0x02,0x12,0xd2,0x12,0x92,0x12,0x12,0x12,0x12,0x92,0x82,0x8a,0x84,0x00 -+// 21011 刓 ; -+,0x00,0x3f,0x00,0x00,0x00,0x7f,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x41,0x00,0x00,0x02,0x82,0x12,0x12,0x12,0xd2,0x12,0x12,0x12,0x12,0x12,0x42,0x82,0x0a,0x04,0x00 -+// 21012 刔 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x3f,0x04,0x04,0x0a,0x09,0x11,0x20,0x40,0x00,0x02,0x02,0x12,0x92,0x92,0x92,0x92,0xd2,0x12,0x12,0x12,0x02,0x82,0xca,0x84,0x00 -+// 21013 刕 ; -+,0x1f,0x01,0x01,0x02,0x02,0x04,0x08,0x3f,0x09,0x09,0x09,0x11,0x11,0x25,0x42,0x00,0xfc,0x04,0x04,0x04,0x04,0x78,0x10,0x7e,0x12,0x12,0x12,0x22,0x22,0x4a,0x84,0x00 -+// 21014 刖 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x21,0x25,0x42,0x00,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x0a,0x04,0x00 -+// 21015 列 ; -+,0x00,0x7f,0x04,0x08,0x0f,0x08,0x10,0x29,0x45,0x02,0x02,0x04,0x08,0x10,0x60,0x00,0x02,0xc2,0x02,0x92,0xd2,0x92,0x92,0x12,0x12,0x12,0x12,0x02,0x02,0x0a,0x04,0x00 -+// 21016 刘 ; -+,0x08,0x04,0x02,0x3f,0x00,0x10,0x09,0x05,0x02,0x03,0x05,0x08,0x10,0x20,0x40,0x00,0x02,0x02,0x02,0xd2,0x92,0x92,0x12,0x12,0x12,0x12,0x12,0x82,0xc2,0x8a,0x04,0x00 -+// 21017 则 ; -+,0x00,0x3f,0x20,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x0c,0x0a,0x11,0x20,0x40,0x00,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x02,0xca,0x84,0x00 -+// 21018 刚 ; -+,0x00,0x3f,0x20,0x31,0x2a,0x2a,0x24,0x24,0x2a,0x2a,0x31,0x20,0x20,0x23,0x21,0x00,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x8a,0x04,0x00 -+// 21019 创 ; -+,0x04,0x04,0x0a,0x09,0x10,0x20,0x5f,0x10,0x10,0x12,0x11,0x10,0x10,0x10,0x0f,0x00,0x01,0x01,0x09,0x89,0xe9,0x49,0x89,0x89,0x89,0x89,0x09,0x41,0x41,0x45,0xc2,0x00 -+// 21020 刜 ; -+,0x09,0x09,0x7f,0x09,0x09,0x3f,0x29,0x29,0x3f,0x09,0x09,0x19,0x11,0x21,0x41,0x00,0x02,0x02,0xca,0x4a,0x4a,0xca,0x0a,0x0a,0xea,0x2a,0xaa,0x42,0x02,0x0a,0x04,0x00 -+// 21021 初 ; -+,0x08,0x04,0x04,0x3f,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x02,0x7f,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x8a,0x04,0x00 -+// 21022 刞 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x1e,0x70,0x00,0x00,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0xc2,0x02,0x0a,0x04,0x00 -+// 21023 刟 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x13,0x21,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0x12,0x92,0x92,0x92,0x82,0x82,0x8a,0x84,0x00 -+// 21024 删 ; -+,0x00,0x1d,0x15,0x15,0x15,0x15,0x7f,0x15,0x15,0x15,0x15,0x25,0x25,0x5d,0x4a,0x00,0x01,0xc1,0x49,0x49,0x49,0x49,0xf9,0x49,0x49,0x49,0x49,0x49,0x41,0x41,0xc7,0x02 -+// 21025 刡 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x22,0x22,0x22,0x3f,0x22,0x22,0x21,0x29,0x30,0x20,0x00,0x02,0xc2,0x4a,0x4a,0xca,0x4a,0x0a,0x4a,0xea,0x0a,0x0a,0x02,0x22,0xaa,0x44,0x00 -+// 21026 刢 ; -+,0x04,0x04,0x0a,0x09,0x10,0x24,0x42,0x02,0x3f,0x00,0x11,0x0a,0x04,0x03,0x02,0x00,0x02,0x02,0x12,0x92,0xd2,0x52,0x12,0x12,0xd2,0x92,0x12,0x12,0x02,0x02,0x0a,0x04 -+// 21027 刣 ; -+,0x04,0x06,0x0c,0x08,0x11,0x20,0x7f,0x00,0x00,0x3f,0x20,0x20,0x20,0x20,0x3f,0x20,0x02,0x02,0x12,0x12,0x12,0x92,0xd2,0x92,0x12,0x92,0x92,0x92,0x82,0x82,0x8a,0x84 -+// 21028 判 ; -+,0x04,0x04,0x24,0x14,0x15,0x3f,0x04,0x04,0x04,0x7f,0x04,0x08,0x08,0x10,0x20,0x40,0x02,0x02,0x82,0xd2,0x12,0xd2,0x12,0x12,0x92,0xd2,0x12,0x12,0x02,0x02,0x0a,0x04 -+// 21029 別 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x08,0x08,0x0f,0x08,0x08,0x10,0x10,0x23,0x41,0x00,0x02,0x82,0x82,0x92,0x92,0x92,0x12,0x12,0x92,0x92,0x92,0x92,0x82,0x82,0x0a,0x04 -+// 21030 刦 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x7f,0x04,0x08,0x0a,0x11,0x26,0x78,0x00,0x00,0x02,0x02,0x02,0xd2,0x12,0x12,0x12,0xd2,0x12,0x12,0x12,0x92,0xc2,0x82,0x0a,0x04 -+// 21031 刧 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x7f,0x04,0x08,0x11,0x27,0x79,0x00,0x01,0x00,0x00,0x00,0x7e,0x92,0x12,0x12,0x92,0xd2,0x12,0x12,0x22,0xa2,0x42,0x8e,0x04,0x00 -+// 21032 刨 ; -+,0x08,0x08,0x1f,0x10,0x20,0x5e,0x12,0x12,0x1e,0x10,0x13,0x11,0x10,0x10,0x0f,0x00,0x02,0x02,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x02,0x42,0x4a,0xc4,0x00 -+// 21033 利 ; -+,0x00,0x01,0x1e,0x02,0x02,0x3f,0x06,0x06,0x0b,0x0a,0x12,0x22,0x42,0x02,0x02,0x02,0x01,0xc1,0x01,0x11,0x11,0xd1,0x11,0x11,0x11,0x91,0xd1,0x91,0x01,0x09,0x05,0x02 -+// 21034 刪 ; -+,0x00,0x1f,0x15,0x15,0x15,0x15,0x15,0x7f,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x02,0xc2,0x4a,0x4a,0x4a,0x4a,0x4a,0xea,0x4a,0x4a,0x4a,0x4a,0x4a,0x42,0xca,0x04 -+// 21035 别 ; -+,0x00,0x1f,0x10,0x10,0x10,0x1f,0x14,0x04,0x3f,0x04,0x08,0x08,0x10,0x13,0x21,0x40,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0x12,0x92,0x92,0x92,0x82,0x82,0x82,0x0e,0x04 -+// 21036 刬 ; -+,0x08,0x0a,0x09,0x0f,0x78,0x08,0x08,0x0f,0x78,0x04,0x05,0x06,0x0a,0x11,0x60,0x00,0x01,0x01,0x09,0x89,0x09,0x09,0xe9,0x09,0x49,0x89,0x09,0x01,0x01,0x21,0xa5,0x42 -+// 21037 刭 ; -+,0x00,0x3f,0x01,0x02,0x05,0x08,0x30,0x5f,0x04,0x04,0x04,0x04,0x07,0x78,0x20,0x00,0x02,0x82,0x02,0x12,0x12,0xd2,0x52,0x92,0x12,0x12,0x12,0xd2,0x02,0x02,0x0a,0x04 -+// 21038 刮 ; -+,0x00,0x07,0x3a,0x02,0x02,0x3f,0x02,0x02,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x02,0xc2,0x02,0x12,0x12,0xd2,0x12,0x12,0x92,0x92,0x92,0x82,0x82,0x82,0x8a,0x04 -+// 21039 刯 ; -+,0x00,0x3f,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x03,0x3c,0x10,0x00,0x02,0xe2,0x02,0x12,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x02,0xc2,0x02,0x0a,0x04 -+// 21040 到 ; -+,0x00,0x3f,0x04,0x09,0x10,0x3f,0x12,0x02,0x02,0x3f,0x02,0x02,0x02,0x07,0x38,0x10,0x02,0xc2,0x02,0x12,0x92,0xd2,0x92,0x12,0x12,0xd2,0x12,0x12,0xc2,0x02,0x0a,0x04 -+// 21041 刱 ; -+,0x12,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x22,0x22,0x43,0x00,0x00,0x00,0xfc,0x14,0x94,0x14,0x56,0x55,0x95,0x14,0x24,0x24,0x44,0x94,0x08,0x00 -+// 21042 刲 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x3f,0x04,0x04,0x07,0x7c,0x20,0x00,0x02,0x02,0x12,0xd2,0x12,0x12,0xd2,0x12,0x12,0xd2,0x12,0x12,0xc2,0x02,0x0a,0x04 -+// 21043 刳 ; -+,0x02,0x02,0x3f,0x05,0x08,0x10,0x2f,0x40,0x3f,0x04,0x04,0x0f,0x00,0x00,0x02,0x01,0x02,0x02,0xd2,0x12,0x92,0x52,0x92,0x12,0xd2,0x12,0x12,0x92,0x82,0x82,0x8a,0x04 -+// 21044 刴 ; -+,0x00,0x3f,0x08,0x09,0x09,0x10,0x10,0x25,0x44,0x7f,0x0e,0x0d,0x14,0x24,0x44,0x04,0x00,0x82,0x82,0x02,0xd2,0x52,0x52,0x52,0x92,0xd2,0x12,0x12,0x92,0x42,0x0a,0x04 -+// 21045 刵 ; -+,0x00,0x7f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x13,0x1d,0x71,0x01,0x01,0x00,0x02,0xc2,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0xd2,0x12,0x02,0x0a,0x04,0x00 -+// 21046 制 ; -+,0x12,0x1a,0x12,0x1f,0x22,0x02,0x3f,0x02,0x1f,0x12,0x12,0x12,0x12,0x13,0x02,0x02,0x02,0x02,0x12,0xd2,0x12,0x12,0xd2,0x12,0xd2,0x52,0x52,0x52,0x42,0xc2,0x8a,0x04 -+// 21047 刷 ; -+,0x1f,0x10,0x10,0x10,0x1f,0x11,0x11,0x2f,0x29,0x29,0x29,0x29,0x29,0x49,0x01,0x01,0xc1,0x41,0x49,0x49,0xc9,0x09,0x09,0xe9,0x29,0x29,0x29,0x29,0x21,0xe1,0x45,0x02 -+// 21048 券 ; -+,0x08,0x06,0x04,0x1f,0x00,0x01,0x7f,0x06,0x0c,0x17,0x61,0x01,0x02,0x04,0x08,0x10,0x88,0x8c,0x90,0xfe,0x80,0x00,0xff,0x10,0x0c,0xff,0x0a,0x08,0x08,0x08,0x28,0x10 -+// 21049 刹 ; -+,0x10,0x09,0x06,0x0d,0x18,0x22,0x02,0x3f,0x02,0x13,0x1a,0x32,0x42,0x0a,0x04,0x00,0x82,0x02,0x12,0x12,0xd2,0x92,0x12,0xd2,0x12,0x12,0x92,0x52,0x42,0x02,0x0a,0x04 -+// 21050 刺 ; -+,0x04,0x04,0x3f,0x04,0x04,0x3f,0x24,0x24,0x24,0x2e,0x15,0x14,0x24,0x44,0x04,0x04,0x01,0x01,0x91,0x11,0x11,0x91,0x91,0x91,0x91,0x91,0x11,0x91,0x41,0x45,0x02,0x00 -+// 21051 刻 ; -+,0x04,0x03,0x02,0x3f,0x08,0x11,0x3f,0x13,0x06,0x0c,0x19,0x63,0x04,0x18,0x60,0x00,0x02,0x02,0x02,0xd2,0x12,0x12,0x92,0x12,0x52,0xf2,0x92,0x02,0x82,0xc2,0x8a,0x04 -+// 21052 刼 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x7f,0x08,0x0a,0x11,0x27,0x79,0x20,0x01,0x00,0x00,0x00,0x7e,0x12,0x12,0x52,0x52,0x52,0x92,0x22,0x22,0x42,0x42,0x9c,0x08,0x00 -+// 21053 刽 ; -+,0x02,0x02,0x05,0x08,0x10,0x2f,0x40,0x00,0x3f,0x04,0x04,0x08,0x13,0x3e,0x10,0x00,0x02,0x02,0x02,0x92,0x72,0xd2,0x12,0x12,0xd2,0x12,0x92,0x42,0xe2,0x4a,0x04,0x00 -+// 21054 刾 ; -+,0x04,0x04,0x04,0x3f,0x04,0x24,0x14,0x15,0x7f,0x04,0x0a,0x09,0x11,0x20,0x40,0x00,0x02,0x02,0x82,0xd2,0x12,0x92,0x92,0x12,0xd2,0x12,0x12,0x12,0x82,0x82,0x0e,0x04 -+// 21055 刿 ; -+,0x02,0x12,0x12,0x12,0x1f,0x08,0x0f,0x08,0x10,0x28,0x45,0x03,0x02,0x0c,0x30,0x00,0x02,0x42,0x52,0x52,0xd2,0x12,0x92,0x92,0x92,0x92,0x12,0x02,0x02,0x0a,0x04,0x00 -+// 21056 剀 ; -+,0x04,0x24,0x24,0x24,0x3f,0x00,0x3f,0x00,0x00,0x1f,0x10,0x10,0x10,0x13,0x3c,0x10,0x02,0x82,0x82,0x92,0x92,0x12,0x92,0x92,0x92,0x92,0x12,0x12,0x82,0x02,0x0a,0x04 -+// 21057 剁 ; -+,0x00,0x1f,0x11,0x11,0x11,0x11,0x24,0x04,0x7f,0x0e,0x15,0x14,0x24,0x44,0x04,0x04,0x02,0x02,0x12,0x12,0x12,0xd2,0x12,0x12,0xd2,0x12,0x12,0x82,0x82,0x12,0x0a,0x04 -+// 21058 剂 ; -+,0x04,0x02,0x7f,0x00,0x19,0x07,0x0c,0x10,0x68,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x01,0x01,0xe9,0x89,0x09,0x09,0xc9,0x69,0x89,0x89,0x89,0x89,0x81,0x81,0x8f,0x82 -+// 21059 剃 ; -+,0x10,0x09,0x3f,0x02,0x02,0x3f,0x22,0x22,0x3f,0x06,0x0a,0x12,0x22,0x42,0x02,0x02,0x81,0x01,0xc1,0x49,0x49,0xc9,0x49,0x09,0xe9,0x29,0x29,0xe1,0x41,0x01,0x05,0x02 -+// 21060 剄 ; -+,0x00,0x3f,0x12,0x1a,0x14,0x29,0x24,0x12,0x12,0x3f,0x02,0x02,0x02,0x07,0x38,0x00,0x02,0xe2,0x82,0xd2,0x92,0x12,0x92,0x52,0x52,0xd2,0x12,0x02,0xc2,0x02,0x0a,0x04 -+// 21061 剅 ; -+,0x00,0x3f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x01,0x11,0x09,0x0b,0x3e,0x00,0x00,0x02,0xc2,0x12,0x12,0x92,0x92,0x92,0x92,0x92,0x12,0x92,0x02,0xe2,0x0a,0x04,0x00 -+// 21062 剆 ; -+,0x04,0x02,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x12,0x11,0x13,0x3d,0x10,0x00,0x02,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x12,0x02,0x82,0x02,0x0a,0x04 -+// 21063 則 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x21,0x3f,0x12,0x19,0x21,0x41,0x00,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x02,0x8a,0x04,0x00 -+// 21064 剈 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x20,0x22,0x21,0x00,0x02,0x82,0x92,0x92,0x92,0x12,0x92,0x92,0x92,0x92,0x92,0x82,0x82,0x8a,0x04,0x00 -+// 21065 剉 ; -+,0x02,0x12,0x1a,0x12,0x12,0x2a,0x27,0x43,0x02,0x3f,0x02,0x02,0x02,0x07,0x38,0x00,0x01,0x41,0x49,0x49,0x89,0xc9,0x29,0x29,0x09,0xe9,0x09,0x09,0x61,0x81,0x05,0x02 -+// 21066 削 ; -+,0x04,0x04,0x24,0x14,0x15,0x3f,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x23,0x21,0x00,0x02,0x82,0xc2,0x92,0x12,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x8a,0x04,0x00 -+// 21067 剋 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x20,0x20,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x04,0x04,0xa4,0x24,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0x04,0x14,0x09,0x01,0xff,0x00 -+// 21068 剌 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x24,0x24,0x3f,0x2c,0x0e,0x15,0x14,0x24,0x44,0x04,0x02,0x82,0xc2,0x12,0x12,0x92,0x92,0x92,0x92,0x92,0x12,0x02,0x82,0x82,0x0a,0x04 -+// 21069 前 ; -+,0x04,0x03,0x02,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x15,0x12,0x00,0x08,0x0c,0x10,0xff,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x14,0x08 -+// 21070 剎 ; -+,0x01,0x11,0x0b,0x06,0x09,0x14,0x24,0x04,0x7f,0x0e,0x15,0x15,0x24,0x44,0x04,0x00,0x02,0x82,0x12,0x12,0x12,0xd2,0x92,0x12,0xd2,0x12,0x12,0x92,0xc2,0x8a,0x04,0x00 -+// 21071 剏 ; -+,0x21,0x11,0x0a,0x3f,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x00,0x00,0xbf,0x09,0x89,0x09,0x29,0x29,0xa9,0x49,0x09,0x11,0x11,0x21,0x4a,0x84,0x00 -+// 21072 剐 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x14,0x04,0x3f,0x24,0x2a,0x29,0x31,0x20,0x21,0x20,0x00,0x02,0x82,0x82,0x92,0x92,0x92,0x12,0xd2,0x52,0x52,0x52,0x42,0x42,0x4a,0x84,0x00 -+// 21073 剑 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x40,0x08,0x24,0x12,0x0a,0x09,0x03,0x3c,0x00,0x00,0x02,0x02,0x12,0x12,0x92,0xd2,0x12,0x92,0xd2,0x92,0x92,0x12,0xc2,0x02,0x0a,0x04 -+// 21074 剒 ; -+,0x09,0x09,0x3f,0x09,0x09,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x01,0x01,0xc9,0x09,0x09,0xe9,0x09,0x89,0x89,0x89,0x89,0x89,0x81,0x8f,0x82,0x00 -+// 21075 剓 ; -+,0x03,0x3c,0x04,0x7f,0x0c,0x16,0x25,0x45,0x04,0x3f,0x01,0x01,0x02,0x04,0x08,0x30,0x20,0x20,0x3e,0x4a,0x8a,0x12,0xa2,0x4a,0x84,0xfc,0x04,0x04,0x04,0x04,0x1c,0x08 -+// 21076 剔 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x25,0x49,0x0a,0x12,0x64,0x08,0x31,0x00,0x02,0x82,0x92,0x92,0x92,0x92,0x12,0xd2,0x52,0x52,0x52,0x42,0x42,0x4a,0xc4,0x80 -+// 21077 剕 ; -+,0x09,0x09,0x09,0x79,0x09,0x09,0x39,0x09,0x09,0x09,0x79,0x09,0x09,0x09,0x09,0x09,0x01,0x01,0x09,0xe9,0x09,0x09,0xc9,0x09,0x09,0x09,0xe9,0x01,0x01,0x01,0x05,0x02 -+// 21078 剖 ; -+,0x04,0x02,0x3f,0x10,0x09,0x09,0x3f,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x02,0x02,0xc2,0x92,0x12,0x12,0xd2,0x12,0x12,0x92,0x92,0x92,0x82,0x82,0x8a,0x04 -+// 21079 剗 ; -+,0x0a,0x09,0x0b,0x7e,0x04,0x0a,0x11,0x0a,0x09,0x7f,0x08,0x05,0x06,0x19,0x60,0x00,0x01,0x01,0xc9,0x09,0x49,0x49,0x89,0x09,0xc9,0x09,0x89,0x01,0x41,0x45,0x82,0x00 -+// 21080 剘 ; -+,0x08,0x08,0x08,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x7f,0x09,0x10,0x10,0x20,0x40,0x81,0x81,0x89,0xe9,0x89,0x89,0x89,0x89,0x89,0x89,0xe9,0x01,0x81,0x65,0x22,0x00 -+// 21081 剙 ; -+,0x21,0x11,0x0a,0x3f,0x0a,0x0a,0x0a,0x7f,0x0a,0x0a,0x12,0x12,0x22,0x22,0x42,0x00,0x00,0x84,0x7e,0x94,0x14,0x14,0x56,0xd5,0x55,0xa4,0x24,0x24,0x44,0x5c,0x88,0x00 -+// 21082 剚 ; -+,0x02,0x3f,0x02,0x1f,0x12,0x1f,0x02,0x3f,0x02,0x7f,0x02,0x3f,0x02,0x02,0x0a,0x04,0x02,0xe2,0x02,0xd2,0x52,0xd2,0x12,0xd2,0x52,0xd2,0x52,0xd2,0x02,0x02,0x0e,0x04 -+// 21083 剛 ; -+,0x00,0x3f,0x29,0x31,0x2a,0x3f,0x24,0x35,0x35,0x35,0x3f,0x21,0x20,0x21,0x20,0x00,0x02,0xc2,0x52,0xd2,0x52,0xd2,0x52,0x52,0x52,0x52,0x52,0x42,0x42,0x4a,0x84,0x00 -+// 21084 剜 ; -+,0x04,0x02,0x3f,0x20,0x50,0x1d,0x15,0x15,0x25,0x55,0x0d,0x09,0x09,0x13,0x61,0x00,0x02,0x22,0xf2,0x22,0x4a,0xea,0x2a,0x2a,0x2a,0xea,0x4a,0x22,0x42,0x8a,0x04,0x00 -+// 21085 剝 ; -+,0x08,0x0f,0x09,0x11,0x3f,0x01,0x7f,0x25,0x15,0x16,0x06,0x0d,0x74,0x24,0x14,0x08,0x02,0x82,0x02,0x12,0x12,0x12,0xd2,0x12,0x92,0x12,0x12,0x12,0xc2,0x82,0x0a,0x04 -+// 21086 剞 ; -+,0x04,0x04,0x3f,0x06,0x09,0x10,0x7f,0x00,0x1e,0x12,0x12,0x1e,0x10,0x00,0x02,0x01,0x02,0x02,0xd2,0x12,0x12,0x92,0xd2,0x92,0x92,0x92,0x92,0x92,0x82,0x82,0x8a,0x04 -+// 21087 剟 ; -+,0x00,0x3e,0x04,0x18,0x0c,0x12,0x21,0x3d,0x04,0x15,0x0c,0x0a,0x11,0x22,0x04,0x00,0x01,0xf1,0x29,0xe9,0x49,0xa9,0x19,0xe9,0x29,0x49,0xc9,0xa9,0x29,0x01,0x07,0x02 -+// 21088 剠 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x10,0x10,0x1f,0x02,0x13,0x1a,0x22,0x42,0x0a,0x04,0x00,0x02,0x02,0xd2,0x12,0x92,0x92,0x92,0x92,0x92,0x12,0x92,0xd2,0x82,0x0a,0x04,0x00 -+// 21089 剡 ; -+,0x04,0x04,0x15,0x14,0x26,0x09,0x11,0x22,0x12,0x13,0x12,0x25,0x08,0x10,0x20,0x00,0x02,0x82,0x12,0x12,0x12,0x92,0x12,0x92,0x92,0x12,0x12,0x02,0xc2,0x6a,0x44,0x00 -+// 21090 剢 ; -+,0x00,0x7f,0x06,0x0c,0x14,0x63,0x16,0x0b,0x1b,0x2b,0x45,0x09,0x11,0x21,0x07,0x02,0x01,0xe1,0x09,0x89,0xc9,0x89,0x09,0x09,0x89,0x69,0x49,0x09,0x01,0x01,0x05,0x02 -+// 21091 剣 ; -+,0x02,0x05,0x08,0x10,0x2f,0x42,0x1f,0x12,0x12,0x12,0x1f,0x02,0x05,0x08,0x10,0x20,0x02,0x02,0x82,0x52,0xd2,0x12,0xd2,0x52,0x52,0x52,0xd2,0x12,0x02,0x82,0x6a,0x44 -+// 21092 剤 ; -+,0x04,0x02,0x3f,0x00,0x19,0x06,0x0d,0x30,0x48,0x0f,0x08,0x0f,0x10,0x10,0x20,0x40,0x01,0x01,0xc9,0x89,0x09,0x09,0x89,0x69,0xa9,0x89,0x89,0x89,0x81,0x81,0x85,0x82 -+// 21093 剥 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x02,0x12,0x0a,0x07,0x0a,0x72,0x22,0x02,0x0a,0x04,0x02,0x82,0x82,0x92,0x92,0xd2,0x12,0x52,0x92,0x12,0x92,0x52,0x42,0x02,0x0a,0x04 -+// 21094 剦 ; -+,0x04,0x04,0x7f,0x0a,0x11,0x24,0x7f,0x24,0x3f,0x24,0x3f,0x24,0x04,0x04,0x03,0x00,0x02,0x02,0xe2,0x12,0x12,0xd2,0x92,0x92,0x92,0x92,0x92,0x12,0x42,0x42,0xca,0x04 -+// 21095 剧 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x11,0x11,0x1f,0x11,0x11,0x17,0x14,0x24,0x24,0x47,0x00,0x01,0xc1,0x41,0x49,0xc9,0x09,0x09,0xe9,0x09,0x09,0xc9,0x49,0x41,0x41,0xc5,0x02 -+// 21096 剨 ; -+,0x02,0x3f,0x02,0x1f,0x02,0x3f,0x02,0x3f,0x04,0x08,0x0f,0x18,0x28,0x4f,0x08,0x00,0x02,0xc2,0x02,0x92,0x12,0xd2,0x12,0xd2,0x12,0x12,0x92,0x92,0x82,0x8a,0x84,0x00 -+// 21097 剩 ; -+,0x01,0x3e,0x02,0x7f,0x0a,0x3a,0x0a,0x1a,0x6a,0x07,0x0a,0x12,0x22,0x42,0x02,0x00,0xc1,0x01,0x01,0xe9,0x89,0xa9,0xc9,0xa9,0x69,0x09,0x89,0x61,0x41,0x05,0x02,0x00 -+// 21098 剪 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x12,0x11,0x3f,0x01,0x02,0x04,0x18,0x08,0x10,0xff,0x00,0x82,0x92,0x92,0x92,0x82,0x8a,0x04,0xfe,0x02,0x02,0x0a,0x04 -+// 21099 剫 ; -+,0x02,0x01,0x1f,0x12,0x1f,0x12,0x13,0x10,0x17,0x10,0x12,0x11,0x22,0x24,0x48,0x00,0x01,0x01,0xe1,0x89,0xe9,0x89,0x89,0x09,0xe9,0x49,0x89,0x09,0x81,0x41,0x45,0x02 -+// 21100 剬 ; -+,0x02,0x22,0x22,0x22,0x3f,0x00,0x3f,0x04,0x3f,0x25,0x25,0x25,0x25,0x25,0x20,0x20,0x01,0x21,0x21,0x29,0xe9,0x09,0xe9,0x09,0xe9,0x29,0x29,0x29,0x21,0x21,0xa5,0x42 -+// 21101 剭 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x12,0x14,0x1f,0x12,0x2f,0x22,0x22,0x43,0x5c,0x00,0x01,0xc1,0x49,0xc9,0x09,0xc9,0x09,0x89,0xc9,0x49,0x89,0x09,0x61,0x81,0x05,0x02 -+// 21102 剮 ; -+,0x00,0x1f,0x10,0x1e,0x12,0x12,0x12,0x3f,0x20,0x2f,0x29,0x2f,0x28,0x21,0x20,0x00,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0xd2,0x52,0x52,0x52,0x42,0x42,0x4a,0x84,0x00 -+// 21103 副 ; -+,0x00,0x3f,0x00,0x1f,0x10,0x10,0x1f,0x00,0x3f,0x22,0x3f,0x22,0x22,0x3f,0x20,0x00,0x01,0xe1,0x09,0xc9,0x49,0x49,0xc9,0x09,0xe9,0x29,0xe9,0x29,0x21,0xe5,0x22,0x00 -+// 21104 剰 ; -+,0x01,0x3e,0x02,0x3f,0x12,0x7f,0x12,0x12,0x3f,0x06,0x0b,0x12,0x22,0x42,0x02,0x02,0xc2,0x02,0x02,0xd2,0x92,0xd2,0x92,0x92,0xd2,0x12,0x12,0xd2,0x42,0x02,0x0a,0x04 -+// 21105 剱 ; -+,0x04,0x04,0x0a,0x11,0x7f,0x04,0x3f,0x25,0x25,0x3f,0x21,0x12,0x19,0x21,0x41,0x00,0x00,0x00,0x7e,0x12,0x92,0x52,0x52,0x32,0x12,0x1a,0x26,0x25,0x24,0xd4,0x48,0x00 -+// 21106 割 ; -+,0x04,0x02,0x3f,0x24,0x1f,0x04,0x1f,0x04,0x3f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x00,0x02,0x02,0xc2,0x52,0x92,0x12,0x92,0x12,0xd2,0x12,0x92,0x82,0x82,0x8a,0x84,0x00 -+// 21107 剳 ; -+,0x08,0x08,0x3f,0x08,0x0a,0x05,0x08,0x10,0x2f,0x40,0x0f,0x08,0x08,0x0f,0x08,0x00,0x82,0x82,0xe2,0x92,0x92,0x12,0xd2,0x52,0x92,0x12,0x92,0x92,0x82,0x8a,0x84,0x00 -+// 21108 剴 ; -+,0x02,0x22,0x22,0x3f,0x00,0x3f,0x00,0x1f,0x10,0x1f,0x11,0x09,0x0a,0x07,0x3c,0x00,0x02,0x42,0x42,0xd2,0x12,0xd2,0x12,0x92,0x92,0x92,0x12,0x82,0x02,0xca,0x04,0x00 -+// 21109 創 ; -+,0x04,0x06,0x09,0x14,0x22,0x5f,0x10,0x1f,0x10,0x1f,0x10,0x2f,0x28,0x48,0x0f,0x00,0x02,0x02,0x02,0xd2,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x92,0x92,0x82,0x8a,0x04 -+// 21110 剶 ; -+,0x08,0x0f,0x08,0x1f,0x01,0x7f,0x0a,0x16,0x65,0x1b,0x65,0x09,0x11,0x61,0x05,0x02,0x01,0xc1,0x81,0x89,0x09,0xe9,0x29,0xc9,0x09,0x89,0x49,0x71,0x21,0x01,0x05,0x02 -+// 21111 剷 ; -+,0x02,0x01,0x1f,0x08,0x04,0x1f,0x11,0x15,0x17,0x19,0x17,0x11,0x21,0x2f,0x44,0x00,0x01,0x01,0xe1,0x49,0x89,0xe9,0x09,0x09,0xe9,0x09,0xe9,0x01,0xe1,0x01,0x05,0x02 -+// 21112 剸 ; -+,0x02,0x3f,0x02,0x1f,0x12,0x1f,0x12,0x1f,0x02,0x3f,0x01,0x7f,0x11,0x11,0x05,0x02,0x02,0xc2,0x02,0xca,0x4a,0xca,0x4a,0xca,0x8a,0xca,0x4a,0xfa,0x02,0x0a,0x04,0x00 -+// 21113 剹 ; -+,0x00,0x3d,0x14,0x14,0x0c,0x35,0x03,0x0c,0x31,0x46,0x31,0x0e,0x31,0x0e,0x70,0x00,0x02,0xe2,0xaa,0x6a,0xaa,0x4a,0x0a,0x8a,0x6a,0x2a,0x8a,0x32,0xc2,0x0a,0x04,0x00 -+// 21114 剺 ; -+,0x02,0x1f,0x02,0x3f,0x07,0x0a,0x32,0x0f,0x08,0x0b,0x08,0x08,0x10,0x11,0x26,0x00,0x10,0x90,0x3f,0xd2,0x0c,0x8c,0x52,0xff,0x00,0xfe,0x42,0x42,0x82,0x0a,0x04,0x00 -+// 21115 剻 ; -+,0x02,0x12,0x12,0x1f,0x00,0x3d,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x56,0x4a,0x00,0x02,0x42,0x4a,0xca,0x0a,0xea,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0xaa,0x44,0x00 -+// 21116 剼 ; -+,0x02,0x04,0x1f,0x08,0x10,0x25,0x7e,0x05,0x1a,0x64,0x19,0x66,0x18,0x23,0x0c,0x70,0x02,0x82,0xc2,0x4a,0x8a,0x2a,0xea,0x2a,0xca,0x2a,0x8a,0x4a,0x82,0x0a,0x04,0x00 -+// 21117 剽 ; -+,0x00,0x3f,0x05,0x3f,0x25,0x25,0x3f,0x20,0x1f,0x00,0x3f,0x12,0x1a,0x22,0x4a,0x04,0x01,0xe1,0x09,0xc9,0x49,0x49,0xc9,0x49,0x89,0x09,0xe9,0x09,0x81,0x61,0x45,0x02 -+// 21118 剾 ; -+,0x00,0x3f,0x20,0x27,0x24,0x27,0x20,0x2e,0x2a,0x2a,0x2e,0x2a,0x20,0x3f,0x00,0x00,0x01,0xe1,0x09,0xc9,0x49,0xc9,0x09,0xe9,0xa9,0xa9,0xe9,0xa9,0x01,0xe5,0x02,0x00 -+// 21119 剿 ; -+,0x0a,0x12,0x24,0x12,0x1f,0x12,0x1f,0x12,0x1f,0x02,0x3f,0x07,0x0a,0x12,0x22,0x02,0x42,0x42,0x8a,0x4a,0xca,0x4a,0xca,0x4a,0xca,0x0a,0xea,0x0a,0x82,0x62,0x4a,0x04 -+// 21120 劀 ; -+,0x3f,0x09,0x06,0x3f,0x0a,0x12,0x26,0x3f,0x25,0x28,0x3f,0x29,0x2f,0x20,0x21,0x20,0x81,0x01,0x09,0xe9,0x49,0x89,0x09,0xc9,0x49,0xc9,0xc9,0x41,0x41,0x41,0x45,0x82 -+// 21121 劁 ; -+,0x12,0x19,0x11,0x3f,0x52,0x1f,0x12,0x1f,0x12,0x12,0x1f,0x00,0x2a,0x25,0x45,0x00,0x01,0x01,0x09,0xe9,0x09,0xc9,0x09,0xc9,0x09,0x09,0xe9,0x09,0x41,0x21,0x25,0x02 -+// 21122 劂 ; -+,0x00,0x3f,0x31,0x2a,0x3f,0x24,0x25,0x35,0x35,0x3f,0x24,0x24,0x29,0x52,0x64,0x00,0x02,0xe2,0x0a,0x4a,0x4a,0xfa,0x2a,0x4a,0x4a,0x4a,0x4a,0xaa,0x32,0x22,0x0a,0x04 -+// 21123 劃 ; -+,0x04,0x1f,0x04,0x3f,0x04,0x1f,0x04,0x3f,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x3f,0x02,0x82,0x92,0xd2,0x92,0x92,0x12,0xd2,0x12,0x92,0x92,0x92,0x92,0x82,0x0a,0xc4 -+// 21124 劄 ; -+,0x11,0x11,0x1f,0x15,0x24,0x42,0x05,0x08,0x10,0x6f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x02,0x02,0xf2,0x42,0x52,0x92,0x12,0x92,0x52,0x92,0x12,0x92,0x82,0x82,0x8a,0x84 -+// 21125 劅 ; -+,0x3f,0x25,0x25,0x3f,0x10,0x1f,0x24,0x5f,0x14,0x14,0x1f,0x04,0x07,0x3c,0x00,0x00,0xe1,0x21,0x21,0xe9,0x09,0xe9,0x29,0xa9,0xa9,0xa9,0xa9,0xa9,0xe1,0xa1,0xa5,0x42 -+// 21126 劆 ; -+,0x02,0x3f,0x28,0x24,0x3f,0x25,0x3f,0x25,0x3f,0x25,0x3f,0x2d,0x2d,0x55,0x45,0x05,0x01,0xe1,0x41,0x89,0xe9,0x09,0xc9,0x49,0xe9,0x49,0xc9,0x89,0x61,0x21,0x05,0x02 -+// 21127 劇 ; -+,0x02,0x03,0x02,0x3f,0x22,0x2f,0x22,0x21,0x20,0x3f,0x22,0x25,0x3b,0x45,0x59,0x03,0x02,0x82,0x12,0xd2,0x12,0x92,0x52,0xd2,0x12,0xd2,0x52,0x92,0x82,0x62,0x2a,0x04 -+// 21128 劈 ; -+,0x00,0x1f,0x11,0x1f,0x10,0x1f,0x29,0x29,0x4f,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x08,0x7f,0x22,0x14,0xff,0x08,0x7f,0x08,0x08,0x08,0xfc,0x04,0x04,0x04,0x14,0x08 -+// 21129 劉 ; -+,0x0c,0x31,0x20,0x28,0x35,0x02,0x05,0x18,0x6f,0x02,0x1f,0x0a,0x0a,0x03,0x3e,0x00,0x01,0xe1,0xa9,0xa9,0x29,0x69,0x09,0xc9,0xa9,0x29,0x89,0x49,0x81,0xe1,0x05,0x02 -+// 21130 劊 ; -+,0x02,0x05,0x08,0x1f,0x20,0x7f,0x2a,0x27,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x01,0x01,0xc1,0xe9,0x39,0xe9,0xa9,0x29,0xe9,0x09,0xc9,0x49,0xc1,0x41,0xc5,0x42 -+// 21131 劋 ; -+,0x0f,0x08,0x0f,0x00,0x3d,0x25,0x25,0x3d,0x02,0x3f,0x07,0x06,0x0a,0x12,0x22,0x02,0x81,0x81,0x81,0x09,0xe9,0x29,0x29,0xe9,0x09,0xe9,0x09,0x89,0x61,0x41,0x05,0x02 -+// 21132 劌 ; -+,0x02,0x13,0x12,0x7f,0x01,0x3f,0x21,0x3f,0x25,0x2d,0x36,0x25,0x29,0x32,0x44,0x08,0x01,0xc1,0x01,0xe9,0x49,0xe9,0x09,0x49,0x69,0x49,0x89,0x89,0xa1,0x61,0x25,0x02 -+// 21133 劍 ; -+,0x04,0x06,0x09,0x10,0x3f,0x40,0x3d,0x25,0x3d,0x25,0x08,0x08,0x15,0x22,0x4c,0x00,0x02,0x02,0x02,0xd2,0x52,0x12,0xd2,0x52,0xd2,0x52,0x92,0x92,0x42,0x62,0x4a,0x04 -+// 21134 劎 ; -+,0x04,0x06,0x09,0x10,0x3f,0x40,0x3b,0x2a,0x3b,0x2a,0x11,0x11,0x2a,0x24,0x48,0x00,0x00,0x00,0xbe,0x52,0x92,0x12,0x92,0x92,0x92,0x92,0x12,0x22,0xa2,0x4a,0x84,0x00 -+// 21135 劏 ; -+,0x02,0x12,0x0a,0x3f,0x20,0x4f,0x08,0x0f,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x10,0x00,0x01,0x41,0x89,0xe9,0x29,0xc9,0x89,0x89,0x09,0xc9,0x49,0xc9,0x41,0xc1,0x45,0x02 -+// 21136 劐 ; -+,0x08,0x7f,0x0a,0x11,0x3f,0x51,0x1f,0x11,0x1f,0x11,0x1f,0x08,0x04,0x03,0x0c,0x30,0x83,0xf1,0x89,0x09,0xe9,0x09,0xe9,0x09,0xe9,0x09,0xe9,0x49,0x81,0x01,0xc5,0x42 -+// 21137 劑 ; -+,0x02,0x3f,0x05,0x7a,0x2a,0x2a,0x3a,0x42,0x10,0x1f,0x10,0x1f,0x10,0x10,0x20,0x40,0x01,0xe1,0x09,0xe9,0x89,0xa9,0xe9,0x99,0x49,0xc9,0x49,0xc9,0x49,0x41,0x45,0x02 -+// 21138 劒 ; -+,0x04,0x06,0x09,0x10,0x2f,0x40,0x3b,0x2a,0x2a,0x3b,0x09,0x09,0x15,0x22,0x4c,0x00,0x00,0x3e,0x0a,0xca,0x8a,0x2a,0xaa,0xaa,0xca,0x92,0x12,0x12,0xa2,0x4a,0x84,0x00 -+// 21139 劓 ; -+,0x04,0x3f,0x20,0x3c,0x23,0x20,0x3f,0x00,0x3f,0x24,0x3f,0x24,0x7f,0x11,0x11,0x21,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0x12,0x92,0x92,0x92,0x82,0xe2,0x0a,0x04,0x00 -+// 21140 劔 ; -+,0x04,0x0a,0x11,0x20,0x7f,0x40,0x3b,0x2a,0x3b,0x2a,0x11,0x11,0x2a,0x24,0x48,0x00,0x00,0x00,0x7e,0x92,0x92,0x12,0xd2,0xb2,0x92,0x9a,0x16,0x15,0xa4,0xd4,0x88,0x00 -+// 21141 劕 ; -+,0x0c,0x31,0x3f,0x25,0x25,0x46,0x5f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x04,0x0c,0x30,0x61,0x81,0xe9,0x49,0x49,0x49,0xe9,0x29,0xe9,0x29,0xe9,0x29,0xe9,0x81,0x65,0x42 -+// 21142 劖 ; -+,0x10,0x1f,0x30,0x5f,0x10,0x1f,0x11,0x1d,0x11,0x1b,0x3f,0x52,0x1f,0x05,0x09,0x10,0x01,0x81,0x89,0xc9,0x49,0xc9,0x09,0xc9,0x49,0x89,0xc9,0x49,0xc1,0x81,0x25,0xe2 -+// 21143 劗 ; -+,0x29,0x3d,0x2a,0x5f,0x15,0x17,0x24,0x5f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x08,0x10,0x81,0xe1,0x81,0xe9,0x49,0x59,0x69,0xc9,0x49,0xc9,0x49,0xc9,0x41,0xc1,0x85,0x42 -+// 21144 劘 ; -+,0x01,0x3f,0x24,0x3f,0x24,0x2f,0x35,0x24,0x22,0x2e,0x22,0x2e,0x22,0x5e,0x42,0x00,0x01,0xf1,0x41,0xf1,0xe9,0x59,0x49,0x49,0x89,0xe9,0x89,0xe9,0x81,0xf1,0x85,0x02 -+// 21145 劙 ; -+,0x08,0x0f,0x10,0x3f,0x0a,0x36,0x0b,0x35,0x12,0x7d,0x55,0x7d,0x14,0x1e,0x75,0x00,0x02,0xc2,0x8a,0xea,0x8a,0x8a,0x4a,0x2a,0x4a,0xfa,0x5a,0xf2,0x52,0x72,0xda,0x04 -+// 21146 劚 ; -+,0x3f,0x20,0x3f,0x2a,0x27,0x2a,0x2f,0x2a,0x2f,0x22,0x2f,0x2a,0x2f,0x22,0x4f,0x00,0xc1,0x41,0xc9,0x89,0x09,0x89,0xe9,0xa9,0xe9,0x29,0xa9,0xa9,0xa9,0xa1,0xa5,0xc2 -+// 21147 力 ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x80,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0x82,0x02,0x02,0x02,0x02,0x02,0x14,0x08 -+// 21148 劜 ; -+,0x08,0x08,0x08,0x08,0x3f,0x09,0x09,0x09,0x09,0x09,0x09,0x11,0x11,0x27,0x42,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 21149 劝 ; -+,0x00,0x00,0x3f,0x01,0x21,0x12,0x0a,0x04,0x06,0x0a,0x09,0x11,0x20,0x00,0x01,0x02,0x10,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x11,0x21,0x21,0x41,0x41,0x8e,0x04,0x00 -+// 21150 办 ; -+,0x01,0x01,0x01,0x3f,0x01,0x01,0x11,0x12,0x12,0x22,0x44,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x18,0x14,0x12,0x13,0x12,0x10,0x10,0x50,0x20,0x00 -+// 21151 功 ; -+,0x00,0x00,0x3f,0x04,0x05,0x04,0x04,0x04,0x04,0x07,0x78,0x20,0x00,0x01,0x02,0x00,0x10,0x10,0x90,0x10,0xfe,0x12,0x12,0x22,0xa2,0x22,0x42,0x42,0x82,0x3c,0x08,0x00 -+// 21152 加 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x10,0x10,0x22,0x41,0x00,0x00,0x00,0x00,0xbe,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xbe,0xa2,0x20,0x00 -+// 21153 务 ; -+,0x02,0x03,0x06,0x0a,0x31,0x40,0x03,0x0c,0x30,0x0f,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0xf8,0x08,0x10,0x20,0xc0,0x30,0x8f,0x82,0xf8,0x08,0x08,0x08,0x08,0x28,0x10 -+// 21154 劢 ; -+,0x00,0x7f,0x08,0x08,0x0f,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x25,0x42,0x00,0x00,0x10,0xd0,0x10,0x10,0x7f,0x11,0x11,0x11,0x11,0x21,0x21,0x21,0x42,0x4a,0x84,0x00 -+// 21155 劣 ; -+,0x00,0x04,0x06,0x08,0x10,0x60,0x01,0x06,0x38,0x07,0x00,0x01,0x01,0x02,0x0c,0x30,0x80,0x90,0x8c,0x96,0xba,0xe0,0x80,0x80,0x80,0xfc,0x84,0x04,0x04,0x04,0x14,0x08 -+// 21156 劤 ; -+,0x03,0x1c,0x10,0x10,0x10,0x1f,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x00,0x90,0x10,0x10,0x10,0x7f,0x91,0x11,0x11,0x11,0x11,0x21,0x21,0x41,0x45,0x82,0x00 -+// 21157 劥 ; -+,0x08,0x04,0x00,0x7f,0x00,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x23,0x20,0x41,0x00,0x10,0x10,0x10,0x90,0x7e,0x12,0x12,0x12,0x12,0x12,0x22,0xa2,0x42,0x8a,0x04,0x00 -+// 21158 劦 ; -+,0x00,0x00,0x1f,0x00,0x01,0x01,0x0a,0x08,0x3f,0x09,0x09,0x09,0x11,0x15,0x22,0x00,0x80,0x80,0xfc,0x84,0x04,0x14,0x08,0x10,0x7e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00 -+// 21159 劧 ; -+,0x01,0x07,0x3c,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x3c,0x08,0x00,0x10,0x90,0x10,0x10,0x7e,0x12,0x12,0x12,0x92,0x12,0x22,0x22,0x42,0x4a,0x84,0x00 -+// 21160 动 ; -+,0x00,0x00,0x3f,0x00,0x00,0x7f,0x08,0x08,0x12,0x11,0x27,0x7d,0x20,0x00,0x01,0x00,0x10,0x10,0x10,0x10,0x7e,0x92,0x12,0x12,0x12,0x12,0xa2,0x22,0x42,0x8a,0x04,0x00 -+// 21161 助 ; -+,0x00,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x13,0x7c,0x00,0x01,0x00,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x12,0x22,0xa2,0x42,0x8a,0x04,0x00 -+// 21162 努 ; -+,0x08,0x08,0x3f,0x11,0x11,0x0a,0x06,0x19,0x60,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x7e,0x22,0x22,0x14,0x08,0x14,0x23,0x80,0xfc,0x84,0x04,0x04,0x04,0x14,0x08 -+// 21163 劫 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x08,0x08,0x0a,0x11,0x27,0x7d,0x20,0x00,0x00,0x10,0x10,0x10,0x90,0x7f,0x11,0xd1,0x11,0x11,0x11,0x11,0x91,0x21,0x27,0x42,0x00 -+// 21164 劬 ; -+,0x10,0x18,0x20,0x3f,0x41,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x09,0x05,0x02,0x00,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x22,0x22,0x22,0x42,0x4e,0x84,0x00 -+// 21165 劭 ; -+,0x00,0x3f,0x08,0x08,0x08,0x12,0x11,0x3f,0x50,0x10,0x10,0x1f,0x10,0x10,0x00,0x00,0x10,0x90,0x90,0x90,0xbe,0x92,0x12,0x92,0x92,0x92,0x92,0xa2,0xa2,0x4a,0x84,0x00 -+// 21166 劮 ; -+,0x04,0x14,0x14,0x1f,0x24,0x24,0x04,0x7f,0x04,0x0a,0x09,0x11,0x11,0x20,0x41,0x00,0x10,0x10,0x10,0x90,0x7e,0x12,0x12,0x92,0x12,0x12,0x22,0xa2,0x42,0x8e,0x04,0x00 -+// 21167 劯 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x10,0x3f,0x51,0x11,0x11,0x1f,0x11,0x10,0x01,0x00,0x10,0x10,0x90,0x10,0xfe,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x42,0x8e,0x04,0x00 -+// 21168 劰 ; -+,0x08,0x0c,0x08,0x10,0x3f,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x3f,0x21,0x00,0x00,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x4a,0x84,0x00 -+// 21169 励 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x14,0x14,0x17,0x14,0x14,0x14,0x28,0x2a,0x51,0x20,0x00,0x08,0xc8,0x08,0x08,0xbf,0x09,0x09,0x89,0x89,0x91,0x91,0x91,0xa1,0x27,0x42,0x00 -+// 21170 劲 ; -+,0x00,0x3f,0x01,0x02,0x04,0x0a,0x11,0x60,0x3f,0x04,0x04,0x04,0x07,0x78,0x21,0x00,0x10,0x10,0x10,0x10,0xfe,0x12,0x92,0x92,0x92,0x22,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 21171 劳 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x21,0x01,0x1f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x00,0xff,0x02,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 21172 労 ; -+,0x11,0x08,0x06,0x04,0x1f,0x10,0x20,0x00,0x1f,0x00,0x01,0x01,0x02,0x0c,0x30,0x00,0x04,0x86,0x64,0x48,0xff,0x82,0x84,0x80,0xfc,0x84,0x04,0x04,0x04,0x44,0x28,0x10 -+// 21173 劵 ; -+,0x10,0x0c,0x08,0x3f,0x01,0x7f,0x02,0x04,0x08,0x17,0x61,0x01,0x02,0x04,0x08,0x00,0x90,0x98,0xa0,0xfe,0x00,0xff,0x20,0x90,0x8c,0xf7,0x12,0x10,0x10,0x50,0x20,0x00 -+// 21174 劶 ; -+,0x00,0x07,0x38,0x20,0x3f,0x20,0x20,0x2f,0x28,0x28,0x28,0x2f,0x28,0x48,0x00,0x00,0x10,0x90,0x10,0x10,0xbe,0x12,0x12,0x92,0x92,0x92,0x92,0xa2,0xa2,0x5c,0x88,0x00 -+// 21175 劷 ; -+,0x21,0x19,0x12,0x7f,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x08,0x08,0x10,0x61,0x00,0x10,0x90,0x10,0x90,0x7e,0x12,0x92,0x12,0x12,0x92,0x22,0x22,0x42,0x8a,0x04,0x00 -+// 21176 劸 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x3f,0x04,0x04,0x07,0x78,0x01,0x00,0x10,0x10,0x90,0x10,0x7e,0x92,0x12,0x12,0x12,0x92,0x22,0x22,0x42,0x8a,0x04,0x00 -+// 21177 効 ; -+,0x08,0x06,0x04,0x3f,0x09,0x08,0x10,0x21,0x09,0x05,0x02,0x05,0x09,0x11,0x20,0x00,0x08,0x08,0x08,0xc8,0x3f,0x89,0x49,0x09,0x89,0x11,0x11,0x11,0xa1,0x25,0x42,0x00 -+// 21178 劺 ; -+,0x08,0x08,0x11,0x27,0x7c,0x04,0x24,0x3f,0x24,0x44,0x3f,0x04,0x04,0x04,0x04,0x04,0x10,0x10,0x10,0x90,0xbe,0x12,0x12,0x92,0x12,0x12,0xa2,0x22,0x42,0x4e,0x84,0x00 -+// 21179 劻 ; -+,0x00,0x3f,0x20,0x3f,0x22,0x22,0x2f,0x22,0x22,0x22,0x3f,0x20,0x3f,0x20,0x00,0x00,0x10,0xd0,0x10,0x90,0x7f,0x11,0x91,0x11,0x11,0x11,0x91,0x21,0xa1,0x45,0x82,0x00 -+// 21180 劼 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x00,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x20,0x00,0x10,0x10,0x90,0x10,0xfe,0x12,0x12,0x12,0x12,0x22,0x22,0x22,0x42,0x4a,0x84,0x00 -+// 21181 劽 ; -+,0x00,0x3f,0x04,0x07,0x08,0x18,0x25,0x06,0x18,0x0f,0x00,0x01,0x01,0x02,0x02,0x04,0x02,0xc2,0x12,0x92,0x92,0x92,0x02,0x8a,0x84,0xfc,0x84,0x04,0x04,0x04,0x14,0x08 -+// 21182 劾 ; -+,0x04,0x02,0x3f,0x04,0x08,0x11,0x3f,0x12,0x04,0x19,0x62,0x05,0x09,0x10,0x61,0x00,0x10,0x10,0xd0,0x10,0x7e,0x12,0x92,0x12,0x92,0x12,0x22,0xa2,0x42,0x8a,0x04,0x00 -+// 21183 势 ; -+,0x04,0x04,0x3e,0x04,0x06,0x1c,0x04,0x15,0x0a,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x20,0x20,0xf8,0x48,0xc8,0x68,0xa5,0x05,0x82,0x88,0xfc,0x08,0x08,0x08,0x28,0x10 -+// 21184 勀 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x20,0x20,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x23,0x40,0x10,0x10,0x90,0x10,0x7e,0x92,0x92,0x92,0x92,0x12,0x12,0x22,0xa2,0xaa,0xc4,0x00 -+// 21185 勁 ; -+,0x00,0x3f,0x14,0x15,0x29,0x52,0x29,0x15,0x15,0x3f,0x04,0x04,0x07,0x7c,0x00,0x00,0x10,0x90,0x90,0x10,0x7f,0x11,0x11,0x91,0x11,0xa1,0x21,0x21,0xc1,0x45,0x82,0x00 -+// 21186 勂 ; -+,0x04,0x14,0x14,0x1f,0x24,0x24,0x7f,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x10,0x10,0x10,0x90,0x7e,0x12,0xd2,0x12,0x12,0x92,0x92,0xa2,0xa2,0xca,0x84,0x00 -+// 21187 勃 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x20,0x41,0x3f,0x02,0x05,0x0e,0x74,0x04,0x04,0x14,0x08,0x10,0x10,0x90,0x10,0xbe,0x92,0x12,0x12,0x12,0x92,0x22,0x22,0x42,0x4a,0x84,0x00 -+// 21188 勄 ; -+,0x10,0x10,0x1f,0x20,0x5f,0x14,0x12,0x7f,0x18,0x16,0x14,0x1f,0x00,0x07,0x02,0x00,0x10,0x10,0x90,0x10,0xbe,0x92,0x92,0xd2,0x92,0x92,0x92,0xd2,0xa2,0x2a,0x44,0x00 -+// 21189 勅 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x24,0x24,0x3f,0x24,0x0e,0x15,0x14,0x24,0x44,0x04,0x04,0x10,0x10,0xd0,0x10,0xbf,0x91,0x91,0x91,0x91,0x11,0x11,0xa1,0x21,0x45,0x82,0x00 -+// 21190 勆 ; -+,0x08,0x04,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x20,0x24,0x22,0x25,0x29,0x30,0x21,0x00,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x94,0x08,0x00 -+// 21191 勇 ; -+,0x1f,0x01,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x01,0x3f,0x01,0x02,0x04,0x08,0x10,0xf8,0x30,0xc0,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xfc,0x04,0x04,0x04,0x14,0x08 -+// 21192 勈 ; -+,0x3f,0x01,0x0a,0x04,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x24,0x24,0x26,0x21,0x00,0x90,0x90,0x10,0x7e,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0xa2,0xaa,0x44,0x00 -+// 21193 勉 ; -+,0x08,0x08,0x1f,0x11,0x22,0x3f,0x24,0x24,0x3f,0x0a,0x0a,0x0a,0x12,0x22,0x41,0x00,0x10,0x10,0x90,0x7e,0x12,0x92,0x92,0x92,0xa2,0x22,0x4a,0x84,0x01,0x01,0xff,0x00 -+// 21194 勊 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x20,0x20,0x20,0x3f,0x0a,0x0a,0x12,0x12,0x22,0x41,0x00,0x10,0x10,0xd0,0x10,0xbe,0x92,0x92,0x92,0x92,0x22,0x22,0x5c,0x89,0x01,0xff,0x00 -+// 21195 勋 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x00,0x3f,0x20,0x24,0x24,0x24,0x24,0x0a,0x11,0x61,0x00,0x10,0x90,0x90,0x90,0xfe,0x12,0x92,0x92,0x92,0x92,0x92,0x92,0x22,0xaa,0x44,0x00 -+// 21196 勌 ; -+,0x04,0x24,0x15,0x3f,0x04,0x7f,0x09,0x10,0x1f,0x29,0x49,0x0b,0x08,0x0a,0x1c,0x08,0x08,0x88,0x08,0x88,0x3f,0xc9,0x09,0x89,0x49,0x49,0x11,0x11,0x21,0x21,0x45,0x82 -+// 21197 勍 ; -+,0x04,0x02,0x3f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x02,0x13,0x1a,0x12,0x22,0x0a,0x04,0x08,0x08,0xc8,0x08,0x3f,0x89,0x89,0x89,0x89,0x09,0x09,0x91,0xd1,0xa5,0x42,0x00 -+// 21198 勎 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x0a,0x19,0x24,0x44,0x3f,0x04,0x05,0x0e,0x70,0x00,0x10,0x10,0x90,0x10,0x7e,0xd2,0x12,0x92,0x92,0x12,0x92,0x22,0xa2,0x4a,0x84,0x00 -+// 21199 勏 ; -+,0x08,0x04,0x3f,0x11,0x09,0x0a,0x3f,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x10,0x10,0xd0,0x10,0xbe,0x12,0xd2,0x12,0x12,0x92,0x92,0xa2,0xa2,0xca,0x84,0x00 -+// 21200 勐 ; -+,0x00,0x3f,0x02,0x04,0x7f,0x04,0x14,0x08,0x3f,0x2a,0x2a,0x2a,0x2f,0x78,0x00,0x00,0x10,0x10,0x10,0x10,0xbe,0x12,0x12,0x12,0x92,0x92,0x92,0x92,0xe2,0x2a,0x44,0x00 -+// 21201 勑 ; -+,0x04,0x04,0x7f,0x14,0x14,0x14,0x2d,0x4e,0x06,0x0d,0x14,0x24,0x44,0x04,0x05,0x04,0x10,0x10,0xd0,0x90,0xbe,0x92,0x52,0x52,0x12,0x12,0xa2,0xa2,0x42,0x8a,0x04,0x00 -+// 21202 勒 ; -+,0x11,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x10,0x10,0xd0,0x10,0x7e,0x12,0x92,0x92,0x92,0x92,0x12,0xa2,0x22,0x4a,0x84,0x00 -+// 21203 勓 ; -+,0x22,0x22,0x22,0x3b,0x22,0x3a,0x29,0x10,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x10,0x10,0x90,0x10,0x7e,0x52,0xd2,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x84,0x00 -+// 21204 勔 ; -+,0x00,0x7f,0x04,0x08,0x3f,0x2a,0x2a,0x2e,0x2a,0x2e,0x2a,0x2a,0x3f,0x20,0x00,0x00,0x08,0xc8,0x08,0x08,0xbf,0x89,0x89,0x89,0x89,0x91,0x91,0xa1,0xa1,0x45,0x82,0x00 -+// 21205 動 ; -+,0x03,0x3c,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x07,0x78,0x00,0x90,0x10,0x10,0x90,0x7f,0x91,0x91,0x91,0x91,0x91,0x11,0x91,0x21,0xa1,0x45,0x82 -+// 21206 勖 ; -+,0x3f,0x20,0x2e,0x20,0x2e,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x90,0x90,0x90,0x90,0xfe,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x4a,0x84,0x00 -+// 21207 勗 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x17,0x78,0x20,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x10,0x7e,0x12,0x12,0x12,0x22,0xa2,0x4a,0x84 -+// 21208 勘 ; -+,0x11,0x11,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x2a,0x2d,0x29,0x31,0x7f,0x20,0x00,0x10,0x10,0xd0,0x10,0x7e,0x12,0x12,0x12,0xd2,0x12,0x12,0x92,0x22,0xaa,0x44,0x00 -+// 21209 務 ; -+,0x00,0x3f,0x12,0x0c,0x04,0x7f,0x0a,0x19,0x1a,0x28,0x28,0x48,0x08,0x28,0x11,0x00,0x20,0x20,0x7e,0x44,0xa8,0x18,0x67,0x92,0x10,0xfe,0x22,0x22,0x42,0x9c,0x08,0x00 -+// 21210 勚 ; -+,0x15,0x15,0x7f,0x15,0x17,0x10,0x1f,0x00,0x3f,0x24,0x24,0x24,0x24,0x0a,0x11,0x21,0x10,0x10,0xd0,0x10,0x3f,0x11,0x91,0x11,0x91,0x91,0x91,0x91,0x91,0x21,0xa5,0x42 -+// 21211 勛 ; -+,0x00,0x3f,0x20,0x3f,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x3f,0x12,0x19,0x21,0x41,0x10,0x90,0x90,0x90,0x7f,0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x11,0x21,0xa5,0x42 -+// 21212 勜 ; -+,0x11,0x14,0x2a,0x51,0x3f,0x01,0x7b,0x08,0x4c,0x2a,0x19,0x6a,0x08,0x2a,0x11,0x00,0x08,0xc8,0x48,0x08,0xbe,0x0a,0x8a,0x8a,0x8a,0x8a,0x92,0x92,0xa2,0xaa,0x44,0x00 -+// 21213 勝 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x27,0x24,0x24,0x3d,0x27,0x24,0x24,0x24,0x54,0x48,0x01,0x24,0x26,0xa8,0xfe,0x20,0xff,0x48,0xa4,0x23,0xfe,0x24,0x24,0x44,0x44,0x94,0x08 -+// 21214 勞 ; -+,0x04,0x05,0x16,0x14,0x2a,0x11,0x1f,0x10,0x20,0x07,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x54,0x5c,0x10,0x28,0x44,0xfe,0x82,0x84,0xf8,0x88,0x08,0x08,0x28,0x10,0x00 -+// 21215 募 ; -+,0x02,0x7f,0x02,0x0f,0x09,0x08,0x0f,0x02,0x7f,0x04,0x08,0x17,0x61,0x02,0x04,0x08,0x20,0xff,0x20,0xf8,0x08,0x88,0xf8,0x00,0xff,0x90,0x8c,0xf7,0x12,0x10,0x50,0x20 -+// 21216 勠 ; -+,0x3d,0x26,0x15,0x0c,0x15,0x26,0x05,0x08,0x32,0x4c,0x33,0x0c,0x31,0x06,0x18,0x60,0xc8,0x48,0x48,0xfe,0x4a,0x4a,0x0a,0x8a,0x4a,0xb2,0x12,0x52,0xa2,0x22,0x4a,0x84 -+// 21217 勡 ; -+,0x00,0x7f,0x0a,0x3f,0x2a,0x3f,0x20,0x1f,0x00,0x3f,0x04,0x16,0x25,0x45,0x14,0x08,0x10,0xd0,0x10,0x90,0xfe,0x92,0x92,0x12,0x12,0xd2,0x12,0x22,0xa2,0x4a,0x84,0x00 -+// 21218 勢 ; -+,0x04,0x1f,0x04,0x3f,0x12,0x24,0x5f,0x04,0x3f,0x00,0x1f,0x00,0x01,0x01,0x02,0x0c,0x10,0x90,0x3c,0x94,0x54,0xb4,0xad,0x45,0x82,0x80,0xfc,0x84,0x04,0x04,0x14,0x08 -+// 21219 勣 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x7f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x09,0x0c,0x10,0x20,0x10,0xd0,0x10,0xbe,0x12,0xd2,0x92,0x92,0x92,0x92,0x92,0xa2,0x22,0xa2,0xca,0x84 -+// 21220 勤 ; -+,0x08,0x08,0x7f,0x08,0x0f,0x02,0x1f,0x12,0x1f,0x02,0x1f,0x02,0x1f,0x02,0x03,0x3c,0x88,0x88,0xe8,0x88,0xbf,0x09,0xc9,0x49,0xc9,0x09,0xd1,0x11,0xd1,0x27,0xa2,0x40 -+// 21221 勥 ; -+,0x3e,0x02,0x02,0x3e,0x20,0x3e,0x02,0x02,0x14,0x09,0x1f,0x01,0x02,0x02,0x04,0x08,0x7c,0x44,0x7c,0x10,0xfe,0x92,0xfe,0x14,0xfe,0x02,0xfc,0x04,0x04,0x04,0x28,0x10 -+// 21222 勦 ; -+,0x12,0x15,0x29,0x14,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x0e,0x0d,0x14,0x24,0x44,0x88,0x08,0x08,0x88,0xbf,0x89,0x89,0x89,0x89,0x09,0xc9,0x09,0x09,0xd1,0x95,0x22 -+// 21223 勧 ; -+,0x10,0x1f,0x14,0x24,0x7f,0x08,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x1f,0x10,0x10,0x00,0x08,0xc8,0x08,0x08,0xff,0x09,0xc9,0x09,0x89,0x09,0x91,0x11,0xe1,0x25,0x42,0x80 -+// 21224 勨 ; -+,0x08,0x0f,0x11,0x3f,0x52,0x1f,0x04,0x0c,0x16,0x6b,0x12,0x25,0x09,0x11,0x25,0x02,0x08,0x88,0x08,0xc8,0x7f,0xc9,0x09,0x89,0xc9,0x11,0xd1,0x51,0x21,0x21,0x45,0x02 -+// 21225 勩 ; -+,0x29,0x29,0x7f,0x29,0x2f,0x20,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x3f,0x12,0x19,0x21,0x08,0x08,0xc8,0x08,0x7f,0x09,0xc9,0x89,0x89,0x89,0x89,0x89,0x91,0x11,0xa5,0x42 -+// 21226 勪 ; -+,0x03,0x3c,0x08,0x3f,0x11,0x2f,0x49,0x0f,0x00,0x3f,0x20,0x2f,0x29,0x2f,0x21,0x20,0x88,0x08,0x08,0xc8,0x3f,0x89,0x49,0x29,0x09,0xc9,0x49,0x49,0x49,0x51,0x55,0xa2 -+// 21227 勫 ; -+,0x01,0x3e,0x24,0x15,0x3f,0x0e,0x15,0x64,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x20,0x00,0x88,0x08,0x88,0x08,0xbf,0x09,0x09,0xc9,0x89,0x89,0x89,0x91,0x91,0xa1,0xa5,0x42 -+// 21228 勬 ; -+,0x24,0x15,0x3f,0x04,0x7f,0x09,0x14,0x6d,0x06,0x09,0x3f,0x04,0x16,0x25,0x55,0x08,0x88,0x08,0x88,0x08,0xff,0x09,0xc9,0x49,0x09,0x11,0x91,0x91,0x21,0x21,0x45,0x82 -+// 21229 勭 ; -+,0x04,0x3f,0x10,0x09,0x7f,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x07,0x78,0x10,0xd0,0x90,0x10,0xfe,0x12,0x92,0x92,0x92,0x92,0x92,0x12,0x92,0x22,0xaa,0x44 -+// 21230 勮 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x3f,0x26,0x2a,0x27,0x3a,0x22,0x4a,0x04,0x08,0x88,0x08,0xc8,0xbf,0x09,0x09,0x09,0xc9,0x09,0x91,0x11,0xa1,0x21,0x4a,0x84 -+// 21231 勯 ; -+,0x04,0x7f,0x00,0x3f,0x2a,0x2e,0x20,0x3f,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x00,0x7f,0x08,0xc8,0x08,0x88,0xbf,0x89,0x89,0x89,0x09,0x89,0x89,0x89,0x91,0x91,0x25,0xc2 -+// 21232 勰 ; -+,0x08,0x08,0x3f,0x09,0x09,0x15,0x62,0x14,0x7f,0x2a,0x2a,0x2a,0x2c,0x5a,0x11,0x00,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x90,0xc8,0xaa,0xa1,0xa5,0xa4,0x1c,0x00 -+// 21233 勱 ; -+,0x09,0x7f,0x09,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x46,0x45,0x7f,0x41,0x40,0x41,0x08,0xe8,0x08,0x88,0xbf,0x89,0x89,0x89,0x09,0xc9,0x49,0x49,0xd1,0x51,0x55,0xa2 -+// 21234 勲 ; -+,0x3f,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x3f,0x12,0x11,0x21,0x90,0x10,0x90,0x3e,0x92,0x92,0x92,0x92,0x92,0x2a,0xa4,0x00,0xa4,0x13,0x91,0x00 -+// 21235 勳 ; -+,0x01,0x3f,0x04,0x3f,0x04,0x3f,0x24,0x35,0x2e,0x3f,0x04,0x7f,0x04,0x7f,0x25,0x45,0x08,0x88,0x08,0xc8,0x3f,0x89,0x89,0x89,0x89,0x89,0x09,0x89,0x11,0x91,0x65,0x42 -+// 21236 勴 ; -+,0x02,0x03,0x02,0x3f,0x22,0x2f,0x22,0x2f,0x2a,0x2f,0x2a,0x2f,0x22,0x39,0x59,0x67,0x08,0xc8,0x08,0xdf,0x49,0x09,0x49,0x89,0x89,0x89,0x89,0x91,0x27,0x52,0x58,0xd0 -+// 21237 勵 ; -+,0x3f,0x24,0x2f,0x24,0x2f,0x2a,0x2f,0x2a,0x2f,0x22,0x3f,0x32,0x33,0x5e,0x50,0x10,0xe8,0x88,0xc8,0xbf,0xc9,0x49,0xc9,0x49,0xc9,0x09,0xe9,0xa9,0xe9,0xa9,0x35,0x22 -+// 21238 勶 ; -+,0x00,0x17,0x29,0x53,0x34,0x53,0x12,0x13,0x12,0x13,0x13,0x3f,0x01,0x02,0x04,0x08,0x88,0xe8,0x5f,0xe2,0x2a,0xca,0x4c,0xc4,0x44,0xcb,0x52,0xf8,0x08,0x08,0x28,0x10 -+// 21239 勷 ; -+,0x04,0x7f,0x00,0x3b,0x2a,0x3b,0x12,0x3f,0x12,0x7f,0x12,0x7f,0x14,0x34,0x5b,0x11,0x08,0xc8,0x08,0xbf,0x89,0x89,0x09,0x09,0x09,0xc9,0x09,0xc9,0x91,0x91,0x25,0x42 -+// 21240 勸 ; -+,0x12,0x7f,0x12,0x3b,0x2a,0x3b,0x14,0x1f,0x32,0x3f,0x52,0x1f,0x12,0x1f,0x10,0x00,0x08,0xc8,0x08,0x88,0xbe,0x8a,0x0a,0x8a,0x0a,0x92,0x12,0x92,0x12,0xaa,0x24,0x40 -+// 21241 勹 ; -+,0x00,0x04,0x04,0x07,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 21242 勺 ; -+,0x04,0x04,0x07,0x08,0x08,0x10,0x22,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x82,0xc2,0x82,0x02,0x02,0x24,0x14,0x08 -+// 21243 勻 ; -+,0x08,0x08,0x0f,0x10,0x10,0x2f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0xf2,0x02,0x02,0x02,0xfa,0x02,0x02,0x02,0x12,0x0a,0x04 -+// 21244 勼 ; -+,0x08,0x08,0x0f,0x10,0x12,0x22,0x1f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xc2,0x42,0x42,0x4a,0x4a,0x3a,0x02,0x02,0x0a,0x04 -+// 21245 勽 ; -+,0x04,0x04,0x0f,0x08,0x11,0x21,0x41,0x01,0x02,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0xc2,0x32,0x1a,0x12,0x02,0x12,0x0a,0x04 -+// 21246 勾 ; -+,0x04,0x04,0x07,0x04,0x09,0x11,0x21,0x02,0x02,0x04,0x09,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x82,0x02,0x42,0x22,0x12,0xfa,0x12,0x02,0x12,0x0a,0x04 -+// 21247 勿 ; -+,0x04,0x06,0x04,0x07,0x08,0x08,0x11,0x21,0x42,0x04,0x08,0x11,0x02,0x04,0x18,0x00,0x00,0x00,0x00,0xfe,0x92,0x92,0x12,0x22,0x22,0x42,0x82,0x02,0x02,0x22,0x14,0x08 -+// 21248 匀 ; -+,0x04,0x04,0x07,0x08,0x08,0x13,0x20,0x00,0x00,0x00,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x02,0xff,0x02,0x02,0x02,0xc2,0x42,0x02,0x72,0x82,0x02,0x02,0x14,0x08,0x00 -+// 21249 匁 ; -+,0x08,0x0c,0x08,0x0f,0x10,0x18,0x24,0x25,0x43,0x01,0x02,0x04,0x08,0x30,0x40,0x00,0x00,0x00,0x08,0xfc,0x88,0x88,0x88,0x08,0x08,0x88,0x48,0x38,0x17,0x90,0x60,0x00 -+// 21250 匂 ; -+,0x04,0x04,0x0f,0x08,0x14,0x24,0x44,0x04,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x22,0x72,0xc2,0x12,0x12,0x12,0xf2,0x02,0x14,0x08,0x00 -+// 21251 匃 ; -+,0x04,0x04,0x0f,0x08,0x10,0x38,0x50,0x11,0x12,0x14,0x18,0x10,0x1f,0x00,0x00,0x00,0x00,0x02,0xff,0x82,0x82,0x82,0x82,0x42,0x22,0x12,0x02,0x12,0xfa,0x02,0x0a,0x04 -+// 21252 匄 ; -+,0x04,0x04,0x0f,0x0a,0x11,0x20,0x5f,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x02,0xff,0x02,0x02,0x82,0xfa,0x02,0x02,0x02,0x02,0x02,0xfa,0x02,0x0a,0x04 -+// 21253 包 ; -+,0x04,0x06,0x04,0x0f,0x08,0x10,0x2f,0x48,0x08,0x0f,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x04,0xfe,0x04,0x04,0xe4,0x24,0x24,0xe4,0x04,0x14,0x09,0x01,0xff,0x00 -+// 21254 匆 ; -+,0x04,0x06,0x04,0x0f,0x08,0x14,0x23,0x41,0x02,0x04,0x08,0x30,0x01,0x06,0x38,0x00,0x00,0x00,0x02,0xff,0x92,0x92,0x12,0xa2,0x62,0x72,0x5a,0x92,0x02,0x02,0x0a,0x04 -+// 21255 匇 ; -+,0x04,0x04,0x0f,0x08,0x12,0x23,0x44,0x06,0x09,0x11,0x20,0x01,0x06,0x18,0x00,0x00,0x00,0x02,0xff,0x02,0x02,0xf2,0x12,0x22,0xa2,0x42,0x82,0x02,0x02,0x02,0x14,0x08 -+// 21256 匈 ; -+,0x04,0x04,0x0f,0x08,0x10,0x24,0x52,0x11,0x12,0x14,0x18,0x1f,0x10,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x42,0x52,0x92,0x12,0x92,0x52,0x52,0xf2,0x12,0x02,0x14,0x08 -+// 21257 匉 ; -+,0x08,0x08,0x0f,0x10,0x1f,0x21,0x49,0x05,0x05,0x3f,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0xfe,0x02,0xf2,0x02,0x22,0x32,0x42,0xfa,0x02,0x02,0x02,0x12,0x0a,0x04 -+// 21258 匊 ; -+,0x04,0x04,0x0f,0x08,0x14,0x22,0x02,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0xfe,0x92,0x9a,0x92,0xa2,0xfa,0x82,0xc2,0xb2,0x9a,0x92,0x82,0x9c,0x08 -+// 21259 匋 ; -+,0x04,0x04,0x07,0x0a,0x14,0x27,0x48,0x00,0x3f,0x00,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0xff,0x01,0x01,0xf9,0x81,0x81,0xfd,0x81,0x89,0x89,0xf9,0x09,0x05,0x02 -+// 21260 匌 ; -+,0x08,0x08,0x0f,0x12,0x13,0x24,0x48,0x1f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x42,0x22,0xf2,0x12,0xe2,0x22,0x22,0xe2,0x22,0x0a,0x04 -+// 21261 匍 ; -+,0x08,0x08,0x0f,0x11,0x2f,0x41,0x0f,0x09,0x0f,0x09,0x0f,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0xfe,0x22,0xfa,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x12,0x52,0x22,0x0a,0x04 -+// 21262 匎 ; -+,0x08,0x08,0x0f,0x11,0x2f,0x42,0x05,0x1f,0x69,0x0f,0x09,0x0f,0x01,0x01,0x00,0x00,0x00,0x00,0xff,0x01,0xf9,0x41,0x21,0xfd,0x29,0xe1,0x21,0xe1,0x09,0x09,0xf5,0x02 -+// 21263 匏 ; -+,0x08,0x08,0x3f,0x08,0x14,0x22,0x5f,0x00,0x7f,0x10,0x3e,0x12,0x02,0x02,0x0a,0x04,0x20,0x30,0x40,0x7e,0x82,0xfa,0x4a,0x4a,0x4a,0x7a,0x4a,0x44,0x41,0x41,0x3f,0x00 -+// 21264 匐 ; -+,0x04,0x04,0x0f,0x08,0x17,0x20,0x4f,0x08,0x0f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x00,0x00,0xfe,0x02,0xf2,0x02,0xf2,0x12,0xf2,0x02,0xf2,0x12,0xf2,0x12,0xfa,0x04 -+// 21265 匑 ; -+,0x08,0x08,0x0f,0x14,0x28,0x5e,0x12,0x1e,0x12,0x1e,0x12,0x3e,0x0a,0x12,0x6a,0x04,0x00,0x00,0xfe,0x02,0xfa,0x0a,0xfa,0x82,0x82,0xfa,0x0a,0x0a,0x0a,0x52,0x2a,0x04 -+// 21266 匒 ; -+,0x08,0x08,0x0f,0x10,0x14,0x2f,0x45,0x02,0x04,0x0f,0x30,0x0f,0x08,0x0f,0x08,0x00,0x00,0x02,0xff,0x02,0x42,0xf2,0x42,0x82,0x62,0xda,0x12,0xe2,0x22,0xe2,0x2a,0x04 -+// 21267 匓 ; -+,0x08,0x0f,0x08,0x10,0x3e,0x52,0x1e,0x13,0x1e,0x10,0x10,0x14,0x12,0x17,0x1a,0x00,0x00,0xff,0x01,0x01,0xf1,0x91,0x91,0x0d,0xf1,0x91,0x61,0x61,0x99,0x09,0x05,0x02 -+// 21268 匔 ; -+,0x08,0x0c,0x0f,0x14,0x2f,0x49,0x0f,0x09,0x0f,0x09,0x3f,0x05,0x09,0x11,0x27,0x02,0x00,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x4a,0x02,0x7a,0x4a,0x4a,0x7a,0x42,0x0a,0x04 -+// 21269 匕 ; -+,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x0e,0x08,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x08,0x1c,0x60,0x80,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0xfc,0x00 -+// 21270 化 ; -+,0x04,0x06,0x04,0x08,0x08,0x18,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x08,0x08,0x00,0x40,0x40,0x44,0x46,0x4c,0x58,0x70,0x60,0xc0,0x40,0x40,0x42,0x42,0x42,0x3e,0x00 -+// 21271 北 ; -+,0x02,0x02,0x02,0x02,0x02,0x3e,0x02,0x02,0x02,0x02,0x06,0x1a,0x72,0x22,0x02,0x00,0x20,0x20,0x20,0x22,0x27,0x2c,0x30,0x20,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 21272 匘 ; -+,0x20,0x20,0x21,0x22,0x21,0x2c,0x30,0x21,0x21,0x21,0x25,0x25,0x25,0x1d,0x01,0x00,0x92,0x92,0x24,0x48,0x24,0x92,0x92,0xfe,0x86,0x4a,0x32,0x4a,0x86,0xfe,0x02,0x00 -+// 21273 匙 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x7f,0x02,0x12,0x13,0x12,0x2a,0x26,0x41,0x00,0x00,0x90,0x90,0x90,0x92,0x9c,0x10,0xd0,0x12,0x12,0x92,0x0e,0x00,0x00,0xff,0x00 -+// 21274 匚 ; -+,0x00,0x3f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00 -+// 21275 匛 ; -+,0x00,0x3f,0x21,0x21,0x21,0x22,0x22,0x24,0x28,0x20,0x20,0x23,0x2c,0x7f,0x20,0x00,0x00,0xff,0x00,0x00,0xf8,0x08,0x10,0x10,0x20,0x60,0x98,0x06,0x04,0xff,0x00,0x00 -+// 21276 匜 ; -+,0x00,0x3f,0x20,0x20,0x22,0x22,0x23,0x2e,0x22,0x22,0x22,0x22,0x21,0x20,0x3f,0x00,0x00,0xff,0x40,0x40,0x48,0x7c,0xc8,0x48,0x48,0x48,0x1a,0x02,0xfe,0x00,0xff,0x00 -+// 21277 匝 ; -+,0x00,0x3f,0x20,0x20,0x27,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x20,0x3f,0x00,0x00,0xfe,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0x44,0x54,0x48,0x40,0x40,0xff,0x00 -+// 21278 匞 ; -+,0x00,0x3f,0x20,0x20,0x27,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x20,0x20,0x3f,0x00,0x00,0xff,0x00,0x00,0xfc,0x40,0x40,0x40,0x40,0x40,0x40,0xfe,0x00,0x00,0xff,0x00 -+// 21279 匟 ; -+,0x00,0x3f,0x21,0x20,0x2f,0x20,0x23,0x22,0x22,0x22,0x24,0x24,0x28,0x20,0x3f,0x00,0x00,0xfe,0x00,0x80,0xf8,0x00,0xe0,0x20,0x20,0x22,0x22,0x1e,0x00,0x00,0xff,0x00 -+// 21280 匠 ; -+,0x00,0x3f,0x20,0x23,0x22,0x22,0x23,0x22,0x22,0x22,0x24,0x24,0x28,0x20,0x3f,0x00,0x00,0xff,0x00,0xf0,0x00,0x08,0xfc,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0xff,0x00 -+// 21281 匡 ; -+,0x00,0x3f,0x20,0x20,0x2f,0x20,0x20,0x27,0x20,0x20,0x20,0x2f,0x20,0x20,0x3f,0x00,0x00,0xff,0x00,0x00,0xfc,0x40,0x40,0xfc,0x40,0x40,0x40,0xfe,0x00,0x00,0xff,0x00 -+// 21282 匢 ; -+,0x00,0x3f,0x22,0x22,0x23,0x24,0x24,0x29,0x21,0x22,0x2c,0x21,0x26,0x20,0x3f,0x00,0x00,0xff,0x00,0x04,0xfe,0x94,0x94,0x14,0x24,0x24,0x44,0x94,0x08,0x00,0xff,0x00 -+// 21283 匣 ; -+,0x00,0x3f,0x20,0x27,0x24,0x24,0x27,0x24,0x24,0x27,0x20,0x20,0x20,0x20,0x3f,0x00,0x00,0xff,0x00,0xfc,0x44,0x44,0xfc,0x44,0x44,0xfc,0x40,0x40,0x40,0x40,0xff,0x00 -+// 21284 匤 ; -+,0x00,0x3f,0x20,0x27,0x20,0x20,0x20,0x27,0x20,0x20,0x20,0x2f,0x20,0x20,0x3f,0x00,0x00,0xff,0x00,0xfc,0x40,0x40,0x40,0xfc,0x50,0x4c,0x48,0xfe,0x00,0x00,0xff,0x00 -+// 21285 匥 ; -+,0x00,0x3f,0x20,0x21,0x22,0x24,0x2f,0x21,0x21,0x2f,0x21,0x21,0x22,0x24,0x3f,0x00,0x00,0xff,0x80,0x10,0x08,0xfc,0x88,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 21286 匦 ; -+,0x00,0x3f,0x24,0x24,0x3f,0x24,0x2a,0x2f,0x22,0x23,0x3e,0x22,0x22,0x20,0x3f,0x00,0x00,0xff,0x10,0x10,0xbc,0x14,0x14,0x94,0x14,0xa4,0x25,0x43,0x80,0x00,0xff,0x00 -+// 21287 匧 ; -+,0x00,0x3f,0x20,0x20,0x2f,0x24,0x24,0x24,0x2a,0x30,0x21,0x22,0x24,0x28,0x3f,0x00,0x00,0xff,0x40,0x44,0xfe,0x48,0x48,0x48,0x54,0xa0,0x10,0x0c,0x06,0x04,0xff,0x00 -+// 21288 匨 ; -+,0x00,0x3f,0x21,0x29,0x29,0x29,0x2f,0x21,0x2f,0x29,0x29,0x29,0x31,0x20,0x3f,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x7e,0x00,0x00,0xff,0x00 -+// 21289 匩 ; -+,0x00,0x3f,0x20,0x24,0x24,0x27,0x20,0x27,0x20,0x27,0x20,0x20,0x2f,0x20,0x3f,0x00,0x00,0xff,0x40,0x44,0x44,0xfc,0x00,0xfc,0x40,0xfc,0x40,0x40,0xfe,0x00,0xff,0x00 -+// 21290 匪 ; -+,0x00,0x3f,0x21,0x21,0x2f,0x21,0x21,0x2f,0x21,0x21,0x3f,0x21,0x21,0x21,0x3f,0x00,0x00,0xff,0x20,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x20,0xff,0x00 -+// 21291 匫 ; -+,0x00,0x3f,0x22,0x27,0x28,0x33,0x2c,0x23,0x2f,0x22,0x23,0x22,0x23,0x20,0x3f,0x00,0x00,0xff,0x00,0xfc,0xb4,0x64,0xd4,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00 -+// 21292 匬 ; -+,0x00,0x3f,0x20,0x21,0x23,0x2c,0x37,0x24,0x27,0x24,0x27,0x24,0x25,0x20,0x3f,0x00,0x00,0xff,0xc0,0x20,0xf8,0x0e,0x84,0x94,0x94,0x94,0x94,0x84,0x9c,0x00,0xff,0x00 -+// 21293 匭 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x2f,0x2a,0x2f,0x2a,0x2f,0x22,0x3f,0x22,0x22,0x3f,0x00,0x00,0xfe,0x10,0xd0,0x3c,0x94,0x94,0x94,0xa4,0xa4,0x25,0xc5,0x47,0x80,0xff,0x00 -+// 21294 匮 ; -+,0x3f,0x20,0x27,0x24,0x27,0x20,0x3f,0x20,0x27,0x24,0x24,0x25,0x22,0x24,0x3f,0x00,0xfe,0x80,0xf0,0x90,0xf0,0x80,0xfc,0x00,0xf0,0x90,0x90,0x50,0x20,0x10,0xfe,0x00 -+// 21295 匯 ; -+,0x00,0x3f,0x28,0x24,0x31,0x29,0x2a,0x20,0x24,0x24,0x28,0x38,0x28,0x20,0x3f,0x00,0x00,0xfe,0xa0,0x90,0xfe,0x90,0xfc,0x90,0x90,0xfc,0x90,0x90,0xfe,0x80,0xfe,0x00 -+// 21296 匰 ; -+,0x3f,0x20,0x2f,0x29,0x2f,0x20,0x27,0x24,0x27,0x24,0x27,0x20,0x3f,0x20,0x20,0x3f,0xff,0x00,0x3c,0x24,0x3c,0x00,0xfc,0x44,0xfc,0x44,0xfc,0x40,0xff,0x40,0x40,0xff -+// 21297 匱 ; -+,0x3f,0x20,0x27,0x24,0x27,0x20,0x3f,0x24,0x27,0x24,0x27,0x24,0x27,0x23,0x2c,0x3f,0xfe,0x80,0xf8,0x88,0xf8,0x80,0xfe,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c,0xfe -+// 21298 匲 ; -+,0x00,0x3f,0x20,0x2f,0x23,0x26,0x3b,0x22,0x23,0x20,0x2f,0x29,0x2f,0x29,0x20,0x3f,0x00,0xfe,0x80,0xfc,0x30,0x0c,0xf7,0x12,0xf0,0x00,0x3c,0x24,0x3c,0x24,0x00,0xfe -+// 21299 匳 ; -+,0x00,0x3f,0x20,0x21,0x26,0x3b,0x20,0x2f,0x29,0x29,0x2f,0x22,0x25,0x28,0x3f,0x00,0x00,0xfe,0xc0,0x30,0x0c,0xf7,0x02,0x78,0x48,0x48,0x78,0x10,0x28,0xc4,0xff,0x00 -+// 21300 匴 ; -+,0x00,0x3f,0x24,0x27,0x29,0x37,0x24,0x27,0x24,0x27,0x22,0x2f,0x22,0x24,0x3f,0x00,0x02,0xff,0x20,0xbe,0x48,0xf8,0x08,0xf8,0x08,0xf8,0x10,0xfe,0x10,0x12,0xff,0x00 -+// 21301 匵 ; -+,0x3f,0x20,0x2f,0x20,0x27,0x20,0x2f,0x29,0x2f,0x24,0x27,0x24,0x27,0x22,0x24,0x3f,0xff,0x80,0xfc,0x80,0xf8,0x00,0xfc,0x24,0xfc,0x08,0xf8,0x08,0xf8,0x10,0x08,0xff -+// 21302 匶 ; -+,0x3f,0x22,0x3f,0x22,0x27,0x2c,0x37,0x24,0x27,0x21,0x2e,0x28,0x2f,0x28,0x2f,0x3f,0xfe,0x10,0xfe,0x50,0xfc,0x40,0xf8,0x40,0xfc,0x00,0x7c,0x04,0x7c,0x04,0xfc,0xfe -+// 21303 匷 ; -+,0x00,0x3f,0x29,0x2f,0x29,0x2f,0x29,0x2f,0x22,0x27,0x2c,0x37,0x24,0x27,0x24,0x3f,0x00,0xfe,0x24,0x3c,0x24,0x3c,0x24,0x3c,0x40,0xfc,0x40,0xf8,0x40,0xf8,0x40,0xff -+// 21304 匸 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00 -+// 21305 匹 ; -+,0x00,0x3f,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x28,0x30,0x20,0x3f,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x22,0x22,0x23,0x1e,0x00,0x00,0xff,0x00,0x00 -+// 21306 区 ; -+,0x00,0x3f,0x20,0x20,0x24,0x23,0x20,0x20,0x20,0x21,0x22,0x24,0x28,0x3f,0x00,0x00,0x00,0xfe,0x10,0x18,0x10,0x20,0xa0,0x40,0xa0,0x10,0x18,0x0c,0x08,0xfe,0x00,0x00 -+// 21307 医 ; -+,0x00,0x3f,0x24,0x24,0x27,0x28,0x30,0x2f,0x20,0x20,0x21,0x22,0x24,0x20,0x3f,0x00,0x00,0xfe,0x00,0x00,0xfc,0x40,0x44,0xfe,0xa0,0x90,0x08,0x0c,0x08,0x00,0xff,0x00 -+// 21308 匼 ; -+,0x00,0x1f,0x10,0x10,0x11,0x12,0x15,0x18,0x13,0x12,0x12,0x13,0x12,0x10,0x1f,0x00,0x00,0xff,0x40,0xa0,0x10,0x0c,0xf7,0x02,0xf8,0x08,0x08,0xf8,0x08,0x00,0xff,0x00 -+// 21309 匽 ; -+,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x17,0x10,0x11,0x10,0x10,0x11,0x1f,0x00,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xff,0x88,0x88,0x70,0x8c,0x02,0xff,0x00 -+// 21310 匾 ; -+,0x3f,0x20,0x27,0x24,0x27,0x24,0x27,0x26,0x2b,0x2a,0x32,0x32,0x22,0x20,0x3f,0x00,0xfe,0x40,0xfc,0x04,0xfc,0x00,0xfc,0x94,0xfc,0x94,0x94,0x94,0x0c,0x00,0xff,0x00 -+// 21311 匿 ; -+,0x3f,0x20,0x22,0x2f,0x22,0x20,0x2f,0x21,0x23,0x26,0x2a,0x33,0x22,0x20,0x3f,0x00,0xfe,0x00,0x10,0xfc,0x10,0x80,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x08,0x02,0xff,0x00 -+// 21312 區 ; -+,0x00,0x3f,0x20,0x23,0x22,0x23,0x20,0x2f,0x28,0x28,0x2f,0x28,0x20,0x20,0x3f,0x00,0x00,0xfe,0x00,0xf0,0x10,0xf0,0x00,0xbc,0xa4,0xa4,0xbc,0xa4,0x00,0x00,0xff,0x00 -+// 21313 十 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 21314 卂 ; -+,0x00,0x3f,0x02,0x02,0x02,0x02,0x02,0x7f,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0xe8,0x08,0x08,0x08,0x05,0x05,0x03,0x01,0x00 -+// 21315 千 ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x7c,0x80,0x80,0x80,0x82,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 21316 卄 ; -+,0x00,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 21317 卅 ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x88,0x88,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x00 -+// 21318 卆 ; -+,0x01,0x01,0x3f,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x10,0x12,0x12,0x8e,0x80,0x82,0xff,0x80,0x80,0x80,0x80,0x00 -+// 21319 升 ; -+,0x00,0x03,0x1e,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0x90,0x10,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 21320 午 ; -+,0x04,0x04,0x0f,0x08,0x10,0x10,0x20,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x80,0x80,0x80,0x82,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 21321 卉 ; -+,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x80,0x88,0xfc,0x80,0x80,0x88,0x88,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 21322 半 ; -+,0x00,0x10,0x0c,0x06,0x04,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x80,0x88,0x8c,0x90,0xa0,0x84,0xfe,0x80,0x80,0x82,0xff,0x80,0x80,0x80,0x80,0x80 -+// 21323 卋 ; -+,0x00,0x00,0x3f,0x00,0x00,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0xfe,0x80,0x80,0x88,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21324 卌 ; -+,0x00,0x12,0x12,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x00 -+// 21325 卍 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x11,0x00,0x00,0x80,0xc2,0x82,0x82,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0x80,0xfe,0x80,0x00 -+// 21326 华 ; -+,0x04,0x06,0x08,0x18,0x29,0x48,0x08,0x08,0x08,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x40,0x44,0x4e,0x70,0xc0,0x42,0x42,0x3e,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80 -+// 21327 协 ; -+,0x10,0x10,0x10,0x11,0x7e,0x10,0x11,0x11,0x12,0x12,0x10,0x10,0x10,0x11,0x12,0x00,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x26,0x45,0x45,0x44,0x84,0x84,0x14,0x08,0x00 -+// 21328 卐 ; -+,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x7f,0x20,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0x82,0xff,0x82,0x82,0x82,0x82,0x82,0x82,0x00,0x00 -+// 21329 卑 ; -+,0x00,0x01,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x11,0x06,0x7f,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x04,0x40,0xff,0x40,0x40,0x40,0x40,0x40 -+// 21330 卒 ; -+,0x01,0x00,0x3f,0x04,0x04,0x04,0x0a,0x11,0x21,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xfe,0x10,0x10,0x10,0x28,0x24,0x44,0x80,0xff,0x80,0x80,0x80,0x80,0x80 -+// 21331 卓 ; -+,0x01,0x01,0x01,0x01,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x88,0x80,0xff,0x80,0x80,0x80,0x80 -+// 21332 協 ; -+,0x10,0x10,0x11,0x10,0x7e,0x10,0x11,0x11,0x17,0x11,0x11,0x12,0x12,0x15,0x18,0x00,0x20,0x20,0xfe,0x42,0x42,0x8e,0x04,0x08,0xde,0x4a,0x4a,0x4a,0x52,0xda,0xa4,0x00 -+// 21333 单 ; -+,0x04,0x03,0x02,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x7f,0x00,0x00,0x00,0x00,0x10,0x18,0x20,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x80,0xff,0x80,0x80,0x80,0x80 -+// 21334 卖 ; -+,0x00,0x00,0x1f,0x00,0x00,0x3f,0x02,0x01,0x09,0x04,0x3f,0x00,0x01,0x02,0x04,0x18,0x40,0x44,0xfe,0x40,0x40,0xff,0x46,0x48,0x40,0x80,0xff,0xa0,0x10,0x18,0x0c,0x08 -+// 21335 南 ; -+,0x00,0x00,0x7f,0x00,0x01,0x1f,0x12,0x11,0x17,0x10,0x1f,0x10,0x10,0x10,0x10,0x00,0x80,0x82,0xff,0x80,0x00,0xfe,0x12,0x22,0xfa,0x82,0xfe,0x82,0x82,0x8a,0x84,0x00 -+// 21336 単 ; -+,0x08,0x04,0x04,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x7f,0x00,0x00,0x00,0x00,0x88,0x4c,0x50,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x80,0xff,0x80,0x80,0x80,0x80 -+// 21337 卙 ; -+,0x11,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x29,0x2c,0x28,0x30,0x20,0x3f,0x00,0x08,0x08,0xe8,0x08,0x08,0x7f,0x08,0x08,0xe8,0x08,0x88,0xc8,0x88,0x08,0xc8,0x00 -+// 21338 博 ; -+,0x10,0x10,0x13,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x17,0x11,0x10,0x10,0x10,0x10,0x28,0x24,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x2c,0xff,0x08,0xc8,0x88,0x28,0x10 -+// 21339 卛 ; -+,0x00,0x13,0x18,0x25,0x78,0x15,0x3e,0x05,0x35,0x2b,0x40,0x00,0x7f,0x00,0x00,0x00,0x80,0xe4,0x09,0xdb,0x04,0xc9,0x1f,0xe0,0x29,0xe9,0x91,0x80,0xff,0x80,0x80,0x80 -+// 21340 卜 ; -+,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00 -+// 21341 卝 ; -+,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x7e,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 21342 卞 ; -+,0x01,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0xff,0x80,0x80,0x80,0xa0,0x90,0x88,0x8c,0x88,0x80,0x80,0x80,0x80 -+// 21343 卟 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x30,0x28,0x24,0x26,0x23,0x22,0x20,0x20,0x20,0x20,0x20,0x20 -+// 21344 占 ; -+,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x1f,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21345 卡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x80,0x80,0xa0,0x98,0x8c,0x86,0x84,0x80,0x80 -+// 21346 卢 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x40,0x7f,0x40,0x40,0xfe,0x02,0x02,0xfe,0x02,0x00,0x00,0x00,0x00,0x00,0x00 -+// 21347 卣 ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x80,0x84,0xfe,0x80,0x80,0xfe,0x02,0x02,0xe2,0x22,0x22,0xe2,0x02,0x02,0xfe,0x02 -+// 21348 卤 ; -+,0x00,0x00,0x00,0x00,0x1f,0x10,0x14,0x12,0x11,0x10,0x11,0x12,0x14,0x1f,0x10,0x00,0x80,0x82,0xff,0x80,0xfe,0x22,0x32,0x62,0x42,0x82,0x42,0x32,0x12,0xfe,0x02,0x00 -+// 21349 卥 ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x18,0x14,0x12,0x11,0x12,0x14,0x11,0x16,0x1f,0x10,0x80,0x80,0xff,0x80,0x80,0xfe,0x42,0x52,0x9a,0xb2,0x62,0xb2,0x1a,0x12,0xfe,0x02 -+// 21350 卦 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x3f,0x04,0x04,0x04,0x07,0x78,0x00,0x10,0x10,0x10,0xd0,0x10,0x18,0xd4,0x12,0x13,0xd2,0x10,0x10,0x10,0xd0,0x10,0x10 -+// 21351 卧 ; -+,0x00,0x3f,0x24,0x24,0x24,0x3f,0x20,0x20,0x3f,0x24,0x24,0x24,0x24,0x3f,0x00,0x00,0x20,0xa0,0x20,0x20,0x20,0xb0,0xa8,0xa6,0xa3,0x21,0x20,0x20,0x20,0xa0,0x20,0x00 -+// 21352 卨 ; -+,0x00,0x00,0x00,0x0f,0x08,0x0f,0x08,0x3f,0x20,0x27,0x24,0x24,0x27,0x24,0x20,0x20,0x80,0xff,0x80,0xf8,0x08,0xc8,0x48,0xfe,0x02,0xf2,0x12,0x12,0xf2,0x12,0x0a,0x04 -+// 21353 卩 ; -+,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x20,0x00,0x00,0x00,0x00 -+// 21354 卪 ; -+,0x00,0x07,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0xfc,0x04,0x04,0x84,0xc4,0x64,0x44,0x04,0x1c,0x08,0x00,0x00,0x00,0x00,0x00 -+// 21355 卫 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x9c,0x88,0x80,0x80,0x80,0xff,0x00 -+// 21356 卬 ; -+,0x00,0x03,0x1c,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x38,0x10,0x00,0x00,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x4e,0x44,0x40,0x40,0x40 -+// 21357 卭 ; -+,0x00,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0b,0x1c,0x60,0x00,0x00,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x4a,0x44,0x40,0x40,0x40,0x00 -+// 21358 卮 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0b,0x0a,0x0a,0x12,0x12,0x22,0x22,0x41,0x00,0x3c,0xc0,0x00,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0x28,0x11,0x01,0x01,0xff,0x00 -+// 21359 卯 ; -+,0x00,0x01,0x1e,0x11,0x11,0x11,0x11,0x11,0x11,0x15,0x3a,0x12,0x04,0x08,0x30,0x00,0x00,0xc0,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x2e,0x24,0x20,0x20,0x20,0x00 -+// 21360 印 ; -+,0x00,0x07,0x38,0x20,0x20,0x20,0x3f,0x20,0x20,0x22,0x2c,0x70,0x20,0x00,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x4a,0x44,0x40,0x40,0x40,0x40 -+// 21361 危 ; -+,0x02,0x03,0x04,0x08,0x1f,0x28,0x48,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x40,0x00,0x00,0xf8,0x10,0x20,0xff,0x00,0x00,0xf8,0x08,0x08,0x28,0x12,0x02,0x03,0xfe,0x00 -+// 21362 卲 ; -+,0x00,0x3f,0x08,0x08,0x10,0x10,0x22,0x41,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0xbe,0xa2,0xa2,0xa2,0xa2,0xa2,0x22,0xa2,0xa2,0xaa,0xa4,0xa0,0xa0,0xa0,0x00 -+// 21363 即 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x12,0x11,0x13,0x3d,0x10,0x00,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x2a,0xa4,0x20,0x20,0x20,0x20 -+// 21364 却 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x7f,0x08,0x09,0x10,0x13,0x3c,0x10,0x00,0x00,0x00,0x3e,0x22,0xa2,0x22,0x22,0x22,0xa2,0x22,0x22,0xa2,0xea,0xa4,0x20,0x20,0x20 -+// 21365 卵 ; -+,0x01,0x1e,0x11,0x11,0x19,0x15,0x17,0x15,0x13,0x3d,0x12,0x02,0x04,0x18,0x60,0x00,0x80,0x3e,0x22,0x22,0x32,0x2a,0x2e,0x2a,0x22,0x2a,0x24,0x20,0x20,0x20,0x20,0x20 -+// 21366 卶 ; -+,0x08,0x08,0x0f,0x10,0x29,0x42,0x0c,0x74,0x0f,0x10,0x68,0x05,0x02,0x0c,0x70,0x00,0x00,0x3e,0xa2,0xa2,0x22,0x22,0x22,0x22,0xa2,0xa2,0xaa,0x24,0x20,0x20,0x20,0x20 -+// 21367 卷 ; -+,0x00,0x08,0x04,0x1f,0x00,0x01,0x7f,0x02,0x07,0x0a,0x12,0x42,0x02,0x02,0x01,0x00,0x88,0x8c,0x90,0xfe,0x80,0x00,0xff,0x10,0xec,0x27,0x22,0xa0,0x48,0x08,0xf8,0x00 -+// 21368 卸 ; -+,0x10,0x10,0x1f,0x22,0x02,0x3f,0x02,0x12,0x13,0x12,0x12,0x13,0x7c,0x20,0x00,0x00,0x00,0x3e,0xa2,0x22,0x22,0xa2,0x22,0x22,0xa2,0x22,0x22,0xae,0x24,0x20,0x20,0x00 -+// 21369 卹 ; -+,0x06,0x04,0x3f,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x2f,0x70,0x00,0x00,0x00,0x00,0x1f,0xd1,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0xf1,0x17,0x12,0x10,0x10,0x10 -+// 21370 卺 ; -+,0x0f,0x00,0x00,0x1e,0x02,0x04,0x0a,0x01,0x2f,0x00,0x07,0x04,0x04,0x04,0x04,0x03,0xf0,0x20,0x48,0x9c,0xe0,0xb0,0x8c,0x03,0xfc,0x00,0xf8,0x08,0x28,0x12,0x02,0xfe -+// 21371 卻 ; -+,0x12,0x19,0x34,0x44,0x0a,0x11,0x20,0x40,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x00,0x00,0x9e,0xd2,0x52,0x12,0x12,0x92,0x52,0x92,0x92,0x9e,0x94,0x90,0x90,0x10,0x10 -+// 21372 卼 ; -+,0x00,0x00,0x7f,0x14,0x15,0x16,0x14,0x14,0x14,0x14,0x15,0x15,0x26,0x24,0x43,0x00,0x40,0x40,0x7c,0x88,0xfe,0x80,0xbc,0xa4,0xa4,0xbc,0x28,0x22,0x1e,0x01,0xff,0x00 -+// 21373 卽 ; -+,0x04,0x08,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x22,0x27,0x38,0x20,0x20,0x1f,0x00,0x00,0x00,0x3e,0xa2,0xa2,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x2a,0xa4,0xa0,0xa0,0x20,0x00 -+// 21374 卾 ; -+,0x00,0x39,0x29,0x29,0x39,0x00,0x3f,0x00,0x7f,0x08,0x1f,0x08,0x00,0x00,0x0f,0x02,0x00,0xc0,0x5f,0x51,0xd1,0x11,0xd1,0x11,0xf1,0x11,0x91,0x95,0x92,0x90,0x10,0x10 -+// 21375 卿 ; -+,0x06,0x39,0x21,0x25,0x25,0x25,0x25,0x25,0x2d,0x35,0x09,0x09,0x11,0x20,0x40,0x00,0x00,0xef,0x29,0x29,0xe9,0x29,0x29,0xe9,0x09,0x4d,0x6a,0xa8,0x08,0x08,0x08,0x00 -+// 21376 厀 ; -+,0x02,0x02,0x3f,0x07,0x0a,0x12,0x27,0x0c,0x32,0x52,0x0b,0x06,0x1a,0x22,0x0a,0x04,0x00,0x00,0xde,0x12,0x92,0x52,0x12,0x92,0x72,0xd2,0x12,0x9e,0xd4,0x50,0x10,0x10 -+// 21377 厁 ; -+,0x04,0x0a,0x1f,0x24,0x5f,0x14,0x25,0x54,0x08,0x3f,0x01,0x01,0x01,0x01,0x01,0x01,0x04,0x24,0x14,0xa4,0x14,0x7f,0x04,0x84,0x04,0xf8,0x08,0x08,0x28,0x10,0x00,0x00 -+// 21378 厂 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 21379 厃 ; -+,0x02,0x03,0x04,0x08,0x10,0x2f,0x48,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x00,0xf8,0x10,0x20,0x40,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 21380 厄 ; -+,0x00,0x1f,0x10,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x41,0x00,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x28,0x10,0x02,0x02,0x02,0xfe,0x00 -+// 21381 厅 ; -+,0x00,0x1f,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0xff,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40,0x00 -+// 21382 历 ; -+,0x00,0x1f,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x11,0x21,0x22,0x44,0x00,0x00,0xff,0x00,0x40,0x40,0xfc,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x1c,0x08,0x00 -+// 21383 厇 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x02,0xff,0x00,0x3c,0xc0,0x40,0x40,0x7f,0xc0,0x40,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 21384 厈 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0xfe,0x00,0x00,0xfc,0x40,0x40,0x40,0xfe,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 21385 厉 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x22,0x24,0x48,0x00,0x00,0xff,0x00,0x00,0xfe,0x80,0x80,0xfc,0x84,0x84,0x04,0x04,0x04,0x14,0x08,0x00 -+// 21386 厊 ; -+,0x00,0x1f,0x10,0x17,0x12,0x12,0x12,0x17,0x12,0x10,0x10,0x11,0x22,0x24,0x40,0x00,0x00,0xff,0x00,0xfe,0x10,0x10,0x10,0xff,0x30,0x50,0x90,0x10,0x10,0x50,0x20,0x00 -+// 21387 压 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x20,0x5f,0x00,0x00,0x00,0xff,0x00,0x40,0x40,0x44,0xfe,0x40,0x50,0x48,0x4c,0x48,0x40,0xff,0x00,0x00 -+// 21388 厌 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x11,0x11,0x12,0x22,0x24,0x48,0x00,0x00,0xff,0x80,0xa0,0x98,0x90,0xfe,0x80,0x80,0x40,0x20,0x30,0x1c,0x0e,0x04,0x00 -+// 21389 厍 ; -+,0x00,0x1f,0x10,0x10,0x17,0x11,0x12,0x17,0x12,0x10,0x17,0x10,0x20,0x20,0x40,0x00,0x00,0xff,0x80,0x80,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x00 -+// 21390 厎 ; -+,0x00,0x1f,0x10,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x14,0x14,0x25,0x2e,0x44,0x00,0x1f,0xe0,0x00,0x1c,0xe0,0x20,0x20,0xfe,0x20,0x20,0x10,0x90,0x49,0x25,0x23,0x00 -+// 21391 厏 ; -+,0x00,0x1f,0x11,0x11,0x13,0x12,0x14,0x14,0x18,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0xff,0x00,0x00,0xfe,0x80,0x80,0xfc,0x80,0x80,0xfe,0x80,0x80,0x80,0x80,0x00 -+// 21392 厐 ; -+,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x11,0x11,0x22,0x24,0x49,0x12,0x00,0x00,0xff,0x80,0x90,0x88,0xff,0xa4,0xa6,0xac,0x28,0x30,0x61,0xa1,0x1f,0x00,0x00 -+// 21393 厑 ; -+,0x00,0x1f,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x14,0x17,0x14,0x24,0x20,0x40,0x00,0x00,0xff,0x00,0x20,0xa2,0xa7,0xac,0xb0,0xa0,0xa0,0xa0,0xa1,0x21,0x1f,0x00,0x00 -+// 21394 厒 ; -+,0x00,0x1f,0x12,0x12,0x13,0x12,0x14,0x10,0x1f,0x10,0x12,0x12,0x22,0x23,0x42,0x00,0x02,0xff,0x00,0x00,0xfe,0x20,0x20,0x22,0xff,0x20,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 21395 厓 ; -+,0x00,0x1f,0x10,0x10,0x13,0x10,0x10,0x1f,0x10,0x10,0x17,0x20,0x20,0x4f,0x40,0x00,0x00,0xff,0x40,0x40,0xfc,0x40,0x40,0xff,0x40,0x40,0xfc,0x40,0x40,0xff,0x00,0x00 -+// 21396 厔 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x11,0x12,0x17,0x12,0x10,0x17,0x20,0x20,0x5f,0x00,0x00,0x00,0xff,0x00,0xfe,0x80,0x08,0x04,0xfe,0x44,0x40,0xfe,0x40,0x40,0xff,0x00,0x00 -+// 21397 厕 ; -+,0x00,0x1f,0x10,0x17,0x14,0x15,0x15,0x15,0x15,0x15,0x15,0x21,0x22,0x44,0x48,0x00,0x00,0xff,0x02,0xc2,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x02,0x82,0x6a,0x44,0x00 -+// 21398 厖 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x11,0x11,0x12,0x22,0x25,0x48,0x50,0x00,0x00,0xff,0x20,0x12,0xff,0x4c,0x70,0x44,0x58,0x64,0x4e,0x70,0xc1,0x41,0x3f,0x00 -+// 21399 厗 ; -+,0x00,0x1f,0x10,0x10,0x10,0x17,0x11,0x10,0x1f,0x10,0x10,0x17,0x10,0x20,0x20,0x40,0x00,0xff,0x80,0x40,0x20,0xfe,0x08,0x92,0xff,0x40,0x44,0xfe,0x40,0x40,0x40,0x40 -+// 21400 厘 ; -+,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x14,0x17,0x14,0x20,0x27,0x20,0x40,0x5f,0x00,0x00,0xff,0x00,0xfc,0x44,0xfc,0x44,0x44,0xfc,0x44,0x40,0xfe,0x40,0x40,0xff,0x00 -+// 21401 厙 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x2f,0x20,0x20,0x40,0x00,0xff,0x40,0x40,0xfe,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x40,0xff,0x40,0x40,0x40,0x40 -+// 21402 厚 ; -+,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x17,0x10,0x10,0x17,0x20,0x20,0x41,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x18,0x60,0xfe,0x40,0x40,0x40,0x80 -+// 21403 厛 ; -+,0x00,0x1f,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x17,0x14,0x10,0x20,0x20,0x41,0x00,0x00,0xff,0x00,0x3e,0xa0,0xa0,0xa0,0xbf,0xa4,0xa4,0xa4,0x44,0x44,0x84,0x04,0x00 -+// 21404 厜 ; -+,0x00,0x1f,0x10,0x17,0x10,0x1f,0x12,0x12,0x1f,0x12,0x12,0x1f,0x20,0x20,0x47,0x00,0x00,0xff,0x0c,0xf0,0x40,0xff,0x48,0x48,0xff,0x48,0x48,0xff,0x40,0x40,0xfe,0x00 -+// 21405 厝 ; -+,0x1f,0x11,0x11,0x17,0x11,0x11,0x1f,0x10,0x13,0x12,0x12,0x23,0x22,0x22,0x43,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x00 -+// 21406 厞 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x17,0x10,0x10,0x1f,0x20,0x20,0x40,0x40,0x00,0x00,0xff,0x90,0x90,0x9f,0x90,0x90,0x9e,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x00 -+// 21407 原 ; -+,0x00,0x1f,0x10,0x10,0x13,0x12,0x13,0x12,0x12,0x13,0x10,0x12,0x23,0x24,0x49,0x40,0x00,0xfe,0xc0,0x80,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x40,0x50,0x4c,0x46,0x44,0x80 -+// 21408 厠 ; -+,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x14,0x17,0x14,0x17,0x10,0x24,0x28,0x50,0x00,0x00,0xff,0x02,0xc2,0x52,0xd2,0x52,0x52,0xd2,0x52,0xd2,0x12,0x82,0x62,0x4a,0x04 -+// 21409 厡 ; -+,0x00,0x1f,0x10,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x1f,0x11,0x22,0x24,0x49,0x10,0x00,0xfe,0x40,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x44,0x6e,0x50,0x4c,0x47,0x42,0x80 -+// 21410 厢 ; -+,0x00,0x1f,0x12,0x12,0x12,0x1f,0x12,0x17,0x16,0x16,0x2a,0x2a,0x32,0x42,0x42,0x00,0x00,0xff,0x00,0x3e,0x22,0xa2,0x3e,0x22,0xa2,0xbe,0x22,0x22,0x3e,0x22,0x20,0x00 -+// 21411 厣 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x23,0x2c,0x37,0x24,0x27,0x24,0x27,0x24,0x20,0x20,0x40,0x00,0xfe,0x90,0x88,0xfe,0x30,0x0c,0xf7,0x92,0xf0,0x90,0xf0,0x90,0x80,0x80,0x80 -+// 21412 厤 ; -+,0x00,0x1f,0x10,0x11,0x1e,0x12,0x1f,0x12,0x17,0x16,0x1a,0x12,0x22,0x22,0x42,0x00,0x00,0xff,0x00,0x86,0x38,0x08,0xbf,0x18,0x1c,0xaa,0xab,0x4a,0x88,0x08,0x08,0x00 -+// 21413 厥 ; -+,0x00,0x3f,0x28,0x25,0x2f,0x22,0x2a,0x2a,0x2a,0x2f,0x2a,0x22,0x24,0x48,0x50,0x00,0x00,0xff,0x90,0x10,0xdf,0x11,0xaa,0x88,0x88,0x88,0x88,0x14,0x22,0x43,0x82,0x00 -+// 21414 厦 ; -+,0x1f,0x10,0x1f,0x11,0x17,0x14,0x17,0x14,0x17,0x12,0x13,0x15,0x21,0x20,0x43,0x0c,0xfe,0x00,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xf8,0x10,0x20,0xc0,0x3e,0x08 -+// 21415 厧 ; -+,0x00,0x1f,0x10,0x17,0x10,0x13,0x12,0x13,0x12,0x13,0x12,0x23,0x22,0x2f,0x43,0x4c,0x00,0xff,0x40,0xfe,0x40,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xfe,0x30,0x0c -+// 21416 厨 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x17,0x14,0x14,0x17,0x10,0x18,0x15,0x23,0x2e,0x40,0x00,0x00,0xff,0x04,0xc4,0x04,0xbf,0x84,0xa4,0x94,0x1c,0x94,0x04,0xc4,0x14,0x08,0x00 -+// 21417 厩 ; -+,0x00,0x3f,0x20,0x2f,0x28,0x2f,0x28,0x28,0x2f,0x2a,0x29,0x2b,0x2c,0x48,0x40,0x00,0x00,0xff,0x00,0xbe,0x88,0xa8,0xa8,0xff,0x88,0x14,0x14,0x94,0xa5,0x25,0x43,0x00 -+// 21418 厪 ; -+,0x1f,0x11,0x1f,0x11,0x11,0x10,0x17,0x14,0x17,0x10,0x17,0x10,0x27,0x20,0x4f,0x00,0xff,0x10,0xfe,0x10,0xf0,0x40,0xfc,0x44,0xfc,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x00 -+// 21419 厫 ; -+,0x1f,0x11,0x1f,0x11,0x17,0x11,0x1f,0x12,0x13,0x12,0x12,0x14,0x24,0x2a,0x51,0x00,0xff,0x08,0xec,0x08,0xd0,0x1f,0xe2,0x12,0xd4,0x54,0x48,0x48,0x54,0xa3,0x42,0x00 -+// 21420 厬 ; -+,0x1f,0x10,0x17,0x15,0x14,0x17,0x12,0x13,0x16,0x1a,0x11,0x12,0x14,0x2b,0x22,0x43,0xfe,0x00,0xfc,0x84,0x64,0xfc,0x10,0xd8,0x54,0x52,0x90,0x70,0x1f,0xfc,0x04,0xfc -+// 21421 厭 ; -+,0x3f,0x20,0x2f,0x2c,0x2a,0x2f,0x20,0x2f,0x28,0x2f,0x28,0x2f,0x28,0x4a,0x49,0x00,0xff,0x00,0x88,0x8c,0x8b,0x8a,0x3f,0x88,0x88,0x88,0x88,0x94,0x92,0xa3,0x42,0x00 -+// 21422 厮 ; -+,0x00,0x3f,0x25,0x25,0x3f,0x25,0x27,0x25,0x27,0x25,0x3f,0x25,0x24,0x28,0x50,0x00,0x00,0xff,0x00,0x03,0xdc,0x10,0x1f,0x14,0x14,0x14,0xd4,0x24,0xa4,0x44,0x84,0x00 -+// 21423 厯 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x17,0x16,0x1a,0x1a,0x12,0x10,0x2a,0x2a,0x52,0x41,0x00,0x00,0xff,0x08,0x08,0xbf,0x1c,0x9a,0xab,0x4a,0x08,0x44,0x22,0x2b,0x0a,0xf8,0x00 -+// 21424 厰 ; -+,0x00,0x3f,0x22,0x32,0x2a,0x22,0x2f,0x2a,0x2a,0x2f,0x2a,0x2a,0x2a,0x4a,0x4a,0x00,0x00,0xff,0x08,0x4c,0x88,0x1f,0xd2,0x52,0x72,0x54,0xc4,0x48,0x4c,0x53,0xe2,0x00 -+// 21425 厱 ; -+,0x00,0x1f,0x10,0x10,0x13,0x1d,0x10,0x17,0x14,0x14,0x17,0x12,0x22,0x25,0x48,0x10,0x00,0xff,0x40,0xa0,0x18,0xf7,0x02,0xbc,0xa4,0xa4,0xbc,0x08,0x08,0x14,0xa2,0xc1 -+// 21426 厲 ; -+,0x1f,0x11,0x1f,0x11,0x17,0x14,0x17,0x14,0x17,0x10,0x17,0x14,0x14,0x27,0x25,0x44,0xff,0x10,0xfe,0x10,0xfc,0x44,0xfc,0x44,0xfc,0x40,0xfe,0x52,0x7a,0xca,0x02,0x06 -+// 21427 厳 ; -+,0x11,0x08,0x04,0x3f,0x20,0x2f,0x21,0x3f,0x29,0x2f,0x29,0x2f,0x29,0x4f,0x59,0x01,0x08,0xcc,0x90,0xfe,0x10,0x90,0x3f,0xe4,0x24,0x24,0x54,0x08,0xc8,0x16,0x23,0x42 -+// 21428 厴 ; -+,0x3f,0x28,0x2f,0x20,0x2f,0x28,0x2f,0x28,0x29,0x27,0x24,0x27,0x24,0x27,0x40,0x00,0xff,0x90,0x8a,0x0a,0xbf,0x88,0x94,0x92,0xa1,0xfe,0x44,0xfc,0x44,0xfc,0x40,0x40 -+// 21429 厵 ; -+,0x1f,0x10,0x17,0x14,0x17,0x22,0x26,0x48,0x3f,0x22,0x2f,0x28,0x2f,0x22,0x2a,0x56,0xfe,0x80,0xfc,0x44,0xfc,0x50,0x4c,0xc8,0xbf,0x24,0xaf,0xa9,0xaf,0x24,0xae,0x55 -+// 21430 厶 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x3f,0x10,0x00,0x00,0x80,0xc0,0x80,0x80,0x00,0x00,0x00,0x00,0x10,0x08,0x04,0x7e,0xc3,0x02,0x00,0x00 -+// 21431 厷 ; -+,0x01,0x01,0x01,0x3f,0x01,0x02,0x02,0x04,0x04,0x08,0x09,0x11,0x22,0x47,0x02,0x00,0x00,0x80,0x00,0xfe,0x00,0x40,0x60,0x40,0x80,0x90,0x08,0x04,0x7e,0xc6,0x04,0x00 -+// 21432 厸 ; -+,0x04,0x06,0x04,0x04,0x04,0x08,0x08,0x08,0x10,0x14,0x22,0x2f,0x79,0x21,0x00,0x00,0x08,0x0c,0x08,0x08,0x10,0x10,0x10,0x20,0x20,0x24,0x42,0x4f,0xf3,0x42,0x00,0x00 -+// 21433 厹 ; -+,0x01,0x01,0x1f,0x01,0x01,0x02,0x02,0x04,0x08,0x31,0x01,0x02,0x04,0x08,0x1f,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x11,0x11,0x0f,0x00,0x00,0x10,0x08,0xfc,0x08,0x00 -+// 21434 厺 ; -+,0x00,0x00,0x00,0x3f,0x01,0x02,0x04,0x09,0x11,0x61,0x02,0x04,0x08,0x1f,0x08,0x00,0x80,0x80,0x80,0xff,0x20,0x20,0x10,0x0c,0x87,0x02,0x20,0x10,0x78,0x8c,0x08,0x00 -+// 21435 去 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x3f,0x01,0x03,0x04,0x08,0x1f,0x08,0x00,0x80,0x80,0x80,0xfe,0x80,0x80,0x80,0x80,0xff,0x00,0x00,0x10,0x08,0xfc,0x08,0x00 -+// 21436 厼 ; -+,0x00,0x01,0x02,0x04,0x0f,0x04,0x00,0x00,0x04,0x06,0x0c,0x10,0x20,0x42,0x01,0x00,0x80,0x20,0x10,0x08,0xfc,0x08,0x80,0x80,0x90,0x88,0x8c,0x86,0x84,0x80,0x00,0x00 -+// 21437 厽 ; -+,0x01,0x01,0x02,0x04,0x08,0x3f,0x10,0x08,0x0c,0x08,0x14,0x12,0x2f,0x7a,0x00,0x00,0x00,0x80,0x00,0x10,0x08,0xfc,0x08,0x00,0x10,0x10,0x20,0x24,0x42,0xff,0x42,0x00 -+// 21438 厾 ; -+,0x00,0x3f,0x00,0x02,0x02,0x3f,0x02,0x02,0x7f,0x02,0x04,0x08,0x10,0x3f,0x10,0x00,0x00,0xf8,0x08,0x08,0x08,0xc8,0x08,0x08,0xe8,0x08,0x09,0x85,0x45,0xe3,0x41,0x00 -+// 21439 县 ; -+,0x00,0x07,0x04,0x07,0x04,0x04,0x07,0x04,0x04,0x7f,0x01,0x02,0x04,0x0f,0x04,0x00,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x20,0x10,0x08,0xfc,0x08,0x00 -+// 21440 叀 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x11,0x01,0x03,0x04,0x08,0x1f,0x00,0x80,0x80,0xff,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x04,0x80,0x08,0x04,0xfe,0x84,0x00 -+// 21441 叁 ; -+,0x01,0x02,0x04,0x0f,0x05,0x02,0x3f,0x04,0x08,0x17,0x60,0x07,0x00,0x00,0x1f,0x00,0x00,0x20,0x10,0xf8,0x10,0x02,0xff,0x10,0x0c,0xf7,0x02,0xf0,0x00,0x00,0xfc,0x00 -+// 21442 参 ; -+,0x02,0x06,0x08,0x1f,0x01,0x7f,0x02,0x04,0x19,0x66,0x18,0x03,0x0c,0x01,0x3e,0x00,0x00,0x10,0xf8,0x88,0x00,0xfe,0x20,0x90,0x0c,0x37,0xc2,0x0c,0x30,0xc0,0x00,0x00 -+// 21443 參 ; -+,0x00,0x01,0x07,0x04,0x09,0x1f,0x01,0x06,0x09,0x33,0x0c,0x01,0x06,0x08,0x03,0x1c,0x80,0x10,0xf8,0x10,0x24,0x7e,0xc4,0x30,0x8e,0x64,0xc0,0x90,0x38,0xe0,0x80,0x00 -+// 21444 叄 ; -+,0x02,0x02,0x04,0x0f,0x08,0x12,0x3f,0x01,0x06,0x18,0x6f,0x00,0x07,0x00,0x3f,0x00,0x00,0x20,0x10,0xf8,0x10,0x24,0x7e,0xc2,0x30,0x0c,0xf3,0x00,0xe0,0x04,0xfe,0x00 -+// 21445 叅 ; -+,0x01,0x02,0x0f,0x04,0x09,0x16,0x39,0x03,0x06,0x18,0x60,0x04,0x04,0x08,0x02,0x01,0x00,0x10,0xf8,0x10,0x22,0xbf,0xc2,0x20,0x98,0x87,0x80,0xc8,0xa6,0xa4,0x80,0x00 -+// 21446 叆 ; -+,0x00,0x01,0x7d,0x00,0x00,0x7d,0x10,0x11,0x10,0x28,0x24,0x7e,0x05,0x02,0x0c,0x03,0x1e,0xe4,0x46,0xa4,0xa8,0xfe,0x20,0xfe,0x40,0x7c,0xc8,0xa8,0x10,0x68,0xc7,0x02 -+// 21447 叇 ; -+,0x00,0x00,0x7d,0x01,0x00,0x7c,0x13,0x11,0x11,0x29,0x25,0x5f,0x65,0x02,0x04,0x00,0x10,0x10,0x7e,0x12,0x7f,0x12,0x7e,0x14,0x56,0x38,0x54,0x92,0x50,0xa0,0x7f,0x00 -+// 21448 又 ; -+,0x00,0x1f,0x08,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x01,0x06,0x18,0x60,0x00,0x00,0xfc,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0xc0,0xc0,0x20,0x18,0x07,0x02,0x00 -+// 21449 叉 ; -+,0x00,0x0f,0x04,0x05,0x04,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x06,0x18,0x60,0x00,0x00,0xfc,0x08,0x08,0x88,0xd0,0x90,0x20,0x20,0xc0,0xc0,0x20,0x18,0x07,0x02,0x00 -+// 21450 及 ; -+,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x05,0x05,0x04,0x08,0x08,0x10,0x21,0x46,0x18,0x00,0xf0,0x10,0x10,0x20,0x20,0x7c,0x28,0x08,0x90,0x90,0x60,0x90,0x0c,0x07,0x02 -+// 21451 友 ; -+,0x01,0x01,0x01,0x7f,0x01,0x01,0x03,0x02,0x03,0x04,0x04,0x08,0x10,0x21,0x46,0x18,0x00,0x00,0x00,0xff,0x00,0x00,0xf8,0x08,0x10,0x90,0x60,0x60,0x90,0x0c,0x07,0x02 -+// 21452 双 ; -+,0x00,0x3f,0x01,0x01,0x21,0x12,0x0a,0x04,0x06,0x0b,0x09,0x11,0x20,0x40,0x01,0x00,0x00,0x7e,0x42,0x42,0x42,0x24,0x24,0x24,0x28,0x10,0x90,0x28,0x44,0x83,0x02,0x00 -+// 21453 反 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x14,0x14,0x12,0x12,0x11,0x10,0x10,0x21,0x26,0x58,0x00,0x3c,0xc0,0x00,0x00,0xf8,0x08,0x08,0x10,0x10,0x20,0xc0,0xc0,0x30,0x0e,0x04,0x00 -+// 21454 収 ; -+,0x04,0x04,0x25,0x24,0x24,0x24,0x24,0x24,0x24,0x2c,0x74,0x24,0x04,0x07,0x04,0x00,0x00,0x00,0xfe,0x84,0x84,0x84,0x44,0x48,0x28,0x28,0x10,0x28,0xc4,0x03,0x00,0x00 -+// 21455 叏 ; -+,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x0f,0x04,0x04,0x02,0x01,0x06,0x18,0x60,0x80,0x80,0xf8,0x88,0x88,0xff,0x80,0x80,0xf8,0x10,0x10,0x20,0xc0,0x30,0x0e,0x04 -+// 21456 叐 ; -+,0x00,0x1f,0x01,0x01,0x7f,0x01,0x01,0x02,0x03,0x05,0x05,0x08,0x10,0x21,0x46,0x18,0x3c,0xc0,0x00,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0x10,0x90,0x60,0x9c,0x07,0x02 -+// 21457 发 ; -+,0x01,0x11,0x11,0x11,0x3f,0x12,0x02,0x03,0x06,0x05,0x05,0x08,0x10,0x20,0x43,0x0c,0x00,0x20,0x18,0x08,0xff,0x00,0x00,0xf0,0x10,0x10,0x10,0xa0,0x40,0xb0,0x0e,0x04 -+// 21458 叒 ; -+,0x00,0x0f,0x0c,0x03,0x00,0x0f,0x70,0x3f,0x01,0x32,0x0a,0x04,0x06,0x1b,0x61,0x00,0x00,0xf8,0x10,0x00,0xe0,0x18,0x04,0x3f,0x42,0x22,0x24,0x14,0x08,0x34,0xc3,0x00 -+// 21459 叓 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x00,0x1f,0x04,0x03,0x00,0x03,0x0c,0x70,0x80,0x80,0xff,0x80,0xfc,0x84,0x84,0xfc,0x80,0xfc,0x18,0x30,0xc0,0x30,0x0f,0x02 -+// 21460 叔 ; -+,0x04,0x04,0x04,0x07,0x04,0x04,0x7f,0x04,0x16,0x15,0x24,0x24,0x44,0x14,0x09,0x00,0x00,0x00,0x7e,0x44,0x44,0x44,0xa4,0x24,0x28,0x18,0x90,0xa8,0x44,0x83,0x02,0x00 -+// 21461 叕 ; -+,0x00,0x3f,0x12,0x0a,0x04,0x0a,0x11,0x7e,0x22,0x12,0x0c,0x06,0x0b,0x11,0x61,0x00,0x00,0x7e,0x24,0x18,0x14,0x22,0x40,0xfe,0x44,0x44,0x28,0x10,0x18,0xa4,0x47,0x82 -+// 21462 取 ; -+,0x00,0x7f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x13,0x1d,0x61,0x01,0x01,0x01,0x00,0xc0,0x3f,0x22,0x22,0x22,0x22,0x14,0x14,0x48,0x88,0x14,0x23,0x42,0x00,0x00 -+// 21463 受 ; -+,0x00,0x3f,0x11,0x08,0x04,0x3f,0x20,0x40,0x0f,0x04,0x02,0x01,0x00,0x03,0x0c,0x30,0x7c,0xc8,0x0c,0xc8,0x90,0xff,0x02,0x04,0xf0,0x10,0x20,0x20,0xc0,0x30,0x0e,0x04 -+// 21464 变 ; -+,0x01,0x00,0x3f,0x01,0x09,0x0d,0x11,0x21,0x4f,0x02,0x02,0x01,0x00,0x03,0x0c,0x70,0x00,0xc0,0xff,0x20,0x28,0x26,0x23,0x22,0xf8,0x10,0x10,0x20,0xc0,0x30,0x0f,0x04 -+// 21465 叙 ; -+,0x04,0x06,0x09,0x08,0x10,0x3f,0x44,0x04,0x3f,0x04,0x25,0x34,0x24,0x5c,0x08,0x01,0x00,0x00,0x3f,0xe2,0xa2,0x22,0x22,0x22,0x94,0x14,0x08,0x98,0xa4,0x43,0x82,0x00 -+// 21466 叚 ; -+,0x00,0x3f,0x21,0x21,0x21,0x3f,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x20,0x21,0x00,0x7e,0x02,0x02,0x02,0x7e,0x00,0x7e,0x02,0x44,0x28,0x10,0x28,0x44,0x83,0x02 -+// 21467 叛 ; -+,0x08,0x0a,0x4b,0x2a,0x2c,0x7e,0x08,0x08,0x7f,0x08,0x08,0x11,0x11,0x22,0x44,0x01,0x00,0x1e,0xe0,0x80,0x80,0xfe,0xc4,0xc4,0xa4,0xa8,0x98,0x10,0x28,0x47,0x82,0x00 -+// 21468 叜 ; -+,0x00,0x1f,0x20,0x24,0x04,0x08,0x11,0x06,0x1f,0x24,0x02,0x01,0x00,0x03,0x0c,0x30,0x80,0xff,0x82,0x90,0xb8,0xc0,0x30,0x08,0xf6,0x10,0x20,0x40,0x80,0x60,0x1c,0x08 -+// 21469 叝 ; -+,0x08,0x08,0x08,0x3f,0x08,0x08,0x08,0x7f,0x08,0x10,0x10,0x22,0x7f,0x21,0x00,0x00,0x00,0x7e,0x42,0x42,0x4a,0x44,0x5e,0x62,0x62,0x54,0x54,0x48,0x4c,0x53,0x62,0x40 -+// 21470 叞 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x20,0x2f,0x20,0x3f,0x22,0x2b,0x2a,0x52,0x6a,0x44,0x00,0x00,0xbe,0xa2,0xa2,0xa2,0x22,0x94,0x14,0xd4,0x08,0x08,0x88,0x94,0x23,0x42,0x00 -+// 21471 叟 ; -+,0x06,0x18,0x10,0x1e,0x10,0x10,0x1f,0x00,0x1f,0x04,0x02,0x01,0x00,0x03,0x0c,0x30,0x80,0xbc,0x84,0xbc,0x84,0x84,0xfc,0x80,0xf8,0x08,0x10,0x20,0xc0,0x30,0x0e,0x04 -+// 21472 叠 ; -+,0x0f,0x02,0x01,0x00,0x1f,0x0a,0x04,0x0a,0x3f,0x20,0x07,0x04,0x07,0x04,0x04,0x3f,0xf8,0x10,0x20,0xc0,0x3e,0x24,0x18,0x24,0xff,0x01,0xf8,0x08,0x88,0x78,0x08,0xff -+// 21473 叡 ; -+,0x04,0x07,0x04,0x7f,0x40,0x1f,0x11,0x6a,0x1f,0x31,0x5f,0x11,0x1f,0x11,0x1f,0x11,0x00,0x80,0x7e,0xc4,0xa4,0x24,0x24,0xa8,0x68,0x90,0x10,0x28,0x24,0x43,0x82,0x00 -+// 21474 叢 ; -+,0x09,0x05,0x7f,0x04,0x1f,0x00,0x1f,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x01,0x24,0x28,0xff,0x10,0xfe,0x80,0xfc,0x80,0xff,0x44,0x44,0x28,0x90,0x2c,0xc7,0x02 -+// 21475 口 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x00,0x00 -+// 21476 古 ; -+,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21477 句 ; -+,0x04,0x04,0x07,0x08,0x08,0x10,0x27,0x44,0x04,0x04,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xe2,0x22,0x22,0x22,0xe2,0x22,0x02,0x22,0x14,0x08 -+// 21478 另 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x84,0x80,0xfe,0x82,0x02,0x02,0x02,0x02,0x14,0x08 -+// 21479 叧 ; -+,0x00,0x07,0x04,0x04,0x04,0x07,0x00,0x1f,0x00,0x00,0x01,0x01,0x02,0x0c,0x30,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0xfe,0x82,0x82,0x02,0x02,0x02,0x24,0x18,0x00 -+// 21480 叨 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x01,0x02,0x04,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x02,0x1e,0x04,0x00 -+// 21481 叩 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x4e,0x44,0x40,0x40,0x40,0x00 -+// 21482 只 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x02,0x03,0x06,0x0c,0x18,0x20,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x04,0x10,0x08,0x04,0x06,0x03,0x02,0x00 -+// 21483 叫 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x00,0x00,0x02,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x4e,0xf2,0x42,0x02,0x02,0x02,0x02,0x02 -+// 21484 召 ; -+,0x00,0x1f,0x00,0x00,0x01,0x02,0x04,0x18,0x07,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x00,0xfe,0x82,0x82,0x02,0x02,0x3c,0x08,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 21485 叭 ; -+,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x44,0x45,0x7d,0x45,0x02,0x02,0x04,0x08,0x10,0x20,0x30,0xa0,0xa0,0xa0,0xa0,0x90,0x90,0x10,0x08,0x08,0x04,0x04,0x03,0x02,0x00 -+// 21486 叮 ; -+,0x00,0x3f,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 21487 可 ; -+,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x04,0x04,0xc4,0x44,0x44,0x44,0x44,0xc4,0x44,0x04,0x24,0x14,0x08,0x00 -+// 21488 台 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x1f,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0xc0,0x00,0x08,0x04,0xfe,0x84,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21489 叱 ; -+,0x00,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x23,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x40,0x40,0x42,0x47,0x4c,0x58,0x60,0xc0,0x40,0x40,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 21490 史 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x04,0x02,0x01,0x02,0x04,0x18,0x60,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x00,0x80,0x70,0x0f,0x02 -+// 21491 右 ; -+,0x01,0x01,0x01,0x7f,0x02,0x02,0x04,0x0c,0x17,0x24,0x44,0x04,0x04,0x07,0x04,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21492 叴 ; -+,0x01,0x01,0x3f,0x02,0x02,0x04,0x08,0x10,0x2f,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0xf0,0x10,0x11,0x11,0x0f,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21493 叵 ; -+,0x00,0x3f,0x20,0x20,0x23,0x22,0x22,0x22,0x22,0x23,0x22,0x20,0x20,0x3f,0x20,0x00,0x00,0xfe,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08,0x00,0x00,0xff,0x00,0x00 -+// 21494 叶 ; -+,0x00,0x00,0x7c,0x44,0x44,0x44,0x47,0x44,0x44,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 21495 号 ; -+,0x0f,0x08,0x08,0x08,0x0f,0x00,0x7f,0x04,0x04,0x0f,0x04,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0x88,0x50,0x20 -+// 21496 司 ; -+,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0xf2,0x02,0x02,0xe2,0x22,0x22,0xe2,0x22,0x02,0x0a,0x04,0x00 -+// 21497 叹 ; -+,0x00,0x7f,0x45,0x45,0x45,0x44,0x44,0x44,0x44,0x7c,0x40,0x40,0x01,0x06,0x18,0x00,0x00,0xfe,0x04,0x04,0x04,0x88,0x88,0x50,0x50,0x20,0x50,0x98,0x0c,0x07,0x02,0x00 -+// 21498 叺 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x21,0x02,0x04,0x18,0x00,0x40,0x20,0x20,0x20,0x20,0x30,0x10,0x30,0x50,0x48,0x88,0x04,0x04,0x03,0x02,0x00 -+// 21499 叻 ; -+,0x00,0x00,0x3e,0x22,0x23,0x22,0x22,0x22,0x22,0x3e,0x22,0x22,0x00,0x01,0x02,0x00,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x82,0x14,0x08,0x00 -+// 21500 叼 ; -+,0x00,0x01,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x0a,0x12,0x12,0x22,0x42,0x82,0x02,0x02,0x02,0x1e,0x04,0x00 -+// 21501 叽 ; -+,0x00,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x3c,0x24,0x21,0x01,0x02,0x04,0x08,0x00,0x00,0xf0,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x10,0x11,0x11,0x0f,0x00,0x00 -+// 21502 叾 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0xfc,0x18,0x60,0x80,0x80,0x80,0x80,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 21503 叿 ; -+,0x00,0x01,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x22,0x00,0x00,0x03,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 21504 吀 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x23,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x00,0x00,0x04,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 21505 吁 ; -+,0x00,0x3f,0x22,0x22,0x22,0x22,0x23,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 21506 吂 ; -+,0x01,0x00,0x7f,0x08,0x08,0x08,0x0f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0xc0,0xff,0x00,0x00,0x00,0xfc,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21507 吃 ; -+,0x00,0x00,0x3c,0x25,0x25,0x26,0x25,0x24,0x24,0x3c,0x24,0x20,0x01,0x01,0x00,0x00,0x80,0xc0,0x80,0xff,0x00,0x00,0xf8,0x08,0x10,0x20,0x40,0x80,0x01,0x01,0xff,0x00 -+// 21508 各 ; -+,0x02,0x02,0x03,0x06,0x09,0x31,0x00,0x03,0x0c,0x77,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0xf8,0x10,0x10,0x20,0xc0,0x30,0x0f,0xfa,0x08,0x08,0x08,0x08,0xf8,0x00 -+// 21509 吅 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x40,0x00 -+// 21510 吆 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x25,0x27,0x24,0x3c,0x24,0x20,0x01,0x00,0x00,0x00,0x20,0x30,0x20,0x40,0x44,0x86,0x04,0xf8,0x10,0x20,0x44,0x82,0xff,0x82,0x00,0x00 -+// 21511 吇 ; -+,0x00,0x01,0x3e,0x22,0x22,0x22,0x22,0x23,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 21512 合 ; -+,0x00,0x01,0x02,0x04,0x08,0x10,0x6f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x40,0x20,0x10,0x0c,0x17,0xfa,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21513 吉 ; -+,0x00,0x00,0x7f,0x00,0x00,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x82,0xff,0x80,0x80,0x84,0xfe,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21514 吊 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x88,0x80,0xfe,0x82,0x82,0x82,0x82,0x8a,0x84,0x80 -+// 21515 吋 ; -+,0x00,0x00,0x3e,0x22,0x23,0x22,0x23,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x88,0x48,0x48,0x08,0x08,0x08,0x08,0x28,0x10 -+// 21516 同 ; -+,0x00,0x3f,0x20,0x20,0x2f,0x20,0x20,0x27,0x24,0x24,0x24,0x27,0x24,0x20,0x20,0x20,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04 -+// 21517 名 ; -+,0x02,0x02,0x03,0x04,0x08,0x12,0x21,0x00,0x03,0x0f,0x74,0x04,0x04,0x07,0x04,0x00,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0x80,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21518 后 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x0b,0x12,0x12,0x12,0x23,0x22,0x42,0x00,0x3e,0xc0,0x00,0x00,0xfe,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x00 -+// 21519 吏 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x04,0x02,0x01,0x02,0x04,0x08,0x30,0x80,0x80,0xff,0x80,0xfc,0x84,0x84,0xfc,0x84,0x80,0x80,0x00,0xc0,0x30,0x0e,0x04 -+// 21520 吐 ; -+,0x00,0x00,0x00,0x3e,0x22,0x23,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x23,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 21521 向 ; -+,0x01,0x02,0x1f,0x10,0x10,0x13,0x12,0x12,0x12,0x12,0x13,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0xfe,0x02,0x02,0xf2,0x12,0x12,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04,0x00 -+// 21522 吒 ; -+,0x00,0x00,0x7d,0x44,0x44,0x44,0x44,0x47,0x44,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0x3e,0xe0,0x20,0x20,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 21523 吓 ; -+,0x00,0x3f,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x30,0x28,0x26,0x24,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 21524 吔 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x27,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x10,0x90,0x92,0x97,0x9a,0xf2,0x92,0x92,0x92,0x9a,0x94,0x90,0x82,0x83,0x7e,0x00 -+// 21525 吕 ; -+,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21526 吖 ; -+,0x01,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x00,0x00,0x02,0x83,0x44,0x28,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 21527 吗 ; -+,0x00,0x01,0x3c,0x24,0x24,0x24,0x24,0x25,0x24,0x3c,0x25,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x84,0x84,0x84,0x84,0xfe,0x82,0x02,0xfa,0x02,0x02,0x02,0x0a,0x04 -+// 21528 吘 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x26,0x27,0x24,0x3c,0x24,0x20,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0xfe,0x90,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 21529 吙 ; -+,0x00,0x00,0x3c,0x24,0x25,0x25,0x25,0x26,0x24,0x3c,0x24,0x00,0x01,0x01,0x02,0x04,0x20,0x20,0x20,0x22,0x23,0x24,0x28,0x50,0x50,0x50,0x88,0x88,0x04,0x07,0x02,0x00 -+// 21530 吚 ; -+,0x00,0x3d,0x24,0x24,0x27,0x24,0x24,0x24,0x3f,0x24,0x20,0x01,0x01,0x02,0x04,0x08,0x00,0xfc,0x44,0x44,0xff,0x44,0x44,0x44,0xfc,0x84,0x80,0x00,0x00,0x00,0x00,0x00 -+// 21531 君 ; -+,0x00,0x1f,0x01,0x01,0x7f,0x02,0x02,0x1f,0x02,0x04,0x0f,0x0c,0x14,0x24,0x47,0x04,0x00,0xfc,0x04,0x04,0xff,0x04,0x04,0xfc,0x04,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 21532 吜 ; -+,0x00,0x01,0x7c,0x44,0x44,0x44,0x44,0x45,0x44,0x7c,0x44,0x00,0x00,0x07,0x00,0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0xfc,0x88,0x88,0x88,0x88,0x88,0xff,0x00,0x00 -+// 21533 吝 ; -+,0x01,0x00,0x3f,0x04,0x02,0x01,0x00,0x03,0x1c,0x67,0x04,0x04,0x04,0x04,0x07,0x04,0x00,0x80,0xff,0x10,0x10,0x20,0xc0,0x30,0x0f,0xfa,0x08,0x08,0x08,0x08,0xf8,0x08 -+// 21534 吞 ; -+,0x00,0x1f,0x01,0x01,0x7f,0x02,0x04,0x08,0x10,0x2f,0x48,0x08,0x08,0x0f,0x08,0x00,0x00,0xfc,0x00,0x00,0xff,0x40,0x20,0x10,0x0e,0xfc,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21535 吟 ; -+,0x00,0x7c,0x44,0x44,0x44,0x45,0x46,0x44,0x7d,0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x50,0x48,0x86,0x23,0x11,0x10,0xfe,0x04,0x04,0x08,0x08,0x10,0x10,0x20 -+// 21536 吠 ; -+,0x00,0x78,0x48,0x48,0x48,0x4b,0x48,0x48,0x48,0x78,0x48,0x00,0x01,0x02,0x04,0x00,0x20,0x28,0x24,0x24,0x20,0xff,0x20,0x20,0x50,0x50,0x90,0x88,0x0c,0x07,0x02,0x00 -+// 21537 吡 ; -+,0x01,0x01,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x03,0x01,0x00,0x10,0x10,0x10,0x10,0x10,0x13,0xdc,0x10,0x10,0x10,0x10,0x11,0x51,0x91,0x0f,0x00 -+// 21538 吢 ; -+,0x00,0x00,0x04,0x14,0x14,0x14,0x24,0x03,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x80,0x44,0x42,0x03,0x0a,0x08,0xf0,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21539 吣 ; -+,0x00,0x00,0x78,0x48,0x48,0x48,0x4a,0x4a,0x4a,0x4a,0x7a,0x48,0x40,0x00,0x00,0x00,0x40,0x30,0x18,0x10,0x40,0x40,0x44,0x42,0x43,0x42,0x40,0x40,0x44,0x44,0x3c,0x00 -+// 21540 吤 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x26,0x24,0x24,0x3c,0x24,0x00,0x01,0x01,0x02,0x04,0x20,0x20,0x20,0x50,0x8c,0x07,0x8a,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 21541 吥 ; -+,0x00,0x03,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x3d,0x22,0x24,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x68,0x64,0xa2,0x23,0x22,0x20,0x20,0x20,0x20,0x20 -+// 21542 否 ; -+,0x00,0x3f,0x00,0x00,0x01,0x06,0x0c,0x30,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0xfe,0x40,0xc0,0x90,0x8c,0x86,0x82,0x80,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21543 吧 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x00,0x00,0xff,0x11,0x11,0x11,0x11,0xff,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0xff,0x00 -+// 21544 吨 ; -+,0x00,0x00,0x7c,0x47,0x44,0x45,0x45,0x45,0x45,0x7d,0x45,0x40,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xfe,0x20,0x24,0x24,0x24,0x24,0xfc,0x24,0x20,0x21,0x21,0x1f,0x00 -+// 21545 吩 ; -+,0x00,0x00,0x7c,0x44,0x45,0x45,0x46,0x45,0x44,0x7c,0x44,0x00,0x00,0x01,0x02,0x04,0x10,0x90,0xd0,0x88,0x0c,0x07,0x02,0xfc,0x44,0x44,0x44,0x84,0x84,0x04,0x14,0x08 -+// 21546 吪 ; -+,0x00,0x00,0x78,0x48,0x49,0x49,0x4a,0x4a,0x4c,0x78,0x48,0x40,0x00,0x00,0x00,0x00,0x90,0xd0,0x92,0x93,0x96,0x94,0x98,0xb0,0xd0,0x90,0x90,0x90,0x91,0x91,0x8f,0x00 -+// 21547 含 ; -+,0x00,0x00,0x01,0x03,0x04,0x18,0x67,0x00,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0x40,0x20,0x98,0x8f,0xf4,0x10,0x20,0x40,0xf8,0x08,0x08,0xf8,0x08,0x00 -+// 21548 听 ; -+,0x00,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x3c,0x24,0x21,0x01,0x02,0x02,0x04,0x08,0x06,0xf8,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08,0x00 -+// 21549 吭 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x44,0x44,0x7c,0x44,0x01,0x01,0x02,0x02,0x04,0x40,0x30,0x20,0xff,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x09,0x09,0x09,0x07,0x00 -+// 21550 吮 ; -+,0x00,0x00,0x7c,0x44,0x45,0x47,0x44,0x44,0x7c,0x44,0x40,0x01,0x01,0x02,0x04,0x08,0x20,0x30,0x40,0x84,0x3e,0xe2,0x00,0x90,0x90,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 21551 启 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0b,0x0a,0x12,0x12,0x23,0x42,0x00,0x80,0x60,0x40,0xfe,0x02,0x02,0xfe,0x00,0x00,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21552 吰 ; -+,0x00,0x00,0x3c,0x24,0x27,0x24,0x24,0x24,0x24,0x3d,0x25,0x22,0x04,0x09,0x10,0x00,0x40,0x60,0x40,0x42,0xff,0x40,0x50,0x98,0x90,0x20,0x24,0x42,0x9f,0xf2,0x80,0x00 -+// 21553 吱 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x45,0x44,0x44,0x44,0x7c,0x44,0x00,0x00,0x01,0x06,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x84,0x84,0x48,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 21554 吲 ; -+,0x00,0x03,0x3c,0x24,0x25,0x25,0x25,0x25,0x3d,0x24,0x20,0x00,0x00,0x01,0x00,0x00,0x00,0xe2,0x22,0x22,0xe2,0x22,0x02,0x02,0xe2,0x22,0x22,0x22,0x22,0x42,0x82,0x00 -+// 21555 吳 ; -+,0x00,0x07,0x04,0x14,0x17,0x10,0x1f,0x00,0x00,0x7f,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x84,0x84,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 21556 吴 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x1f,0x00,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0xf8,0x08,0x08,0x08,0xf8,0x00,0xfc,0x80,0x80,0xff,0x40,0x20,0x18,0x0e,0x04 -+// 21557 吵 ; -+,0x00,0x78,0x48,0x49,0x49,0x49,0x4a,0x4c,0x48,0x78,0x48,0x00,0x00,0x00,0x03,0x0c,0x20,0x20,0x20,0x28,0xa4,0x23,0x22,0x24,0x26,0x24,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 21558 吶 ; -+,0x00,0x00,0x00,0x7c,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x01,0x01,0x01,0x00,0x40,0x30,0x10,0x10,0xff,0x11,0x11,0x11,0x29,0x47,0x85,0x01,0x01,0x05,0x02,0x00 -+// 21559 吷 ; -+,0x00,0x00,0x7c,0x45,0x44,0x44,0x44,0x44,0x47,0x7c,0x44,0x01,0x01,0x02,0x04,0x08,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0xff,0xa0,0xa0,0x10,0x08,0x0c,0x07,0x02 -+// 21560 吸 ; -+,0x00,0x03,0x78,0x48,0x48,0x49,0x49,0x49,0x79,0x4a,0x42,0x04,0x04,0x09,0x16,0x00,0x00,0xf8,0x88,0x88,0x88,0x4c,0x44,0x44,0x48,0x28,0x10,0x18,0x6c,0x87,0x02,0x00 -+// 21561 吹 ; -+,0x00,0x00,0x78,0x49,0x49,0x4a,0x4c,0x48,0x48,0x78,0x48,0x40,0x00,0x01,0x02,0x04,0x80,0xc0,0x82,0xff,0x22,0x24,0x28,0x20,0x20,0x50,0x50,0x88,0x8c,0x06,0x07,0x02 -+// 21562 吺 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x25,0x26,0x24,0x3c,0x24,0x00,0x00,0x01,0x06,0x00,0x00,0x78,0x48,0x48,0x88,0x8f,0x00,0xfc,0x84,0x48,0x50,0x20,0x50,0x8e,0x04,0x00 -+// 21563 吻 ; -+,0x00,0x00,0x3c,0x24,0x25,0x25,0x26,0x24,0x24,0x3c,0x21,0x02,0x00,0x00,0x03,0x00,0x80,0xc0,0x80,0xff,0x29,0x29,0x49,0x49,0x91,0x91,0x21,0x21,0x41,0x82,0x0a,0x04 -+// 21564 吼 ; -+,0x00,0x03,0x78,0x48,0x48,0x48,0x48,0x4b,0x48,0x78,0x48,0x40,0x00,0x00,0x02,0x01,0x08,0xe8,0x48,0x88,0x88,0x88,0xe8,0x88,0x88,0x88,0x88,0x88,0x89,0x89,0x87,0x00 -+// 21565 吽 ; -+,0x00,0x01,0x3d,0x25,0x25,0x26,0x26,0x24,0x27,0x3c,0x24,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xa0,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 21566 吾 ; -+,0x3f,0x01,0x01,0x1f,0x02,0x02,0x02,0x7f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0xfc,0x00,0x00,0xf8,0x08,0x08,0x08,0xfe,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08 -+// 21567 吿 ; -+,0x04,0x06,0x04,0x0f,0x08,0x10,0x7f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x40,0x40,0x40,0xfe,0x40,0x40,0xff,0x40,0x40,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21568 呀 ; -+,0x00,0x01,0x3c,0x24,0x24,0x24,0x25,0x24,0x3c,0x24,0x20,0x00,0x01,0x02,0x04,0x00,0x00,0xfe,0x08,0x88,0x88,0x88,0xff,0x18,0x28,0x28,0x48,0x88,0x08,0x28,0x10,0x00 -+// 21569 呁 ; -+,0x00,0x00,0x7c,0x44,0x44,0x45,0x45,0x46,0x44,0x7c,0x45,0x40,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0xfe,0x82,0x42,0x32,0x22,0x02,0x3a,0xc2,0x02,0x02,0x14,0x08,0x00 -+// 21570 呂 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x01,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x80,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21571 呃 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x42,0x02,0x02,0x04,0x04,0x08,0x02,0xff,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x54,0x48,0x40,0x41,0x41,0x3f,0x00 -+// 21572 呄 ; -+,0x1f,0x02,0x02,0x04,0x04,0x08,0x10,0x3f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0xf8,0x08,0x1c,0x04,0x04,0x94,0x88,0xff,0x80,0x80,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 21573 呅 ; -+,0x00,0x00,0x3c,0x27,0x24,0x24,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x01,0x02,0x04,0x40,0x30,0x22,0xff,0x88,0x88,0x88,0x50,0x50,0x50,0x20,0x50,0x88,0x07,0x02,0x00 -+// 21574 呆 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x88,0x82,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 21575 呇 ; -+,0x00,0x00,0x3e,0x02,0x04,0x04,0x08,0x12,0x61,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x84,0x8e,0xd8,0xa0,0x90,0x8c,0x87,0x02,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21576 呈 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x3f,0x00,0x00,0x0f,0x00,0x00,0x00,0x7f,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x00,0xfe,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 21577 呉 ; -+,0x00,0x03,0x02,0x12,0x12,0x13,0x10,0x1f,0x00,0x00,0x3f,0x02,0x07,0x0c,0x18,0x20,0x00,0xf8,0x08,0x08,0x08,0xf8,0x00,0xfc,0x04,0x04,0xff,0x20,0x18,0x0c,0x06,0x04 -+// 21578 告 ; -+,0x08,0x0c,0x08,0x0f,0x10,0x20,0x00,0x7f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21579 呋 ; -+,0x00,0x00,0x7c,0x45,0x44,0x44,0x44,0x47,0x7c,0x44,0x40,0x00,0x01,0x02,0x04,0x08,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x50,0x50,0x90,0x88,0x0c,0x06,0x07,0x02 -+// 21580 呌 ; -+,0x00,0x01,0x3c,0x24,0x24,0x25,0x24,0x24,0x24,0x3c,0x23,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x68,0x48,0x08,0x88,0x48,0x4f,0x78,0x88,0x08,0x08,0x08,0x08,0x00 -+// 21581 呍 ; -+,0x00,0x00,0x7d,0x44,0x44,0x44,0x47,0x44,0x44,0x7c,0x44,0x40,0x01,0x03,0x01,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xfe,0x40,0x40,0x80,0x88,0x84,0x02,0xff,0x02,0x00 -+// 21582 呎 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x42,0x02,0x04,0x08,0x10,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x24,0x20,0x20,0x10,0x10,0x08,0x0c,0x07,0x02,0x00 -+// 21583 呏 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x4f,0x48,0x48,0x78,0x49,0x41,0x02,0x04,0x08,0x00,0x08,0x68,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08,0x00 -+// 21584 呐 ; -+,0x00,0x00,0x7c,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x01,0x00,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x32,0x4a,0x4a,0x82,0x02,0x02,0x0a,0x04,0x00 -+// 21585 呑 ; -+,0x00,0x0f,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x67,0x04,0x04,0x04,0x07,0x04,0x00,0x18,0xe0,0x80,0x80,0xfe,0x20,0x10,0x0c,0x07,0xfa,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21586 呒 ; -+,0x00,0x03,0x7c,0x44,0x44,0x44,0x47,0x44,0x7c,0x44,0x40,0x01,0x01,0x02,0x04,0x08,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x50,0x50,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 21587 呓 ; -+,0x00,0x00,0x7f,0x44,0x44,0x44,0x45,0x44,0x44,0x7c,0x44,0x40,0x01,0x02,0x01,0x00,0x88,0x88,0xff,0x88,0x88,0x00,0xfc,0x08,0x10,0x20,0x40,0x82,0x02,0x03,0xfe,0x00 -+// 21588 呔 ; -+,0x00,0x00,0x7c,0x44,0x47,0x44,0x44,0x44,0x44,0x7c,0x44,0x40,0x01,0x02,0x04,0x08,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x50,0x50,0x88,0xc8,0x24,0x26,0x03,0x02 -+// 21589 呕 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0x04,0x06,0x44,0x28,0x28,0x10,0x18,0x24,0x22,0x43,0x82,0x00,0xff,0x00 -+// 21590 呖 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x02,0x02,0x04,0x09,0x00,0x00,0xff,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x8a,0x04,0x00 -+// 21591 呗 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x00,0x00,0x00,0x01,0x02,0x00,0xfc,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x50,0x48,0x84,0x03,0x02 -+// 21592 员 ; -+,0x07,0x04,0x04,0x07,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x09,0x01,0x02,0x04,0x18,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x04,0x84,0x84,0x84,0x84,0x44,0x20,0x18,0x0c,0x08 -+// 21593 呙 ; -+,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x1f,0x10,0x10,0x11,0x12,0x14,0x18,0x10,0x10,0xfc,0x04,0x04,0x04,0xfc,0x80,0x80,0xfe,0x82,0x82,0x42,0x32,0x1a,0x12,0x0a,0x04 -+// 21594 呚 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x23,0x22,0x3e,0x22,0x20,0x00,0x00,0x01,0x02,0x40,0x60,0x40,0x80,0xfe,0x88,0x88,0x48,0x48,0x50,0x20,0x30,0x48,0x8c,0x07,0x02 -+// 21595 呛 ; -+,0x00,0x00,0x7c,0x44,0x44,0x45,0x47,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x00,0x00,0x20,0x20,0x20,0x50,0x88,0x07,0xfa,0x08,0x08,0x08,0x28,0x10,0x02,0x02,0xfe,0x00 -+// 21596 呜 ; -+,0x00,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x40,0x07,0x00,0x00,0x00,0x00,0x40,0x80,0xfc,0x04,0x04,0x04,0x1c,0x08,0xfe,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 21597 呝 ; -+,0x00,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x02,0x02,0x04,0x08,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xfc,0x08,0x10,0x20,0x42,0x82,0x83,0x7e,0x00 -+// 21598 呞 ; -+,0x00,0x01,0x7c,0x45,0x44,0x44,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x00,0x00,0x00,0x00,0xfe,0x02,0xfa,0x02,0x02,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0x02,0x0a,0x04 -+// 21599 呟 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x45,0x44,0x7c,0x44,0x00,0x00,0x01,0x00,0x00,0x40,0x30,0x20,0xff,0x20,0x44,0x86,0xfc,0x88,0x10,0x20,0x44,0x82,0xff,0x82,0x00 -+// 21600 呠 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x44,0x44,0x7d,0x45,0x42,0x04,0x08,0x00,0x00,0x20,0x20,0x20,0xff,0x20,0x70,0x70,0xa8,0xa8,0x24,0x22,0xfd,0x20,0x20,0x20,0x00 -+// 21601 呡 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x03,0x01,0x00,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x08,0x29,0x45,0x83,0x00 -+// 21602 呢 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x02,0x02,0x04,0x08,0x00,0xfe,0x02,0x02,0xfe,0x02,0x40,0x44,0x4e,0x70,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 21603 呣 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x47,0x45,0x45,0x7d,0x45,0x01,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x44,0x34,0x24,0xff,0x04,0x44,0x34,0x24,0xff,0x04,0x04,0x14,0x08 -+// 21604 呤 ; -+,0x00,0x00,0x7c,0x44,0x44,0x45,0x46,0x44,0x45,0x7c,0x44,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x50,0x48,0xa4,0x17,0x12,0x00,0xfc,0x04,0x08,0x90,0x60,0x20,0x30,0x20 -+// 21605 呥 ; -+,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x4b,0x4a,0x4a,0x7f,0x4a,0x42,0x02,0x02,0x02,0x00,0x20,0x20,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 21606 呦 ; -+,0x00,0x01,0x79,0x49,0x4a,0x4c,0x4f,0x48,0x49,0x7a,0x45,0x0e,0x04,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x3f,0x49,0x89,0x89,0x09,0x91,0xd1,0xa1,0x21,0x47,0x42,0x80 -+// 21607 呧 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x0e,0xf0,0x10,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x08,0x29,0x45,0xa3,0x19,0x10 -+// 21608 周 ; -+,0x00,0x0f,0x08,0x09,0x08,0x08,0x0b,0x08,0x09,0x09,0x09,0x09,0x11,0x10,0x20,0x40,0x00,0xfe,0x42,0xf2,0x42,0x42,0xfa,0x02,0xf2,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04 -+// 21609 呩 ; -+,0x00,0x7d,0x44,0x44,0x44,0x47,0x44,0x45,0x7d,0x45,0x42,0x02,0x04,0x08,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x20,0x20,0xa8,0x24,0x22,0x23,0x22,0x20,0xa0,0x40 -+// 21610 呪 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x44,0x7c,0x44,0x40,0x01,0x02,0x04,0x08,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x4a,0x48,0x48,0x88,0x88,0x09,0x09,0x07,0x00 -+// 21611 呫 ; -+,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x44,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x20,0x20,0x20,0x22,0x3f,0x20,0x20,0x20,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21612 呬 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x41,0x01,0x01,0x01,0x00,0x00,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4e,0x42,0x82,0x02,0xfe,0x02,0x00,0x00 -+// 21613 呭 ; -+,0x00,0x01,0x79,0x49,0x49,0x4f,0x49,0x49,0x49,0x79,0x49,0x01,0x01,0x01,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x3c,0x00,0x00,0xff,0x00,0x00 -+// 21614 呮 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x44,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x04,0x90,0xc8,0x84,0x06,0x03,0x02,0x00 -+// 21615 呯 ; -+,0x00,0x01,0x7c,0x45,0x44,0x44,0x44,0x44,0x47,0x7c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x12,0x13,0x92,0xd4,0x94,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 21616 呰 ; -+,0x04,0x04,0x04,0x27,0x24,0x24,0x25,0x2e,0x70,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x20,0x20,0x26,0xb8,0x20,0x21,0xa1,0x1f,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08 -+// 21617 呱 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x21,0x02,0x02,0x04,0x18,0x00,0x0e,0xf0,0x50,0x50,0x50,0x48,0x48,0x48,0x48,0x44,0x44,0x54,0x5a,0xeb,0x42,0x00 -+// 21618 呲 ; -+,0x00,0x00,0x78,0x48,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x4a,0x02,0x07,0x00,0x00,0x08,0x48,0x48,0x48,0x4a,0x4b,0x7c,0x48,0x48,0x48,0x48,0x48,0xf9,0x09,0x07,0x00 -+// 21619 味 ; -+,0x00,0x04,0x3e,0x25,0x24,0x24,0x24,0x27,0x24,0x24,0x24,0x3d,0x22,0x04,0x00,0x00,0x20,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x20,0x70,0xa8,0x28,0x27,0x22,0x20,0x20 -+// 21620 呴 ; -+,0x00,0x00,0x7c,0x44,0x45,0x46,0x44,0x44,0x44,0x44,0x7c,0x44,0x00,0x00,0x00,0x00,0x40,0x40,0xff,0x81,0x01,0xf9,0x89,0x89,0x89,0x89,0x89,0xf9,0x01,0x01,0x05,0x02 -+// 21621 呵 ; -+,0x00,0x03,0x7c,0x44,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x40,0x00,0x00,0x00,0x00,0x00,0xff,0x02,0x02,0xf2,0x12,0x12,0x12,0x12,0xf2,0x12,0x02,0x02,0x12,0x0a,0x04 -+// 21622 呶 ; -+,0x01,0x01,0x79,0x49,0x4f,0x4a,0x4a,0x4a,0x4c,0x7a,0x49,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x3e,0x22,0xe2,0x54,0x54,0x54,0x94,0x88,0x08,0x88,0xd4,0xa3,0x42,0x80 -+// 21623 呷 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x10,0x10,0x10,0x10,0x10,0x10 -+// 21624 呸 ; -+,0x00,0x03,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x3d,0x22,0x04,0x00,0x00,0x07,0x00,0x00,0xff,0x10,0x10,0x30,0x38,0x54,0x52,0x93,0x11,0x10,0x10,0x10,0x10,0xff,0x00 -+// 21625 呹 ; -+,0x00,0x01,0x7d,0x45,0x45,0x46,0x44,0x47,0x44,0x7c,0x44,0x40,0x00,0x01,0x02,0x04,0x20,0x20,0xa0,0x24,0xfe,0x20,0x20,0xff,0x20,0x50,0x50,0x88,0x8c,0x07,0x02,0x00 -+// 21626 呺 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x44,0x47,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0xff,0x40,0x40,0xfe,0x42,0x02,0x02,0x14,0x08 -+// 21627 呻 ; -+,0x00,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x11,0x10,0x10,0x10,0x10,0x10 -+// 21628 呼 ; -+,0x00,0x00,0x7f,0x44,0x45,0x44,0x44,0x44,0x47,0x7c,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0xe0,0x24,0x26,0xa4,0xa8,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 21629 命 ; -+,0x00,0x01,0x02,0x04,0x08,0x17,0x60,0x1f,0x11,0x11,0x11,0x1f,0x11,0x10,0x00,0x00,0x80,0x40,0x20,0x10,0x0c,0xf7,0x02,0x7c,0x44,0x44,0x44,0x44,0x5c,0x48,0x40,0x40 -+// 21630 呾 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x07,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0xff,0x00 -+// 21631 呿 ; -+,0x00,0x00,0x7c,0x45,0x44,0x44,0x44,0x47,0x44,0x7c,0x44,0x00,0x01,0x03,0x01,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x44,0x82,0x1f,0xf3,0x02,0x00 -+// 21632 咀 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x0f,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xff,0x00,0x00 -+// 21633 咁 ; -+,0x00,0x00,0x7c,0x44,0x47,0x44,0x44,0x44,0x44,0x7c,0x44,0x00,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 21634 咂 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x42,0x02,0x02,0x03,0x00,0x00,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x9e,0x94,0x10,0x10,0xff,0x00 -+// 21635 咃 ; -+,0x00,0x00,0x78,0x49,0x49,0x4b,0x4d,0x49,0x49,0x79,0x49,0x41,0x01,0x01,0x01,0x00,0x88,0xc8,0x88,0x48,0x4f,0x79,0xc9,0x49,0x49,0x4d,0x4a,0x40,0x41,0x41,0x3f,0x00 -+// 21636 咄 ; -+,0x00,0x00,0x7c,0x45,0x45,0x45,0x45,0x45,0x44,0x7d,0x45,0x41,0x01,0x01,0x00,0x00,0x20,0x20,0x20,0x22,0x22,0x22,0xfe,0x22,0x20,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 21637 咅 ; -+,0x01,0x00,0x1f,0x04,0x03,0x02,0x3f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x80,0xfe,0x10,0x18,0x20,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21638 咆 ; -+,0x00,0x00,0x7c,0x45,0x45,0x47,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x00,0x00,0x80,0xc0,0x80,0xfe,0x02,0xf2,0x12,0x12,0x12,0xf2,0x0a,0x04,0x01,0x01,0xff,0x00 -+// 21639 咇 ; -+,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x4a,0x4a,0x7a,0x4c,0x41,0x02,0x04,0x00,0x00,0x40,0x24,0x36,0x94,0x84,0x88,0x88,0x94,0xa2,0xc3,0x82,0x84,0x84,0x7c,0x00,0x00 -+// 21640 咈 ; -+,0x00,0x00,0x7b,0x48,0x48,0x4b,0x4a,0x4a,0x4b,0x78,0x48,0x40,0x01,0x01,0x02,0x04,0x50,0x50,0xfe,0x52,0x52,0xfe,0x50,0x50,0xff,0x51,0x91,0x95,0x12,0x10,0x10,0x10 -+// 21641 咉 ; -+,0x00,0x00,0x7c,0x45,0x45,0x45,0x45,0x45,0x47,0x44,0x7c,0x44,0x00,0x01,0x02,0x04,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x50,0x50,0x88,0x8c,0x07,0x02,0x00 -+// 21642 咊 ; -+,0x00,0x00,0x7d,0x44,0x44,0x47,0x44,0x44,0x7c,0x44,0x41,0x01,0x02,0x04,0x00,0x00,0x04,0x1e,0xe0,0x20,0x20,0xff,0x70,0x70,0xa8,0xa4,0x26,0x23,0x22,0x20,0x20,0x20 -+// 21643 咋 ; -+,0x00,0x00,0x7c,0x44,0x45,0x46,0x44,0x44,0x44,0x7c,0x44,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x40,0xff,0x40,0x40,0x7e,0x40,0x40,0x40,0x7f,0x40,0x40,0x40,0x40,0x40 -+// 21644 和 ; -+,0x00,0x03,0x3c,0x04,0x04,0x3f,0x04,0x0c,0x0e,0x15,0x15,0x25,0x44,0x04,0x04,0x04,0x00,0x80,0x00,0x3e,0x22,0xa2,0x22,0x22,0x22,0x22,0xa2,0x22,0x3e,0x22,0x00,0x00 -+// 21645 咍 ; -+,0x00,0x00,0x7c,0x44,0x45,0x47,0x45,0x44,0x45,0x7d,0x45,0x01,0x01,0x01,0x01,0x00,0x20,0x30,0x40,0x84,0x02,0xff,0x02,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21646 咎 ; -+,0x08,0x08,0x0f,0x11,0x29,0x45,0x02,0x05,0x18,0x60,0x0f,0x08,0x08,0x08,0x0f,0x08,0x20,0x20,0xa0,0x30,0x2c,0x26,0x24,0xa0,0x7f,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 21647 咏 ; -+,0x00,0x00,0x78,0x49,0x48,0x48,0x4b,0x48,0x48,0x79,0x49,0x02,0x02,0x04,0x00,0x00,0xc0,0x20,0x00,0xe0,0x24,0x26,0xa4,0xa8,0xb0,0x28,0x24,0x27,0x22,0x20,0xa0,0x40 -+// 21648 咐 ; -+,0x00,0x00,0x78,0x49,0x49,0x4b,0x4d,0x49,0x49,0x79,0x49,0x41,0x01,0x01,0x01,0x01,0x84,0xc4,0x84,0x04,0x7f,0x04,0x04,0x44,0x24,0x34,0x24,0x04,0x04,0x04,0x14,0x08 -+// 21649 咑 ; -+,0x00,0x00,0x78,0x4f,0x48,0x48,0x48,0x48,0x49,0x7a,0x48,0x00,0x00,0x02,0x01,0x00,0x80,0x80,0x9f,0xe4,0x84,0x84,0xa4,0xc4,0x84,0x84,0x84,0x84,0x84,0x94,0x08,0x00 -+// 21650 咒 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x00,0x07,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0xe0,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 21651 咓 ; -+,0x00,0x03,0x7c,0x44,0x44,0x44,0x44,0x44,0x44,0x7c,0x44,0x00,0x00,0x01,0x00,0x00,0x00,0xfe,0x40,0x40,0x78,0x48,0x88,0xc8,0xb8,0xa8,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 21652 咔 ; -+,0x00,0x00,0x7c,0x44,0x44,0x44,0x47,0x44,0x7c,0x44,0x44,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x7e,0x40,0x40,0x42,0xff,0x40,0x40,0x70,0x4c,0x46,0x44,0x40,0x40,0x40 -+// 21653 咕 ; -+,0x00,0x00,0x7c,0x44,0x47,0x44,0x44,0x44,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21654 咖 ; -+,0x01,0x01,0x79,0x4f,0x49,0x49,0x49,0x49,0x49,0x79,0x4a,0x02,0x04,0x05,0x08,0x00,0x00,0x00,0x00,0xde,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x5e,0x52,0x90,0x00 -+// 21655 咗 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x44,0x44,0x7c,0x45,0x41,0x02,0x05,0x08,0x00,0x20,0x20,0x20,0xff,0x40,0x40,0x40,0xfe,0x90,0x90,0x10,0x10,0x10,0xff,0x00,0x00 -+// 21656 咘 ; -+,0x00,0x00,0x7f,0x44,0x44,0x44,0x44,0x45,0x45,0x7e,0x42,0x04,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x40,0x50,0x90,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 21657 咙 ; -+,0x00,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x44,0x7c,0x44,0x01,0x01,0x02,0x04,0x00,0x40,0x50,0x4c,0x48,0xfe,0x50,0x52,0x54,0x58,0x90,0xb0,0x50,0x11,0x11,0x0f,0x00 -+// 21658 咚 ; -+,0x00,0x00,0x7c,0x44,0x45,0x46,0x44,0x44,0x47,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x60,0x40,0xfc,0x88,0x50,0x20,0x50,0x8c,0x47,0x22,0x10,0x40,0x20,0x30,0x10,0x00 -+// 21659 咛 ; -+,0x00,0x00,0x01,0x7d,0x45,0x46,0x45,0x44,0x44,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x20,0x10,0xff,0x01,0x02,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 21660 咜 ; -+,0x00,0x00,0x7c,0x45,0x46,0x46,0x44,0x44,0x44,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x40,0x30,0x20,0xff,0x02,0x84,0x80,0x8c,0xb0,0xc0,0x80,0x80,0x82,0x83,0x7e,0x00 -+// 21661 咝 ; -+,0x00,0x00,0x00,0x79,0x49,0x4a,0x4f,0x4a,0x48,0x79,0x4a,0x47,0x00,0x00,0x07,0x00,0x84,0xc6,0x84,0x08,0x08,0x52,0xdc,0x84,0x88,0x10,0xfe,0x10,0x00,0x00,0xff,0x00 -+// 21662 咞 ; -+,0x00,0x7d,0x44,0x44,0x44,0x44,0x45,0x44,0x7c,0x44,0x40,0x00,0x00,0x01,0x02,0x00,0x00,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x00 -+// 21663 咟 ; -+,0x00,0x03,0x7c,0x44,0x44,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x02,0xff,0x10,0x20,0x40,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x00 -+// 21664 咠 ; -+,0x0f,0x08,0x08,0x0f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x78,0x00,0x00,0xf8,0x08,0x08,0xf8,0x00,0xff,0x08,0xf8,0x08,0xf8,0x08,0x08,0xff,0x08,0x08,0x08 -+// 21665 咡 ; -+,0x00,0x03,0x7c,0x44,0x44,0x44,0x44,0x44,0x44,0x7c,0x44,0x03,0x00,0x00,0x00,0x00,0x00,0xff,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04,0x04,0x04 -+// 21666 咢 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x1f,0x00,0x7f,0x02,0x04,0x0f,0x04,0x00,0x00,0x00,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfc,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0x50,0x20 -+// 21667 咣 ; -+,0x00,0x00,0x7c,0x45,0x44,0x44,0x47,0x44,0x44,0x7c,0x44,0x00,0x01,0x01,0x02,0x04,0x20,0x20,0x24,0x26,0xa4,0xa8,0xff,0x88,0x88,0x88,0x88,0x88,0x09,0x09,0x07,0x00 -+// 21668 咤 ; -+,0x00,0x00,0x03,0x7a,0x4c,0x48,0x49,0x48,0x48,0x7b,0x48,0x40,0x00,0x00,0x00,0x00,0x40,0x20,0xfe,0x02,0x04,0x78,0xa0,0x20,0x2f,0xf0,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 21669 咥 ; -+,0x00,0x03,0x78,0x48,0x48,0x49,0x4b,0x49,0x48,0x4b,0x78,0x48,0x00,0x00,0x07,0x00,0x00,0xfe,0x20,0x48,0x84,0x3e,0xe4,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 21670 咦 ; -+,0x00,0x00,0x7b,0x48,0x49,0x48,0x49,0x49,0x49,0x79,0x48,0x00,0x00,0x01,0x02,0x04,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x2a,0x54,0x88,0x0c,0x06,0x04 -+// 21671 咧 ; -+,0x00,0x03,0x78,0x48,0x48,0x49,0x49,0x4a,0x4d,0x78,0x48,0x40,0x01,0x06,0x18,0x00,0x01,0xf1,0x81,0x89,0xe9,0x29,0x29,0x29,0x29,0xc9,0x49,0x89,0x01,0x01,0x05,0x02 -+// 21672 咨 ; -+,0x20,0x10,0x14,0x05,0x0a,0x38,0x08,0x09,0x0a,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0xfe,0x24,0x28,0x50,0x88,0x0e,0x04,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21673 咩 ; -+,0x01,0x00,0x7c,0x47,0x44,0x44,0x45,0x44,0x44,0x7f,0x44,0x00,0x00,0x00,0x00,0x00,0x08,0xcc,0x50,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 21674 咪 ; -+,0x00,0x00,0x7a,0x49,0x49,0x48,0x4f,0x48,0x49,0x79,0x4a,0x44,0x08,0x10,0x00,0x00,0x40,0x44,0x46,0x48,0x50,0x42,0xff,0xe0,0x50,0x58,0x4c,0x47,0x42,0x40,0x40,0x00 -+// 21675 咫 ; -+,0x00,0x1f,0x11,0x11,0x11,0x11,0x1f,0x14,0x14,0x12,0x22,0x21,0x20,0x40,0x40,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00,0x24,0x32,0x43,0x02,0xc0,0x30,0x0f,0x00 -+// 21676 咬 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x49,0x4a,0x48,0x78,0x48,0x40,0x00,0x00,0x01,0x02,0x40,0x24,0xfe,0x00,0x88,0xc4,0x06,0x8a,0x88,0x88,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 21677 咭 ; -+,0x00,0x00,0x7f,0x44,0x44,0x44,0x45,0x44,0x44,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21678 咮 ; -+,0x00,0x00,0x7c,0x44,0x45,0x45,0x47,0x44,0x44,0x7c,0x45,0x01,0x02,0x04,0x00,0x00,0x20,0xa0,0xa0,0xfe,0x20,0x20,0xff,0x70,0xb0,0xa8,0x2c,0x27,0x22,0x20,0x20,0x00 -+// 21679 咯 ; -+,0x00,0x00,0x7c,0x45,0x45,0x46,0x44,0x44,0x45,0x7f,0x45,0x01,0x01,0x01,0x01,0x01,0x80,0x80,0xfe,0x04,0x84,0x48,0x30,0x48,0x87,0xfe,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 21680 咰 ; -+,0x00,0x00,0x7c,0x44,0x45,0x45,0x46,0x44,0x44,0x7c,0x44,0x44,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0xff,0x01,0xf9,0x89,0x89,0xf9,0x89,0x89,0xf9,0x89,0x01,0x05,0x02 -+// 21681 咱 ; -+,0x00,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x20,0x40,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21682 咲 ; -+,0x00,0x01,0x7c,0x44,0x47,0x44,0x44,0x44,0x47,0x7c,0x44,0x00,0x00,0x01,0x02,0x04,0x08,0x0c,0x88,0x90,0xfe,0x20,0x20,0x20,0xff,0x20,0x50,0x48,0x84,0x06,0x03,0x02 -+// 21683 咳 ; -+,0x00,0x00,0x7f,0x44,0x44,0x44,0x44,0x45,0x44,0x7c,0x44,0x41,0x02,0x00,0x01,0x06,0x40,0x20,0xff,0x40,0x60,0x48,0x8c,0xf0,0x24,0x46,0x88,0x18,0x24,0x42,0x82,0x00 -+// 21684 咴 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x45,0x7d,0x46,0x02,0x04,0x08,0x10,0x01,0x02,0x40,0x40,0x42,0xff,0x40,0x90,0x92,0x53,0x52,0x94,0x10,0x28,0x44,0x83,0x02,0x00 -+// 21685 咵 ; -+,0x00,0x00,0x7f,0x44,0x44,0x45,0x46,0x44,0x47,0x7c,0x44,0x00,0x00,0x00,0x00,0x00,0x20,0x22,0xff,0x48,0x84,0xff,0x02,0x00,0xff,0x80,0x80,0xfc,0x04,0x04,0x14,0x08 -+// 21686 咶 ; -+,0x00,0x00,0x7d,0x44,0x44,0x47,0x44,0x44,0x45,0x7d,0x45,0x01,0x01,0x01,0x01,0x00,0x00,0x1e,0xe0,0x20,0x20,0xff,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21687 咷 ; -+,0x00,0x00,0x7c,0x44,0x46,0x45,0x44,0x44,0x45,0x7e,0x44,0x01,0x01,0x02,0x04,0x08,0x90,0x90,0x90,0x94,0x96,0x98,0x90,0x98,0x94,0x96,0x94,0x11,0x11,0x11,0x0f,0x00 -+// 21688 咸 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x17,0x14,0x14,0x14,0x17,0x20,0x20,0x41,0x00,0x28,0x24,0xff,0x20,0x20,0xa4,0x26,0xa4,0x94,0x98,0x90,0xa9,0x49,0x85,0x02,0x00 -+// 21689 咹 ; -+,0x00,0x00,0x7d,0x45,0x46,0x44,0x44,0x47,0x44,0x7c,0x44,0x00,0x00,0x00,0x01,0x02,0x20,0x10,0xff,0x01,0x22,0x30,0x20,0xff,0x44,0x84,0x48,0x30,0x48,0x8c,0x06,0x04 -+// 21690 咺 ; -+,0x00,0x03,0x00,0x7c,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x00,0x00,0x03,0x00,0x00,0xff,0x00,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x00,0x00,0xff,0x00 -+// 21691 咻 ; -+,0x00,0x00,0x78,0x49,0x49,0x49,0x4b,0x4d,0x79,0x49,0x49,0x01,0x01,0x01,0x01,0x00,0x90,0xd0,0x90,0x10,0xff,0x18,0x38,0x38,0x54,0x54,0x52,0x93,0x12,0x10,0x10,0x00 -+// 21692 咼 ; -+,0x07,0x04,0x04,0x07,0x04,0x04,0x1f,0x10,0x13,0x12,0x12,0x12,0x13,0x10,0x10,0x10,0xf8,0x08,0x08,0xc8,0x48,0x48,0xfe,0x02,0xf2,0x12,0x12,0x12,0xf2,0x02,0x0a,0x04 -+// 21693 咽 ; -+,0x00,0x01,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x01,0x01,0x01,0x00,0xfe,0x02,0x22,0x22,0xfe,0x22,0x22,0x22,0x52,0x4e,0x8a,0x02,0x02,0xfe,0x02 -+// 21694 咾 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x47,0x44,0x44,0x7c,0x45,0x42,0x04,0x08,0x00,0x00,0x40,0x40,0x44,0xfe,0x4c,0x58,0xff,0x20,0x40,0xc8,0x9c,0xe0,0x82,0x83,0x7e,0x00 -+// 21695 咿 ; -+,0x01,0x79,0x49,0x49,0x4a,0x4a,0x4e,0x4a,0x7a,0x4a,0x42,0x02,0x02,0x02,0x03,0x00,0x00,0xfe,0x24,0x24,0xff,0x24,0x24,0xfc,0x24,0x20,0x20,0x40,0x40,0x80,0x00,0x00 -+// 21696 哀 ; -+,0x00,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x09,0x02,0x04,0x0c,0x34,0x05,0x06,0x04,0x80,0x40,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x9c,0x70,0x20,0x18,0x0f,0x04,0x00 -+// 21697 品 ; -+,0x00,0x07,0x04,0x04,0x04,0x07,0x04,0x00,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 21698 哂 ; -+,0x00,0x03,0x78,0x48,0x48,0x4b,0x4a,0x4a,0x4a,0x7a,0x4a,0x03,0x02,0x03,0x02,0x02,0x02,0xff,0x50,0x50,0x50,0xfe,0x52,0x52,0x52,0x92,0x9e,0x02,0x02,0xfe,0x02,0x02 -+// 21699 哃 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0x01,0xff,0x01,0x01,0x7d,0x45,0x45,0x45,0x7d,0x45,0x01,0x05,0x02,0x00 -+// 21700 哄 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x44,0x44,0x7f,0x44,0x00,0x01,0x01,0x02,0x04,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88,0xff,0x80,0xc8,0x84,0x06,0x03,0x02 -+// 21701 哅 ; -+,0x00,0x00,0x7c,0x44,0x45,0x46,0x45,0x45,0x45,0x7d,0x45,0x45,0x01,0x00,0x00,0x00,0x80,0x80,0xff,0x81,0x01,0x95,0x5d,0x25,0x55,0x8d,0x05,0xfd,0x05,0x01,0x05,0x02 -+// 21702 哆 ; -+,0x00,0x00,0x78,0x49,0x4e,0x48,0x49,0x48,0x4b,0x78,0x49,0x42,0x00,0x00,0x03,0x0c,0x40,0x7c,0x84,0x88,0x50,0x20,0x60,0xbf,0x43,0x86,0x6c,0x58,0x30,0xc0,0x00,0x00 -+// 21703 哇 ; -+,0x00,0x00,0x78,0x4b,0x48,0x48,0x4f,0x48,0x48,0x78,0x4b,0x40,0x00,0x00,0x0f,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 21704 哈 ; -+,0x00,0x00,0x78,0x48,0x49,0x4e,0x49,0x48,0x79,0x49,0x41,0x01,0x01,0x01,0x01,0x00,0x20,0x20,0x50,0x8c,0x07,0x02,0xfc,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21705 哉 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x00,0x00,0x3f,0x21,0x21,0x21,0x3f,0x20,0x03,0x00,0x20,0x28,0xa4,0x26,0x24,0xff,0x20,0x24,0x26,0x14,0x18,0x19,0x29,0xc5,0x03,0x00 -+// 21706 哊 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x45,0x46,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0xff,0x40,0x80,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 21707 哋 ; -+,0x00,0x01,0x79,0x49,0x49,0x4f,0x49,0x49,0x49,0x49,0x79,0x49,0x47,0x02,0x00,0x00,0x08,0x08,0x28,0x2a,0x2f,0xfa,0x2a,0x2a,0x2a,0x2e,0x2a,0xa8,0x21,0x21,0x1f,0x00 -+// 21708 哌 ; -+,0x00,0x79,0x49,0x49,0x49,0x49,0x49,0x49,0x79,0x49,0x41,0x02,0x02,0x04,0x18,0x00,0x0e,0xf0,0x00,0x0e,0x70,0x52,0x57,0x58,0x50,0x48,0x48,0x44,0x56,0x63,0x42,0x00 -+// 21709 响 ; -+,0x00,0x00,0x78,0x4b,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x02,0x02,0x02,0x20,0x30,0x40,0xff,0x01,0x01,0xfd,0x85,0x85,0x85,0x85,0xfd,0x85,0x01,0x05,0x02 -+// 21710 哎 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x44,0x44,0x7c,0x44,0x00,0x00,0x01,0x02,0x04,0x88,0x88,0x88,0xff,0x88,0x00,0x88,0x88,0x50,0x50,0x20,0x50,0x88,0x0c,0x07,0x02 -+// 21711 哏 ; -+,0x01,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x03,0x01,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x20,0x24,0x2c,0x10,0x08,0x2c,0x47,0x82,0x00 -+// 21712 哐 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0x00,0xfe,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xfe,0x00,0x00,0xff,0x00 -+// 21713 哑 ; -+,0x00,0x03,0x7c,0x44,0x44,0x44,0x46,0x45,0x44,0x7c,0x44,0x00,0x00,0x0f,0x00,0x00,0x00,0xfe,0x90,0x90,0x92,0x93,0x92,0x94,0x94,0x98,0x90,0x90,0x90,0xff,0x00,0x00 -+// 21714 哒 ; -+,0x00,0x04,0x03,0x7a,0x48,0x48,0x4f,0x49,0x49,0x79,0x49,0x41,0x01,0x02,0x04,0x00,0x10,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x18,0x24,0x22,0x42,0x80,0x80,0x7f,0x00 -+// 21715 哓 ; -+,0x00,0x00,0x78,0x4b,0x48,0x48,0x48,0x4b,0x48,0x7b,0x48,0x00,0x00,0x01,0x02,0x04,0x40,0x40,0x5e,0xe0,0x44,0x28,0x72,0x8e,0x00,0xff,0x90,0x90,0x91,0x11,0x0f,0x00 -+// 21716 哔 ; -+,0x01,0x01,0x3d,0x25,0x25,0x25,0x25,0x27,0x25,0x24,0x3c,0x03,0x00,0x00,0x00,0x00,0x10,0x10,0x13,0xdc,0x10,0x11,0x51,0x8f,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 21717 哕 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x24,0x24,0x24,0x3d,0x22,0x00,0x00,0x00,0x00,0x03,0x10,0x12,0x12,0x12,0xfe,0x22,0x20,0x7f,0x82,0x42,0x24,0x28,0x10,0x20,0xc0,0x00 -+// 21718 哖 ; -+,0x00,0x00,0x3c,0x25,0x25,0x26,0x24,0x24,0x24,0x3f,0x24,0x20,0x00,0x00,0x00,0x00,0x80,0x82,0xff,0x10,0x10,0xfe,0x90,0x90,0x90,0xff,0x10,0x10,0x10,0x10,0x10,0x00 -+// 21719 哗 ; -+,0x00,0x00,0x3c,0x25,0x25,0x26,0x24,0x24,0x24,0x3c,0x23,0x00,0x00,0x00,0x00,0x00,0x90,0xd0,0x94,0x98,0xb0,0xd2,0x92,0x8e,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20 -+// 21720 哘 ; -+,0x00,0x00,0x79,0x4b,0x4c,0x48,0x48,0x49,0x4a,0x78,0x48,0x40,0x00,0x00,0x00,0x00,0x80,0xc0,0x9f,0x40,0x60,0xc0,0xbf,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88 -+// 21721 哙 ; -+,0x00,0x00,0x7c,0x44,0x44,0x45,0x47,0x44,0x44,0x7f,0x44,0x40,0x01,0x03,0x01,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfa,0x00,0x00,0xfe,0x40,0x88,0x04,0xfe,0x04,0x00 -+// 21722 哚 ; -+,0x00,0x7c,0x44,0x44,0x44,0x45,0x46,0x44,0x7f,0x44,0x40,0x01,0x02,0x04,0x08,0x00,0x00,0xf8,0x88,0x88,0x88,0x27,0x20,0x24,0xfe,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 21723 哛 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x02,0x03,0x04,0x08,0x17,0x21,0x01,0x02,0x04,0x08,0x40,0x48,0x5c,0x62,0x42,0x3e,0x00,0x20,0x10,0x08,0xf7,0x12,0x10,0x10,0x50,0x20 -+// 21724 哜 ; -+,0x00,0x00,0x7b,0x49,0x48,0x48,0x48,0x48,0x4b,0x7c,0x48,0x40,0x01,0x01,0x02,0x04,0x40,0x20,0xfe,0x08,0x88,0x50,0x20,0xd8,0x07,0x8a,0x88,0x88,0x08,0x08,0x08,0x08 -+// 21725 哝 ; -+,0x00,0x00,0x79,0x4a,0x4a,0x48,0x48,0x48,0x49,0x79,0x4a,0x04,0x08,0x01,0x00,0x00,0x20,0x22,0xff,0x22,0x44,0x48,0xa4,0xa6,0xa8,0x90,0x90,0x88,0xa4,0xc7,0x82,0x00 -+// 21726 哞 ; -+,0x00,0x00,0x78,0x49,0x4b,0x49,0x49,0x49,0x4a,0x7c,0x48,0x4b,0x00,0x00,0x00,0x00,0x80,0xc8,0x84,0x3e,0xe4,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 21727 哟 ; -+,0x01,0x01,0x79,0x49,0x4a,0x4b,0x4c,0x49,0x4a,0x7f,0x4a,0x00,0x00,0x01,0x06,0x00,0x08,0x8c,0x08,0x10,0x5f,0xd1,0xa1,0x01,0x11,0xc9,0x0d,0x09,0x01,0xc1,0x05,0x02 -+// 21728 哠 ; -+,0x00,0x00,0x7c,0x44,0x45,0x46,0x44,0x47,0x44,0x7d,0x45,0x41,0x01,0x01,0x01,0x01,0x90,0xd0,0x90,0xfe,0x10,0x10,0x12,0xff,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02 -+// 21729 員 ; -+,0x07,0x04,0x04,0x07,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x03,0x0c,0x30,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x18,0x06,0x03 -+// 21730 哢 ; -+,0x03,0x00,0x78,0x49,0x48,0x48,0x4b,0x48,0x48,0x7f,0x48,0x00,0x01,0x01,0x02,0x04,0xfe,0x20,0x20,0xfe,0x20,0x20,0xfe,0x88,0x88,0xff,0x88,0x88,0x08,0x08,0x08,0x08 -+// 21731 哣 ; -+,0x00,0x03,0x7c,0x44,0x44,0x44,0x44,0x44,0x7c,0x44,0x40,0x00,0x00,0x00,0x07,0x00,0x00,0xff,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0x08,0x8c,0x48,0x52,0xff,0x00 -+// 21732 哤 ; -+,0x00,0x00,0x7c,0x47,0x44,0x44,0x44,0x44,0x44,0x7c,0x45,0x01,0x02,0x0c,0x30,0x00,0x80,0x90,0x88,0xff,0xa0,0xa6,0xb8,0xa6,0xac,0xb0,0x24,0x3a,0xe2,0x23,0x1e,0x00 -+// 21733 哥 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x00,0x00,0x00,0xfe,0x08,0xc8,0x48,0xc8,0x48,0x02,0xff,0x08,0xc8,0x48,0xc8,0x48,0x28,0x10 -+// 21734 哦 ; -+,0x00,0x03,0x78,0x48,0x4f,0x48,0x48,0x48,0x49,0x7a,0x40,0x00,0x00,0x02,0x01,0x00,0x10,0xd8,0x96,0x94,0xff,0x90,0x94,0xd6,0x94,0x88,0x88,0x99,0xa5,0x83,0x01,0x00 -+// 21735 哧 ; -+,0x00,0x00,0x7d,0x44,0x44,0x47,0x44,0x45,0x45,0x7d,0x42,0x04,0x00,0x01,0x02,0x04,0x20,0x24,0xfe,0x20,0x20,0xff,0x48,0x48,0xcc,0x4a,0x4b,0x8a,0x88,0x08,0x28,0x10 -+// 21736 哨 ; -+,0x00,0x02,0x7d,0x44,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x45,0x01,0x01,0x01,0x01,0x20,0x24,0xa6,0xa8,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0x0a,0x04 -+// 21737 哩 ; -+,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4a,0x4b,0x7a,0x48,0x43,0x00,0x00,0x00,0x0f,0x00,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 21738 哪 ; -+,0x03,0x79,0x49,0x49,0x4b,0x49,0x49,0x4f,0x49,0x79,0x4a,0x02,0x04,0x08,0x10,0x00,0xef,0x29,0x2a,0x2a,0xea,0x2c,0x2a,0xea,0x29,0x29,0x29,0x2d,0x2a,0xa8,0x48,0x00 -+// 21739 哫 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x44,0x45,0x7d,0x45,0x42,0x02,0x04,0x08,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x20,0x20,0x3e,0x20,0x20,0xa0,0x60,0x30,0x0f,0x00 -+// 21740 哬 ; -+,0x01,0x01,0x79,0x49,0x4b,0x4b,0x4d,0x49,0x49,0x79,0x49,0x41,0x01,0x01,0x01,0x00,0x00,0xff,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04,0x00 -+// 21741 哭 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x00,0x00,0x7f,0x01,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x7c,0x44,0x44,0x7c,0x44,0x90,0x88,0xff,0x40,0x40,0x20,0x10,0x0e,0x04,0x00 -+// 21742 哮 ; -+,0x00,0x00,0x79,0x48,0x4f,0x48,0x48,0x48,0x49,0x7a,0x47,0x18,0x00,0x00,0x00,0x00,0x40,0x44,0xf6,0x48,0xff,0x20,0x40,0xf8,0x10,0x22,0xff,0x20,0x20,0x20,0xa0,0x40 -+// 21743 哯 ; -+,0x01,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x44,0x00,0x00,0x00,0x01,0x02,0xfc,0x04,0x04,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x54,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 21744 哰 ; -+,0x00,0x00,0x7b,0x4a,0x4d,0x49,0x49,0x49,0x4a,0x7c,0x4f,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0xff,0x22,0x24,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 21745 哱 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x4a,0x4c,0x49,0x48,0x78,0x4f,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0xff,0x02,0x00,0xfc,0x18,0x20,0xff,0x20,0x20,0x20,0xa0,0x40 -+// 21746 哲 ; -+,0x04,0x04,0x04,0x7f,0x04,0x0e,0x74,0x04,0x15,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x7e,0x40,0x40,0x7f,0x48,0x88,0x88,0x08,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 21747 哳 ; -+,0x01,0x01,0x79,0x49,0x4f,0x49,0x49,0x49,0x4b,0x7d,0x49,0x41,0x01,0x05,0x02,0x00,0x00,0x07,0x3c,0x20,0xa0,0x3f,0x24,0xa4,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x00 -+// 21748 哴 ; -+,0x00,0x00,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x03,0x01,0x40,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x40,0x46,0x38,0x10,0x18,0x4f,0x84,0x00 -+// 21749 哵 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4b,0x48,0x48,0x4b,0x78,0x48,0x01,0x01,0x02,0x04,0x08,0x01,0xe1,0x21,0x29,0x29,0xe9,0x89,0x89,0xe9,0xa9,0xa9,0x29,0x21,0xa1,0x45,0x02 -+// 21750 哶 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x4b,0x48,0x78,0x48,0x4b,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x8f,0x88,0x88,0x00,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 21751 哷 ; -+,0x00,0x00,0x3f,0x24,0x25,0x24,0x24,0x24,0x24,0x3f,0x24,0x00,0x00,0x00,0x00,0x00,0x04,0x3e,0xe4,0x46,0x34,0xa8,0x90,0x08,0x08,0xff,0x88,0x68,0x48,0x08,0x28,0x10 -+// 21752 哸 ; -+,0x00,0x01,0x3c,0x25,0x24,0x24,0x24,0x27,0x24,0x3c,0x24,0x00,0x00,0x00,0x01,0x06,0x0e,0xf0,0x42,0x23,0x92,0xd4,0xa0,0xff,0x44,0x44,0x88,0x48,0x30,0x4c,0x86,0x02 -+// 21753 哹 ; -+,0x00,0x03,0x78,0x4a,0x49,0x49,0x49,0x48,0x48,0x7b,0x48,0x40,0x00,0x00,0x00,0x00,0x0e,0xf0,0x04,0x46,0xb4,0x28,0xfc,0x08,0x10,0xff,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 21754 哺 ; -+,0x00,0x00,0x7f,0x48,0x4b,0x4a,0x4a,0x4b,0x4a,0x7a,0x4b,0x02,0x02,0x02,0x02,0x00,0x28,0x24,0xff,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x24,0x00 -+// 21755 哻 ; -+,0x00,0x7d,0x45,0x45,0x45,0x45,0x44,0x45,0x7c,0x44,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 21756 哼 ; -+,0x00,0x00,0x7f,0x48,0x49,0x49,0x49,0x48,0x49,0x78,0x48,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0xff,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x08,0x10,0x10,0x10,0x10,0x50,0x20 -+// 21757 哽 ; -+,0x00,0x03,0x3c,0x24,0x25,0x25,0x25,0x25,0x25,0x3d,0x24,0x01,0x00,0x00,0x03,0x0c,0x00,0xfe,0x20,0x20,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0x20,0xc0,0xa0,0x1e,0x04 -+// 21758 哾 ; -+,0x00,0x01,0x3c,0x24,0x25,0x25,0x25,0x25,0x25,0x3d,0x24,0x00,0x00,0x00,0x01,0x02,0x08,0x0c,0xc8,0x90,0xfc,0x04,0x04,0x04,0xfc,0x54,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 21759 哿 ; -+,0x08,0x08,0x3f,0x08,0x08,0x12,0x21,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0xbe,0xa2,0xa2,0xbe,0x00,0xff,0x04,0xc4,0x44,0x44,0xc4,0x44,0x14,0x08 -+// 21760 唀 ; -+,0x00,0x01,0x78,0x4b,0x48,0x48,0x49,0x4a,0x48,0x78,0x48,0x40,0x00,0x01,0x02,0x04,0x0c,0xf0,0x20,0xff,0x70,0xa8,0x26,0xfd,0x44,0x48,0x5e,0x82,0x82,0x02,0x14,0x08 -+// 21761 唁 ; -+,0x00,0x00,0x7f,0x44,0x44,0x44,0x44,0x44,0x44,0x7d,0x45,0x01,0x01,0x01,0x01,0x00,0x20,0x10,0xff,0x00,0xfc,0x00,0x00,0xfc,0x00,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21762 唂 ; -+,0x00,0x00,0x79,0x49,0x4a,0x4c,0x48,0x48,0x49,0x7f,0x49,0x01,0x01,0x01,0x01,0x01,0x90,0xc8,0x84,0x26,0x22,0x50,0x48,0x84,0x03,0xfe,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 21763 唃 ; -+,0x00,0x00,0x7c,0x45,0x47,0x45,0x45,0x45,0x45,0x7d,0x45,0x01,0x01,0x02,0x02,0x04,0x40,0x7e,0x84,0x08,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0x05,0x02 -+// 21764 唄 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x45,0x40,0x00,0x01,0x03,0x04,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00,0x88,0xc4,0x06,0x04 -+// 21765 唅 ; -+,0x00,0x00,0x7c,0x44,0x45,0x46,0x45,0x44,0x44,0x7d,0x45,0x41,0x01,0x01,0x01,0x00,0x20,0x20,0x50,0x88,0x26,0x13,0xfc,0x08,0x10,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21766 唆 ; -+,0x00,0x00,0x79,0x4b,0x48,0x48,0x49,0x4a,0x4c,0x78,0x49,0x46,0x00,0x00,0x00,0x03,0x80,0x88,0x04,0xfe,0x84,0xc8,0x06,0x42,0xfc,0x88,0x48,0x48,0x30,0x48,0x87,0x02 -+// 21767 唇 ; -+,0x00,0x3f,0x20,0x27,0x20,0x2f,0x24,0x24,0x25,0x26,0x24,0x2f,0x28,0x28,0x2f,0x48,0x00,0xfc,0x00,0xf8,0x00,0xfc,0x88,0x50,0xb0,0x0e,0x04,0xf8,0x08,0x08,0xf8,0x08 -+// 21768 唈 ; -+,0x00,0x01,0x79,0x49,0x49,0x48,0x4b,0x4a,0x4a,0x7b,0x4a,0x02,0x02,0x02,0x01,0x00,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 21769 唉 ; -+,0x00,0x00,0x78,0x49,0x48,0x49,0x49,0x4a,0x7c,0x4b,0x40,0x00,0x00,0x01,0x02,0x04,0x40,0x44,0x82,0xff,0x82,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x88,0x04,0x07,0x02 -+// 21770 唊 ; -+,0x00,0x00,0x78,0x4b,0x48,0x49,0x49,0x49,0x4a,0x7e,0x48,0x00,0x00,0x01,0x02,0x04,0x20,0x20,0x20,0xff,0x20,0x24,0x24,0x24,0xaa,0x52,0x50,0x88,0x84,0x06,0x03,0x02 -+// 21771 唋 ; -+,0x00,0x00,0x78,0x48,0x49,0x4e,0x48,0x48,0x4b,0x78,0x49,0x41,0x01,0x02,0x04,0x00,0x20,0x20,0x50,0x88,0x06,0xfb,0x20,0x20,0xfe,0x20,0x28,0xa4,0x26,0x24,0xa0,0x40 -+// 21772 唌 ; -+,0x00,0x07,0x78,0x48,0x49,0x4a,0x4f,0x48,0x48,0x7c,0x4b,0x41,0x02,0x02,0x04,0x08,0x00,0x86,0xb8,0x88,0x08,0x2e,0xa8,0xa8,0xa8,0xa8,0x3e,0x00,0x80,0x40,0x3f,0x00 -+// 21773 唍 ; -+,0x00,0x00,0x79,0x49,0x4a,0x48,0x48,0x48,0x4b,0x78,0x48,0x00,0x00,0x01,0x02,0x04,0x20,0x10,0xff,0x01,0x02,0xfc,0x00,0x00,0xff,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 21774 唎 ; -+,0x00,0x03,0x7c,0x48,0x48,0x4f,0x49,0x49,0x7a,0x4a,0x44,0x04,0x08,0x00,0x00,0x00,0x02,0xe2,0x82,0x8a,0x8a,0xea,0x8a,0xca,0xaa,0xaa,0x8a,0x82,0x82,0x8a,0x84,0x00 -+// 21775 唏 ; -+,0x00,0x00,0x78,0x48,0x48,0x49,0x4b,0x48,0x79,0x4b,0x05,0x09,0x01,0x01,0x00,0x00,0x08,0x8c,0x50,0x20,0xd8,0x44,0xff,0xa0,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 21776 唐 ; -+,0x00,0x00,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x10,0x17,0x14,0x24,0x27,0x44,0x00,0x80,0x40,0xfe,0x40,0xf8,0x48,0xfe,0x48,0xf8,0x40,0xf8,0x08,0x08,0xf8,0x08,0x00 -+// 21777 唑 ; -+,0x00,0x00,0x79,0x49,0x49,0x49,0x4a,0x4a,0x4c,0x78,0x4b,0x00,0x00,0x00,0x07,0x00,0x20,0x20,0x24,0x24,0x24,0x24,0xaa,0xb3,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 21778 唒 ; -+,0x00,0x03,0x3c,0x24,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x01,0x00,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0x52,0x8e,0x02,0xfe,0x02,0x02,0xfe,0x02,0x00 -+// 21779 唓 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x4a,0x4b,0x4a,0x4a,0x7b,0x48,0x47,0x00,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 21780 唔 ; -+,0x00,0x7b,0x48,0x48,0x49,0x48,0x48,0x4f,0x78,0x49,0x41,0x01,0x01,0x01,0x01,0x00,0x00,0xfe,0x40,0x40,0xf8,0x88,0x88,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 21781 唕 ; -+,0x00,0x00,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7c,0x44,0x03,0x00,0x00,0x00,0x00,0x20,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 21782 唖 ; -+,0x00,0x07,0x78,0x48,0x4b,0x4a,0x4a,0x4a,0x4a,0x7b,0x48,0x40,0x00,0x00,0x07,0x00,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0x52,0x52,0xfe,0x50,0x50,0x50,0x50,0xff,0x00 -+// 21783 唗 ; -+,0x00,0x00,0x3d,0x24,0x24,0x27,0x24,0x24,0x25,0x3d,0x25,0x22,0x02,0x04,0x08,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x20,0x20,0x3e,0x20,0xa0,0x60,0x30,0x0f,0x00 -+// 21784 唘 ; -+,0x00,0x3f,0x08,0x10,0x1f,0x31,0x51,0x1f,0x10,0x07,0x04,0x04,0x04,0x07,0x04,0x00,0x00,0xfe,0x22,0x22,0x14,0x08,0x14,0x23,0x42,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21785 唙 ; -+,0x00,0x04,0x7a,0x49,0x4b,0x4c,0x48,0x48,0x49,0x7a,0x44,0x08,0x00,0x00,0x02,0x01,0x88,0xc8,0x88,0x08,0x49,0xa9,0xaa,0x88,0x88,0x94,0x94,0x92,0x92,0xa1,0xa1,0x40 -+// 21786 唚 ; -+,0x01,0x7c,0x44,0x44,0x45,0x44,0x47,0x46,0x7d,0x44,0x00,0x00,0x00,0x00,0x00,0x03,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x02,0xfc,0x84,0x88,0x48,0x30,0x48,0x87,0x02 -+// 21787 唛 ; -+,0x00,0x00,0x3d,0x24,0x25,0x24,0x27,0x24,0x24,0x3c,0x25,0x02,0x00,0x00,0x00,0x01,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x80,0xfc,0x84,0x48,0x28,0x10,0x28,0x47,0x82 -+// 21788 唜 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x01,0x02,0x04,0x08,0x1e,0x12,0x12,0x12,0x1e,0x12,0x00,0x80,0x80,0xfe,0x80,0xfc,0xc0,0xb0,0x9c,0x88,0x40,0x4c,0x70,0x42,0x42,0x3e,0x00 -+// 21789 唝 ; -+,0x00,0x01,0x7c,0x44,0x47,0x44,0x45,0x45,0x45,0x7d,0x45,0x01,0x00,0x00,0x01,0x02,0x00,0xfe,0x20,0x20,0xff,0x00,0xfc,0x04,0x24,0x24,0x24,0x24,0x50,0x8c,0x06,0x04 -+// 21790 唞 ; -+,0x00,0x00,0x78,0x4b,0x48,0x48,0x48,0x48,0x49,0x7a,0x48,0x40,0x00,0x02,0x01,0x00,0x84,0x84,0x84,0xe4,0x94,0xb4,0xd4,0x94,0x87,0xbc,0x84,0x84,0x84,0x84,0x04,0x00 -+// 21791 唟 ; -+,0x00,0x00,0x1f,0x00,0x3f,0x01,0x02,0x0f,0x04,0x1e,0x12,0x12,0x12,0x1e,0x12,0x00,0x80,0x80,0xfe,0x80,0xff,0x90,0x08,0xfc,0x04,0x40,0x4c,0x70,0x42,0x43,0x3e,0x00 -+// 21792 唠 ; -+,0x00,0x00,0x7b,0x48,0x48,0x4b,0x4a,0x4c,0x78,0x4b,0x40,0x00,0x00,0x00,0x01,0x02,0x48,0x48,0xff,0x48,0x48,0xff,0x02,0x44,0x40,0xfc,0x44,0x44,0x84,0x84,0x14,0x08 -+// 21793 唡 ; -+,0x00,0x7b,0x48,0x48,0x4b,0x4a,0x4a,0x4a,0x7a,0x4a,0x43,0x03,0x02,0x02,0x02,0x02,0x00,0xff,0x48,0x48,0xff,0x49,0x49,0x49,0xa9,0x95,0x27,0x45,0x01,0x09,0x05,0x02 -+// 21794 唢 ; -+,0x00,0x01,0x3c,0x24,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x21,0x00,0x00,0x01,0x02,0x20,0x24,0xa8,0x20,0xfc,0x04,0x24,0x24,0x24,0x24,0x24,0x54,0x48,0x84,0x06,0x02 -+// 21795 唣 ; -+,0x00,0x00,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3c,0x24,0x00,0x03,0x00,0x00,0x00,0x20,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x20,0x20,0x3e,0xe0,0x21,0x21,0x1f -+// 21796 唤 ; -+,0x00,0x00,0x78,0x49,0x4a,0x4d,0x49,0x49,0x79,0x49,0x47,0x00,0x00,0x01,0x02,0x04,0x80,0x80,0xfc,0x08,0x10,0xfc,0x24,0x24,0x24,0x24,0xff,0x50,0x88,0x06,0x03,0x02 -+// 21797 唥 ; -+,0x00,0x04,0x7b,0x4a,0x48,0x49,0x49,0x49,0x49,0x7e,0x4a,0x02,0x02,0x02,0x02,0x00,0x10,0x10,0x28,0x28,0x44,0x53,0x8a,0x08,0x7e,0x02,0x04,0x28,0x10,0x08,0x08,0x00 -+// 21798 唦 ; -+,0x02,0x79,0x49,0x49,0x4c,0x4a,0x4a,0x48,0x79,0x49,0x47,0x01,0x01,0x01,0x01,0x01,0x08,0x08,0x88,0x2a,0x29,0xa9,0xc8,0x8a,0x0b,0x0a,0x04,0x08,0x10,0x20,0x40,0x00 -+// 21799 唧 ; -+,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4a,0x4b,0x7a,0x4a,0x42,0x02,0x07,0x02,0x00,0x00,0x00,0xdf,0x51,0x51,0xd1,0x51,0x51,0xd1,0x51,0x91,0x57,0xd2,0x50,0x10,0x10,0x10 -+// 21800 唨 ; -+,0x00,0x7b,0x4a,0x4a,0x4b,0x4b,0x4a,0x4a,0x7a,0x4a,0x4b,0x02,0x02,0x02,0x02,0x00,0x00,0xbe,0xa2,0xa2,0x22,0x3e,0xa2,0xa2,0xbe,0xa2,0xa2,0x22,0x22,0x7f,0x00,0x00 -+// 21801 唩 ; -+,0x00,0x01,0x78,0x4b,0x48,0x48,0x49,0x4e,0x48,0x7b,0x48,0x00,0x00,0x00,0x01,0x06,0x0c,0xf0,0x20,0xff,0x70,0xa8,0x24,0x23,0x40,0xff,0x88,0xc8,0x30,0x6c,0x87,0x02 -+// 21802 唪 ; -+,0x00,0x00,0x7f,0x48,0x49,0x48,0x4b,0x48,0x49,0x7b,0x4c,0x00,0x03,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x88,0x24,0xfb,0x20,0x20,0xfe,0x20,0x20,0x20 -+// 21803 唫 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x27,0x24,0x24,0x3d,0x25,0x20,0x00,0x00,0x03,0x00,0x20,0x20,0x50,0x88,0x84,0x03,0xfe,0x20,0x20,0xfe,0x28,0xac,0xb0,0x22,0xff,0x00 -+// 21804 唬 ; -+,0x00,0x00,0x78,0x4b,0x4a,0x4a,0x4b,0x4a,0x7a,0x4a,0x42,0x02,0x02,0x04,0x04,0x09,0x20,0x3c,0x20,0xff,0x42,0x78,0xc0,0x44,0x3c,0x00,0x78,0x48,0x49,0x89,0x87,0x00 -+// 21805 唭 ; -+,0x00,0x00,0x3f,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x3f,0x24,0x00,0x01,0x01,0x02,0x88,0x88,0xff,0x88,0xf8,0x88,0x88,0xf8,0x88,0x88,0xff,0x88,0xc4,0x86,0x03,0x02 -+// 21806 售 ; -+,0x04,0x04,0x0f,0x08,0x1f,0x28,0x4f,0x08,0x0f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x80,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 21807 唯 ; -+,0x00,0x00,0x78,0x49,0x49,0x4a,0x4a,0x4c,0x48,0x78,0x48,0x00,0x00,0x00,0x00,0x00,0x80,0xd0,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80,0x00 -+// 21808 唰 ; -+,0x03,0x7a,0x4a,0x4a,0x4b,0x4a,0x4a,0x4b,0x7b,0x45,0x05,0x05,0x09,0x08,0x10,0x00,0xf1,0x11,0x11,0x15,0xf5,0x45,0x45,0xf5,0x55,0x55,0x55,0x55,0x51,0x41,0x45,0x42 -+// 21809 唱 ; -+,0x00,0x79,0x49,0x49,0x49,0x49,0x48,0x4b,0x4a,0x7a,0x4b,0x02,0x02,0x03,0x02,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x00 -+// 21810 唲 ; -+,0x00,0x01,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0x7d,0x44,0x00,0x00,0x01,0x02,0x04,0x60,0x8e,0x02,0x02,0xce,0x02,0x02,0x02,0xfe,0x52,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 21811 唳 ; -+,0x00,0x00,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x02,0x02,0x04,0x01,0x20,0x12,0xff,0x02,0x02,0xfe,0x10,0x14,0x12,0xff,0x10,0x28,0x28,0x44,0x87,0x02 -+// 21812 唴 ; -+,0x00,0x00,0x7d,0x44,0x44,0x45,0x44,0x44,0x7f,0x44,0x44,0x00,0x00,0x01,0x02,0x04,0x84,0x48,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x50,0x50,0x90,0x92,0x12,0x0e,0x00 -+// 21813 唵 ; -+,0x00,0x00,0x7f,0x48,0x48,0x49,0x4f,0x49,0x49,0x49,0x79,0x49,0x01,0x00,0x00,0x00,0x20,0x20,0xfe,0x50,0x88,0x24,0xff,0x24,0xfc,0x24,0x24,0xfc,0x25,0x21,0x1f,0x00 -+// 21814 唶 ; -+,0x00,0x00,0x00,0x7b,0x48,0x48,0x4f,0x48,0x49,0x79,0x49,0x41,0x01,0x01,0x01,0x01,0x90,0x90,0x90,0xfe,0x90,0x90,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 21815 唷 ; -+,0x00,0x00,0x3f,0x24,0x24,0x25,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0xff,0x48,0x84,0xfe,0x84,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 21816 唸 ; -+,0x00,0x00,0x78,0x48,0x49,0x4a,0x4d,0x48,0x48,0x78,0x48,0x02,0x02,0x02,0x04,0x00,0x20,0x20,0x50,0x88,0x44,0x27,0xfa,0x08,0x10,0x40,0x24,0x9a,0x91,0x85,0x7c,0x00 -+// 21817 唹 ; -+,0x02,0x01,0x79,0x4f,0x49,0x49,0x49,0x49,0x49,0x7a,0x4a,0x02,0x04,0x05,0x08,0x00,0x08,0x88,0x08,0xd4,0x14,0x22,0xc1,0x50,0x4c,0x44,0x40,0x50,0x4c,0xc6,0x84,0x00 -+// 21818 唺 ; -+,0x00,0x00,0x78,0x49,0x49,0x49,0x49,0x49,0x49,0x79,0x4b,0x40,0x00,0x00,0x01,0x02,0x48,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0xff,0x00,0x84,0xc2,0x03,0x02 -+// 21819 唻 ; -+,0x00,0x00,0x3f,0x24,0x25,0x25,0x26,0x26,0x24,0x3c,0x24,0x01,0x02,0x0c,0x00,0x00,0x20,0x20,0xff,0x24,0x24,0x24,0xaa,0xb1,0x60,0x70,0xa8,0x24,0x23,0x20,0x20,0x20 -+// 21820 唼 ; -+,0x00,0x00,0x7f,0x49,0x48,0x4b,0x48,0x48,0x4b,0x78,0x49,0x00,0x00,0x00,0x01,0x02,0x40,0x20,0xfe,0x08,0x90,0xff,0x40,0x40,0xfe,0x88,0x08,0x90,0x60,0x90,0x0c,0x08 -+// 21821 唽 ; -+,0x01,0x01,0x79,0x49,0x4f,0x49,0x4b,0x4b,0x4b,0x7d,0x45,0x49,0x01,0x01,0x01,0x00,0x00,0x07,0x38,0x20,0xe0,0x3f,0xa4,0x64,0x64,0x24,0x24,0x24,0x44,0x44,0x84,0x00 -+// 21822 唾 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x49,0x49,0x4b,0x49,0x79,0x49,0x07,0x00,0x00,0x03,0x00,0x00,0x1e,0xe0,0x20,0xfe,0x28,0x28,0xfe,0x28,0x28,0x28,0xff,0x20,0x20,0xfe,0x00 -+// 21823 唿 ; -+,0x00,0x00,0x3c,0x25,0x25,0x26,0x24,0x27,0x24,0x3f,0x24,0x02,0x02,0x04,0x00,0x00,0x80,0x80,0xfe,0x2a,0x4a,0x52,0x92,0x22,0xd4,0x08,0xa0,0x9a,0x95,0x85,0xfc,0x00 -+// 21824 啀 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4a,0x4a,0x4b,0x4a,0x7a,0x4a,0x42,0x04,0x05,0x08,0x00,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x00 -+// 21825 啁 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4a,0x4a,0x4b,0x4a,0x7a,0x4a,0x42,0x02,0x04,0x04,0x08,0x00,0xfe,0x22,0x22,0xfa,0x22,0x22,0xfe,0x02,0xfa,0x8a,0x8a,0xfa,0x02,0x0a,0x04 -+// 21826 啂 ; -+,0x00,0x00,0x7f,0x49,0x4c,0x4a,0x4b,0x48,0x48,0x78,0x4f,0x42,0x00,0x00,0x02,0x01,0x00,0xe8,0x08,0x28,0xb8,0xa8,0xe8,0x48,0x88,0xe8,0x88,0x88,0x89,0x89,0x87,0x00 -+// 21827 啃 ; -+,0x00,0x00,0x01,0x7d,0x45,0x47,0x44,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x14,0x08 -+// 21828 啄 ; -+,0x00,0x03,0x78,0x48,0x49,0x4e,0x4a,0x49,0x7a,0x48,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0xfe,0x60,0xc4,0x86,0x48,0xb0,0x28,0xb8,0x54,0xf4,0x53,0x12,0x50,0x20,0x00 -+// 21829 啅 ; -+,0x00,0x00,0x3c,0x24,0x25,0x25,0x25,0x25,0x25,0x3d,0x24,0x03,0x00,0x00,0x00,0x00,0x20,0x24,0x3e,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x24,0x20,0xff,0x20,0x20,0x20,0x20 -+// 21830 商 ; -+,0x00,0x00,0x3f,0x02,0x01,0x1f,0x11,0x12,0x1f,0x12,0x12,0x13,0x12,0x12,0x10,0x10,0x80,0x40,0xfe,0x10,0x20,0xfc,0x24,0x14,0xf4,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 21831 啇 ; -+,0x01,0x00,0x7f,0x04,0x02,0x1f,0x10,0x17,0x10,0x13,0x12,0x12,0x13,0x10,0x10,0x10,0x00,0x80,0xff,0x10,0x20,0xfc,0x84,0xf4,0x84,0xe4,0x24,0x24,0xe4,0x04,0x14,0x08 -+// 21832 啈 ; -+,0x00,0x00,0x3d,0x24,0x24,0x27,0x24,0x24,0x3f,0x24,0x24,0x03,0x00,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x84,0x48,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 21833 啉 ; -+,0x01,0x01,0x79,0x49,0x4f,0x49,0x4b,0x4b,0x7d,0x4d,0x45,0x09,0x01,0x01,0x01,0x01,0x08,0x08,0x08,0x08,0xdf,0x08,0x9c,0x5c,0x6c,0x2a,0x4a,0x89,0x08,0x08,0x08,0x08 -+// 21834 啊 ; -+,0x00,0x7b,0x4a,0x4a,0x4b,0x4b,0x4a,0x4a,0x4a,0x7a,0x4b,0x02,0x02,0x02,0x02,0x02,0x00,0xbf,0x82,0x82,0x3a,0x2a,0xaa,0xaa,0xaa,0xaa,0xba,0x02,0x02,0x02,0x0a,0x04 -+// 21835 啋 ; -+,0x00,0x00,0x3d,0x24,0x25,0x24,0x24,0x24,0x27,0x3c,0x24,0x01,0x03,0x0c,0x00,0x00,0x00,0x1e,0xe0,0x00,0x24,0xa6,0xa8,0x20,0xff,0x70,0xa8,0xac,0x27,0x22,0x20,0x20 -+// 21836 啌 ; -+,0x00,0x00,0x79,0x4a,0x4a,0x48,0x48,0x49,0x48,0x7b,0x48,0x00,0x00,0x07,0x00,0x00,0x40,0x20,0xff,0x02,0x94,0xc8,0x86,0x04,0x00,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 21837 啍 ; -+,0x00,0x00,0x7b,0x48,0x49,0x49,0x49,0x48,0x49,0x78,0x4b,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x08,0xff,0x10,0x10,0x10,0x50,0x20 -+// 21838 啎 ; -+,0x10,0x19,0x10,0x3e,0x28,0x48,0x08,0x09,0x7e,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x20,0x20,0xfc,0x24,0x24,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 21839 問 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x23,0x22,0x22,0x22,0x23,0x22,0x20,0x20,0x20,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xe2,0x22,0x22,0x22,0xe2,0x22,0x02,0x0e,0x04 -+// 21840 啐 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x49,0x4a,0x4c,0x78,0x4b,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0xfe,0x90,0x90,0x90,0x68,0x46,0x24,0x20,0xfe,0x20,0x20,0x20,0x20,0x20 -+// 21841 啑 ; -+,0x00,0x00,0x3d,0x24,0x25,0x24,0x27,0x24,0x25,0x3c,0x25,0x01,0x02,0x02,0x04,0x08,0x20,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x00 -+// 21842 啒 ; -+,0x00,0x01,0x79,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x7a,0x4a,0x02,0x04,0x04,0x08,0x00,0xfe,0x02,0x02,0xfe,0x10,0x10,0x52,0x52,0x7e,0x12,0x10,0x92,0x92,0xfe,0x82 -+// 21843 啓 ; -+,0x08,0x04,0x1f,0x11,0x11,0x1f,0x11,0x10,0x20,0x20,0x4f,0x08,0x08,0x0f,0x08,0x00,0x20,0x20,0x3f,0x42,0x44,0xa4,0x18,0x18,0x27,0xc2,0xf8,0x08,0x08,0xf8,0x08,0x00 -+// 21844 啔 ; -+,0x08,0x04,0x04,0x1f,0x11,0x11,0x1f,0x10,0x10,0x27,0x24,0x44,0x04,0x07,0x04,0x00,0x10,0x14,0x12,0x1f,0x72,0x0c,0x18,0x29,0xc5,0xfb,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21845 啕 ; -+,0x00,0x00,0x3d,0x26,0x24,0x24,0x25,0x25,0x26,0x25,0x3d,0x25,0x00,0x00,0x00,0x00,0x80,0x80,0xff,0x81,0x81,0xf9,0x21,0xfd,0x21,0x25,0x25,0xfd,0x01,0x02,0x0a,0x04 -+// 21846 啖 ; -+,0x00,0x00,0x79,0x49,0x4a,0x48,0x49,0x4a,0x79,0x49,0x42,0x00,0x00,0x01,0x02,0x04,0x20,0x20,0x28,0x4c,0x50,0x88,0x26,0x24,0x23,0x2c,0x50,0x50,0x8c,0x07,0x02,0x00 -+// 21847 啗 ; -+,0x00,0x00,0x78,0x48,0x49,0x4a,0x49,0x49,0x49,0x79,0x49,0x41,0x01,0x01,0x01,0x00,0x40,0x40,0xfe,0x84,0x08,0x40,0x9e,0x02,0x02,0xde,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 21848 啘 ; -+,0x00,0x00,0x00,0x79,0x4a,0x4b,0x49,0x49,0x4a,0x7b,0x45,0x08,0x00,0x01,0x02,0x04,0x40,0x20,0x10,0xff,0x02,0x04,0xfe,0x52,0x52,0x52,0x5a,0x94,0x90,0x11,0x0f,0x00 -+// 21849 啙 ; -+,0x04,0x04,0x14,0x17,0x14,0x14,0x17,0x78,0x20,0x1f,0x11,0x11,0x11,0x1f,0x11,0x00,0x20,0x20,0x26,0xb8,0x20,0x21,0xa1,0x1f,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 21850 啚 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x00,0x7f,0x00,0x1f,0x10,0x13,0x12,0x13,0x10,0x1f,0x10,0x00,0xf8,0x08,0x08,0xf8,0x80,0xff,0x80,0xfc,0x04,0xe4,0x24,0xe4,0x04,0xfc,0x04 -+// 21851 啛 ; -+,0x00,0x03,0x78,0x4b,0x48,0x4b,0x48,0x4b,0x48,0x78,0x4f,0x01,0x00,0x00,0x01,0x06,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x80,0x80,0xfe,0x08,0x90,0x60,0x98,0x06 -+// 21852 啜 ; -+,0x03,0x78,0x4a,0x49,0x49,0x4a,0x4c,0x4b,0x78,0x4b,0x40,0x01,0x02,0x04,0x09,0x00,0xdc,0x44,0x94,0x88,0x8c,0x52,0x20,0x9c,0x44,0xa4,0x98,0x58,0x24,0x43,0x82,0x00 -+// 21853 啝 ; -+,0x00,0x00,0x03,0x78,0x48,0x4b,0x48,0x49,0x49,0x4a,0x7a,0x4c,0x04,0x08,0x00,0x00,0x00,0x60,0x80,0x8f,0x89,0xe9,0x89,0x89,0xc9,0xa9,0xa9,0x8f,0x89,0x80,0x80,0x80 -+// 21854 啞 ; -+,0x00,0x03,0x78,0x48,0x48,0x4b,0x4a,0x4a,0x7a,0x4b,0x40,0x00,0x00,0x00,0x07,0x00,0x00,0xff,0x48,0x48,0x48,0xdf,0x49,0x01,0x01,0xcf,0x48,0x48,0x48,0x4a,0xff,0x00 -+// 21855 啟 ; -+,0x08,0x04,0x3f,0x21,0x21,0x21,0x3f,0x20,0x2f,0x29,0x29,0x29,0x2f,0x49,0x40,0x01,0x10,0x18,0x10,0x20,0x3f,0x64,0xa4,0x24,0x24,0x28,0x10,0x18,0x24,0x46,0x83,0x02 -+// 21856 啠 ; -+,0x03,0x1c,0x10,0x1f,0x12,0x12,0x12,0x22,0x25,0x4f,0x08,0x08,0x08,0x0f,0x08,0x00,0x07,0x78,0x40,0x7f,0x44,0x44,0x44,0x84,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 21857 啡 ; -+,0x00,0x00,0x78,0x4b,0x48,0x48,0x4b,0x48,0x48,0x78,0x4f,0x40,0x00,0x00,0x00,0x00,0x90,0x90,0x90,0x9f,0x90,0x90,0x9e,0x90,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x90 -+// 21858 啢 ; -+,0x00,0x03,0x78,0x48,0x4b,0x4a,0x4b,0x4a,0x4a,0x7b,0x4b,0x02,0x02,0x02,0x02,0x00,0x00,0xff,0x20,0x20,0xfe,0x22,0x2a,0xaa,0xaa,0x76,0x76,0x22,0x22,0x2a,0x24,0x00 -+// 21859 啣 ; -+,0x01,0x01,0x79,0x4a,0x4c,0x4b,0x4c,0x4a,0x7a,0x4a,0x42,0x02,0x03,0x06,0x00,0x00,0x00,0x00,0xde,0x92,0x92,0xd2,0x92,0x92,0xd2,0x92,0x92,0xfa,0x94,0x10,0x10,0x00 -+// 21860 啤 ; -+,0x00,0x00,0x79,0x49,0x49,0x49,0x49,0x49,0x78,0x48,0x47,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x40,0xa0,0xff,0x20,0x20,0x20,0x20,0x20 -+// 21861 啥 ; -+,0x00,0x00,0x78,0x48,0x49,0x4a,0x4c,0x4b,0x48,0x78,0x49,0x41,0x01,0x01,0x01,0x00,0x20,0x20,0x50,0x88,0x04,0xfb,0x20,0xfe,0x20,0x20,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 21862 啦 ; -+,0x01,0x01,0x79,0x4f,0x49,0x49,0x49,0x49,0x4b,0x7d,0x41,0x01,0x01,0x05,0x02,0x00,0x10,0x08,0x08,0xff,0x00,0x02,0x22,0xa2,0x22,0x22,0x14,0x14,0x00,0x7f,0x00,0x00 -+// 21863 啧 ; -+,0x00,0x03,0x3c,0x25,0x24,0x27,0x24,0x25,0x25,0x3d,0x25,0x01,0x00,0x00,0x01,0x02,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0x24,0x24,0x24,0x50,0x88,0x06,0x04 -+// 21864 啨 ; -+,0x00,0x00,0x3f,0x24,0x25,0x24,0x27,0x24,0x25,0x3d,0x25,0x21,0x01,0x01,0x01,0x01,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 21865 啩 ; -+,0x00,0x00,0x78,0x4b,0x48,0x48,0x4b,0x48,0x48,0x7b,0x48,0x00,0x00,0x07,0x00,0x00,0x88,0x88,0x88,0xe8,0x88,0x8c,0xea,0x8b,0x89,0xe8,0x88,0x88,0xe8,0x08,0x08,0x08 -+// 21866 啪 ; -+,0x01,0x01,0x3d,0x27,0x25,0x25,0x25,0x25,0x27,0x3d,0x25,0x21,0x01,0x05,0x02,0x00,0x08,0x0c,0x08,0xd0,0x3e,0x22,0x62,0xa2,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 21867 啫 ; -+,0x00,0x00,0x3d,0x24,0x24,0x27,0x24,0x24,0x25,0x3e,0x24,0x08,0x00,0x00,0x00,0x00,0x20,0x20,0xfa,0x24,0x28,0xff,0x20,0x40,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 21868 啬 ; -+,0x00,0x00,0x3f,0x08,0x04,0x04,0x3f,0x00,0x1f,0x10,0x17,0x14,0x17,0x10,0x1f,0x10,0x80,0x80,0xfe,0x88,0x90,0x90,0xff,0x00,0xfc,0x04,0xf4,0x14,0xf4,0x04,0xfc,0x04 -+// 21869 啭 ; -+,0x01,0x01,0x7b,0x49,0x49,0x4a,0x4a,0x4b,0x48,0x78,0x49,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x3f,0x08,0x88,0xbf,0xc8,0x90,0xdf,0x82,0x94,0x88,0x84,0x82,0x80 -+// 21870 啮 ; -+,0x00,0x00,0x00,0x79,0x49,0x49,0x4b,0x48,0x4a,0x7a,0x4a,0x42,0x02,0x03,0x07,0x02,0x20,0x20,0x20,0x3e,0x20,0x20,0xff,0x20,0x32,0x22,0x22,0x52,0x8a,0x06,0xfe,0x02 -+// 21871 啯 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x01,0x00,0x00,0xfe,0x02,0xfe,0x22,0x22,0xfe,0x32,0x2a,0x2a,0xfe,0x02,0x02,0xfe,0x02,0x00 -+// 21872 啰 ; -+,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x48,0x48,0x78,0x49,0x42,0x00,0x00,0x00,0x01,0x06,0x00,0xff,0x49,0x49,0xff,0x41,0x40,0xfe,0x82,0x44,0x68,0x50,0x20,0x40,0x80,0x00 -+// 21873 啱 ; -+,0x00,0x01,0x3d,0x25,0x25,0x24,0x27,0x24,0x24,0x3c,0x24,0x21,0x02,0x04,0x00,0x00,0x20,0x22,0x22,0x22,0xfe,0x00,0xff,0x20,0x40,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 21874 啲 ; -+,0x00,0x00,0x00,0x01,0x3b,0x2a,0x2a,0x2a,0x2b,0x2a,0x3a,0x2a,0x23,0x02,0x02,0x00,0x00,0x88,0xcc,0x10,0xde,0x52,0x52,0x62,0xd2,0x4e,0x4a,0x42,0xc2,0x4a,0x44,0x00 -+// 21875 啳 ; -+,0x00,0x01,0x78,0x48,0x4b,0x48,0x4b,0x48,0x48,0x79,0x4a,0x44,0x00,0x00,0x00,0x00,0x24,0x26,0xa4,0xa8,0xfe,0x20,0xff,0x48,0xfc,0x8b,0x8a,0xb8,0x92,0x82,0x7e,0x00 -+// 21876 啴 ; -+,0x01,0x00,0x78,0x4b,0x4a,0x4a,0x4b,0x4a,0x4a,0x7b,0x48,0x07,0x00,0x00,0x00,0x00,0x04,0x88,0x50,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 21877 啵 ; -+,0x00,0x02,0x79,0x49,0x4c,0x4b,0x4a,0x49,0x49,0x79,0x4a,0x06,0x02,0x02,0x02,0x00,0x08,0x08,0x7f,0x49,0x4a,0x48,0x5e,0x62,0x62,0x54,0x54,0x48,0x98,0xa7,0xc2,0x00 -+// 21878 啶 ; -+,0x00,0x00,0x3d,0x25,0x26,0x25,0x24,0x24,0x25,0x3d,0x25,0x21,0x02,0x02,0x04,0x08,0x20,0x10,0xff,0x02,0x04,0xfe,0x20,0x20,0x20,0x3c,0x20,0x20,0xa0,0x60,0x3f,0x00 -+// 21879 啷 ; -+,0x01,0x00,0x7b,0x4a,0x4b,0x4a,0x4a,0x4b,0x7a,0x4a,0x42,0x02,0x02,0x07,0x02,0x00,0x00,0x9e,0xd2,0x52,0xd4,0x54,0x58,0xd4,0x52,0x11,0x91,0x5a,0xd4,0x50,0x10,0x00 -+// 21880 啸 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x48,0x4b,0x48,0x4a,0x7a,0x4b,0x03,0x02,0x04,0x04,0x00,0x40,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0x64,0xd4,0x5c,0x54,0x44,0x44,0x44,0x00 -+// 21881 啹 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x01,0x02,0x02,0x04,0x00,0xfe,0x02,0x02,0xfe,0x12,0x10,0xff,0x10,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 21882 啺 ; -+,0x00,0x3c,0x24,0x24,0x24,0x24,0x27,0x24,0x3c,0x25,0x21,0x02,0x00,0x03,0x00,0x03,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x2a,0x2a,0x4a,0x92,0x22,0xca,0x04 -+// 21883 啻 ; -+,0x01,0x00,0x3f,0x04,0x02,0x1f,0x20,0x2f,0x08,0x08,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xfe,0x10,0x20,0xff,0x82,0xf8,0x88,0xa8,0x90,0xf8,0x08,0x08,0xf8,0x08 -+// 21884 啼 ; -+,0x00,0x00,0x7b,0x48,0x48,0x4b,0x4a,0x4c,0x49,0x79,0x49,0x41,0x01,0x01,0x00,0x00,0x40,0x22,0xff,0x84,0x48,0xff,0x22,0x24,0xfc,0x24,0x24,0x24,0x34,0x28,0x20,0x20 -+// 21885 啽 ; -+,0x00,0x00,0x78,0x48,0x49,0x4a,0x4d,0x49,0x49,0x78,0x4b,0x40,0x01,0x01,0x02,0x04,0x20,0x20,0x50,0x8c,0xfe,0x01,0xfc,0x04,0xfc,0x88,0xff,0x88,0x08,0x08,0x08,0x08 -+// 21886 啾 ; -+,0x00,0x00,0x3f,0x29,0x29,0x2f,0x29,0x2b,0x2b,0x3d,0x25,0x09,0x11,0x01,0x01,0x01,0x08,0xc8,0x08,0x08,0x2a,0xeb,0x2c,0x88,0x48,0x48,0x14,0x14,0x12,0x23,0x22,0x40 -+// 21887 啿 ; -+,0x00,0x00,0x3f,0x24,0x24,0x24,0x24,0x24,0x24,0x3f,0x25,0x01,0x01,0x01,0x01,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0x88,0xff,0x48,0x64,0x46,0x84,0xff,0x00 -+// 21888 喀 ; -+,0x00,0x00,0x7b,0x4a,0x48,0x48,0x49,0x4a,0x78,0x48,0x43,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0xff,0x82,0x80,0xfc,0x88,0x48,0x30,0xcf,0x02,0xfc,0x84,0x84,0xfc,0x84 -+// 21889 喁 ; -+,0x00,0x7b,0x4a,0x4b,0x4a,0x4a,0x4b,0x48,0x7b,0x4a,0x42,0x02,0x03,0x02,0x02,0x02,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x20,0xff,0x21,0x29,0x3d,0xc9,0x01,0x05,0x02 -+// 21890 喂 ; -+,0x00,0x01,0x79,0x49,0x49,0x49,0x48,0x4f,0x49,0x79,0x49,0x01,0x01,0x03,0x01,0x00,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff,0x44,0x46,0x2c,0x10,0x4c,0x87,0x02,0x00 -+// 21891 喃 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x4a,0x4a,0x4a,0x4a,0x7a,0x43,0x02,0x02,0x02,0x02,0x00,0x20,0x20,0xfe,0x20,0xfe,0x02,0x8a,0x52,0xfa,0x22,0xfe,0x22,0x22,0x2a,0x24,0x00 -+// 21892 善 ; -+,0x04,0x02,0x3f,0x00,0x0f,0x00,0x3f,0x08,0x04,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x10,0x20,0xfe,0x80,0xf8,0x80,0xfe,0x88,0x90,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 21893 喅 ; -+,0x00,0x01,0x79,0x49,0x49,0x49,0x49,0x48,0x4b,0x78,0x49,0x00,0x00,0x07,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x20,0xfe,0x08,0x0c,0x88,0x50,0xff,0x00,0x00 -+// 21894 喆 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x3f,0x00,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x00,0x08,0x08,0x08,0x7f,0x08,0x08,0x7f,0x00,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x00 -+// 21895 喇 ; -+,0x00,0x00,0x3b,0x28,0x28,0x2b,0x2a,0x2a,0x2a,0x2b,0x28,0x39,0x22,0x04,0x00,0x00,0x82,0x82,0xf2,0x82,0x8a,0xea,0xaa,0xaa,0xaa,0xea,0x8a,0xc2,0xa2,0xa2,0x8a,0x84 -+// 21896 喈 ; -+,0x01,0x01,0x79,0x49,0x49,0x49,0x49,0x48,0x79,0x49,0x41,0x01,0x01,0x01,0x01,0x01,0x10,0x12,0x17,0xd8,0x11,0x51,0xaf,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 21897 喉 ; -+,0x01,0x01,0x79,0x4a,0x4a,0x4e,0x4a,0x4a,0x7b,0x4b,0x42,0x02,0x02,0x02,0x02,0x02,0x00,0xbc,0x04,0xff,0x00,0x40,0x7e,0x90,0x10,0xff,0x10,0x28,0x24,0x46,0x43,0x82 -+// 21898 喊 ; -+,0x00,0x00,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4b,0x4b,0x7b,0x45,0x05,0x08,0x10,0x00,0x10,0x14,0x12,0xff,0x10,0x10,0xf2,0x12,0xec,0x2c,0x28,0xed,0x15,0x23,0x41,0x00 -+// 21899 喋 ; -+,0x01,0x01,0x79,0x4b,0x49,0x49,0x49,0x49,0x48,0x7b,0x48,0x00,0x00,0x01,0x02,0x00,0x00,0x48,0x48,0xfe,0x48,0x78,0x00,0xfe,0x20,0xff,0x70,0xa8,0xac,0x27,0x22,0x20 -+// 21900 喌 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x08,0x08,0x08,0x2a,0x2a,0x4a,0x08,0x10,0x10,0x20,0x40,0x00,0x3e,0x22,0x22,0x3e,0x04,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x84,0x84,0x84 -+// 21901 喍 ; -+,0x00,0x00,0x7a,0x4a,0x4a,0x4a,0x4a,0x4f,0x78,0x4b,0x40,0x00,0x01,0x02,0x04,0x00,0x90,0x90,0x92,0xfc,0x90,0x91,0xcf,0x20,0x22,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 21902 喎 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x01,0x01,0x00,0xfc,0x84,0xf4,0x94,0x94,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 21903 喏 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x4b,0x48,0x48,0x78,0x49,0x02,0x04,0x00,0x00,0x00,0x88,0x88,0xfe,0x88,0xa8,0x22,0xff,0x40,0x40,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 21904 喐 ; -+,0x00,0x78,0x4f,0x49,0x49,0x4b,0x4b,0x4d,0x49,0x79,0x49,0x01,0x01,0x01,0x01,0x00,0x80,0x8f,0xe9,0x0a,0xea,0x2c,0x2c,0xea,0x2a,0xe9,0x2d,0x2a,0x28,0xa8,0x48,0x00 -+// 21905 喑 ; -+,0x00,0x00,0x3f,0x25,0x24,0x24,0x27,0x24,0x25,0x3d,0x25,0x01,0x01,0x01,0x01,0x01,0x40,0x20,0xfe,0x08,0xcc,0x90,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 21906 喒 ; -+,0x00,0x00,0x79,0x49,0x4b,0x4c,0x48,0x49,0x4e,0x79,0x49,0x01,0x01,0x01,0x01,0x01,0x88,0x88,0xec,0x2a,0x2a,0xc8,0x48,0xb0,0x0f,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 21907 喓 ; -+,0x00,0x03,0x3c,0x25,0x25,0x25,0x25,0x24,0x24,0x3f,0x24,0x20,0x00,0x00,0x01,0x06,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x40,0x42,0xff,0x88,0xc8,0x30,0x48,0x86,0x04 -+// 21908 喔 ; -+,0x00,0x7b,0x4a,0x4b,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x42,0x04,0x04,0x08,0x11,0x00,0x00,0xfe,0x02,0xfe,0x00,0xfe,0x20,0x44,0xfe,0x52,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 21909 喕 ; -+,0x00,0x03,0x78,0x48,0x49,0x49,0x49,0x49,0x49,0x79,0x49,0x41,0x01,0x01,0x01,0x00,0x00,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0xfe,0x02,0x00 -+// 21910 喖 ; -+,0x00,0x00,0x78,0x4f,0x48,0x49,0x49,0x49,0x4a,0x7a,0x44,0x08,0x00,0x00,0x00,0x00,0x84,0x84,0x84,0xe4,0x9f,0x84,0xc4,0xa4,0x9f,0x91,0x91,0x91,0x91,0x9f,0x91,0x80 -+// 21911 喗 ; -+,0x00,0x01,0x7a,0x4a,0x49,0x48,0x49,0x49,0x49,0x79,0x49,0x40,0x07,0x00,0x00,0x00,0x00,0xff,0x21,0x22,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 21912 喘 ; -+,0x00,0x01,0x7d,0x45,0x45,0x44,0x47,0x44,0x44,0x7d,0x45,0x01,0x01,0x01,0x01,0x01,0x10,0x12,0x12,0x12,0xfe,0x00,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x4a,0x4a,0x42,0x04 -+// 21913 喙 ; -+,0x00,0x00,0x78,0x49,0x48,0x4b,0x48,0x48,0x7f,0x48,0x41,0x06,0x01,0x06,0x00,0x00,0x80,0xfc,0x88,0xf8,0x08,0xff,0x40,0xc4,0x28,0xd0,0x38,0x54,0x93,0x12,0x50,0x20 -+// 21914 喚 ; -+,0x00,0x78,0x48,0x49,0x4b,0x4d,0x49,0x49,0x79,0x48,0x43,0x00,0x00,0x00,0x01,0x02,0x40,0x7c,0x88,0x10,0xfe,0x4a,0x4a,0x86,0x22,0x20,0xff,0x50,0x50,0x8c,0x07,0x02 -+// 21915 喛 ; -+,0x00,0x03,0x79,0x48,0x4b,0x48,0x48,0x4b,0x48,0x78,0x48,0x41,0x02,0x04,0x08,0x03,0x1e,0xe4,0x26,0x94,0xfe,0x40,0x42,0xff,0x40,0xfe,0xc4,0x28,0x10,0x6c,0x87,0x02 -+// 21916 喜 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x0f,0x08,0x0f,0x02,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x80,0xfe,0x80,0xfc,0x00,0xf8,0x08,0xf8,0x20,0xff,0x00,0xf8,0x08,0x08,0xf8,0x00 -+// 21917 喝 ; -+,0x00,0x3d,0x25,0x25,0x25,0x25,0x24,0x25,0x3d,0x23,0x05,0x01,0x01,0x00,0x00,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x80,0xff,0x11,0x11,0x29,0x45,0xfd,0x01,0x0a,0x04 -+// 21918 喞 ; -+,0x00,0x01,0x7b,0x4a,0x4b,0x4a,0x4a,0x4b,0x48,0x7a,0x4b,0x02,0x02,0x02,0x01,0x00,0x80,0x0f,0xe9,0x29,0xe9,0x29,0x29,0xe9,0x09,0x09,0xcd,0x0a,0x28,0x28,0xe8,0x08 -+// 21919 喟 ; -+,0x01,0x7d,0x45,0x45,0x45,0x45,0x44,0x45,0x7d,0x45,0x41,0x01,0x01,0x01,0x01,0x01,0xff,0x11,0xff,0x11,0x11,0xff,0x00,0xff,0x01,0xff,0x01,0xff,0x01,0x01,0x05,0x02 -+// 21920 喠 ; -+,0x00,0x03,0x78,0x4f,0x48,0x49,0x49,0x49,0x49,0x79,0x48,0x43,0x00,0x00,0x07,0x00,0x1e,0xe0,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 21921 喡 ; -+,0x00,0x01,0x3c,0x24,0x27,0x24,0x25,0x25,0x25,0x3c,0x25,0x01,0x01,0x03,0x00,0x00,0x40,0xf8,0x48,0x48,0xfe,0x00,0xfc,0x04,0xfc,0x20,0xfe,0x20,0x20,0xff,0x20,0x20 -+// 21922 喢 ; -+,0x00,0x03,0x00,0x78,0x4f,0x48,0x48,0x4b,0x4a,0x7a,0x4b,0x42,0x02,0x03,0x02,0x00,0x1e,0xe0,0x20,0x20,0xff,0x20,0xa0,0x2e,0x22,0x22,0xae,0x22,0x22,0xfe,0x02,0x00 -+// 21923 喣 ; -+,0x00,0x00,0x3c,0x24,0x25,0x26,0x24,0x24,0x3c,0x24,0x00,0x14,0x12,0x23,0x22,0x00,0x80,0x80,0xfc,0x84,0xf4,0x94,0x94,0xf4,0x84,0x14,0x08,0x90,0x4c,0x36,0x24,0x00 -+// 21924 喤 ; -+,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x44,0x44,0x7d,0x44,0x40,0x00,0x00,0x00,0x01,0x20,0x40,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0xff -+// 21925 喥 ; -+,0x00,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x04,0x04,0x08,0x13,0x40,0x22,0xff,0x48,0x48,0xff,0x48,0x78,0x00,0xfe,0x44,0x28,0x10,0x6c,0x87,0x02 -+// 21926 喦 ; -+,0x00,0x07,0x04,0x04,0x07,0x00,0x3e,0x22,0x22,0x3e,0x00,0x10,0x10,0x10,0x1f,0x00,0x00,0xf0,0x10,0x10,0xf0,0x80,0xbe,0xa2,0xa2,0xbe,0x80,0x84,0x84,0x84,0xfc,0x00 -+// 21927 喧 ; -+,0x00,0x00,0x79,0x4a,0x48,0x49,0x48,0x49,0x49,0x79,0x49,0x01,0x01,0x00,0x07,0x00,0x40,0x20,0xfe,0x02,0x04,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 21928 喨 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x48,0x48,0x7b,0x4a,0x44,0x40,0x00,0x01,0x02,0x04,0x40,0x20,0xfe,0x00,0xf8,0x88,0xf8,0x00,0xff,0x02,0xf0,0x90,0x91,0x11,0x0f,0x00 -+// 21929 喩 ; -+,0x00,0x78,0x48,0x48,0x4b,0x4c,0x4b,0x4a,0x7b,0x4a,0x43,0x02,0x02,0x02,0x02,0x00,0x20,0x20,0x50,0x8c,0xfb,0x00,0xca,0x4a,0xd4,0x64,0xe8,0x54,0x52,0x49,0xc9,0x00 -+// 21930 喪 ; -+,0x00,0x3f,0x00,0x1e,0x12,0x12,0x1e,0x00,0x7f,0x08,0x08,0x08,0x08,0x0a,0x1c,0x08,0x80,0xfe,0x80,0xbc,0xa4,0xa4,0xbc,0x80,0xff,0x88,0x9c,0x50,0x20,0x18,0x0e,0x04 -+// 21931 喫 ; -+,0x01,0x01,0x7f,0x49,0x4f,0x49,0x4f,0x49,0x49,0x79,0x47,0x00,0x00,0x00,0x03,0x0c,0x00,0x00,0xde,0x0a,0xca,0x12,0xd2,0x2a,0x44,0x20,0xfe,0x20,0x50,0x8c,0x07,0x02 -+// 21932 喬 ; -+,0x00,0x1f,0x01,0x7f,0x04,0x0b,0x12,0x63,0x00,0x0f,0x08,0x0b,0x0a,0x0b,0x08,0x08,0x3c,0xc0,0x02,0xff,0x10,0xfc,0x17,0xf2,0x00,0xfc,0x04,0xf4,0x14,0xf4,0x04,0x0c -+// 21933 喭 ; -+,0x00,0x03,0x79,0x48,0x48,0x4b,0x4a,0x4a,0x7a,0x4b,0x4a,0x02,0x04,0x04,0x0b,0x10,0x40,0xfe,0x08,0x8c,0x90,0xfe,0x00,0x0c,0x70,0x8c,0x30,0xc3,0x0c,0x70,0x80,0x00 -+// 21934 單 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x00,0x00,0x00,0x3e,0x22,0x22,0x3e,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0x80,0x80,0x80,0x80 -+// 21935 喯 ; -+,0x00,0x00,0x7b,0x48,0x48,0x49,0x4f,0x48,0x48,0x78,0x4b,0x40,0x01,0x01,0x02,0x04,0x20,0x24,0xfe,0x50,0x88,0x27,0xfe,0x20,0xa8,0x88,0xff,0x88,0x08,0x08,0x08,0x08 -+// 21936 喰 ; -+,0x00,0x00,0x78,0x49,0x4a,0x4d,0x49,0x49,0x49,0x79,0x49,0x41,0x01,0x01,0x03,0x01,0x40,0x40,0xa0,0x58,0x27,0xfa,0x08,0xf8,0x08,0xf8,0x24,0x2c,0x18,0x4e,0x84,0x00 -+// 21937 喱 ; -+,0x00,0x03,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x04,0x04,0x09,0x00,0xff,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xfe,0x10,0x10,0x10,0xff -+// 21938 喲 ; -+,0x01,0x01,0x79,0x4a,0x4a,0x4f,0x49,0x4a,0x7f,0x48,0x48,0x05,0x05,0x08,0x00,0x00,0x10,0x98,0x10,0x5e,0xa2,0xa2,0x42,0xa2,0xd2,0x5a,0x92,0x42,0x42,0x02,0x0a,0x04 -+// 21939 喳 ; -+,0x00,0x00,0x7b,0x48,0x48,0x49,0x4a,0x4d,0x49,0x79,0x49,0x01,0x00,0x00,0x07,0x00,0x20,0x20,0xff,0x70,0xa8,0x24,0x23,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x00,0xff,0x00 -+// 21940 喴 ; -+,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x4a,0x4a,0x4b,0x7a,0x4a,0x02,0x02,0x05,0x04,0x08,0x08,0x0a,0xff,0x08,0x08,0xea,0x0b,0x4a,0xea,0xa4,0xa5,0x4d,0xab,0x13,0x21,0x00 -+// 21941 喵 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x4b,0x4a,0x4a,0x7b,0x4a,0x42,0x02,0x03,0x02,0x00,0x88,0x88,0xff,0x88,0x88,0x88,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 21942 営 ; -+,0x09,0x04,0x04,0x1f,0x10,0x27,0x04,0x04,0x07,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x08,0x8c,0x90,0xff,0x02,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 21943 喷 ; -+,0x00,0x00,0x7b,0x48,0x48,0x4b,0x48,0x49,0x79,0x49,0x41,0x01,0x00,0x00,0x01,0x02,0x20,0x20,0xfe,0xa8,0xa8,0xff,0x88,0xfc,0x24,0x24,0x24,0x54,0x48,0x86,0x03,0x02 -+// 21944 喸 ; -+,0x00,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x1f,0x11,0x11,0x1f,0x11,0x90,0x88,0xfe,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x88,0x40,0x4c,0x70,0x42,0x43,0x3e -+// 21945 喹 ; -+,0x00,0x00,0x7b,0x48,0x48,0x49,0x4f,0x48,0x4b,0x78,0x40,0x01,0x00,0x00,0x07,0x00,0x40,0x40,0xfe,0x50,0xa8,0x27,0xfe,0x20,0xfe,0x20,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 21946 喺 ; -+,0x00,0x00,0x78,0x49,0x49,0x4b,0x4d,0x49,0x49,0x79,0x49,0x01,0x01,0x01,0x01,0x01,0x80,0xce,0xb8,0x10,0xa6,0x78,0x14,0x22,0x7f,0x0a,0x2c,0x2a,0x4b,0x8a,0x28,0x10 -+// 21947 喻 ; -+,0x00,0x00,0x3c,0x24,0x27,0x24,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x01,0x00,0x20,0x20,0x50,0x8c,0x7b,0x00,0xe2,0x2a,0xea,0x2a,0xea,0x2a,0x22,0x2a,0x64,0x00 -+// 21948 喼 ; -+,0x00,0x00,0x78,0x49,0x49,0x4a,0x4d,0x48,0x49,0x78,0x48,0x42,0x02,0x04,0x00,0x00,0x80,0x80,0xfc,0x08,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x20,0x9a,0x91,0x85,0x7c,0x00 -+// 21949 喽 ; -+,0x00,0x01,0x78,0x4b,0x48,0x48,0x49,0x4e,0x48,0x7b,0x49,0x41,0x00,0x00,0x01,0x02,0x24,0x26,0xa8,0xff,0x70,0xa8,0x27,0xa2,0x80,0xfe,0x08,0x90,0x70,0x8c,0x06,0x04 -+// 21950 喾 ; -+,0x09,0x06,0x04,0x1f,0x14,0x24,0x07,0x08,0x00,0x3f,0x00,0x07,0x04,0x04,0x07,0x04,0x08,0xcc,0x90,0xff,0x82,0x84,0xf8,0x80,0x80,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 21951 喿 ; -+,0x07,0x04,0x07,0x00,0x3f,0x21,0x3f,0x21,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0xf0,0x10,0xf0,0x00,0x3e,0x22,0x22,0x3e,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 21952 嗀 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x00,0x7f,0x40,0x3f,0x00,0x1f,0x11,0x11,0x1f,0x11,0x00,0x00,0x3c,0xa4,0x24,0xa4,0x27,0xc0,0xbe,0x42,0x24,0x24,0x18,0x18,0x26,0x43,0x82 -+// 21953 嗁 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x42,0x05,0x05,0x0a,0x14,0x09,0x0e,0xf0,0x20,0x3c,0x20,0xfe,0xa4,0xf8,0xa2,0x9e,0x80,0x78,0x48,0x49,0x8f,0x00 -+// 21954 嗂 ; -+,0x00,0x03,0x78,0x49,0x48,0x4a,0x4b,0x4a,0x4c,0x7b,0x48,0x4a,0x02,0x02,0x03,0x00,0x1e,0xe0,0x02,0x23,0x92,0x94,0xfe,0x20,0x20,0xfe,0x20,0x22,0x22,0x22,0xfe,0x00 -+// 21955 嗃 ; -+,0x00,0x00,0x7b,0x48,0x49,0x49,0x49,0x48,0x4b,0x7a,0x4a,0x02,0x02,0x02,0x02,0x02,0x40,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x02,0xfa,0x8a,0xfa,0x02,0x0a,0x04 -+// 21956 嗄 ; -+,0x03,0x00,0x79,0x49,0x49,0x49,0x49,0x49,0x79,0x48,0x41,0x02,0x04,0x08,0x03,0x0c,0xfe,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xfc,0x88,0x70,0xd8,0x07,0x02 -+// 21957 嗅 ; -+,0x00,0x00,0x79,0x49,0x49,0x49,0x49,0x49,0x49,0x78,0x4f,0x40,0x01,0x02,0x04,0x08,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xff,0xa0,0x10,0x0c,0x07,0x02 -+// 21958 嗆 ; -+,0x00,0x00,0x78,0x49,0x4a,0x4d,0x49,0x49,0x79,0x49,0x41,0x01,0x02,0x02,0x04,0x08,0x20,0x50,0x88,0x44,0x23,0xfe,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 21959 嗇 ; -+,0x00,0x1f,0x04,0x04,0x0a,0x11,0x3f,0x00,0x0f,0x08,0x0b,0x0a,0x0b,0x08,0x0f,0x00,0x40,0xfe,0x48,0x48,0x54,0x62,0xff,0x00,0xfc,0x04,0xf4,0x14,0xf4,0x04,0xfc,0x00 -+// 21960 嗈 ; -+,0x01,0x01,0x7a,0x49,0x49,0x49,0x49,0x49,0x48,0x7b,0x4a,0x02,0x03,0x02,0x02,0x01,0x22,0x24,0x48,0x24,0xfe,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0xfe,0x00,0x01,0xff -+// 21961 嗉 ; -+,0x00,0x03,0x78,0x4b,0x48,0x4f,0x48,0x48,0x49,0x78,0x49,0x40,0x01,0x02,0x04,0x00,0x20,0xfe,0x20,0xfe,0x20,0xff,0x40,0x88,0xf0,0x44,0xfe,0x22,0x28,0x24,0xa4,0x40 -+// 21962 嗊 ; -+,0x00,0x01,0x78,0x4b,0x48,0x49,0x49,0x49,0x49,0x79,0x49,0x01,0x00,0x01,0x02,0x04,0x00,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04,0x03,0x02 -+// 21963 嗋 ; -+,0x00,0x03,0x78,0x4a,0x49,0x4f,0x4a,0x4c,0x49,0x79,0x49,0x01,0x01,0x01,0x01,0x01,0x40,0xfc,0x44,0x94,0x08,0xdf,0x49,0xd3,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 21964 嗌 ; -+,0x01,0x00,0x78,0x4f,0x48,0x48,0x48,0x49,0x4a,0x7b,0x4a,0x02,0x02,0x02,0x07,0x00,0x04,0xc6,0x88,0xff,0x80,0xc8,0x84,0x06,0x04,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 21965 嗍 ; -+,0x00,0x02,0x79,0x4f,0x48,0x4a,0x4a,0x4a,0x4b,0x7a,0x48,0x01,0x02,0x04,0x18,0x00,0x20,0x2f,0x49,0xe9,0x8f,0xa9,0xa9,0xa9,0xef,0xa9,0x89,0x11,0x11,0x25,0x42,0x00 -+// 21966 嗎 ; -+,0x00,0x03,0x7a,0x4b,0x4a,0x4b,0x4a,0x4a,0x4b,0x78,0x4a,0x02,0x04,0x04,0x00,0x00,0x00,0xfe,0x20,0xfe,0x20,0xfe,0x20,0x20,0xfe,0x02,0xaa,0xaa,0xaa,0xa2,0x0a,0x04 -+// 21967 嗏 ; -+,0x00,0x00,0x7f,0x48,0x48,0x48,0x48,0x49,0x4e,0x79,0x48,0x01,0x02,0x04,0x08,0x00,0x88,0x88,0xff,0x88,0x20,0x50,0x8c,0x27,0x22,0xfc,0x20,0x28,0x24,0x26,0xa4,0x40 -+// 21968 嗐 ; -+,0x00,0x00,0x3d,0x26,0x27,0x24,0x25,0x24,0x27,0x3c,0x25,0x21,0x01,0x01,0x01,0x00,0x40,0x20,0xff,0x22,0xfe,0x20,0xfe,0x20,0xff,0x20,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 21969 嗑 ; -+,0x00,0x00,0x79,0x48,0x4b,0x48,0x48,0x4b,0x49,0x79,0x49,0x01,0x01,0x01,0x07,0x00,0x20,0x20,0xfe,0x20,0xff,0x40,0x84,0xfe,0x02,0xfc,0x54,0x54,0x54,0x54,0xff,0x00 -+// 21970 嗒 ; -+,0x00,0x00,0x7b,0x48,0x48,0x48,0x48,0x4b,0x4c,0x78,0x49,0x01,0x01,0x01,0x01,0x00,0x88,0x88,0xff,0xa8,0x20,0x50,0x8c,0xfb,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 21971 嗓 ; -+,0x01,0x00,0x78,0x49,0x4b,0x48,0x4b,0x49,0x4e,0x7f,0x48,0x00,0x01,0x02,0x04,0x00,0xf8,0x88,0x70,0x8c,0xde,0x52,0x8c,0x92,0x61,0xff,0x60,0xb0,0x2c,0x27,0x22,0x20 -+// 21972 嗔 ; -+,0x00,0x03,0x7c,0x44,0x44,0x44,0x44,0x44,0x44,0x7c,0x40,0x07,0x00,0x01,0x02,0x04,0x20,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x88,0x04,0x03,0x02 -+// 21973 嗕 ; -+,0x01,0x01,0x79,0x49,0x49,0x49,0x49,0x49,0x49,0x7a,0x4a,0x02,0x02,0x04,0x04,0x08,0xfe,0x00,0xfc,0x00,0xff,0x52,0x54,0x48,0x67,0x08,0xff,0x48,0x28,0x08,0x28,0x10 -+// 21974 嗖 ; -+,0x00,0x00,0x7b,0x4a,0x4b,0x4a,0x4a,0x4b,0x48,0x79,0x48,0x00,0x00,0x00,0x01,0x06,0x20,0xa0,0x2e,0x22,0xae,0x22,0x22,0xfe,0x00,0xfe,0x84,0x48,0x30,0x4c,0x87,0x02 -+// 21975 嗗 ; -+,0x00,0x00,0x7c,0x44,0x44,0x45,0x45,0x46,0x7c,0x44,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x84,0xf4,0x94,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 21976 嗘 ; -+,0x00,0x01,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x3d,0x24,0x21,0x00,0x00,0x00,0x03,0x0f,0xf0,0x91,0x4a,0x30,0x48,0xfc,0x20,0xc4,0xfe,0x10,0xff,0x30,0x48,0x87,0x02 -+// 21977 嗙 ; -+,0x00,0x00,0x7b,0x48,0x48,0x49,0x49,0x4a,0x4b,0x78,0x48,0x00,0x00,0x01,0x02,0x04,0x40,0x20,0xff,0x84,0x48,0xff,0x42,0x24,0xff,0x40,0x7c,0x84,0x84,0x04,0x28,0x10 -+// 21978 嗚 ; -+,0x00,0x00,0x79,0x49,0x49,0x49,0x49,0x49,0x49,0x79,0x48,0x02,0x02,0x02,0x04,0x00,0x20,0x40,0xfc,0x04,0x04,0xfc,0x00,0xff,0x00,0xfe,0x12,0xaa,0xaa,0xa2,0x0a,0x04 -+// 21979 嗛 ; -+,0x01,0x00,0x7f,0x48,0x48,0x4b,0x48,0x4b,0x48,0x7b,0x49,0x42,0x02,0x04,0x08,0x10,0x04,0x88,0xfe,0x90,0x90,0xfc,0x94,0xff,0x94,0xfc,0x90,0x98,0x94,0x93,0x92,0x90 -+// 21980 嗜 ; -+,0x00,0x01,0x78,0x4b,0x48,0x48,0x49,0x4e,0x48,0x78,0x49,0x01,0x01,0x01,0x01,0x01,0x20,0xfa,0x24,0xff,0x10,0x68,0xfa,0x83,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 21981 嗝 ; -+,0x00,0x03,0x78,0x49,0x49,0x49,0x48,0x4b,0x7a,0x4a,0x42,0x02,0x02,0x02,0x02,0x00,0x00,0xff,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x8a,0x52,0xfa,0x22,0x22,0x2a,0x24,0x00 -+// 21982 嗞 ; -+,0x00,0x01,0x78,0x48,0x4b,0x49,0x49,0x49,0x4a,0x7f,0x48,0x41,0x02,0x07,0x02,0x00,0x00,0x08,0x8c,0x90,0xff,0x04,0x88,0x0a,0x53,0x9e,0x84,0x08,0x4a,0xdf,0x51,0x00 -+// 21983 嗟 ; -+,0x01,0x00,0x3c,0x27,0x24,0x25,0x24,0x24,0x27,0x3c,0x25,0x21,0x02,0x04,0x0b,0x00,0x08,0xcc,0x90,0xff,0x40,0xfe,0x40,0x40,0xff,0x80,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 21984 嗠 ; -+,0x07,0x78,0x12,0x49,0x28,0x3e,0x02,0x04,0x08,0x0e,0x79,0x08,0x08,0x28,0x10,0x00,0x20,0x20,0x7e,0x44,0xa4,0xa8,0x10,0x28,0x46,0xfd,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 21985 嗡 ; -+,0x00,0x00,0x78,0x49,0x4a,0x4d,0x48,0x4b,0x48,0x79,0x48,0x01,0x06,0x00,0x01,0x00,0x90,0xd0,0x88,0x44,0x8b,0xfc,0x88,0xde,0x42,0x52,0xca,0x46,0x4a,0x52,0x4a,0x84 -+// 21986 嗢 ; -+,0x00,0x01,0x79,0x49,0x49,0x49,0x49,0x49,0x48,0x7b,0x4a,0x02,0x02,0x02,0x07,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 21987 嗣 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x00,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2a,0x21,0x00,0x00,0xbe,0x82,0xba,0x82,0x02,0xba,0xaa,0xaa,0xaa,0xba,0xaa,0x82,0x82,0x8a,0x04 -+// 21988 嗤 ; -+,0x00,0x01,0x79,0x49,0x48,0x4b,0x48,0x48,0x79,0x49,0x41,0x01,0x00,0x00,0x03,0x00,0x20,0x24,0x24,0xfc,0x20,0xfe,0x20,0x20,0xfc,0x24,0x24,0xfc,0x22,0x3f,0xc2,0x00 -+// 21989 嗥 ; -+,0x00,0x00,0x79,0x49,0x49,0x49,0x49,0x48,0x4b,0x78,0x48,0x43,0x0d,0x00,0x00,0x00,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x50,0x8c,0x27,0xfe,0x20,0x20,0x20 -+// 21990 嗦 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x4a,0x48,0x49,0x78,0x49,0x40,0x01,0x01,0x02,0x04,0x00,0x20,0x20,0xfe,0x20,0xfe,0x42,0x88,0xf8,0x64,0xfe,0x24,0x28,0xa4,0x26,0xa4,0x40 -+// 21991 嗧 ; -+,0x04,0x3f,0x05,0x09,0x15,0x62,0x03,0x0c,0x77,0x00,0x0f,0x09,0x0f,0x09,0x09,0x08,0x00,0x3e,0x22,0x22,0x3e,0x80,0x60,0x18,0xf7,0x00,0xfc,0x24,0xfc,0x24,0x24,0x0c -+// 21992 嗨 ; -+,0x04,0x03,0x7a,0x4c,0x4a,0x4a,0x49,0x49,0x79,0x4a,0x42,0x0e,0x02,0x02,0x02,0x02,0x40,0x40,0x7f,0x80,0x7e,0x42,0x52,0x4a,0xff,0x52,0x4a,0x4a,0x7f,0x02,0x0a,0x04 -+// 21993 嗩 ; -+,0x00,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x01,0x02,0x10,0x92,0x54,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x48,0xc6,0x03,0x02 -+// 21994 嗪 ; -+,0x00,0x00,0x7f,0x48,0x4b,0x48,0x4f,0x49,0x4a,0x7c,0x4b,0x10,0x01,0x02,0x04,0x00,0x40,0x40,0xfc,0x40,0xfc,0x80,0xfe,0x18,0xe4,0x23,0xfc,0xb0,0x2c,0x26,0x24,0x20 -+// 21995 嗫 ; -+,0x03,0x00,0x78,0x48,0x48,0x48,0x4b,0x48,0x7b,0x4a,0x42,0x01,0x02,0x02,0x04,0x08,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xff,0x08,0xde,0x52,0x52,0x8c,0x92,0x52,0x61,0x41 -+// 21996 嗬 ; -+,0x00,0x00,0x7b,0x48,0x49,0x49,0x49,0x4b,0x7b,0x45,0x49,0x41,0x01,0x01,0x01,0x01,0x88,0x8a,0xff,0x88,0x08,0x7f,0x04,0x74,0x54,0x54,0x74,0x54,0x44,0x04,0x14,0x08 -+// 21997 嗭 ; -+,0x00,0x1f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x04,0x3f,0x00,0x1f,0x11,0x1f,0x00,0x40,0xfe,0x80,0xf8,0x08,0xf8,0x08,0x88,0x78,0x08,0xff,0x40,0x4c,0x70,0x42,0x3e -+// 21998 嗮 ; -+,0x00,0x07,0x75,0x55,0x55,0x55,0x57,0x55,0x55,0x55,0x57,0x75,0x05,0x00,0x00,0x00,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x55,0x67,0x41,0x41,0x7f,0x41,0x41,0x00 -+// 21999 嗯 ; -+,0x00,0x03,0x7a,0x4a,0x4b,0x4a,0x4a,0x4a,0x4b,0x78,0x48,0x45,0x05,0x05,0x08,0x00,0x00,0xfe,0x22,0x22,0xfe,0x22,0x52,0x8a,0xfe,0x00,0x44,0x32,0x25,0x05,0xfc,0x00 -+// 22000 嗰 ; -+,0x00,0x00,0x79,0x49,0x4b,0x4b,0x4d,0x49,0x49,0x79,0x49,0x01,0x01,0x01,0x01,0x00,0x80,0xff,0x49,0x49,0x7f,0x49,0x49,0x5d,0x55,0x55,0x5d,0x55,0x41,0x7f,0x41,0x00 -+// 22001 嗱 ; -+,0x00,0x00,0x78,0x49,0x4e,0x49,0x49,0x49,0x48,0x79,0x48,0x41,0x00,0x07,0x00,0x00,0x20,0x50,0x8c,0x7b,0x02,0xfc,0x04,0xfc,0x00,0xfe,0x10,0xfe,0x10,0xff,0x10,0x70 -+// 22002 嗲 ; -+,0x00,0x01,0x7a,0x4c,0x48,0x4b,0x48,0x4f,0x48,0x7b,0x48,0x00,0x03,0x00,0x00,0x07,0x88,0x86,0x52,0x20,0x98,0x47,0xfa,0x90,0x60,0xc0,0x7e,0x84,0x48,0x30,0xc0,0x00 -+// 22003 嗳 ; -+,0x00,0x7b,0x4d,0x48,0x4b,0x4a,0x4c,0x4b,0x78,0x48,0x49,0x01,0x02,0x04,0x08,0x03,0x0e,0xf0,0x46,0xa8,0xff,0x42,0x44,0xff,0x80,0xfc,0x44,0x28,0x10,0x2c,0xc7,0x02 -+// 22004 嗴 ; -+,0x01,0x00,0x7f,0x48,0x48,0x49,0x48,0x4b,0x48,0x78,0x48,0x41,0x01,0x02,0x04,0x08,0x08,0x90,0xfe,0x40,0x40,0xfc,0x40,0xfe,0xa4,0xa4,0xaa,0x3f,0x20,0x21,0x1f,0x00 -+// 22005 嗵 ; -+,0x00,0x04,0x7a,0x4a,0x48,0x48,0x4e,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x05,0x08,0x10,0x00,0xfe,0x04,0x08,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x96,0x00,0xff,0x00 -+// 22006 嗶 ; -+,0x00,0x03,0x7a,0x4b,0x4a,0x4a,0x4b,0x49,0x4f,0x49,0x7b,0x48,0x07,0x00,0x00,0x00,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x24,0xff,0x24,0xff,0x20,0xff,0x20,0x20,0x20 -+// 22007 嗷 ; -+,0x01,0x01,0x7f,0x49,0x4f,0x49,0x49,0x4f,0x7a,0x4b,0x42,0x02,0x04,0x04,0x0a,0x11,0x08,0x0c,0xd0,0x10,0xdf,0x22,0x22,0xd4,0x14,0x94,0x88,0x88,0x94,0x96,0xa3,0x42 -+// 22008 嗸 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x08,0x0f,0x11,0x29,0x46,0x0f,0x08,0x08,0x0f,0x08,0x10,0x98,0x10,0xbf,0x22,0xe2,0x14,0x08,0x14,0x22,0x41,0xfc,0x04,0x04,0xfc,0x04 -+// 22009 嗹 ; -+,0x00,0x04,0x7a,0x4a,0x48,0x48,0x4e,0x4a,0x4a,0x7a,0x4a,0x42,0x02,0x05,0x08,0x00,0x10,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0xff,0x00 -+// 22010 嗺 ; -+,0x00,0x02,0x7a,0x4b,0x49,0x49,0x4b,0x4e,0x4b,0x7a,0x4a,0x43,0x02,0x02,0x03,0x02,0x20,0x22,0x22,0xfe,0x40,0x20,0xfe,0x20,0xfc,0x20,0x20,0xfc,0x20,0x20,0xfe,0x00 -+// 22011 嗻 ; -+,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x4b,0x4a,0x4a,0x7a,0x4a,0x44,0x05,0x0a,0x14,0x00,0x40,0x20,0xfe,0x00,0x48,0x48,0xfe,0x48,0x48,0x78,0x00,0xa4,0x52,0x5b,0x52,0x00 -+// 22012 嗼 ; -+,0x01,0x07,0x79,0x48,0x4b,0x4a,0x4b,0x4a,0x4b,0x78,0x4f,0x40,0x00,0x01,0x06,0x18,0x08,0xfe,0x08,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xff,0x40,0xa0,0x18,0x0e,0x04 -+// 22013 嗽 ; -+,0x01,0x01,0x77,0x51,0x57,0x55,0x55,0x57,0x75,0x53,0x45,0x05,0x09,0x11,0x01,0x01,0x08,0x08,0xe8,0x1f,0xd1,0x6a,0x48,0xc8,0x08,0x88,0x54,0x54,0x12,0x23,0x22,0x40 -+// 22014 嗾 ; -+,0x04,0x03,0x7a,0x4f,0x4a,0x4a,0x4b,0x4a,0x7a,0x4a,0x42,0x04,0x04,0x0a,0x11,0x00,0x10,0x18,0x10,0xbf,0x20,0x50,0x9e,0xa8,0xc8,0xbf,0x88,0x94,0x94,0xa2,0x21,0x40 -+// 22015 嗿 ; -+,0x00,0x00,0x3c,0x25,0x26,0x24,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x00,0x01,0x06,0x20,0x50,0x88,0x24,0xfb,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x07,0x02 -+// 22016 嘀 ; -+,0x00,0x00,0x7f,0x49,0x48,0x4b,0x4a,0x4a,0x7a,0x4a,0x42,0x02,0x02,0x02,0x02,0x02,0x40,0x20,0xff,0x04,0x88,0xfe,0x22,0xfa,0x22,0xfa,0x8a,0x8a,0xfa,0x82,0x0a,0x04 -+// 22017 嘁 ; -+,0x00,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x4b,0x4a,0x7a,0x4a,0x05,0x05,0x0a,0x09,0x10,0x08,0x0c,0x0a,0xff,0x48,0x68,0x49,0xf9,0x0a,0x4a,0x64,0x55,0x4d,0x53,0x63,0x81 -+// 22018 嘂 ; -+,0x00,0x3c,0x24,0x25,0x3d,0x25,0x21,0x01,0x3d,0x25,0x25,0x24,0x3c,0x24,0x20,0x00,0x40,0x5e,0x52,0x52,0x5e,0x52,0x40,0x40,0x5e,0xd2,0x52,0x52,0x5e,0x52,0x40,0x00 -+// 22019 嘃 ; -+,0x00,0x7b,0x4a,0x4a,0x4a,0x4b,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x02,0x04,0x04,0x08,0x20,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x96 -+// 22020 嘄 ; -+,0x00,0x03,0x7a,0x4b,0x4a,0x4b,0x4a,0x4b,0x4a,0x7b,0x48,0x03,0x00,0x01,0x02,0x04,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfe,0x42,0xfa,0xe6,0x58,0x47,0x42 -+// 22021 嘅 ; -+,0x00,0x07,0x74,0x57,0x54,0x54,0x57,0x54,0x74,0x55,0x44,0x04,0x05,0x0e,0x04,0x00,0x00,0xbe,0x88,0xa8,0xa8,0xa8,0xbf,0x08,0x08,0x14,0x94,0xd4,0xa5,0xa5,0x47,0x80 -+// 22022 嘆 ; -+,0x00,0x78,0x4b,0x48,0x48,0x48,0x4b,0x4a,0x7b,0x48,0x43,0x00,0x07,0x00,0x03,0x0c,0x88,0x8a,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0xd8,0x07,0x02 -+// 22023 嘇 ; -+,0x00,0x00,0x79,0x4b,0x49,0x4a,0x4f,0x48,0x48,0x79,0x4e,0x01,0x00,0x03,0x00,0x07,0x40,0x88,0x3c,0xe4,0x08,0x92,0xff,0x62,0x98,0x17,0x62,0x98,0x62,0x8c,0x70,0x80 -+// 22024 嘈 ; -+,0x00,0x03,0x3c,0x25,0x25,0x25,0x25,0x25,0x25,0x3c,0x24,0x00,0x00,0x00,0x00,0x00,0x48,0xff,0x48,0xfe,0x4a,0xfe,0x4a,0x4a,0xfe,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc -+// 22025 嘉 ; -+,0x00,0x3f,0x00,0x07,0x00,0x0f,0x08,0x0f,0x04,0x7f,0x08,0x3f,0x09,0x11,0x25,0x42,0x80,0xfe,0x80,0xf0,0x00,0xf8,0x08,0xf8,0x20,0xff,0x00,0x3c,0x24,0x24,0x3c,0x00 -+// 22026 嘊 ; -+,0x00,0x01,0x79,0x69,0x48,0x4b,0x4a,0x4b,0x4a,0x7b,0x4a,0x03,0x04,0x04,0x0b,0x10,0x20,0x24,0x24,0xfc,0x00,0xfe,0x20,0xfc,0x20,0xfe,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 22027 嘋 ; -+,0x01,0x01,0x77,0x51,0x51,0x5f,0x51,0x53,0x54,0x78,0x51,0x07,0x01,0x01,0x05,0x02,0x08,0x0c,0x88,0x28,0x5f,0xd4,0x24,0xd4,0x94,0x94,0xc8,0x08,0x14,0x22,0x41,0x80 -+// 22028 嘌 ; -+,0x00,0x03,0x78,0x49,0x49,0x49,0x49,0x48,0x49,0x78,0x4b,0x41,0x01,0x01,0x02,0x04,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x14,0x92,0x13,0x52,0x20 -+// 22029 嘍 ; -+,0x00,0x01,0x79,0x4b,0x49,0x49,0x48,0x49,0x79,0x49,0x40,0x07,0x00,0x00,0x01,0x06,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x40,0xff,0x88,0x70,0x8c,0x03 -+// 22030 嘎 ; -+,0x00,0x03,0x78,0x49,0x49,0x49,0x49,0x49,0x79,0x48,0x00,0x03,0x00,0x00,0x00,0x03,0x02,0xff,0x40,0xfc,0x04,0xc4,0x3c,0x04,0xfc,0x12,0x3f,0xd4,0x1e,0x30,0xc9,0x07 -+// 22031 嘏 ; -+,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x7d,0x45,0x45,0x45,0x45,0x7d,0x45,0x45,0x01,0x00,0xee,0x22,0x22,0x22,0xee,0x00,0xde,0x12,0x12,0xd2,0x0c,0x0c,0x12,0x21,0x41 -+// 22032 嘐 ; -+,0x03,0x78,0x4a,0x49,0x48,0x49,0x4a,0x48,0x79,0x4e,0x43,0x00,0x03,0x00,0x00,0x03,0xde,0x62,0x5a,0x4a,0xf2,0x52,0x62,0xd0,0x2c,0xc3,0x18,0x66,0x88,0x30,0xc0,0x00 -+// 22033 嘑 ; -+,0x00,0x00,0x78,0x4b,0x4a,0x4b,0x4a,0x4a,0x4a,0x7a,0x4a,0x43,0x02,0x04,0x04,0x08,0x20,0x3e,0x20,0xff,0x22,0xfc,0x20,0x1e,0xf0,0x92,0x54,0xff,0x10,0x10,0x50,0x20 -+// 22034 嘒 ; -+,0x01,0x01,0x7f,0x49,0x4b,0x49,0x4f,0x49,0x49,0x7b,0x48,0x01,0x00,0x00,0x03,0x00,0x04,0x04,0xdf,0x04,0xde,0x04,0xdf,0x04,0x04,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 22035 嘓 ; -+,0x00,0x03,0x7a,0x4a,0x4b,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x03,0x02,0x03,0x02,0x00,0x00,0xff,0x11,0x15,0xff,0x11,0xf1,0xb1,0xe9,0x0b,0x6b,0x85,0x01,0xff,0x01,0x00 -+// 22036 嘔 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x42,0x02,0x02,0x03,0x00,0x00,0xff,0x00,0x7c,0x44,0x7c,0x44,0x00,0xee,0xaa,0xaa,0xee,0xaa,0x00,0xff,0x00 -+// 22037 嘕 ; -+,0x00,0x03,0x78,0x49,0x49,0x4b,0x49,0x49,0x49,0x79,0x48,0x42,0x02,0x04,0x08,0x00,0x00,0xff,0x20,0x3e,0x20,0xff,0x00,0xff,0x00,0xfe,0x02,0xaa,0xaa,0xa2,0x0a,0x04 -+// 22038 嘖 ; -+,0x00,0x03,0x3c,0x25,0x24,0x27,0x24,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x00,0x03,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 22039 嘗 ; -+,0x08,0x04,0x1f,0x14,0x27,0x08,0x08,0x0f,0x08,0x07,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x88,0x90,0xff,0x12,0xf4,0x00,0xf0,0x80,0x08,0xf8,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 22040 嘘 ; -+,0x00,0x00,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4a,0x7a,0x4a,0x03,0x04,0x04,0x0b,0x10,0x20,0x3e,0x20,0xff,0x42,0x78,0xc2,0x3e,0x00,0x48,0x48,0x4a,0xcc,0x48,0xff,0x00 -+// 22041 嘙 ; -+,0x00,0x02,0x79,0x4d,0x4a,0x4a,0x49,0x49,0x49,0x7a,0x4b,0x40,0x01,0x00,0x00,0x03,0x08,0x08,0x7f,0x49,0x5e,0x62,0x54,0x48,0xb7,0x40,0xff,0x84,0xc8,0x38,0xc6,0x02 -+// 22042 嘚 ; -+,0x00,0x01,0x79,0x49,0x4a,0x4d,0x49,0x4b,0x4d,0x79,0x49,0x41,0x01,0x01,0x01,0x01,0x00,0x7e,0xc2,0x7e,0xc2,0x7e,0x00,0x7f,0x04,0xff,0x44,0x24,0x24,0x04,0x1c,0x08 -+// 22043 嘛 ; -+,0x00,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4b,0x4b,0x7a,0x4a,0x44,0x04,0x08,0x10,0x00,0x40,0x20,0xff,0x88,0x88,0xdf,0x88,0xdc,0xbc,0xaa,0xa9,0xc9,0x88,0x88,0x88,0x00 -+// 22044 嘜 ; -+,0x00,0x00,0x7b,0x49,0x49,0x4a,0x4c,0x48,0x79,0x42,0x0d,0x02,0x04,0x00,0x03,0x0c,0x20,0x20,0xfe,0x24,0x24,0xaa,0x71,0xa8,0x47,0xfa,0x08,0x88,0x70,0xd0,0x08,0x00 -+// 22045 嘝 ; -+,0x01,0x01,0x72,0x54,0x57,0x55,0x57,0x55,0x75,0x57,0x45,0x05,0x09,0x08,0x10,0x00,0x04,0xe4,0x54,0x94,0xc4,0x44,0xd4,0x54,0x47,0xfc,0x44,0x44,0x44,0x44,0xc4,0x00 -+// 22046 嘞 ; -+,0x02,0x02,0x7f,0x4a,0x4b,0x48,0x4b,0x4a,0x4a,0x7b,0x48,0x47,0x00,0x00,0x00,0x00,0x48,0x48,0xe8,0x48,0xdf,0x89,0xe9,0xa9,0xa9,0xe9,0x89,0xf9,0x89,0x91,0x95,0xa2 -+// 22047 嘟 ; -+,0x01,0x01,0x7f,0x49,0x49,0x4f,0x48,0x49,0x7b,0x45,0x49,0x11,0x01,0x01,0x01,0x00,0x00,0x0f,0xe9,0x2a,0x4a,0xfc,0x8c,0xea,0x2a,0x29,0xe9,0x2f,0x2a,0xe8,0x28,0x08 -+// 22048 嘠 ; -+,0x03,0x00,0x78,0x48,0x48,0x48,0x48,0x4b,0x7a,0x48,0x03,0x00,0x00,0x01,0x06,0x00,0xff,0x40,0xfc,0x84,0xe4,0x9c,0x84,0xff,0x49,0x5c,0xe0,0x48,0x30,0xd9,0x07,0x00 -+// 22049 嘡 ; -+,0x00,0x01,0x78,0x48,0x4b,0x4a,0x4c,0x48,0x48,0x78,0x48,0x41,0x00,0x00,0x07,0x00,0x20,0x24,0xa4,0xa8,0xff,0x02,0xf8,0x88,0x88,0xf8,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 22050 嘢 ; -+,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4a,0x4b,0x78,0x48,0x43,0x00,0x00,0x00,0x07,0x00,0x00,0xff,0xa2,0xac,0xe4,0xbf,0xa5,0xe4,0x84,0x84,0xe4,0x84,0x84,0xf4,0x88,0x00 -+// 22051 嘣 ; -+,0x02,0x02,0x7b,0x48,0x4b,0x4a,0x4a,0x4b,0x4a,0x7b,0x4a,0x02,0x04,0x05,0x08,0x00,0x22,0x22,0xfe,0x00,0xde,0x52,0x52,0xde,0x52,0xde,0x52,0x52,0x52,0x52,0xaa,0x04 -+// 22052 嘤 ; -+,0x00,0x07,0x74,0x54,0x55,0x55,0x51,0x52,0x74,0x57,0x00,0x01,0x00,0x00,0x01,0x06,0x00,0xdf,0x51,0x51,0x55,0x55,0x04,0x8a,0x51,0xff,0x88,0xc8,0x30,0x4c,0x86,0x02 -+// 22053 嘥 ; -+,0x00,0x78,0x49,0x4a,0x4c,0x49,0x49,0x4b,0x4d,0x79,0x49,0x01,0x01,0x01,0x01,0x01,0x88,0xc8,0x2f,0x28,0xa8,0xff,0x08,0x08,0x28,0x2f,0x28,0x28,0x68,0x58,0x8f,0x00 -+// 22054 嘦 ; -+,0x0f,0x08,0x0f,0x03,0x0c,0x30,0x0f,0x01,0x0f,0x09,0x0f,0x01,0x7f,0x06,0x01,0x1e,0xfc,0x04,0xfc,0x30,0x0c,0x03,0xfe,0x10,0xfc,0x14,0xfc,0x00,0xff,0x10,0xe0,0x1c -+// 22055 嘧 ; -+,0x00,0x00,0x7b,0x4a,0x49,0x4a,0x4a,0x48,0x78,0x4b,0x40,0x02,0x02,0x02,0x03,0x00,0x40,0x20,0xff,0x41,0x24,0xac,0x91,0xa5,0xfc,0x20,0x20,0x22,0x22,0x22,0xfe,0x00 -+// 22056 嘨 ; -+,0x00,0x03,0x78,0x4f,0x48,0x4b,0x48,0x4a,0x4a,0x7a,0x4b,0x02,0x02,0x05,0x06,0x08,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0x22,0xaa,0x72,0xfe,0x62,0xb2,0x2a,0x2a,0x22 -+// 22057 嘩 ; -+,0x00,0x00,0x7f,0x48,0x48,0x4f,0x49,0x4b,0x49,0x79,0x4b,0x00,0x07,0x00,0x00,0x00,0x88,0x88,0xfe,0x88,0x88,0xff,0x24,0xfe,0x24,0x24,0xff,0x20,0xff,0x20,0x20,0x20 -+// 22058 嘪 ; -+,0x03,0x7a,0x4a,0x4b,0x48,0x49,0x49,0x49,0x49,0x79,0x49,0x01,0x00,0x01,0x03,0x04,0xff,0x49,0x49,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x88,0xc6,0x03,0x02 -+// 22059 嘫 ; -+,0x01,0x01,0x79,0x49,0x49,0x4a,0x4a,0x4d,0x48,0x79,0x4a,0x44,0x02,0x04,0x04,0x00,0x08,0x08,0xea,0x29,0x3f,0xe8,0x48,0x94,0x96,0x23,0x42,0x84,0x52,0x4b,0x49,0x00 -+// 22060 嘬 ; -+,0x01,0x01,0x79,0x49,0x49,0x48,0x4f,0x4a,0x4b,0x7a,0x4b,0x02,0x03,0x06,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x40,0xfe,0x64,0xd4,0x48,0xc8,0x56,0x63,0x42 -+// 22061 嘭 ; -+,0x00,0x00,0x7f,0x48,0x4b,0x48,0x4b,0x4a,0x4a,0x7b,0x48,0x02,0x02,0x00,0x07,0x00,0x80,0x82,0xf3,0x84,0xe8,0x12,0xe3,0x24,0x2a,0xf3,0x46,0x64,0x88,0xf0,0x20,0x00 -+// 22062 嘮 ; -+,0x00,0x00,0x7a,0x49,0x48,0x49,0x4a,0x4b,0x4a,0x79,0x48,0x00,0x00,0x00,0x00,0x01,0x84,0x84,0xb5,0xd6,0x8c,0x6a,0x31,0xff,0x21,0xfc,0x24,0x24,0x44,0x44,0x94,0x08 -+// 22063 嘯 ; -+,0x00,0x7b,0x48,0x4f,0x48,0x4b,0x48,0x4a,0x7b,0x4a,0x43,0x02,0x03,0x02,0x04,0x08,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0xaa,0xaa -+// 22064 嘰 ; -+,0x00,0x01,0x79,0x4a,0x4b,0x49,0x4b,0x49,0x4b,0x49,0x79,0x49,0x02,0x02,0x04,0x08,0x20,0x24,0x29,0xbf,0xe4,0x2a,0xff,0x22,0xff,0x10,0x96,0x48,0x59,0x25,0x43,0x80 -+// 22065 嘱 ; -+,0x03,0x02,0x7b,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x45,0x05,0x09,0x09,0x11,0x01,0xff,0x01,0xff,0x00,0xfe,0x10,0xfe,0x92,0xfe,0x10,0xff,0x15,0x1f,0xe5,0x01,0x03 -+// 22066 嘲 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x4a,0x4b,0x4a,0x7b,0x48,0x43,0x00,0x00,0x00,0x00,0x00,0x80,0x8f,0xe9,0x89,0xe9,0x2f,0xe9,0x29,0xef,0x89,0xe9,0x89,0x89,0x91,0x95,0xa2 -+// 22067 嘳 ; -+,0x00,0x01,0x79,0x49,0x48,0x4f,0x48,0x49,0x49,0x79,0x49,0x01,0x01,0x01,0x00,0x03,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 22068 嘴 ; -+,0x00,0x02,0x7a,0x4a,0x4a,0x4f,0x48,0x49,0x4b,0x79,0x49,0x01,0x01,0x01,0x02,0x04,0x90,0x90,0xfe,0x91,0xf1,0x4f,0xfc,0x08,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x2a,0x24 -+// 22069 嘵 ; -+,0x00,0x79,0x48,0x4b,0x49,0x4b,0x49,0x49,0x7f,0x48,0x43,0x00,0x00,0x00,0x01,0x02,0x20,0xfc,0x20,0xfe,0x08,0xde,0x08,0xc8,0x3f,0x00,0xfe,0x90,0x90,0x91,0x0f,0x00 -+// 22070 嘶 ; -+,0x02,0x02,0x7f,0x4a,0x4b,0x4a,0x4a,0x4b,0x7a,0x4f,0x4a,0x02,0x04,0x08,0x10,0x00,0x40,0x47,0xfc,0x50,0xd0,0x5f,0x52,0xd2,0x52,0xf2,0x92,0x52,0x52,0x12,0x22,0x42 -+// 22071 嘷 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x3d,0x24,0x20,0x01,0x07,0x00,0x00,0x00,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x24,0xae,0xb0,0x2c,0xff,0x20,0x20,0x20 -+// 22072 嘸 ; -+,0x01,0x01,0x79,0x4b,0x4d,0x49,0x4f,0x49,0x49,0x79,0x47,0x00,0x02,0x02,0x04,0x08,0x00,0x00,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x00,0xa4,0x52,0x5b,0x52 -+// 22073 嘹 ; -+,0x00,0x00,0x7b,0x48,0x4a,0x49,0x4b,0x4d,0x49,0x79,0x48,0x01,0x01,0x02,0x04,0x00,0x20,0x20,0xff,0x52,0x8c,0xff,0x06,0xfc,0x04,0xfc,0x20,0x28,0xa4,0x26,0xa4,0x40 -+// 22074 嘺 ; -+,0x00,0x01,0x78,0x4b,0x48,0x49,0x4e,0x48,0x48,0x7b,0x4a,0x02,0x02,0x02,0x02,0x02,0x1c,0xe0,0x40,0xff,0x88,0xfc,0x8b,0xfa,0x00,0xfe,0x02,0xf2,0x92,0xf2,0x0a,0x04 -+// 22075 嘻 ; -+,0x00,0x03,0x78,0x49,0x48,0x49,0x49,0x49,0x48,0x78,0x4f,0x40,0x01,0x01,0x01,0x01,0x20,0xff,0x20,0xfe,0x00,0xfe,0x02,0xfe,0x84,0x48,0xff,0x00,0xfe,0x02,0xfe,0x02 -+// 22076 嘼 ; -+,0x1f,0x11,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x3e,0x22,0x3e,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xfe,0x00,0xf8,0x08,0xf8,0x08 -+// 22077 嘽 ; -+,0x00,0x03,0x7a,0x4b,0x48,0x4b,0x4a,0x4b,0x4a,0x7b,0x48,0x07,0x00,0x00,0x00,0x00,0x00,0xde,0x52,0xde,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 22078 嘾 ; -+,0x03,0x78,0x4b,0x4a,0x4b,0x48,0x49,0x49,0x49,0x49,0x79,0x48,0x03,0x00,0x00,0x00,0xff,0x48,0xff,0x49,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 22079 嘿 ; -+,0x00,0x03,0x7b,0x4a,0x4a,0x4b,0x4a,0x48,0x4b,0x78,0x4f,0x00,0x02,0x02,0x04,0x00,0x00,0xfe,0x2a,0xae,0xb2,0xfe,0x22,0x20,0xfe,0x20,0xff,0x00,0x92,0x49,0x49,0x00 -+// 22080 噀 ; -+,0x03,0x7a,0x4a,0x4b,0x4a,0x4a,0x4b,0x48,0x4b,0x78,0x48,0x07,0x00,0x00,0x01,0x02,0xde,0x52,0x52,0xde,0x10,0x51,0xdf,0x88,0xfe,0x88,0x88,0xff,0x88,0xc4,0x06,0x04 -+// 22081 噁 ; -+,0x00,0x07,0x78,0x4b,0x4a,0x4a,0x4b,0x48,0x48,0x7f,0x48,0x05,0x05,0x05,0x08,0x00,0x00,0xfe,0x90,0x9e,0x02,0x02,0x9e,0x90,0x90,0xff,0x44,0x22,0x29,0x0d,0xf8,0x00 -+// 22082 噂 ; -+,0x01,0x00,0x7b,0x48,0x4b,0x4a,0x4b,0x4a,0x4a,0x7b,0x48,0x47,0x00,0x00,0x00,0x00,0x04,0x88,0xff,0x50,0xfe,0x52,0x8e,0x72,0x02,0xfe,0x08,0xff,0x88,0x88,0x28,0x10 -+// 22083 噃 ; -+,0x00,0x03,0x79,0x48,0x4b,0x48,0x49,0x4a,0x4d,0x79,0x49,0x01,0x01,0x01,0x01,0x00,0x0e,0xf0,0x24,0xa8,0xff,0xb0,0x28,0x27,0xfe,0x24,0xfc,0x24,0x24,0xfc,0x04,0x00 -+// 22084 噄 ; -+,0x00,0x03,0x78,0x4b,0x48,0x4b,0x48,0x48,0x49,0x78,0x4b,0x00,0x01,0x02,0x04,0x00,0x80,0xff,0x89,0xe9,0x89,0xf1,0xa5,0x52,0xf8,0x84,0xfe,0x24,0x28,0x26,0xa4,0x40 -+// 22085 噅 ; -+,0x00,0x3f,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x25,0x22,0x02,0x02,0x04,0x08,0x1e,0xf4,0xa6,0x14,0xfe,0x04,0xfe,0x02,0x04,0xfe,0x12,0xaa,0xaa,0xa2,0x0a,0x04 -+// 22086 噆 ; -+,0x00,0x03,0x7a,0x4a,0x4b,0x49,0x4a,0x4c,0x49,0x79,0x49,0x01,0x01,0x01,0x01,0x01,0x00,0xfe,0x88,0x98,0xff,0x88,0xad,0xd7,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 22087 噇 ; -+,0x00,0x00,0x7b,0x48,0x4f,0x48,0x49,0x49,0x49,0x79,0x49,0x40,0x03,0x00,0x00,0x07,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff -+// 22088 噈 ; -+,0x02,0x01,0x77,0x50,0x57,0x54,0x54,0x54,0x57,0x71,0x51,0x45,0x09,0x11,0x05,0x02,0x10,0x14,0xd2,0x12,0xd0,0x7f,0x54,0x54,0xd4,0x14,0x94,0x54,0x55,0x25,0x27,0x40 -+// 22089 噉 ; -+,0x00,0x7f,0x48,0x4f,0x4a,0x4a,0x4b,0x4a,0x4a,0x7b,0x4a,0x02,0x0f,0x04,0x00,0x00,0x08,0xcc,0x88,0xe8,0x4f,0x52,0xd2,0x72,0x4a,0xca,0x44,0xf4,0x4a,0x53,0x62,0x40 -+// 22090 噊 ; -+,0x01,0x00,0x78,0x4b,0x48,0x48,0x49,0x4a,0x49,0x79,0x49,0x01,0x01,0x01,0x01,0x01,0xfc,0x48,0x30,0xff,0x52,0x94,0x50,0x20,0xfe,0x4a,0xfe,0x4a,0x7a,0x42,0x0a,0x04 -+// 22091 噋 ; -+,0x01,0x00,0x7f,0x48,0x4b,0x4a,0x4b,0x48,0x4b,0x78,0x49,0x01,0x07,0x01,0x05,0x02,0x08,0x8c,0xe8,0x10,0xdf,0x52,0xe2,0x22,0xd4,0x94,0x08,0xc8,0x14,0x23,0x42,0x80 -+// 22092 噌 ; -+,0x01,0x00,0x78,0x4b,0x4b,0x4a,0x4a,0x4b,0x4a,0x79,0x49,0x01,0x01,0x01,0x01,0x01,0x08,0x8c,0x90,0xfe,0x2a,0xee,0xb2,0xfe,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 22093 噍 ; -+,0x01,0x01,0x79,0x49,0x4b,0x4d,0x49,0x49,0x49,0x79,0x49,0x01,0x02,0x02,0x04,0x08,0x20,0x90,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00,0xa4,0x92,0x5b,0x52 -+// 22094 噎 ; -+,0x00,0x03,0x78,0x49,0x48,0x4b,0x4c,0x49,0x48,0x79,0x49,0x41,0x00,0x00,0x07,0x00,0x20,0xfe,0x20,0xfc,0x00,0xff,0x02,0xfc,0x00,0xfc,0x04,0xfc,0x88,0x52,0xff,0x00 -+// 22095 噏 ; -+,0x00,0x78,0x48,0x49,0x4e,0x49,0x49,0x49,0x48,0x7b,0x4a,0x01,0x02,0x04,0x01,0x00,0x20,0x50,0x88,0xff,0x02,0xfc,0x04,0xfc,0x00,0xde,0x52,0x4a,0x4a,0x52,0x4a,0x84 -+// 22096 噐 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x00,0x3f,0x00,0x7f,0x00,0x1f,0x11,0x11,0x1f,0x11,0x00,0x00,0x3e,0x22,0x22,0x3e,0x00,0xfe,0x80,0xff,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00 -+// 22097 噑 ; -+,0x00,0x00,0x03,0x7a,0x4b,0x4a,0x4b,0x48,0x49,0x48,0x78,0x4b,0x07,0x00,0x00,0x00,0x40,0x80,0xfe,0x02,0xfe,0x02,0xfe,0x24,0x2e,0xb0,0xec,0x24,0xff,0x20,0x20,0x20 -+// 22098 噒 ; -+,0x00,0x79,0x48,0x4b,0x48,0x49,0x4a,0x4c,0x79,0x4a,0x45,0x00,0x00,0x01,0x02,0x04,0x20,0x24,0xa8,0xff,0xa8,0x27,0x22,0x84,0xff,0x54,0x54,0xbf,0x84,0x04,0x04,0x04 -+// 22099 噓 ; -+,0x00,0x00,0x78,0x4b,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x04,0x04,0x0b,0x00,0x20,0x3e,0x20,0xff,0x22,0xf8,0x22,0x1e,0x28,0xaa,0xaa,0xee,0x28,0x28,0xff,0x00 -+// 22100 噔 ; -+,0x00,0x03,0x78,0x4a,0x49,0x48,0x49,0x4e,0x49,0x79,0x49,0x01,0x00,0x00,0x07,0x00,0x00,0xd4,0x58,0x52,0x8c,0x84,0xfb,0x00,0xfc,0x04,0xfc,0x08,0x88,0x90,0xff,0x00 -+// 22101 噕 ; -+,0x00,0x1f,0x04,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x29,0x51,0x0f,0x08,0x08,0x0f,0xfc,0x90,0x98,0x90,0xfc,0x08,0xfc,0x08,0xfe,0x92,0x52,0x54,0xf8,0x08,0x08,0xf8 -+// 22102 噖 ; -+,0x00,0x07,0x79,0x4f,0x49,0x49,0x4f,0x48,0x48,0x79,0x4a,0x45,0x00,0x00,0x00,0x00,0x00,0xdf,0x04,0xdf,0x04,0x04,0xdf,0x60,0x90,0x4c,0x27,0xfa,0x08,0x10,0x10,0x20 -+// 22103 噗 ; -+,0x00,0x02,0x79,0x49,0x4f,0x49,0x48,0x4b,0x48,0x79,0x48,0x07,0x00,0x00,0x03,0x0c,0x50,0x52,0x54,0x58,0xff,0x04,0x88,0xfe,0x20,0xfc,0x20,0xff,0x50,0x8c,0x07,0x02 -+// 22104 噘 ; -+,0x00,0x07,0x74,0x56,0x55,0x57,0x54,0x56,0x56,0x77,0x54,0x09,0x09,0x12,0x24,0x00,0x00,0xff,0x08,0x28,0x4f,0xe9,0x94,0xa4,0xa4,0xe4,0x84,0x4a,0x52,0x21,0x41,0x00 -+// 22105 噙 ; -+,0x00,0x00,0x78,0x4b,0x4d,0x48,0x49,0x49,0x49,0x78,0x4b,0x02,0x02,0x03,0x02,0x02,0x20,0x50,0xcc,0x23,0xfe,0x48,0x32,0x4a,0xfe,0x40,0xfe,0x52,0xba,0xca,0x02,0x06 -+// 22106 噚 ; -+,0x01,0x00,0x78,0x48,0x49,0x48,0x4b,0x48,0x48,0x7b,0x4b,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x92,0xde,0x08,0xff,0x88,0x48,0x48,0x08,0x18 -+// 22107 噛 ; -+,0x00,0x00,0x01,0x79,0x49,0x4f,0x4a,0x4a,0x4a,0x7b,0x4a,0x42,0x03,0x02,0x03,0x00,0x20,0x20,0x3e,0x20,0x20,0xff,0x22,0xaa,0x72,0xfe,0x72,0xaa,0x26,0x22,0xfe,0x00 -+// 22108 噜 ; -+,0x00,0x01,0x7a,0x4f,0x4a,0x4b,0x4a,0x4b,0x48,0x7b,0x48,0x41,0x01,0x01,0x01,0x01,0x80,0xfc,0x08,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 22109 噝 ; -+,0x01,0x01,0x79,0x4a,0x4f,0x49,0x4a,0x4c,0x4f,0x48,0x7c,0x05,0x05,0x09,0x00,0x00,0x08,0x8c,0x08,0x50,0xa2,0x3c,0x08,0x92,0xbf,0x8a,0x08,0x2a,0x49,0x89,0x28,0x10 -+// 22110 噞 ; -+,0x00,0x00,0x78,0x49,0x4b,0x4c,0x4b,0x4a,0x4a,0x7a,0x4b,0x01,0x01,0x02,0x04,0x08,0x20,0x50,0x88,0x06,0xff,0x00,0xde,0x52,0x52,0x52,0xde,0x08,0x08,0xd4,0xa3,0x42 -+// 22111 噟 ; -+,0x00,0x00,0x1f,0x12,0x13,0x12,0x16,0x1b,0x12,0x12,0x12,0x12,0x10,0x23,0x22,0x43,0x80,0x40,0xff,0x50,0x48,0xfe,0x88,0xfe,0x88,0xfe,0x88,0xff,0x00,0xfc,0x04,0xfc -+// 22112 噠 ; -+,0x00,0x04,0x7a,0x4a,0x49,0x48,0x4f,0x49,0x49,0x79,0x49,0x01,0x01,0x02,0x04,0x00,0x10,0x10,0xfe,0x10,0xff,0x28,0xfe,0x10,0x7e,0x10,0xff,0x10,0x10,0x80,0x7f,0x00 -+// 22113 噡 ; -+,0x00,0x00,0x79,0x4b,0x4e,0x4a,0x4b,0x4a,0x4a,0x7a,0x4a,0x42,0x04,0x04,0x08,0x00,0x40,0xfc,0x08,0xff,0x48,0xa4,0xff,0x00,0xfe,0x00,0xfe,0x00,0xfe,0x82,0xfe,0x00 -+// 22114 噢 ; -+,0x00,0x00,0x7b,0x4b,0x4a,0x4b,0x4a,0x4a,0x4b,0x7a,0x4f,0x00,0x00,0x01,0x02,0x04,0x40,0x80,0xfe,0x26,0xaa,0xfe,0x72,0xaa,0x2a,0x22,0xff,0x50,0x88,0x04,0x03,0x02 -+// 22115 噣 ; -+,0x00,0x3d,0x25,0x25,0x25,0x25,0x25,0x26,0x3d,0x25,0x21,0x01,0x00,0x00,0x03,0x00,0x00,0xfe,0x4a,0x4a,0xfe,0x00,0xfe,0x42,0xfa,0x4a,0x4a,0xfa,0x52,0x7a,0x8a,0x04 -+// 22116 噤 ; -+,0x00,0x00,0x7f,0x49,0x4a,0x4a,0x4c,0x49,0x48,0x7b,0x48,0x01,0x01,0x02,0x04,0x00,0x88,0x88,0xff,0x9c,0xea,0xa9,0xc8,0xfe,0x00,0xff,0x20,0x24,0xa2,0x23,0xa2,0x40 -+// 22117 噥 ; -+,0x00,0x03,0x7a,0x4b,0x4a,0x4b,0x48,0x4b,0x7a,0x4a,0x42,0x03,0x02,0x04,0x04,0x08,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xfe,0x00,0xfc,0x00,0xfe,0x92,0x8c,0xc7,0x82 -+// 22118 噦 ; -+,0x00,0x01,0x79,0x4f,0x48,0x4b,0x4a,0x4b,0x4a,0x7b,0x4b,0x42,0x02,0x04,0x05,0x0a,0x20,0x3e,0x20,0xff,0x14,0xff,0x10,0xf4,0x56,0x54,0x58,0x68,0x55,0xa5,0x43,0x00 -+// 22119 噧 ; -+,0x00,0x7c,0x4b,0x48,0x49,0x49,0x49,0x49,0x49,0x78,0x4b,0x42,0x02,0x02,0x02,0x02,0x88,0x88,0xfe,0x88,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x2a,0x3e,0xea,0x0a,0x04 -+// 22120 器 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x00,0x7f,0x03,0x0c,0x70,0x1f,0x11,0x11,0x11,0x1f,0x00,0x3e,0x22,0x22,0x3e,0x88,0x84,0xfe,0x60,0x18,0x07,0x7e,0x44,0x44,0x44,0x7c,0x00 -+// 22121 噩 ; -+,0x00,0x1f,0x00,0x1e,0x12,0x12,0x1e,0x00,0x3f,0x00,0x1e,0x12,0x12,0x1e,0x00,0x7f,0x00,0xfe,0x80,0xbc,0xa4,0xa4,0xbc,0x80,0xff,0x80,0xbc,0xa4,0xa4,0xbc,0x80,0xff -+// 22122 噪 ; -+,0x00,0x78,0x48,0x48,0x4b,0x4a,0x4a,0x4b,0x78,0x4f,0x00,0x00,0x01,0x02,0x0c,0x00,0xf8,0x88,0x88,0xf8,0xde,0x52,0x52,0xde,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 22123 噫 ; -+,0x00,0x00,0x3d,0x24,0x27,0x24,0x25,0x25,0x3d,0x25,0x21,0x00,0x05,0x05,0x08,0x00,0x40,0x20,0xfe,0x48,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x02,0x21,0x15,0xfc,0x00 -+// 22124 噬 ; -+,0x01,0x01,0x79,0x4a,0x4c,0x4b,0x48,0x49,0x49,0x79,0x49,0x42,0x04,0x00,0x0f,0x00,0x10,0x10,0xff,0x94,0xa2,0xff,0x20,0x24,0x24,0x24,0x2a,0xa9,0x71,0x20,0xff,0x00 -+// 22125 噭 ; -+,0x01,0x02,0x77,0x54,0x57,0x54,0x57,0x51,0x57,0x52,0x73,0x42,0x04,0x04,0x09,0x10,0x08,0x0c,0xc8,0x50,0xdf,0x62,0xd2,0x12,0xd4,0x14,0xc8,0x48,0x54,0x53,0x62,0xa0 -+// 22126 噮 ; -+,0x03,0x02,0x7a,0x4b,0x48,0x4b,0x48,0x49,0x49,0x79,0x48,0x01,0x03,0x05,0x01,0x01,0xff,0x49,0x49,0xff,0x00,0xff,0x00,0xfe,0x02,0xfe,0x92,0x13,0x0c,0x4c,0x87,0x02 -+// 22127 噯 ; -+,0x00,0x03,0x79,0x48,0x4b,0x4a,0x4c,0x4a,0x4a,0x79,0x41,0x02,0x04,0x00,0x01,0x06,0x1e,0xe4,0x44,0xa8,0xff,0x42,0xa4,0x8a,0xf8,0x00,0xfc,0x88,0x88,0x70,0x8c,0x03 -+// 22128 噰 ; -+,0x00,0x00,0x7b,0x48,0x49,0x4a,0x4c,0x4f,0x49,0x4a,0x7f,0x48,0x01,0x01,0x02,0x04,0x40,0x20,0xff,0x28,0x24,0x7f,0xa4,0xe4,0x3f,0xa4,0xff,0xa4,0x24,0x3f,0x20,0x00 -+// 22129 噱 ; -+,0x00,0x00,0x78,0x4b,0x4a,0x4a,0x4a,0x4a,0x4b,0x7a,0x42,0x05,0x04,0x08,0x13,0x00,0x40,0x7c,0x40,0xfe,0x42,0xf4,0x40,0x3c,0xfe,0x24,0x56,0xb8,0x54,0x97,0x52,0x20 -+// 22130 噲 ; -+,0x00,0x00,0x78,0x49,0x4e,0x4b,0x4b,0x4a,0x4b,0x78,0x49,0x01,0x01,0x01,0x01,0x01,0x20,0x50,0x8c,0xfb,0x02,0xfe,0x26,0xaa,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 22131 噳 ; -+,0x00,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x04,0x05,0x08,0x11,0x20,0x3c,0x20,0xff,0x22,0xf8,0x24,0xf8,0x88,0xf8,0x00,0xfc,0x20,0xfe,0x50,0x8c -+// 22132 噴 ; -+,0x00,0x7b,0x48,0x48,0x4f,0x48,0x49,0x49,0x79,0x49,0x41,0x01,0x01,0x00,0x01,0x02,0x20,0xfe,0x20,0xa8,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x86,0x04 -+// 22133 噵 ; -+,0x21,0x10,0x0b,0x00,0x39,0x09,0x09,0x09,0x09,0x15,0x23,0x40,0x07,0x04,0x04,0x07,0x04,0x88,0xff,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff,0x00,0xf8,0x08,0x08,0xf8 -+// 22134 噶 ; -+,0x00,0x07,0x78,0x4b,0x4a,0x4b,0x4a,0x4b,0x79,0x4b,0x47,0x0a,0x02,0x02,0x03,0x00,0x90,0xfe,0x90,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x22,0x22,0x52,0x8a,0xfa,0x06 -+// 22135 噷 ; -+,0x02,0x01,0x77,0x54,0x52,0x52,0x57,0x50,0x57,0x74,0x57,0x44,0x04,0x07,0x04,0x00,0x10,0x18,0xf0,0x5f,0x51,0x82,0xe8,0x08,0xc8,0x48,0xd4,0x54,0x54,0xe2,0x23,0x42 -+// 22136 噸 ; -+,0x01,0x01,0x71,0x57,0x51,0x55,0x55,0x55,0x57,0x75,0x01,0x01,0x01,0x03,0x01,0x00,0x00,0x1f,0x04,0xc8,0x1f,0x51,0x5f,0x51,0xdf,0x51,0x1f,0x0a,0x4a,0x91,0x21,0x00 -+// 22137 噹 ; -+,0x00,0x01,0x78,0x4b,0x4a,0x4d,0x49,0x49,0x48,0x7b,0x4a,0x43,0x02,0x02,0x03,0x00,0x20,0x24,0xaa,0xff,0x02,0xfc,0x04,0xfc,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x00 -+// 22138 噺 ; -+,0x02,0x01,0x7f,0x4c,0x4a,0x4a,0x4f,0x49,0x49,0x7f,0x49,0x05,0x09,0x01,0x05,0x02,0x00,0x03,0xfc,0x50,0x50,0x9f,0xf4,0x14,0x14,0xd4,0x14,0x94,0x54,0x24,0x24,0x40 -+// 22139 噻 ; -+,0x00,0x00,0x7b,0x4c,0x4b,0x48,0x4b,0x48,0x4f,0x79,0x4a,0x05,0x08,0x00,0x07,0x00,0x40,0x20,0xff,0x92,0xfc,0x90,0xfc,0x90,0xfe,0x48,0x47,0xfa,0x40,0x40,0xfe,0x00 -+// 22140 噼 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4b,0x4a,0x4a,0x7b,0x4e,0x46,0x0a,0x0b,0x12,0x02,0x00,0x08,0xc8,0x7f,0x62,0x52,0xd4,0x3f,0x08,0xc8,0x7f,0x48,0x48,0xc8,0x48,0x08,0x00 -+// 22141 噽 ; -+,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x20,0x3f,0x11,0x7f,0x00,0x3f,0x20,0x20,0x3f,0x00,0x00,0xbf,0x08,0x88,0x08,0x98,0x9c,0xaa,0x2b,0xca,0x08,0x88,0x88,0xff,0x80,0x00 -+// 22142 噾 ; -+,0x00,0x00,0x7b,0x4a,0x49,0x4a,0x4d,0x48,0x4b,0x78,0x49,0x49,0x01,0x01,0x01,0x01,0x40,0x20,0xff,0x89,0x44,0x22,0xfe,0x48,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 22143 噿 ; -+,0x03,0x02,0x79,0x48,0x49,0x4a,0x48,0x4b,0x48,0x49,0x7a,0x4f,0x00,0x00,0x00,0x00,0xfc,0x64,0x54,0xcc,0x54,0x44,0x20,0xfe,0x88,0x54,0x62,0xff,0x20,0x20,0x20,0x20 -+// 22144 嚀 ; -+,0x00,0x00,0x7b,0x4c,0x4a,0x4a,0x4c,0x4b,0x4a,0x7a,0x4f,0x40,0x03,0x00,0x00,0x00,0x40,0x20,0xff,0x41,0xaa,0xf9,0x00,0xfe,0x92,0x92,0xff,0x00,0xfe,0x20,0x20,0x60 -+// 22145 嚁 ; -+,0x07,0x02,0x79,0x49,0x4a,0x4d,0x49,0x4b,0x4b,0x7d,0x49,0x01,0x01,0x01,0x01,0x01,0xdf,0x49,0x45,0x45,0x49,0x65,0x12,0xfe,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 22146 嚂 ; -+,0x00,0x03,0x7a,0x4b,0x4a,0x4a,0x4b,0x4a,0x4b,0x78,0x4b,0x42,0x02,0x02,0x07,0x00,0x00,0xe8,0x8c,0xc8,0x5f,0x50,0xe8,0x84,0xe4,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 22147 嚃 ; -+,0x00,0x01,0x79,0x4d,0x4b,0x48,0x4e,0x4a,0x4b,0x7a,0x4a,0x43,0x02,0x05,0x08,0x00,0x00,0xff,0x29,0x29,0xff,0x10,0x54,0x92,0x11,0x54,0x92,0x11,0x10,0x10,0xff,0x00 -+// 22148 嚄 ; -+,0x00,0x03,0x78,0x49,0x49,0x4b,0x4d,0x49,0x49,0x79,0x4b,0x00,0x00,0x00,0x00,0x03,0x88,0xff,0x88,0x20,0xfe,0x20,0xfc,0x20,0xfe,0x20,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 22149 嚅 ; -+,0x03,0x00,0x7b,0x4a,0x4d,0x48,0x49,0x48,0x7b,0x48,0x43,0x02,0x02,0x02,0x02,0x02,0xfe,0x20,0xff,0x21,0xac,0x20,0xac,0x00,0xff,0x80,0xfe,0x52,0x52,0x52,0x52,0x06 -+// 22150 嚆 ; -+,0x00,0x03,0x78,0x48,0x4b,0x48,0x48,0x48,0x48,0x78,0x4b,0x02,0x02,0x02,0x02,0x02,0x88,0xff,0x88,0xa8,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x01,0xfd,0x85,0xfd,0x03 -+// 22151 嚇 ; -+,0x01,0x01,0x77,0x51,0x51,0x5f,0x52,0x52,0x56,0x5a,0x72,0x52,0x04,0x0a,0x11,0x00,0x08,0x08,0xde,0x08,0x08,0xff,0x94,0x94,0xb6,0xb5,0xd5,0xd4,0x94,0xa4,0x4c,0x00 -+// 22152 嚈 ; -+,0x00,0x07,0x74,0x55,0x55,0x55,0x54,0x55,0x55,0x55,0x75,0x55,0x09,0x09,0x11,0x00,0x00,0xff,0x04,0xe6,0x25,0xe4,0x1f,0xe4,0x24,0xea,0x2a,0xea,0x2a,0x31,0x71,0x00 -+// 22153 嚉 ; -+,0x01,0x05,0x7b,0x49,0x4f,0x4a,0x49,0x4f,0x48,0x48,0x7f,0x48,0x00,0x01,0x06,0x00,0x42,0x52,0x62,0x42,0xf2,0x2f,0x42,0xf2,0x8a,0x8a,0xf2,0x82,0xb2,0xc2,0x0a,0x04 -+// 22154 嚊 ; -+,0x00,0x01,0x79,0x49,0x49,0x49,0x49,0x4b,0x4a,0x4b,0x7a,0x03,0x00,0x07,0x00,0x03,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff,0x88,0x08 -+// 22155 嚋 ; -+,0x00,0x03,0x78,0x4b,0x48,0x49,0x48,0x4b,0x48,0x7b,0x48,0x03,0x02,0x02,0x03,0x00,0x20,0xfe,0x20,0xff,0x02,0xfc,0x20,0xfe,0x00,0xff,0x04,0xff,0x54,0x54,0xc4,0x0c -+// 22156 嚌 ; -+,0x00,0x07,0x78,0x4f,0x4a,0x4a,0x4a,0x4d,0x78,0x4a,0x43,0x02,0x03,0x02,0x04,0x08,0x20,0xff,0x88,0xd7,0xa8,0xaa,0xab,0xad,0x28,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04 -+// 22157 嚍 ; -+,0x00,0x03,0x78,0x4f,0x48,0x4b,0x48,0x4f,0x4a,0x7c,0x4b,0x42,0x02,0x02,0x0f,0x00,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0xff,0xa4,0x52,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 22158 嚎 ; -+,0x00,0x07,0x78,0x49,0x49,0x49,0x48,0x4b,0x4c,0x7b,0x48,0x47,0x01,0x06,0x01,0x06,0x20,0xff,0x00,0xfc,0x04,0xfc,0x00,0xff,0x01,0xfe,0xc4,0x78,0xa8,0x57,0x92,0x60 -+// 22159 嚏 ; -+,0x00,0x03,0x78,0x4b,0x48,0x49,0x49,0x49,0x49,0x4b,0x78,0x49,0x01,0x02,0x04,0x08,0x20,0xfe,0x20,0xff,0x02,0xfc,0x24,0xfc,0x24,0xff,0x22,0x3c,0x20,0xa0,0x60,0x1f -+// 22160 嚐 ; -+,0x01,0x00,0x7b,0x4a,0x48,0x49,0x49,0x49,0x49,0x78,0x48,0x01,0x01,0x01,0x01,0x01,0x24,0xa8,0xff,0x8a,0xf8,0x00,0x38,0xc0,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 22161 嚑 ; -+,0x00,0x01,0x78,0x4b,0x48,0x49,0x49,0x49,0x49,0x79,0x48,0x47,0x00,0x02,0x02,0x04,0x1c,0xe0,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x00,0x92,0x4b,0x4a -+// 22162 嚒 ; -+,0x00,0x7b,0x4a,0x4a,0x4b,0x4a,0x4a,0x4b,0x4a,0x7a,0x4a,0x42,0x04,0x04,0x09,0x10,0x20,0xff,0x44,0x44,0xef,0xc4,0xee,0x55,0x44,0x20,0x44,0xf8,0x24,0xce,0xf2,0x80 -+// 22163 嚓 ; -+,0x00,0x00,0x7b,0x4d,0x49,0x4a,0x4d,0x48,0x49,0x7a,0x4d,0x01,0x01,0x02,0x04,0x00,0x40,0x20,0xff,0x02,0xfe,0x54,0x48,0x84,0xfb,0x00,0xfe,0x28,0xa4,0x26,0xa4,0x40 -+// 22164 嚔 ; -+,0x00,0x01,0x78,0x4b,0x4a,0x4d,0x49,0x49,0x49,0x79,0x48,0x41,0x02,0x01,0x01,0x06,0x20,0xfc,0x20,0xff,0x02,0xfc,0x24,0xfc,0x24,0xfc,0x80,0xfe,0x22,0x3c,0x20,0xff -+// 22165 嚕 ; -+,0x00,0x00,0x79,0x4b,0x4d,0x49,0x49,0x49,0x4a,0x7a,0x45,0x01,0x01,0x01,0x01,0x01,0x80,0xfc,0x08,0xfe,0x22,0xfe,0x22,0xfe,0x92,0x49,0xfe,0x02,0xfe,0x02,0xfe,0x02 -+// 22166 嚖 ; -+,0x01,0x03,0x79,0x4b,0x49,0x4b,0x49,0x49,0x48,0x79,0x48,0x01,0x00,0x02,0x02,0x04,0x08,0xde,0x08,0xde,0x08,0xdf,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x22,0x99,0x92,0x7e -+// 22167 嚗 ; -+,0x01,0x79,0x49,0x49,0x49,0x48,0x4b,0x48,0x4b,0x79,0x42,0x04,0x00,0x01,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xfe,0x88,0xff,0x24,0xab,0x72,0xac,0x24,0xa0,0x40 -+// 22168 嚘 ; -+,0x03,0x78,0x49,0x49,0x49,0x49,0x4b,0x4d,0x49,0x7a,0x49,0x01,0x02,0x04,0x01,0x06,0xfe,0x20,0xfc,0x04,0xfc,0x04,0xff,0x22,0x95,0xfd,0x00,0xfc,0x88,0x70,0x8c,0x03 -+// 22169 嚙 ; -+,0x00,0x01,0x79,0x49,0x4b,0x48,0x4a,0x4b,0x4a,0x4b,0x7a,0x4a,0x03,0x02,0x03,0x00,0x20,0x20,0x3e,0x20,0xff,0x88,0x8a,0x56,0x02,0xfe,0x8a,0x8a,0x56,0x02,0xfe,0x00 -+// 22170 嚚 ; -+,0x1f,0x11,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x1f,0x11,0x1f,0x11,0x3e,0x22,0x3e,0x00,0xfe,0x40,0xfc,0x04,0xfc,0x40,0xfe,0x00,0x3e,0x22,0x3e,0x22 -+// 22171 嚛 ; -+,0x02,0x03,0x7a,0x4d,0x4f,0x4a,0x4d,0x4f,0x48,0x78,0x4b,0x00,0x00,0x01,0x02,0x04,0x22,0x43,0x74,0xd5,0x7f,0x52,0x55,0xff,0x81,0x20,0xff,0x70,0xa8,0x24,0x23,0x22 -+// 22172 嚜 ; -+,0x03,0x02,0x7a,0x4a,0x4b,0x48,0x4b,0x48,0x4f,0x4a,0x7c,0x48,0x03,0x00,0x00,0x07,0xfe,0x22,0xaa,0x72,0xfe,0x20,0xfe,0x20,0xff,0x92,0x92,0x20,0xfe,0x20,0x20,0xff -+// 22173 嚝 ; -+,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x4b,0x4a,0x4a,0x7a,0x4a,0x42,0x04,0x04,0x08,0x13,0x40,0x20,0xff,0x48,0xfe,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x48,0xc6,0x02 -+// 22174 嚞 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x7f,0x08,0x3e,0x00,0x3e,0x22,0x3e,0x80,0xff,0x80,0xfe,0x00,0xfc,0x04,0xfc,0x08,0x7f,0x08,0x3e,0x00,0x3e,0x22,0x3e -+// 22175 嚟 ; -+,0x00,0x7b,0x49,0x4f,0x4b,0x4b,0x4d,0x49,0x48,0x79,0x46,0x09,0x00,0x03,0x01,0x00,0x50,0x90,0x1e,0xea,0x8a,0x52,0x2a,0x24,0x50,0xac,0x23,0xa8,0x70,0xae,0x24,0x60 -+// 22176 嚠 ; -+,0x03,0x74,0x54,0x55,0x57,0x55,0x52,0x54,0x5f,0x51,0x77,0x51,0x05,0x03,0x0f,0x00,0x01,0xf1,0x55,0x55,0x55,0x95,0x75,0x25,0xe5,0x05,0xc5,0x05,0x45,0x81,0xe5,0x02 -+// 22177 嚡 ; -+,0x04,0x04,0x7f,0x54,0x57,0x51,0x57,0x55,0x55,0x77,0x51,0x4f,0x01,0x01,0x01,0x01,0x44,0x44,0xe4,0x5f,0xc4,0x04,0xdf,0x44,0x44,0xdf,0x04,0xe4,0x04,0x04,0x3f,0x00 -+// 22178 嚢 ; -+,0x00,0x1f,0x00,0x0f,0x08,0x1f,0x24,0x0a,0x32,0x0f,0x02,0x1f,0x06,0x1a,0x63,0x02,0x80,0xfe,0x80,0xfc,0x84,0xff,0x12,0x2c,0x23,0xfc,0x20,0xfe,0x48,0x30,0x1c,0x08 -+// 22179 嚣 ; -+,0x1f,0x11,0x1f,0x00,0x3f,0x02,0x0f,0x08,0x08,0x0b,0x1c,0x7f,0x11,0x11,0x1f,0x11,0x3e,0x22,0x3e,0x00,0xff,0x00,0xfc,0x84,0x84,0x64,0x18,0x7f,0x44,0x44,0x7c,0x44 -+// 22180 嚤 ; -+,0x00,0x03,0x7a,0x4a,0x4b,0x4a,0x4b,0x4b,0x4a,0x7a,0x4a,0x42,0x04,0x05,0x08,0x10,0x20,0xff,0x88,0x88,0xde,0x8c,0xdb,0xaa,0x9c,0xf0,0x10,0xfe,0x10,0xff,0x10,0x70 -+// 22181 嚥 ; -+,0x00,0x00,0x7b,0x48,0x48,0x49,0x4f,0x49,0x49,0x7b,0x4c,0x40,0x02,0x02,0x04,0x00,0x88,0x88,0xff,0x88,0xf8,0x04,0x75,0x56,0x54,0x77,0x00,0x24,0x92,0x49,0x49,0x00 -+// 22182 嚦 ; -+,0x00,0x03,0x7a,0x4b,0x4a,0x4b,0x4a,0x4b,0x7a,0x4a,0x44,0x04,0x08,0x08,0x13,0x00,0x00,0xff,0x66,0xdc,0x44,0xff,0xee,0x55,0x44,0x10,0x90,0x9e,0x90,0x90,0xff,0x00 -+// 22183 嚧 ; -+,0x00,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x05,0x05,0x09,0x13,0x20,0x3e,0x20,0xff,0x22,0xfc,0x22,0x1e,0xfc,0xa4,0xfc,0xa4,0xfe,0x52,0x52,0xff -+// 22184 嚨 ; -+,0x02,0x01,0x7f,0x4a,0x49,0x4f,0x48,0x4b,0x4a,0x4b,0x7a,0x4b,0x02,0x02,0x02,0x00,0x10,0x1e,0xf0,0x5e,0x82,0xfe,0x10,0xde,0x50,0xde,0x50,0xde,0x51,0x51,0xdf,0x00 -+// 22185 嚩 ; -+,0x02,0x02,0x74,0x55,0x5f,0x59,0x52,0x55,0x5f,0x70,0x55,0x4a,0x0a,0x10,0x00,0x00,0x0c,0x0a,0x7f,0x08,0xff,0x49,0x7f,0x49,0xff,0xc9,0x04,0xff,0xa4,0x24,0x04,0x0c -+// 22186 嚪 ; -+,0x03,0x7a,0x4b,0x4a,0x4b,0x4a,0x4a,0x4b,0x4a,0x7a,0x4a,0x02,0x02,0x02,0x02,0x00,0xcf,0x49,0xcf,0x49,0xcf,0x41,0xfd,0x09,0xdd,0x85,0xcd,0x85,0xfd,0x85,0x03,0x00 -+// 22187 嚫 ; -+,0x02,0x01,0x7f,0x4c,0x4a,0x48,0x4f,0x49,0x4f,0x79,0x4d,0x05,0x09,0x11,0x05,0x02,0x00,0x3e,0xe2,0x7e,0xa2,0x22,0xfe,0x22,0xe2,0x3e,0x94,0x54,0x15,0x25,0x47,0x80 -+// 22188 嚬 ; -+,0x00,0x00,0x78,0x4a,0x4a,0x4f,0x48,0x4a,0x4b,0x4a,0x7c,0x48,0x01,0x02,0x04,0x08,0x80,0xbf,0x84,0xe8,0x9f,0xf1,0x9f,0xb1,0xbf,0xd1,0xd1,0x9f,0x0a,0x11,0x21,0x40 -+// 22189 嚭 ; -+,0x08,0x7f,0x08,0x3f,0x00,0x3f,0x21,0x3f,0x12,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x00,0x00,0x7f,0x08,0x10,0x18,0x34,0x52,0x92,0x10,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 22190 嚮 ; -+,0x08,0x0d,0x13,0x3d,0x0b,0x13,0x1f,0x05,0x19,0x2f,0x08,0x09,0x09,0x09,0x08,0x08,0x80,0xef,0x29,0xea,0x2a,0xe9,0x4d,0x6a,0xa8,0xfe,0x02,0xf2,0x12,0xf2,0x0a,0x04 -+// 22191 嚯 ; -+,0x00,0x01,0x00,0x7b,0x4a,0x4d,0x48,0x49,0x49,0x4b,0x7d,0x49,0x41,0x01,0x01,0x01,0x00,0xfe,0x20,0xff,0x21,0x28,0xa4,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 22192 嚰 ; -+,0x00,0x00,0x7b,0x4a,0x4b,0x4a,0x4b,0x4a,0x4a,0x7b,0x42,0x02,0x05,0x06,0x08,0x10,0x20,0x10,0xff,0x88,0xfe,0xdc,0xda,0xa9,0x88,0xff,0x40,0xfe,0x82,0x82,0xfe,0x82 -+// 22193 嚱 ; -+,0x01,0x01,0x71,0x57,0x55,0x57,0x55,0x55,0x54,0x57,0x75,0x05,0x05,0x09,0x08,0x13,0x04,0xc4,0x06,0xe5,0x27,0xdc,0x24,0xe5,0x05,0xf6,0x2c,0xf4,0x24,0x45,0xf3,0x81 -+// 22194 嚲 ; -+,0x10,0x09,0x7f,0x01,0x3e,0x22,0x3e,0x00,0x3e,0x04,0x08,0x0e,0x78,0x08,0x28,0x10,0x00,0xef,0x29,0xef,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 22195 嚳 ; -+,0x1d,0x10,0x1d,0x11,0x1c,0x11,0x3f,0x28,0x4f,0x08,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x2e,0xc2,0x2e,0x22,0xce,0x22,0xff,0x82,0xf8,0x80,0xfc,0x00,0xf8,0x08,0xf8,0x08 -+// 22196 嚴 ; -+,0x1f,0x11,0x1f,0x00,0x3f,0x2f,0x21,0x2f,0x24,0x27,0x24,0x27,0x24,0x2f,0x40,0x40,0x7c,0x44,0x7c,0x00,0xfe,0x90,0x10,0xde,0xa4,0xe4,0x94,0x88,0xc8,0x94,0xa3,0xc2 -+// 22197 嚵 ; -+,0x01,0x01,0x7a,0x4f,0x4a,0x4b,0x49,0x49,0x4b,0x49,0x4a,0x7f,0x02,0x03,0x01,0x06,0x00,0xfc,0x08,0xfe,0x02,0xfe,0x14,0xd8,0x12,0xfc,0x08,0xfc,0x44,0xfc,0x95,0x1f -+// 22198 嚶 ; -+,0x03,0x7a,0x4b,0x4a,0x4b,0x4a,0x4b,0x48,0x4a,0x7c,0x4b,0x00,0x00,0x00,0x00,0x03,0xde,0x52,0xde,0x52,0xde,0x52,0xde,0x14,0xa3,0x42,0xff,0x84,0x48,0x30,0xcc,0x03 -+// 22199 嚷 ; -+,0x00,0x00,0x7f,0x4a,0x4b,0x48,0x4b,0x48,0x4b,0x48,0x7f,0x48,0x01,0x02,0x05,0x00,0x40,0x20,0xff,0x52,0xde,0x88,0xfe,0x88,0xfe,0x88,0xff,0xa0,0x92,0xac,0xc7,0x82 -+// 22200 嚸 ; -+,0x00,0x07,0x74,0x56,0x55,0x57,0x50,0x50,0x57,0x70,0x50,0x07,0x00,0x05,0x09,0x00,0x04,0xf4,0x94,0xb4,0xd7,0xf4,0x84,0x84,0xff,0x91,0xf1,0x11,0x11,0x5f,0x51,0x00 -+// 22201 嚹 ; -+,0x04,0x06,0x74,0x57,0x5a,0x52,0x52,0x5f,0x52,0x52,0x5a,0x7a,0x0a,0x0a,0x0f,0x00,0x08,0x0f,0x08,0xbf,0x29,0x3e,0x29,0xef,0x20,0x3f,0xb5,0xae,0xbf,0xa4,0xa4,0x4c -+// 22202 嚺 ; -+,0x00,0x00,0x7c,0x4a,0x4a,0x48,0x48,0x4e,0x4b,0x4a,0x7b,0x4a,0x03,0x02,0x05,0x08,0x00,0xfe,0xaa,0xaa,0xfe,0x20,0x62,0x94,0x38,0x54,0xb2,0x53,0x92,0x30,0xff,0x00 -+// 22203 嚻 ; -+,0x07,0x78,0x49,0x4b,0x4a,0x7b,0x02,0x02,0x7b,0x4a,0x4a,0x4b,0x49,0x7a,0x4a,0x04,0xf0,0x8f,0x09,0xe9,0x29,0xef,0x20,0x20,0xef,0x29,0x29,0xe9,0x49,0x2f,0x39,0x20 -+// 22204 嚼 ; -+,0x03,0x01,0x78,0x4b,0x4a,0x4a,0x4b,0x48,0x4b,0x4b,0x7a,0x4b,0x02,0x02,0x02,0x03,0xfe,0x44,0xa8,0xfe,0x92,0x92,0xfe,0x04,0xc4,0x7f,0xc4,0xd4,0x14,0x84,0xc4,0x4c -+// 22205 嚽 ; -+,0x00,0x7f,0x48,0x4b,0x49,0x49,0x4a,0x4a,0x4d,0x79,0x49,0x01,0x01,0x01,0x00,0x03,0x88,0xe8,0x8f,0xf1,0x19,0xe6,0x29,0x51,0xfe,0x02,0xe2,0x1e,0x02,0xfe,0xcc,0x03 -+// 22206 嚾 ; -+,0x00,0x07,0x78,0x4b,0x4a,0x4b,0x48,0x49,0x49,0x4b,0x7d,0x49,0x01,0x01,0x01,0x01,0x88,0xff,0x88,0xde,0x52,0xde,0xa0,0x10,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 22207 嚿 ; -+,0x00,0x07,0x78,0x49,0x49,0x4b,0x4d,0x49,0x49,0x79,0x48,0x41,0x01,0x01,0x01,0x01,0x84,0xff,0xa4,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x60,0x8e,0x02,0xce,0x02,0xfe -+// 22208 囀 ; -+,0x01,0x01,0x77,0x51,0x57,0x55,0x57,0x55,0x57,0x71,0x51,0x0f,0x01,0x01,0x01,0x01,0x04,0x3f,0xc4,0x1f,0xd5,0x5f,0xd5,0x5f,0xc5,0x3f,0x02,0xdf,0x12,0x0a,0x02,0x06 -+// 22209 囁 ; -+,0x03,0x78,0x48,0x48,0x48,0x4f,0x48,0x4f,0x4a,0x7b,0x4a,0x03,0x02,0x03,0x0c,0x00,0xff,0x88,0xe8,0x98,0x88,0xff,0x08,0xdf,0x92,0x9e,0x92,0x9e,0xd3,0xbe,0x82,0x82 -+// 22210 囂 ; -+,0x1f,0x11,0x11,0x7f,0x01,0x0f,0x0b,0x08,0x0b,0x08,0x0f,0x07,0x78,0x1f,0x11,0x1f,0x3e,0x22,0x22,0xff,0x00,0xfc,0x84,0x74,0x84,0x74,0xfc,0x38,0x07,0x3e,0x22,0x3e -+// 22211 囃 ; -+,0x02,0x01,0x7f,0x48,0x4a,0x4a,0x4d,0x49,0x49,0x4f,0x7b,0x4b,0x05,0x09,0x11,0x00,0x00,0x14,0xd4,0x1f,0xb4,0x94,0x5f,0x14,0x14,0xff,0x94,0x54,0x54,0x1f,0x10,0x00 -+// 22212 囄 ; -+,0x02,0x01,0x7f,0x50,0x56,0x55,0x56,0x57,0x51,0x57,0x75,0x57,0x44,0x04,0x04,0x00,0x10,0x14,0xd4,0x1f,0xf4,0x54,0xdf,0xd4,0x14,0xdf,0x54,0xd4,0xd4,0x5f,0xd0,0x00 -+// 22213 囅 ; -+,0x00,0x77,0x55,0x77,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0x09,0x0a,0x00,0x7f,0x41,0x7f,0x54,0x7f,0x54,0x54,0x7f,0x52,0x5b,0x54,0x94,0x93,0x3a,0x10 -+// 22214 囆 ; -+,0x00,0x07,0x78,0x49,0x49,0x49,0x49,0x4b,0x4a,0x4a,0x48,0x7b,0x4a,0x03,0x00,0x07,0x88,0xff,0x88,0xfc,0x24,0xfc,0x24,0xfe,0x2a,0xfa,0x04,0xfe,0x22,0xfe,0x24,0xfc -+// 22215 囇 ; -+,0x03,0x00,0x7b,0x4b,0x4a,0x48,0x4b,0x4a,0x4b,0x4a,0x7b,0x4a,0x02,0x04,0x05,0x08,0xde,0x00,0xde,0x5a,0x52,0x20,0xff,0x48,0xfe,0x4a,0xfe,0x88,0xee,0x89,0xe9,0x87 -+// 22216 囈 ; -+,0x00,0x07,0x79,0x4f,0x49,0x4f,0x4a,0x4d,0x4b,0x79,0x4f,0x00,0x07,0x00,0x01,0x03,0x88,0xff,0x88,0xc8,0x1e,0xca,0x9a,0x4e,0x92,0x21,0xfe,0x00,0xff,0x84,0x3e,0xe2 -+// 22217 囉 ; -+,0x00,0x03,0x7a,0x4b,0x49,0x49,0x4a,0x4f,0x49,0x4a,0x7f,0x00,0x0a,0x0a,0x0a,0x00,0x00,0xfe,0x52,0xfe,0x14,0x14,0xbf,0xe4,0x3f,0xa4,0xe4,0x7f,0xa4,0xa4,0xbf,0x00 -+// 22218 囊 ; -+,0x00,0x3f,0x00,0x1f,0x10,0x3f,0x49,0x0f,0x02,0x1f,0x02,0x3f,0x06,0x1a,0x63,0x02,0x80,0xff,0x80,0xfe,0x82,0xff,0x4a,0x78,0x10,0xfe,0x10,0xff,0x42,0x34,0x18,0x07 -+// 22219 囋 ; -+,0x02,0x03,0x7c,0x4f,0x4a,0x4a,0x4a,0x4d,0x49,0x49,0x79,0x49,0x01,0x01,0x00,0x07,0x98,0xde,0xa8,0xff,0x94,0xd5,0xa3,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x07 -+// 22220 囌 ; -+,0x00,0x07,0x78,0x4a,0x4b,0x4c,0x4b,0x4a,0x4b,0x4a,0x7b,0x48,0x04,0x05,0x09,0x00,0x88,0xff,0x88,0x00,0xe7,0x5c,0xe4,0xbf,0xec,0xac,0xf6,0x15,0xa5,0x54,0x54,0x04 -+// 22221 囍 ; -+,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x12,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x08,0x7f,0x08,0x3e,0x00,0x3f,0x21,0x3f,0x21,0x12,0x3f,0x00,0x3f,0x21,0x3f,0x21 -+// 22222 囎 ; -+,0x00,0x07,0x74,0x57,0x54,0x54,0x57,0x54,0x54,0x57,0x74,0x40,0x04,0x06,0x08,0x10,0x00,0xa1,0x92,0xbf,0xa5,0xb7,0xad,0xbf,0x80,0x9f,0x91,0x1f,0x91,0x51,0x5f,0x11 -+// 22223 囏 ; -+,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x3f,0x04,0x7f,0x0a,0x11,0x21,0x40,0x10,0x10,0xff,0x10,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x24,0xff,0x00,0x7e,0x42,0x7e -+// 22224 囐 ; -+,0x00,0x00,0x70,0x57,0x54,0x57,0x54,0x55,0x55,0x75,0x58,0x4f,0x15,0x17,0x14,0x24,0x84,0xe4,0x86,0xf5,0x94,0xcf,0xa4,0xe4,0x24,0xe4,0x04,0xf4,0x5a,0xf9,0x99,0xb0 -+// 22225 囑 ; -+,0x03,0x7a,0x4b,0x4a,0x4a,0x4a,0x4b,0x4a,0x4b,0x7d,0x45,0x06,0x05,0x09,0x08,0x13,0xfe,0x02,0xfe,0xa8,0x70,0xa8,0xfe,0x92,0xfe,0x00,0xfe,0x42,0xf2,0xf2,0x4a,0xfa -+// 22226 囒 ; -+,0x00,0x77,0x50,0x57,0x54,0x57,0x54,0x57,0x54,0x55,0x75,0x55,0x05,0x04,0x04,0x05,0x88,0xff,0x88,0x8f,0x89,0xaf,0xa9,0xff,0x21,0xfd,0xad,0x75,0xfd,0x71,0xa9,0x25 -+// 22227 囓 ; -+,0x00,0x03,0x78,0x4b,0x48,0x4f,0x48,0x49,0x49,0x4f,0x7a,0x4a,0x03,0x02,0x02,0x03,0x80,0xef,0x89,0xe9,0x89,0xf1,0xa3,0x3c,0x20,0xff,0x45,0xab,0xff,0x45,0xab,0xff -+// 22228 囔 ; -+,0x00,0x07,0x72,0x53,0x50,0x53,0x55,0x51,0x50,0x57,0x70,0x07,0x00,0x03,0x0c,0x00,0x20,0xff,0x22,0xfe,0x20,0xff,0x55,0xdc,0x88,0xff,0x88,0xff,0x92,0x94,0xc8,0x87 -+// 22229 囕 ; -+,0x07,0x05,0x77,0x54,0x57,0x55,0x57,0x52,0x53,0x52,0x53,0x72,0x03,0x00,0x01,0x06,0xe8,0x0f,0xd4,0x62,0xdf,0x15,0xff,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x88,0x09,0x0f -+// 22230 囖 ; -+,0x02,0x03,0x72,0x54,0x57,0x54,0x57,0x52,0x55,0x5f,0x72,0x55,0x0f,0x00,0x15,0x15,0x08,0xef,0x8a,0x92,0xff,0x89,0xff,0x34,0x54,0x7f,0xd4,0x5f,0xd4,0xdf,0x54,0x5f -+// 22231 囗 ; -+,0x00,0x3f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0x20,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 22232 囘 ; -+,0x00,0x3f,0x20,0x20,0x27,0x24,0x24,0x27,0x24,0x24,0x24,0x24,0x23,0x20,0x20,0x20,0x00,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x12,0x02,0x12,0x1a,0xf2,0x02,0x0a,0x04 -+// 22233 囙 ; -+,0x00,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x3f,0x20,0x00,0x00,0xfe,0x02,0x02,0x02,0xc2,0x42,0x42,0x42,0xc2,0x42,0x02,0x02,0xfe,0x02,0x00 -+// 22234 囚 ; -+,0x00,0x3f,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x22,0x24,0x28,0x30,0x3f,0x20,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0x42,0x22,0x12,0x1a,0x0a,0x02,0xfe,0x02,0x00 -+// 22235 四 ; -+,0x00,0x3f,0x22,0x22,0x22,0x22,0x22,0x22,0x24,0x24,0x28,0x30,0x20,0x3f,0x20,0x00,0x00,0xfe,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x3e,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 22236 囜 ; -+,0x00,0x3f,0x20,0x21,0x21,0x21,0x21,0x22,0x22,0x24,0x2f,0x20,0x20,0x3f,0x20,0x00,0x00,0xfe,0x02,0x02,0x82,0x02,0x42,0x22,0x12,0xfa,0x9a,0x12,0x02,0xfe,0x02,0x00 -+// 22237 囝 ; -+,0x00,0x3f,0x20,0x27,0x20,0x20,0x20,0x2f,0x20,0x20,0x20,0x20,0x22,0x21,0x3f,0x20,0x00,0xfe,0x02,0xf2,0x22,0x42,0x82,0xfa,0x82,0x82,0x82,0x82,0x82,0x02,0xfe,0x02 -+// 22238 回 ; -+,0x00,0x3f,0x20,0x20,0x27,0x24,0x24,0x24,0x24,0x24,0x27,0x20,0x20,0x20,0x3f,0x00,0x00,0xfe,0x02,0x02,0xf2,0x12,0x12,0x12,0x12,0x12,0xf2,0x02,0x02,0x02,0xfe,0x00 -+// 22239 囟 ; -+,0x00,0x01,0x02,0x1f,0x18,0x14,0x12,0x11,0x10,0x10,0x11,0x12,0x14,0x18,0x1f,0x10,0x80,0x80,0x00,0xfe,0x12,0x1a,0x12,0x22,0xc2,0xa2,0x12,0x1a,0x0e,0x0a,0xfe,0x02 -+// 22240 因 ; -+,0x00,0x3f,0x20,0x20,0x20,0x2f,0x20,0x21,0x21,0x23,0x22,0x24,0x28,0x20,0x3f,0x20,0x00,0xfe,0x82,0x82,0x82,0xfa,0x82,0x82,0x42,0x22,0x12,0x1a,0x12,0x02,0xfe,0x02 -+// 22241 囡 ; -+,0x00,0x3f,0x21,0x21,0x3f,0x22,0x22,0x24,0x22,0x21,0x22,0x24,0x28,0x20,0x3f,0x20,0x00,0xfe,0x02,0x02,0xfe,0x22,0x22,0x22,0x42,0x82,0x62,0x1a,0x0a,0x02,0xfe,0x02 -+// 22242 团 ; -+,0x00,0x3f,0x20,0x20,0x2f,0x20,0x20,0x21,0x22,0x24,0x28,0x30,0x21,0x20,0x3f,0x20,0x00,0xfe,0x42,0x42,0xfa,0xc2,0xc2,0x42,0x42,0x42,0x42,0x42,0x42,0x82,0xfe,0x02 -+// 22243 団 ; -+,0x00,0x3f,0x20,0x20,0x20,0x2f,0x24,0x22,0x23,0x22,0x20,0x20,0x20,0x20,0x3f,0x20,0x00,0xfe,0x22,0x22,0x22,0xfa,0x22,0x22,0x22,0x22,0x22,0xa2,0x42,0x02,0xfe,0x02 -+// 22244 囤 ; -+,0x00,0x3f,0x20,0x20,0x2f,0x20,0x24,0x24,0x24,0x27,0x20,0x20,0x20,0x20,0x3f,0x20,0x00,0xfe,0x82,0x82,0xfa,0x82,0x92,0x92,0x92,0xf2,0x82,0x8a,0xfa,0x02,0xfe,0x02 -+// 22245 囥 ; -+,0x00,0x3f,0x21,0x20,0x2f,0x20,0x23,0x22,0x22,0x22,0x24,0x24,0x28,0x20,0x3f,0x20,0x00,0xfe,0x02,0x82,0xfa,0x02,0xc2,0x42,0x42,0x4a,0x4a,0x3a,0x02,0x02,0xfe,0x02 -+// 22246 囦 ; -+,0x00,0x3f,0x20,0x20,0x20,0x2e,0x22,0x22,0x24,0x24,0x28,0x32,0x21,0x20,0x3f,0x20,0x00,0xfe,0x82,0x92,0x9a,0xb2,0xc2,0xc2,0xa2,0xb2,0x9a,0x92,0x02,0x02,0xfe,0x02 -+// 22247 囧 ; -+,0x00,0x3f,0x22,0x23,0x22,0x24,0x28,0x37,0x24,0x24,0x24,0x24,0x24,0x24,0x3f,0x00,0x00,0xfe,0x42,0x22,0x12,0x1a,0x0a,0xf2,0x12,0x12,0x12,0x12,0x12,0x12,0xfe,0x00 -+// 22248 囨 ; -+,0x00,0x3f,0x20,0x3f,0x20,0x20,0x21,0x22,0x24,0x28,0x30,0x20,0x20,0x20,0x3f,0x20,0x00,0xfe,0x02,0xfe,0x82,0x82,0xc2,0xa2,0x9a,0x8e,0x8a,0x82,0x82,0x82,0xfe,0x02 -+// 22249 囩 ; -+,0x00,0x3f,0x20,0x27,0x20,0x20,0x2f,0x20,0x21,0x22,0x24,0x2f,0x24,0x20,0x3f,0x20,0x00,0xfe,0x02,0xf2,0x02,0x02,0xfa,0x82,0x02,0x22,0x12,0xfa,0x12,0x02,0xfe,0x02 -+// 22250 囪 ; -+,0x01,0x02,0x3f,0x20,0x20,0x29,0x26,0x23,0x24,0x28,0x21,0x22,0x24,0x20,0x3f,0x20,0x00,0x00,0xfe,0x02,0x82,0x0a,0x12,0x22,0xc2,0xe2,0x32,0x1a,0x12,0x02,0xfe,0x02 -+// 22251 囫 ; -+,0x00,0x3f,0x22,0x22,0x27,0x25,0x29,0x32,0x22,0x24,0x29,0x22,0x24,0x20,0x3f,0x20,0x00,0xfe,0x02,0x02,0xfa,0x2a,0x2a,0x4a,0x4a,0x8a,0x0a,0x2a,0x12,0x02,0xfe,0x02 -+// 22252 囬 ; -+,0x00,0x3f,0x22,0x22,0x23,0x22,0x22,0x22,0x23,0x22,0x22,0x22,0x22,0x3f,0x20,0x00,0x00,0xfe,0x22,0x22,0xe2,0x22,0x22,0x22,0xe2,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 22253 园 ; -+,0x00,0x3f,0x20,0x27,0x20,0x20,0x2f,0x22,0x22,0x22,0x24,0x28,0x30,0x20,0x3f,0x20,0x00,0xfe,0x02,0xf2,0x02,0x12,0xfa,0x42,0x42,0x4a,0x4a,0x3a,0x02,0x02,0xfe,0x02 -+// 22254 囮 ; -+,0x00,0x3f,0x22,0x23,0x22,0x24,0x2c,0x34,0x24,0x25,0x24,0x24,0x24,0x20,0x3f,0x20,0x00,0xfe,0x42,0x42,0x4a,0x52,0x62,0x42,0xc2,0x42,0x4a,0x4a,0x3a,0x02,0xfe,0x02 -+// 22255 囯 ; -+,0x00,0x3f,0x20,0x27,0x20,0x20,0x20,0x27,0x20,0x20,0x20,0x2f,0x20,0x20,0x3f,0x20,0x00,0xfe,0x02,0xf2,0x82,0x82,0x82,0xf2,0x82,0x82,0x82,0xfa,0x02,0x02,0xfe,0x02 -+// 22256 困 ; -+,0x3f,0x20,0x20,0x20,0x2f,0x21,0x21,0x22,0x22,0x24,0x24,0x28,0x20,0x20,0x3f,0x20,0xfe,0x82,0x82,0x82,0xfa,0x82,0xc2,0xa2,0xb2,0x9a,0x92,0x82,0x82,0x02,0xfe,0x02 -+// 22257 囱 ; -+,0x02,0x04,0x3f,0x22,0x22,0x27,0x24,0x2b,0x30,0x20,0x21,0x26,0x20,0x20,0x3f,0x20,0x00,0x00,0xfe,0x02,0x02,0xf2,0x22,0x22,0xc2,0xc2,0x22,0x12,0x12,0x02,0xfe,0x02 -+// 22258 囲 ; -+,0x00,0x3f,0x22,0x22,0x2f,0x22,0x22,0x2f,0x22,0x22,0x24,0x24,0x28,0x20,0x3f,0x20,0x00,0xfe,0x22,0x22,0xfa,0x22,0x22,0xfa,0x22,0x22,0x22,0x22,0x22,0x02,0xfe,0x02 -+// 22259 図 ; -+,0x00,0x3f,0x20,0x24,0x25,0x22,0x22,0x21,0x20,0x21,0x22,0x24,0x28,0x20,0x3f,0x20,0x00,0xfe,0x02,0x92,0x52,0xa2,0x22,0x42,0x82,0x42,0x22,0x1a,0x12,0x02,0xfe,0x02 -+// 22260 围 ; -+,0x3f,0x21,0x21,0x2f,0x21,0x27,0x21,0x2f,0x21,0x21,0x21,0x21,0x21,0x20,0x3f,0x20,0xfe,0x02,0x02,0xfa,0x02,0xf2,0x02,0xf2,0x12,0x12,0x12,0x52,0x22,0x02,0xfe,0x02 -+// 22261 囵 ; -+,0x00,0x3f,0x20,0x21,0x22,0x24,0x3a,0x22,0x22,0x23,0x22,0x22,0x21,0x20,0x3f,0x20,0x00,0xfe,0x82,0x42,0x22,0x12,0x0e,0x42,0xe2,0x02,0x12,0x12,0xf2,0x02,0xfe,0x02 -+// 22262 囶 ; -+,0x00,0x3f,0x22,0x23,0x24,0x24,0x28,0x20,0x27,0x20,0x20,0x2f,0x20,0x20,0x3f,0x20,0x00,0xfe,0x42,0x22,0x12,0x9a,0x92,0x82,0xf2,0x82,0x82,0xfa,0x02,0x02,0xfe,0x02 -+// 22263 囷 ; -+,0x00,0x3f,0x20,0x20,0x27,0x20,0x20,0x2f,0x21,0x22,0x22,0x24,0x28,0x20,0x3f,0x20,0x00,0xfe,0x02,0xf2,0x82,0x82,0x82,0xfa,0xc2,0xa2,0x9a,0x92,0x82,0x82,0xfe,0x02 -+// 22264 囸 ; -+,0x00,0x3f,0x20,0x2f,0x20,0x20,0x24,0x24,0x24,0x24,0x24,0x24,0x2f,0x20,0x3f,0x20,0x00,0xfe,0x02,0xfa,0x82,0x82,0x82,0xf2,0x82,0x82,0x82,0x82,0xfa,0x02,0xfe,0x02 -+// 22265 囹 ; -+,0x00,0x3f,0x20,0x21,0x22,0x25,0x28,0x37,0x20,0x22,0x21,0x20,0x20,0x20,0x3f,0x20,0x00,0xfe,0x82,0x42,0x22,0x1a,0x8e,0xf2,0x22,0x42,0x82,0x82,0x42,0x02,0xfe,0x02 -+// 22266 固 ; -+,0x00,0x3f,0x20,0x20,0x2f,0x20,0x20,0x27,0x24,0x24,0x24,0x27,0x24,0x20,0x3f,0x20,0x00,0xfe,0x82,0x82,0xfa,0x82,0x82,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0xfe,0x02 -+// 22267 囻 ; -+,0x00,0x3f,0x20,0x27,0x24,0x27,0x24,0x24,0x27,0x24,0x24,0x25,0x2e,0x24,0x3f,0x20,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x82,0x82,0xf2,0x42,0x4a,0x2a,0x1a,0x02,0xfe,0x02 -+// 22268 囼 ; -+,0x00,0x3f,0x21,0x21,0x22,0x24,0x2f,0x20,0x27,0x24,0x24,0x27,0x24,0x20,0x3f,0x20,0x00,0xfe,0x02,0x02,0x22,0x12,0xfa,0x12,0xe2,0x22,0x22,0xe2,0x22,0x02,0xfe,0x02 -+// 22269 国 ; -+,0x00,0x3f,0x20,0x2f,0x20,0x20,0x20,0x27,0x20,0x20,0x20,0x2f,0x20,0x20,0x3f,0x20,0x00,0xfe,0x02,0xfa,0x82,0x82,0x82,0xf2,0xa2,0x92,0x92,0xfa,0x02,0x02,0xfe,0x02 -+// 22270 图 ; -+,0x00,0x3f,0x22,0x23,0x22,0x25,0x38,0x21,0x26,0x38,0x20,0x21,0x20,0x20,0x3f,0x20,0x00,0xfe,0x02,0xf2,0x22,0x42,0x82,0x62,0x1e,0x8a,0x42,0x02,0xc2,0x82,0xfe,0x02 -+// 22271 囿 ; -+,0x3f,0x21,0x21,0x2f,0x22,0x23,0x26,0x2b,0x32,0x23,0x22,0x22,0x22,0x20,0x3f,0x20,0xfe,0x02,0x02,0xfa,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x12,0x52,0x22,0x02,0xfe,0x02 -+// 22272 圀 ; -+,0x3f,0x20,0x22,0x24,0x29,0x30,0x3f,0x21,0x21,0x22,0x22,0x24,0x28,0x20,0x3f,0x20,0xfe,0x02,0x42,0x22,0x1e,0x8a,0xfa,0x02,0xf2,0x12,0x12,0x52,0x22,0x02,0xfe,0x02 -+// 22273 圁 ; -+,0x3f,0x21,0x20,0x2f,0x20,0x27,0x20,0x27,0x20,0x27,0x24,0x27,0x24,0x20,0x3f,0x00,0xfe,0x02,0x82,0xfa,0x02,0xf2,0x02,0xf2,0x02,0xf2,0x12,0xf2,0x12,0x02,0xfe,0x00 -+// 22274 圂 ; -+,0x00,0x3f,0x20,0x2f,0x20,0x23,0x2c,0x23,0x24,0x29,0x22,0x24,0x29,0x20,0x3f,0x20,0x00,0xfe,0x12,0xfa,0x82,0x22,0xb2,0x42,0xe2,0x5a,0x4a,0x42,0x42,0x82,0xfe,0x02 -+// 22275 圃 ; -+,0x00,0x3f,0x20,0x2f,0x20,0x27,0x24,0x27,0x24,0x27,0x24,0x24,0x24,0x20,0x3f,0x20,0x00,0xfe,0x82,0xfa,0x82,0xf2,0x92,0xf2,0x92,0xf2,0x92,0x92,0xb2,0x02,0xfe,0x02 -+// 22276 圄 ; -+,0x3f,0x20,0x2f,0x21,0x27,0x21,0x21,0x3f,0x20,0x27,0x24,0x24,0x27,0x20,0x3f,0x20,0xfe,0x02,0xfa,0x02,0xf2,0x12,0x12,0xfe,0x02,0xf2,0x12,0x12,0xf2,0x02,0xfe,0x02 -+// 22277 圅 ; -+,0x1f,0x00,0x03,0x00,0x1f,0x14,0x12,0x17,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0xfc,0x08,0x30,0xc0,0xfe,0x12,0x22,0xfa,0x82,0x82,0xfe,0x82,0x82,0x82,0x02,0xfe -+// 22278 圆 ; -+,0x3f,0x20,0x27,0x24,0x27,0x20,0x27,0x24,0x24,0x24,0x24,0x21,0x22,0x24,0x3f,0x20,0xfe,0x02,0xf2,0x12,0xf2,0x02,0xf2,0x12,0x92,0x92,0x92,0x42,0x22,0x12,0xfe,0x02 -+// 22279 圇 ; -+,0x00,0x3f,0x20,0x21,0x22,0x2f,0x30,0x27,0x25,0x27,0x25,0x25,0x24,0x20,0x3f,0x20,0x00,0xfe,0x82,0x42,0x32,0xee,0x02,0xf2,0x52,0xf2,0x52,0x52,0x32,0x02,0xfe,0x02 -+// 22280 圈 ; -+,0x3f,0x20,0x24,0x22,0x2f,0x21,0x3f,0x22,0x27,0x3a,0x22,0x22,0x21,0x20,0x3f,0x20,0xfe,0x02,0x92,0xa2,0xfa,0x02,0xfe,0x22,0xde,0x4a,0xc2,0x12,0xf2,0x02,0xfe,0x02 -+// 22281 圉 ; -+,0x3f,0x20,0x20,0x27,0x20,0x2f,0x24,0x22,0x2f,0x20,0x3f,0x20,0x20,0x20,0x3f,0x20,0xfe,0x82,0x82,0xf2,0x82,0xfa,0x12,0x22,0xfa,0x82,0xfe,0x82,0x82,0x82,0xfe,0x02 -+// 22282 圊 ; -+,0x3f,0x20,0x2f,0x20,0x2f,0x20,0x3f,0x20,0x27,0x24,0x27,0x24,0x27,0x24,0x24,0x3f,0xfe,0x82,0xfa,0x82,0xfa,0x82,0xfe,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x12,0x12,0xfe -+// 22283 國 ; -+,0x3f,0x20,0x20,0x20,0x2f,0x20,0x2f,0x29,0x2f,0x20,0x23,0x2c,0x21,0x20,0x3f,0x20,0xfe,0x42,0x52,0x52,0xfa,0x42,0x52,0x5a,0x32,0x22,0x6a,0xaa,0x12,0x02,0xfe,0x02 -+// 22284 圌 ; -+,0x3f,0x20,0x20,0x28,0x2f,0x20,0x2f,0x21,0x2f,0x29,0x29,0x29,0x28,0x20,0x3f,0x20,0xfe,0x02,0x82,0x8a,0xfa,0x02,0xfa,0x02,0xfa,0x4a,0x4a,0x4a,0x1a,0x02,0xfe,0x02 -+// 22285 圍 ; -+,0x3f,0x21,0x2f,0x21,0x3f,0x20,0x27,0x24,0x27,0x20,0x2f,0x28,0x3f,0x20,0x3f,0x20,0xfe,0x02,0xf2,0x22,0xfe,0x02,0xf2,0x12,0xf2,0x82,0xfa,0x82,0xfe,0x82,0xfe,0x02 -+// 22286 圎 ; -+,0x3f,0x21,0x22,0x2f,0x20,0x27,0x24,0x27,0x24,0x27,0x24,0x27,0x22,0x24,0x28,0x3f,0xfe,0x12,0x7a,0xca,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x12,0xf2,0x22,0x12,0x0a,0xfe -+// 22287 圏 ; -+,0x3f,0x20,0x24,0x22,0x2f,0x21,0x2f,0x24,0x2b,0x30,0x23,0x22,0x23,0x20,0x3f,0x20,0xfe,0x82,0x92,0xa2,0xfa,0x02,0xfa,0x22,0xde,0x4a,0xc2,0x12,0xf2,0x02,0xfe,0x02 -+// 22288 圐 ; -+,0x3f,0x20,0x2f,0x29,0x29,0x2f,0x20,0x3f,0x22,0x23,0x22,0x22,0x24,0x28,0x3f,0x20,0xfe,0x02,0xfa,0x4a,0x4a,0xfa,0x82,0xfe,0x02,0xf2,0x12,0x12,0x52,0x22,0xfe,0x02 -+// 22289 圑 ; -+,0x3f,0x20,0x3f,0x20,0x2f,0x28,0x2f,0x28,0x2f,0x28,0x3f,0x22,0x22,0x20,0x20,0x3f,0xfe,0x82,0xfe,0x82,0xfa,0x8a,0xfa,0x8a,0xfa,0xaa,0xfe,0x22,0x22,0xa2,0x42,0xfe -+// 22290 園 ; -+,0x3f,0x20,0x2f,0x20,0x2f,0x20,0x27,0x24,0x27,0x21,0x23,0x25,0x39,0x21,0x3f,0x20,0xfe,0x82,0xfa,0x82,0xfa,0x02,0xf2,0x12,0xf2,0x8a,0x52,0x22,0x9e,0x0a,0xfe,0x02 -+// 22291 圓 ; -+,0x3f,0x20,0x27,0x24,0x27,0x20,0x27,0x24,0x27,0x24,0x24,0x27,0x22,0x24,0x28,0x3f,0xfe,0x02,0xf2,0x12,0xf2,0x02,0xf2,0x12,0x12,0xf2,0x12,0xf2,0x22,0x12,0x0a,0xfe -+// 22292 圔 ; -+,0x3f,0x20,0x2f,0x20,0x2f,0x21,0x22,0x27,0x20,0x2f,0x2a,0x2a,0x3f,0x20,0x3f,0x20,0xfe,0x82,0xf2,0x82,0xfa,0x22,0x12,0xfa,0x12,0xfa,0x4a,0x4a,0xfe,0x02,0xfe,0x02 -+// 22293 圕 ; -+,0x3f,0x20,0x2f,0x20,0x3f,0x20,0x2f,0x20,0x3f,0x24,0x27,0x24,0x27,0x20,0x3f,0x00,0xff,0x81,0xf9,0x89,0xff,0x89,0xf9,0x81,0xff,0x11,0xf1,0x11,0xf1,0x01,0xff,0x00 -+// 22294 圖 ; -+,0x3f,0x20,0x27,0x24,0x27,0x20,0x2f,0x20,0x2f,0x2a,0x2b,0x28,0x2f,0x20,0x3f,0x20,0xfe,0x02,0xf2,0x12,0xf2,0x82,0xfa,0x82,0xfa,0x2a,0xea,0x0a,0xfa,0x02,0xfe,0x02 -+// 22295 圗 ; -+,0x3f,0x22,0x24,0x2f,0x20,0x3f,0x20,0x2f,0x2a,0x2b,0x2a,0x2b,0x2a,0x2f,0x20,0x3f,0xfe,0x02,0x12,0xfa,0x92,0xfe,0x82,0xfa,0x2a,0xea,0x2a,0xea,0x2a,0xfa,0x02,0xfe -+// 22296 團 ; -+,0x3f,0x20,0x2f,0x20,0x2f,0x28,0x2f,0x28,0x2f,0x20,0x2f,0x20,0x3f,0x24,0x22,0x3f,0xfe,0x82,0xfa,0x82,0xfa,0x8a,0xfa,0x8a,0xfa,0x92,0xfa,0x2a,0xfe,0x22,0x62,0xfe -+// 22297 圙 ; -+,0x3f,0x22,0x24,0x28,0x3f,0x21,0x2f,0x2a,0x2b,0x2a,0x2b,0x2a,0x2f,0x20,0x3f,0x00,0xfe,0x22,0x1a,0x12,0xfe,0x02,0xfa,0x2a,0xea,0x2a,0xea,0x2a,0xfa,0x02,0xfe,0x00 -+// 22298 圚 ; -+,0x3f,0x20,0x2f,0x28,0x2f,0x20,0x3f,0x24,0x27,0x24,0x27,0x24,0x27,0x22,0x2c,0x3f,0xfe,0x82,0xfa,0x8a,0xfa,0x82,0xfe,0x12,0xf2,0x12,0xf2,0x12,0xf2,0x22,0x1a,0xfe -+// 22299 圛 ; -+,0x3f,0x29,0x29,0x2f,0x20,0x27,0x20,0x2f,0x22,0x21,0x2f,0x20,0x3f,0x20,0x20,0x3f,0xfe,0x4a,0x4a,0xfa,0x82,0xf2,0x82,0xfa,0x12,0x22,0xfa,0x82,0xfe,0x82,0x82,0xfe -+// 22300 圜 ; -+,0x3f,0x20,0x2f,0x29,0x2f,0x20,0x3f,0x20,0x27,0x24,0x27,0x22,0x26,0x2b,0x26,0x3f,0xfe,0x02,0xfa,0x4a,0xfa,0x02,0xfe,0x02,0xf2,0x12,0xf2,0x92,0x62,0x3a,0x12,0xfe -+// 22301 圝 ; -+,0x7f,0x48,0x48,0x53,0x7e,0x44,0x49,0x54,0x7f,0x40,0x55,0x55,0x55,0x61,0x40,0x7f,0xff,0x89,0x49,0xf3,0x1f,0x05,0xe9,0x15,0xff,0x05,0xd1,0x55,0x55,0xd5,0x01,0xff -+// 22302 圞 ; -+,0x7f,0x48,0x55,0x7c,0x49,0x54,0x7f,0x45,0x69,0x68,0x7f,0x41,0x46,0x58,0x60,0x7f,0xff,0x85,0xeb,0x1f,0xc5,0x09,0xdf,0x41,0xd5,0x95,0xff,0xc1,0xb1,0x8f,0x85,0xff -+// 22303 土 ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x80,0x80,0x80,0x84,0xfe,0x80,0x80,0x80,0x80,0x80,0x80,0x82,0xff,0x00,0x00 -+// 22304 圠 ; -+,0x00,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x09,0x0e,0x78,0x20,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x22,0x22,0x23,0x1e,0x00 -+// 22305 圡 ; -+,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0xfe,0x80,0xa0,0x90,0x98,0x8c,0x88,0x82,0xff,0x00,0x00 -+// 22306 圢 ; -+,0x08,0x08,0x09,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0f,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x20,0x00 -+// 22307 圣 ; -+,0x00,0x1f,0x04,0x02,0x01,0x00,0x03,0x0c,0x70,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0xfc,0x18,0x30,0x60,0x80,0x60,0x1e,0x84,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22308 圤 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x09,0x0e,0x78,0x20,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x30,0x2c,0x26,0x23,0xa2,0x20,0x20,0x20,0x20,0x20,0x00 -+// 22309 圥 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 22310 圦 ; -+,0x00,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x0e,0x18,0x61,0x02,0x04,0x08,0xc0,0x20,0x20,0x20,0x20,0x20,0x20,0x50,0x50,0x48,0x88,0x84,0x04,0x02,0x03,0x02 -+// 22311 圧 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x2f,0x20,0x40,0x00,0xfe,0x00,0x40,0x40,0x40,0xfc,0x40,0x40,0x40,0x40,0x40,0x40,0xff,0x00,0x00 -+// 22312 在 ; -+,0x01,0x01,0x3f,0x02,0x02,0x04,0x0c,0x0b,0x18,0x28,0x48,0x08,0x08,0x0b,0x08,0x00,0x00,0x00,0xff,0x00,0x00,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 22313 圩 ; -+,0x00,0x09,0x08,0x08,0x7e,0x08,0x0b,0x08,0x08,0x0b,0x0c,0x30,0x40,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 22314 圪 ; -+,0x08,0x08,0x08,0x08,0x08,0x7d,0x0a,0x08,0x08,0x08,0x0e,0x18,0x60,0x00,0x00,0x00,0x40,0x60,0x40,0xff,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x40,0x81,0x81,0x7f,0x00 -+// 22315 圫 ; -+,0x00,0x08,0x0b,0x08,0x08,0x7e,0x08,0x08,0x0b,0x08,0x0b,0x1c,0x70,0x20,0x00,0x00,0x04,0x3e,0xe0,0x20,0x20,0x20,0x27,0x78,0xa0,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 22316 圬 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x0b,0x0c,0x70,0x20,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x40,0x40,0x7e,0x02,0x02,0x02,0x02,0x24,0x18,0x00 -+// 22317 圭 ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x7f,0x00,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x80,0x80,0xfe,0x80,0x80,0x80,0x80,0xff,0x00 -+// 22318 圮 ; -+,0x00,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0xff,0x00 -+// 22319 圯 ; -+,0x00,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x0f,0x78,0x20,0x00,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 22320 地 ; -+,0x00,0x08,0x08,0x08,0x7e,0x08,0x0b,0x08,0x08,0x08,0x08,0x0e,0x18,0x60,0x00,0x00,0x10,0x90,0x90,0x92,0x9f,0xf2,0x92,0x92,0x92,0x9a,0x94,0x90,0x81,0x81,0x7f,0x00 -+// 22321 圱 ; -+,0x01,0x03,0x1c,0x64,0x04,0x04,0x7f,0x04,0x04,0x04,0x08,0x08,0x10,0x21,0x40,0x00,0x00,0x90,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 22322 圲 ; -+,0x00,0x08,0x09,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x0e,0x78,0x20,0x00,0x00,0x00,0x04,0x3e,0xd0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 22323 圳 ; -+,0x00,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x1d,0x62,0x02,0x04,0x08,0x00,0x00,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x02,0x00 -+// 22324 圴 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x09,0x08,0x08,0x0b,0x1c,0x70,0x20,0x00,0x00,0x40,0x60,0x40,0x7e,0x42,0x82,0xa2,0x12,0x1a,0x12,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 22325 圵 ; -+,0x08,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x09,0x0e,0x78,0x20,0x03,0x00,0x20,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 22326 圶 ; -+,0x00,0x00,0x3f,0x01,0x01,0x02,0x04,0x18,0x60,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x80,0x80,0xfe,0x40,0x20,0x10,0x0c,0x87,0x82,0xfc,0x80,0x80,0x80,0x80,0xff,0x00 -+// 22327 圷 ; -+,0x08,0x0b,0x08,0x08,0x0a,0x7f,0x08,0x08,0x08,0x08,0x0b,0x1c,0x60,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x30,0x28,0x24,0x22,0x22,0x20,0x20,0x20,0x20,0x20,0x00 -+// 22328 圸 ; -+,0x08,0x08,0x08,0x08,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x0f,0x19,0x61,0x01,0x00,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 22329 圹 ; -+,0x00,0x08,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x22,0x02,0x04,0x08,0x20,0x10,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 22330 场 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0b,0x0c,0x71,0x20,0x00,0x01,0x00,0x00,0xfc,0x08,0x10,0x20,0x42,0xff,0x2a,0x2a,0x52,0x92,0x22,0x42,0x82,0x0a,0x04 -+// 22331 圻 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0x19,0x61,0x02,0x02,0x04,0x08,0x04,0xfe,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08,0x00 -+// 22332 圼 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x00 -+// 22333 圽 ; -+,0x08,0x08,0x08,0x08,0x08,0x7f,0x0a,0x08,0x08,0x08,0x0e,0x19,0x62,0x00,0x03,0x00,0x40,0x60,0x40,0x7f,0xaa,0x2a,0x2a,0x4a,0x52,0x92,0xa2,0x22,0x42,0x82,0x0a,0x04 -+// 22334 圾 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0d,0x19,0x62,0x02,0x04,0x09,0x12,0x00,0xfe,0x84,0x84,0x88,0x8f,0x81,0xc2,0xc2,0x24,0x28,0x18,0x2c,0x47,0x82,0x00 -+// 22335 圿 ; -+,0x00,0x08,0x08,0x08,0x08,0x7f,0x0a,0x08,0x08,0x08,0x0f,0x78,0x20,0x01,0x02,0x04,0x20,0x20,0x50,0x48,0x84,0x03,0x4a,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08,0x00 -+// 22336 址 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x78,0x23,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x90,0x9e,0x90,0x90,0x90,0x90,0x90,0x92,0xff,0x00,0x00 -+// 22337 坁 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0x18,0x70,0x21,0x00,0x00,0x00,0x0e,0xf0,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0x89,0xa5,0xc3,0x81,0x00 -+// 22338 坂 ; -+,0x00,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0d,0x72,0x02,0x04,0x08,0x00,0x04,0xfe,0x00,0x00,0x00,0xfc,0x44,0x44,0x28,0x28,0x10,0x10,0x2c,0x47,0x82,0x00 -+// 22339 坃 ; -+,0x00,0x09,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x0e,0x70,0x20,0x01,0x02,0x04,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 22340 坄 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x09,0x0a,0x08,0x08,0x0b,0x0c,0x70,0x20,0x01,0x06,0x00,0xf8,0x88,0x88,0x88,0x87,0x00,0xfc,0x84,0x44,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 22341 坅 ; -+,0x08,0x08,0x08,0x08,0x08,0x7d,0x0a,0x08,0x09,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x20,0x20,0x50,0x48,0xa4,0x13,0x12,0x00,0xfe,0x04,0x04,0x08,0x08,0x10,0x10,0x20 -+// 22342 坆 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x09,0x0a,0x08,0x08,0x0b,0x0c,0x70,0x20,0x01,0x02,0x40,0x60,0x40,0x42,0xff,0x84,0x84,0x48,0x48,0x48,0x30,0x30,0x48,0x8c,0x07,0x02 -+// 22343 均 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x08,0x0b,0x0c,0x71,0x20,0x00,0x00,0x00,0x40,0x60,0x42,0x7f,0x82,0x82,0x42,0x32,0x22,0x0e,0x32,0xc2,0x82,0x12,0x0a,0x04 -+// 22344 坈 ; -+,0x08,0x09,0x09,0x0a,0x08,0x7e,0x08,0x08,0x08,0x0e,0x78,0x20,0x01,0x02,0x04,0x00,0x00,0xff,0x01,0x02,0x48,0x7c,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x09,0x07,0x00 -+// 22345 坉 ; -+,0x10,0x10,0x10,0x13,0x7c,0x10,0x11,0x11,0x11,0x11,0x16,0x18,0x60,0x00,0x00,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0x24,0x24,0x24,0xfc,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 22346 坊 ; -+,0x00,0x08,0x08,0x0b,0x08,0x7e,0x08,0x08,0x08,0x0b,0x0c,0x70,0x20,0x01,0x02,0x04,0x40,0x30,0x10,0xff,0x40,0x40,0x40,0x7e,0x42,0x42,0x42,0x82,0x82,0x02,0x14,0x08 -+// 22347 坋 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x0b,0x0c,0x70,0x21,0x02,0x04,0x00,0x48,0x68,0x44,0xc4,0x83,0x02,0xfc,0x44,0x44,0x44,0x84,0x84,0x04,0x14,0x08 -+// 22348 坌 ; -+,0x04,0x06,0x04,0x08,0x17,0x22,0x42,0x04,0x04,0x08,0x3f,0x00,0x00,0x00,0x7f,0x00,0x40,0x20,0x10,0x0c,0xf7,0x12,0x10,0x10,0x50,0xa0,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22349 坍 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x0b,0x08,0x09,0x0e,0x78,0x21,0x01,0x02,0x04,0x00,0xfe,0x82,0xa2,0x9a,0x92,0x82,0xff,0x82,0x82,0x82,0x82,0x02,0x02,0x0a,0x04 -+// 22350 坎 ; -+,0x10,0x10,0x10,0x10,0x7c,0x11,0x12,0x10,0x10,0x12,0x1c,0x70,0x20,0x01,0x02,0x04,0x40,0x60,0x40,0xfe,0x82,0x24,0x28,0x20,0x20,0x50,0x50,0x88,0x8c,0x07,0x02,0x00 -+// 22351 坏 ; -+,0x10,0x13,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x15,0x1a,0x74,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x70,0x68,0xa4,0x23,0x22,0x20,0x20,0x20,0x20,0x20 -+// 22352 坐 ; -+,0x00,0x00,0x08,0x08,0x08,0x14,0x12,0x22,0x40,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x80,0x80,0x88,0x88,0x88,0x88,0x94,0xa2,0xc0,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22353 坑 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x71,0x21,0x02,0x02,0x04,0x40,0x20,0x10,0xfe,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0x08,0x09,0x09,0x07,0x00 -+// 22354 坒 ; -+,0x10,0x10,0x10,0x1f,0x10,0x10,0x16,0x18,0x10,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x40,0x40,0x44,0x4e,0x70,0x41,0x41,0x3f,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22355 坓 ; -+,0x02,0x02,0x02,0x3f,0x02,0x02,0x7f,0x04,0x04,0x08,0x00,0x3f,0x00,0x00,0x7f,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x90,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22356 坔 ; -+,0x00,0x00,0x00,0x3e,0x04,0x04,0x08,0x10,0x62,0x01,0x00,0x1f,0x00,0x00,0x7f,0x00,0x80,0x80,0x84,0x8e,0xd0,0xa0,0x98,0x8e,0x84,0x00,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22357 坕 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x1f,0x00,0x00,0x00,0x7f,0x00,0x1c,0xe0,0x90,0x90,0x90,0x88,0x84,0x87,0x02,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22358 坖 ; -+,0x00,0x0f,0x00,0x00,0x3f,0x02,0x02,0x04,0x08,0x10,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0xfc,0x00,0x00,0xff,0x20,0x20,0x21,0x9f,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22359 块 ; -+,0x10,0x10,0x10,0x11,0x7c,0x10,0x10,0x10,0x17,0x10,0x1c,0x70,0x21,0x01,0x02,0x04,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0xff,0x40,0xa0,0x90,0x0c,0x07,0x02,0x00 -+// 22360 坘 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x09,0x08,0x0e,0x70,0x20,0x03,0x00,0x00,0xff,0x40,0x40,0x44,0x7e,0x44,0x84,0x84,0xfc,0x84,0x04,0x08,0x08,0xff,0x00 -+// 22361 坙 ; -+,0x00,0x3f,0x04,0x04,0x08,0x11,0x08,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00,0xfe,0x88,0xcc,0x88,0x10,0x88,0x44,0x44,0x80,0xfe,0x80,0x80,0x80,0xff,0x00 -+// 22362 坚 ; -+,0x04,0x05,0x24,0x24,0x24,0x24,0x24,0x24,0x05,0x04,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0xfe,0x84,0x88,0x50,0x20,0x58,0x87,0x02,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22363 坛 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x0e,0x18,0x61,0x03,0x01,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xff,0x20,0x30,0x40,0x44,0x82,0x3f,0xe3,0x02,0x00 -+// 22364 坜 ; -+,0x00,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0d,0x72,0x22,0x04,0x09,0x00,0x00,0xff,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x9c,0x08,0x00 -+// 22365 坝 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x70,0x20,0x00,0x01,0x00,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x28,0x28,0x44,0x43,0x82,0x00 -+// 22366 坞 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0x19,0x60,0x00,0x00,0x00,0x10,0x20,0xfe,0x82,0x82,0x82,0x8e,0x84,0xff,0x01,0x01,0xfd,0x01,0x01,0x0a,0x04 -+// 22367 坟 ; -+,0x08,0x08,0x08,0x0b,0x08,0x7f,0x08,0x08,0x08,0x0b,0x0c,0x70,0x20,0x00,0x01,0x06,0x40,0x30,0x20,0xff,0x84,0x84,0x84,0x48,0x48,0x30,0x30,0x30,0x48,0x84,0x03,0x02 -+// 22368 坠 ; -+,0x1f,0x11,0x12,0x14,0x12,0x11,0x1a,0x14,0x11,0x12,0x1f,0x00,0x00,0x00,0x3f,0x00,0x20,0x20,0x20,0x20,0x50,0x50,0x88,0x8c,0x07,0x82,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22369 坡 ; -+,0x10,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x15,0x19,0x62,0x02,0x04,0x04,0x09,0x10,0x10,0x10,0xff,0x12,0x14,0x10,0x7c,0x44,0x44,0x28,0x28,0x10,0x28,0x47,0x82 -+// 22370 坢 ; -+,0x00,0x12,0x11,0x11,0x11,0x7c,0x11,0x10,0x10,0x13,0x10,0x1c,0x70,0x20,0x00,0x00,0x20,0x24,0x26,0xa4,0x28,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 22371 坣 ; -+,0x00,0x08,0x06,0x04,0x1f,0x10,0x20,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x80,0x88,0x8c,0x92,0xff,0x02,0x84,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0xff,0x00 -+// 22372 坤 ; -+,0x00,0x08,0x08,0x09,0x7f,0x09,0x09,0x09,0x09,0x0f,0x19,0x61,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x11,0x10,0x10,0x10,0x10,0x10 -+// 22373 坥 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x23,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 22374 坦 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0x18,0x70,0x20,0x07,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00,0x00,0xff,0x00 -+// 22375 坧 ; -+,0x10,0x13,0x10,0x10,0x7c,0x10,0x10,0x10,0x11,0x12,0x10,0x1c,0x60,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x40,0x40,0xc0,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x00 -+// 22376 坨 ; -+,0x00,0x08,0x08,0x09,0x09,0x7e,0x08,0x08,0x08,0x08,0x0b,0x0c,0x70,0x20,0x00,0x00,0x20,0x10,0xff,0x02,0x04,0x40,0x44,0x4e,0x58,0x60,0x40,0x42,0x42,0x43,0x3e,0x00 -+// 22377 坩 ; -+,0x08,0x08,0x08,0x08,0x09,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x70,0x20,0x00,0x00,0x84,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 22378 坪 ; -+,0x10,0x13,0x10,0x10,0x7d,0x11,0x10,0x10,0x13,0x10,0x16,0x18,0x60,0x00,0x00,0x00,0x00,0xfe,0x20,0x20,0x24,0x26,0xa4,0xa8,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 22379 坫 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x09,0x0e,0x70,0x20,0x00,0x00,0x00,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x00 -+// 22380 坬 ; -+,0x00,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x15,0x19,0x62,0x02,0x04,0x08,0x00,0x04,0x1e,0xe8,0x48,0x48,0x48,0x48,0x48,0x44,0x44,0x44,0x52,0x5a,0xeb,0x42,0x00 -+// 22381 坭 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x22,0x02,0x04,0x08,0x00,0xfe,0x02,0x02,0xfe,0x02,0x40,0x44,0x4e,0x70,0x40,0x42,0x42,0x42,0x3e,0x00 -+// 22382 坮 ; -+,0x10,0x10,0x10,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x1e,0x70,0x20,0x00,0x00,0x00,0x20,0x30,0x20,0x44,0x82,0xff,0x82,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 22383 坯 ; -+,0x00,0x0b,0x08,0x08,0x08,0x7e,0x08,0x08,0x09,0x0a,0x08,0x0e,0x70,0x27,0x00,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x68,0xa4,0x22,0x23,0x22,0x20,0x20,0xff,0x00,0x00 -+// 22384 坰 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x01,0x00,0x00,0xfe,0x02,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04,0x00 -+// 22385 坱 ; -+,0x10,0x10,0x10,0x11,0x11,0x7d,0x11,0x11,0x17,0x10,0x10,0x1c,0x60,0x01,0x02,0x04,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x20,0x50,0x48,0x8c,0x07,0x02,0x00 -+// 22386 坲 ; -+,0x10,0x10,0x13,0x10,0x10,0x7d,0x11,0x11,0x11,0x10,0x10,0x1c,0x70,0x21,0x02,0x04,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xfe,0x4a,0x4a,0x8a,0x8e,0x08,0x08,0x08 -+// 22387 坳 ; -+,0x10,0x10,0x10,0x11,0x7d,0x12,0x13,0x10,0x10,0x11,0x1e,0x73,0x00,0x00,0x00,0x00,0x88,0xc8,0x88,0x08,0x3e,0x4a,0xea,0x4a,0x8a,0x52,0xd2,0x62,0x22,0x4a,0x84,0x00 -+// 22388 坴 ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x04,0x08,0x10,0x6f,0x00,0x00,0x00,0x3f,0x00,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x10,0x8c,0x87,0xfa,0x80,0x80,0x80,0xff,0x00 -+// 22389 坵 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x07,0x00,0x00,0x00,0x1e,0xe0,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0xff,0x00,0x00 -+// 22390 坶 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x0e,0x71,0x20,0x00,0x00,0x00,0x00,0xfc,0x84,0xa4,0x94,0x94,0xff,0x84,0xa4,0x94,0x94,0xff,0x84,0x04,0x14,0x08 -+// 22391 坷 ; -+,0x10,0x11,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x10,0x1e,0x70,0x20,0x00,0x00,0x00,0x00,0xff,0x02,0x02,0xf2,0x92,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x02,0x0a,0x04 -+// 22392 坸 ; -+,0x10,0x10,0x10,0x10,0x11,0x7d,0x12,0x10,0x10,0x10,0x1c,0x70,0x20,0x00,0x00,0x00,0x80,0xc0,0x82,0xff,0x02,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x8a,0x02,0x02,0x14,0x08 -+// 22393 坹 ; -+,0x10,0x10,0x10,0x11,0x11,0x7e,0x10,0x10,0x10,0x10,0x1e,0x70,0x21,0x02,0x04,0x00,0x40,0x30,0x20,0xff,0x02,0x04,0x50,0x50,0x50,0x48,0x88,0x84,0x04,0x03,0x02,0x00 -+// 22394 坺 ; -+,0x10,0x10,0x10,0x10,0x13,0x7c,0x10,0x10,0x10,0x11,0x11,0x1e,0x62,0x04,0x09,0x00,0x50,0x4c,0x48,0x42,0xff,0x40,0xfc,0x84,0x88,0x48,0x30,0x10,0x2c,0x47,0x82,0x00 -+// 22395 坻 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x11,0x1d,0x73,0x21,0x00,0x00,0x04,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x28,0x49,0xa5,0x13,0x11,0x00 -+// 22396 坼 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0x79,0x21,0x02,0x04,0x08,0x00,0x04,0xfe,0x80,0x80,0x80,0xff,0x90,0x90,0x98,0x96,0x13,0x12,0x10,0x10,0x10,0x00 -+// 22397 坽 ; -+,0x10,0x10,0x10,0x10,0x10,0x7d,0x12,0x10,0x11,0x10,0x16,0x78,0x20,0x00,0x00,0x00,0x20,0x20,0x50,0x48,0x84,0x23,0x12,0x10,0xfe,0x04,0x04,0x48,0x28,0x10,0x10,0x00 -+// 22398 坾 ; -+,0x10,0x10,0x10,0x11,0x11,0x7c,0x10,0x11,0x10,0x10,0x1c,0x70,0x20,0x00,0x00,0x00,0x20,0x10,0x10,0xff,0x02,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 22399 坿 ; -+,0x08,0x08,0x08,0x08,0x08,0x7f,0x09,0x0a,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x44,0x64,0x44,0x44,0x84,0xbf,0x84,0xc4,0xa4,0xb4,0xa4,0x84,0x84,0x84,0x94,0x88 -+// 22400 垀 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x08,0x08,0x09,0x08,0x0e,0x78,0x20,0x00,0x00,0x00,0x00,0x0f,0xf0,0x12,0x93,0x54,0x58,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 22401 垁 ; -+,0x10,0x10,0x10,0x10,0x11,0x7d,0x12,0x13,0x10,0x10,0x10,0x1c,0x70,0x01,0x02,0x04,0x80,0xc0,0x80,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x50,0x88,0x04,0x03,0x02 -+// 22402 垂 ; -+,0x00,0x00,0x1f,0x00,0x3f,0x04,0x04,0x7f,0x04,0x04,0x3f,0x00,0x00,0x00,0x1f,0x00,0x08,0xfc,0x80,0x80,0xff,0x90,0x90,0xff,0x90,0x90,0xfe,0x80,0x80,0x80,0xfe,0x00 -+// 22403 垃 ; -+,0x00,0x08,0x08,0x0b,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x03,0x00,0x20,0x10,0x10,0xff,0x00,0x04,0x84,0x84,0x44,0x48,0x68,0x48,0x10,0x10,0xff,0x00 -+// 22404 垄 ; -+,0x01,0x01,0x3f,0x01,0x02,0x02,0x04,0x0b,0x10,0x20,0x0f,0x00,0x00,0x00,0x7f,0x00,0x10,0x08,0xfe,0x40,0x48,0x70,0xc2,0x42,0xbe,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22405 垅 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x71,0x22,0x04,0x08,0x00,0x50,0x4c,0x48,0x42,0xff,0x50,0x54,0x56,0x94,0x98,0x90,0x30,0x51,0x91,0x0f,0x00 -+// 22406 垆 ; -+,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x70,0x21,0x01,0x02,0x04,0x20,0x20,0x3f,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82,0x80,0x80,0x00,0x00,0x00,0x00 -+// 22407 垇 ; -+,0x00,0x13,0x12,0x12,0x12,0x7e,0x12,0x12,0x12,0x12,0x12,0x1e,0x63,0x02,0x02,0x00,0x00,0xcf,0x49,0x49,0x49,0x49,0x49,0x79,0x49,0x01,0x01,0x01,0xff,0x01,0x01,0x00 -+// 22408 垈 ; -+,0x08,0x0c,0x08,0x08,0x1b,0x28,0x48,0x08,0x08,0x08,0x1f,0x00,0x00,0x00,0x3f,0x00,0x40,0x48,0x44,0x4f,0xf0,0x40,0x21,0x19,0x87,0x80,0xfe,0x80,0x80,0x82,0xff,0x00 -+// 22409 垉 ; -+,0x08,0x08,0x08,0x08,0x3f,0x0a,0x08,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x40,0x60,0x80,0xfe,0x02,0xf2,0x92,0x92,0xf2,0x92,0x82,0x8a,0x84,0x81,0x7f,0x00 -+// 22410 垊 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x70,0x21,0x00,0x00,0x00,0xfe,0x82,0x82,0xfe,0x92,0x90,0x90,0xff,0x88,0x88,0x88,0xa5,0xc5,0x83,0x00 -+// 22411 型 ; -+,0x00,0x3f,0x09,0x09,0x7f,0x09,0x09,0x11,0x11,0x20,0x00,0x1f,0x00,0x00,0x7f,0x00,0x02,0xc2,0x12,0x12,0xf2,0x12,0x12,0x12,0x02,0x8a,0x84,0xfe,0x80,0x80,0xff,0x00 -+// 22412 垌 ; -+,0x08,0x09,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x01,0x00,0x00,0xfe,0x02,0x02,0xfe,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04,0x00 -+// 22413 垍 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x78,0x20,0x00,0x00,0x00,0x10,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 22414 垎 ; -+,0x10,0x10,0x10,0x10,0x7d,0x12,0x10,0x10,0x10,0x13,0x1c,0x60,0x00,0x00,0x00,0x00,0x40,0x40,0xfe,0x84,0x48,0x50,0x20,0x58,0x84,0xff,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 22415 垏 ; -+,0x00,0x10,0x11,0x10,0x11,0x7c,0x11,0x10,0x11,0x10,0x1c,0x73,0x20,0x00,0x00,0x00,0x20,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 22416 垐 ; -+,0x00,0x20,0x10,0x15,0x0a,0x14,0x70,0x10,0x11,0x16,0x00,0x1f,0x00,0x00,0x7f,0x00,0x80,0x80,0xfe,0x04,0x28,0x20,0x50,0x88,0x07,0x82,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22417 垑 ; -+,0x00,0x08,0x08,0x08,0x09,0x7e,0x08,0x08,0x09,0x08,0x0e,0x71,0x20,0x00,0x00,0x03,0x40,0x40,0x7e,0x84,0x48,0x30,0x78,0x90,0x3f,0x42,0xa2,0x34,0x18,0x30,0xc0,0x00 -+// 22418 垒 ; -+,0x00,0x01,0x02,0x07,0x00,0x08,0x08,0x12,0x3f,0x12,0x00,0x1f,0x00,0x00,0x3f,0x00,0x80,0x10,0x08,0xfc,0x08,0x20,0x48,0x84,0xfe,0x44,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22419 垓 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x08,0x09,0x08,0x0b,0x0c,0x73,0x20,0x01,0x0e,0x00,0x40,0x30,0x12,0xff,0x20,0x44,0x88,0xf0,0x24,0x46,0x8c,0x18,0x66,0x83,0x02,0x00 -+// 22420 垔 ; -+,0x00,0x3f,0x01,0x01,0x1f,0x11,0x11,0x1f,0x10,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0xff,0x20,0x20,0xfe,0x22,0x22,0xfe,0x82,0x80,0xfe,0x80,0x80,0x80,0xff,0x00 -+// 22421 垕 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x17,0x14,0x14,0x17,0x24,0x20,0x4f,0x00,0x00,0x1f,0x00,0x04,0xfe,0x00,0xff,0x00,0xfc,0x04,0x04,0xfc,0x44,0x40,0xfe,0x40,0x40,0xff,0x00 -+// 22422 垖 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x10,0x20,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 22423 垗 ; -+,0x08,0x08,0x08,0x0a,0x09,0x7d,0x08,0x08,0x09,0x0a,0x08,0x0e,0x71,0x22,0x04,0x00,0x50,0x50,0x50,0x52,0x57,0x58,0x50,0xd8,0x57,0x52,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 22424 垘 ; -+,0x10,0x10,0x10,0x10,0x11,0x7d,0x13,0x15,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x00,0x90,0xd0,0x94,0x92,0x10,0xff,0x10,0x10,0x28,0x28,0x28,0x24,0x46,0x43,0x82,0x00 -+// 22425 垙 ; -+,0x10,0x10,0x12,0x11,0x10,0x7c,0x13,0x10,0x10,0x10,0x1c,0x70,0x20,0x01,0x02,0x00,0x20,0x20,0x24,0xa6,0xa4,0x28,0xff,0x50,0x50,0x50,0x50,0x91,0x91,0x11,0x0f,0x00 -+// 22426 垚 ; -+,0x00,0x00,0x3f,0x00,0x00,0x7f,0x00,0x08,0x08,0x7f,0x08,0x08,0x08,0x0f,0x70,0x00,0x80,0x80,0xfe,0x80,0x80,0xff,0x00,0x10,0x10,0x7f,0x10,0x10,0x10,0x10,0xff,0x00 -+// 22427 垛 ; -+,0x10,0x10,0x10,0x10,0x7c,0x11,0x12,0x10,0x17,0x10,0x1c,0x71,0x22,0x04,0x00,0x00,0x00,0xf8,0x88,0x88,0x88,0x0f,0x20,0x20,0xff,0x70,0xa8,0x24,0x23,0x22,0x20,0x20 -+// 22428 垜 ; -+,0x11,0x10,0x10,0x10,0x7e,0x10,0x11,0x12,0x13,0x10,0x10,0x1c,0x61,0x02,0x04,0x00,0xf8,0x48,0x48,0x4e,0x82,0x82,0x2a,0x24,0xff,0x70,0x68,0xa4,0x23,0x22,0x20,0x20 -+// 22429 垝 ; -+,0x10,0x10,0x10,0x11,0x13,0x7d,0x11,0x11,0x11,0x11,0x1d,0x72,0x22,0x04,0x08,0x00,0x80,0x80,0xfc,0x08,0xff,0x00,0x7c,0x44,0x44,0x44,0x5c,0x48,0x41,0x41,0x3f,0x00 -+// 22430 垞 ; -+,0x00,0x08,0x08,0x09,0x09,0x7e,0x09,0x08,0x08,0x08,0x09,0x0e,0x78,0x20,0x00,0x00,0x20,0x18,0x10,0xff,0x02,0x0c,0xf0,0x20,0x23,0x3c,0xe0,0x21,0x21,0x21,0x1f,0x00 -+// 22431 垟 ; -+,0x00,0x10,0x10,0x11,0x10,0x7e,0x10,0x10,0x10,0x10,0x11,0x1e,0x60,0x00,0x00,0x00,0x00,0x82,0x44,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 22432 垠 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x79,0x21,0x01,0x03,0x01,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x22,0x27,0x18,0x10,0x0c,0x47,0x82,0x00 -+// 22433 垡 ; -+,0x08,0x0c,0x08,0x1f,0x18,0x28,0x48,0x08,0x0b,0x08,0x00,0x0f,0x00,0x00,0x3f,0x00,0x50,0x48,0x4f,0xf0,0x44,0x48,0x30,0xd1,0x0d,0x83,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22434 垢 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x0f,0x79,0x22,0x02,0x04,0x08,0x00,0x1e,0xe0,0x00,0x00,0x00,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 22435 垣 ; -+,0x10,0x13,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x71,0x21,0x00,0x07,0x00,0x00,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 22436 垤 ; -+,0x08,0x09,0x08,0x08,0x08,0x7e,0x09,0x08,0x08,0x09,0x08,0x0e,0x70,0x20,0x03,0x00,0x00,0xff,0x20,0x20,0x44,0x82,0xff,0xa2,0x20,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 22437 垥 ; -+,0x08,0x08,0x08,0x08,0x08,0x7f,0x0a,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x20,0x20,0x50,0x4c,0x87,0x02,0xfc,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 22438 垦 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0a,0x0c,0x08,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x84,0x4c,0x30,0x8c,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22439 垧 ; -+,0x08,0x08,0x08,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x00,0x20,0x30,0x40,0xff,0x01,0x01,0x7d,0x45,0x45,0x7d,0x45,0x01,0x01,0x05,0x02,0x00 -+// 22440 垨 ; -+,0x00,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x0f,0x78,0x20,0x00,0x00,0x00,0x20,0x10,0xff,0x81,0x02,0x08,0x08,0xff,0x08,0x88,0x68,0x48,0x08,0x08,0x28,0x10 -+// 22441 垩 ; -+,0x00,0x1f,0x01,0x11,0x09,0x0d,0x09,0x3f,0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00,0xfe,0x20,0x24,0x26,0x24,0x28,0xfe,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22442 垪 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x08,0x09,0x08,0x08,0x0e,0x78,0x20,0x01,0x02,0x00,0x84,0x46,0x48,0xfe,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x88,0x88,0x08,0x08,0x00 -+// 22443 垫 ; -+,0x08,0x08,0x08,0x3e,0x08,0x0e,0x78,0x28,0x09,0x2a,0x10,0x0f,0x00,0x00,0x3f,0x00,0x40,0x40,0x40,0xf8,0x48,0xc8,0x68,0x95,0x05,0x83,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22444 垬 ; -+,0x08,0x08,0x08,0x08,0x09,0x3e,0x08,0x08,0x08,0x09,0x08,0x0e,0x70,0x00,0x01,0x02,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0xff,0x48,0x64,0xc2,0x83,0x01,0x00 -+// 22445 垭 ; -+,0x08,0x0b,0x08,0x08,0x3e,0x08,0x0a,0x09,0x09,0x09,0x0e,0x70,0x20,0x00,0x07,0x00,0x00,0xff,0x48,0x48,0x48,0x4a,0x4b,0x4a,0x4c,0x48,0x48,0x48,0x48,0x48,0xff,0x00 -+// 22446 垮 ; -+,0x10,0x10,0x13,0x10,0x7c,0x11,0x12,0x15,0x10,0x10,0x11,0x1c,0x60,0x00,0x00,0x00,0x40,0x40,0xff,0x90,0x88,0xfc,0x03,0xfc,0x80,0x80,0xfc,0x84,0x04,0x04,0x14,0x08 -+// 22447 垯 ; -+,0x10,0x11,0x10,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x14,0x18,0x60,0x01,0x02,0x00,0x08,0x08,0x88,0x88,0x7f,0x88,0x88,0x88,0x94,0x92,0xa3,0xc2,0x80,0x60,0x1f,0x00 -+// 22448 垰 ; -+,0x00,0x08,0x08,0x08,0x08,0x7e,0x0b,0x08,0x0b,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x20,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0xff,0x20,0x30,0x2c,0x26,0x24,0x20,0x20 -+// 22449 垱 ; -+,0x08,0x08,0x09,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x21,0x00,0x00,0x10,0x12,0x13,0x92,0x54,0x10,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 22450 垲 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x10,0x92,0x92,0x92,0xfe,0x00,0xfe,0x02,0x02,0xfe,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 22451 垳 ; -+,0x08,0x08,0x08,0x09,0x08,0x7e,0x08,0x09,0x0a,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x9e,0xc0,0x00,0x40,0x60,0xdf,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88,0x00 -+// 22452 垴 ; -+,0x08,0x08,0x08,0x0b,0x08,0x7e,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x00,0x40,0x30,0x20,0xff,0x00,0x84,0x4a,0x32,0x32,0x32,0x4a,0x8a,0x02,0xfe,0x02,0x00 -+// 22453 垵 ; -+,0x08,0x08,0x08,0x09,0x7f,0x08,0x08,0x0b,0x08,0x08,0x08,0x0e,0x70,0x20,0x07,0x00,0x20,0x10,0xff,0x02,0x44,0x60,0x40,0xff,0x48,0x88,0x88,0x50,0x2c,0xc3,0x02,0x00 -+// 22454 垶 ; -+,0x08,0x08,0x09,0x08,0x08,0x7e,0x08,0x09,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x20,0x10,0xff,0x04,0x86,0x44,0x28,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 22455 垷 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0f,0x78,0x20,0x00,0x01,0x02,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x48,0x48,0x48,0x89,0x89,0x0f,0x00 -+// 22456 垸 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x09,0x08,0x0e,0x18,0x60,0x01,0x02,0x04,0x20,0x10,0xff,0x81,0x02,0xfc,0x00,0x00,0xff,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 22457 垹 ; -+,0x10,0x10,0x13,0x10,0x10,0x7f,0x10,0x10,0x10,0x13,0x1c,0x71,0x21,0x02,0x04,0x00,0x80,0x9f,0xf2,0x92,0x94,0xf4,0x94,0x92,0x91,0xf1,0x97,0x12,0x10,0x10,0x10,0x00 -+// 22458 垺 ; -+,0x08,0x09,0x08,0x09,0x08,0x7e,0x08,0x08,0x08,0x09,0x08,0x0e,0x70,0x20,0x00,0x00,0x0e,0xf0,0x48,0x26,0xa4,0xfe,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 22459 垻 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0f,0x78,0x00,0x00,0x00,0x01,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x48,0x64,0xc6,0x83,0x02 -+// 22460 垼 ; -+,0x06,0x0c,0x70,0x04,0x09,0x1a,0x68,0x08,0x0b,0x08,0x00,0x1f,0x00,0x00,0x7f,0x00,0xf8,0x88,0x88,0x87,0x7c,0x84,0x48,0x30,0xcf,0x82,0x80,0xfc,0x80,0x82,0xff,0x00 -+// 22461 垽 ; -+,0x10,0x09,0x09,0x41,0x35,0x29,0x09,0x32,0x12,0x14,0x1f,0x00,0x00,0x00,0x7f,0x00,0x04,0xfe,0x00,0x00,0xff,0x10,0x10,0x10,0x90,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22462 垾 ; -+,0x08,0x09,0x09,0x09,0x09,0x7f,0x08,0x0b,0x08,0x08,0x0b,0x1c,0x60,0x00,0x00,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 22463 垿 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x15,0x19,0x62,0x02,0x04,0x04,0x08,0x20,0x10,0xff,0x00,0x7e,0x04,0x28,0x10,0xff,0x12,0x10,0x10,0x10,0x10,0x50,0x20 -+// 22464 埀 ; -+,0x00,0x1f,0x00,0x7f,0x02,0x02,0x1e,0x02,0x0e,0x32,0x00,0x1f,0x00,0x00,0x7f,0x00,0x7c,0x80,0x80,0xfe,0x90,0x94,0x9e,0x90,0x92,0x9e,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22465 埁 ; -+,0x08,0x09,0x09,0x09,0x09,0x7e,0x08,0x08,0x09,0x0a,0x0e,0x78,0x20,0x00,0x00,0x00,0x10,0x12,0x12,0x12,0xfe,0x20,0x50,0x8c,0x23,0x10,0xfe,0x04,0x08,0x08,0x10,0x20 -+// 22466 埂 ; -+,0x10,0x13,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1e,0x70,0x00,0x00,0x01,0x06,0x00,0xff,0x10,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x90,0x50,0x30,0x68,0x87,0x02 -+// 22467 埃 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x09,0x08,0x0e,0x70,0x20,0x03,0x00,0x20,0x34,0x42,0xff,0x42,0x80,0xfe,0x10,0x10,0xff,0x10,0x28,0x44,0x83,0x02,0x00 -+// 22468 埄 ; -+,0x10,0x10,0x10,0x11,0x10,0x7e,0x13,0x11,0x10,0x11,0x10,0x1c,0x63,0x00,0x00,0x00,0x40,0x7e,0x84,0x48,0x30,0xcf,0x22,0xfe,0x20,0xfc,0x20,0x20,0xff,0x20,0x20,0x20 -+// 22469 埅 ; -+,0x00,0x3c,0x25,0x28,0x24,0x22,0x2a,0x24,0x20,0x21,0x00,0x1f,0x00,0x00,0x7f,0x00,0x20,0x10,0xff,0x20,0x3e,0x22,0x42,0x4a,0x84,0x00,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22470 埆 ; -+,0x08,0x08,0x08,0x08,0x7f,0x0a,0x08,0x08,0x08,0x08,0x0e,0x71,0x21,0x02,0x04,0x00,0x40,0x40,0x7e,0x84,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x12,0x12,0x0a,0x04,0x00 -+// 22471 埇 ; -+,0x09,0x08,0x08,0x08,0x09,0x7f,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x01,0x00,0xfe,0x0c,0x50,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x24,0x00 -+// 22472 埈 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x09,0x08,0x0e,0x19,0x62,0x00,0x00,0x07,0x00,0x20,0x30,0x24,0x42,0xff,0x45,0x82,0x41,0x7e,0xc4,0x48,0x30,0x38,0xc7,0x02,0x00 -+// 22473 埉 ; -+,0x10,0x10,0x10,0x13,0x10,0x7e,0x11,0x11,0x11,0x12,0x1e,0x64,0x00,0x01,0x02,0x04,0x20,0x20,0x20,0xff,0x20,0x24,0x24,0x24,0x2a,0xb1,0xa0,0x50,0x88,0x04,0x03,0x02 -+// 22474 埊 ; -+,0x00,0x10,0x10,0x1f,0x00,0x3e,0x02,0x04,0x08,0x12,0x21,0x00,0x3f,0x00,0x00,0x7f,0x80,0x84,0x84,0xfc,0x84,0x8e,0xd0,0xa0,0x98,0x87,0x02,0x80,0xfe,0x80,0x80,0xff -+// 22475 埋 ; -+,0x08,0x09,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x08,0x09,0x0e,0x70,0x00,0x03,0x00,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 22476 埌 ; -+,0x08,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x0f,0x19,0x61,0x01,0x03,0x01,0x40,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x20,0x24,0x2e,0x10,0x08,0x47,0x82,0x00 -+// 22477 埍 ; -+,0x08,0x09,0x09,0x09,0x09,0x7e,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x01,0x01,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x0a,0x04 -+// 22478 城 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x13,0x12,0x12,0x1e,0x72,0x23,0x04,0x04,0x08,0x00,0x10,0x14,0x12,0xff,0x10,0x12,0xd3,0x52,0x54,0x54,0x48,0xc9,0x95,0x25,0xc2,0x00 -+// 22479 埏 ; -+,0x10,0x17,0x11,0x11,0x7d,0x12,0x13,0x10,0x14,0x12,0x1e,0x71,0x02,0x04,0x08,0x00,0x02,0x0f,0x78,0x08,0x08,0x2f,0xa8,0xa8,0xa8,0xa8,0xbf,0x00,0xc0,0x30,0x0f,0x00 -+// 22480 埐 ; -+,0x11,0x10,0x10,0x10,0x7d,0x10,0x11,0x11,0x12,0x10,0x1c,0x70,0x20,0x00,0x00,0x03,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xff,0x02,0xfc,0x84,0x48,0x28,0x10,0x28,0xc7,0x02 -+// 22481 埑 ; -+,0x04,0x04,0x04,0x3f,0x04,0x07,0x3c,0x04,0x15,0x08,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x7e,0x40,0x40,0x7f,0x48,0x88,0x88,0x08,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22482 埒 ; -+,0x08,0x09,0x08,0x09,0x08,0x7e,0x08,0x08,0x09,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x0f,0xf0,0x02,0x23,0x92,0xdc,0x94,0x04,0xff,0x44,0x24,0x24,0x04,0x04,0x14,0x08 -+// 22483 埓 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x09,0x08,0x0b,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x0e,0x70,0x90,0x49,0x26,0x38,0xc4,0x04,0xff,0x84,0x44,0x64,0x44,0x04,0x14,0x08 -+// 22484 埔 ; -+,0x08,0x08,0x09,0x08,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x01,0x00,0x14,0x12,0xff,0x10,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x15,0x02,0x00 -+// 22485 埕 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x09,0x08,0x08,0x09,0x0e,0x70,0x23,0x00,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x00 -+// 22486 埖 ; -+,0x08,0x08,0x0b,0x08,0x08,0x7e,0x08,0x08,0x09,0x0a,0x08,0x0e,0x70,0x20,0x00,0x00,0x48,0x4a,0xff,0x48,0x40,0x68,0xca,0x8b,0x8c,0x98,0xa8,0xc8,0x89,0x89,0x87,0x00 -+// 22487 埗 ; -+,0x08,0x08,0x08,0x08,0x08,0x7c,0x0b,0x08,0x08,0x08,0x0d,0x72,0x24,0x00,0x00,0x03,0x10,0x10,0x90,0x9e,0x90,0x90,0xff,0x10,0x92,0xd3,0x12,0x14,0x18,0x30,0xc0,0x00 -+// 22488 埘 ; -+,0x00,0x13,0x12,0x12,0x12,0x7e,0x13,0x12,0x12,0x12,0x1e,0x73,0x22,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0x7f,0x44,0xe4,0x54,0x54,0x54,0x44,0xc4,0x44,0x14,0x08,0x00 -+// 22489 埙 ; -+,0x08,0x08,0x08,0x08,0x3e,0x08,0x09,0x09,0x09,0x09,0x0f,0x71,0x20,0x00,0x01,0x06,0xfe,0x82,0x82,0x82,0xfe,0x00,0xff,0x11,0x11,0x11,0x11,0x21,0x28,0x46,0x83,0x02 -+// 22490 埚 ; -+,0x08,0x08,0x08,0x08,0x08,0x7e,0x08,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x01,0x01,0xfe,0x82,0x82,0x82,0xfe,0x92,0x10,0xff,0x11,0x29,0x25,0x47,0x85,0x01,0x05,0x02 -+// 22491 埛 ; -+,0x08,0x09,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x00,0x00,0xff,0x29,0x25,0x47,0x43,0x81,0x7d,0x45,0x45,0x7d,0x45,0x01,0x05,0x02,0x00 -+// 22492 埜 ; -+,0x04,0x04,0x3f,0x0c,0x0e,0x15,0x15,0x24,0x44,0x04,0x00,0x1f,0x00,0x00,0x3f,0x00,0x10,0x10,0x7e,0x10,0x38,0x36,0x53,0x92,0x10,0x90,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22493 埝 ; -+,0x10,0x10,0x10,0x10,0x7d,0x12,0x14,0x11,0x10,0x10,0x16,0x18,0x62,0x02,0x04,0x00,0x20,0x20,0x50,0x88,0x44,0x23,0x02,0xfc,0x08,0x10,0x24,0x92,0x91,0x85,0xfc,0x00 -+// 22494 埞 ; -+,0x10,0x10,0x11,0x11,0x12,0x7c,0x11,0x10,0x11,0x11,0x11,0x1d,0x72,0x22,0x04,0x08,0x20,0x10,0xff,0x02,0x04,0x00,0xfe,0x20,0x20,0x3e,0x20,0x20,0xa0,0x60,0x1f,0x00 -+// 22495 域 ; -+,0x10,0x10,0x10,0x13,0x7c,0x10,0x13,0x12,0x12,0x13,0x12,0x1c,0x61,0x06,0x01,0x00,0x10,0x14,0x12,0xff,0x10,0x12,0xd3,0x52,0x54,0xd4,0x48,0x19,0xa5,0x45,0x82,0x00 -+// 22496 埠 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x70,0x23,0x00,0x00,0x00,0x20,0x40,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x02,0x02,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 22497 埡 ; -+,0x08,0x0b,0x08,0x08,0x08,0x7f,0x09,0x09,0x09,0x09,0x08,0x0e,0x70,0x20,0x07,0x00,0x00,0xff,0x48,0x48,0x48,0xce,0x02,0x02,0x02,0xce,0x48,0x48,0x48,0x48,0xff,0x00 -+// 22498 埢 ; -+,0x10,0x11,0x10,0x10,0x7f,0x10,0x13,0x10,0x11,0x12,0x1c,0x70,0x20,0x00,0x00,0x00,0x24,0x26,0xa8,0x20,0xfe,0x40,0xff,0x88,0x04,0xfb,0x88,0xa8,0x92,0x82,0xfe,0x00 -+// 22499 埣 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x09,0x0a,0x08,0x0e,0x71,0x20,0x00,0x00,0x00,0x00,0x20,0x10,0xff,0x88,0x88,0x88,0x54,0x52,0x22,0x20,0xfe,0x20,0x20,0x20,0x20,0x20 -+// 22500 埤 ; -+,0x10,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x10,0x13,0x1c,0x60,0x00,0x00,0x00,0x20,0x40,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10,0x10 -+// 22501 埥 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x09,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84 -+// 22502 埦 ; -+,0x10,0x10,0x11,0x11,0x7e,0x11,0x11,0x11,0x12,0x15,0x10,0x1c,0x61,0x02,0x0c,0x00,0x40,0x20,0xff,0x02,0x04,0x00,0xfe,0x52,0x52,0x52,0x96,0x90,0x11,0x11,0x0f,0x00 -+// 22503 埧 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0d,0x70,0x20,0x00,0x01,0x02,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x48,0x64,0x86,0x03,0x02 -+// 22504 埨 ; -+,0x10,0x10,0x10,0x10,0x10,0x7d,0x12,0x10,0x11,0x11,0x11,0x1d,0x71,0x01,0x01,0x00,0x20,0x20,0x50,0x48,0x86,0xfb,0x00,0x00,0xfe,0x52,0xfe,0x52,0x52,0x52,0x46,0x00 -+// 22505 埩 ; -+,0x10,0x13,0x11,0x10,0x7d,0x10,0x10,0x13,0x10,0x10,0x1d,0x60,0x00,0x00,0x00,0x00,0x3e,0xe4,0x46,0xa8,0xfc,0x24,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 22506 埪 ; -+,0x00,0x10,0x10,0x11,0x11,0x7c,0x10,0x11,0x10,0x11,0x16,0x18,0x60,0x00,0x03,0x00,0x20,0x10,0x10,0xff,0x4a,0x44,0x86,0x04,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 22507 埫 ; -+,0x10,0x12,0x11,0x11,0x10,0x7e,0x11,0x11,0x11,0x11,0x17,0x19,0x61,0x01,0x01,0x01,0x20,0x24,0x26,0xa4,0xa8,0x20,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 22508 埬 ; -+,0x10,0x10,0x13,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x1c,0x70,0x21,0x02,0x04,0x00,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x74,0x68,0xa4,0x27,0x22,0x20,0x20 -+// 22509 埭 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x09,0x08,0x09,0x08,0x1e,0x70,0x21,0x02,0x00,0x00,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x22,0xb4,0x68,0xa4,0x27,0x22,0xa0,0x40 -+// 22510 埮 ; -+,0x10,0x10,0x11,0x11,0x11,0x7e,0x10,0x13,0x10,0x11,0x11,0x1e,0x70,0x20,0x01,0x06,0x20,0x24,0x26,0x28,0x50,0x48,0x87,0x22,0x24,0x28,0x30,0x50,0x48,0x84,0x03,0x02 -+// 22511 埯 ; -+,0x08,0x08,0x09,0x08,0x08,0x7e,0x09,0x09,0x09,0x09,0x0f,0x79,0x21,0x00,0x00,0x00,0x20,0x20,0xff,0x50,0x48,0xa4,0x23,0xfe,0x24,0xfc,0x24,0xfc,0x25,0x21,0x1f,0x00 -+// 22512 埰 ; -+,0x00,0x10,0x13,0x10,0x12,0x11,0x7d,0x10,0x13,0x10,0x10,0x10,0x1d,0x72,0x04,0x00,0x00,0x3e,0xe0,0x40,0x34,0x26,0x08,0x20,0xfe,0x70,0xb0,0xa8,0x24,0x23,0x22,0x20 -+// 22513 埱 ; -+,0x11,0x11,0x11,0x11,0x11,0x7d,0x17,0x10,0x11,0x15,0x1d,0x75,0x29,0x01,0x05,0x02,0x00,0x00,0x3e,0xc2,0x02,0x22,0xd4,0x14,0x14,0x94,0x48,0x48,0x14,0x23,0x42,0x80 -+// 22514 埲 ; -+,0x10,0x10,0x13,0x10,0x7d,0x10,0x13,0x10,0x11,0x13,0x1c,0x73,0x20,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0xa8,0x24,0xfb,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 22515 埳 ; -+,0x10,0x10,0x10,0x10,0x7c,0x11,0x12,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x00,0x40,0x40,0x7e,0x84,0x88,0x00,0xce,0x02,0x02,0xde,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 22516 埴 ; -+,0x10,0x10,0x13,0x10,0x10,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x07,0x00,0x20,0x20,0xfe,0x20,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xff,0x00 -+// 22517 埵 ; -+,0x10,0x11,0x10,0x10,0x13,0x7d,0x11,0x17,0x11,0x11,0x13,0x1c,0x70,0x20,0x03,0x00,0x1e,0xe0,0x20,0x20,0xff,0x24,0x24,0xff,0x24,0x24,0xff,0x20,0x20,0x20,0xff,0x00 -+// 22518 埶 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x12,0x21,0x44,0x3f,0x04,0x04,0x07,0x78,0x21,0x00,0x10,0x10,0x90,0x10,0x7c,0x94,0x14,0x54,0xa4,0x34,0x2c,0x45,0x45,0x83,0x01,0x00 -+// 22519 執 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x00,0x11,0x0a,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x05,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x64,0x34,0x2c,0xa4,0x45,0x45,0x83,0x00 -+// 22520 埸 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x09,0x0e,0x70,0x23,0x00,0x03,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x42,0xff,0x2a,0x4a,0x92,0x22,0xc2,0x0a,0x04 -+// 22521 培 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x08,0x09,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x20,0x10,0xff,0x00,0x84,0x66,0x48,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 22522 基 ; -+,0x04,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x04,0x08,0x1f,0x60,0x00,0x3f,0x00,0x10,0x10,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xff,0x10,0x8c,0xf7,0x82,0x80,0xfe,0x00 -+// 22523 埻 ; -+,0x00,0x10,0x13,0x10,0x10,0x7c,0x10,0x10,0x11,0x10,0x11,0x1c,0x60,0x00,0x00,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x08,0xff,0x10,0x10,0x90,0x50,0x20 -+// 22524 埼 ; -+,0x10,0x10,0x13,0x10,0x10,0x7d,0x13,0x10,0x11,0x11,0x1d,0x71,0x21,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0x58,0x86,0xff,0x04,0xf4,0x14,0x14,0xf4,0x14,0x04,0x14,0x08 -+// 22525 埽 ; -+,0x10,0x11,0x10,0x10,0x7c,0x11,0x10,0x13,0x12,0x15,0x11,0x1d,0x71,0x21,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x22,0xfc,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 22526 埾 ; -+,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x71,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0xbe,0x42,0x42,0x24,0x24,0x18,0xa7,0x42,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22527 埿 ; -+,0x10,0x0c,0x0a,0x22,0x14,0x04,0x38,0x09,0x09,0x0a,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0xfe,0x82,0xfe,0x80,0xa6,0xb8,0x21,0x21,0x9f,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22528 堀 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x71,0x22,0x02,0x04,0x08,0x00,0xff,0x01,0x01,0xff,0x08,0x49,0x49,0x7f,0x49,0x08,0x49,0x49,0x7f,0x41,0x00 -+// 22529 堁 ; -+,0x00,0x11,0x11,0x11,0x11,0x7d,0x11,0x10,0x13,0x10,0x1c,0x70,0x21,0x02,0x04,0x00,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x70,0x68,0xac,0x27,0x22,0x20,0x20 -+// 22530 堂 ; -+,0x00,0x08,0x06,0x04,0x1f,0x10,0x27,0x04,0x04,0x07,0x00,0x1f,0x00,0x00,0x3f,0x00,0x80,0x88,0x8c,0x92,0xff,0x02,0xf4,0x10,0x10,0xf0,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22531 堃 ; -+,0x10,0x08,0x7f,0x10,0x1f,0x11,0x11,0x21,0x2e,0x45,0x00,0x1f,0x00,0x00,0x7f,0x00,0x10,0x08,0x7f,0x20,0x3e,0x22,0x42,0x42,0x8a,0x04,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22532 堄 ; -+,0x00,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x10,0x1c,0x70,0x20,0x00,0x01,0x02,0x40,0x8e,0x02,0x02,0xce,0x02,0x02,0x02,0xfe,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 22533 堅 ; -+,0x00,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x24,0x3f,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0xfe,0x22,0x24,0x14,0x08,0x08,0x14,0x23,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22534 堆 ; -+,0x10,0x10,0x10,0x11,0x7d,0x13,0x15,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x00,0xa0,0xd8,0x90,0xff,0x10,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x00,0x00 -+// 22535 堇 ; -+,0x04,0x04,0x3f,0x04,0x07,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x10,0x10,0xff,0x10,0xf0,0x80,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xf8,0x80,0xff,0x00 -+// 22536 堈 ; -+,0x10,0x13,0x13,0x12,0x7e,0x13,0x12,0x12,0x12,0x12,0x1e,0x72,0x22,0x02,0x02,0x00,0x00,0xfe,0x06,0x8a,0x52,0xfe,0x22,0xaa,0xaa,0xaa,0xfa,0x8a,0x02,0x0a,0x04,0x00 -+// 22537 堉 ; -+,0x00,0x08,0x09,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x20,0x10,0xff,0x20,0x44,0xff,0x02,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 22538 堊 ; -+,0x00,0x3f,0x02,0x1e,0x10,0x10,0x1e,0x02,0x7f,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0xfe,0x20,0x3c,0x04,0x04,0x3c,0x20,0xff,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22539 堋 ; -+,0x10,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x62,0x22,0x04,0x08,0x00,0x00,0xde,0x52,0x52,0xde,0x52,0x52,0x52,0xde,0x52,0x52,0x52,0x52,0xa2,0x2a,0x44 -+// 22540 堌 ; -+,0x00,0x13,0x12,0x12,0x12,0x7e,0x12,0x12,0x12,0x12,0x1e,0x72,0x22,0x03,0x02,0x00,0x00,0xfe,0x22,0x22,0xfa,0x22,0x22,0xfa,0x8a,0x8a,0xfa,0x8a,0x02,0xfe,0x02,0x00 -+// 22541 堍 ; -+,0x10,0x10,0x10,0x10,0x7d,0x13,0x11,0x11,0x11,0x11,0x1c,0x70,0x20,0x01,0x02,0x04,0x80,0x80,0xfc,0x88,0x10,0xfe,0x22,0x22,0xfe,0x22,0x50,0x58,0x95,0x11,0x0f,0x00 -+// 22542 堎 ; -+,0x00,0x10,0x11,0x10,0x10,0x7d,0x10,0x11,0x12,0x10,0x10,0x1d,0x62,0x00,0x01,0x06,0x20,0x20,0xfe,0x20,0x20,0xff,0x88,0x47,0x7a,0x88,0xc8,0x30,0x30,0x48,0x87,0x02 -+// 22543 堏 ; -+,0x04,0x04,0x3f,0x04,0x0e,0x15,0x25,0x44,0x04,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x10,0x08,0x7f,0x20,0x3e,0x22,0x42,0x4a,0x84,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22544 堐 ; -+,0x10,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x71,0x22,0x02,0x05,0x08,0x00,0xff,0x10,0x10,0x7e,0x10,0x10,0xff,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 22545 堑 ; -+,0x04,0x04,0x3f,0x08,0x14,0x3f,0x04,0x07,0x3c,0x05,0x04,0x0f,0x00,0x00,0x3f,0x00,0x00,0x07,0xb8,0x20,0x3f,0x24,0x44,0x44,0x84,0x04,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22546 堒 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x03,0x01,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x10,0x12,0x17,0xdc,0x10,0x11,0x51,0x8f,0x00 -+// 22547 堓 ; -+,0x10,0x11,0x11,0x11,0x7c,0x11,0x11,0x11,0x11,0x11,0x1d,0x61,0x02,0x02,0x04,0x00,0x10,0x11,0x11,0xff,0x00,0xff,0x00,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 22548 堔 ; -+,0x10,0x13,0x12,0x14,0x10,0x7d,0x12,0x10,0x13,0x10,0x1c,0x70,0x01,0x02,0x04,0x00,0x00,0xff,0x02,0x88,0xc4,0x06,0x24,0x20,0xfe,0x70,0xa8,0xa4,0x27,0x22,0x20,0x20 -+// 22549 堕 ; -+,0x00,0x3c,0x25,0x28,0x24,0x25,0x36,0x28,0x20,0x20,0x20,0x00,0x3f,0x00,0x00,0x7f,0x20,0x20,0xfe,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x8c,0x80,0xfe,0x80,0x80,0xff -+// 22550 堖 ; -+,0x00,0x08,0x09,0x0a,0x09,0x7e,0x08,0x09,0x09,0x09,0x0f,0x79,0x21,0x01,0x01,0x00,0x92,0x92,0x24,0x48,0x24,0x52,0x80,0xfe,0x02,0x4a,0x32,0x32,0x4a,0x02,0xfe,0x00 -+// 22551 堗 ; -+,0x00,0x10,0x11,0x12,0x10,0x7e,0x11,0x12,0x10,0x13,0x10,0x1c,0x60,0x00,0x01,0x02,0x20,0x10,0xff,0x02,0x48,0x86,0x22,0x28,0x24,0xff,0x20,0x50,0x48,0x87,0x02,0x00 -+// 22552 堘 ; -+,0x10,0x11,0x10,0x10,0x11,0x7c,0x10,0x13,0x10,0x10,0x11,0x1e,0x64,0x00,0x03,0x00,0x20,0x24,0xa6,0xa8,0xfe,0x20,0x20,0xff,0x50,0xa8,0x27,0xfa,0x20,0x20,0xff,0x00 -+// 22553 堙 ; -+,0x00,0x17,0x10,0x10,0x7f,0x12,0x12,0x13,0x10,0x10,0x1f,0x70,0x20,0x00,0x07,0x00,0x00,0xff,0x48,0x48,0xff,0x49,0x49,0xff,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 22554 堚 ; -+,0x11,0x12,0x12,0x11,0x7c,0x11,0x11,0x11,0x11,0x11,0x1c,0x63,0x00,0x00,0x00,0x00,0xfe,0x02,0x24,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 22555 堛 ; -+,0x10,0x13,0x10,0x10,0x10,0x7e,0x10,0x10,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x01,0x00,0xff,0x00,0xfe,0x82,0xfe,0x82,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 22556 堜 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x11,0x11,0x11,0x11,0x1c,0x70,0x01,0x02,0x04,0x00,0x20,0x20,0xff,0x20,0xfe,0x2a,0xae,0x72,0xfe,0x72,0x68,0xa4,0x23,0x22,0x20,0x20 -+// 22557 堝 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x09,0x09,0x09,0x09,0x0f,0x79,0x21,0x01,0x01,0x01,0x00,0xfc,0x84,0xf4,0x94,0x94,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 22558 堞 ; -+,0x10,0x10,0x10,0x13,0x10,0x7e,0x10,0x10,0x10,0x11,0x10,0x1e,0x70,0x21,0x02,0x00,0xa4,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xfe,0x10,0xff,0x30,0x58,0x94,0x13,0x12,0x10 -+// 22559 堟 ; -+,0x00,0x10,0x10,0x10,0x7d,0x13,0x10,0x10,0x11,0x12,0x1c,0x73,0x00,0x00,0x03,0x00,0x40,0x7c,0x84,0xf8,0x08,0xff,0x42,0xe3,0x34,0x58,0x9c,0x2a,0x4b,0x8a,0x28,0x10 -+// 22560 堠 ; -+,0x11,0x11,0x11,0x11,0x7e,0x12,0x16,0x1a,0x13,0x12,0x1e,0x72,0x22,0x02,0x02,0x02,0x00,0xbc,0x04,0x04,0xff,0x40,0x7f,0x90,0x10,0xff,0x10,0x28,0x24,0x46,0x43,0x82 -+// 22561 堡 ; -+,0x08,0x0d,0x09,0x11,0x38,0x57,0x10,0x10,0x11,0x12,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0xfc,0x04,0xfc,0x20,0xff,0x70,0xa8,0x27,0x22,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22562 堢 ; -+,0x10,0x10,0x10,0x11,0x7d,0x13,0x13,0x15,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x01,0x80,0xfe,0xa2,0x22,0xa2,0x3e,0x08,0xff,0x1c,0x1c,0x2a,0x2a,0x49,0x89,0x08,0x08 -+// 22563 堣 ; -+,0x10,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x11,0x11,0x17,0x19,0x61,0x01,0x01,0x01,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x1f,0xf5,0x01,0x05,0x02 -+// 22564 堤 ; -+,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x13,0x10,0x10,0x1e,0x70,0x00,0x01,0x02,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x90,0x9e,0x90,0x90,0x50,0x3f,0x00 -+// 22565 堥 ; -+,0x00,0x3f,0x09,0x04,0x3f,0x06,0x0b,0x12,0x6e,0x04,0x00,0x0f,0x00,0x00,0x3f,0x00,0x20,0xb0,0x22,0x3f,0xa4,0xd4,0x08,0x18,0x27,0xc2,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22566 堦 ; -+,0x11,0x11,0x11,0x11,0x7d,0x11,0x13,0x11,0x10,0x10,0x16,0x78,0x20,0x00,0x00,0x00,0x10,0x10,0x13,0xdc,0x10,0x51,0xaf,0x40,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 22567 堧 ; -+,0x00,0x13,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x10,0x1f,0x70,0x20,0x00,0x01,0x06,0x00,0xfe,0x20,0xfe,0x52,0x52,0x52,0x5a,0x04,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 22568 堨 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x10,0x11,0x13,0x15,0x11,0x1d,0x63,0x01,0x00,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x80,0xfe,0x12,0x12,0x2a,0x46,0xf2,0x02,0x0a,0x04 -+// 22569 堩 ; -+,0x10,0x10,0x10,0x10,0x12,0x7e,0x12,0x14,0x10,0x10,0x16,0x18,0x60,0x00,0x00,0x00,0x80,0x9f,0x80,0x80,0x9f,0xd1,0xb1,0x9f,0x91,0x91,0x9f,0x91,0x80,0xbf,0x80,0x80 -+// 22570 堪 ; -+,0x10,0x10,0x13,0x10,0x10,0x7c,0x10,0x10,0x17,0x11,0x11,0x1d,0x71,0x21,0x03,0x01,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0xff,0x48,0x64,0x46,0x84,0x02,0xff,0x00 -+// 22571 堫 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x10,0x10,0x11,0x12,0x1c,0x71,0x26,0x00,0x01,0x06,0x08,0x4e,0x32,0x32,0x4a,0xfe,0x4a,0x84,0x42,0x7d,0xc8,0x48,0x30,0x4c,0x83,0x00 -+// 22572 堬 ; -+,0x10,0x10,0x10,0x10,0x7d,0x12,0x10,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x01,0x20,0x20,0x50,0x8c,0x03,0xfc,0x02,0xea,0x2a,0xea,0x2a,0x2a,0xea,0x22,0x2a,0x64 -+// 22573 堭 ; -+,0x00,0x10,0x11,0x11,0x11,0x7d,0x11,0x10,0x13,0x10,0x10,0x1d,0x70,0x20,0x03,0x00,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x20,0x20,0xfc,0x20,0x22,0xff,0x00 -+// 22574 堮 ; -+,0x08,0x09,0x09,0x09,0x09,0x3e,0x09,0x08,0x0b,0x08,0x0e,0x70,0x20,0x00,0x00,0x00,0x00,0xef,0x29,0x29,0xef,0x00,0xfe,0x00,0xff,0x40,0xfc,0x44,0x04,0x04,0x28,0x10 -+// 22575 堯 ; -+,0x00,0x0f,0x00,0x1f,0x08,0x08,0x3f,0x08,0x7f,0x00,0x1f,0x02,0x02,0x04,0x08,0x10,0x80,0xf8,0x80,0xfe,0x10,0x10,0x7e,0x10,0xff,0x00,0xfc,0x20,0x21,0x21,0x1f,0x00 -+// 22576 堰 ; -+,0x00,0x13,0x12,0x12,0x12,0x7e,0x12,0x12,0x12,0x13,0x1e,0x72,0x22,0x02,0x03,0x00,0x00,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x48,0x30,0x4c,0x84,0xff,0x00 -+// 22577 報 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x20,0x11,0x0a,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x7e,0x42,0x42,0xca,0xc4,0x40,0x7f,0x52,0x52,0x4c,0xcc,0x52,0x53,0x62,0x40 -+// 22578 堲 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x16,0x13,0x3d,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22579 堳 ; -+,0x10,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1e,0x72,0x24,0x08,0x00,0x00,0xfe,0x12,0x12,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 22580 場 ; -+,0x11,0x11,0x11,0x11,0x7d,0x11,0x10,0x13,0x10,0x1d,0x72,0x0c,0x03,0x04,0x03,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00,0xff,0x80,0xfe,0x4a,0x92,0x22,0xc2,0x0e,0x04 -+// 22581 堵 ; -+,0x08,0x08,0x09,0x08,0x7e,0x0b,0x08,0x08,0x08,0x0b,0x08,0x0e,0x70,0x20,0x00,0x00,0x20,0x20,0xfd,0x22,0x24,0xff,0x10,0x60,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 22582 堶 ; -+,0x10,0x10,0x13,0x10,0x7d,0x12,0x15,0x10,0x10,0x10,0x1e,0x70,0x20,0x00,0x00,0x00,0x40,0x40,0xff,0x80,0x7e,0x10,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 22583 堷 ; -+,0x00,0x08,0x09,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x08,0x0e,0x70,0x20,0x00,0x00,0x20,0x10,0xff,0x84,0x46,0x28,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 22584 堸 ; -+,0x10,0x13,0x12,0x12,0x7e,0x12,0x12,0x12,0x12,0x12,0x1e,0x72,0x24,0x05,0x08,0x10,0x00,0xfe,0x02,0x3a,0xe2,0x22,0xfa,0xaa,0xaa,0xfa,0xa2,0x2a,0x3e,0xcb,0x01,0x00 -+// 22585 堹 ; -+,0x10,0x13,0x10,0x13,0x10,0x7d,0x11,0x11,0x11,0x11,0x14,0x1b,0x60,0x00,0x07,0x00,0x1e,0xe0,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 22586 堺 ; -+,0x00,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x11,0x12,0x14,0x1c,0x71,0x21,0x02,0x04,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x88,0x07,0x8a,0x88,0x88,0x08,0x08,0x08,0x08 -+// 22587 堻 ; -+,0x00,0x13,0x08,0x27,0x10,0x0b,0x08,0x33,0x10,0x17,0x10,0x1f,0x00,0x00,0x7f,0x00,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0xff,0xa0,0xfe,0x80,0x80,0xff,0x00 -+// 22588 堼 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x04,0x3f,0x04,0x07,0x78,0x20,0x1f,0x00,0x00,0x3f,0x00,0x04,0x04,0x84,0x7f,0x84,0x24,0x94,0x04,0x94,0x88,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22589 堽 ; -+,0x00,0x13,0x12,0x12,0x13,0x7c,0x10,0x13,0x10,0x11,0x11,0x1d,0x71,0x21,0x07,0x00,0x00,0xfe,0x52,0x52,0xfe,0x00,0x00,0xff,0x10,0x10,0x1e,0x10,0x10,0x10,0xff,0x00 -+// 22590 堾 ; -+,0x10,0x10,0x11,0x10,0x7f,0x10,0x13,0x10,0x10,0x11,0x1e,0x70,0x20,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0xfe,0x20,0xff,0x48,0x84,0xff,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 22591 堿 ; -+,0x10,0x10,0x10,0x13,0x12,0x7e,0x12,0x12,0x12,0x12,0x1a,0x64,0x04,0x08,0x10,0x00,0x10,0x14,0x12,0xff,0x10,0x12,0xd3,0x12,0xf4,0xac,0xa8,0xed,0x95,0x23,0x41,0x00 -+// 22592 塀 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x72,0x22,0x04,0x08,0x11,0x00,0xfe,0x02,0x02,0xfe,0x42,0x24,0xff,0x24,0x24,0xff,0x24,0x44,0x44,0x84,0x04 -+// 22593 塁 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x0c,0x02,0x0c,0x10,0x00,0x1f,0x00,0x00,0x7f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x10,0x38,0x40,0x38,0x90,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22594 塂 ; -+,0x10,0x10,0x13,0x10,0x10,0x7f,0x10,0x10,0x11,0x12,0x14,0x1c,0x60,0x00,0x00,0x00,0x88,0x88,0xfe,0x88,0x88,0xff,0x88,0x84,0xfa,0x8b,0xfa,0x88,0x82,0x82,0x7e,0x00 -+// 22595 塃 ; -+,0x10,0x10,0x13,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x10,0x1c,0x70,0x21,0x02,0x04,0x88,0x88,0xff,0xa8,0x10,0xfe,0x80,0x80,0xfe,0x00,0xa4,0xa4,0xa4,0x25,0x23,0x20 -+// 22596 塄 ; -+,0x10,0x11,0x11,0x11,0x7d,0x10,0x10,0x17,0x10,0x10,0x10,0x1c,0x61,0x01,0x02,0x04,0x00,0xfe,0x52,0x52,0xfe,0x20,0x10,0xff,0x80,0x84,0xfe,0x84,0x04,0x04,0x14,0x08 -+// 22597 塅 ; -+,0x10,0x11,0x12,0x12,0x7f,0x12,0x12,0x12,0x13,0x12,0x1e,0x73,0x26,0x0a,0x02,0x02,0x00,0xbc,0x24,0x24,0xa4,0x27,0x40,0x3c,0xa4,0x24,0xa4,0x18,0x18,0x24,0x42,0x81 -+// 22598 塆 ; -+,0x10,0x10,0x13,0x10,0x11,0x7a,0x15,0x10,0x11,0x11,0x1d,0x70,0x20,0x00,0x00,0x00,0x20,0x10,0xff,0x48,0x4a,0x49,0xfc,0x04,0xfc,0x00,0xfe,0x02,0x02,0x22,0x14,0x08 -+// 22599 塇 ; -+,0x10,0x10,0x11,0x11,0x12,0x7c,0x10,0x10,0x10,0x10,0x10,0x1e,0x70,0x00,0x03,0x00,0x20,0x10,0xff,0x02,0xfc,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 22600 塈 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x28,0x24,0x7e,0x24,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0xfe,0x50,0x50,0xfe,0x28,0x29,0x49,0x87,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 22601 塉 ; -+,0x02,0x11,0x11,0x10,0x11,0x7e,0x11,0x16,0x10,0x10,0x10,0x1c,0x70,0x20,0x00,0x00,0x24,0xae,0x30,0xa8,0x56,0x88,0x07,0xfe,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 22602 塊 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x10,0x10,0x1c,0x70,0x21,0x02,0x04,0x20,0x40,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0x54,0x5a,0x5f,0x92,0x11,0x0f,0x00 -+// 22603 塋 ; -+,0x04,0x05,0x15,0x16,0x24,0x0a,0x11,0x1f,0x10,0x20,0x0f,0x00,0x00,0x00,0x3f,0x00,0x10,0x10,0x52,0x54,0x98,0x24,0x42,0xff,0x02,0x80,0xf8,0x80,0x80,0x80,0xfe,0x00 -+// 22604 塌 ; -+,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x13,0x10,0x12,0x11,0x1d,0x62,0x04,0x01,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xdf,0x51,0x49,0x45,0x49,0x51,0x41,0x45,0x82 -+// 22605 塍 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x27,0x24,0x24,0x3d,0x26,0x25,0x24,0x24,0x24,0x57,0x08,0x24,0x26,0xa8,0xfe,0x20,0xff,0x48,0x84,0x27,0x22,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 22606 塎 ; -+,0x10,0x10,0x11,0x11,0x7e,0x10,0x11,0x12,0x10,0x10,0x1d,0x72,0x20,0x00,0x00,0x00,0x20,0x10,0xff,0x02,0x88,0xc6,0x12,0x28,0x44,0x83,0xfe,0x84,0x84,0x84,0xfc,0x84 -+// 22607 塏 ; -+,0x10,0x11,0x11,0x11,0x11,0x7c,0x13,0x10,0x11,0x11,0x11,0x1d,0x70,0x20,0x03,0x00,0x20,0x24,0x24,0x24,0xfc,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x08,0x8c,0x50,0xff,0x00 -+// 22608 塐 ; -+,0x10,0x11,0x10,0x10,0x7c,0x11,0x10,0x10,0x10,0x10,0x1c,0x70,0x20,0x00,0x01,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x20,0x48,0xf4,0x22,0xff,0x12,0x54,0x92,0x11,0x30 -+// 22609 塑 ; -+,0x00,0x21,0x12,0x7f,0x04,0x25,0x25,0x3f,0x09,0x08,0x10,0x3f,0x00,0x00,0x7f,0x00,0x00,0x3e,0x22,0xbe,0x22,0x22,0x3e,0x22,0x4a,0x44,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22610 塒 ; -+,0x10,0x10,0x13,0x12,0x12,0x7e,0x13,0x12,0x12,0x12,0x1e,0x73,0x22,0x02,0x00,0x00,0x08,0x08,0x88,0xbe,0x88,0x88,0xff,0x84,0xff,0xa4,0x94,0x94,0x84,0x04,0x14,0x08 -+// 22611 塓 ; -+,0x10,0x11,0x12,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x11,0x1c,0x70,0x20,0x01,0x02,0x00,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0xa4,0x10,0xff,0x48,0x64,0x86,0x03,0x02 -+// 22612 塔 ; -+,0x10,0x10,0x13,0x10,0x7e,0x10,0x10,0x11,0x13,0x14,0x11,0x1d,0x61,0x01,0x01,0x00,0x88,0x88,0xff,0x88,0xa8,0x50,0x88,0x04,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 22613 塕 ; -+,0x10,0x10,0x11,0x11,0x12,0x7d,0x10,0x13,0x12,0x11,0x14,0x19,0x62,0x04,0x01,0x00,0x90,0x88,0x4c,0x67,0x8a,0xfc,0x04,0xde,0x52,0x4a,0xc6,0x46,0x4a,0x52,0x4a,0x84 -+// 22614 塖 ; -+,0x10,0x13,0x10,0x13,0x7c,0x11,0x10,0x10,0x10,0x13,0x1c,0x70,0x20,0x01,0x02,0x00,0x3e,0xd0,0x12,0xff,0x50,0xd5,0x56,0x54,0xd5,0x53,0x38,0x54,0x96,0x13,0x12,0x10 -+// 22615 塗 ; -+,0x10,0x0c,0x48,0x31,0x23,0x08,0x0b,0x31,0x12,0x14,0x10,0x1f,0x00,0x00,0x3f,0x00,0x20,0x50,0x88,0x06,0xff,0x20,0xfe,0x28,0x24,0x64,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22616 塘 ; -+,0x00,0x10,0x13,0x12,0x7e,0x12,0x13,0x12,0x12,0x12,0x12,0x1e,0x62,0x04,0x08,0x00,0x40,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 22617 塙 ; -+,0x10,0x10,0x17,0x10,0x11,0x7d,0x11,0x10,0x13,0x12,0x12,0x1e,0x72,0x22,0x02,0x02,0x40,0x20,0xff,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x02,0xfa,0x8a,0xfa,0x8a,0x02,0x06 -+// 22618 塚 ; -+,0x10,0x11,0x12,0x12,0x11,0x7c,0x10,0x11,0x12,0x10,0x1d,0x72,0x21,0x02,0x00,0x00,0x00,0xff,0x02,0x04,0xfe,0x44,0xe6,0x34,0xd8,0xb8,0x54,0xd7,0x52,0x10,0xa0,0x40 -+// 22619 塛 ; -+,0x13,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x10,0x11,0x16,0x78,0x20,0x01,0x02,0x00,0xff,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x12,0x10,0xff,0x30,0x58,0x96,0x13,0x12,0x10 -+// 22620 塜 ; -+,0x10,0x11,0x12,0x12,0x10,0x11,0x7e,0x10,0x11,0x12,0x11,0x1e,0x70,0x21,0x00,0x00,0x00,0xff,0x02,0xfc,0x00,0xff,0x40,0xa2,0x54,0x98,0x38,0x54,0x93,0x12,0x50,0x20 -+// 22621 塝 ; -+,0x10,0x10,0x11,0x10,0x7c,0x11,0x11,0x12,0x11,0x10,0x1c,0x70,0x20,0x01,0x02,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0x22,0x10,0xff,0x40,0x7c,0x44,0x84,0x14,0x08,0x00 -+// 22622 塞 ; -+,0x01,0x00,0x3f,0x22,0x0f,0x02,0x0f,0x02,0x3f,0x02,0x04,0x1f,0x60,0x00,0x3f,0x00,0x00,0x80,0xff,0x21,0xfc,0x20,0xfc,0x20,0xff,0x10,0x8c,0xff,0x82,0x80,0xfe,0x00 -+// 22623 塟 ; -+,0x02,0x7f,0x02,0x00,0x7f,0x08,0x0f,0x11,0x2a,0x44,0x18,0x6f,0x00,0x00,0x7f,0x00,0x20,0xff,0x20,0x00,0xff,0x20,0x26,0x38,0x21,0x9f,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22624 塠 ; -+,0x00,0x14,0x13,0x11,0x10,0x7c,0x10,0x17,0x11,0x11,0x1d,0x71,0x21,0x02,0x04,0x00,0x10,0x18,0x20,0x7e,0x42,0x42,0x7e,0x40,0x7e,0x42,0x42,0x7e,0x00,0x80,0x7f,0x00 -+// 22625 塡 ; -+,0x10,0x10,0x10,0x10,0x7e,0x10,0x11,0x11,0x11,0x11,0x11,0x1d,0x71,0x20,0x00,0x01,0x86,0xf8,0x80,0x7f,0x00,0x7e,0x42,0x72,0x4e,0x42,0x7e,0x00,0xff,0x44,0x83,0x02 -+// 22626 塢 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1c,0x72,0x22,0x02,0x04,0x00,0x20,0x40,0xfc,0x04,0x04,0xfc,0x00,0xff,0x00,0xfe,0x02,0xaa,0xaa,0xa2,0x0a,0x04 -+// 22627 塣 ; -+,0x10,0x09,0x29,0x11,0x14,0x05,0x38,0x09,0x08,0x0b,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x20,0xfc,0x20,0xfe,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22628 塤 ; -+,0x10,0x10,0x10,0x10,0x10,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x60,0x00,0x01,0x02,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x88,0xc4,0x02,0x02 -+// 22629 塥 ; -+,0x10,0x13,0x10,0x10,0x7e,0x10,0x10,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x00,0x00,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x52,0x22,0xfa,0x22,0x22,0x2a,0x24,0x00 -+// 22630 塦 ; -+,0x00,0x3d,0x24,0x28,0x28,0x24,0x22,0x34,0x28,0x21,0x20,0x00,0x1f,0x00,0x00,0x7f,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x90,0xfe,0x80,0x80,0xff -+// 22631 塧 ; -+,0x11,0x10,0x10,0x10,0x13,0x7c,0x10,0x11,0x12,0x11,0x11,0x1d,0x71,0x21,0x03,0x00,0x04,0x86,0xc4,0x48,0xff,0x48,0xe6,0x83,0x02,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 22632 塨 ; -+,0x10,0x10,0x13,0x10,0x10,0x7f,0x10,0x10,0x11,0x12,0x11,0x1d,0x71,0x22,0x04,0x00,0x90,0x90,0xfe,0x90,0x90,0xff,0x90,0xa8,0x27,0x22,0x28,0xb4,0x2a,0x2a,0xa0,0x40 -+// 22633 塩 ; -+,0x10,0x10,0x10,0x11,0x12,0x7c,0x10,0x10,0x10,0x11,0x11,0x1d,0x61,0x01,0x03,0x00,0x80,0x80,0xff,0x00,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 22634 塪 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x08,0x09,0x09,0x09,0x09,0x0f,0x71,0x21,0x01,0x00,0x00,0x1f,0xe2,0x23,0x92,0x54,0x20,0xcf,0x01,0x01,0xef,0x01,0x01,0xff,0x01,0x00 -+// 22635 填 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x71,0x07,0x00,0x01,0x02,0x20,0x20,0xff,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff,0x88,0x06,0x02 -+// 22636 塬 ; -+,0x10,0x13,0x12,0x12,0x7e,0x12,0x12,0x12,0x12,0x12,0x12,0x1a,0x64,0x05,0x08,0x10,0x00,0xff,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x54,0x52,0x91,0x11,0x50,0x20 -+// 22637 塭 ; -+,0x10,0x10,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x11,0x1d,0x71,0x21,0x01,0x07,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 22638 塮 ; -+,0x10,0x11,0x13,0x12,0x7b,0x12,0x13,0x12,0x17,0x10,0x1c,0x71,0x22,0x04,0x08,0x00,0x82,0x02,0xe2,0x22,0xff,0x22,0xe2,0x32,0xea,0x6a,0xa2,0x22,0x22,0x22,0xaa,0x44 -+// 22639 塯 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x13,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x01,0x20,0xdf,0x09,0x49,0x29,0x69,0x95,0x22,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 22640 塰 ; -+,0x10,0x08,0x00,0x25,0x16,0x0b,0x08,0x70,0x11,0x10,0x00,0x1f,0x00,0x00,0x7f,0x00,0x80,0xfe,0x80,0xfc,0xa4,0xff,0xa4,0x94,0xff,0x94,0x88,0xfe,0x80,0x80,0xff,0x00 -+// 22641 塱 ; -+,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x12,0x17,0x3a,0x10,0x1f,0x00,0x00,0x7f,0x00,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x42,0x4a,0x84,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22642 塲 ; -+,0x10,0x10,0x11,0x12,0x10,0x7c,0x10,0x10,0x13,0x10,0x11,0x1a,0x64,0x01,0x02,0x01,0x80,0xfe,0x00,0xfc,0x84,0xfc,0x84,0x84,0xff,0x80,0xfe,0x52,0x92,0x22,0x4a,0x84 -+// 22643 塳 ; -+,0x10,0x10,0x12,0x12,0x7c,0x10,0x10,0x16,0x13,0x12,0x1e,0x72,0x22,0x05,0x08,0x00,0x40,0x40,0x7e,0x44,0xa8,0x38,0x57,0xba,0x10,0x7c,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 22644 塴 ; -+,0x10,0x11,0x11,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x72,0x22,0x05,0x08,0x00,0x20,0x22,0xfe,0x00,0xde,0x52,0x52,0xde,0x52,0xde,0x52,0x52,0x52,0x52,0xa6,0x00 -+// 22645 塵 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x15,0x16,0x14,0x17,0x10,0x17,0x20,0x20,0x4f,0x40,0xff,0x20,0xfe,0x22,0xfe,0x20,0x2c,0x30,0xa2,0x9e,0x40,0xfc,0x40,0x40,0xff -+// 22646 塶 ; -+,0x10,0x10,0x13,0x12,0x7f,0x12,0x12,0x13,0x12,0x12,0x1e,0x72,0x24,0x05,0x08,0x00,0x40,0x20,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x88,0x89,0xee,0x88,0xa8,0xc9,0x87,0x00 -+// 22647 塷 ; -+,0x10,0x10,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x00,0x10,0x10,0x1f,0x10,0xff,0x23,0x95,0x49,0xb5,0x93,0x29,0x55,0x93,0xff,0x01,0x00 -+// 22648 塸 ; -+,0x10,0x13,0x12,0x12,0x12,0x7e,0x12,0x12,0x12,0x12,0x12,0x1e,0x72,0x22,0x03,0x00,0x00,0xff,0x00,0x7c,0x44,0x44,0x7c,0x00,0xef,0xa9,0xa9,0xef,0xa9,0x00,0xff,0x00 -+// 22649 塹 ; -+,0x04,0x3f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x1f,0x00,0x00,0x7f,0x00,0x00,0x7e,0x40,0x40,0x7f,0x48,0x48,0x48,0x88,0x08,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22650 塺 ; -+,0x00,0x00,0x1f,0x12,0x1f,0x12,0x17,0x1a,0x12,0x12,0x10,0x17,0x20,0x20,0x5f,0x00,0x80,0x40,0xff,0x08,0xbe,0x1c,0x1a,0xa9,0xa8,0x08,0x40,0xfc,0x40,0x40,0xff,0x00 -+// 22651 塻 ; -+,0x10,0x10,0x13,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x1c,0x73,0x20,0x00,0x01,0x02,0x88,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x24,0x20,0xff,0x50,0x8c,0x07,0x02 -+// 22652 塼 ; -+,0x10,0x13,0x10,0x11,0x11,0x7d,0x11,0x11,0x10,0x13,0x1c,0x73,0x20,0x00,0x00,0x00,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x22,0xff,0x0a,0xff,0x88,0x48,0x48,0x18 -+// 22653 塽 ; -+,0x10,0x10,0x13,0x11,0x10,0x7f,0x10,0x11,0x10,0x11,0x10,0x1e,0x70,0x20,0x01,0x02,0x20,0x20,0xff,0x6a,0xa4,0x6a,0x20,0x6a,0xa4,0x6a,0x20,0x50,0x48,0x84,0x07,0x02 -+// 22654 塾 ; -+,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x3e,0x04,0x08,0x7f,0x08,0x2f,0x10,0x00,0x3f,0x20,0x20,0xfc,0x24,0xa4,0x64,0x34,0x2c,0x25,0x45,0x43,0x80,0xfc,0x80,0x80,0xff -+// 22655 塿 ; -+,0x10,0x11,0x11,0x17,0x11,0x7d,0x10,0x13,0x12,0x13,0x10,0x1b,0x60,0x00,0x00,0x03,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x22,0xfe,0x40,0xff,0x88,0xd0,0x20,0xde -+// 22656 墀 ; -+,0x00,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x71,0x22,0x03,0x04,0x04,0x08,0x00,0xff,0x01,0xff,0x92,0x54,0x38,0x54,0x93,0x50,0x7e,0x90,0xff,0x10,0x10,0x10 -+// 22657 墁 ; -+,0x10,0x10,0x10,0x10,0x7c,0x10,0x11,0x11,0x11,0x10,0x1d,0x70,0x20,0x00,0x00,0x03,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 22658 墂 ; -+,0x10,0x13,0x10,0x11,0x11,0x7d,0x11,0x10,0x10,0x14,0x1b,0x60,0x01,0x02,0x04,0x00,0x00,0xff,0x50,0xfe,0x52,0x52,0xfe,0x00,0xfc,0x00,0xff,0x20,0x28,0x26,0xa2,0x40 -+// 22659 境 ; -+,0x00,0x10,0x11,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x10,0x1c,0x70,0x20,0x00,0x01,0x20,0x10,0xfe,0x84,0x48,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x49,0x89,0x07 -+// 22660 墄 ; -+,0x00,0x10,0x10,0x13,0x12,0x7e,0x12,0x12,0x13,0x12,0x13,0x1a,0x64,0x04,0x09,0x00,0x10,0x14,0x12,0xff,0x90,0x92,0xf3,0x92,0xf2,0x8c,0xc8,0xad,0x95,0xa3,0x81,0x00 -+// 22661 墅 ; -+,0x00,0x1f,0x15,0x1f,0x15,0x1f,0x04,0x1f,0x04,0x3f,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x3e,0x14,0x08,0x7f,0x09,0x0a,0x08,0x28,0x10,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22662 墆 ; -+,0x01,0x11,0x17,0x11,0x12,0x7c,0x13,0x12,0x14,0x11,0x1d,0x71,0x21,0x01,0x00,0x00,0x54,0x54,0xff,0x54,0x73,0x00,0xff,0x22,0x20,0xfc,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 22663 墇 ; -+,0x10,0x11,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x10,0x1c,0x70,0x23,0x00,0x00,0x00,0x20,0xfe,0x84,0x48,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 22664 墈 ; -+,0x11,0x11,0x17,0x11,0x7d,0x11,0x11,0x11,0x17,0x12,0x1e,0x73,0x22,0x07,0x02,0x00,0x44,0x44,0xf4,0x44,0xdf,0x45,0xc5,0x45,0xf5,0xa5,0xa9,0x29,0x09,0xf1,0x15,0x22 -+// 22665 墉 ; -+,0x10,0x13,0x12,0x12,0x12,0x7b,0x12,0x12,0x12,0x12,0x1e,0x72,0x22,0x04,0x04,0x08,0x20,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x96 -+// 22666 墊 ; -+,0x04,0x3f,0x04,0x7f,0x11,0x0a,0x3f,0x04,0x7f,0x04,0x04,0x04,0x1f,0x00,0x00,0x3f,0x10,0x10,0x10,0xfc,0x14,0x54,0xa4,0x35,0xdb,0x53,0x81,0x80,0xfc,0x80,0x80,0xff -+// 22667 墋 ; -+,0x00,0x10,0x10,0x10,0x11,0x7f,0x11,0x10,0x11,0x16,0x11,0x1c,0x73,0x00,0x00,0x07,0x20,0x48,0xfc,0x84,0x2a,0xff,0x29,0x58,0x87,0x62,0x98,0x63,0x8c,0x30,0xc0,0x00 -+// 22668 墌 ; -+,0x10,0x10,0x13,0x12,0x12,0x7e,0x13,0x12,0x12,0x12,0x12,0x1e,0x72,0x25,0x09,0x10,0x40,0x20,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x78,0x00,0xaa,0xaa,0x29,0x29,0x00 -+// 22669 墍 ; -+,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x26,0x38,0x21,0x1f,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x7f,0x48,0x28,0x7f,0x14,0x14,0x24,0x45,0x87,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 22670 墎 ; -+,0x11,0x10,0x17,0x10,0x7b,0x12,0x13,0x10,0x13,0x10,0x1c,0x70,0x23,0x00,0x02,0x01,0x0f,0x89,0xea,0x0a,0xea,0x2c,0xec,0x0a,0xe9,0x49,0x89,0xef,0x8a,0x88,0x88,0x08 -+// 22671 墏 ; -+,0x02,0x12,0x12,0x3e,0x13,0x02,0x3e,0x12,0x12,0x22,0x42,0x1f,0x00,0x00,0x7f,0x00,0x40,0x7e,0x44,0xa4,0x58,0x34,0x7f,0xa4,0x24,0x14,0x88,0xfc,0x80,0x80,0xff,0x00 -+// 22672 墐 ; -+,0x10,0x10,0x13,0x10,0x10,0x7e,0x11,0x11,0x11,0x10,0x13,0x1c,0x71,0x20,0x07,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xff,0x20,0xfe,0x20,0xff,0x00 -+// 22673 墑 ; -+,0x10,0x10,0x13,0x10,0x7e,0x11,0x11,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x01,0x40,0x20,0xff,0x84,0x48,0xfe,0x22,0xfe,0x22,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x06 -+// 22674 墒 ; -+,0x10,0x10,0x13,0x10,0x7e,0x11,0x11,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x01,0x40,0x20,0xff,0x84,0x48,0xfe,0x2a,0x46,0xfa,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 22675 墓 ; -+,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x3f,0x06,0x18,0x67,0x00,0x00,0x3f,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x90,0x8c,0xf7,0x82,0x80,0xfe -+// 22676 墔 ; -+,0x10,0x11,0x11,0x11,0x10,0x7c,0x11,0x11,0x13,0x15,0x11,0x1d,0x71,0x21,0x01,0x01,0x10,0x11,0x11,0xff,0xa0,0x90,0xff,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 22677 墕 ; -+,0x00,0x13,0x10,0x11,0x11,0x7f,0x11,0x11,0x11,0x11,0x10,0x1e,0x72,0x24,0x00,0x00,0x00,0xfe,0x20,0x3c,0x20,0xff,0x00,0xfe,0x00,0xfe,0x02,0xaa,0xaa,0xa2,0x0a,0x04 -+// 22678 墖 ; -+,0x10,0x10,0x10,0x11,0x12,0x7d,0x11,0x11,0x10,0x13,0x12,0x1f,0x72,0x22,0x03,0x00,0x20,0x50,0x8c,0xfb,0x02,0xfc,0x04,0xfc,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x00 -+// 22679 増 ; -+,0x11,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x10,0x10,0x1c,0x70,0x20,0x00,0x00,0x01,0x82,0x44,0xff,0x11,0xff,0x11,0xff,0x01,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 22680 墘 ; -+,0x11,0x11,0x17,0x11,0x13,0x7a,0x13,0x12,0x13,0x11,0x11,0x13,0x1d,0x71,0x21,0x01,0x08,0x0c,0xc8,0x0f,0xd0,0x50,0xfe,0x42,0xc4,0x04,0x08,0xc8,0x11,0x11,0x0f,0x00 -+// 22681 墙 ; -+,0x10,0x10,0x13,0x10,0x7d,0x10,0x13,0x10,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x01,0x20,0x20,0xff,0x24,0x26,0xa8,0xff,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0xfe,0x02 -+// 22682 墚 ; -+,0x12,0x11,0x14,0x12,0x7a,0x11,0x11,0x12,0x14,0x13,0x10,0x1c,0x71,0x22,0x04,0x00,0x00,0x7c,0x14,0x56,0x55,0xa5,0x34,0x48,0x20,0xfe,0x70,0xa8,0x24,0x26,0x24,0x20 -+// 22683 墛 ; -+,0x10,0x13,0x12,0x12,0x7b,0x12,0x13,0x12,0x13,0x12,0x1a,0x75,0x25,0x0a,0x08,0x00,0x02,0xe2,0x22,0x22,0xe2,0x1f,0xe2,0x12,0xea,0x4a,0x62,0x52,0x52,0x42,0xca,0x04 -+// 22684 墜 ; -+,0x00,0x3c,0x27,0x28,0x28,0x33,0x28,0x25,0x38,0x23,0x20,0x00,0x1f,0x00,0x00,0x3f,0x84,0x48,0xff,0x40,0xa2,0x74,0xb8,0x54,0x93,0x12,0xb0,0x80,0xfe,0x80,0x80,0xff -+// 22685 墝 ; -+,0x00,0x11,0x10,0x10,0x13,0x7c,0x13,0x10,0x13,0x10,0x13,0x1c,0x70,0x20,0x01,0x02,0x20,0xfc,0x20,0x20,0xfe,0x84,0xce,0x84,0xdf,0x00,0xfe,0x90,0x91,0x91,0x0f,0x00 -+// 22686 增 ; -+,0x11,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x10,0x10,0x1c,0x70,0x20,0x00,0x00,0x00,0x04,0xc6,0x48,0xff,0x11,0x55,0x39,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 22687 墟 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x12,0x12,0x12,0x1e,0x73,0x22,0x04,0x04,0x0b,0x10,0x20,0x3e,0x20,0xff,0x22,0xf8,0x22,0x1e,0x48,0x48,0x4a,0xcc,0x48,0x48,0xff,0x00 -+// 22688 墠 ; -+,0x13,0x12,0x12,0x13,0x7c,0x13,0x12,0x13,0x12,0x13,0x1c,0x77,0x20,0x00,0x00,0x00,0xde,0x52,0x52,0xde,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 22689 墡 ; -+,0x10,0x10,0x13,0x10,0x11,0x7c,0x13,0x11,0x10,0x13,0x10,0x1d,0x61,0x01,0x01,0x01,0x84,0x48,0xff,0x20,0xfe,0x20,0xff,0x24,0xa8,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 22690 墢 ; -+,0x13,0x10,0x14,0x12,0x7d,0x13,0x1c,0x14,0x13,0x12,0x13,0x1c,0x70,0x20,0x02,0x01,0xa0,0xa4,0x98,0x92,0x0c,0x87,0xbc,0xa4,0xa4,0x43,0xbe,0xa4,0x94,0x88,0x94,0x22 -+// 22691 墣 ; -+,0x10,0x12,0x11,0x10,0x13,0x7c,0x10,0x13,0x10,0x11,0x10,0x1f,0x70,0x20,0x03,0x0c,0x50,0x52,0x54,0x50,0xff,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x50,0x88,0x07,0x02 -+// 22692 墤 ; -+,0x08,0x08,0x08,0x08,0x7c,0x09,0x08,0x08,0x08,0x08,0x0e,0x78,0x20,0x00,0x00,0x01,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 22693 墥 ; -+,0x10,0x10,0x11,0x10,0x13,0x7c,0x11,0x11,0x11,0x11,0x11,0x1c,0x73,0x20,0x07,0x00,0x40,0x20,0xfe,0x88,0xff,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 22694 墦 ; -+,0x10,0x13,0x10,0x11,0x10,0x7b,0x10,0x10,0x11,0x13,0x1d,0x71,0x21,0x01,0x01,0x01,0x3c,0xe0,0x24,0x26,0xa8,0xfe,0x70,0xa8,0x27,0xfe,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 22695 墧 ; -+,0x10,0x13,0x10,0x13,0x7c,0x11,0x12,0x14,0x10,0x13,0x1e,0x72,0x22,0x02,0x02,0x02,0x1e,0xe0,0x40,0xff,0x88,0xfc,0x8b,0xfa,0x00,0xfe,0x02,0xfa,0x8a,0xfa,0x0a,0x04 -+// 22696 墨 ; -+,0x1f,0x14,0x12,0x1f,0x00,0x1f,0x00,0x7f,0x14,0x13,0x22,0x00,0x0f,0x00,0x7f,0x00,0xfc,0x94,0xa4,0xfc,0x80,0xfe,0x80,0xff,0x44,0x33,0x22,0x80,0xfc,0x80,0xff,0x00 -+// 22697 墩 ; -+,0x12,0x11,0x17,0x10,0x13,0x7a,0x13,0x10,0x17,0x10,0x1d,0x73,0x2d,0x01,0x05,0x02,0x10,0x18,0xd0,0x10,0xbf,0xa2,0xd2,0x14,0xd4,0x94,0x48,0x88,0x14,0x23,0x42,0x80 -+// 22698 墪 ; -+,0x08,0x3f,0x00,0x1f,0x11,0x1f,0x00,0x3f,0x01,0x0f,0x32,0x0a,0x04,0x1f,0x00,0x3f,0x20,0xb0,0x20,0x3f,0x44,0x24,0x24,0x98,0x18,0xa7,0x42,0x80,0x80,0xfc,0x80,0xff -+// 22699 墫 ; -+,0x10,0x10,0x13,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x1c,0x73,0x21,0x00,0x00,0x00,0x84,0x48,0xff,0x50,0xfe,0x52,0x5e,0xfe,0x02,0xfe,0x08,0xff,0x08,0x88,0xa8,0x10 -+// 22700 墬 ; -+,0x00,0x3c,0x24,0x29,0x30,0x2b,0x24,0x34,0x2b,0x20,0x21,0x26,0x00,0x1f,0x00,0x7f,0x40,0xfc,0x88,0xf8,0x08,0xff,0x62,0xa4,0x38,0x57,0x92,0x30,0x80,0xfc,0x80,0xff -+// 22701 墭 ; -+,0x00,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x12,0x1b,0x65,0x01,0x01,0x03,0x00,0x14,0x12,0x12,0xff,0x10,0xf2,0x2c,0x28,0x55,0x23,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 22702 墮 ; -+,0x00,0x3f,0x24,0x28,0x28,0x29,0x26,0x24,0x3c,0x28,0x20,0x20,0x01,0x3f,0x01,0x7f,0x40,0xff,0x40,0xfe,0x90,0x7f,0x00,0xfc,0x84,0xe4,0x9c,0x84,0x0c,0xfe,0x00,0xff -+// 22703 墯 ; -+,0x08,0x0b,0x08,0x2d,0x2a,0x49,0x08,0x09,0x09,0x09,0x09,0x09,0x01,0x1f,0x00,0x7f,0x40,0xfe,0x80,0xfc,0x20,0xfe,0x00,0xfc,0x04,0xc4,0x3c,0x04,0x8c,0xfe,0x80,0xff -+// 22704 墰 ; -+,0x17,0x10,0x13,0x12,0x7f,0x10,0x11,0x11,0x11,0x11,0x1d,0x70,0x27,0x00,0x00,0x00,0xff,0x50,0xfe,0x52,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 22705 墱 ; -+,0x10,0x13,0x10,0x12,0x7d,0x11,0x12,0x1d,0x11,0x11,0x1d,0x70,0x20,0x00,0x07,0x00,0x00,0xd2,0x54,0x59,0x8a,0x76,0x03,0xfd,0x04,0x04,0xfc,0x00,0x88,0x50,0xff,0x00 -+// 22706 墲 ; -+,0x10,0x10,0x10,0x11,0x13,0x7d,0x13,0x11,0x11,0x11,0x1f,0x70,0x22,0x02,0x04,0x00,0x80,0x80,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x00,0x92,0x6b,0x4a,0x00 -+// 22707 墳 ; -+,0x10,0x11,0x10,0x10,0x7f,0x10,0x11,0x11,0x11,0x11,0x1d,0x71,0x21,0x00,0x01,0x02,0x20,0xfe,0x20,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06,0x04 -+// 22708 墴 ; -+,0x10,0x10,0x11,0x10,0x7d,0x10,0x10,0x10,0x10,0x10,0x10,0x1c,0x70,0x20,0x00,0x01,0x48,0x48,0xff,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x48,0x64,0xc6,0x83,0x02 -+// 22709 墵 ; -+,0x13,0x10,0x13,0x14,0x11,0x7c,0x11,0x10,0x13,0x10,0x17,0x18,0x60,0x01,0x03,0x00,0xff,0x20,0xff,0x21,0xac,0x20,0xac,0x00,0xfe,0x00,0xff,0x40,0x82,0x1f,0xf1,0x00 -+// 22710 墶 ; -+,0x10,0x10,0x14,0x12,0x11,0x7c,0x10,0x17,0x11,0x11,0x1d,0x71,0x21,0x01,0x02,0x04,0x10,0x10,0xfe,0x10,0xff,0x44,0x28,0xff,0x10,0x7e,0x10,0xff,0x10,0x10,0xff,0x00 -+// 22711 墷 ; -+,0x10,0x10,0x13,0x10,0x13,0x7c,0x10,0x13,0x10,0x13,0x10,0x18,0x73,0x20,0x00,0x00,0x88,0x88,0xff,0x88,0xff,0xa4,0xa4,0xff,0xa4,0xff,0x20,0x20,0xff,0x20,0x20,0x20 -+// 22712 墸 ; -+,0x10,0x10,0x17,0x10,0x7c,0x11,0x10,0x17,0x10,0x10,0x1d,0x72,0x24,0x00,0x00,0x00,0x88,0x88,0xff,0x88,0x21,0xfe,0x24,0xff,0x30,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 22713 墹 ; -+,0x10,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x71,0x21,0x01,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0x01,0x05,0x02 -+// 22714 墺 ; -+,0x10,0x10,0x13,0x12,0x7e,0x13,0x12,0x12,0x13,0x10,0x13,0x1c,0x70,0x20,0x03,0x0c,0x20,0x40,0xfe,0xaa,0x72,0xfe,0x72,0xaa,0x26,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 22715 墻 ; -+,0x10,0x10,0x13,0x11,0x7d,0x12,0x17,0x10,0x13,0x12,0x1e,0x72,0x22,0x02,0x03,0x00,0x20,0x20,0xfe,0x24,0x24,0xaa,0xff,0x00,0xfe,0x02,0xfa,0x8a,0xfa,0x02,0xfe,0x00 -+// 22716 墼 ; -+,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x24,0x3f,0x00,0x3f,0x00,0x00,0x7f,0x00,0xbc,0x24,0xa4,0xa5,0xc7,0xbc,0xa4,0x18,0xa4,0xc3,0x80,0xfe,0x80,0x80,0xff -+// 22717 墽 ; -+,0x01,0x13,0x12,0x13,0x12,0x7e,0x13,0x11,0x1f,0x11,0x13,0x1a,0x72,0x24,0x05,0x08,0x08,0xcc,0x48,0xd0,0x5f,0x52,0xf2,0x12,0xea,0x0a,0xca,0x44,0x44,0x4a,0x53,0xa2 -+// 22718 墾 ; -+,0x0f,0x74,0x12,0x0b,0x7c,0x06,0x1a,0x65,0x19,0x6a,0x04,0x00,0x1f,0x00,0x00,0x3f,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x52,0x56,0x48,0xe7,0x42,0x80,0xfc,0x80,0x80,0xff -+// 22719 墿 ; -+,0x11,0x11,0x11,0x11,0x7c,0x11,0x10,0x13,0x10,0x10,0x1d,0x70,0x23,0x00,0x00,0x00,0xfe,0x4a,0x4a,0xfe,0x20,0xfe,0x20,0xff,0x84,0x48,0xff,0x20,0xff,0x20,0x20,0x20 -+// 22720 壀 ; -+,0x10,0x13,0x12,0x12,0x7e,0x13,0x12,0x12,0x13,0x1f,0x73,0x25,0x05,0x09,0x11,0x00,0x10,0xcc,0x48,0x7f,0x62,0xd4,0x14,0x3f,0xc8,0x48,0x7f,0x48,0xc8,0x48,0x08,0x00 -+// 22721 壁 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x21,0x3e,0x32,0x3e,0x52,0x00,0x1f,0x00,0x00,0x7f,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0x10,0xff,0x10,0x10,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22722 壂 ; -+,0x1f,0x10,0x1f,0x10,0x15,0x1f,0x15,0x1f,0x25,0x28,0x50,0x0f,0x00,0x00,0x7f,0x00,0xbc,0xa4,0xa4,0x24,0x43,0xbe,0x14,0xd4,0x08,0xb7,0x42,0xfc,0x40,0x40,0xff,0x00 -+// 22723 壃 ; -+,0x13,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x11,0x1d,0x71,0x21,0x01,0x00,0x07,0xff,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff -+// 22724 壄 ; -+,0x10,0x13,0x10,0x7b,0x30,0x39,0x35,0x52,0x54,0x11,0x10,0x1f,0x00,0x00,0x7f,0x00,0x08,0xe8,0x48,0xff,0xa8,0x9c,0x9a,0xab,0xaa,0x08,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22725 壅 ; -+,0x01,0x00,0x7f,0x08,0x12,0x3d,0x0a,0x3e,0x12,0x04,0x18,0x60,0x00,0x3f,0x00,0x7f,0x00,0x80,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xfe,0x90,0xff,0x80,0xfe,0x80,0xff -+// 22726 壆 ; -+,0x03,0x1c,0x11,0x1c,0x11,0x1c,0x11,0x10,0x3f,0x20,0x40,0x0f,0x00,0x00,0x3f,0x00,0x00,0x3c,0x44,0x9c,0x44,0x9c,0x44,0x04,0xff,0x82,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 22727 壇 ; -+,0x00,0x10,0x13,0x10,0x11,0x7f,0x11,0x11,0x11,0x11,0x10,0x1e,0x70,0x20,0x00,0x03,0x40,0x20,0xff,0x00,0xfe,0x4a,0x4a,0x7a,0x02,0xfe,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 22728 壈 ; -+,0x00,0x13,0x10,0x11,0x7d,0x11,0x11,0x11,0x10,0x11,0x1c,0x73,0x00,0x01,0x02,0x04,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0x20,0xff,0xa8,0x26,0x23,0x22 -+// 22729 壉 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x12,0x12,0x13,0x12,0x1e,0x73,0x04,0x04,0x09,0x10,0x20,0x3e,0x20,0xff,0x22,0xf8,0x24,0x1c,0xff,0x32,0xd7,0x28,0x4c,0x9b,0x2a,0x58 -+// 22730 壊 ; -+,0x10,0x17,0x10,0x13,0x12,0x7e,0x13,0x10,0x13,0x10,0x10,0x1d,0x62,0x04,0x01,0x00,0x20,0xff,0x20,0xfe,0x52,0x52,0xfe,0x40,0xfe,0x44,0xae,0x90,0x88,0xa7,0xc2,0x80 -+// 22731 壋 ; -+,0x10,0x11,0x10,0x11,0x12,0x7c,0x10,0x10,0x10,0x11,0x1d,0x71,0x21,0x01,0x01,0x00,0x20,0x24,0xa8,0xff,0x02,0xfc,0x84,0xfc,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x02,0x00 -+// 22732 壌 ; -+,0x10,0x13,0x10,0x10,0x7d,0x10,0x10,0x11,0x10,0x11,0x16,0x18,0x63,0x04,0x00,0x00,0x20,0xff,0x44,0x82,0x49,0xff,0x48,0xfe,0x48,0xff,0x52,0xd7,0x48,0x47,0xe2,0x40 -+// 22733 壍 ; -+,0x21,0x17,0x11,0x47,0x25,0x17,0x15,0x67,0x21,0x27,0x21,0x20,0x1f,0x00,0x00,0x3f,0x00,0xdf,0x10,0xd0,0x5f,0xd4,0x54,0xd4,0x14,0xd4,0x24,0x80,0xfe,0x80,0x80,0xff -+// 22734 壎 ; -+,0x10,0x13,0x10,0x17,0x10,0x7f,0x13,0x12,0x12,0x13,0x1c,0x73,0x20,0x03,0x01,0x02,0x1e,0xe0,0x20,0xff,0x20,0xfe,0x2a,0xee,0xb2,0xfe,0x20,0xfe,0x20,0xff,0x4a,0x4a -+// 22735 壏 ; -+,0x00,0x13,0x12,0x13,0x12,0x7a,0x13,0x12,0x13,0x10,0x11,0x1d,0x71,0x21,0x07,0x00,0x08,0xec,0x88,0xe8,0x2f,0x28,0xf4,0x92,0xe2,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 22736 壐 ; -+,0x00,0x3f,0x08,0x1f,0x39,0x56,0x19,0x16,0x19,0x10,0x10,0x00,0x1f,0x00,0x7f,0x00,0x00,0xfe,0x84,0xfe,0xcd,0xb4,0xcc,0xb4,0xcc,0x84,0x0c,0x80,0xfc,0x80,0xff,0x00 -+// 22737 壑 ; -+,0x08,0x0f,0x08,0x7f,0x40,0x3f,0x12,0x2d,0x52,0x3f,0x62,0x3e,0x00,0x1f,0x00,0x7f,0x00,0x00,0x7e,0xa2,0xa4,0x14,0x08,0x08,0x94,0x23,0xc0,0x00,0x80,0xfc,0x80,0xff -+// 22738 壒 ; -+,0x10,0x10,0x13,0x10,0x11,0x7e,0x13,0x10,0x11,0x10,0x11,0x1d,0x61,0x01,0x07,0x00,0x88,0x88,0xff,0xa8,0xfc,0x20,0xff,0x48,0xfe,0x84,0xfe,0x4a,0x4a,0x4a,0xff,0x00 -+// 22739 壓 ; -+,0x1f,0x10,0x17,0x14,0x17,0x10,0x1f,0x28,0x2f,0x28,0x4f,0x08,0x00,0x0f,0x00,0x3f,0xff,0x08,0x8c,0x8a,0x88,0x3f,0xc8,0x48,0xd4,0x53,0xe2,0x40,0x80,0xfc,0x80,0xff -+// 22740 壔 ; -+,0x00,0x13,0x10,0x11,0x7c,0x13,0x10,0x11,0x10,0x13,0x1c,0x71,0x21,0x01,0x01,0x00,0x20,0xfe,0x20,0xfc,0x00,0xff,0x22,0xfc,0x00,0xff,0x04,0xff,0x54,0x44,0xd4,0x08 -+// 22741 壕 ; -+,0x10,0x13,0x10,0x11,0x7d,0x11,0x10,0x13,0x14,0x10,0x1b,0x70,0x23,0x00,0x03,0x00,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x00,0xff,0x45,0xee,0x50,0xa8,0x54,0x93,0x52,0x20 -+// 22742 壖 ; -+,0x11,0x10,0x13,0x12,0x11,0x7c,0x11,0x10,0x13,0x10,0x11,0x1d,0x61,0x01,0x01,0x01,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x00,0xff,0x40,0xfe,0x52,0x52,0x52,0x52,0x46 -+// 22743 壗 ; -+,0x10,0x11,0x10,0x13,0x10,0x7d,0x10,0x13,0x11,0x11,0x12,0x1f,0x72,0x02,0x02,0x0f,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x54,0x2a,0x2a,0xfe,0x52,0x52,0x52,0xff -+// 22744 壘 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x00,0x3f,0x00,0x00,0x7f,0xf8,0x88,0xf8,0x88,0xf8,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x80,0xfe,0x80,0x80,0xff -+// 22745 壙 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x12,0x1e,0x72,0x22,0x04,0x04,0x09,0x20,0x10,0xff,0x24,0xff,0x24,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x82,0x01 -+// 22746 壚 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x12,0x12,0x12,0x12,0x1e,0x72,0x05,0x05,0x09,0x13,0x20,0x3c,0x20,0xff,0x22,0xfc,0x22,0x1e,0xfc,0xa4,0xfc,0xa4,0xfe,0x4a,0x4a,0xff -+// 22747 壛 ; -+,0x13,0x12,0x13,0x12,0x13,0x7e,0x12,0x12,0x13,0x12,0x12,0x1e,0x72,0x22,0x02,0x02,0xdf,0x51,0xdf,0x51,0xdf,0x41,0x7d,0x89,0x41,0x8d,0x85,0xcd,0x85,0xfd,0x01,0x03 -+// 22748 壜 ; -+,0x10,0x10,0x10,0x10,0x10,0x7d,0x10,0x13,0x12,0x11,0x10,0x1d,0x70,0x23,0x00,0x01,0xfe,0xa2,0x92,0xfe,0x00,0xff,0x10,0xff,0x11,0x96,0x00,0xfe,0x00,0xff,0x82,0xff -+// 22749 壝 ; -+,0x10,0x14,0x12,0x12,0x10,0x7d,0x10,0x16,0x12,0x12,0x12,0x1e,0x72,0x02,0x05,0x08,0x10,0xfe,0x92,0xfe,0x10,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82,0xff,0x00 -+// 22750 壞 ; -+,0x10,0x10,0x17,0x10,0x13,0x7e,0x13,0x11,0x10,0x11,0x12,0x1c,0x71,0x26,0x01,0x00,0x40,0x20,0xff,0x00,0xfe,0x52,0xfe,0x24,0xa8,0x24,0x40,0x94,0x88,0xa7,0xc2,0x80 -+// 22751 壟 ; -+,0x04,0x3f,0x11,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x13,0x00,0x0f,0x00,0x3f,0x20,0xbf,0x20,0xbe,0x02,0x3e,0x20,0x3e,0x20,0x3e,0x21,0x3f,0x80,0xfc,0x80,0xff -+// 22752 壠 ; -+,0x11,0x10,0x17,0x12,0x7a,0x17,0x10,0x13,0x12,0x13,0x12,0x1f,0x72,0x22,0x02,0x02,0x10,0x90,0xdf,0x50,0x9f,0xe1,0x1f,0xd0,0x50,0xdf,0x50,0xdf,0x50,0x51,0x51,0xcf -+// 22753 壡 ; -+,0x04,0x07,0x04,0x3f,0x20,0x4a,0x11,0x6a,0x11,0x3f,0x51,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x3e,0x22,0xe2,0x94,0x08,0x14,0xa3,0x48,0x88,0x7e,0x08,0x08,0x08,0xff,0x00 -+// 22754 壢 ; -+,0x00,0x13,0x12,0x13,0x7e,0x13,0x12,0x13,0x13,0x1e,0x72,0x22,0x04,0x04,0x0b,0x10,0x00,0xff,0x22,0xdc,0x44,0xff,0xee,0x55,0x55,0x44,0x10,0x9e,0x90,0x90,0xff,0x00 -+// 22755 壣 ; -+,0x00,0x17,0x12,0x12,0x13,0x7a,0x12,0x13,0x12,0x1a,0x77,0x22,0x00,0x00,0x00,0x00,0x12,0x92,0xac,0xff,0x92,0xa5,0xff,0x88,0x95,0x95,0xf7,0x95,0x94,0x94,0xa4,0xc4 -+// 22756 壤 ; -+,0x10,0x17,0x11,0x11,0x7c,0x10,0x13,0x10,0x13,0x10,0x1f,0x71,0x22,0x04,0x09,0x00,0x40,0xff,0x54,0xdc,0x88,0x88,0xfe,0x88,0xfe,0x88,0xff,0xac,0x90,0xac,0xc7,0x82 -+// 22757 壥 ; -+,0x13,0x12,0x12,0x12,0x7e,0x12,0x12,0x12,0x13,0x12,0x1e,0x73,0x22,0x04,0x04,0x09,0xff,0x00,0xfe,0x92,0xd6,0xba,0xfe,0x10,0xff,0xaa,0xa5,0x15,0xfe,0x10,0x10,0xff -+// 22758 壦 ; -+,0x10,0x13,0x10,0x11,0x7d,0x11,0x10,0x10,0x11,0x11,0x1e,0x70,0x20,0x00,0x00,0x00,0x84,0xff,0x84,0xee,0x2a,0xee,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 22759 壧 ; -+,0x11,0x11,0x11,0x10,0x13,0x7e,0x12,0x12,0x13,0x12,0x1e,0x72,0x24,0x04,0x09,0x10,0xce,0x4a,0xce,0x00,0xff,0x00,0xe8,0x2f,0xfa,0xaa,0xea,0xa4,0xe4,0xaa,0xf1,0x20 -+// 22760 壨 ; -+,0x1f,0x15,0x1f,0x15,0x1f,0x00,0x3f,0x25,0x3f,0x25,0x3f,0x00,0x1f,0x00,0x00,0x7f,0x3e,0x2a,0x3e,0x2a,0x3e,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x80,0xfe,0x80,0x80,0xff -+// 22761 壩 ; -+,0x11,0x10,0x13,0x14,0x7d,0x12,0x17,0x12,0x13,0x11,0x1f,0x75,0x27,0x01,0x07,0x01,0xfe,0x20,0xff,0x21,0xac,0xa0,0xde,0x92,0x9e,0x12,0xde,0x52,0xd2,0x12,0xd2,0x26 -+// 22762 壪 ; -+,0x11,0x12,0x17,0x12,0x15,0x7f,0x15,0x19,0x13,0x10,0x13,0x1e,0x73,0x20,0x00,0x00,0x22,0x75,0x87,0x72,0x07,0xf0,0x55,0x75,0xfe,0x02,0xfe,0x00,0xfe,0x02,0x02,0x0e -+// 22763 士 ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x80,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfe,0x00 -+// 22764 壬 ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0xfc,0x80,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0xfe,0x00,0x00 -+// 22765 壭 ; -+,0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x80,0x80,0xfe,0x80,0x80,0xfc,0x00,0xfc,0x04,0x04,0x04,0x14,0x08,0x00,0x00,0x00 -+// 22766 壮 ; -+,0x04,0x04,0x04,0x44,0x24,0x37,0x24,0x04,0x0c,0x14,0x64,0x04,0x04,0x05,0x04,0x04,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 22767 壯 ; -+,0x02,0x12,0x12,0x12,0x12,0x3f,0x12,0x02,0x7e,0x12,0x12,0x12,0x22,0x22,0x42,0x00,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 22768 声 ; -+,0x00,0x7f,0x00,0x00,0x3f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x20,0x20,0x40,0x00,0x80,0xff,0x80,0x80,0xfe,0x00,0xfc,0x84,0x84,0xfc,0x04,0x00,0x00,0x00,0x00,0x00 -+// 22769 壱 ; -+,0x00,0x00,0x3f,0x00,0x0f,0x00,0x1f,0x10,0x24,0x04,0x04,0x07,0x04,0x04,0x03,0x00,0x80,0x80,0xfe,0x80,0xfc,0x00,0xfe,0x04,0x08,0x20,0x70,0x80,0x04,0x04,0xfc,0x00 -+// 22770 売 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x00,0x1f,0x10,0x22,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x80,0xfe,0x80,0xfc,0x00,0xff,0x02,0x24,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 22771 壳 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x00,0x1f,0x20,0x40,0x07,0x04,0x04,0x04,0x08,0x30,0x00,0x80,0x80,0xfe,0x80,0xf8,0x00,0xff,0x02,0x04,0xe0,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 22772 壴 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x04,0x02,0x01,0x3f,0x00,0x80,0x80,0xfe,0x80,0xfc,0x00,0x00,0xf8,0x08,0x08,0xf8,0x10,0x20,0x40,0xff,0x00 -+// 22773 壵 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x08,0x08,0x7f,0x08,0x08,0x08,0x3f,0x00,0x80,0x80,0x80,0xff,0x80,0x80,0xfe,0x00,0x08,0x08,0x7f,0x08,0x08,0x08,0x7f,0x00 -+// 22774 壶 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x00,0x3f,0x22,0x42,0x12,0x12,0x0a,0x0a,0x02,0x7f,0x00,0x80,0x80,0xfe,0x80,0xfc,0x00,0xff,0x22,0x24,0x26,0x28,0x28,0x30,0x20,0xff,0x00 -+// 22775 壷 ; -+,0x00,0x3f,0x00,0x00,0x1f,0x00,0x3f,0x21,0x4f,0x09,0x09,0x0f,0x01,0x01,0x3f,0x00,0x40,0xff,0x40,0x40,0xfe,0x00,0xff,0x22,0xfc,0x24,0x24,0xfc,0x20,0x20,0xff,0x00 -+// 22776 壸 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x20,0x4f,0x01,0x11,0x09,0x0d,0x09,0x01,0x3f,0x00,0x80,0xfe,0x80,0xfc,0x00,0xff,0x02,0xfc,0x20,0x28,0x2c,0x28,0x30,0x20,0xfe,0x00 -+// 22777 壹 ; -+,0x00,0x3f,0x00,0x0f,0x00,0x3f,0x40,0x1f,0x00,0x0f,0x08,0x0f,0x04,0x02,0x3f,0x00,0x80,0xfe,0x80,0xfc,0x00,0xff,0x02,0xfc,0x00,0xf8,0x08,0xf8,0x10,0x20,0xff,0x00 -+// 22778 壺 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x00,0x3f,0x42,0x02,0x1e,0x10,0x1e,0x02,0x02,0x3f,0x00,0x80,0x80,0xfe,0x80,0xfc,0x00,0xff,0x22,0x20,0x3c,0x04,0x3c,0x20,0x20,0xff,0x00 -+// 22779 壻 ; -+,0x13,0x10,0x10,0x10,0x7c,0x11,0x12,0x14,0x10,0x10,0x1e,0x70,0x20,0x00,0x00,0x00,0xff,0x22,0xa0,0xbe,0xa0,0x60,0x3f,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84 -+// 22780 壼 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x3f,0x20,0x5f,0x01,0x0f,0x08,0x0f,0x01,0x01,0x7f,0x00,0x80,0xff,0x80,0xfc,0x00,0xff,0x02,0xfc,0x20,0x3c,0x04,0x3c,0x20,0x20,0xff,0x00 -+// 22781 壽 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x1f,0x07,0x00,0x0f,0x00,0x3f,0x00,0x1e,0x12,0x1e,0x00,0x80,0xfe,0x80,0xf8,0x00,0xff,0xfa,0x80,0xfc,0x00,0xff,0x04,0xff,0x24,0x24,0x0c -+// 22782 壾 ; -+,0x08,0x08,0x7f,0x08,0x08,0x3f,0x00,0x3f,0x21,0x3f,0x22,0x12,0x14,0x0f,0x70,0x00,0x00,0x7f,0x40,0x40,0x40,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x40,0x7f,0x00 -+// 22783 壿 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x11,0x11,0x11,0x11,0x1c,0x73,0x20,0x00,0x00,0x00,0x84,0x48,0xff,0x50,0xfe,0x52,0xce,0xfe,0x02,0xfe,0x08,0xff,0x88,0x48,0x48,0x18 -+// 22784 夀 ; -+,0x00,0x3f,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x7f,0x12,0x12,0x1e,0x00,0x80,0xfe,0x80,0xf8,0x80,0xff,0x82,0xf8,0x88,0xf8,0x84,0xff,0x44,0x44,0x14,0x08 -+// 22785 夁 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x3f,0x22,0x3f,0x10,0x17,0x10,0x17,0x14,0x17,0x10,0x1f,0x80,0xff,0x80,0xfc,0x00,0xfe,0x22,0xfe,0x84,0xf4,0x84,0xf4,0x14,0xf4,0x04,0xfc -+// 22786 夂 ; -+,0x02,0x03,0x02,0x07,0x04,0x04,0x0a,0x12,0x21,0x01,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0xfc,0x08,0x08,0x10,0x10,0x20,0x40,0xc0,0x40,0x20,0x18,0x07,0x02 -+// 22787 夃 ; -+,0x00,0x3f,0x04,0x04,0x04,0x04,0x07,0x04,0x07,0x08,0x08,0x10,0x13,0x2c,0x40,0x00,0x00,0xf0,0x10,0x10,0x3e,0x02,0xf2,0x12,0x22,0xa2,0x42,0xa2,0x1a,0x12,0x0a,0x04 -+// 22788 处 ; -+,0x08,0x0c,0x08,0x10,0x1f,0x11,0x31,0x29,0x4a,0x0a,0x04,0x0a,0x11,0x20,0x40,0x00,0x10,0x10,0x10,0x10,0x10,0x18,0x14,0x13,0x12,0x10,0x10,0x10,0x90,0x60,0x1f,0x00 -+// 22789 夅 ; -+,0x02,0x03,0x04,0x0b,0x30,0x01,0x06,0x18,0x6f,0x00,0x08,0x08,0x3f,0x00,0x00,0x00,0x00,0xfc,0x08,0x30,0xc0,0x20,0x98,0x87,0xfa,0x80,0x80,0x80,0xfe,0x80,0x80,0x80 -+// 22790 夆 ; -+,0x02,0x03,0x02,0x05,0x08,0x03,0x0c,0x70,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x00,0x00,0x00,0xf8,0x10,0x20,0xc0,0x60,0x9e,0x84,0xfc,0x80,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 22791 备 ; -+,0x04,0x07,0x04,0x0a,0x11,0x20,0x01,0x06,0x18,0x6f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0xf8,0x10,0x10,0x20,0xc0,0x20,0x18,0x0f,0xfa,0x88,0xf8,0x88,0x88,0xf8,0x08 -+// 22792 夈 ; -+,0x02,0x03,0x04,0x0a,0x31,0x03,0x0c,0x74,0x02,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0xf8,0x10,0x20,0xc0,0x30,0x8f,0x92,0xa0,0xfe,0xc0,0xb0,0x8c,0x87,0x82,0x80 -+// 22793 変 ; -+,0x01,0x00,0x7f,0x02,0x12,0x1a,0x12,0x22,0x03,0x04,0x0a,0x11,0x00,0x03,0x0c,0x70,0x00,0x80,0xff,0x20,0x28,0x26,0x22,0x00,0xf8,0x08,0x10,0x20,0xc0,0x30,0x0e,0x04 -+// 22794 夊 ; -+,0x02,0x03,0x02,0x03,0x02,0x14,0x0c,0x04,0x0a,0x11,0x00,0x00,0x01,0x06,0x18,0x60,0x00,0x00,0x08,0xfc,0x08,0x08,0x10,0x10,0x20,0x20,0xc0,0xa0,0x18,0x07,0x02,0x00 -+// 22795 夋 ; -+,0x01,0x01,0x02,0x0f,0x04,0x02,0x04,0x1a,0x63,0x04,0x0a,0x11,0x00,0x03,0x0c,0x30,0x00,0x90,0x08,0xfc,0x08,0x10,0x0c,0x06,0xfa,0x08,0x10,0x10,0xe0,0x18,0x07,0x02 -+// 22796 夌 ; -+,0x00,0x00,0x1f,0x00,0x3f,0x02,0x05,0x19,0x63,0x06,0x0a,0x11,0x00,0x03,0x0c,0x70,0x80,0x80,0xfc,0x80,0xff,0x20,0x18,0x06,0xfa,0x10,0x10,0x20,0xc0,0x30,0x0f,0x02 -+// 22797 复 ; -+,0x04,0x07,0x08,0x17,0x24,0x07,0x04,0x07,0x02,0x03,0x06,0x09,0x10,0x03,0x0c,0x30,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x08,0x30,0xc0,0x30,0x0f,0x02 -+// 22798 夎 ; -+,0x08,0x08,0x14,0x22,0x00,0x3f,0x00,0x7f,0x02,0x03,0x04,0x0b,0x30,0x03,0x0c,0x70,0x90,0x90,0x90,0xa8,0x80,0xfe,0x80,0xff,0x00,0xf8,0x10,0x20,0xc0,0x70,0x0f,0x02 -+// 22799 夏 ; -+,0x3f,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x07,0x04,0x0b,0x10,0x07,0x38,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xf8,0x10,0x20,0xc0,0x38,0x07 -+// 22800 夐 ; -+,0x04,0x0f,0x30,0x1f,0x10,0x11,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x0f,0x14,0x03,0x7c,0x00,0xfc,0x08,0xfc,0x84,0x44,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xf8,0x10,0xe0,0x1f -+// 22801 夑 ; -+,0x10,0x13,0x14,0x5b,0x30,0x13,0x2a,0x27,0x44,0x07,0x0c,0x12,0x21,0x06,0x18,0x60,0x84,0xe4,0x05,0xd6,0x14,0xe4,0x4a,0xd1,0x20,0xf8,0x10,0x20,0xc0,0x38,0x07,0x02 -+// 22802 夒 ; -+,0x3f,0x09,0x0b,0x2e,0x2b,0x2a,0x2b,0x2e,0x73,0x1a,0x63,0x06,0x09,0x30,0x07,0x78,0xff,0x00,0xde,0x52,0xde,0x50,0xd1,0x4f,0xd0,0x0c,0xf3,0x12,0x20,0xc0,0x30,0x0f -+// 22803 夓 ; -+,0x1b,0x21,0x23,0x3a,0x23,0x3a,0x22,0x3b,0x0a,0x13,0x26,0x09,0x10,0x03,0x0c,0x70,0xee,0x02,0xe2,0x2e,0x22,0xe2,0x22,0xee,0x08,0xf6,0x12,0x20,0xc0,0x30,0x0f,0x02 -+// 22804 夔 ; -+,0x04,0x7f,0x05,0x0b,0x2a,0x2f,0x2a,0x2e,0x7b,0x0a,0x13,0x66,0x09,0x10,0x07,0x38,0x10,0xff,0x10,0xde,0x52,0x5e,0xd0,0x51,0xcf,0x04,0xfb,0x12,0x10,0xe0,0x18,0x07 -+// 22805 夕 ; -+,0x01,0x01,0x01,0x02,0x02,0x06,0x09,0x10,0x00,0x00,0x00,0x00,0x01,0x06,0x38,0x00,0x00,0x00,0xfc,0x04,0x04,0x08,0x08,0x90,0x50,0x20,0x40,0x80,0x00,0x00,0x00,0x00 -+// 22806 外 ; -+,0x04,0x04,0x07,0x08,0x08,0x10,0x29,0x45,0x06,0x02,0x04,0x08,0x10,0x20,0x40,0x00,0x10,0x10,0x90,0x90,0x90,0x98,0x14,0x12,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10 -+// 22807 夗 ; -+,0x08,0x08,0x0f,0x08,0x10,0x10,0x28,0x45,0x05,0x02,0x02,0x04,0x08,0x10,0x20,0x40,0x00,0x00,0xbe,0xa2,0xa2,0xa2,0xa2,0x2a,0x24,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 22808 夘 ; -+,0x08,0x08,0x0f,0x08,0x10,0x10,0x29,0x45,0x02,0x02,0x04,0x08,0x10,0x20,0x40,0x00,0x00,0x3e,0xa2,0xa2,0xa2,0xa2,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20,0x20,0x20 -+// 22809 夙 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x11,0x11,0x12,0x15,0x18,0x10,0x10,0x21,0x22,0x4c,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0xe4,0x24,0x24,0xa4,0x44,0x85,0x05,0x03,0x01,0x00 -+// 22810 多 ; -+,0x00,0x00,0x01,0x02,0x05,0x08,0x01,0x06,0x38,0x01,0x06,0x18,0x00,0x00,0x07,0x38,0x80,0xfc,0x04,0x08,0x90,0x60,0x80,0x40,0xff,0x02,0x84,0x48,0x30,0xc0,0x00,0x00 -+// 22811 夛 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x7f,0x04,0x04,0x07,0x08,0x16,0x21,0x00,0x01,0x06,0x38,0x00,0xf8,0x08,0xf8,0x08,0xff,0x00,0x00,0xfc,0x08,0x10,0xa0,0x40,0x80,0x00,0x00 -+// 22812 夜 ; -+,0x01,0x00,0x7f,0x04,0x06,0x04,0x08,0x19,0x29,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x80,0xff,0x40,0x40,0xfe,0x84,0x44,0x28,0x88,0x50,0x20,0x50,0x88,0x07,0x02 -+// 22813 夝 ; -+,0x10,0x18,0x10,0x1e,0x22,0x22,0x23,0x55,0x14,0x04,0x08,0x08,0x10,0x20,0x41,0x00,0x10,0x10,0x90,0x90,0xff,0x90,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 22814 夞 ; -+,0x08,0x08,0x0f,0x10,0x29,0x05,0x02,0x04,0x18,0x60,0x3f,0x21,0x21,0x3f,0x21,0x00,0x20,0x20,0xb0,0xac,0x26,0x24,0x20,0x20,0x00,0x40,0x4c,0x70,0x42,0x42,0x3e,0x00 -+// 22815 够 ; -+,0x10,0x10,0x1e,0x22,0x42,0x3b,0x2a,0x2a,0x2a,0x2a,0x3a,0x23,0x02,0x14,0x08,0x01,0x20,0x20,0x3f,0x42,0xa4,0x18,0x30,0xd0,0x3f,0x42,0xa2,0x14,0x08,0x10,0x60,0x80 -+// 22816 夠 ; -+,0x08,0x08,0x0f,0x11,0x2a,0x45,0x08,0x74,0x0f,0x11,0x29,0x4a,0x04,0x08,0x10,0x60,0x40,0x60,0x40,0x7e,0x82,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x42,0x02,0x02,0x0a,0x04 -+// 22817 夡 ; -+,0x08,0x0f,0x11,0x12,0x6a,0x0c,0x14,0x67,0x08,0x19,0x65,0x02,0x04,0x08,0x10,0x60,0x08,0x08,0x08,0xff,0x08,0x08,0x7f,0x80,0x80,0x7f,0x41,0x41,0x41,0x7f,0x41,0x00 -+// 22818 夢 ; -+,0x04,0x7f,0x04,0x1f,0x12,0x1f,0x00,0x3f,0x24,0x47,0x0c,0x12,0x21,0x01,0x0e,0x70,0x20,0xff,0x20,0xfc,0x24,0xfc,0x00,0xff,0x02,0xfc,0x08,0x10,0x60,0x80,0x00,0x00 -+// 22819 夣 ; -+,0x00,0x7f,0x04,0x0f,0x00,0x1f,0x12,0x1f,0x00,0x3f,0x44,0x07,0x0c,0x32,0x07,0x38,0x80,0xff,0x10,0xfc,0x08,0xfc,0x24,0xfc,0x00,0xff,0x02,0xf8,0x30,0xc0,0x00,0x00 -+// 22820 夤 ; -+,0x02,0x07,0x1a,0x01,0x07,0x3f,0x20,0x4f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x00,0xf8,0x10,0x60,0x80,0xff,0x01,0xfa,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x30,0x0e -+// 22821 夥 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x04,0x7f,0x0e,0x0d,0x14,0x24,0x44,0x04,0x05,0x10,0x90,0x9f,0xa2,0xd4,0x98,0xa0,0x50,0x9f,0x21,0x52,0x8c,0x08,0x10,0x60,0x80 -+// 22822 夦 ; -+,0x11,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x2a,0x2d,0x28,0x30,0x3f,0x20,0x00,0x10,0x10,0xbf,0x42,0xa4,0x18,0x20,0x50,0x9f,0x21,0x92,0x92,0x0c,0x88,0x10,0x60 -+// 22823 大 ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x80,0x80,0x80,0x80,0x80,0xff,0x80,0x40,0x40,0x20,0x20,0x10,0x08,0x0c,0x07,0x02 -+// 22824 夨 ; -+,0x04,0x06,0x04,0x0f,0x08,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x40,0xe0,0x40,0x40,0x40,0xff,0x40,0xa0,0xa0,0x10,0x18,0x0c,0x07,0x02 -+// 22825 天 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0xfe,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x40,0x20,0x10,0x0c,0x07,0x02,0x00 -+// 22826 太 ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x40,0x20,0x10,0x88,0x4c,0x66,0x43,0x02 -+// 22827 夫 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x20,0x80,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x80,0x40,0x20,0x10,0x18,0x0c,0x07,0x02 -+// 22828 夬 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x80,0x80,0x80,0xf8,0x88,0x88,0x88,0x88,0xff,0x80,0x40,0x20,0x18,0x0c,0x07,0x02 -+// 22829 夭 ; -+,0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x7c,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x40,0x20,0x10,0x08,0x0c,0x07,0x02 -+// 22830 央 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x7f,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x80,0x80,0x80,0xf8,0x88,0x88,0x88,0x88,0xff,0x80,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 22831 夯 ; -+,0x00,0x00,0x3f,0x01,0x01,0x02,0x04,0x08,0x10,0x2f,0x00,0x01,0x01,0x02,0x04,0x08,0x80,0x80,0xff,0x40,0x20,0x10,0x98,0x8c,0x87,0xfa,0x88,0x08,0x08,0x08,0x28,0x10 -+// 22832 夰 ; -+,0x00,0x00,0x3f,0x01,0x01,0x02,0x04,0x0a,0x12,0x22,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x80,0xff,0x40,0x20,0x10,0x08,0x17,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 22833 失 ; -+,0x00,0x04,0x04,0x08,0x0f,0x10,0x20,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x80,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x80,0x40,0x20,0x10,0x18,0x0e,0x04 -+// 22834 夲 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xff,0x20,0x10,0x0c,0x87,0x82,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80 -+// 22835 夳 ; -+,0x00,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x6f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x80,0x80,0x80,0xfe,0x40,0x20,0x10,0x0c,0xf7,0x02,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 22836 头 ; -+,0x00,0x08,0x06,0x02,0x08,0x06,0x04,0x00,0x7f,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xff,0x40,0xa0,0x10,0x18,0x0c,0x06,0x04 -+// 22837 夵 ; -+,0x00,0x00,0x3f,0x01,0x02,0x02,0x04,0x18,0x64,0x06,0x0c,0x08,0x10,0x20,0x02,0x01,0x80,0x80,0xff,0x40,0x20,0x10,0x8c,0x87,0x82,0x90,0x88,0x84,0x84,0x80,0x80,0x00 -+// 22838 夶 ; -+,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x0a,0x09,0x11,0x10,0x20,0x41,0x02,0x04,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x28,0x28,0x48,0x44,0x86,0x03,0x02,0x00 -+// 22839 夷 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x00,0x01,0x02,0x04,0x08,0x30,0x80,0xff,0x80,0xfc,0x84,0x84,0xfc,0x80,0x80,0xfe,0x82,0x4a,0x24,0x18,0x0e,0x04 -+// 22840 夸 ; -+,0x01,0x01,0x3f,0x02,0x04,0x0f,0x10,0x6f,0x02,0x02,0x07,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x08,0xfc,0x07,0xfa,0x00,0x08,0xfc,0x08,0x08,0x08,0x50,0x20 -+// 22841 夹 ; -+,0x00,0x00,0x00,0x3f,0x00,0x08,0x06,0x04,0x7f,0x01,0x01,0x02,0x04,0x08,0x10,0x60,0x80,0x80,0x80,0xfe,0x90,0x98,0x90,0xa0,0xff,0x80,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 22842 夺 ; -+,0x00,0x00,0x3f,0x01,0x01,0x02,0x04,0x18,0x6f,0x04,0x02,0x03,0x02,0x00,0x00,0x00,0x80,0x80,0xff,0x40,0x20,0x10,0x0e,0x14,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 22843 夻 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x08,0x10,0x6f,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0xfe,0x40,0x20,0x10,0x0c,0x07,0xfa,0x08,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 22844 夼 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x70,0x28,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x80,0x80,0xff,0x20,0x18,0x0f,0x02,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x08 -+// 22845 夽 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x08,0x17,0x60,0x00,0x3f,0x01,0x02,0x04,0x0f,0x04,0x80,0x80,0xff,0x40,0x20,0x10,0x0c,0xf3,0x00,0x00,0xff,0x10,0x08,0xfc,0x88,0x00 -+// 22846 夾 ; -+,0x00,0x00,0x00,0x3f,0x08,0x08,0x08,0x14,0x22,0x40,0x01,0x01,0x02,0x04,0x18,0x60,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x94,0xa2,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 22847 夿 ; -+,0x01,0x01,0x3f,0x02,0x04,0x18,0x6f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0xff,0x20,0x18,0x07,0xfa,0x88,0x88,0x88,0xf8,0x00,0x02,0x03,0xfe,0x00 -+// 22848 奀 ; -+,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0xff,0xa0,0x90,0x8c,0x84,0x80,0x00,0x80,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 22849 奁 ; -+,0x01,0x01,0x7f,0x02,0x04,0x0f,0x18,0x2a,0x09,0x08,0x08,0x09,0x0e,0x08,0x1f,0x08,0x00,0x00,0xff,0x20,0x10,0xfc,0x07,0x22,0x30,0x40,0xa0,0x18,0x10,0x00,0xfe,0x00 -+// 22850 奂 ; -+,0x02,0x02,0x07,0x08,0x10,0x2f,0x08,0x08,0x08,0x7f,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xf0,0x20,0x40,0xfc,0x84,0x84,0x84,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 22851 奃 ; -+,0x00,0x00,0x7f,0x01,0x02,0x04,0x08,0x1f,0x28,0x0f,0x08,0x08,0x09,0x0a,0x1c,0x08,0x80,0x80,0xff,0x20,0x10,0x08,0xf7,0x42,0x40,0xfe,0x40,0x20,0x20,0x92,0x4a,0x44 -+// 22852 奄 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x00,0x00,0x80,0x80,0xff,0x40,0x20,0x98,0x87,0xfa,0x88,0xf8,0x88,0xf8,0x8a,0x82,0x7e,0x00 -+// 22853 奅 ; -+,0x01,0x01,0x3f,0x02,0x04,0x18,0x63,0x1c,0x11,0x11,0x13,0x1d,0x12,0x04,0x08,0x10,0x00,0x00,0xff,0x20,0x18,0x07,0x82,0x3c,0x24,0x24,0x24,0x34,0x28,0x20,0x20,0x20 -+// 22854 奆 ; -+,0x00,0x00,0x7f,0x01,0x02,0x04,0x0f,0x18,0x68,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x80,0x80,0xff,0x20,0x10,0x08,0xff,0x02,0x00,0xf8,0x08,0x08,0xf8,0x00,0x00,0xfe -+// 22855 奇 ; -+,0x00,0x00,0x1f,0x00,0x01,0x06,0x18,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x80,0x80,0xfc,0x80,0x60,0x1c,0x08,0xff,0x08,0x88,0x88,0x88,0x88,0x88,0x28,0x10 -+// 22856 奈 ; -+,0x00,0x00,0x7f,0x01,0x02,0x04,0x0f,0x30,0x40,0x1f,0x00,0x04,0x0c,0x30,0x42,0x01,0x80,0x80,0xff,0x40,0x20,0x18,0xf7,0x02,0x00,0xfe,0x80,0x90,0x8c,0x86,0x84,0x00 -+// 22857 奉 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x01,0x7f,0x02,0x04,0x1f,0x60,0x00,0x1f,0x00,0x00,0x00,0x80,0xfe,0x80,0xfc,0x80,0x00,0xff,0x10,0x88,0xf7,0x82,0x80,0xfc,0x80,0x80,0x80 -+// 22858 奊 ; -+,0x00,0x13,0x10,0x17,0x10,0x17,0x10,0x1f,0x10,0x1f,0x00,0x3f,0x00,0x03,0x0c,0x30,0x40,0xf8,0x40,0xfe,0x40,0xfc,0x40,0xfe,0x00,0xc0,0x40,0xff,0xa0,0x18,0x07,0x02 -+// 22859 奋 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x08,0x1f,0x68,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x80,0x80,0xff,0x40,0x20,0x10,0x08,0xff,0x8a,0x88,0xf8,0x88,0x88,0x88,0xf8,0x08 -+// 22860 奌 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x80,0x80,0xfe,0x80,0xf8,0x08,0x08,0x08,0xf8,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 22861 奍 ; -+,0x00,0x08,0x04,0x00,0x1f,0x01,0x3f,0x02,0x04,0x1a,0x62,0x02,0x04,0x04,0x08,0x10,0x88,0x8c,0x90,0x80,0xfc,0x00,0xff,0x10,0x0c,0x27,0x22,0x20,0x20,0x20,0x20,0x20 -+// 22862 奎 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x1f,0x60,0x1f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x80,0x80,0xfe,0x20,0x90,0x88,0xf7,0x82,0xfc,0x80,0x80,0xf8,0x80,0x80,0xfe,0x00 -+// 22863 奏 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x01,0x02,0x07,0x18,0x60,0x0f,0x01,0x02,0x0c,0x30,0x80,0xfe,0x80,0xfc,0x80,0xff,0x20,0x10,0xfc,0x83,0x82,0xfc,0x20,0x18,0x0e,0x04 -+// 22864 奐 ; -+,0x02,0x03,0x04,0x08,0x1f,0x68,0x08,0x09,0x0a,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0xf8,0x10,0x20,0xfc,0x84,0x84,0x44,0x24,0x80,0xff,0x40,0x20,0x18,0x0e,0x04 -+// 22865 契 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x04,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x7e,0x92,0x12,0x92,0x12,0xa2,0x2e,0x44,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 22866 奒 ; -+,0x01,0x01,0x3f,0x02,0x05,0x08,0x3f,0x41,0x02,0x07,0x00,0x03,0x0c,0x30,0x03,0x1c,0x00,0x00,0xff,0x20,0x10,0x88,0xff,0x02,0x20,0xe8,0xcc,0x18,0x30,0xc8,0x06,0x04 -+// 22867 奓 ; -+,0x01,0x01,0x3f,0x02,0x05,0x19,0x62,0x0e,0x31,0x06,0x38,0x03,0x0c,0x00,0x03,0x1c,0x00,0x00,0xfe,0x20,0x10,0xfc,0x27,0x42,0xa0,0x7e,0x84,0x48,0x30,0x60,0x80,0x00 -+// 22868 奔 ; -+,0x01,0x01,0x3f,0x02,0x04,0x08,0x17,0x60,0x04,0x04,0x7f,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0xff,0x20,0x90,0x8c,0xf3,0x82,0x90,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 22869 奕 ; -+,0x01,0x00,0x3f,0x02,0x0a,0x12,0x64,0x08,0x10,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0x80,0xff,0x20,0x28,0x26,0xa4,0x40,0x80,0x80,0xff,0x40,0x20,0x18,0x0e,0x04 -+// 22870 奖 ; -+,0x02,0x22,0x12,0x0a,0x02,0x0b,0x12,0x22,0x02,0x7f,0x00,0x01,0x02,0x04,0x18,0x60,0x20,0x3f,0x42,0x42,0xb4,0x28,0x10,0x20,0x80,0xff,0x80,0x40,0x20,0x18,0x07,0x02 -+// 22871 套 ; -+,0x01,0x01,0x3f,0x02,0x07,0x1c,0x67,0x04,0x07,0x04,0x7f,0x02,0x04,0x08,0x1f,0x00,0x00,0x00,0xff,0x20,0xf0,0x0c,0xf7,0x02,0xf0,0x00,0xff,0x00,0x10,0xf8,0x8c,0x08 -+// 22872 奘 ; -+,0x01,0x11,0x11,0x1f,0x01,0x3f,0x11,0x11,0x21,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x7e,0x00,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 22873 奙 ; -+,0x01,0x02,0x04,0x0f,0x01,0x7f,0x02,0x04,0x1f,0x64,0x07,0x04,0x07,0x00,0x00,0x00,0x00,0x20,0x18,0xfc,0x08,0xff,0x90,0x88,0xff,0x8a,0xf8,0x88,0xf8,0x82,0x83,0x7e -+// 22874 奚 ; -+,0x00,0x1f,0x09,0x04,0x02,0x04,0x0f,0x03,0x04,0x0f,0x00,0x3f,0x01,0x06,0x18,0x60,0x7c,0x90,0x18,0xb0,0xa0,0x70,0xc0,0x08,0x7c,0xc8,0x80,0xfe,0x40,0x30,0x0f,0x02 -+// 22875 奛 ; -+,0x00,0x00,0x3f,0x01,0x03,0x0c,0x30,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x00,0x01,0x80,0x80,0xff,0xa0,0x18,0x0f,0x06,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x84,0x94,0x08 -+// 22876 奜 ; -+,0x02,0x02,0x3e,0x02,0x3e,0x02,0x3e,0x02,0x02,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x20,0x20,0x3e,0x20,0x3e,0x20,0x3e,0x20,0xa0,0x80,0xff,0x40,0x20,0x18,0x0e,0x04 -+// 22877 奝 ; -+,0x00,0x00,0x3f,0x03,0x0c,0x1f,0x68,0x0b,0x08,0x0f,0x08,0x0b,0x0a,0x13,0x10,0x20,0x80,0x80,0xff,0x20,0x18,0xfe,0x85,0xf4,0x84,0xfc,0x04,0xf4,0x14,0xf4,0x14,0x08 -+// 22878 奞 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x1c,0x67,0x08,0x1f,0x28,0x0f,0x08,0x08,0x0f,0x08,0x80,0x80,0xfe,0x40,0x30,0x8c,0x47,0xfa,0x40,0xf8,0x40,0xf8,0x40,0x40,0xfc,0x00 -+// 22879 奟 ; -+,0x00,0x00,0x7f,0x01,0x06,0x1f,0x69,0x0f,0x09,0x09,0x0f,0x09,0x11,0x11,0x25,0x42,0x80,0x80,0xff,0x60,0x18,0x3f,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x44,0x54,0x88 -+// 22880 奠 ; -+,0x04,0x02,0x3f,0x01,0x0f,0x0a,0x0c,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x06,0x18,0x60,0x08,0x10,0xff,0x40,0xfc,0x44,0x3c,0xfc,0x04,0xfc,0x80,0xff,0x60,0x18,0x07,0x02 -+// 22881 奡 ; -+,0x3f,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x7f,0x08,0x12,0x22,0x04,0x08,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0xff,0x10,0x2e,0x24,0x20,0x20 -+// 22882 奢 ; -+,0x01,0x3f,0x02,0x04,0x18,0x67,0x00,0x7f,0x01,0x07,0x1c,0x67,0x04,0x04,0x07,0x04,0x00,0xff,0x40,0x30,0x8c,0xf3,0x98,0xff,0x80,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 22883 奣 ; -+,0x00,0x3f,0x01,0x7f,0x02,0x04,0x1e,0x72,0x1e,0x12,0x12,0x1e,0x12,0x00,0x01,0x02,0x00,0xfe,0x00,0xff,0x10,0x08,0x7f,0x44,0x7c,0x44,0x7c,0x44,0x84,0x84,0x14,0x08 -+// 22884 奤 ; -+,0x01,0x01,0x7f,0x02,0x04,0x08,0x1f,0x61,0x0f,0x09,0x09,0x09,0x09,0x09,0x0f,0x08,0x00,0x00,0xff,0x20,0x10,0x08,0xff,0x02,0xfc,0x24,0xe4,0x24,0xe4,0x24,0xfc,0x04 -+// 22885 奥 ; -+,0x01,0x1f,0x10,0x14,0x12,0x1f,0x11,0x12,0x14,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0xfc,0x84,0x94,0xa4,0xfc,0xc4,0xb4,0x94,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 22886 奦 ; -+,0x00,0x3f,0x0a,0x04,0x7f,0x0d,0x16,0x24,0x54,0x09,0x01,0x3f,0x02,0x04,0x18,0x60,0x40,0x7e,0xa4,0x98,0x24,0x53,0xfc,0x24,0x24,0x54,0x48,0xfe,0x40,0x30,0x0e,0x04 -+// 22887 奧 ; -+,0x02,0x04,0x1f,0x10,0x17,0x10,0x17,0x11,0x12,0x14,0x01,0x7f,0x02,0x04,0x08,0x30,0x00,0x00,0xfc,0x64,0x84,0x84,0xf4,0xc4,0xa4,0x94,0x00,0xff,0x40,0x30,0x1c,0x08 -+// 22888 奨 ; -+,0x04,0x05,0x25,0x14,0x04,0x1f,0x65,0x04,0x04,0x04,0x3f,0x00,0x01,0x02,0x0c,0x30,0x1e,0xe2,0x22,0x94,0x04,0xff,0x04,0xc4,0x54,0x88,0xff,0x80,0x40,0x30,0x0e,0x04 -+// 22889 奩 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0f,0x18,0x69,0x09,0x09,0x08,0x0b,0x0a,0x0b,0x08,0x0f,0x80,0x80,0xff,0x08,0x04,0xff,0x02,0xf8,0x08,0xf8,0x00,0xde,0x52,0xde,0x00,0xfe -+// 22890 奪 ; -+,0x01,0x3f,0x02,0x06,0x0a,0x17,0x6c,0x17,0x24,0x07,0x04,0x3f,0x04,0x03,0x02,0x00,0x00,0xff,0x20,0x90,0x4c,0xfb,0x40,0xf0,0x40,0xfc,0x10,0xff,0x10,0x10,0x50,0x20 -+// 22891 奫 ; -+,0x01,0x3f,0x02,0x04,0x18,0x62,0x12,0x0b,0x22,0x13,0x0a,0x73,0x12,0x14,0x14,0x18,0x00,0xfe,0x20,0x18,0x07,0x56,0x54,0xdc,0x04,0xfc,0x04,0xdc,0x54,0x54,0x54,0x04 -+// 22892 奬 ; -+,0x02,0x12,0x12,0x1e,0x02,0x3e,0x13,0x12,0x22,0x42,0x00,0x3f,0x01,0x02,0x0c,0x30,0x20,0x3e,0x62,0x94,0x38,0xc4,0xff,0x04,0x44,0x54,0x88,0xff,0x60,0x18,0x07,0x02 -+// 22893 奭 ; -+,0x00,0x00,0x7f,0x00,0x3e,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x01,0x02,0x04,0x18,0x60,0x80,0x80,0xff,0x80,0xbe,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0x40,0x30,0x08,0x07,0x02 -+// 22894 奮 ; -+,0x02,0x02,0x3f,0x04,0x1a,0x67,0x08,0x1f,0x08,0x0f,0x08,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x00,0xff,0x10,0x8c,0xf7,0x82,0xf0,0x80,0xf8,0x00,0xfc,0x84,0xfc,0x84,0xfc -+// 22895 奯 ; -+,0x00,0x7f,0x01,0x02,0x0c,0x74,0x04,0x7f,0x20,0x2f,0x22,0x2a,0x2a,0x31,0x23,0x4c,0x80,0xff,0x40,0x30,0x8c,0xf3,0xa4,0xff,0x20,0xa2,0x12,0x94,0xc8,0x99,0x25,0x42 -+// 22896 奰 ; -+,0x0f,0x09,0x09,0x0f,0x00,0x7f,0x55,0x55,0x7f,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0xf8,0x48,0x48,0xf8,0x00,0x7f,0x55,0x55,0x7f,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 22897 奱 ; -+,0x11,0x10,0x2b,0x78,0x15,0x3e,0x01,0x55,0x55,0x00,0x3f,0x00,0x01,0x06,0x18,0x60,0x04,0x84,0xea,0x1f,0xea,0x1f,0xe1,0x2a,0xea,0x80,0xff,0x80,0x60,0x18,0x07,0x02 -+// 22898 奲 ; -+,0x08,0x08,0x7e,0x14,0x2a,0x5d,0x08,0x7f,0x10,0x3f,0x51,0x1f,0x11,0x11,0x1f,0x00,0x00,0xe7,0xa5,0xe7,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x08,0xff,0x08,0x08,0x08,0x08 -+// 22899 女 ; -+,0x01,0x01,0x01,0x02,0x02,0x7f,0x04,0x04,0x08,0x06,0x01,0x00,0x01,0x06,0x18,0x60,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0xc0,0xe0,0x18,0x0c,0x06,0x04 -+// 22900 奴 ; -+,0x08,0x08,0x08,0x7f,0x09,0x09,0x11,0x11,0x22,0x12,0x0a,0x04,0x0b,0x12,0x60,0x03,0x00,0x00,0xfe,0x42,0x42,0x42,0x44,0x24,0x28,0x28,0x10,0x10,0x28,0x46,0x83,0x02 -+// 22901 奵 ; -+,0x08,0x08,0x08,0x08,0x7f,0x11,0x11,0x12,0x22,0x32,0x0c,0x06,0x0a,0x11,0x21,0x40,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x28,0x10 -+// 22902 奶 ; -+,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x24,0x14,0x08,0x0c,0x12,0x21,0x42,0x04,0x00,0xfc,0x44,0x48,0x48,0x50,0x5e,0x42,0x42,0x42,0x42,0x82,0x82,0x0a,0x04,0x00 -+// 22903 奷 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x23,0x22,0x24,0x14,0x08,0x14,0x13,0x22,0x40,0x00,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 22904 奸 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x13,0x12,0x22,0x14,0x08,0x14,0x22,0x42,0x00,0x04,0xfe,0x10,0x10,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 22905 她 ; -+,0x00,0x10,0x10,0x10,0x7e,0x13,0x12,0x22,0x22,0x24,0x14,0x08,0x14,0x23,0x42,0x00,0x10,0x50,0x50,0x52,0x5f,0xf2,0x52,0x52,0x52,0x5a,0x54,0x50,0x41,0x41,0x3f,0x00 -+// 22906 奺 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x22,0x22,0x24,0x14,0x08,0x14,0x22,0x42,0x01,0x20,0x20,0x40,0x7c,0x44,0x84,0x88,0x08,0x08,0x14,0x14,0x22,0x22,0x43,0x82,0x00 -+// 22907 奻 ; -+,0x08,0x08,0x08,0x10,0x7e,0x12,0x12,0x22,0x22,0x24,0x14,0x08,0x14,0x13,0x22,0x40,0x10,0x10,0x10,0x20,0xff,0x22,0x22,0x42,0x44,0x44,0x24,0x18,0x14,0x23,0x41,0x80 -+// 22908 奼 ; -+,0x08,0x08,0x08,0x10,0x7e,0x12,0x12,0x13,0x24,0x24,0x18,0x0c,0x12,0x22,0x40,0x00,0x00,0x0e,0xf0,0x20,0x20,0x20,0x27,0xf8,0x20,0x20,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 22909 好 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x13,0x22,0x32,0x0c,0x04,0x0a,0x13,0x22,0x40,0x00,0xfe,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 22910 奾 ; -+,0x10,0x10,0x10,0x7e,0x12,0x22,0x22,0x22,0x14,0x14,0x08,0x14,0x12,0x23,0x42,0x00,0x08,0x08,0x08,0x08,0x08,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x7f,0x01,0x00 -+// 22911 奿 ; -+,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x52,0x32,0x1a,0x16,0x12,0x22,0x22,0x41,0x00,0x20,0x20,0x20,0xfe,0x44,0x44,0x44,0x48,0x28,0x10,0x28,0x46,0x85,0x01,0xff,0x00 -+// 22912 妀 ; -+,0x00,0x00,0x3c,0x04,0x05,0x04,0x04,0x3c,0x20,0x20,0x20,0x24,0x28,0x30,0x20,0x01,0x20,0x20,0x20,0x20,0xff,0x44,0x44,0x44,0x84,0x48,0x28,0x10,0x28,0x44,0x86,0x04 -+// 22913 妁 ; -+,0x08,0x08,0x08,0x10,0x7e,0x12,0x13,0x22,0x24,0x24,0x18,0x08,0x14,0x23,0x42,0x00,0x40,0x60,0x40,0x7e,0x82,0x82,0x42,0x22,0x32,0x1a,0x12,0x02,0x02,0x12,0x0a,0x04 -+// 22914 如 ; -+,0x08,0x08,0x0c,0x08,0x7f,0x11,0x11,0x11,0x11,0x12,0x0a,0x04,0x0a,0x11,0x21,0x40,0x00,0x00,0x00,0x3f,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x3f,0xa1,0x21,0x00 -+// 22915 妃 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x22,0x22,0x24,0x14,0x08,0x14,0x22,0x42,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xfe,0x82,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 22916 妄 ; -+,0x01,0x00,0x7f,0x08,0x08,0x0f,0x01,0x01,0x7f,0x02,0x04,0x07,0x00,0x03,0x0c,0x30,0x00,0x80,0xff,0x00,0x00,0xfc,0x00,0x00,0xff,0x10,0x10,0x20,0xc0,0x30,0x0e,0x04 -+// 22917 妅 ; -+,0x08,0x08,0x09,0x10,0x7e,0x12,0x12,0x22,0x22,0x24,0x14,0x08,0x08,0x15,0x22,0x40,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 22918 妆 ; -+,0x04,0x04,0x04,0x24,0x17,0x14,0x04,0x05,0x0d,0x74,0x24,0x04,0x04,0x05,0x06,0x04,0x40,0x60,0x40,0x40,0xff,0x84,0x84,0x08,0x08,0xd0,0x30,0x48,0x84,0x06,0x02,0x00 -+// 22919 妇 ; -+,0x08,0x08,0x08,0x08,0x7f,0x09,0x11,0x12,0x22,0x12,0x0c,0x04,0x0a,0x11,0x21,0x40,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x7e,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 22920 妈 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x14,0x24,0x19,0x0c,0x12,0x23,0x42,0x00,0x00,0xfc,0x04,0x44,0x44,0x44,0x44,0x7f,0x01,0x01,0xfd,0x01,0x01,0x01,0x0a,0x04 -+// 22921 妉 ; -+,0x08,0x08,0x08,0x08,0x7e,0x13,0x12,0x12,0x24,0x14,0x08,0x0c,0x12,0x20,0x41,0x02,0x10,0x10,0x10,0xff,0x91,0x12,0x10,0x10,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 22922 妊 ; -+,0x08,0x0c,0x08,0x7e,0x12,0x12,0x12,0x13,0x24,0x24,0x18,0x08,0x14,0x22,0x42,0x00,0x00,0x07,0xf8,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 22923 妋 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x22,0x22,0x14,0x0c,0x0a,0x13,0x12,0x20,0x41,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 22924 妌 ; -+,0x08,0x0c,0x08,0x11,0x7e,0x12,0x12,0x22,0x25,0x14,0x08,0x0c,0x12,0x20,0x41,0x02,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 22925 妍 ; -+,0x08,0x09,0x08,0x08,0x7e,0x12,0x13,0x24,0x24,0x14,0x08,0x16,0x14,0x21,0x41,0x02,0x00,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 22926 妎 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x13,0x12,0x24,0x14,0x08,0x08,0x14,0x22,0x42,0x01,0x20,0x20,0x50,0x48,0x84,0x83,0x4a,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 22927 妏 ; -+,0x08,0x08,0x08,0x11,0x7e,0x12,0x12,0x22,0x24,0x14,0x08,0x14,0x13,0x22,0x40,0x01,0x20,0x10,0x00,0xff,0x44,0x44,0x44,0x44,0x28,0x28,0x10,0x10,0x28,0x44,0x83,0x02 -+// 22928 妐 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x23,0x22,0x14,0x14,0x08,0x14,0x21,0x40,0x00,0x00,0x48,0x68,0x48,0x48,0x84,0xa4,0x36,0x23,0x22,0x40,0x44,0x82,0xff,0x82,0x00 -+// 22929 妑 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x22,0x22,0x24,0x14,0x08,0x14,0x12,0x22,0x40,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 22930 妒 ; -+,0x08,0x08,0x08,0x08,0x7f,0x12,0x12,0x22,0x22,0x1a,0x04,0x0a,0x12,0x20,0x41,0x02,0x20,0x10,0x08,0x7f,0x41,0x41,0x41,0x7f,0x41,0x40,0x40,0x40,0x80,0x80,0x00,0x00 -+// 22931 妓 ; -+,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x24,0x14,0x08,0x08,0x14,0x22,0x40,0x03,0x10,0x10,0x10,0xfe,0x10,0x10,0xfc,0x44,0x44,0x44,0x28,0x28,0x10,0x28,0xc7,0x02 -+// 22932 妔 ; -+,0x08,0x08,0x08,0x09,0x7e,0x12,0x12,0x12,0x22,0x24,0x14,0x08,0x14,0x22,0x41,0x02,0x40,0x30,0x20,0xfe,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 22933 妕 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x22,0x14,0x08,0x0c,0x12,0x23,0x42,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x49,0x08,0x08,0x08,0x08,0x08 -+// 22934 妖 ; -+,0x08,0x08,0x09,0x08,0x7e,0x12,0x13,0x12,0x24,0x14,0x08,0x14,0x12,0x22,0x41,0x02,0x00,0x1e,0xe0,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x50,0x50,0x88,0x84,0x07,0x02 -+// 22935 妗 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x13,0x22,0x24,0x14,0x08,0x14,0x12,0x22,0x40,0x00,0x20,0x20,0x50,0x48,0x84,0xa3,0x12,0x10,0x00,0xfe,0x04,0x08,0x08,0x10,0x10,0x00 -+// 22936 妘 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x13,0x14,0x24,0x24,0x18,0x0c,0x12,0x21,0x40,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x20,0x30,0x20,0x44,0x42,0x9f,0xf3,0x82,0x00 -+// 22937 妙 ; -+,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x22,0x25,0x14,0x0c,0x0a,0x13,0x22,0x40,0x00,0x10,0x10,0x10,0x14,0x92,0xd1,0x92,0x93,0x12,0x14,0x04,0x08,0x10,0x20,0x40,0x80 -+// 22938 妚 ; -+,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x24,0x24,0x19,0x0c,0x12,0x23,0x42,0x00,0x00,0xff,0x10,0x10,0x10,0x38,0x34,0x52,0x53,0x92,0x10,0x10,0x10,0x10,0x10,0x10 -+// 22939 妛 ; -+,0x00,0x10,0x10,0x1f,0x00,0x00,0x7f,0x02,0x02,0x3f,0x04,0x0f,0x00,0x03,0x0c,0x30,0x80,0x84,0x84,0xfc,0x80,0x80,0xff,0x00,0x00,0xff,0x10,0x20,0xc0,0x30,0x0e,0x04 -+// 22940 妜 ; -+,0x08,0x08,0x08,0x09,0x7e,0x12,0x12,0x13,0x24,0x34,0x0c,0x0b,0x12,0x20,0x41,0x02,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x50,0x48,0x8c,0x87,0x02,0x00 -+// 22941 妝 ; -+,0x02,0x22,0x22,0x22,0x3f,0x02,0x02,0x7e,0x12,0x12,0x12,0x12,0x22,0x22,0x43,0x02,0x20,0x30,0x20,0x20,0xff,0x44,0x44,0x44,0x88,0x48,0x30,0x28,0x44,0x86,0x02,0x00 -+// 22942 妞 ; -+,0x08,0x09,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x14,0x08,0x08,0x14,0x23,0x42,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xfc,0x44,0x44,0x44,0x44,0x44,0xff,0x00,0x00 -+// 22943 妟 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x0a,0x02,0x7f,0x02,0x04,0x06,0x01,0x06,0x18,0x60,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00,0xff,0x10,0x10,0x20,0xc0,0x30,0x0e,0x04 -+// 22944 妠 ; -+,0x10,0x10,0x10,0x15,0x7f,0x15,0x15,0x15,0x25,0x25,0x19,0x0d,0x17,0x25,0x41,0x01,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x11,0x29,0x45,0x83,0x01,0x01,0x01,0x05,0x02 -+// 22945 妡 ; -+,0x08,0x08,0x08,0x08,0x7f,0x12,0x12,0x12,0x24,0x14,0x08,0x14,0x12,0x22,0x40,0x01,0x00,0x0e,0x70,0x40,0x40,0x40,0x7f,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 22946 妢 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x13,0x22,0x24,0x14,0x08,0x14,0x12,0x20,0x40,0x01,0x48,0x48,0x48,0x84,0x84,0x83,0x02,0xfe,0x24,0x24,0x24,0x44,0x44,0x84,0x94,0x08 -+// 22947 妣 ; -+,0x08,0x08,0x08,0x7e,0x0a,0x12,0x12,0x14,0x24,0x14,0x08,0x14,0x12,0x21,0x40,0x00,0x08,0x88,0x88,0x88,0x88,0x89,0xee,0x88,0x88,0x88,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 22948 妤 ; -+,0x08,0x09,0x08,0x08,0x7e,0x12,0x13,0x12,0x24,0x24,0x18,0x08,0x14,0x22,0x42,0x00,0x00,0xfe,0x04,0x48,0x30,0x10,0xff,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 22949 妥 ; -+,0x00,0x00,0x1f,0x09,0x04,0x04,0x02,0x7f,0x02,0x04,0x0c,0x03,0x00,0x03,0x0c,0x30,0x08,0xfc,0x10,0x18,0xd0,0xa0,0x00,0xff,0x10,0x10,0x20,0x40,0xe0,0x18,0x06,0x02 -+// 22950 妦 ; -+,0x08,0x08,0x08,0x09,0x7e,0x12,0x12,0x22,0x24,0x14,0x09,0x08,0x14,0x23,0x42,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 22951 妧 ; -+,0x08,0x08,0x08,0x10,0x7e,0x13,0x12,0x12,0x24,0x34,0x08,0x0c,0x12,0x20,0x41,0x02,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 22952 妨 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x14,0x0c,0x0a,0x12,0x21,0x42,0x00,0x20,0x18,0x10,0xff,0x20,0x20,0x3e,0x22,0x22,0x22,0x42,0x42,0x82,0x14,0x08,0x00 -+// 22953 妩 ; -+,0x10,0x19,0x10,0x10,0x7e,0x13,0x12,0x24,0x24,0x14,0x08,0x14,0x26,0x45,0x02,0x04,0x00,0xfe,0x20,0x20,0x20,0xff,0x50,0x50,0x50,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 22954 妪 ; -+,0x08,0x08,0x08,0x10,0x7e,0x12,0x12,0x22,0x24,0x14,0x08,0x0c,0x12,0x22,0x40,0x00,0x00,0xff,0x80,0x84,0xc6,0xa4,0x94,0x88,0x88,0x94,0x94,0xa2,0xc2,0x80,0xff,0x00 -+// 22955 妫 ; -+,0x10,0x18,0x10,0x10,0x7f,0x12,0x12,0x12,0x22,0x22,0x12,0x0c,0x12,0x23,0x42,0x00,0x10,0x10,0x90,0x50,0x10,0xff,0x11,0x11,0x19,0x15,0x15,0x21,0x21,0x41,0x45,0x82 -+// 22956 妬 ; -+,0x08,0x08,0x09,0x08,0x7e,0x12,0x12,0x12,0x24,0x15,0x0a,0x14,0x12,0x20,0x40,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x40,0x7e,0xc2,0x42,0x42,0x42,0x7e,0x42,0x42,0x00 -+// 22957 妭 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x12,0x22,0x24,0x24,0x14,0x08,0x14,0x21,0x42,0x00,0x28,0x26,0x24,0xff,0x20,0x20,0x3e,0x22,0x22,0x54,0x54,0x88,0x88,0x14,0x22,0x41 -+// 22958 妮 ; -+,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x22,0x24,0x14,0x08,0x08,0x15,0x21,0x42,0x04,0x00,0x00,0xff,0x81,0x81,0xff,0x80,0xa0,0xa4,0xae,0xb0,0xa0,0x21,0x21,0x1f,0x00 -+// 22959 妯 ; -+,0x10,0x18,0x10,0x10,0x7e,0x22,0x22,0x22,0x22,0x14,0x08,0x0c,0x12,0x22,0x40,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 22960 妰 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x34,0x0c,0x04,0x0a,0x11,0x21,0x40,0x20,0x20,0x40,0x7f,0xa0,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20 -+// 22961 妱 ; -+,0x10,0x11,0x10,0x10,0x7e,0x12,0x12,0x12,0x22,0x14,0x04,0x0a,0x13,0x21,0x40,0x00,0x00,0xfe,0x22,0x22,0x22,0x4a,0x44,0x80,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 22962 妲 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x12,0x0c,0x04,0x0a,0x10,0x21,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00,0x00,0xff,0x00 -+// 22963 妳 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x13,0x12,0x24,0x24,0x19,0x0a,0x14,0x22,0x40,0x00,0x40,0x60,0x40,0x40,0xff,0x82,0x14,0x10,0x94,0xd2,0x11,0x11,0x10,0x10,0x50,0x20 -+// 22964 妴 ; -+,0x08,0x0f,0x11,0x29,0x46,0x04,0x19,0x61,0x7f,0x02,0x04,0x07,0x00,0x03,0x0c,0x70,0x00,0x7c,0x44,0x54,0x48,0x41,0x3f,0x00,0xff,0x10,0x10,0x10,0xe0,0x18,0x06,0x02 -+// 22965 妵 ; -+,0x08,0x08,0x08,0x10,0x7e,0x12,0x12,0x22,0x24,0x24,0x18,0x14,0x26,0x24,0x41,0x00,0x20,0x10,0x10,0x02,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 22966 妶 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x12,0x12,0x25,0x24,0x18,0x0c,0x0a,0x12,0x20,0x40,0x40,0x20,0x10,0xff,0x20,0x24,0x46,0x8c,0xf8,0x10,0x20,0x24,0x42,0xff,0x42,0x00 -+// 22967 妷 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x24,0x24,0x24,0x18,0x08,0x14,0x22,0x40,0x01,0x10,0x10,0x50,0x50,0x7e,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 22968 妸 ; -+,0x10,0x19,0x10,0x10,0x7e,0x12,0x12,0x22,0x24,0x14,0x08,0x14,0x12,0x23,0x42,0x00,0x00,0xff,0x02,0x02,0xf2,0x92,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x02,0x0e,0x04 -+// 22969 妹 ; -+,0x10,0x18,0x10,0x7e,0x12,0x12,0x12,0x23,0x22,0x14,0x08,0x0c,0x16,0x24,0x41,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x30,0x38,0x58,0x54,0x93,0x92,0x10,0x10 -+// 22970 妺 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x13,0x24,0x24,0x18,0x08,0x15,0x16,0x24,0x40,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x70,0x70,0xa8,0xa8,0x24,0x23,0x22,0x20,0x00 -+// 22971 妻 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x3f,0x00,0x1f,0x01,0x7f,0x02,0x04,0x03,0x00,0x03,0x1c,0x80,0xfe,0x80,0xf8,0x88,0xff,0x88,0xf8,0x00,0xff,0x10,0x10,0x20,0xc0,0x30,0x0c -+// 22972 妼 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x15,0x25,0x35,0x09,0x04,0x12,0x21,0x46,0x00,0x40,0x20,0x14,0x46,0x44,0x44,0x48,0x48,0x52,0x51,0x61,0x44,0xc4,0x46,0x3c,0x00 -+// 22973 妽 ; -+,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x24,0x14,0x08,0x08,0x14,0x22,0x40,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10 -+// 22974 妾 ; -+,0x00,0x00,0x1f,0x04,0x02,0x01,0x7f,0x02,0x02,0x3f,0x04,0x07,0x00,0x03,0x0c,0x30,0x80,0x40,0xfe,0x10,0x18,0x20,0xff,0x00,0x00,0xff,0x10,0x20,0xe0,0x18,0x0c,0x04 -+// 22975 妿 ; -+,0x04,0x04,0x3f,0x09,0x09,0x09,0x16,0x21,0x01,0x7f,0x02,0x07,0x00,0x01,0x06,0x38,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0x10,0x20,0xe0,0x98,0x06,0x04 -+// 22976 姀 ; -+,0x10,0x19,0x10,0x10,0x7e,0x13,0x12,0x22,0x24,0x14,0x09,0x15,0x12,0x24,0x40,0x00,0x04,0xfe,0x20,0x20,0x20,0xff,0x70,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20,0x20 -+// 22977 姁 ; -+,0x08,0x08,0x08,0x08,0x3e,0x12,0x13,0x12,0x22,0x12,0x0c,0x0a,0x13,0x22,0x40,0x00,0x40,0x60,0x40,0x7e,0x82,0x82,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 22978 姂 ; -+,0x10,0x18,0x11,0x10,0x7e,0x12,0x12,0x22,0x24,0x14,0x08,0x08,0x16,0x25,0x42,0x00,0x00,0x3f,0xc0,0x20,0x18,0x10,0xfe,0x04,0x08,0x10,0x20,0x40,0x80,0x40,0x3f,0x00 -+// 22979 姃 ; -+,0x10,0x19,0x10,0x10,0x7e,0x12,0x12,0x24,0x24,0x24,0x14,0x08,0x14,0x23,0x42,0x00,0x00,0xff,0x10,0x10,0x10,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x90,0xff,0x00,0x00 -+// 22980 姄 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x34,0x08,0x0c,0x12,0x22,0x40,0x00,0x00,0xfe,0x82,0x82,0xfe,0x92,0x90,0x90,0xff,0x88,0x88,0x88,0xa5,0xc5,0x82,0x00 -+// 22981 姅 ; -+,0x08,0x08,0x09,0x08,0x7e,0x13,0x12,0x12,0x24,0x27,0x18,0x14,0x22,0x42,0x00,0x00,0x20,0x24,0x26,0xa4,0x68,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 22982 姆 ; -+,0x10,0x18,0x10,0x7e,0x12,0x12,0x15,0x24,0x24,0x19,0x09,0x15,0x26,0x44,0x00,0x00,0x00,0x00,0xfc,0xc4,0xa4,0x94,0xff,0x84,0xa4,0x14,0x14,0xff,0x04,0x04,0x14,0x08 -+// 22983 姇 ; -+,0x08,0x0c,0x1b,0x18,0x28,0x48,0x0a,0x0b,0x02,0x7f,0x04,0x07,0x00,0x03,0x0c,0x30,0x08,0x08,0xff,0x08,0x88,0x88,0x28,0x10,0x00,0xff,0x10,0x20,0xe0,0x18,0x0e,0x04 -+// 22984 姈 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x13,0x12,0x25,0x24,0x18,0x08,0x14,0x23,0x42,0x00,0x20,0x20,0x20,0x50,0x48,0xa7,0x12,0x10,0xfe,0x04,0x08,0x50,0x20,0x10,0x10,0x00 -+// 22985 姉 ; -+,0x10,0x18,0x10,0x11,0x7e,0x22,0x22,0x24,0x24,0x14,0x08,0x0c,0x12,0x22,0x40,0x00,0x10,0x10,0x10,0xff,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10,0x10 -+// 22986 姊 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x15,0x24,0x14,0x08,0x0c,0x12,0x22,0x41,0x00,0x10,0x10,0x1f,0xf0,0x90,0x90,0x90,0xff,0xb1,0x31,0x51,0x51,0x95,0x92,0x10,0x10 -+// 22987 始 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x22,0x22,0x14,0x0c,0x0a,0x11,0x21,0x40,0x00,0x10,0x18,0x10,0x24,0x42,0xff,0x42,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 22988 姌 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x24,0x24,0x19,0x08,0x14,0x16,0x24,0x40,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x82,0x82,0x82,0x8a,0x84,0x00 -+// 22989 姍 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x17,0x25,0x29,0x19,0x09,0x15,0x25,0x41,0x00,0x00,0xfc,0x54,0x54,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0x54,0x54,0x54,0x0c,0x00 -+// 22990 姎 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x12,0x25,0x14,0x08,0x0c,0x16,0x24,0x40,0x01,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xff,0x10,0x10,0x28,0x24,0x42,0x83,0x02 -+// 22991 姏 ; -+,0x10,0x18,0x10,0x10,0x7d,0x24,0x24,0x24,0x24,0x14,0x08,0x14,0x13,0x22,0x40,0x00,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x00 -+// 22992 姐 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x14,0x08,0x0c,0x12,0x23,0x42,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 22993 姑 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x12,0x22,0x24,0x14,0x08,0x14,0x23,0x42,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 22994 姒 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x34,0x08,0x0c,0x12,0x22,0x40,0x00,0x02,0x22,0x12,0x92,0x82,0x82,0x82,0x82,0x84,0x94,0xa4,0xca,0x91,0x21,0x40,0x80 -+// 22995 姓 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x13,0x22,0x24,0x14,0x08,0x14,0x12,0x22,0x41,0x00,0x10,0x10,0x90,0x90,0xff,0x90,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 22996 委 ; -+,0x00,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x02,0x7f,0x04,0x06,0x01,0x06,0x18,0x60,0xfc,0x80,0x80,0xff,0xa0,0x90,0x8e,0x84,0x00,0xff,0x10,0x20,0xc0,0x30,0x1c,0x08 -+// 22997 姕 ; -+,0x02,0x02,0x12,0x13,0x12,0x13,0x7c,0x02,0x02,0x7f,0x04,0x07,0x00,0x03,0x0c,0x70,0x20,0x20,0x26,0xb8,0x22,0xa2,0x1e,0x00,0x00,0xfe,0x10,0x20,0xe0,0x18,0x0e,0x04 -+// 22998 姖 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x22,0x24,0x14,0x08,0x08,0x14,0x22,0x42,0x00,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0xff,0x80,0x00 -+// 22999 姗 ; -+,0x10,0x19,0x11,0x11,0x7d,0x25,0x25,0x27,0x25,0x25,0x19,0x15,0x25,0x22,0x42,0x04,0x00,0xde,0x52,0x52,0x52,0x52,0x52,0xff,0x52,0x52,0x52,0x52,0x52,0x52,0xd2,0x26 -+// 23000 姘 ; -+,0x08,0x0c,0x08,0x09,0x7e,0x12,0x12,0x12,0x25,0x34,0x08,0x0c,0x16,0x24,0x41,0x02,0x84,0x66,0x48,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 23001 姙 ; -+,0x10,0x18,0x10,0x7c,0x14,0x15,0x26,0x24,0x24,0x24,0x18,0x14,0x26,0x24,0x40,0x00,0x40,0x60,0x47,0xb8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88,0xff,0x80,0x00 -+// 23002 姚 ; -+,0x08,0x08,0x08,0x09,0x3e,0x12,0x12,0x12,0x24,0x17,0x09,0x0c,0x12,0x20,0x41,0x02,0x50,0x50,0x50,0x52,0xd4,0x58,0x50,0x58,0xd4,0x56,0x54,0x50,0x91,0x91,0x0f,0x00 -+// 23003 姛 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x12,0x12,0x0c,0x0c,0x12,0x23,0x42,0x00,0x00,0xff,0x81,0x81,0xfd,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82 -+// 23004 姜 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x00,0x3f,0x02,0x02,0x7f,0x04,0x07,0x00,0x01,0x06,0x38,0x08,0x10,0xfe,0x80,0xfc,0x80,0xff,0x00,0x00,0xff,0x10,0x20,0xe0,0x98,0x0c,0x08 -+// 23005 姝 ; -+,0x08,0x08,0x08,0x10,0x7e,0x13,0x12,0x13,0x24,0x34,0x08,0x08,0x15,0x26,0x44,0x00,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x30,0x58,0x54,0x96,0x13,0x12,0x10,0x10 -+// 23006 姞 ; -+,0x08,0x08,0x08,0x09,0x7e,0x12,0x12,0x22,0x22,0x14,0x14,0x08,0x14,0x12,0x22,0x40,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 23007 姟 ; -+,0x08,0x08,0x09,0x08,0x7e,0x12,0x12,0x25,0x24,0x14,0x08,0x0c,0x17,0x24,0x40,0x01,0x20,0x10,0xff,0x20,0x28,0x4c,0x8a,0xf3,0x32,0x24,0x48,0x98,0x24,0x42,0x83,0x02 -+// 23008 姠 ; -+,0x10,0x18,0x10,0x11,0x7d,0x25,0x25,0x25,0x25,0x15,0x09,0x09,0x15,0x27,0x45,0x01,0x20,0x30,0x40,0xff,0x01,0x01,0x7d,0x45,0x45,0x45,0x7d,0x45,0x01,0x01,0x05,0x02 -+// 23009 姡 ; -+,0x10,0x18,0x10,0x10,0x7c,0x15,0x14,0x14,0x24,0x24,0x14,0x08,0x14,0x23,0x42,0x00,0x00,0x1e,0xf0,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 23010 姢 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x22,0x12,0x0c,0x0a,0x13,0x22,0x40,0x10,0x10,0x24,0x22,0x4f,0xf2,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 23011 姣 ; -+,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x13,0x24,0x24,0x18,0x08,0x14,0x22,0x42,0x00,0x20,0x10,0x10,0xff,0x48,0x64,0x82,0x45,0x44,0x28,0x28,0x10,0x10,0x2c,0x47,0x82 -+// 23012 姤 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x22,0x22,0x24,0x14,0x08,0x14,0x15,0x21,0x42,0x04,0x00,0x0e,0xf0,0x80,0x80,0xff,0x80,0x80,0xbe,0xa2,0xa2,0xa2,0x22,0x3e,0x22,0x00 -+// 23013 姥 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x13,0x12,0x24,0x14,0x08,0x15,0x12,0x22,0x40,0x00,0x20,0x20,0x22,0xfb,0x24,0x28,0xff,0x10,0x20,0x40,0xcc,0x70,0x42,0x42,0x3e,0x00 -+// 23014 姦 ; -+,0x02,0x02,0x3f,0x04,0x07,0x01,0x3e,0x08,0x08,0x7f,0x09,0x11,0x12,0x0c,0x12,0x61,0x00,0x00,0xfe,0x20,0x40,0xb0,0x0e,0x10,0x10,0xff,0x22,0x24,0x18,0x14,0x23,0x42 -+// 23015 姧 ; -+,0x08,0x08,0x3f,0x09,0x09,0x06,0x09,0x11,0x08,0x7f,0x11,0x12,0x0c,0x12,0x21,0x40,0x00,0x7f,0x88,0x08,0x08,0x08,0x08,0x7f,0x08,0xc8,0x08,0x08,0x08,0x08,0x88,0x88 -+// 23016 姨 ; -+,0x10,0x18,0x13,0x10,0x7d,0x14,0x15,0x25,0x25,0x19,0x08,0x14,0x26,0x44,0x01,0x02,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x52,0x56,0x88,0x84,0x03,0x02 -+// 23017 姩 ; -+,0x08,0x08,0x08,0x7e,0x13,0x12,0x12,0x24,0x24,0x24,0x19,0x14,0x22,0x22,0x40,0x00,0x40,0x40,0x7f,0x90,0x10,0x10,0xfe,0x90,0x90,0x90,0xff,0x10,0x10,0x10,0x10,0x10 -+// 23018 姪 ; -+,0x10,0x19,0x10,0x10,0x7e,0x14,0x15,0x24,0x24,0x24,0x18,0x14,0x26,0x24,0x41,0x00,0x00,0xfe,0x20,0x28,0x44,0xbe,0xe4,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 23019 姫 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x24,0x24,0x14,0x08,0x08,0x14,0x22,0x42,0x00,0x00,0xff,0x90,0x90,0x90,0xfe,0x82,0x82,0x82,0xfe,0x90,0x90,0x90,0x90,0xff,0x00 -+// 23020 姬 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x14,0x08,0x08,0x14,0x22,0x42,0x00,0x00,0xff,0x88,0x88,0x88,0xbe,0xa2,0xa2,0xa2,0xa2,0xbe,0x88,0x88,0x88,0xff,0x00 -+// 23021 姭 ; -+,0x00,0x0f,0x01,0x02,0x04,0x3f,0x04,0x08,0x31,0x04,0x7f,0x04,0x02,0x01,0x06,0x38,0x80,0xfc,0x04,0x18,0x10,0xfe,0x92,0xaa,0x44,0x00,0xff,0x20,0x40,0x80,0x60,0x1c -+// 23022 姮 ; -+,0x10,0x19,0x10,0x10,0x7e,0x12,0x12,0x22,0x24,0x24,0x18,0x0c,0x12,0x20,0x41,0x00,0x00,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00,0x00,0xff,0x00 -+// 23023 姯 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x13,0x24,0x24,0x24,0x18,0x08,0x14,0x26,0x45,0x02,0x20,0x20,0x24,0x26,0xe4,0xa8,0xff,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 23024 姰 ; -+,0x08,0x08,0x08,0x08,0x7e,0x13,0x12,0x12,0x24,0x34,0x0c,0x0c,0x12,0x13,0x22,0x40,0x40,0x60,0x40,0xfe,0x82,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 23025 姱 ; -+,0x10,0x18,0x13,0x10,0x7e,0x15,0x26,0x24,0x27,0x24,0x18,0x14,0x26,0x24,0x40,0x00,0x20,0x20,0xff,0x50,0x88,0x07,0xfa,0x00,0xff,0x40,0xfc,0x44,0x04,0x04,0x14,0x08 -+// 23026 姲 ; -+,0x10,0x18,0x10,0x10,0x7e,0x13,0x12,0x25,0x24,0x24,0x18,0x08,0x14,0x22,0x42,0x01,0x20,0x10,0x10,0xff,0x81,0x22,0x20,0xff,0x24,0x44,0x48,0x30,0x28,0x46,0x82,0x00 -+// 23027 姳 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x13,0x22,0x24,0x34,0x0b,0x14,0x12,0x23,0x42,0x00,0x20,0x20,0x3e,0x42,0x44,0xa8,0x10,0x20,0x40,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 23028 姴 ; -+,0x3f,0x04,0x0f,0x08,0x14,0x23,0x06,0x38,0x02,0x7f,0x02,0x07,0x00,0x03,0x0c,0x30,0xc2,0x02,0x92,0x92,0x92,0x12,0x02,0x0a,0x04,0xff,0x10,0x20,0xe0,0x18,0x06,0x04 -+// 23029 姵 ; -+,0x20,0x33,0x22,0x23,0x7a,0x2a,0x2a,0x4a,0x4a,0x32,0x12,0x2a,0x2a,0x44,0x04,0x08,0x00,0xfe,0x02,0xfa,0x22,0x22,0xfa,0xaa,0xaa,0xaa,0xaa,0xaa,0xba,0x23,0x23,0x21 -+// 23030 姶 ; -+,0x10,0x18,0x10,0x10,0x7e,0x13,0x12,0x24,0x24,0x34,0x08,0x0c,0x12,0x22,0x40,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfe,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 23031 姷 ; -+,0x08,0x08,0x09,0x08,0x7e,0x12,0x12,0x13,0x24,0x14,0x08,0x14,0x12,0x22,0x40,0x00,0x20,0x20,0xff,0x20,0x40,0x7e,0xc2,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 23032 姸 ; -+,0x08,0x09,0x08,0x08,0x7e,0x12,0x12,0x15,0x24,0x14,0x08,0x14,0x14,0x21,0x42,0x04,0x00,0xef,0x44,0x44,0x44,0x44,0x44,0xef,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 23033 姹 ; -+,0x10,0x18,0x10,0x10,0x7d,0x14,0x14,0x14,0x24,0x25,0x18,0x08,0x14,0x23,0x42,0x00,0x20,0x10,0xff,0x82,0x00,0x0e,0xf0,0x20,0x27,0xf8,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 23034 姺 ; -+,0x10,0x18,0x10,0x10,0x7c,0x15,0x16,0x27,0x24,0x24,0x18,0x08,0x16,0x24,0x41,0x02,0x10,0x90,0xd0,0x90,0xfe,0x10,0x10,0xff,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 23035 姻 ; -+,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x24,0x34,0x08,0x0c,0x12,0x22,0x40,0x00,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xa9,0xa5,0xc5,0x81,0xff,0x81,0x81 -+// 23036 姼 ; -+,0x10,0x18,0x10,0x10,0x7f,0x12,0x12,0x25,0x24,0x34,0x09,0x08,0x14,0x22,0x40,0x03,0x20,0x20,0x3e,0x44,0xa8,0x10,0x78,0x90,0x3f,0x42,0xb4,0x28,0x10,0x20,0xc0,0x00 -+// 23037 姽 ; -+,0x10,0x18,0x10,0x10,0x7f,0x12,0x12,0x22,0x24,0x14,0x08,0x14,0x15,0x25,0x42,0x04,0x40,0x7e,0x44,0x88,0xff,0x80,0xbc,0xa4,0xa4,0xa4,0xbc,0xa8,0x21,0x21,0x1f,0x00 -+// 23038 姾 ; -+,0x10,0x18,0x10,0x10,0x7e,0x13,0x12,0x24,0x24,0x14,0x08,0x0c,0x12,0x20,0x43,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0x12,0xff,0x00 -+// 23039 姿 ; -+,0x10,0x08,0x08,0x01,0x0a,0x38,0x10,0x13,0x0c,0x3f,0x01,0x03,0x00,0x01,0x06,0x18,0x80,0x80,0xff,0x22,0x24,0x50,0x88,0x06,0x84,0xff,0x10,0x10,0xe0,0x18,0x0e,0x04 -+// 23040 娀 ; -+,0x10,0x10,0x10,0x10,0x7f,0x14,0x14,0x24,0x25,0x24,0x18,0x14,0x25,0x21,0x42,0x00,0x10,0x10,0x14,0x12,0xff,0x90,0x94,0x96,0xf4,0x94,0x98,0x89,0x15,0x23,0xc1,0x00 -+// 23041 威 ; -+,0x00,0x00,0x00,0x1f,0x10,0x1f,0x14,0x14,0x1f,0x14,0x14,0x13,0x12,0x24,0x29,0x40,0x20,0x28,0x24,0xfe,0x20,0xa4,0x26,0x24,0xa8,0x98,0x90,0x10,0xa9,0x45,0x82,0x00 -+// 23042 娂 ; -+,0x08,0x08,0x08,0x11,0x7e,0x12,0x12,0x12,0x24,0x15,0x0c,0x0a,0x12,0x20,0x41,0x02,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x44,0xff,0x00,0x44,0x62,0x83,0x02,0x00 -+// 23043 娃 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x15,0x14,0x14,0x14,0x09,0x08,0x14,0x24,0x43,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 23044 娄 ; -+,0x08,0x04,0x04,0x3f,0x01,0x02,0x04,0x08,0x11,0x3f,0x02,0x04,0x02,0x01,0x06,0x38,0x88,0x8c,0x90,0xff,0xc0,0xa0,0x98,0x87,0x02,0xff,0x10,0x20,0x40,0x80,0x70,0x0e -+// 23045 娅 ; -+,0x10,0x19,0x10,0x10,0x7c,0x14,0x25,0x25,0x24,0x24,0x18,0x14,0x22,0x22,0x41,0x00,0x00,0xff,0x48,0x48,0x48,0x4a,0x4b,0x4a,0xcc,0x48,0x48,0x48,0x48,0x48,0xff,0x00 -+// 23046 娆 ; -+,0x10,0x10,0x10,0x11,0x7c,0x14,0x14,0x25,0x24,0x27,0x18,0x18,0x14,0x25,0x42,0x04,0x40,0x40,0x3e,0xe0,0x24,0x18,0x71,0x89,0x06,0xfe,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 23047 娇 ; -+,0x10,0x11,0x10,0x10,0x7d,0x14,0x14,0x24,0x25,0x3a,0x08,0x14,0x12,0x20,0x41,0x02,0x04,0xfe,0x20,0x20,0xff,0x50,0x48,0x84,0x4b,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 23048 娈 ; -+,0x00,0x00,0x3f,0x01,0x09,0x0d,0x11,0x21,0x00,0x7f,0x02,0x07,0x00,0x03,0x0c,0x30,0x80,0x40,0xff,0x20,0x28,0x26,0x22,0x20,0x80,0xff,0x10,0x20,0xc0,0x30,0x0c,0x04 -+// 23049 娉 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x22,0x25,0x24,0x18,0x0c,0x12,0x13,0x22,0x00,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x40,0xfc,0x44,0x04,0x04,0x14,0x08 -+// 23050 娊 ; -+,0x10,0x18,0x10,0x10,0x7e,0x26,0x24,0x24,0x24,0x24,0x18,0x08,0x16,0x24,0x40,0x01,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0xa8,0x28,0x28,0x49,0x49,0x87,0x00 -+// 23051 娋 ; -+,0x08,0x0c,0x08,0x10,0x7e,0x12,0x12,0x24,0x24,0x24,0x18,0x0c,0x12,0x22,0x40,0x00,0x10,0x10,0x92,0x52,0x54,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84,0x00 -+// 23052 娌 ; -+,0x10,0x11,0x11,0x11,0x7d,0x15,0x15,0x15,0x25,0x34,0x09,0x0c,0x12,0x10,0x23,0x40,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x24,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 23053 娍 ; -+,0x10,0x10,0x10,0x7d,0x15,0x15,0x25,0x25,0x25,0x19,0x0d,0x15,0x22,0x42,0x04,0x08,0x08,0x0a,0x0a,0xff,0x08,0x09,0xe9,0x2a,0x2a,0x24,0x24,0xad,0x55,0x23,0x41,0x00 -+// 23054 娎 ; -+,0x04,0x7f,0x04,0x07,0x1c,0x64,0x04,0x19,0x02,0x7f,0x04,0x07,0x00,0x01,0x06,0x38,0x1e,0x60,0x40,0x7f,0x48,0x88,0x88,0x08,0x00,0xff,0x10,0x20,0xc0,0xb0,0x0c,0x04 -+// 23055 娏 ; -+,0x08,0x0c,0x08,0x10,0x7f,0x14,0x14,0x24,0x24,0x14,0x09,0x15,0x12,0x22,0x44,0x08,0x40,0x50,0x48,0x40,0xfe,0xa4,0xb8,0xa2,0xa4,0xb8,0x22,0x2c,0x31,0x61,0x9f,0x00 -+// 23056 娐 ; -+,0x10,0x19,0x10,0x11,0x7c,0x15,0x14,0x24,0x24,0x17,0x08,0x14,0x12,0x20,0x40,0x00,0x1e,0xf0,0x44,0x26,0xa8,0xfe,0x04,0x28,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 23057 娑 ; -+,0x10,0x0a,0x22,0x14,0x15,0x0a,0x38,0x09,0x0a,0x7f,0x02,0x04,0x02,0x01,0x06,0x38,0x10,0x14,0x92,0xd3,0x14,0x18,0x30,0xc0,0x00,0xff,0x10,0x10,0x20,0xc0,0x30,0x0e -+// 23058 娒 ; -+,0x10,0x18,0x10,0x11,0x7d,0x16,0x24,0x24,0x27,0x18,0x08,0x15,0x14,0x20,0x40,0x00,0x80,0x80,0xff,0x00,0xfc,0x84,0xa4,0x94,0xff,0xa4,0x94,0xff,0x84,0x04,0x14,0x08 -+// 23059 娓 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x15,0x09,0x15,0x11,0x22,0x42,0x04,0x00,0xfe,0x02,0xfe,0x00,0x0e,0x70,0x10,0x7e,0x10,0xfe,0x10,0x11,0x11,0x0f,0x00 -+// 23060 娔 ; -+,0x10,0x18,0x11,0x10,0x7e,0x12,0x12,0x22,0x24,0x14,0x08,0x0c,0x13,0x22,0x40,0x01,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0xfe,0xaa,0x28,0x28,0x49,0x49,0x87,0x00 -+// 23061 娕 ; -+,0x10,0x18,0x11,0x10,0x7e,0x14,0x14,0x14,0x24,0x24,0x14,0x08,0x14,0x22,0x41,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0x92,0x92,0xfe,0x38,0x34,0x54,0x53,0x92,0x10,0x10 -+// 23062 娖 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x24,0x24,0x14,0x08,0x08,0x15,0x25,0x42,0x04,0x00,0xfe,0x82,0x82,0x82,0xfe,0x10,0x90,0x9e,0x90,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 23063 娗 ; -+,0x10,0x1b,0x10,0x10,0x7d,0x25,0x27,0x24,0x24,0x1a,0x09,0x14,0x15,0x22,0x44,0x00,0x06,0xb8,0x88,0x88,0x08,0x7f,0x88,0x88,0x88,0x88,0xbe,0x80,0x40,0x20,0x1f,0x00 -+// 23064 娘 ; -+,0x10,0x18,0x11,0x11,0x7d,0x15,0x15,0x15,0x25,0x25,0x19,0x15,0x25,0x21,0x41,0x01,0x40,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x42,0x27,0x2c,0x10,0x08,0x44,0x83,0x00 -+// 23065 娙 ; -+,0x10,0x19,0x10,0x10,0x7d,0x15,0x14,0x14,0x24,0x35,0x08,0x0c,0x12,0x20,0x43,0x00,0x00,0xfe,0x92,0x94,0x24,0x28,0x94,0x94,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 23066 娚 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x22,0x24,0x15,0x08,0x08,0x14,0x26,0x44,0x01,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x10,0xfe,0x12,0x22,0x22,0x42,0x8a,0x04 -+// 23067 娛 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x12,0x24,0x24,0x15,0x08,0x14,0x22,0x40,0x01,0x00,0xbc,0xa4,0xa4,0xa4,0xbc,0x80,0xfe,0x12,0x12,0xff,0x10,0x28,0x44,0x83,0x02 -+// 23068 娜 ; -+,0x10,0x13,0x10,0x10,0x7f,0x24,0x24,0x24,0x27,0x18,0x09,0x15,0x12,0x22,0x44,0x08,0x00,0xef,0xa9,0xaa,0xea,0xac,0xac,0xaa,0xe9,0xa9,0x29,0x2f,0x2a,0x28,0xa8,0x48 -+// 23069 娝 ; -+,0x10,0x19,0x10,0x10,0x7c,0x24,0x24,0x25,0x24,0x24,0x18,0x14,0x22,0x22,0x40,0x00,0x00,0xff,0x08,0x10,0x34,0x53,0x91,0x10,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 23070 娞 ; -+,0x08,0x0c,0x09,0x08,0x7e,0x12,0x12,0x12,0x25,0x14,0x08,0x0c,0x12,0x20,0x40,0x01,0x00,0x1f,0xe0,0x22,0x93,0x94,0x40,0x40,0xff,0x48,0x88,0x50,0x30,0x4c,0x86,0x02 -+// 23071 娟 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x34,0x08,0x14,0x12,0x22,0x40,0x00,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 23072 娠 ; -+,0x10,0x18,0x10,0x10,0x7e,0x14,0x14,0x24,0x25,0x19,0x09,0x15,0x15,0x22,0x42,0x04,0x00,0xfe,0x80,0x80,0xfc,0x80,0xff,0xd0,0x52,0x54,0x48,0x48,0x44,0x57,0x62,0x40 -+// 23073 娡 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x12,0x14,0x24,0x24,0x19,0x15,0x15,0x22,0x40,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x20,0x18,0x52,0x41,0x45,0x46,0x3c,0x00 -+// 23074 娢 ; -+,0x10,0x18,0x10,0x10,0x7e,0x15,0x14,0x24,0x24,0x14,0x08,0x14,0x22,0x42,0x00,0x00,0x10,0x10,0x28,0x44,0xa3,0x12,0xfc,0x04,0x08,0x10,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 23075 娣 ; -+,0x10,0x10,0x11,0x10,0x7c,0x24,0x24,0x24,0x24,0x24,0x14,0x08,0x14,0x25,0x42,0x00,0x84,0x48,0xfe,0x12,0x12,0xfe,0x90,0x90,0xff,0x31,0x31,0x55,0x92,0x10,0x10,0x10 -+// 23076 娤 ; -+,0x02,0x12,0x1e,0x03,0x3e,0x0a,0x0a,0x12,0x22,0x3f,0x02,0x04,0x07,0x01,0x06,0x38,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x00,0x80,0xff,0x10,0x20,0x40,0xb0,0x0e,0x04 -+// 23077 娥 ; -+,0x10,0x18,0x11,0x10,0x7c,0x17,0x14,0x24,0x28,0x28,0x29,0x18,0x14,0x27,0x44,0x00,0x00,0x68,0xc8,0x4a,0x4a,0xff,0x48,0x4a,0x6a,0xcc,0x48,0x54,0x65,0x43,0x81,0x00 -+// 23078 娦 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x12,0x24,0x25,0x14,0x0c,0x12,0x22,0x40,0x01,0x02,0x0f,0x78,0x40,0x40,0x7f,0x44,0x44,0x44,0xff,0x00,0x48,0x66,0xc3,0x81,0x00 -+// 23079 娧 ; -+,0x10,0x19,0x10,0x10,0x7d,0x25,0x25,0x25,0x25,0x15,0x08,0x0c,0x16,0x24,0x41,0x02,0x08,0x0c,0x88,0x50,0xfc,0x04,0x04,0x04,0xfc,0x54,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 23080 娨 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x12,0x25,0x24,0x24,0x19,0x14,0x22,0x42,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 23081 娩 ; -+,0x08,0x08,0x08,0x7c,0x15,0x15,0x15,0x15,0x25,0x15,0x08,0x14,0x16,0x24,0x41,0x02,0x40,0x40,0x7c,0x88,0x10,0xfe,0x22,0x22,0xfe,0x52,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 23082 娪 ; -+,0x10,0x11,0x10,0x10,0x7d,0x14,0x24,0x27,0x24,0x24,0x18,0x08,0x16,0x24,0x40,0x00,0x00,0xfe,0x20,0x20,0xfc,0x44,0x44,0xff,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 23083 娫 ; -+,0x10,0x13,0x10,0x10,0x7d,0x15,0x17,0x24,0x24,0x28,0x29,0x10,0x19,0x26,0x44,0x08,0x00,0x87,0xbc,0x84,0x04,0x24,0xa7,0xa4,0xa4,0xa4,0xbf,0x80,0x40,0x30,0x0f,0x00 -+// 23084 娬 ; -+,0x10,0x18,0x11,0x10,0x7d,0x14,0x14,0x25,0x29,0x29,0x19,0x15,0x25,0x23,0x41,0x00,0x08,0x0c,0xea,0x08,0xff,0x48,0x48,0x48,0x78,0x48,0x48,0x45,0x75,0x83,0x01,0x00 -+// 23085 娭 ; -+,0x10,0x18,0x10,0x10,0x7c,0x14,0x14,0x15,0x26,0x35,0x08,0x14,0x12,0x20,0x41,0x02,0x10,0x20,0x44,0xfe,0x02,0x80,0xfe,0x20,0x20,0xff,0x50,0x50,0x88,0x87,0x02,0x00 -+// 23086 娮 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x12,0x24,0x24,0x14,0x08,0x14,0x12,0x22,0x40,0x00,0x20,0x10,0x00,0xff,0x00,0xfe,0x00,0xfe,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 23087 娯 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x22,0x24,0x15,0x0c,0x0a,0x13,0x22,0x41,0x02,0x00,0x3e,0x22,0xa2,0xbe,0xa2,0x80,0xfe,0x02,0xff,0x00,0x44,0x62,0x83,0x02,0x00 -+// 23088 娰 ; -+,0x10,0x18,0x10,0x10,0x7d,0x27,0x25,0x25,0x25,0x25,0x19,0x09,0x15,0x27,0x45,0x01,0x82,0xd2,0xaa,0xaa,0x22,0x22,0x22,0x22,0x22,0x22,0x32,0x22,0x05,0x09,0x11,0x20 -+// 23089 娱 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x13,0x14,0x24,0x15,0x08,0x0c,0x16,0x24,0x41,0x02,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x10,0x28,0x44,0x86,0x03,0x02 -+// 23090 娲 ; -+,0x10,0x18,0x10,0x10,0x7e,0x22,0x22,0x25,0x25,0x25,0x19,0x09,0x15,0x25,0x41,0x01,0x00,0xfe,0x82,0x82,0xfe,0x92,0x10,0xff,0x11,0x29,0x25,0x47,0x85,0x01,0x05,0x02 -+// 23091 娳 ; -+,0x10,0x18,0x13,0x10,0x7c,0x27,0x24,0x25,0x25,0x2a,0x12,0x14,0x28,0x24,0x44,0x00,0x01,0x61,0x81,0x89,0x89,0xe9,0x89,0xc9,0xa9,0xa9,0x89,0x89,0x89,0x81,0x85,0x82 -+// 23092 娴 ; -+,0x10,0x18,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x15,0x09,0x15,0x15,0x21,0x41,0x01,0x80,0x5f,0x01,0x11,0x11,0x11,0xff,0x31,0x39,0x55,0x57,0x95,0x11,0x11,0x05,0x02 -+// 23093 娵 ; -+,0x10,0x1b,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x19,0x0d,0x15,0x12,0x20,0x40,0x00,0x00,0xf0,0x20,0x2e,0xf2,0x32,0x2a,0xea,0x2a,0x24,0x64,0xaa,0x29,0x30,0x20,0x20 -+// 23094 娶 ; -+,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x71,0x01,0x7f,0x02,0x04,0x02,0x01,0x06,0x38,0x80,0x7e,0x44,0x24,0x28,0x90,0x28,0xc6,0x00,0xff,0x10,0x10,0x20,0xc0,0x30,0x0e -+// 23095 娷 ; -+,0x10,0x10,0x11,0x10,0x7d,0x24,0x24,0x27,0x24,0x24,0x1b,0x08,0x14,0x22,0x41,0x00,0x00,0x1e,0xe0,0x20,0xff,0xa4,0xa4,0xff,0xa4,0xa4,0xff,0x20,0x20,0x24,0xfe,0x00 -+// 23096 娸 ; -+,0x10,0x18,0x10,0x11,0x7e,0x14,0x14,0x24,0x24,0x24,0x1b,0x14,0x22,0x40,0x01,0x02,0x44,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x48,0xc4,0x86,0x03,0x02 -+// 23097 娹 ; -+,0x10,0x1b,0x10,0x10,0x7c,0x27,0x26,0x26,0x2b,0x28,0x18,0x18,0x24,0x26,0x44,0x01,0x10,0x88,0x84,0xff,0x88,0x88,0x12,0x13,0xbe,0x84,0x88,0x92,0xaf,0xf9,0xa0,0x80 -+// 23098 娺 ; -+,0x10,0x1b,0x11,0x10,0x7e,0x13,0x12,0x25,0x24,0x15,0x08,0x0c,0x12,0x21,0x42,0x00,0x00,0xde,0x52,0x8a,0x84,0x4a,0x11,0xce,0x52,0x52,0x92,0x4c,0xaa,0x11,0x21,0x00 -+// 23099 娻 ; -+,0x10,0x18,0x13,0x10,0x7c,0x24,0x24,0x24,0x24,0x14,0x08,0x14,0x22,0x22,0x41,0x02,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0xb2,0x38,0x54,0x52,0x93,0x12,0x10 -+// 23100 娼 ; -+,0x10,0x10,0x10,0x7c,0x24,0x24,0x24,0x24,0x25,0x15,0x09,0x15,0x15,0x21,0x41,0x01,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xff,0x01,0x01,0xff,0x01,0x01,0xff,0x01 -+// 23101 娽 ; -+,0x10,0x19,0x10,0x11,0x7c,0x14,0x17,0x24,0x25,0x24,0x18,0x14,0x27,0x24,0x40,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xff,0x24,0x2e,0xb0,0x68,0xa4,0x23,0x22,0xa0,0x40 -+// 23102 娾 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x25,0x19,0x09,0x15,0x21,0x42,0x04,0x00,0xff,0x08,0x08,0x7f,0x08,0x08,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0xff,0x00 -+// 23103 娿 ; -+,0x3c,0x25,0x24,0x29,0x25,0x25,0x35,0x28,0x22,0x7f,0x04,0x0f,0x00,0x03,0x0c,0x30,0x00,0xff,0x04,0xe4,0x24,0xe4,0x24,0x14,0x08,0xff,0x10,0x10,0xe0,0x18,0x0e,0x04 -+// 23104 婀 ; -+,0x11,0x11,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x25,0x19,0x09,0x17,0x25,0x41,0x01,0xc0,0x5f,0x42,0x42,0xba,0xaa,0xaa,0x6a,0x6a,0x7a,0xaa,0x02,0x02,0x02,0x0a,0x04 -+// 23105 婁 ; -+,0x00,0x0f,0x08,0x7f,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x02,0x7f,0x04,0x07,0x01,0x3e,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xf8,0x88,0xf8,0x00,0xff,0x30,0x40,0xb0,0x0c -+// 23106 婂 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x12,0x24,0x25,0x19,0x09,0x15,0x13,0x21,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x92,0x10,0xff,0x11,0x11,0x11,0x15,0x12,0x10 -+// 23107 婃 ; -+,0x10,0x18,0x10,0x11,0x7d,0x24,0x24,0x24,0x25,0x24,0x18,0x14,0x16,0x25,0x42,0x00,0x20,0x10,0xff,0x02,0x00,0xfe,0x00,0x00,0xff,0x10,0x94,0xd2,0x91,0x11,0x50,0x20 -+// 23108 婄 ; -+,0x10,0x18,0x11,0x10,0x7e,0x24,0x24,0x27,0x24,0x24,0x18,0x08,0x14,0x24,0x40,0x00,0x20,0x10,0xff,0x04,0x86,0x44,0x28,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 23109 婅 ; -+,0x08,0x08,0x08,0x7e,0x15,0x16,0x14,0x25,0x24,0x14,0x08,0x0c,0x13,0x12,0x20,0x40,0x40,0x40,0xff,0x81,0x29,0xad,0xb1,0xfd,0x21,0x71,0x69,0xad,0x29,0x21,0x25,0x02 -+// 23110 婆 ; -+,0x20,0x11,0x45,0x25,0x09,0x0a,0x32,0x14,0x18,0x12,0x3f,0x04,0x02,0x01,0x06,0x38,0x20,0xff,0x22,0x20,0xfc,0x88,0x50,0x20,0x58,0x86,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 23111 婇 ; -+,0x10,0x18,0x11,0x11,0x7e,0x12,0x14,0x15,0x24,0x24,0x18,0x08,0x15,0x26,0x44,0x00,0x00,0x1e,0xe4,0x46,0xb4,0xa8,0x10,0xff,0x30,0x38,0x54,0x92,0x13,0x12,0x10,0x10 -+// 23112 婈 ; -+,0x10,0x18,0x10,0x10,0x7c,0x15,0x14,0x24,0x27,0x14,0x08,0x05,0x16,0x24,0x41,0x06,0x10,0x10,0xfe,0x10,0x10,0xff,0x44,0xa2,0x3d,0x44,0xc8,0x28,0x10,0x6c,0x87,0x02 -+// 23113 婉 ; -+,0x10,0x18,0x11,0x11,0x7e,0x24,0x24,0x25,0x2a,0x15,0x09,0x16,0x14,0x21,0x42,0x04,0x20,0x10,0xff,0x01,0x82,0x80,0xde,0x52,0x52,0x52,0x56,0x90,0x91,0x11,0x0f,0x00 -+// 23114 婊 ; -+,0x10,0x18,0x11,0x10,0x7d,0x14,0x14,0x27,0x24,0x24,0x19,0x0a,0x14,0x24,0x41,0x00,0x20,0x20,0xfe,0x20,0xfe,0x20,0x20,0xff,0x40,0x92,0x94,0x88,0x84,0xa7,0xc2,0x80 -+// 23115 婋 ; -+,0x10,0x18,0x10,0x11,0x7d,0x25,0x25,0x25,0x25,0x25,0x19,0x15,0x25,0x22,0x44,0x00,0x10,0x1f,0x10,0xff,0x11,0x1c,0x70,0x12,0x0e,0x00,0x3c,0x24,0x24,0x25,0x43,0x80 -+// 23116 婌 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x27,0x24,0x24,0x2a,0x12,0x0a,0x14,0x24,0x42,0x01,0x80,0x80,0x9e,0xf2,0x92,0x92,0xf2,0x92,0x92,0xd2,0xac,0xac,0x92,0x91,0xa1,0x40 -+// 23117 婍 ; -+,0x10,0x10,0x11,0x10,0x7e,0x14,0x15,0x24,0x24,0x24,0x18,0x08,0x14,0x22,0x40,0x00,0x20,0x20,0xfe,0x20,0x50,0x88,0xff,0x04,0xf4,0x94,0x94,0xf4,0x84,0x04,0x14,0x08 -+// 23118 婎 ; -+,0x08,0x08,0x08,0x08,0x7e,0x13,0x16,0x14,0x24,0x34,0x08,0x0c,0x12,0x22,0x40,0x00,0x40,0x50,0x48,0xff,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80,0x00 -+// 23119 婏 ; -+,0x10,0x18,0x10,0x10,0x7d,0x26,0x24,0x24,0x24,0x24,0x18,0x14,0x22,0x22,0x41,0x02,0x40,0x40,0x7c,0x88,0xfe,0x92,0x92,0x92,0xfe,0x28,0x2c,0x4a,0x49,0x89,0x07,0x00 -+// 23120 婐 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x24,0x27,0x18,0x08,0x14,0x12,0x21,0x42,0x00,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x70,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 23121 婑 ; -+,0x10,0x19,0x10,0x11,0x7e,0x14,0x15,0x26,0x24,0x1b,0x08,0x14,0x12,0x20,0x40,0x03,0x1c,0xe0,0x20,0xfe,0x70,0xa8,0x27,0x22,0x40,0xff,0x88,0x88,0x50,0x20,0xd8,0x06 -+// 23122 婒 ; -+,0x08,0x08,0x08,0x10,0x7e,0x12,0x12,0x15,0x24,0x34,0x09,0x08,0x14,0x20,0x41,0x02,0x10,0x12,0x94,0x90,0x28,0x44,0x92,0x10,0x92,0x94,0x10,0x28,0x44,0x86,0x03,0x02 -+// 23123 婓 ; -+,0x02,0x3e,0x02,0x1e,0x02,0x02,0x7e,0x02,0x01,0x7f,0x02,0x07,0x00,0x01,0x06,0x18,0x20,0x3f,0x20,0x3e,0x20,0x20,0x3f,0x20,0x00,0xff,0x10,0x20,0xc0,0xb8,0x0e,0x04 -+// 23124 婔 ; -+,0x10,0x18,0x10,0x11,0x7e,0x14,0x15,0x24,0x24,0x24,0x1b,0x14,0x26,0x24,0x40,0x00,0x48,0x48,0x48,0xcf,0x48,0x48,0xcf,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 23125 婕 ; -+,0x10,0x13,0x10,0x11,0x7c,0x17,0x14,0x25,0x24,0x19,0x09,0x15,0x15,0x22,0x44,0x08,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x20,0x3e,0x20,0xa0,0x60,0x3f,0x00 -+// 23126 婖 ; -+,0x10,0x19,0x10,0x10,0x7f,0x14,0x14,0x24,0x25,0x26,0x19,0x0d,0x15,0x22,0x40,0x00,0x00,0xfe,0x20,0x20,0xff,0x50,0x48,0x84,0x23,0x24,0x32,0xa9,0x2d,0x28,0xa0,0x40 -+// 23127 婗 ; -+,0x10,0x18,0x11,0x7d,0x15,0x15,0x15,0x25,0x25,0x18,0x08,0x14,0x12,0x22,0x41,0x02,0x00,0x60,0x9c,0x04,0x04,0xdc,0x04,0x04,0xfc,0x50,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 23128 婘 ; -+,0x10,0x1a,0x11,0x10,0x7d,0x14,0x17,0x24,0x24,0x15,0x0a,0x14,0x16,0x24,0x40,0x00,0x20,0x24,0x26,0x28,0xfe,0x40,0xff,0x48,0xfc,0x4b,0x4a,0x58,0x42,0x43,0x3e,0x00 -+// 23129 婙 ; -+,0x10,0x19,0x12,0x11,0x7d,0x14,0x14,0x27,0x24,0x24,0x19,0x08,0x14,0x22,0x42,0x00,0x1e,0xe4,0x46,0x28,0xfc,0x24,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 23130 婚 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x12,0x24,0x34,0x08,0x08,0x14,0x22,0x42,0x00,0x00,0x1e,0xe8,0x88,0xff,0x88,0xa5,0xc3,0x81,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 23131 婛 ; -+,0x08,0x08,0x09,0x10,0x7e,0x14,0x14,0x14,0x24,0x24,0x18,0x08,0x14,0x25,0x42,0x00,0x20,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x92,0x14,0x92,0x93,0x12,0x50,0x20 -+// 23132 婜 ; -+,0x3f,0x24,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x01,0x7f,0x02,0x04,0x03,0x00,0x03,0x1c,0x7e,0x42,0x24,0x24,0x18,0x18,0x24,0x43,0x02,0xff,0x10,0x10,0x20,0xc0,0x38,0x06 -+// 23133 婝 ; -+,0x10,0x18,0x11,0x11,0x7d,0x24,0x25,0x24,0x24,0x24,0x28,0x10,0x29,0x25,0x42,0x04,0x20,0x10,0xff,0x01,0x01,0x00,0xfe,0x10,0x1e,0x90,0x90,0x90,0x50,0x30,0x1f,0x00 -+// 23134 婞 ; -+,0x10,0x18,0x11,0x10,0x7f,0x24,0x24,0x24,0x25,0x24,0x18,0x15,0x26,0x24,0x40,0x00,0x10,0x10,0xfe,0x10,0xff,0x84,0x66,0x48,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 23135 婟 ; -+,0x10,0x19,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x19,0x09,0x15,0x15,0x21,0x41,0x01,0x00,0xfe,0x12,0x12,0xfe,0x12,0x12,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0xfe,0x02,0x02 -+// 23136 婠 ; -+,0x10,0x18,0x11,0x11,0x7e,0x24,0x24,0x24,0x24,0x18,0x08,0x14,0x12,0x22,0x40,0x00,0x20,0x10,0xff,0x02,0xfc,0x84,0x84,0xfc,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 23137 婡 ; -+,0x10,0x18,0x10,0x11,0x7c,0x24,0x24,0x25,0x26,0x24,0x18,0x14,0x26,0x25,0x42,0x00,0x20,0x20,0x20,0xff,0x24,0xa4,0xa4,0x6a,0x31,0x70,0x68,0xa4,0xa3,0x22,0x20,0x20 -+// 23138 婢 ; -+,0x10,0x10,0x11,0x7d,0x15,0x15,0x25,0x25,0x25,0x24,0x18,0x15,0x26,0x24,0x40,0x00,0x30,0x20,0xfe,0x12,0xfe,0x12,0x12,0xfe,0x22,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 23139 婣 ; -+,0x11,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x25,0x25,0x19,0x15,0x22,0x22,0x44,0x08,0x29,0x29,0x29,0xef,0x01,0x01,0xff,0x01,0x01,0xcf,0x49,0x49,0x49,0x49,0x49,0x01 -+// 23140 婤 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x19,0x09,0x15,0x25,0x22,0x42,0x04,0x00,0xfe,0x22,0x22,0xfe,0x22,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 23141 婥 ; -+,0x10,0x18,0x10,0x10,0x7d,0x15,0x15,0x25,0x25,0x19,0x0c,0x13,0x12,0x20,0x40,0x00,0x20,0x20,0x3e,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x24,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 23142 婦 ; -+,0x10,0x18,0x10,0x7e,0x12,0x12,0x12,0x25,0x25,0x14,0x08,0x14,0x16,0x24,0x40,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x11,0xfe,0x92,0x92,0x92,0x92,0x96,0x10 -+// 23143 婧 ; -+,0x10,0x18,0x11,0x10,0x7d,0x24,0x27,0x24,0x24,0x24,0x18,0x18,0x26,0x44,0x00,0x00,0x20,0x20,0xfc,0x20,0xfe,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 23144 婨 ; -+,0x10,0x18,0x10,0x10,0x7d,0x26,0x24,0x25,0x25,0x25,0x19,0x19,0x15,0x25,0x41,0x00,0x20,0x20,0x50,0x8c,0x07,0xfa,0x00,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0x06,0x00 -+// 23145 婩 ; -+,0x10,0x18,0x10,0x10,0x7c,0x25,0x25,0x25,0x25,0x25,0x19,0x09,0x15,0x22,0x42,0x04,0x10,0x92,0x92,0xfe,0x00,0xff,0x00,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 23146 婪 ; -+,0x04,0x04,0x3f,0x0e,0x0d,0x15,0x24,0x45,0x02,0x7f,0x04,0x0f,0x00,0x03,0x3c,0x00,0x10,0x10,0x7f,0x38,0x34,0x53,0x92,0x10,0x00,0xff,0x10,0xa0,0x70,0x8c,0x06,0x00 -+// 23147 婫 ; -+,0x10,0x18,0x10,0x10,0x7e,0x14,0x14,0x24,0x24,0x14,0x08,0x14,0x16,0x24,0x40,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x08,0x89,0xee,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 23148 婬 ; -+,0x10,0x18,0x13,0x12,0x7d,0x24,0x24,0x25,0x24,0x18,0x0b,0x14,0x16,0x24,0x43,0x00,0x00,0x3e,0xe4,0x46,0x34,0xa0,0x0e,0xf0,0x20,0x20,0xff,0x20,0x20,0x20,0xff,0x00 -+// 23149 婭 ; -+,0x10,0x1b,0x10,0x10,0x7c,0x25,0x25,0x25,0x25,0x19,0x18,0x24,0x22,0x40,0x03,0x00,0x00,0xff,0x48,0x48,0x48,0xce,0x02,0x02,0x02,0xce,0x48,0x48,0x48,0x48,0xff,0x00 -+// 23150 婮 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x24,0x24,0x24,0x24,0x18,0x15,0x25,0x22,0x44,0x00,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0xff,0x90,0x90,0xfe,0x42,0x42,0x42,0x7e,0x42 -+// 23151 婯 ; -+,0x3f,0x00,0x3f,0x31,0x29,0x2d,0x29,0x23,0x01,0x7f,0x02,0x04,0x03,0x01,0x06,0x38,0xff,0x00,0x7e,0x42,0x62,0x5a,0x52,0x46,0x00,0xff,0x10,0x20,0x40,0xb0,0x0c,0x08 -+// 23152 婰 ; -+,0x10,0x18,0x10,0x11,0x7d,0x25,0x25,0x25,0x25,0x25,0x1b,0x08,0x14,0x26,0x45,0x02,0x48,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0xff,0x88,0xc4,0x82,0x03,0x02 -+// 23153 婱 ; -+,0x1e,0x02,0x1e,0x10,0x1e,0x02,0x02,0x0a,0x04,0x02,0x7f,0x04,0x02,0x01,0x06,0x38,0x10,0xff,0x10,0x24,0x7e,0x08,0x34,0x7e,0x04,0x00,0xff,0x20,0x40,0x80,0x70,0x0c -+// 23154 婲 ; -+,0x10,0x18,0x13,0x10,0x7e,0x14,0x14,0x24,0x24,0x19,0x0a,0x14,0x16,0x24,0x40,0x00,0x48,0x48,0xff,0x48,0x00,0x50,0x52,0x93,0x96,0x98,0xb0,0xd0,0x91,0x91,0x8f,0x80 -+// 23155 婳 ; -+,0x10,0x13,0x10,0x7c,0x24,0x25,0x25,0x25,0x25,0x25,0x19,0x09,0x15,0x27,0x44,0x00,0x00,0xff,0x00,0x7c,0x54,0x55,0x55,0x7d,0x55,0x55,0x55,0x7d,0x01,0xff,0x00,0x00 -+// 23156 婴 ; -+,0x1f,0x11,0x15,0x15,0x15,0x15,0x0a,0x19,0x21,0x7f,0x04,0x0f,0x00,0x01,0x06,0x38,0x7c,0x44,0x54,0x54,0x54,0x58,0x24,0x46,0x80,0xff,0x10,0x20,0xe0,0x98,0x0e,0x04 -+// 23157 婵 ; -+,0x10,0x18,0x10,0x10,0x7c,0x14,0x14,0x24,0x24,0x18,0x08,0x15,0x26,0x44,0x00,0x00,0x84,0x46,0x28,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 23158 婶 ; -+,0x10,0x10,0x10,0x7d,0x15,0x14,0x14,0x24,0x24,0x14,0x08,0x14,0x22,0x42,0x00,0x00,0x20,0x10,0xff,0x11,0x12,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x10,0x10,0x10 -+// 23159 婷 ; -+,0x10,0x18,0x13,0x10,0x7c,0x14,0x14,0x24,0x25,0x3a,0x08,0x14,0x12,0x22,0x40,0x00,0x40,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x02,0xfc,0x10,0x10,0x10,0x70,0x20 -+// 23160 婸 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x27,0x24,0x24,0x19,0x0a,0x14,0x13,0x22,0x40,0x03,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x4a,0x52,0x92,0x22,0x42,0x8a,0x04 -+// 23161 婹 ; -+,0x10,0x13,0x10,0x11,0x7d,0x25,0x25,0x24,0x28,0x2b,0x10,0x28,0x26,0x44,0x01,0x06,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x40,0x40,0xff,0x88,0xd0,0x30,0x4c,0x86,0x00 -+// 23162 婺 ; -+,0x3f,0x0a,0x04,0x3f,0x0d,0x16,0x24,0x54,0x0a,0x7f,0x02,0x04,0x07,0x01,0x06,0x18,0x20,0x20,0x3f,0x44,0xa4,0x18,0x18,0x27,0x42,0xff,0x20,0x20,0x40,0xb0,0x0e,0x04 -+// 23163 婻 ; -+,0x10,0x18,0x11,0x10,0x7c,0x25,0x25,0x25,0x25,0x25,0x29,0x19,0x15,0x25,0x41,0x01,0x10,0x10,0xff,0x10,0x10,0xff,0x45,0x29,0x7d,0x11,0xff,0x11,0x11,0x11,0x15,0x02 -+// 23164 婼 ; -+,0x10,0x18,0x13,0x10,0x7c,0x24,0x27,0x24,0x24,0x24,0x24,0x19,0x16,0x24,0x44,0x00,0x44,0x44,0xff,0x44,0x54,0x10,0xff,0x20,0x40,0xfe,0xc2,0x42,0x42,0x42,0x7e,0x42 -+// 23165 婽 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x15,0x25,0x25,0x19,0x0d,0x15,0x21,0x41,0x01,0x00,0xee,0x22,0x22,0xee,0x02,0x00,0xdf,0x12,0x12,0xd2,0x0c,0x0c,0x12,0x21,0x00 -+// 23166 婾 ; -+,0x10,0x18,0x10,0x10,0x7d,0x16,0x15,0x25,0x25,0x25,0x15,0x09,0x15,0x27,0x45,0x00,0x20,0x20,0x50,0x8c,0xff,0x00,0xea,0x2b,0xea,0x34,0xf4,0x2a,0x2a,0x25,0x65,0x00 -+// 23167 婿 ; -+,0x10,0x19,0x10,0x10,0x7c,0x25,0x25,0x26,0x24,0x18,0x08,0x14,0x16,0x24,0x40,0x00,0x00,0xff,0x12,0x9c,0x90,0x50,0x3f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 23168 媀 ; -+,0x10,0x18,0x10,0x10,0x7c,0x14,0x14,0x14,0x25,0x25,0x19,0x09,0x15,0x23,0x41,0x01,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x10,0xff,0x11,0x15,0x1f,0xe5,0x01,0x05,0x02 -+// 23169 媁 ; -+,0x10,0x18,0x10,0x10,0x7d,0x14,0x14,0x14,0x24,0x34,0x09,0x0c,0x13,0x22,0x40,0x00,0x20,0x20,0xfc,0x44,0xff,0x00,0xfe,0x82,0xfe,0x10,0xff,0x90,0xff,0x10,0x10,0x10 -+// 23170 媂 ; -+,0x10,0x18,0x11,0x7c,0x14,0x15,0x15,0x24,0x24,0x18,0x08,0x14,0x16,0x24,0x40,0x00,0x20,0x10,0xff,0x84,0x48,0xff,0x12,0x10,0xfe,0x92,0x92,0x92,0x92,0x96,0x10,0x10 -+// 23171 媃 ; -+,0x10,0x18,0x10,0x11,0x7e,0x12,0x12,0x25,0x24,0x25,0x18,0x08,0x14,0x24,0x41,0x00,0xfe,0x44,0x28,0xff,0x32,0x54,0x90,0x30,0x10,0xff,0x38,0x34,0x56,0x93,0x12,0x10 -+// 23172 媄 ; -+,0x10,0x18,0x11,0x10,0x7e,0x12,0x12,0x25,0x24,0x25,0x18,0x14,0x22,0x22,0x40,0x01,0x82,0x44,0xff,0x10,0xff,0x10,0x10,0xff,0x10,0xff,0x10,0x28,0x24,0x43,0x82,0x00 -+// 23173 媅 ; -+,0x10,0x18,0x13,0x10,0x7c,0x24,0x24,0x24,0x27,0x25,0x19,0x09,0x15,0x25,0x41,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0xff,0x48,0x64,0x46,0x84,0x02,0xff,0x00 -+// 23174 媆 ; -+,0x10,0x1b,0x10,0x11,0x7d,0x15,0x15,0x15,0x25,0x18,0x0b,0x14,0x16,0x24,0x41,0x02,0x00,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0x4a,0x06,0x20,0xff,0x20,0x50,0x88,0x07,0x02 -+// 23175 媇 ; -+,0x10,0x18,0x11,0x10,0x7c,0x14,0x15,0x14,0x24,0x25,0x18,0x08,0x14,0x25,0x40,0x00,0x20,0x10,0xff,0x84,0x66,0x48,0xff,0x10,0x10,0xff,0x10,0x94,0xd2,0x13,0x52,0x20 -+// 23176 媈 ; -+,0x10,0x11,0x11,0x10,0x7c,0x14,0x14,0x14,0x24,0x24,0x14,0x09,0x14,0x22,0x42,0x00,0x00,0xff,0x11,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 23177 媉 ; -+,0x10,0x11,0x11,0x11,0x7d,0x15,0x15,0x15,0x15,0x25,0x19,0x0d,0x15,0x12,0x24,0x00,0x00,0xfe,0x02,0xfe,0x00,0xff,0x10,0x12,0x2f,0x7a,0x08,0x7f,0x08,0x08,0xff,0x00 -+// 23178 媊 ; -+,0x10,0x18,0x10,0x13,0x7c,0x15,0x15,0x25,0x25,0x15,0x09,0x15,0x15,0x21,0x41,0x01,0x84,0x66,0x48,0xff,0x00,0xe2,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0x2a,0x64 -+// 23179 媋 ; -+,0x10,0x10,0x11,0x7c,0x14,0x14,0x25,0x24,0x24,0x15,0x0a,0x14,0x22,0x42,0x00,0x00,0x20,0x20,0xff,0x20,0xfc,0x20,0xff,0x48,0x84,0xff,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 23180 媌 ; -+,0x10,0x18,0x10,0x13,0x7c,0x14,0x15,0x15,0x25,0x25,0x19,0x09,0x15,0x27,0x45,0x00,0x48,0x48,0x48,0xff,0x48,0x48,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 23181 媍 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x24,0x24,0x24,0x24,0x14,0x08,0x14,0x22,0x40,0x01,0x40,0x7e,0x44,0x88,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x44,0x62,0x83,0x02 -+// 23182 媎 ; -+,0x10,0x18,0x10,0x10,0x7c,0x25,0x24,0x24,0x24,0x25,0x1a,0x08,0x14,0x22,0x40,0x00,0x20,0x22,0xff,0x22,0x24,0xff,0x10,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 23183 媏 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x25,0x24,0x24,0x25,0x15,0x09,0x15,0x25,0x41,0x00,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x4a,0x4a,0x06,0x00 -+// 23184 媐 ; -+,0x3f,0x22,0x2f,0x29,0x29,0x2f,0x22,0x3f,0x01,0x3f,0x02,0x04,0x03,0x00,0x07,0x38,0xbe,0x22,0x22,0x3e,0x20,0x21,0x21,0x9f,0x00,0xff,0x10,0x10,0x20,0xe0,0x18,0x06 -+// 23185 媑 ; -+,0x10,0x19,0x10,0x11,0x7c,0x14,0x14,0x14,0x14,0x24,0x14,0x08,0x14,0x22,0x41,0x00,0x1e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 23186 媒 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x12,0x12,0x14,0x24,0x27,0x18,0x08,0x15,0x22,0x44,0x00,0x84,0x84,0xff,0x84,0xfc,0x84,0xfc,0x20,0x22,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 23187 媓 ; -+,0x10,0x10,0x11,0x11,0x7d,0x15,0x15,0x24,0x25,0x24,0x14,0x09,0x14,0x24,0x43,0x00,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x20,0x24,0xfe,0x20,0x22,0xff,0x00 -+// 23188 媔 ; -+,0x10,0x13,0x10,0x10,0x7d,0x15,0x15,0x25,0x25,0x25,0x15,0x09,0x15,0x25,0x41,0x00,0x00,0xff,0x20,0x20,0xfe,0x4a,0x4a,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0xfe,0x02,0x00 -+// 23189 媕 ; -+,0x10,0x18,0x10,0x11,0x7e,0x15,0x15,0x25,0x24,0x24,0x17,0x08,0x14,0x21,0x41,0x02,0x20,0x50,0x88,0x74,0x03,0xfc,0x04,0xfc,0x88,0x88,0xff,0x88,0x88,0x08,0x08,0x08 -+// 23190 媖 ; -+,0x10,0x13,0x10,0x10,0x7c,0x15,0x15,0x25,0x25,0x27,0x14,0x0c,0x12,0x21,0x46,0x08,0x88,0xff,0x88,0xa8,0x20,0xfe,0x24,0x24,0x24,0xff,0x50,0x50,0x88,0x0c,0x07,0x02 -+// 23191 媗 ; -+,0x10,0x18,0x11,0x11,0x7e,0x14,0x14,0x24,0x24,0x24,0x14,0x08,0x14,0x24,0x41,0x00,0x20,0x10,0xff,0x01,0x00,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00,0xff,0x00 -+// 23192 媘 ; -+,0x11,0x11,0x11,0x11,0x7d,0x15,0x15,0x15,0x24,0x24,0x14,0x08,0x14,0x20,0x40,0x00,0x10,0x10,0x12,0xdf,0x10,0x51,0x8f,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 23193 媙 ; -+,0x10,0x10,0x10,0x7d,0x15,0x15,0x15,0x25,0x25,0x25,0x19,0x0a,0x16,0x25,0x48,0x00,0x08,0x0a,0x08,0xff,0x08,0xe8,0x4a,0xfb,0x2a,0x2a,0xa4,0x45,0xad,0x13,0x21,0x00 -+// 23194 媚 ; -+,0x08,0x0c,0x08,0x08,0x7e,0x12,0x12,0x12,0x25,0x35,0x09,0x0d,0x13,0x22,0x44,0x00,0x00,0xfe,0x92,0x92,0xfe,0x80,0xfe,0xc2,0xfe,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 23195 媛 ; -+,0x10,0x19,0x11,0x10,0x7d,0x14,0x14,0x25,0x24,0x24,0x18,0x08,0x15,0x22,0x44,0x03,0x1e,0xf0,0x22,0x94,0xff,0x20,0x20,0xff,0x40,0x7e,0xc4,0xa8,0x10,0x2c,0xc7,0x02 -+// 23196 媜 ; -+,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x24,0x24,0x14,0x08,0x0c,0x12,0x20,0x40,0x01,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x28,0x44,0x86,0x02 -+// 23197 媝 ; -+,0x07,0x3c,0x04,0x7f,0x0e,0x15,0x24,0x44,0x01,0x7f,0x02,0x07,0x00,0x03,0x3c,0x00,0x10,0x12,0x52,0x54,0x98,0x28,0x47,0x82,0x00,0xff,0x10,0x10,0xe0,0x98,0x06,0x00 -+// 23198 媞 ; -+,0x08,0x08,0x08,0x08,0x7e,0x12,0x12,0x15,0x24,0x24,0x18,0x08,0x15,0x23,0x42,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0xd0,0x9e,0x90,0x50,0x30,0x1f,0x02 -+// 23199 媟 ; -+,0x10,0x11,0x13,0x7d,0x15,0x15,0x25,0x25,0x28,0x2b,0x18,0x14,0x14,0x21,0x46,0x00,0x28,0x28,0xff,0x28,0x28,0x38,0x00,0xff,0x10,0xff,0x30,0x58,0x94,0x13,0x12,0x10 -+// 23200 媠 ; -+,0x08,0x08,0x09,0x08,0x7e,0x12,0x13,0x12,0x24,0x14,0x08,0x0c,0x12,0x22,0x40,0x00,0x20,0x20,0xff,0x40,0x7e,0x90,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84 -+// 23201 媡 ; -+,0x10,0x10,0x13,0x7c,0x15,0x15,0x25,0x25,0x25,0x25,0x18,0x0d,0x12,0x24,0x40,0x00,0x20,0x22,0xff,0x20,0xfe,0x26,0xaa,0x72,0xfe,0x72,0xa8,0x2c,0x26,0x23,0x20,0x20 -+// 23202 媢 ; -+,0x10,0x11,0x11,0x11,0x7d,0x15,0x14,0x24,0x24,0x28,0x18,0x18,0x24,0x44,0x00,0x00,0x00,0xfe,0x02,0x7a,0x02,0x7a,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00 -+// 23203 媣 ; -+,0x11,0x10,0x12,0x7d,0x14,0x16,0x25,0x25,0x24,0x25,0x18,0x08,0x14,0x21,0x42,0x00,0x10,0x90,0x7c,0x14,0x95,0xa5,0x27,0x50,0x10,0xff,0x38,0x58,0x94,0x13,0x12,0x10 -+// 23204 媤 ; -+,0x10,0x10,0x10,0x10,0x7c,0x14,0x14,0x14,0x24,0x34,0x09,0x0d,0x11,0x22,0x40,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x20,0x14,0x5a,0x51,0x45,0x46,0x3c,0x00 -+// 23205 媥 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x24,0x24,0x34,0x09,0x09,0x15,0x22,0x44,0x00,0x20,0x10,0xfe,0x82,0x82,0xfe,0x80,0xff,0xd5,0xd5,0x7f,0x55,0x55,0x55,0x41,0x43 -+// 23206 媦 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x14,0x14,0x24,0x24,0x18,0x08,0x14,0x22,0x40,0x00,0x00,0xff,0x11,0xff,0x11,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 23207 媧 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x25,0x25,0x25,0x15,0x09,0x15,0x15,0x21,0x41,0x01,0x00,0xfe,0x82,0xf2,0x92,0x92,0xff,0x01,0x7d,0x45,0x45,0x7d,0x45,0x01,0x05,0x02 -+// 23208 媨 ; -+,0x10,0x18,0x10,0x11,0x7c,0x14,0x15,0x25,0x25,0x25,0x19,0x09,0x15,0x25,0x41,0x00,0x82,0x44,0x28,0xff,0x28,0x28,0xfe,0x2a,0x4a,0x8e,0x02,0xfe,0x02,0xfe,0x02,0x00 -+// 23209 媩 ; -+,0x10,0x18,0x10,0x7d,0x14,0x14,0x14,0x25,0x25,0x19,0x09,0x15,0x15,0x24,0x40,0x00,0x80,0x8f,0x89,0xe9,0x89,0x8f,0x89,0xe9,0x2f,0x29,0xe9,0x29,0x11,0x11,0x25,0x42 -+// 23210 媪 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x24,0x24,0x24,0x25,0x15,0x09,0x15,0x21,0x43,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 23211 媫 ; -+,0x10,0x10,0x10,0x10,0x7c,0x14,0x25,0x24,0x24,0x24,0x18,0x14,0x24,0x21,0x42,0x04,0x20,0x20,0x3e,0x20,0xfe,0x02,0xff,0x02,0xfe,0x10,0x9e,0x90,0x90,0x50,0x3f,0x00 -+// 23212 媬 ; -+,0x10,0x10,0x10,0x10,0x7d,0x25,0x27,0x25,0x25,0x19,0x09,0x15,0x15,0x21,0x41,0x01,0x80,0xfe,0xa2,0xa2,0x22,0x3e,0x08,0x7f,0x18,0x1c,0x2a,0x2b,0x4a,0x88,0x08,0x08 -+// 23213 媭 ; -+,0x05,0x08,0x10,0x64,0x08,0x36,0x44,0x18,0x60,0x01,0x3f,0x02,0x03,0x00,0x07,0x78,0xff,0x20,0xfc,0x84,0xa4,0xa4,0xa0,0x58,0x86,0x00,0xff,0x10,0x10,0xe0,0x1e,0x04 -+// 23214 媮 ; -+,0x10,0x10,0x10,0x10,0x7d,0x16,0x14,0x25,0x25,0x25,0x19,0x15,0x25,0x21,0x41,0x01,0x10,0x28,0x44,0x82,0x01,0xfe,0x00,0xe2,0x2a,0xea,0x2a,0xea,0x2a,0x22,0x2a,0x64 -+// 23215 媯 ; -+,0x11,0x18,0x10,0x11,0x7e,0x14,0x14,0x14,0x24,0x39,0x0a,0x14,0x15,0x21,0x42,0x00,0x20,0xa0,0x20,0xfc,0x44,0x7e,0x82,0x82,0xff,0x01,0xa9,0x55,0x55,0x01,0x05,0x02 -+// 23216 媰 ; -+,0x10,0x10,0x10,0x11,0x7e,0x14,0x14,0x25,0x24,0x19,0x0a,0x14,0x14,0x20,0x40,0x03,0x40,0x7e,0xc2,0x2a,0xaa,0xfa,0x42,0x86,0xff,0x01,0xa9,0xf9,0xa9,0x41,0x85,0x02 -+// 23217 媱 ; -+,0x10,0x10,0x11,0x11,0x7c,0x14,0x14,0x14,0x25,0x25,0x18,0x08,0x14,0x26,0x44,0x00,0x00,0x1e,0xe2,0x23,0x92,0x54,0xff,0x90,0x10,0xff,0x10,0x92,0x92,0x92,0xfe,0x00 -+// 23218 媲 ; -+,0x10,0x10,0x11,0x11,0x7d,0x25,0x25,0x24,0x25,0x19,0x09,0x15,0x15,0x21,0x43,0x01,0x20,0x40,0xfe,0x4a,0x32,0x4a,0xfe,0x00,0x08,0x09,0xee,0x08,0x08,0x49,0x87,0x00 -+// 23219 媳 ; -+,0x10,0x10,0x10,0x10,0x7e,0x12,0x14,0x14,0x24,0x34,0x08,0x15,0x15,0x21,0x42,0x00,0x30,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x20,0x12,0x51,0x45,0x44,0x3c,0x00 -+// 23220 媴 ; -+,0x10,0x18,0x11,0x10,0x7f,0x24,0x24,0x24,0x24,0x24,0x14,0x18,0x15,0x26,0x44,0x00,0x20,0x20,0xfe,0x20,0xff,0x00,0xfc,0x84,0xfc,0xa0,0x56,0x94,0x88,0xac,0xc7,0x82 -+// 23221 媵 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x27,0x24,0x24,0x3d,0x27,0x24,0x24,0x24,0x54,0x48,0x03,0x20,0x24,0xa8,0xfe,0x20,0xff,0x48,0x84,0x23,0xfe,0x48,0x88,0x50,0x20,0xd8,0x06 -+// 23222 媶 ; -+,0x08,0x08,0x09,0x10,0x7e,0x12,0x12,0x12,0x24,0x24,0x18,0x0c,0x15,0x20,0x40,0x00,0x44,0x44,0xff,0x44,0xff,0x44,0x44,0x7c,0x44,0x7c,0x44,0x5f,0xe4,0x84,0x04,0x04 -+// 23223 媷 ; -+,0x10,0x11,0x11,0x11,0x7d,0x15,0x25,0x25,0x45,0x25,0x19,0x19,0x25,0x22,0x42,0x04,0x00,0xff,0x00,0x7c,0x00,0xff,0x54,0x48,0x67,0x42,0x04,0x7f,0x24,0x24,0x14,0x08 -+// 23224 媸 ; -+,0x10,0x10,0x10,0x10,0x7c,0x24,0x25,0x24,0x24,0x14,0x08,0x0c,0x12,0x22,0x41,0x00,0x00,0x92,0x92,0x92,0xfe,0x10,0xff,0x10,0xfe,0x92,0xfe,0x90,0x12,0x1f,0xe2,0x80 -+// 23225 媹 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x15,0x24,0x34,0x08,0x14,0x12,0x22,0x40,0x00,0x20,0xdf,0x09,0x49,0x29,0x6d,0x92,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82,0x00 -+// 23226 媺 ; -+,0x20,0x20,0x22,0x22,0x7b,0x28,0x2b,0x28,0x29,0x29,0x11,0x2a,0x2a,0x44,0x08,0x00,0x84,0xa4,0xa8,0xa8,0xef,0x12,0xf2,0x0a,0xca,0x4a,0x44,0x64,0x44,0x0a,0x11,0x20 -+// 23227 媻 ; -+,0x08,0x1f,0x19,0x15,0x3f,0x19,0x15,0x11,0x22,0x01,0x7f,0x04,0x06,0x01,0x06,0x38,0x00,0x3c,0x24,0x27,0x40,0x3c,0x24,0x18,0x24,0x42,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 23228 媼 ; -+,0x10,0x11,0x11,0x11,0x7d,0x15,0x15,0x24,0x24,0x39,0x09,0x15,0x15,0x21,0x07,0x00,0x00,0xfc,0x24,0x24,0x54,0x8c,0xfc,0x00,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 23229 媽 ; -+,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x22,0x24,0x14,0x09,0x15,0x16,0x24,0x40,0x00,0x00,0xfe,0x90,0xfe,0x90,0x90,0xfe,0x90,0xff,0x01,0x55,0x55,0x55,0x01,0x0a,0x04 -+// 23230 媾 ; -+,0x10,0x11,0x10,0x11,0x7c,0x17,0x14,0x15,0x25,0x25,0x19,0x0b,0x15,0x21,0x41,0x01,0x48,0xff,0x48,0xfe,0x48,0xff,0x20,0xfc,0x24,0xfc,0x24,0xff,0x04,0x04,0x14,0x08 -+// 23231 媿 ; -+,0x10,0x10,0x11,0x11,0x7d,0x15,0x15,0x15,0x25,0x14,0x08,0x08,0x14,0x21,0x42,0x04,0x10,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x50,0x54,0x5a,0x9f,0x92,0x11,0x0f,0x00 -+// 23232 嫀 ; -+,0x10,0x10,0x11,0x10,0x7c,0x24,0x25,0x24,0x24,0x15,0x0a,0x14,0x14,0x20,0x41,0x00,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x44,0xfa,0x11,0xfe,0x38,0x54,0x92,0x12,0x10 -+// 23233 嫁 ; -+,0x10,0x10,0x11,0x11,0x7c,0x14,0x14,0x24,0x27,0x24,0x29,0x1a,0x14,0x25,0x40,0x00,0x20,0x10,0xff,0x02,0xfc,0x20,0x44,0xa6,0x68,0x98,0x34,0x52,0x93,0x12,0x50,0x20 -+// 23234 嫂 ; -+,0x10,0x10,0x11,0x11,0x7d,0x15,0x15,0x15,0x24,0x25,0x18,0x14,0x26,0x24,0x41,0x06,0x10,0x50,0x97,0x11,0xd7,0x11,0xff,0x11,0x10,0xfe,0x84,0x48,0x30,0x4c,0x87,0x02 -+// 23235 嫃 ; -+,0x10,0x10,0x11,0x10,0x7c,0x14,0x14,0x24,0x24,0x24,0x14,0x08,0x15,0x26,0x44,0x01,0x20,0x20,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0x86,0x04 -+// 23236 嫄 ; -+,0x10,0x11,0x11,0x11,0x7d,0x15,0x15,0x15,0x25,0x25,0x19,0x09,0x15,0x22,0x42,0x04,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x08,0x48,0x6a,0x49,0x89,0x28,0x10 -+// 23237 嫅 ; -+,0x10,0x10,0x10,0x11,0x7c,0x14,0x14,0x14,0x25,0x34,0x08,0x08,0x14,0x25,0x42,0x00,0x84,0x46,0x28,0xff,0x10,0xfe,0x20,0x20,0xff,0x40,0x7e,0x88,0x88,0x08,0xff,0x00 -+// 23238 嫆 ; -+,0x10,0x10,0x11,0x11,0x7c,0x24,0x25,0x24,0x24,0x15,0x0a,0x14,0x16,0x24,0x40,0x00,0x20,0x10,0xff,0x02,0x48,0xa6,0x22,0x50,0x8c,0xff,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 23239 嫇 ; -+,0x10,0x18,0x11,0x11,0x7e,0x24,0x24,0x24,0x24,0x24,0x18,0x0d,0x16,0x24,0x41,0x02,0x00,0xfe,0x01,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x20,0x10,0xff,0x48,0x86,0x02,0x00 -+// 23240 嫈 ; -+,0x04,0x15,0x16,0x24,0x0a,0x11,0x1f,0x21,0x21,0x7f,0x02,0x06,0x01,0x03,0x0c,0x30,0x10,0x52,0x54,0x90,0x28,0x44,0xff,0x02,0x04,0xff,0x20,0x20,0xc0,0x30,0x0e,0x04 -+// 23241 嫉 ; -+,0x10,0x10,0x10,0x7c,0x14,0x16,0x25,0x24,0x25,0x1a,0x08,0x15,0x15,0x22,0x44,0x00,0x10,0x08,0xff,0xa0,0xa0,0xbe,0xc8,0x88,0xff,0x88,0x88,0x14,0x12,0x23,0x42,0x00 -+// 23242 嫊 ; -+,0x10,0x11,0x10,0x10,0x7c,0x15,0x14,0x14,0x24,0x14,0x08,0x14,0x12,0x20,0x41,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x20,0x4c,0xf0,0x42,0xff,0x12,0x54,0x93,0x52,0x20 -+// 23243 嫋 ; -+,0x10,0x11,0x10,0x10,0x7d,0x15,0x25,0x25,0x25,0x24,0x24,0x18,0x15,0x22,0x40,0x00,0x00,0xef,0x21,0x21,0xef,0x08,0x08,0xff,0x21,0xa9,0x65,0xa9,0x31,0x21,0xa5,0x42 -+// 23244 嫌 ; -+,0x11,0x10,0x13,0x7c,0x15,0x14,0x27,0x24,0x24,0x19,0x08,0x14,0x15,0x22,0x44,0x00,0x04,0x88,0xff,0x50,0xfc,0x54,0xff,0x54,0x54,0xfc,0xd0,0xd8,0x54,0x53,0x52,0x50 -+// 23245 嫍 ; -+,0x10,0x10,0x11,0x7c,0x14,0x14,0x14,0x24,0x24,0x24,0x18,0x14,0x22,0x20,0x40,0x00,0x00,0x0f,0xf2,0x23,0x92,0x54,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x82,0x00 -+// 23246 嫎 ; -+,0x10,0x11,0x10,0x7c,0x14,0x15,0x25,0x26,0x25,0x24,0x18,0x08,0x14,0x24,0x40,0x01,0x20,0xff,0x84,0x66,0x48,0xff,0x22,0x10,0xff,0x20,0x3c,0x24,0x44,0x44,0x94,0x08 -+// 23247 嫏 ; -+,0x10,0x10,0x11,0x7d,0x15,0x15,0x25,0x25,0x25,0x19,0x09,0x15,0x23,0x21,0x40,0x00,0x80,0x4f,0xe9,0x2a,0x2a,0xec,0x2c,0xea,0x29,0x09,0x4d,0x6a,0xa8,0x08,0x08,0x08 -+// 23248 嫐 ; -+,0x13,0x12,0x12,0x13,0x7a,0x2b,0x28,0x28,0x4b,0x28,0x10,0x10,0x29,0x29,0x42,0x04,0xe4,0xa4,0xa4,0xe4,0xbf,0xea,0x8a,0x8a,0xea,0xaa,0xa4,0xa6,0x2a,0x29,0xb1,0x40 -+// 23249 嫑 ; -+,0x3f,0x00,0x01,0x06,0x38,0x1f,0x02,0x1f,0x12,0x1f,0x02,0x7f,0x04,0x03,0x0c,0x30,0xff,0xc0,0xb0,0x8c,0x88,0xfc,0x40,0xfc,0x44,0xfc,0x00,0xff,0x20,0xc0,0x30,0x0e -+// 23250 嫒 ; -+,0x10,0x19,0x10,0x10,0x7d,0x15,0x14,0x25,0x24,0x18,0x08,0x16,0x15,0x22,0x40,0x03,0x1e,0xf2,0xa3,0x54,0xff,0x22,0x20,0xfe,0x40,0x78,0x48,0xa8,0x10,0x28,0xc7,0x02 -+// 23251 嫓 ; -+,0x10,0x18,0x10,0x10,0x7d,0x24,0x24,0x24,0x24,0x14,0x08,0x14,0x12,0x20,0x41,0x00,0x40,0x7e,0x42,0x84,0xff,0xa5,0x99,0xa5,0x00,0x88,0xe9,0x8e,0x88,0xa9,0xc9,0x87 -+// 23252 嫔 ; -+,0x10,0x18,0x11,0x11,0x7e,0x24,0x24,0x24,0x24,0x18,0x0b,0x14,0x16,0x24,0x41,0x02,0x20,0x10,0xff,0x01,0x1a,0xe0,0x80,0xfe,0x88,0x88,0xff,0x00,0x88,0xc6,0x04,0x00 -+// 23253 嫕 ; -+,0x10,0x11,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x25,0x18,0x14,0x22,0x22,0x44,0x00,0x00,0xfe,0x40,0x7c,0x50,0xfe,0x10,0x28,0x44,0xff,0x20,0x9a,0x91,0x85,0x7c,0x00 -+// 23254 嫖 ; -+,0x10,0x1b,0x10,0x11,0x7d,0x15,0x15,0x14,0x24,0x18,0x09,0x14,0x12,0x21,0x42,0x00,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x10,0x94,0x13,0x52,0x20 -+// 23255 嫗 ; -+,0x10,0x19,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x25,0x19,0x09,0x15,0x25,0x41,0x00,0x00,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00,0x77,0x55,0x55,0x77,0x55,0x00,0xff,0x00 -+// 23256 嫘 ; -+,0x10,0x18,0x10,0x10,0x7c,0x14,0x14,0x14,0x24,0x34,0x08,0x04,0x12,0x20,0x41,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x48,0xfc,0x22,0xff,0x12,0x54,0x93,0x52,0x20 -+// 23257 嫙 ; -+,0x12,0x11,0x11,0x7b,0x29,0x29,0x29,0x29,0x29,0x29,0x11,0x12,0x2a,0x25,0x48,0x00,0x08,0x88,0x1f,0xd0,0x20,0xdf,0x41,0x44,0x57,0x54,0x54,0x54,0x54,0x54,0xac,0x47 -+// 23258 嫚 ; -+,0x10,0x18,0x10,0x10,0x7c,0x14,0x15,0x15,0x25,0x34,0x09,0x0c,0x12,0x20,0x40,0x07,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 23259 嫛 ; -+,0x1f,0x14,0x17,0x1a,0x1f,0x12,0x15,0x1f,0x02,0x7f,0x02,0x04,0x02,0x01,0x06,0x38,0x9e,0x12,0x92,0x23,0xc0,0x3e,0x14,0xc8,0x16,0xff,0x10,0x20,0x40,0x80,0x60,0x1c -+// 23260 嫜 ; -+,0x10,0x19,0x10,0x10,0x7d,0x14,0x14,0x24,0x24,0x18,0x08,0x14,0x17,0x24,0x40,0x00,0x10,0xff,0x44,0x28,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 23261 嫝 ; -+,0x10,0x18,0x11,0x7d,0x15,0x15,0x15,0x25,0x25,0x39,0x09,0x15,0x12,0x22,0x44,0x08,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0xfe,0x14,0x56,0x38,0x54,0x93,0x52,0x20 -+// 23262 嫞 ; -+,0x10,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x29,0x19,0x09,0x15,0x13,0x21,0x42,0x04,0x10,0xff,0x08,0x7e,0x0a,0xff,0x0a,0x7e,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x4b -+// 23263 嫟 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x39,0x09,0x15,0x15,0x21,0x41,0x00,0x00,0xff,0x44,0xff,0x44,0x54,0xff,0x20,0x3e,0x62,0xa2,0x22,0x3e,0x00,0xff,0x00 -+// 23264 嫠 ; -+,0x04,0x1f,0x04,0x3f,0x0e,0x15,0x64,0x1f,0x10,0x1f,0x11,0x12,0x11,0x10,0x21,0x46,0x20,0x3f,0x24,0x54,0x08,0x14,0x22,0xff,0x80,0xfe,0x08,0x10,0xa0,0x40,0xb0,0x0c -+// 23265 嫡 ; -+,0x10,0x18,0x11,0x10,0x7c,0x15,0x15,0x15,0x25,0x39,0x09,0x15,0x17,0x25,0x41,0x01,0x20,0x10,0xff,0x84,0x48,0xff,0x11,0x11,0x7d,0x11,0x7d,0x45,0x7d,0x45,0x01,0x03 -+// 23266 嫢 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x04,0x0a,0x11,0x21,0x02,0x3f,0x04,0x03,0x00,0x03,0x1c,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x29,0x4f,0x80,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 23267 嫣 ; -+,0x10,0x19,0x10,0x10,0x7c,0x27,0x24,0x24,0x24,0x14,0x08,0x14,0x15,0x21,0x42,0x00,0x00,0xfe,0x20,0xbc,0xa0,0xff,0x80,0xfe,0x80,0xfe,0x02,0xa2,0x52,0x52,0x0a,0x04 -+// 23268 嫤 ; -+,0x10,0x18,0x11,0x10,0x7c,0x14,0x14,0x14,0x24,0x24,0x18,0x08,0x14,0x22,0x41,0x00,0x44,0x44,0xff,0x44,0x7c,0x10,0xfe,0x92,0xfe,0x10,0xff,0x10,0xfe,0x10,0xff,0x00 -+// 23269 嫥 ; -+,0x10,0x19,0x10,0x11,0x7d,0x25,0x25,0x25,0x24,0x25,0x18,0x15,0x22,0x22,0x40,0x00,0x24,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xfe,0x0a,0xff,0x88,0x88,0x28,0x10 -+// 23270 嫦 ; -+,0x10,0x18,0x10,0x11,0x7d,0x26,0x24,0x24,0x24,0x25,0x19,0x19,0x25,0x25,0x40,0x00,0x10,0x92,0x54,0xff,0x02,0xfc,0x84,0xfc,0x20,0xfe,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 23271 嫧 ; -+,0x10,0x19,0x10,0x10,0x7c,0x15,0x14,0x24,0x24,0x24,0x18,0x08,0x14,0x22,0x40,0x01,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 23272 嫨 ; -+,0x10,0x19,0x10,0x10,0x7c,0x25,0x25,0x25,0x24,0x25,0x18,0x15,0x26,0x24,0x41,0x06,0x48,0xff,0x48,0x78,0x00,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x20,0x50,0x8c,0x03 -+// 23273 嫩 ; -+,0x10,0x18,0x10,0x13,0x78,0x2b,0x2a,0x2a,0x2b,0x29,0x11,0x2a,0x2a,0x44,0x08,0x00,0x88,0x8c,0x88,0xe8,0x8f,0xf2,0xb2,0xaa,0xea,0x8a,0xca,0xa4,0x84,0x8a,0x91,0xa0 -+// 23274 嫪 ; -+,0x11,0x10,0x18,0x10,0x7c,0x25,0x24,0x24,0x25,0x16,0x08,0x14,0x15,0x20,0x40,0x03,0xee,0x32,0xaa,0x66,0xaa,0x12,0x28,0x44,0x9b,0x30,0xcc,0x33,0xcc,0x30,0xc0,0x00 -+// 23275 嫫 ; -+,0x10,0x18,0x13,0x10,0x7d,0x15,0x25,0x25,0x25,0x24,0x1b,0x08,0x14,0x24,0x41,0x02,0x88,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 23276 嫬 ; -+,0x10,0x18,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x15,0x09,0x09,0x15,0x22,0x42,0x04,0x20,0x10,0xff,0x00,0x24,0x24,0xff,0x24,0x24,0x3c,0x24,0x00,0x55,0x95,0x95,0x00 -+// 23277 嫭 ; -+,0x10,0x18,0x10,0x11,0x7d,0x15,0x15,0x25,0x25,0x15,0x09,0x15,0x15,0x22,0x42,0x04,0x20,0x3c,0x20,0xff,0x22,0xf8,0x24,0x3c,0x0e,0x78,0x2a,0xff,0x08,0x08,0x28,0x10 -+// 23278 嫮 ; -+,0x11,0x18,0x13,0x12,0x3d,0x14,0x14,0x25,0x24,0x15,0x08,0x14,0x12,0x22,0x40,0x00,0xfe,0x20,0xff,0x21,0xac,0x20,0x00,0xfe,0x00,0xff,0x80,0xfe,0x02,0x02,0x0a,0x04 -+// 23279 嫯 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x3f,0x09,0x15,0x22,0x01,0x7f,0x04,0x0e,0x01,0x06,0x38,0x20,0xa0,0x3f,0x42,0x24,0x98,0x24,0x43,0x00,0x00,0xff,0x10,0x60,0x80,0x70,0x0e -+// 23280 嫰 ; -+,0x10,0x18,0x10,0x13,0x78,0x2b,0x2a,0x2a,0x2b,0x29,0x11,0x2a,0x22,0x44,0x00,0x00,0x88,0x8c,0x88,0xef,0x91,0xf4,0xa4,0xa4,0xe4,0x84,0xc4,0xaa,0x8a,0x91,0xa1,0x80 -+// 23281 嫱 ; -+,0x10,0x18,0x11,0x10,0x7d,0x24,0x27,0x24,0x25,0x25,0x19,0x19,0x25,0x27,0x45,0x00,0x20,0x20,0xfe,0x20,0x24,0xa8,0xff,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0xfe,0x00 -+// 23282 嫲 ; -+,0x10,0x18,0x13,0x7a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x13,0x13,0x2a,0x22,0x44,0x08,0x20,0x10,0xff,0x44,0x44,0x44,0xff,0xcc,0xee,0xd6,0x55,0x65,0x44,0x44,0x44,0x44 -+// 23283 嫳 ; -+,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x24,0x20,0x02,0x3f,0x04,0x03,0x00,0x07,0x38,0xa0,0x20,0xbf,0xa4,0xd4,0x88,0x88,0x97,0xa2,0x00,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 23284 嫴 ; -+,0x10,0x1b,0x10,0x10,0x7c,0x14,0x24,0x25,0x44,0x24,0x19,0x08,0x15,0x24,0x40,0x00,0x10,0xff,0x10,0xfe,0x82,0xfe,0x10,0xff,0x44,0x28,0xff,0x10,0xff,0x10,0x10,0x10 -+// 23285 嫵 ; -+,0x10,0x18,0x10,0x11,0x7e,0x14,0x25,0x24,0x24,0x18,0x0b,0x14,0x15,0x21,0x42,0x00,0x80,0xc0,0x80,0xff,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0x00,0x4a,0x25,0x25,0x00 -+// 23286 嫶 ; -+,0x10,0x18,0x10,0x10,0x7d,0x26,0x24,0x24,0x24,0x24,0x18,0x14,0x25,0x21,0x42,0x00,0x90,0xc8,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80,0x52,0x2d,0x29,0x00 -+// 23287 嫷 ; -+,0x23,0x32,0x22,0x7a,0x2b,0x2b,0x2a,0x2a,0x4a,0x32,0x13,0x2a,0x2a,0x42,0x02,0x02,0x90,0xbf,0x90,0xbe,0x48,0x7f,0x80,0xbe,0xa2,0xbe,0x22,0x3e,0x22,0x22,0x2a,0x24 -+// 23288 嫸 ; -+,0x10,0x18,0x11,0x7c,0x16,0x14,0x15,0x24,0x24,0x1b,0x08,0x14,0x12,0x20,0x40,0x00,0x84,0x48,0xff,0x10,0xfe,0x10,0xff,0x92,0x54,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82 -+// 23289 嫹 ; -+,0x10,0x18,0x11,0x10,0x7d,0x14,0x14,0x14,0x24,0x14,0x08,0x14,0x12,0x20,0x40,0x01,0x44,0x44,0xff,0x44,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x44,0x62,0x83,0x02 -+// 23290 嫺 ; -+,0x10,0x19,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x19,0x09,0x15,0x15,0x21,0x41,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0xa9,0x15,0x02 -+// 23291 嫻 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x19,0x09,0x15,0x27,0x45,0x01,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x11,0x11,0xff,0x39,0x35,0x57,0x95,0x11,0x15,0x02 -+// 23292 嫼 ; -+,0x10,0x18,0x10,0x10,0x7c,0x24,0x24,0x24,0x24,0x18,0x09,0x14,0x15,0x21,0x42,0x00,0x00,0xfe,0x92,0xd6,0xba,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00,0x52,0x29,0x29,0x00 -+// 23293 嫽 ; -+,0x10,0x18,0x11,0x12,0x7d,0x25,0x26,0x24,0x24,0x18,0x08,0x08,0x14,0x21,0x42,0x00,0x20,0x20,0xff,0x52,0x8c,0x07,0xfe,0x84,0xfc,0x84,0xfc,0x20,0xa8,0x26,0xa4,0x40 -+// 23294 嫾 ; -+,0x10,0x18,0x10,0x11,0x7c,0x24,0x27,0x25,0x25,0x25,0x1b,0x08,0x14,0x21,0x42,0x04,0x10,0x92,0x54,0xff,0x58,0x94,0x13,0x04,0xff,0x54,0x54,0xff,0x84,0x04,0x04,0x00 -+// 23295 嫿 ; -+,0x10,0x11,0x10,0x11,0x7c,0x25,0x24,0x27,0x48,0x29,0x11,0x19,0x27,0x25,0x40,0x07,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff -+// 23296 嬀 ; -+,0x10,0x19,0x11,0x10,0x7d,0x25,0x25,0x25,0x25,0x25,0x19,0x0d,0x13,0x21,0x42,0x04,0x1e,0xe2,0x22,0x94,0xfc,0x04,0xfe,0x02,0x02,0xff,0x01,0x55,0x55,0x51,0x85,0x02 -+// 23297 嬁 ; -+,0x10,0x1b,0x12,0x11,0x7c,0x25,0x26,0x24,0x28,0x28,0x10,0x10,0x28,0x24,0x43,0x00,0x10,0xd4,0x5a,0x4c,0x84,0xff,0x02,0xfc,0x84,0x84,0xfc,0x00,0x84,0x48,0xff,0x00 -+// 23298 嬂 ; -+,0x11,0x18,0x13,0x7e,0x15,0x17,0x24,0x27,0x2a,0x1a,0x0b,0x16,0x22,0x43,0x02,0x00,0x08,0x8c,0xea,0x2a,0x48,0xff,0x08,0xea,0x2b,0x2c,0xec,0x28,0x35,0xe5,0x23,0x00 -+// 23299 嬃 ; -+,0x0b,0x10,0x23,0x45,0x19,0x61,0x05,0x18,0x61,0x02,0x7f,0x04,0x02,0x01,0x0e,0x70,0xfe,0x40,0xfc,0xa4,0x54,0x04,0xfc,0xd8,0x06,0x00,0xff,0x10,0x20,0xc0,0x38,0x07 -+// 23300 嬄 ; -+,0x10,0x1b,0x10,0x11,0x7c,0x25,0x25,0x26,0x44,0x44,0x34,0x08,0x14,0x20,0x43,0x00,0x20,0xff,0x20,0xfe,0x00,0xff,0x02,0xfc,0x00,0xfc,0x84,0xfc,0x84,0x48,0xff,0x00 -+// 23301 嬅 ; -+,0x10,0x13,0x10,0x10,0x7d,0x14,0x27,0x24,0x24,0x19,0x08,0x15,0x12,0x20,0x40,0x00,0x48,0xff,0x48,0x00,0xff,0x94,0xff,0x94,0x94,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 23302 嬆 ; -+,0x10,0x18,0x10,0x10,0x7d,0x24,0x24,0x24,0x24,0x25,0x18,0x08,0x14,0x21,0x40,0x00,0x10,0x28,0x44,0xbb,0x00,0xfe,0x82,0xfe,0x00,0xfe,0xaa,0x66,0xaa,0x32,0xaa,0x44 -+// 23303 嬇 ; -+,0x10,0x18,0x10,0x10,0x7c,0x25,0x24,0x24,0x44,0x24,0x18,0x14,0x26,0x24,0x40,0x01,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 23304 嬈 ; -+,0x10,0x18,0x10,0x10,0x7d,0x24,0x25,0x24,0x27,0x18,0x09,0x14,0x12,0x20,0x41,0x02,0x10,0x10,0xfe,0x10,0xff,0x84,0xdf,0x84,0xdf,0x00,0xff,0x48,0x49,0x89,0x07,0x00 -+// 23305 嬉 ; -+,0x10,0x19,0x10,0x10,0x7e,0x12,0x12,0x24,0x24,0x24,0x19,0x08,0x14,0x22,0x40,0x00,0x10,0xff,0x10,0xfe,0x00,0xfc,0x84,0xfc,0x84,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84 -+// 23306 嬊 ; -+,0x02,0x7f,0x02,0x03,0x08,0x3b,0x0a,0x1b,0x6a,0x01,0x7f,0x02,0x03,0x00,0x07,0x38,0x20,0xff,0x20,0xe0,0x08,0xef,0x28,0xe9,0x27,0x00,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 23307 嬋 ; -+,0x11,0x19,0x11,0x11,0x7c,0x25,0x25,0x25,0x25,0x15,0x08,0x17,0x14,0x24,0x40,0x00,0xef,0x29,0x29,0xef,0x00,0xff,0x11,0xff,0x11,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 23308 嬌 ; -+,0x10,0x19,0x10,0x13,0x7c,0x14,0x15,0x26,0x24,0x25,0x19,0x09,0x15,0x25,0x41,0x01,0x0c,0xf0,0x20,0xff,0x48,0xfc,0x8a,0xf9,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x06 -+// 23309 嬍 ; -+,0x10,0x1a,0x12,0x12,0x7b,0x28,0x2b,0x28,0x2b,0x28,0x13,0x10,0x28,0x27,0x44,0x00,0x88,0xac,0xa8,0xa8,0xef,0x12,0xf2,0x0a,0xea,0x8a,0xe4,0x84,0xe4,0x0a,0x11,0x21 -+// 23310 嬎 ; -+,0x21,0x31,0x21,0x22,0x7b,0x2a,0x2a,0x2a,0x2b,0x2a,0x28,0x11,0x11,0x2a,0x4a,0x04,0x04,0xe4,0x3c,0x54,0xff,0xa4,0xa4,0xa4,0xff,0x84,0x84,0x44,0x5f,0x41,0x3f,0x00 -+// 23311 嬏 ; -+,0x10,0x19,0x11,0x10,0x7f,0x24,0x24,0x25,0x27,0x25,0x19,0x19,0x25,0x25,0x41,0x00,0x1e,0xe4,0x26,0xa8,0xff,0x70,0xac,0x27,0xfe,0x24,0xfc,0x24,0x24,0xfc,0x04,0x00 -+// 23312 嬐 ; -+,0x10,0x18,0x10,0x10,0x7d,0x26,0x25,0x25,0x25,0x25,0x19,0x08,0x14,0x21,0x42,0x04,0x20,0x20,0x50,0x8c,0xfb,0x00,0xde,0x52,0x52,0xde,0x52,0x88,0x88,0x54,0x52,0x21 -+// 23313 嬑 ; -+,0x10,0x19,0x10,0x10,0x7f,0x24,0x24,0x24,0x44,0x64,0x18,0x08,0x15,0x21,0x42,0x00,0x20,0xff,0x84,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x12,0x49,0x45,0x7c,0x00 -+// 23314 嬒 ; -+,0x10,0x18,0x10,0x11,0x7e,0x25,0x25,0x25,0x25,0x14,0x08,0x08,0x16,0x22,0x40,0x00,0x20,0x50,0x88,0xff,0x02,0xfe,0xaa,0x72,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 23315 嬓 ; -+,0x10,0x18,0x11,0x11,0x7d,0x15,0x25,0x24,0x2b,0x49,0x29,0x19,0x15,0x22,0x42,0x04,0x44,0x86,0xe4,0x28,0xef,0x2a,0xf2,0x92,0xea,0x04,0xe4,0x24,0x2a,0x31,0xa1,0x40 -+// 23316 嬔 ; -+,0x11,0x11,0x11,0x12,0x7c,0x2b,0x2a,0x4a,0x4b,0x29,0x11,0x1a,0x2a,0x24,0x48,0x10,0x00,0x04,0xe4,0x34,0x5e,0xe4,0xa4,0xbf,0xe4,0x84,0xc4,0xbf,0xa0,0x81,0x7f,0x00 -+// 23317 嬕 ; -+,0x10,0x11,0x11,0x7d,0x24,0x24,0x24,0x25,0x44,0x24,0x18,0x14,0x27,0x24,0x40,0x00,0x00,0xff,0x29,0xff,0x10,0xfe,0x10,0xff,0x44,0x28,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 23318 嬖 ; -+,0x00,0x1e,0x12,0x1e,0x10,0x1f,0x31,0x5f,0x11,0x02,0x7f,0x04,0x06,0x01,0x06,0x38,0x10,0xfe,0x44,0x28,0xff,0x10,0x7e,0x10,0x10,0x10,0xff,0x20,0x40,0x80,0x70,0x0e -+// 23319 嬗 ; -+,0x10,0x18,0x13,0x10,0x7d,0x25,0x25,0x25,0x25,0x24,0x18,0x08,0x14,0x20,0x40,0x07,0x40,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0xa4,0x94,0xfc,0x00,0xff -+// 23320 嬘 ; -+,0x10,0x18,0x10,0x12,0x7d,0x24,0x24,0x27,0x25,0x25,0x19,0x09,0x15,0x26,0x44,0x00,0x02,0x42,0x24,0xff,0x10,0x32,0x4b,0x9c,0x6c,0x9a,0x29,0xc8,0x28,0x90,0x7f,0x00 -+// 23321 嬙 ; -+,0x10,0x18,0x11,0x10,0x7c,0x15,0x17,0x24,0x24,0x38,0x08,0x14,0x12,0x20,0x40,0x00,0x10,0x10,0xff,0x94,0x94,0x5a,0xff,0x00,0xfe,0x82,0xba,0xaa,0xba,0x82,0xfe,0x00 -+// 23322 嬚 ; -+,0x10,0x19,0x11,0x11,0x7d,0x25,0x25,0x25,0x25,0x25,0x19,0x19,0x25,0x22,0x43,0x04,0x10,0xff,0x84,0x48,0xff,0x28,0xfe,0x2a,0xfe,0x2a,0xfe,0x28,0x6c,0xab,0x2a,0x28 -+// 23323 嬛 ; -+,0x10,0x19,0x11,0x11,0x7c,0x15,0x24,0x24,0x24,0x24,0x18,0x14,0x25,0x26,0x44,0x00,0x00,0xfe,0x4a,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0x61,0x96,0x88,0xa6,0xc3,0x80 -+// 23324 嬜 ; -+,0x04,0x3f,0x11,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x01,0x7f,0x02,0x06,0x01,0x1e,0x10,0x90,0x1f,0xa2,0x48,0x08,0x08,0x14,0x23,0x42,0x00,0xff,0x10,0x20,0xc0,0x3c -+// 23325 嬝 ; -+,0x10,0x18,0x10,0x10,0x7e,0x12,0x12,0x24,0x24,0x19,0x08,0x14,0x21,0x42,0x04,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x22,0xfa,0x52,0x96,0x88,0xac,0xc7,0x82 -+// 23326 嬞 ; -+,0x10,0x11,0x10,0x7d,0x24,0x27,0x24,0x25,0x25,0x25,0x19,0x15,0x26,0x45,0x00,0x03,0x88,0xff,0x48,0xfc,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfc,0x20,0xff -+// 23327 嬟 ; -+,0x00,0x10,0x11,0x10,0x7c,0x24,0x27,0x24,0x25,0x44,0x3b,0x08,0x09,0x14,0x25,0x40,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x20,0xd4,0x54,0xff,0x4a,0xec,0x48,0x55,0xa3 -+// 23328 嬠 ; -+,0x10,0x18,0x10,0x7c,0x14,0x15,0x25,0x25,0x24,0x19,0x08,0x14,0x14,0x21,0x42,0x00,0xfc,0x84,0x84,0xfc,0x00,0xce,0x4a,0xce,0x20,0xff,0x70,0xa8,0xa6,0x23,0x22,0x20 -+// 23329 嬡 ; -+,0x10,0x19,0x11,0x10,0x7d,0x26,0x25,0x25,0x4a,0x38,0x08,0x15,0x26,0x40,0x01,0x06,0x0e,0xf2,0x23,0x94,0xff,0x02,0x54,0x45,0x3c,0x80,0xfc,0x48,0x30,0x4c,0x87,0x02 -+// 23330 嬢 ; -+,0x10,0x10,0x13,0x7c,0x25,0x26,0x27,0x28,0x4b,0x30,0x17,0x28,0x24,0x45,0x02,0x00,0x20,0x10,0xff,0x84,0x03,0x8a,0xff,0x88,0xfe,0x88,0xff,0xd2,0x8c,0xa4,0xc7,0x82 -+// 23331 嬣 ; -+,0x10,0x18,0x11,0x11,0x7e,0x15,0x14,0x25,0x25,0x2b,0x18,0x09,0x14,0x26,0x44,0x00,0x20,0x10,0xff,0x11,0x56,0x7d,0x00,0xfe,0x4a,0xff,0x00,0xff,0x10,0x10,0x50,0x20 -+// 23332 嬤 ; -+,0x10,0x18,0x11,0x11,0x7d,0x15,0x25,0x29,0x29,0x29,0x11,0x2a,0x2e,0x4a,0x04,0x08,0x20,0x10,0xff,0x44,0xef,0x44,0xee,0x55,0x44,0x20,0x48,0xf0,0x24,0x5e,0xf2,0x00 -+// 23333 嬥 ; -+,0x10,0x19,0x11,0x10,0x7c,0x15,0x14,0x24,0x25,0x26,0x14,0x08,0x14,0x24,0x40,0x00,0x00,0xee,0x32,0xaa,0xa6,0x2a,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 23334 嬦 ; -+,0x10,0x13,0x10,0x11,0x7c,0x25,0x24,0x25,0x28,0x2b,0x10,0x13,0x2a,0x2b,0x42,0x00,0x20,0xfe,0x20,0xfc,0x00,0xff,0x22,0xfc,0x00,0xff,0x04,0xff,0x54,0xd4,0x04,0x0c -+// 23335 嬧 ; -+,0x10,0x19,0x10,0x13,0x7c,0x25,0x24,0x27,0x25,0x25,0x1a,0x25,0x25,0x41,0x07,0x00,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x54,0x52,0x52,0xfe,0x4a,0x4a,0xff,0x00 -+// 23336 嬨 ; -+,0x10,0x18,0x11,0x10,0x7c,0x14,0x25,0x24,0x24,0x15,0x08,0x14,0x15,0x21,0x42,0x00,0x84,0x48,0xff,0x00,0x44,0xa9,0xef,0x42,0xa5,0xff,0x11,0x22,0x51,0x45,0x7c,0x00 -+// 23337 嬩 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x25,0x25,0x25,0x27,0x18,0x18,0x24,0x24,0x41,0x02,0x60,0x8e,0x32,0xee,0x22,0x32,0xde,0x52,0x52,0xff,0x00,0x88,0xc6,0x83,0x01,0x00 -+// 23338 嬪 ; -+,0x10,0x19,0x11,0x12,0x7c,0x14,0x25,0x24,0x48,0x2b,0x18,0x14,0x26,0x24,0x40,0x01,0x20,0xff,0x01,0xfc,0x24,0xa6,0x28,0x3e,0xe0,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 23339 嬫 ; -+,0x10,0x18,0x11,0x12,0x7c,0x15,0x14,0x25,0x24,0x19,0x08,0x14,0x14,0x26,0x45,0x00,0x44,0x64,0x57,0x54,0xaa,0x11,0xff,0x12,0x10,0xff,0x38,0x54,0x54,0x93,0x12,0x10 -+// 23340 嬬 ; -+,0x10,0x19,0x10,0x13,0x7e,0x25,0x24,0x24,0x27,0x24,0x25,0x19,0x15,0x27,0x25,0x41,0x00,0xfe,0x20,0xff,0x21,0x28,0xa4,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x0a,0x04 -+// 23341 嬭 ; -+,0x10,0x19,0x10,0x11,0x7f,0x15,0x25,0x25,0x29,0x29,0x11,0x09,0x15,0x21,0x41,0x01,0x00,0xff,0x92,0x11,0xff,0x11,0xbb,0x55,0xbb,0x11,0xbb,0x55,0xbb,0x11,0x15,0x02 -+// 23342 嬮 ; -+,0x3f,0x20,0x27,0x24,0x27,0x20,0x2f,0x28,0x2e,0x28,0x21,0x3f,0x26,0x21,0x46,0x58,0xff,0x08,0x8a,0x8a,0xff,0x08,0x88,0x94,0x92,0xa1,0x00,0xff,0x10,0xe0,0x18,0x06 -+// 23343 嬯 ; -+,0x10,0x1b,0x10,0x11,0x7c,0x14,0x14,0x25,0x26,0x24,0x18,0x14,0x26,0x45,0x00,0x03,0x10,0xff,0x10,0xfe,0x00,0xfc,0x84,0xff,0x01,0xfc,0x48,0xfc,0x28,0xfe,0x20,0xfe -+// 23344 嬰 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x0a,0x11,0x7f,0x02,0x07,0x00,0x03,0x0c,0x30,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x7c,0x28,0x44,0xff,0x10,0x20,0xc0,0x30,0x0e,0x04 -+// 23345 嬱 ; -+,0x21,0x17,0x41,0x27,0x15,0x17,0x65,0x27,0x21,0x05,0x7f,0x04,0x0e,0x01,0x06,0x38,0x03,0xdc,0x10,0xdf,0x52,0xd2,0x52,0xd2,0x22,0x00,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 23346 嬲 ; -+,0x00,0x3e,0x2a,0x3e,0x2b,0x2a,0x3f,0x09,0x09,0x3e,0x0a,0x12,0x13,0x23,0x2a,0x44,0x80,0xdf,0x95,0x9f,0xf5,0x95,0x5f,0x44,0x5f,0x89,0xc9,0xa9,0x29,0x29,0x15,0x22 -+// 23347 嬳 ; -+,0x10,0x1b,0x10,0x10,0x7c,0x25,0x26,0x24,0x24,0x24,0x19,0x14,0x22,0x22,0x40,0x03,0x44,0xff,0x44,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x84,0x48,0x30,0xcc,0x03 -+// 23348 嬴 ; -+,0x01,0x7f,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x01,0x3d,0x27,0x3d,0x25,0x3c,0x25,0x4e,0x00,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x00,0x1e,0xd2,0x5a,0x56,0x92,0x52,0x23 -+// 23349 嬵 ; -+,0x10,0x18,0x10,0x11,0x7f,0x24,0x24,0x25,0x2b,0x28,0x12,0x12,0x2a,0x24,0x44,0x00,0x84,0xc8,0x9f,0x51,0xdf,0x91,0x9f,0x44,0xff,0x55,0x95,0x95,0x95,0x97,0x04,0x04 -+// 23350 嬶 ; -+,0x10,0x18,0x10,0x10,0x7c,0x14,0x14,0x25,0x25,0x39,0x09,0x15,0x14,0x21,0x40,0x01,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfe,0x12,0xfe,0x12,0xfe,0x00,0xff,0x88,0x08 -+// 23351 嬷 ; -+,0x10,0x10,0x13,0x12,0x7b,0x2a,0x2a,0x2b,0x4a,0x2a,0x12,0x12,0x2b,0x22,0x44,0x08,0x40,0x20,0xff,0x44,0xff,0x4c,0xe6,0x55,0x44,0x20,0x48,0x90,0x22,0xff,0x42,0x00 -+// 23352 嬸 ; -+,0x10,0x18,0x11,0x11,0x7c,0x24,0x24,0x25,0x24,0x24,0x27,0x18,0x14,0x26,0x44,0x00,0x20,0x10,0xff,0x01,0xfc,0x94,0x58,0xff,0x58,0x97,0xfe,0x92,0xfe,0x92,0xfe,0x00 -+// 23353 嬹 ; -+,0x10,0x19,0x11,0x11,0x7d,0x25,0x25,0x25,0x29,0x29,0x17,0x08,0x14,0x24,0x45,0x02,0x80,0x7e,0x4a,0xfe,0x4a,0x7a,0x5a,0xfe,0x4a,0x4a,0xff,0x84,0xc6,0x83,0x02,0x00 -+// 23354 嬺 ; -+,0x10,0x19,0x11,0x11,0x7d,0x15,0x25,0x25,0x25,0x25,0x25,0x19,0x18,0x15,0x26,0x44,0x00,0xfe,0x48,0xfe,0x68,0xff,0x20,0x7c,0xa4,0x3c,0x00,0xff,0x22,0x91,0x85,0x7c -+// 23355 嬻 ; -+,0x10,0x19,0x10,0x10,0x7c,0x25,0x25,0x25,0x24,0x24,0x18,0x14,0x22,0x22,0x40,0x01,0x10,0xff,0x10,0xfe,0x00,0xff,0x29,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 23356 嬼 ; -+,0x21,0x36,0x24,0x25,0x7f,0x2a,0x28,0x29,0x2b,0x2c,0x13,0x10,0x2a,0x25,0x47,0x00,0x01,0xf1,0x55,0x55,0x55,0xb5,0x85,0x65,0xf5,0x8d,0xf5,0x95,0xa1,0xf1,0x85,0x02 -+// 23357 嬽 ; -+,0x10,0x19,0x11,0x11,0x7c,0x25,0x25,0x25,0x25,0x19,0x08,0x15,0x16,0x24,0x40,0x03,0x02,0xfe,0x52,0xfe,0x02,0xfe,0x00,0xfe,0x4a,0xff,0x20,0xff,0x20,0x50,0x8c,0x03 -+// 23358 嬾 ; -+,0x10,0x18,0x13,0x10,0x78,0x2b,0x2a,0x2b,0x2a,0x29,0x11,0x2a,0x2a,0x44,0x00,0x00,0x88,0x88,0xef,0x92,0x9e,0xf2,0xbe,0xf2,0x9e,0xd2,0xbe,0xa0,0x94,0x93,0xa2,0x80 -+// 23359 嬿 ; -+,0x10,0x18,0x13,0x10,0x7d,0x25,0x27,0x25,0x25,0x27,0x19,0x08,0x15,0x25,0x42,0x00,0x48,0x48,0xff,0x48,0x78,0x04,0x75,0x56,0x54,0x75,0x03,0x00,0x52,0x29,0x29,0x00 -+// 23360 孀 ; -+,0x10,0x19,0x10,0x13,0x7e,0x25,0x24,0x24,0x24,0x27,0x14,0x09,0x15,0x12,0x24,0x40,0x00,0xfe,0x20,0xff,0x21,0x28,0xa4,0x80,0x9e,0xf2,0x9e,0xd2,0xbe,0x92,0x9e,0x92 -+// 23361 孁 ; -+,0x1f,0x00,0x3f,0x20,0x4e,0x00,0x1d,0x15,0x1d,0x02,0x7f,0x02,0x07,0x00,0x07,0x38,0xfe,0x80,0xff,0x82,0xbc,0x00,0xee,0x2a,0xee,0x00,0xff,0x18,0x10,0xe0,0x18,0x07 -+// 23362 孂 ; -+,0x11,0x19,0x11,0x12,0x7d,0x25,0x25,0x25,0x49,0x29,0x11,0x09,0x15,0x25,0x41,0x03,0x08,0xef,0x54,0x42,0xfc,0x44,0x24,0xfc,0x22,0x14,0x4e,0x84,0xfe,0x4a,0x4a,0xff -+// 23363 孃 ; -+,0x10,0x18,0x13,0x10,0x7d,0x15,0x15,0x24,0x25,0x14,0x0b,0x14,0x15,0x22,0x44,0x00,0x40,0x20,0xff,0x00,0xdc,0x54,0xdc,0x48,0xfe,0x48,0xff,0xd2,0x8c,0xa4,0xc7,0x82 -+// 23364 孄 ; -+,0x11,0x19,0x11,0x7d,0x15,0x15,0x15,0x25,0x29,0x29,0x29,0x11,0x29,0x25,0x45,0x01,0xef,0x29,0xef,0x29,0xef,0x11,0xff,0x11,0x7d,0x55,0x7d,0x39,0x35,0x55,0x91,0x13 -+// 23365 孅 ; -+,0x11,0x19,0x11,0x12,0x7c,0x2b,0x29,0x29,0x2b,0x29,0x2b,0x11,0x11,0x2b,0x41,0x00,0x48,0x48,0x4c,0xaa,0x08,0xff,0x48,0x4a,0x6b,0x4e,0x64,0x44,0x6d,0x93,0x21,0x00 -+// 23366 孆 ; -+,0x23,0x32,0x23,0x22,0x7e,0x2b,0x28,0x2a,0x4c,0x37,0x10,0x11,0x28,0x44,0x00,0x03,0xde,0x52,0x5a,0xd6,0x52,0xde,0x80,0x4a,0x51,0xff,0x88,0xd0,0x30,0x4c,0x87,0x02 -+// 23367 孇 ; -+,0x21,0x31,0x21,0x7f,0x25,0x25,0x25,0x25,0x25,0x18,0x09,0x14,0x16,0x24,0x40,0x07,0x14,0x54,0xff,0x54,0xff,0x54,0xff,0x54,0xff,0x00,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 23368 孈 ; -+,0x10,0x19,0x11,0x10,0x79,0x2b,0x2d,0x29,0x29,0x29,0x19,0x09,0x15,0x25,0x41,0x01,0x10,0x11,0xff,0x90,0xff,0x10,0xff,0x10,0xff,0x00,0xff,0x45,0x45,0x7d,0x01,0x03 -+// 23369 孉 ; -+,0x10,0x1b,0x10,0x11,0x7d,0x25,0x25,0x24,0x24,0x49,0x2a,0x10,0x10,0x28,0x44,0x00,0x84,0xff,0x84,0xee,0x2a,0xee,0x2a,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 23370 孊 ; -+,0x10,0x19,0x11,0x7d,0x15,0x15,0x25,0x25,0x29,0x19,0x09,0x15,0x22,0x43,0x04,0x08,0x10,0xff,0x24,0xff,0x34,0x7e,0xa5,0x24,0x48,0xce,0x48,0xce,0x48,0xcf,0x48,0x48 -+// 23371 孋 ; -+,0x13,0x18,0x13,0x13,0x7a,0x2a,0x29,0x29,0x29,0x31,0x11,0x29,0x26,0x42,0x04,0x08,0xdf,0x00,0xde,0x5a,0xd6,0x22,0xff,0x48,0xfe,0x4a,0xfe,0x90,0xd2,0x9c,0xd1,0x8f -+// 23372 孌 ; -+,0x10,0x11,0x24,0x3d,0x10,0x3d,0x05,0x29,0x2a,0x02,0x7f,0x04,0x02,0x01,0x06,0x18,0x84,0xea,0x0f,0xf4,0x15,0xef,0x21,0xea,0x0a,0x00,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 23373 孍 ; -+,0x23,0x32,0x23,0x20,0x7b,0x2a,0x2a,0x2b,0x4a,0x2a,0x12,0x12,0x2a,0x25,0x44,0x08,0xde,0x52,0xde,0x00,0xff,0xe8,0x48,0xef,0xba,0xea,0xaa,0xe4,0xa4,0xfa,0x2b,0x32 -+// 23374 孎 ; -+,0x13,0x1a,0x13,0x12,0x7a,0x2a,0x2a,0x2a,0x2a,0x2b,0x12,0x0a,0x16,0x22,0x44,0x08,0xfe,0x02,0xfe,0x94,0x58,0x94,0xfe,0xaa,0xfe,0x22,0xfa,0xaa,0xfa,0x2a,0x3e,0xca -+// 23375 孏 ; -+,0x10,0x1b,0x10,0x13,0x7f,0x2a,0x2b,0x2a,0x2b,0x2b,0x13,0x13,0x12,0x2a,0x4a,0x03,0x88,0xff,0x88,0xcf,0x4d,0xcb,0xef,0x21,0xfd,0xad,0x75,0xfd,0x21,0x71,0xa9,0x23 -+// 23376 子 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0xf8,0x10,0x20,0x40,0x80,0x80,0x82,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 23377 孑 ; -+,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x38,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0xfe,0x0c,0x30,0x40,0x43,0x5c,0xe0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80 -+// 23378 孒 ; -+,0x00,0x1f,0x00,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x02,0x00,0xf8,0x30,0x40,0x80,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 23379 孓 ; -+,0x0f,0x00,0x00,0x00,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0xfc,0x18,0x20,0x40,0x80,0x80,0x80,0x80,0x80,0xc0,0xb0,0x8f,0x84,0x80,0x80,0x00 -+// 23380 孔 ; -+,0x00,0x3f,0x01,0x02,0x04,0x04,0x05,0x06,0x0c,0x74,0x24,0x04,0x04,0x14,0x08,0x00,0x20,0xa0,0x20,0x20,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 23381 孕 ; -+,0x1f,0x02,0x02,0x04,0x04,0x0f,0x10,0x20,0x40,0x3f,0x00,0x00,0x00,0x00,0x01,0x00,0xf0,0x10,0x10,0x1e,0x02,0xfa,0x12,0xaa,0x44,0xfe,0x40,0x40,0x40,0x40,0x40,0x80 -+// 23382 孖 ; -+,0x00,0x3f,0x02,0x04,0x08,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x28,0x10,0x00,0x00,0xff,0x02,0x04,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 23383 字 ; -+,0x01,0x00,0x1f,0x10,0x20,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x80,0xfe,0x02,0x04,0xf0,0x20,0x40,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x00 -+// 23384 存 ; -+,0x01,0x01,0x3f,0x02,0x02,0x05,0x0c,0x08,0x18,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x80,0x00,0xfe,0x00,0x00,0xfc,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 23385 孙 ; -+,0x00,0x3f,0x02,0x04,0x08,0x08,0x0e,0x18,0x29,0x49,0x0a,0x08,0x08,0x28,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x94,0xd2,0x92,0x11,0x11,0x11,0x10,0x10,0x50,0x20,0x00 -+// 23386 孚 ; -+,0x00,0x1f,0x02,0x11,0x08,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x02,0x01,0x1c,0xe0,0x04,0x08,0x90,0x00,0xf0,0x20,0x40,0xff,0x80,0x80,0x80,0x80,0x80,0x00 -+// 23387 孛 ; -+,0x00,0x00,0x1f,0x00,0x3f,0x20,0x40,0x0f,0x00,0x00,0x7f,0x00,0x00,0x00,0x02,0x01,0x80,0x80,0xfe,0x80,0xff,0x02,0x04,0xf8,0x20,0x40,0xff,0x80,0x80,0x80,0x80,0x00 -+// 23388 孜 ; -+,0x00,0x3f,0x01,0x02,0x04,0x04,0x04,0x07,0x1c,0x64,0x04,0x04,0x04,0x04,0x15,0x0a,0x20,0x30,0x20,0x40,0x7f,0x44,0xc4,0x44,0x28,0x28,0x10,0x28,0x4c,0x87,0x02,0x00 -+// 23389 孝 ; -+,0x00,0x00,0x0f,0x00,0x7f,0x00,0x00,0x01,0x06,0x18,0x67,0x00,0x00,0x00,0x01,0x00,0x80,0x84,0xf6,0x88,0xff,0x60,0x80,0xf8,0x20,0x40,0xfe,0x40,0x40,0x40,0x40,0x80 -+// 23390 孞 ; -+,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x01,0x02,0x01,0x14,0x14,0x14,0x24,0x03,0x00,0x00,0xf8,0x20,0x40,0xff,0x40,0x40,0x40,0x80,0x08,0xc4,0x4a,0x0b,0x0a,0xf0,0x00 -+// 23391 孟 ; -+,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0xf8,0x10,0x20,0x40,0xff,0x40,0x40,0x40,0x80,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 23392 孠 ; -+,0x1f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x0f,0x00,0x00,0x7f,0x00,0x00,0x01,0x00,0xfe,0x02,0xfa,0x02,0xe2,0x22,0xe2,0x0a,0xf4,0x20,0x40,0xff,0x40,0x40,0x40,0x80 -+// 23393 孡 ; -+,0x00,0x3f,0x02,0x04,0x08,0x08,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x10,0x18,0x10,0x24,0x42,0x9f,0xf1,0x80,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 23394 孢 ; -+,0x00,0x3e,0x02,0x05,0x09,0x0a,0x0c,0x18,0x28,0x48,0x08,0x08,0x08,0x28,0x10,0x00,0x80,0xc0,0x80,0xfe,0x02,0x02,0xfa,0x8a,0x8a,0xfa,0x82,0x8a,0x84,0x81,0x7f,0x00 -+// 23395 季 ; -+,0x00,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x37,0x00,0x00,0x7f,0x00,0x00,0x00,0x02,0x01,0x78,0x80,0x80,0xfe,0xc0,0xb0,0x8f,0xe2,0x20,0x40,0xff,0x80,0x80,0x80,0x80,0x00 -+// 23396 孤 ; -+,0x00,0x3f,0x02,0x04,0x08,0x0a,0x0c,0x18,0x68,0x28,0x08,0x08,0x09,0x09,0x2a,0x10,0x00,0x1e,0xe8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa4,0xa4,0xb2,0x2b,0x7d,0x28,0x00 -+// 23397 孥 ; -+,0x08,0x08,0x7f,0x11,0x0a,0x04,0x0a,0x11,0x27,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x00,0xfe,0x44,0x44,0x28,0x10,0x2e,0x44,0xf0,0x20,0x40,0xff,0x40,0x40,0x40,0x80 -+// 23398 学 ; -+,0x00,0x08,0x06,0x04,0x3f,0x20,0x47,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x00,0x84,0x46,0x64,0x48,0xff,0x02,0xf4,0x20,0x40,0xff,0x40,0x40,0x40,0x40,0x40,0x80 -+// 23399 孧 ; -+,0x08,0x08,0x12,0x3f,0x04,0x09,0x1f,0x01,0x0f,0x00,0x00,0x7f,0x00,0x00,0x02,0x01,0x10,0xfe,0x12,0x12,0x12,0x22,0xaa,0x44,0xf0,0x20,0x40,0xff,0x80,0x80,0x80,0x00 -+// 23400 孨 ; -+,0x0f,0x00,0x00,0x3f,0x00,0x01,0x00,0x3f,0x02,0x04,0x06,0x3c,0x14,0x04,0x14,0x08,0xf8,0x20,0x40,0xfe,0x40,0x40,0x80,0x7e,0x04,0x08,0xff,0x08,0x08,0x08,0x28,0x10 -+// 23401 孩 ; -+,0x00,0x7e,0x03,0x04,0x08,0x08,0x09,0x0c,0x78,0x28,0x08,0x0b,0x08,0x28,0x13,0x00,0x20,0x10,0xff,0x20,0x40,0x84,0xfc,0x08,0x12,0x24,0xc8,0x18,0x24,0xc2,0x02,0x00 -+// 23402 孪 ; -+,0x00,0x00,0x3f,0x01,0x09,0x0d,0x11,0x21,0x07,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x80,0x40,0xff,0x20,0x28,0x24,0x22,0x20,0xf8,0x10,0x20,0xfe,0x40,0x40,0x40,0x80 -+// 23403 孫 ; -+,0x00,0x3e,0x02,0x04,0x08,0x08,0x0b,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x38,0x10,0x0e,0xf0,0x10,0x22,0x7c,0x08,0x10,0x22,0x7f,0x12,0x54,0x52,0x93,0x12,0x50,0x20 -+// 23404 孬 ; -+,0x00,0x3f,0x00,0x01,0x06,0x38,0x08,0x08,0x3f,0x0a,0x12,0x0a,0x04,0x0a,0x11,0x20,0x00,0xfe,0x80,0x90,0x8c,0x88,0x80,0x7e,0x04,0x08,0xff,0x08,0x08,0x08,0x28,0x10 -+// 23405 孭 ; -+,0x00,0x3f,0x02,0x04,0x04,0x05,0x06,0x0c,0x74,0x24,0x04,0x04,0x04,0x04,0x1c,0x08,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x24,0x32,0x23,0x42,0x80 -+// 23406 孮 ; -+,0x00,0x7f,0x02,0x04,0x09,0x08,0x0c,0x18,0x69,0x28,0x08,0x08,0x09,0x0a,0x28,0x10,0x20,0x10,0xff,0x82,0x00,0x7c,0x00,0x00,0xff,0x10,0x94,0xd2,0x13,0x12,0x50,0x20 -+// 23407 孯 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x20,0x0f,0x00,0x00,0x7f,0x00,0x00,0x01,0x00,0x00,0x7e,0x24,0x28,0x10,0x28,0x47,0x82,0xf8,0x10,0x20,0xff,0x40,0x40,0x40,0x80 -+// 23408 孰 ; -+,0x08,0x04,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x3f,0x02,0x0f,0x74,0x04,0x04,0x14,0x09,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x64,0x34,0x2c,0x44,0x45,0x45,0x85,0x83,0x00 -+// 23409 孱 ; -+,0x1f,0x10,0x1f,0x10,0x17,0x10,0x1f,0x10,0x1f,0x11,0x12,0x23,0x2e,0x22,0x4a,0x04,0xfe,0x02,0xfe,0x00,0xf0,0x20,0xff,0x40,0xfe,0x04,0x08,0x7f,0x08,0x08,0x28,0x10 -+// 23410 孲 ; -+,0x00,0x3f,0x02,0x04,0x04,0x09,0x0d,0x19,0x69,0x29,0x08,0x08,0x08,0x28,0x13,0x00,0x00,0xff,0x48,0x48,0x48,0xce,0x02,0x02,0x02,0xce,0x48,0x48,0x48,0x48,0xff,0x00 -+// 23411 孳 ; -+,0x04,0x02,0x7f,0x04,0x09,0x1f,0x04,0x1f,0x01,0x0f,0x00,0x00,0x3f,0x00,0x01,0x00,0x10,0x20,0xff,0x10,0x24,0x7c,0x12,0x7e,0x02,0xf0,0x20,0x40,0xff,0x40,0x40,0x80 -+// 23412 孴 ; -+,0x0f,0x00,0x7f,0x00,0x01,0x3e,0x04,0x1e,0x68,0x18,0x0f,0x08,0x0f,0x08,0x0f,0x08,0xf0,0x20,0xff,0x80,0x80,0x7c,0x08,0xff,0x28,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 23413 孵 ; -+,0x08,0x10,0x2b,0x2a,0x2a,0x2a,0x3b,0x2a,0x2a,0x2b,0x3a,0x0a,0x12,0x12,0x22,0x42,0x06,0x78,0x81,0xaa,0xaa,0x80,0xbe,0x84,0x88,0x88,0xff,0x08,0x08,0x08,0x28,0x10 -+// 23414 孶 ; -+,0x08,0x3f,0x08,0x12,0x3c,0x0a,0x1f,0x01,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x04,0x7f,0x08,0x12,0x3e,0x09,0x1f,0x01,0xf8,0x10,0x20,0xff,0x20,0x20,0xa0,0x40 -+// 23415 孷 ; -+,0x08,0x3f,0x08,0x7f,0x1c,0x2a,0x5f,0x10,0x17,0x10,0x10,0x17,0x20,0x20,0x41,0x00,0x20,0x3f,0x64,0xa4,0x18,0x66,0xfe,0x00,0xf8,0x10,0x20,0xfe,0x40,0x40,0x40,0x80 -+// 23416 學 ; -+,0x04,0x19,0x10,0x1d,0x10,0x1d,0x10,0x3f,0x20,0x47,0x00,0x3f,0x00,0x02,0x01,0x00,0x00,0x5c,0x84,0x5c,0x84,0x5c,0x04,0xff,0x02,0xf4,0x20,0xff,0x40,0x40,0x40,0x80 -+// 23417 孹 ; -+,0x00,0x1f,0x11,0x1f,0x10,0x3f,0x31,0x5f,0x00,0x0f,0x00,0x3f,0x00,0x00,0x01,0x00,0x10,0xfe,0x44,0x28,0xff,0x10,0x7e,0x10,0x10,0xf8,0x20,0xff,0x40,0x40,0x40,0x80 -+// 23418 孺 ; -+,0x01,0x7c,0x07,0x0a,0x08,0x08,0x0c,0x0b,0x18,0x69,0x09,0x09,0x09,0x29,0x11,0x00,0xfe,0x10,0xff,0x11,0x94,0x52,0x10,0xff,0x20,0xfe,0x52,0x52,0x52,0x52,0x56,0x00 -+// 23419 孻 ; -+,0x00,0x7d,0x08,0x0b,0x10,0x11,0x14,0x1b,0x31,0x52,0x11,0x11,0x11,0x51,0x27,0x00,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x52,0x52,0xfc,0x54,0x54,0x54,0xff,0x00 -+// 23420 孼 ; -+,0x04,0x24,0x3f,0x08,0x3f,0x21,0x3f,0x20,0x3f,0x21,0x3f,0x1f,0x00,0x3f,0x00,0x01,0x10,0x88,0xff,0x22,0x14,0x7f,0x08,0x08,0x7f,0x08,0x08,0xf8,0x20,0xff,0x40,0xc0 -+// 23421 孽 ; -+,0x02,0x7f,0x12,0x3e,0x22,0x3e,0x20,0x3e,0x22,0x3f,0x00,0x00,0x3f,0x00,0x01,0x00,0x10,0xff,0x10,0xfe,0x24,0xff,0x10,0x7e,0x10,0xf0,0x20,0x40,0xff,0x40,0x40,0x80 -+// 23422 孾 ; -+,0x01,0x7d,0x05,0x09,0x11,0x11,0x15,0x1a,0x70,0x13,0x10,0x11,0x10,0x10,0x53,0x21,0xef,0x29,0xad,0x6b,0x29,0xef,0x4a,0x31,0x42,0xff,0x88,0xc8,0x30,0x6c,0x87,0x02 -+// 23423 孿 ; -+,0x08,0x13,0x38,0x15,0x3c,0x05,0x29,0x29,0x40,0x0f,0x00,0x3f,0x00,0x00,0x01,0x00,0x84,0xe4,0x0a,0xce,0x05,0xcf,0x55,0xd5,0x00,0xf0,0x20,0xff,0x40,0x40,0x40,0x80 -+// 23424 宀 ; -+,0x01,0x00,0x00,0x1f,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x82,0xff,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 23425 宁 ; -+,0x01,0x00,0x1f,0x10,0x20,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x82,0xff,0x02,0x04,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 23426 宂 ; -+,0x01,0x00,0x00,0x1f,0x10,0x20,0x03,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xc0,0x80,0xff,0x02,0x04,0xe0,0x20,0x20,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 23427 它 ; -+,0x01,0x00,0x1f,0x10,0x20,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x80,0xff,0x02,0x04,0x00,0x10,0x38,0xc0,0x00,0x00,0x04,0x04,0x06,0xfc,0x00 -+// 23428 宄 ; -+,0x01,0x00,0x1f,0x20,0x21,0x01,0x01,0x1f,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x80,0xff,0x02,0x04,0x00,0x00,0xe0,0x20,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 23429 宅 ; -+,0x01,0x00,0x1f,0x10,0x20,0x00,0x1f,0x01,0x01,0x07,0x79,0x01,0x01,0x01,0x00,0x00,0x00,0x80,0xff,0x02,0x00,0xf8,0x00,0x00,0x1e,0xe0,0x00,0x00,0x02,0x02,0xfe,0x00 -+// 23430 宆 ; -+,0x01,0x00,0x1f,0x10,0x27,0x00,0x00,0x07,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x02,0xf8,0x08,0x08,0xf8,0x00,0x00,0xfc,0x04,0x04,0x04,0x28,0x10 -+// 23431 宇 ; -+,0x00,0x00,0x1f,0x10,0x20,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x80,0x40,0xff,0x02,0x04,0xf8,0x40,0x40,0xfe,0x40,0x40,0x40,0x40,0x40,0x40,0x80 -+// 23432 守 ; -+,0x00,0x00,0x1f,0x10,0x20,0x00,0x00,0x3f,0x00,0x04,0x02,0x03,0x02,0x00,0x00,0x00,0x80,0x40,0xff,0x02,0x14,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 23433 安 ; -+,0x01,0x00,0x1f,0x10,0x22,0x03,0x02,0x7f,0x04,0x04,0x04,0x03,0x00,0x03,0x0c,0x70,0x00,0x80,0xff,0x02,0x04,0x00,0x00,0xff,0x10,0x10,0x20,0x40,0x80,0x60,0x1c,0x08 -+// 23434 宊 ; -+,0x01,0x00,0x1f,0x10,0x20,0x00,0x00,0x3f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x82,0xff,0x02,0xa4,0x90,0x90,0xfe,0x40,0x40,0x20,0x20,0x10,0x18,0x0e,0x04 -+// 23435 宋 ; -+,0x01,0x00,0x3f,0x20,0x40,0x00,0x3f,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x80,0xff,0x82,0x84,0x80,0xfe,0xc0,0xc0,0xa0,0x90,0x88,0x87,0x82,0x80,0x00 -+// 23436 完 ; -+,0x01,0x00,0x1f,0x10,0x20,0x0f,0x00,0x3f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x80,0xff,0x02,0x04,0xf8,0x00,0xfe,0x20,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 23437 宍 ; -+,0x01,0x00,0x1f,0x10,0x21,0x00,0x00,0x7f,0x00,0x02,0x03,0x04,0x08,0x10,0x20,0x00,0x00,0x80,0xff,0x02,0x04,0xc0,0x80,0xff,0x00,0x20,0x10,0x08,0x0c,0x06,0x04,0x00 -+// 23438 宎 ; -+,0x01,0x00,0x1f,0x10,0x20,0x1f,0x00,0x00,0x3f,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x00,0x80,0xff,0x02,0x04,0xfc,0x80,0x80,0xff,0x40,0x40,0x20,0x10,0x08,0x07,0x02 -+// 23439 宏 ; -+,0x00,0x00,0x1f,0x11,0x21,0x01,0x3f,0x01,0x02,0x02,0x04,0x08,0x11,0x22,0x07,0x00,0x80,0x40,0xff,0x02,0x84,0x00,0xff,0x00,0x40,0x40,0x80,0x88,0x04,0x7e,0xc4,0x00 -+// 23440 宐 ; -+,0x00,0x00,0x1f,0x12,0x23,0x02,0x03,0x04,0x05,0x04,0x08,0x08,0x00,0x00,0x7f,0x00,0x80,0x40,0xff,0x02,0x04,0x00,0xf8,0x08,0x08,0x90,0xd0,0x90,0x20,0x20,0xff,0x00 -+// 23441 宑 ; -+,0x00,0x00,0x1f,0x10,0x22,0x02,0x1f,0x02,0x02,0x3f,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x40,0xff,0x02,0x24,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 23442 宒 ; -+,0x00,0x00,0x1f,0x10,0x20,0x0f,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x80,0x40,0xff,0x02,0xf4,0x80,0x80,0xfc,0x80,0x80,0xfe,0x80,0x82,0x82,0x7e,0x00 -+// 23443 宓 ; -+,0x00,0x00,0x3f,0x20,0x42,0x01,0x00,0x02,0x22,0x22,0x22,0x43,0x02,0x0e,0x71,0x00,0x80,0x40,0xff,0x02,0x14,0x18,0x90,0x20,0x24,0x42,0x83,0x02,0x08,0x08,0xf8,0x00 -+// 23444 宔 ; -+,0x00,0x00,0x1f,0x11,0x20,0x00,0x0f,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x80,0x40,0xff,0x02,0xc4,0x80,0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 23445 宕 ; -+,0x01,0x00,0x1f,0x20,0x00,0x3f,0x01,0x02,0x07,0x0c,0x14,0x24,0x44,0x07,0x04,0x00,0x00,0x80,0xff,0x02,0x00,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 23446 宖 ; -+,0x01,0x00,0x3f,0x20,0x5e,0x02,0x02,0x1e,0x10,0x3e,0x12,0x02,0x02,0x02,0x0a,0x04,0x00,0x80,0xff,0x02,0x14,0x10,0x10,0x10,0x20,0x20,0x28,0x44,0x42,0xff,0x42,0x00 -+// 23447 宗 ; -+,0x00,0x00,0x1f,0x10,0x20,0x07,0x00,0x00,0x3f,0x00,0x04,0x06,0x08,0x10,0x21,0x00,0x80,0x40,0xff,0x02,0x00,0xfc,0x00,0x00,0xff,0x40,0x48,0x44,0x46,0x44,0x40,0x80 -+// 23448 官 ; -+,0x01,0x00,0x1f,0x10,0x27,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x04,0x04,0x07,0x04,0x00,0x80,0xff,0x02,0xf4,0x10,0x10,0xf0,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 23449 宙 ; -+,0x01,0x00,0x3f,0x20,0x40,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x80,0xff,0x02,0x84,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23450 定 ; -+,0x01,0x00,0x1f,0x10,0x20,0x0f,0x00,0x08,0x08,0x08,0x08,0x14,0x12,0x21,0x40,0x00,0x00,0x80,0xff,0x02,0x04,0xf8,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0xfe,0x00 -+// 23451 宛 ; -+,0x00,0x00,0x1f,0x10,0x24,0x07,0x09,0x09,0x19,0x25,0x42,0x02,0x04,0x08,0x10,0x20,0x80,0x40,0xff,0x02,0x04,0x3c,0x24,0x24,0x24,0x24,0x3c,0x28,0x22,0x22,0x3e,0x00 -+// 23452 宜 ; -+,0x00,0x00,0x1f,0x10,0x20,0x07,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x04,0x3f,0x00,0x80,0x40,0xff,0x02,0x04,0xf0,0x10,0x10,0xf0,0x10,0x10,0xf0,0x10,0x10,0xff,0x00 -+// 23453 宝 ; -+,0x01,0x00,0x3f,0x20,0x40,0x1f,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x80,0xff,0x02,0x04,0xfc,0x80,0x80,0x80,0xfc,0xa0,0x90,0x98,0x90,0xff,0x00 -+// 23454 实 ; -+,0x00,0x00,0x1f,0x14,0x23,0x02,0x04,0x03,0x02,0x3f,0x00,0x00,0x01,0x02,0x0c,0x30,0x80,0x40,0xff,0x02,0x44,0x40,0x40,0x40,0x40,0xff,0x40,0xa0,0x10,0x08,0x0c,0x08 -+// 23455 実 ; -+,0x01,0x00,0x1f,0x10,0x20,0x0f,0x00,0x0f,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0xff,0x82,0x84,0xf8,0x80,0xf8,0x80,0xfe,0x40,0x20,0x18,0x0e,0x04,0x00 -+// 23456 宠 ; -+,0x00,0x00,0x1f,0x11,0x21,0x01,0x3f,0x01,0x01,0x02,0x02,0x04,0x05,0x08,0x10,0x20,0x80,0x40,0xff,0x02,0x24,0x10,0xff,0x24,0x26,0x28,0x30,0x60,0xa2,0x22,0x1e,0x00 -+// 23457 审 ; -+,0x01,0x00,0x3f,0x20,0x40,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x80,0xff,0x82,0x80,0xf8,0x88,0x88,0xf8,0x88,0x88,0xf8,0x88,0x80,0x80,0x80 -+// 23458 客 ; -+,0x01,0x00,0x1f,0x22,0x22,0x03,0x06,0x09,0x10,0x03,0x1f,0x64,0x04,0x04,0x07,0x04,0x00,0x80,0xff,0x02,0x04,0xf8,0x10,0x20,0xc0,0x38,0xff,0x0a,0x08,0x08,0xf8,0x08 -+// 23459 宣 ; -+,0x01,0x00,0x1f,0x20,0x0f,0x00,0x07,0x04,0x07,0x04,0x04,0x07,0x04,0x00,0x7f,0x00,0x00,0x80,0xff,0x02,0xfc,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x00,0xff,0x00 -+// 23460 室 ; -+,0x01,0x00,0x1f,0x10,0x20,0x1f,0x02,0x04,0x0f,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x80,0xff,0x02,0x04,0xfe,0x00,0x10,0xf8,0x88,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 23461 宥 ; -+,0x01,0x00,0x3f,0x22,0x42,0x3f,0x04,0x0f,0x14,0x27,0x44,0x07,0x04,0x04,0x04,0x04,0x00,0x80,0xff,0x02,0x04,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 23462 宦 ; -+,0x01,0x00,0x1f,0x20,0x20,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x80,0xff,0x02,0x04,0xf8,0x80,0x80,0xf8,0x08,0x08,0xf8,0x80,0x80,0xfc,0x00 -+// 23463 宧 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x08,0x08,0x0b,0x0a,0x0a,0x0a,0x0b,0x08,0x08,0x0f,0x00,0x00,0x80,0xff,0x02,0xfc,0x40,0x40,0xf8,0x08,0x08,0x08,0xf8,0x40,0x40,0xfe,0x00 -+// 23464 宨 ; -+,0x01,0x00,0x1f,0x10,0x22,0x12,0x0a,0x0a,0x02,0x0a,0x12,0x24,0x04,0x08,0x10,0x20,0x00,0x80,0xff,0x02,0x40,0x44,0x4e,0x70,0x40,0x60,0x5c,0x48,0x41,0x41,0x3f,0x00 -+// 23465 宩 ; -+,0x00,0x00,0x1f,0x10,0x28,0x06,0x04,0x3f,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x80,0x40,0xff,0x02,0x94,0x90,0xa0,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 23466 宪 ; -+,0x01,0x00,0x1f,0x10,0x24,0x07,0x04,0x08,0x3f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x80,0xff,0x82,0x84,0xf8,0x80,0x80,0xfe,0x20,0x20,0x20,0x22,0x23,0x1e,0x00 -+// 23467 宫 ; -+,0x00,0x00,0x1f,0x10,0x27,0x04,0x04,0x07,0x04,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x80,0x40,0xfe,0x02,0xfc,0x08,0x08,0xf8,0x08,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 23468 宬 ; -+,0x00,0x00,0x3f,0x20,0x40,0x1f,0x10,0x10,0x1f,0x11,0x11,0x11,0x25,0x22,0x40,0x00,0x80,0x40,0xff,0x52,0x54,0xff,0x40,0x48,0x4c,0x28,0x28,0x10,0x29,0x45,0x82,0x00 -+// 23469 宭 ; -+,0x01,0x00,0x3f,0x20,0x5f,0x02,0x7f,0x02,0x1f,0x04,0x0f,0x14,0x24,0x44,0x07,0x04,0x00,0x80,0xff,0x02,0xf8,0x08,0xff,0x08,0xf8,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 23470 宮 ; -+,0x01,0x00,0x1f,0x10,0x27,0x04,0x04,0x07,0x01,0x02,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x80,0xff,0x02,0xf4,0x10,0x10,0xf0,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x00 -+// 23471 宯 ; -+,0x01,0x00,0x3f,0x20,0x47,0x00,0x3f,0x00,0x01,0x06,0x18,0x67,0x00,0x00,0x01,0x00,0x00,0x80,0xff,0x82,0xe8,0x90,0xff,0x40,0xf0,0x20,0x40,0xfe,0x40,0x40,0x40,0x80 -+// 23472 宰 ; -+,0x00,0x00,0x3f,0x20,0x40,0x1f,0x04,0x02,0x3f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x80,0x40,0xff,0x82,0x40,0xfc,0x10,0x20,0xfe,0x80,0x80,0xfc,0x80,0x80,0x80,0x80 -+// 23473 宱 ; -+,0x00,0x00,0x1f,0x10,0x24,0x06,0x0c,0x18,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x80,0x40,0xff,0x42,0x60,0x40,0xff,0xa0,0x3e,0x20,0x20,0x3f,0x20,0x20,0x20,0x20 -+// 23474 宲 ; -+,0x00,0x00,0x3f,0x20,0x4f,0x08,0x08,0x0f,0x00,0x7f,0x01,0x02,0x04,0x08,0x30,0x00,0x80,0x40,0xff,0x02,0xf8,0x08,0x08,0xf8,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 23475 害 ; -+,0x01,0x00,0x3f,0x20,0x40,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x01,0x82,0xfc,0x80,0xf8,0x80,0xfe,0x80,0xf8,0x08,0x08,0xf8,0x08 -+// 23476 宴 ; -+,0x01,0x00,0x3f,0x20,0x47,0x04,0x07,0x04,0x07,0x02,0x3f,0x04,0x02,0x01,0x06,0x38,0x00,0x80,0xff,0x02,0xf4,0x10,0xf0,0x10,0xf0,0x00,0xfe,0x10,0x20,0xc0,0x30,0x0e -+// 23477 宵 ; -+,0x01,0x00,0x3f,0x28,0x44,0x02,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x00,0x80,0xff,0x92,0x98,0xa0,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 23478 家 ; -+,0x01,0x00,0x1f,0x20,0x2f,0x00,0x01,0x07,0x39,0x02,0x0c,0x33,0x0c,0x30,0x02,0x01,0x00,0x80,0xff,0x02,0xf4,0x80,0x00,0x90,0x58,0x60,0xe0,0x58,0x47,0x42,0x80,0x00 -+// 23479 宷 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x00,0x04,0x02,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0x80,0xff,0x02,0xf4,0x80,0x90,0xa0,0xff,0xc0,0xa0,0x90,0x8e,0x84,0x80,0x80 -+// 23480 宸 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x0a,0x0a,0x12,0x12,0x27,0x42,0x00,0x00,0x80,0xff,0x02,0xfc,0x00,0xf8,0x00,0xfe,0x80,0x48,0x30,0x90,0x0e,0x04,0x00 -+// 23481 容 ; -+,0x01,0x00,0x3f,0x22,0x46,0x0c,0x11,0x02,0x04,0x18,0x67,0x04,0x04,0x04,0x07,0x04,0x00,0x80,0xff,0x22,0x98,0x8c,0x48,0x20,0x18,0x07,0xf2,0x10,0x10,0x10,0xf0,0x10 -+// 23482 宺 ; -+,0x01,0x00,0x3f,0x20,0x47,0x04,0x07,0x00,0x3f,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x80,0xff,0x02,0xf4,0x10,0xf0,0x00,0xfe,0x90,0x90,0x92,0x92,0x93,0x8e,0x00 -+// 23483 宻 ; -+,0x01,0x00,0x1f,0x20,0x2b,0x04,0x22,0x19,0x08,0x03,0x3c,0x00,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x02,0xf8,0x08,0x16,0x2c,0xc0,0x30,0x4f,0x44,0x44,0x44,0xfc,0x04 -+// 23484 宼 ; -+,0x00,0x00,0x3f,0x20,0x5f,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x00,0x80,0x40,0xff,0x02,0x10,0x1e,0x10,0xfc,0x44,0x28,0x18,0x28,0x46,0x85,0xff,0x00 -+// 23485 宽 ; -+,0x01,0x00,0x3f,0x22,0x5f,0x02,0x00,0x0f,0x08,0x08,0x08,0x09,0x01,0x02,0x0c,0x30,0x00,0x80,0xff,0x22,0xfc,0x20,0x00,0xf8,0x88,0x88,0x88,0x48,0x42,0x42,0x3e,0x00 -+// 23486 宾 ; -+,0x00,0x00,0x1f,0x20,0x27,0x04,0x04,0x07,0x04,0x04,0x7f,0x02,0x07,0x0c,0x10,0x20,0x80,0x40,0xff,0x02,0xf4,0x00,0x00,0xfc,0x20,0x20,0xff,0x20,0x18,0x0c,0x06,0x04 -+// 23487 宿 ; -+,0x01,0x00,0x1f,0x24,0x27,0x04,0x08,0x09,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x00,0x00,0x80,0xff,0x02,0xfc,0x20,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 23488 寀 ; -+,0x00,0x1f,0x10,0x2f,0x00,0x04,0x02,0x02,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0x80,0xff,0x02,0xfc,0x08,0x8c,0x58,0x50,0x80,0xfe,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 23489 寁 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x00,0x08,0x08,0x14,0x23,0x00,0x80,0xff,0x82,0xf8,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfc,0x80,0x80,0xff -+// 23490 寂 ; -+,0x00,0x00,0x1f,0x24,0x24,0x07,0x04,0x04,0x3f,0x04,0x16,0x15,0x25,0x45,0x14,0x09,0x80,0x40,0xff,0x02,0x00,0xbc,0x44,0x44,0xa4,0x28,0x10,0x10,0xa8,0x44,0x83,0x02 -+// 23491 寃 ; -+,0x01,0x00,0x3f,0x22,0x43,0x04,0x0f,0x18,0x08,0x0f,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x80,0xff,0x02,0xf4,0x20,0xfc,0x84,0x84,0xfc,0xa0,0x28,0x26,0x25,0x3f,0x00 -+// 23492 寄 ; -+,0x01,0x00,0x1f,0x10,0x2f,0x01,0x02,0x04,0x3f,0x00,0x07,0x04,0x07,0x04,0x00,0x00,0x00,0x80,0xff,0x81,0xfa,0x40,0x20,0x10,0xff,0x08,0xc8,0x48,0xc8,0x48,0x28,0x10 -+// 23493 寅 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x06,0x18,0x60,0x00,0x80,0xff,0x02,0xf8,0x80,0xf8,0x88,0x88,0xf8,0x88,0x88,0xf8,0x10,0x0c,0x04 -+// 23494 密 ; -+,0x01,0x00,0x1f,0x21,0x24,0x14,0x24,0x05,0x0f,0x70,0x20,0x08,0x08,0x08,0x0f,0x00,0x00,0x80,0xff,0x12,0xa8,0xa4,0x52,0x9a,0xf0,0x00,0x80,0x84,0x84,0x84,0xfc,0x00 -+// 23495 寇 ; -+,0x01,0x00,0x1f,0x10,0x20,0x1f,0x00,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x22,0x41,0x00,0x00,0x80,0xff,0x22,0x20,0x3e,0x20,0x7c,0x04,0x68,0x10,0x28,0xc5,0x01,0xff,0x00 -+// 23496 寈 ; -+,0x01,0x10,0x1f,0x20,0x0f,0x00,0x0f,0x00,0x3f,0x04,0x07,0x04,0x07,0x04,0x04,0x04,0x00,0x80,0xff,0x82,0xf8,0x80,0xf8,0x80,0xfe,0x08,0xf8,0x08,0xf8,0x08,0x08,0x18 -+// 23497 寉 ; -+,0x01,0x00,0x3f,0x24,0x44,0x0f,0x18,0x28,0x4f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x82,0x40,0xfc,0x40,0x40,0xfc,0x40,0x40,0xfc,0x40,0x40,0xfe,0x00 -+// 23498 寊 ; -+,0x01,0x00,0x1f,0x10,0x20,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x0c,0x30,0x00,0x80,0xff,0x82,0xf8,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c,0x08 -+// 23499 寋 ; -+,0x01,0x00,0x3f,0x22,0x5f,0x02,0x0f,0x02,0x3f,0x04,0x1b,0x62,0x02,0x02,0x02,0x01,0x00,0x80,0xff,0x22,0xfc,0x20,0xfc,0x20,0xfe,0x18,0xe7,0x22,0x20,0x60,0x08,0xf8 -+// 23500 富 ; -+,0x01,0x00,0x3f,0x20,0x5f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x00,0x80,0xff,0x02,0xfc,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x04 -+// 23501 寍 ; -+,0x01,0x00,0x1f,0x20,0x24,0x14,0x14,0x23,0x00,0x00,0x0f,0x09,0x09,0x09,0x7f,0x00,0x00,0xc0,0xff,0x02,0x88,0x56,0x12,0xf0,0x00,0x00,0xf8,0x48,0x48,0x48,0xff,0x00 -+// 23502 寎 ; -+,0x01,0x00,0x3f,0x20,0x44,0x25,0x24,0x3d,0x05,0x7d,0x25,0x25,0x25,0x25,0x45,0x05,0x00,0x80,0xff,0x02,0x00,0xfe,0x20,0xfe,0x22,0x22,0x52,0x8a,0x06,0x02,0x0a,0x04 -+// 23503 寏 ; -+,0x01,0x00,0x3f,0x22,0x43,0x04,0x0f,0x39,0x0a,0x0c,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0xff,0x02,0xf0,0x20,0xfc,0x48,0x28,0x98,0xff,0x40,0x20,0x18,0x0e,0x04 -+// 23504 寐 ; -+,0x01,0x00,0x3f,0x20,0x42,0x12,0x1e,0x02,0x03,0x7e,0x12,0x12,0x13,0x22,0x42,0x02,0x00,0x80,0xff,0x02,0x20,0xfc,0x20,0x20,0xfe,0x70,0x68,0xa4,0x27,0x22,0x20,0x20 -+// 23505 寑 ; -+,0x00,0x3f,0x28,0x4d,0x08,0x19,0x18,0x29,0x48,0x0b,0x0a,0x08,0x08,0x08,0x08,0x0b,0x80,0xff,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x02,0xf8,0x90,0x60,0x98,0x06 -+// 23506 寒 ; -+,0x00,0x00,0x1f,0x12,0x3f,0x02,0x0f,0x02,0x3f,0x02,0x05,0x08,0x11,0x20,0x00,0x00,0x80,0x40,0xff,0x22,0xfc,0x20,0xfc,0x20,0xfe,0x20,0x90,0x6c,0x07,0xc2,0x60,0x40 -+// 23507 寓 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x17,0x10,0x00,0x80,0xff,0x02,0xfc,0x88,0xf8,0x88,0xf8,0x80,0xfc,0xa4,0x94,0xfc,0x14,0x0c -+// 23508 寔 ; -+,0x01,0x00,0x1f,0x10,0x27,0x04,0x07,0x04,0x07,0x00,0x3f,0x04,0x04,0x0a,0x11,0x20,0x00,0x80,0xff,0x02,0xf4,0x10,0xf0,0x10,0xf0,0x00,0xfe,0x80,0xf8,0x80,0x80,0x7e -+// 23509 寕 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x02,0x0f,0x09,0x0f,0x00,0x7f,0x00,0x00,0x00,0x02,0x01,0x00,0x80,0xff,0x02,0xfc,0x00,0xfc,0x24,0xfc,0x00,0xff,0x80,0x80,0x80,0x80,0x00 -+// 23510 寖 ; -+,0x00,0x3f,0x20,0x49,0x04,0x44,0x20,0x29,0x08,0x0b,0x0a,0x74,0x10,0x10,0x11,0x16,0x80,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x02,0xf8,0x88,0x70,0x8c,0x03 -+// 23511 寗 ; -+,0x00,0x1f,0x21,0x24,0x14,0x15,0x07,0x38,0x07,0x04,0x07,0x04,0x7f,0x04,0x04,0x04,0x80,0xff,0x0a,0x9c,0x62,0x89,0xf8,0x40,0xf8,0x48,0xf8,0x48,0xff,0x08,0x28,0x10 -+// 23512 寘 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x01,0x07,0x04,0x07,0x04,0x07,0x04,0x3f,0x03,0x0c,0x30,0x00,0x80,0xff,0x82,0xf8,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x30,0x0c,0x03 -+// 23513 寙 ; -+,0x01,0x00,0x3f,0x20,0x43,0x1c,0x14,0x16,0x15,0x15,0x15,0x14,0x2e,0x24,0x40,0x01,0x00,0x80,0xff,0x02,0x0c,0x74,0x54,0x54,0x54,0xd4,0x54,0x52,0x5a,0x91,0x80,0x00 -+// 23514 寚 ; -+,0x00,0x3f,0x20,0x4f,0x00,0x0f,0x00,0x3f,0x04,0x07,0x08,0x7f,0x00,0x08,0x0f,0x08,0x80,0xff,0x02,0xfc,0x80,0xfc,0x80,0xff,0x00,0xfc,0x80,0xff,0x80,0x84,0xfc,0x04 -+// 23515 寛 ; -+,0x01,0x00,0x3f,0x22,0x5f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x18,0x00,0x80,0xff,0x22,0xfc,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x22,0x23,0x1e -+// 23516 寜 ; -+,0x01,0x00,0x3f,0x21,0x54,0x14,0x23,0x00,0x0f,0x09,0x09,0x3f,0x00,0x02,0x01,0x00,0x00,0x80,0xff,0x02,0xd4,0x1a,0xf0,0x00,0xf8,0x28,0x28,0xff,0x40,0x40,0x40,0x80 -+// 23517 寝 ; -+,0x01,0x00,0x3f,0x24,0x44,0x24,0x1c,0x14,0x05,0x0e,0x14,0x64,0x24,0x04,0x04,0x05,0x00,0x80,0xff,0x02,0xfc,0x04,0xfc,0x04,0xff,0x02,0xfc,0x48,0x30,0x48,0x87,0x02 -+// 23518 寞 ; -+,0x01,0x00,0x3f,0x22,0x5f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x03,0x0c,0x30,0x00,0x80,0xff,0x22,0xfc,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xfc,0x40,0x30,0x0e -+// 23519 察 ; -+,0x01,0x00,0x3f,0x24,0x4f,0x11,0x2a,0x54,0x0b,0x10,0x6f,0x00,0x08,0x10,0x22,0x01,0x00,0x80,0xff,0x02,0x7c,0x48,0x30,0x10,0xec,0x07,0xfa,0xa0,0x90,0x8c,0x88,0x00 -+// 23520 寠 ; -+,0x00,0x3f,0x20,0x4f,0x08,0x3f,0x08,0x0f,0x08,0x0f,0x01,0x7f,0x02,0x06,0x01,0x1e,0x80,0xff,0x82,0xf8,0x88,0xfc,0x88,0xf8,0x88,0xf8,0x00,0xff,0x20,0x20,0xc0,0x3c -+// 23521 寡 ; -+,0x00,0x1f,0x10,0x20,0x1f,0x01,0x07,0x06,0x05,0x3f,0x04,0x1f,0x61,0x01,0x02,0x04,0x80,0xff,0x02,0x04,0xfe,0x00,0xf8,0x48,0x28,0xff,0x10,0xfc,0x17,0x12,0x50,0x20 -+// 23522 寢 ; -+,0x01,0x3f,0x20,0x44,0x24,0x24,0x3c,0x04,0x04,0x7d,0x16,0x14,0x24,0x24,0x44,0x05,0x00,0xff,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x02,0xf8,0x88,0x70,0x8c,0x03 -+// 23523 寣 ; -+,0x01,0x00,0x3f,0x22,0x42,0x12,0x12,0x1e,0x02,0x02,0x3e,0x12,0x12,0x22,0x22,0x42,0x00,0x80,0xff,0x22,0x10,0xfe,0x00,0x7c,0x00,0x7c,0x00,0x7c,0x44,0x44,0x7c,0x44 -+// 23524 寤 ; -+,0x01,0x00,0x3f,0x22,0x42,0x12,0x1e,0x12,0x03,0x3e,0x12,0x12,0x12,0x22,0x42,0x02,0x00,0x80,0xff,0x02,0xfc,0x20,0xfc,0x44,0xff,0x00,0x7c,0x44,0x44,0x7c,0x44,0x00 -+// 23525 寥 ; -+,0x00,0x3f,0x20,0x5f,0x09,0x05,0x09,0x10,0x03,0x0c,0x73,0x0c,0x03,0x1c,0x01,0x1e,0x80,0xff,0x02,0x7c,0x24,0x14,0x64,0x84,0x60,0x98,0x47,0xe0,0x0c,0x30,0xc0,0x00 -+// 23526 實 ; -+,0x01,0x3f,0x20,0x4f,0x09,0x3f,0x08,0x0f,0x00,0x0f,0x0a,0x09,0x08,0x0f,0x06,0x18,0x00,0xff,0x02,0xf4,0x10,0xfc,0x90,0xf0,0x00,0xf0,0x90,0x50,0x10,0xf0,0x60,0x18 -+// 23527 寧 ; -+,0x01,0x00,0x3f,0x25,0x54,0x17,0x20,0x0f,0x09,0x7f,0x00,0x1f,0x00,0x00,0x02,0x01,0x00,0x80,0xff,0x0a,0x94,0xf4,0x00,0xf8,0x48,0xff,0x00,0xfc,0x80,0x80,0x80,0x00 -+// 23528 寨 ; -+,0x00,0x00,0x3f,0x22,0x4f,0x02,0x0f,0x02,0x3f,0x04,0x1b,0x60,0x04,0x08,0x12,0x01,0x80,0x40,0xff,0x26,0xf8,0x20,0xfc,0x20,0xff,0x88,0xf7,0x82,0x90,0x8c,0x88,0x00 -+// 23529 審 ; -+,0x01,0x00,0x3f,0x20,0x4f,0x04,0x3f,0x04,0x18,0x6f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x72,0x90,0xa0,0xff,0x90,0x8c,0xfb,0x88,0xf8,0x88,0x88,0xf8,0x08 -+// 23530 寪 ; -+,0x01,0x3f,0x20,0x5f,0x02,0x0c,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x15,0x14,0x28,0x40,0x00,0xff,0x02,0xfc,0x90,0x48,0xf8,0x08,0xfe,0x04,0xfe,0x12,0x4a,0xa2,0xaa,0x04 -+// 23531 寫 ; -+,0x01,0x00,0x3f,0x22,0x4c,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x10,0x2a,0x49,0x11,0x00,0x00,0x80,0xff,0x02,0x78,0x08,0x78,0x08,0xf8,0x00,0xfe,0x02,0x92,0x52,0x4a,0x04 -+// 23532 寬 ; -+,0x00,0x3f,0x22,0x5f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x04,0x18,0x80,0xff,0x22,0xfc,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x32,0x2a,0x1e -+// 23533 寭 ; -+,0x01,0x3f,0x20,0x4f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x14,0x24,0x03,0x00,0xff,0x82,0xfc,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x84,0xfe,0x84,0x42,0x0b,0xfa -+// 23534 寮 ; -+,0x01,0x00,0x3f,0x41,0x02,0x3f,0x14,0x0f,0x14,0x27,0x04,0x07,0x08,0x08,0x12,0x01,0x00,0x80,0xff,0x02,0x00,0xff,0x0a,0xfc,0x0b,0xfa,0x08,0xf8,0x90,0x8c,0x88,0x00 -+// 23535 寯 ; -+,0x01,0x00,0x3f,0x24,0x47,0x0c,0x17,0x24,0x07,0x04,0x0f,0x09,0x09,0x08,0x08,0x08,0x00,0x80,0xff,0x42,0xfc,0x40,0xfc,0x40,0xfe,0x00,0x3c,0x24,0xe4,0x04,0x14,0x08 -+// 23536 寰 ; -+,0x01,0x3f,0x20,0x4f,0x09,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x04,0x1c,0x67,0x04,0x00,0xff,0x02,0xf8,0x48,0xf8,0x00,0xff,0x00,0xf8,0x08,0xf8,0x48,0x30,0x1c,0x08 -+// 23537 寱 ; -+,0x00,0x3f,0x42,0x02,0x22,0x22,0x22,0x3e,0x02,0x7e,0x13,0x12,0x22,0x22,0x43,0x02,0x80,0xff,0x22,0x44,0xfe,0xd2,0xaa,0x82,0xfe,0x10,0xff,0x38,0x54,0x93,0x12,0x10 -+// 23538 寲 ; -+,0x01,0x3f,0x20,0x53,0x1c,0x11,0x1f,0x10,0x1f,0x24,0x7f,0x04,0x0a,0x11,0x21,0x02,0x00,0xff,0x02,0x7c,0x24,0x18,0x10,0x7f,0x12,0x50,0xdf,0x50,0x50,0xb0,0x1f,0x00 -+// 23539 寳 ; -+,0x00,0x3f,0x20,0x5f,0x04,0x1f,0x04,0x3f,0x00,0x0f,0x0a,0x09,0x08,0x0f,0x06,0x18,0x80,0xff,0x41,0x7e,0x92,0x34,0x52,0x10,0x30,0xf8,0x48,0x28,0x08,0xf8,0x30,0x0c -+// 23540 寴 ; -+,0x01,0x00,0x3f,0x24,0x5f,0x11,0x0a,0x3f,0x04,0x3f,0x04,0x16,0x25,0x44,0x14,0x09,0x00,0x80,0xff,0x02,0x7c,0x44,0x7c,0xc4,0x7c,0x44,0x7c,0x28,0x29,0x49,0x8f,0x00 -+// 23541 寵 ; -+,0x00,0x00,0x3f,0x24,0x5f,0x0a,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x15,0x12,0x80,0x40,0xff,0x22,0x3c,0x20,0xbe,0x02,0x3e,0x20,0x3e,0x20,0x3e,0x21,0x21,0x1f -+// 23542 寶 ; -+,0x00,0x3f,0x20,0x5e,0x08,0x1d,0x08,0x3e,0x00,0x0f,0x0a,0x09,0x08,0x0f,0x06,0x38,0x80,0xff,0x42,0xfc,0x20,0xfc,0xa4,0xfc,0x00,0xf8,0x48,0x28,0x08,0xf8,0x30,0x0e -+// 23543 寷 ; -+,0x01,0x3f,0x24,0x5e,0x14,0x1e,0x14,0x1e,0x14,0x3f,0x00,0x0f,0x08,0x0f,0x04,0x7f,0x00,0xff,0x92,0xbc,0x94,0xbc,0x94,0xbc,0x94,0xfe,0x00,0xf8,0x08,0xf8,0x10,0xff -+// 23544 寸 ; -+,0x00,0x00,0x00,0x00,0x7f,0x00,0x08,0x04,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 23545 对 ; -+,0x00,0x00,0x3e,0x02,0x02,0x22,0x12,0x0c,0x04,0x0a,0x12,0x11,0x21,0x40,0x00,0x00,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x88,0x48,0x68,0x48,0x08,0x08,0x08,0x28,0x10 -+// 23546 寺 ; -+,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x3f,0x00,0x04,0x02,0x03,0x02,0x00,0x00,0x80,0x80,0xfc,0x80,0x80,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 23547 寻 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x00,0x1f,0x00,0x3f,0x00,0x04,0x02,0x03,0x02,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 23548 导 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x08,0x07,0x00,0x00,0x7f,0x04,0x02,0x03,0x02,0x00,0x00,0x00,0xf8,0x08,0xf8,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 23549 寽 ; -+,0x00,0x01,0x3e,0x11,0x08,0x04,0x04,0x00,0x3f,0x00,0x04,0x02,0x03,0x02,0x00,0x00,0x1c,0xe0,0x08,0x0c,0x88,0xd0,0x90,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 23550 対 ; -+,0x10,0x08,0x0c,0x00,0x7f,0x02,0x02,0x24,0x14,0x08,0x14,0x12,0x23,0x42,0x00,0x00,0x04,0x04,0x04,0x04,0x7f,0x04,0x44,0x24,0x34,0x24,0x04,0x04,0x04,0x04,0x14,0x08 -+// 23551 寿 ; -+,0x00,0x00,0x3f,0x00,0x0f,0x01,0x3f,0x01,0x02,0x02,0x05,0x08,0x10,0x60,0x00,0x00,0x80,0x80,0xff,0x80,0xfe,0x00,0xff,0x08,0x08,0xff,0x08,0x88,0xc8,0x88,0x28,0x10 -+// 23552 尀 ; -+,0x00,0x00,0x3f,0x20,0x20,0x2f,0x29,0x29,0x29,0x2f,0x29,0x20,0x20,0x3f,0x20,0x00,0x04,0x04,0xc4,0x04,0x7f,0x04,0x44,0x24,0x34,0x24,0x04,0x04,0x04,0xc4,0x14,0x08 -+// 23553 封 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x3f,0x04,0x04,0x07,0x3c,0x10,0x00,0x04,0x04,0x84,0x04,0x3f,0xc4,0x04,0x24,0x14,0x94,0x04,0x04,0x84,0x14,0x08,0x00 -+// 23554 専 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x3f,0x04,0x03,0x02,0x00,0x00,0x80,0xff,0x80,0xf8,0x88,0xf8,0x88,0x88,0xf8,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 23555 尃 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x00,0x3f,0x04,0x04,0x00,0x00,0xa0,0x90,0xfe,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x90,0xff,0x10,0x10,0x50,0x20 -+// 23556 射 ; -+,0x04,0x08,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x3f,0x02,0x04,0x08,0x10,0x22,0x01,0x04,0x04,0x84,0x84,0xff,0x84,0x84,0xa4,0x94,0x94,0x94,0x84,0x84,0x84,0x94,0x08 -+// 23557 尅 ; -+,0x04,0x04,0x3f,0x04,0x04,0x3f,0x20,0x20,0x3f,0x2a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x04,0x04,0x84,0x04,0x7f,0x84,0xc4,0xa4,0xb4,0x24,0x04,0x14,0x09,0x01,0xff,0x00 -+// 23558 将 ; -+,0x04,0x04,0x04,0x45,0x36,0x24,0x04,0x05,0x0f,0x74,0x24,0x04,0x04,0x04,0x04,0x04,0x40,0x7e,0x84,0x84,0x48,0x10,0x64,0x84,0xff,0x04,0x84,0x44,0x64,0x44,0x14,0x08 -+// 23559 將 ; -+,0x02,0x02,0x22,0x22,0x23,0x3e,0x02,0x02,0x7f,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x40,0x7f,0x42,0xa4,0x94,0x48,0x30,0xc4,0xff,0x04,0x84,0x64,0x44,0x04,0x14,0x08 -+// 23560 專 ; -+,0x00,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x3f,0x00,0x7f,0x02,0x02,0x00,0x00,0x80,0xff,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x88,0xfe,0x14,0xff,0x10,0x10,0x50,0x20 -+// 23561 尉 ; -+,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x20,0x3f,0x22,0x2a,0x2a,0x32,0x42,0x4a,0x04,0x04,0x84,0x84,0x84,0x7f,0x84,0x04,0x24,0xd4,0x14,0x84,0x44,0x44,0x04,0x14,0x08 -+// 23562 尊 ; -+,0x04,0x02,0x3f,0x01,0x0f,0x09,0x0a,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x02,0x02,0x00,0x10,0x20,0xff,0x20,0xfc,0x24,0x3c,0x04,0xfc,0x04,0xfc,0x10,0xff,0x10,0x50,0x20 -+// 23563 尋 ; -+,0x1f,0x00,0x0f,0x00,0x1f,0x00,0x3f,0x08,0x3f,0x00,0x3f,0x04,0x02,0x02,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x7c,0x44,0x7c,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 23564 尌 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x20,0x20,0x3f,0x01,0x21,0x1a,0x17,0x7c,0x20,0x04,0x04,0xc4,0x04,0xbf,0x04,0x84,0xa4,0x94,0x94,0x04,0x84,0x04,0xc4,0x14,0x08 -+// 23565 對 ; -+,0x0a,0x4a,0x2a,0x2b,0x7f,0x11,0x0a,0x3f,0x04,0x1f,0x04,0x04,0x07,0x3c,0x10,0x00,0x04,0x84,0x84,0x04,0xbf,0x04,0x04,0xa4,0x14,0x94,0x14,0x04,0x84,0x14,0x08,0x00 -+// 23566 導 ; -+,0x20,0x13,0x00,0x38,0x08,0x08,0x08,0x08,0x14,0x23,0x00,0x7f,0x04,0x02,0x02,0x00,0x88,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x10,0xff,0x10,0x10,0x50,0x20 -+// 23567 小 ; -+,0x00,0x00,0x00,0x00,0x04,0x06,0x0c,0x08,0x10,0x20,0x40,0x00,0x00,0x00,0x02,0x01,0x80,0x80,0x80,0x80,0xa0,0x90,0x88,0x8c,0x86,0x83,0x82,0x80,0x80,0x80,0x80,0x00 -+// 23568 尐 ; -+,0x00,0x00,0x04,0x06,0x04,0x08,0x10,0x20,0x00,0x30,0x48,0x04,0x03,0x00,0x00,0x00,0x80,0x80,0xa0,0x90,0x88,0x84,0x86,0x84,0x80,0x80,0x80,0x00,0x00,0xe0,0x1f,0x00 -+// 23569 少 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x00,0x07,0x38,0x00,0x80,0x80,0x90,0x88,0x86,0x84,0x80,0x84,0x86,0x8c,0x18,0x30,0xc0,0x00,0x00,0x00 -+// 23570 尒 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x60,0x04,0x06,0x08,0x10,0x20,0x00,0x02,0x01,0x80,0x80,0x40,0x40,0x20,0x98,0x87,0x82,0x90,0x88,0x84,0x86,0x84,0x80,0x80,0x00 -+// 23571 尓 ; -+,0x02,0x03,0x04,0x07,0x08,0x10,0x20,0x44,0x06,0x0c,0x08,0x10,0x20,0x40,0x01,0x00,0x00,0x00,0x00,0xff,0x42,0x44,0x40,0x40,0x50,0x48,0x44,0x46,0x44,0x40,0x40,0x80 -+// 23572 尔 ; -+,0x02,0x03,0x04,0x07,0x08,0x10,0x22,0x03,0x02,0x04,0x08,0x10,0x20,0x00,0x01,0x00,0x00,0x00,0x00,0xff,0x82,0x44,0x40,0x50,0x48,0x44,0x46,0x44,0x40,0x40,0x40,0x80 -+// 23573 尕 ; -+,0x1f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x24,0x06,0x04,0x08,0x10,0x20,0x01,0x00,0xf0,0x10,0x10,0x3e,0x12,0x02,0x42,0x4a,0x44,0x50,0x48,0x44,0x46,0x44,0x40,0x80 -+// 23574 尖 ; -+,0x00,0x08,0x0c,0x08,0x10,0x22,0x41,0x00,0x00,0x7f,0x01,0x01,0x02,0x04,0x08,0x30,0x80,0xa0,0x90,0x8c,0x86,0x82,0x00,0x80,0x80,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 23575 尗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x08,0x0c,0x08,0x10,0x20,0x42,0x01,0x80,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0xa0,0x90,0x8c,0x86,0x83,0x82,0x80,0x00 -+// 23576 尘 ; -+,0x00,0x00,0x08,0x0c,0x10,0x20,0x40,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x80,0x80,0x90,0x88,0x86,0x83,0x82,0x00,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x00 -+// 23577 尙 ; -+,0x00,0x04,0x06,0x08,0x10,0x3f,0x50,0x13,0x12,0x12,0x12,0x13,0x12,0x10,0x10,0x10,0x80,0x90,0x88,0x86,0x84,0xfc,0x04,0xe4,0x24,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 23578 尚 ; -+,0x00,0x10,0x08,0x06,0x04,0x1f,0x10,0x13,0x12,0x12,0x12,0x13,0x12,0x12,0x10,0x10,0x80,0x88,0x8c,0x90,0xa0,0xfe,0x02,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04 -+// 23579 尛 ; -+,0x00,0x00,0x04,0x0c,0x10,0x20,0x04,0x04,0x16,0x15,0x25,0x24,0x44,0x05,0x14,0x08,0x80,0x80,0x90,0x8c,0x84,0x80,0x88,0x08,0x48,0x6a,0x49,0x89,0x89,0x08,0x28,0x10 -+// 23580 尜 ; -+,0x00,0x04,0x0c,0x10,0x22,0x01,0x7f,0x02,0x04,0x08,0x14,0x66,0x08,0x10,0x02,0x01,0x80,0x90,0x88,0x84,0x82,0x00,0xff,0x20,0x90,0x8c,0xa7,0x92,0x88,0x88,0x80,0x00 -+// 23581 尝 ; -+,0x00,0x08,0x04,0x04,0x3f,0x20,0x40,0x0f,0x00,0x3f,0x01,0x02,0x04,0x09,0x1f,0x08,0x80,0x90,0x98,0xa2,0xff,0x02,0x00,0xf8,0x00,0xff,0x00,0x20,0x10,0xf8,0x0c,0x08 -+// 23582 尞 ; -+,0x00,0x00,0x3f,0x09,0x0a,0x07,0x1c,0x67,0x04,0x07,0x00,0x04,0x06,0x08,0x12,0x01,0x80,0x80,0xff,0x4c,0x30,0xf8,0x17,0xf0,0x10,0xf0,0x80,0xa0,0x90,0x8c,0x88,0x00 -+// 23583 尟 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x00,0x7f,0x08,0x28,0x2f,0x28,0x29,0x58,0x4f,0x00,0x10,0x10,0x10,0x54,0x53,0x92,0x10,0x12,0x13,0x06,0x18,0x60,0x80,0x00,0xff,0x00 -+// 23584 尠 ; -+,0x11,0x11,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x2a,0x29,0x31,0x20,0x3f,0x00,0x00,0x08,0x08,0x88,0x08,0x2a,0x29,0x49,0x0a,0xcb,0x0a,0x84,0x08,0x10,0xa0,0x40,0x80 -+// 23585 尡 ; -+,0x08,0x08,0x4a,0x2b,0x2c,0x08,0x7f,0x14,0x14,0x14,0x14,0x14,0x26,0x24,0x41,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x08,0x88,0x8b,0xec,0x88,0x88,0x89,0xa9,0xc7,0x80 -+// 23586 尢 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x40,0x00,0x00,0x00,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 23587 尣 ; -+,0x04,0x06,0x04,0x08,0x12,0x22,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x20,0x10,0x08,0x06,0x23,0x22,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00,0x00 -+// 23588 尤 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x20,0x18,0x08,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 23589 尥 ; -+,0x08,0x08,0x08,0x08,0x7f,0x0a,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x22,0x22,0x43,0x00,0x20,0x30,0x20,0x20,0xbe,0x42,0x82,0x22,0x12,0x1a,0x12,0x02,0x0a,0x05,0xff,0x00 -+// 23590 尦 ; -+,0x0a,0x09,0x10,0x20,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x41,0x00,0x20,0x30,0xa0,0xbe,0x42,0x42,0x82,0x22,0x12,0x12,0x02,0x0a,0x05,0x01,0xff,0x00 -+// 23591 尧 ; -+,0x02,0x02,0x07,0x79,0x00,0x00,0x07,0x38,0x00,0x7f,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x1c,0xe0,0x10,0xb8,0xc2,0x32,0x0e,0x00,0xff,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 23592 尨 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x23,0x00,0x00,0x20,0x18,0x10,0xfe,0x44,0x48,0x74,0x48,0x50,0x66,0x58,0x61,0xc1,0x3f,0x00 -+// 23593 尩 ; -+,0x14,0x12,0x11,0x21,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x21,0x40,0x00,0x00,0xfe,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0xfe,0x01,0x01,0xff,0x00,0x00 -+// 23594 尪 ; -+,0x10,0x10,0x11,0x10,0x7e,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x22,0x22,0x41,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x01,0xff,0x00 -+// 23595 尫 ; -+,0x00,0x7f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x21,0x40,0x00,0x7e,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0xff,0x00,0x01,0x01,0xff,0x00 -+// 23596 尬 ; -+,0x10,0x10,0x10,0x10,0x7e,0x14,0x15,0x16,0x14,0x14,0x14,0x24,0x25,0x44,0x43,0x00,0x20,0x20,0x50,0x48,0x84,0x8b,0x4a,0x48,0x48,0x48,0x88,0x88,0x09,0x01,0xff,0x00 -+// 23597 尭 ; -+,0x00,0x00,0x1f,0x00,0x04,0x04,0x7f,0x04,0x04,0x3f,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x80,0xfe,0x80,0x90,0x90,0xff,0x10,0x10,0xff,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 23598 尮 ; -+,0x10,0x11,0x10,0x7e,0x14,0x14,0x14,0x15,0x15,0x14,0x14,0x14,0x25,0x24,0x43,0x00,0x00,0xfc,0x44,0x4e,0x42,0x8a,0x94,0x10,0xff,0x38,0x54,0x92,0x11,0x11,0xff,0x00 -+// 23599 尯 ; -+,0x10,0x10,0x10,0x7e,0x15,0x14,0x14,0x14,0x14,0x14,0x14,0x15,0x26,0x24,0x43,0x00,0x40,0x7e,0x44,0x88,0xff,0x80,0xbc,0xa4,0xa4,0xac,0xa2,0x3e,0x00,0x01,0xff,0x00 -+// 23600 尰 ; -+,0x10,0x11,0x10,0x11,0x7e,0x15,0x15,0x15,0x15,0x15,0x14,0x25,0x24,0x27,0x44,0x03,0x1c,0xe0,0x20,0xfc,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfc,0x20,0xfe,0x01,0xff -+// 23601 就 ; -+,0x08,0x04,0x7f,0x00,0x00,0x3f,0x21,0x21,0x3f,0x04,0x16,0x15,0x25,0x44,0x15,0x08,0x10,0x14,0x92,0x12,0x10,0xff,0x28,0x28,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 23602 尲 ; -+,0x10,0x10,0x13,0x10,0x7f,0x14,0x17,0x14,0x15,0x14,0x14,0x15,0x26,0x24,0x43,0x00,0x88,0x50,0xfe,0x50,0xfc,0x54,0xff,0x54,0xfc,0xd0,0xd8,0x56,0x52,0x51,0xff,0x00 -+// 23603 尳 ; -+,0x10,0x10,0x10,0x7e,0x15,0x15,0x14,0x14,0x14,0x14,0x14,0x24,0x24,0x44,0x43,0x00,0x7c,0x44,0x74,0x54,0xff,0x01,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x4d,0x01,0xff,0x00 -+// 23604 尴 ; -+,0x10,0x10,0x11,0x7f,0x15,0x15,0x14,0x14,0x14,0x14,0x14,0x25,0x24,0x44,0x43,0x00,0x48,0x48,0x4f,0x48,0x54,0x62,0x40,0xfe,0xaa,0xaa,0xaa,0xff,0x00,0x01,0xff,0x00 -+// 23605 尵 ; -+,0x10,0x10,0x10,0x10,0x7e,0x15,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x24,0x25,0x43,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0xc2,0xaa,0x86,0xfe,0x48,0xc6,0x05,0xff -+// 23606 尶 ; -+,0x00,0x01,0x7f,0x29,0x29,0x29,0x29,0x29,0x28,0x29,0x29,0x29,0x2b,0x48,0x47,0x00,0x08,0xe8,0x4f,0xe8,0x2a,0xe9,0x51,0xe0,0x00,0xfe,0x4a,0x4a,0xff,0x01,0xff,0x00 -+// 23607 尷 ; -+,0x10,0x11,0x11,0x11,0x7d,0x15,0x15,0x15,0x14,0x35,0x25,0x25,0x27,0x44,0x47,0x00,0x08,0xe8,0x48,0xef,0x28,0xea,0x51,0xf0,0x00,0xfc,0x54,0x54,0xfe,0x00,0xff,0x00 -+// 23608 尸 ; -+,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0xfe,0x02,0x02,0x02,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 23609 尹 ; -+,0x00,0x1f,0x01,0x01,0x3f,0x01,0x01,0x1f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0xfc,0x04,0x04,0xff,0x04,0x04,0xfc,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 23610 尺 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x84,0x80,0x40,0x40,0x20,0x10,0x0c,0x07,0x02,0x00 -+// 23611 尻 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x17,0x10,0x11,0x21,0x22,0x22,0x44,0x48,0x10,0xfc,0x04,0x04,0xfc,0x84,0x80,0x80,0xf0,0x90,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 23612 尼 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x12,0x12,0x12,0x13,0x12,0x12,0x22,0x22,0x41,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00,0x10,0x78,0xc0,0x00,0x00,0x02,0x02,0xfe,0x00 -+// 23613 尽 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x13,0x10,0x20,0x42,0x01,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x40,0x40,0x20,0x10,0xcc,0x47,0x02,0x80,0xc0,0x40,0x00 -+// 23614 尾 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x17,0x10,0x10,0x17,0x10,0x1f,0x10,0x20,0x20,0x40,0x00,0xfc,0x04,0xfc,0x00,0x7c,0x80,0x80,0xfc,0x80,0xfe,0x80,0x82,0x82,0x7e,0x00 -+// 23615 尿 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x12,0x12,0x34,0x24,0x28,0x51,0x40,0x00,0xfc,0x04,0x04,0xfc,0x40,0x44,0x4e,0x50,0x60,0x50,0x48,0x44,0x47,0x42,0x80 -+// 23616 局 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x17,0x14,0x14,0x17,0x14,0x24,0x20,0x40,0xfc,0x04,0x04,0xfc,0x04,0x00,0xfe,0x02,0xe2,0x22,0x22,0xe2,0x22,0x02,0x0a,0x04 -+// 23617 屁 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x12,0x12,0x12,0x13,0x12,0x12,0x12,0x22,0x23,0x42,0x00,0x00,0xfc,0x04,0x04,0xfc,0x20,0x20,0x26,0xb8,0x20,0x20,0x22,0xa2,0x23,0x1e,0x00 -+// 23618 层 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x13,0x10,0x10,0x1f,0x11,0x11,0x12,0x27,0x20,0x40,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfc,0x00,0x00,0xff,0x00,0x08,0x04,0xfe,0x04,0x00 -+// 23619 屃 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x0b,0x0a,0x0a,0x0a,0x12,0x12,0x12,0x20,0x20,0x41,0x02,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x02,0x22,0x22,0x22,0x22,0x22,0x50,0x88,0x06,0x04 -+// 23620 屄 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x17,0x14,0x18,0x11,0x11,0x11,0x22,0x24,0x58,0x00,0xfe,0x02,0x02,0xfe,0x82,0x40,0xff,0x02,0x14,0x10,0x90,0x08,0x08,0x04,0x03,0x02 -+// 23621 居 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x13,0x12,0x12,0x22,0x23,0x42,0x00,0xfc,0x04,0x04,0xfc,0x40,0x40,0xfe,0x40,0x40,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 23622 屆 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x14,0x15,0x14,0x14,0x14,0x15,0x24,0x27,0x44,0x00,0xfe,0x02,0x02,0xfe,0x20,0x20,0x22,0xfa,0x22,0x22,0x22,0xfa,0x02,0xfe,0x02,0x00 -+// 23623 屇 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x13,0x12,0x12,0x13,0x12,0x12,0x22,0x23,0x42,0x00,0xfe,0x02,0x02,0xfe,0x02,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 23624 屈 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0a,0x0a,0x13,0x10,0x14,0x14,0x24,0x27,0x44,0x00,0xfe,0x02,0x02,0xfe,0x02,0x20,0x22,0x22,0xfe,0x22,0x21,0x21,0x21,0xff,0x01,0x00 -+// 23625 屉 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x14,0x14,0x1f,0x14,0x14,0x14,0x14,0x24,0x27,0x44,0x00,0x00,0xfc,0x04,0x04,0xfc,0x88,0x88,0xff,0x88,0x88,0x88,0xf8,0x00,0xfe,0x00,0x00 -+// 23626 届 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x17,0x14,0x14,0x17,0x14,0x24,0x27,0x44,0x00,0x00,0xfe,0x02,0x02,0xfe,0x40,0x40,0xfc,0x44,0x44,0xfc,0x44,0x44,0xfc,0x04,0x00 -+// 23627 屋 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x11,0x12,0x17,0x10,0x10,0x1f,0x20,0x20,0x5f,0x00,0x00,0xfe,0x02,0xfe,0x00,0xfe,0x10,0x08,0xfc,0x48,0x40,0xfe,0x40,0x40,0xff,0x00 -+// 23628 屌 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x13,0x12,0x13,0x10,0x17,0x14,0x14,0x24,0x24,0x44,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfc,0x04,0xfc,0x40,0xfe,0x42,0x42,0x42,0x4a,0x44,0x40 -+// 23629 屍 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x12,0x12,0x13,0x14,0x14,0x2a,0x21,0x22,0x44,0x08,0x00,0xfe,0x02,0xfe,0x00,0xfe,0x10,0x12,0xd3,0x5c,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 23630 屎 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x14,0x12,0x1f,0x10,0x10,0x11,0x12,0x14,0x28,0x20,0x40,0xfc,0x04,0x04,0xfc,0x48,0x4c,0x50,0xfe,0xc0,0xe0,0x50,0x4c,0x47,0x42,0x40,0x40 -+// 23631 屏 ; -+,0x1f,0x10,0x10,0x1f,0x12,0x11,0x17,0x11,0x11,0x1f,0x11,0x11,0x22,0x22,0x44,0x08,0xfe,0x02,0x02,0xfe,0x08,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 23632 屐 ; -+,0x1f,0x10,0x10,0x1f,0x12,0x12,0x15,0x19,0x12,0x16,0x1a,0x12,0x22,0x22,0x42,0x02,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x44,0x28,0x10,0x28,0x47,0x82 -+// 23633 屑 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x12,0x11,0x13,0x12,0x13,0x12,0x13,0x22,0x22,0x42,0x02,0xfe,0x02,0x02,0xfe,0x48,0x4c,0x50,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 23634 屒 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x15,0x25,0x29,0x29,0x53,0x21,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x00,0xfc,0x00,0xfe,0x24,0x28,0x10,0x4c,0x87,0x02 -+// 23635 屓 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x17,0x22,0x23,0x44,0x08,0xfe,0x02,0x02,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x08,0x06,0x04 -+// 23636 屔 ; -+,0x00,0x07,0x38,0x20,0x20,0x3f,0x24,0x24,0x24,0x24,0x24,0x7f,0x00,0x00,0x01,0x02,0x00,0x7f,0x41,0x41,0x7f,0x41,0x50,0x50,0x53,0x5c,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 23637 展 ; -+,0x1f,0x10,0x10,0x1f,0x11,0x11,0x17,0x11,0x1f,0x12,0x12,0x12,0x22,0x22,0x47,0x02,0xfc,0x04,0x04,0xfc,0x10,0x10,0xfe,0x10,0xff,0x84,0x4e,0x30,0x10,0x8c,0x07,0x02 -+// 23638 屖 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x17,0x12,0x11,0x1f,0x10,0x10,0x17,0x20,0x20,0x40,0x00,0xfc,0x04,0x04,0xfc,0x40,0xfc,0x08,0x10,0xfe,0x40,0x40,0xfc,0x40,0x40,0x40,0x40 -+// 23639 屗 ; -+,0x00,0x3f,0x21,0x21,0x3f,0x20,0x23,0x2c,0x24,0x2f,0x24,0x3f,0x24,0x24,0x43,0x40,0x00,0x04,0x04,0x04,0x7f,0x04,0x04,0x44,0x24,0x34,0x24,0x04,0x15,0x09,0xff,0x00 -+// 23640 屘 ; -+,0x00,0x3f,0x20,0x3f,0x20,0x21,0x2e,0x22,0x2f,0x22,0x2f,0x22,0x22,0x22,0x43,0x00,0x00,0xbf,0x82,0x94,0x08,0x88,0x7f,0x08,0x88,0x08,0x88,0x08,0x29,0x11,0xff,0x00 -+// 23641 屙 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x17,0x14,0x15,0x16,0x15,0x14,0x17,0x25,0x24,0x44,0x00,0xfe,0x02,0x02,0xfe,0x00,0xbf,0x82,0x3a,0x2a,0x2a,0xba,0xaa,0x02,0x0a,0x04,0x00 -+// 23642 屚 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x1f,0x10,0x17,0x14,0x14,0x15,0x14,0x25,0x24,0x44,0x04,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x40,0xfe,0x42,0x42,0xda,0x42,0xda,0x42,0x4a,0x44 -+// 23643 屛 ; -+,0x1f,0x10,0x10,0x1f,0x11,0x12,0x17,0x11,0x11,0x1f,0x11,0x11,0x22,0x22,0x44,0x08,0xfe,0x02,0x02,0xfe,0x04,0x08,0xbf,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08 -+// 23644 屜 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x14,0x16,0x19,0x12,0x14,0x1c,0x14,0x14,0x24,0x24,0x44,0xfe,0x02,0x02,0xfe,0x00,0xa4,0xa4,0xff,0xa4,0xa4,0xbc,0xa4,0x80,0x80,0xff,0x00 -+// 23645 屝 ; -+,0x1f,0x10,0x10,0x1f,0x11,0x11,0x1f,0x11,0x11,0x17,0x11,0x11,0x2f,0x21,0x41,0x01,0xfe,0x02,0x02,0xfe,0x10,0x10,0x1e,0x10,0x10,0x1e,0x10,0x10,0x1f,0x10,0x10,0x10 -+// 23646 属 ; -+,0x1f,0x10,0x1f,0x10,0x17,0x10,0x13,0x12,0x13,0x10,0x17,0x14,0x24,0x25,0x44,0x04,0xfe,0x02,0xfe,0x00,0xfc,0x40,0xfc,0x44,0xfc,0x40,0xfe,0x52,0x7a,0x8a,0x02,0x06 -+// 23647 屟 ; -+,0x1f,0x10,0x10,0x1f,0x12,0x1f,0x12,0x12,0x12,0x13,0x10,0x17,0x10,0x21,0x22,0x44,0xfe,0x02,0x02,0xfe,0x88,0xfe,0x88,0xf8,0x00,0xfc,0x40,0xff,0xe0,0x58,0x4e,0x44 -+// 23648 屠 ; -+,0x1f,0x10,0x1f,0x10,0x10,0x13,0x10,0x1f,0x11,0x17,0x1a,0x13,0x22,0x22,0x43,0x02,0xfe,0x02,0xfe,0x40,0x44,0xf8,0x50,0xff,0x80,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 23649 屡 ; -+,0x1f,0x10,0x1f,0x12,0x11,0x1f,0x10,0x11,0x16,0x11,0x1f,0x12,0x22,0x21,0x46,0x18,0xfe,0x02,0xfe,0x48,0x50,0xff,0xe0,0x58,0x46,0x40,0xfe,0x10,0x10,0xe0,0x1c,0x08 -+// 23650 屢 ; -+,0x1f,0x10,0x1f,0x12,0x1f,0x12,0x13,0x10,0x17,0x14,0x17,0x11,0x2f,0x22,0x21,0x4e,0xfc,0x04,0xfc,0x48,0xfe,0x48,0xf8,0x40,0xfc,0x44,0xfc,0x40,0xfe,0x10,0xe0,0x1c -+// 23651 屣 ; -+,0x1f,0x10,0x10,0x1f,0x12,0x14,0x18,0x12,0x15,0x1c,0x14,0x14,0x14,0x25,0x26,0x44,0xfe,0x02,0x02,0xfe,0x10,0x90,0x9e,0x90,0xff,0x10,0x90,0x9e,0x90,0x50,0x3f,0x00 -+// 23652 層 ; -+,0x1f,0x10,0x1f,0x12,0x11,0x17,0x16,0x15,0x17,0x10,0x13,0x12,0x13,0x22,0x23,0x42,0xfe,0x02,0xfe,0x08,0x10,0xfe,0x4a,0x52,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 23653 履 ; -+,0x1f,0x10,0x1f,0x10,0x12,0x16,0x19,0x12,0x14,0x1c,0x14,0x14,0x14,0x25,0x24,0x45,0xfe,0x02,0xfe,0x80,0xfe,0x80,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xfe,0x44,0x38,0xc7 -+// 23654 屦 ; -+,0x1f,0x10,0x1f,0x10,0x12,0x14,0x19,0x12,0x15,0x1c,0x17,0x14,0x24,0x24,0x44,0x05,0xfe,0x02,0xfe,0x92,0x54,0xfe,0x38,0x54,0x93,0x40,0xff,0x44,0xc4,0x38,0x46,0x81 -+// 23655 屧 ; -+,0x1f,0x10,0x1f,0x14,0x16,0x19,0x14,0x16,0x1c,0x14,0x14,0x15,0x14,0x24,0x24,0x45,0xfe,0x02,0xfe,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xff,0x10,0xff,0x38,0x54,0x93,0x12 -+// 23656 屨 ; -+,0x3f,0x20,0x3f,0x25,0x2b,0x31,0x25,0x24,0x2d,0x35,0x25,0x24,0x27,0x24,0x44,0x05,0xfe,0x02,0xfe,0x24,0xfe,0x24,0xfc,0x20,0xfc,0x24,0xfc,0xa0,0xfe,0x88,0x70,0x8c -+// 23657 屩 ; -+,0x3f,0x20,0x3f,0x24,0x24,0x28,0x32,0x24,0x2c,0x37,0x25,0x25,0x25,0x25,0x45,0x45,0xfe,0x02,0xfe,0x00,0xfc,0x20,0xfe,0x44,0xff,0x44,0xfe,0x02,0x7a,0x4a,0x7a,0x06 -+// 23658 屪 ; -+,0x3f,0x20,0x3f,0x20,0x2f,0x2a,0x31,0x26,0x3f,0x25,0x24,0x27,0x22,0x23,0x44,0x48,0xfe,0x02,0xfe,0x40,0xff,0x44,0xb8,0x07,0xfe,0x24,0x94,0xfc,0x40,0x50,0x4c,0xc4 -+// 23659 屫 ; -+,0x3f,0x20,0x3f,0x20,0x22,0x2a,0x2b,0x2e,0x22,0x3f,0x2a,0x2a,0x2a,0x2a,0x52,0x02,0xfe,0x02,0xfe,0x00,0xfc,0x20,0xff,0x44,0xbb,0x28,0xfe,0x82,0xba,0xaa,0xba,0x86 -+// 23660 屬 ; -+,0x1f,0x10,0x1f,0x12,0x11,0x12,0x17,0x14,0x17,0x14,0x1b,0x12,0x13,0x20,0x20,0x47,0xfe,0x02,0xfe,0x48,0x50,0x48,0xfe,0x92,0xfe,0x42,0xfa,0x4a,0xfa,0x52,0x7a,0x96 -+// 23661 屭 ; -+,0x1f,0x10,0x1f,0x10,0x13,0x12,0x12,0x13,0x11,0x12,0x1f,0x2c,0x2a,0x2f,0x45,0x58,0xfe,0x02,0xfe,0x00,0xfc,0xa4,0x54,0xfc,0x08,0x04,0x9f,0x99,0x95,0x9f,0x0a,0x91 -+// 23662 屮 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x84,0x84,0x84,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x80,0x80,0x80 -+// 23663 屯 ; -+,0x01,0x01,0x01,0x7f,0x01,0x11,0x11,0x11,0x11,0x1f,0x11,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x08,0x08,0x08,0x08,0xf8,0x08,0x02,0x02,0x03,0xfe,0x00 -+// 23664 屰 ; -+,0x04,0x02,0x02,0x7f,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x04,0x08,0x10,0xff,0x80,0x84,0x84,0x84,0x84,0xfc,0x80,0x00,0x00,0x00,0x00,0x00 -+// 23665 山 ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x10,0x00,0x80,0x80,0x80,0x80,0x80,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0xfe,0x02,0x00 -+// 23666 屲 ; -+,0x00,0x00,0x00,0x03,0x3c,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0x0e,0x70,0x80,0x80,0x80,0x80,0x84,0x84,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23667 屳 ; -+,0x00,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x80,0x80,0x40,0x40,0x20,0x18,0x07,0x82,0x80,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23668 屴 ; -+,0x00,0x10,0x10,0x10,0x1f,0x00,0x00,0x3f,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x80,0x84,0x84,0x84,0xfc,0x80,0x80,0xfc,0x84,0x84,0x04,0x04,0x04,0x04,0x28,0x10 -+// 23669 屵 ; -+,0x00,0x10,0x10,0x1f,0x10,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x80,0x84,0x84,0xfc,0x04,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 23670 屶 ; -+,0x00,0x00,0x20,0x20,0x3f,0x00,0x3f,0x01,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x08,0x80,0x80,0x82,0x82,0xfe,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x3c,0x08 -+// 23671 屷 ; -+,0x08,0x09,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x21,0x02,0x04,0x00,0x00,0xfc,0x44,0x44,0x48,0x48,0x5f,0x41,0x41,0x41,0x81,0x81,0x01,0x12,0x0a,0x04 -+// 23672 屸 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x7a,0x21,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 23673 屹 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x40,0x60,0x40,0x7f,0x80,0x00,0xfe,0x04,0x08,0x10,0x20,0x42,0x82,0x83,0x7e,0x00 -+// 23674 屺 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x82,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 23675 屻 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x7a,0x22,0x00,0x00,0x01,0x00,0xfe,0x12,0x12,0x12,0x52,0x52,0x52,0x92,0x22,0x22,0x22,0x42,0x42,0x8a,0x04 -+// 23676 屼 ; -+,0x08,0x08,0x09,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x01,0x02,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 23677 屽 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 23678 屾 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3e,0x22,0x00,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x00,0x00 -+// 23679 屿 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x00,0x00,0x40,0x40,0x40,0x7f,0x40,0x40,0xfe,0x42,0x02,0x02,0xfa,0x02,0x02,0x02,0x0a,0x04 -+// 23680 岀 ; -+,0x00,0x00,0x08,0x08,0x08,0x1f,0x08,0x00,0x10,0x10,0x10,0x10,0x3f,0x10,0x00,0x00,0x80,0x80,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x82,0x82,0x82,0xfe,0x02,0x00,0x00 -+// 23681 岁 ; -+,0x00,0x10,0x10,0x10,0x1f,0x02,0x02,0x07,0x08,0x12,0x21,0x01,0x00,0x03,0x0c,0x30,0x80,0x84,0x84,0x84,0xfc,0x00,0x00,0xfc,0x08,0x08,0x10,0x20,0xc0,0x00,0x00,0x00 -+// 23682 岂 ; -+,0x00,0x10,0x10,0x1f,0x00,0x00,0x1f,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x0f,0x00,0x80,0x84,0x84,0xfc,0x04,0x00,0xf8,0x08,0x08,0xf8,0x00,0x04,0x04,0x06,0xfc,0x00 -+// 23683 岃 ; -+,0x00,0x10,0x10,0x10,0x1f,0x00,0x3f,0x00,0x04,0x04,0x09,0x11,0x02,0x04,0x08,0x10,0x40,0x42,0x42,0x42,0xfe,0x00,0xfe,0x82,0x82,0x82,0x02,0x02,0x04,0x04,0x38,0x10 -+// 23684 岄 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x3e,0x20,0x00,0x01,0x02,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 23685 岅 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x7e,0x21,0x01,0x02,0x02,0x05,0x04,0x1e,0xf0,0x80,0x80,0xfe,0xc2,0xa4,0xa4,0xa4,0xa4,0x18,0x24,0x42,0x83,0x02 -+// 23686 岆 ; -+,0x00,0x10,0x11,0x10,0x54,0x54,0x57,0x54,0x54,0x54,0x54,0x5c,0x75,0x02,0x04,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0xff,0x20,0x50,0x50,0x88,0x84,0x03,0x02,0x00,0x00 -+// 23687 岇 ; -+,0x00,0x10,0x10,0x1f,0x10,0x03,0x1c,0x10,0x10,0x10,0x16,0x38,0x10,0x00,0x00,0x00,0x80,0x84,0x84,0xfc,0x00,0x7c,0x44,0x44,0x44,0x44,0x44,0x54,0x48,0x40,0x40,0x40 -+// 23688 岈 ; -+,0x00,0x10,0x10,0x10,0x54,0x54,0x55,0x54,0x54,0x54,0x5c,0x74,0x01,0x02,0x04,0x00,0x00,0xff,0x08,0x88,0xc8,0x88,0xff,0x18,0x28,0x28,0x48,0x88,0x08,0x08,0x28,0x10 -+// 23689 岉 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2d,0x72,0x24,0x01,0x06,0x00,0x80,0x80,0x82,0xff,0xaa,0x2a,0x2a,0x4a,0x4a,0x92,0x12,0x22,0x42,0x94,0x08,0x00 -+// 23690 岊 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x0f,0x00,0x00,0x10,0x10,0x10,0x3f,0x10,0x00,0x00,0xfc,0x84,0x84,0xfc,0x00,0x02,0xfe,0x80,0x80,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23691 岋 ; -+,0x08,0x09,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x79,0x22,0x02,0x04,0x08,0x00,0xfc,0x88,0x88,0x88,0x90,0x9e,0xc4,0xa4,0xa8,0x10,0x10,0x28,0x47,0x82,0x00 -+// 23692 岌 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x04,0x04,0x04,0x06,0x09,0x08,0x10,0x20,0x43,0x0c,0x80,0x84,0x84,0xfc,0x00,0xf8,0x10,0x10,0x3c,0x04,0x08,0x90,0x60,0x98,0x07,0x02 -+// 23693 岍 ; -+,0x08,0x09,0x08,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x7a,0x20,0x00,0x01,0x02,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08,0x00 -+// 23694 岎 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x01,0x02,0x48,0x6c,0x48,0x44,0x84,0x82,0x01,0xfc,0x24,0x24,0x24,0x44,0x44,0x84,0x14,0x08 -+// 23695 岏 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x7a,0x20,0x00,0x01,0x02,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 23696 岐 ; -+,0x00,0x10,0x10,0x11,0x54,0x54,0x55,0x54,0x54,0x54,0x5c,0x74,0x40,0x00,0x07,0x02,0x20,0x20,0x20,0xfe,0x20,0x20,0xfc,0x84,0x84,0x48,0x48,0x30,0x48,0x87,0x02,0x00 -+// 23697 岑 ; -+,0x00,0x10,0x10,0x1f,0x00,0x01,0x02,0x05,0x18,0x60,0x0f,0x00,0x00,0x00,0x00,0x00,0x80,0x84,0x84,0xfc,0x80,0x40,0x20,0x18,0xc7,0x82,0xf8,0x10,0x10,0x20,0x40,0x80 -+// 23698 岒 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x00,0x00,0x10,0x10,0x28,0x28,0x44,0x86,0x23,0x12,0x10,0xfe,0x04,0x04,0x08,0x08,0x10,0x10 -+// 23699 岓 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x01,0x02,0x00,0x00,0x0e,0x78,0x40,0x40,0x7f,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08,0x00 -+// 23700 岔 ; -+,0x02,0x03,0x02,0x04,0x0f,0x31,0x01,0x02,0x04,0x08,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x20,0x10,0x08,0xf7,0x12,0x10,0x10,0x50,0xa0,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23701 岕 ; -+,0x00,0x10,0x10,0x1f,0x10,0x00,0x01,0x02,0x0c,0x32,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x84,0x84,0xfc,0x84,0x80,0x40,0x30,0x0e,0x24,0x20,0x20,0x20,0x20,0x20,0x20 -+// 23702 岖 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x00,0x00,0x00,0xff,0x82,0x83,0xc2,0xa4,0x94,0x88,0x88,0x94,0x92,0xa3,0xc2,0xff,0x00,0x00 -+// 23703 岗 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x10,0x16,0x11,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x80,0x84,0x84,0xfc,0x00,0xfc,0x14,0x14,0x24,0xc4,0x24,0x14,0x14,0x04,0x14,0x08 -+// 23704 岘 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x01,0x02,0x04,0x00,0xfc,0x84,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 23705 岙 ; -+,0x00,0x00,0x1f,0x01,0x3f,0x02,0x02,0x04,0x18,0x60,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0xfc,0x00,0x00,0xff,0x40,0x20,0x98,0x87,0x82,0x88,0x88,0x88,0xf8,0x08,0x00 -+// 23706 岚 ; -+,0x00,0x10,0x10,0x1f,0x00,0x0f,0x08,0x0c,0x0a,0x09,0x08,0x11,0x12,0x2c,0x40,0x00,0x80,0x82,0x82,0xfe,0x00,0xfc,0x04,0x24,0x34,0x44,0x84,0x45,0x35,0x13,0x01,0x00 -+// 23707 岛 ; -+,0x01,0x02,0x0f,0x08,0x0a,0x09,0x09,0x08,0x0f,0x02,0x02,0x22,0x22,0x3f,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x88,0x28,0x10,0xfe,0x02,0x02,0x22,0x22,0xe2,0x14,0x08 -+// 23708 岜 ; -+,0x00,0x10,0x10,0x1f,0x10,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x0f,0x00,0x80,0x84,0x84,0xfc,0x04,0x00,0xfc,0x84,0x84,0xfc,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 23709 岝 ; -+,0x00,0x10,0x10,0x3f,0x14,0x04,0x0f,0x0a,0x13,0x22,0x02,0x03,0x02,0x02,0x02,0x02,0x80,0x82,0x82,0xfe,0x00,0x00,0xfe,0x00,0xfc,0x00,0x00,0xff,0x00,0x00,0x00,0x00 -+// 23710 岞 ; -+,0x08,0x08,0x08,0x28,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0x40,0x60,0x40,0x7f,0xa0,0xa0,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20 -+// 23711 岟 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2e,0x70,0x20,0x00,0x01,0x02,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x10,0x28,0x28,0x44,0x86,0x03,0x02 -+// 23712 岠 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x01,0x00,0x00,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0xff,0x80,0x00 -+// 23713 岡 ; -+,0x00,0x3f,0x24,0x22,0x21,0x2f,0x20,0x24,0x24,0x24,0x27,0x24,0x20,0x20,0x20,0x20,0x00,0xfe,0x22,0x32,0x42,0xfa,0x82,0x92,0x92,0x92,0xf2,0x12,0x02,0x02,0x0a,0x04 -+// 23714 岢 ; -+,0x00,0x10,0x10,0x1f,0x00,0x7f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x80,0x84,0x84,0xfc,0x00,0xff,0x08,0x08,0xc8,0x48,0x48,0xc8,0x48,0x08,0x28,0x10 -+// 23715 岣 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2e,0x7a,0x22,0x00,0x00,0x00,0x40,0x60,0x40,0x7e,0x82,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x14,0x08 -+// 23716 岤 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x21,0x01,0x02,0x00,0x20,0x18,0x10,0xff,0x81,0x0a,0x48,0x48,0x48,0x48,0x84,0x84,0x02,0x02,0x01,0x00 -+// 23717 岥 ; -+,0x10,0x10,0x10,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x65,0x02,0x02,0x04,0x08,0x10,0x10,0x10,0xff,0x12,0x14,0x10,0xfc,0x44,0x44,0x28,0x28,0x10,0x28,0x47,0x82 -+// 23718 岦 ; -+,0x00,0x00,0x10,0x10,0x1f,0x11,0x00,0x00,0x3f,0x08,0x04,0x06,0x03,0x02,0x7f,0x00,0x80,0x80,0x84,0x84,0xfc,0x04,0xc0,0x80,0xfe,0x10,0x18,0x10,0x20,0x40,0xff,0x00 -+// 23719 岧 ; -+,0x00,0x08,0x08,0x0f,0x00,0x1f,0x02,0x02,0x04,0x08,0x17,0x24,0x04,0x04,0x07,0x04,0x40,0x42,0x42,0xfe,0x00,0xfc,0x04,0x04,0x1c,0x08,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 23720 岨 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x22,0x00,0x03,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0xff,0x00 -+// 23721 岩 ; -+,0x00,0x10,0x10,0x10,0x1f,0x00,0x3f,0x02,0x04,0x0f,0x14,0x24,0x44,0x07,0x04,0x00,0x80,0x84,0x84,0x84,0xfc,0x00,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 23722 岪 ; -+,0x00,0x10,0x10,0x1f,0x02,0x3f,0x02,0x1f,0x12,0x12,0x3f,0x12,0x04,0x04,0x08,0x10,0x80,0x84,0x84,0xfc,0x20,0xfc,0x24,0xfc,0x20,0x20,0xfe,0x22,0x2a,0x24,0x20,0x20 -+// 23723 岫 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 23724 岬 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10,0x10 -+// 23725 岭 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2b,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0x10,0x10,0x28,0x24,0x42,0xa3,0x12,0x00,0xfe,0x04,0x88,0x50,0x20,0x18,0x08,0x00 -+// 23726 岮 ; -+,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0x20,0x10,0xff,0x82,0x04,0x40,0x44,0x4e,0x58,0x60,0x40,0x40,0x42,0x43,0x3e,0x00 -+// 23727 岯 ; -+,0x10,0x11,0x10,0x10,0x54,0x54,0x54,0x54,0x54,0x55,0x5e,0x74,0x00,0x00,0x03,0x00,0x00,0xff,0x10,0x10,0x10,0x20,0x28,0x64,0xa2,0x23,0x22,0x20,0x20,0x20,0xff,0x00 -+// 23728 岰 ; -+,0x10,0x10,0x10,0x54,0x55,0x57,0x54,0x54,0x54,0x55,0x57,0x5d,0x60,0x00,0x00,0x00,0x88,0xc8,0x88,0x88,0x5f,0xe9,0x49,0x89,0xa9,0x79,0xa9,0x11,0x11,0x25,0x42,0x00 -+// 23729 岱 ; -+,0x08,0x0c,0x08,0x18,0x2f,0x48,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0x3f,0x10,0x00,0x90,0x88,0x8a,0xbf,0xc0,0x40,0x22,0x12,0x8c,0x80,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23730 岲 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x7a,0x20,0x01,0x02,0x04,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x28,0x28,0x48,0x48,0x89,0x09,0x07,0x00 -+// 23731 岳 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x7f,0x00,0x08,0x08,0x08,0x1f,0x08,0x00,0x08,0xfc,0x00,0x00,0xfc,0x40,0x40,0x40,0xff,0x80,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23732 岴 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x03,0x00,0x00,0x00,0x1c,0xe0,0x80,0x80,0x80,0xfe,0x88,0x88,0x88,0x88,0x88,0x88,0xff,0x00,0x00 -+// 23733 岵 ; -+,0x08,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 23734 岶 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x22,0x00,0x00,0x00,0x10,0x18,0x20,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 23735 岷 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x01,0x00,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0xa9,0xc5,0x82 -+// 23736 岸 ; -+,0x00,0x08,0x08,0x0f,0x00,0x1f,0x10,0x17,0x10,0x10,0x1f,0x10,0x10,0x20,0x40,0x00,0x40,0x42,0x42,0xfe,0x00,0xff,0x00,0xfe,0x40,0x40,0xff,0x40,0x40,0x40,0x40,0x40 -+// 23737 岹 ; -+,0x08,0x09,0x08,0x08,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0x00,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 23738 岺 ; -+,0x00,0x10,0x10,0x1f,0x10,0x01,0x02,0x05,0x18,0x67,0x00,0x00,0x02,0x01,0x00,0x00,0x80,0x84,0x84,0xfc,0x84,0x40,0x20,0x10,0x8e,0xf4,0x10,0x20,0x40,0x80,0x80,0x40 -+// 23739 岻 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x7a,0x22,0x00,0x01,0x00,0x00,0x0e,0xf8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x85,0x95,0xab,0xc9,0x80 -+// 23740 岼 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x00,0x00,0xff,0x10,0x12,0x93,0x72,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 23741 岽 ; -+,0x00,0x08,0x08,0x0f,0x01,0x01,0x3f,0x02,0x04,0x0f,0x00,0x04,0x06,0x08,0x11,0x20,0x40,0x44,0x44,0xfc,0x00,0x00,0xfe,0x40,0x40,0xfc,0x40,0x50,0x48,0x46,0x44,0x80 -+// 23742 岾 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x3a,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x80,0x00 -+// 23743 岿 ; -+,0x00,0x10,0x10,0x1f,0x02,0x02,0x12,0x12,0x12,0x12,0x12,0x12,0x04,0x04,0x08,0x10,0x40,0x42,0x42,0xfe,0x00,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 23744 峀 ; -+,0x00,0x00,0x10,0x10,0x1f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x80,0x80,0x84,0x84,0xfc,0x80,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04,0x00 -+// 23745 峁 ; -+,0x00,0x10,0x10,0x1f,0x02,0x1c,0x10,0x11,0x11,0x11,0x17,0x39,0x12,0x02,0x04,0x18,0x40,0x42,0x42,0xfe,0x00,0x3e,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20,0x20,0x20 -+// 23746 峂 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x2e,0x7a,0x22,0x00,0x00,0x00,0x40,0x40,0x7e,0x44,0xa8,0x10,0x30,0x4c,0xa3,0x1a,0x08,0x40,0x20,0x18,0x08,0x00 -+// 23747 峃 ; -+,0x02,0x11,0x08,0x0c,0x04,0x3f,0x20,0x40,0x08,0x08,0x08,0x08,0x08,0x1f,0x08,0x00,0x08,0x0c,0x88,0xd0,0xa0,0xff,0x82,0x80,0x84,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23748 峄 ; -+,0x11,0x10,0x10,0x54,0x54,0x54,0x55,0x56,0x55,0x54,0x5c,0x77,0x44,0x00,0x00,0x00,0xfe,0x84,0x84,0x48,0x30,0x4c,0xa3,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 23749 峅 ; -+,0x10,0x10,0x10,0x54,0x54,0x55,0x54,0x54,0x54,0x57,0x5c,0x60,0x00,0x00,0x01,0x02,0x20,0x30,0x20,0x44,0x9e,0xf2,0x80,0x44,0x44,0xff,0x44,0x44,0x84,0x84,0x04,0x04 -+// 23750 峆 ; -+,0x10,0x10,0x10,0x54,0x54,0x55,0x56,0x54,0x54,0x54,0x5c,0x64,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x86,0x03,0xfe,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 23751 峇 ; -+,0x00,0x10,0x10,0x1f,0x10,0x01,0x02,0x04,0x1f,0x60,0x0f,0x08,0x08,0x08,0x0f,0x08,0x80,0x84,0x84,0xfc,0x84,0x40,0x20,0x18,0xf7,0x02,0xf0,0x10,0x10,0x10,0xf0,0x10 -+// 23752 峈 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x2e,0x72,0x20,0x00,0x00,0x00,0x40,0x40,0x7e,0xc4,0xa8,0x28,0x10,0x6c,0x83,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 23753 峉 ; -+,0x00,0x10,0x10,0x1f,0x02,0x03,0x04,0x0b,0x10,0x01,0x0e,0x77,0x04,0x04,0x07,0x04,0x80,0x84,0x84,0xfc,0x00,0xf8,0x10,0x20,0xc0,0x30,0x0f,0xf2,0x10,0x10,0xf0,0x10 -+// 23754 峊 ; -+,0x01,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x10,0x10,0x10,0x3f,0x10,0x00,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x04,0x04,0xfc,0x80,0x82,0x82,0x82,0xfe,0x00 -+// 23755 峋 ; -+,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x00,0x40,0x40,0x7e,0x82,0x02,0xfa,0x8a,0x8a,0xfa,0x8a,0x8a,0xfa,0x8a,0x02,0x0a,0x04 -+// 23756 峌 ; -+,0x08,0x09,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x7a,0x22,0x00,0x03,0x00,0x00,0xff,0x20,0x20,0x44,0x82,0xff,0x92,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 23757 峍 ; -+,0x10,0x10,0x11,0x54,0x57,0x54,0x55,0x54,0x55,0x54,0x5c,0x67,0x00,0x00,0x00,0x00,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 23758 峎 ; -+,0x00,0x10,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x09,0x08,0x08,0x0a,0x1c,0x08,0x80,0x84,0x84,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x8c,0x50,0x30,0x1e,0x08 -+// 23759 峏 ; -+,0x08,0x09,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x7a,0x20,0x00,0x00,0x00,0x00,0xff,0x10,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x86,0x00 -+// 23760 峐 ; -+,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x72,0x21,0x00,0x00,0x03,0x20,0x10,0xff,0x10,0x20,0x48,0x8c,0xf8,0x10,0x24,0x46,0x88,0x14,0x22,0xc3,0x02 -+// 23761 峑 ; -+,0x00,0x10,0x10,0x10,0x1f,0x00,0x01,0x02,0x0c,0x77,0x00,0x0f,0x00,0x00,0x3f,0x00,0x80,0x84,0x84,0x84,0xfc,0x80,0x40,0x30,0x0f,0xfa,0x80,0xf8,0x80,0x80,0xff,0x00 -+// 23762 峒 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x82,0x82,0x8a,0x84,0x00 -+// 23763 峓 ; -+,0x10,0x10,0x11,0x54,0x55,0x54,0x55,0x55,0x55,0x54,0x5c,0x60,0x00,0x00,0x01,0x02,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x2a,0x54,0x48,0x84,0x07,0x02 -+// 23764 峔 ; -+,0x10,0x10,0x10,0x15,0x54,0x54,0x57,0x54,0x54,0x54,0x5c,0x65,0x02,0x00,0x00,0x00,0x20,0x20,0x20,0xfe,0x24,0x28,0xff,0x10,0x20,0x44,0xce,0x70,0x42,0x42,0x3e,0x00 -+// 23765 峕 ; -+,0x00,0x10,0x10,0x1f,0x11,0x00,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x80,0x84,0x84,0xfc,0x04,0x80,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 23766 峖 ; -+,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x01,0x06,0x20,0x10,0xff,0x82,0x24,0x20,0x20,0xff,0x44,0x44,0x88,0x48,0x30,0x4c,0x83,0x02 -+// 23767 峗 ; -+,0x10,0x10,0x10,0x10,0x54,0x55,0x54,0x54,0x54,0x54,0x5c,0x74,0x45,0x01,0x02,0x04,0x40,0x7e,0x44,0x88,0xff,0x80,0x80,0xbe,0xa2,0xa2,0xaa,0xa4,0x21,0x21,0x1f,0x00 -+// 23768 峘 ; -+,0x08,0x09,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x22,0x01,0x00,0x00,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00,0x00,0xff,0x00 -+// 23769 峙 ; -+,0x10,0x10,0x10,0x10,0x54,0x55,0x54,0x54,0x55,0x54,0x54,0x5c,0x60,0x00,0x00,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x08,0x08,0xff,0x88,0x48,0x68,0x48,0x08,0x28,0x10 -+// 23770 峚 ; -+,0x00,0x10,0x10,0x1f,0x00,0x7f,0x01,0x02,0x04,0x18,0x6f,0x00,0x00,0x00,0x3f,0x00,0x80,0x84,0x84,0xfc,0x80,0xff,0x20,0x10,0x8c,0x87,0xfa,0x80,0x80,0x80,0xff,0x00 -+// 23771 峛 ; -+,0x00,0x10,0x10,0x1f,0x00,0x3f,0x08,0x0f,0x08,0x18,0x25,0x03,0x02,0x04,0x08,0x30,0x40,0x42,0x42,0xfe,0x00,0xc2,0x02,0x92,0x92,0x92,0x12,0x12,0x12,0x02,0x0a,0x04 -+// 23772 峜 ; -+,0x00,0x10,0x10,0x1f,0x10,0x01,0x02,0x04,0x18,0x60,0x04,0x04,0x04,0x04,0x3f,0x00,0x80,0x84,0x84,0xfc,0x84,0x40,0x20,0x18,0x87,0x82,0xf8,0x80,0x80,0x80,0xff,0x00 -+// 23773 峝 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x10,0x17,0x10,0x13,0x12,0x12,0x13,0x12,0x10,0x10,0x40,0x42,0x42,0xfe,0x00,0xfe,0x02,0xfa,0x02,0xf2,0x12,0x12,0xf2,0x02,0x0a,0x04 -+// 23774 峞 ; -+,0x00,0x10,0x1f,0x02,0x03,0x04,0x0f,0x18,0x29,0x09,0x09,0x09,0x11,0x11,0x20,0x40,0x80,0x84,0xfc,0x04,0xf0,0x20,0xfe,0x00,0xf8,0x08,0x08,0x38,0x12,0x02,0xfe,0x00 -+// 23775 峟 ; -+,0x00,0x10,0x10,0x1f,0x02,0x02,0x7f,0x04,0x0f,0x14,0x67,0x04,0x07,0x04,0x04,0x04,0x80,0x84,0x84,0xfc,0x00,0x00,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 23776 峠 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2b,0x2a,0x2a,0x2e,0x72,0x22,0x00,0x00,0x00,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0xff,0x20,0x28,0x24,0x22,0x22,0x20,0x20,0x20 -+// 23777 峡 ; -+,0x10,0x10,0x11,0x54,0x55,0x54,0x54,0x54,0x57,0x54,0x5c,0x74,0x40,0x01,0x02,0x04,0x20,0x20,0xfe,0x20,0x24,0xa6,0xa4,0xa8,0xff,0x20,0x50,0x50,0x88,0x07,0x02,0x00 -+// 23778 峢 ; -+,0x08,0x09,0x2a,0x2a,0x2a,0x2a,0x2b,0x2b,0x2b,0x2a,0x2e,0x72,0x20,0x01,0x02,0x04,0x01,0xf1,0x85,0x85,0xf5,0x95,0x15,0x95,0x65,0x25,0x45,0x45,0x81,0x01,0x05,0x02 -+// 23779 峣 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2e,0x78,0x20,0x01,0x02,0x00,0x40,0x40,0x5e,0xf0,0x24,0x18,0xea,0x04,0xfe,0x50,0x50,0x92,0x92,0x13,0x0e,0x00 -+// 23780 峤 ; -+,0x08,0x09,0x08,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x01,0x02,0x1c,0xe0,0x20,0x20,0xff,0x50,0x8c,0x07,0x4a,0x48,0x48,0x48,0x88,0x88,0x08,0x00 -+// 23781 峥 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x20,0x20,0x7e,0x44,0x88,0xfe,0x12,0xff,0x12,0x12,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 23782 峦 ; -+,0x01,0x00,0x3f,0x02,0x0a,0x0a,0x12,0x22,0x40,0x00,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x80,0xff,0x20,0x28,0x24,0x23,0x21,0x80,0x80,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 23783 峧 ; -+,0x08,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x01,0x02,0x20,0x18,0x10,0xff,0x48,0x64,0x82,0x45,0x44,0x48,0x48,0x30,0x48,0x86,0x03,0x02 -+// 23784 峨 ; -+,0x10,0x10,0x13,0x10,0x54,0x57,0x54,0x54,0x54,0x55,0x56,0x5c,0x64,0x00,0x03,0x01,0x08,0x68,0x8a,0x8a,0x88,0xff,0x8a,0xab,0xca,0x8c,0x88,0x94,0xa4,0x85,0x85,0x02 -+// 23785 峩 ; -+,0x00,0x10,0x10,0x1f,0x00,0x3f,0x04,0x7f,0x04,0x05,0x0e,0x74,0x24,0x04,0x14,0x08,0x80,0x84,0x84,0xfc,0x28,0xa4,0x24,0xff,0x20,0x24,0x18,0x10,0x29,0x45,0x82,0x00 -+// 23786 峪 ; -+,0x10,0x10,0x10,0x10,0x55,0x56,0x54,0x54,0x55,0x56,0x5c,0x74,0x04,0x00,0x00,0x00,0x48,0x64,0x46,0xa2,0x20,0x50,0x48,0x87,0x02,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 23787 峫 ; -+,0x10,0x11,0x10,0x11,0x55,0x55,0x57,0x54,0x54,0x54,0x55,0x55,0x5e,0x64,0x01,0x00,0x00,0xef,0x49,0x4a,0x4a,0x4c,0xfc,0x4a,0xca,0xc9,0x49,0x49,0x4d,0x4a,0xc8,0x88 -+// 23788 峬 ; -+,0x10,0x10,0x11,0x54,0x54,0x55,0x55,0x55,0x55,0x55,0x5d,0x61,0x01,0x01,0x01,0x01,0x14,0x12,0xff,0x10,0x10,0xff,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0x15,0x02 -+// 23789 峭 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x00,0x10,0x10,0x92,0x53,0x54,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84,0x00 -+// 23790 峮 ; -+,0x08,0x08,0x08,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x71,0x22,0x04,0x00,0x00,0x00,0xfc,0x24,0xff,0x24,0x24,0xfc,0x40,0x40,0xfe,0xc2,0x42,0x42,0x7e,0x42,0x00 -+// 23791 峯 ; -+,0x00,0x10,0x1f,0x02,0x07,0x0a,0x31,0x0e,0x70,0x0f,0x00,0x0f,0x00,0x3f,0x00,0x00,0x80,0x84,0xfc,0x00,0xf8,0x30,0xc0,0x38,0x87,0xfa,0x80,0xf8,0x80,0xfe,0x80,0x80 -+// 23792 峰 ; -+,0x10,0x10,0x10,0x54,0x55,0x56,0x54,0x55,0x54,0x55,0x5c,0x75,0x40,0x03,0x00,0x00,0x40,0x7e,0x44,0xc4,0x28,0x10,0x6e,0xa4,0x20,0xfe,0x20,0xfe,0x20,0xff,0x20,0x20 -+// 23793 峱 ; -+,0x04,0x26,0x14,0x18,0x24,0x44,0x0c,0x0f,0x14,0x24,0x44,0x04,0x04,0x05,0x14,0x08,0x00,0xfc,0x24,0x24,0xfc,0x24,0x44,0xff,0x10,0x10,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 23794 峲 ; -+,0x00,0x10,0x10,0x1f,0x00,0x07,0x3c,0x04,0x3f,0x0e,0x0d,0x14,0x24,0x44,0x04,0x04,0x80,0x82,0x82,0xfe,0x00,0x82,0x12,0x12,0x92,0x12,0x92,0x92,0x02,0x02,0x0a,0x04 -+// 23795 峳 ; -+,0x00,0x10,0x10,0x1f,0x14,0x06,0x0c,0x1a,0x2a,0x4b,0x0a,0x0a,0x0a,0x0a,0x08,0x09,0x80,0x84,0x84,0xfc,0x44,0x40,0x7f,0xc4,0xc4,0x28,0x28,0x10,0x28,0x47,0x82,0x00 -+// 23796 峴 ; -+,0x10,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x5c,0x60,0x00,0x01,0x02,0x04,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 23797 峵 ; -+,0x10,0x10,0x10,0x15,0x55,0x56,0x55,0x54,0x54,0x54,0x54,0x5c,0x65,0x02,0x04,0x00,0x20,0x10,0x10,0xff,0x22,0x24,0xff,0x40,0x50,0x50,0x90,0xa4,0x22,0x4f,0xf2,0x40 -+// 23798 島 ; -+,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x22,0x3f,0x20,0x00,0x00,0x00,0xf0,0x10,0xf0,0x10,0xf0,0x00,0xff,0x00,0xfc,0x04,0x24,0xe4,0x04,0x28,0x10 -+// 23799 峷 ; -+,0x00,0x10,0x1f,0x10,0x00,0x3f,0x04,0x02,0x3f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x40,0x42,0xfe,0x82,0x40,0xfe,0x10,0x20,0xff,0x80,0x80,0xfe,0x80,0x80,0x80,0x80 -+// 23800 峸 ; -+,0x10,0x10,0x10,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x75,0x45,0x01,0x02,0x04,0x08,0x0a,0x0a,0xff,0x08,0x0a,0xeb,0x2a,0x24,0x24,0xa8,0x48,0x15,0x23,0x41,0x00 -+// 23801 峹 ; -+,0x00,0x01,0x02,0x0f,0x30,0x5f,0x04,0x0e,0x18,0x62,0x01,0x10,0x10,0x10,0x1f,0x00,0x80,0x40,0x20,0xf8,0x87,0xfa,0xa0,0x98,0x8c,0x88,0x00,0x84,0x84,0x84,0xfc,0x00 -+// 23802 峺 ; -+,0x10,0x11,0x10,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5c,0x64,0x00,0x01,0x02,0x04,0x00,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xa0,0x60,0x90,0x0c,0x07,0x02 -+// 23803 峻 ; -+,0x08,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2f,0x78,0x20,0x00,0x03,0x40,0x40,0x84,0xff,0x4a,0x64,0x82,0x42,0x7c,0x44,0xa8,0x10,0x28,0x44,0x83,0x02 -+// 23804 峼 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2b,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x00,0x00,0x10,0x50,0x50,0xfe,0x90,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 23805 峽 ; -+,0x08,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x78,0x21,0x02,0x04,0x20,0x20,0x20,0xff,0xa4,0xa4,0xa4,0xaa,0x71,0x20,0x50,0x88,0x8c,0x07,0x02,0x00 -+// 23806 峾 ; -+,0x10,0x08,0x04,0x20,0x14,0x14,0x08,0x31,0x12,0x14,0x00,0x10,0x10,0x10,0x1f,0x00,0x1e,0xf0,0x80,0x80,0xfe,0x88,0x88,0x08,0x08,0x88,0x80,0x84,0x84,0x84,0xfc,0x00 -+// 23807 峿 ; -+,0x08,0x09,0x08,0x08,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x70,0x20,0x00,0x00,0x00,0xfe,0x20,0x20,0xfc,0x44,0x44,0xff,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 23808 崀 ; -+,0x00,0x10,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x0a,0x1c,0x08,0x40,0x42,0x42,0xfe,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x44,0x28,0x10,0x0f,0x04 -+// 23809 崁 ; -+,0x00,0x10,0x10,0x1f,0x08,0x08,0x08,0x3e,0x09,0x08,0x08,0x0e,0x78,0x21,0x02,0x04,0x80,0x84,0x84,0xfc,0x40,0x40,0x7e,0xa4,0x28,0x20,0x50,0x50,0x88,0x0c,0x07,0x02 -+// 23810 崂 ; -+,0x10,0x10,0x13,0x10,0x54,0x55,0x55,0x56,0x54,0x55,0x5c,0x60,0x00,0x00,0x01,0x02,0x88,0x88,0xff,0x88,0x88,0xff,0x02,0x44,0x40,0xfc,0x44,0x44,0x84,0x84,0x14,0x08 -+// 23811 崃 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x70,0x20,0x01,0x02,0x00,0x10,0x10,0x10,0xfe,0x14,0x96,0x58,0xff,0x30,0x38,0x54,0x56,0x93,0x12,0x10,0x10 -+// 23812 崄 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x2e,0x72,0x20,0x03,0x00,0x10,0x10,0x28,0x28,0x44,0x82,0xff,0x02,0x44,0x26,0xb4,0xa4,0x88,0x08,0xff,0x00 -+// 23813 崅 ; -+,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x01,0x02,0x20,0x3e,0x44,0x88,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x0a,0x04 -+// 23814 崆 ; -+,0x10,0x10,0x11,0x11,0x56,0x54,0x54,0x55,0x56,0x55,0x5c,0x74,0x00,0x00,0x03,0x00,0x20,0x10,0xff,0x02,0x04,0x88,0xc4,0x02,0x00,0xfc,0x20,0x20,0x20,0x20,0xfe,0x00 -+// 23815 崇 ; -+,0x00,0x08,0x0f,0x00,0x00,0x1f,0x10,0x27,0x00,0x3f,0x00,0x08,0x0c,0x08,0x11,0x20,0x40,0x42,0xfe,0x82,0x40,0xff,0x02,0xf8,0x00,0xff,0x40,0x48,0x44,0x46,0x44,0x80 -+// 23816 崈 ; -+,0x00,0x00,0x1f,0x10,0x27,0x00,0x0f,0x04,0x0c,0x31,0x00,0x00,0x10,0x10,0x1f,0x00,0x80,0x40,0xff,0x02,0xf4,0x00,0xfc,0x48,0x44,0x42,0x80,0x00,0x84,0x84,0xfc,0x00 -+// 23817 崉 ; -+,0x10,0x10,0x11,0x10,0x54,0x54,0x55,0x56,0x54,0x54,0x54,0x5c,0x74,0x40,0x00,0x00,0x10,0x12,0xd4,0x58,0x54,0x92,0x51,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 23818 崊 ; -+,0x10,0x10,0x10,0x10,0x57,0x54,0x55,0x55,0x56,0x56,0x54,0x5c,0x64,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0xff,0x8c,0xdc,0xaa,0xaa,0xab,0xaa,0xa8,0x88,0x88,0x88,0x88 -+// 23819 崋 ; -+,0x00,0x10,0x10,0x1f,0x00,0x3f,0x08,0x3f,0x08,0x08,0x3f,0x00,0x3f,0x00,0x00,0x00,0x80,0x84,0x84,0xfc,0x00,0xfe,0x88,0xff,0x88,0x88,0xfe,0x80,0xff,0x80,0x80,0x80 -+// 23820 崌 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x78,0x21,0x01,0x02,0x04,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0xff,0x90,0x90,0xfe,0xc2,0x42,0x7e,0x42,0x00 -+// 23821 崍 ; -+,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2a,0x2b,0x2b,0x2b,0x2e,0x70,0x20,0x01,0x02,0x00,0x10,0x10,0xff,0x94,0x94,0x94,0x94,0x5a,0x71,0x58,0x34,0x52,0x93,0x12,0x10,0x10 -+// 23822 崎 ; -+,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x00,0x10,0x10,0xfe,0x28,0x44,0x84,0xff,0x02,0xf2,0x92,0x92,0xf2,0x92,0x02,0x0a,0x04 -+// 23823 崏 ; -+,0x10,0x10,0x10,0x10,0x54,0x54,0x54,0x55,0x54,0x54,0x54,0x7c,0x44,0x00,0x00,0x00,0x0e,0xf0,0x90,0x90,0xff,0x88,0xa9,0xc5,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 23824 崐 ; -+,0x10,0x10,0x10,0x10,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x60,0x00,0x01,0x00,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0x88,0x89,0xee,0x88,0x88,0xa9,0xc7,0x80 -+// 23825 崑 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x13,0x3c,0x10,0x80,0x84,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x40,0x4c,0x70,0x42,0x42,0x3e,0x00 -+// 23826 崒 ; -+,0x00,0x10,0x1f,0x11,0x00,0x3f,0x04,0x04,0x0a,0x11,0x20,0x7f,0x00,0x00,0x00,0x00,0x80,0x84,0xfc,0x00,0x80,0xfe,0x10,0x10,0xa8,0xc4,0x82,0xff,0x80,0x80,0x80,0x80 -+// 23827 崓 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x20,0x00,0x00,0x00,0xff,0x91,0x91,0xff,0x91,0x91,0xbd,0xa5,0xa5,0xbd,0xa5,0x81,0xff,0x81,0x00 -+// 23828 崔 ; -+,0x00,0x08,0x08,0x0f,0x04,0x04,0x0f,0x18,0x2f,0x48,0x0f,0x08,0x08,0x0f,0x08,0x08,0x40,0x42,0x42,0xfe,0x80,0x40,0xff,0x40,0xfe,0x40,0xfe,0x40,0x40,0xff,0x00,0x00 -+// 23829 崕 ; -+,0x00,0x11,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x65,0x01,0x02,0x04,0x00,0x00,0xff,0x10,0x10,0x7e,0x10,0x10,0x7e,0x10,0x10,0x7e,0x10,0x10,0xff,0x00,0x00 -+// 23830 崖 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x10,0x17,0x10,0x10,0x1f,0x10,0x17,0x20,0x20,0x5f,0x00,0x80,0x84,0xfc,0x00,0xfe,0x40,0xfc,0x40,0x40,0xfe,0x40,0xfc,0x40,0x40,0xff,0x00 -+// 23831 崗 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x14,0x12,0x1f,0x10,0x14,0x14,0x17,0x10,0x10,0x10,0x40,0x42,0x42,0xfe,0x00,0xfe,0x22,0x42,0xfa,0x82,0x92,0x92,0xf2,0x02,0x0a,0x04 -+// 23832 崘 ; -+,0x10,0x10,0x10,0x54,0x55,0x56,0x54,0x55,0x55,0x55,0x5d,0x65,0x01,0x01,0x01,0x01,0x20,0x20,0x50,0x8c,0x07,0xfa,0x00,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x42,0x0a,0x04 -+// 23833 崙 ; -+,0x00,0x10,0x1f,0x10,0x01,0x02,0x0f,0x70,0x1f,0x12,0x1f,0x12,0x12,0x12,0x12,0x10,0x80,0x84,0xfc,0x84,0x40,0x30,0xef,0x02,0xfc,0x24,0xfc,0x24,0x24,0x24,0x14,0x08 -+// 23834 崚 ; -+,0x10,0x10,0x11,0x54,0x57,0x54,0x54,0x55,0x56,0x54,0x7d,0x42,0x04,0x00,0x01,0x06,0x20,0x20,0xfe,0x20,0xff,0x48,0x84,0x03,0x82,0xfc,0x88,0x50,0x20,0x58,0x87,0x02 -+// 23835 崛 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x79,0x22,0x02,0x04,0x00,0xfe,0x82,0x82,0xfe,0x88,0xaa,0xaa,0xaa,0xbe,0x88,0x4a,0x4a,0x4a,0x7e,0x02,0x00 -+// 23836 崜 ; -+,0x10,0x10,0x11,0x10,0x51,0x54,0x54,0x54,0x57,0x54,0x54,0x7d,0x44,0x00,0x00,0x00,0x00,0x1e,0xf0,0x10,0xff,0x94,0x94,0x94,0xff,0x94,0x94,0xff,0x10,0x10,0xfe,0x00 -+// 23837 崝 ; -+,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x78,0x20,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 23838 崞 ; -+,0x10,0x10,0x13,0x10,0x54,0x54,0x54,0x54,0x55,0x54,0x5c,0x65,0x00,0x00,0x00,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x04,0x08,0xff,0x10,0x10,0x50,0x20 -+// 23839 崟 ; -+,0x00,0x10,0x10,0x1f,0x10,0x01,0x02,0x0f,0x70,0x00,0x0f,0x00,0x04,0x02,0x3f,0x00,0x80,0x84,0x84,0xfc,0x84,0x60,0x18,0xf7,0x82,0x80,0xfc,0x88,0x8c,0x90,0xff,0x00 -+// 23840 崠 ; -+,0x10,0x10,0x13,0x10,0x55,0x55,0x55,0x55,0x55,0x55,0x7c,0x44,0x01,0x02,0x00,0x00,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x34,0x68,0xa4,0x27,0x22,0x20,0x00 -+// 23841 崡 ; -+,0x10,0x11,0x10,0x10,0x54,0x55,0x55,0x55,0x55,0x55,0x55,0x7d,0x45,0x01,0x01,0x00,0x00,0xff,0x06,0x28,0x10,0x11,0x93,0x55,0x19,0x35,0xd3,0x51,0x11,0x31,0xff,0x00 -+// 23842 崢 ; -+,0x10,0x13,0x12,0x11,0x55,0x55,0x54,0x57,0x54,0x54,0x55,0x5c,0x60,0x00,0x00,0x00,0x1c,0xe0,0x44,0x26,0x28,0xfc,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 23843 崣 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x00,0x3f,0x01,0x06,0x38,0x14,0x7f,0x04,0x0c,0x03,0x7c,0x80,0x84,0xfc,0x00,0xf8,0x80,0xff,0xe0,0x90,0x8e,0x84,0xff,0x10,0x20,0xc0,0x3c -+// 23844 崤 ; -+,0x10,0x10,0x10,0x54,0x54,0x55,0x54,0x54,0x55,0x56,0x5c,0x60,0x00,0x00,0x00,0x00,0x84,0x48,0x30,0x48,0xa4,0xff,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 23845 崥 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x79,0x20,0x00,0x00,0x00,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x20,0x50,0xff,0x10,0x10,0x10,0x10 -+// 23846 崦 ; -+,0x10,0x10,0x13,0x54,0x54,0x55,0x57,0x55,0x55,0x55,0x5d,0x75,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x50,0x88,0x27,0xfe,0x24,0xfc,0x24,0x24,0xfc,0x20,0x21,0x1f,0x00 -+// 23847 崧 ; -+,0x00,0x10,0x10,0x1f,0x08,0x08,0x3e,0x08,0x1d,0x1d,0x2a,0x28,0x48,0x09,0x0b,0x09,0x80,0x84,0x84,0xfc,0x00,0x90,0xd0,0x88,0x0c,0x47,0x62,0x48,0x84,0x3e,0xe4,0x00 -+// 23848 崨 ; -+,0x10,0x11,0x10,0x55,0x54,0x55,0x54,0x55,0x54,0x55,0x5d,0x65,0x01,0x02,0x04,0x00,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x20,0x3e,0x20,0x20,0xa0,0x7f,0x00 -+// 23849 崩 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x21,0x25,0x42,0x00,0x80,0x84,0xfc,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x44,0x54,0x88,0x00 -+// 23850 崪 ; -+,0x00,0x10,0x11,0x10,0x54,0x54,0x54,0x54,0x57,0x54,0x55,0x5c,0x60,0x00,0x00,0x00,0x40,0x20,0xff,0x00,0x48,0x48,0x48,0xb4,0x22,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 23851 崫 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x14,0x14,0x17,0x10,0x14,0x24,0x27,0x40,0x80,0x84,0xfc,0x00,0xfc,0x04,0xfc,0x40,0x44,0x44,0xfc,0x40,0x42,0x42,0xfe,0x00 -+// 23852 崬 ; -+,0x00,0x10,0x1f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x02,0x0c,0x30,0x00,0x80,0x84,0xfc,0x80,0xfe,0x80,0xfc,0x84,0xfc,0x84,0xfc,0xa0,0x90,0x8e,0x84,0x80 -+// 23853 崭 ; -+,0x00,0x10,0x1f,0x00,0x08,0x7f,0x08,0x14,0x24,0x7f,0x04,0x0f,0x74,0x04,0x04,0x05,0x80,0x84,0xfc,0x00,0x0e,0x70,0x40,0x40,0x7e,0x48,0x48,0x48,0x48,0x48,0x88,0x08 -+// 23854 崮 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x10,0x17,0x10,0x13,0x12,0x13,0x12,0x10,0x1f,0x10,0x80,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfa,0x82,0xf2,0x12,0xf2,0x12,0x02,0xfe,0x02 -+// 23855 崯 ; -+,0x10,0x10,0x10,0x54,0x54,0x55,0x56,0x54,0x55,0x54,0x5d,0x74,0x40,0x00,0x03,0x00,0x20,0x20,0x50,0x48,0x84,0xfb,0x22,0x20,0xfe,0x20,0x24,0xa6,0xa8,0x22,0xff,0x00 -+// 23856 崰 ; -+,0x10,0x10,0x10,0x55,0x54,0x54,0x54,0x55,0x55,0x55,0x5d,0x75,0x41,0x01,0x01,0x00,0x52,0x5b,0x92,0x24,0x92,0x4b,0x4a,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01,0x00 -+// 23857 崱 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x12,0x19,0x21,0x40,0x80,0x84,0xfc,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x84,0x14,0x08 -+// 23858 崲 ; -+,0x10,0x10,0x10,0x10,0x54,0x54,0x54,0x54,0x55,0x54,0x54,0x7c,0x44,0x00,0x01,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 23859 崳 ; -+,0x10,0x10,0x10,0x10,0x55,0x56,0x55,0x55,0x55,0x55,0x5d,0x75,0x41,0x01,0x01,0x01,0x20,0x20,0x50,0x8c,0x7b,0x00,0xe2,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0x2a,0x24 -+// 23860 崴 ; -+,0x00,0x10,0x1f,0x00,0x00,0x1f,0x10,0x1f,0x12,0x1f,0x14,0x12,0x21,0x22,0x4c,0x00,0x80,0x82,0xfe,0x28,0x24,0xff,0x20,0xe4,0x26,0xd4,0x98,0x88,0x15,0xa5,0x42,0x00 -+// 23861 崵 ; -+,0x10,0x10,0x10,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5d,0x76,0x00,0x01,0x00,0x01,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x80,0xfe,0xaa,0x2a,0x4a,0x52,0x92,0x22,0x4a,0x84 -+// 23862 崶 ; -+,0x00,0x10,0x1f,0x04,0x04,0x3f,0x04,0x7f,0x04,0x04,0x3f,0x04,0x04,0x07,0x38,0x10,0x80,0x84,0xfc,0x04,0x04,0x04,0x7f,0x84,0x44,0x24,0xb4,0x24,0x04,0x84,0x14,0x08 -+// 23863 崷 ; -+,0x11,0x10,0x10,0x57,0x54,0x55,0x55,0x55,0x55,0x55,0x5d,0x75,0x01,0x01,0x01,0x01,0x04,0xc6,0x48,0xff,0x50,0xfe,0x52,0x52,0x52,0x8e,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 23864 崸 ; -+,0x08,0x09,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x7a,0x20,0x00,0x00,0x01,0x00,0xff,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0xfe,0x00,0x44,0x62,0x83,0x02 -+// 23865 崹 ; -+,0x10,0x10,0x11,0x10,0x54,0x55,0x55,0x56,0x54,0x54,0x5c,0x74,0x00,0x00,0x00,0x00,0x20,0x10,0xff,0x84,0x48,0xff,0x12,0x10,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 23866 崺 ; -+,0x00,0x10,0x1f,0x00,0x10,0x08,0x3e,0x11,0x1e,0x13,0x12,0x12,0x12,0x22,0x2a,0x44,0x80,0x84,0xfc,0x00,0x80,0xfe,0x90,0x50,0x7c,0xd4,0x54,0x54,0x4d,0x41,0x3f,0x00 -+// 23867 崻 ; -+,0x10,0x10,0x10,0x10,0x55,0x56,0x54,0x54,0x55,0x56,0x54,0x5c,0x70,0x00,0x00,0x00,0x48,0x68,0xc8,0x9f,0x48,0x48,0xbf,0x84,0xbf,0x84,0xa4,0x9c,0x94,0x84,0x94,0x88 -+// 23868 崼 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x78,0x21,0x01,0x02,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x90,0x9e,0x90,0x50,0x30,0x1f,0x00 -+// 23869 崽 ; -+,0x00,0x10,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x04,0x14,0x14,0x23,0x00,0x80,0x84,0x84,0xfc,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x80,0x64,0x4a,0x0b,0xfa,0x00 -+// 23870 崾 ; -+,0x10,0x11,0x10,0x54,0x55,0x55,0x55,0x55,0x54,0x5f,0x74,0x00,0x00,0x00,0x01,0x02,0x00,0xfe,0x50,0x50,0xfc,0x54,0x54,0xfc,0x40,0xff,0x88,0x90,0x60,0x90,0x0c,0x04 -+// 23871 崿 ; -+,0x10,0x11,0x11,0x55,0x54,0x54,0x54,0x55,0x54,0x54,0x5c,0x74,0x00,0x00,0x00,0x00,0x00,0xce,0x4a,0xce,0x00,0xfe,0x00,0xff,0x40,0x40,0xfc,0x44,0x04,0x04,0x14,0x08 -+// 23872 嵀 ; -+,0x00,0x10,0x10,0x1f,0x08,0x08,0x08,0x3e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x08,0x80,0x84,0x84,0xfc,0x04,0x20,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 23873 嵁 ; -+,0x10,0x10,0x13,0x10,0x54,0x54,0x54,0x54,0x57,0x55,0x5d,0x65,0x01,0x01,0x01,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0xff,0x08,0x44,0x66,0x84,0x00,0xff,0x00 -+// 23874 嵂 ; -+,0x00,0x10,0x1f,0x10,0x09,0x10,0x2b,0x4c,0x19,0x28,0x4b,0x08,0x0f,0x08,0x08,0x08,0x84,0x84,0xfc,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 23875 嵃 ; -+,0x10,0x10,0x11,0x54,0x54,0x55,0x55,0x55,0x55,0x55,0x5d,0x75,0x01,0x02,0x02,0x05,0x20,0x10,0xff,0x84,0x48,0xff,0x04,0x06,0x18,0x63,0x8c,0x33,0xc6,0x18,0x60,0x80 -+// 23876 嵄 ; -+,0x10,0x10,0x11,0x54,0x55,0x54,0x54,0x55,0x54,0x54,0x5f,0x74,0x00,0x00,0x01,0x02,0x84,0x48,0xfe,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x50,0x88,0x06,0x04 -+// 23877 嵅 ; -+,0x00,0x10,0x10,0x1f,0x00,0x00,0x1f,0x10,0x17,0x10,0x17,0x14,0x27,0x24,0x40,0x00,0x80,0x84,0x84,0xfc,0x28,0x24,0xfe,0x20,0xa4,0x24,0x98,0x90,0xa9,0x45,0x82,0x00 -+// 23878 嵆 ; -+,0x02,0x3f,0x04,0x7e,0x0c,0x0e,0x15,0x24,0x45,0x04,0x00,0x10,0x10,0x10,0x1f,0x00,0x20,0x28,0x24,0xff,0x28,0x28,0x49,0x89,0x07,0x80,0x80,0x84,0x84,0x84,0xfc,0x00 -+// 23879 嵇 ; -+,0x00,0x07,0x38,0x08,0x7f,0x08,0x1c,0x1a,0x1b,0x2a,0x28,0x49,0x09,0x09,0x09,0x09,0x20,0x28,0x24,0xff,0x28,0x28,0x49,0x47,0x90,0x10,0x10,0x11,0x11,0x11,0xff,0x01 -+// 23880 嵈 ; -+,0x08,0x09,0x09,0x08,0x2b,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x78,0x21,0x02,0x00,0x03,0x0e,0xf0,0x22,0x54,0xff,0x20,0x20,0xff,0x40,0x7e,0xc4,0xa8,0x10,0x2c,0xc7,0x02 -+// 23881 嵉 ; -+,0x10,0x10,0x13,0x10,0x54,0x54,0x54,0x54,0x55,0x56,0x55,0x5c,0x70,0x00,0x00,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x02,0xfc,0x10,0x10,0x10,0x50,0x20 -+// 23882 嵊 ; -+,0x10,0x11,0x10,0x55,0x54,0x54,0x57,0x54,0x54,0x57,0x5c,0x74,0x01,0x02,0x04,0x00,0x1e,0xe0,0x20,0xff,0xa8,0xaa,0xac,0xa9,0xa9,0xa7,0x70,0xa8,0x26,0x23,0x22,0x20 -+// 23883 嵋 ; -+,0x10,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x75,0x01,0x02,0x02,0x04,0x00,0xff,0x11,0x11,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 23884 嵌 ; -+,0x00,0x10,0x1f,0x00,0x12,0x12,0x3f,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x01,0x80,0x84,0xfc,0x00,0x20,0x20,0x3e,0x42,0x94,0x10,0x10,0x28,0x24,0x47,0x82,0x00 -+// 23885 嵍 ; -+,0x00,0x3f,0x09,0x06,0x3f,0x06,0x0b,0x12,0x62,0x0a,0x04,0x10,0x10,0x10,0x1f,0x10,0x10,0x90,0x1f,0x12,0xa2,0xa4,0x54,0x08,0x08,0x14,0x23,0x84,0x84,0x84,0xfc,0x04 -+// 23886 嵎 ; -+,0x10,0x10,0x10,0x54,0x54,0x54,0x54,0x54,0x55,0x55,0x55,0x5d,0x71,0x01,0x01,0x01,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x1f,0x75,0x01,0x05,0x02 -+// 23887 嵏 ; -+,0x00,0x10,0x1f,0x00,0x09,0x08,0x09,0x0f,0x04,0x0a,0x13,0x26,0x09,0x10,0x07,0x38,0x40,0x41,0xff,0x00,0x24,0xc4,0x24,0xfc,0x08,0x06,0xfb,0x12,0x20,0xc0,0x38,0x07 -+// 23888 嵐 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x10,0x17,0x10,0x17,0x14,0x17,0x10,0x20,0x2f,0x44,0x80,0x84,0x84,0xfc,0x00,0xfc,0x64,0x84,0x84,0xf4,0x94,0xf4,0x95,0xfd,0x93,0x01 -+// 23889 嵑 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2e,0x70,0x21,0x00,0x00,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x40,0xfe,0x12,0x92,0xaa,0xc6,0xfa,0x82,0x0a,0x04 -+// 23890 嵒 ; -+,0x00,0x07,0x04,0x07,0x00,0x3f,0x21,0x21,0x3f,0x00,0x00,0x10,0x10,0x10,0x1f,0x00,0x00,0xf8,0x08,0xf8,0x00,0x3f,0x21,0x21,0x3f,0x80,0x80,0x84,0x84,0x84,0xfc,0x00 -+// 23891 嵓 ; -+,0x00,0x10,0x10,0x1f,0x10,0x0f,0x08,0x08,0x0f,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x80,0x84,0x84,0xfc,0x04,0xf8,0x08,0x08,0xf8,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 23892 嵔 ; -+,0x00,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x08,0x08,0x0a,0x1c,0x08,0x80,0x84,0xfc,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xff,0x44,0x28,0x18,0x0e,0x04 -+// 23893 嵕 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2e,0x79,0x22,0x00,0x01,0x06,0x00,0xaa,0x92,0xaa,0x82,0xfe,0x44,0x82,0x41,0x7e,0xc4,0x48,0x30,0x4c,0x87,0x02 -+// 23894 嵖 ; -+,0x10,0x10,0x13,0x10,0x54,0x54,0x57,0x55,0x55,0x55,0x55,0x5d,0x75,0x00,0x03,0x00,0x20,0x20,0xfe,0x60,0x70,0xac,0x23,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 23895 嵗 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x11,0x11,0x15,0x19,0x11,0x22,0x2c,0x40,0x80,0x82,0x82,0xfe,0x10,0xff,0x10,0xd4,0x16,0x54,0x68,0x88,0x15,0x25,0x43,0x80 -+// 23896 嵘 ; -+,0x10,0x10,0x13,0x10,0x54,0x55,0x55,0x56,0x55,0x54,0x54,0x5c,0x70,0x01,0x02,0x00,0x48,0x48,0xff,0x48,0x48,0xff,0x12,0x10,0xfe,0x30,0x38,0x54,0x93,0x12,0x10,0x10 -+// 23897 嵙 ; -+,0x00,0x10,0x10,0x1f,0x00,0x0e,0x38,0x08,0x7e,0x1c,0x1b,0x2a,0x48,0x08,0x08,0x08,0x80,0x84,0x84,0xfc,0x08,0x48,0x28,0xa8,0x48,0x48,0x0f,0xf8,0x08,0x08,0x08,0x08 -+// 23898 嵚 ; -+,0x00,0x10,0x10,0x1f,0x08,0x0f,0x10,0x1e,0x28,0x48,0x3f,0x08,0x08,0x0a,0x1c,0x09,0x80,0x84,0x84,0xfc,0x20,0x20,0x7f,0x52,0x94,0x10,0x10,0x28,0x24,0x46,0x83,0x02 -+// 23899 嵛 ; -+,0x00,0x10,0x1f,0x00,0x01,0x06,0x1f,0x60,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x13,0x80,0x84,0xfc,0x80,0x60,0x18,0xf7,0x02,0x04,0x24,0x24,0x24,0x24,0x04,0x14,0x08 -+// 23900 嵜 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x04,0x02,0x7f,0x00,0x07,0x04,0x04,0x07,0x00,0x00,0x80,0x84,0x84,0xfc,0x80,0xfe,0x10,0x20,0xff,0x08,0xc8,0x48,0x48,0xc8,0x28,0x10 -+// 23901 嵝 ; -+,0x10,0x11,0x10,0x13,0x54,0x54,0x55,0x56,0x54,0x57,0x5c,0x60,0x00,0x00,0x00,0x03,0x24,0x26,0xa4,0xff,0x70,0xa8,0x27,0x22,0x80,0xff,0x88,0xd0,0x20,0x58,0x87,0x02 -+// 23902 嵞 ; -+,0x00,0x01,0x06,0x1b,0x60,0x1f,0x04,0x08,0x32,0x01,0x04,0x25,0x25,0x25,0x3f,0x00,0x80,0x60,0x18,0xf7,0x82,0xfc,0x90,0x8c,0x84,0x00,0x08,0x4a,0x4a,0x4a,0x7e,0x00 -+// 23903 嵟 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x12,0x12,0x17,0x16,0x1b,0x12,0x13,0x22,0x23,0x42,0x00,0x40,0x42,0xfe,0x00,0xfe,0x40,0x20,0xfe,0x20,0xfc,0x20,0xfc,0x20,0xff,0x00,0x00 -+// 23904 嵠 ; -+,0x00,0x17,0x12,0x11,0x55,0x54,0x54,0x54,0x54,0x54,0x55,0x5c,0x74,0x44,0x00,0x03,0x1e,0xf0,0x44,0x24,0x28,0x50,0xf8,0x44,0xfe,0x14,0xff,0x10,0x28,0x44,0x83,0x02 -+// 23905 嵡 ; -+,0x00,0x10,0x1f,0x12,0x05,0x0a,0x37,0x00,0x3e,0x12,0x0a,0x06,0x3a,0x12,0x0a,0x04,0x80,0x84,0xfc,0x24,0x10,0x4c,0xf2,0x20,0x7c,0x04,0x24,0x1c,0x24,0xc4,0x14,0x08 -+// 23906 嵢 ; -+,0x10,0x10,0x10,0x54,0x55,0x56,0x54,0x54,0x54,0x54,0x5c,0x75,0x01,0x02,0x02,0x04,0x20,0x20,0x50,0xac,0x13,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x82,0x82,0xfe,0x82 -+// 23907 嵣 ; -+,0x10,0x10,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x61,0x02,0x02,0x04,0x08,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 23908 嵤 ; -+,0x04,0x04,0x15,0x16,0x24,0x0a,0x09,0x11,0x3f,0x20,0x48,0x08,0x08,0x08,0x0f,0x00,0x10,0x10,0x54,0x58,0x90,0x28,0x24,0x42,0xff,0x82,0x88,0x88,0x88,0x88,0xf8,0x00 -+// 23909 嵥 ; -+,0x10,0x10,0x10,0x55,0x57,0x54,0x54,0x55,0x56,0x57,0x5c,0x64,0x01,0x02,0x04,0x00,0x84,0x84,0xff,0x24,0x34,0xdf,0x84,0x24,0x20,0xff,0x70,0xa8,0x26,0x23,0x22,0x20 -+// 23910 嵦 ; -+,0x10,0x11,0x11,0x55,0x54,0x55,0x54,0x54,0x54,0x54,0x54,0x7c,0x44,0x00,0x01,0x00,0x10,0x11,0x11,0xff,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x84,0x46,0x28,0xff,0x00 -+// 23911 嵧 ; -+,0x10,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x54,0x54,0x54,0x5c,0x64,0x00,0x00,0x00,0x30,0xde,0x0a,0x4a,0x2a,0x6a,0xaa,0x12,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 23912 嵨 ; -+,0x10,0x10,0x10,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x74,0x45,0x01,0x02,0x00,0x20,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x80,0xfe,0x02,0x52,0x4a,0x0a,0x06 -+// 23913 嵩 ; -+,0x00,0x10,0x1f,0x00,0x3f,0x00,0x07,0x04,0x07,0x00,0x1f,0x10,0x17,0x14,0x17,0x10,0x80,0x84,0xfc,0x80,0xff,0x00,0xf8,0x08,0xf8,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x06 -+// 23914 嵪 ; -+,0x10,0x10,0x13,0x54,0x54,0x54,0x54,0x54,0x55,0x55,0x5d,0x75,0x45,0x01,0x01,0x01,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 23915 嵫 ; -+,0x08,0x08,0x08,0x2a,0x2b,0x2a,0x2a,0x2a,0x2b,0x2b,0x2a,0x2e,0x78,0x21,0x01,0x00,0x04,0x86,0x44,0x28,0xff,0x44,0x44,0xaa,0xf7,0x5a,0x44,0x84,0xaa,0xff,0x29,0x00 -+// 23916 嵬 ; -+,0x00,0x10,0x1f,0x11,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x11,0x01,0x02,0x04,0x08,0x10,0x80,0x84,0xfc,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x54,0x7e,0x45,0x3f,0x00 -+// 23917 嵭 ; -+,0x10,0x10,0x11,0x54,0x54,0x55,0x55,0x56,0x55,0x54,0x5c,0x74,0x44,0x00,0x00,0x01,0x20,0x10,0xff,0x84,0x48,0xff,0x22,0x10,0xff,0x40,0x7e,0x42,0x42,0x82,0x8a,0x04 -+// 23918 嵮 ; -+,0x10,0x10,0x11,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x77,0x00,0x00,0x01,0x20,0x20,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0x86,0x04 -+// 23919 嵯 ; -+,0x08,0x08,0x08,0x2b,0x2a,0x2b,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x71,0x01,0x02,0x04,0x04,0x86,0x48,0xff,0x20,0xfe,0x20,0xff,0x40,0x40,0xfe,0x90,0x10,0x10,0xff,0x00 -+// 23920 嵰 ; -+,0x10,0x10,0x11,0x54,0x54,0x55,0x54,0x57,0x54,0x55,0x54,0x5c,0x75,0x41,0x02,0x04,0x84,0x48,0xff,0x48,0x48,0xfe,0x4a,0xff,0x4a,0xfe,0xc8,0xcc,0x4a,0x4b,0x4a,0x48 -+// 23921 嵱 ; -+,0x08,0x08,0x08,0x2b,0x2a,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x2e,0x78,0x20,0x00,0x00,0x20,0x10,0xff,0x02,0x48,0xa6,0x22,0x50,0x8c,0x03,0xfc,0x84,0x84,0x84,0xfc,0x00 -+// 23922 嵲 ; -+,0x10,0x10,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x5f,0x74,0x40,0x01,0x02,0x00,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xfe,0x70,0xa8,0x27,0x22,0x20 -+// 23923 嵳 ; -+,0x00,0x10,0x1f,0x14,0x02,0x3f,0x01,0x1f,0x01,0x7f,0x02,0x05,0x18,0x60,0x0f,0x00,0x80,0x84,0xfc,0x10,0x20,0xfe,0x00,0xfc,0x00,0xff,0x00,0xf8,0x40,0x40,0xff,0x00 -+// 23924 嵴 ; -+,0x10,0x11,0x10,0x10,0x55,0x54,0x55,0x56,0x54,0x54,0x54,0x5c,0x70,0x00,0x00,0x00,0x20,0x24,0xa8,0xa4,0x52,0x8c,0x03,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 23925 嵵 ; -+,0x00,0x10,0x10,0x1f,0x00,0x3e,0x22,0x23,0x3e,0x23,0x22,0x22,0x3e,0x22,0x00,0x00,0x80,0x84,0x84,0xfc,0x10,0xfc,0x10,0xfe,0x08,0xff,0x88,0x68,0x48,0x08,0x28,0x10 -+// 23926 嵶 ; -+,0x10,0x13,0x10,0x54,0x55,0x55,0x55,0x55,0x55,0x54,0x5c,0x70,0x01,0x00,0x00,0x00,0x00,0xef,0x21,0x21,0xef,0x08,0x08,0xef,0x29,0xa5,0x63,0xa5,0x29,0x21,0xa5,0x42 -+// 23927 嵷 ; -+,0x11,0x11,0x11,0x12,0x54,0x55,0x57,0x55,0x55,0x55,0x55,0x7d,0x45,0x01,0x01,0x01,0x12,0x92,0x12,0xad,0xc9,0x00,0x08,0x08,0x28,0x2f,0x28,0x28,0x28,0x28,0x5f,0x80 -+// 23928 嵸 ; -+,0x00,0x10,0x1f,0x00,0x10,0x18,0x25,0x4a,0x10,0x31,0x51,0x11,0x11,0x12,0x12,0x14,0x80,0x84,0xfc,0x00,0x88,0x88,0x56,0x62,0x20,0x20,0x3e,0x20,0x20,0xa0,0x7f,0x00 -+// 23929 嵹 ; -+,0x00,0x10,0x1f,0x00,0x3c,0x04,0x04,0x3c,0x20,0x20,0x3c,0x04,0x04,0x04,0x15,0x08,0x80,0x84,0xfc,0x00,0xfe,0x82,0xfe,0x10,0xfe,0x92,0x92,0xfe,0x14,0x12,0xff,0x82 -+// 23930 嵺 ; -+,0x10,0x13,0x12,0x55,0x54,0x55,0x54,0x54,0x57,0x54,0x5d,0x64,0x01,0x00,0x00,0x07,0x00,0xde,0x52,0x4a,0xc6,0x4a,0x22,0xd8,0x17,0x62,0x98,0x60,0x86,0x18,0xe0,0x00 -+// 23931 嵻 ; -+,0x10,0x10,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x65,0x02,0x02,0x04,0x08,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x54,0x38,0x54,0x93,0x52,0x20 -+// 23932 嵼 ; -+,0x10,0x10,0x11,0x10,0x54,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x75,0x02,0x02,0x04,0x20,0x10,0xff,0x44,0x28,0xff,0x10,0x50,0x7e,0x50,0x90,0x7e,0x10,0x10,0xff,0x00 -+// 23933 嵽 ; -+,0x11,0x11,0x13,0x11,0x55,0x56,0x55,0x56,0x55,0x55,0x55,0x7d,0x45,0x01,0x00,0x00,0x54,0x54,0xff,0x54,0x77,0x00,0xff,0x22,0xfc,0x24,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 23934 嵾 ; -+,0x00,0x10,0x1f,0x14,0x05,0x09,0x1e,0x01,0x06,0x19,0x66,0x19,0x06,0x18,0x03,0x1c,0x80,0x82,0xfe,0x10,0x10,0x24,0xbe,0x44,0x20,0x98,0x67,0x82,0x18,0x60,0x80,0x00 -+// 23935 嵿 ; -+,0x00,0x10,0x1f,0x00,0x3e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x38,0x11,0x80,0x84,0xfc,0x00,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86,0x04 -+// 23936 嶀 ; -+,0x11,0x10,0x11,0x55,0x56,0x54,0x54,0x55,0x54,0x55,0x5c,0x64,0x00,0x00,0x00,0x00,0xff,0x10,0xff,0x12,0x94,0x52,0x00,0xfe,0x00,0xfe,0x40,0xfc,0x04,0x04,0x14,0x08 -+// 23937 嶁 ; -+,0x10,0x10,0x10,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x67,0x00,0x00,0x00,0x03,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x40,0xff,0x84,0xc8,0x30,0xce -+// 23938 嶂 ; -+,0x10,0x10,0x11,0x54,0x57,0x54,0x55,0x55,0x55,0x55,0x5d,0x74,0x43,0x00,0x00,0x00,0x40,0x20,0xfe,0x48,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 23939 嶃 ; -+,0x10,0x10,0x13,0x54,0x57,0x54,0x57,0x54,0x57,0x54,0x57,0x7c,0x44,0x00,0x00,0x00,0x80,0x8f,0xe8,0x88,0xe8,0xaf,0xea,0xaa,0xea,0x8a,0xea,0x8a,0x92,0x92,0xa2,0x82 -+// 23940 嶄 ; -+,0x00,0x10,0x1f,0x04,0x3f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x80,0x84,0xfc,0x00,0xc6,0x38,0xa0,0xa0,0xbf,0xa4,0xa4,0x24,0xa4,0x44,0x44,0x84 -+// 23941 嶅 ; -+,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x08,0x0f,0x11,0x25,0x42,0x00,0x10,0x10,0x1f,0x00,0x20,0xa0,0x3f,0x24,0x44,0xa4,0x18,0x18,0x24,0x43,0x82,0x80,0x84,0x84,0xfc,0x00 -+// 23942 嶆 ; -+,0x10,0x11,0x10,0x15,0x55,0x55,0x55,0x55,0x55,0x54,0x5c,0x74,0x04,0x00,0x00,0x00,0x28,0xff,0x28,0xff,0x29,0xff,0x29,0xff,0x01,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 23943 嶇 ; -+,0x10,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x75,0x45,0x01,0x01,0x00,0x00,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00,0x77,0x55,0x55,0x77,0x00,0x00,0xff,0x00 -+// 23944 嶈 ; -+,0x00,0x10,0x10,0x1f,0x02,0x12,0x12,0x1f,0x02,0x7e,0x13,0x12,0x22,0x22,0x42,0x02,0x80,0x82,0x82,0xfe,0x20,0x7f,0xa2,0x5c,0x34,0xc4,0xff,0x04,0x44,0x44,0x14,0x08 -+// 23945 嶉 ; -+,0x00,0x10,0x10,0x1f,0x00,0x3c,0x24,0x25,0x25,0x26,0x24,0x24,0x3c,0x24,0x00,0x00,0x80,0x84,0x84,0xfc,0x90,0xd0,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80,0x80 -+// 23946 嶊 ; -+,0x00,0x10,0x1f,0x10,0x08,0x09,0x3f,0x0a,0x08,0x0e,0x78,0x28,0x08,0x08,0x28,0x10,0x80,0x84,0xfc,0xa4,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 23947 嶋 ; -+,0x10,0x10,0x10,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x7c,0x45,0x01,0x02,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x80,0xff,0x80,0xfe,0x02,0x52,0x52,0x0a,0x04 -+// 23948 嶌 ; -+,0x00,0x10,0x1f,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x15,0x25,0x80,0x84,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x00,0xfc,0x44,0x24,0x2c -+// 23949 嶍 ; -+,0x10,0x13,0x11,0x10,0x54,0x54,0x55,0x54,0x54,0x54,0x54,0x7c,0x44,0x00,0x00,0x00,0x00,0xee,0x2a,0xa6,0x66,0xaa,0x22,0x50,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 23950 嶎 ; -+,0x00,0x10,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x22,0x2a,0x52,0x24,0x80,0x84,0x84,0xfc,0x00,0x84,0x84,0xbf,0x04,0x24,0x14,0x94,0x04,0x84,0xd4,0x88 -+// 23951 嶏 ; -+,0x00,0x20,0x3f,0x00,0x3f,0x20,0x2f,0x25,0x2f,0x2d,0x2d,0x28,0x2f,0x28,0x4f,0x40,0x80,0x82,0xfe,0x00,0xff,0x00,0xde,0x02,0xc2,0x5e,0xd0,0x50,0xd1,0x51,0xcf,0x00 -+// 23952 嶐 ; -+,0x00,0x20,0x3f,0x00,0x3c,0x24,0x29,0x32,0x29,0x24,0x25,0x3d,0x2a,0x21,0x20,0x23,0x80,0x84,0xfc,0x40,0xfe,0x84,0x48,0x38,0xc7,0xfa,0x20,0xfe,0x20,0xfe,0x20,0xff -+// 23953 嶑 ; -+,0x10,0x10,0x10,0x55,0x56,0x54,0x54,0x54,0x54,0x57,0x5c,0x77,0x44,0x00,0x03,0x00,0x40,0x7c,0x88,0xfe,0x92,0x92,0xfe,0x60,0xb2,0x54,0x98,0x2c,0x4b,0x8a,0x28,0x10 -+// 23954 嶒 ; -+,0x11,0x10,0x10,0x11,0x55,0x55,0x55,0x55,0x55,0x54,0x54,0x7c,0x44,0x00,0x00,0x00,0x02,0x84,0x48,0xff,0x93,0x55,0x39,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 23955 嶓 ; -+,0x08,0x09,0x08,0x08,0x2b,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x3e,0x20,0x00,0x00,0x1e,0xf0,0x92,0x54,0xff,0x38,0x54,0x93,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 23956 嶔 ; -+,0x00,0x10,0x1f,0x04,0x04,0x0a,0x11,0x7e,0x04,0x1f,0x25,0x15,0x06,0x07,0x38,0x01,0x80,0x84,0xfc,0x20,0x20,0x3e,0x42,0x54,0x10,0x10,0x10,0xa8,0x24,0x44,0x83,0x02 -+// 23957 嶕 ; -+,0x08,0x08,0x08,0x09,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x72,0x21,0x01,0x02,0x00,0xa0,0xd8,0x90,0xfe,0x90,0xfe,0x90,0xfc,0x90,0x90,0xfe,0x84,0x52,0x2b,0x2a,0x00 -+// 23958 嶖 ; -+,0x10,0x10,0x10,0x10,0x57,0x54,0x54,0x54,0x54,0x55,0x55,0x5c,0x65,0x02,0x00,0x00,0x20,0x20,0x58,0xfc,0x03,0xfc,0x84,0xfc,0x00,0xfe,0x2a,0xa6,0x2a,0x32,0xaa,0x44 -+// 23959 嶗 ; -+,0x10,0x10,0x12,0x56,0x54,0x55,0x56,0x55,0x55,0x56,0x5c,0x64,0x00,0x00,0x00,0x01,0x84,0xa5,0xd6,0x94,0x84,0x4a,0x31,0xff,0x22,0xfc,0x24,0x24,0x44,0x44,0x94,0x08 -+// 23960 嶘 ; -+,0x00,0x10,0x1f,0x08,0x08,0x09,0x7e,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x0b,0x08,0x80,0x84,0xfc,0x54,0x48,0xfe,0x28,0x34,0xd4,0x48,0xfe,0x24,0x18,0x71,0x8d,0x02 -+// 23961 嶙 ; -+,0x11,0x10,0x10,0x55,0x54,0x54,0x57,0x55,0x55,0x56,0x57,0x5c,0x71,0x02,0x04,0x00,0x24,0xa8,0x70,0xff,0x68,0xa7,0x22,0x08,0xde,0x48,0x68,0xbf,0x08,0x08,0x08,0x08 -+// 23962 嶚 ; -+,0x00,0x08,0x0f,0x00,0x3f,0x12,0x0c,0x1f,0x64,0x07,0x04,0x07,0x04,0x06,0x09,0x10,0x80,0x84,0xfc,0x80,0xfe,0x24,0x18,0xff,0x0a,0xf8,0x08,0xf8,0x40,0x50,0x4c,0x88 -+// 23963 嶛 ; -+,0x00,0x10,0x13,0x14,0x55,0x54,0x55,0x56,0x54,0x54,0x5c,0x60,0x00,0x01,0x02,0x00,0x20,0x20,0xff,0x52,0x4a,0xfc,0x87,0xfc,0x84,0xfc,0x10,0x94,0xd2,0x13,0x52,0x20 -+// 23964 嶜 ; -+,0x00,0x10,0x1f,0x00,0x3f,0x14,0x3f,0x0a,0x12,0x23,0x40,0x0f,0x08,0x0f,0x08,0x0f,0x80,0x84,0xfc,0x00,0x7e,0x28,0x7f,0x14,0xa5,0x43,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 23965 嶝 ; -+,0x13,0x11,0x10,0x12,0x55,0x54,0x55,0x56,0x54,0x54,0x54,0x7c,0x44,0x00,0x03,0x00,0xd0,0x56,0xd8,0x4b,0x4c,0x86,0x7d,0x00,0xfe,0x82,0xfe,0x84,0x66,0x48,0xff,0x00 -+// 23966 嶞 ; -+,0x00,0x3c,0x27,0x28,0x29,0x26,0x25,0x35,0x29,0x21,0x21,0x21,0x01,0x10,0x10,0x1f,0x40,0x40,0xff,0x80,0xf8,0x20,0xfe,0x04,0xfc,0x04,0xfc,0x04,0x14,0x88,0x84,0xfc -+// 23967 嶟 ; -+,0x11,0x10,0x13,0x54,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5c,0x75,0x04,0x00,0x00,0x04,0x88,0xff,0x50,0xfe,0x52,0xde,0x02,0xfe,0x02,0xfe,0x08,0xff,0x48,0x48,0x18 -+// 23968 嶠 ; -+,0x10,0x11,0x10,0x57,0x54,0x54,0x55,0x56,0x54,0x55,0x5d,0x61,0x01,0x01,0x01,0x01,0x1c,0xe0,0x40,0xff,0x48,0xfc,0x8b,0xfa,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x0a,0x04 -+// 23969 嶡 ; -+,0x00,0x10,0x1f,0x00,0x3f,0x30,0x29,0x3f,0x22,0x2a,0x2f,0x22,0x22,0x24,0x48,0x10,0x80,0x84,0xfc,0x00,0xfe,0xa0,0x3e,0xa2,0x54,0x90,0x90,0x10,0x28,0x24,0x43,0x82 -+// 23970 嶢 ; -+,0x10,0x10,0x10,0x55,0x55,0x57,0x55,0x57,0x54,0x57,0x5c,0x60,0x00,0x00,0x01,0x02,0x20,0xfc,0x20,0xfe,0x04,0xdf,0x04,0xdf,0x00,0xfe,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 23971 嶣 ; -+,0x00,0x10,0x10,0x1f,0x08,0x0f,0x18,0x2f,0x48,0x0f,0x08,0x0f,0x14,0x12,0x23,0x22,0x80,0x84,0x84,0xfc,0x80,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x44,0x22,0x33,0x22 -+// 23972 嶤 ; -+,0x00,0x10,0x1f,0x00,0x0f,0x00,0x3f,0x04,0x1f,0x04,0x3f,0x00,0x1f,0x02,0x04,0x18,0x80,0x84,0xfc,0x80,0xf8,0x80,0xfe,0x10,0x7c,0x10,0x7e,0x00,0xfc,0x22,0x23,0x1e -+// 23973 嶥 ; -+,0x10,0x11,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x7d,0x41,0x02,0x05,0x02,0x00,0xff,0x08,0xac,0x48,0xef,0x15,0x54,0x54,0x54,0xf4,0x44,0x4a,0x89,0x11,0x20 -+// 23974 嶦 ; -+,0x10,0x10,0x10,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x75,0x41,0x02,0x02,0x04,0x40,0x7c,0x88,0xff,0x24,0x52,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x42 -+// 23975 嶧 ; -+,0x10,0x11,0x11,0x55,0x54,0x54,0x54,0x55,0x54,0x54,0x5c,0x74,0x01,0x00,0x00,0x00,0x00,0xfe,0x4a,0xfe,0x10,0xfe,0x10,0xff,0x84,0x48,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 23976 嶨 ; -+,0x02,0x1d,0x10,0x1d,0x10,0x11,0x1c,0x11,0x3f,0x20,0x40,0x08,0x08,0x08,0x0f,0x00,0x00,0x5c,0x84,0x5c,0x04,0x44,0x9c,0x44,0xff,0x02,0x84,0x88,0x88,0x88,0xf8,0x00 -+// 23977 嶩 ; -+,0x10,0x11,0x11,0x11,0x55,0x55,0x54,0x55,0x55,0x55,0x55,0x5d,0x61,0x01,0x02,0x04,0x48,0xfe,0x4a,0xfe,0x4a,0xfe,0x00,0xfe,0x00,0xfe,0x00,0xff,0x52,0x4c,0x67,0x42 -+// 23978 嶪 ; -+,0x00,0x10,0x1f,0x0a,0x06,0x7f,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x80,0x84,0xfc,0x28,0x30,0xff,0x80,0xfc,0x80,0xf8,0x80,0xfe,0xa0,0x98,0x8e,0x84 -+// 23979 嶫 ; -+,0x10,0x12,0x11,0x54,0x57,0x54,0x55,0x54,0x55,0x54,0x57,0x7c,0x44,0x01,0x06,0x00,0x48,0x4a,0x4c,0xc8,0xff,0x48,0xfe,0x20,0xfe,0x20,0xff,0x68,0xa4,0x23,0x22,0x20 -+// 23980 嶬 ; -+,0x11,0x10,0x13,0x10,0x55,0x54,0x57,0x54,0x55,0x54,0x57,0x5c,0x60,0x03,0x00,0x00,0x04,0x88,0xff,0x20,0xfe,0x20,0xff,0x28,0xca,0x4a,0xff,0x4a,0xec,0x55,0x45,0xc2 -+// 23981 嶭 ; -+,0x00,0x10,0x1f,0x08,0x10,0x3e,0x22,0x22,0x3f,0x20,0x3e,0x22,0x22,0x3e,0x22,0x00,0x80,0x84,0xfc,0x24,0x10,0xfe,0x44,0x28,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0x10 -+// 23982 嶮 ; -+,0x00,0x10,0x10,0x54,0x57,0x54,0x55,0x55,0x55,0x55,0x5c,0x64,0x01,0x01,0x02,0x04,0x20,0x20,0x50,0x8c,0xfb,0x00,0xde,0x52,0x52,0xde,0x84,0x84,0x44,0x6a,0x53,0x22 -+// 23983 嶯 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x11,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x17,0x39,0x01,0x80,0x84,0xfc,0x10,0x18,0x16,0x14,0xff,0x10,0x12,0x14,0x08,0x18,0xa5,0x43,0x00 -+// 23984 嶰 ; -+,0x12,0x13,0x12,0x14,0x57,0x55,0x57,0x55,0x55,0x57,0x55,0x7d,0x45,0x05,0x08,0x10,0x00,0xff,0x51,0x91,0xd1,0x53,0xe4,0x54,0x7f,0xe4,0x44,0x7f,0x44,0x44,0xc4,0x00 -+// 23985 嶱 ; -+,0x10,0x13,0x10,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5f,0x75,0x41,0x01,0x00,0x00,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x22,0x52,0x8a,0xfa,0x02,0x06 -+// 23986 嶲 ; -+,0x00,0x10,0x1f,0x04,0x0f,0x18,0x2f,0x08,0x0f,0x08,0x0f,0x00,0x1e,0x12,0x13,0x10,0x80,0x84,0xfc,0x80,0xf8,0x40,0xf8,0x40,0xf8,0x40,0xfc,0x00,0x3e,0x22,0xe2,0x06 -+// 23987 嶳 ; -+,0x00,0x10,0x1f,0x00,0x7f,0x03,0x0d,0x32,0x0c,0x33,0x0c,0x04,0x3f,0x04,0x07,0x78,0x80,0x84,0xfc,0x00,0xff,0x08,0x9c,0xe0,0xd8,0x47,0x42,0xd0,0x7e,0x10,0x10,0xff -+// 23988 嶴 ; -+,0x01,0x02,0x0f,0x08,0x0a,0x0f,0x09,0x0a,0x0c,0x01,0x7f,0x04,0x18,0x68,0x0f,0x08,0x00,0x00,0xfc,0x84,0xa4,0xf4,0xc4,0xa4,0x94,0x00,0xff,0x98,0x87,0x8a,0xf8,0x08 -+// 23989 嶵 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2b,0x2a,0x2b,0x2a,0x2e,0x79,0x20,0x00,0x00,0x00,0xfe,0xaa,0xaa,0xfe,0x28,0x28,0xef,0x28,0xef,0x28,0x28,0xef,0x28,0x28,0x28 -+// 23990 嶶 ; -+,0x00,0x10,0x1f,0x10,0x0a,0x12,0x2b,0x4c,0x1b,0x30,0x53,0x12,0x12,0x12,0x14,0x10,0x80,0x84,0xfc,0x80,0xa8,0xaf,0xea,0x12,0xea,0x0a,0xc4,0x44,0x4a,0x53,0x61,0x40 -+// 23991 嶷 ; -+,0x00,0x10,0x1f,0x00,0x12,0x1c,0x11,0x0f,0x20,0x3f,0x44,0x3f,0x04,0x0a,0x13,0x22,0x80,0x84,0xfc,0x00,0x7e,0x04,0x28,0x10,0xff,0x12,0x10,0x5e,0x50,0x50,0x50,0xbf -+// 23992 嶸 ; -+,0x00,0x12,0x12,0x10,0x54,0x55,0x56,0x55,0x56,0x55,0x5c,0x74,0x40,0x05,0x02,0x00,0x88,0xaa,0xda,0x88,0x8c,0x52,0x00,0xff,0x22,0xfc,0x70,0x68,0xa4,0x23,0x22,0x20 -+// 23993 嶹 ; -+,0x10,0x11,0x10,0x11,0x54,0x57,0x54,0x55,0x54,0x57,0x54,0x5d,0x65,0x01,0x01,0x00,0x20,0xfe,0x20,0xfe,0x00,0xff,0x02,0xfc,0x20,0xff,0x04,0xff,0x54,0x54,0xc4,0x0c -+// 23994 嶺 ; -+,0x00,0x10,0x1f,0x10,0x08,0x14,0x12,0x29,0x44,0x3f,0x02,0x02,0x14,0x0c,0x04,0x04,0x80,0x84,0xfc,0x00,0xfe,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x43,0x82 -+// 23995 嶻 ; -+,0x00,0x10,0x1f,0x04,0x3f,0x04,0x7f,0x0a,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x1f,0x00,0x80,0x84,0xfc,0x20,0xa8,0x24,0xff,0x20,0xa8,0x2c,0x98,0x10,0x91,0x29,0xc5,0x02 -+// 23996 嶼 ; -+,0x10,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5f,0x64,0x00,0x01,0x02,0x04,0x40,0x86,0x32,0x22,0xf6,0x12,0x12,0xd6,0x52,0x52,0xff,0x88,0xc4,0x06,0x03,0x02 -+// 23997 嶽 ; -+,0x00,0x10,0x1f,0x01,0x14,0x0b,0x10,0x6b,0x08,0x1b,0x28,0x4b,0x0a,0x2b,0x10,0x00,0x80,0x82,0xfe,0x00,0x84,0xe5,0x04,0xdf,0x04,0xc4,0x04,0xc4,0x4a,0xd3,0x22,0x00 -+// 23998 嶾 ; -+,0x10,0x11,0x11,0x10,0x55,0x54,0x57,0x54,0x54,0x54,0x54,0x5c,0x62,0x02,0x04,0x00,0x1e,0xf4,0x46,0xa8,0xfe,0x20,0xff,0x04,0xfc,0x04,0xfc,0x20,0x95,0x85,0x7c,0x00 -+// 23999 嶿 ; -+,0x10,0x10,0x11,0x55,0x55,0x54,0x54,0x54,0x55,0x54,0x5d,0x75,0x41,0x01,0x01,0x01,0xfe,0x10,0xff,0x11,0x56,0x10,0x56,0x00,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0x02,0x06 -+// 24000 巀 ; -+,0x00,0x10,0x1f,0x04,0x04,0x16,0x65,0x1f,0x72,0x1f,0x12,0x1f,0x12,0x1f,0x10,0x00,0x80,0x84,0xfc,0x10,0x94,0x52,0x10,0xff,0x10,0xd2,0x0c,0x88,0x15,0xa3,0x41,0x00 -+// 24001 巁 ; -+,0x11,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x71,0x01,0x02,0x02,0x04,0xff,0x24,0xff,0x24,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x4b,0x4f,0x7b,0x51,0x43 -+// 24002 巂 ; -+,0x00,0x10,0x1f,0x14,0x0f,0x18,0x6f,0x08,0x0f,0x00,0x1f,0x12,0x17,0x1a,0x13,0x10,0x80,0x82,0xfe,0x42,0xfc,0x40,0xfc,0x40,0xfe,0x00,0xfe,0x12,0xee,0x22,0xea,0x04 -+// 24003 巃 ; -+,0x00,0x20,0x3f,0x08,0x3f,0x12,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x25,0x22,0x80,0x82,0xfe,0x40,0x7c,0x40,0xfe,0x02,0x7e,0x40,0x7e,0x40,0x7e,0x41,0x41,0x3f -+// 24004 巄 ; -+,0x11,0x10,0x13,0x55,0x54,0x57,0x54,0x55,0x55,0x55,0x55,0x55,0x5d,0x61,0x01,0x01,0x08,0x8f,0xf8,0x1f,0xa1,0xff,0x08,0xef,0x28,0xef,0x28,0xef,0x28,0x29,0x29,0x67 -+// 24005 巅 ; -+,0x00,0x20,0x3f,0x08,0x7f,0x10,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x7f,0x12,0x21,0x41,0x80,0x82,0xfe,0x00,0x7f,0x10,0x3e,0x22,0x2a,0x2a,0x2a,0x2a,0x88,0x14,0x23,0x42 -+// 24006 巆 ; -+,0x10,0x12,0x12,0x10,0x55,0x56,0x55,0x55,0x56,0x54,0x54,0x5c,0x71,0x41,0x01,0x01,0x88,0xaa,0xac,0x88,0x54,0x22,0xff,0x02,0xfc,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02 -+// 24007 巇 ; -+,0x00,0x10,0x10,0x57,0x54,0x57,0x54,0x54,0x54,0x5d,0x65,0x05,0x08,0x09,0x10,0x23,0x88,0xec,0x8a,0xe8,0xbf,0xc8,0xaa,0xeb,0x0a,0xe4,0x24,0xec,0x0d,0x33,0xc3,0xe1 -+// 24008 巈 ; -+,0x00,0x20,0x3f,0x22,0x7f,0x22,0x3e,0x09,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x80,0x82,0xfe,0x40,0x40,0x7e,0x92,0x56,0x3a,0xfe,0x32,0x5a,0x96,0x12,0x1a,0x14 -+// 24009 巉 ; -+,0x10,0x10,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x55,0x7d,0x41,0x00,0x01,0x80,0xf8,0x08,0xfe,0x02,0xfe,0x52,0x9c,0x12,0xfe,0x84,0xff,0x21,0xff,0x48,0x8f -+// 24010 巊 ; -+,0x11,0x11,0x11,0x55,0x55,0x55,0x55,0x55,0x56,0x54,0x57,0x5c,0x60,0x00,0x01,0x06,0xde,0x52,0xde,0x52,0xde,0x52,0xde,0x4a,0x11,0x40,0xff,0x84,0x88,0x70,0x8c,0x03 -+// 24011 巋 ; -+,0x00,0x10,0x1f,0x10,0x3e,0x22,0x3e,0x20,0x3e,0x22,0x3f,0x08,0x2f,0x28,0x2f,0x78,0x40,0x42,0xfe,0x00,0x7e,0x02,0x7e,0x02,0xff,0x92,0x7c,0x54,0x54,0x54,0x5c,0x10 -+// 24012 巌 ; -+,0x00,0x10,0x1f,0x11,0x08,0x3f,0x20,0x27,0x21,0x3f,0x24,0x26,0x25,0x24,0x2f,0x40,0x80,0x84,0xfc,0x08,0x90,0xff,0x10,0x9e,0x24,0xe4,0x94,0x88,0x88,0x94,0x93,0xa2 -+// 24013 巍 ; -+,0x00,0x10,0x1f,0x00,0x3e,0x08,0x7f,0x1c,0x2a,0x10,0x7e,0x24,0x18,0x14,0x22,0x42,0x80,0x82,0xfe,0x40,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x2a,0x2a,0x2f,0x49,0x4f,0x80 -+// 24014 巎 ; -+,0x13,0x10,0x11,0x55,0x55,0x55,0x55,0x57,0x54,0x55,0x56,0x5d,0x62,0x00,0x00,0x03,0xff,0x20,0x77,0x55,0xf7,0x54,0xd5,0x73,0x84,0x42,0xf9,0x48,0x48,0x30,0xcf,0x02 -+// 24015 巏 ; -+,0x10,0x13,0x10,0x11,0x55,0x55,0x54,0x55,0x56,0x54,0x5c,0x74,0x40,0x00,0x00,0x00,0x48,0xff,0x48,0xde,0x52,0xde,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 24016 巐 ; -+,0x00,0x20,0x3f,0x08,0x7f,0x00,0x1f,0x11,0x1f,0x00,0x3f,0x2a,0x2e,0x20,0x22,0x21,0x80,0x82,0xfe,0x00,0xbe,0x32,0x2a,0x3e,0x0c,0x74,0xa4,0xff,0xa4,0xa4,0xc4,0x44 -+// 24017 巑 ; -+,0x12,0x13,0x12,0x57,0x55,0x55,0x56,0x55,0x55,0x55,0x55,0x5d,0x61,0x01,0x00,0x03,0xa8,0xfe,0xa8,0xff,0x54,0x54,0x63,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 24018 巒 ; -+,0x11,0x10,0x2b,0x7c,0x11,0x24,0x7d,0x04,0x29,0x29,0x41,0x00,0x10,0x10,0x1f,0x00,0x04,0x84,0xe9,0x1f,0xe4,0x0f,0xe1,0x0a,0xea,0x32,0xe0,0x80,0x84,0x84,0xfc,0x00 -+// 24019 巓 ; -+,0x00,0x10,0x1f,0x12,0x1c,0x11,0x0f,0x24,0x3f,0x29,0x2d,0x2b,0x29,0x3f,0x12,0x21,0x80,0x84,0xfc,0x00,0x7f,0x08,0x3e,0x22,0xbe,0x22,0x3e,0x22,0x3e,0x94,0x23,0x42 -+// 24020 巔 ; -+,0x00,0x08,0x0f,0x04,0x3f,0x08,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x3f,0x0a,0x11,0x21,0x80,0x84,0xfc,0x00,0x7f,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0xbe,0x14,0xa3,0x42 -+// 24021 巕 ; -+,0x10,0x11,0x10,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x54,0x5f,0x70,0x00,0x00,0x01,0x24,0xff,0xa4,0xe4,0x3f,0xea,0x1f,0xe4,0x3f,0xe4,0x44,0xff,0x88,0xc8,0x30,0xce -+// 24022 巖 ; -+,0x00,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x11,0x1f,0x14,0x17,0x14,0x17,0x24,0x2f,0x40,0x80,0x84,0xfc,0x00,0xfe,0x10,0x90,0x1f,0xd4,0xa4,0xd4,0x94,0x88,0x94,0xd3,0xa2 -+// 24023 巗 ; -+,0x11,0x11,0x11,0x54,0x57,0x54,0x54,0x55,0x54,0x54,0x5c,0x64,0x04,0x07,0x08,0x10,0xce,0x4a,0xce,0x00,0xff,0xe8,0x48,0xff,0xaa,0xea,0xaa,0xa4,0xf4,0xaa,0x29,0x31 -+// 24024 巘 ; -+,0x10,0x10,0x10,0x17,0x55,0x57,0x55,0x55,0x54,0x55,0x55,0x7f,0x0b,0x0b,0x12,0x02,0x82,0xe2,0x83,0xf2,0x12,0xcf,0x22,0xe2,0x02,0xe2,0x26,0xf5,0x55,0xf4,0x98,0x90 -+// 24025 巙 ; -+,0x10,0x10,0x11,0x55,0x55,0x55,0x55,0x55,0x57,0x54,0x5d,0x76,0x05,0x00,0x00,0x03,0x84,0x48,0xff,0x20,0x77,0xd5,0x77,0x54,0xf7,0xa4,0x7a,0x89,0x48,0x30,0xcc,0x03 -+// 24026 巚 ; -+,0x00,0x20,0x3f,0x04,0x04,0x3f,0x24,0x3f,0x24,0x27,0x20,0x2f,0x2d,0x2f,0x2a,0x4a,0x80,0x82,0xfe,0x08,0x0c,0xca,0xbf,0x08,0x88,0x94,0x14,0xd4,0x52,0xe2,0x63,0x42 -+// 24027 巛 ; -+,0x00,0x04,0x06,0x04,0x08,0x10,0x11,0x22,0x21,0x10,0x08,0x08,0x04,0x04,0x00,0x00,0x00,0x44,0x66,0x44,0x88,0x88,0x10,0x20,0x10,0x88,0x84,0x44,0x42,0x42,0x00,0x00 -+// 24028 巜 ; -+,0x02,0x03,0x02,0x04,0x04,0x08,0x08,0x10,0x08,0x04,0x02,0x02,0x01,0x01,0x01,0x00,0x10,0x18,0x10,0x10,0x20,0x20,0x40,0x80,0x40,0x20,0x10,0x10,0x08,0x8c,0x08,0x00 -+// 24029 川 ; -+,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x02,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x02,0x00 -+// 24030 州 ; -+,0x04,0x04,0x04,0x04,0x04,0x26,0x25,0x25,0x44,0x04,0x04,0x08,0x08,0x10,0x10,0x20,0x02,0x42,0x42,0x42,0x62,0x52,0x52,0x4a,0x4a,0x42,0x42,0x42,0x42,0x42,0x42,0x02 -+// 24031 巟 ; -+,0x01,0x00,0x7f,0x08,0x08,0x08,0x0f,0x00,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x80,0xff,0x00,0x00,0x00,0xfc,0x00,0x90,0x90,0x90,0x90,0x91,0x91,0x8f,0x80 -+// 24032 巠 ; -+,0x00,0x3f,0x08,0x0c,0x09,0x12,0x11,0x08,0x08,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0xfe,0x88,0xcc,0x08,0x10,0x08,0xcc,0x88,0xfc,0x80,0x80,0x80,0x80,0xff,0x00 -+// 24033 巡 ; -+,0x00,0x20,0x10,0x11,0x01,0x02,0x7c,0x0a,0x09,0x09,0x08,0x08,0x08,0x14,0x23,0x40,0x92,0xdb,0x92,0x24,0x24,0x48,0x48,0x24,0x24,0x12,0x9b,0x92,0x00,0x00,0xff,0x00 -+// 24034 巢 ; -+,0x04,0x08,0x11,0x08,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x7f,0x01,0x02,0x04,0x08,0x10,0x44,0x88,0x10,0x88,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0xc0,0xb0,0x88,0x87,0x82 -+// 24035 巣 ; -+,0x09,0x04,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x01,0x02,0x04,0x08,0x10,0x20,0x08,0xcc,0x90,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0xa0,0x90,0x88,0x8e,0x84,0x80 -+// 24036 巤 ; -+,0x08,0x10,0x21,0x10,0x1f,0x14,0x13,0x14,0x1f,0x11,0x19,0x15,0x11,0x15,0x19,0x11,0x48,0x90,0x08,0x84,0xf8,0x28,0xc8,0x48,0xf8,0x08,0x48,0x28,0x48,0x29,0x85,0x02 -+// 24037 工 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x00,0x00 -+// 24038 左 ; -+,0x01,0x01,0x01,0x7f,0x01,0x01,0x02,0x02,0x07,0x04,0x08,0x08,0x10,0x20,0x5f,0x00,0x00,0x80,0x00,0xff,0x00,0x00,0x00,0x00,0xfc,0x40,0x40,0x40,0x40,0x40,0xff,0x00 -+// 24039 巧 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x08,0x08,0x08,0x0b,0x1c,0x60,0x00,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x7e,0x22,0x02,0x02,0x02,0x02,0x02,0x22,0x14,0x08 -+// 24040 巨 ; -+,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0xfe,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00,0x00,0xff,0x00,0x00 -+// 24041 巩 ; -+,0x00,0x00,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x18,0x61,0x01,0x02,0x04,0x08,0x00,0x00,0xfc,0x84,0x84,0x84,0xc4,0xa4,0x94,0x94,0x84,0x04,0x05,0x05,0x05,0x03,0x00 -+// 24042 巪 ; -+,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfe,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x02 -+// 24043 巫 ; -+,0x00,0x3f,0x00,0x08,0x0c,0x08,0x08,0x14,0x14,0x22,0x22,0x40,0x00,0x00,0x7f,0x00,0x00,0xfe,0x80,0x88,0x88,0x88,0x88,0x88,0x94,0x92,0xa3,0xc2,0x80,0x80,0xff,0x00 -+// 24044 巬 ; -+,0x00,0x3f,0x08,0x08,0x08,0x0e,0x39,0x00,0x1f,0x00,0x3f,0x00,0x01,0x02,0x0c,0x30,0x78,0x48,0x48,0x49,0x89,0x87,0x00,0x80,0xfe,0x80,0xff,0x80,0x40,0x30,0x0e,0x04 -+// 24045 巭 ; -+,0x00,0x3e,0x08,0x08,0x08,0x0f,0x38,0x00,0x1f,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x20,0x20,0xfe,0x22,0x22,0x4a,0x84,0x80,0xfc,0x80,0xff,0x40,0x20,0x18,0x0e,0x04 -+// 24046 差 ; -+,0x04,0x03,0x02,0x3f,0x00,0x1f,0x01,0x7f,0x02,0x04,0x07,0x08,0x10,0x20,0x4f,0x00,0x10,0x18,0x20,0xfe,0x80,0xfc,0x00,0xff,0x00,0x00,0xfc,0x40,0x40,0x40,0xff,0x00 -+// 24047 巯 ; -+,0x00,0x7c,0x07,0x08,0x08,0x14,0x62,0x00,0x3e,0x08,0x08,0x08,0x0e,0x71,0x01,0x02,0x20,0x10,0xff,0x20,0x28,0x44,0xfe,0x02,0xa4,0xa4,0xa4,0xa4,0xa5,0x25,0x23,0x00 -+// 24048 巰 ; -+,0x00,0x7f,0x15,0x2a,0x2a,0x54,0x2b,0x2a,0x00,0x7e,0x08,0x08,0x0e,0x78,0x01,0x02,0x20,0x10,0xff,0x10,0x24,0x42,0xff,0x02,0x54,0x54,0x54,0x54,0x94,0x95,0x15,0x13 -+// 24049 己 ; -+,0x00,0x1f,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0f,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 24050 已 ; -+,0x00,0x1f,0x00,0x00,0x00,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x00,0x00,0x00,0x02,0x02,0x03,0xfe,0x00,0x00 -+// 24051 巳 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0f,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08,0x00,0x00,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 24052 巴 ; -+,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x0f,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x04,0x00,0x00,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 24053 巵 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x13,0x12,0x12,0x12,0x13,0x12,0x12,0x12,0x22,0x41,0x00,0x1e,0xe0,0x00,0xff,0x00,0xfc,0x44,0x44,0x44,0xfc,0x00,0x00,0x02,0x02,0xfe,0x00 -+// 24054 巶 ; -+,0x00,0x3f,0x11,0x11,0x11,0x25,0x42,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x20,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x40,0x40,0x40,0x41,0x41,0x3f,0x00,0x00 -+// 24055 巷 ; -+,0x02,0x02,0x3f,0x02,0x02,0x7f,0x02,0x04,0x0f,0x14,0x64,0x07,0x04,0x04,0x03,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x08,0xf4,0x13,0x12,0xf0,0x04,0x06,0xfc,0x00 -+// 24056 巸 ; -+,0x00,0x7f,0x44,0x44,0x44,0x5f,0x51,0x51,0x51,0x5f,0x55,0x44,0x44,0x44,0x7f,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x40,0x40,0x40,0x40,0x41,0x41,0xbf,0x00 -+// 24057 巹 ; -+,0x1f,0x00,0x00,0x3e,0x04,0x08,0x70,0x2f,0x00,0x0f,0x00,0x0f,0x08,0x08,0x0f,0x00,0xf0,0x60,0x84,0xd8,0xa0,0x98,0x87,0xfa,0x00,0xf8,0x08,0xf8,0x02,0x03,0xfe,0x00 -+// 24058 巺 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x10,0x11,0x0f,0x00,0x3f,0x00,0x04,0x06,0x0c,0x10,0x20,0x00,0x7c,0x44,0x44,0x7c,0x40,0x42,0x3e,0x00,0xff,0x00,0x10,0x08,0x0c,0x06,0x04 -+// 24059 巻 ; -+,0x00,0x08,0x06,0x04,0x1f,0x01,0x3f,0x04,0x0f,0x10,0x60,0x07,0x04,0x04,0x04,0x07,0x80,0x90,0x98,0xa0,0xfc,0x00,0xff,0x08,0xf4,0x13,0x12,0xf0,0x00,0x04,0x04,0xfc -+// 24060 巼 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x10,0x10,0x1f,0x00,0x3e,0x22,0x22,0x22,0x22,0x3e,0x00,0x00,0xf8,0x08,0x08,0xf8,0x04,0x04,0xfc,0x40,0x40,0x47,0x78,0x40,0x42,0x43,0x3e -+// 24061 巽 ; -+,0x1f,0x11,0x1f,0x10,0x11,0x1f,0x02,0x02,0x1f,0x02,0x7f,0x02,0x07,0x0c,0x10,0x20,0x7c,0x44,0x44,0x7c,0x42,0x7e,0x20,0x20,0xfe,0x20,0xff,0x10,0x08,0x0c,0x06,0x04 -+// 24062 巾 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x9c,0x88,0x80,0x80 -+// 24063 巿 ; -+,0x00,0x00,0x7f,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x80,0x80,0xff,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24064 帀 ; -+,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x02,0xff,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88,0x80,0x80,0x80 -+// 24065 币 ; -+,0x00,0x3f,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x7e,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88,0x80,0x80,0x80 -+// 24066 市 ; -+,0x01,0x00,0x7f,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0xff,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24067 布 ; -+,0x01,0x01,0x01,0x7f,0x02,0x02,0x04,0x0f,0x14,0x24,0x44,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0x00,0xff,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0x54,0x48,0x40,0x40 -+// 24068 帄 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x49,0x4d,0x4a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 24069 帅 ; -+,0x04,0x04,0x04,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x09,0x09,0x10,0x20,0x40,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x17,0x12,0x10,0x10,0x10 -+// 24070 帆 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x09,0x09,0x0a,0x00,0xf8,0x88,0x88,0x88,0x88,0xc8,0xa8,0xb8,0xa8,0x88,0x89,0x89,0x09,0x07,0x00 -+// 24071 帇 ; -+,0x00,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x80,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfc,0x84,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24072 师 ; -+,0x04,0x05,0x24,0x24,0x25,0x25,0x25,0x25,0x25,0x29,0x29,0x09,0x10,0x20,0x40,0x00,0x00,0xff,0x10,0x10,0xff,0x11,0x11,0x11,0x11,0x11,0x15,0x12,0x10,0x10,0x10,0x10 -+// 24073 帉 ; -+,0x10,0x10,0x10,0x7e,0x52,0x52,0x53,0x52,0x52,0x52,0x56,0x10,0x10,0x10,0x10,0x11,0x08,0x48,0x68,0x44,0x84,0x83,0x02,0xfc,0x24,0x24,0x24,0x44,0x44,0x84,0x94,0x08 -+// 24074 帊 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 24075 帋 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x15,0x38,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x3c,0xc0,0x80,0x80,0xfc,0x40,0x31,0x8d,0x83,0xfc,0x84,0x84,0x84,0x94,0x88,0x80 -+// 24076 希 ; -+,0x04,0x03,0x00,0x07,0x19,0x7f,0x02,0x04,0x0f,0x14,0x24,0x44,0x04,0x04,0x00,0x00,0x10,0x20,0xc0,0x30,0x08,0xff,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0x5c,0x48,0x40 -+// 24077 帍 ; -+,0x01,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x17,0x14,0x14,0x14,0x24,0x24,0x40,0x00,0x00,0x80,0xfc,0x04,0x04,0xfc,0x40,0x40,0xfc,0x44,0x44,0x44,0x5c,0x48,0x40,0x40 -+// 24078 帎 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x09,0x0a,0x10,0x10,0x10,0xff,0x92,0x14,0x28,0x28,0x28,0x28,0x48,0x48,0x89,0x89,0x07,0x00 -+// 24079 帏 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x20,0x20,0x20,0xff,0x20,0xfe,0x20,0x20,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 24080 帐 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x44,0x4e,0x58,0x60,0x40,0xff,0x50,0x50,0x48,0x48,0x44,0x53,0xe2,0x40 -+// 24081 帑 ; -+,0x08,0x08,0x7f,0x11,0x32,0x0c,0x12,0x21,0x40,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x42,0x44,0x24,0x18,0x24,0x43,0x82,0xfc,0x84,0x84,0x84,0x9c,0x88,0x80 -+// 24082 帒 ; -+,0x04,0x06,0x08,0x18,0x2f,0x48,0x08,0x08,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x90,0x88,0x88,0xbf,0x40,0x22,0x12,0x8c,0xfc,0x84,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24083 帓 ; -+,0x10,0x10,0x10,0x7f,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x56,0x11,0x12,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x38,0x38,0x54,0x94,0x13,0x12,0x10,0x10 -+// 24084 帔 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x12,0x12,0x14,0x1b,0x00,0x20,0x20,0xfe,0x24,0x28,0x20,0xfc,0x84,0x44,0x48,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 24085 帕 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x10,0x18,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 24086 帖 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 24087 帗 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x09,0x0a,0x08,0x48,0x44,0x44,0xff,0x40,0x40,0x7f,0x52,0x52,0x52,0x4c,0x92,0x92,0x23,0x42,0x00 -+// 24088 帘 ; -+,0x01,0x00,0x3f,0x20,0x48,0x0c,0x18,0x2f,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0xff,0x02,0x88,0x86,0x84,0xfc,0x84,0x84,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24089 帙 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2b,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x09,0x0a,0x10,0x90,0xd0,0x90,0xfe,0x10,0x10,0xff,0x10,0x28,0x28,0x44,0x46,0x83,0x02,0x00 -+// 24090 帚 ; -+,0x1f,0x00,0x0f,0x00,0x1f,0x00,0x3f,0x20,0x4f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x82,0xf8,0x88,0x88,0x88,0xa8,0x90,0x80,0x80 -+// 24091 帛 ; -+,0x00,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x84,0x80,0xfe,0x82,0x82,0x82,0x8a,0x84,0x80 -+// 24092 帜 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x09,0x0a,0x00,0xfc,0x84,0x84,0x84,0x84,0x84,0xfc,0x84,0x00,0x48,0x64,0xc6,0x83,0x02,0x00 -+// 24093 帝 ; -+,0x01,0x00,0x3f,0x04,0x02,0x3f,0x20,0x40,0x0f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x80,0xff,0x08,0x10,0xff,0x82,0x84,0xf8,0x88,0x88,0x88,0xa8,0x90,0x80,0x80 -+// 24094 帞 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 24095 帟 ; -+,0x01,0x00,0x3f,0x09,0x0d,0x12,0x22,0x04,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x82,0xff,0x20,0x28,0x26,0x24,0xa0,0xfc,0x84,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24096 帠 ; -+,0x01,0x0e,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x00,0x00,0x80,0x38,0x08,0x78,0x08,0x08,0xf8,0x80,0x80,0xfc,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24097 帡 ; -+,0x09,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x09,0x04,0x86,0x48,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 24098 帢 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x44,0x83,0x02,0xfc,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 24099 帣 ; -+,0x00,0x08,0x04,0x3f,0x01,0x7f,0x02,0x04,0x18,0x6f,0x08,0x08,0x08,0x08,0x08,0x00,0x88,0x8c,0x90,0xfe,0x00,0xff,0x10,0x88,0x87,0xfa,0x88,0x88,0x88,0xb8,0x90,0x80 -+// 24100 帤 ; -+,0x08,0x08,0x3f,0x09,0x11,0x09,0x06,0x09,0x10,0x2f,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xbe,0x22,0x22,0x22,0x3e,0x22,0x80,0xfc,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24101 帥 ; -+,0x08,0x10,0x3e,0x22,0x22,0x3e,0x22,0x20,0x3e,0x22,0x22,0x22,0x22,0x3e,0x20,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x96,0x10,0x10,0x10 -+// 24102 带 ; -+,0x04,0x04,0x3f,0x04,0x04,0x3f,0x20,0x40,0x0f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x88,0x88,0xff,0x88,0x88,0xff,0x82,0x84,0xf8,0x88,0x88,0x88,0xa8,0x90,0x80,0x80 -+// 24103 帧 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x09,0x10,0x10,0x1f,0x10,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x28,0x44,0x86,0x04 -+// 24104 帨 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x09,0x84,0x46,0x28,0xfe,0x82,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 24105 帩 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x10,0x12,0x93,0x54,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 24106 帪 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x11,0x12,0x12,0x14,0x00,0xff,0x00,0x7e,0x00,0x00,0xff,0x28,0x29,0x2a,0x2c,0x24,0x24,0x33,0x62,0x20 -+// 24107 師 ; -+,0x08,0x11,0x3e,0x22,0x22,0x3e,0x22,0x20,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0xff,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10,0x10 -+// 24108 帬 ; -+,0x1f,0x02,0x7f,0x02,0x1f,0x04,0x0f,0x14,0x27,0x40,0x0f,0x08,0x08,0x08,0x08,0x00,0xfc,0x04,0xff,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x40,0xfe,0x42,0x42,0x4e,0x44,0x40 -+// 24109 席 ; -+,0x00,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x10,0x17,0x14,0x14,0x14,0x24,0x20,0x40,0x80,0x40,0xff,0x10,0x10,0xfe,0x10,0xf0,0x40,0xfc,0x44,0x44,0x54,0x48,0x40,0x40 -+// 24110 帮 ; -+,0x02,0x1f,0x02,0x1f,0x02,0x3f,0x02,0x04,0x08,0x17,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0xdf,0x12,0xd4,0x14,0xd2,0x19,0x56,0x50,0xfc,0x44,0x44,0x54,0x48,0x40,0x40 -+// 24111 帯 ; -+,0x04,0x04,0x7f,0x04,0x04,0x00,0x3f,0x20,0x40,0x0f,0x08,0x08,0x08,0x08,0x08,0x00,0x90,0x90,0xff,0x90,0x90,0x00,0xff,0x82,0x80,0xf8,0x88,0x88,0x88,0xa8,0x90,0x80 -+// 24112 帰 ; -+,0x09,0x08,0x08,0x08,0x49,0x48,0x4b,0x4a,0x4d,0x49,0x09,0x09,0x11,0x11,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x22,0xfc,0x24,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 24113 帱 ; -+,0x10,0x10,0x13,0x7c,0x55,0x54,0x57,0x54,0x54,0x54,0x5c,0x11,0x11,0x12,0x14,0x10,0x20,0x20,0xff,0x20,0xfe,0x20,0xff,0x44,0x44,0xbf,0x84,0x24,0x24,0x04,0x14,0x08 -+// 24114 帲 ; -+,0x10,0x10,0x10,0x7d,0x54,0x54,0x54,0x54,0x55,0x54,0x5c,0x10,0x10,0x10,0x11,0x12,0x22,0x22,0x44,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 24115 帳 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x08,0x08,0x09,0x08,0x00,0xfe,0x80,0xfc,0x80,0xfc,0x80,0x80,0xfe,0x90,0x92,0x94,0x88,0xa7,0xc2,0x80 -+// 24116 帴 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2b,0x2e,0x08,0x08,0x09,0x08,0x50,0x48,0x4e,0xf0,0x4d,0x31,0xce,0x28,0x24,0x3e,0xe4,0x28,0x31,0x49,0x86,0x00 -+// 24117 帵 ; -+,0x10,0x10,0x11,0x7d,0x56,0x54,0x54,0x55,0x55,0x56,0x5c,0x10,0x10,0x11,0x12,0x14,0x20,0x10,0xff,0x02,0x84,0xef,0xa9,0x29,0x29,0xab,0x48,0x48,0x89,0x09,0x0f,0x00 -+// 24118 帶 ; -+,0x05,0x05,0x3f,0x05,0x05,0x09,0x10,0x3f,0x20,0x4f,0x08,0x08,0x08,0x08,0x08,0x00,0x28,0x28,0xff,0x28,0x28,0xe7,0x00,0xff,0x82,0xfc,0x88,0x88,0x88,0xb8,0x90,0x80 -+// 24119 帷 ; -+,0x10,0x10,0x10,0x7c,0x55,0x56,0x54,0x54,0x54,0x54,0x5c,0x10,0x10,0x10,0x10,0x00,0x40,0x50,0x88,0xff,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80,0x00 -+// 24120 常 ; -+,0x08,0x06,0x04,0x3f,0x20,0x47,0x04,0x07,0x00,0x1f,0x10,0x10,0x10,0x10,0x00,0x00,0x88,0x8c,0x90,0xff,0x02,0xf4,0x10,0xf0,0x80,0xfc,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24121 帹 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2b,0x2a,0x2a,0x2b,0x2a,0x2e,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xfe,0x84,0x48,0xff,0x00,0x20,0xff,0x44,0x84,0xe8,0x10,0x28,0x46,0x84 -+// 24122 帺 ; -+,0x10,0x10,0x10,0x7d,0x54,0x54,0x54,0x54,0x54,0x54,0x55,0x5c,0x10,0x10,0x11,0x12,0x44,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x48,0x64,0x82,0x03,0x02 -+// 24123 帻 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x92,0x92,0x92,0xaa,0x24,0x46,0x84 -+// 24124 帼 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x01,0xff,0x11,0x11,0x7d,0x11,0x11,0x19,0x15,0xff,0x01,0x01,0xff,0x01 -+// 24125 帽 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x54,0x54,0x54,0x54,0x5c,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x7a,0x02,0x7a,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 24126 帾 ; -+,0x10,0x10,0x10,0x7c,0x54,0x55,0x54,0x54,0x54,0x54,0x55,0x5e,0x10,0x10,0x10,0x10,0x20,0x20,0xfa,0x22,0x24,0xff,0x10,0x20,0x7c,0xc4,0x44,0x7c,0x44,0x44,0x7c,0x44 -+// 24127 帿 ; -+,0x10,0x10,0x10,0x7c,0x55,0x56,0x54,0x54,0x54,0x54,0x54,0x5c,0x10,0x10,0x10,0x10,0x80,0xde,0x82,0x82,0x9f,0xa0,0xbf,0xc8,0x88,0xff,0x88,0x88,0x94,0x92,0xa3,0xc2 -+// 24128 幀 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x09,0x20,0x3e,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0x48,0x64,0x86,0x04 -+// 24129 幁 ; -+,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x09,0xff,0x10,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0xfe,0x00,0x44,0x62,0x83,0x02 -+// 24130 幂 ; -+,0x1f,0x10,0x27,0x04,0x07,0x04,0x07,0x02,0x3f,0x04,0x1f,0x64,0x04,0x04,0x04,0x00,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x84,0xfb,0x8a,0x88,0xb8,0x90,0x80 -+// 24131 幃 ; -+,0x10,0x10,0x11,0x7c,0x57,0x54,0x54,0x54,0x54,0x54,0x55,0x5c,0x13,0x10,0x10,0x10,0x20,0x20,0xfc,0x48,0xff,0x00,0xfc,0x84,0xfc,0x10,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 24132 幄 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x12,0x12,0x14,0x00,0xfe,0x02,0x02,0xfe,0x00,0x7e,0x24,0x7e,0x22,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 24133 幅 ; -+,0x10,0x11,0x10,0x7c,0x54,0x54,0x54,0x54,0x55,0x55,0x55,0x5d,0x11,0x11,0x11,0x10,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00,0xff,0x11,0xff,0x11,0x11,0xff,0x01,0x00 -+// 24134 幆 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xff,0x91,0x91,0xa9,0xc5,0xfd,0x81,0x0a,0x04 -+// 24135 幇 ; -+,0x04,0x3f,0x04,0x7f,0x04,0x3f,0x04,0x07,0x78,0x00,0x0f,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x7f,0x84,0x24,0x24,0x04,0x14,0x88,0x80,0xf8,0x88,0x88,0xa8,0x90,0x80 -+// 24136 幈 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x11,0x12,0x12,0x14,0x00,0xff,0x01,0xff,0x42,0x24,0x7e,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x84 -+// 24137 幉 ; -+,0x10,0x10,0x10,0x7f,0x54,0x54,0x54,0x54,0x54,0x57,0x54,0x5c,0x10,0x11,0x12,0x10,0x00,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xff,0x10,0xff,0x30,0x5a,0x94,0x13,0x12,0x10 -+// 24138 幊 ; -+,0x10,0x10,0x10,0x7c,0x55,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x10,0x10,0x10,0x11,0x00,0xfe,0x10,0x10,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86,0x04 -+// 24139 幋 ; -+,0x04,0x1f,0x19,0x15,0x7f,0x11,0x15,0x23,0x40,0x0f,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x7c,0x44,0x43,0xbe,0x24,0x10,0x6c,0x83,0xfc,0x84,0x84,0x94,0x88,0x80,0x80 -+// 24140 幌 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x54,0x55,0x54,0x57,0x5c,0x10,0x10,0x11,0x12,0x14,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x24,0x26,0xa8,0xff,0x88,0x88,0x89,0x09,0x07,0x00 -+// 24141 幍 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x08,0x0f,0xf0,0x02,0x23,0x92,0x44,0x30,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x82,0x00 -+// 24142 幎 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x2e,0x08,0x08,0x08,0x09,0x00,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0xa4,0x10,0xff,0x48,0x64,0x46,0x83,0x02 -+// 24143 幏 ; -+,0x10,0x10,0x11,0x7d,0x56,0x55,0x54,0x54,0x57,0x54,0x5c,0x13,0x10,0x11,0x16,0x10,0x20,0x10,0xff,0x02,0x00,0xfe,0x40,0xa4,0x38,0x60,0xb0,0x58,0x96,0x14,0x50,0x20 -+// 24144 幐 ; -+,0x01,0x3c,0x24,0x25,0x3c,0x27,0x24,0x24,0x3d,0x26,0x24,0x24,0x24,0x44,0x54,0x08,0x24,0xa6,0xa8,0xfe,0x20,0xff,0x48,0xa4,0x23,0xfc,0xa4,0xa4,0xa4,0xac,0x20,0x20 -+// 24145 幑 ; -+,0x10,0x1a,0x22,0x4b,0x0c,0x08,0x17,0x39,0x57,0x15,0x15,0x15,0x15,0x15,0x11,0x11,0x8c,0xa8,0xa8,0xff,0x12,0xf2,0x12,0x0a,0xea,0x2a,0x24,0x24,0xaa,0x4a,0x11,0x21 -+// 24146 幒 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x54,0x54,0x5c,0x12,0x12,0x14,0x10,0x20,0x40,0xfe,0x22,0x3a,0x4a,0x32,0x6a,0xfe,0x00,0x24,0x93,0x92,0x84,0x7c,0x00 -+// 24147 幓 ; -+,0x10,0x10,0x10,0x7c,0x55,0x56,0x57,0x54,0x54,0x57,0x54,0x5d,0x10,0x13,0x10,0x13,0x20,0x48,0xfc,0x88,0x14,0xbe,0xe2,0x20,0xd8,0x27,0xd8,0x24,0xce,0x18,0x60,0x80 -+// 24148 幔 ; -+,0x10,0x10,0x10,0x7c,0x54,0x54,0x55,0x55,0x55,0x54,0x55,0x5c,0x10,0x10,0x10,0x13,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 24149 幕 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x7f,0x04,0x0f,0x14,0x64,0x04,0x00,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x88,0xf4,0x93,0x92,0xb0,0x80 -+// 24150 幖 ; -+,0x10,0x13,0x10,0x7d,0x55,0x55,0x54,0x54,0x54,0x55,0x54,0x5c,0x10,0x11,0x12,0x10,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x10,0x94,0x92,0x13,0x52,0x20 -+// 24151 幗 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x11,0x11,0x11,0x00,0xff,0x09,0x09,0xff,0x09,0xe9,0x2b,0xed,0x19,0x29,0xeb,0x05,0x01,0xff,0x01 -+// 24152 幘 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x08,0x09,0x10,0xfe,0x10,0xfc,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 24153 幙 ; -+,0x10,0x10,0x7f,0x54,0x55,0x55,0x55,0x55,0x55,0x54,0x57,0x5c,0x10,0x10,0x11,0x12,0x88,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 24154 幚 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x09,0x1f,0x69,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x00,0x3c,0xa2,0x24,0x28,0x24,0x26,0xf8,0x08,0x88,0xf8,0x80,0xfc,0x84,0x94,0x88,0x80 -+// 24155 幛 ; -+,0x10,0x11,0x10,0x7c,0x57,0x54,0x55,0x55,0x55,0x55,0x5d,0x10,0x13,0x10,0x10,0x10,0x20,0xfe,0x84,0x48,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xfe,0x20,0x20,0x20 -+// 24156 幜 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x08,0x08,0x09,0x0a,0x08,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x10,0x94,0x12,0x52,0x20 -+// 24157 幝 ; -+,0x08,0x09,0x09,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x09,0x08,0x08,0x08,0x08,0x00,0xef,0x29,0xef,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 24158 幞 ; -+,0x10,0x11,0x10,0x7c,0x57,0x54,0x55,0x54,0x54,0x54,0x5d,0x10,0x10,0x10,0x11,0x12,0x48,0x4a,0xcc,0x48,0xff,0x48,0xfe,0x20,0xfc,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 24159 幟 ; -+,0x11,0x10,0x13,0x7e,0x55,0x55,0x57,0x54,0x55,0x55,0x55,0x5d,0x11,0x11,0x11,0x10,0x08,0x88,0xea,0x49,0x69,0x48,0xff,0x08,0xea,0x2b,0xe4,0x24,0x2c,0xf5,0x25,0x02 -+// 24160 幠 ; -+,0x11,0x11,0x11,0x7f,0x55,0x55,0x57,0x55,0x55,0x55,0x5f,0x10,0x12,0x12,0x14,0x10,0x00,0x00,0xfe,0x54,0x54,0x54,0xfe,0x54,0x54,0x54,0xff,0x00,0xa4,0x93,0x92,0x00 -+// 24161 幡 ; -+,0x10,0x11,0x11,0x7c,0x57,0x54,0x54,0x55,0x57,0x55,0x55,0x5d,0x11,0x11,0x11,0x11,0x0e,0xf0,0x24,0xa8,0xff,0x70,0xa8,0x27,0xfe,0x24,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 24162 幢 ; -+,0x10,0x10,0x11,0x7c,0x54,0x57,0x54,0x54,0x54,0x54,0x54,0x5c,0x10,0x10,0x10,0x11,0x20,0x10,0xfe,0x84,0x48,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff -+// 24163 幣 ; -+,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x25,0x00,0x0f,0x08,0x08,0x08,0x08,0x00,0x00,0x90,0x10,0xbf,0xa4,0xd4,0x88,0x94,0xa3,0x82,0xf8,0x88,0x88,0xa8,0x90,0x80,0x80 -+// 24164 幤 ; -+,0x24,0x15,0x3f,0x20,0x2e,0x2a,0x2e,0x21,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0xa0,0x20,0xbf,0xa4,0xd4,0x88,0x97,0xa2,0x80,0xfc,0x84,0x84,0x84,0x94,0x88,0x80 -+// 24165 幥 ; -+,0x10,0x11,0x10,0x7d,0x56,0x54,0x54,0x54,0x54,0x55,0x54,0x5d,0x10,0x13,0x10,0x10,0x24,0x26,0xa8,0xff,0x02,0xfc,0x84,0xfc,0x00,0xfe,0x10,0xfe,0x10,0xff,0x10,0x30 -+// 24166 幦 ; -+,0x00,0x3f,0x21,0x3f,0x20,0x3f,0x31,0x5f,0x40,0x0f,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0xff,0x42,0x24,0xff,0x08,0x7f,0x08,0x88,0xfc,0x84,0x84,0x84,0x9c,0x88,0x80 -+// 24167 幧 ; -+,0x10,0x10,0x10,0x7c,0x54,0x55,0x55,0x55,0x54,0x55,0x54,0x5c,0x10,0x10,0x11,0x10,0x00,0xfc,0x84,0xfc,0x00,0xce,0x4a,0xce,0x10,0xff,0x30,0x58,0x54,0x93,0x12,0x10 -+// 24168 幨 ; -+,0x10,0x10,0x10,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x12,0x12,0x14,0x40,0x7c,0x88,0xff,0x28,0x54,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x00 -+// 24169 幩 ; -+,0x10,0x10,0x11,0x7c,0x57,0x54,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x10,0x11,0x16,0x20,0x20,0xfe,0xa8,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xc6,0x02 -+// 24170 幪 ; -+,0x10,0x11,0x10,0x7d,0x55,0x56,0x54,0x55,0x54,0x55,0x5e,0x11,0x16,0x11,0x16,0x10,0x48,0xfe,0x48,0xff,0x02,0xfc,0x00,0xff,0x62,0xb4,0x58,0xb8,0x54,0x93,0x52,0x20 -+// 24171 幫 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x3f,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x04,0x04,0x3f,0x84,0x14,0x84,0x14,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x84,0x94,0x88 -+// 24172 幬 ; -+,0x10,0x11,0x10,0x7c,0x54,0x57,0x54,0x55,0x54,0x55,0x54,0x57,0x5d,0x11,0x10,0x10,0x20,0xfe,0x20,0xfc,0x00,0xff,0x22,0xfc,0x00,0xff,0x04,0xff,0x44,0xd4,0x04,0x0c -+// 24173 幭 ; -+,0x10,0x10,0x13,0x7c,0x55,0x55,0x55,0x54,0x54,0x55,0x55,0x5d,0x11,0x12,0x12,0x14,0x48,0x48,0xff,0x48,0xfe,0x52,0xfe,0x14,0x12,0xff,0x10,0x54,0x58,0x11,0x29,0x46 -+// 24174 幮 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x12,0x12,0x13,0x14,0x20,0x10,0xff,0x22,0xfa,0x22,0xfa,0x07,0xf2,0x92,0xfa,0x16,0xa2,0x72,0xca,0x04 -+// 24175 幯 ; -+,0x11,0x11,0x11,0x7d,0x56,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x11,0x11,0x10,0x08,0x08,0xef,0x54,0x12,0xef,0x29,0xe9,0x29,0xe9,0x09,0x4b,0x68,0xa8,0x08,0x08 -+// 24176 幰 ; -+,0x10,0x11,0x11,0x7e,0x54,0x54,0x54,0x55,0x54,0x55,0x5d,0x11,0x10,0x11,0x11,0x12,0x20,0xff,0x12,0xfc,0x10,0xfc,0x10,0xff,0x00,0xfe,0x4a,0xfe,0x22,0x51,0x45,0x3c -+// 24177 幱 ; -+,0x11,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5d,0x11,0x11,0x11,0x11,0xef,0x29,0xef,0x29,0xef,0x11,0xff,0x11,0x7d,0x5d,0x75,0x7d,0x39,0x55,0x95,0x12 -+// 24178 干 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 24179 平 ; -+,0x3f,0x00,0x10,0x08,0x04,0x06,0x04,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x80,0x88,0x8c,0x88,0x90,0xa0,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 24180 年 ; -+,0x04,0x07,0x08,0x08,0x10,0x27,0x44,0x04,0x04,0x04,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x40,0x40,0x40,0xfc,0x40,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0x40,0x40 -+// 24181 幵 ; -+,0x00,0x3f,0x04,0x04,0x04,0x04,0x04,0x0f,0x74,0x04,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x7e,0x08,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 24182 并 ; -+,0x08,0x04,0x03,0x02,0x3f,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x08,0x0c,0x08,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24183 幷 ; -+,0x02,0x03,0x04,0x3f,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x08,0x0c,0x10,0x7f,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 24184 幸 ; -+,0x00,0x00,0x1f,0x00,0x7f,0x08,0x04,0x02,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x80,0x80,0xfc,0x80,0xff,0x10,0x18,0x20,0xfc,0x80,0x80,0xfe,0x80,0x80,0x80,0x80 -+// 24185 幹 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x21,0x3f,0x21,0x3f,0x25,0x04,0x7f,0x04,0x04,0x04,0x04,0x10,0x10,0xa8,0x24,0x42,0xfd,0x10,0x10,0x10,0xfe,0x10,0x90,0x10,0x10,0x10,0x10 -+// 24186 幺 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x3f,0x10,0x00,0x01,0x02,0x04,0x1f,0x08,0x00,0x80,0xc0,0x80,0x00,0x08,0x0c,0x10,0xe0,0x40,0x80,0x08,0x04,0x7e,0x86,0x04,0x00 -+// 24187 幻 ; -+,0x04,0x06,0x0c,0x08,0x11,0x21,0x7f,0x02,0x04,0x05,0x08,0x3f,0x10,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x82,0x02,0x02,0x02,0x02,0x82,0xc2,0x82,0x14,0x08,0x00 -+// 24188 幼 ; -+,0x08,0x0c,0x08,0x10,0x12,0x23,0x7e,0x24,0x08,0x08,0x12,0x7f,0x22,0x00,0x01,0x02,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 24189 幽 ; -+,0x00,0x00,0x00,0x24,0x26,0x28,0x32,0x3e,0x24,0x2a,0x3f,0x22,0x20,0x3f,0x20,0x00,0x80,0x80,0x80,0x92,0x9a,0xa2,0xaa,0xfe,0x92,0xaa,0xfe,0x8a,0x82,0xfe,0x02,0x00 -+// 24190 幾 ; -+,0x08,0x0c,0x08,0x14,0x3c,0x0a,0x3f,0x0a,0x7f,0x08,0x0a,0x09,0x09,0x10,0x13,0x20,0x90,0x98,0xa4,0xf8,0x88,0x94,0xbe,0x82,0xff,0x40,0x44,0x28,0x31,0xcd,0x03,0x00 -+// 24191 广 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x80,0x40,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 24192 庀 ; -+,0x00,0x00,0x1f,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x21,0x21,0x40,0x00,0x80,0x40,0xff,0x00,0x00,0x00,0x10,0x38,0xc0,0x00,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 24193 庁 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x80,0x40,0xff,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 24194 庂 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x22,0x24,0x48,0x00,0x80,0x40,0xff,0x00,0x40,0x40,0x40,0x40,0xa0,0xa0,0x10,0x08,0x0c,0x07,0x02,0x00 -+// 24195 広 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x27,0x22,0x40,0x00,0x80,0x40,0xff,0x00,0x40,0x60,0x40,0x80,0x80,0x00,0x08,0x04,0xfe,0x06,0x04,0x00 -+// 24196 庄 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x2f,0x40,0x00,0x80,0x40,0xff,0x00,0x40,0x40,0x40,0xfe,0x40,0x40,0x40,0x40,0x40,0xff,0x00,0x00 -+// 24197 庅 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x18,0x11,0x27,0x22,0x40,0x80,0x40,0xff,0x40,0x60,0x50,0x98,0x90,0x20,0x20,0x40,0x88,0x04,0xfe,0x04,0x00 -+// 24198 庆 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x11,0x11,0x22,0x24,0x48,0x00,0x80,0x40,0xff,0x40,0x40,0x40,0xff,0xa0,0xa0,0x90,0x10,0x08,0x0c,0x07,0x02,0x00 -+// 24199 庇 ; -+,0x00,0x00,0x1f,0x10,0x12,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x22,0x27,0x42,0x00,0x80,0x40,0xff,0x00,0x20,0x20,0x22,0xa7,0x38,0x20,0x20,0x20,0xa1,0x21,0x1f,0x00 -+// 24200 庈 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x11,0x12,0x14,0x18,0x17,0x10,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x40,0x40,0xa0,0x10,0x8c,0x47,0x42,0xfc,0x08,0x10,0x10,0x20,0x20 -+// 24201 庉 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x12,0x12,0x12,0x13,0x10,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x40,0x40,0xff,0x40,0x44,0x44,0x44,0xfc,0x40,0x42,0x42,0x3e,0x00 -+// 24202 床 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x11,0x11,0x12,0x12,0x24,0x28,0x40,0x80,0x40,0xff,0x40,0x40,0x40,0xfe,0xc0,0xe0,0x50,0x48,0x44,0x43,0x42,0x40,0x40 -+// 24203 庋 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x13,0x12,0x11,0x10,0x10,0x10,0x23,0x2c,0x40,0x80,0x40,0xff,0x40,0x40,0xfe,0x40,0xfc,0x08,0x08,0x90,0x60,0x90,0x0e,0x04,0x00 -+// 24204 庌 ; -+,0x00,0x00,0x1f,0x10,0x17,0x12,0x12,0x12,0x17,0x10,0x10,0x10,0x11,0x22,0x24,0x40,0x80,0x40,0xff,0x00,0xfe,0x10,0x10,0x10,0xff,0x30,0x50,0x90,0x10,0x10,0x50,0x20 -+// 24205 庍 ; -+,0x00,0x00,0x1f,0x10,0x10,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x24,0x24,0x48,0x10,0x80,0x40,0xff,0x00,0x1c,0xe0,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24206 庎 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x21,0x21,0x42,0x04,0x80,0x40,0xff,0x40,0x40,0xa0,0x18,0x07,0x92,0x90,0x90,0x90,0x10,0x10,0x10,0x10 -+// 24207 序 ; -+,0x00,0x00,0x1f,0x10,0x13,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x00,0xfc,0x88,0x50,0x20,0xff,0x22,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 24208 庐 ; -+,0x00,0x00,0x1f,0x10,0x10,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x24,0x24,0x48,0x10,0x80,0x40,0xff,0x40,0x20,0xfc,0x04,0x04,0xfc,0x04,0x00,0x00,0x00,0x00,0x00,0x00 -+// 24209 庑 ; -+,0x00,0x00,0x1f,0x10,0x17,0x10,0x10,0x10,0x1f,0x10,0x11,0x11,0x22,0x24,0x48,0x10,0x80,0x40,0xfe,0x00,0xfc,0x80,0x80,0x80,0xfe,0xa0,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 24210 庒 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x2f,0x40,0x00,0x80,0x40,0xff,0x00,0x40,0x40,0x40,0xfe,0x40,0x50,0x48,0x4c,0x48,0xff,0x00,0x00 -+// 24211 库 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x11,0x12,0x17,0x12,0x10,0x1f,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x80,0x80,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24212 应 ; -+,0x00,0x00,0x1f,0x10,0x11,0x10,0x18,0x14,0x12,0x12,0x13,0x22,0x20,0x2f,0x40,0x00,0x80,0x40,0xfe,0x00,0x00,0x84,0x46,0x64,0x48,0x48,0x10,0x10,0x20,0xff,0x00,0x00 -+// 24213 底 ; -+,0x00,0x00,0x1f,0x10,0x10,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x22,0x27,0x42,0x00,0x80,0x40,0xff,0x00,0x1c,0xe0,0x20,0x20,0xff,0x20,0x20,0x10,0x89,0x25,0x23,0x00 -+// 24214 庖 ; -+,0x00,0x00,0x1f,0x11,0x11,0x13,0x12,0x17,0x1a,0x12,0x13,0x12,0x22,0x22,0x41,0x00,0x80,0x40,0xff,0x00,0x00,0xfe,0x02,0xf2,0x12,0x12,0xf2,0x0a,0x05,0x01,0xff,0x00 -+// 24215 店 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x13,0x12,0x12,0x22,0x23,0x42,0x00,0x80,0x40,0xff,0x40,0x40,0x40,0x7e,0x40,0x40,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 24216 庘 ; -+,0x00,0x00,0x1f,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x17,0x14,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x00,0xfc,0x44,0x44,0xfc,0x44,0x44,0xfc,0x44,0x40,0x40,0x40,0x40 -+// 24217 庙 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x24,0x27,0x44,0x00,0x80,0x40,0xff,0x40,0x40,0x40,0xfc,0x44,0x44,0xfc,0x44,0x44,0x44,0xfc,0x04,0x00 -+// 24218 庚 ; -+,0x00,0x00,0x1f,0x10,0x17,0x10,0x1f,0x10,0x10,0x17,0x10,0x10,0x21,0x22,0x44,0x08,0x80,0x40,0xff,0x40,0xfc,0x44,0xff,0x44,0x44,0xfc,0x44,0xa0,0x10,0x08,0x06,0x04 -+// 24219 庛 ; -+,0x00,0x00,0x1f,0x11,0x11,0x11,0x15,0x15,0x15,0x15,0x15,0x15,0x25,0x3e,0x48,0x00,0x80,0x40,0xff,0x10,0x10,0x12,0x17,0xd8,0x10,0x10,0x10,0x10,0xd1,0x11,0x0f,0x00 -+// 24220 府 ; -+,0x00,0x00,0x1f,0x12,0x13,0x12,0x12,0x16,0x1a,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x80,0x40,0xff,0x08,0x08,0x08,0xff,0x08,0x88,0x48,0x68,0x48,0x08,0x08,0x28,0x10 -+// 24221 庝 ; -+,0x00,0x00,0x1f,0x11,0x11,0x11,0x12,0x15,0x10,0x10,0x11,0x16,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x00,0x00,0xf8,0x10,0x30,0xe0,0xb0,0x1e,0xc4,0x20,0x80,0x60,0x40 -+// 24222 庞 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x11,0x11,0x12,0x22,0x24,0x48,0x00,0x80,0x40,0xff,0xa0,0x98,0x90,0xfe,0xa0,0xa4,0x26,0x28,0x30,0x61,0xa1,0x1f,0x00 -+// 24223 废 ; -+,0x00,0x00,0x1f,0x10,0x14,0x14,0x17,0x10,0x10,0x11,0x11,0x12,0x24,0x28,0x51,0x06,0x80,0x40,0xff,0x80,0x90,0x88,0xfe,0x80,0xfc,0x08,0x88,0x50,0x20,0x58,0x87,0x02 -+// 24224 庠 ; -+,0x00,0x00,0x1f,0x12,0x11,0x17,0x10,0x10,0x17,0x10,0x10,0x1f,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x08,0x10,0xfe,0x40,0x40,0xfc,0x40,0x40,0xff,0x40,0x40,0x40,0x40 -+// 24225 庡 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x11,0x11,0x13,0x15,0x19,0x11,0x23,0x21,0x40,0x80,0x40,0xfe,0x80,0x40,0xfe,0x80,0x44,0x46,0x28,0x30,0x10,0x4c,0x87,0x02,0x00 -+// 24226 庢 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x11,0x13,0x11,0x10,0x17,0x10,0x20,0x20,0x5f,0x00,0x80,0x40,0xff,0x00,0xfe,0x90,0x08,0xfc,0x48,0x40,0xfc,0x40,0x40,0x42,0xff,0x00 -+// 24227 庣 ; -+,0x00,0x00,0x1f,0x10,0x11,0x11,0x19,0x17,0x15,0x11,0x13,0x15,0x11,0x22,0x24,0x48,0x80,0x40,0xff,0x00,0x20,0x24,0x26,0x28,0x20,0x30,0x28,0x26,0x25,0x21,0x1f,0x00 -+// 24228 庤 ; -+,0x00,0x00,0x1f,0x10,0x10,0x17,0x10,0x1f,0x10,0x10,0x1f,0x12,0x11,0x21,0x20,0x40,0x80,0x40,0xff,0x40,0x40,0xfc,0x40,0xff,0x10,0x10,0xff,0x10,0x90,0x10,0x50,0x20 -+// 24229 庥 ; -+,0x01,0x00,0x1f,0x12,0x13,0x12,0x15,0x1c,0x14,0x14,0x14,0x14,0x14,0x25,0x24,0x44,0x00,0x80,0xff,0x10,0x10,0x10,0xff,0x38,0x38,0x54,0x54,0x92,0x93,0x12,0x10,0x10 -+// 24230 度 ; -+,0x00,0x00,0x1f,0x11,0x11,0x17,0x11,0x11,0x10,0x13,0x11,0x10,0x10,0x20,0x23,0x4c,0x80,0x40,0xff,0x10,0x10,0xfe,0x10,0xf0,0x00,0xfc,0x08,0x90,0x60,0x98,0x07,0x02 -+// 24231 座 ; -+,0x01,0x00,0x1f,0x10,0x13,0x12,0x12,0x15,0x09,0x10,0x27,0x20,0x20,0x40,0x5f,0x00,0x00,0xc0,0xff,0xa0,0x48,0x44,0x48,0x44,0x52,0x60,0xfe,0x40,0x40,0x40,0xff,0x00 -+// 24232 庨 ; -+,0x00,0x00,0x1f,0x10,0x10,0x17,0x10,0x1f,0x10,0x11,0x12,0x17,0x18,0x10,0x20,0x40,0x80,0x40,0xfe,0x88,0x8c,0xf8,0xb0,0xfe,0xc0,0xf8,0x10,0xfe,0x20,0x20,0xa0,0x40 -+// 24233 庩 ; -+,0x00,0x00,0x1f,0x10,0x10,0x11,0x12,0x17,0x18,0x17,0x10,0x12,0x13,0x24,0x29,0x40,0x80,0x40,0xfe,0x40,0xa0,0x18,0x0e,0xf4,0x40,0xfc,0x40,0x50,0x48,0x46,0x44,0x80 -+// 24234 庪 ; -+,0x01,0x00,0x1f,0x12,0x12,0x1f,0x12,0x13,0x12,0x16,0x1a,0x12,0x12,0x22,0x2a,0x44,0x00,0x80,0xfe,0x10,0x10,0x7e,0x10,0x10,0xfe,0x44,0x44,0x28,0x10,0x28,0x47,0x82 -+// 24235 庫 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x1f,0x20,0x20,0x40,0x80,0x40,0xff,0x40,0xfe,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x40,0xff,0x40,0x40,0x40 -+// 24236 庬 ; -+,0x01,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x11,0x12,0x12,0x25,0x24,0x48,0x00,0x00,0x80,0xfe,0x20,0x10,0xfe,0x48,0x70,0x4c,0x70,0x4c,0x70,0xc2,0x43,0x3e,0x00 -+// 24237 庭 ; -+,0x00,0x00,0x1f,0x10,0x17,0x11,0x11,0x12,0x14,0x12,0x12,0x1a,0x26,0x25,0x48,0x10,0x80,0x40,0xff,0x00,0x0e,0x70,0x10,0x7e,0x10,0x10,0x10,0xff,0x00,0x00,0xff,0x00 -+// 24238 庮 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x17,0x14,0x14,0x15,0x16,0x17,0x24,0x27,0x44,0x00,0x80,0x40,0xff,0x00,0xff,0x90,0xfe,0x92,0x92,0x0e,0x02,0xfe,0x02,0xfe,0x02,0x00 -+// 24239 庯 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x14,0x17,0x24,0x24,0x44,0x80,0x40,0xff,0x48,0x44,0xff,0x40,0xfc,0x44,0xfc,0x44,0x44,0xfc,0x44,0x54,0x48 -+// 24240 庰 ; -+,0x00,0x00,0x1f,0x11,0x10,0x17,0x10,0x10,0x10,0x17,0x10,0x10,0x11,0x21,0x22,0x44,0x80,0x40,0xff,0x08,0x90,0xfe,0x90,0x90,0x90,0xfe,0x90,0x90,0x10,0x10,0x10,0x10 -+// 24241 庱 ; -+,0x00,0x00,0x1f,0x10,0x17,0x10,0x1f,0x12,0x15,0x19,0x12,0x14,0x10,0x21,0x26,0x58,0x80,0x40,0xff,0x40,0xfe,0x40,0xff,0x08,0x04,0xfb,0x8a,0x90,0x60,0x90,0x0e,0x04 -+// 24242 庲 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x12,0x12,0x12,0x15,0x18,0x11,0x12,0x24,0x28,0x40,0x80,0x40,0xff,0x40,0x40,0xff,0x48,0x48,0x54,0x52,0xe0,0x50,0x48,0x46,0x44,0x40 -+// 24243 庳 ; -+,0x00,0x00,0x1f,0x11,0x17,0x14,0x17,0x14,0x17,0x10,0x13,0x1f,0x10,0x20,0x20,0x40,0x80,0x40,0xfe,0x00,0xf8,0x48,0xf8,0x48,0xf8,0xc0,0x40,0xfe,0x40,0x40,0x40,0x40 -+// 24244 庴 ; -+,0x00,0x00,0x1f,0x11,0x11,0x17,0x11,0x11,0x1f,0x10,0x13,0x12,0x13,0x22,0x23,0x42,0x80,0x40,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 24245 庵 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x11,0x12,0x17,0x1a,0x13,0x12,0x23,0x20,0x40,0x00,0x80,0x40,0xff,0x80,0xfe,0xa0,0x58,0x47,0xfa,0x48,0xf8,0x48,0xfa,0x43,0x7e,0x00 -+// 24246 庶 ; -+,0x00,0x00,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x11,0x10,0x15,0x24,0x28,0x40,0x80,0x40,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0xf0,0x10,0x00,0x24,0x93,0x92,0x00 -+// 24247 康 ; -+,0x00,0x00,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x14,0x12,0x11,0x12,0x2c,0x25,0x40,0x80,0x40,0xff,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0x64,0x6c,0x50,0x4c,0x47,0x82 -+// 24248 庸 ; -+,0x00,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x10,0x17,0x14,0x17,0x14,0x27,0x24,0x44,0x40,0xff,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x44,0x4c -+// 24249 庹 ; -+,0x00,0x00,0x1f,0x11,0x1f,0x11,0x11,0x10,0x13,0x12,0x13,0x12,0x12,0x24,0x24,0x48,0x80,0x40,0xff,0x10,0xff,0x10,0xf0,0x00,0xfc,0x04,0xfc,0x20,0x10,0x0c,0x07,0x02 -+// 24250 庺 ; -+,0x00,0x00,0x1f,0x11,0x11,0x12,0x15,0x13,0x11,0x10,0x1f,0x10,0x11,0x22,0x24,0x40,0x80,0x40,0xff,0x10,0x08,0x94,0x0b,0xfc,0x28,0x20,0xff,0xb0,0x28,0x27,0x22,0x20 -+// 24251 庻 ; -+,0x00,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x12,0x12,0x12,0x15,0x25,0x29,0x50,0x40,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0xf0,0x08,0x08,0x08,0x14,0x92,0x23,0x42 -+// 24252 庼 ; -+,0x00,0x00,0x1f,0x10,0x14,0x14,0x14,0x17,0x14,0x14,0x14,0x15,0x16,0x24,0x20,0x40,0x80,0x40,0xff,0x00,0xfe,0x10,0x7e,0x42,0x42,0x52,0x52,0x52,0x10,0x28,0x44,0x82 -+// 24253 庽 ; -+,0x00,0x00,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x17,0x14,0x14,0x25,0x24,0x44,0x80,0x40,0xff,0x00,0xf8,0x48,0xf8,0x48,0xf8,0x40,0xfe,0x52,0x7a,0xd2,0x0a,0x04 -+// 24254 庾 ; -+,0x00,0x00,0x1f,0x10,0x10,0x17,0x14,0x17,0x14,0x14,0x17,0x14,0x10,0x21,0x22,0x44,0x80,0x40,0xff,0x00,0x40,0x5c,0x44,0x5c,0x44,0x44,0xfc,0xa4,0x90,0x08,0x06,0x04 -+// 24255 庿 ; -+,0x00,0x00,0x1f,0x11,0x11,0x1f,0x11,0x17,0x14,0x14,0x17,0x14,0x14,0x27,0x24,0x40,0x80,0x40,0xff,0x10,0x10,0xfe,0x10,0xfc,0x44,0x44,0xfc,0x44,0x44,0xfc,0x04,0x00 -+// 24256 廀 ; -+,0x00,0x00,0x1f,0x10,0x17,0x14,0x11,0x12,0x11,0x12,0x13,0x11,0x11,0x20,0x23,0x4c,0x80,0x40,0xff,0x40,0xfe,0x42,0x48,0xb0,0x18,0x06,0xf8,0x10,0x10,0xe0,0x18,0x07 -+// 24257 廁 ; -+,0x00,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x14,0x17,0x10,0x24,0x28,0x50,0x80,0x40,0xff,0x02,0xc2,0x52,0xd2,0x52,0xd2,0x52,0x52,0xd2,0x02,0x82,0x4a,0x44 -+// 24258 廂 ; -+,0x00,0x00,0x1f,0x12,0x12,0x1f,0x12,0x17,0x16,0x1a,0x12,0x12,0x12,0x22,0x22,0x42,0x80,0x40,0xff,0x00,0x3e,0xa2,0x22,0x3e,0xa2,0xa2,0x3e,0x22,0x22,0x3e,0x22,0x00 -+// 24259 廃 ; -+,0x00,0x00,0x1f,0x10,0x17,0x18,0x15,0x12,0x15,0x18,0x17,0x10,0x20,0x21,0x41,0x02,0x80,0x40,0xff,0x24,0xa9,0x92,0x0c,0x04,0xfb,0x90,0xfe,0x90,0x91,0x11,0x0f,0x00 -+// 24260 廄 ; -+,0x00,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x14,0x15,0x24,0x25,0x2e,0x44,0x80,0x40,0xfe,0x00,0xbc,0xa4,0xa4,0xa4,0xc3,0x3c,0x24,0x24,0xa4,0x98,0xa4,0x43 -+// 24261 廅 ; -+,0x00,0x00,0x1f,0x10,0x17,0x10,0x1f,0x10,0x11,0x13,0x10,0x17,0x24,0x24,0x5f,0x00,0x80,0x40,0xff,0x40,0xfc,0x40,0xff,0x90,0x08,0xfc,0x08,0xfc,0xa4,0xa4,0xff,0x00 -+// 24262 廆 ; -+,0x00,0x00,0x1f,0x10,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x10,0x11,0x22,0x24,0x48,0x80,0x40,0xff,0x40,0x80,0xfc,0x44,0xfc,0x44,0xfc,0xa8,0xaa,0x3e,0x23,0x3f,0x00 -+// 24263 廇 ; -+,0x00,0x00,0x1f,0x10,0x11,0x16,0x14,0x15,0x16,0x10,0x17,0x14,0x17,0x24,0x27,0x44,0x80,0x40,0xff,0x00,0xbe,0x12,0x92,0xd2,0xaa,0x44,0xfc,0x44,0xfc,0x44,0xfc,0x04 -+// 24264 廈 ; -+,0x01,0x00,0x1f,0x10,0x1f,0x10,0x17,0x15,0x14,0x17,0x12,0x13,0x13,0x25,0x28,0x47,0x00,0x80,0xfe,0x00,0xfc,0x80,0xf8,0x48,0xa8,0xf8,0x00,0xf8,0x10,0x10,0xe0,0x1e -+// 24265 廉 ; -+,0x00,0x1f,0x12,0x11,0x1f,0x11,0x17,0x11,0x1f,0x11,0x17,0x13,0x13,0x25,0x29,0x41,0x40,0xff,0x10,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x30,0x28,0x27,0x22,0x20 -+// 24266 廊 ; -+,0x00,0x00,0x1f,0x12,0x11,0x17,0x14,0x17,0x14,0x17,0x14,0x15,0x15,0x2e,0x24,0x40,0x80,0x40,0xff,0x00,0x3e,0xa2,0xa4,0xa4,0xa8,0xa4,0x22,0x22,0xae,0xa4,0xa0,0x20 -+// 24267 廋 ; -+,0x00,0x00,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x13,0x11,0x10,0x20,0x21,0x4e,0x80,0x40,0xff,0x40,0x5c,0x44,0x5c,0x44,0xfc,0x40,0xfc,0x08,0x88,0x70,0x8c,0x03 -+// 24268 廌 ; -+,0x00,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x17,0x14,0x17,0x10,0x12,0x22,0x24,0x40,0x80,0x40,0xff,0x20,0xfe,0x22,0xfe,0x00,0xfe,0x00,0xfe,0x12,0xaa,0xa2,0xaa,0x04 -+// 24269 廍 ; -+,0x00,0x00,0x1f,0x12,0x11,0x1f,0x14,0x12,0x1f,0x10,0x17,0x14,0x14,0x27,0x24,0x40,0x80,0x40,0xff,0x00,0x1e,0xf2,0x52,0x94,0xf4,0x12,0xd1,0x55,0x52,0xd0,0x50,0x10 -+// 24270 廎 ; -+,0x00,0x00,0x1f,0x10,0x14,0x14,0x14,0x17,0x14,0x14,0x14,0x15,0x16,0x24,0x20,0x40,0x80,0x40,0xff,0x00,0xfe,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x43,0x82 -+// 24271 廏 ; -+,0x00,0x00,0x1f,0x12,0x17,0x14,0x17,0x14,0x17,0x10,0x14,0x17,0x14,0x25,0x26,0x44,0x80,0x40,0xff,0x00,0xbc,0xa4,0xa4,0xc7,0x80,0x7e,0x24,0xa4,0x18,0x24,0x43,0x82 -+// 24272 廐 ; -+,0x00,0x00,0x1f,0x12,0x17,0x14,0x17,0x14,0x17,0x10,0x14,0x17,0x14,0x24,0x23,0x40,0x80,0x40,0xff,0x00,0xbf,0x88,0xa8,0xa8,0xff,0x14,0x14,0x94,0x15,0xa5,0xa3,0x40 -+// 24273 廑 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x11,0x10,0x17,0x14,0x17,0x10,0x17,0x10,0x23,0x20,0x4f,0x40,0xff,0x10,0xfe,0x10,0xf0,0x40,0xfc,0x44,0xfc,0x40,0xfe,0x40,0xfc,0x40,0xff -+// 24274 廒 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x12,0x1f,0x12,0x1f,0x12,0x13,0x14,0x14,0x28,0x32,0x41,0x40,0xff,0x10,0x18,0xd0,0x1f,0xa2,0x12,0xd2,0x12,0x94,0x88,0x88,0x94,0xa3,0x42 -+// 24275 廓 ; -+,0x00,0x00,0x1f,0x11,0x17,0x10,0x17,0x14,0x17,0x10,0x17,0x12,0x11,0x2f,0x25,0x42,0x80,0x40,0xff,0x00,0xdf,0x12,0xd4,0x54,0xd2,0x11,0xd1,0x95,0xd2,0x10,0x10,0x10 -+// 24276 廔 ; -+,0x00,0x1f,0x10,0x17,0x14,0x1f,0x14,0x17,0x14,0x17,0x11,0x17,0x13,0x20,0x23,0x4c,0x80,0xff,0x40,0xfc,0x44,0xff,0x44,0xfc,0x44,0xfc,0x00,0xff,0x08,0xf0,0x0c,0x03 -+// 24277 廕 ; -+,0x00,0x3f,0x20,0x2f,0x29,0x2a,0x2d,0x2a,0x29,0x29,0x2d,0x2a,0x28,0x28,0x28,0x48,0x80,0xff,0x10,0x10,0x28,0x44,0xbb,0x08,0x10,0x7e,0x00,0xff,0x20,0x44,0xfe,0x02 -+// 24278 廖 ; -+,0x00,0x1f,0x10,0x1f,0x14,0x12,0x14,0x19,0x10,0x13,0x1c,0x17,0x10,0x27,0x20,0x4f,0x80,0xff,0x00,0xbc,0x94,0x8c,0x94,0x4c,0xb0,0x2c,0xc3,0x30,0xc6,0x18,0xe0,0x00 -+// 24279 廗 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x12,0x14,0x18,0x17,0x14,0x1b,0x12,0x12,0x22,0x22,0x40,0x40,0xff,0xa8,0xa8,0xfe,0xa8,0xee,0x00,0xff,0x42,0xf8,0x48,0x48,0x68,0x50,0x40 -+// 24280 廘 ; -+,0x00,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x15,0x15,0x15,0x25,0x29,0x49,0x10,0x80,0x40,0xff,0x40,0xff,0x90,0xfe,0x92,0xfe,0x10,0x12,0xdc,0x11,0x51,0x8f,0x00 -+// 24281 廙 ; -+,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x11,0x17,0x11,0x1f,0x11,0x21,0x22,0x44,0x40,0xfe,0x00,0xfc,0x44,0xfc,0x44,0xfc,0x10,0xfe,0x10,0xff,0x10,0x88,0x06,0x04 -+// 24282 廚 ; -+,0x00,0x00,0x1f,0x11,0x1f,0x11,0x17,0x10,0x17,0x14,0x17,0x14,0x12,0x21,0x2e,0x44,0x80,0x40,0xff,0x04,0xe4,0x04,0xdf,0x04,0xc4,0x54,0xd4,0x54,0x84,0xc4,0x14,0x08 -+// 24283 廛 ; -+,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x17,0x10,0x1f,0x14,0x29,0x20,0x5f,0x40,0xff,0x00,0xfc,0x44,0xfc,0x44,0xfc,0x40,0xfc,0x40,0xff,0x44,0xf2,0x40,0xff -+// 24284 廜 ; -+,0x00,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x12,0x13,0x12,0x14,0x25,0x2a,0x48,0x10,0x40,0xff,0x00,0xfe,0x02,0xfe,0x24,0xfe,0x28,0xfe,0x60,0xfe,0x82,0xfe,0x82,0xfe -+// 24285 廝 ; -+,0x00,0x00,0x1f,0x14,0x1f,0x14,0x17,0x14,0x17,0x14,0x1f,0x15,0x16,0x24,0x28,0x50,0x80,0x40,0xff,0x80,0xc3,0x9c,0x90,0x90,0x9f,0x92,0xd2,0x12,0x92,0xd2,0x92,0x22 -+// 24286 廞 ; -+,0x00,0x3f,0x22,0x22,0x25,0x28,0x3f,0x22,0x22,0x2f,0x32,0x2b,0x2b,0x3c,0x20,0x41,0x80,0xff,0x10,0x18,0x10,0xbf,0x22,0x54,0x10,0x10,0x90,0x28,0xa4,0x46,0x83,0x02 -+// 24287 廟 ; -+,0x00,0x00,0x1f,0x11,0x17,0x11,0x17,0x14,0x17,0x14,0x17,0x11,0x17,0x21,0x21,0x41,0x80,0x40,0xff,0x00,0xde,0x12,0xd2,0x5e,0xd2,0x52,0xde,0x12,0xd2,0x22,0x2a,0x44 -+// 24288 廠 ; -+,0x00,0x00,0x3f,0x22,0x32,0x2a,0x22,0x2f,0x2a,0x2a,0x2f,0x2a,0x2a,0x2a,0x28,0x40,0x80,0x40,0xff,0x08,0x4c,0x88,0x1f,0xd2,0x52,0x6a,0x4a,0xc4,0x44,0x4a,0xd3,0x22 -+// 24289 廡 ; -+,0x00,0x00,0x1f,0x12,0x13,0x16,0x1a,0x1f,0x12,0x12,0x1f,0x10,0x15,0x24,0x28,0x00,0x80,0x40,0xff,0x00,0xfe,0xa4,0xa4,0xff,0xa4,0xa4,0xff,0x00,0x24,0x93,0x92,0x00 -+// 24290 廢 ; -+,0x00,0x00,0x3f,0x2e,0x32,0x2c,0x2f,0x31,0x21,0x2f,0x28,0x2f,0x21,0x21,0x25,0x42,0x80,0x40,0xff,0x28,0x12,0x0c,0x7f,0x4a,0x48,0x86,0x00,0x7e,0x24,0x18,0x24,0x42 -+// 24291 廣 ; -+,0x00,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x22,0x24,0x48,0x80,0x40,0xff,0x10,0xfe,0x10,0xff,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x10,0x0c,0x04 -+// 24292 廤 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x17,0x14,0x24,0x27,0x40,0x40,0xff,0x40,0xfe,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x40,0x92,0x9c,0x91,0x8f,0x00 -+// 24293 廥 ; -+,0x00,0x1f,0x10,0x11,0x17,0x18,0x17,0x16,0x15,0x17,0x10,0x13,0x12,0x23,0x22,0x43,0x40,0xff,0x40,0xb8,0xf7,0x00,0xfc,0x4c,0x54,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 24294 廦 ; -+,0x00,0x00,0x1f,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x17,0x16,0x16,0x2a,0x2b,0x50,0x80,0x40,0xff,0x10,0x88,0xff,0xa2,0x94,0x08,0x3f,0xc8,0x7f,0x48,0x48,0xc8,0x08 -+// 24295 廧 ; -+,0x00,0x1f,0x10,0x17,0x12,0x12,0x15,0x1f,0x10,0x17,0x14,0x15,0x15,0x25,0x24,0x47,0x40,0xff,0x40,0xfe,0x48,0x48,0x54,0xff,0x00,0xfc,0x04,0xf4,0x14,0xf4,0x04,0xfc -+// 24296 廨 ; -+,0x00,0x00,0x1f,0x14,0x17,0x14,0x1f,0x15,0x17,0x15,0x15,0x17,0x15,0x29,0x29,0x50,0x80,0x40,0xff,0x00,0xbe,0x8a,0xca,0x56,0xe0,0x54,0x5f,0xe4,0x5f,0x44,0x44,0xc4 -+// 24297 廩 ; -+,0x00,0x1f,0x10,0x17,0x10,0x17,0x15,0x15,0x14,0x17,0x10,0x17,0x10,0x2f,0x23,0x5c,0x80,0xfe,0x40,0xfc,0x00,0xfc,0x14,0xf4,0x04,0xfc,0x38,0xc0,0x40,0xfe,0x58,0x46 -+// 24298 廪 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x17,0x15,0x15,0x17,0x10,0x17,0x10,0x1f,0x12,0x26,0x48,0x80,0xff,0x40,0xfe,0x00,0xfc,0x24,0xe4,0xfc,0x00,0xfc,0x00,0xff,0x48,0x46,0xc4 -+// 24299 廫 ; -+,0x00,0x3f,0x20,0x2f,0x29,0x29,0x2f,0x29,0x29,0x2f,0x29,0x29,0x29,0x29,0x29,0x53,0x80,0xff,0x00,0xf7,0x55,0x33,0x55,0x99,0x24,0x4b,0x92,0x6c,0x93,0x66,0x18,0x60 -+// 24300 廬 ; -+,0x00,0x3f,0x20,0x2f,0x28,0x2b,0x28,0x28,0x2b,0x2a,0x2b,0x2a,0x2f,0x54,0x54,0x2f,0x80,0xfe,0x80,0xfe,0x84,0xe0,0x88,0x70,0xf8,0x48,0xf8,0x48,0xfc,0xa4,0xa4,0xff -+// 24301 廭 ; -+,0x00,0x00,0x3f,0x21,0x2e,0x22,0x22,0x2f,0x22,0x27,0x26,0x2a,0x32,0x22,0x22,0x42,0x80,0x40,0xff,0x88,0x7e,0x08,0x7e,0x88,0x7f,0x00,0xfe,0xd2,0x4a,0x7e,0x24,0xc3 -+// 24302 廮 ; -+,0x00,0x3f,0x20,0x27,0x24,0x26,0x25,0x27,0x23,0x24,0x3f,0x21,0x23,0x20,0x21,0x4e,0x80,0xff,0x00,0xbc,0xb4,0xac,0xa4,0xbc,0x18,0xa4,0xff,0x08,0x88,0x70,0x8c,0x03 -+// 24303 廯 ; -+,0x00,0x00,0x3f,0x28,0x2f,0x29,0x32,0x2f,0x2a,0x2f,0x2a,0x2f,0x20,0x2a,0x2a,0x52,0x80,0x40,0xff,0x00,0xa2,0x14,0x3f,0x88,0xbf,0x88,0x88,0xbf,0x08,0x88,0x88,0x88 -+// 24304 廰 ; -+,0x00,0x00,0x3f,0x20,0x3f,0x2a,0x2a,0x2e,0x2a,0x2e,0x2a,0x2b,0x3e,0x22,0x23,0x42,0x80,0x40,0xff,0x08,0x08,0x7f,0x08,0x7f,0x55,0x7f,0x00,0x08,0xa4,0xa5,0x21,0x1e -+// 24305 廱 ; -+,0x00,0x3f,0x2a,0x2a,0x34,0x2a,0x2f,0x28,0x2f,0x20,0x2f,0x28,0x2f,0x28,0x28,0x47,0x40,0xff,0x40,0x94,0x94,0x5f,0xb4,0x94,0x9f,0x14,0x94,0x9f,0x94,0x14,0x5f,0xd0 -+// 24306 廲 ; -+,0x00,0x3f,0x20,0x2f,0x2d,0x2b,0x29,0x2f,0x28,0x2f,0x28,0x2f,0x2a,0x2b,0x2a,0x53,0x80,0xfe,0x00,0x3c,0x34,0x2c,0x24,0xfe,0x90,0xfe,0x92,0xfe,0x10,0x9e,0x11,0x8f -+// 24307 廳 ; -+,0x00,0x3f,0x20,0x3f,0x29,0x2f,0x29,0x2f,0x29,0x3f,0x21,0x3f,0x25,0x3f,0x45,0x5f,0x40,0xff,0x08,0xff,0x10,0x7f,0x55,0x7f,0x00,0x7f,0x00,0x12,0xad,0xa9,0xa2,0x1e -+// 24308 廴 ; -+,0x00,0x3c,0x04,0x04,0x08,0x1e,0x02,0x22,0x24,0x14,0x14,0x08,0x14,0x22,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00 -+// 24309 廵 ; -+,0x00,0x78,0x08,0x08,0x11,0x11,0x3e,0x05,0x05,0x24,0x18,0x08,0x14,0x23,0x40,0x00,0x92,0xdb,0x92,0x94,0x24,0x28,0x50,0x48,0x24,0x92,0x92,0x92,0x00,0x00,0xff,0x00 -+// 24310 延 ; -+,0x00,0x7c,0x09,0x08,0x10,0x3c,0x14,0x04,0x24,0x24,0x14,0x08,0x14,0x23,0x40,0x00,0x00,0x0e,0xf0,0x10,0x10,0x90,0x9e,0x90,0x90,0x90,0xff,0x00,0x00,0x00,0xff,0x00 -+// 24311 廷 ; -+,0x00,0x7c,0x05,0x08,0x08,0x10,0x3f,0x04,0x24,0x24,0x15,0x08,0x14,0x23,0x40,0x00,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x00,0x00,0x00,0xff,0x00 -+// 24312 廸 ; -+,0x00,0x3c,0x04,0x09,0x09,0x11,0x1d,0x05,0x25,0x25,0x15,0x09,0x0c,0x13,0x20,0x40,0x20,0x20,0x20,0xfc,0x24,0x24,0xfc,0x24,0x24,0x24,0xfc,0x04,0x00,0x00,0xff,0x00 -+// 24313 廹 ; -+,0x00,0x3c,0x04,0x08,0x08,0x10,0x1c,0x04,0x24,0x24,0x14,0x08,0x14,0x23,0x40,0x00,0x10,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00,0x00,0xff,0x00 -+// 24314 建 ; -+,0x00,0x3c,0x05,0x08,0x0b,0x10,0x3d,0x04,0x25,0x24,0x14,0x0b,0x14,0x23,0x40,0x00,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 24315 廻 ; -+,0x00,0x79,0x09,0x09,0x11,0x21,0x3d,0x05,0x05,0x29,0x29,0x11,0x28,0x24,0x43,0x00,0x00,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0xfe,0x00,0x00,0xff,0x00 -+// 24316 廼 ; -+,0x00,0x3b,0x08,0x08,0x11,0x21,0x3d,0x05,0x25,0x25,0x19,0x09,0x14,0x12,0x21,0x40,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0x52,0x5e,0x82,0x02,0xfe,0x00,0x00,0xff,0x00 -+// 24317 廽 ; -+,0x00,0x3d,0x05,0x09,0x09,0x11,0x1d,0x05,0x05,0x25,0x15,0x09,0x14,0x23,0x40,0x00,0x00,0xfe,0x4a,0x4a,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0xfe,0x02,0x00,0x00,0xff,0x00 -+// 24318 廾 ; -+,0x02,0x02,0x02,0x02,0x02,0x02,0x3f,0x02,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 24319 廿 ; -+,0x04,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x00,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x00 -+// 24320 开 ; -+,0x00,0x3f,0x02,0x02,0x02,0x02,0x7f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 24321 弁 ; -+,0x01,0x01,0x02,0x04,0x1f,0x08,0x02,0x02,0x7f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x90,0x08,0x04,0xfe,0x04,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24322 异 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x07,0x02,0x02,0x3f,0x02,0x04,0x04,0x08,0x10,0x00,0xf8,0x08,0x08,0xf8,0x04,0x06,0xfc,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 24323 弃 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x0f,0x02,0x02,0x7f,0x02,0x02,0x04,0x04,0x08,0x10,0x80,0x42,0xff,0x10,0x08,0x7c,0x88,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24324 弄 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x00,0x3f,0x04,0x04,0x04,0x7f,0x04,0x08,0x08,0x10,0x20,0x00,0xfe,0x80,0xfc,0x80,0x80,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 24325 弅 ; -+,0x04,0x06,0x04,0x08,0x17,0x21,0x02,0x04,0x08,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0x20,0x10,0x0c,0xf7,0x12,0x10,0x70,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 24326 弆 ; -+,0x00,0x00,0x1f,0x00,0x3f,0x01,0x02,0x0f,0x04,0x02,0x7f,0x02,0x02,0x04,0x04,0x08,0x80,0x80,0xfc,0x80,0xfe,0x00,0x10,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 24327 弇 ; -+,0x00,0x01,0x02,0x04,0x1f,0x60,0x0f,0x08,0x0f,0x02,0x7f,0x02,0x04,0x04,0x08,0x10,0x80,0x40,0x30,0x0c,0xf7,0x02,0xf8,0x08,0xf8,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 24328 弈 ; -+,0x00,0x00,0x3f,0x02,0x0a,0x0a,0x12,0x04,0x0a,0x02,0x7f,0x02,0x04,0x04,0x08,0x10,0x80,0x40,0xff,0x20,0x28,0x26,0x22,0xa0,0x50,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 24329 弉 ; -+,0x01,0x11,0x1f,0x01,0x1f,0x11,0x11,0x21,0x05,0x04,0x3f,0x04,0x04,0x08,0x08,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x7e,0x00,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 24330 弊 ; -+,0x04,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x21,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x10,0x90,0x3f,0xa2,0xd2,0x8c,0x94,0xa3,0x82,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 24331 弋 ; -+,0x01,0x01,0x01,0x01,0x01,0x01,0x7f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x18,0x10,0x00,0x7e,0x80,0x00,0x80,0x80,0x40,0x40,0x22,0x22,0x12,0x0c -+// 24332 弌 ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x50,0x4c,0x48,0x40,0xff,0x20,0x20,0x20,0x20,0x10,0x10,0xf0,0x09,0x05,0x03,0x00 -+// 24333 弍 ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x00,0x03,0x3c,0x10,0x00,0x00,0x20,0x28,0x26,0x24,0xff,0x20,0x20,0xa0,0x20,0x10,0x10,0x88,0x09,0x05,0x02,0x00 -+// 24334 弎 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x50,0x4c,0x48,0xff,0x40,0x40,0x40,0xa0,0x20,0x20,0x10,0x11,0x09,0xc5,0x02,0x00 -+// 24335 式 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x1f,0x04,0x04,0x04,0x05,0x0e,0x38,0x10,0x00,0x50,0x4c,0x48,0xfe,0x40,0x40,0x40,0x40,0x20,0x20,0x20,0x90,0x11,0x09,0x05,0x02 -+// 24336 弐 ; -+,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x1f,0x00,0x00,0x03,0x3e,0x10,0x00,0x40,0x40,0x48,0x46,0x44,0xff,0x40,0x40,0x20,0xa0,0x20,0x10,0xd0,0x09,0x05,0x02 -+// 24337 弑 ; -+,0x00,0x04,0x46,0x24,0x1b,0x24,0x42,0x08,0x7f,0x08,0x2c,0x2a,0x48,0x0b,0x28,0x10,0x10,0x14,0x13,0x12,0xff,0x10,0x10,0x10,0xe8,0x88,0x88,0x89,0xf5,0x85,0x02,0x00 -+// 24338 弒 ; -+,0x21,0x12,0x0c,0x13,0x21,0x4a,0x09,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x48,0x08,0x00,0x08,0x0c,0x0a,0x08,0xff,0x08,0x08,0xf8,0x28,0x28,0x24,0x25,0x25,0xfb,0x01,0x00 -+// 24339 弓 ; -+,0x00,0x1f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x28,0x10 -+// 24340 弔 ; -+,0x00,0x1f,0x00,0x00,0x00,0x1f,0x10,0x10,0x3f,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x80,0x80,0xfe,0x82,0x82,0x82,0x8a,0x84,0x80,0x80 -+// 24341 引 ; -+,0x00,0x3f,0x00,0x00,0x1f,0x10,0x10,0x10,0x3f,0x10,0x00,0x00,0x00,0x00,0x02,0x01,0x02,0x82,0x82,0x82,0x82,0x02,0x02,0x82,0xc2,0x82,0x82,0x82,0x82,0x82,0x82,0x02 -+// 24342 弖 ; -+,0x00,0x1f,0x00,0x00,0x0f,0x08,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0xf8,0x08,0x08,0xf8,0x00,0x00,0xfc,0x04,0x04,0x04,0x0c,0x78,0x10,0xff,0x00 -+// 24343 弗 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x12,0x12,0x1f,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x20,0x20,0xfc,0x24,0x24,0xfc,0x24,0x20,0xfe,0x22,0x22,0x2a,0x24,0x20,0x20,0x00 -+// 24344 弘 ; -+,0x00,0x3f,0x01,0x01,0x1f,0x10,0x10,0x10,0x3f,0x11,0x01,0x01,0x01,0x01,0x0a,0x04,0x08,0x0c,0x08,0x08,0x10,0x10,0x10,0x20,0x20,0x20,0x44,0x42,0xff,0x42,0x00,0x00 -+// 24345 弙 ; -+,0x00,0x3e,0x02,0x02,0x3e,0x20,0x21,0x7e,0x22,0x02,0x02,0x02,0x02,0x3c,0x08,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x20,0x00 -+// 24346 弚 ; -+,0x08,0x06,0x04,0x3f,0x00,0x00,0x1f,0x10,0x10,0x3f,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x20,0xfc,0x84,0x84,0xfc,0x80,0x80,0xfe,0x82,0x82,0x94,0x88,0x80,0x80 -+// 24347 弛 ; -+,0x00,0x3c,0x04,0x04,0x3c,0x23,0x20,0x20,0x3c,0x04,0x04,0x04,0x04,0x04,0x14,0x08,0x00,0x10,0x90,0x92,0x9f,0xf2,0x92,0x92,0x92,0x92,0x86,0x80,0x81,0x81,0x7f,0x00 -+// 24348 弜 ; -+,0x3f,0x01,0x01,0x01,0x1f,0x10,0x10,0x3f,0x11,0x01,0x01,0x01,0x01,0x01,0x0a,0x04,0x3e,0x02,0x02,0x02,0x3e,0x20,0x20,0x7e,0x22,0x02,0x02,0x02,0x02,0x02,0x14,0x08 -+// 24349 弝 ; -+,0x00,0x7c,0x04,0x04,0x3c,0x20,0x20,0x20,0x3c,0x04,0x04,0x04,0x04,0x04,0x14,0x08,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 24350 弞 ; -+,0x00,0x7e,0x02,0x02,0x3e,0x20,0x21,0x20,0x7e,0x22,0x02,0x02,0x02,0x02,0x14,0x09,0x40,0x60,0x40,0x7f,0x82,0x94,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 24351 弟 ; -+,0x04,0x02,0x01,0x3f,0x00,0x00,0x1f,0x10,0x10,0x1f,0x01,0x02,0x04,0x08,0x10,0x20,0x08,0x10,0x20,0xfe,0x82,0x82,0xfe,0x80,0x80,0xff,0x81,0x81,0x8a,0x84,0x80,0x80 -+// 24352 张 ; -+,0x00,0x7c,0x04,0x04,0x3c,0x20,0x20,0x21,0x7c,0x24,0x04,0x04,0x04,0x04,0x14,0x08,0x40,0x44,0x46,0x48,0x50,0x60,0x40,0xff,0x50,0x50,0x48,0x48,0x44,0x53,0xe2,0x40 -+// 24353 弡 ; -+,0x00,0x3e,0x02,0x02,0x3e,0x20,0x20,0x20,0x7e,0x22,0x02,0x02,0x02,0x02,0x14,0x08,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82,0x80,0x80,0x80,0xff,0x00 -+// 24354 弢 ; -+,0x00,0x7c,0x04,0x04,0x3d,0x20,0x20,0x21,0x3c,0x04,0x04,0x04,0x04,0x24,0x14,0x09,0x10,0x92,0x92,0x92,0xfe,0x92,0x10,0xfe,0x84,0x84,0x48,0x48,0x30,0x48,0x84,0x02 -+// 24355 弣 ; -+,0x00,0x3c,0x04,0x04,0x3d,0x21,0x22,0x20,0x3c,0x04,0x04,0x04,0x04,0x24,0x14,0x08,0x84,0xc4,0x84,0x84,0x04,0xbf,0x84,0x84,0xa4,0xa4,0xa4,0x84,0x84,0x84,0x94,0x88 -+// 24356 弤 ; -+,0x00,0x3d,0x05,0x05,0x3d,0x21,0x21,0x21,0x3d,0x05,0x05,0x05,0x05,0x05,0x15,0x08,0x0e,0xf0,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x08,0x28,0x45,0xa5,0x13,0x00 -+// 24357 弥 ; -+,0x00,0x3e,0x02,0x02,0x3e,0x20,0x21,0x20,0x3e,0x02,0x02,0x03,0x02,0x02,0x14,0x08,0x40,0x60,0x40,0xff,0x82,0x94,0x10,0x58,0x54,0x92,0x93,0x12,0x10,0x10,0x50,0x20 -+// 24358 弦 ; -+,0x00,0x7c,0x05,0x04,0x3c,0x24,0x20,0x20,0x7d,0x24,0x04,0x04,0x04,0x25,0x14,0x08,0x20,0x10,0xff,0x00,0x20,0x24,0x46,0xbc,0xe8,0x10,0x20,0x44,0x82,0xff,0x82,0x00 -+// 24359 弧 ; -+,0x00,0x7c,0x05,0x05,0x05,0x3d,0x21,0x21,0x7d,0x25,0x05,0x05,0x05,0x15,0x0a,0x04,0x00,0x1e,0xe8,0x28,0x28,0x28,0x28,0x28,0x24,0x24,0x24,0x2a,0x3a,0x6b,0x22,0x00 -+// 24360 弨 ; -+,0x3e,0x02,0x02,0x02,0x3e,0x20,0x20,0x21,0x7e,0x22,0x02,0x02,0x02,0x02,0x14,0x08,0xfe,0x22,0x22,0x22,0x42,0x4a,0x84,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 24361 弩 ; -+,0x08,0x08,0x7f,0x12,0x32,0x0c,0x32,0x1f,0x00,0x0f,0x08,0x1f,0x08,0x00,0x00,0x00,0x00,0xfe,0x44,0x28,0x10,0x28,0x47,0xfa,0x08,0xf8,0x00,0xfc,0x04,0x04,0x14,0x08 -+// 24362 弪 ; -+,0x00,0x7c,0x04,0x04,0x3c,0x20,0x20,0x20,0x3d,0x04,0x04,0x04,0x04,0x04,0x15,0x08,0x00,0xfe,0x04,0x08,0x10,0x28,0x46,0x83,0x01,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 24363 弫 ; -+,0x00,0x7e,0x02,0x02,0x3e,0x20,0x20,0x20,0x7e,0x22,0x02,0x02,0x02,0x02,0x14,0x08,0x00,0xff,0x90,0x90,0x90,0xfe,0x82,0x82,0x82,0xfe,0x90,0x90,0x90,0x90,0xff,0x00 -+// 24364 弬 ; -+,0x00,0x7d,0x05,0x05,0x3d,0x21,0x21,0x21,0x7d,0x25,0x05,0x05,0x05,0x05,0x15,0x08,0x00,0xff,0x08,0x08,0x08,0x5e,0x42,0x42,0x42,0x5e,0x08,0x08,0x08,0x08,0xff,0x00 -+// 24365 弭 ; -+,0x00,0x7d,0x04,0x04,0x04,0x3c,0x20,0x20,0x20,0x7c,0x24,0x05,0x04,0x04,0x1c,0x08,0x00,0xff,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x87,0xfc,0x04,0x04,0x04,0x04 -+// 24366 弮 ; -+,0x08,0x04,0x3f,0x01,0x7f,0x02,0x04,0x1f,0x60,0x0f,0x08,0x0f,0x00,0x00,0x00,0x00,0x88,0x90,0xfe,0x00,0xff,0x10,0x08,0xf7,0x12,0xf0,0x00,0xf8,0x08,0x08,0x28,0x10 -+// 24367 弯 ; -+,0x00,0x7f,0x01,0x09,0x0d,0x11,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x80,0xff,0x20,0x28,0x26,0x22,0xfc,0x04,0xfc,0x00,0x00,0xfe,0x02,0x02,0x14,0x08 -+// 24368 弰 ; -+,0x00,0x3e,0x02,0x02,0x3e,0x20,0x20,0x20,0x7e,0x22,0x02,0x02,0x02,0x14,0x08,0x00,0x10,0x12,0x93,0x54,0x50,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84,0x00 -+// 24369 弱 ; -+,0x3f,0x01,0x01,0x1f,0x10,0x10,0x1f,0x01,0x11,0x09,0x05,0x09,0x71,0x21,0x0a,0x04,0x7e,0x02,0x02,0x7e,0x40,0x40,0x7e,0x02,0x22,0x12,0x0a,0x0e,0x72,0x22,0x0a,0x04 -+// 24370 弲 ; -+,0x00,0x3e,0x02,0x02,0x3e,0x20,0x20,0x7e,0x22,0x02,0x02,0x02,0x02,0x12,0x0a,0x04,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 24371 弳 ; -+,0x00,0x3d,0x04,0x04,0x3d,0x22,0x21,0x20,0x7c,0x25,0x04,0x04,0x04,0x04,0x2b,0x10,0x00,0xff,0x94,0x96,0x24,0x48,0x24,0x92,0x80,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 24372 弴 ; -+,0x00,0x3c,0x05,0x04,0x04,0x3c,0x20,0x20,0x3d,0x04,0x04,0x07,0x04,0x04,0x14,0x08,0x20,0x10,0xfe,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x50,0x20 -+// 24373 張 ; -+,0x00,0x3c,0x04,0x04,0x04,0x3c,0x20,0x23,0x3c,0x04,0x04,0x04,0x04,0x24,0x15,0x08,0x00,0xfe,0x80,0xfc,0x80,0xfc,0x80,0xff,0xa0,0xa2,0x94,0x88,0x8c,0xa7,0xc2,0x80 -+// 24374 弶 ; -+,0x00,0x7c,0x07,0x04,0x3c,0x21,0x21,0x21,0x7d,0x24,0x05,0x05,0x05,0x06,0x28,0x10,0x40,0x20,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x20,0x28,0xa4,0x23,0x22,0xa0,0x40 -+// 24375 強 ; -+,0x00,0x7e,0x02,0x02,0x3f,0x20,0x20,0x20,0x7e,0x22,0x02,0x02,0x02,0x02,0x15,0x08,0x20,0x30,0x44,0x82,0xff,0x92,0x10,0xfe,0x92,0x92,0xfe,0x94,0x12,0x1f,0xe2,0x00 -+// 24376 弸 ; -+,0x00,0x3d,0x05,0x05,0x3d,0x21,0x21,0x21,0x3d,0x05,0x05,0x05,0x05,0x05,0x2a,0x14,0x00,0xef,0x29,0x29,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0x29,0x29,0x29,0x55,0x22 -+// 24377 弹 ; -+,0x01,0x7c,0x04,0x05,0x3d,0x21,0x21,0x21,0x7d,0x25,0x04,0x07,0x04,0x04,0x28,0x10,0x04,0x86,0x48,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24378 强 ; -+,0x00,0x3c,0x04,0x04,0x3c,0x20,0x21,0x21,0x3d,0x05,0x05,0x04,0x04,0x04,0x14,0x09,0x00,0xfc,0x84,0x84,0xfc,0x20,0xfe,0x22,0x22,0x22,0xfe,0x20,0x24,0x22,0x3f,0xe2 -+// 24379 弻 ; -+,0x00,0x3b,0x08,0x08,0x3b,0x22,0x22,0x22,0x3b,0x0b,0x0a,0x0a,0x0b,0x2a,0x10,0x00,0x00,0xee,0x82,0x82,0xee,0xa8,0xa8,0xa8,0x6e,0x62,0x22,0x22,0xe2,0x2a,0x04,0x00 -+// 24380 弼 ; -+,0x00,0x3d,0x04,0x04,0x3d,0x21,0x21,0x21,0x3d,0x05,0x05,0x05,0x05,0x28,0x10,0x00,0x00,0xde,0x82,0x82,0xde,0x50,0x50,0x50,0xde,0x42,0x42,0xc2,0x42,0x0a,0x04,0x00 -+// 24381 弽 ; -+,0x00,0x3c,0x05,0x04,0x3c,0x20,0x20,0x20,0x3c,0x05,0x04,0x04,0x04,0x05,0x2a,0x10,0x24,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0xfe,0x10,0xff,0x38,0x54,0x92,0x13,0x12,0x10 -+// 24382 弾 ; -+,0x01,0x3c,0x04,0x05,0x05,0x3d,0x21,0x21,0x3d,0x05,0x04,0x07,0x04,0x24,0x14,0x08,0x48,0xb6,0xa4,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24383 弿 ; -+,0x00,0x3f,0x22,0x5f,0x02,0x1f,0x02,0x3f,0x0c,0x17,0x60,0x07,0x04,0x07,0x00,0x00,0x80,0xff,0x21,0xfa,0x20,0xf8,0x20,0xff,0x08,0xf7,0x12,0xf0,0x00,0xf8,0x08,0x18 -+// 24384 彀 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x40,0x1f,0x01,0x1f,0x10,0x1f,0x01,0x01,0x05,0x02,0x00,0xbc,0x24,0x24,0x24,0xa7,0xc0,0x3e,0x44,0x24,0x24,0x18,0x18,0x24,0x43,0x82 -+// 24385 彁 ; -+,0x00,0x7d,0x04,0x04,0x3c,0x20,0x20,0x21,0x7c,0x24,0x04,0x04,0x04,0x04,0x14,0x08,0x00,0xff,0x04,0xf4,0x94,0xf4,0x00,0xff,0x04,0xf4,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 24386 彂 ; -+,0x11,0x09,0x09,0x7f,0x00,0x3e,0x02,0x3e,0x20,0x20,0x3e,0x02,0x02,0x02,0x14,0x09,0x24,0x26,0x28,0xff,0x40,0x7e,0x50,0x90,0xff,0x10,0x10,0x28,0x24,0x47,0x82,0x00 -+// 24387 彃 ; -+,0x00,0x3c,0x04,0x04,0x04,0x3c,0x20,0x20,0x3d,0x04,0x05,0x04,0x07,0x04,0x14,0x08,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x54,0xff,0x54,0xff,0x10,0xff,0x10,0x10,0x10 -+// 24388 彄 ; -+,0x00,0x7d,0x05,0x05,0x3d,0x21,0x21,0x21,0x7d,0x25,0x05,0x05,0x05,0x05,0x29,0x10,0x00,0xff,0x00,0x3e,0x22,0x3e,0x00,0x77,0x55,0x55,0x55,0x77,0x00,0x00,0xff,0x00 -+// 24389 彅 ; -+,0x00,0x7c,0x05,0x04,0x3d,0x21,0x21,0x21,0x3d,0x05,0x04,0x05,0x04,0x04,0x14,0x09,0x84,0x48,0xff,0x02,0xea,0x2a,0xea,0x2a,0xe2,0x26,0x00,0xfe,0x42,0x42,0x8a,0x04 -+// 24390 彆 ; -+,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x24,0x1f,0x00,0x0f,0x08,0x0f,0x00,0x00,0x00,0x90,0x10,0xbf,0xa4,0xd4,0x88,0x97,0x22,0xf8,0x08,0xf8,0x00,0xfc,0x04,0x28,0x10 -+// 24391 彇 ; -+,0x00,0x79,0x08,0x0b,0x38,0x21,0x20,0x22,0x3b,0x0a,0x0b,0x0a,0x0b,0x0a,0x2a,0x14,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0xaa,0x22 -+// 24392 彈 ; -+,0x01,0x7d,0x05,0x05,0x3c,0x21,0x21,0x21,0x3d,0x05,0x04,0x07,0x04,0x04,0x1c,0x08,0xef,0x29,0x29,0xef,0x00,0xff,0x11,0xff,0x11,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 24393 彉 ; -+,0x00,0x3c,0x07,0x04,0x3c,0x23,0x20,0x21,0x3d,0x05,0x05,0x05,0x04,0x04,0x29,0x12,0x88,0x88,0xfe,0x88,0x88,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x88,0xc4,0x06,0x04 -+// 24394 彊 ; -+,0x00,0x7d,0x04,0x05,0x3d,0x21,0x21,0x21,0x3c,0x05,0x05,0x05,0x05,0x05,0x28,0x13,0x00,0xfe,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff -+// 24395 彋 ; -+,0x00,0x7d,0x05,0x05,0x3c,0x23,0x20,0x21,0x3d,0x05,0x04,0x05,0x06,0x04,0x15,0x08,0x00,0xfe,0x4a,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0x92,0x93,0x8c,0xa8,0xc7,0x82 -+// 24396 彌 ; -+,0x00,0x3d,0x04,0x05,0x3f,0x25,0x21,0x21,0x7d,0x25,0x05,0x05,0x05,0x1d,0x09,0x00,0x00,0xff,0xa4,0xfe,0x23,0x76,0xaa,0x36,0x22,0x76,0xaa,0x76,0x22,0x22,0x26,0x00 -+// 24397 彍 ; -+,0x00,0x3c,0x05,0x05,0x3d,0x21,0x21,0x21,0x39,0x09,0x09,0x09,0x09,0x0a,0x2a,0x14,0x20,0x10,0xff,0x24,0xff,0x24,0xff,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x24,0x43,0x82 -+// 24398 彎 ; -+,0x08,0x13,0x3c,0x09,0x1c,0x01,0x29,0x49,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x00,0x00,0x84,0xe5,0x0f,0xc4,0x0f,0xc0,0x55,0xd5,0xf8,0x08,0xf8,0x00,0xfc,0x04,0x14,0x08 -+// 24399 彏 ; -+,0x7b,0x0b,0x0a,0x0a,0x3b,0x21,0x21,0x3b,0x0d,0x09,0x09,0x09,0x08,0x08,0x28,0x13,0xde,0x5a,0xd6,0x52,0xde,0x20,0xfe,0x20,0xfc,0x20,0xfe,0x00,0xfc,0x84,0x78,0x87 -+// 24400 彐 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0x00,0x00 -+// 24401 彑 ; -+,0x02,0x02,0x02,0x04,0x07,0x04,0x04,0x08,0x08,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0xe0,0x20,0x20,0x20,0xff,0x00,0x00 -+// 24402 归 ; -+,0x04,0x04,0x05,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x08,0x09,0x10,0x20,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x00,0x00 -+// 24403 当 ; -+,0x00,0x08,0x04,0x06,0x04,0x00,0x1f,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x40,0x48,0x4c,0x48,0x50,0x40,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 24404 彔 ; -+,0x02,0x03,0x04,0x04,0x0f,0x00,0x3f,0x10,0x0c,0x04,0x03,0x0c,0x70,0x20,0x02,0x01,0x00,0xf0,0x10,0x10,0xe0,0x20,0xfe,0x88,0x8c,0xd0,0xa0,0x90,0x8c,0x87,0x82,0x00 -+// 24405 录 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x7f,0x00,0x08,0x04,0x02,0x01,0x06,0x38,0x10,0x02,0x01,0x00,0xf8,0x08,0xf8,0x08,0xff,0x88,0x98,0xa0,0xc0,0xa0,0x98,0x8e,0x84,0x80,0x00 -+// 24406 彖 ; -+,0x02,0x03,0x02,0x07,0x00,0x7f,0x03,0x0c,0x31,0x06,0x18,0x61,0x06,0x38,0x00,0x00,0x00,0xf8,0x08,0xf0,0x10,0xff,0x08,0x90,0xa0,0x50,0xa8,0x2c,0x27,0x22,0xa0,0x40 -+// 24407 彗 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x1f,0x00,0x00,0x0f,0x00,0x00,0x1f,0x00,0x10,0x10,0x7f,0x10,0x7e,0x10,0x7f,0x10,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 24408 彘 ; -+,0x04,0x07,0x04,0x07,0x00,0x7f,0x22,0x23,0x22,0x3c,0x27,0x20,0x21,0x2a,0x74,0x28,0x00,0xf8,0x10,0xf0,0x10,0xff,0x08,0xe8,0x88,0x8b,0xec,0x88,0x48,0x29,0x29,0x07 -+// 24409 彙 ; -+,0x02,0x03,0x02,0x04,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x02,0x0c,0x30,0x00,0xf8,0x10,0x10,0xff,0x02,0xfc,0x88,0xf8,0x88,0xf8,0x80,0xff,0xa0,0x98,0x86 -+// 24410 彚 ; -+,0x0f,0x00,0x07,0x00,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x03,0x0c,0x30,0xf8,0x08,0xf8,0x08,0xff,0x02,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0xe0,0x98,0x86 -+// 24411 彛 ; -+,0x07,0x00,0x1f,0x00,0x07,0x25,0x16,0x3f,0x0c,0x16,0x25,0x02,0x7f,0x02,0x04,0x18,0xf8,0x08,0xfe,0x08,0xf8,0x24,0x42,0xbd,0x24,0x24,0x54,0x28,0xff,0x20,0x20,0x20 -+// 24412 彜 ; -+,0x02,0x03,0x04,0x3f,0x2a,0x1c,0x7f,0x1c,0x2a,0x48,0x02,0x3f,0x02,0x02,0x04,0x08,0x00,0xf0,0x10,0xff,0x24,0x24,0x42,0xfd,0x24,0x4c,0x90,0xff,0x10,0x10,0x10,0x10 -+// 24413 彝 ; -+,0x04,0x07,0x08,0x0f,0x00,0x7f,0x24,0x15,0x3f,0x0e,0x15,0x24,0x7f,0x04,0x08,0x30,0x10,0xf8,0x10,0xf0,0x12,0xff,0x90,0x3c,0x92,0x7f,0x2a,0x49,0xff,0x08,0x08,0x08 -+// 24414 彞 ; -+,0x1f,0x00,0x1f,0x00,0x7f,0x2a,0x1c,0x7f,0x1c,0x2a,0x49,0x02,0x7f,0x02,0x04,0x08,0xf8,0x08,0xf8,0x08,0xff,0x20,0x24,0x78,0x14,0x3e,0x12,0x10,0xff,0x10,0x10,0x10 -+// 24415 彟 ; -+,0x00,0x7f,0x02,0x3e,0x02,0x03,0x7e,0x04,0x04,0x7f,0x04,0x24,0x24,0x04,0x14,0x09,0x44,0xff,0x44,0x88,0xfe,0x48,0x7e,0x48,0x7f,0x40,0xfe,0x44,0x28,0x10,0x6c,0x83 -+// 24416 彠 ; -+,0x3e,0x02,0x3e,0x02,0x3e,0x00,0x7e,0x2b,0x2a,0x7e,0x04,0x7f,0x24,0x24,0x04,0x0c,0x24,0xff,0x24,0x48,0x7f,0x48,0xfe,0x48,0x7f,0x00,0x7e,0x24,0x14,0x08,0x36,0xc2 -+// 24417 彡 ; -+,0x00,0x00,0x00,0x00,0x03,0x0c,0x30,0x00,0x01,0x06,0x18,0x00,0x00,0x03,0x1c,0x00,0x00,0x30,0x60,0x80,0x10,0x18,0x20,0xc0,0x84,0x0e,0x18,0x30,0xc0,0x00,0x00,0x00 -+// 24418 形 ; -+,0x00,0x3f,0x09,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x40,0x02,0xc3,0x06,0x08,0x10,0x04,0xe6,0x0c,0x10,0x22,0x43,0x06,0x08,0x10,0x20,0x40 -+// 24419 彣 ; -+,0x10,0x0c,0x08,0x7f,0x22,0x22,0x12,0x12,0x12,0x0c,0x0c,0x12,0x11,0x20,0x40,0x00,0x04,0x06,0x08,0x90,0x24,0x46,0x08,0x12,0x26,0x4c,0x10,0x20,0x00,0xc0,0x3f,0x00 -+// 24420 彤 ; -+,0x00,0x1f,0x10,0x18,0x16,0x12,0x10,0x3f,0x10,0x10,0x10,0x10,0x20,0x22,0x41,0x00,0x00,0x88,0x8c,0x98,0xa2,0xc3,0x86,0xcc,0x90,0xa2,0x83,0x86,0x8c,0x90,0x20,0x00 -+// 24421 彥 ; -+,0x00,0x00,0x1f,0x02,0x01,0x02,0x1f,0x10,0x10,0x17,0x10,0x10,0x17,0x20,0x20,0x4f,0x80,0x40,0xfc,0x20,0xc0,0x20,0xfe,0x10,0x78,0x80,0x1c,0xe0,0x06,0x18,0xe0,0x00 -+// 24422 彦 ; -+,0x00,0x00,0x1f,0x02,0x01,0x1f,0x10,0x10,0x10,0x17,0x10,0x11,0x16,0x20,0x21,0x4e,0x80,0x40,0xff,0x08,0x10,0xff,0x00,0x30,0xc0,0x0c,0x70,0x83,0x0c,0x30,0xc0,0x00 -+// 24423 彧 ; -+,0x00,0x00,0x00,0x7f,0x00,0x1e,0x12,0x12,0x12,0x1e,0x12,0x00,0x0e,0x70,0x01,0x00,0x20,0x28,0x24,0xff,0x20,0x2c,0x30,0x64,0xb8,0x21,0x52,0x8c,0x19,0x65,0x85,0x02 -+// 24424 彨 ; -+,0x00,0x7f,0x00,0x00,0x7b,0x4a,0x6b,0x5a,0x5a,0x4a,0x4a,0x4a,0x4a,0x4a,0x5a,0x00,0x02,0xe3,0x02,0x04,0xc8,0x52,0x43,0xc4,0xc9,0x51,0x42,0x42,0x44,0x48,0xd0,0x00 -+// 24425 彩 ; -+,0x07,0x7c,0x08,0x24,0x15,0x12,0x04,0x7f,0x04,0x0e,0x0d,0x14,0x24,0x44,0x04,0x04,0x80,0x04,0x86,0xc8,0x10,0x22,0x03,0xc4,0x0a,0x13,0x02,0xc4,0x88,0x30,0xc0,0x00 -+// 24426 彪 ; -+,0x04,0x07,0x04,0x3f,0x24,0x27,0x3c,0x24,0x23,0x20,0x27,0x24,0x24,0x28,0x48,0x50,0x02,0xc3,0x06,0xcc,0x50,0x24,0x06,0x88,0x92,0x23,0x84,0x88,0x91,0x81,0x7f,0x00 -+// 24427 彫 ; -+,0x00,0x3f,0x22,0x22,0x2f,0x22,0x22,0x3f,0x20,0x2f,0x29,0x29,0x2f,0x20,0x21,0x40,0x02,0xc3,0x46,0x48,0x52,0x63,0x42,0xc4,0x48,0x52,0x43,0x46,0x44,0x48,0x50,0x80 -+// 24428 彬 ; -+,0x08,0x08,0x08,0x08,0x3d,0x08,0x19,0x1d,0x2a,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x82,0x83,0x86,0x84,0xe8,0x82,0xc3,0xa6,0xa8,0xb2,0xa3,0x86,0x8c,0x90,0xa0,0x80 -+// 24429 彭 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x20,0x3f,0x21,0x11,0x0a,0x03,0x7c,0x20,0x00,0x00,0x04,0xc6,0x08,0x90,0x24,0x86,0x88,0x90,0x22,0x03,0x06,0xcc,0x10,0x20,0x00 -+// 24430 彮 ; -+,0x04,0x02,0x3f,0x20,0x49,0x18,0x22,0x45,0x08,0x3f,0x50,0x10,0x10,0x1f,0x10,0x00,0x00,0x04,0xe6,0x48,0x10,0x82,0x43,0x04,0x88,0xd2,0x83,0x84,0x88,0x90,0xa0,0x00 -+// 24431 彯 ; -+,0x00,0x7f,0x09,0x3f,0x29,0x3f,0x00,0x1f,0x00,0x3f,0x02,0x13,0x12,0x22,0x0e,0x04,0x02,0xe3,0x04,0xc8,0x52,0xc3,0x06,0x88,0x12,0xc3,0x06,0x04,0xc8,0x90,0x20,0x00 -+// 24432 彰 ; -+,0x08,0x04,0x3f,0x11,0x7f,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x06,0x84,0x08,0xd2,0x23,0x86,0x84,0x88,0x92,0xa3,0x06,0xc4,0x08,0x10,0x20 -+// 24433 影 ; -+,0x3f,0x20,0x3f,0x20,0x3f,0x04,0x7f,0x00,0x3f,0x20,0x3f,0x04,0x15,0x24,0x54,0x08,0x82,0x83,0x86,0x84,0x88,0x12,0xc3,0x06,0x84,0x88,0x92,0x03,0x04,0xc8,0x90,0x20 -+// 24434 彲 ; -+,0x3d,0x00,0x3d,0x35,0x2d,0x25,0x1f,0x14,0x1f,0x14,0x1f,0x14,0x16,0x24,0x2e,0x44,0xe2,0x03,0xe4,0xa8,0x60,0x22,0xe3,0x84,0xe8,0xa0,0xe2,0x83,0xe2,0x84,0xa8,0x60 -+// 24435 彳 ; -+,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0x40,0x60,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 24436 彴 ; -+,0x04,0x06,0x08,0x10,0x24,0x06,0x09,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x40,0x7e,0x82,0x82,0x22,0x12,0x1a,0x12,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 24437 彵 ; -+,0x08,0x0c,0x09,0x11,0x25,0x05,0x09,0x1b,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x20,0x20,0x20,0x22,0x27,0x3a,0xe2,0x22,0x22,0x22,0x2e,0x24,0x01,0x01,0xff,0x00 -+// 24438 彶 ; -+,0x08,0x0d,0x10,0x24,0x44,0x08,0x08,0x18,0x28,0x48,0x08,0x09,0x09,0x0a,0x0c,0x09,0x00,0xfc,0x44,0x48,0x48,0x4e,0x42,0xa4,0xa4,0xa4,0x98,0x18,0x24,0x43,0x82,0x00 -+// 24439 彷 ; -+,0x08,0x0c,0x10,0x21,0x48,0x0c,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x20,0x10,0x10,0xff,0x40,0x40,0x40,0x7e,0x42,0x42,0x82,0x82,0x82,0x02,0x0a,0x04 -+// 24440 彸 ; -+,0x08,0x0c,0x10,0x28,0x4c,0x09,0x11,0x32,0x54,0x10,0x10,0x10,0x11,0x13,0x11,0x10,0x00,0x88,0xc8,0x88,0x84,0x04,0x43,0x62,0x40,0x40,0x84,0x82,0x1f,0xf3,0x02,0x00 -+// 24441 役 ; -+,0x08,0x0c,0x10,0x24,0x46,0x09,0x1a,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0xf8,0x88,0x88,0x88,0x07,0x00,0xfc,0x88,0x88,0x50,0x50,0x20,0x58,0x8e,0x04 -+// 24442 彺 ; -+,0x08,0x0d,0x10,0x24,0x46,0x0c,0x08,0x19,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 24443 彻 ; -+,0x08,0x0d,0x11,0x21,0x49,0x09,0x17,0x31,0x51,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x00,0x00,0x7f,0x11,0x11,0xd1,0x11,0x11,0x11,0x51,0x91,0x21,0x21,0x4e,0x84,0x00 -+// 24444 彼 ; -+,0x08,0x0c,0x10,0x21,0x49,0x0d,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x15,0x10,0x10,0x10,0xff,0x12,0x10,0x7c,0x44,0x44,0x28,0x28,0x10,0x28,0x44,0x87,0x02 -+// 24445 彽 ; -+,0x08,0x0d,0x11,0x21,0x09,0x0d,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x13,0x11,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x08,0x08,0x45,0x25,0x63,0xa9,0x08 -+// 24446 彾 ; -+,0x08,0x0c,0x10,0x28,0x4c,0x09,0x12,0x30,0x51,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x50,0x48,0x84,0x43,0x22,0x20,0xfc,0x04,0x08,0x08,0x50,0x20,0x30,0x20 -+// 24447 彿 ; -+,0x08,0x0c,0x13,0x28,0x4c,0x0b,0x12,0x32,0x53,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x90,0x90,0xfc,0x94,0x94,0xfc,0x90,0x90,0xfe,0x92,0x92,0x9e,0x14,0x10,0x10,0x10 -+// 24448 往 ; -+,0x08,0x0c,0x08,0x13,0x28,0x4c,0x08,0x18,0x29,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x40,0x30,0x20,0xff,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 24449 征 ; -+,0x08,0x0d,0x18,0x24,0x46,0x0c,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 24450 徂 ; -+,0x08,0x0d,0x11,0x25,0x47,0x0d,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0xff,0x00 -+// 24451 徃 ; -+,0x08,0x0c,0x10,0x24,0x45,0x09,0x0a,0x18,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x10,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 24452 径 ; -+,0x08,0x0d,0x10,0x20,0x48,0x0c,0x19,0x36,0x53,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x00,0xfc,0x08,0x10,0x20,0x58,0x86,0x03,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 24453 待 ; -+,0x08,0x0c,0x09,0x14,0x26,0x44,0x0b,0x08,0x18,0x2b,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x08,0x08,0xff,0x08,0x88,0x88,0x08,0x28,0x10 -+// 24454 徆 ; -+,0x08,0x0f,0x10,0x28,0x4f,0x0a,0x12,0x32,0x52,0x12,0x13,0x12,0x12,0x12,0x13,0x12,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0x52,0x52,0x8e,0x02,0x02,0x02,0x02,0xfe,0x02 -+// 24455 徇 ; -+,0x08,0x0c,0x10,0x25,0x46,0x05,0x09,0x19,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x08,0x80,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04 -+// 24456 很 ; -+,0x08,0x0d,0x11,0x25,0x45,0x09,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x13,0x11,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x20,0x24,0x2e,0x10,0x08,0x2c,0x47,0x82,0x00 -+// 24457 徉 ; -+,0x09,0x0c,0x10,0x2b,0x4c,0x18,0x13,0x30,0x50,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x08,0x8c,0x50,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 24458 徊 ; -+,0x08,0x0d,0x11,0x29,0x4d,0x09,0x11,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0xfe,0x02,0x00 -+// 24459 律 ; -+,0x08,0x0c,0x09,0x14,0x27,0x48,0x09,0x18,0x29,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24460 後 ; -+,0x04,0x06,0x08,0x10,0x24,0x06,0x0c,0x18,0x28,0x48,0x09,0x0a,0x0c,0x08,0x08,0x0b,0x20,0x30,0x44,0xf8,0x20,0x44,0xfe,0x04,0x80,0xfc,0x88,0x48,0x30,0x48,0x87,0x02 -+// 24461 徍 ; -+,0x08,0x0c,0x10,0x25,0x46,0x0c,0x0b,0x18,0x28,0x48,0x09,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 24462 徎 ; -+,0x08,0x0d,0x11,0x25,0x45,0x09,0x08,0x1b,0x28,0x48,0x09,0x08,0x08,0x08,0x0b,0x08,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00,0xfe,0x20,0x20,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 24463 徏 ; -+,0x08,0x0c,0x08,0x14,0x26,0x0c,0x0b,0x18,0x28,0x48,0x09,0x0a,0x08,0x08,0x08,0x0b,0x10,0x10,0x90,0x9e,0x90,0x90,0xff,0x10,0x92,0x93,0x12,0x14,0x18,0x30,0xc0,0x00 -+// 24464 徐 ; -+,0x08,0x0c,0x10,0x20,0x49,0x0e,0x18,0x30,0x53,0x10,0x11,0x11,0x12,0x14,0x10,0x10,0x20,0x20,0x50,0x8c,0x07,0xfa,0x20,0x20,0xfe,0x20,0x28,0xa6,0x23,0x22,0xa0,0x40 -+// 24465 徑 ; -+,0x08,0x0d,0x10,0x28,0x4c,0x09,0x18,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x4a,0x4a,0x94,0x24,0x93,0x4a,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x00 -+// 24466 徒 ; -+,0x08,0x0c,0x10,0x29,0x4c,0x08,0x13,0x30,0x50,0x10,0x11,0x11,0x11,0x12,0x14,0x18,0x20,0x20,0x20,0xfc,0x20,0x20,0xfe,0x00,0x20,0x20,0x3c,0x20,0x20,0xa0,0x7f,0x00 -+// 24467 従 ; -+,0x08,0x0d,0x10,0x28,0x4f,0x08,0x10,0x30,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x00,0x04,0x86,0x48,0xff,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0xa0,0x7f,0x00 -+// 24468 徔 ; -+,0x08,0x0c,0x13,0x20,0x48,0x0c,0x18,0x2b,0x48,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x88,0x88,0xff,0x88,0x40,0x30,0x20,0xfe,0x04,0x08,0x30,0xc0,0x00,0xc0,0x3f,0x00 -+// 24469 徕 ; -+,0x08,0x0c,0x13,0x28,0x4d,0x08,0x10,0x37,0x50,0x10,0x10,0x11,0x12,0x14,0x18,0x10,0x20,0x20,0xfe,0x20,0x24,0xa4,0xa8,0xff,0x70,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 24470 徖 ; -+,0x08,0x0c,0x19,0x25,0x46,0x0c,0x18,0x28,0x49,0x08,0x08,0x08,0x08,0x09,0x0a,0x08,0x20,0x10,0xff,0x02,0x00,0xfe,0x00,0x00,0xff,0x10,0x94,0xd2,0x93,0x12,0x50,0x20 -+// 24471 得 ; -+,0x09,0x0d,0x11,0x25,0x45,0x08,0x09,0x18,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x08,0x08,0xff,0x08,0x88,0x88,0x88,0x28,0x10 -+// 24472 徘 ; -+,0x08,0x0c,0x10,0x2b,0x4c,0x18,0x33,0x50,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x90,0x90,0x90,0x9e,0x90,0x90,0x9e,0x90,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x90 -+// 24473 徙 ; -+,0x08,0x0c,0x11,0x29,0x4d,0x0b,0x10,0x30,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0x20,0x20,0x3e,0x20,0x20,0x20,0xa0,0x7f,0x00 -+// 24474 徚 ; -+,0x08,0x0c,0x13,0x28,0x4d,0x09,0x19,0x29,0x49,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x20,0x20,0xff,0x20,0xfe,0xa6,0x6a,0x32,0xfe,0x70,0xa8,0xa4,0x26,0x23,0x22,0x20 -+// 24475 徛 ; -+,0x08,0x0c,0x09,0x14,0x26,0x04,0x09,0x18,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x28,0x44,0xff,0x04,0xf4,0x14,0x14,0xf4,0x14,0x04,0x14,0x08 -+// 24476 徜 ; -+,0x08,0x0c,0x12,0x29,0x4d,0x0b,0x12,0x32,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x20,0x24,0x26,0xa4,0x28,0xfe,0x02,0x02,0xfa,0x8a,0x8a,0xfa,0x8a,0x02,0x0a,0x04 -+// 24477 徝 ; -+,0x08,0x0c,0x13,0x28,0x4c,0x09,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x0f,0x08,0x20,0x20,0xfe,0x40,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xff,0x00 -+// 24478 從 ; -+,0x08,0x0c,0x08,0x10,0x24,0x47,0x0c,0x18,0x28,0x48,0x08,0x08,0x08,0x09,0x09,0x0a,0x44,0x44,0x44,0xa4,0xaa,0x11,0x21,0x10,0x90,0x9f,0x90,0x90,0x90,0x50,0x3f,0x00 -+// 24479 徟 ; -+,0x08,0x0d,0x11,0x29,0x4d,0x09,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x00,0xfe,0x22,0x22,0x7a,0x22,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 24480 徠 ; -+,0x08,0x0c,0x13,0x28,0x4d,0x09,0x11,0x32,0x54,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x20,0x20,0xff,0x20,0x24,0x24,0x2a,0xb1,0x60,0xb0,0xa8,0x2c,0x27,0x22,0x20,0x20 -+// 24481 御 ; -+,0x01,0x11,0x19,0x32,0x4a,0x0c,0x17,0x30,0x52,0x12,0x12,0x12,0x12,0x17,0x10,0x10,0x00,0x00,0xef,0x89,0x89,0x89,0xe9,0x89,0x89,0xe9,0x89,0x8d,0xea,0x88,0x08,0x08 -+// 24482 徢 ; -+,0x08,0x0c,0x13,0x28,0x4d,0x08,0x13,0x30,0x51,0x10,0x11,0x11,0x11,0x11,0x12,0x14,0x20,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x3e,0x20,0x20,0x20,0xff,0x00 -+// 24483 徣 ; -+,0x08,0x0c,0x08,0x11,0x24,0x46,0x09,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0xff,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 24484 徤 ; -+,0x08,0x1b,0x20,0x49,0x0d,0x1a,0x37,0x52,0x10,0x14,0x13,0x11,0x12,0x12,0x14,0x18,0x10,0xfe,0x92,0x7f,0x12,0x12,0xbe,0x90,0xfe,0x90,0x7f,0x10,0x90,0x50,0x3f,0x00 -+// 24485 徥 ; -+,0x08,0x0d,0x11,0x29,0x4d,0x19,0x10,0x37,0x50,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x20,0x20,0x3f,0x20,0x20,0xa0,0x7f,0x00 -+// 24486 徦 ; -+,0x10,0x1b,0x12,0x22,0x4a,0x0b,0x12,0x33,0x52,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x00,0xde,0x42,0x42,0x42,0xde,0x00,0xff,0x22,0x12,0xd2,0x0c,0x0c,0x12,0x23,0x42 -+// 24487 徧 ; -+,0x08,0x0c,0x11,0x29,0x4d,0x09,0x19,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x08,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xff,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xa9,0x83 -+// 24488 徨 ; -+,0x08,0x0c,0x11,0x25,0x47,0x0d,0x19,0x28,0x4b,0x08,0x08,0x09,0x08,0x08,0x0b,0x08,0x20,0x40,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 24489 復 ; -+,0x08,0x0c,0x11,0x21,0x4a,0x0c,0x08,0x18,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x0b,0x80,0x80,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfc,0x48,0x48,0x30,0xcc,0x03 -+// 24490 循 ; -+,0x08,0x0d,0x11,0x29,0x4d,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x1e,0xf0,0x10,0x10,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x00 -+// 24491 徫 ; -+,0x08,0x0c,0x11,0x24,0x4f,0x08,0x11,0x31,0x51,0x10,0x13,0x11,0x17,0x10,0x10,0x10,0x20,0x20,0xfc,0x24,0xff,0x00,0xfc,0x04,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 24492 徬 ; -+,0x08,0x0c,0x13,0x28,0x4c,0x0b,0x1a,0x34,0x53,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x20,0x10,0xff,0x84,0x48,0xff,0x42,0x20,0xff,0x40,0x7c,0x44,0x84,0x84,0x14,0x08 -+// 24493 徭 ; -+,0x08,0x0d,0x18,0x35,0x46,0x0c,0x08,0x19,0x2a,0x4b,0x08,0x09,0x09,0x09,0x09,0x08,0x1e,0xf2,0x43,0x32,0xa4,0x88,0xfe,0x20,0x20,0xff,0x20,0x22,0x22,0x22,0xfe,0x00 -+// 24494 微 ; -+,0x11,0x19,0x15,0x25,0x57,0x18,0x17,0x30,0x53,0x12,0x12,0x12,0x12,0x14,0x18,0x10,0x08,0x0c,0x48,0x50,0xdf,0x32,0xd2,0x12,0xd2,0x4a,0x4a,0x44,0x6a,0x52,0x23,0x42 -+// 24495 徯 ; -+,0x08,0x0d,0x12,0x21,0x49,0x0c,0x09,0x10,0x33,0x50,0x17,0x10,0x10,0x11,0x12,0x14,0x0e,0xf4,0x22,0x12,0x40,0x8c,0xf0,0x84,0xfe,0x44,0xfe,0x40,0xa0,0x18,0x07,0x02 -+// 24496 徰 ; -+,0x08,0x0d,0x10,0x20,0x48,0x0c,0x1b,0x30,0x53,0x10,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0xff,0x10,0x9e,0x90,0x90,0xff,0x00,0xff,0x20,0x20,0x3e,0x20,0x20,0xff,0x00 -+// 24497 徱 ; -+,0x08,0x0f,0x10,0x23,0x4a,0x0e,0x1b,0x30,0x53,0x10,0x13,0x10,0x11,0x12,0x14,0x10,0x00,0xff,0x50,0xfe,0x52,0x52,0xfe,0x00,0xfe,0x00,0xff,0x20,0x24,0x23,0xa2,0x40 -+// 24498 徲 ; -+,0x10,0x1b,0x22,0x4a,0x0f,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x13,0x14,0x14,0x18,0x00,0xfe,0x02,0x02,0xfe,0x94,0x78,0x56,0x94,0x50,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 24499 徳 ; -+,0x08,0x0c,0x13,0x28,0x4d,0x09,0x19,0x29,0x49,0x08,0x08,0x0a,0x0a,0x0a,0x0a,0x08,0x20,0x20,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0xfe,0x00,0x22,0x99,0x91,0x85,0x7c,0x00 -+// 24500 徴 ; -+,0x10,0x18,0x22,0x42,0x13,0x18,0x17,0x30,0x50,0x17,0x10,0x10,0x10,0x17,0x10,0x10,0x88,0x8c,0xa8,0xa8,0xef,0x12,0xf2,0x8a,0x8a,0xea,0x84,0x84,0xe4,0x0a,0x13,0x22 -+// 24501 徵 ; -+,0x11,0x15,0x25,0x47,0x10,0x1f,0x30,0x57,0x11,0x17,0x11,0x11,0x1f,0x10,0x10,0x10,0x08,0x4c,0x48,0xc8,0x1f,0xd2,0x32,0xd2,0x12,0xd2,0x14,0x08,0xc8,0x14,0x23,0x42 -+// 24502 徶 ; -+,0x11,0x19,0x25,0x53,0x19,0x17,0x35,0x55,0x17,0x15,0x15,0x15,0x15,0x15,0x15,0x10,0x08,0x0c,0x28,0x48,0x0f,0xf2,0x2a,0x2a,0xaa,0x6a,0x24,0x24,0x2a,0x33,0x62,0x00 -+// 24503 德 ; -+,0x08,0x0c,0x13,0x28,0x4d,0x19,0x11,0x31,0x50,0x17,0x10,0x12,0x12,0x12,0x14,0x10,0x20,0x20,0xff,0x20,0xfe,0x4a,0x4a,0xfe,0x00,0xff,0x00,0xa2,0x91,0x85,0x7c,0x00 -+// 24504 徸 ; -+,0x08,0x0b,0x11,0x28,0x4f,0x08,0x1b,0x1a,0x2b,0x4a,0x0b,0x08,0x0b,0x08,0x0f,0x08,0x20,0xff,0x04,0x88,0xff,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 24505 徹 ; -+,0x12,0x19,0x27,0x42,0x14,0x17,0x10,0x37,0x54,0x17,0x14,0x17,0x14,0x14,0x15,0x14,0x08,0x0c,0xc8,0x10,0x9f,0xd2,0xb2,0xd2,0x52,0xca,0x4a,0xc4,0x44,0x4a,0x53,0xa2 -+// 24506 徺 ; -+,0x08,0x0c,0x09,0x10,0x2b,0x0d,0x1b,0x31,0x57,0x10,0x17,0x10,0x10,0x11,0x11,0x12,0x20,0x20,0xfe,0x20,0xff,0x04,0xdf,0x04,0xdf,0x00,0xff,0x90,0x90,0x11,0x11,0x0f -+// 24507 徻 ; -+,0x10,0x18,0x10,0x29,0x4e,0x0b,0x13,0x32,0x52,0x13,0x10,0x11,0x11,0x11,0x11,0x11,0x20,0x50,0x8c,0xfb,0x00,0xfe,0x26,0xaa,0x72,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 24508 徼 ; -+,0x10,0x19,0x13,0x22,0x53,0x1a,0x13,0x31,0x57,0x11,0x11,0x12,0x12,0x14,0x19,0x10,0x88,0x0c,0xc8,0x50,0xdf,0x72,0xd2,0x12,0xf2,0x0a,0xc4,0x44,0x4a,0x4a,0x51,0xa1 -+// 24509 徽 ; -+,0x10,0x1a,0x12,0x2b,0x4c,0x17,0x32,0x57,0x11,0x12,0x17,0x11,0x15,0x19,0x15,0x12,0x88,0xac,0xa8,0xf0,0x1f,0xd2,0x32,0xd2,0x0a,0x0a,0xec,0x04,0x44,0x2a,0x13,0x22 -+// 24510 徾 ; -+,0x08,0x0c,0x12,0x23,0x48,0x1b,0x10,0x33,0x50,0x13,0x10,0x13,0x12,0x12,0x13,0x10,0x88,0x8c,0xa8,0xe8,0x8f,0xd2,0x12,0xca,0x0a,0xca,0x04,0xc4,0x4a,0x4a,0xd1,0x21 -+// 24511 徿 ; -+,0x12,0x19,0x27,0x4a,0x0a,0x17,0x30,0x53,0x12,0x13,0x12,0x13,0x12,0x13,0x12,0x00,0x10,0x1e,0xd0,0x9e,0x82,0xde,0x10,0xde,0x50,0xde,0x50,0xde,0x51,0x51,0x8f,0x00 -+// 24512 忀 ; -+,0x10,0x18,0x13,0x21,0x49,0x0d,0x18,0x33,0x50,0x13,0x10,0x17,0x10,0x11,0x16,0x10,0x40,0x20,0xfe,0x54,0x54,0xdc,0x90,0xfe,0x90,0xfe,0x90,0xff,0x92,0xac,0xc7,0x82 -+// 24513 忁 ; -+,0x09,0x0d,0x19,0x11,0x21,0x4a,0x0b,0x14,0x37,0x50,0x17,0x10,0x11,0x16,0x11,0x12,0xfc,0x04,0xfc,0x04,0xfc,0x22,0xfe,0x21,0xff,0x20,0xff,0x50,0xac,0x23,0x24,0x62 -+// 24514 忂 ; -+,0x09,0x0d,0x11,0x29,0x4d,0x09,0x19,0x28,0x49,0x0b,0x0d,0x09,0x09,0x09,0x09,0x09,0xef,0x29,0xef,0x29,0xef,0x29,0xef,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff -+// 24515 心 ; -+,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x24,0x24,0x44,0x04,0x04,0x04,0x03,0x00,0x00,0x80,0x40,0x60,0x40,0x00,0x08,0x04,0x02,0x03,0x02,0x08,0x08,0x08,0xf8,0x00 -+// 24516 忄 ; -+,0x04,0x04,0x04,0x05,0x24,0x24,0x24,0x44,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 24517 必 ; -+,0x02,0x01,0x00,0x00,0x06,0x04,0x14,0x14,0x14,0x24,0x25,0x06,0x0c,0x17,0x60,0x00,0x00,0x08,0xcc,0x88,0x10,0x10,0x28,0x24,0x42,0x83,0x02,0x04,0x04,0xfc,0x00,0x00 -+// 24518 忆 ; -+,0x08,0x08,0x09,0x08,0x0a,0x29,0x29,0x28,0x48,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0xfe,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x80,0x01,0x01,0x01,0xfe,0x00 -+// 24519 忇 ; -+,0x08,0x08,0x08,0x08,0x2a,0x29,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 24520 忈 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x3f,0x01,0x00,0x04,0x24,0x24,0x24,0x44,0x03,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0xff,0x00,0x80,0x44,0x42,0x13,0x11,0x18,0xf0,0x00 -+// 24521 忉 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x0e,0x04 -+// 24522 忊 ; -+,0x08,0x08,0x08,0x08,0x2a,0x29,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 24523 忋 ; -+,0x08,0x09,0x08,0x0c,0x2b,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 24524 忌 ; -+,0x00,0x0f,0x00,0x00,0x0f,0x08,0x08,0x08,0x07,0x00,0x04,0x24,0x24,0x44,0x03,0x00,0x00,0xf8,0x08,0x08,0xf8,0x00,0x04,0x04,0xfc,0x80,0x44,0x42,0x0a,0x08,0xf8,0x00 -+// 24525 忍 ; -+,0x1f,0x00,0x08,0x08,0x09,0x11,0x02,0x04,0x09,0x00,0x04,0x14,0x14,0x14,0x23,0x00,0xfc,0x84,0x84,0x84,0x04,0x04,0x04,0x78,0x10,0x84,0x62,0x43,0x0a,0x08,0xf8,0x00 -+// 24526 忎 ; -+,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x02,0x12,0x12,0x12,0x21,0x00,0x00,0xfc,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x44,0x22,0x2b,0x0a,0xf8,0x00 -+// 24527 忏 ; -+,0x10,0x10,0x13,0x10,0x18,0x54,0x53,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x3e,0xe0,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 24528 忐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x14,0x14,0x14,0x24,0x23,0x00,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00,0x84,0x62,0x43,0x0a,0x08,0xf8,0x00 -+// 24529 忑 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x44,0x03,0x00,0x00,0xff,0x80,0xc0,0xb0,0x98,0x90,0x80,0x00,0x80,0x44,0x42,0x0b,0x0a,0xf8,0x00 -+// 24530 忒 ; -+,0x00,0x00,0x00,0x00,0x7f,0x00,0x04,0x02,0x03,0x0a,0x28,0x29,0x29,0x49,0x0f,0x00,0x50,0x48,0x48,0x40,0xff,0x40,0x40,0x20,0x20,0xa0,0x50,0x50,0x09,0x85,0x02,0x00 -+// 24531 忓 ; -+,0x08,0x09,0x08,0x08,0x2c,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24532 忔 ; -+,0x08,0x08,0x0c,0x0a,0x29,0x2a,0x49,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x08,0x08,0x40,0x40,0xff,0x80,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0x80,0x01,0x01,0xff,0x00 -+// 24533 忕 ; -+,0x10,0x10,0x10,0x18,0x55,0x54,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x50,0x50,0x48,0x88,0x84,0x04,0x03,0x02 -+// 24534 忖 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x04,0x04,0x04,0xff,0x04,0x04,0x84,0x44,0x64,0x44,0x04,0x04,0x04,0x3c,0x08 -+// 24535 志 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x04,0x24,0x24,0x24,0x44,0x03,0x00,0x80,0x80,0x80,0xff,0x80,0x80,0xfe,0x00,0x80,0x44,0x62,0x43,0x0a,0x0c,0xf8,0x00 -+// 24536 忘 ; -+,0x00,0x00,0x7f,0x08,0x08,0x08,0x08,0x0f,0x00,0x04,0x14,0x14,0x14,0x24,0x23,0x00,0x80,0x40,0xff,0x00,0x00,0x00,0x00,0xfe,0x00,0x80,0x44,0x42,0x0b,0x0a,0xf8,0x00 -+// 24537 忙 ; -+,0x10,0x10,0x10,0x1b,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x40,0x20,0x10,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 24538 忚 ; -+,0x10,0x10,0x11,0x15,0x55,0x51,0x57,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x20,0x20,0x20,0x20,0x2e,0xf2,0x22,0x22,0x22,0x22,0x2e,0x24,0x01,0x01,0xff,0x00 -+// 24539 忛 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x00,0xf8,0x88,0x88,0x88,0xc8,0xa8,0xb8,0xa8,0x88,0x88,0x89,0x89,0x09,0x07,0x00 -+// 24540 応 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x11,0x11,0x15,0x15,0x15,0x15,0x11,0x20,0x20,0x40,0x80,0x40,0xff,0x00,0x80,0x40,0x30,0x20,0x04,0x02,0x09,0x09,0x0d,0xf8,0x00,0x00 -+// 24541 忝 ; -+,0x00,0x1f,0x00,0x00,0x3f,0x01,0x02,0x04,0x08,0x10,0x28,0x08,0x10,0x10,0x22,0x01,0x00,0xfc,0x80,0x80,0xfe,0x40,0x20,0x98,0x87,0x82,0xa8,0x94,0x96,0x94,0x80,0x00 -+// 24542 忞 ; -+,0x01,0x00,0x3f,0x04,0x02,0x02,0x01,0x06,0x18,0x60,0x04,0x14,0x14,0x14,0x23,0x00,0x00,0x80,0xfe,0x10,0x20,0x20,0xc0,0x30,0x0c,0x83,0x44,0x62,0x4b,0x0a,0xf8,0x00 -+// 24543 忟 ; -+,0x08,0x08,0x08,0x0b,0x2c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x10,0x10,0xff,0x84,0x84,0x88,0x48,0x48,0x48,0x30,0x30,0x48,0x84,0x03,0x02 -+// 24544 忠 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x00,0x00,0x05,0x24,0x24,0x24,0x24,0x43,0x00,0x80,0x80,0xfc,0x84,0x84,0x84,0xfc,0x80,0x80,0x00,0x84,0xc2,0x8b,0x0a,0xf8,0x00 -+// 24545 忡 ; -+,0x08,0x08,0x08,0x09,0x2d,0x2b,0x49,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x11,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24546 忢 ; -+,0x00,0x3f,0x01,0x01,0x1f,0x02,0x02,0x7f,0x00,0x01,0x08,0x28,0x28,0x28,0x47,0x00,0x00,0xfe,0x00,0x00,0xf0,0x10,0x10,0xff,0x00,0x00,0x84,0xd2,0x93,0x1a,0xf0,0x00 -+// 24547 忣 ; -+,0x10,0x13,0x10,0x18,0x54,0x54,0x50,0x11,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x15,0x00,0xfc,0x84,0x84,0x88,0x88,0x8e,0x42,0x44,0x24,0x28,0x10,0x28,0x44,0x83,0x02 -+// 24548 忤 ; -+,0x10,0x10,0x10,0x18,0x55,0x55,0x52,0x50,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x80,0xc0,0x80,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24549 忥 ; -+,0x08,0x0f,0x08,0x17,0x20,0x4f,0x00,0x02,0x01,0x09,0x28,0x28,0x48,0x07,0x00,0x00,0x00,0xfe,0x00,0xfe,0x00,0xf8,0x08,0x08,0x08,0x48,0x28,0x48,0x49,0xc9,0x05,0x02 -+// 24550 忦 ; -+,0x10,0x10,0x10,0x18,0x54,0x55,0x52,0x14,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x20,0x20,0x50,0x48,0x84,0x03,0x8a,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 24551 忧 ; -+,0x10,0x10,0x10,0x18,0x54,0x53,0x50,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x12,0x14,0x40,0x48,0x46,0x44,0x40,0xff,0x50,0x50,0x90,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 24552 忨 ; -+,0x10,0x11,0x10,0x18,0x54,0x54,0x53,0x50,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x00,0xfc,0x00,0x00,0x00,0x00,0xff,0x88,0x88,0x88,0x88,0x88,0x09,0x09,0x07,0x00 -+// 24553 忩 ; -+,0x04,0x06,0x04,0x09,0x11,0x22,0x44,0x0f,0x04,0x01,0x04,0x14,0x14,0x24,0x23,0x00,0x20,0x20,0x20,0x10,0x88,0x27,0x12,0xf8,0x10,0x00,0x88,0x64,0x4a,0x0a,0xf8,0x00 -+// 24554 忪 ; -+,0x10,0x10,0x10,0x18,0x54,0x55,0x51,0x12,0x14,0x10,0x10,0x10,0x11,0x13,0x11,0x10,0x10,0x90,0xd0,0x90,0x88,0x08,0x44,0x63,0x42,0x40,0x88,0x84,0x3e,0xe3,0x02,0x00 -+// 24555 快 ; -+,0x10,0x10,0x10,0x1b,0x54,0x54,0x50,0x17,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0xff,0x40,0xa0,0xa0,0x90,0x08,0x0c,0x07,0x02 -+// 24556 忬 ; -+,0x08,0x09,0x08,0x08,0x2c,0x2a,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x06,0x48,0x30,0x10,0xff,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 24557 忭 ; -+,0x10,0x10,0x10,0x18,0x57,0x54,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x40,0x20,0x20,0x00,0xff,0x20,0x20,0x30,0x2c,0x26,0x22,0x20,0x20,0x20,0x20,0x20 -+// 24558 忮 ; -+,0x10,0x10,0x10,0x1b,0x56,0x54,0x51,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x20,0x20,0x20,0xfe,0x20,0x20,0xfc,0x04,0x84,0x88,0x48,0x30,0x48,0x84,0x07,0x02 -+// 24559 忯 ; -+,0x10,0x10,0x11,0x19,0x55,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x13,0x11,0x00,0x1e,0xe0,0x20,0x20,0x20,0xff,0x10,0x10,0x10,0x10,0x10,0x08,0x49,0x85,0x02 -+// 24560 忰 ; -+,0x08,0x08,0x09,0x08,0x2c,0x2a,0x4a,0x09,0x0a,0x0b,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0xf8,0x48,0x48,0x89,0x89,0x27,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20 -+// 24561 忱 ; -+,0x08,0x08,0x08,0x09,0x2d,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x0a,0x20,0x20,0x20,0xff,0x22,0x24,0x20,0x50,0x50,0x50,0x90,0x90,0x91,0x11,0x0f,0x00 -+// 24562 忲 ; -+,0x10,0x10,0x10,0x18,0x57,0x54,0x50,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x50,0x48,0x88,0xa4,0x26,0x13,0x12,0x00 -+// 24563 忳 ; -+,0x10,0x10,0x10,0x1b,0x54,0x54,0x52,0x52,0x12,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x20,0xfe,0x20,0x20,0x22,0x22,0x22,0xfe,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 24564 忴 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x28,0x49,0x0a,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x50,0x88,0xa4,0x13,0x12,0x00,0xfe,0x04,0x08,0x08,0x10,0x10,0x20 -+// 24565 念 ; -+,0x00,0x00,0x01,0x02,0x04,0x08,0x37,0x00,0x00,0x01,0x00,0x14,0x14,0x14,0x27,0x00,0x80,0x80,0x40,0x20,0x98,0x47,0xf2,0x10,0x20,0x40,0x80,0x44,0x4b,0x09,0xf8,0x00 -+// 24566 忶 ; -+,0x08,0x09,0x08,0x0c,0x2a,0x28,0x2b,0x48,0x08,0x08,0x08,0x08,0x09,0x0b,0x09,0x08,0x00,0xfe,0x00,0x00,0x00,0x00,0xff,0x20,0x40,0x40,0x88,0x84,0x1e,0xf3,0x02,0x00 -+// 24567 忷 ; -+,0x10,0x10,0x10,0x18,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x04,0x06,0x84,0x48,0x4a,0x2a,0x12,0x2a,0x2a,0x4e,0x4a,0x82,0x02,0xfe,0x02,0x00 -+// 24568 忸 ; -+,0x10,0x13,0x10,0x18,0x54,0x56,0x54,0x53,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0xfc,0x44,0x44,0x84,0x84,0x84,0xff,0x00,0x00 -+// 24569 忹 ; -+,0x10,0x13,0x10,0x18,0x54,0x56,0x54,0x53,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 24570 忺 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x29,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x80,0xc0,0x82,0xff,0x82,0x24,0x20,0x20,0x20,0x20,0x50,0x48,0x84,0x86,0x03,0x02 -+// 24571 忻 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x18,0x1c,0xf0,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 24572 忼 ; -+,0x10,0x10,0x10,0x1b,0x54,0x54,0x50,0x50,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x80,0x40,0x20,0xfe,0x00,0x00,0xf0,0x90,0x90,0x90,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 24573 忽 ; -+,0x04,0x04,0x07,0x09,0x11,0x22,0x04,0x18,0x03,0x1c,0x00,0x14,0x14,0x14,0x23,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x42,0x82,0x1c,0x08,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24574 忾 ; -+,0x10,0x10,0x10,0x19,0x55,0x52,0x51,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0xff,0x00,0xfe,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x02 -+// 24575 忿 ; -+,0x02,0x02,0x04,0x08,0x1f,0x61,0x02,0x04,0x08,0x30,0x04,0x24,0x24,0x44,0x03,0x00,0x10,0x10,0x08,0x04,0xfb,0x08,0x08,0x28,0x10,0x80,0x44,0x52,0x13,0x1a,0xf0,0x00 -+// 24576 怀 ; -+,0x08,0x09,0x08,0x08,0x2c,0x2a,0x4a,0x08,0x08,0x09,0x0a,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x10,0x10,0x20,0x30,0x68,0x64,0xa6,0x23,0x22,0x20,0x20,0x20,0x20,0x00 -+// 24577 态 ; -+,0x00,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x18,0x00,0x02,0x12,0x12,0x32,0x21,0x00,0x80,0x80,0xfe,0x80,0x40,0x20,0x90,0x4c,0x03,0x80,0x44,0x42,0x09,0x09,0xf8,0x00 -+// 24578 怂 ; -+,0x04,0x04,0x04,0x04,0x0a,0x09,0x11,0x60,0x01,0x00,0x24,0x24,0x64,0x44,0x03,0x00,0x20,0x20,0x20,0x20,0x20,0x50,0x48,0x87,0x00,0x80,0x44,0x42,0x0b,0x09,0xf8,0x00 -+// 24579 怃 ; -+,0x10,0x11,0x10,0x18,0x54,0x54,0x53,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x30,0x50,0x50,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 24580 怄 ; -+,0x10,0x13,0x12,0x1a,0x56,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x10,0x00,0xff,0x00,0x04,0x84,0x48,0x28,0x10,0x18,0x24,0x46,0x82,0x00,0x00,0xff,0x00 -+// 24581 怅 ; -+,0x10,0x10,0x10,0x18,0x54,0x54,0x50,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x84,0x84,0x88,0x90,0xe0,0x80,0xff,0xa0,0x90,0x90,0x88,0xa4,0xc7,0x82,0x00 -+// 24582 怆 ; -+,0x10,0x10,0x10,0x18,0x54,0x51,0x52,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x60,0x50,0x8c,0x07,0xfa,0x88,0x88,0x88,0xa8,0x90,0x82,0x82,0x7e,0x00 -+// 24583 怇 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0xfe,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 24584 怈 ; -+,0x10,0x11,0x11,0x19,0x55,0x53,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x3c,0x00,0x00,0x00,0xfe,0x00 -+// 24585 怉 ; -+,0x10,0x10,0x10,0x19,0x55,0x51,0x53,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x80,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x0a,0x04,0x00,0x01,0x01,0xff,0x00 -+// 24586 怊 ; -+,0x10,0x13,0x10,0x18,0x14,0x54,0x51,0x52,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x42,0x42,0x82,0x82,0x0a,0x04,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x00 -+// 24587 怋 ; -+,0x10,0x11,0x11,0x11,0x59,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0x08,0x09,0x45,0x83,0x01,0x00 -+// 24588 怌 ; -+,0x10,0x13,0x10,0x18,0x54,0x54,0x50,0x10,0x11,0x12,0x10,0x10,0x10,0x17,0x10,0x00,0x00,0xff,0x10,0x10,0x20,0x30,0x68,0xa4,0x22,0x23,0x21,0x20,0x20,0xff,0x00,0x00 -+// 24589 怍 ; -+,0x08,0x08,0x08,0x08,0x2c,0x2b,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x40,0x40,0x40,0xff,0xa0,0x20,0x3e,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20,0x00 -+// 24590 怎 ; -+,0x04,0x04,0x07,0x0a,0x13,0x22,0x02,0x03,0x02,0x02,0x00,0x12,0x12,0x32,0x01,0x00,0x00,0x00,0xff,0x00,0xfc,0x00,0x00,0xfc,0x00,0x80,0x44,0x42,0x09,0x09,0xf8,0x00 -+// 24591 怏 ; -+,0x10,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x17,0x10,0x10,0x10,0x10,0x11,0x16,0x00,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x20,0x50,0x50,0x88,0x04,0x03,0x00 -+// 24592 怐 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x40,0xfe,0x82,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0x02,0x0a,0x04 -+// 24593 怑 ; -+,0x10,0x10,0x11,0x18,0x54,0x54,0x51,0x10,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x24,0xa4,0xa8,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 24594 怒 ; -+,0x04,0x04,0x04,0x3f,0x09,0x11,0x0a,0x06,0x19,0x60,0x00,0x04,0x14,0x14,0x23,0x00,0x00,0x00,0xfe,0x44,0x24,0x28,0x10,0x28,0x47,0x02,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24595 怓 ; -+,0x11,0x11,0x11,0x17,0x59,0x55,0x52,0x12,0x16,0x11,0x10,0x11,0x12,0x14,0x19,0x00,0x00,0x00,0x1e,0xf2,0x52,0x52,0x52,0x4a,0x8a,0x84,0x84,0x4c,0x52,0x63,0x82,0x00 -+// 24596 怔 ; -+,0x10,0x13,0x10,0x18,0x54,0x54,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 24597 怕 ; -+,0x10,0x10,0x10,0x11,0x59,0x55,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x20,0x20,0x40,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x00 -+// 24598 怖 ; -+,0x10,0x10,0x13,0x18,0x54,0x54,0x51,0x11,0x13,0x15,0x19,0x11,0x11,0x10,0x10,0x10,0x20,0x20,0xff,0x40,0x50,0x90,0xfe,0x12,0x12,0x12,0x12,0x12,0x1a,0x14,0x10,0x10 -+// 24599 怗 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x2a,0x48,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x00 -+// 24600 怘 ; -+,0x00,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x14,0x14,0x24,0x24,0x03,0x00,0x80,0x80,0xff,0x80,0x80,0xf8,0x08,0x08,0xf8,0x00,0x84,0x42,0x4b,0x09,0xf8,0x00 -+// 24601 怙 ; -+,0x10,0x10,0x10,0x13,0x58,0x54,0x50,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x00 -+// 24602 怚 ; -+,0x10,0x11,0x11,0x19,0x15,0x55,0x51,0x51,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0xff,0x00,0x00 -+// 24603 怛 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x2a,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x00,0x00,0x00,0xff,0x00,0x00 -+// 24604 怜 ; -+,0x10,0x10,0x10,0x18,0x54,0x55,0x52,0x14,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x40,0x40,0x60,0x90,0x88,0x44,0x23,0x20,0xfe,0x04,0x08,0x90,0x60,0x30,0x20,0x00 -+// 24605 思 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x04,0x24,0x24,0x64,0x03,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0x80,0x44,0x42,0x0b,0x09,0xf8,0x00 -+// 24606 怞 ; -+,0x08,0x08,0x08,0x08,0x2d,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x10,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0x11,0xff,0x00,0x00 -+// 24607 怟 ; -+,0x10,0x10,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x08,0x08,0x04,0x45,0xa3,0x11,0x10 -+// 24608 怠 ; -+,0x01,0x02,0x04,0x0f,0x00,0x07,0x04,0x04,0x07,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0x10,0x08,0xfc,0x04,0xf8,0x08,0x08,0xf8,0x00,0x84,0x42,0x4b,0x09,0xf8,0x00 -+// 24609 怡 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x29,0x4b,0x08,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x20,0x40,0x44,0x82,0x1f,0xe1,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 24610 怢 ; -+,0x10,0x10,0x10,0x10,0x58,0x55,0x50,0x13,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x00,0x20,0x20,0xa0,0xa0,0xfe,0x20,0x20,0xff,0x20,0x20,0x50,0x48,0x84,0x07,0x02,0x00 -+// 24611 怣 ; -+,0x00,0x08,0x0f,0x10,0x00,0x3f,0x00,0x01,0x06,0x38,0x00,0x14,0x14,0x24,0x03,0x00,0x80,0x80,0xfc,0x80,0x80,0xfe,0x80,0x40,0x30,0x0f,0x80,0x44,0x42,0x0a,0xf8,0x00 -+// 24612 怤 ; -+,0x04,0x04,0x08,0x1b,0x28,0x49,0x08,0x08,0x08,0x00,0x04,0x24,0x24,0x64,0x03,0x00,0x08,0x08,0x08,0xff,0x08,0x08,0x88,0x88,0x28,0x90,0x40,0x44,0x13,0x11,0xf0,0x00 -+// 24613 急 ; -+,0x02,0x02,0x07,0x04,0x08,0x17,0x00,0x07,0x00,0x07,0x00,0x14,0x14,0x34,0x03,0x00,0x00,0x00,0xf0,0x20,0x40,0xf8,0x08,0xf8,0x08,0xf8,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24614 怦 ; -+,0x10,0x13,0x10,0x1a,0x55,0x55,0x50,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x20,0x24,0x24,0x28,0xa8,0xb0,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 24615 性 ; -+,0x10,0x10,0x10,0x18,0x55,0x55,0x52,0x10,0x10,0x10,0x10,0x10,0x10,0x13,0x10,0x00,0x10,0x90,0x90,0x90,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 24616 怨 ; -+,0x08,0x08,0x0f,0x11,0x11,0x32,0x4a,0x04,0x18,0x61,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0x7c,0x44,0x44,0x44,0x54,0x48,0x41,0x41,0x3f,0x80,0x84,0x02,0x0b,0xf9,0x00 -+// 24617 怩 ; -+,0x10,0x11,0x11,0x19,0x55,0x51,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x18,0x00,0x00,0xfe,0x02,0x02,0xfe,0x00,0x40,0x46,0x58,0x60,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 24618 怪 ; -+,0x10,0x13,0x11,0x18,0x54,0x54,0x50,0x11,0x16,0x10,0x13,0x10,0x10,0x17,0x10,0x00,0x00,0xfe,0x04,0x88,0x50,0x20,0x58,0xa7,0x22,0x20,0xfe,0x20,0x20,0xff,0x00,0x00 -+// 24619 怫 ; -+,0x10,0x10,0x11,0x18,0x14,0x55,0x51,0x51,0x11,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xff,0x49,0x49,0x8d,0x8a,0x08,0x08,0x08 -+// 24620 怬 ; -+,0x10,0x10,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x8e,0x02,0x02,0x02,0xfe,0x00,0x00 -+// 24621 怭 ; -+,0x10,0x10,0x10,0x10,0x18,0x54,0x50,0x52,0x12,0x14,0x10,0x10,0x10,0x11,0x16,0x00,0x00,0x40,0x24,0x26,0x84,0x88,0x88,0x92,0x91,0xa1,0xa0,0xc2,0x82,0x7e,0x00,0x00 -+// 24622 怮 ; -+,0x10,0x10,0x11,0x19,0x55,0x52,0x57,0x10,0x11,0x12,0x17,0x10,0x10,0x10,0x11,0x00,0x08,0x08,0x08,0x08,0x3e,0x4a,0x8a,0x8a,0x0a,0x8a,0xd2,0x52,0x22,0x4a,0x84,0x00 -+// 24623 怯 ; -+,0x10,0x10,0x10,0x18,0x54,0x54,0x50,0x10,0x13,0x10,0x10,0x10,0x10,0x11,0x10,0x00,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x40,0x44,0x82,0xff,0x02,0x00 -+// 24624 怰 ; -+,0x10,0x10,0x10,0x1b,0x54,0x54,0x50,0x11,0x10,0x10,0x10,0x10,0x11,0x13,0x10,0x00,0x40,0x20,0x20,0xff,0x20,0x44,0x88,0xf0,0x10,0x20,0x40,0x88,0x04,0xfe,0x02,0x00 -+// 24625 怱 ; -+,0x04,0x04,0x0f,0x11,0x67,0x02,0x0c,0x31,0x06,0x18,0x00,0x14,0x14,0x24,0x03,0x00,0x00,0x00,0xfc,0x24,0x24,0xc4,0x74,0x84,0x14,0x08,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24626 怲 ; -+,0x10,0x13,0x10,0x18,0x54,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xff,0x20,0x20,0x20,0xfe,0x22,0x22,0x32,0x4a,0x4a,0x82,0x02,0x0a,0x04,0x00 -+// 24627 怳 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x50,0x50,0x50,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 24628 怴 ; -+,0x10,0x10,0x10,0x18,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x14,0x12,0x10,0xff,0x10,0x10,0x10,0x12,0x12,0x0c,0x08,0x55,0xa5,0x43,0x01 -+// 24629 怵 ; -+,0x10,0x10,0x10,0x18,0x55,0x54,0x50,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x00,0x20,0x28,0x26,0x24,0xff,0x20,0x60,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20,0x00 -+// 24630 怶 ; -+,0x10,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x11,0x10,0x10,0x10,0xff,0x12,0x10,0x10,0xfe,0x44,0x44,0x28,0x28,0x10,0x28,0x44,0x83 -+// 24631 怷 ; -+,0x00,0x00,0x00,0x3f,0x02,0x04,0x04,0x08,0x10,0x00,0x04,0x14,0x14,0x24,0x03,0x00,0x80,0x90,0x88,0xff,0x90,0x90,0x90,0x90,0x8f,0x80,0x00,0x82,0x49,0x09,0xf8,0x00 -+// 24632 怸 ; -+,0x00,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x04,0x14,0x14,0x24,0x03,0x00,0x90,0x8c,0x84,0xff,0xa0,0x90,0x8c,0x87,0x82,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24633 怹 ; -+,0x04,0x04,0x08,0x09,0x19,0x2f,0x49,0x09,0x09,0x08,0x00,0x04,0x14,0x14,0x23,0x00,0x20,0x20,0x24,0x3c,0xe4,0x24,0x34,0x29,0x01,0xff,0x00,0x80,0x4a,0x09,0xf9,0x00 -+// 24634 怺 ; -+,0x08,0x08,0x08,0x0d,0x2a,0x28,0x2b,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x08,0x00,0x40,0x20,0x00,0xe0,0x22,0x22,0xe4,0x78,0xa8,0xa8,0x24,0x24,0x23,0xa2,0x40,0x00 -+// 24635 总 ; -+,0x04,0x02,0x02,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x10,0x10,0x20,0xf8,0x08,0x08,0x08,0xf8,0x00,0x80,0x44,0x42,0x0b,0x09,0xf8,0x00 -+// 24636 怼 ; -+,0x00,0x3f,0x01,0x12,0x0a,0x04,0x0a,0x11,0x21,0x00,0x04,0x14,0x14,0x24,0x03,0x00,0x08,0x08,0x08,0xff,0x08,0x48,0x28,0x08,0x28,0x10,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24637 怽 ; -+,0x10,0x10,0x10,0x19,0x54,0x54,0x53,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 24638 怾 ; -+,0x08,0x08,0x08,0x08,0x2c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x08,0x00,0xfc,0x84,0x84,0x84,0x84,0x84,0xfc,0x00,0x48,0x44,0x82,0x82,0x01,0x01,0x00 -+// 24639 怿 ; -+,0x11,0x10,0x10,0x18,0x54,0x50,0x53,0x10,0x11,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0xfe,0x84,0x48,0x30,0x30,0xc8,0x27,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24640 恀 ; -+,0x10,0x10,0x10,0x18,0x55,0x50,0x50,0x13,0x10,0x10,0x11,0x16,0x10,0x10,0x17,0x10,0x20,0x20,0x7e,0x84,0x48,0x10,0x68,0x9f,0x21,0x42,0xc4,0x28,0x30,0xc0,0x00,0x00 -+// 24641 恁 ; -+,0x04,0x05,0x08,0x08,0x1b,0x28,0x48,0x08,0x09,0x00,0x04,0x14,0x14,0x24,0x03,0x00,0x3e,0xe0,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24642 恂 ; -+,0x08,0x08,0x08,0x08,0x2d,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x40,0x40,0x80,0xfe,0x02,0x02,0xf2,0x92,0xf2,0x92,0xf2,0x02,0x02,0x0a,0x04,0x00 -+// 24643 恃 ; -+,0x10,0x10,0x11,0x18,0x54,0x53,0x50,0x10,0x13,0x10,0x11,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0x08,0xff,0x08,0x08,0x88,0x08,0x28,0x10,0x00 -+// 24644 恄 ; -+,0x10,0x10,0x10,0x13,0x18,0x54,0x54,0x51,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x00 -+// 24645 恅 ; -+,0x10,0x10,0x11,0x18,0x54,0x50,0x57,0x10,0x10,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x40,0x40,0xfa,0x42,0x44,0x48,0xff,0x20,0x40,0x8c,0xb0,0xc0,0x81,0x81,0x7f,0x00 -+// 24646 恆 ; -+,0x10,0x13,0x10,0x18,0x54,0x54,0x50,0x10,0x10,0x11,0x12,0x10,0x10,0x17,0x10,0x00,0x00,0xff,0x40,0x40,0x7e,0x42,0x42,0xa2,0x94,0x44,0x24,0x28,0x08,0xff,0x00,0x00 -+// 24647 恇 ; -+,0x10,0x11,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0xff,0x00,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0xfe,0x00,0x00,0xff,0x00,0x00 -+// 24648 恈 ; -+,0x10,0x10,0x10,0x19,0x54,0x54,0x51,0x11,0x12,0x14,0x13,0x10,0x10,0x10,0x10,0x10,0x20,0x48,0x84,0xfe,0x22,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 24649 恉 ; -+,0x11,0x11,0x11,0x19,0x55,0x55,0x50,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x08,0x30,0xc0,0x02,0x02,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 24650 恊 ; -+,0x10,0x10,0x11,0x18,0x54,0x54,0x53,0x11,0x11,0x17,0x11,0x12,0x12,0x15,0x18,0x10,0x20,0x20,0xfc,0x24,0x44,0x84,0x14,0x08,0x08,0xde,0x4a,0x4a,0x52,0x5a,0xe4,0x00 -+// 24651 恋 ; -+,0x01,0x00,0x3f,0x02,0x0a,0x0a,0x12,0x62,0x02,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0x80,0xff,0x20,0x28,0x24,0x23,0x22,0x20,0x00,0x84,0x42,0x49,0x09,0xf8,0x00 -+// 24652 恌 ; -+,0x10,0x10,0x10,0x1a,0x55,0x55,0x50,0x10,0x11,0x16,0x10,0x10,0x11,0x12,0x14,0x00,0x50,0x50,0x52,0x52,0x54,0x58,0x50,0xd8,0x54,0x52,0x92,0x90,0x11,0x11,0x0f,0x00 -+// 24653 恍 ; -+,0x10,0x10,0x12,0x19,0x54,0x50,0x57,0x10,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x20,0x20,0x26,0x24,0xa8,0xb0,0xff,0x50,0x50,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 24654 恎 ; -+,0x10,0x13,0x10,0x18,0x54,0x54,0x51,0x10,0x10,0x11,0x10,0x10,0x10,0x13,0x10,0x00,0x00,0xff,0x20,0x40,0x48,0x84,0xfe,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 24655 恏 ; -+,0x04,0x04,0x08,0x7f,0x11,0x32,0x0c,0x0a,0x11,0x60,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0x7e,0x04,0x08,0x08,0xff,0x08,0x08,0x28,0x10,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24656 恐 ; -+,0x00,0x3e,0x08,0x08,0x08,0x0a,0x0d,0x71,0x02,0x04,0x00,0x04,0x14,0x14,0x33,0x00,0x00,0xf8,0x88,0xc8,0xa8,0xa8,0x09,0x09,0x07,0x80,0x40,0x40,0x0a,0x09,0xf9,0x00 -+// 24657 恑 ; -+,0x10,0x10,0x10,0x19,0x57,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x80,0xfc,0x84,0x08,0xff,0x00,0x7c,0x44,0x44,0x44,0x54,0x48,0x41,0x41,0x3f,0x00 -+// 24658 恒 ; -+,0x10,0x13,0x10,0x18,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x10,0x10,0x17,0x10,0x00,0x00,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00,0x00,0xff,0x00,0x00 -+// 24659 恓 ; -+,0x10,0x13,0x10,0x18,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0x52,0x52,0x9e,0x02,0x02,0x02,0xfe,0x00,0x00 -+// 24660 恔 ; -+,0x10,0x10,0x10,0x1b,0x54,0x54,0x51,0x13,0x14,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x40,0x20,0x20,0xff,0x88,0x84,0x06,0x09,0x89,0x90,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 24661 恕 ; -+,0x08,0x08,0x7f,0x12,0x12,0x34,0x0c,0x0a,0x11,0x60,0x04,0x14,0x14,0x34,0x23,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x00,0x00,0x84,0x42,0x4b,0x0a,0xf8,0x00 -+// 24662 恖 ; -+,0x01,0x02,0x0f,0x08,0x0b,0x08,0x08,0x0b,0x08,0x0f,0x00,0x24,0x24,0x64,0x03,0x00,0x00,0x00,0xfc,0x04,0x34,0xc4,0xa4,0x14,0x04,0xfc,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24663 恗 ; -+,0x08,0x08,0x09,0x0c,0x2a,0x2a,0x49,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x20,0x20,0xff,0x30,0x48,0xfc,0x03,0xfe,0x20,0x7c,0x04,0x04,0x04,0x14,0x08,0x00 -+// 24664 恘 ; -+,0x10,0x10,0x10,0x19,0x55,0x53,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x90,0xd0,0x90,0x90,0x7f,0x10,0x38,0x38,0x54,0x54,0x93,0x12,0x10,0x10,0x10,0x00 -+// 24665 恙 ; -+,0x04,0x02,0x1f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x10,0x20,0xfe,0x80,0x80,0xfc,0x80,0x80,0xff,0x00,0x80,0x42,0x41,0x09,0xf8,0x00 -+// 24666 恚 ; -+,0x00,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x00,0x00,0x3f,0x00,0x04,0x14,0x14,0x33,0x00,0x80,0x80,0xf8,0x80,0xfe,0x80,0xf8,0x80,0x80,0xff,0x00,0x80,0x4a,0x09,0xf9,0x00 -+// 24667 恛 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0xfe,0x02,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x02,0xfe,0x00,0x00 -+// 24668 恜 ; -+,0x10,0x10,0x10,0x1b,0x54,0x50,0x50,0x13,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x00,0x10,0x14,0x12,0xff,0x10,0x10,0x10,0xe8,0x88,0x88,0xa4,0xc5,0x05,0x03,0x01,0x00 -+// 24669 恝 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x04,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0x7e,0x92,0x12,0x92,0x22,0xa2,0x4a,0x84,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24670 恞 ; -+,0x10,0x10,0x13,0x18,0x55,0x54,0x51,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x22,0x56,0x48,0x84,0x07,0x02 -+// 24671 恟 ; -+,0x10,0x10,0x10,0x19,0x55,0x52,0x54,0x12,0x12,0x12,0x12,0x13,0x10,0x10,0x10,0x00,0x80,0x80,0x80,0xfe,0x02,0x02,0x02,0xaa,0x4a,0xaa,0x0a,0xfa,0x02,0x0a,0x04,0x00 -+// 24672 恠 ; -+,0x10,0x10,0x13,0x18,0x54,0x54,0x50,0x11,0x13,0x15,0x19,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0xff,0x40,0x50,0x90,0x90,0x10,0x7e,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 24673 恡 ; -+,0x11,0x10,0x10,0x18,0x55,0x50,0x53,0x10,0x10,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0x04,0xc8,0x30,0x48,0x84,0x20,0xff,0x40,0x40,0x90,0x90,0x24,0x42,0xff,0x01,0x00 -+// 24674 恢 ; -+,0x10,0x10,0x10,0x1b,0x54,0x54,0x51,0x11,0x11,0x12,0x12,0x14,0x18,0x11,0x16,0x10,0x80,0x80,0x80,0xff,0xa0,0xa0,0x24,0xa4,0x68,0x30,0x30,0x48,0x44,0x87,0x02,0x00 -+// 24675 恣 ; -+,0x00,0x20,0x10,0x11,0x05,0x0a,0x30,0x10,0x13,0x00,0x00,0x14,0x14,0x34,0x03,0x00,0x80,0x80,0xfe,0x24,0x28,0x20,0x50,0x88,0x07,0x02,0x80,0x42,0x41,0x09,0xf8,0x00 -+// 24676 恤 ; -+,0x10,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0x40,0x40,0x80,0xfc,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0xff,0x00,0x00 -+// 24677 恥 ; -+,0x00,0x7f,0x12,0x12,0x1e,0x12,0x12,0x1e,0x13,0x13,0x1e,0x72,0x02,0x02,0x02,0x00,0x00,0x90,0x08,0x08,0x40,0x40,0x42,0xc1,0x41,0x41,0x40,0x42,0x42,0x3e,0x00,0x00 -+// 24678 恦 ; -+,0x10,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0x40,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04,0x00 -+// 24679 恧 ; -+,0x00,0x3f,0x01,0x02,0x0f,0x09,0x09,0x09,0x09,0x08,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0xff,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x14,0x88,0x42,0x49,0x09,0xf8,0x00 -+// 24680 恨 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x22,0x26,0x18,0x10,0x48,0x87,0x02,0x00 -+// 24681 恩 ; -+,0x0f,0x08,0x08,0x0b,0x08,0x08,0x09,0x0f,0x00,0x00,0x14,0x14,0x24,0x24,0x03,0x00,0xfc,0x44,0x44,0xfc,0x44,0xa4,0x14,0xfc,0x00,0x80,0x44,0x42,0x0b,0x0a,0xf8,0x00 -+// 24682 恪 ; -+,0x08,0x08,0x08,0x0c,0x2b,0x2a,0x48,0x08,0x09,0x0e,0x08,0x08,0x08,0x08,0x08,0x00,0x40,0x40,0xfe,0x84,0x48,0x30,0x30,0x4c,0x83,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00 -+// 24683 恫 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x02,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04,0x00 -+// 24684 恬 ; -+,0x10,0x10,0x13,0x18,0x54,0x53,0x50,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x3e,0xe0,0x20,0x20,0xff,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0xfc,0x00 -+// 24685 恭 ; -+,0x02,0x02,0x1f,0x02,0x02,0x3f,0x02,0x04,0x08,0x10,0x60,0x08,0x08,0x10,0x02,0x01,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x10,0x88,0x84,0x83,0xa8,0x94,0x94,0x80,0x00 -+// 24686 恮 ; -+,0x10,0x10,0x10,0x18,0x55,0x52,0x55,0x10,0x10,0x11,0x10,0x10,0x10,0x13,0x10,0x00,0x40,0x40,0x60,0x90,0x08,0x07,0xfa,0x20,0x20,0xf8,0x20,0x20,0x20,0xfe,0x00,0x00 -+// 24687 息 ; -+,0x00,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x80,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24688 恰 ; -+,0x10,0x10,0x10,0x18,0x14,0x51,0x53,0x54,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x40,0x60,0x90,0x88,0x04,0xfb,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 24689 恱 ; -+,0x10,0x10,0x10,0x19,0x55,0x52,0x54,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x10,0x10,0x90,0x88,0x08,0x44,0x43,0x88,0xfc,0x54,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 24690 恲 ; -+,0x10,0x11,0x10,0x18,0x55,0x54,0x50,0x10,0x17,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x08,0x88,0x90,0xfe,0x88,0x88,0x88,0xff,0x88,0x88,0x08,0x08,0x08,0x08,0x08 -+// 24691 恳 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0a,0x0c,0x08,0x00,0x24,0x24,0x64,0x03,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x84,0x48,0x30,0x0e,0x84,0x40,0x42,0x09,0xf8,0x00 -+// 24692 恴 ; -+,0x01,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0x80,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x80,0x44,0x42,0x0a,0xf8,0x00 -+// 24693 恵 ; -+,0x00,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x14,0x14,0x34,0x03,0x00,0x80,0x80,0xff,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24694 恶 ; -+,0x00,0x1f,0x01,0x11,0x09,0x05,0x05,0x01,0x3f,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0xfe,0x20,0x24,0x24,0x28,0x30,0x20,0xff,0x00,0x84,0x42,0x0b,0x09,0xf8,0x00 -+// 24695 恷 ; -+,0x08,0x0c,0x08,0x1b,0x28,0x48,0x08,0x0b,0x08,0x08,0x00,0x24,0x24,0x64,0x03,0x00,0x20,0x20,0x20,0xfe,0x20,0x70,0xa8,0x27,0x22,0x20,0x80,0x42,0x01,0x09,0xf8,0x00 -+// 24696 恸 ; -+,0x10,0x10,0x13,0x18,0x54,0x50,0x57,0x11,0x11,0x12,0x12,0x17,0x10,0x10,0x10,0x00,0x08,0x08,0xc8,0x08,0x3f,0x09,0xe9,0x09,0x09,0x09,0x91,0xd1,0x21,0x45,0x82,0x00 -+// 24697 恹 ; -+,0x08,0x09,0x09,0x09,0x2d,0x2b,0x49,0x09,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x0b,0x08,0x00,0xff,0x10,0x14,0x12,0x10,0xff,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 24698 恺 ; -+,0x10,0x11,0x11,0x19,0x55,0x50,0x51,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x20,0x22,0x22,0x22,0xfe,0x00,0xfe,0x02,0x02,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 24699 恻 ; -+,0x10,0x13,0x12,0x1a,0x56,0x52,0x52,0x12,0x12,0x12,0x12,0x10,0x11,0x12,0x14,0x00,0x01,0xe1,0x21,0x29,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x81,0x41,0x25,0x22,0x00 -+// 24700 恼 ; -+,0x10,0x10,0x10,0x1b,0x54,0x54,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x40,0x20,0x20,0xff,0x00,0x08,0x8a,0x52,0x32,0x32,0x4a,0x8a,0x02,0x02,0xfe,0x00 -+// 24701 恽 ; -+,0x10,0x13,0x12,0x18,0x55,0x54,0x50,0x11,0x11,0x10,0x10,0x13,0x10,0x10,0x10,0x10,0x00,0xff,0x42,0x40,0xfe,0x80,0xa0,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24702 恾 ; -+,0x10,0x10,0x13,0x18,0x54,0x54,0x50,0x17,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x88,0x88,0xff,0x88,0x88,0x40,0x20,0xff,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00 -+// 24703 恿 ; -+,0x0f,0x01,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x01,0x04,0x14,0x14,0x33,0x00,0xf8,0x10,0xa0,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x08,0x80,0x84,0x0a,0xfa,0x00 -+// 24704 悀 ; -+,0x10,0x11,0x10,0x18,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x24,0x18,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x15,0x12,0x00 -+// 24705 悁 ; -+,0x10,0x11,0x11,0x19,0x55,0x54,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0x0a,0x04,0x00 -+// 24706 悂 ; -+,0x11,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x10,0x10,0x11,0x10,0x10,0x17,0x10,0x00,0x10,0x10,0x12,0xdc,0x10,0x11,0x51,0xaf,0x20,0x20,0xfc,0x20,0x20,0xff,0x00,0x00 -+// 24707 悃 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x00,0xff,0x11,0x11,0xff,0x31,0x39,0x55,0x57,0x95,0x11,0x11,0x11,0xff,0x00,0x00 -+// 24708 悄 ; -+,0x08,0x08,0x09,0x0c,0x2a,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x20,0x20,0x22,0xa4,0xa8,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x0a,0x04,0x00 -+// 24709 悅 ; -+,0x10,0x10,0x10,0x19,0x56,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x13,0x00,0x40,0x48,0x84,0x03,0xfd,0x84,0x84,0x84,0xfc,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 24710 悆 ; -+,0x00,0x01,0x02,0x04,0x1b,0x60,0x1f,0x04,0x08,0x32,0x01,0x04,0x14,0x14,0x33,0x00,0x80,0x40,0x20,0x18,0xe7,0x80,0xfc,0x90,0x8c,0x84,0x00,0x40,0x24,0x0a,0xfa,0x00 -+// 24711 悇 ; -+,0x10,0x10,0x10,0x18,0x55,0x56,0x50,0x10,0x13,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x20,0x20,0x50,0x88,0x04,0xfb,0x20,0x20,0xff,0x20,0x28,0x24,0x22,0xa2,0x40,0x00 -+// 24712 悈 ; -+,0x10,0x10,0x10,0x1b,0x54,0x55,0x51,0x17,0x11,0x11,0x11,0x12,0x12,0x14,0x18,0x00,0x10,0x14,0x12,0xff,0x10,0x50,0x4a,0xfa,0x4a,0x4c,0x44,0x45,0x4d,0x53,0x61,0x00 -+// 24713 悉 ; -+,0x00,0x0f,0x04,0x02,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x14,0x14,0x34,0x03,0x00,0x78,0x80,0x90,0xa0,0xff,0xc0,0xa0,0x90,0x8e,0x84,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24714 悊 ; -+,0x04,0x04,0x04,0x3f,0x04,0x07,0x3c,0x04,0x14,0x0d,0x00,0x02,0x0a,0x0a,0x19,0x00,0x0e,0x70,0x40,0x40,0x7f,0x48,0x48,0x88,0x88,0x08,0x40,0x20,0x22,0x05,0xfd,0x00 -+// 24715 悋 ; -+,0x10,0x10,0x13,0x18,0x54,0x54,0x50,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x40,0x20,0xff,0x88,0x88,0x50,0x30,0xcc,0x03,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00 -+// 24716 悌 ; -+,0x10,0x10,0x11,0x18,0x54,0x55,0x51,0x11,0x11,0x10,0x10,0x10,0x11,0x16,0x10,0x00,0x84,0x48,0xfe,0x22,0x22,0xfe,0x20,0x20,0xff,0x61,0xa1,0xa5,0x22,0x20,0x20,0x00 -+// 24717 悍 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x50,0x13,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x00 -+// 24718 悎 ; -+,0x10,0x10,0x10,0x19,0x55,0x52,0x57,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0xa0,0xa0,0xfe,0x20,0x20,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 24719 悏 ; -+,0x10,0x10,0x10,0x1b,0x54,0x55,0x51,0x11,0x12,0x14,0x10,0x10,0x10,0x11,0x16,0x00,0x20,0x20,0x20,0xff,0x20,0x24,0x24,0xa4,0x6a,0x31,0x50,0x48,0x88,0x04,0x03,0x00 -+// 24720 悐 ; -+,0x04,0x24,0x18,0x18,0x64,0x06,0x0a,0x12,0x62,0x15,0x08,0x04,0x14,0x14,0x33,0x00,0x10,0x10,0x12,0x92,0x54,0x18,0x10,0x28,0x44,0x83,0x00,0x80,0x42,0x09,0xf9,0x00 -+// 24721 悑 ; -+,0x10,0x10,0x10,0x1b,0x54,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x24,0x22,0xff,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x24,0x00 -+// 24722 悒 ; -+,0x10,0x11,0x11,0x19,0x55,0x54,0x53,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x11,0x10,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 24723 悓 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 24724 悔 ; -+,0x10,0x10,0x10,0x19,0x55,0x52,0x54,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0xff,0x00,0xfc,0x84,0xa4,0x94,0xff,0x84,0xa4,0x94,0xff,0x04,0x14,0x08 -+// 24725 悕 ; -+,0x10,0x10,0x10,0x18,0x55,0x50,0x57,0x10,0x11,0x13,0x15,0x11,0x11,0x11,0x10,0x10,0x04,0xc8,0x30,0x48,0xa6,0x40,0xff,0xa0,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 24726 悖 ; -+,0x10,0x10,0x11,0x18,0x57,0x52,0x50,0x11,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0xfe,0x20,0xff,0x02,0x00,0xfc,0x10,0x20,0xff,0x20,0x20,0xa0,0x40,0x00 -+// 24727 悗 ; -+,0x10,0x10,0x10,0x18,0x55,0x53,0x55,0x11,0x11,0x10,0x10,0x10,0x10,0x11,0x16,0x00,0x40,0x40,0xfc,0x88,0x10,0xfe,0x22,0x22,0xfe,0x30,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 24728 悘 ; -+,0x1f,0x12,0x13,0x14,0x1f,0x10,0x11,0x16,0x1f,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0xfe,0x00,0xfc,0x40,0xfe,0xa0,0x10,0x08,0xfe,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24729 悙 ; -+,0x10,0x10,0x11,0x18,0x54,0x54,0x50,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x08,0x10,0x10,0x10,0x50,0x20,0x00 -+// 24730 悚 ; -+,0x10,0x10,0x13,0x18,0x55,0x55,0x51,0x11,0x10,0x10,0x10,0x11,0x16,0x10,0x10,0x00,0x20,0x20,0xff,0x20,0xfe,0x22,0x22,0xfe,0x20,0x70,0xa8,0x24,0x27,0x22,0x20,0x00 -+// 24731 悛 ; -+,0x10,0x10,0x10,0x18,0x54,0x54,0x50,0x11,0x12,0x10,0x11,0x10,0x10,0x10,0x13,0x10,0x20,0x20,0x44,0xfe,0x02,0x84,0x82,0x41,0x7d,0x84,0x48,0x30,0x30,0xc8,0x07,0x02 -+// 24732 悜 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x2a,0x48,0x09,0x08,0x08,0x09,0x08,0x08,0x0b,0x08,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x00 -+// 24733 悝 ; -+,0x10,0x11,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x10,0x10,0x13,0x10,0x10,0x17,0x10,0x00,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 24734 悞 ; -+,0x10,0x10,0x11,0x19,0x55,0x55,0x51,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x13,0x00,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfc,0x24,0x24,0xff,0x20,0x50,0x48,0x84,0x03,0x00 -+// 24735 悟 ; -+,0x10,0x13,0x10,0x18,0x55,0x50,0x50,0x17,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0xfe,0x40,0x40,0xf8,0x88,0x88,0xff,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x00 -+// 24736 悠 ; -+,0x08,0x08,0x10,0x14,0x35,0x56,0x14,0x14,0x10,0x10,0x00,0x04,0x24,0x24,0x63,0x00,0x40,0x40,0xff,0x84,0x48,0x28,0x10,0x28,0xc7,0x02,0x80,0x40,0x4a,0x09,0xf9,0x00 -+// 24737 悡 ; -+,0x03,0x3e,0x02,0x3f,0x02,0x07,0x0a,0x32,0x02,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0xc2,0x02,0x12,0xd2,0x12,0x12,0x82,0x0a,0x04,0x80,0x40,0x42,0x09,0x09,0xf8,0x00 -+// 24738 悢 ; -+,0x10,0x10,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x40,0x26,0x18,0x08,0x44,0x87,0x02,0x00 -+// 24739 患 ; -+,0x00,0x00,0x0f,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x00,0x14,0x14,0x24,0x03,0x00,0x40,0x40,0xfc,0x44,0xfc,0x40,0xfc,0x44,0xfc,0x40,0x40,0x82,0x49,0x09,0xf8,0x00 -+// 24740 悤 ; -+,0x01,0x02,0x1f,0x11,0x11,0x13,0x14,0x10,0x13,0x1f,0x00,0x24,0x24,0x64,0x03,0x00,0x00,0x00,0xfc,0x04,0xf4,0x24,0xc4,0xa4,0x04,0xfc,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24741 悥 ; -+,0x00,0x3f,0x00,0x0f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x24,0x24,0x64,0x03,0x00,0x80,0xff,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24742 悦 ; -+,0x11,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x11,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x04,0x88,0x50,0xfc,0x04,0x04,0x04,0x04,0xfc,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 24743 悧 ; -+,0x10,0x10,0x13,0x18,0x54,0x57,0x50,0x11,0x11,0x12,0x12,0x14,0x10,0x10,0x10,0x00,0x01,0xe1,0x81,0x89,0x89,0xe9,0x89,0xc9,0xa9,0x89,0x89,0x89,0x81,0x85,0x82,0x00 -+// 24744 您 ; -+,0x04,0x04,0x08,0x09,0x1a,0x19,0x29,0x4a,0x08,0x08,0x00,0x14,0x14,0x34,0x03,0x00,0x00,0x80,0xff,0x02,0x20,0x28,0x24,0x22,0xa2,0x40,0x00,0x82,0x49,0x09,0xf8,0x00 -+// 24745 悩 ; -+,0x10,0x10,0x12,0x19,0x55,0x54,0x50,0x10,0x12,0x12,0x12,0x13,0x12,0x13,0x10,0x00,0x00,0x42,0x23,0x22,0x04,0x00,0x08,0x88,0x52,0x32,0x4a,0x86,0x02,0xfe,0x00,0x00 -+// 24746 悪 ; -+,0x00,0x1f,0x01,0x0f,0x09,0x09,0x0f,0x01,0x01,0x3f,0x00,0x12,0x12,0x32,0x01,0x00,0x00,0xfe,0x20,0xfc,0x24,0x24,0xfc,0x20,0x20,0xff,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24747 悫 ; -+,0x00,0x3f,0x00,0x0f,0x00,0x3f,0x20,0x03,0x02,0x0c,0x00,0x14,0x14,0x34,0x03,0x00,0x80,0xfe,0x80,0xf8,0x00,0xff,0x02,0xe0,0x21,0x1f,0x80,0x44,0x42,0x0a,0xf8,0x00 -+// 24748 悬 ; -+,0x07,0x04,0x07,0x04,0x07,0x04,0x3f,0x02,0x04,0x0f,0x00,0x04,0x14,0x14,0x33,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x00,0x08,0xfc,0x04,0x80,0x42,0x09,0xf9,0x00 -+// 24749 悭 ; -+,0x10,0x11,0x11,0x19,0x55,0x51,0x51,0x10,0x10,0x10,0x11,0x10,0x10,0x17,0x10,0x00,0x40,0x7f,0x51,0x4a,0x44,0x4a,0x51,0x40,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x00 -+// 24750 悮 ; -+,0x10,0x10,0x10,0x18,0x54,0x54,0x51,0x10,0x10,0x13,0x10,0x10,0x10,0x10,0x13,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x48,0x84,0x03,0x00 -+// 24751 悯 ; -+,0x12,0x11,0x10,0x1a,0x56,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0x3f,0x01,0x21,0x11,0xfd,0x09,0x49,0x31,0x11,0x29,0x49,0x81,0x05,0x02,0x00 -+// 24752 悰 ; -+,0x10,0x10,0x13,0x1a,0x54,0x51,0x50,0x13,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x00,0x40,0x20,0xff,0x02,0x00,0xfe,0x00,0xff,0x20,0x20,0x24,0x22,0x23,0xa1,0x40,0x00 -+// 24753 悱 ; -+,0x10,0x10,0x10,0x1b,0x54,0x50,0x53,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x48,0x48,0x48,0xcf,0x48,0x48,0xcf,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 24754 悲 ; -+,0x02,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x02,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x20,0x20,0x3e,0x20,0x3c,0x20,0x3f,0x20,0x20,0x80,0x40,0x42,0x09,0x09,0xf8,0x00 -+// 24755 悳 ; -+,0x00,0x1f,0x00,0x07,0x14,0x17,0x14,0x17,0x14,0x17,0x10,0x1f,0x00,0x14,0x14,0x33,0x40,0xfe,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x80,0x42,0x09,0xf9 -+// 24756 悴 ; -+,0x08,0x08,0x0b,0x08,0x2c,0x2a,0x49,0x0a,0x08,0x08,0x0b,0x08,0x08,0x08,0x08,0x00,0x20,0x10,0xff,0x88,0x88,0xcc,0x52,0x22,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x00 -+// 24757 悵 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x17,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x00,0xff,0x40,0x24,0x18,0x08,0x44,0x87,0x02,0x00 -+// 24758 悶 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x20,0x22,0x2a,0x2a,0x3a,0x21,0x20,0x20,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x02,0x82,0x42,0x52,0x0a,0x2a,0xe2,0x0a,0x04 -+// 24759 悷 ; -+,0x10,0x10,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x1b,0x00,0x20,0x10,0xfe,0x02,0x02,0xfe,0x28,0x24,0xff,0x20,0x20,0x50,0x48,0x87,0x02,0x00 -+// 24760 悸 ; -+,0x00,0x10,0x13,0x10,0x1b,0x54,0x54,0x51,0x16,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0x3e,0xe0,0x20,0xff,0x70,0xac,0x23,0xf8,0x10,0x20,0xff,0x20,0x20,0xa0,0x40 -+// 24761 悹 ; -+,0x01,0x00,0x3f,0x20,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x00,0x14,0x14,0x24,0x03,0x00,0x80,0xff,0x02,0xf0,0x10,0xf0,0x00,0xf8,0x08,0xf8,0x00,0x84,0x42,0x0a,0xf8 -+// 24762 悺 ; -+,0x10,0x10,0x11,0x19,0x54,0x54,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x10,0xff,0x02,0x00,0xfc,0x84,0x84,0xfc,0x80,0xfe,0x82,0x82,0x82,0xfe,0x00 -+// 24763 悻 ; -+,0x10,0x10,0x11,0x18,0x54,0x53,0x50,0x10,0x11,0x10,0x10,0x13,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x84,0x48,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24764 悼 ; -+,0x10,0x10,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x20,0x3e,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24765 悽 ; -+,0x10,0x13,0x10,0x19,0x54,0x53,0x50,0x11,0x10,0x17,0x10,0x11,0x10,0x10,0x11,0x16,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x40,0xff,0x88,0x90,0x70,0x48,0x86,0x02 -+// 24766 悾 ; -+,0x10,0x10,0x11,0x19,0x54,0x54,0x50,0x13,0x10,0x11,0x10,0x10,0x10,0x13,0x10,0x00,0x20,0x10,0xff,0x02,0x00,0x48,0x84,0x03,0x00,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 24767 悿 ; -+,0x10,0x10,0x10,0x18,0x55,0x54,0x50,0x10,0x11,0x16,0x11,0x11,0x12,0x10,0x10,0x00,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x88,0x24,0x23,0x34,0x2a,0x2a,0xa0,0x40,0x00 -+// 24768 惀 ; -+,0x10,0x10,0x10,0x18,0x54,0x51,0x56,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0x50,0x48,0x84,0xfb,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x56,0x00 -+// 24769 惁 ; -+,0x08,0x08,0x08,0x7f,0x1c,0x1a,0x28,0x28,0x49,0x08,0x00,0x04,0x14,0x14,0x33,0x00,0x0c,0x70,0x40,0x40,0x7f,0x48,0x88,0x88,0x08,0x08,0x80,0x40,0x42,0x0b,0xf9,0x00 -+// 24770 惂 ; -+,0x08,0x08,0x08,0x0c,0x2a,0x2a,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x20,0x20,0x7f,0x42,0x84,0x00,0x20,0xcf,0x81,0x81,0xef,0x81,0x81,0xff,0x81,0x00 -+// 24771 惃 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00,0x10,0x12,0xdc,0x10,0x51,0x91,0x0f,0x00 -+// 24772 惄 ; -+,0x04,0x04,0x07,0x04,0x7f,0x04,0x15,0x25,0x0c,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x00,0x7e,0x22,0x14,0x94,0x08,0x08,0x14,0x63,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24773 情 ; -+,0x10,0x10,0x13,0x18,0x55,0x50,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 24774 惆 ; -+,0x08,0x09,0x09,0x09,0x2d,0x2b,0x69,0x09,0x09,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xff,0x11,0x11,0x7d,0x11,0xff,0x01,0x79,0x49,0x49,0x79,0x01,0x01,0x05,0x02 -+// 24775 惇 ; -+,0x10,0x10,0x13,0x18,0x55,0x55,0x51,0x10,0x11,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x40,0x20,0xff,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x10,0x20,0xff,0x20,0x20,0xa0,0x40 -+// 24776 惈 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x10,0x13,0x10,0x10,0x10,0x11,0x16,0x10,0x10,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x20,0xff,0x70,0x68,0xa4,0x27,0x22,0x20,0x20 -+// 24777 惉 ; -+,0x10,0x08,0x08,0x20,0x10,0x05,0x09,0x31,0x11,0x10,0x00,0x14,0x14,0x34,0x03,0x00,0x40,0x40,0x7e,0x40,0x40,0xfc,0x04,0x04,0xfc,0x00,0x80,0x42,0x41,0x09,0xf8,0x00 -+// 24778 惊 ; -+,0x08,0x08,0x09,0x08,0x0c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x09,0x0a,0x08,0x08,0x20,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x10,0x94,0x92,0x13,0x11,0x50,0x20 -+// 24779 惋 ; -+,0x10,0x10,0x13,0x1a,0x55,0x51,0x51,0x12,0x12,0x15,0x11,0x10,0x10,0x11,0x12,0x10,0x40,0x20,0xff,0x02,0x00,0x00,0xde,0x52,0x52,0x5a,0x54,0x90,0x91,0x11,0x0f,0x00 -+// 24780 惌 ; -+,0x01,0x00,0x3f,0x24,0x07,0x09,0x09,0x16,0x02,0x0c,0x30,0x02,0x12,0x12,0x21,0x00,0x00,0x80,0xff,0x02,0x7c,0x44,0x54,0x49,0x41,0x3f,0x00,0x40,0x22,0x09,0xf9,0x00 -+// 24781 惍 ; -+,0x10,0x10,0x10,0x18,0x54,0x51,0x52,0x10,0x13,0x10,0x11,0x10,0x10,0x17,0x10,0x00,0x20,0x20,0x50,0x48,0x84,0xfb,0x20,0x20,0xfe,0x20,0x24,0xa4,0xa8,0xff,0x00,0x00 -+// 24782 惎 ; -+,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x04,0x08,0x31,0x04,0x14,0x14,0x33,0x00,0x20,0xfe,0x20,0xe0,0x20,0xe0,0x20,0xff,0x20,0x10,0x0e,0x80,0x84,0x12,0xf2,0x00 -+// 24783 惏 ; -+,0x11,0x11,0x11,0x19,0x57,0x51,0x51,0x13,0x13,0x15,0x15,0x19,0x11,0x11,0x11,0x00,0x08,0x08,0x08,0x08,0xbe,0x08,0x9c,0x5c,0x2a,0x2a,0x4b,0x8a,0x08,0x08,0x08,0x00 -+// 24784 惐 ; -+,0x10,0x10,0x10,0x1b,0x54,0x50,0x53,0x12,0x12,0x13,0x10,0x10,0x11,0x16,0x10,0x00,0x10,0x14,0x12,0xff,0x10,0x10,0xd2,0x53,0x52,0xcc,0x08,0x48,0x95,0x23,0xc1,0x00 -+// 24785 惑 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x11,0x1f,0x00,0x07,0x38,0x00,0x24,0x24,0x64,0x03,0x00,0x50,0x48,0xff,0x40,0x44,0x24,0x28,0x10,0x2a,0xc6,0x02,0x84,0x42,0x0a,0xf8,0x00 -+// 24786 惒 ; -+,0x03,0x3c,0x04,0x7f,0x06,0x0d,0x14,0x64,0x04,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x80,0x00,0x3e,0xe2,0x22,0x22,0xa2,0xbe,0x00,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24787 惓 ; -+,0x10,0x12,0x11,0x11,0x1b,0x54,0x57,0x50,0x11,0x12,0x1c,0x10,0x10,0x10,0x10,0x00,0x40,0x48,0x48,0x50,0xfc,0x40,0xfe,0x90,0x08,0xf7,0x92,0x90,0xb4,0x84,0x7c,0x00 -+// 24788 惔 ; -+,0x10,0x10,0x12,0x11,0x19,0x54,0x51,0x56,0x11,0x11,0x12,0x10,0x10,0x11,0x16,0x10,0x40,0x44,0x44,0x68,0x50,0x88,0x06,0x40,0x44,0x4c,0x70,0xa0,0x90,0x0e,0x04,0x00 -+// 24789 惕 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x50,0x10,0x11,0x16,0x10,0x13,0x10,0x10,0x13,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0x80,0xff,0x49,0x89,0x11,0x21,0xc1,0x05,0x02 -+// 24790 惖 ; -+,0x0f,0x09,0x08,0x0f,0x02,0x07,0x09,0x31,0x02,0x0c,0x01,0x14,0x14,0x34,0x03,0x00,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x22,0x22,0x22,0x4a,0x84,0x80,0x42,0x09,0xf8,0x00 -+// 24791 惗 ; -+,0x10,0x10,0x10,0x18,0x54,0x51,0x52,0x10,0x10,0x10,0x10,0x12,0x12,0x16,0x10,0x10,0x20,0x20,0x50,0x48,0xa7,0x12,0xfc,0x04,0x08,0x10,0x00,0xa2,0x91,0x85,0x7c,0x00 -+// 24792 惘 ; -+,0x10,0x13,0x12,0x12,0x1a,0x57,0x52,0x52,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0xfe,0x02,0x8a,0x52,0xfe,0x42,0x22,0xfe,0x42,0x42,0x42,0x7a,0x02,0x0a,0x04 -+// 24793 惙 ; -+,0x10,0x13,0x12,0x19,0x54,0x55,0x52,0x13,0x10,0x12,0x11,0x10,0x11,0x12,0x14,0x10,0x00,0xde,0x52,0x8c,0x8c,0x52,0x21,0xde,0x42,0x54,0x94,0xc8,0x54,0x27,0xc2,0x00 -+// 24794 惚 ; -+,0x10,0x10,0x10,0x19,0x56,0x50,0x51,0x10,0x11,0x10,0x10,0x12,0x12,0x16,0x10,0x00,0x80,0x80,0xfe,0x2a,0x2a,0x4a,0x92,0x6a,0x84,0x20,0x90,0x92,0x85,0x85,0x7c,0x00 -+// 24795 惛 ; -+,0x10,0x11,0x11,0x19,0x55,0x51,0x51,0x11,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x1c,0xe0,0x20,0xff,0x10,0x50,0x8a,0x06,0x02,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 24796 惜 ; -+,0x10,0x10,0x10,0x1b,0x54,0x50,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x88,0x88,0x88,0xfe,0x88,0x88,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 24797 惝 ; -+,0x10,0x10,0x19,0x14,0x54,0x53,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x20,0x20,0x24,0xa4,0xa8,0xfe,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x0a,0x04,0x00 -+// 24798 惞 ; -+,0x10,0x10,0x13,0x1a,0x56,0x53,0x52,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x00,0xc8,0x08,0x08,0x1f,0xd2,0xac,0x88,0x88,0x88,0x8c,0x94,0x94,0xa3,0xc2,0x00 -+// 24799 惟 ; -+,0x10,0x10,0x10,0x19,0x55,0x53,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xa0,0x90,0x90,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 24800 惠 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x04,0x14,0x14,0x33,0x00,0x80,0xfe,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x84,0xfe,0x02,0x80,0x44,0x12,0xf2,0x00 -+// 24801 惡 ; -+,0x1f,0x01,0x01,0x1f,0x10,0x10,0x1f,0x01,0x01,0x3f,0x00,0x14,0x14,0x34,0x03,0x00,0xff,0x20,0x20,0x3e,0x02,0x02,0x3e,0x20,0x20,0xff,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24802 惢 ; -+,0x00,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x08,0x04,0x14,0x50,0x50,0x52,0x0e,0x00,0x00,0x80,0x44,0x42,0x12,0x10,0xf0,0x00,0x10,0x08,0x2a,0xa1,0xa1,0xa4,0x1c,0x00 -+// 24803 惣 ; -+,0x04,0x14,0x14,0x1f,0x24,0x47,0x0c,0x35,0x04,0x04,0x00,0x12,0x12,0x32,0x01,0x00,0x40,0x40,0x7e,0x6a,0xaa,0x52,0x52,0xa2,0x4a,0x04,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24804 惤 ; -+,0x10,0x13,0x10,0x10,0x5b,0x56,0x52,0x12,0x13,0x10,0x10,0x10,0x10,0x12,0x11,0x00,0x08,0xc4,0x44,0x7f,0xc8,0x12,0x12,0x24,0xbc,0x84,0x88,0x92,0x91,0xbf,0x01,0x00 -+// 24805 惥 ; -+,0x00,0x06,0x18,0x10,0x1e,0x10,0x1f,0x00,0x01,0x06,0x38,0x00,0x14,0x14,0x23,0x00,0x80,0x80,0xbc,0x84,0xbc,0x84,0xfc,0xc0,0x30,0x0e,0x84,0x40,0x44,0x0a,0xfa,0x00 -+// 24806 惦 ; -+,0x10,0x10,0x13,0x1a,0x56,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x00,0x40,0x20,0xff,0x10,0x10,0x10,0x1f,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x00 -+// 24807 惧 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x17,0x10,0x10,0x11,0x12,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xff,0x88,0x84,0x02,0x02,0x00 -+// 24808 惨 ; -+,0x10,0x10,0x11,0x18,0x54,0x57,0x50,0x11,0x12,0x1d,0x16,0x10,0x13,0x10,0x13,0x10,0x40,0x88,0xfc,0x44,0x40,0xff,0x90,0x08,0x46,0x93,0x20,0xc4,0x18,0x60,0x80,0x00 -+// 24809 惩 ; -+,0x08,0x09,0x10,0x64,0x09,0x19,0x69,0x09,0x0f,0x08,0x00,0x14,0x14,0x34,0x03,0x00,0x00,0xfe,0x20,0x20,0x3e,0x20,0x20,0x20,0xff,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24810 惪 ; -+,0x00,0x1f,0x00,0x07,0x06,0x05,0x04,0x06,0x05,0x7f,0x00,0x12,0x12,0x32,0x01,0x00,0x80,0xfe,0x80,0xf8,0x48,0x28,0x98,0x48,0x28,0xff,0x00,0x44,0x42,0x0a,0xf8,0x00 -+// 24811 惫 ; -+,0x02,0x03,0x06,0x09,0x00,0x03,0x3f,0x04,0x07,0x04,0x07,0x00,0x14,0x14,0x33,0x00,0x00,0xf8,0x10,0x20,0xc0,0x30,0xff,0x88,0xf8,0x88,0xf8,0x80,0x42,0x09,0xf9,0x00 -+// 24812 惬 ; -+,0x10,0x13,0x12,0x1a,0x56,0x52,0x52,0x13,0x12,0x12,0x12,0x12,0x12,0x13,0x10,0x00,0x00,0xff,0x10,0x10,0xfe,0x54,0x38,0xff,0x10,0x28,0x24,0x42,0x82,0xff,0x00,0x00 -+// 24813 惭 ; -+,0x10,0x10,0x17,0x19,0x55,0x52,0x57,0x10,0x10,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x80,0x83,0xdc,0x10,0x90,0x9f,0xd2,0x92,0x92,0xd2,0x92,0x92,0xa2,0xa2,0xc2,0x82 -+// 24814 惮 ; -+,0x09,0x08,0x08,0x0d,0x2b,0x29,0x69,0x09,0x09,0x08,0x0b,0x08,0x08,0x08,0x08,0x08,0x04,0x84,0x88,0xfe,0x12,0xfe,0x12,0x12,0xfe,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 24815 惯 ; -+,0x10,0x11,0x11,0x17,0x19,0x55,0x55,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x16,0x00,0xfc,0x24,0xff,0x24,0x24,0xfc,0x00,0xfc,0x24,0x24,0x24,0x24,0x58,0x84,0x02 -+// 24816 惰 ; -+,0x10,0x10,0x13,0x18,0x54,0x55,0x53,0x14,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xff,0x40,0xfc,0x10,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 24817 惱 ; -+,0x10,0x10,0x11,0x19,0x54,0x54,0x50,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x92,0x92,0x24,0x24,0x92,0x92,0x20,0xfe,0x02,0x4a,0x32,0x2a,0x46,0x02,0xfe,0x00 -+// 24818 惲 ; -+,0x10,0x13,0x12,0x10,0x1b,0x54,0x55,0x51,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x10,0x00,0xff,0x22,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 24819 想 ; -+,0x08,0x08,0x08,0x7f,0x1c,0x1a,0x2a,0x28,0x48,0x00,0x00,0x04,0x14,0x14,0x33,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0x80,0x42,0x41,0x09,0xf8,0x00 -+// 24820 惴 ; -+,0x10,0x11,0x11,0x11,0x19,0x54,0x53,0x50,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x20,0x22,0x22,0x22,0xfe,0x00,0xff,0x20,0x40,0xff,0x51,0x51,0x51,0x51,0x55,0x52 -+// 24821 惵 ; -+,0x00,0x11,0x11,0x13,0x11,0x19,0x55,0x51,0x50,0x10,0x13,0x10,0x10,0x11,0x16,0x10,0x00,0x28,0x28,0xff,0x28,0x38,0x00,0xff,0x20,0x20,0xff,0x70,0xa8,0x27,0x22,0x20 -+// 24822 惶 ; -+,0x10,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x10,0x13,0x10,0x11,0x10,0x10,0x17,0x10,0x40,0x40,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 24823 惷 ; -+,0x00,0x1f,0x00,0x0f,0x01,0x3f,0x04,0x0f,0x35,0x04,0x07,0x00,0x14,0x14,0x33,0x00,0x80,0xfe,0x80,0xfc,0x00,0xff,0x10,0xf8,0x17,0x92,0xf0,0x00,0x82,0x49,0xf9,0x00 -+// 24824 惸 ; -+,0x10,0x10,0x11,0x12,0x18,0x54,0x54,0x50,0x10,0x11,0x10,0x10,0x17,0x10,0x10,0x10,0x80,0xfe,0x02,0xf2,0x92,0xf2,0x92,0xf2,0x06,0xf8,0x10,0x20,0xff,0x20,0xa0,0x40 -+// 24825 惹 ; -+,0x04,0x04,0x3f,0x04,0x01,0x3f,0x04,0x0f,0x14,0x67,0x00,0x04,0x14,0x14,0x23,0x00,0x20,0x20,0x7e,0xa0,0x00,0xfe,0x00,0xf8,0x08,0xf8,0x00,0x80,0x42,0x09,0xf9,0x00 -+// 24826 惺 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x50,0x11,0x11,0x12,0x14,0x11,0x10,0x10,0x17,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x20,0xfe,0x20,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 24827 惻 ; -+,0x10,0x13,0x12,0x1a,0x57,0x52,0x53,0x12,0x12,0x13,0x10,0x11,0x12,0x14,0x10,0x00,0x02,0xe2,0x2a,0x2a,0xea,0x2a,0xea,0x2a,0x2a,0xea,0x0a,0x42,0x22,0x2a,0x04,0x00 -+// 24828 惼 ; -+,0x00,0x10,0x10,0x11,0x19,0x55,0x51,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x10,0x00,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xff,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0x83 -+// 24829 惽 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x02,0xfe,0x20,0xfe,0x11,0x8d,0x03,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 24830 惾 ; -+,0x11,0x11,0x11,0x19,0x55,0x54,0x50,0x10,0x11,0x10,0x10,0x10,0x11,0x10,0x10,0x13,0x4a,0x32,0x32,0x4a,0xfe,0x00,0x84,0x82,0x42,0x7c,0x44,0xc8,0x30,0x28,0xc7,0x02 -+// 24831 惿 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x50,0x17,0x10,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x20,0x3e,0x20,0xa0,0x60,0x20,0x1f,0x00 -+// 24832 愀 ; -+,0x10,0x13,0x10,0x18,0x57,0x50,0x51,0x11,0x12,0x12,0x14,0x10,0x10,0x10,0x10,0x00,0x68,0x88,0x88,0x88,0xe9,0xab,0xdc,0xa8,0x88,0x88,0x94,0x94,0x92,0xa3,0xc2,0x00 -+// 24833 愁 ; -+,0x07,0x3c,0x04,0x04,0x7f,0x0e,0x15,0x14,0x24,0x05,0x00,0x04,0x14,0x14,0x23,0x00,0x10,0x10,0x12,0x56,0xb8,0x10,0x10,0x28,0x47,0x82,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24834 愂 ; -+,0x04,0x3f,0x08,0x3f,0x20,0x1f,0x02,0x3f,0x04,0x0c,0x00,0x04,0x14,0x14,0x23,0x00,0x08,0xc8,0x08,0xdf,0x89,0x09,0x09,0x91,0x15,0x22,0x80,0x44,0x43,0x09,0xf8,0x00 -+// 24835 愃 ; -+,0x10,0x10,0x11,0x19,0x54,0x54,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x13,0x00,0x20,0x10,0xff,0x02,0x00,0xfc,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00 -+// 24836 愄 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x10,0x17,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xff,0x22,0x14,0x08,0x44,0x87,0x02,0x00 -+// 24837 愅 ; -+,0x10,0x10,0x13,0x18,0x54,0x54,0x51,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x10,0x10,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24838 愆 ; -+,0x08,0x09,0x14,0x64,0x09,0x18,0x68,0x08,0x09,0x08,0x00,0x14,0x14,0x34,0x03,0x00,0x00,0x1e,0x80,0x00,0x3f,0x84,0x24,0x44,0x84,0x94,0x08,0x82,0x49,0x09,0xf8,0x00 -+// 24839 愇 ; -+,0x10,0x11,0x10,0x10,0x5b,0x54,0x51,0x11,0x11,0x10,0x13,0x12,0x17,0x10,0x10,0x10,0x20,0xfc,0x44,0x84,0xff,0x00,0xfc,0x04,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 24840 愈 ; -+,0x00,0x01,0x06,0x1b,0x60,0x1f,0x15,0x1b,0x15,0x11,0x13,0x00,0x14,0x14,0x33,0x00,0x80,0x40,0x30,0xee,0x04,0x08,0x48,0x48,0x48,0x28,0x10,0x00,0x84,0x52,0xf2,0x00 -+// 24841 愉 ; -+,0x10,0x10,0x10,0x19,0x56,0x50,0x53,0x12,0x13,0x12,0x13,0x12,0x12,0x12,0x12,0x00,0x20,0x20,0x50,0x8c,0xfb,0x00,0xc2,0x4a,0xca,0x4a,0xca,0x4a,0x42,0xca,0x44,0x00 -+// 24842 愊 ; -+,0x10,0x13,0x10,0x19,0x55,0x55,0x51,0x10,0x13,0x12,0x12,0x13,0x12,0x12,0x13,0x00,0x00,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x00 -+// 24843 愋 ; -+,0x10,0x10,0x13,0x18,0x54,0x55,0x50,0x13,0x10,0x10,0x10,0x10,0x11,0x12,0x11,0x00,0x0e,0x70,0x80,0xa2,0x54,0xfe,0x40,0xff,0x40,0x7c,0xc4,0xa8,0x10,0x6c,0x87,0x02 -+// 24844 愌 ; -+,0x10,0x10,0x10,0x19,0x57,0x55,0x51,0x11,0x11,0x10,0x13,0x10,0x10,0x11,0x16,0x00,0x40,0x7c,0x88,0x10,0xfe,0x52,0x4a,0x8a,0x22,0x20,0xff,0x30,0x48,0x84,0x03,0x00 -+// 24845 愍 ; -+,0x00,0x3f,0x21,0x3f,0x24,0x3f,0x24,0x25,0x33,0x21,0x00,0x04,0x14,0x14,0x33,0x00,0x20,0x20,0x3f,0x42,0x62,0x94,0x08,0x14,0x67,0x02,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24846 愎 ; -+,0x10,0x10,0x11,0x19,0x56,0x50,0x50,0x10,0x10,0x10,0x11,0x16,0x10,0x10,0x17,0x00,0x80,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0xfe,0x84,0x48,0x30,0xd8,0x07,0x00 -+// 24847 意 ; -+,0x00,0x1f,0x04,0x02,0x7f,0x00,0x0f,0x09,0x08,0x0f,0x00,0x14,0x14,0x34,0x03,0x00,0x80,0xfe,0x10,0x20,0xff,0x00,0xf8,0x08,0x88,0xf8,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24848 愐 ; -+,0x10,0x13,0x10,0x10,0x5b,0x56,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x10,0x00,0x00,0xff,0x20,0x40,0xff,0x49,0x49,0x79,0x49,0x49,0x79,0x49,0x49,0xff,0x00,0x00 -+// 24849 愑 ; -+,0x10,0x11,0x10,0x19,0x55,0x55,0x51,0x11,0x11,0x10,0x13,0x10,0x10,0x11,0x12,0x00,0x00,0xfe,0x28,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x40,0xfe,0x42,0x82,0x0a,0x04,0x00 -+// 24850 愒 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x50,0x10,0x11,0x17,0x11,0x11,0x11,0x10,0x10,0x10,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x40,0xff,0x21,0x31,0x49,0x85,0xff,0x01,0x05,0x02 -+// 24851 愓 ; -+,0x10,0x10,0x10,0x18,0x54,0x50,0x53,0x10,0x11,0x16,0x10,0x11,0x16,0x10,0x13,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x4a,0x8a,0x12,0x22,0xca,0x04,0x00 -+// 24852 愔 ; -+,0x10,0x10,0x13,0x19,0x54,0x50,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x20,0xfe,0x08,0x88,0x90,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 24853 愕 ; -+,0x00,0x13,0x12,0x12,0x1b,0x54,0x51,0x50,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xde,0x52,0x52,0xde,0x00,0xfc,0x00,0xff,0x40,0x80,0xfc,0x04,0x04,0x28,0x10 -+// 24854 愖 ; -+,0x00,0x10,0x10,0x13,0x18,0x54,0x50,0x50,0x10,0x17,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0xff,0x48,0x44,0x84,0x00,0xfe,0x00 -+// 24855 愗 ; -+,0x00,0x1f,0x02,0x04,0x3f,0x0d,0x14,0x64,0x14,0x08,0x00,0x14,0x14,0x34,0x03,0x00,0x10,0x10,0x10,0x3f,0xa4,0x54,0x08,0x08,0x14,0x63,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24856 愘 ; -+,0x10,0x10,0x11,0x19,0x54,0x54,0x50,0x11,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x00,0x20,0x10,0xff,0x02,0x40,0x7c,0xc8,0x30,0x48,0x87,0xfe,0x84,0x84,0x84,0xfc,0x00 -+// 24857 愙 ; -+,0x00,0x1f,0x11,0x03,0x0d,0x00,0x03,0x1c,0x07,0x04,0x07,0x00,0x14,0x14,0x33,0x00,0x80,0xfe,0x04,0xf0,0x20,0xc0,0x30,0x0e,0xf4,0x10,0xf0,0x80,0x44,0x0a,0xfa,0x00 -+// 24858 愚 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x17,0x10,0x10,0x04,0x14,0x14,0x33,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0xa2,0xf2,0x12,0x06,0x80,0x42,0x09,0xf9,0x00 -+// 24859 愛 ; -+,0x00,0x1f,0x08,0x04,0x3f,0x20,0x0a,0x0a,0x11,0x04,0x07,0x09,0x30,0x03,0x1c,0x00,0x7e,0x80,0x84,0x48,0xff,0x82,0x44,0x12,0xf2,0x00,0xf0,0x20,0xc0,0x20,0x1c,0x08 -+// 24860 愜 ; -+,0x10,0x13,0x12,0x12,0x5b,0x56,0x52,0x12,0x13,0x12,0x12,0x12,0x12,0x13,0x13,0x00,0x00,0xfe,0x20,0x20,0xfe,0x20,0xa4,0xa4,0x6a,0x32,0x50,0x48,0x84,0x04,0xff,0x00 -+// 24861 愝 ; -+,0x10,0x13,0x12,0x12,0x1a,0x56,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x00,0x00,0xff,0x00,0x7e,0x52,0x4a,0x7e,0x10,0xff,0x24,0x64,0x18,0x14,0x62,0xff,0x00 -+// 24862 愞 ; -+,0x10,0x13,0x10,0x19,0x55,0x51,0x51,0x11,0x10,0x13,0x10,0x10,0x10,0x10,0x11,0x12,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x56,0x20,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 24863 感 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x17,0x14,0x27,0x20,0x40,0x04,0x14,0x14,0x33,0x00,0x28,0x24,0xfe,0x20,0xa4,0x24,0x98,0x90,0x99,0x25,0x03,0x84,0x42,0x0b,0xf8,0x00 -+// 24864 愠 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x10,0x10,0x13,0x12,0x12,0x12,0x12,0x17,0x10,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00,0x00,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 24865 愡 ; -+,0x10,0x10,0x11,0x11,0x5a,0x54,0x51,0x16,0x10,0x10,0x10,0x12,0x12,0x16,0x10,0x00,0x80,0x80,0xff,0x29,0xc9,0xb1,0x19,0x21,0xc5,0x02,0xa0,0x92,0x91,0x85,0x7c,0x00 -+// 24866 愢 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x10,0x10,0x12,0x12,0x16,0x10,0x10,0x00,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x00,0x20,0x92,0x91,0x85,0x84,0x7c,0x00 -+// 24867 愣 ; -+,0x10,0x13,0x12,0x12,0x5b,0x54,0x50,0x17,0x10,0x10,0x10,0x10,0x10,0x11,0x12,0x00,0x00,0xfe,0x52,0x52,0xfe,0x40,0x20,0xff,0x40,0x7c,0x44,0x84,0x84,0x14,0x08,0x00 -+// 24868 愤 ; -+,0x10,0x11,0x10,0x18,0x57,0x54,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x16,0x00,0x20,0xfc,0x20,0xa8,0xff,0x88,0x00,0xfc,0x04,0x24,0x24,0x24,0x58,0x86,0x02,0x00 -+// 24869 愥 ; -+,0x10,0x10,0x13,0x18,0x54,0x55,0x51,0x11,0x11,0x17,0x10,0x10,0x10,0x11,0x16,0x00,0x88,0x88,0xff,0x88,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x48,0x87,0x02,0x00 -+// 24870 愦 ; -+,0x10,0x10,0x11,0x11,0x19,0x54,0x53,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x16,0x20,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0x24,0x24,0x34,0x48,0x86,0x02 -+// 24871 愧 ; -+,0x10,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x10,0x10,0x10,0x10,0x11,0x12,0x10,0x20,0x40,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x50,0x54,0x9a,0x9f,0x11,0x0f,0x00 -+// 24872 愨 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x21,0x00,0x1e,0x00,0x14,0x14,0x24,0x03,0x00,0x00,0x3c,0xa4,0x47,0x00,0x7c,0xa8,0x10,0x28,0xc7,0x00,0x84,0x43,0x12,0xf0,0x00 -+// 24873 愩 ; -+,0x10,0x11,0x10,0x1b,0x54,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x13,0x00,0x00,0xfe,0x20,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x48,0x86,0x02,0x00 -+// 24874 愪 ; -+,0x10,0x11,0x11,0x19,0x54,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x00,0x00,0xfe,0x02,0xfe,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x48,0x86,0x02,0x00 -+// 24875 愫 ; -+,0x10,0x13,0x10,0x19,0x54,0x57,0x50,0x10,0x13,0x10,0x13,0x10,0x12,0x12,0x14,0x10,0x20,0xfe,0x20,0xfc,0x20,0xff,0x40,0x90,0xe0,0x84,0xfe,0x20,0x24,0x22,0xa2,0x40 -+// 24876 愬 ; -+,0x11,0x09,0x0a,0x7f,0x15,0x15,0x1f,0x04,0x08,0x08,0x10,0x04,0x14,0x14,0x23,0x00,0x00,0x3e,0x22,0xbe,0x22,0x3e,0x22,0x42,0x4a,0x84,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24877 愭 ; -+,0x10,0x10,0x11,0x18,0x57,0x54,0x50,0x11,0x16,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0xfc,0x28,0xff,0x48,0xf2,0x42,0x3e,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00 -+// 24878 愮 ; -+,0x10,0x13,0x10,0x19,0x54,0x55,0x51,0x12,0x14,0x13,0x10,0x11,0x11,0x11,0x11,0x10,0x1f,0xe0,0x02,0x22,0x94,0x00,0xfe,0x20,0x20,0xff,0x20,0x22,0x22,0x22,0xfe,0x00 -+// 24879 愯 ; -+,0x10,0x10,0x11,0x11,0x1b,0x55,0x55,0x51,0x11,0x11,0x10,0x10,0x10,0x10,0x13,0x10,0xa0,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfc,0x48,0x30,0xd8,0x07,0x00 -+// 24880 愰 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x50,0x11,0x10,0x17,0x10,0x10,0x10,0x11,0x16,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x20,0x24,0xa8,0xff,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 24881 愱 ; -+,0x10,0x10,0x11,0x11,0x59,0x55,0x55,0x13,0x11,0x13,0x15,0x11,0x12,0x12,0x15,0x10,0x20,0x10,0xff,0x20,0x20,0x7e,0x90,0x10,0xff,0x10,0x10,0x28,0x24,0x47,0x82,0x00 -+// 24882 愲 ; -+,0x10,0x10,0x10,0x18,0x54,0x55,0x51,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfc,0x84,0xf4,0x94,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88,0x00 -+// 24883 愳 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x00,0x04,0x14,0x14,0x24,0x03,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x7c,0x00,0x00,0x80,0x42,0x09,0x09,0xf8,0x00 -+// 24884 愴 ; -+,0x10,0x10,0x10,0x18,0x55,0x57,0x51,0x11,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x20,0x20,0x50,0xc8,0x27,0xfe,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x84,0x84,0xfc,0x00 -+// 24885 愵 ; -+,0x10,0x13,0x10,0x10,0x5b,0x56,0x52,0x13,0x10,0x13,0x10,0x11,0x16,0x11,0x10,0x10,0x00,0xde,0x42,0x42,0xde,0x10,0x10,0xde,0x42,0x5a,0xc6,0x4a,0x52,0x4a,0x84,0x00 -+// 24886 愶 ; -+,0x10,0x11,0x10,0x18,0x55,0x53,0x51,0x12,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0xfc,0x44,0x94,0x88,0xdf,0x49,0xd1,0xfe,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 24887 愷 ; -+,0x10,0x11,0x11,0x11,0x19,0x54,0x53,0x50,0x11,0x11,0x11,0x10,0x10,0x10,0x17,0x10,0x20,0x22,0x22,0x22,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0x00,0x84,0x48,0xff,0x00 -+// 24888 愸 ; -+,0x04,0x04,0x3f,0x15,0x15,0x2e,0x0e,0x15,0x64,0x04,0x02,0x12,0x12,0x32,0x01,0x00,0x08,0x08,0x88,0x3e,0x0a,0x92,0x12,0xa2,0x4a,0x04,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24889 愹 ; -+,0x10,0x10,0x13,0x1a,0x54,0x54,0x51,0x10,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x00,0x40,0x20,0xff,0x02,0x48,0xa6,0x32,0x48,0x84,0x03,0xfc,0x84,0x84,0x84,0xfc,0x00 -+// 24890 愺 ; -+,0x10,0x10,0x13,0x18,0x54,0x55,0x51,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x10,0x10,0x88,0x88,0xff,0x88,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24891 愻 ; -+,0x00,0x3f,0x02,0x04,0x06,0x0c,0x34,0x04,0x14,0x09,0x00,0x15,0x14,0x34,0x03,0x00,0x00,0x0e,0xf0,0x24,0xf8,0x24,0xfe,0x10,0x94,0x32,0x00,0x04,0x82,0x12,0xf0,0x00 -+// 24892 愼 ; -+,0x10,0x10,0x10,0x18,0x54,0x54,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x13,0x8e,0xf0,0x80,0x7f,0x00,0x7e,0x52,0x6a,0x56,0x4a,0x7e,0x00,0xff,0x44,0x82,0x02 -+// 24893 愽 ; -+,0x10,0x13,0x10,0x19,0x55,0x55,0x51,0x11,0x11,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x08,0xff,0x88,0x48,0x08,0x28,0x10 -+// 24894 愾 ; -+,0x10,0x10,0x11,0x19,0x56,0x54,0x53,0x10,0x11,0x10,0x17,0x10,0x11,0x16,0x10,0x10,0x80,0x80,0xff,0x00,0xfc,0x00,0xfc,0x44,0x54,0xe4,0xfc,0xe5,0x55,0x53,0x43,0x01 -+// 24895 愿 ; -+,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x11,0x16,0x10,0x25,0x25,0x4d,0x00,0x00,0xff,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x24,0x62,0x20,0x42,0x21,0x09,0xf8,0x00 -+// 24896 慀 ; -+,0x10,0x13,0x11,0x18,0x54,0x50,0x51,0x10,0x11,0x10,0x17,0x10,0x10,0x11,0x16,0x00,0x1f,0xe0,0x22,0x94,0x40,0x90,0xe0,0x44,0xfe,0x20,0xff,0x20,0x58,0x87,0x02,0x00 -+// 24897 慁 ; -+,0x1f,0x10,0x17,0x11,0x13,0x1d,0x12,0x15,0x12,0x1f,0x00,0x14,0x14,0x34,0x03,0x00,0xfc,0x04,0xf4,0x04,0x94,0x64,0xdc,0x54,0x84,0xfc,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24898 慂 ; -+,0x23,0x10,0x00,0x43,0x26,0x0b,0x0a,0x33,0x12,0x12,0x00,0x14,0x14,0x34,0x03,0x00,0xfe,0x48,0x30,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x26,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24899 慃 ; -+,0x10,0x10,0x10,0x18,0x57,0x54,0x50,0x13,0x10,0x12,0x11,0x11,0x12,0x11,0x10,0x00,0x20,0x30,0x48,0xa4,0x53,0xf8,0x00,0xde,0x42,0x4a,0xc6,0x4a,0x72,0x4a,0x84,0x00 -+// 24900 慄 ; -+,0x10,0x13,0x10,0x11,0x59,0x55,0x51,0x10,0x10,0x17,0x10,0x10,0x10,0x11,0x16,0x10,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x20,0x20,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 24901 慅 ; -+,0x10,0x11,0x10,0x18,0x54,0x54,0x51,0x16,0x11,0x11,0x11,0x11,0x10,0x10,0x13,0x10,0x00,0xfe,0xa4,0x58,0x30,0x50,0xac,0x23,0xfc,0x24,0x24,0xfc,0x20,0x24,0xfe,0x02 -+// 24902 慆 ; -+,0x08,0x08,0x0b,0x09,0x2c,0x2a,0x68,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x1e,0xe0,0x22,0x92,0x94,0x20,0xcf,0x01,0x01,0xef,0x01,0x01,0x01,0xff,0x00 -+// 24903 慇 ; -+,0x04,0x1f,0x15,0x13,0x1f,0x10,0x1f,0x11,0x25,0x22,0x40,0x14,0x14,0x14,0x23,0x00,0x00,0x3c,0x24,0x24,0x47,0xbc,0x24,0x18,0x18,0x67,0x00,0x84,0x42,0x09,0xf8,0x00 -+// 24904 慈 ; -+,0x04,0x02,0x3f,0x04,0x04,0x09,0x1e,0x04,0x0a,0x1f,0x00,0x14,0x14,0x34,0x03,0x00,0x10,0x20,0xff,0x10,0x10,0x28,0x78,0x10,0x28,0x7c,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24905 慉 ; -+,0x10,0x10,0x13,0x18,0x54,0x55,0x50,0x11,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x40,0x20,0xff,0x40,0x88,0xf0,0x44,0xfe,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x00 -+// 24906 慊 ; -+,0x11,0x10,0x10,0x13,0x18,0x57,0x50,0x57,0x10,0x13,0x10,0x11,0x11,0x12,0x14,0x10,0x08,0x88,0x90,0xfe,0x90,0xfc,0x94,0xff,0x94,0xfc,0x90,0x98,0x94,0x93,0x92,0x90 -+// 24907 態 ; -+,0x08,0x12,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x13,0x00,0x14,0x24,0x03,0x00,0x4c,0x70,0x42,0x7e,0x00,0x40,0x4c,0x70,0x42,0x42,0x3e,0x80,0x4a,0x09,0xf8,0x00 -+// 24908 慌 ; -+,0x10,0x10,0x13,0x10,0x58,0x57,0x51,0x11,0x11,0x10,0x11,0x11,0x12,0x12,0x14,0x10,0x88,0x88,0xff,0x88,0x20,0xff,0x00,0x00,0xfe,0x00,0x24,0x24,0x25,0x25,0x23,0x00 -+// 24909 慍 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0x17,0x10,0x00,0xfc,0x24,0x24,0x54,0x8c,0xfc,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 24910 慎 ; -+,0x10,0x10,0x13,0x18,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x11,0x12,0x20,0x20,0xfe,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff,0x88,0x06,0x02 -+// 24911 慏 ; -+,0x10,0x11,0x11,0x18,0x54,0x54,0x50,0x10,0x10,0x10,0x13,0x10,0x10,0x11,0x12,0x10,0x00,0xff,0x02,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x88,0x84,0x02,0x02,0x00 -+// 24912 慐 ; -+,0x0f,0x00,0x3f,0x00,0x0f,0x0c,0x0a,0x09,0x0f,0x02,0x04,0x00,0x14,0x14,0x23,0x00,0xf8,0x80,0xfe,0x00,0xf8,0x48,0x28,0x18,0xf8,0x20,0x10,0x80,0x44,0x12,0xf2,0x00 -+// 24913 慑 ; -+,0x10,0x13,0x10,0x18,0x54,0x54,0x53,0x10,0x17,0x10,0x12,0x11,0x12,0x14,0x10,0x10,0x00,0xff,0xa4,0x94,0xcc,0xa7,0xfc,0x04,0xdf,0x41,0x92,0x0a,0x84,0x4b,0x32,0x00 -+// 24914 慒 ; -+,0x10,0x17,0x10,0x13,0x5a,0x57,0x52,0x13,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x48,0xff,0x48,0xfe,0x4a,0xfe,0x4a,0xfe,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 24915 慓 ; -+,0x10,0x13,0x10,0x11,0x59,0x55,0x50,0x11,0x10,0x13,0x10,0x11,0x11,0x12,0x10,0x10,0x00,0xff,0x50,0xfe,0x52,0xfe,0x00,0xfe,0x00,0xff,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 24916 慔 ; -+,0x10,0x10,0x13,0x18,0x55,0x55,0x51,0x11,0x11,0x10,0x13,0x10,0x10,0x11,0x16,0x00,0x88,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x8e,0x04,0x00 -+// 24917 慕 ; -+,0x02,0x3f,0x02,0x0f,0x09,0x08,0x0f,0x01,0x7f,0x02,0x04,0x18,0x64,0x04,0x09,0x00,0x20,0xff,0x20,0xf8,0x08,0x88,0xf8,0x00,0xff,0x10,0x88,0x87,0xd2,0xa8,0xa8,0x80 -+// 24918 慖 ; -+,0x10,0x13,0x12,0x1a,0x57,0x52,0x53,0x12,0x13,0x12,0x12,0x13,0x12,0x13,0x12,0x10,0x00,0xff,0x11,0x15,0xff,0x11,0xd5,0x55,0xc9,0x0b,0x57,0xa3,0x01,0xff,0x01,0x00 -+// 24919 慗 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x0e,0x15,0x64,0x00,0x14,0x14,0x34,0x03,0x00,0x10,0x10,0xd0,0x3f,0xa4,0xe4,0x98,0x08,0x14,0x63,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24920 慘 ; -+,0x10,0x10,0x10,0x18,0x55,0x55,0x50,0x10,0x13,0x10,0x11,0x10,0x13,0x10,0x13,0x00,0x20,0x50,0xf8,0x84,0x4a,0xff,0x50,0x88,0x27,0x42,0x90,0x64,0x88,0x30,0xc0,0x00 -+// 24921 慙 ; -+,0x04,0x3f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x00,0x14,0x14,0x23,0x00,0x06,0xb8,0x20,0xa0,0xbf,0xa4,0xa4,0xa4,0x24,0xc4,0x00,0x80,0x44,0x13,0xf2,0x00 -+// 24922 慚 ; -+,0x10,0x10,0x17,0x10,0x53,0x52,0x53,0x12,0x13,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x80,0x8f,0xe8,0x88,0xe8,0xaf,0xea,0xaa,0xea,0x8a,0x8a,0xea,0x92,0x92,0xa2,0x82 -+// 24923 慛 ; -+,0x10,0x11,0x11,0x19,0x15,0x54,0x51,0x53,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x12,0xfe,0xa0,0x10,0xff,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 24924 慜 ; -+,0x10,0x1f,0x10,0x3f,0x51,0x15,0x7f,0x11,0x15,0x1f,0x00,0x10,0x14,0x24,0x03,0x00,0x10,0x90,0x10,0x3f,0x22,0x54,0x94,0x08,0x14,0x23,0x80,0x44,0x42,0x0a,0xf8,0x00 -+// 24925 慝 ; -+,0x3f,0x22,0x2f,0x22,0x2f,0x21,0x23,0x2e,0x23,0x20,0x3f,0x00,0x24,0x24,0x63,0x00,0xff,0x10,0xfc,0x90,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xff,0x80,0x42,0x09,0xf9,0x00 -+// 24926 慞 ; -+,0x10,0x10,0x13,0x18,0x54,0x53,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x40,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20 -+// 24927 慟 ; -+,0x10,0x13,0x10,0x17,0x58,0x57,0x52,0x13,0x12,0x13,0x10,0x13,0x10,0x11,0x16,0x10,0x24,0xc4,0x84,0xf4,0x8f,0xe5,0xa5,0xe5,0xa5,0xe9,0x89,0xe9,0x91,0xe2,0x4a,0x04 -+// 24928 慠 ; -+,0x11,0x11,0x13,0x11,0x5b,0x55,0x57,0x11,0x11,0x11,0x12,0x12,0x14,0x15,0x18,0x10,0x08,0x08,0xc8,0x10,0xdf,0x12,0xf2,0x22,0x14,0xd4,0x48,0x48,0x54,0x54,0xa3,0x42 -+// 24929 慡 ; -+,0x10,0x10,0x13,0x10,0x5a,0x55,0x52,0x10,0x12,0x11,0x12,0x10,0x10,0x11,0x16,0x10,0x20,0x20,0xff,0x20,0xaa,0x24,0xaa,0x20,0xaa,0x24,0xaa,0x50,0x48,0x87,0x02,0x00 -+// 24930 慢 ; -+,0x10,0x10,0x10,0x18,0x54,0x54,0x53,0x12,0x13,0x10,0x10,0x10,0x10,0x10,0x17,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x49,0xff,0x00,0xfc,0x48,0x30,0xd8,0x07,0x00 -+// 24931 慣 ; -+,0x11,0x11,0x17,0x19,0x55,0x54,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0xfc,0x24,0xff,0x24,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x48,0x84,0x04 -+// 24932 慤 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x21,0x1e,0x12,0x13,0x22,0x00,0x14,0x14,0x23,0x00,0x00,0xbc,0x24,0x27,0x40,0xbe,0x24,0x18,0x18,0x67,0x00,0x80,0x44,0x12,0xf2,0x00 -+// 24933 慥 ; -+,0x10,0x10,0x14,0x12,0x5a,0x54,0x50,0x16,0x12,0x12,0x12,0x12,0x12,0x15,0x18,0x10,0x10,0x50,0x50,0x7e,0x90,0x10,0xff,0x00,0x7c,0x44,0x44,0x7c,0x00,0x00,0xff,0x00 -+// 24934 慦 ; -+,0x04,0x05,0x7f,0x04,0x25,0x1e,0x15,0x65,0x0c,0x04,0x00,0x15,0x14,0x34,0x03,0x00,0x20,0x20,0xa0,0x3f,0x64,0xa4,0x18,0x18,0x27,0xc2,0x00,0x04,0x92,0x12,0xf0,0x00 -+// 24935 慧 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x0f,0x00,0x0f,0x00,0x0f,0x12,0x12,0x21,0x00,0x10,0x7e,0x10,0x7e,0x10,0x7e,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x42,0x09,0xf9,0x00 -+// 24936 慨 ; -+,0x10,0x13,0x12,0x13,0x5a,0x56,0x53,0x12,0x12,0x12,0x12,0x13,0x12,0x10,0x11,0x10,0x00,0xdf,0x44,0xc4,0x54,0x54,0xdf,0x0c,0x0c,0x8c,0xd4,0x54,0x25,0x45,0x83,0x00 -+// 24937 慩 ; -+,0x10,0x10,0x10,0x1a,0x55,0x50,0x56,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x14,0x10,0x10,0x10,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x10,0x10,0x00,0xff,0x00 -+// 24938 慪 ; -+,0x10,0x13,0x12,0x1a,0x56,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x10,0x00,0xff,0x00,0x7c,0x44,0x7c,0x00,0xee,0xaa,0xaa,0xaa,0xee,0x00,0x00,0xff,0x00 -+// 24939 慫 ; -+,0x08,0x08,0x10,0x25,0x06,0x08,0x19,0x69,0x0a,0x0c,0x08,0x02,0x12,0x12,0x21,0x00,0x88,0x88,0x88,0x54,0x22,0x20,0x20,0x3c,0xa0,0x60,0x1e,0x80,0x4a,0x09,0xf9,0x00 -+// 24940 慬 ; -+,0x10,0x10,0x13,0x18,0x54,0x50,0x53,0x12,0x13,0x10,0x13,0x10,0x13,0x10,0x17,0x10,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 24941 慭 ; -+,0x04,0x04,0x3f,0x15,0x0e,0x7f,0x0e,0x15,0x64,0x04,0x00,0x14,0x14,0x34,0x03,0x00,0x10,0x14,0x92,0x10,0x7f,0x90,0x28,0x24,0x47,0x82,0x00,0x84,0x52,0x12,0xf0,0x00 -+// 24942 慮 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x2a,0x2a,0x51,0x80,0xfe,0x80,0xfe,0x84,0xf0,0x84,0xfc,0x44,0xfc,0x44,0xfc,0x00,0x42,0x25,0xfd -+// 24943 慯 ; -+,0x10,0x10,0x11,0x18,0x54,0x54,0x50,0x10,0x13,0x10,0x11,0x16,0x11,0x10,0x13,0x10,0x80,0xfe,0x00,0xfc,0xa4,0x94,0xfc,0x00,0xff,0x80,0xfe,0x52,0x92,0x62,0x8a,0x04 -+// 24944 慰 ; -+,0x3f,0x20,0x3f,0x20,0x2f,0x20,0x3f,0x2b,0x52,0x4a,0x04,0x00,0x14,0x14,0x23,0x00,0x84,0x84,0x84,0x3f,0x04,0x24,0x94,0x04,0x84,0x14,0x08,0x80,0x44,0x12,0xf2,0x00 -+// 24945 慱 ; -+,0x10,0x13,0x10,0x19,0x55,0x51,0x51,0x11,0x10,0x13,0x10,0x13,0x10,0x10,0x10,0x10,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x22,0xff,0x04,0xff,0x84,0x44,0x14,0x08 -+// 24946 慲 ; -+,0x10,0x10,0x13,0x18,0x54,0x54,0x53,0x12,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x88,0x88,0xff,0x88,0xf8,0x20,0xff,0x21,0x31,0xa9,0xed,0x33,0x21,0x21,0x25,0x22 -+// 24947 慳 ; -+,0x10,0x13,0x12,0x13,0x5a,0x57,0x52,0x12,0x13,0x10,0x10,0x11,0x10,0x10,0x17,0x10,0x00,0xff,0x91,0xea,0x2a,0xe4,0x84,0x8b,0xf2,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 24948 慴 ; -+,0x10,0x13,0x10,0x19,0x54,0x51,0x52,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xde,0x42,0x4a,0xc6,0x5a,0x42,0x20,0x40,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 24949 慵 ; -+,0x10,0x13,0x12,0x12,0x1a,0x57,0x52,0x52,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x10,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x96 -+// 24950 慶 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x3f,0x20,0x2a,0x2a,0x31,0x21,0x21,0x22,0x44,0x41,0x0e,0x80,0xff,0x20,0xfe,0x22,0xfe,0x80,0x44,0x12,0xf2,0x00,0xf8,0x90,0x60,0x98,0x07 -+// 24951 慷 ; -+,0x10,0x11,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x11,0x12,0x12,0x13,0x14,0x10,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x92,0x74,0x58,0x94,0x17,0x52,0x20 -+// 24952 慸 ; -+,0x09,0x3f,0x09,0x11,0x00,0x3f,0x20,0x0f,0x08,0x08,0x08,0x01,0x14,0x14,0x23,0x00,0x48,0xfe,0x48,0xce,0x00,0xff,0x82,0xf8,0x88,0x88,0x98,0x00,0x84,0x12,0xf2,0x00 -+// 24953 慹 ; -+,0x08,0x3f,0x08,0x7f,0x12,0x3f,0x08,0x7f,0x08,0x08,0x00,0x14,0x14,0x34,0x03,0x00,0x10,0x10,0x7c,0x94,0x14,0x14,0x34,0x95,0x2b,0x41,0x00,0x84,0x42,0x12,0xf0,0x00 -+// 24954 慺 ; -+,0x10,0x11,0x11,0x1b,0x55,0x55,0x50,0x51,0x11,0x11,0x10,0x17,0x10,0x10,0x10,0x11,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x40,0xff,0x90,0x60,0x58,0x88 -+// 24955 慻 ; -+,0x10,0x11,0x10,0x1b,0x54,0x57,0x50,0x10,0x17,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x24,0xa8,0xfe,0x20,0xff,0x48,0x84,0xff,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x00 -+// 24956 慼 ; -+,0x00,0x00,0x1f,0x12,0x13,0x12,0x1f,0x12,0x2a,0x36,0x40,0x04,0x14,0x14,0x33,0x00,0x28,0x24,0xff,0x20,0x90,0x14,0xd4,0x09,0x99,0x65,0x03,0x80,0x4a,0x09,0xf9,0x00 -+// 24957 慽 ; -+,0x10,0x10,0x10,0x13,0x1a,0x56,0x52,0x52,0x13,0x12,0x12,0x15,0x16,0x19,0x10,0x10,0x08,0x0a,0x09,0xff,0x88,0x88,0xea,0x8b,0xea,0x8c,0xc4,0xac,0x95,0xa3,0x41,0x00 -+// 24958 慾 ; -+,0x02,0x11,0x25,0x46,0x09,0x10,0x3f,0x51,0x1f,0x00,0x00,0x14,0x14,0x34,0x03,0x00,0x20,0x20,0x3f,0x42,0x54,0x90,0x18,0x24,0x47,0x82,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 24959 慿 ; -+,0x03,0x22,0x13,0x12,0x07,0x0a,0x0b,0x31,0x17,0x11,0x02,0x14,0x14,0x34,0x03,0x00,0xfe,0x20,0xfc,0x20,0xfc,0x20,0xff,0x11,0xff,0x11,0x13,0x84,0x42,0x0b,0xf8,0x00 -+// 24960 憀 ; -+,0x10,0x17,0x12,0x11,0x59,0x56,0x50,0x10,0x11,0x16,0x11,0x16,0x11,0x10,0x17,0x00,0x00,0xde,0x52,0x4a,0x4a,0x52,0xe6,0x60,0x98,0x47,0x92,0x60,0x88,0x30,0xc0,0x00 -+// 24961 憁 ; -+,0x10,0x10,0x11,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x10,0x12,0x12,0x16,0x10,0x00,0x20,0x40,0xfe,0x42,0x7e,0xaa,0x12,0x2a,0xc2,0xfe,0x20,0x92,0x81,0x85,0x7c,0x00 -+// 24962 憂 ; -+,0x3f,0x00,0x07,0x04,0x06,0x05,0x04,0x3f,0x20,0x0a,0x13,0x04,0x07,0x19,0x00,0x0f,0xff,0x80,0xf8,0x88,0x48,0x28,0x98,0xff,0x82,0x14,0xf2,0x00,0xf0,0x20,0xc0,0x3c -+// 24963 憃 ; -+,0x00,0x0f,0x00,0x07,0x01,0x3f,0x02,0x07,0x1c,0x67,0x04,0x07,0x00,0x14,0x14,0x23,0x80,0xf8,0x80,0xf8,0x00,0xff,0x10,0x78,0x0f,0x7a,0x08,0xf8,0x80,0x42,0x09,0xf9 -+// 24964 憄 ; -+,0x08,0x09,0x10,0x24,0x09,0x19,0x69,0x09,0x09,0x09,0x08,0x02,0x12,0x12,0x31,0x00,0x10,0xff,0x20,0x7c,0x54,0x6c,0x54,0x7c,0x00,0xff,0x00,0x40,0x2a,0x09,0xf9,0x00 -+// 24965 憅 ; -+,0x03,0x3c,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x7f,0x00,0x14,0x14,0x23,0x88,0x08,0x08,0xbf,0x89,0x89,0x89,0x89,0x11,0x95,0x22,0xc0,0x84,0x43,0x09,0xf8 -+// 24966 憆 ; -+,0x10,0x11,0x10,0x10,0x59,0x55,0x50,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0x13,0x10,0x20,0x24,0xa4,0xa8,0xff,0x02,0x00,0xfc,0x84,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 24967 憇 ; -+,0x06,0x38,0x08,0x7e,0x08,0x3e,0x22,0x22,0x3e,0x00,0x00,0x14,0x14,0x34,0x03,0x00,0x44,0x44,0x44,0xff,0x44,0x7c,0x44,0x44,0x7c,0x00,0x80,0x42,0x49,0x09,0xf8,0x00 -+// 24968 憈 ; -+,0x10,0x10,0x10,0x19,0x55,0x55,0x51,0x11,0x11,0x11,0x13,0x12,0x12,0x14,0x19,0x10,0x20,0x3e,0x20,0xff,0x22,0x3c,0xe2,0x1e,0x00,0x48,0x4a,0xcc,0x48,0x48,0xff,0x00 -+// 24969 憉 ; -+,0x10,0x10,0x17,0x10,0x1b,0x54,0x53,0x52,0x13,0x10,0x12,0x11,0x10,0x17,0x10,0x10,0x80,0x82,0xf2,0x84,0xe8,0x02,0xe2,0x24,0xe8,0x01,0x21,0x42,0xe4,0x08,0x10,0x60 -+// 24970 憊 ; -+,0x08,0x0b,0x10,0x17,0x30,0x51,0x13,0x1d,0x11,0x11,0x11,0x11,0x00,0x14,0x14,0x33,0x88,0xfe,0x88,0xff,0x80,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x2c,0x80,0x42,0x09,0xf9 -+// 24971 憋 ; -+,0x04,0x24,0x15,0x3f,0x24,0x2e,0x2d,0x34,0x24,0x25,0x00,0x14,0x14,0x34,0x03,0x00,0x10,0x90,0x10,0xbf,0xa2,0xd2,0x8c,0x8c,0x93,0xa2,0x00,0x82,0x41,0x09,0xf8,0x00 -+// 24972 憌 ; -+,0x04,0x06,0x09,0x1e,0x24,0x5f,0x04,0x15,0x0f,0x38,0x00,0x04,0x14,0x14,0x33,0x00,0x20,0x20,0x3e,0xc2,0x22,0x16,0x0a,0x12,0xa2,0x06,0x80,0x40,0x42,0x09,0xf9,0x00 -+// 24973 憍 ; -+,0x10,0x13,0x10,0x1b,0x54,0x54,0x51,0x16,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0x12,0x3e,0xe0,0x20,0xff,0x48,0xfc,0x8b,0xf8,0x00,0xfe,0x02,0xfa,0x8a,0xfa,0x06,0x02 -+// 24974 憎 ; -+,0x11,0x10,0x10,0x13,0x1a,0x56,0x52,0x53,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x04,0x8c,0x50,0xfe,0x22,0xaa,0x72,0xfe,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 24975 憏 ; -+,0x12,0x13,0x12,0x15,0x5c,0x52,0x51,0x12,0x14,0x1b,0x10,0x11,0x12,0x14,0x10,0x10,0x00,0xde,0x62,0x54,0x98,0x88,0xf4,0x03,0x00,0xfc,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 24976 憐 ; -+,0x11,0x10,0x10,0x1b,0x54,0x54,0x53,0x11,0x11,0x12,0x15,0x10,0x10,0x11,0x12,0x14,0x24,0xa4,0xa8,0xff,0x70,0xac,0x23,0x04,0xde,0x54,0x54,0xbf,0x84,0x04,0x04,0x04 -+// 24977 憑 ; -+,0x23,0x12,0x43,0x26,0x0b,0x0a,0x33,0x10,0x15,0x18,0x00,0x14,0x14,0x34,0x03,0x00,0xfc,0x20,0xfc,0x20,0xfc,0x20,0xfe,0x02,0x52,0xaa,0x06,0x80,0x42,0x09,0xf8,0x00 -+// 24978 憒 ; -+,0x10,0x11,0x11,0x19,0x54,0x57,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x10,0x11,0x16,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x94,0x4c,0x24,0xfc,0x00,0x88,0x86,0x02 -+// 24979 憓 ; -+,0x10,0x13,0x10,0x11,0x19,0x55,0x55,0x51,0x10,0x13,0x10,0x10,0x12,0x12,0x14,0x10,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x22,0xff,0x01,0xa0,0x92,0x85,0x7d,0x00 -+// 24980 憔 ; -+,0x10,0x10,0x10,0x19,0x57,0x55,0x51,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x14,0x00,0xa0,0x90,0xff,0x10,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00,0x92,0x49,0x49,0x00 -+// 24981 憕 ; -+,0x10,0x13,0x10,0x12,0x19,0x54,0x51,0x52,0x15,0x11,0x11,0x10,0x10,0x10,0x17,0x10,0x20,0xe4,0x59,0x52,0x8c,0x84,0xfc,0x03,0xfc,0x04,0xfc,0x00,0x88,0x50,0xff,0x00 -+// 24982 憖 ; -+,0x04,0x04,0x7f,0x25,0x35,0x4e,0x0e,0x15,0x65,0x04,0x00,0x14,0x14,0x34,0x03,0x00,0x10,0x10,0xd4,0x12,0x7f,0x90,0x10,0x28,0x24,0x43,0x00,0x84,0x53,0x12,0xf0,0x00 -+// 24983 憗 ; -+,0x04,0x3f,0x04,0x25,0x35,0x4e,0x0f,0x14,0x64,0x04,0x00,0x14,0x14,0x34,0x03,0x00,0x20,0xa0,0x3f,0x24,0x64,0xa4,0x18,0x98,0x67,0x02,0x80,0x44,0x42,0x0a,0xf8,0x00 -+// 24984 憘 ; -+,0x10,0x13,0x10,0x19,0x54,0x55,0x51,0x11,0x10,0x17,0x10,0x11,0x11,0x11,0x11,0x10,0x20,0xff,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x88,0xff,0x00,0xfc,0x04,0x04,0xfc,0x00 -+// 24985 憙 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x0f,0x08,0x0f,0x04,0x7f,0x08,0x0f,0x01,0x28,0x28,0x47,0x80,0xfe,0x80,0xfc,0x00,0xf8,0x08,0xf8,0x10,0xff,0x08,0xf8,0x00,0x94,0x93,0xf2 -+// 24986 憚 ; -+,0x10,0x13,0x12,0x13,0x58,0x57,0x52,0x13,0x12,0x13,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0xde,0x52,0xde,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 24987 憛 ; -+,0x13,0x10,0x13,0x12,0x5b,0x54,0x51,0x11,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x10,0xfe,0x50,0xfe,0x52,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 24988 憜 ; -+,0x10,0x13,0x12,0x12,0x1b,0x57,0x52,0x52,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x10,0x90,0xff,0xa0,0x3e,0x48,0xff,0x80,0xbe,0xa2,0x3e,0x22,0x3e,0x22,0x26,0x22 -+// 24989 憝 ; -+,0x04,0x7f,0x11,0x1f,0x00,0x1f,0x02,0x07,0x7c,0x14,0x08,0x00,0x14,0x14,0x33,0x00,0x10,0x90,0x1f,0x24,0x24,0x54,0x08,0x88,0x14,0x67,0x02,0x80,0x42,0x09,0xf9,0x00 -+// 24990 憞 ; -+,0x11,0x10,0x17,0x10,0x1b,0x56,0x53,0x50,0x17,0x10,0x11,0x11,0x17,0x11,0x13,0x11,0x08,0x88,0xe8,0x08,0xcf,0x4a,0xd2,0x12,0xd4,0xac,0x08,0xcc,0x14,0x23,0x42,0x00 -+// 24991 憟 ; -+,0x10,0x17,0x10,0x13,0x1a,0x56,0x53,0x51,0x10,0x17,0x10,0x10,0x10,0x11,0x16,0x10,0x00,0xff,0x50,0xfe,0x52,0x52,0xfe,0x24,0xa8,0xff,0x30,0x68,0xa4,0x27,0x22,0x20 -+// 24992 憠 ; -+,0x1f,0x18,0x14,0x1f,0x12,0x1a,0x1f,0x12,0x24,0x28,0x40,0x14,0x14,0x34,0x03,0x00,0xff,0x40,0x90,0xdf,0x22,0x88,0x88,0x08,0x14,0x63,0x00,0x84,0x43,0x0a,0xf8,0x00 -+// 24993 憡 ; -+,0x11,0x11,0x11,0x1a,0x54,0x54,0x53,0x10,0x11,0x11,0x11,0x11,0x10,0x11,0x16,0x10,0x08,0x08,0xef,0x94,0x62,0x20,0xff,0x20,0xfc,0x24,0x24,0x7c,0xa8,0x27,0x22,0x20 -+// 24994 憢 ; -+,0x10,0x11,0x10,0x1b,0x54,0x55,0x53,0x11,0x11,0x16,0x13,0x10,0x10,0x11,0x16,0x10,0x20,0xfc,0x20,0xfe,0x00,0x08,0xbe,0x08,0xbf,0x00,0xfe,0x90,0x90,0x11,0x0f,0x00 -+// 24995 憣 ; -+,0x10,0x11,0x11,0x10,0x1b,0x54,0x50,0x51,0x16,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x1e,0xe0,0x24,0xa8,0xff,0x70,0xa8,0x27,0x22,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x00 -+// 24996 憤 ; -+,0x10,0x13,0x10,0x18,0x57,0x54,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x11,0x12,0x20,0xfe,0x20,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06,0x02 -+// 24997 憥 ; -+,0x04,0x15,0x0e,0x06,0x09,0x3f,0x21,0x0f,0x01,0x02,0x04,0x00,0x14,0x14,0x33,0x00,0x10,0x54,0x38,0x18,0x24,0xff,0x02,0xf8,0x08,0x28,0x10,0x80,0x42,0x09,0xf9,0x00 -+// 24998 憦 ; -+,0x10,0x12,0x11,0x18,0x55,0x52,0x53,0x12,0x10,0x11,0x10,0x10,0x10,0x10,0x10,0x11,0x88,0xaa,0xdc,0x88,0x58,0x64,0xff,0x22,0x20,0xfc,0x24,0x24,0x44,0x44,0x94,0x08 -+// 24999 憧 ; -+,0x10,0x10,0x13,0x10,0x5b,0x54,0x51,0x11,0x11,0x11,0x11,0x10,0x13,0x10,0x17,0x10,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x00 -+// 25000 憨 ; -+,0x1f,0x02,0x7f,0x11,0x1f,0x11,0x1f,0x13,0x1d,0x61,0x00,0x14,0x14,0x34,0x03,0x00,0x20,0x20,0xa0,0x7f,0x64,0xa4,0x18,0x88,0x14,0x63,0x00,0x82,0x43,0x0a,0xf8,0x00 -+// 25001 憩 ; -+,0x07,0x38,0x08,0x7f,0x08,0x3e,0x22,0x22,0x3e,0x00,0x04,0x14,0x14,0x34,0x03,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x84,0x42,0x4b,0x09,0xf8,0x00 -+// 25002 憪 ; -+,0x13,0x12,0x13,0x12,0x5b,0x56,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x12,0x12,0xde,0x52,0xde,0x52,0xde,0x02,0xf2,0x92,0xf2,0x92,0xf2,0x92,0x92,0x32,0x0a,0x04 -+// 25003 憫 ; -+,0x10,0x13,0x12,0x13,0x5a,0x57,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0xde,0x52,0xde,0x52,0xde,0x22,0xfe,0x0a,0x4a,0x32,0x32,0x4a,0x82,0x0a,0x04 -+// 25004 憬 ; -+,0x11,0x11,0x11,0x19,0x55,0x50,0x57,0x10,0x11,0x11,0x11,0x10,0x12,0x12,0x14,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x20,0x24,0x22,0xa2,0x40 -+// 25005 憭 ; -+,0x10,0x10,0x13,0x1a,0x55,0x51,0x57,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x14,0x10,0x20,0x20,0xfe,0x54,0x88,0x07,0xfa,0x08,0xf8,0x08,0xf8,0x20,0x24,0x22,0xa2,0x40 -+// 25006 憮 ; -+,0x10,0x10,0x11,0x11,0x1b,0x55,0x59,0x57,0x11,0x11,0x17,0x10,0x12,0x12,0x14,0x10,0x80,0x80,0x00,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0xff,0x00,0x92,0x49,0x49,0x00 -+// 25007 憯 ; -+,0x10,0x13,0x10,0x12,0x5b,0x55,0x51,0x12,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xde,0x84,0x94,0xff,0x8c,0xcd,0x93,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 25008 憰 ; -+,0x11,0x10,0x10,0x1b,0x54,0x51,0x56,0x13,0x12,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0xfc,0x08,0x30,0xff,0x52,0x90,0x30,0xff,0x49,0x87,0x79,0x49,0x79,0x01,0x05,0x02 -+// 25009 憱 ; -+,0x10,0x11,0x10,0x17,0x18,0x57,0x52,0x52,0x13,0x11,0x11,0x15,0x15,0x1b,0x11,0x00,0x08,0x08,0x8a,0xe9,0x08,0xdf,0x48,0x48,0xc8,0x0c,0x0c,0x54,0x35,0x25,0x43,0x00 -+// 25010 憲 ; -+,0x00,0x3f,0x20,0x0f,0x00,0x0f,0x00,0x1f,0x00,0x1f,0x12,0x1f,0x00,0x14,0x34,0x03,0x80,0xff,0x82,0xf8,0x80,0xf8,0x80,0xfc,0x00,0xfc,0x24,0xfc,0x80,0x43,0x09,0xf8 -+// 25011 憳 ; -+,0x11,0x10,0x11,0x18,0x55,0x50,0x53,0x11,0x11,0x17,0x10,0x17,0x10,0x10,0x10,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x12,0xd2,0x1e,0x04,0xff,0x44,0x44,0x14,0x08 -+// 25012 憴 ; -+,0x10,0x13,0x12,0x1b,0x54,0x50,0x53,0x12,0x13,0x12,0x12,0x13,0x10,0x10,0x10,0x10,0x00,0xfe,0x52,0xde,0x50,0x50,0xde,0x52,0xde,0x52,0x52,0xde,0x51,0x51,0x3f,0x00 -+// 25013 憵 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x10,0x1f,0x29,0x29,0x4f,0x00,0x04,0x14,0x14,0x23,0x00,0x10,0x08,0x7f,0x22,0x14,0x7f,0x08,0x7f,0x08,0x08,0x00,0x82,0x49,0x09,0xf8,0x00 -+// 25014 憶 ; -+,0x10,0x11,0x10,0x18,0x57,0x54,0x51,0x11,0x11,0x11,0x11,0x10,0x12,0x12,0x16,0x10,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x91,0x85,0x7c,0x00 -+// 25015 憷 ; -+,0x10,0x10,0x13,0x18,0x55,0x52,0x50,0x10,0x13,0x10,0x11,0x11,0x11,0x12,0x14,0x10,0x88,0x88,0xde,0x88,0xdc,0xaa,0x88,0x00,0xfe,0x24,0x20,0x3e,0xa0,0x60,0x1f,0x00 -+// 25016 憸 ; -+,0x10,0x10,0x10,0x19,0x57,0x54,0x53,0x12,0x12,0x13,0x11,0x11,0x11,0x12,0x12,0x14,0x40,0x60,0x90,0x08,0xf7,0x00,0xde,0x52,0x52,0xde,0x08,0x08,0x14,0x92,0x63,0x42 -+// 25017 憹 ; -+,0x10,0x13,0x12,0x13,0x1a,0x57,0x50,0x53,0x12,0x13,0x12,0x13,0x12,0x14,0x14,0x18,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xfe,0x00,0xfe,0x00,0xff,0x94,0x88,0xc7,0x82 -+// 25018 憺 ; -+,0x10,0x10,0x11,0x1b,0x56,0x56,0x53,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x10,0x40,0xfc,0x08,0xff,0x44,0x92,0xff,0x00,0xfe,0x00,0xfe,0x00,0xfe,0x82,0xfe,0x00 -+// 25019 憻 ; -+,0x10,0x13,0x10,0x11,0x19,0x55,0x55,0x51,0x10,0x10,0x10,0x10,0x10,0x10,0x13,0x10,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0xa4,0x94,0xfc,0x00,0xff,0x00 -+// 25020 憼 ; -+,0x09,0x09,0x7f,0x29,0x3f,0x20,0x5e,0x12,0x1e,0x01,0x00,0x12,0x12,0x32,0x01,0x00,0x10,0x10,0xdf,0x22,0xd4,0x94,0x88,0x94,0xe7,0x82,0x00,0x42,0x21,0x09,0xf8,0x00 -+// 25021 憽 ; -+,0x10,0x10,0x13,0x18,0x54,0x51,0x52,0x11,0x12,0x10,0x10,0x10,0x12,0x12,0x14,0x00,0x88,0x88,0xff,0x88,0xfe,0x52,0xd2,0x32,0x6a,0x82,0x06,0xa0,0xa2,0x89,0x79,0x00 -+// 25022 憾 ; -+,0x10,0x10,0x13,0x12,0x1b,0x56,0x53,0x52,0x13,0x14,0x14,0x18,0x12,0x12,0x14,0x00,0x14,0x12,0xff,0x10,0xd0,0x14,0xd4,0x48,0xcd,0x13,0x01,0xa2,0x91,0x85,0x7c,0x00 -+// 25023 憿 ; -+,0x10,0x11,0x13,0x12,0x5b,0x56,0x53,0x10,0x17,0x11,0x11,0x12,0x12,0x15,0x18,0x10,0x88,0x08,0xc8,0x48,0xcf,0x4a,0xd2,0x92,0xea,0x04,0xc4,0x44,0x4a,0x53,0xa2,0x00 -+// 25024 懀 ; -+,0x10,0x10,0x10,0x19,0x56,0x51,0x51,0x51,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x50,0x88,0xf4,0x03,0xfc,0x24,0xac,0x74,0xfc,0x00,0xf8,0x88,0xf8,0x88,0xf8 -+// 25025 懁 ; -+,0x10,0x13,0x12,0x13,0x58,0x57,0x50,0x11,0x11,0x11,0x10,0x11,0x16,0x10,0x10,0x10,0x00,0xfe,0x52,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0x92,0x94,0x88,0xc7,0x82,0x00 -+// 25026 懂 ; -+,0x10,0x17,0x10,0x19,0x54,0x57,0x50,0x11,0x11,0x11,0x11,0x11,0x10,0x13,0x10,0x17,0x88,0xff,0x88,0xfc,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff -+// 25027 懃 ; -+,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x3f,0x00,0x14,0x24,0x03,0x08,0xc8,0x08,0x3e,0x0a,0x8a,0x8a,0x92,0x12,0xa2,0x2a,0xc4,0x80,0x44,0x0a,0xf8 -+// 25028 懄 ; -+,0x12,0x17,0x12,0x13,0x58,0x57,0x52,0x13,0x10,0x13,0x10,0x13,0x10,0x10,0x17,0x10,0x24,0xf4,0x24,0xe4,0x8f,0xe5,0xa5,0xe5,0x85,0xe5,0x89,0xe9,0x91,0xf9,0x26,0x00 -+// 25029 懅 ; -+,0x10,0x10,0x10,0x1b,0x56,0x53,0x52,0x12,0x12,0x13,0x12,0x13,0x14,0x15,0x18,0x11,0x40,0x7c,0x40,0xff,0x42,0xf8,0x42,0x3e,0x00,0xfe,0x60,0xb4,0x58,0xb4,0x53,0xb0 -+// 25030 懆 ; -+,0x10,0x10,0x10,0x18,0x57,0x52,0x52,0x13,0x10,0x17,0x10,0x10,0x11,0x16,0x10,0x10,0xf8,0x88,0xf8,0x00,0xde,0x52,0x52,0xde,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 25031 懇 ; -+,0x06,0x18,0x6a,0x14,0x18,0x64,0x1a,0x66,0x1a,0x66,0x00,0x04,0x14,0x14,0x33,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x92,0x94,0xc8,0x86,0x00,0x84,0x42,0x0a,0xf8,0x00 -+// 25032 懈 ; -+,0x12,0x13,0x12,0x14,0x5f,0x55,0x55,0x17,0x15,0x17,0x15,0x15,0x15,0x15,0x18,0x10,0x00,0xde,0x4a,0x8a,0xd2,0x66,0x54,0xdf,0x64,0xc4,0x7f,0x44,0x44,0x44,0xc4,0x04 -+// 25033 應 ; -+,0x00,0x3f,0x22,0x22,0x25,0x2e,0x34,0x24,0x24,0x24,0x20,0x22,0x2a,0x4a,0x59,0x00,0x80,0xff,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0x44,0x23,0x09,0xf8,0x00 -+// 25034 懊 ; -+,0x10,0x10,0x13,0x12,0x5a,0x57,0x52,0x12,0x13,0x10,0x17,0x10,0x10,0x11,0x16,0x10,0x20,0x40,0xfe,0xaa,0x72,0xfa,0x62,0xb2,0x2a,0x20,0xff,0x20,0x50,0x88,0x07,0x00 -+// 25035 懋 ; -+,0x0b,0x08,0x08,0x7f,0x18,0x1d,0x2a,0x4c,0x09,0x08,0x00,0x14,0x14,0x34,0x03,0x00,0xe4,0x44,0x84,0xff,0xac,0x8e,0x95,0x95,0xa4,0x84,0x00,0x84,0x42,0x12,0xf0,0x00 -+// 25036 懌 ; -+,0x11,0x11,0x11,0x11,0x18,0x55,0x50,0x53,0x10,0x10,0x11,0x10,0x13,0x10,0x10,0x10,0xfe,0x4a,0x4a,0xfe,0x20,0xfe,0x20,0xff,0x88,0x50,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 25037 懍 ; -+,0x10,0x13,0x10,0x11,0x19,0x55,0x55,0x51,0x10,0x11,0x10,0x13,0x10,0x10,0x13,0x10,0x20,0xff,0x00,0xfe,0x02,0x7a,0x4a,0xfe,0x00,0xfe,0x20,0xff,0x70,0xa8,0x26,0x20 -+// 25038 懎 ; -+,0x10,0x10,0x13,0x19,0x55,0x52,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x20,0x20,0xfe,0x28,0x28,0xb4,0xff,0x00,0xfc,0x04,0x74,0x54,0x74,0x04,0xfc,0x00 -+// 25039 懏 ; -+,0x10,0x11,0x13,0x11,0x19,0x55,0x51,0x51,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xce,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 25040 懐 ; -+,0x10,0x10,0x13,0x18,0x55,0x55,0x51,0x10,0x13,0x10,0x10,0x11,0x12,0x14,0x10,0x10,0x40,0x20,0xff,0x00,0xde,0x52,0xde,0x20,0xff,0x60,0x92,0x8c,0x88,0xa7,0xc2,0x80 -+// 25041 懑 ; -+,0x20,0x17,0x00,0x43,0x28,0x0b,0x12,0x72,0x13,0x12,0x00,0x14,0x14,0x34,0x03,0x00,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x92,0xda,0x26,0x4a,0x04,0x40,0x4a,0x09,0xf8,0x00 -+// 25042 懒 ; -+,0x11,0x11,0x17,0x11,0x1f,0x55,0x55,0x57,0x11,0x13,0x13,0x15,0x19,0x11,0x11,0x11,0x08,0x0f,0xd1,0x22,0xdf,0x51,0x51,0xd5,0x15,0x95,0x55,0x15,0x04,0x0a,0x11,0x21 -+// 25043 懓 ; -+,0x10,0x13,0x11,0x18,0x57,0x52,0x52,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x13,0x10,0x1e,0xe0,0x22,0x94,0xff,0x22,0x91,0x85,0x7c,0x80,0xfc,0x48,0x30,0x30,0xcf,0x00 -+// 25044 懔 ; -+,0x10,0x13,0x10,0x19,0x55,0x55,0x51,0x11,0x10,0x11,0x10,0x17,0x10,0x11,0x12,0x10,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0x00,0xff,0x20,0x24,0x62,0x20 -+// 25045 懕 ; -+,0x1f,0x10,0x17,0x14,0x17,0x10,0x17,0x14,0x17,0x14,0x27,0x24,0x22,0x4a,0x52,0x01,0xff,0x08,0xcc,0x4a,0xc8,0x3f,0xc8,0x4c,0xd4,0x53,0xe2,0x40,0x42,0x21,0x05,0xfc -+// 25046 懖 ; -+,0x04,0x0a,0x11,0x3f,0x44,0x3f,0x04,0x16,0x0f,0x38,0x00,0x14,0x14,0x34,0x03,0x00,0x06,0x78,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x3e,0x00,0x82,0x49,0x09,0xf8,0x00 -+// 25047 懗 ; -+,0x11,0x11,0x13,0x19,0x55,0x57,0x52,0x12,0x16,0x1a,0x12,0x12,0x14,0x16,0x19,0x00,0x04,0x04,0xdf,0x04,0x04,0xff,0x8a,0x8a,0xdb,0xab,0x8a,0x92,0x92,0xaa,0xc4,0x00 -+// 25048 懘 ; -+,0x01,0x13,0x09,0x22,0x10,0x0b,0x0a,0x31,0x11,0x11,0x00,0x04,0x14,0x14,0x33,0x00,0x54,0xfe,0x54,0x76,0x00,0xff,0x22,0xfc,0x24,0x2c,0x20,0x80,0x4a,0x09,0xf9,0x00 -+// 25049 懙 ; -+,0x10,0x11,0x12,0x12,0x5b,0x56,0x52,0x13,0x12,0x17,0x10,0x10,0x10,0x11,0x12,0x10,0x40,0x46,0x72,0x42,0x76,0x12,0x52,0x56,0x52,0xff,0x00,0x88,0x84,0x06,0x02,0x00 -+// 25050 懚 ; -+,0x10,0x13,0x11,0x11,0x18,0x57,0x50,0x51,0x10,0x11,0x10,0x11,0x10,0x12,0x14,0x10,0x3c,0xc4,0x28,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xa2,0x89,0x78 -+// 25051 懛 ; -+,0x10,0x13,0x10,0x19,0x54,0x54,0x50,0x13,0x12,0x11,0x10,0x11,0x10,0x11,0x10,0x13,0x20,0xff,0x20,0xfe,0x84,0xfc,0x00,0xff,0x02,0xfc,0x48,0xfc,0x20,0xfe,0x20,0xff -+// 25052 懜 ; -+,0x10,0x13,0x10,0x1b,0x56,0x52,0x53,0x10,0x17,0x14,0x10,0x11,0x12,0x10,0x10,0x13,0x88,0xff,0x88,0xfe,0xaa,0xaa,0xfe,0x00,0xff,0x82,0xf8,0x88,0x50,0x20,0xc0,0x00 -+// 25053 懝 ; -+,0x12,0x13,0x12,0x13,0x58,0x56,0x53,0x15,0x11,0x17,0x11,0x12,0x12,0x14,0x19,0x10,0x40,0xbe,0x04,0xd8,0x08,0x3f,0xca,0x08,0x28,0xef,0x28,0xa8,0xb8,0x4c,0x83,0x00 -+// 25054 懞 ; -+,0x10,0x13,0x10,0x13,0x5a,0x54,0x50,0x13,0x10,0x13,0x10,0x13,0x10,0x17,0x10,0x10,0x48,0xff,0x48,0xff,0x02,0xfc,0x00,0xff,0x60,0xb3,0xdc,0x28,0xcc,0x0b,0x50,0x20 -+// 25055 懟 ; -+,0x0a,0x2a,0x1b,0x7f,0x11,0x3f,0x04,0x3f,0x04,0x07,0x78,0x00,0x14,0x14,0x33,0x00,0x04,0x84,0x04,0xc4,0x3f,0xc4,0x14,0x8c,0x04,0x94,0x08,0x80,0x44,0x0a,0xf8,0x00 -+// 25056 懠 ; -+,0x10,0x17,0x10,0x10,0x5b,0x56,0x52,0x15,0x10,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x20,0xff,0x88,0x53,0xac,0xad,0xaa,0xad,0x00,0xfc,0x04,0xfc,0x04,0x04,0x04,0x04 -+// 25057 懡 ; -+,0x10,0x10,0x13,0x12,0x1b,0x56,0x52,0x53,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x10,0x20,0x10,0xff,0x44,0xff,0xc4,0xee,0x55,0x44,0x20,0x28,0x50,0xa0,0x44,0xfe,0x02 -+// 25058 懢 ; -+,0x10,0x13,0x12,0x13,0x1a,0x57,0x52,0x52,0x13,0x10,0x13,0x12,0x12,0x12,0x17,0x10,0x00,0xe8,0x88,0xef,0x28,0xec,0x92,0x92,0xe0,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 25059 懣 ; -+,0x21,0x17,0x11,0x41,0x24,0x2f,0x0e,0x15,0x36,0x14,0x10,0x04,0x14,0x14,0x33,0x00,0x10,0xfe,0x10,0xf0,0x40,0xfe,0x52,0x5a,0xe6,0x42,0x46,0x80,0x42,0x0b,0xf9,0x00 -+// 25060 懤 ; -+,0x10,0x13,0x10,0x13,0x18,0x57,0x50,0x53,0x10,0x17,0x10,0x13,0x12,0x13,0x10,0x10,0x40,0xfc,0x40,0xfc,0x00,0xff,0x02,0xfc,0x40,0xff,0x08,0xfe,0xa8,0x88,0x28,0x10 -+// 25061 懥 ; -+,0x10,0x13,0x10,0x17,0x14,0x59,0x55,0x51,0x11,0x11,0x10,0x17,0x11,0x11,0x12,0x14,0x20,0xfe,0x20,0xff,0x02,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff,0x22,0x3c,0xa0,0x7f -+// 25062 懦 ; -+,0x13,0x10,0x13,0x1a,0x57,0x50,0x51,0x10,0x13,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0xfe,0x20,0xff,0x22,0xae,0x20,0xae,0x20,0xff,0x40,0xfe,0x52,0x52,0x52,0x52,0x06 -+// 25063 懧 ; -+,0x10,0x13,0x12,0x10,0x5a,0x56,0x50,0x11,0x11,0x17,0x10,0x13,0x10,0x10,0x10,0x10,0x20,0xff,0x02,0xa0,0x95,0x7d,0x00,0xfc,0x54,0xff,0x00,0xfe,0x20,0x20,0xa0,0x40 -+// 25064 懨 ; -+,0x17,0x14,0x15,0x15,0x5d,0x55,0x55,0x14,0x15,0x15,0x15,0x15,0x15,0x19,0x19,0x12,0xff,0x00,0xe8,0x28,0xea,0x29,0xe8,0x1e,0xe8,0x28,0xe8,0x28,0xec,0x34,0x73,0x22 -+// 25065 懩 ; -+,0x11,0x13,0x10,0x1b,0x54,0x57,0x50,0x11,0x17,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x08,0xfe,0x40,0xfc,0x40,0xff,0xc8,0x24,0xfb,0x08,0xf8,0x08,0xf8,0x4c,0xb0,0x1c -+// 25066 懪 ; -+,0x11,0x11,0x11,0x19,0x55,0x54,0x53,0x10,0x17,0x10,0x17,0x11,0x10,0x11,0x12,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xfe,0x88,0xff,0xa4,0x23,0x24,0xa8,0x24,0x22,0x60 -+// 25067 懫 ; -+,0x13,0x12,0x13,0x1a,0x56,0x54,0x53,0x12,0x13,0x12,0x13,0x12,0x13,0x10,0x11,0x12,0xde,0x10,0xdf,0x94,0xa4,0xc4,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x0c,0x04 -+// 25068 懬 ; -+,0x00,0x3f,0x21,0x2f,0x21,0x2f,0x20,0x27,0x24,0x27,0x24,0x27,0x20,0x2a,0x4a,0x59,0x80,0xff,0x10,0xfe,0x10,0xff,0x00,0xfc,0x44,0xfc,0x44,0xfc,0x80,0x42,0x09,0xf9 -+// 25069 懭 ; -+,0x10,0x10,0x13,0x12,0x5b,0x56,0x53,0x12,0x12,0x12,0x12,0x12,0x14,0x14,0x18,0x10,0x40,0x20,0xff,0x48,0xfe,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x46,0x82 -+// 25070 懮 ; -+,0x13,0x10,0x10,0x19,0x55,0x55,0x51,0x17,0x14,0x13,0x15,0x10,0x11,0x12,0x10,0x17,0xfe,0x40,0x80,0xfc,0x94,0x4c,0x24,0xff,0x42,0x25,0xfd,0x80,0xf8,0x90,0x60,0x9e -+// 25071 懯 ; -+,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x08,0x7f,0x10,0x1f,0x21,0x43,0x14,0x14,0x23,0x10,0x90,0x20,0xbf,0xa4,0xd4,0x94,0x08,0x94,0x17,0x22,0x00,0x08,0x96,0x54,0xf0 -+// 25072 懰 ; -+,0x11,0x16,0x14,0x15,0x5e,0x54,0x51,0x13,0x1c,0x13,0x10,0x12,0x11,0x17,0x10,0x10,0x01,0xf1,0x51,0x55,0xd5,0xb5,0x45,0xf5,0x85,0xe5,0xa5,0xc5,0xf1,0x01,0x05,0x02 -+// 25073 懱 ; -+,0x10,0x13,0x10,0x18,0x55,0x51,0x51,0x10,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x48,0xff,0x48,0x00,0xfe,0x52,0xfe,0x14,0xff,0x10,0x94,0x54,0x48,0x0d,0x13,0x21 -+// 25074 懲 ; -+,0x11,0x15,0x27,0x50,0x17,0x10,0x37,0x51,0x17,0x11,0x17,0x10,0x00,0x12,0x12,0x31,0x00,0x50,0xd0,0x1f,0xd2,0x32,0xec,0x04,0xcc,0x13,0xe2,0x00,0x80,0x42,0x11,0xf1 -+// 25075 懳 ; -+,0x10,0x13,0x10,0x1b,0x54,0x57,0x50,0x11,0x10,0x11,0x10,0x11,0x10,0x12,0x12,0x16,0x88,0xdf,0x88,0xde,0x88,0xdf,0x88,0xfe,0x02,0xfe,0x02,0xfe,0x20,0x91,0x82,0x7e -+// 25076 懴 ; -+,0x10,0x10,0x13,0x18,0x57,0x51,0x57,0x11,0x13,0x11,0x17,0x11,0x11,0x17,0x10,0x10,0x88,0x88,0xea,0x89,0xff,0x48,0x78,0x4a,0x6b,0x4a,0x74,0x4d,0xeb,0x13,0x21,0x00 -+// 25077 懵 ; -+,0x10,0x13,0x10,0x19,0x55,0x51,0x50,0x13,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x88,0xff,0x88,0xfe,0x52,0xfe,0x00,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc -+// 25078 懶 ; -+,0x11,0x11,0x17,0x19,0x57,0x55,0x55,0x17,0x11,0x13,0x13,0x15,0x19,0x11,0x11,0x11,0x10,0x1f,0xd2,0x24,0xff,0x51,0x5f,0xd1,0x1f,0x91,0x51,0x5f,0x00,0x0a,0x11,0x21 -+// 25079 懷 ; -+,0x10,0x17,0x10,0x13,0x5a,0x57,0x51,0x10,0x10,0x13,0x10,0x11,0x16,0x10,0x10,0x10,0x20,0xff,0x00,0xfe,0x52,0xfe,0x24,0xe8,0xa4,0x22,0x60,0x92,0x8c,0xa4,0xc7,0x82 -+// 25080 懸 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x12,0x3f,0x00,0x14,0x14,0x34,0x03,0x00,0x0e,0x70,0x24,0x78,0x12,0x7f,0x08,0xaa,0x49,0x18,0x00,0x84,0x43,0x09,0xf8 -+// 25081 懹 ; -+,0x10,0x17,0x10,0x13,0x1a,0x57,0x50,0x53,0x10,0x11,0x10,0x17,0x11,0x17,0x11,0x11,0x20,0xff,0x00,0xde,0x52,0xde,0x88,0xfe,0x88,0xfc,0x88,0xff,0x12,0x0c,0x87,0x02 -+// 25082 懺 ; -+,0x11,0x11,0x11,0x1a,0x54,0x57,0x51,0x17,0x11,0x17,0x11,0x17,0x11,0x1e,0x10,0x10,0x28,0x28,0x2c,0xda,0x88,0xff,0x48,0x6a,0x4b,0x6a,0x44,0x65,0xed,0x13,0x21,0x00 -+// 25083 懻 ; -+,0x10,0x13,0x10,0x1b,0x54,0x55,0x51,0x11,0x11,0x11,0x10,0x13,0x10,0x17,0x10,0x13,0x90,0x9c,0x91,0x8f,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x88,0xfe,0x88,0xff,0x84,0x02 -+// 25084 懼 ; -+,0x13,0x12,0x13,0x12,0x5b,0x56,0x53,0x10,0x11,0x13,0x1d,0x11,0x11,0x11,0x11,0x11,0xde,0x52,0xde,0x52,0xde,0x52,0xfe,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 25085 懽 ; -+,0x10,0x13,0x10,0x18,0x55,0x55,0x51,0x10,0x11,0x13,0x1d,0x11,0x11,0x11,0x11,0x11,0x48,0xff,0x48,0x00,0xde,0x52,0xde,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 25086 懾 ; -+,0x00,0x13,0x11,0x11,0x19,0x55,0x57,0x50,0x1f,0x16,0x15,0x16,0x15,0x1f,0x10,0x10,0x00,0xfe,0x28,0x98,0x48,0x28,0xff,0x08,0xff,0x9a,0x96,0x9a,0xd6,0xbf,0x82,0x82 -+// 25087 懿 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x00,0x7f,0x42,0x3e,0x00,0x3e,0x22,0x3e,0x14,0x16,0x78,0x10,0x98,0x50,0x1f,0x2a,0x48,0x4c,0x92,0x23,0x41,0x00,0x28,0xa5,0xa1,0xa3,0x1e -+// 25088 戀 ; -+,0x08,0x0b,0x10,0x3d,0x08,0x15,0x3c,0x01,0x55,0x55,0x00,0x04,0x14,0x14,0x33,0x00,0x84,0xe4,0x08,0xde,0x04,0xca,0x1f,0xc0,0x55,0xd4,0x00,0x80,0x4a,0x0b,0xfa,0x00 -+// 25089 戁 ; -+,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x7f,0x0a,0x11,0x60,0x14,0x14,0x23,0x20,0xa8,0x24,0x7f,0xa8,0xbe,0xa8,0xbe,0x28,0xa8,0x3f,0xa0,0x84,0x43,0x09,0xf8 -+// 25090 戂 ; -+,0x10,0x13,0x12,0x12,0x5b,0x56,0x53,0x12,0x12,0x13,0x12,0x13,0x14,0x15,0x18,0x10,0x20,0xff,0x44,0x44,0xff,0xee,0x55,0x44,0x28,0xef,0x28,0xef,0x28,0xef,0x28,0x28 -+// 25091 戃 ; -+,0x10,0x11,0x10,0x13,0x5a,0x54,0x50,0x13,0x12,0x13,0x10,0x11,0x10,0x13,0x12,0x14,0x20,0x24,0xa8,0xff,0x8a,0xf8,0x00,0xfe,0xaa,0xfe,0x20,0xfc,0x20,0xfe,0x92,0x49 -+// 25092 戄 ; -+,0x13,0x12,0x13,0x12,0x5a,0x57,0x52,0x17,0x1a,0x13,0x12,0x13,0x11,0x10,0x10,0x17,0xde,0x52,0x5a,0xd6,0x52,0xde,0x20,0xfe,0x20,0xfe,0x20,0xfe,0x04,0x88,0x70,0x8f -+// 25093 戅 ; -+,0x08,0x7f,0x12,0x7f,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x08,0x09,0x14,0x14,0x23,0x00,0x00,0x7e,0x10,0x7e,0x42,0x72,0x4e,0x42,0x7e,0x24,0x42,0x00,0xca,0x89,0xf9,0x00 -+// 25094 戆 ; -+,0x08,0x3f,0x14,0x7f,0x22,0x3f,0x22,0x3e,0x08,0x7f,0x08,0x08,0x00,0x15,0x14,0x23,0x20,0x7e,0xa4,0x18,0x67,0xfe,0x10,0xfe,0x44,0x54,0x54,0x28,0x44,0x00,0x8a,0xf9 -+// 25095 戇 ; -+,0x08,0x7f,0x14,0x7f,0x22,0x3f,0x22,0x3e,0x08,0x7f,0x08,0x08,0x08,0x04,0x14,0x23,0x20,0x7e,0xa4,0x18,0x7f,0x88,0x7f,0x22,0x3e,0xa2,0x3e,0x24,0x42,0x81,0x4a,0xfa -+// 25096 戈 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x06,0x38,0x00,0x00,0x00,0x20,0x10,0x00,0xfe,0x08,0x0c,0x88,0x90,0x60,0x40,0xa0,0x12,0x0a,0x06,0x00 -+// 25097 戉 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0x14,0x1b,0x10,0x00,0x40,0x50,0x48,0xfe,0x40,0x40,0x44,0x44,0x28,0x30,0x30,0x50,0x89,0x05,0x03,0x01 -+// 25098 戊 ; -+,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x26,0x20,0x40,0x40,0x48,0x44,0x40,0xff,0x40,0x44,0x44,0x28,0x30,0x30,0x50,0x89,0x05,0x03,0x01 -+// 25099 戋 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x3f,0x00,0x00,0x00,0x00,0x01,0x06,0x38,0x00,0x00,0x20,0x10,0xfc,0x00,0x00,0xfe,0x00,0x88,0x9c,0x60,0x60,0xb2,0x0a,0x06,0x02 -+// 25100 戌 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x21,0x26,0x40,0x00,0x20,0x28,0x24,0xff,0x20,0x20,0x24,0x24,0x28,0x10,0x30,0x50,0x89,0x05,0x03,0x01 -+// 25101 戍 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x18,0x14,0x12,0x11,0x10,0x10,0x21,0x26,0x40,0x00,0x50,0x48,0x48,0xff,0x40,0x40,0x24,0x24,0x28,0x10,0x30,0x49,0x85,0x03,0x01,0x00 -+// 25102 戎 ; -+,0x00,0x00,0x00,0x3f,0x04,0x04,0x04,0x04,0x3f,0x04,0x04,0x08,0x09,0x16,0x20,0x00,0x20,0x28,0x24,0xff,0x20,0x28,0x2c,0x28,0x98,0x10,0x30,0x52,0x8a,0x06,0x02,0x00 -+// 25103 戏 ; -+,0x00,0x00,0x3f,0x01,0x22,0x12,0x0c,0x04,0x06,0x0a,0x09,0x11,0x20,0x03,0x00,0x00,0x20,0x28,0x24,0x24,0x20,0xff,0x20,0x22,0x14,0x18,0x10,0x28,0xc9,0x05,0x03,0x01 -+// 25104 成 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x1f,0x11,0x11,0x11,0x11,0x15,0x22,0x20,0x43,0x00,0x50,0x48,0x40,0xff,0x40,0x40,0x44,0x46,0x24,0x28,0x10,0x30,0x49,0x85,0x03,0x01 -+// 25105 我 ; -+,0x03,0x1c,0x04,0x04,0x04,0x7f,0x04,0x04,0x07,0x1c,0x64,0x04,0x04,0x04,0x14,0x08,0x20,0x28,0x24,0x24,0x20,0xff,0x20,0x24,0x14,0x18,0x10,0x28,0xc9,0x05,0x03,0x01 -+// 25106 戒 ; -+,0x00,0x00,0x00,0x3f,0x00,0x09,0x09,0x3f,0x09,0x09,0x09,0x11,0x11,0x21,0x41,0x00,0x20,0x28,0x24,0xff,0x20,0x20,0x24,0xa6,0x24,0x18,0x10,0x28,0x48,0x85,0x03,0x01 -+// 25107 戓 ; -+,0x00,0x00,0x00,0x7f,0x00,0x00,0x1f,0x11,0x11,0x11,0x1f,0x00,0x00,0x01,0x06,0x00,0x20,0x28,0x24,0xff,0x20,0x20,0x24,0x26,0x14,0x18,0x10,0x28,0x49,0x85,0x03,0x01 -+// 25108 戔 ; -+,0x01,0x01,0x3f,0x00,0x00,0x01,0x0e,0x01,0x01,0x7f,0x00,0x00,0x00,0x03,0x1c,0x00,0x20,0x10,0xfe,0x88,0x70,0x91,0x0d,0x23,0x10,0xfc,0x90,0x60,0xa0,0x11,0x0d,0x03 -+// 25109 戕 ; -+,0x02,0x02,0x12,0x12,0x13,0x3e,0x02,0x02,0x7e,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x20,0x28,0x24,0x20,0xff,0x20,0x24,0x26,0x24,0x18,0x10,0x28,0x49,0x85,0x03,0x01 -+// 25110 或 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0x11,0x11,0x1f,0x00,0x01,0x06,0x39,0x06,0x00,0x20,0x28,0x24,0xfe,0x20,0x20,0x20,0x26,0x24,0x18,0x10,0x2a,0x4a,0x86,0x02,0x00 -+// 25111 戗 ; -+,0x04,0x04,0x0a,0x09,0x10,0x20,0x5f,0x11,0x11,0x15,0x12,0x10,0x11,0x0f,0x00,0x00,0x20,0x28,0x24,0x20,0xbf,0xe0,0x20,0x24,0x16,0x14,0x08,0x09,0x15,0x23,0xc1,0x00 -+// 25112 战 ; -+,0x08,0x08,0x08,0x0f,0x08,0x09,0x08,0x3e,0x22,0x22,0x22,0x22,0x3e,0x00,0x03,0x00,0x20,0x28,0x24,0x24,0x3f,0xe0,0x20,0x24,0x16,0x1c,0x08,0x18,0x29,0xc5,0x03,0x01 -+// 25113 戙 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x20,0x2e,0x2a,0x2a,0x2e,0x20,0x20,0x20,0x20,0x22,0x21,0x00,0x90,0x90,0x94,0x92,0xff,0x90,0x92,0x8b,0x8a,0x84,0x8c,0x95,0xa3,0x83,0x01 -+// 25114 戚 ; -+,0x00,0x00,0x00,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x25,0x25,0x29,0x49,0x43,0x01,0x28,0x24,0x20,0xff,0x20,0xe2,0x13,0xf2,0x14,0x1c,0x88,0x48,0x55,0x65,0x03,0x01 -+// 25115 戛 ; -+,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x01,0x7f,0x00,0x00,0x07,0x38,0xfe,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0xff,0x08,0x90,0xe1,0x39,0x07 -+// 25116 戜 ; -+,0x00,0x00,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x02,0x1f,0x02,0x03,0x3c,0x00,0x20,0x28,0x24,0xff,0x20,0xa4,0x96,0x94,0x18,0x88,0x18,0xa8,0x45,0x85,0x03,0x01 -+// 25117 戝 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x22,0x3e,0x00,0x24,0x22,0x42,0x00,0x20,0x28,0x24,0x20,0x3f,0xe0,0x24,0x26,0x24,0x18,0x10,0x28,0xc9,0x05,0x03,0x01 -+// 25118 戞 ; -+,0x1f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x3f,0x21,0x01,0x1f,0x00,0x01,0x3e,0x00,0xfe,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x22,0xf8,0x00,0xb8,0xc2,0x32,0x0e -+// 25119 戟 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x08,0x7f,0x08,0x09,0x08,0x08,0x20,0x28,0x24,0x20,0x3f,0xe0,0x20,0x22,0x12,0x14,0x08,0x18,0x65,0x85,0x03,0x01 -+// 25120 戠 ; -+,0x00,0x04,0x02,0x3f,0x08,0x05,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x10,0x14,0xd2,0x92,0x10,0xff,0x10,0x92,0x8b,0x8a,0x84,0x8d,0x93,0xa3,0x81 -+// 25121 戡 ; -+,0x11,0x11,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x20,0x29,0x28,0x30,0x3f,0x00,0x10,0x10,0x14,0xd2,0x10,0x1f,0x70,0x12,0x0b,0xca,0x06,0x04,0x8d,0x13,0xa3,0xc1 -+// 25122 戢 ; -+,0x00,0x1f,0x11,0x1f,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x17,0x79,0x01,0x01,0x01,0x00,0x10,0x14,0x12,0x10,0xff,0x10,0x10,0x12,0x0a,0x8c,0x08,0x35,0xc5,0x03,0x01 -+// 25123 戣 ; -+,0x02,0x3f,0x45,0x28,0x18,0x10,0x2f,0x44,0x04,0x3f,0x04,0x0a,0x09,0x11,0x20,0x00,0x90,0x10,0x54,0x92,0x90,0x5f,0x70,0x12,0x13,0x8a,0x0c,0x0d,0x15,0x63,0x01,0x00 -+// 25124 戤 ; -+,0x00,0x3f,0x12,0x17,0x1e,0x1a,0x24,0x2a,0x53,0x3f,0x2a,0x2a,0x2b,0x7c,0x00,0x00,0x10,0x10,0x14,0x92,0x9f,0xf0,0x92,0x8b,0x0a,0x8c,0x84,0x8c,0xd5,0x23,0xc1,0x00 -+// 25125 戥 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x24,0x24,0x3f,0x24,0x5f,0x04,0x07,0x3c,0x10,0x00,0x10,0x90,0x94,0x92,0x90,0xff,0x10,0x14,0x96,0x0c,0x88,0x18,0xa5,0x45,0x83,0x01 -+// 25126 戦 ; -+,0x29,0x15,0x15,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x05,0x04,0x04,0x20,0xa8,0x24,0x20,0x9f,0xf0,0x92,0x93,0x96,0x14,0xc8,0x18,0x65,0x85,0x03,0x01 -+// 25127 戧 ; -+,0x02,0x02,0x05,0x0c,0x12,0x2f,0x48,0x0f,0x08,0x0f,0x08,0x1f,0x18,0x28,0x4f,0x00,0x10,0x10,0x14,0x92,0x50,0xbf,0x90,0x90,0x8a,0x8a,0x0c,0x89,0x95,0xa5,0x83,0x01 -+// 25128 戨 ; -+,0x00,0x7f,0x01,0x3d,0x25,0x3d,0x01,0x7f,0x01,0x3d,0x25,0x3d,0x01,0x01,0x05,0x02,0x10,0xd4,0x12,0x10,0x10,0x7f,0x10,0xd2,0x13,0x0a,0x0c,0x08,0x35,0xc5,0x03,0x01 -+// 25129 戩 ; -+,0x00,0x3f,0x11,0x2a,0x7f,0x08,0x00,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x00,0x10,0x94,0x12,0x90,0xff,0x50,0x10,0xca,0x0b,0x0a,0x04,0x0c,0x15,0x63,0x01,0x00 -+// 25130 截 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x14,0x12,0x3f,0x32,0x5f,0x12,0x1f,0x12,0x12,0x1f,0x10,0x10,0x10,0xd4,0x12,0xff,0x10,0x10,0xd4,0x16,0x8c,0x08,0x88,0x1c,0x25,0xc3,0x01 -+// 25131 戫 ; -+,0x08,0x0c,0x08,0x7e,0x10,0x1e,0x32,0x5e,0x12,0x1e,0x12,0x12,0x12,0x17,0x12,0x00,0x08,0x0a,0x09,0xff,0x08,0xe8,0xaa,0xab,0xaa,0xea,0x04,0x25,0x4b,0x93,0x21,0x00 -+// 25132 戬 ; -+,0x00,0x3f,0x0a,0x2a,0x1b,0x0a,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x00,0x10,0x90,0x14,0x92,0x12,0x3f,0xd0,0x11,0x11,0x0a,0x0c,0x09,0x15,0x23,0x01,0x00 -+// 25133 戭 ; -+,0x08,0x04,0x7f,0x40,0x3f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x12,0x11,0x21,0x41,0x20,0x28,0xe4,0xa0,0x3f,0xe0,0xa0,0x94,0x96,0x8c,0x88,0x18,0x65,0x05,0x83,0x01 -+// 25134 戮 ; -+,0x7b,0x2a,0x19,0x1a,0x68,0x0a,0x06,0x19,0x64,0x08,0x32,0x0c,0x31,0x02,0x0c,0x70,0x90,0x94,0x92,0x90,0xff,0x90,0x12,0x12,0xd4,0x08,0x18,0x28,0x45,0x05,0x03,0x01 -+// 25135 戯 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x20,0x25,0x35,0x2d,0x25,0x25,0x5e,0x40,0x00,0x90,0x14,0xd2,0x90,0xbf,0x10,0x90,0x0a,0x0a,0x4c,0x88,0x15,0xa5,0x43,0x01 -+// 25136 戰 ; -+,0x00,0x3b,0x2a,0x3b,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x10,0xd0,0x54,0xd2,0x10,0xbf,0x90,0x92,0x92,0x94,0x08,0xd9,0x25,0xc5,0x03,0x01 -+// 25137 戱 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x20,0x25,0x35,0x2d,0x25,0x45,0x5e,0x00,0x10,0xd4,0x12,0xd0,0xbf,0x10,0x92,0x92,0x14,0x08,0x48,0x95,0x25,0xc3,0x81,0x00 -+// 25138 戲 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x20,0x2f,0x20,0x2f,0x28,0x2f,0x45,0x5f,0x10,0xd4,0x12,0xd0,0xbf,0x90,0x12,0x93,0x0a,0x8c,0x08,0x88,0x95,0xa5,0x03,0x81 -+// 25139 戳 ; -+,0x7b,0x2a,0x19,0x29,0x4a,0x08,0x12,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x12,0x1f,0x10,0x90,0x94,0x92,0x90,0x9f,0xf0,0x10,0x92,0x12,0x8c,0x08,0x98,0x25,0x45,0x83,0x01 -+// 25140 戴 ; -+,0x04,0x3f,0x04,0x7f,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x09,0x3f,0x09,0x7f,0x09,0x30,0x10,0x98,0x14,0xff,0x10,0x90,0x94,0x96,0x94,0x8c,0x08,0xc8,0x15,0xe5,0x03,0x81 -+// 25141 戵 ; -+,0x3b,0x2a,0x3b,0x2a,0x3b,0x2a,0x3b,0x14,0x3f,0x52,0x1f,0x12,0x1f,0x12,0x1f,0x10,0x90,0x94,0x92,0x90,0xff,0x90,0x92,0x13,0x8a,0x0c,0x88,0x08,0x94,0x25,0x83,0x01 -+// 25142 戶 ; -+,0x00,0x00,0x0f,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x10,0x10,0x10,0x20,0x40,0x0c,0xf0,0x00,0xfe,0x02,0x02,0x02,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 25143 户 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x80,0x60,0x20,0xfe,0x02,0x02,0x02,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 25144 戸 ; -+,0x00,0x1f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 25145 戹 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x17,0x10,0x10,0x10,0x11,0x22,0x22,0x41,0x00,0x80,0x40,0xfe,0x02,0xfe,0x00,0x00,0xf8,0x10,0x20,0xc0,0x02,0x02,0x02,0xfe,0x00 -+// 25146 戺 ; -+,0x08,0x04,0x04,0x1f,0x11,0x11,0x11,0x1f,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 25147 戻 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x21,0x26,0x58,0x80,0x40,0xfe,0x02,0x02,0xfe,0x40,0x40,0x40,0xff,0x40,0xa0,0x90,0x08,0x07,0x02 -+// 25148 戼 ; -+,0x3f,0x01,0x01,0x01,0x1f,0x11,0x11,0x11,0x1f,0x01,0x01,0x02,0x02,0x04,0x18,0x00,0xff,0x20,0x20,0x20,0x3e,0x22,0x22,0x22,0x3e,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 25149 戽 ; -+,0x00,0x00,0x0f,0x08,0x0f,0x08,0x09,0x08,0x0a,0x11,0x10,0x17,0x20,0x20,0x40,0x00,0x80,0x40,0xfe,0x02,0xfe,0x10,0x10,0xd0,0x50,0x90,0x9f,0xf0,0x10,0x10,0x10,0x10 -+// 25150 戾 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x17,0x10,0x10,0x10,0x21,0x22,0x2c,0x40,0x80,0x40,0xfe,0x02,0x02,0xfe,0x50,0x48,0xff,0x40,0xa0,0xa0,0x10,0x08,0x07,0x02 -+// 25151 房 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x11,0x11,0x11,0x11,0x22,0x22,0x44,0x08,0x80,0x40,0xfe,0x02,0xfe,0x40,0x20,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0x28,0x10 -+// 25152 所 ; -+,0x07,0x38,0x20,0x20,0x3e,0x22,0x22,0x22,0x3e,0x20,0x20,0x20,0x21,0x21,0x42,0x04,0x0f,0x70,0x40,0x40,0x40,0x7f,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04,0x04 -+// 25153 扁 ; -+,0x00,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x0c,0x14,0x17,0x14,0x24,0x24,0x44,0x04,0x80,0x40,0xfe,0x02,0xfe,0x00,0x00,0xff,0x91,0x91,0xff,0x91,0x91,0x91,0x95,0x02 -+// 25154 扂 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x17,0x14,0x24,0x24,0x47,0x00,0x80,0x40,0xfe,0x02,0x02,0xfe,0x40,0x40,0x7e,0x40,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 25155 扃 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x24,0x24,0x44,0x80,0x40,0xfe,0x02,0x02,0xfe,0x00,0x00,0xfe,0x02,0xf2,0x92,0xf2,0x02,0x0a,0x04 -+// 25156 扄 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x24,0x24,0x44,0x04,0x80,0x40,0xfe,0x02,0xfe,0x40,0x80,0xfe,0x02,0xf2,0x92,0x92,0xf2,0x02,0x0a,0x04 -+// 25157 扅 ; -+,0x01,0x00,0x1f,0x10,0x10,0x1f,0x10,0x11,0x13,0x14,0x10,0x17,0x10,0x23,0x20,0x4f,0x00,0x80,0xfc,0x04,0x04,0xfc,0x80,0xf8,0x10,0xa0,0xc0,0x7e,0x84,0x48,0x30,0xc0 -+// 25158 扆 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x11,0x13,0x2d,0x21,0x41,0x01,0x80,0x40,0xfe,0x02,0xfe,0x80,0x40,0xfe,0x80,0x88,0x50,0x20,0x10,0x48,0x87,0x02 -+// 25159 扇 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x17,0x10,0x14,0x12,0x11,0x12,0x2c,0x20,0x42,0x01,0x80,0x40,0xfe,0x02,0xfe,0x00,0xbe,0x82,0x92,0x8e,0x8a,0x92,0xa2,0x82,0x8a,0x04 -+// 25160 扈 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x13,0x12,0x13,0x10,0x17,0x14,0x27,0x24,0x43,0x00,0x80,0x40,0xfe,0x02,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x44,0xfc,0x01,0xff,0x00 -+// 25161 扉 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x11,0x11,0x1f,0x11,0x17,0x11,0x2f,0x21,0x21,0x41,0x01,0x80,0x40,0xfe,0x02,0xfe,0x10,0x10,0x1f,0x10,0x1e,0x10,0x1f,0x10,0x10,0x10,0x10 -+// 25162 扊 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x14,0x12,0x10,0x11,0x16,0x10,0x22,0x21,0x43,0x1c,0x00,0x80,0x40,0xfe,0x02,0xfe,0x48,0x58,0x60,0x98,0x48,0x44,0x68,0x90,0x08,0x07,0x02 -+// 25163 手 ; -+,0x00,0x00,0x3f,0x00,0x00,0x3f,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0xfc,0x80,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x00 -+// 25164 扌 ; -+,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x01,0x07,0x39,0x11,0x01,0x01,0x01,0x05,0x02,0x00,0x00,0x00,0xf0,0x00,0x00,0x60,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 25165 才 ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0xff,0x60,0xa0,0xa0,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 25166 扎 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 25167 扏 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x0e,0x78,0x28,0x08,0x08,0x09,0x29,0x12,0x00,0x40,0x40,0x40,0x40,0xf8,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x09,0x09,0x07,0x00 -+// 25168 扐 ; -+,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x0e,0x78,0x28,0x08,0x08,0x08,0x09,0x2a,0x10,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x02,0x0a,0x04 -+// 25169 扑 ; -+,0x04,0x04,0x04,0x04,0x3f,0x04,0x05,0x06,0x0c,0x34,0x04,0x04,0x04,0x04,0x14,0x08,0x10,0x10,0x10,0x10,0x90,0x18,0x14,0x13,0x11,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25170 扒 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0c,0x18,0x68,0x08,0x08,0x09,0x09,0x2a,0x14,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0x48,0x48,0x88,0x84,0x84,0x04,0x02,0x03,0x02,0x00 -+// 25171 打 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 25172 扔 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x09,0x09,0x09,0x0a,0x2c,0x10,0x00,0xfc,0x84,0x88,0x88,0x90,0x9e,0x82,0x82,0x82,0x02,0x02,0x02,0x02,0x14,0x08 -+// 25173 払 ; -+,0x04,0x04,0x04,0x3f,0x04,0x05,0x06,0x0c,0x34,0x04,0x04,0x04,0x05,0x14,0x08,0x00,0x00,0x10,0x18,0x10,0x10,0x20,0x20,0x20,0x48,0x44,0x42,0x9f,0xe1,0x81,0x00,0x00 -+// 25174 扖 ; -+,0x08,0x08,0x08,0x3f,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x29,0x16,0x00,0x80,0x40,0x40,0x20,0x20,0x20,0x20,0x30,0x50,0x48,0x48,0x84,0x84,0x03,0x02,0x00 -+// 25175 扗 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 25176 托 ; -+,0x10,0x10,0x11,0x7c,0x10,0x10,0x14,0x1b,0x70,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00,0x1e,0xe0,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 25177 扙 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x90,0x90,0x50,0x50,0x20,0x30,0x50,0x8c,0x07,0x02 -+// 25178 扚 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0d,0x0a,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x60,0x40,0x7e,0x82,0x82,0x02,0x42,0x22,0x32,0x22,0x02,0x02,0x02,0x0a,0x04 -+// 25179 扛 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 25180 扜 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 25181 扝 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x00,0x00,0x00,0xff,0x20,0x20,0x40,0x7e,0x02,0x02,0x02,0x02,0x32,0x0c -+// 25182 扞 ; -+,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25183 扟 ; -+,0x08,0x09,0x08,0x7f,0x08,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xf8,0x48,0x48,0x48,0x48,0x48,0xf8,0x48,0x48,0x48,0x45,0x45,0x43,0x41,0x40 -+// 25184 扠 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x0c,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x00,0x00,0xfe,0x84,0xa4,0x94,0x48,0x48,0x28,0x30,0x10,0x38,0x4c,0x87,0x02,0x00 -+// 25185 扡 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x28,0x10,0x00,0x20,0x20,0x26,0x3a,0xe2,0x22,0x22,0x2a,0x24,0x20,0x20,0x21,0x01,0xff,0x00 -+// 25186 扢 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x28,0x10,0x40,0x40,0x40,0xff,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x40,0x81,0x81,0x7f,0x00 -+// 25187 扣 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x05,0x06,0x0c,0x34,0x04,0x04,0x04,0x14,0x08,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x42,0x7e,0x00,0x00,0x00,0x00 -+// 25188 扤 ; -+,0x08,0x0b,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x29,0x12,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x89,0x09,0x09,0x07,0x00 -+// 25189 扥 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0x10,0x1f,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 25190 扦 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x0b,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x1e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25191 执 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x09,0x2a,0x14,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0xc4,0x44,0x64,0x54,0x84,0x85,0x05,0x03,0x01 -+// 25192 扨 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x08,0x29,0x12,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0xa2,0x44,0x64,0x54,0x8c,0x87,0x14,0x08 -+// 25193 扩 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x29,0x12,0x00,0x10,0x08,0x08,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 25194 扪 ; -+,0x08,0x09,0x08,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0x00,0x7f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x02 -+// 25195 扫 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x28,0x10,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x7e,0x02,0x02,0x02,0x02,0xfe,0x00,0x00,0x00 -+// 25196 扬 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x0b,0x08,0x08,0x29,0x10,0x00,0xfc,0x08,0x10,0x20,0x40,0xff,0x29,0x49,0x49,0x91,0x11,0x21,0x41,0x8a,0x04 -+// 25197 扭 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x2f,0x10,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0xfc,0x84,0x84,0x84,0x84,0x84,0x84,0xff,0x00 -+// 25198 扮 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x1a,0x68,0x08,0x08,0x08,0x08,0x09,0x2a,0x10,0x20,0x20,0x30,0x50,0x88,0x84,0x03,0xfc,0x44,0x44,0x44,0x84,0x84,0x04,0x14,0x08 -+// 25199 扯 ; -+,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x08,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x9e,0x90,0x90,0x90,0x90,0x90,0x90,0xff,0x00,0x00 -+// 25200 扰 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x0a,0x2c,0x10,0x20,0x28,0x24,0x20,0xff,0x30,0x30,0x50,0x50,0x50,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 25201 扱 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x09,0x09,0x0a,0x0a,0x2d,0x10,0x00,0xfc,0x88,0x88,0x90,0x90,0xbc,0x84,0x84,0xc8,0x28,0x10,0x38,0x47,0x82,0x00 -+// 25202 扲 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0d,0x0a,0x18,0x69,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x30,0x50,0x48,0xa4,0x13,0x12,0x00,0xfe,0x04,0x08,0x08,0x10,0x20,0x20 -+// 25203 扳 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x11,0x12,0x12,0x14,0x5b,0x20,0x00,0xfe,0x00,0x00,0x00,0xfe,0x84,0x44,0x48,0x28,0x10,0x30,0x4c,0x87,0x02,0x00 -+// 25204 扴 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x09,0x2a,0x10,0x20,0x20,0x30,0x48,0x44,0x87,0x4a,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08,0x08 -+// 25205 扵 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0b,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x20,0x20,0x50,0x88,0x07,0x42,0x30,0x10,0x00,0x40,0x20,0x30,0x10,0x00 -+// 25206 扶 ; -+,0x10,0x10,0x10,0x11,0x7c,0x10,0x14,0x1b,0x30,0x50,0x10,0x10,0x10,0x10,0x51,0x26,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x50,0x88,0x84,0x07,0x02 -+// 25207 扷 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0b,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x44,0x82,0x03,0x02 -+// 25208 扸 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x29,0x12,0x08,0x88,0x88,0x88,0xff,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0x04,0x04,0x04 -+// 25209 批 ; -+,0x09,0x09,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x10,0x10,0x10,0x10,0x10,0x13,0xdc,0x10,0x10,0x10,0x10,0x10,0x51,0x91,0x0f,0x00 -+// 25210 扺 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x0f,0xf0,0x90,0x90,0x90,0xff,0x90,0x90,0x88,0x88,0x88,0x85,0xa5,0xc3,0x81 -+// 25211 扻 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0d,0x1a,0x68,0x08,0x08,0x08,0x08,0x09,0x2a,0x10,0x40,0x40,0x40,0x7f,0x82,0xa4,0x20,0x20,0x30,0x50,0x48,0x88,0x84,0x07,0x02,0x00 -+// 25212 扼 ; -+,0x10,0x11,0x11,0x7d,0x11,0x11,0x15,0x19,0x31,0x51,0x12,0x12,0x12,0x54,0x28,0x00,0x00,0xff,0x00,0x00,0x7c,0x24,0x24,0x24,0x24,0x34,0x28,0x20,0x21,0x21,0x1f,0x00 -+// 25213 扽 ; -+,0x08,0x08,0x08,0x7d,0x08,0x09,0x0d,0x09,0x19,0x69,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x20,0xfe,0x20,0x24,0x24,0x24,0x24,0xfc,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 25214 找 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x20,0x28,0x24,0x20,0xff,0x20,0x20,0x24,0x14,0x18,0x10,0x38,0xc9,0x05,0x03,0x01 -+// 25215 承 ; -+,0x00,0x0f,0x00,0x00,0x3c,0x07,0x04,0x0b,0x08,0x10,0x17,0x20,0x40,0x00,0x02,0x01,0x00,0xfc,0x10,0x62,0x86,0xf8,0x90,0xe8,0x88,0x84,0xf4,0x83,0x82,0x80,0x80,0x00 -+// 25216 技 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x2b,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x84,0x44,0x48,0x30,0x30,0x48,0x87,0x02,0x00 -+// 25217 抁 ; -+,0x08,0x08,0x08,0x7f,0x08,0x09,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x20,0x30,0x60,0x44,0x82,0xff,0x4a,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 25218 抂 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x2b,0x10,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 25219 抃 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x18,0x08,0xff,0x10,0x10,0x10,0x18,0x16,0x12,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25220 抄 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x10,0x10,0x10,0x10,0x54,0x53,0x91,0x12,0x32,0x14,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 25221 抅 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0c,0x18,0x68,0x09,0x08,0x08,0x08,0x28,0x10,0x40,0x40,0x40,0x7e,0x82,0x82,0x02,0x42,0x42,0x92,0xfa,0x0a,0x02,0x02,0x14,0x08 -+// 25222 抆 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x40,0x30,0x10,0xff,0x44,0x44,0x44,0x44,0x28,0x28,0x10,0x28,0x44,0x87,0x02,0x00 -+// 25223 抇 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 25224 抈 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x82,0x82,0x02,0x0a,0x04 -+// 25225 抉 ; -+,0x10,0x10,0x10,0x7d,0x10,0x10,0x14,0x18,0x73,0x10,0x10,0x10,0x11,0x12,0x5c,0x20,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0xff,0x40,0xa0,0x90,0x08,0x07,0x02,0x00 -+// 25226 把 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 25227 抋 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0d,0x19,0x69,0x0b,0x08,0x08,0x28,0x10,0x00,0x40,0x20,0x30,0x10,0x40,0x40,0x44,0x42,0x43,0x41,0x40,0x40,0x42,0x42,0x3c,0x00 -+// 25228 抌 ; -+,0x08,0x08,0x08,0x7d,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x0a,0x2c,0x10,0x20,0x20,0x20,0xff,0x22,0x20,0x20,0x30,0x50,0x50,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 25229 抍 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x00,0x34,0xc4,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 25230 抎 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0c,0x18,0x68,0x08,0x08,0x09,0x0b,0x28,0x10,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x20,0x20,0x40,0x40,0x84,0x02,0xff,0x02,0x00 -+// 25231 抏 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 25232 抐 ; -+,0x08,0x08,0x08,0x7d,0x09,0x09,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x09,0x29,0x11,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x11,0x29,0x47,0x85,0x01,0x01,0x01,0x05,0x02 -+// 25233 抑 ; -+,0x08,0x08,0x09,0x7d,0x09,0x09,0x09,0x0d,0x19,0x69,0x09,0x09,0x08,0x08,0x28,0x10,0x20,0x60,0x9f,0x11,0x11,0x11,0x11,0x11,0x11,0x51,0x95,0x12,0x10,0x10,0x10,0x10 -+// 25234 抒 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x04,0x48,0x30,0x10,0xff,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 25235 抓 ; -+,0x10,0x10,0x11,0x7d,0x11,0x11,0x15,0x19,0x31,0x51,0x12,0x12,0x12,0x14,0x58,0x20,0x00,0x1e,0xe8,0x28,0x28,0x28,0x28,0x28,0x28,0x24,0x24,0x24,0x22,0x23,0x22,0x20 -+// 25236 抔 ; -+,0x08,0x09,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x18,0x68,0x09,0x08,0x08,0x08,0x28,0x10,0x00,0xff,0x08,0x08,0x10,0x10,0x30,0x38,0x54,0x92,0x13,0x11,0x10,0x10,0x10,0x10 -+// 25237 投 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x08,0x0c,0x09,0x18,0x68,0x08,0x08,0x08,0x29,0x16,0x00,0xf8,0x88,0x88,0x88,0x09,0x07,0x00,0xfc,0x88,0x48,0x50,0x20,0x58,0x87,0x02 -+// 25238 抖 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x0b,0x08,0x08,0x08,0x08,0x28,0x10,0x08,0x88,0x48,0x48,0x08,0x88,0x48,0x48,0x0f,0xf8,0x08,0x08,0x08,0x08,0x08,0x08 -+// 25239 抗 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x29,0x12,0x00,0x20,0x10,0x10,0xff,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 25240 折 ; -+,0x00,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x09,0x09,0x2a,0x14,0x00,0x1e,0xe0,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 25241 抙 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x0e,0xf0,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 25242 抚 ; -+,0x08,0x09,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x09,0x2a,0x10,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x30,0x30,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 25243 抛 ; -+,0x11,0x11,0x11,0x79,0x17,0x11,0x15,0x19,0x31,0x51,0x12,0x12,0x14,0x54,0x28,0x00,0x08,0x08,0x08,0x08,0xde,0x4a,0x4a,0x4a,0x4a,0x52,0x5a,0x64,0x41,0x41,0x3f,0x00 -+// 25244 抜 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x68,0x09,0x09,0x0a,0x0c,0x2b,0x10,0x40,0x40,0x40,0x40,0xff,0x40,0x7c,0x44,0xc4,0xa8,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 25245 抝 ; -+,0x08,0x08,0x08,0x08,0x7d,0x09,0x0b,0x0c,0x18,0x68,0x09,0x0b,0x08,0x28,0x10,0x00,0x00,0x80,0x9e,0x82,0x02,0x22,0xe2,0x42,0x82,0x82,0x22,0xf2,0x02,0x0a,0x04,0x00 -+// 25246 択 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x29,0x12,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x50,0x50,0x48,0x88,0x84,0x04,0x03,0x02,0x00 -+// 25247 抟 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0x10,0xff,0x20,0x20,0xff,0x40,0x40,0xfe,0x04,0x08,0x50,0x30,0x18,0x10 -+// 25248 抠 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x00,0xff,0x00,0x04,0x86,0x44,0x28,0x10,0x18,0x24,0x24,0x42,0x82,0x00,0xff,0x00 -+// 25249 抡 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x0a,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x20,0x50,0x48,0x87,0x02,0x80,0x9c,0xe0,0x80,0x80,0x82,0x82,0x7e,0x00 -+// 25250 抢 ; -+,0x10,0x10,0x10,0x7e,0x10,0x11,0x16,0x18,0x30,0x50,0x10,0x10,0x10,0x50,0x20,0x00,0x20,0x20,0x20,0x50,0x8c,0x07,0xfa,0x88,0x88,0x88,0xa8,0x90,0x82,0x82,0x7e,0x00 -+// 25251 抣 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0c,0x18,0x68,0x08,0x09,0x08,0x08,0x28,0x10,0x40,0x40,0x40,0xff,0x81,0x01,0x41,0x21,0x21,0x09,0x31,0xc1,0x01,0x01,0x05,0x02 -+// 25252 护 ; -+,0x08,0x08,0x08,0x08,0x3f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x14,0x20,0x18,0x08,0x7f,0x41,0x41,0x41,0x7f,0x40,0x40,0x40,0x80,0x80,0x00,0x00,0x00 -+// 25253 报 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0xfe,0x82,0x82,0x8a,0x84,0x80,0xfe,0xc2,0xa4,0xa4,0x98,0x88,0x9c,0xa7,0xc2,0x80 -+// 25254 抦 ; -+,0x10,0x11,0x10,0x7e,0x11,0x11,0x15,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x00,0xff,0x10,0x10,0xff,0x11,0x11,0x11,0x11,0x29,0x45,0x87,0x01,0x05,0x02,0x00 -+// 25255 抧 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0xfe,0x00,0x48,0x44,0x86,0x03,0x02,0x00 -+// 25256 抨 ; -+,0x08,0x09,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x6b,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xff,0x10,0x12,0x96,0xd4,0x58,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25257 抩 ; -+,0x10,0x10,0x10,0x7d,0x11,0x11,0x15,0x19,0x31,0x57,0x11,0x11,0x11,0x11,0x51,0x21,0x20,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 25258 抪 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0d,0x1a,0x6c,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x20,0xff,0x40,0x90,0x90,0xfe,0x92,0x92,0x92,0x92,0x92,0x96,0x10,0x10 -+// 25259 披 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x09,0x09,0x0a,0x2a,0x15,0x00,0x10,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0x84,0xc4,0x28,0x10,0x28,0x47,0x82,0x00 -+// 25260 抬 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0d,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x30,0x20,0x40,0x44,0x82,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x00 -+// 25261 抭 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x14,0x20,0x10,0x92,0xff,0x02,0x00,0x78,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 25262 抮 ; -+,0x10,0x10,0x10,0x10,0x7d,0x12,0x10,0x14,0x19,0x76,0x10,0x13,0x10,0x50,0x27,0x00,0x40,0x40,0x60,0x90,0x08,0x07,0x20,0x40,0x90,0x20,0xc4,0x08,0x30,0xc0,0x00,0x00 -+// 25263 抯 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 25264 抰 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x10,0x30,0x28,0x44,0x87,0x02,0x00 -+// 25265 抱 ; -+,0x08,0x08,0x08,0x08,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x28,0x10,0x80,0x80,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x0a,0x04,0x01,0x01,0xff,0x00 -+// 25266 抲 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xff,0x02,0x02,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 25267 抳 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x69,0x09,0x09,0x0a,0x2a,0x14,0x00,0x00,0xfe,0x82,0x82,0xfe,0x80,0xa0,0xa0,0xa6,0x38,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 25268 抴 ; -+,0x08,0x09,0x09,0x09,0x7d,0x0b,0x09,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x28,0x10,0x00,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x3c,0x00,0x00,0x00,0xff,0x00,0x00 -+// 25269 抵 ; -+,0x08,0x08,0x09,0x7d,0x09,0x09,0x0d,0x09,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x08,0x08,0x08,0x45,0xa5,0x13,0x01 -+// 25270 抶 ; -+,0x08,0x08,0x08,0x08,0x7c,0x09,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0x20,0x20,0xa0,0xa0,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x50,0x48,0x87,0x02,0x00 -+// 25271 抷 ; -+,0x08,0x09,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x18,0x6b,0x08,0x08,0x08,0x0b,0x28,0x10,0x00,0xff,0x10,0x10,0x10,0x30,0x58,0x54,0x93,0x11,0x10,0x10,0x10,0xff,0x00,0x00 -+// 25272 抸 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x28,0x10,0x02,0x0f,0xf0,0x20,0x10,0xff,0x02,0x04,0x08,0x10,0x20,0x40,0xe0,0x1f,0x00,0x00 -+// 25273 抹 ; -+,0x10,0x10,0x10,0x7d,0x10,0x10,0x15,0x18,0x30,0x50,0x10,0x11,0x12,0x1c,0x50,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 25274 抺 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x09,0x0a,0x08,0x28,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x30,0x30,0x58,0x94,0x17,0x12,0x10,0x10,0x10 -+// 25275 抻 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0x10,0xff,0x91,0x91,0xff,0x91,0x91,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25276 押 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25277 抽 ; -+,0x10,0x10,0x10,0x7c,0x11,0x11,0x15,0x19,0x31,0x51,0x11,0x11,0x11,0x51,0x20,0x00,0x10,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0x11,0xff,0x00,0x00 -+// 25278 抾 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x09,0x28,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x20,0x20,0x44,0x82,0xff,0x01,0x00 -+// 25279 抿 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0x08,0x08,0x05,0x45,0x83,0x01 -+// 25280 拀 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x48,0x48,0x89,0x09,0x07,0x00 -+// 25281 拁 ; -+,0x08,0x08,0x08,0x09,0x3e,0x08,0x0a,0x0c,0x18,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x80,0x80,0x80,0xef,0xa9,0xa9,0xa9,0xa9,0xa9,0x29,0x29,0x29,0x29,0xaf,0x40,0x00 -+// 25282 拂 ; -+,0x08,0x08,0x09,0x08,0x7e,0x09,0x0d,0x09,0x19,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x50,0x50,0xfe,0x52,0x52,0xfe,0x50,0x50,0xff,0x51,0x51,0x95,0x92,0x10,0x10,0x10 -+// 25283 拃 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x40,0x80,0xff,0x20,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20 -+// 25284 拄 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0x40,0x30,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 25285 担 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x08,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x00,0x00,0x00,0xff,0x00,0x00 -+// 25286 拆 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x09,0x0a,0x2c,0x10,0x0e,0xf0,0x80,0x80,0x80,0xff,0x88,0x88,0x98,0x8c,0x8b,0x09,0x08,0x08,0x08,0x08 -+// 25287 拇 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0f,0x19,0x69,0x09,0x09,0x09,0x08,0x28,0x10,0x00,0x00,0xfc,0x84,0xa4,0x94,0x84,0xff,0x04,0x24,0x14,0x04,0xff,0x04,0x04,0x14,0x08 -+// 25288 拈 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x00 -+// 25289 拉 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x40,0x30,0x10,0xff,0x00,0x04,0x86,0x44,0x44,0x24,0x28,0x28,0x28,0xff,0x00,0x00 -+// 25290 拊 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x0d,0x0a,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x44,0x64,0x44,0x84,0x84,0xff,0x84,0xc4,0xa4,0xb4,0x94,0x84,0x84,0x84,0x94,0x88 -+// 25291 拋 ; -+,0x09,0x09,0x09,0x7d,0x0b,0x09,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x0c,0x28,0x10,0x08,0x08,0x08,0x1e,0xca,0x4a,0x4a,0x4a,0x52,0x52,0x62,0x4c,0x41,0x41,0x3f,0x00 -+// 25292 拌 ; -+,0x08,0x08,0x09,0x7e,0x08,0x09,0x0c,0x08,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x24,0xa6,0xa8,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 25293 拍 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x18,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 25294 拎 ; -+,0x10,0x10,0x10,0x7c,0x10,0x10,0x15,0x1a,0x30,0x50,0x10,0x10,0x10,0x10,0x50,0x20,0x20,0x20,0x30,0x50,0x48,0xa4,0x13,0x00,0xfc,0x04,0x08,0x08,0x50,0x20,0x18,0x08 -+// 25295 拏 ; -+,0x04,0x04,0x08,0x3f,0x11,0x0a,0x06,0x19,0x6f,0x00,0x1f,0x00,0x3f,0x00,0x03,0x00,0x00,0x00,0xfe,0x44,0x28,0x10,0x6c,0x83,0xfc,0x40,0xfc,0x40,0xff,0x40,0x40,0x80 -+// 25296 拐 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x11,0x00,0x7e,0x42,0x42,0x42,0x7e,0x10,0x10,0xff,0x11,0x11,0x21,0x21,0x41,0x85,0x02 -+// 25297 拑 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x84,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00,0x00 -+// 25298 拒 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0xff,0x00 -+// 25299 拓 ; -+,0x08,0x09,0x08,0x7f,0x08,0x0a,0x0c,0x08,0x18,0x68,0x09,0x0a,0x08,0x08,0x28,0x10,0x00,0xff,0x20,0x20,0x20,0x40,0x40,0x7e,0xc2,0xc2,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 25300 拔 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x09,0x09,0x0a,0x2d,0x10,0x40,0x48,0x44,0x40,0xff,0x40,0x7e,0x44,0xa4,0xa8,0x98,0x10,0x28,0x47,0x82,0x00 -+// 25301 拕 ; -+,0x08,0x08,0x09,0x09,0x7e,0x08,0x0c,0x08,0x18,0x68,0x08,0x08,0x08,0x28,0x10,0x00,0x10,0x08,0xff,0x02,0x00,0x40,0x40,0x44,0x58,0x60,0x40,0x42,0x42,0x42,0x3e,0x00 -+// 25302 拖 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x08,0x0c,0x1b,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x40,0xff,0x80,0x10,0x12,0x9e,0xf2,0x92,0x92,0x9a,0x94,0x91,0x81,0x7f,0x00 -+// 25303 拗 ; -+,0x08,0x08,0x08,0x7d,0x09,0x0b,0x0a,0x0c,0x19,0x6a,0x0f,0x08,0x08,0x28,0x11,0x00,0x88,0x88,0x88,0x3f,0x49,0xc9,0x89,0x89,0x09,0x49,0xd1,0x51,0x21,0x45,0x82,0x00 -+// 25304 拘 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x60,0x40,0xfe,0x82,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0x02,0x0a,0x04 -+// 25305 拙 ; -+,0x08,0x08,0x08,0x09,0x7d,0x09,0x0d,0x19,0x68,0x09,0x09,0x09,0x09,0x09,0x29,0x10,0x10,0x10,0x10,0x12,0x12,0x12,0x12,0xfe,0x10,0x12,0x12,0x12,0x12,0xfe,0x02,0x00 -+// 25306 拚 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x20,0x20,0x44,0x82,0xff,0x01,0x44,0x44,0xff,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 25307 招 ; -+,0x08,0x09,0x08,0x7e,0x08,0x0a,0x0c,0x19,0x6a,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 25308 拜 ; -+,0x03,0x3c,0x04,0x04,0x1f,0x04,0x04,0x3f,0x04,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x00,0x7f,0x08,0x3e,0x08,0x08,0x3e,0x88,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08 -+// 25309 拝 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0c,0x08,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x20,0x20,0xfc,0x20,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 25310 拞 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x00,0x1e,0xe0,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0xff,0x00,0x00 -+// 25311 拟 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x28,0x11,0x00,0x00,0x42,0x32,0x12,0x02,0x02,0x02,0x02,0x02,0x22,0x44,0x84,0x1a,0x61,0x81,0x00 -+// 25312 拠 ; -+,0x11,0x11,0x11,0x7d,0x11,0x13,0x16,0x1a,0x35,0x50,0x10,0x11,0x11,0x12,0x54,0x20,0x00,0x1e,0x12,0xd2,0x52,0x52,0x52,0x52,0x52,0x92,0xa2,0x43,0x20,0x18,0x07,0x00 -+// 25313 拡 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x20,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x20,0x20,0x20,0x44,0x42,0xff,0x42,0x00 -+// 25314 拢 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x18,0x68,0x08,0x09,0x09,0x0a,0x2c,0x10,0x40,0x50,0x4c,0x48,0xff,0x50,0x54,0x56,0x54,0x98,0x90,0x30,0x51,0x11,0x0f,0x00 -+// 25315 拣 ; -+,0x08,0x08,0x08,0x7d,0x08,0x09,0x0c,0x08,0x19,0x68,0x08,0x08,0x09,0x0a,0x28,0x10,0x20,0x20,0x20,0xff,0x40,0xf0,0x50,0x90,0xff,0x10,0x94,0xd2,0x13,0x11,0x50,0x20 -+// 25316 拤 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x20,0x3e,0x20,0x20,0xff,0x20,0x20,0x28,0x26,0x22,0x20,0x20,0x20,0x20 -+// 25317 拥 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x00,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0x11,0x11,0x15,0x02 -+// 25318 拦 ; -+,0x08,0x09,0x08,0x7e,0x0b,0x08,0x0c,0x08,0x19,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x04,0x06,0x84,0x48,0xff,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 25319 拧 ; -+,0x08,0x08,0x09,0x09,0x7f,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xff,0x02,0x04,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 25320 拨 ; -+,0x10,0x11,0x11,0x7d,0x11,0x10,0x14,0x18,0x70,0x10,0x10,0x11,0x12,0x14,0x53,0x20,0x20,0x24,0x22,0x20,0xff,0x20,0x40,0x7c,0x44,0xa8,0xa8,0x10,0x28,0xc4,0x03,0x00 -+// 25321 择 ; -+,0x10,0x11,0x10,0x7e,0x10,0x10,0x15,0x18,0x31,0x50,0x10,0x13,0x10,0x10,0x50,0x20,0x00,0xfc,0x88,0x50,0x20,0x50,0xac,0x23,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25322 拪 ; -+,0x10,0x17,0x10,0x7c,0x13,0x12,0x12,0x1a,0x32,0x52,0x12,0x13,0x12,0x53,0x22,0x00,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0x52,0x52,0x9e,0x82,0x02,0x02,0xfe,0x02,0x00 -+// 25323 拫 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa0,0xa6,0x94,0x88,0x84,0xa7,0xc2,0x80 -+// 25324 括 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0b,0x0c,0x08,0x18,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0x1e,0xe0,0x20,0x20,0xff,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 25325 拭 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0c,0x0b,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x10,0x14,0x12,0x10,0xff,0x10,0x10,0xf0,0x88,0x88,0xa8,0xc4,0x85,0x03,0x01,0x00 -+// 25326 拮 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0d,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 25327 拯 ; -+,0x08,0x09,0x08,0x08,0x7e,0x0b,0x0a,0x0c,0x19,0x69,0x0a,0x0c,0x08,0x0b,0x28,0x10,0x00,0xfc,0x08,0x10,0x24,0xe6,0xa8,0xb0,0x28,0x24,0x27,0xa2,0x60,0xfe,0x00,0x00 -+// 25328 拰 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x09,0x29,0x11,0x80,0xc7,0xb8,0x88,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x7f,0x00 -+// 25329 拱 ; -+,0x10,0x10,0x10,0x7e,0x11,0x10,0x14,0x18,0x70,0x13,0x10,0x10,0x10,0x11,0x52,0x20,0x48,0x48,0x48,0x48,0xfe,0x48,0x48,0x48,0x48,0xff,0x00,0x88,0x84,0x03,0x01,0x00 -+// 25330 拲 ; -+,0x02,0x02,0x1f,0x02,0x7f,0x02,0x04,0x1f,0x60,0x07,0x00,0x3f,0x00,0x00,0x02,0x01,0x20,0x20,0xfe,0x20,0xff,0x10,0x0c,0xf7,0x82,0xf8,0x80,0xff,0x80,0x80,0x80,0x00 -+// 25331 拳 ; -+,0x01,0x09,0x05,0x3f,0x01,0x7f,0x02,0x0c,0x73,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x00,0x10,0x20,0xfc,0x00,0xfe,0xc0,0x30,0xce,0x80,0xf8,0x80,0xfe,0x80,0x80,0x00 -+// 25332 拴 ; -+,0x10,0x10,0x10,0x10,0x7d,0x10,0x15,0x18,0x10,0x71,0x10,0x10,0x10,0x57,0x20,0x00,0x20,0x20,0x50,0x88,0x07,0x02,0xfc,0x20,0x20,0xfc,0x20,0x20,0x20,0xff,0x00,0x00 -+// 25333 拵 ; -+,0x10,0x10,0x13,0x10,0x7c,0x10,0x15,0x19,0x33,0x55,0x11,0x11,0x11,0x11,0x51,0x21,0x40,0x40,0xff,0x40,0x80,0xbe,0x04,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x28,0x10 -+// 25334 拶 ; -+,0x08,0x08,0x08,0x7d,0x08,0x08,0x0a,0x0c,0x18,0x68,0x09,0x08,0x08,0x08,0x28,0x13,0x00,0x49,0x92,0x24,0x92,0x49,0x00,0x40,0x7e,0x82,0x44,0x28,0x30,0x20,0xc0,0x00 -+// 25335 拷 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x0c,0x18,0x6b,0x0c,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0xfc,0x24,0x28,0xff,0x20,0x40,0xfe,0x20,0x20,0x3e,0x02,0x02,0x0a,0x04 -+// 25336 拸 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x13,0x20,0x20,0x7e,0x84,0x48,0x30,0x60,0x90,0x3f,0x21,0x42,0xa4,0x18,0x10,0x60,0x80 -+// 25337 拹 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0c,0x19,0x6f,0x09,0x09,0x09,0x0a,0x0a,0x2d,0x10,0x20,0x20,0xfc,0x24,0x44,0x44,0x94,0x08,0xde,0x4a,0x4a,0x4a,0x4a,0x52,0x6a,0x84 -+// 25338 拺 ; -+,0x08,0x08,0x09,0x7e,0x08,0x09,0x0b,0x0d,0x19,0x69,0x08,0x08,0x08,0x09,0x2a,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x11,0x11,0x11,0x3b,0x38,0x54,0x92,0x12,0x11,0x10 -+// 25339 拻 ; -+,0x08,0x08,0x08,0x0b,0x7e,0x08,0x0a,0x0c,0x19,0x69,0x0a,0x0c,0x08,0x08,0x2b,0x10,0x40,0x40,0x40,0xff,0x50,0x90,0x90,0xd2,0x56,0x38,0x28,0x24,0x44,0x83,0x02,0x00 -+// 25340 拼 ; -+,0x10,0x10,0x10,0x7c,0x11,0x10,0x14,0x18,0x73,0x10,0x10,0x10,0x11,0x11,0x52,0x24,0x00,0x88,0x4c,0x50,0xff,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 25341 拽 ; -+,0x08,0x08,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x68,0x08,0x08,0x08,0x08,0x0b,0x28,0x10,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0xfe,0x20,0x22,0x14,0x18,0x69,0x89,0x05,0x03 -+// 25342 拾 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0e,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x30,0x48,0x8c,0x07,0xfa,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00 -+// 25343 拿 ; -+,0x00,0x01,0x06,0x3b,0x00,0x07,0x04,0x07,0x00,0x07,0x00,0x1f,0x00,0x3f,0x00,0x00,0x80,0x60,0x18,0xf7,0x02,0xf8,0x08,0xf8,0x00,0xfc,0x40,0xfc,0x40,0xff,0x40,0xc0 -+// 25344 挀 ; -+,0x08,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x0e,0xf0,0x00,0x07,0x78,0x52,0x53,0x4c,0x48,0x48,0x44,0x44,0x52,0x63,0x42,0x00 -+// 25345 持 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0b,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0x08,0xff,0x08,0x88,0x68,0x48,0x08,0x28,0x10 -+// 25346 挂 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0b,0x0c,0x18,0x68,0x09,0x08,0x08,0x08,0x2b,0x10,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 25347 挃 ; -+,0x08,0x09,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x00,0xff,0x10,0x20,0x24,0x42,0xff,0x11,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 25348 挄 ; -+,0x08,0x08,0x09,0x7e,0x08,0x08,0x0b,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0x20,0x24,0x26,0xa4,0xa8,0x68,0xff,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 25349 挅 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0d,0x0a,0x18,0x6b,0x08,0x08,0x09,0x0e,0x28,0x10,0x00,0xfc,0x48,0x5e,0x82,0x82,0x0a,0x24,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 25350 挆 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0b,0x0e,0x1b,0x68,0x08,0x08,0x09,0x0a,0x2c,0x10,0x00,0xf8,0x88,0x88,0x88,0xa8,0x27,0x20,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20,0x20 -+// 25351 指 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x80,0x9c,0xe0,0x82,0x82,0xfe,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x00 -+// 25352 挈 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x00,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x01,0x00,0x00,0x7e,0x12,0x12,0x12,0xaa,0x44,0x38,0xc0,0x40,0xfc,0x40,0xff,0x40,0x40,0x80 -+// 25353 按 ; -+,0x08,0x08,0x08,0x09,0x7f,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x20,0x10,0x10,0xff,0x02,0x20,0x20,0xff,0x44,0x88,0xc8,0x30,0x2c,0xc7,0x02,0x00 -+// 25354 挊 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0xff,0x20,0x28,0x24,0x26,0x22,0x20,0x20,0x20 -+// 25355 挋 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x51,0x20,0x00,0xff,0x10,0x10,0x10,0xfe,0x02,0x02,0x02,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 25356 挌 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x40,0xfe,0x84,0x44,0x28,0x10,0x2c,0xc3,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00 -+// 25357 挍 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0d,0x1a,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x40,0x30,0x10,0xff,0x08,0x84,0x86,0x02,0x44,0x24,0x18,0x10,0x28,0xc7,0x02,0x00 -+// 25358 挎 ; -+,0x08,0x08,0x09,0x7e,0x08,0x09,0x08,0x0c,0x1b,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x20,0xff,0x50,0x88,0x07,0xfa,0x00,0xff,0x40,0x7c,0x04,0x04,0x04,0x14,0x08 -+// 25359 挏 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0xfe,0x02,0x7a,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x02,0x0a,0x04 -+// 25360 挐 ; -+,0x04,0x04,0x3f,0x09,0x19,0x06,0x0d,0x30,0x0f,0x00,0x0f,0x00,0x3f,0x00,0x01,0x00,0x00,0x3e,0xa2,0x22,0x22,0x3e,0x00,0xfc,0xc0,0x40,0xfc,0x40,0xff,0x40,0x40,0x80 -+// 25361 挑 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x0c,0x18,0x69,0x0e,0x08,0x09,0x09,0x2a,0x10,0x50,0x50,0x50,0x50,0x56,0x58,0xd0,0x58,0xd4,0x56,0x92,0x90,0x11,0x11,0x0f,0x00 -+// 25362 挒 ; -+,0x08,0x0b,0x09,0x7d,0x09,0x09,0x0e,0x0a,0x1d,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x02,0xf2,0x02,0x0a,0xea,0x2a,0x2a,0x2a,0x2a,0xaa,0xca,0x4a,0x82,0x02,0x0a,0x04 -+// 25363 挓 ; -+,0x10,0x10,0x11,0x11,0x7c,0x10,0x15,0x18,0x30,0x53,0x10,0x10,0x10,0x10,0x50,0x20,0x20,0x10,0xff,0x02,0x00,0x3c,0xe0,0x20,0x3f,0xe0,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 25364 挔 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0c,0x18,0x69,0x0a,0x0c,0x08,0x08,0x28,0x10,0x40,0x30,0x10,0xff,0x20,0x20,0x42,0x66,0x98,0x90,0x88,0x88,0x84,0xa7,0xc2,0x80 -+// 25365 挕 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x0b,0x08,0x08,0x28,0x10,0x00,0xff,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x9f,0xe4,0x04,0x04,0x04,0x04 -+// 25366 挖 ; -+,0x08,0x08,0x08,0x7f,0x09,0x08,0x0c,0x09,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x30,0x10,0xff,0x02,0x48,0x86,0x02,0xf8,0x10,0x20,0x41,0x81,0x81,0x7f,0x00 -+// 25367 挗 ; -+,0x08,0x08,0x0b,0x7c,0x09,0x08,0x09,0x0d,0x19,0x68,0x08,0x08,0x08,0x08,0x28,0x13,0x20,0x20,0xff,0x20,0xfe,0x22,0xfe,0x20,0xff,0x21,0x25,0x32,0x48,0x44,0x87,0x02 -+// 25368 挘 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0d,0x18,0x69,0x08,0x08,0x08,0x08,0x28,0x11,0x10,0x54,0x52,0x91,0x12,0x14,0x18,0xe0,0x20,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04 -+// 25369 挙 ; -+,0x00,0x11,0x0c,0x04,0x3f,0x02,0x0c,0x37,0x00,0x0f,0x00,0x3f,0x00,0x00,0x02,0x01,0x00,0x04,0x88,0x90,0xff,0x10,0x78,0x87,0x82,0xfc,0x80,0xff,0x80,0x80,0x80,0x00 -+// 25370 挚 ; -+,0x04,0x04,0x3f,0x04,0x0f,0x34,0x04,0x15,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x02,0x01,0x20,0x20,0x7c,0x24,0x24,0x65,0x55,0x83,0xf8,0x80,0xfc,0x80,0xff,0x80,0x80,0x00 -+// 25371 挛 ; -+,0x01,0x00,0x3f,0x02,0x0a,0x0a,0x12,0x22,0x07,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x00,0x80,0xff,0x20,0x28,0x26,0x23,0x22,0xf8,0x80,0xfc,0x80,0xff,0x80,0x80,0x00 -+// 25372 挜 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x00,0xff,0x48,0x48,0x48,0x48,0x49,0x4a,0xcc,0x48,0x48,0x48,0x48,0x48,0xff,0x00 -+// 25373 挝 ; -+,0x10,0x12,0x11,0x7d,0x10,0x10,0x17,0x19,0x31,0x51,0x11,0x11,0x11,0x12,0x54,0x20,0x04,0x04,0x04,0x7f,0x04,0x04,0x44,0x24,0x24,0x04,0x04,0x14,0x08,0xc0,0x3f,0x00 -+// 25374 挞 ; -+,0x08,0x09,0x08,0x7e,0x08,0x0a,0x0c,0x0b,0x18,0x68,0x08,0x08,0x09,0x0a,0x28,0x10,0x08,0x08,0x88,0x88,0x7f,0x08,0x08,0x88,0x8c,0x92,0x93,0xa1,0x80,0x40,0x3f,0x00 -+// 25375 挟 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x0c,0x19,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x20,0x20,0x20,0xfe,0x20,0x24,0xa8,0x70,0xff,0x20,0x50,0x48,0x84,0x07,0x02,0x00 -+// 25376 挠 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x08,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x09,0x09,0x2a,0x10,0x40,0x40,0xfe,0x40,0x2c,0x31,0xd9,0x07,0xfe,0x90,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 25377 挡 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0x13,0x92,0x54,0x58,0xff,0x01,0x01,0xff,0x01,0x01,0x01,0xff,0x00,0x00 -+// 25378 挢 ; -+,0x08,0x09,0x08,0x7e,0x0b,0x08,0x0a,0x0c,0x19,0x6e,0x08,0x08,0x08,0x08,0x29,0x12,0x1e,0xe0,0x20,0x20,0xff,0x50,0x48,0x84,0x4b,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 25379 挣 ; -+,0x08,0x08,0x08,0x08,0x7f,0x09,0x0a,0x0d,0x18,0x68,0x09,0x08,0x08,0x08,0x28,0x10,0x40,0x40,0xfc,0x88,0x10,0xfe,0x22,0xff,0x22,0x22,0xfe,0x20,0x20,0x20,0xa0,0x40 -+// 25380 挤 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0c,0x0b,0x18,0x68,0x08,0x08,0x08,0x09,0x29,0x12,0x40,0x20,0xfe,0x88,0x50,0x20,0xd8,0x07,0x8a,0x88,0x88,0x88,0x88,0x08,0x08,0x08 -+// 25381 挥 ; -+,0x08,0x09,0x09,0x7e,0x09,0x08,0x0a,0x0c,0x19,0x68,0x08,0x0b,0x08,0x08,0x28,0x10,0x00,0xff,0x22,0x40,0xfe,0x40,0x90,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 25382 挦 ; -+,0x08,0x09,0x08,0x7e,0x08,0x09,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x08,0x08,0xff,0x08,0x88,0x48,0x48,0x08,0x28,0x10 -+// 25383 挧 ; -+,0x08,0x09,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x0b,0x08,0x08,0x08,0x28,0x10,0x00,0xef,0x21,0x21,0x21,0xa9,0x65,0x23,0x65,0xa9,0x31,0x21,0x21,0x21,0xa5,0x42 -+// 25384 挨 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x13,0x20,0x20,0x44,0xfe,0x02,0x40,0x7e,0x90,0x10,0xff,0x10,0x30,0x28,0x44,0x87,0x02 -+// 25385 挩 ; -+,0x08,0x08,0x08,0x7d,0x0a,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x12,0x80,0xc8,0x86,0x03,0xfe,0x84,0x84,0x84,0xfc,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 25386 挪 ; -+,0x10,0x13,0x11,0x7d,0x11,0x17,0x19,0x11,0x33,0x51,0x11,0x12,0x12,0x14,0x58,0x20,0x00,0xef,0x29,0x2a,0x2a,0xec,0x2c,0x2a,0xe9,0x29,0x29,0x2d,0x2a,0xa8,0x48,0x08 -+// 25387 挫 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x15,0x1a,0x34,0x50,0x13,0x10,0x10,0x10,0x57,0x20,0x20,0x20,0x24,0xa6,0x24,0x24,0xac,0x6a,0x71,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 25388 挬 ; -+,0x08,0x08,0x09,0x08,0x7d,0x09,0x0a,0x0c,0x18,0x68,0x0b,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0xff,0x10,0xff,0x02,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 25389 挭 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0x00,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0x90,0x60,0x30,0x48,0x87,0x02 -+// 25390 挮 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x09,0x0d,0x19,0x69,0x08,0x08,0x08,0x09,0x2a,0x10,0x88,0x4c,0x50,0xfe,0x22,0x22,0xfe,0x20,0x20,0xff,0x61,0xa1,0xa5,0x22,0x20,0x20 -+// 25391 振 ; -+,0x08,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x09,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x00,0xff,0x00,0x00,0x7e,0x00,0xff,0x60,0x52,0x53,0x4c,0x44,0x44,0x53,0x62,0x40 -+// 25392 挰 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0d,0x18,0x68,0x09,0x08,0x08,0x08,0x2b,0x10,0xfe,0x82,0x82,0x82,0xfe,0x00,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 25393 挱 ; -+,0x09,0x08,0x08,0x7e,0x09,0x08,0x0c,0x08,0x18,0x68,0x0b,0x09,0x09,0x09,0x29,0x11,0x08,0x88,0x88,0x08,0x2a,0xa9,0x49,0x48,0x8a,0x8b,0x02,0x04,0x04,0x08,0x10,0x60 -+// 25394 挲 ; -+,0x08,0x24,0x14,0x11,0x03,0x1c,0x09,0x00,0x1f,0x00,0x1f,0x00,0x3f,0x00,0x02,0x01,0x20,0x24,0xa2,0x25,0x24,0x18,0xe0,0x7c,0x80,0x80,0xfc,0x80,0xfe,0x80,0x80,0x00 -+// 25395 挳 ; -+,0x08,0x09,0x08,0x08,0x7d,0x0a,0x09,0x0c,0x18,0x69,0x08,0x08,0x08,0x08,0x2b,0x10,0x00,0xff,0x00,0x92,0x24,0x48,0x24,0x92,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x00 -+// 25396 挴 ; -+,0x08,0x08,0x09,0x7d,0x0a,0x08,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x08,0x28,0x18,0x00,0x80,0x80,0xff,0x00,0xfc,0xa4,0x94,0x84,0xff,0xa4,0x94,0x84,0xff,0x04,0x14,0x08 -+// 25397 挵 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0d,0x18,0x68,0x0b,0x08,0x08,0x08,0x08,0x29,0x12,0x00,0xff,0x10,0xfe,0x10,0x10,0xff,0x48,0x48,0xff,0x48,0x48,0x88,0x88,0x08,0x08 -+// 25398 挶 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x0d,0x19,0x69,0x09,0x09,0x09,0x0a,0x2a,0x14,0x00,0xfe,0x02,0x02,0xfe,0x00,0xff,0x01,0x79,0x49,0x49,0x79,0x01,0x01,0x32,0x0c -+// 25399 挷 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x08,0x0d,0x08,0x18,0x6b,0x08,0x09,0x09,0x0a,0x2c,0x10,0x80,0x9f,0xf1,0x92,0x92,0x94,0xf4,0x92,0x91,0xf1,0x91,0x15,0x12,0x10,0x10,0x10 -+// 25400 挸 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x11,0xfe,0x82,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 25401 挹 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x09,0x19,0x69,0x09,0x09,0x09,0x09,0x28,0x10,0x00,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x12,0x12,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 25402 挺 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x09,0x0d,0x1b,0x68,0x0c,0x0a,0x09,0x09,0x0a,0x2c,0x10,0x00,0x07,0xb8,0x88,0x88,0x08,0x3f,0xc8,0x48,0x88,0x88,0x3e,0x80,0x40,0x3f,0x00 -+// 25403 挻 ; -+,0x08,0x0b,0x08,0x7e,0x09,0x09,0x0d,0x08,0x18,0x68,0x0a,0x09,0x09,0x0a,0x2c,0x10,0x00,0xc7,0xb8,0x88,0x28,0x2f,0xa8,0xa8,0xa8,0xa8,0xbf,0x00,0xc0,0x30,0x0f,0x00 -+// 25404 挼 ; -+,0x08,0x08,0x09,0x7e,0x08,0x08,0x0a,0x0c,0x1b,0x68,0x08,0x09,0x08,0x08,0x2b,0x10,0x02,0x1f,0xe0,0x22,0x93,0xd2,0x24,0x20,0xff,0x44,0x88,0xd0,0x38,0xc6,0x03,0x00 -+// 25405 挽 ; -+,0x08,0x08,0x08,0x7e,0x09,0x09,0x0b,0x0d,0x19,0x68,0x08,0x08,0x08,0x08,0x29,0x12,0x40,0x40,0xfc,0x88,0xfe,0x22,0x22,0x22,0xfe,0x30,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 25406 挾 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0c,0x19,0x6a,0x08,0x08,0x08,0x08,0x2b,0x10,0x20,0x20,0x20,0xff,0x20,0xa4,0xa4,0xa4,0x6a,0x71,0x30,0x28,0x44,0x87,0x02,0x00 -+// 25407 挿 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x0e,0x70,0x10,0xff,0x10,0x10,0xff,0x91,0xff,0x91,0xff,0x10,0x10,0x10,0x10,0x10 -+// 25408 捀 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0d,0x18,0x69,0x08,0x09,0x08,0x0b,0x08,0x28,0x10,0x40,0x7e,0x84,0xc8,0x30,0x48,0xa7,0x22,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 25409 捁 ; -+,0x08,0x08,0x08,0x7e,0x09,0x09,0x0c,0x09,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x90,0xd0,0x90,0xfe,0x10,0x10,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x00 -+// 25410 捂 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x20,0x20,0xfc,0x44,0x44,0xff,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00 -+// 25411 捃 ; -+,0x08,0x09,0x08,0x7d,0x08,0x08,0x0b,0x0c,0x18,0x68,0x09,0x0a,0x0c,0x08,0x28,0x10,0x00,0xfc,0x44,0xff,0x44,0x44,0xfc,0x40,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 25412 捄 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0d,0x18,0x68,0x08,0x09,0x0e,0x08,0x08,0x28,0x10,0x20,0x28,0x24,0x20,0xff,0x20,0x22,0xb4,0x28,0xa4,0x24,0x23,0x22,0x20,0xa0,0x40 -+// 25413 捅 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xff,0x22,0x14,0xff,0x91,0x91,0xff,0x91,0x91,0xff,0x91,0x91,0x91,0x95,0x92 -+// 25414 捆 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0xfe,0x02,0x12,0x12,0xfe,0x3a,0x36,0x52,0x52,0x92,0x12,0x12,0x12,0xfe,0x02 -+// 25415 捇 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0c,0x18,0x69,0x09,0x0a,0x08,0x08,0x29,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x48,0xc8,0xcc,0x4a,0x4b,0x49,0x88,0x88,0x28,0x10 -+// 25416 捈 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x1b,0x68,0x08,0x09,0x09,0x0a,0x28,0x10,0x20,0x20,0x50,0x88,0x07,0xfa,0x20,0x20,0xff,0x20,0x28,0x24,0x22,0x22,0xa0,0x40 -+// 25417 捉 ; -+,0x08,0x09,0x09,0x7d,0x09,0x09,0x0a,0x0c,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x20,0x20,0x20,0x3e,0x20,0xa0,0x60,0x30,0x0f,0x00 -+// 25418 捊 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x69,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x1f,0xe2,0xa2,0x54,0xfe,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 25419 捋 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0c,0x18,0x69,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x0f,0xf0,0x22,0x94,0x48,0x04,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x14,0x08 -+// 25420 捌 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x14,0x18,0x33,0x50,0x10,0x11,0x11,0x12,0x54,0x20,0x01,0xe1,0x21,0x25,0x25,0xe5,0x85,0x85,0xe5,0xa5,0xa5,0x21,0x21,0x21,0xa5,0x42 -+// 25421 捍 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x19,0x68,0x08,0x0b,0x08,0x08,0x08,0x28,0x10,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 25422 捎 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x12,0x93,0xd6,0x54,0xff,0x81,0x81,0xff,0x81,0x81,0xff,0x81,0x81,0x85,0x82 -+// 25423 捏 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0c,0x08,0x18,0x68,0x09,0x08,0x08,0x08,0x2b,0x10,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 25424 捐 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0xff,0x81,0x81,0xff,0x00,0xff,0x81,0x81,0xff,0x81,0x81,0xff,0x81,0x81,0x85,0x82 -+// 25425 捑 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x0b,0x0d,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x12,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xf0,0x10,0xff,0x10,0x28,0x24,0x46,0x83,0x02 -+// 25426 捒 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x30,0x38,0x56,0x93,0x11,0x10,0x10 -+// 25427 捓 ; -+,0x10,0x13,0x11,0x7d,0x11,0x13,0x14,0x18,0x31,0x51,0x12,0x14,0x18,0x10,0x51,0x20,0x00,0xef,0x49,0x4a,0x4a,0xfc,0xca,0xc9,0x49,0x49,0x4d,0x4a,0x48,0x48,0x48,0x88 -+// 25428 捔 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x09,0x2a,0x14,0x40,0x7c,0x44,0x88,0xff,0x91,0x91,0xff,0x91,0xff,0x91,0x91,0x11,0x11,0x15,0x12 -+// 25429 捕 ; -+,0x08,0x08,0x08,0x09,0x7e,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x10,0x14,0x12,0xff,0x10,0xff,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0x15,0x12 -+// 25430 捖 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x08,0x19,0x68,0x08,0x08,0x08,0x08,0x29,0x12,0x20,0x10,0xff,0x82,0x00,0xfe,0x00,0x00,0xff,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 25431 捗 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0d,0x18,0x28,0x48,0x08,0x09,0x08,0x08,0x28,0x13,0x10,0x10,0x1e,0x90,0x90,0x90,0xff,0x10,0x12,0x93,0x92,0x14,0x18,0x30,0xc0,0x00 -+// 25432 捘 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x18,0x68,0x08,0x09,0x08,0x08,0x28,0x13,0x10,0x20,0x44,0xfe,0x02,0x44,0x83,0x41,0x40,0x7e,0xc4,0x28,0x10,0x28,0xc7,0x02 -+// 25433 捙 ; -+,0x08,0x08,0x09,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x0b,0x08,0x08,0x28,0x10,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 25434 捚 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 25435 捛 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0xff,0x81,0x81,0x81,0x81,0xff,0x81,0x00 -+// 25436 捜 ; -+,0x08,0x08,0x09,0x7f,0x09,0x09,0x0b,0x0c,0x18,0x69,0x08,0x08,0x08,0x08,0x28,0x13,0x10,0x50,0x9f,0x11,0xff,0x11,0xff,0x10,0x10,0xfe,0x84,0x48,0x30,0x2c,0xc7,0x02 -+// 25437 捝 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x28,0x11,0x00,0x84,0x46,0x48,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 25438 捞 ; -+,0x08,0x08,0x09,0x7e,0x08,0x09,0x0d,0x18,0x68,0x09,0x08,0x08,0x08,0x08,0x29,0x12,0x48,0x48,0xff,0x48,0x48,0xff,0x22,0x20,0x20,0xfe,0x22,0x42,0x42,0x82,0x14,0x08 -+// 25439 损 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x11,0xfe,0x82,0x82,0xfe,0x00,0xff,0x81,0x91,0x91,0x91,0x91,0xa1,0x28,0x44,0x83,0x01 -+// 25440 捠 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x6b,0x08,0x08,0x08,0x09,0x2a,0x10,0x06,0xf8,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0xff,0x00,0x88,0x84,0x03,0x01,0x00 -+// 25441 捡 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x0c,0x18,0x69,0x08,0x08,0x08,0x0b,0x28,0x10,0x00,0x20,0x20,0x50,0x88,0xf4,0x03,0x00,0x42,0x22,0xa4,0x88,0x10,0xff,0x00,0x00 -+// 25442 换 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0b,0x09,0x0d,0x19,0x6f,0x08,0x08,0x08,0x08,0x2b,0x10,0x40,0x40,0xfc,0x88,0x10,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x48,0x87,0x02,0x00 -+// 25443 捣 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x0a,0x0a,0x0b,0x08,0x28,0x10,0x10,0x20,0xfc,0x84,0xa4,0x94,0x84,0x88,0xff,0x41,0x49,0x49,0xf9,0x01,0x05,0x02 -+// 25444 捤 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x11,0x12,0x12,0x14,0x58,0x20,0x00,0xfe,0x02,0xfe,0x00,0x0e,0xf0,0x10,0xfe,0x10,0xff,0x10,0x11,0x11,0x0f,0x00 -+// 25445 捥 ; -+,0x08,0x08,0x09,0x7f,0x08,0x09,0x0b,0x0d,0x1a,0x6b,0x0c,0x08,0x09,0x0a,0x2c,0x10,0x20,0x10,0xff,0x02,0x00,0x00,0xde,0x52,0x52,0x52,0x96,0x90,0x11,0x11,0x0f,0x00 -+// 25446 捦 ; -+,0x08,0x08,0x08,0x08,0x7f,0x09,0x0a,0x0c,0x19,0x68,0x0a,0x09,0x08,0x08,0x2b,0x10,0x20,0x20,0x50,0x88,0x07,0xfc,0x20,0x20,0xfe,0x20,0x22,0x26,0xa8,0xb0,0xff,0x00 -+// 25447 捧 ; -+,0x10,0x10,0x13,0x7c,0x13,0x10,0x17,0x18,0x33,0x5d,0x10,0x13,0x10,0x10,0x50,0x20,0x40,0x40,0xfe,0x40,0xfc,0x40,0xff,0x88,0x24,0xfb,0x20,0xfc,0x20,0x20,0x20,0x20 -+// 25448 捨 ; -+,0x08,0x08,0x08,0x08,0x7d,0x0a,0x08,0x0f,0x18,0x68,0x09,0x09,0x09,0x09,0x29,0x10,0x20,0x20,0x50,0x88,0xff,0x22,0x20,0xff,0x20,0x20,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 25449 捩 ; -+,0x08,0x08,0x09,0x7d,0x09,0x09,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x0c,0x28,0x13,0x20,0x10,0xfe,0x02,0x02,0xfe,0x18,0x14,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02 -+// 25450 捪 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x0d,0x09,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x0e,0xf0,0x10,0xff,0x08,0x49,0x85,0x03,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 25451 捫 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x00,0xef,0x29,0xef,0x29,0x29,0xef,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x02 -+// 25452 捬 ; -+,0x10,0x10,0x13,0x7e,0x12,0x12,0x16,0x1a,0x33,0x52,0x12,0x12,0x12,0x14,0x54,0x28,0x20,0x10,0xff,0x40,0x64,0x44,0xff,0xc4,0x64,0x54,0x54,0x44,0x44,0x44,0x54,0x48 -+// 25453 捭 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x09,0x0d,0x19,0x68,0x08,0x0f,0x08,0x08,0x28,0x10,0x10,0x20,0xfe,0x12,0x12,0xfe,0x12,0x22,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 25454 据 ; -+,0x08,0x09,0x09,0x7d,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x00,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 25455 捯 ; -+,0x08,0x0b,0x08,0x08,0x7d,0x0b,0x0c,0x08,0x1b,0x68,0x08,0x08,0x08,0x0b,0x28,0x10,0x01,0xf1,0x81,0x85,0x25,0xf5,0x95,0x85,0xe5,0x85,0x85,0xb1,0xc1,0x01,0x05,0x02 -+// 25456 捰 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x09,0x0e,0x28,0x10,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0x20,0xff,0x70,0x68,0xa4,0x27,0x22,0x20,0x20 -+// 25457 捱 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x15,0x19,0x71,0x11,0x11,0x12,0x12,0x57,0x28,0x00,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 25458 捲 ; -+,0x10,0x11,0x10,0x11,0x7c,0x13,0x14,0x18,0x30,0x51,0x16,0x10,0x10,0x10,0x50,0x20,0x20,0x2c,0xa8,0xfe,0x40,0xff,0x50,0x88,0xf4,0x97,0x92,0xb0,0x84,0x84,0x7c,0x00 -+// 25459 捳 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x1b,0x68,0x09,0x09,0x09,0x09,0x29,0x10,0x06,0xf8,0x80,0x80,0xff,0x88,0x88,0x88,0xff,0x10,0x11,0x11,0x11,0xff,0x01,0x00 -+// 25460 捴 ; -+,0x08,0x08,0x08,0x08,0x7d,0x0a,0x0a,0x0c,0x18,0x68,0x08,0x0a,0x0a,0x0e,0x28,0x10,0x10,0x50,0x48,0x84,0x23,0x22,0x48,0xfc,0x04,0x00,0xa2,0x91,0x85,0x84,0x7c,0x00 -+// 25461 捵 ; -+,0x10,0x10,0x10,0x7d,0x11,0x11,0x17,0x19,0x71,0x11,0x17,0x10,0x10,0x10,0x51,0x22,0x50,0x50,0x50,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0xff,0x00,0x88,0x86,0x03,0x02 -+// 25462 捶 ; -+,0x10,0x10,0x13,0x7c,0x13,0x11,0x15,0x1f,0x31,0x51,0x10,0x17,0x10,0x10,0x53,0x20,0x00,0x1e,0xe0,0x20,0xff,0x24,0x24,0xff,0x24,0x24,0x20,0xff,0x20,0x20,0xfe,0x00 -+// 25463 捷 ; -+,0x10,0x13,0x10,0x7d,0x10,0x13,0x14,0x19,0x30,0x50,0x11,0x11,0x11,0x12,0x52,0x24,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x00 -+// 25464 捸 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x0a,0x0d,0x18,0x69,0x08,0x08,0x09,0x0a,0x28,0x10,0x20,0x20,0xfc,0x24,0xff,0x24,0x24,0xfc,0x22,0x24,0xa8,0xa4,0x27,0x22,0xa0,0x40 -+// 25465 捹 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x0d,0x08,0x18,0x68,0x0b,0x08,0x09,0x09,0x2a,0x14,0x20,0x20,0xfe,0x30,0x48,0xa4,0xff,0x20,0xa8,0x88,0xff,0x88,0x08,0x08,0x08,0x08 -+// 25466 捺 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x0a,0x0d,0x1a,0x68,0x0b,0x08,0x09,0x09,0x0a,0x28,0x10,0x20,0x20,0xff,0x20,0x50,0x88,0x07,0xfa,0x00,0xff,0x20,0x24,0x22,0x23,0xa2,0x40 -+// 25467 捻 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0e,0x19,0x68,0x08,0x08,0x0a,0x0a,0x0e,0x28,0x10,0x40,0x40,0x60,0x90,0x88,0x27,0x22,0xfc,0x08,0x50,0x30,0x92,0x85,0x85,0x7c,0x00 -+// 25468 捼 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x08,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x13,0x0e,0x70,0x10,0xff,0x10,0x38,0x57,0x92,0x30,0xff,0x44,0xc8,0x30,0x28,0xc7,0x02 -+// 25469 捽 ; -+,0x08,0x08,0x09,0x7e,0x08,0x08,0x0d,0x0a,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xff,0x84,0x84,0xcc,0x73,0x52,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 25470 捾 ; -+,0x08,0x08,0x09,0x7f,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xff,0x02,0x00,0xfe,0x82,0x82,0xfe,0x80,0xff,0x81,0x81,0x81,0xff,0x81 -+// 25471 捿 ; -+,0x08,0x0b,0x08,0x7d,0x08,0x09,0x0c,0x09,0x18,0x6b,0x08,0x09,0x08,0x08,0x28,0x13,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x40,0xff,0x88,0x90,0x70,0x28,0xc7,0x02 -+// 25472 掀 ; -+,0x10,0x10,0x13,0x12,0x7e,0x13,0x16,0x1a,0x32,0x52,0x12,0x12,0x14,0x14,0x50,0x20,0x00,0xd0,0x18,0x10,0x1f,0xe9,0xaa,0x88,0x88,0x94,0x94,0x94,0xa2,0xc3,0x82,0x80 -+// 25473 掁 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0c,0x0b,0x18,0x68,0x08,0x08,0x08,0x28,0x10,0x00,0x00,0xfe,0x80,0xfc,0x80,0xfc,0x80,0xff,0xc0,0xa4,0xa8,0x90,0x88,0xc7,0x82,0x00 -+// 25474 掂 ; -+,0x08,0x08,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x20,0x10,0xff,0x10,0x10,0x10,0x1f,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 25475 掃 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x19,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0xfe,0x02,0x7e,0x02,0xfe,0x00,0xff,0x12,0x10,0xfe,0x92,0x92,0x92,0x96,0x10,0x10 -+// 25476 掄 ; -+,0x08,0x08,0x08,0x08,0x7e,0x0b,0x0c,0x0b,0x1a,0x6a,0x0b,0x0a,0x0a,0x0a,0x2a,0x12,0x20,0x20,0x50,0x48,0x84,0xfb,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x56,0x02 -+// 25477 掅 ; -+,0x08,0x09,0x08,0x7e,0x08,0x0b,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 25478 掆 ; -+,0x10,0x13,0x12,0x7e,0x12,0x13,0x16,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x52,0x22,0x00,0xfe,0x8a,0x4a,0x52,0xfe,0x22,0x22,0xaa,0xaa,0xfa,0x8a,0x02,0x02,0x0a,0x04 -+// 25479 掇 ; -+,0x13,0x10,0x12,0x7d,0x11,0x12,0x14,0x1b,0x30,0x52,0x11,0x10,0x11,0x12,0x5c,0x20,0xdf,0x51,0x92,0x8c,0x8c,0x52,0x61,0xfe,0x42,0x54,0x94,0xc8,0x54,0x23,0xc2,0x00 -+// 25480 授 ; -+,0x10,0x13,0x10,0x7d,0x10,0x13,0x16,0x18,0x31,0x50,0x10,0x10,0x10,0x11,0x56,0x20,0x1e,0xe0,0x42,0x24,0xa8,0xff,0x02,0x00,0xfc,0x88,0x50,0x20,0x50,0x8e,0x04,0x00 -+// 25481 掉 ; -+,0x08,0x08,0x08,0x7e,0x09,0x09,0x0b,0x0d,0x19,0x68,0x08,0x0b,0x08,0x08,0x28,0x10,0x20,0x20,0x3e,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25482 掊 ; -+,0x08,0x08,0x09,0x7e,0x08,0x08,0x0a,0x0f,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xfe,0x00,0x84,0x48,0x50,0xff,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 25483 掋 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x11,0x12,0x12,0x12,0x54,0x20,0x20,0x10,0xff,0x00,0x7e,0x48,0x48,0x7f,0x48,0x48,0x48,0x45,0x55,0x63,0x49,0x04 -+// 25484 掌 ; -+,0x08,0x04,0x3f,0x20,0x07,0x04,0x07,0x00,0x1f,0x00,0x1f,0x00,0x3f,0x00,0x02,0x01,0x88,0x90,0xff,0x02,0xf0,0x10,0xf0,0x00,0xf8,0x80,0xfc,0x80,0xfe,0x80,0x80,0x00 -+// 25485 掍 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x10,0x13,0xfc,0x10,0x10,0x51,0x91,0x0f,0x00 -+// 25486 掎 ; -+,0x08,0x08,0x09,0x7e,0x08,0x09,0x0b,0x0c,0x19,0x69,0x09,0x09,0x08,0x08,0x28,0x10,0x20,0x20,0xfe,0x30,0x48,0x86,0xff,0x04,0xe4,0x24,0x24,0xe4,0x04,0x04,0x14,0x08 -+// 25487 掏 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x09,0x0c,0x1b,0x68,0x09,0x09,0x09,0x08,0x28,0x10,0x40,0x40,0xff,0x81,0x41,0xf9,0x21,0x21,0xfd,0x21,0x25,0xfd,0x05,0x01,0x05,0x02 -+// 25488 掐 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0c,0x08,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x40,0x40,0x7f,0x82,0x84,0x08,0x00,0x20,0xcf,0x01,0x01,0xef,0x01,0x01,0xff,0x01 -+// 25489 掑 ; -+,0x08,0x08,0x09,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x0b,0x08,0x08,0x08,0x2b,0x10,0x84,0x84,0xff,0x84,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x00,0x44,0x83,0x01,0x00 -+// 25490 排 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x0b,0x18,0x68,0x0f,0x08,0x08,0x28,0x10,0x00,0x90,0x90,0x90,0x9f,0x90,0x90,0x90,0x9e,0x90,0x90,0x9f,0x90,0x90,0x90,0x90 -+// 25491 掓 ; -+,0x10,0x10,0x10,0x10,0x7c,0x10,0x17,0x18,0x30,0x52,0x12,0x14,0x14,0x10,0x52,0x21,0x80,0x80,0x9f,0xf1,0x91,0x91,0xea,0x8a,0x8a,0xc4,0xa4,0xac,0x92,0xa3,0xc2,0x00 -+// 25492 掔 ; -+,0x3f,0x20,0x3f,0x21,0x3f,0x20,0x3f,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x00,0x7e,0x24,0x18,0x08,0x14,0x63,0x3c,0xc0,0x80,0xfc,0x80,0xfe,0x80,0x80,0x00 -+// 25493 掕 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x08,0x08,0x28,0x13,0x10,0x10,0xfe,0x10,0xff,0x00,0x44,0x82,0x7d,0x44,0x28,0x28,0x10,0x2c,0xc7,0x02 -+// 25494 掖 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0d,0x0b,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x20,0x10,0xff,0x48,0x50,0xbe,0x22,0x52,0xcc,0x24,0x18,0x18,0x24,0x47,0x82,0x00 -+// 25495 掗 ; -+,0x08,0x09,0x08,0x7e,0x08,0x0b,0x0d,0x09,0x19,0x69,0x08,0x08,0x08,0x08,0x2b,0x10,0x00,0xff,0x48,0x48,0x48,0xce,0x02,0x02,0x02,0xce,0x48,0x48,0x48,0x48,0xff,0x00 -+// 25496 掘 ; -+,0x13,0x12,0x12,0x7f,0x12,0x16,0x1a,0x32,0x52,0x12,0x13,0x13,0x15,0x15,0x59,0x20,0xfe,0x02,0x02,0xfe,0x00,0x10,0x92,0x92,0xfe,0x10,0x11,0x11,0x11,0xff,0x01,0x00 -+// 25497 掙 ; -+,0x08,0x09,0x08,0x09,0x7e,0x09,0x0c,0x0b,0x18,0x68,0x09,0x08,0x08,0x08,0x28,0x10,0x0f,0xf0,0x02,0x22,0x94,0xfe,0x12,0xff,0x12,0x12,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 25498 掚 ; -+,0x10,0x13,0x10,0x7c,0x13,0x12,0x17,0x1a,0x32,0x53,0x12,0x12,0x12,0x12,0x52,0x22,0x00,0xff,0x20,0x20,0xfe,0x22,0x32,0xaa,0xee,0x76,0x22,0x22,0x22,0x22,0x2a,0x24 -+// 25499 掛 ; -+,0x08,0x08,0x08,0x7d,0x08,0x08,0x0b,0x0c,0x18,0x68,0x0b,0x08,0x08,0x08,0x2b,0x10,0x08,0x88,0x88,0xe8,0x88,0x8c,0xea,0x0b,0x89,0x88,0xe8,0x88,0x88,0xe8,0x08,0x08 -+// 25500 掜 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x09,0x0d,0x18,0x68,0x08,0x08,0x08,0x09,0x2a,0x10,0x20,0xce,0x02,0x02,0xce,0x02,0x02,0xfe,0x50,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 25501 掝 ; -+,0x08,0x08,0x08,0x09,0x7e,0x09,0x09,0x0d,0x19,0x69,0x08,0x08,0x0b,0x08,0x28,0x10,0x10,0x14,0x12,0xff,0x10,0xd2,0x53,0x52,0x56,0xd4,0x08,0xcd,0x15,0x23,0x41,0x00 -+// 25502 掞 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x0a,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x20,0x24,0x26,0xa8,0x30,0x4c,0x82,0x20,0x22,0xa4,0xb8,0x50,0x48,0x84,0x07,0x02 -+// 25503 掟 ; -+,0x08,0x08,0x09,0x09,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x09,0x2a,0x10,0x20,0x10,0xff,0x02,0x04,0x00,0xfe,0x10,0x10,0x9f,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 25504 掠 ; -+,0x08,0x08,0x08,0x09,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x0a,0x28,0x10,0x20,0x10,0x08,0xff,0x00,0xfe,0x82,0x82,0xfe,0x10,0x94,0x92,0x13,0x11,0x50,0x20 -+// 25505 採 ; -+,0x08,0x08,0x09,0x7f,0x08,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x09,0x0a,0x28,0x10,0x00,0x1e,0xe0,0x22,0x94,0x08,0x20,0xff,0x60,0x70,0xa8,0xa4,0x27,0x22,0x20,0x20 -+// 25506 探 ; -+,0x08,0x09,0x09,0x7e,0x08,0x09,0x0c,0x0b,0x18,0x68,0x08,0x09,0x0a,0x08,0x28,0x10,0x00,0xff,0x02,0x88,0x86,0x22,0x20,0xff,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 25507 掣 ; -+,0x14,0x1f,0x24,0x1f,0x04,0x1f,0x14,0x15,0x07,0x00,0x0f,0x00,0x3f,0x00,0x01,0x00,0x00,0x82,0x12,0x92,0x12,0x92,0x86,0x82,0xf8,0x40,0xfc,0x40,0xff,0x40,0x40,0x80 -+// 25508 掤 ; -+,0x10,0x13,0x12,0x12,0x7f,0x12,0x16,0x1a,0x33,0x52,0x12,0x12,0x12,0x14,0x55,0x28,0x00,0xde,0x52,0x52,0xde,0x52,0x52,0x52,0xde,0x52,0x52,0x52,0x52,0x52,0x6a,0xc4 -+// 25509 接 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0b,0x0a,0x0c,0x18,0x6f,0x08,0x09,0x08,0x08,0x28,0x13,0x20,0x10,0xfe,0x84,0x48,0xff,0x00,0x40,0x40,0xff,0x88,0x88,0x70,0x28,0xc6,0x02 -+// 25510 掦 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x6b,0x08,0x09,0x08,0x08,0x28,0x10,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0x7f,0xa9,0x49,0x51,0x91,0x21,0xc1,0x09,0x06 -+// 25511 控 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0x00,0x10,0x08,0xff,0x82,0x28,0x46,0x82,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 25512 推 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x08,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x90,0xc8,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80 -+// 25513 掩 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0d,0x1f,0x69,0x09,0x09,0x09,0x08,0x08,0x28,0x10,0x20,0x20,0xff,0x20,0x50,0xac,0x27,0xfe,0x24,0xfc,0x24,0xfc,0x21,0x21,0x1f,0x00 -+// 25514 措 ; -+,0x08,0x08,0x08,0x7d,0x08,0x08,0x0f,0x08,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0x88,0x88,0xfe,0x88,0x88,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 25515 掫 ; -+,0x10,0x17,0x12,0x12,0x7f,0x12,0x16,0x1b,0x32,0x52,0x12,0x13,0x16,0x10,0x50,0x20,0x00,0xe0,0x40,0x7f,0xd2,0x52,0x4a,0xca,0x4a,0x44,0x64,0xcc,0x52,0x63,0x42,0x40 -+// 25516 掬 ; -+,0x08,0x08,0x08,0x08,0x7f,0x09,0x0a,0x0c,0x1b,0x68,0x08,0x09,0x0a,0x08,0x28,0x10,0x00,0x80,0x80,0xff,0x21,0x29,0xb1,0x21,0xfd,0x71,0xa9,0x2d,0x21,0x21,0x25,0x02 -+// 25517 掭 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x19,0x6e,0x09,0x09,0x0b,0x08,0x28,0x10,0x00,0xfc,0x20,0x20,0xff,0x50,0x88,0x84,0x27,0x22,0x34,0x2a,0x2a,0x20,0xa0,0x40 -+// 25518 掮 ; -+,0x08,0x08,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x20,0x10,0xff,0x01,0xff,0x00,0x7f,0x41,0x7f,0x41,0x7f,0x41,0x41,0x41,0x45,0x42 -+// 25519 掯 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0x9e,0x90,0x90,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 25520 掰 ; -+,0x00,0x7c,0x10,0x11,0x7d,0x12,0x14,0x13,0x7d,0x11,0x11,0x12,0x22,0x25,0x48,0x00,0x80,0x9f,0x84,0x44,0x5f,0x24,0x14,0xe4,0x5f,0x44,0x44,0x44,0x44,0x44,0x94,0x08 -+// 25521 掱 ; -+,0x00,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x01,0x3e,0x08,0x3e,0x08,0x7e,0x08,0x28,0x10,0x70,0x80,0x80,0xfc,0x80,0xff,0x80,0x8c,0xf0,0x10,0xfe,0x10,0xff,0x10,0x50,0x20 -+// 25522 掲 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x08,0x19,0x6a,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x80,0xff,0x01,0x99,0xe1,0x85,0x7d,0x01,0x05,0x02 -+// 25523 掳 ; -+,0x10,0x10,0x10,0x7b,0x12,0x13,0x16,0x1a,0x32,0x52,0x12,0x12,0x14,0x14,0x58,0x20,0x20,0x3e,0x20,0xff,0x22,0xfc,0x22,0x3e,0x00,0x20,0xfe,0x22,0x22,0x42,0x4a,0x84 -+// 25524 掴 ; -+,0x08,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x09,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x00,0xff,0x01,0x7f,0x11,0x11,0x7d,0x11,0x15,0x13,0xff,0x01,0x01,0xff,0x01,0x00 -+// 25525 掵 ; -+,0x08,0x08,0x08,0x08,0x7e,0x0b,0x0c,0x09,0x19,0x69,0x09,0x09,0x09,0x08,0x28,0x10,0x20,0x20,0x50,0x48,0x84,0x7b,0x00,0xde,0x52,0x52,0x52,0x5a,0xd4,0x10,0x10,0x10 -+// 25526 掶 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x11,0x11,0x12,0x12,0x54,0x29,0x20,0x10,0xff,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x10,0x28,0x24,0x47,0x82 -+// 25527 掷 ; -+,0x10,0x14,0x12,0x7d,0x13,0x15,0x19,0x37,0x51,0x11,0x11,0x12,0x12,0x14,0x50,0x20,0x00,0x5f,0x51,0x92,0xd2,0x14,0x14,0xd2,0x11,0x11,0x91,0x55,0x52,0x10,0x10,0x10 -+// 25528 掸 ; -+,0x09,0x08,0x08,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x08,0x08,0x0b,0x08,0x08,0x28,0x10,0x04,0x8c,0x50,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25529 掹 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0c,0x08,0x18,0x69,0x09,0x09,0x09,0x09,0x2b,0x10,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x50,0x20,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 25530 掺 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0b,0x0c,0x1b,0x6c,0x09,0x08,0x09,0x08,0x28,0x13,0x20,0x20,0x48,0xfc,0x24,0x40,0xff,0x88,0x27,0x42,0x90,0x64,0x88,0x30,0xc0,0x00 -+// 25531 掻 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0d,0x08,0x19,0x69,0x09,0x09,0x08,0x08,0x2b,0x10,0x00,0xfe,0x84,0x48,0x30,0x4c,0xa7,0x22,0xfc,0x24,0x24,0xfc,0x20,0x24,0xfe,0x02 -+// 25532 掼 ; -+,0x08,0x09,0x09,0x0b,0x7d,0x09,0x0c,0x19,0x69,0x09,0x09,0x09,0x08,0x08,0x2b,0x10,0x00,0xfc,0x24,0xff,0x24,0xfc,0x00,0xfc,0x24,0x24,0x24,0x64,0x50,0x8c,0x06,0x04 -+// 25533 掽 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0c,0x08,0x19,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x08,0x8c,0x48,0xff,0x48,0x48,0x48,0x49,0x4b,0xcc,0x48,0x48,0x48,0x48,0xff,0x00 -+// 25534 掾 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0c,0x1f,0x68,0x0b,0x08,0x09,0x0e,0x28,0x10,0x40,0x7c,0x84,0xf8,0x08,0xff,0x40,0xa6,0x38,0xd8,0x34,0x54,0x93,0x12,0x50,0x20 -+// 25535 掿 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x08,0x09,0x0c,0x18,0x68,0x09,0x0a,0x0c,0x08,0x28,0x10,0x88,0x88,0xff,0x88,0x88,0x20,0xff,0x40,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 25536 揀 ; -+,0x10,0x10,0x13,0x7c,0x10,0x11,0x15,0x19,0x31,0x50,0x10,0x10,0x11,0x16,0x50,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0xa6,0x6a,0xfe,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20 -+// 25537 揁 ; -+,0x08,0x08,0x08,0x7e,0x09,0x09,0x09,0x0d,0x19,0x69,0x09,0x09,0x08,0x08,0x28,0x11,0x20,0x20,0x3f,0x20,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00,0x84,0x83,0x01 -+// 25538 揂 ; -+,0x11,0x10,0x10,0x7b,0x10,0x13,0x16,0x1a,0x32,0x53,0x12,0x13,0x12,0x12,0x53,0x22,0x04,0xcc,0x50,0xff,0x50,0xfe,0x52,0x92,0x92,0x0e,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 25539 揃 ; -+,0x11,0x10,0x10,0x7b,0x10,0x13,0x12,0x1a,0x33,0x52,0x12,0x13,0x12,0x12,0x52,0x22,0x04,0x8c,0x90,0xff,0x00,0xe2,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0xaa,0x44 -+// 25540 揄 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0d,0x09,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x20,0x20,0x50,0x8c,0xff,0x02,0xe2,0x2a,0xea,0x2a,0xea,0x2a,0x2a,0x22,0x66,0x22 -+// 25541 揅 ; -+,0x00,0x7f,0x08,0x1e,0x32,0x52,0x1e,0x00,0x0f,0x00,0x0f,0x00,0x3f,0x00,0x01,0x00,0x00,0x7f,0x24,0xff,0x24,0x44,0x44,0xbc,0xc0,0x40,0xfc,0x40,0xff,0x40,0x40,0x80 -+// 25542 揆 ; -+,0x08,0x09,0x0a,0x7d,0x08,0x09,0x0d,0x1a,0x68,0x0b,0x08,0x08,0x08,0x08,0x28,0x11,0x00,0xef,0x42,0x54,0x88,0x04,0xfb,0x20,0x20,0xff,0x20,0x30,0x48,0x44,0x86,0x02 -+// 25543 揇 ; -+,0x10,0x10,0x11,0x10,0x7c,0x11,0x15,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x10,0x10,0xff,0x20,0x40,0xff,0x49,0x31,0xfd,0x11,0xfd,0x11,0x11,0x11,0x15,0x02 -+// 25544 揈 ; -+,0x10,0x10,0x10,0x7d,0x12,0x11,0x14,0x18,0x30,0x50,0x10,0x10,0x10,0x10,0x50,0x20,0x80,0x80,0xff,0x41,0x21,0xfd,0x01,0xf9,0x01,0xf9,0x01,0xf9,0x89,0xf9,0x05,0x02 -+// 25545 揉 ; -+,0x00,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x08,0x19,0x68,0x08,0x08,0x08,0x2b,0x10,0x00,0xfe,0x04,0x18,0xff,0x32,0x50,0x90,0x30,0xff,0x30,0x58,0x54,0x97,0x12,0x10 -+// 25546 揊 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 25547 揋 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x15,0x18,0x37,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xff,0x40,0x24,0x28,0x10,0x48,0x87,0x02 -+// 25548 揌 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0c,0x08,0x18,0x68,0x09,0x09,0x0b,0x08,0x28,0x10,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0x20,0x12,0x51,0x45,0x44,0x3c,0x00 -+// 25549 揍 ; -+,0x10,0x11,0x10,0x7d,0x10,0x13,0x14,0x18,0x31,0x56,0x10,0x13,0x10,0x10,0x50,0x23,0x20,0xfe,0x20,0xfe,0x20,0xff,0x50,0x88,0xfc,0x23,0x20,0xfe,0x20,0x58,0x87,0x02 -+// 25550 揎 ; -+,0x08,0x08,0x09,0x09,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x20,0x10,0xff,0x02,0x00,0xfc,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0x00,0xff,0x00 -+// 25551 描 ; -+,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x09,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x44,0x44,0x44,0xff,0x44,0x44,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01,0x00 -+// 25552 提 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0c,0x1b,0x28,0x49,0x09,0x09,0x0b,0x0a,0x2c,0x10,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x20,0x20,0x3e,0x20,0x20,0xe0,0x3f,0x00 -+// 25553 揑 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x15,0x19,0x30,0x50,0x11,0x10,0x10,0x10,0x53,0x20,0x20,0xde,0x02,0x02,0xde,0x02,0x02,0xfe,0x00,0x00,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 25554 插 ; -+,0x08,0x09,0x08,0x7e,0x09,0x08,0x0a,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x0e,0xf0,0x10,0x10,0xff,0x10,0x50,0x97,0x11,0x11,0xd7,0x11,0x11,0xff,0x01,0x00 -+// 25555 揓 ; -+,0x10,0x14,0x12,0x12,0x7f,0x12,0x12,0x1b,0x32,0x52,0x12,0x12,0x14,0x14,0x5a,0x21,0x10,0x10,0x10,0x3f,0xa0,0x4a,0x2e,0xfa,0xaa,0xaa,0xaa,0xae,0xaa,0xa1,0x9f,0x00 -+// 25556 揔 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x0a,0x0c,0x18,0x68,0x08,0x0a,0x0a,0x0e,0x28,0x10,0x40,0x40,0xfe,0xaa,0xaa,0x6a,0x3a,0x4e,0x92,0x06,0x20,0x92,0x81,0x85,0x7c,0x00 -+// 25557 揕 ; -+,0x08,0x08,0x08,0x0b,0x08,0x7e,0x08,0x0c,0x08,0x18,0x6b,0x09,0x09,0x09,0x29,0x10,0x00,0x88,0x88,0xfe,0x88,0xf8,0x88,0xf8,0x88,0x88,0xff,0x50,0x4c,0x84,0xfe,0x00 -+// 25558 揖 ; -+,0x10,0x10,0x10,0x7c,0x10,0x11,0x14,0x18,0x30,0x50,0x10,0x10,0x13,0x10,0x50,0x20,0x00,0xfc,0x84,0xfc,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04,0x04 -+// 25559 揗 ; -+,0x10,0x11,0x11,0x7d,0x11,0x11,0x15,0x19,0x31,0x51,0x11,0x12,0x12,0x12,0x54,0x20,0x0e,0xf0,0x10,0x10,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 25560 揘 ; -+,0x08,0x08,0x09,0x7d,0x09,0x09,0x0b,0x0c,0x19,0x68,0x08,0x09,0x08,0x08,0x2b,0x10,0x20,0x40,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 25561 揙 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x12,0x12,0x12,0x14,0x50,0x20,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xff,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0x85,0x82 -+// 25562 揚 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0d,0x08,0x18,0x69,0x0a,0x08,0x0b,0x08,0x2b,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x4a,0x4a,0x92,0x22,0xc2,0x0a,0x04 -+// 25563 換 ; -+,0x08,0x08,0x08,0x7f,0x09,0x09,0x0d,0x19,0x69,0x08,0x0b,0x08,0x08,0x08,0x28,0x13,0x40,0x7c,0x88,0x10,0xfe,0x52,0x4a,0x86,0x22,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 25564 揜 ; -+,0x10,0x10,0x10,0x7d,0x12,0x15,0x19,0x31,0x50,0x10,0x17,0x10,0x11,0x11,0x52,0x20,0x20,0x50,0x88,0xff,0x02,0xfc,0x04,0xfc,0x88,0x88,0xff,0x88,0x08,0x08,0x08,0x08 -+// 25565 揝 ; -+,0x10,0x10,0x10,0x7d,0x13,0x10,0x14,0x18,0x33,0x50,0x10,0x10,0x10,0x10,0x50,0x20,0x88,0x88,0xec,0x2a,0x29,0xc8,0x68,0x9f,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 25566 揞 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0d,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xfe,0x84,0x44,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 25567 揟 ; -+,0x10,0x11,0x10,0x10,0x7c,0x10,0x15,0x1a,0x30,0x50,0x10,0x10,0x10,0x10,0x50,0x20,0x00,0xff,0x12,0x90,0x9e,0xd0,0x3f,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84 -+// 25568 揠 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x10,0x00,0xff,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x20,0xff,0x48,0x30,0x2e,0xc4,0xff,0x00 -+// 25569 握 ; -+,0x10,0x11,0x11,0x7d,0x11,0x11,0x15,0x19,0x31,0x51,0x11,0x11,0x12,0x12,0x55,0x20,0x00,0xfe,0x02,0xfe,0x00,0xff,0x20,0x44,0xfe,0x12,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 25570 揢 ; -+,0x08,0x09,0x09,0x7e,0x08,0x08,0x0d,0x08,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0xff,0x02,0x40,0x7e,0x84,0x48,0x30,0xcf,0x02,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 25571 揣 ; -+,0x08,0x09,0x09,0x09,0x7d,0x08,0x0d,0x08,0x18,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x10,0x11,0x11,0x11,0xff,0x00,0xff,0x20,0x40,0xff,0x29,0x29,0x29,0x29,0x2b,0x01 -+// 25572 揤 ; -+,0x10,0x13,0x12,0x7e,0x13,0x12,0x16,0x1b,0x32,0x52,0x12,0x12,0x13,0x12,0x50,0x20,0x00,0xef,0x29,0x29,0xe9,0x29,0x29,0xe9,0x09,0x89,0x4d,0xaa,0x28,0x08,0x08,0x08 -+// 25573 揥 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0b,0x0e,0x18,0x69,0x09,0x09,0x09,0x09,0x09,0x28,0x10,0x20,0x10,0xff,0x84,0x48,0xff,0x22,0x20,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 25574 揦 ; -+,0x08,0x08,0x09,0x3e,0x08,0x09,0x09,0x0d,0x09,0x18,0x69,0x09,0x0a,0x08,0x28,0x10,0x41,0x41,0xf1,0x45,0x45,0xf5,0x55,0x55,0xf5,0xc5,0x65,0x51,0x41,0x41,0x45,0x42 -+// 25575 揧 ; -+,0x02,0x1f,0x02,0x1f,0x12,0x1f,0x07,0x0a,0x37,0x00,0x0f,0x00,0x3f,0x00,0x00,0x00,0x02,0xc2,0x12,0xd2,0x52,0xd2,0x06,0x82,0xf8,0x40,0xfc,0x40,0xff,0x40,0x40,0xc0 -+// 25576 揨 ; -+,0x10,0x10,0x13,0x7c,0x10,0x10,0x14,0x18,0x33,0x52,0x10,0x10,0x10,0x10,0x50,0x20,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x02,0xfc,0x10,0x10,0x10,0x50,0x20 -+// 25577 揩 ; -+,0x11,0x11,0x11,0x11,0x7d,0x11,0x15,0x18,0x31,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x10,0x10,0x13,0xdc,0x10,0x51,0x8f,0x20,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 25578 揪 ; -+,0x10,0x13,0x10,0x10,0x7c,0x17,0x11,0x19,0x32,0x52,0x14,0x18,0x10,0x10,0x50,0x20,0x68,0x88,0x88,0x88,0x8a,0xeb,0xac,0xd8,0xa8,0x8c,0x94,0x94,0xa6,0xa3,0xc2,0x80 -+// 25579 揫 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x64,0x04,0x0f,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x10,0x10,0x56,0x34,0x18,0x24,0xc7,0x74,0x80,0x80,0xf8,0x80,0xfe,0x80,0x80,0x00 -+// 25580 揬 ; -+,0x08,0x08,0x09,0x09,0x7e,0x08,0x0a,0x0c,0x18,0x6b,0x08,0x08,0x08,0x08,0x2b,0x10,0x20,0x10,0xff,0x02,0x48,0x44,0xa2,0x28,0x24,0xff,0x20,0x50,0x48,0x87,0x02,0x00 -+// 25581 揭 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x19,0x6b,0x09,0x09,0x09,0x08,0x28,0x10,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xff,0x11,0x11,0x29,0xc5,0xff,0x01,0x05,0x02 -+// 25582 揮 ; -+,0x09,0x09,0x08,0x09,0x7e,0x09,0x0b,0x0d,0x19,0x69,0x08,0x0b,0x08,0x08,0x28,0x10,0xff,0x22,0x20,0xfe,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25583 揯 ; -+,0x10,0x10,0x10,0x7c,0x12,0x12,0x12,0x18,0x30,0x50,0x10,0x10,0x10,0x10,0x50,0x20,0x80,0xbf,0x90,0x90,0xdf,0xb2,0x92,0xaa,0xa6,0xb6,0xcc,0x84,0x84,0xff,0x80,0x80 -+// 25584 揰 ; -+,0x08,0x09,0x08,0x7d,0x08,0x09,0x0d,0x09,0x19,0x69,0x08,0x09,0x08,0x08,0x2b,0x10,0x1f,0xf0,0x10,0xff,0x10,0xff,0x11,0xff,0x11,0xff,0x10,0xff,0x10,0x10,0xff,0x00 -+// 25585 揱 ; -+,0x24,0x15,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x0f,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x82,0x02,0x92,0x92,0x92,0x82,0x8a,0x84,0xf0,0x80,0xfc,0x80,0xff,0x80,0x80,0x00 -+// 25586 揲 ; -+,0x11,0x11,0x13,0x7d,0x11,0x11,0x15,0x18,0x30,0x53,0x10,0x10,0x11,0x16,0x50,0x20,0x48,0x48,0xff,0x48,0x78,0x00,0xfe,0x20,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 25587 揳 ; -+,0x08,0x08,0x0b,0x08,0x7d,0x08,0x0d,0x08,0x18,0x68,0x0b,0x08,0x08,0x08,0x28,0x13,0x80,0x9f,0xe9,0x89,0xe9,0x89,0xf1,0x95,0xa2,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 25588 援 ; -+,0x08,0x0b,0x09,0x7e,0x08,0x0a,0x0c,0x0b,0x18,0x68,0x08,0x09,0x0a,0x0c,0x28,0x13,0x1e,0xe0,0x46,0xa8,0xfe,0x40,0x40,0xff,0x40,0xfc,0x88,0x50,0x30,0x48,0x87,0x02 -+// 25589 揵 ; -+,0x08,0x0b,0x08,0x7e,0x08,0x09,0x0d,0x08,0x18,0x68,0x0a,0x09,0x09,0x0a,0x2c,0x10,0x10,0xfe,0x92,0xff,0x92,0x7e,0x90,0x90,0xfe,0x90,0xff,0x10,0x90,0x70,0x1f,0x00 -+// 25590 揶 ; -+,0x10,0x17,0x12,0x7e,0x13,0x12,0x16,0x1a,0x33,0x52,0x12,0x13,0x16,0x10,0x50,0x20,0x00,0xff,0x52,0x52,0xd4,0x54,0x58,0x54,0xd2,0x51,0x51,0xd9,0x56,0x50,0x50,0x50 -+// 25591 揷 ; -+,0x08,0x09,0x08,0x7d,0x08,0x08,0x0b,0x0d,0x19,0x69,0x09,0x09,0x09,0x08,0x28,0x10,0x1e,0xf0,0x10,0xff,0x10,0x50,0x97,0x11,0x11,0xd7,0x11,0x11,0xff,0x10,0x10,0x10 -+// 25592 揸 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x08,0x0d,0x0a,0x19,0x69,0x09,0x09,0x09,0x08,0x2b,0x10,0x20,0x20,0xff,0x70,0xe8,0xa4,0x23,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00 -+// 25593 揹 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x0b,0x0a,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x50,0x52,0xdc,0x51,0xd1,0x4f,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 25594 揺 ; -+,0x08,0x08,0x09,0x7e,0x09,0x08,0x0e,0x19,0x68,0x0b,0x08,0x09,0x09,0x09,0x29,0x10,0x04,0x1e,0xe0,0x22,0x12,0x94,0xff,0x10,0x10,0xff,0x10,0x11,0x11,0x11,0xff,0x00 -+// 25595 揻 ; -+,0x10,0x10,0x10,0x7b,0x12,0x12,0x16,0x1b,0x32,0x52,0x12,0x12,0x14,0x15,0x58,0x20,0x08,0x0a,0x09,0xff,0x08,0x4a,0x4b,0xfa,0x4a,0xa4,0xa5,0x45,0xab,0x33,0x41,0x00 -+// 25596 揼 ; -+,0x08,0x0b,0x08,0x08,0x7d,0x0a,0x0a,0x0c,0x18,0x69,0x08,0x08,0x09,0x0e,0x28,0x10,0x00,0xff,0x80,0xfc,0x84,0xfc,0x84,0x10,0x12,0xd2,0x54,0x98,0x14,0x17,0x52,0x20 -+// 25597 揽 ; -+,0x10,0x11,0x11,0x7d,0x11,0x10,0x15,0x19,0x31,0x51,0x11,0x11,0x10,0x10,0x53,0x20,0x48,0x48,0x5f,0x58,0x64,0x42,0xfc,0x04,0x24,0x24,0x24,0x54,0x51,0x91,0x0f,0x00 -+// 25598 揾 ; -+,0x08,0x09,0x09,0x7d,0x09,0x09,0x0d,0x08,0x18,0x6b,0x0a,0x0a,0x0a,0x0a,0x2f,0x10,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00,0x00,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 25599 揿 ; -+,0x11,0x11,0x11,0x7d,0x12,0x14,0x13,0x19,0x37,0x51,0x11,0x11,0x11,0x51,0x20,0x00,0x08,0x0c,0x08,0xdf,0x11,0x22,0xc8,0x08,0xe8,0x08,0x08,0x54,0x94,0x23,0x42,0x00 -+// 25600 搀 ; -+,0x08,0x08,0x09,0x7f,0x09,0x09,0x09,0x0c,0x18,0x69,0x0e,0x08,0x08,0x08,0x28,0x10,0x80,0xf8,0x10,0xfc,0x24,0x24,0xfc,0x51,0x51,0x8f,0x20,0x18,0xc8,0x30,0x18,0x08 -+// 25601 搁 ; -+,0x11,0x10,0x12,0x12,0x7e,0x12,0x17,0x1a,0x32,0x53,0x12,0x12,0x12,0x12,0x52,0x22,0x00,0xbf,0x01,0x41,0x7d,0xc5,0x29,0x39,0x47,0xfd,0x45,0x45,0x7d,0x01,0x05,0x02 -+// 25602 搂 ; -+,0x08,0x09,0x08,0x08,0x7d,0x08,0x0a,0x0d,0x18,0x6b,0x08,0x09,0x08,0x08,0x28,0x13,0x20,0x26,0xa4,0x68,0xff,0x68,0xa4,0x63,0x40,0xff,0x84,0x88,0x70,0x2c,0xc6,0x02 -+// 25603 搃 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x09,0x09,0x0a,0x28,0x10,0x00,0x46,0x24,0x28,0xfe,0x82,0x82,0xfe,0x00,0x20,0x50,0x52,0x45,0x45,0x3c,0x00 -+// 25604 搄 ; -+,0x11,0x11,0x11,0x7d,0x11,0x15,0x15,0x19,0x71,0x11,0x11,0x11,0x11,0x11,0x51,0x21,0x00,0x7f,0x00,0x3e,0xa2,0x62,0x22,0x3e,0x22,0x22,0x22,0x3e,0x00,0x00,0x7f,0x00 -+// 25605 搅 ; -+,0x08,0x08,0x08,0x7e,0x09,0x09,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x00,0x22,0x92,0x54,0xff,0x02,0xfc,0x84,0xa4,0xa4,0xb4,0x50,0x51,0x91,0x0f,0x00 -+// 25606 搆 ; -+,0x08,0x09,0x08,0x09,0x7e,0x0b,0x08,0x0d,0x19,0x69,0x09,0x0f,0x09,0x09,0x29,0x11,0x48,0xfe,0x48,0xfe,0x48,0xff,0x20,0xfc,0x24,0xfc,0x24,0xff,0x04,0x04,0x14,0x08 -+// 25607 搇 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0c,0x08,0x1b,0x68,0x08,0x08,0x09,0x0a,0x28,0x10,0x20,0x30,0x48,0xa4,0x13,0xfc,0x08,0x30,0xff,0x20,0x52,0xd4,0x48,0x47,0x62,0x40 -+// 25608 搈 ; -+,0x10,0x10,0x11,0x7d,0x10,0x10,0x14,0x19,0x30,0x50,0x13,0x10,0x10,0x10,0x50,0x20,0x20,0x10,0xff,0x02,0x48,0x44,0xa2,0x30,0x4c,0x87,0xfe,0x84,0x84,0x84,0xfc,0x84 -+// 25609 搉 ; -+,0x08,0x08,0x09,0x7d,0x08,0x0a,0x0d,0x0a,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0x10,0xff,0x22,0x50,0x88,0xff,0x88,0x88,0xfe,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 25610 搊 ; -+,0x10,0x10,0x11,0x7c,0x11,0x11,0x14,0x19,0x30,0x51,0x17,0x11,0x10,0x10,0x53,0x20,0x80,0xfe,0x02,0x22,0x2a,0xfa,0x42,0x84,0xfe,0x22,0x2a,0xfa,0x42,0x82,0x0a,0x04 -+// 25611 搋 ; -+,0x10,0x13,0x12,0x7e,0x12,0x12,0x16,0x1a,0x32,0x52,0x12,0x14,0x15,0x19,0x52,0x20,0x0f,0xf0,0x10,0x1e,0x10,0xff,0x92,0xfc,0x91,0x8f,0x80,0xbc,0x24,0x25,0x45,0x83 -+// 25612 搌 ; -+,0x08,0x09,0x09,0x7d,0x09,0x09,0x0d,0x09,0x19,0x69,0x09,0x0a,0x0a,0x0c,0x28,0x10,0x00,0xfe,0x02,0xfe,0x48,0x48,0xfe,0x48,0xff,0x62,0x54,0x48,0x44,0x57,0x62,0x40 -+// 25613 損 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0d,0x09,0x19,0x69,0x09,0x09,0x08,0x08,0x28,0x11,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x00,0x48,0x86,0x02 -+// 25614 搎 ; -+,0x10,0x13,0x10,0x10,0x7d,0x11,0x15,0x19,0x33,0x55,0x11,0x11,0x11,0x11,0x55,0x22,0x00,0xc7,0x58,0x88,0x12,0x3c,0x44,0x88,0x12,0x3f,0x09,0x2a,0x29,0x49,0x28,0x10 -+// 25615 搏 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x0b,0x0d,0x19,0x69,0x08,0x0b,0x08,0x08,0x08,0x28,0x10,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x04,0xff,0x84,0x44,0x04,0x14,0x08 -+// 25616 搐 ; -+,0x10,0x10,0x13,0x7c,0x10,0x11,0x14,0x19,0x30,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x40,0x20,0xff,0x30,0x4c,0xf0,0x44,0xfe,0x01,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 25617 搑 ; -+,0x08,0x08,0x0b,0x08,0x7d,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x0b,0x08,0x28,0x10,0x48,0x48,0xff,0x48,0xff,0x84,0x84,0xfc,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04,0x04 -+// 25618 搒 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0b,0x0e,0x08,0x1b,0x68,0x08,0x08,0x08,0x08,0x29,0x12,0x20,0x10,0xff,0x84,0x48,0xff,0x21,0x10,0xff,0x40,0x7c,0x44,0x84,0x84,0x14,0x08 -+// 25619 搓 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0d,0x18,0x68,0x09,0x0a,0x08,0x08,0x2b,0x10,0x84,0x44,0x48,0xff,0x10,0xfe,0x20,0xff,0x40,0x80,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 25620 搔 ; -+,0x08,0x0b,0x09,0x08,0x7e,0x08,0x0a,0x0d,0x1f,0x69,0x09,0x09,0x08,0x08,0x2b,0x10,0x00,0xfe,0x24,0x98,0x50,0x30,0x6c,0xa7,0xfe,0x24,0x24,0xfc,0x20,0x22,0xff,0x01 -+// 25621 搕 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x2b,0x10,0x10,0x10,0xfe,0x10,0xff,0x20,0x44,0xfe,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 25622 搖 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0d,0x18,0x69,0x0a,0x0b,0x08,0x09,0x09,0x29,0x11,0x40,0x7f,0xa2,0x94,0x48,0x30,0xc0,0xfe,0x10,0x10,0xff,0x10,0x11,0x11,0xff,0x01 -+// 25623 搗 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x09,0x0d,0x19,0x69,0x08,0x0a,0x0b,0x08,0x28,0x10,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xff,0x41,0x49,0xf9,0x01,0x05,0x02 -+// 25624 搘 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x22,0xfc,0x28,0xff,0x60,0x98,0xe0,0x82,0x7e,0x00,0xfe,0x82,0xfe,0x82,0xfe -+// 25625 搙 ; -+,0x09,0x09,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x09,0x19,0x6a,0x0a,0x0a,0x0c,0x28,0x10,0xff,0x00,0xfe,0x00,0xff,0x62,0x54,0x48,0x67,0x44,0xff,0x44,0x24,0x04,0x14,0x08 -+// 25626 搚 ; -+,0x10,0x11,0x10,0x7d,0x13,0x11,0x16,0x1d,0x30,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x40,0xfc,0x84,0x08,0xde,0x4a,0x52,0x5a,0xa4,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 25627 搛 ; -+,0x09,0x08,0x08,0x7f,0x08,0x0b,0x08,0x0f,0x18,0x6b,0x09,0x0a,0x0a,0x0c,0x28,0x10,0x0c,0x88,0x50,0xff,0x90,0xfc,0x94,0xff,0x94,0xfc,0x98,0x94,0x94,0x93,0x92,0x90 -+// 25628 搜 ; -+,0x08,0x08,0x09,0x7f,0x09,0x0b,0x0d,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x13,0x10,0x50,0x97,0x11,0xd7,0x11,0xff,0x10,0xfe,0x42,0x44,0x28,0x10,0x2c,0xc7,0x02 -+// 25629 搝 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x0b,0x0d,0x18,0x68,0x0b,0x08,0x08,0x08,0x28,0x13,0x20,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x28,0x24,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 25630 搞 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0c,0x18,0x69,0x09,0x09,0x09,0x09,0x09,0x29,0x11,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 25631 搟 ; -+,0x10,0x10,0x13,0x10,0x7b,0x12,0x17,0x1a,0x33,0x50,0x17,0x10,0x10,0x10,0x50,0x20,0x80,0x9f,0xe4,0x84,0xe4,0xa4,0xe4,0xbf,0xe4,0x84,0xf4,0x84,0x84,0x84,0x84,0x84 -+// 25632 搠 ; -+,0x10,0x12,0x11,0x7b,0x10,0x14,0x1a,0x32,0x53,0x10,0x10,0x11,0x11,0x12,0x54,0x20,0x00,0x2f,0x49,0xe9,0x8f,0x89,0xa9,0xa9,0xef,0x89,0x89,0x11,0x11,0x21,0x25,0x42 -+// 25633 搡 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0e,0x09,0x1a,0x6b,0x08,0x08,0x08,0x0b,0x28,0x10,0xf8,0x48,0x30,0x58,0x84,0xdf,0x4a,0xa4,0x6a,0xff,0x20,0x70,0xac,0x27,0x22,0x20 -+// 25634 搢 ; -+,0x08,0x09,0x08,0x08,0x7e,0x09,0x08,0x0d,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xff,0x44,0x44,0xaa,0xef,0x00,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 25635 搣 ; -+,0x10,0x10,0x10,0x7b,0x12,0x13,0x12,0x1a,0x33,0x52,0x12,0x14,0x15,0x1a,0x50,0x20,0x14,0x12,0x10,0xff,0x10,0xf2,0x4b,0x5a,0x64,0xc4,0x45,0xad,0x13,0x23,0x41,0x00 -+// 25636 搤 ; -+,0x11,0x10,0x10,0x7b,0x10,0x10,0x19,0x12,0x31,0x51,0x11,0x11,0x11,0x11,0x57,0x20,0x08,0x8c,0x88,0xff,0x90,0x88,0x06,0x02,0xfc,0x54,0x54,0x54,0x54,0x54,0xff,0x00 -+// 25637 搥 ; -+,0x10,0x10,0x12,0x11,0x7d,0x10,0x14,0x1b,0x31,0x51,0x11,0x11,0x11,0x52,0x34,0x00,0x00,0x08,0x10,0x7e,0x42,0x42,0x7e,0x40,0x7e,0x42,0x42,0x7e,0x00,0x80,0x7f,0x00 -+// 25638 搦 ; -+,0x08,0x0b,0x08,0x7e,0x09,0x09,0x0d,0x19,0x68,0x0a,0x09,0x09,0x0a,0x08,0x29,0x10,0x00,0xde,0x42,0x42,0xde,0x10,0x10,0xdf,0x41,0x49,0xc5,0x49,0x51,0x41,0x45,0x82 -+// 25639 搧 ; -+,0x08,0x08,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x20,0x10,0xff,0x01,0xff,0x00,0x77,0x11,0x11,0x55,0x33,0x55,0x99,0x11,0x55,0x22 -+// 25640 搨 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0c,0x0b,0x18,0x69,0x08,0x09,0x0a,0x08,0x29,0x10,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xdf,0x41,0x4b,0xc5,0x49,0x51,0x41,0x45,0x82 -+// 25641 搩 ; -+,0x11,0x11,0x11,0x7a,0x15,0x10,0x14,0x19,0x32,0x53,0x10,0x10,0x10,0x11,0x52,0x20,0x04,0x04,0xff,0x44,0x54,0x9f,0x84,0x04,0x24,0xff,0x60,0xb0,0xac,0x27,0x22,0x20 -+// 25642 搪 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x0d,0x09,0x19,0x69,0x09,0x0a,0x0a,0x0c,0x28,0x10,0x20,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 25643 搫 ; -+,0x08,0x1f,0x15,0x7f,0x11,0x25,0x21,0x43,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x78,0x48,0x48,0x87,0x78,0x28,0x30,0xce,0xf8,0x80,0xf8,0x80,0xff,0x80,0x80,0x00 -+// 25644 搬 ; -+,0x10,0x11,0x13,0x7e,0x13,0x16,0x1a,0x37,0x52,0x13,0x12,0x12,0x14,0x14,0x59,0x20,0x80,0x1e,0xd2,0x52,0x52,0xd3,0x60,0xff,0x51,0x4a,0xca,0x44,0x4c,0x53,0x62,0x80 -+// 25645 搭 ; -+,0x10,0x10,0x13,0x7c,0x10,0x10,0x14,0x18,0x71,0x16,0x11,0x11,0x11,0x11,0x51,0x21,0x88,0x88,0xff,0x88,0xa8,0x20,0x50,0x88,0xf7,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 25646 搮 ; -+,0x10,0x13,0x10,0x7d,0x11,0x11,0x15,0x18,0x30,0x53,0x10,0x10,0x11,0x16,0x50,0x20,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x20,0x20,0xff,0x70,0xa8,0x27,0x22,0x20,0x20 -+// 25647 搯 ; -+,0x08,0x08,0x09,0x09,0x7e,0x08,0x0a,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0x0e,0xf0,0x22,0x94,0x88,0x20,0xce,0x02,0x02,0xee,0x02,0x02,0x02,0xfe,0x02 -+// 25648 搰 ; -+,0x08,0x08,0x08,0x3e,0x08,0x09,0x0d,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xfc,0x84,0xf4,0x94,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 25649 搱 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0d,0x19,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x28,0x10,0x00,0xfe,0x02,0xfe,0x20,0x10,0xfe,0x44,0x28,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 25650 搲 ; -+,0x10,0x10,0x11,0x7d,0x10,0x11,0x14,0x19,0x31,0x51,0x11,0x11,0x12,0x12,0x54,0x20,0x20,0x10,0xff,0x4a,0x84,0x02,0x1e,0xe4,0x24,0x24,0x24,0x24,0x2a,0x3b,0x2a,0x00 -+// 25651 搳 ; -+,0x08,0x08,0x09,0x7d,0x08,0x08,0x0a,0x0c,0x18,0x69,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xff,0x02,0x10,0xfe,0x10,0xfe,0x10,0xff,0x10,0xfe,0x82,0x82,0xfe,0x82 -+// 25652 搴 ; -+,0x00,0x3f,0x22,0x0f,0x02,0x0f,0x02,0x3f,0x04,0x1b,0x60,0x0f,0x00,0x1f,0x00,0x01,0x80,0xff,0x22,0xfc,0x20,0xfc,0x20,0xff,0x10,0xef,0x80,0xf8,0x80,0xfe,0x80,0x80 -+// 25653 搵 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x0b,0x0c,0x1b,0x6a,0x0a,0x0a,0x0a,0x0a,0x2f,0x10,0x00,0xfc,0x24,0x24,0x54,0x8c,0xfc,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 25654 搶 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0f,0x09,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x20,0x30,0x48,0xa4,0xff,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 25655 搷 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x0b,0x08,0x28,0x11,0x10,0x10,0xff,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xff,0x44,0x83,0x01 -+// 25656 搸 ; -+,0x08,0x08,0x09,0x7e,0x09,0x0a,0x0f,0x18,0x69,0x0e,0x09,0x08,0x08,0x0b,0x2c,0x10,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x84,0x7a,0x21,0xfe,0x70,0xa8,0x27,0x22,0x20 -+// 25657 搹 ; -+,0x08,0x09,0x08,0x7e,0x08,0x0a,0x0c,0x09,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x00,0xff,0x00,0xfe,0x82,0xfe,0x00,0xff,0x85,0x49,0xff,0x11,0x11,0x11,0x05,0x02 -+// 25658 携 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x09,0x0d,0x09,0x18,0x69,0x08,0x08,0x08,0x29,0x1a,0xa0,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfe,0x44,0x8f,0x81,0x09,0x06 -+// 25659 搻 ; -+,0x00,0x00,0x01,0x03,0x0c,0x33,0x02,0x03,0x1f,0x04,0x3f,0x04,0x7f,0x04,0x14,0x08,0x80,0xc0,0x20,0xf8,0x07,0xf2,0x10,0xf0,0x3e,0x08,0x3e,0x08,0x7f,0x08,0x28,0x10 -+// 25660 搼 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x0a,0x0c,0x19,0x6e,0x08,0x09,0x08,0x08,0x28,0x10,0x20,0xa4,0x68,0xfe,0x40,0xff,0x48,0xf4,0x27,0xfa,0x20,0xfe,0x20,0x20,0xa0,0x40 -+// 25661 搽 ; -+,0x10,0x10,0x13,0x7c,0x10,0x10,0x14,0x19,0x36,0x51,0x10,0x11,0x11,0x12,0x50,0x20,0x88,0x88,0xff,0x88,0x20,0x50,0x88,0x24,0x23,0xfc,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 25662 搾 ; -+,0x08,0x08,0x09,0x7d,0x08,0x09,0x0c,0x08,0x18,0x69,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xff,0x4a,0x84,0x22,0x20,0x7f,0xa0,0x3e,0x20,0x3e,0x20,0x20,0x20,0x20 -+// 25663 搿 ; -+,0x00,0x7c,0x10,0x11,0x7d,0x13,0x14,0x10,0x7d,0x11,0x11,0x11,0x11,0x20,0x20,0x40,0x80,0x9f,0x84,0x44,0x3f,0xe4,0x04,0x04,0xff,0x24,0x24,0x24,0xe4,0x04,0x14,0x08 -+// 25664 摀 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x0d,0x19,0x68,0x0a,0x0a,0x0e,0x28,0x10,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xff,0x01,0xa9,0x55,0x55,0x01,0x06 -+// 25665 摁 ; -+,0x08,0x09,0x09,0x09,0x7d,0x09,0x0d,0x09,0x19,0x68,0x08,0x0a,0x0a,0x0e,0x28,0x10,0x00,0xfe,0x22,0x22,0xfe,0x22,0x5a,0x8a,0xfe,0x00,0x20,0x92,0x91,0x85,0x7c,0x00 -+// 25666 摂 ; -+,0x09,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x2b,0x11,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xff,0x08,0x02,0xc6,0x48,0x00,0x28,0xc6,0x83,0x02 -+// 25667 摃 ; -+,0x09,0x08,0x08,0x0b,0x7e,0x09,0x0d,0x09,0x19,0x69,0x09,0x09,0x08,0x08,0x28,0x11,0xfe,0x20,0x20,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x00,0x88,0x86,0x02 -+// 25668 摄 ; -+,0x13,0x10,0x10,0x7c,0x10,0x14,0x1b,0x30,0x57,0x12,0x11,0x10,0x11,0x12,0x54,0x20,0xfe,0x88,0xf8,0x88,0xf8,0x8e,0xf8,0x08,0xdf,0x51,0x8a,0x84,0x4c,0x33,0xc2,0x00 -+// 25669 摅 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x0b,0x0d,0x19,0x69,0x09,0x0a,0x0a,0x0d,0x28,0x10,0x20,0x3e,0x20,0xff,0x22,0x20,0xfc,0x22,0x1e,0x00,0x20,0x92,0xd1,0x45,0x44,0x3c -+// 25670 摆 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0a,0x0d,0x18,0x68,0x0b,0x08,0x08,0x09,0x2b,0x10,0x00,0xfe,0x4a,0x4a,0x4a,0xfe,0x20,0xfe,0x20,0x20,0xff,0x40,0x84,0x02,0xff,0x02 -+// 25671 摇 ; -+,0x08,0x09,0x08,0x09,0x7e,0x08,0x0a,0x0d,0x08,0x1b,0x68,0x09,0x09,0x09,0x29,0x11,0x0e,0xf0,0x40,0x22,0xa4,0x88,0xfe,0x10,0x10,0xff,0x10,0x11,0x11,0x11,0xff,0x01 -+// 25672 摈 ; -+,0x08,0x08,0x09,0x7f,0x09,0x0a,0x0c,0x18,0x68,0x08,0x0b,0x08,0x08,0x09,0x2a,0x10,0x20,0x10,0xff,0x01,0x1c,0xe0,0x80,0xfe,0x88,0x88,0xff,0x88,0x84,0x06,0x02,0x00 -+// 25673 摉 ; -+,0x08,0x08,0x09,0x7d,0x08,0x0a,0x0d,0x18,0x68,0x0b,0x08,0x0b,0x08,0x08,0x2b,0x10,0x20,0x10,0xff,0x02,0x48,0xa6,0x30,0x4c,0xc3,0x7c,0xc4,0x28,0x10,0x60,0x80,0x00 -+// 25674 摊 ; -+,0x10,0x10,0x13,0x7c,0x12,0x12,0x15,0x19,0x32,0x52,0x14,0x18,0x10,0x10,0x50,0x20,0x28,0x34,0xa0,0xbf,0xe4,0xa4,0x3f,0x24,0xa4,0xbf,0xa4,0x24,0x24,0x3f,0x20,0x20 -+// 25675 摋 ; -+,0x10,0x14,0x12,0x7d,0x12,0x19,0x11,0x37,0x51,0x13,0x15,0x15,0x19,0x11,0x55,0x22,0x00,0x5e,0x92,0x92,0x52,0x23,0x00,0xdf,0x11,0x0a,0x7a,0x24,0x24,0x0a,0x13,0x22 -+// 25676 摌 ; -+,0x08,0x08,0x09,0x7e,0x08,0x09,0x0d,0x19,0x69,0x09,0x09,0x09,0x0a,0x0a,0x2d,0x10,0x20,0x10,0xff,0x84,0x48,0xff,0x10,0x50,0x7e,0x90,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 25677 摍 ; -+,0x08,0x08,0x09,0x7f,0x08,0x08,0x0a,0x0d,0x1a,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x10,0xff,0x42,0x40,0xbf,0x88,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2 -+// 25678 摎 ; -+,0x13,0x10,0x11,0x7c,0x11,0x10,0x14,0x18,0x31,0x56,0x11,0x10,0x11,0x50,0x37,0x00,0xde,0x42,0x4a,0xc6,0x4a,0x42,0x20,0x50,0xa8,0x47,0x90,0x64,0x98,0x60,0x80,0x00 -+// 25679 摏 ; -+,0x10,0x10,0x11,0x7e,0x11,0x14,0x1b,0x30,0x51,0x12,0x1d,0x11,0x11,0x11,0x51,0x21,0x20,0x20,0xfe,0x20,0xfe,0x40,0xff,0x88,0x04,0x43,0x9e,0x02,0xde,0x02,0xfe,0x02 -+// 25680 摐 ; -+,0x08,0x08,0x09,0x09,0x7e,0x08,0x0d,0x0b,0x1d,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0xa4,0xa4,0x24,0x24,0xda,0x89,0x11,0x08,0x08,0x2f,0x28,0x28,0x28,0x58,0x87,0x00 -+// 25681 摑 ; -+,0x10,0x13,0x12,0x7e,0x12,0x12,0x16,0x1a,0x32,0x52,0x12,0x13,0x12,0x13,0x52,0x20,0x00,0xff,0x15,0x13,0xfd,0x11,0xf5,0xb5,0xe9,0x09,0x5d,0xa5,0x01,0xff,0x01,0x00 -+// 25682 摒 ; -+,0x13,0x12,0x12,0x7f,0x12,0x12,0x16,0x1a,0x32,0x52,0x13,0x12,0x14,0x14,0x59,0x22,0xfe,0x02,0x02,0xfe,0x04,0x44,0x28,0xff,0x44,0x44,0xff,0x44,0x84,0x84,0x04,0x04 -+// 25683 摓 ; -+,0x10,0x10,0x10,0x7c,0x14,0x12,0x18,0x3e,0x52,0x12,0x12,0x12,0x12,0x13,0x54,0x20,0x40,0x7e,0x64,0x98,0x28,0xc7,0x10,0xfe,0x10,0x7c,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 25684 摔 ; -+,0x10,0x10,0x13,0x7c,0x12,0x11,0x15,0x1a,0x74,0x10,0x10,0x17,0x10,0x10,0x50,0x20,0x40,0x20,0xff,0x20,0x49,0x72,0x24,0x52,0xf9,0x28,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25685 摕 ; -+,0x11,0x11,0x13,0x7d,0x11,0x12,0x17,0x1a,0x30,0x51,0x11,0x11,0x11,0x11,0x50,0x20,0x54,0x54,0xff,0x54,0x73,0x00,0xff,0x22,0x20,0xfc,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 25686 摖 ; -+,0x10,0x10,0x11,0x7a,0x11,0x10,0x15,0x1a,0x35,0x50,0x11,0x11,0x12,0x10,0x50,0x20,0x80,0xef,0x22,0xb4,0x48,0x84,0x7b,0x00,0xfe,0x20,0x28,0x24,0x26,0x22,0xa0,0x40 -+// 25687 摗 ; -+,0x10,0x10,0x13,0x7c,0x13,0x12,0x16,0x1b,0x31,0x51,0x12,0x12,0x14,0x10,0x50,0x20,0x88,0x8c,0xe8,0x8f,0xe9,0xb1,0xa4,0xe4,0x84,0xc4,0xa4,0x9a,0x8a,0x91,0xa1,0x80 -+// 25688 摘 ; -+,0x08,0x08,0x09,0x7e,0x08,0x09,0x0d,0x09,0x19,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x20,0x10,0xff,0x44,0x28,0xff,0x11,0x11,0xff,0x11,0x7d,0x45,0x7d,0x01,0x05,0x02 -+// 25689 摙 ; -+,0x10,0x12,0x11,0x7d,0x10,0x14,0x18,0x13,0x31,0x51,0x11,0x11,0x11,0x11,0x52,0x20,0x10,0x10,0x7f,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x10,0x10,0x90,0x7f,0x00 -+// 25690 摚 ; -+,0x08,0x09,0x08,0x7e,0x09,0x09,0x08,0x0c,0x18,0x68,0x08,0x09,0x08,0x08,0x2b,0x10,0x20,0x26,0xa4,0x68,0xff,0x02,0xfc,0x84,0x84,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 25691 摛 ; -+,0x08,0x08,0x09,0x08,0x7c,0x08,0x08,0x0c,0x18,0x69,0x09,0x09,0x09,0x09,0x29,0x11,0x20,0x10,0xff,0x48,0xb2,0xca,0xfe,0x10,0x10,0xff,0x21,0x29,0x7d,0x05,0x01,0x07 -+// 25692 摜 ; -+,0x09,0x09,0x0b,0x09,0x09,0x7e,0x09,0x0d,0x09,0x19,0x69,0x09,0x09,0x08,0x28,0x11,0xfe,0x22,0xff,0x22,0xfe,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x48,0x86,0x02 -+// 25693 摝 ; -+,0x08,0x08,0x09,0x7f,0x09,0x09,0x0b,0x0d,0x19,0x69,0x09,0x09,0x0a,0x0a,0x2c,0x10,0x20,0x10,0xff,0x48,0x48,0xfe,0x4a,0xfe,0x00,0x88,0x8a,0xec,0x88,0xa9,0xc9,0x87 -+// 25694 摞 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x44,0xf8,0x22,0xff,0x11,0x94,0x93,0x51,0x20 -+// 25695 摟 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0c,0x09,0x19,0x69,0x08,0x0b,0x08,0x08,0x28,0x13,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x22,0xfe,0x20,0xff,0x48,0xd0,0x30,0xce -+// 25696 摠 ; -+,0x08,0x08,0x09,0x09,0x7d,0x09,0x09,0x0d,0x19,0x69,0x08,0x08,0x0a,0x0a,0x2c,0x10,0x20,0x40,0xfe,0x42,0x7a,0xd2,0x32,0x4a,0xfe,0x02,0x20,0x92,0x91,0x85,0x84,0x7c -+// 25697 摡 ; -+,0x10,0x13,0x12,0x7e,0x13,0x12,0x16,0x1b,0x32,0x52,0x12,0x13,0x12,0x10,0x50,0x20,0x00,0xde,0x48,0x48,0xc8,0x48,0x7f,0xc8,0x0c,0x8c,0xd4,0x55,0x25,0x45,0x83,0x00 -+// 25698 摢 ; -+,0x10,0x10,0x10,0x11,0x7d,0x11,0x11,0x15,0x19,0x31,0x51,0x11,0x12,0x12,0x54,0x30,0x20,0x3e,0x20,0xff,0x22,0xfc,0x22,0x3e,0x00,0x7c,0x52,0x34,0xff,0x10,0x50,0x20 -+// 25699 摣 ; -+,0x10,0x10,0x10,0x11,0x7d,0x11,0x15,0x19,0x31,0x51,0x11,0x12,0x12,0x14,0x58,0x21,0x20,0x3e,0x20,0xff,0x22,0xfc,0x21,0x1f,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0xff -+// 25700 摤 ; -+,0x10,0x10,0x10,0x13,0x78,0x12,0x11,0x12,0x18,0x32,0x51,0x12,0x10,0x10,0x50,0x33,0x20,0x20,0x20,0xff,0x20,0xaa,0x24,0xaa,0x20,0xaa,0x24,0xaa,0x50,0x4c,0x87,0x02 -+// 25701 摥 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x0a,0x0c,0x19,0x68,0x08,0x09,0x08,0x09,0x28,0x19,0x80,0xff,0x80,0x7e,0x52,0x4a,0x7e,0x00,0xff,0x40,0xff,0x25,0x49,0x91,0x65,0x82 -+// 25702 摦 ; -+,0x11,0x11,0x17,0x12,0x7a,0x14,0x1b,0x10,0x37,0x52,0x17,0x10,0x10,0x52,0x21,0x00,0x00,0x07,0xfc,0xaa,0x6a,0x2a,0xaa,0x2a,0xea,0x2a,0xaa,0xaa,0xa9,0xbd,0x44,0x00 -+// 25703 摧 ; -+,0x10,0x11,0x11,0x11,0x7c,0x10,0x15,0x1b,0x35,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x10,0x11,0x11,0xff,0xa0,0x90,0xff,0x10,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 25704 摨 ; -+,0x10,0x11,0x11,0x7d,0x11,0x11,0x15,0x19,0x31,0x51,0x12,0x13,0x12,0x14,0x58,0x20,0x00,0xff,0x01,0xff,0x52,0x3c,0x54,0x93,0x50,0x7e,0x90,0xff,0x10,0x10,0x10,0x10 -+// 25705 摩 ; -+,0x00,0x1f,0x12,0x1f,0x13,0x16,0x1a,0x12,0x17,0x10,0x17,0x10,0x2f,0x20,0x41,0x00,0x80,0xff,0x10,0xfe,0x18,0xb4,0x53,0x90,0xfc,0x40,0xfe,0x40,0xff,0x40,0x40,0x80 -+// 25706 摪 ; -+,0x10,0x10,0x12,0x12,0x7e,0x13,0x14,0x18,0x37,0x52,0x12,0x12,0x12,0x14,0x54,0x28,0x90,0x90,0x9f,0xa9,0xe6,0x94,0x8a,0x92,0xff,0x82,0x92,0x8a,0x82,0x82,0x8a,0x84 -+// 25707 摫 ; -+,0x11,0x11,0x11,0x7b,0x11,0x11,0x19,0x17,0x31,0x51,0x12,0x12,0x14,0x18,0x50,0x20,0x00,0x3e,0x22,0xfe,0x22,0x22,0x3e,0xe2,0x22,0x3e,0x94,0x54,0x65,0x25,0x45,0x83 -+// 25708 摬 ; -+,0x08,0x09,0x08,0x08,0x7d,0x08,0x0d,0x19,0x69,0x09,0x09,0x08,0x08,0x08,0x28,0x11,0x20,0xfe,0x84,0x48,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x48,0x48,0x89,0x89,0x07 -+// 25709 摭 ; -+,0x10,0x10,0x13,0x7e,0x12,0x12,0x13,0x1a,0x32,0x52,0x12,0x12,0x15,0x55,0x2b,0x00,0x20,0x10,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x78,0x00,0x00,0x52,0x29,0x29,0x00 -+// 25710 摮 ; -+,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x08,0x1f,0x62,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x01,0x20,0x20,0x3f,0x24,0x64,0x18,0x18,0x67,0x00,0xfc,0x80,0xfe,0x80,0xff,0x80,0x80 -+// 25711 摯 ; -+,0x04,0x1f,0x04,0x3f,0x09,0x1f,0x04,0x3f,0x04,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x01,0x10,0x90,0x10,0xbc,0x14,0x94,0x25,0xb5,0x43,0xf8,0x80,0xfc,0x80,0xff,0x80,0x80 -+// 25712 摰 ; -+,0x04,0x3f,0x04,0x7f,0x15,0x2e,0x44,0x1f,0x00,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x01,0x10,0x10,0x7c,0x94,0x14,0xb5,0x15,0x2b,0x41,0xf8,0x80,0xfe,0x80,0xff,0x80,0x80 -+// 25713 摱 ; -+,0x10,0x10,0x10,0x7c,0x10,0x14,0x1b,0x32,0x53,0x10,0x11,0x10,0x10,0x10,0x50,0x27,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x49,0xff,0x00,0xfe,0x84,0x48,0x30,0xcf,0x02 -+// 25714 摲 ; -+,0x10,0x10,0x13,0x10,0x7b,0x12,0x17,0x1a,0x33,0x50,0x10,0x17,0x10,0x10,0x50,0x20,0x80,0x81,0xee,0x88,0xe8,0xaf,0xea,0xaa,0xea,0x8a,0x8a,0xea,0x92,0x92,0xa2,0x82 -+// 25715 摳 ; -+,0x10,0x13,0x12,0x12,0x7e,0x12,0x16,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x53,0x20,0x00,0xff,0x00,0x7c,0x44,0x44,0x7c,0x00,0xee,0xaa,0xaa,0xaa,0xee,0x00,0xff,0x00 -+// 25716 摴 ; -+,0x11,0x10,0x13,0x12,0x7d,0x10,0x15,0x18,0x31,0x50,0x13,0x10,0x10,0x10,0x50,0x20,0xfe,0x20,0xff,0x21,0xac,0x20,0xac,0x00,0xfe,0x00,0xff,0x40,0x7c,0x04,0x14,0x08 -+// 25717 摵 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x16,0x1a,0x33,0x52,0x13,0x15,0x16,0x14,0x59,0x20,0x10,0x14,0x12,0xff,0x90,0x92,0xeb,0x8a,0xea,0x4a,0x64,0x55,0x4d,0x53,0x43,0x81 -+// 25718 摶 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x0b,0x0d,0x09,0x18,0x6b,0x08,0x0b,0x08,0x08,0x28,0x10,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x22,0xff,0x04,0xff,0x84,0x44,0x14,0x08 -+// 25719 摷 ; -+,0x08,0x08,0x09,0x08,0x7c,0x08,0x08,0x0c,0x18,0x68,0x08,0x09,0x08,0x08,0x2b,0x10,0x92,0x92,0x24,0x92,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x58,0x94,0x13,0x12 -+// 25720 摸 ; -+,0x08,0x08,0x0b,0x7c,0x09,0x09,0x0d,0x19,0x69,0x08,0x0b,0x08,0x08,0x08,0x28,0x13,0x88,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 25721 摹 ; -+,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x02,0x7f,0x04,0x0b,0x10,0x67,0x00,0x0f,0x00,0x03,0x10,0xff,0x10,0xf8,0x88,0xf8,0x00,0xff,0x10,0xec,0x83,0xf0,0x80,0xfc,0x80,0x80 -+// 25722 摺 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x0d,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x00,0xef,0x21,0xa5,0x63,0xa5,0x11,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 25723 摻 ; -+,0x10,0x10,0x10,0x7c,0x11,0x13,0x10,0x18,0x11,0x36,0x51,0x10,0x13,0x10,0x53,0x20,0x20,0x48,0xf8,0x84,0x4a,0xff,0x30,0x48,0xa4,0x47,0x92,0x60,0x88,0x30,0xc0,0x00 -+// 25724 摼 ; -+,0x10,0x13,0x12,0x13,0x7e,0x13,0x12,0x1a,0x33,0x50,0x10,0x11,0x10,0x10,0x57,0x20,0x00,0xe0,0x9f,0xf2,0x2a,0xe4,0x86,0x8b,0xf2,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 25725 摽 ; -+,0x09,0x08,0x08,0x7d,0x09,0x09,0x09,0x0c,0x18,0x68,0x09,0x08,0x09,0x09,0x2a,0x10,0xfe,0x50,0x50,0xfe,0x52,0x52,0xfe,0x00,0xfc,0x00,0xff,0x10,0x14,0x13,0x51,0x20 -+// 25726 摾 ; -+,0x10,0x13,0x10,0x7c,0x10,0x13,0x16,0x1a,0x32,0x53,0x10,0x10,0x10,0x10,0x52,0x21,0x00,0xbe,0xa2,0xa2,0xbe,0x88,0x3e,0x2a,0x2a,0xaa,0xbe,0x88,0x88,0x8a,0xbf,0x01 -+// 25727 摿 ; -+,0x08,0x08,0x08,0x08,0x7d,0x0a,0x08,0x0c,0x19,0x68,0x08,0x08,0x08,0x08,0x28,0x10,0x20,0x30,0x48,0xa4,0x13,0xfe,0x44,0x28,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 25728 撀 ; -+,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x25,0x3f,0x20,0x4f,0x00,0x1f,0x00,0x3f,0x00,0x01,0x3c,0xa4,0x27,0x40,0x3e,0x24,0x18,0x67,0x00,0xfc,0x80,0xfe,0x80,0xff,0x80,0x80 -+// 25729 撁 ; -+,0x08,0x09,0x08,0x7e,0x08,0x09,0x0d,0x08,0x18,0x68,0x09,0x0b,0x08,0x08,0x28,0x10,0x20,0xff,0x20,0x78,0x10,0xff,0x2a,0x7c,0x90,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 25730 撂 ; -+,0x09,0x09,0x09,0x7f,0x09,0x08,0x0c,0x08,0x19,0x68,0x08,0x0b,0x08,0x08,0x28,0x10,0xfe,0x22,0xfe,0x22,0xfe,0x40,0x7c,0xc8,0x30,0x28,0xc7,0xfc,0x84,0x84,0xfc,0x84 -+// 25731 撃 ; -+,0x04,0x3f,0x04,0x3f,0x25,0x3f,0x25,0x7f,0x04,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x01,0x00,0x3c,0x24,0x24,0x47,0x3c,0x28,0x98,0x26,0xf8,0x80,0xfc,0x80,0xfe,0x80,0x80 -+// 25732 撄 ; -+,0x10,0x13,0x12,0x12,0x7b,0x13,0x11,0x1a,0x34,0x50,0x17,0x10,0x10,0x10,0x50,0x23,0x00,0xdf,0x51,0x51,0x55,0x55,0x84,0x4a,0x11,0x20,0xff,0x48,0xd0,0x38,0xc7,0x02 -+// 25733 撅 ; -+,0x10,0x13,0x12,0x7f,0x12,0x13,0x1a,0x32,0x52,0x13,0x14,0x14,0x15,0x19,0x52,0x20,0x00,0xff,0x04,0x24,0xc7,0xe9,0x89,0xa4,0xa4,0xe4,0x84,0x86,0x0a,0x09,0x11,0x00 -+// 25734 撆 ; -+,0x24,0x15,0x0e,0x3f,0x24,0x2e,0x35,0x24,0x27,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x90,0x90,0x1f,0xa4,0xa4,0xd8,0x94,0xa3,0xf8,0x80,0xfc,0x80,0xff,0x80,0x80,0x00 -+// 25735 撇 ; -+,0x11,0x11,0x15,0x7b,0x17,0x15,0x1d,0x35,0x57,0x15,0x15,0x15,0x15,0x55,0x25,0x00,0x08,0x48,0x48,0x8f,0xe9,0x29,0x31,0x32,0xaa,0x6a,0x24,0x24,0x2a,0x33,0x62,0x00 -+// 25736 撈 ; -+,0x10,0x10,0x12,0x11,0x7c,0x11,0x12,0x1b,0x32,0x50,0x11,0x10,0x10,0x10,0x50,0x21,0x88,0x88,0xaa,0xdc,0xa8,0x14,0x22,0xff,0x22,0x20,0xfc,0x24,0x44,0x44,0x94,0x08 -+// 25737 撉 ; -+,0x04,0x7f,0x11,0x1f,0x00,0x3f,0x02,0x0f,0x35,0x07,0x00,0x1f,0x00,0x3f,0x00,0x01,0x20,0xa0,0x3f,0x24,0x44,0x28,0x10,0x6c,0x83,0xf0,0x80,0xfc,0x80,0xff,0x80,0x80 -+// 25738 撊 ; -+,0x13,0x12,0x13,0x7e,0x13,0x16,0x1a,0x12,0x32,0x52,0x12,0x12,0x12,0x13,0x52,0x22,0xde,0x52,0xde,0x52,0xde,0x02,0xfa,0x8a,0xfa,0x8a,0xfa,0x8a,0x8a,0x1a,0x02,0x06 -+// 25739 撋 ; -+,0x10,0x13,0x12,0x13,0x7e,0x13,0x16,0x1a,0x32,0x52,0x12,0x12,0x12,0x12,0x52,0x22,0x00,0xdf,0x51,0xdf,0x51,0xdf,0x01,0xfd,0x21,0xfd,0x21,0xfd,0x01,0x01,0x05,0x02 -+// 25740 撌 ; -+,0x10,0x11,0x11,0x7d,0x10,0x13,0x10,0x19,0x11,0x31,0x51,0x11,0x11,0x11,0x50,0x21,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04 -+// 25741 撍 ; -+,0x10,0x13,0x10,0x7a,0x13,0x11,0x19,0x12,0x34,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x00,0xdf,0x84,0x94,0xdf,0x84,0xcd,0xb7,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 25742 撎 ; -+,0x10,0x13,0x10,0x7d,0x10,0x13,0x1a,0x31,0x50,0x11,0x11,0x11,0x10,0x10,0x57,0x20,0x20,0xfe,0x20,0xfc,0x00,0xff,0x02,0xfc,0x00,0xfc,0x04,0xfc,0x88,0x50,0xff,0x00 -+// 25743 撏 ; -+,0x09,0x08,0x09,0x7e,0x09,0x08,0x0d,0x18,0x6b,0x08,0x0b,0x08,0x08,0x08,0x28,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x92,0xde,0x04,0xff,0x44,0x24,0x04,0x14,0x08 -+// 25744 撐 ; -+,0x08,0x08,0x09,0x7d,0x08,0x0a,0x0c,0x08,0x19,0x68,0x09,0x08,0x08,0x08,0x2b,0x10,0x92,0x54,0xff,0x01,0x7c,0x44,0x7c,0x00,0xff,0x88,0xff,0x28,0x48,0x88,0x28,0x10 -+// 25745 撑 ; -+,0x08,0x08,0x09,0x7d,0x08,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x09,0x08,0x28,0x10,0x92,0x54,0xff,0x01,0x7c,0x44,0x7c,0x00,0xfe,0x10,0xfe,0x10,0xff,0x10,0x50,0x20 -+// 25746 撒 ; -+,0x12,0x12,0x17,0x7a,0x12,0x17,0x10,0x1b,0x32,0x53,0x12,0x13,0x12,0x12,0x52,0x22,0x88,0x8c,0xe8,0x88,0x8f,0xfa,0x12,0xf2,0x4a,0xca,0x44,0xc4,0x4a,0x53,0xe2,0x40 -+// 25747 撓 ; -+,0x10,0x10,0x10,0x10,0x7d,0x11,0x17,0x19,0x31,0x56,0x13,0x10,0x10,0x11,0x52,0x20,0x20,0x20,0xf8,0x20,0xfc,0x08,0xde,0x08,0xbf,0x00,0xfe,0x90,0x91,0x11,0x0f,0x00 -+// 25748 撔 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x29,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x10,0x94,0x93,0x51,0x20 -+// 25749 撕 ; -+,0x12,0x12,0x17,0x7a,0x13,0x12,0x17,0x1a,0x32,0x57,0x10,0x12,0x12,0x14,0x50,0x20,0x40,0x43,0xfc,0x50,0xd0,0x5f,0xd2,0x52,0x52,0xf2,0x92,0x52,0x52,0x22,0x22,0x42 -+// 25750 撖 ; -+,0x10,0x13,0x10,0x10,0x7f,0x12,0x13,0x1a,0x32,0x53,0x12,0x12,0x13,0x16,0x50,0x20,0x08,0xcc,0x88,0x88,0xff,0x51,0xd1,0x72,0x52,0xca,0x4c,0x64,0xc4,0x4a,0x53,0x62 -+// 25751 撗 ; -+,0x08,0x08,0x09,0x08,0x7c,0x0b,0x08,0x0d,0x19,0x69,0x09,0x09,0x08,0x08,0x29,0x12,0x48,0x48,0xfe,0x48,0x48,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x00,0x88,0x06,0x02 -+// 25752 撘 ; -+,0x10,0x10,0x10,0x7d,0x12,0x10,0x14,0x18,0x31,0x56,0x10,0x10,0x10,0x10,0x50,0x20,0x88,0x88,0xef,0x94,0x62,0x20,0x50,0x8c,0xff,0x02,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 25753 撙 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x09,0x0d,0x09,0x19,0x69,0x08,0x0b,0x08,0x08,0x28,0x10,0x88,0xff,0x50,0xfe,0x52,0x5e,0x82,0xfe,0x02,0xfe,0x08,0xff,0x48,0x28,0x08,0x18 -+// 25754 撚 ; -+,0x11,0x11,0x11,0x11,0x7d,0x12,0x12,0x1d,0x30,0x51,0x12,0x10,0x12,0x12,0x56,0x20,0x08,0x88,0x0a,0xe9,0x28,0xbf,0x48,0x54,0x94,0x23,0x42,0x00,0x92,0x49,0x49,0x00 -+// 25755 撛 ; -+,0x10,0x10,0x10,0x11,0x7c,0x10,0x15,0x18,0x31,0x51,0x13,0x15,0x10,0x11,0x52,0x20,0x20,0xa4,0x68,0xff,0x68,0xa4,0x23,0x84,0xe4,0x5f,0x54,0xbf,0x84,0x04,0x04,0x04 -+// 25756 撜 ; -+,0x10,0x11,0x12,0x11,0x7c,0x11,0x16,0x18,0x31,0x51,0x11,0x10,0x11,0x10,0x57,0x20,0x00,0xe4,0x69,0x52,0x8c,0x04,0xfb,0x00,0xfc,0x04,0xfc,0x00,0x08,0x90,0xff,0x00 -+// 25757 撝 ; -+,0x08,0x0b,0x09,0x7e,0x09,0x09,0x0d,0x09,0x19,0x69,0x0a,0x0b,0x0d,0x0c,0x28,0x10,0x06,0xf8,0x44,0xa8,0xfe,0x04,0x08,0xfe,0x02,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 25758 撞 ; -+,0x10,0x13,0x10,0x10,0x7b,0x10,0x15,0x19,0x31,0x51,0x11,0x10,0x13,0x10,0x57,0x20,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x00 -+// 25759 撟 ; -+,0x10,0x11,0x10,0x7b,0x10,0x15,0x1a,0x30,0x50,0x13,0x12,0x12,0x12,0x12,0x52,0x22,0x1e,0xe0,0x20,0xff,0x90,0xfc,0x8b,0xf8,0x00,0xff,0x01,0xf9,0x89,0xf9,0x05,0x02 -+// 25760 撠 ; -+,0x11,0x11,0x17,0x11,0x7f,0x14,0x17,0x1c,0x34,0x57,0x11,0x1f,0x11,0x11,0x51,0x21,0x10,0x14,0xd2,0x12,0xd0,0x7f,0xd0,0x52,0x52,0xcc,0x08,0xe8,0x15,0x25,0x43,0x01 -+// 25761 撡 ; -+,0x10,0x10,0x10,0x7c,0x10,0x15,0x1b,0x10,0x30,0x53,0x10,0x11,0x11,0x12,0x50,0x20,0x20,0x44,0xfe,0x42,0x84,0x2a,0xff,0x49,0xa4,0x23,0x20,0x34,0x2a,0x2a,0xa0,0x40 -+// 25762 撢 ; -+,0x10,0x13,0x10,0x7d,0x11,0x11,0x14,0x19,0x31,0x51,0x11,0x11,0x10,0x13,0x50,0x20,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20 -+// 25763 撣 ; -+,0x08,0x09,0x09,0x7d,0x08,0x09,0x0d,0x19,0x29,0x49,0x08,0x0b,0x08,0x08,0x28,0x10,0x00,0xde,0x52,0xde,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25764 撤 ; -+,0x11,0x10,0x17,0x79,0x12,0x17,0x14,0x1b,0x32,0x53,0x12,0x13,0x12,0x12,0x52,0x22,0x08,0x8c,0xe8,0x10,0x5f,0xe2,0x22,0xd2,0x54,0xd4,0x48,0xc8,0x54,0x53,0xe2,0x40 -+// 25765 撥 ; -+,0x10,0x13,0x10,0x12,0x79,0x13,0x1c,0x10,0x33,0x52,0x12,0x13,0x10,0x10,0x52,0x21,0x00,0xd4,0x59,0x8a,0x04,0xbf,0xa4,0xa4,0xa3,0x40,0x3e,0x94,0x88,0x94,0xa6,0x42 -+// 25766 撦 ; -+,0x08,0x08,0x09,0x08,0x7e,0x09,0x0a,0x0f,0x18,0x68,0x09,0x0e,0x08,0x08,0x28,0x10,0x20,0x20,0xfe,0x48,0xa4,0xfb,0x28,0xff,0x20,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 25767 撧 ; -+,0x11,0x11,0x11,0x7d,0x12,0x17,0x19,0x12,0x37,0x50,0x10,0x16,0x15,0x15,0x50,0x20,0x10,0x90,0x1e,0x22,0x44,0xbf,0x29,0x29,0xa9,0x3f,0x20,0xa1,0x61,0x61,0x1f,0x00 -+// 25768 撨 ; -+,0x10,0x10,0x10,0x7c,0x11,0x11,0x1b,0x15,0x31,0x51,0x11,0x10,0x11,0x11,0x53,0x20,0x80,0xd0,0x88,0xff,0x10,0xff,0x10,0xff,0x10,0x10,0xff,0x00,0x52,0x29,0x29,0x00 -+// 25769 撩 ; -+,0x10,0x10,0x13,0x7a,0x11,0x15,0x1b,0x15,0x31,0x51,0x10,0x11,0x11,0x12,0x54,0x20,0x40,0x40,0xfe,0x64,0x98,0xfc,0x0b,0xfa,0x08,0xf8,0x20,0x28,0xa4,0x26,0xa2,0x40 -+// 25770 撪 ; -+,0x10,0x10,0x10,0x10,0x7d,0x10,0x14,0x1b,0x30,0x51,0x11,0x11,0x11,0x17,0x50,0x20,0x20,0x48,0xfc,0x24,0xff,0x48,0xa4,0xfb,0x20,0xfc,0x24,0xfc,0x24,0xff,0x20,0x20 -+// 25771 撫 ; -+,0x10,0x10,0x11,0x7b,0x15,0x11,0x17,0x19,0x31,0x51,0x17,0x10,0x12,0x52,0x34,0x00,0x80,0x80,0x00,0xff,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x00,0x92,0x49,0x49,0x00 -+// 25772 撬 ; -+,0x11,0x10,0x11,0x7c,0x13,0x10,0x14,0x18,0x37,0x52,0x1f,0x12,0x1f,0x12,0x53,0x22,0xfc,0x20,0xfc,0x20,0xfe,0x21,0x3f,0x00,0xbe,0x08,0xbe,0x08,0xbf,0x08,0x09,0x0f -+// 25773 播 ; -+,0x10,0x13,0x11,0x7c,0x13,0x10,0x14,0x19,0x37,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x1e,0xe0,0x24,0xa8,0xff,0x70,0xa8,0x27,0xfe,0x24,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 25774 撮 ; -+,0x10,0x10,0x10,0x10,0x7c,0x10,0x13,0x19,0x31,0x51,0x11,0x11,0x11,0x16,0x50,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xff,0x20,0xff,0x2a,0xea,0x24,0xec,0x33,0x22,0x20 -+// 25775 撯 ; -+,0x10,0x10,0x11,0x10,0x7c,0x10,0x15,0x18,0x30,0x50,0x11,0x12,0x10,0x10,0x50,0x20,0x84,0x48,0xff,0x20,0xfe,0x20,0xff,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 25776 撰 ; -+,0x09,0x09,0x09,0x7f,0x09,0x08,0x0a,0x0c,0x19,0x68,0x0b,0x08,0x08,0x28,0x11,0x00,0xde,0x52,0xde,0x10,0x52,0xce,0x00,0x88,0xfe,0x88,0xff,0x00,0x88,0x86,0x02,0x00 -+// 25777 撱 ; -+,0x10,0x13,0x12,0x7a,0x13,0x13,0x16,0x1a,0x32,0x53,0x12,0x12,0x12,0x12,0x52,0x22,0x10,0xd0,0x7f,0xa0,0x3e,0x48,0xff,0x40,0x7e,0x62,0xbe,0x22,0x3e,0x22,0x26,0x22 -+// 25778 撲 ; -+,0x08,0x09,0x08,0x7e,0x09,0x08,0x0d,0x08,0x19,0x68,0x0b,0x08,0x08,0x08,0x28,0x13,0x50,0x52,0xd4,0x50,0xff,0x88,0xfe,0x20,0xfe,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 25779 撳 ; -+,0x11,0x11,0x11,0x7a,0x13,0x15,0x19,0x37,0x51,0x11,0x15,0x13,0x11,0x11,0x56,0x20,0x08,0x88,0x48,0x2f,0xd2,0x24,0x00,0xc8,0x08,0x08,0x48,0x88,0x54,0x94,0x23,0xc2 -+// 25780 撴 ; -+,0x11,0x10,0x17,0x78,0x13,0x12,0x13,0x18,0x33,0x50,0x10,0x10,0x17,0x10,0x52,0x21,0x08,0x88,0xe8,0x08,0xdf,0x52,0xd2,0x24,0xd4,0x4c,0x88,0xec,0x94,0x92,0xa3,0x02 -+// 25781 撵 ; -+,0x11,0x11,0x13,0x79,0x13,0x11,0x1a,0x30,0x57,0x10,0x11,0x10,0x17,0x10,0x50,0x20,0x04,0x04,0xde,0x04,0xdf,0x84,0x4a,0x50,0xff,0xa0,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 25782 撶 ; -+,0x08,0x08,0x09,0x08,0x7d,0x08,0x09,0x0c,0x18,0x69,0x08,0x09,0x08,0x08,0x28,0x10,0x44,0x44,0xff,0x44,0xff,0xa4,0xff,0xa4,0xa4,0xff,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25783 撷 ; -+,0x10,0x10,0x13,0x7c,0x10,0x13,0x18,0x10,0x33,0x52,0x12,0x12,0x13,0x12,0x50,0x20,0x80,0x9f,0xe4,0x88,0x9f,0xd1,0x15,0x15,0xd5,0x55,0x55,0x55,0xc4,0x4a,0x11,0x21 -+// 25784 撸 ; -+,0x08,0x08,0x08,0x7d,0x09,0x09,0x09,0x0d,0x18,0x6b,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0x7c,0x88,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc -+// 25785 撹 ; -+,0x11,0x10,0x7c,0x13,0x12,0x11,0x19,0x31,0x51,0x11,0x11,0x11,0x10,0x10,0x51,0x22,0x22,0x92,0x94,0xff,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x91,0x11,0x0f -+// 25786 撺 ; -+,0x10,0x10,0x13,0x12,0x7c,0x13,0x11,0x19,0x30,0x53,0x12,0x12,0x13,0x10,0x50,0x20,0x40,0x20,0xff,0x4a,0xa4,0xfe,0x24,0xfc,0x20,0xfe,0x22,0x22,0xfe,0x20,0x20,0x20 -+// 25787 撻 ; -+,0x10,0x12,0x11,0x7d,0x10,0x14,0x18,0x37,0x51,0x11,0x11,0x11,0x11,0x12,0x54,0x20,0x10,0x10,0x7e,0x10,0xff,0x24,0x7e,0x10,0x7e,0x10,0xff,0x10,0x10,0x90,0x7f,0x00 -+// 25788 撼 ; -+,0x10,0x10,0x13,0x7a,0x13,0x16,0x1b,0x13,0x73,0x15,0x14,0x18,0x12,0x12,0x54,0x20,0x14,0x12,0xff,0x10,0xd4,0x16,0xcc,0x48,0x4d,0xd5,0x03,0x20,0x92,0x85,0x7d,0x00 -+// 25789 撽 ; -+,0x10,0x11,0x13,0x7e,0x13,0x12,0x1b,0x11,0x37,0x51,0x11,0x12,0x12,0x15,0x58,0x20,0x88,0x0c,0xc8,0x48,0xdf,0x52,0xf2,0x0a,0xea,0x04,0xc4,0x4a,0x4a,0x53,0xa2,0x00 -+// 25790 撾 ; -+,0x10,0x12,0x11,0x7d,0x10,0x14,0x18,0x1e,0x32,0x52,0x12,0x12,0x12,0x15,0x58,0x20,0x00,0x7e,0x42,0x7a,0x4a,0xff,0x81,0xbd,0xa5,0xbd,0x81,0x85,0x82,0x00,0xff,0x00 -+// 25791 撿 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x0c,0x09,0x19,0x69,0x09,0x08,0x08,0x09,0x2a,0x10,0x20,0x20,0x50,0x88,0x07,0xfa,0x00,0xdc,0x54,0x54,0xdc,0x88,0x88,0x54,0x22,0x42 -+// 25792 擀 ; -+,0x11,0x11,0x17,0x7d,0x13,0x12,0x17,0x1a,0x33,0x51,0x17,0x11,0x11,0x11,0x51,0x21,0x10,0x08,0xec,0x14,0xe2,0x5d,0xc8,0x48,0xc8,0x3e,0xc8,0x08,0x08,0x08,0x08,0x08 -+// 25793 擁 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x0d,0x0b,0x18,0x69,0x0a,0x0b,0x08,0x09,0x0a,0x2c,0x10,0x20,0x10,0xff,0xa8,0xa4,0x7f,0xa4,0xa4,0x3f,0x64,0xa4,0xbf,0x24,0x24,0x3f,0x20 -+// 25794 擂 ; -+,0x00,0x11,0x10,0x13,0x7a,0x11,0x10,0x15,0x18,0x31,0x51,0x11,0x11,0x11,0x51,0x21,0x00,0xfc,0x20,0xff,0x22,0xac,0x20,0xac,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 25795 擃 ; -+,0x10,0x11,0x11,0x7d,0x11,0x11,0x14,0x19,0x31,0x51,0x11,0x11,0x12,0x12,0x54,0x28,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xff,0x00,0x7e,0x00,0xff,0x50,0x4c,0x67,0x42 -+// 25796 擄 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x12,0x12,0x1a,0x32,0x52,0x12,0x12,0x12,0x54,0x24,0x20,0x3c,0x20,0xff,0x22,0xfc,0x22,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x22,0xc6 -+// 25797 擅 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x0b,0x0d,0x09,0x18,0x68,0x08,0x08,0x08,0x08,0x28,0x13,0x20,0xff,0x00,0xfe,0x02,0x7a,0x4a,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 25798 擆 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x08,0x0a,0x0d,0x18,0x68,0x09,0x0e,0x08,0x08,0x28,0x10,0x88,0x88,0xff,0x88,0x24,0xfc,0x28,0xff,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 25799 擇 ; -+,0x09,0x09,0x09,0x7d,0x08,0x09,0x0c,0x1b,0x28,0x49,0x08,0x0b,0x08,0x08,0x28,0x10,0xfe,0x4a,0x4a,0xfe,0x20,0xfe,0x20,0xff,0x88,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 25800 擈 ; -+,0x08,0x09,0x08,0x7c,0x0b,0x08,0x0d,0x18,0x69,0x08,0x0b,0x08,0x08,0x0b,0x28,0x10,0x48,0x4a,0xcc,0x48,0xff,0x88,0xfe,0x20,0xfe,0x20,0xff,0x70,0xa8,0x27,0x22,0x20 -+// 25801 擉 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0d,0x18,0x68,0x08,0x08,0x09,0x08,0x28,0x10,0xff,0xa9,0xa9,0xff,0x40,0x7f,0xa1,0xf9,0xa9,0xf9,0x21,0x29,0xfd,0x01,0x05,0x02 -+// 25802 擊 ; -+,0x04,0x3f,0x15,0x1f,0x15,0x7f,0x15,0x1f,0x00,0x07,0x00,0x0f,0x00,0x3f,0x00,0x00,0x3c,0xa4,0x24,0x43,0x3c,0xa4,0x18,0x18,0x26,0xf8,0x40,0xfc,0x40,0xff,0x40,0xc0 -+// 25803 擋 ; -+,0x08,0x08,0x08,0x09,0x7d,0x08,0x08,0x0c,0x08,0x19,0x69,0x09,0x09,0x09,0x29,0x11,0x10,0x92,0x54,0xff,0x02,0xfc,0x84,0xfc,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 25804 擌 ; -+,0x11,0x11,0x11,0x7a,0x14,0x10,0x17,0x19,0x31,0x52,0x14,0x10,0x10,0x10,0x50,0x21,0x08,0x08,0xef,0x94,0x62,0x20,0xff,0x24,0x24,0xaa,0xb1,0x20,0x50,0x48,0x87,0x02 -+// 25805 操 ; -+,0x10,0x10,0x10,0x7c,0x11,0x11,0x15,0x19,0x30,0x53,0x10,0x10,0x10,0x11,0x56,0x20,0xfc,0x84,0xfc,0x00,0xde,0x52,0x52,0xde,0x20,0xff,0x30,0x68,0xa4,0x27,0x22,0x20 -+// 25806 擎 ; -+,0x0a,0x7f,0x0a,0x3f,0x21,0x5d,0x15,0x1d,0x03,0x1f,0x00,0x1f,0x00,0x3f,0x00,0x01,0x20,0xa0,0x3f,0x44,0x68,0x98,0x14,0x27,0x42,0xfc,0x80,0xfe,0x80,0xff,0x80,0x80 -+// 25807 擏 ; -+,0x12,0x12,0x17,0x12,0x78,0x12,0x1b,0x34,0x5b,0x12,0x12,0x13,0x10,0x10,0x50,0x20,0x48,0x4c,0xe8,0x4f,0x09,0x09,0xf1,0x2a,0xaa,0xa6,0xa4,0xa4,0x2a,0x33,0xa2,0x40 -+// 25808 擐 ; -+,0x11,0x11,0x11,0x7d,0x10,0x13,0x14,0x18,0x30,0x50,0x10,0x11,0x12,0x14,0x50,0x20,0xfe,0x4a,0x4a,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0xc0,0xa2,0x94,0xac,0xc7,0x82 -+// 25809 擑 ; -+,0x10,0x13,0x12,0x13,0x78,0x17,0x12,0x1b,0x32,0x53,0x12,0x12,0x17,0x10,0x50,0x20,0x08,0xc8,0x4a,0xc9,0x08,0xff,0x48,0xc8,0x4a,0xcb,0x4a,0x64,0xcd,0x55,0x63,0x41 -+// 25810 擒 ; -+,0x08,0x08,0x08,0x7c,0x0b,0x08,0x0d,0x09,0x19,0x68,0x0b,0x0a,0x0a,0x0a,0x2a,0x12,0x20,0x30,0x48,0xa7,0xfa,0x50,0x24,0x54,0xfc,0x20,0xfe,0x52,0xfa,0x0a,0x02,0x06 -+// 25811 擓 ; -+,0x10,0x13,0x13,0x12,0x7e,0x13,0x16,0x1a,0x12,0x72,0x12,0x13,0x12,0x12,0x53,0x20,0x00,0xff,0x28,0xa4,0x3f,0x64,0xbf,0xa4,0x24,0x7f,0xa4,0xa4,0xbf,0xa0,0xff,0x00 -+// 25812 擔 ; -+,0x10,0x10,0x10,0x7d,0x13,0x11,0x15,0x19,0x31,0x51,0x12,0x12,0x12,0x14,0x54,0x28,0x40,0x7c,0x88,0xff,0x54,0x93,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x42 -+// 25813 擕 ; -+,0x08,0x08,0x08,0x08,0x7d,0x0a,0x08,0x0c,0x18,0x68,0x09,0x09,0x09,0x09,0x29,0x11,0x50,0x48,0xff,0x88,0xfe,0x88,0xfe,0x88,0xff,0x00,0xcf,0x49,0x79,0x01,0x05,0x02 -+// 25814 擖 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0c,0x08,0x18,0x69,0x0b,0x0d,0x09,0x09,0x28,0x10,0x44,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x80,0xff,0x11,0x31,0x49,0xff,0x01,0x07 -+// 25815 擗 ; -+,0x10,0x13,0x12,0x7e,0x12,0x13,0x16,0x1a,0x32,0x53,0x15,0x15,0x19,0x11,0x51,0x20,0x08,0xc4,0x7f,0x51,0x4a,0xc4,0x1f,0x04,0x04,0xc4,0x5f,0x44,0x44,0x44,0xc4,0x04 -+// 25816 擘 ; -+,0x1e,0x12,0x12,0x1e,0x11,0x3e,0x32,0x5e,0x00,0x07,0x00,0x0f,0x00,0x3f,0x00,0x00,0x10,0xfe,0x44,0x28,0xff,0x10,0xfe,0x10,0x10,0xf8,0x40,0xfc,0x40,0xff,0x40,0xc0 -+// 25817 擙 ; -+,0x08,0x09,0x09,0x7f,0x09,0x09,0x0d,0x09,0x19,0x68,0x0b,0x08,0x08,0x08,0x28,0x11,0x40,0xfe,0x22,0xaa,0x72,0xfe,0x72,0xae,0x02,0x20,0xff,0x20,0x50,0x48,0x8e,0x04 -+// 25818 據 ; -+,0x10,0x10,0x10,0x13,0x7e,0x13,0x12,0x1b,0x32,0x52,0x13,0x12,0x15,0x14,0x59,0x20,0x20,0x3e,0x20,0xff,0x22,0xf8,0x22,0xfe,0x20,0x66,0xb8,0x58,0xb4,0x53,0x92,0x20 -+// 25819 擛 ; -+,0x10,0x13,0x10,0x11,0x7b,0x11,0x15,0x19,0x11,0x30,0x53,0x10,0x10,0x11,0x56,0x20,0x88,0xff,0x88,0x48,0xfe,0x48,0x78,0x00,0xfe,0x20,0xff,0x70,0xa8,0x27,0x22,0x20 -+// 25820 擜 ; -+,0x10,0x10,0x13,0x7c,0x13,0x13,0x1a,0x13,0x32,0x53,0x12,0x12,0x12,0x52,0x22,0x00,0x84,0x84,0xe6,0x85,0xe4,0x7f,0xa4,0xe4,0xa4,0xe4,0xa4,0xaa,0xaa,0xb3,0x62,0x00 -+// 25821 擝 ; -+,0x08,0x08,0x09,0x7d,0x09,0x0d,0x09,0x18,0x68,0x08,0x09,0x09,0x09,0x29,0x13,0x00,0x00,0x1e,0xd2,0x5e,0xd2,0x5e,0xd2,0x12,0x2a,0x04,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 25822 擞 ; -+,0x10,0x10,0x12,0x7d,0x13,0x11,0x1a,0x14,0x31,0x57,0x12,0x11,0x11,0x12,0x54,0x20,0x88,0x8c,0xa8,0xc8,0xef,0xd2,0xb2,0xaa,0x0a,0xe4,0x44,0x84,0x8a,0x4a,0x13,0x22 -+// 25823 擟 ; -+,0x10,0x13,0x10,0x79,0x17,0x13,0x16,0x1b,0x32,0x53,0x12,0x13,0x12,0x12,0x52,0x22,0x00,0xff,0xa4,0x22,0xff,0x76,0xaa,0x76,0x22,0x76,0xaa,0x76,0x22,0x22,0x2a,0x24 -+// 25824 擠 ; -+,0x10,0x13,0x10,0x78,0x17,0x12,0x1a,0x15,0x30,0x51,0x11,0x11,0x11,0x11,0x51,0x22,0x20,0xff,0x88,0x52,0xac,0xac,0xaa,0xa9,0x00,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04 -+// 25825 擡 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x0a,0x0f,0x0a,0x19,0x68,0x08,0x08,0x09,0x28,0x13,0x20,0xfe,0x20,0xfc,0x00,0xfc,0x84,0xff,0x02,0xfc,0x48,0xfc,0x20,0xfc,0x20,0xff -+// 25826 擢 ; -+,0x10,0x11,0x10,0x10,0x7c,0x11,0x14,0x18,0x31,0x53,0x15,0x11,0x11,0x11,0x51,0x21,0x00,0xef,0xa5,0x63,0xa5,0x29,0x21,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 25827 擣 ; -+,0x08,0x0b,0x08,0x7d,0x08,0x0b,0x0c,0x09,0x18,0x6b,0x08,0x0b,0x0a,0x0b,0x28,0x10,0x20,0xfe,0x20,0xfc,0x00,0xff,0x02,0xfc,0x20,0xff,0x02,0xdf,0x42,0xca,0x02,0x06 -+// 25828 擤 ; -+,0x10,0x11,0x11,0x7d,0x11,0x15,0x18,0x13,0x32,0x53,0x12,0x13,0x10,0x17,0x50,0x23,0x40,0xfc,0x24,0x94,0x4c,0xfc,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff,0x88,0x08 -+// 25829 擥 ; -+,0x00,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x00,0x07,0x00,0x0f,0x00,0x1f,0x00,0x00,0x20,0x3f,0x50,0x48,0xff,0x55,0x55,0x7f,0x00,0xf8,0x40,0xfc,0x40,0xff,0x40,0xc0 -+// 25830 擦 ; -+,0x10,0x10,0x13,0x12,0x7c,0x11,0x1a,0x15,0x31,0x52,0x15,0x10,0x11,0x11,0x52,0x20,0x20,0x10,0xff,0x82,0xe8,0x34,0xc8,0x84,0x7b,0x00,0xfe,0x20,0x28,0x26,0xa2,0x40 -+// 25831 擧 ; -+,0x05,0x19,0x11,0x1d,0x10,0x1d,0x11,0x7f,0x08,0x17,0x60,0x0f,0x00,0x3f,0x00,0x01,0x00,0xdc,0x04,0xdc,0x44,0x5c,0x44,0xff,0x10,0xec,0x83,0xf8,0x80,0xfe,0x80,0x80 -+// 25832 擨 ; -+,0x10,0x17,0x14,0x7c,0x14,0x15,0x1d,0x15,0x35,0x55,0x15,0x1a,0x1a,0x14,0x59,0x22,0x74,0x84,0x84,0xe8,0x8f,0xf9,0x51,0xf4,0x44,0x74,0x04,0xe4,0xaa,0xaa,0x33,0x22 -+// 25833 擩 ; -+,0x11,0x10,0x13,0x12,0x79,0x10,0x15,0x18,0x33,0x50,0x13,0x12,0x12,0x12,0x52,0x22,0xfe,0x20,0xff,0x22,0xac,0x20,0xac,0x00,0xff,0x40,0xff,0x51,0x51,0x51,0x55,0x02 -+// 25834 擪 ; -+,0x1f,0x14,0x17,0x10,0x17,0x15,0x16,0x15,0x14,0x15,0x10,0x13,0x20,0x2f,0x40,0x00,0xff,0x48,0xca,0x09,0xdf,0x48,0xd4,0x53,0x62,0xf8,0x40,0xfc,0x40,0xff,0x40,0xc0 -+// 25835 擫 ; -+,0x10,0x17,0x15,0x7d,0x15,0x15,0x1c,0x15,0x35,0x55,0x15,0x15,0x15,0x19,0x51,0x20,0x00,0xff,0x40,0xc8,0x48,0xca,0x1f,0xc8,0x48,0xc8,0x48,0xd4,0x54,0x63,0x42,0x00 -+// 25836 擬 ; -+,0x12,0x12,0x13,0x12,0x79,0x14,0x17,0x19,0x31,0x57,0x11,0x11,0x12,0x12,0x54,0x28,0x00,0x9f,0x02,0x4c,0xc4,0x3f,0xca,0x08,0x28,0xef,0x28,0x28,0xa8,0x58,0x87,0x02 -+// 25837 擭 ; -+,0x08,0x0b,0x08,0x7f,0x09,0x0b,0x0d,0x0d,0x19,0x69,0x09,0x08,0x08,0x08,0x28,0x13,0x88,0xff,0x88,0x10,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x84,0x48,0x30,0xcf,0x02 -+// 25838 擮 ; -+,0x10,0x10,0x13,0x10,0x7b,0x10,0x15,0x19,0x32,0x57,0x1a,0x13,0x12,0x12,0x53,0x22,0x88,0x8c,0xea,0x88,0xff,0x88,0x48,0xfa,0x4b,0xf6,0x44,0xf4,0x4d,0x53,0xf3,0x01 -+// 25839 擯 ; -+,0x08,0x09,0x09,0x7e,0x08,0x0d,0x08,0x19,0x6e,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x10,0xff,0x02,0xfc,0xa8,0x30,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x48,0x46,0x82 -+// 25840 擰 ; -+,0x10,0x13,0x12,0x11,0x7d,0x12,0x10,0x15,0x19,0x31,0x53,0x10,0x11,0x10,0x50,0x20,0x20,0xff,0x02,0x52,0x45,0x3c,0x00,0xfe,0x52,0x52,0xff,0x00,0xfe,0x10,0x50,0x20 -+// 25841 擱 ; -+,0x13,0x12,0x13,0x12,0x7b,0x12,0x12,0x1a,0x33,0x52,0x13,0x12,0x12,0x12,0x52,0x22,0xdf,0x51,0xdf,0x51,0xdf,0x41,0x7d,0xc9,0x31,0x4f,0xf9,0x49,0x79,0x01,0x05,0x02 -+// 25842 擲 ; -+,0x12,0x11,0x17,0x79,0x17,0x15,0x1d,0x16,0x34,0x57,0x10,0x17,0x10,0x11,0x56,0x20,0x20,0x4f,0xf9,0x4a,0xea,0x6c,0x6a,0x69,0x29,0xe9,0x8d,0xfa,0xc8,0x28,0x28,0x08 -+// 25843 擳 ; -+,0x11,0x11,0x11,0x13,0x7c,0x13,0x12,0x1b,0x32,0x53,0x12,0x12,0x12,0x13,0x52,0x20,0x08,0x08,0xef,0x14,0xa2,0xde,0x52,0xd2,0x52,0xd2,0x12,0x9a,0xd4,0x50,0x10,0x10 -+// 25844 擴 ; -+,0x00,0x10,0x13,0x12,0x7b,0x12,0x13,0x12,0x1a,0x32,0x52,0x12,0x12,0x14,0x54,0x29,0x20,0x10,0xff,0x48,0xfe,0x48,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x44,0xc3,0x02 -+// 25845 擵 ; -+,0x10,0x13,0x12,0x12,0x7b,0x12,0x13,0x1a,0x32,0x52,0x12,0x12,0x14,0x15,0x58,0x20,0x20,0xff,0x84,0x84,0xff,0xce,0xb5,0xa4,0x1e,0xf0,0x10,0xfe,0x10,0xff,0x10,0x30 -+// 25846 擶 ; -+,0x08,0x08,0x08,0x7d,0x0a,0x08,0x0d,0x18,0x69,0x09,0x09,0x09,0x09,0x09,0x29,0x11,0x88,0x88,0xff,0x98,0x64,0x48,0xff,0x00,0xe2,0x2a,0xea,0x2a,0xea,0x2a,0x62,0x26 -+// 25847 擷 ; -+,0x11,0x11,0x17,0x7d,0x11,0x13,0x14,0x18,0x33,0x52,0x12,0x12,0x13,0x50,0x20,0x00,0x1f,0x04,0xc8,0x1f,0x11,0xdf,0x11,0x1f,0xd1,0x51,0x5f,0x40,0xca,0x11,0x21,0x00 -+// 25848 擸 ; -+,0x11,0x12,0x11,0x10,0x7b,0x12,0x12,0x1a,0x33,0x53,0x12,0x13,0x12,0x12,0x53,0x22,0x24,0x48,0x24,0x00,0xfc,0x94,0x64,0x94,0xfc,0x64,0xd4,0x64,0xd5,0x45,0x63,0x41 -+// 25849 擹 ; -+,0x12,0x17,0x12,0x7b,0x10,0x13,0x16,0x1b,0x30,0x53,0x10,0x13,0x10,0x11,0x51,0x22,0x28,0xfc,0x28,0xef,0x89,0xe9,0xb4,0xe4,0x84,0xe4,0x84,0xe4,0x8a,0x4a,0x33,0x22 -+// 25850 擺 ; -+,0x13,0x12,0x12,0x7f,0x11,0x12,0x1f,0x10,0x33,0x52,0x13,0x12,0x13,0x12,0x52,0x22,0xfe,0x52,0x52,0xfe,0x00,0x92,0xdc,0x11,0xdf,0x40,0xd0,0x52,0xdc,0x51,0x51,0xdf -+// 25851 擻 ; -+,0x10,0x13,0x12,0x17,0x7e,0x13,0x14,0x1b,0x12,0x33,0x50,0x17,0x11,0x12,0x51,0x26,0x84,0xe6,0xa4,0xf8,0xaf,0xea,0x9a,0xea,0xaa,0xea,0x8a,0xe4,0x44,0x8a,0x93,0x62 -+// 25852 擼 ; -+,0x08,0x08,0x08,0x7d,0x0a,0x08,0x0a,0x0c,0x19,0x6a,0x08,0x08,0x08,0x08,0x28,0x10,0x40,0xfc,0x88,0xfe,0x92,0xfe,0x92,0xfe,0x52,0x29,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 25853 擽 ; -+,0x11,0x11,0x11,0x12,0x7f,0x11,0x12,0x1b,0x30,0x50,0x13,0x10,0x10,0x11,0x56,0x20,0x22,0x22,0x72,0x55,0xfe,0x52,0xd5,0xff,0xa1,0x20,0xff,0x68,0xa4,0x27,0x22,0x20 -+// 25854 擾 ; -+,0x09,0x08,0x08,0x08,0x7e,0x08,0x0b,0x0e,0x09,0x19,0x68,0x09,0x08,0x08,0x2b,0x18,0xfe,0x20,0xfc,0x94,0xcc,0xa4,0xff,0x21,0x4a,0x79,0x20,0xfe,0x44,0xa8,0x18,0xe6 -+// 25855 擿 ; -+,0x10,0x14,0x12,0x7a,0x10,0x10,0x18,0x36,0x52,0x12,0x12,0x12,0x12,0x15,0x58,0x20,0x20,0x10,0xff,0x44,0x28,0xfe,0x92,0xfe,0x92,0xba,0xaa,0xba,0x86,0x00,0xff,0x00 -+// 25856 攀 ; -+,0x09,0x08,0x3f,0x1d,0x2a,0x49,0x7f,0x02,0x04,0x1b,0x60,0x07,0x00,0x0f,0x00,0x01,0x48,0x88,0x7f,0x5c,0xab,0x48,0xff,0x10,0x08,0xf7,0x82,0xf8,0x80,0xfc,0x80,0x80 -+// 25857 攁 ; -+,0x08,0x08,0x09,0x7e,0x09,0x08,0x0b,0x0c,0x18,0x69,0x0e,0x08,0x08,0x08,0x28,0x10,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x70,0xac,0xff,0xaa,0xf8,0xa2,0x94,0xc8,0x86 -+// 25858 攂 ; -+,0x10,0x11,0x11,0x7d,0x11,0x15,0x18,0x17,0x35,0x55,0x17,0x15,0x15,0x17,0x54,0x20,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xdf,0x55,0x55,0xdf,0x55,0x55,0xdf,0x51,0x00 -+// 25859 攃 ; -+,0x10,0x13,0x10,0x11,0x7d,0x11,0x1a,0x15,0x30,0x51,0x16,0x10,0x10,0x11,0x50,0x20,0x88,0xff,0x88,0x00,0xef,0x2a,0xc4,0x7a,0x81,0xfe,0x10,0x94,0x93,0x11,0x50,0x20 -+// 25860 攄 ; -+,0x00,0x10,0x10,0x13,0x7a,0x13,0x12,0x12,0x1a,0x32,0x52,0x12,0x12,0x15,0x55,0x2a,0x20,0x3c,0x20,0xff,0x42,0xfc,0x42,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x52,0x45,0x3d -+// 25861 攅 ; -+,0x08,0x08,0x09,0x7c,0x0b,0x08,0x0d,0x1a,0x68,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x88,0x88,0xde,0x88,0xff,0x8c,0x53,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 25862 攆 ; -+,0x11,0x13,0x11,0x7b,0x11,0x12,0x17,0x18,0x31,0x51,0x11,0x11,0x17,0x10,0x50,0x20,0x08,0xde,0x08,0xdf,0x88,0x56,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xff,0x20,0x20,0x20 -+// 25863 攇 ; -+,0x00,0x13,0x12,0x11,0x78,0x11,0x10,0x15,0x18,0x31,0x51,0x11,0x10,0x12,0x52,0x34,0x20,0xff,0x22,0xfc,0x20,0xfc,0x20,0xfe,0x20,0xfe,0x52,0xfe,0x00,0xa2,0x85,0x7c -+// 25864 攈 ; -+,0x10,0x13,0x12,0x7b,0x12,0x13,0x12,0x1a,0x32,0x52,0x12,0x13,0x12,0x14,0x55,0x20,0x20,0xff,0x48,0xfe,0x4a,0xfe,0x92,0xfc,0x91,0xdf,0x20,0xff,0x70,0xae,0x24,0x20 -+// 25865 攉 ; -+,0x11,0x10,0x13,0x7a,0x11,0x10,0x15,0x19,0x31,0x53,0x15,0x11,0x11,0x11,0x51,0x21,0xfe,0x20,0xff,0x21,0xa6,0x20,0xa6,0x10,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 25866 攊 ; -+,0x10,0x13,0x12,0x12,0x7a,0x12,0x12,0x12,0x1b,0x32,0x52,0x12,0x14,0x14,0x59,0x20,0x00,0xff,0x00,0xef,0x44,0xff,0x6c,0xd6,0x45,0x44,0x10,0x50,0x5e,0x50,0xff,0x00 -+// 25867 攋 ; -+,0x11,0x11,0x17,0x7d,0x17,0x15,0x1d,0x17,0x31,0x53,0x13,0x15,0x19,0x11,0x51,0x21,0x08,0x0f,0xd2,0x24,0xdf,0x51,0x5f,0xd1,0x1f,0x91,0x5f,0x40,0x0a,0x0a,0x11,0x21 -+// 25868 攌 ; -+,0x13,0x12,0x12,0x12,0x7a,0x12,0x13,0x1a,0x32,0x52,0x12,0x12,0x12,0x13,0x52,0x23,0xff,0x01,0xfd,0xad,0xfd,0x21,0xff,0x01,0xf9,0x89,0xf9,0x55,0xc9,0x67,0x41,0xff -+// 25869 攍 ; -+,0x10,0x17,0x79,0x11,0x10,0x15,0x19,0x31,0x50,0x17,0x15,0x17,0x15,0x17,0x55,0x29,0x20,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x00,0x4e,0xfa,0xaa,0x6e,0x6b,0x9b,0x13 -+// 25870 攎 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x09,0x0d,0x19,0x69,0x09,0x0a,0x0a,0x0a,0x2c,0x11,0x20,0x3e,0x20,0xff,0x22,0xfc,0x22,0x7e,0x54,0x4c,0x7c,0x00,0xfe,0xaa,0xaa,0xff -+// 25871 攏 ; -+,0x11,0x17,0x12,0x7a,0x17,0x10,0x13,0x1a,0x33,0x52,0x13,0x12,0x12,0x52,0x22,0x00,0x10,0xde,0x90,0x9e,0xc2,0x1e,0xd0,0x5e,0xd0,0x5e,0xd0,0x5e,0x50,0x51,0xcf,0x00 -+// 25872 攐 ; -+,0x10,0x13,0x12,0x7b,0x10,0x11,0x18,0x17,0x31,0x56,0x10,0x11,0x16,0x10,0x50,0x20,0x20,0xff,0x92,0xfe,0x90,0xfc,0x90,0xff,0x24,0xfb,0x40,0xa4,0x98,0xa8,0xc7,0x82 -+// 25873 攑 ; -+,0x10,0x13,0x12,0x13,0x7e,0x13,0x1a,0x17,0x31,0x53,0x1c,0x13,0x10,0x10,0x50,0x20,0xa0,0x36,0x22,0xb6,0x12,0x56,0x52,0xff,0x28,0xfc,0x23,0xfc,0x20,0x20,0x20,0x20 -+// 25874 攒 ; -+,0x10,0x12,0x13,0x7c,0x13,0x10,0x15,0x1a,0x34,0x51,0x11,0x11,0x11,0x10,0x50,0x23,0x84,0x94,0xde,0xa4,0xdf,0x8c,0xd5,0xa3,0x00,0xfc,0x04,0x24,0x20,0x50,0x8c,0x04 -+// 25875 攓 ; -+,0x10,0x13,0x12,0x11,0x7c,0x11,0x14,0x1b,0x31,0x56,0x10,0x10,0x11,0x11,0x52,0x24,0x20,0xff,0x52,0xfc,0x50,0xfc,0x50,0xff,0x04,0xfb,0x88,0xf8,0x20,0x3e,0xa0,0x7e -+// 25876 攔 ; -+,0x17,0x14,0x17,0x7c,0x17,0x14,0x15,0x1c,0x35,0x55,0x15,0x14,0x14,0x17,0x54,0x24,0xdf,0x51,0xdf,0x51,0xdf,0x21,0xff,0x21,0xfd,0x75,0xfd,0x71,0xa9,0x27,0x21,0x03 -+// 25877 攕 ; -+,0x10,0x11,0x11,0x11,0x7a,0x17,0x11,0x1f,0x11,0x37,0x51,0x17,0x11,0x11,0x57,0x20,0x00,0x28,0x2c,0x2a,0x58,0xff,0x48,0x78,0x4a,0x7b,0x4a,0x74,0x45,0xfd,0x13,0x61 -+// 25878 攖 ; -+,0x13,0x12,0x13,0x7e,0x13,0x12,0x17,0x19,0x32,0x50,0x17,0x10,0x11,0x10,0x50,0x23,0xdf,0x51,0xdf,0x51,0xdf,0x51,0xdf,0x8a,0x51,0x40,0xff,0x88,0x90,0x70,0x4c,0x84 -+// 25879 攗 ; -+,0x10,0x13,0x12,0x7b,0x12,0x13,0x12,0x1a,0x32,0x52,0x13,0x12,0x13,0x14,0x54,0x2b,0x20,0xff,0x48,0xff,0x49,0xff,0x88,0xee,0x89,0xef,0x24,0xa8,0xff,0x68,0xa4,0x23 -+// 25880 攘 ; -+,0x08,0x0b,0x08,0x09,0x7d,0x09,0x0c,0x09,0x18,0x69,0x08,0x0b,0x08,0x09,0x2a,0x10,0x20,0xff,0x00,0xde,0x52,0xde,0x48,0xfe,0x48,0xfe,0x48,0xff,0x92,0x8c,0xc7,0x82 -+// 25881 攙 ; -+,0x10,0x10,0x11,0x13,0x7d,0x11,0x15,0x19,0x31,0x51,0x13,0x15,0x11,0x10,0x50,0x23,0x80,0xf8,0x10,0xfe,0x02,0xfe,0x14,0xd9,0x7f,0x90,0xfe,0x22,0xfe,0x51,0x91,0x0f -+// 25882 攚 ; -+,0x10,0x10,0x12,0x11,0x7c,0x11,0x13,0x1a,0x10,0x30,0x50,0x10,0x11,0x11,0x51,0x31,0x84,0x84,0xb5,0xce,0x84,0x4a,0xff,0x02,0xfc,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02 -+// 25883 攛 ; -+,0x10,0x10,0x13,0x12,0x7d,0x13,0x11,0x19,0x31,0x51,0x11,0x11,0x11,0x11,0x51,0x21,0x20,0x10,0xff,0x4a,0x84,0xfc,0x54,0x24,0x54,0xfc,0xb4,0x6c,0xb5,0x6b,0x23,0xb1 -+// 25884 攜 ; -+,0x08,0x09,0x09,0x08,0x7d,0x0a,0x08,0x0c,0x18,0x68,0x09,0x09,0x09,0x09,0x29,0x11,0x10,0x11,0xff,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x01,0x7d,0x45,0x7d,0x03 -+// 25885 攝 ; -+,0x09,0x08,0x08,0x08,0x7c,0x0b,0x08,0x0f,0x1a,0x6b,0x0a,0x0b,0x0a,0x0f,0x28,0x10,0xfe,0xa8,0xd8,0xa8,0x98,0xfe,0x08,0xff,0x52,0xde,0x52,0xde,0x52,0xff,0x42,0x42 -+// 25886 攞 ; -+,0x13,0x12,0x12,0x7b,0x10,0x11,0x19,0x32,0x57,0x12,0x17,0x10,0x12,0x15,0x59,0x20,0xff,0x49,0x49,0xff,0x28,0x24,0x3f,0x64,0xbf,0x24,0xa4,0x3f,0xa4,0x64,0x3f,0x20 -+// 25887 攟 ; -+,0x10,0x13,0x12,0x7b,0x12,0x13,0x12,0x1a,0x32,0x52,0x12,0x12,0x12,0x14,0x54,0x28,0x20,0xff,0x88,0xfe,0x8a,0xfe,0x88,0xee,0x89,0xff,0xbd,0x89,0xff,0x9d,0xab,0xff -+// 25888 攠 ; -+,0x10,0x10,0x13,0x12,0x7a,0x13,0x12,0x1b,0x32,0x53,0x12,0x13,0x14,0x15,0x58,0x20,0x20,0x10,0xff,0x44,0x44,0xff,0xee,0x55,0x4c,0xcf,0x48,0xcf,0x48,0xcf,0x48,0x48 -+// 25889 攡 ; -+,0x12,0x11,0x1f,0x16,0x7d,0x16,0x17,0x19,0x17,0x35,0x55,0x16,0x17,0x14,0x54,0x24,0x08,0x08,0xec,0xd2,0x5f,0xf4,0xd4,0x1f,0xf4,0x34,0x3f,0xb4,0xf4,0x34,0xbf,0x50 -+// 25890 攢 ; -+,0x11,0x15,0x17,0x15,0x7f,0x13,0x1b,0x15,0x31,0x51,0x11,0x11,0x11,0x11,0x50,0x23,0x08,0x28,0xfe,0x28,0xde,0x55,0xa7,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04 -+// 25891 攣 ; -+,0x08,0x0b,0x14,0x39,0x14,0x3d,0x01,0x55,0x4a,0x0f,0x00,0x0f,0x00,0x3f,0x00,0x01,0x84,0xe4,0x0a,0xdc,0x0a,0xdf,0x40,0xd5,0x12,0xfc,0x80,0xf8,0x80,0xff,0x80,0x80 -+// 25892 攤 ; -+,0x10,0x12,0x17,0x7a,0x13,0x11,0x1f,0x35,0x57,0x11,0x17,0x11,0x17,0x11,0x52,0x2c,0x08,0x4c,0xf2,0x5f,0xf4,0x14,0xd4,0x5f,0xd4,0x14,0xdf,0x14,0xd4,0x14,0x9f,0x50 -+// 25893 攥 ; -+,0x11,0x11,0x12,0x7d,0x11,0x15,0x19,0x30,0x57,0x11,0x12,0x1d,0x10,0x11,0x50,0x21,0x08,0xef,0x94,0xfe,0xa4,0x54,0xfc,0x40,0xff,0x48,0x97,0xe2,0x48,0xfc,0xa8,0x64 -+// 25894 攦 ; -+,0x13,0x10,0x13,0x7b,0x12,0x10,0x13,0x1a,0x33,0x52,0x13,0x12,0x12,0x14,0x54,0x28,0xff,0x00,0xcf,0x4d,0x49,0x20,0xff,0x48,0xff,0x49,0xff,0x88,0xef,0x88,0xc9,0x8f -+// 25895 攧 ; -+,0x11,0x11,0x17,0x11,0x17,0x7c,0x17,0x14,0x1f,0x34,0x57,0x14,0x17,0x12,0x52,0x24,0x00,0x1f,0xe4,0x04,0xdf,0x51,0xdf,0x51,0xd1,0x5f,0xd1,0x51,0xdf,0x8a,0x49,0x51 -+// 25896 攨 ; -+,0x10,0x13,0x12,0x7c,0x10,0x10,0x15,0x1a,0x30,0x57,0x15,0x15,0x15,0x15,0x59,0x21,0x20,0xff,0x02,0xfc,0xa8,0xa8,0x34,0x3a,0x4b,0xfc,0x6c,0x6a,0x6a,0x29,0xcf,0x4a -+// 25897 攩 ; -+,0x09,0x08,0x0b,0x0a,0x7c,0x08,0x09,0x0d,0x19,0x69,0x08,0x09,0x08,0x0b,0x29,0x12,0x24,0xa8,0xff,0x4a,0x78,0x00,0xfe,0xa6,0x6a,0xfe,0x20,0xfe,0x20,0xff,0x52,0x29 -+// 25898 攪 ; -+,0x10,0x13,0x12,0x13,0x7a,0x13,0x12,0x1f,0x14,0x31,0x51,0x11,0x11,0x11,0x50,0x23,0xd0,0x27,0x51,0x87,0x51,0xa7,0x51,0xff,0x02,0xfc,0x94,0x4c,0x24,0xfd,0x51,0x9f -+// 25899 攫 ; -+,0x09,0x09,0x09,0x09,0x7f,0x08,0x0d,0x1b,0x69,0x09,0x09,0x09,0x09,0x08,0x28,0x13,0xef,0x29,0xef,0x29,0xef,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x44,0x38,0xc7 -+// 25900 攬 ; -+,0x13,0x12,0x13,0x7e,0x13,0x12,0x17,0x18,0x31,0x51,0x11,0x11,0x11,0x10,0x51,0x22,0xd0,0x9f,0xd8,0x64,0xdf,0x95,0xdf,0x00,0xfc,0x94,0x4c,0x24,0xfc,0x91,0x11,0x0f -+// 25901 攭 ; -+,0x10,0x10,0x10,0x13,0x7c,0x10,0x13,0x18,0x33,0x50,0x11,0x17,0x15,0x17,0x51,0x27,0x40,0x7c,0x88,0xff,0x20,0x62,0xb4,0xd8,0x37,0xd0,0x34,0xdf,0x55,0xdf,0x45,0xdf -+// 25902 攮 ; -+,0x10,0x13,0x10,0x7d,0x11,0x17,0x15,0x19,0x30,0x51,0x10,0x13,0x10,0x11,0x52,0x20,0x20,0xfe,0x20,0xfc,0x24,0xff,0x55,0xdc,0x88,0xfc,0x88,0xfe,0x94,0x88,0xc7,0x82 -+// 25903 支 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x0f,0x04,0x02,0x02,0x01,0x00,0x01,0x06,0x38,0x00,0x80,0x80,0x80,0xff,0x80,0x80,0xfc,0x08,0x10,0x10,0x20,0xc0,0x20,0x18,0x07,0x02 -+// 25904 攰 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x7f,0x21,0x22,0x12,0x14,0x08,0x0c,0x13,0x60,0x00,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x00,0xff,0x00 -+// 25905 攱 ; -+,0x00,0x10,0x08,0x08,0x7f,0x00,0x02,0x22,0x14,0x14,0x14,0x07,0x78,0x20,0x03,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x42,0x44,0x24,0x28,0x10,0x28,0xc4,0x03,0x00 -+// 25906 攲 ; -+,0x04,0x04,0x7f,0x04,0x0a,0x31,0x7f,0x01,0x3d,0x25,0x25,0x3d,0x01,0x01,0x05,0x02,0x08,0x08,0x88,0x7f,0x08,0x08,0xff,0x22,0x22,0x14,0x14,0x08,0x14,0x27,0x42,0x00 -+// 25907 攳 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x09,0x7e,0x43,0x24,0x25,0x18,0x08,0x14,0x23,0x40,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xde,0x92,0xde,0x04,0xff,0x44,0x24,0x0c,0x04,0xff -+// 25908 攴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x08,0x04,0x04,0x02,0x01,0x00,0x07,0x78,0x00,0x80,0x80,0x80,0xfe,0x80,0x80,0xfc,0x08,0x10,0x10,0x20,0x40,0xc0,0x30,0x0f,0x04 -+// 25909 攵 ; -+,0x02,0x02,0x04,0x07,0x04,0x0c,0x12,0x22,0x01,0x01,0x00,0x00,0x01,0x06,0x38,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x20,0x20,0xc0,0xc0,0x30,0x0f,0x04,0x00 -+// 25910 收 ; -+,0x04,0x04,0x04,0x24,0x24,0x24,0x25,0x24,0x24,0x2c,0x34,0x24,0x04,0x04,0x07,0x04,0x40,0x40,0x40,0x40,0xff,0x84,0x44,0x44,0x44,0x28,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 25911 攷 ; -+,0x00,0x00,0x7f,0x08,0x08,0x08,0x10,0x1f,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04,0x20,0x30,0xa0,0x20,0x7f,0x44,0xc4,0x44,0x28,0x28,0x10,0x18,0x24,0x47,0x82,0x00 -+// 25912 攸 ; -+,0x08,0x0c,0x08,0x12,0x12,0x12,0x33,0x52,0x12,0x12,0x12,0x12,0x10,0x11,0x16,0x10,0x40,0x60,0x40,0x40,0xff,0x84,0x44,0x44,0x28,0x28,0x10,0x28,0x44,0x87,0x02,0x00 -+// 25913 改 ; -+,0x00,0x00,0x3e,0x02,0x02,0x02,0x3e,0x21,0x20,0x20,0x22,0x24,0x28,0x31,0x26,0x00,0x20,0x30,0x20,0x20,0x7f,0x44,0xc4,0x44,0x28,0x28,0x10,0x30,0x48,0x87,0x02,0x00 -+// 25914 攺 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x21,0x20,0x20,0x22,0x24,0x28,0x31,0x26,0x00,0x40,0x60,0x40,0x40,0x7f,0x84,0xc4,0x44,0x28,0x28,0x10,0x30,0x48,0x87,0x02,0x00 -+// 25915 攻 ; -+,0x00,0x00,0x00,0x7e,0x09,0x09,0x0a,0x0c,0x08,0x0a,0x0c,0x10,0x60,0x03,0x1c,0x00,0x80,0xc0,0x80,0x80,0xff,0x84,0x84,0x84,0x48,0x48,0x30,0x30,0xc8,0x07,0x02,0x00 -+// 25916 攼 ; -+,0x00,0x3f,0x08,0x08,0x08,0x08,0x7f,0x08,0x09,0x08,0x08,0x08,0x08,0x08,0x0b,0x08,0x20,0x30,0x20,0x20,0x7f,0x42,0x42,0xc2,0x24,0x24,0x18,0x18,0x24,0xc7,0x02,0x00 -+// 25917 攽 ; -+,0x08,0x08,0x0c,0x12,0x11,0x20,0x7f,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x4a,0x04,0x10,0x18,0x10,0x20,0xbf,0xa2,0x62,0xa2,0x14,0x14,0x08,0x08,0x14,0x27,0xc2,0x00 -+// 25918 放 ; -+,0x08,0x04,0x04,0x7f,0x10,0x10,0x1e,0x13,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x20,0x30,0x20,0x7f,0x42,0x42,0xa2,0x24,0x14,0x18,0x08,0x18,0x24,0x47,0x82,0x00 -+// 25919 政 ; -+,0x00,0x00,0x7f,0x04,0x04,0x24,0x27,0x24,0x25,0x24,0x25,0x26,0x38,0x60,0x07,0x00,0x20,0x30,0xa0,0x20,0x7f,0x44,0x84,0xc4,0x28,0x28,0x10,0x10,0x28,0xc7,0x02,0x00 -+// 25920 敀 ; -+,0x08,0x08,0x10,0x3e,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x3e,0x22,0x00,0x03,0x00,0x20,0x30,0x20,0x20,0x7f,0x44,0xc4,0x44,0x28,0x28,0x10,0x10,0x28,0xc7,0x02,0x00 -+// 25921 敁 ; -+,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x22,0x3e,0x00,0x03,0x10,0x10,0x10,0x9f,0x10,0x10,0xff,0x42,0x42,0x24,0x24,0x18,0x18,0x24,0xc7,0x02 -+// 25922 敂 ; -+,0x10,0x18,0x10,0x3f,0x21,0x41,0x3d,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x05,0x02,0x10,0x18,0x10,0x3f,0x22,0x62,0xa2,0x22,0x14,0x14,0x08,0x08,0x14,0x27,0x42,0x00 -+// 25923 敃 ; -+,0x00,0x3f,0x21,0x21,0x3f,0x24,0x24,0x3f,0x24,0x24,0x24,0x22,0x22,0x2a,0x31,0x20,0x20,0x30,0x20,0x20,0x7f,0x62,0xa2,0xa2,0x14,0x14,0x08,0x08,0x94,0xa4,0xc3,0x82 -+// 25924 敄 ; -+,0x00,0x7f,0x01,0x12,0x0c,0x7f,0x05,0x0c,0x0d,0x14,0x14,0x24,0x44,0x04,0x15,0x08,0x20,0xb0,0x20,0x20,0x3f,0xc4,0x44,0xa4,0x24,0x28,0x18,0x18,0x24,0x47,0x82,0x00 -+// 25925 故 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x23,0x22,0x22,0x22,0x3e,0x20,0x03,0x00,0x20,0x30,0x20,0x20,0x7f,0x44,0x44,0xc4,0x28,0x28,0x10,0x10,0x28,0xc7,0x02,0x00 -+// 25926 敆 ; -+,0x04,0x04,0x0a,0x09,0x10,0x2f,0x40,0x00,0x1f,0x11,0x11,0x11,0x1f,0x10,0x01,0x00,0x10,0x10,0x10,0x1f,0x90,0x10,0xff,0x42,0x24,0x24,0x18,0x18,0x24,0x47,0x82,0x00 -+// 25927 敇 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x24,0x24,0x25,0x24,0x06,0x0d,0x14,0x64,0x04,0x04,0x04,0x10,0x18,0xd0,0x1f,0xa2,0xa2,0xe2,0x94,0x94,0x08,0x08,0x94,0x14,0x23,0x42,0x00 -+// 25928 效 ; -+,0x08,0x04,0x04,0x3f,0x0a,0x09,0x10,0x11,0x31,0x0a,0x04,0x06,0x09,0x10,0x61,0x00,0x10,0x18,0x10,0x90,0x3f,0x22,0xe2,0x22,0x14,0x14,0x08,0x08,0x14,0x67,0x82,0x00 -+// 25929 敉 ; -+,0x08,0x08,0x29,0x2a,0x1c,0x7f,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x20,0x30,0x20,0x20,0x7f,0x44,0xc4,0x44,0x28,0x28,0x10,0x10,0x28,0xc7,0x02,0x00 -+// 25930 敊 ; -+,0x08,0x08,0x08,0x0f,0x08,0x08,0x7f,0x08,0x08,0x2a,0x29,0x29,0x48,0x08,0x29,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x7e,0x42,0x22,0x24,0x14,0x08,0x18,0x67,0x82,0x00 -+// 25931 敋 ; -+,0x08,0x08,0x1f,0x10,0x29,0x46,0x05,0x18,0x60,0x1f,0x11,0x11,0x11,0x1f,0x10,0x00,0x10,0x18,0x90,0xbf,0x22,0x42,0x22,0xa4,0x14,0x14,0x08,0x08,0x14,0x27,0xc2,0x00 -+// 25932 敌 ; -+,0x00,0x07,0x38,0x08,0x08,0x7f,0x08,0x08,0x08,0x3f,0x21,0x21,0x21,0x3f,0x00,0x03,0x20,0x30,0x20,0x20,0x3f,0x44,0x44,0x44,0xc4,0x28,0x28,0x10,0x10,0x28,0xc7,0x02 -+// 25933 敍 ; -+,0x04,0x06,0x09,0x08,0x10,0x6f,0x04,0x04,0x3f,0x04,0x15,0x14,0x24,0x04,0x14,0x08,0x10,0x10,0x10,0x9f,0x10,0x90,0x7f,0x42,0xa2,0x24,0x14,0x88,0x88,0x14,0x27,0xc2 -+// 25934 敎 ; -+,0x11,0x0a,0x06,0x19,0x04,0x7f,0x08,0x0f,0x11,0x12,0x23,0x4e,0x32,0x02,0x0a,0x04,0x10,0x18,0x10,0x10,0x3f,0xa2,0x22,0x52,0x14,0x14,0x88,0x08,0x14,0x14,0x23,0xc2 -+// 25935 敏 ; -+,0x10,0x10,0x3f,0x20,0x3f,0x59,0x15,0x11,0x7f,0x19,0x15,0x11,0x1f,0x01,0x05,0x02,0x20,0x30,0xa0,0x20,0x7f,0x64,0xa4,0x24,0xa4,0x14,0x18,0x08,0xd4,0x14,0x23,0x42 -+// 25936 敐 ; -+,0x00,0x3f,0x20,0x20,0x3f,0x20,0x3f,0x28,0x2c,0x2b,0x29,0x28,0x28,0x2a,0x4c,0x48,0x10,0xd8,0x10,0x10,0xbf,0x22,0xe2,0x62,0x94,0x14,0x08,0x88,0xd4,0x54,0x23,0x42 -+// 25937 救 ; -+,0x04,0x05,0x05,0x7f,0x04,0x25,0x15,0x16,0x0e,0x15,0x24,0x44,0x04,0x04,0x15,0x08,0x20,0x30,0x20,0xbf,0x22,0x42,0x62,0xa4,0x14,0x94,0x88,0x08,0x14,0x64,0x83,0x02 -+// 25938 敒 ; -+,0x09,0x0d,0x09,0x17,0x15,0x15,0x37,0x55,0x15,0x17,0x11,0x11,0x11,0x11,0x11,0x00,0x08,0x0c,0x08,0xc8,0x5f,0x51,0xf1,0x52,0x4a,0xca,0x04,0x04,0x0a,0x13,0x62,0x00 -+// 25939 敓 ; -+,0x0a,0x09,0x10,0x20,0x5f,0x10,0x10,0x10,0x1f,0x0a,0x0a,0x0a,0x12,0x13,0x62,0x00,0x10,0x18,0xd0,0x20,0xbf,0xa4,0xe4,0xa4,0x94,0x18,0x08,0x18,0xa4,0x47,0x82,0x00 -+// 25940 敔 ; -+,0x00,0x7f,0x08,0x08,0x3f,0x11,0x11,0x7f,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x00,0x20,0xb0,0x20,0x20,0x7f,0x42,0xc2,0xa4,0x24,0x14,0x08,0x08,0x14,0x27,0xc2,0x00 -+// 25941 敕 ; -+,0x04,0x04,0x04,0x7f,0x04,0x3f,0x24,0x24,0x3f,0x24,0x0e,0x15,0x24,0x44,0x04,0x05,0x20,0x20,0x22,0xbf,0x24,0xc4,0xa4,0xa4,0xa4,0xa8,0x28,0x90,0xa8,0x44,0x87,0x02 -+// 25942 敖 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x04,0x7f,0x08,0x08,0x0f,0x09,0x11,0x11,0x21,0x45,0x02,0x10,0x18,0x90,0x20,0x3f,0x64,0xa4,0x24,0x14,0x14,0x08,0x08,0x14,0x27,0xc2,0x00 -+// 25943 敗 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x10,0x14,0x22,0x42,0x00,0x20,0x30,0x20,0x20,0x7f,0x44,0xc4,0x44,0x28,0x28,0x10,0x10,0x28,0x24,0x47,0x82 -+// 25944 敘 ; -+,0x04,0x06,0x09,0x08,0x10,0x6f,0x04,0x04,0x3f,0x04,0x25,0x24,0x64,0x04,0x15,0x08,0x20,0x30,0x20,0xa0,0xbf,0x62,0x62,0x22,0xa4,0x14,0x08,0x88,0x94,0x64,0x83,0x02 -+// 25945 教 ; -+,0x04,0x04,0x3f,0x05,0x7f,0x04,0x08,0x1f,0x62,0x04,0x07,0x7c,0x04,0x04,0x15,0x08,0x10,0x10,0x90,0x3f,0xe2,0x22,0x62,0x24,0x14,0x14,0x88,0x08,0x14,0x64,0x83,0x02 -+// 25946 敚 ; -+,0x00,0x11,0x09,0x0a,0x3f,0x21,0x21,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x23,0x42,0x01,0x00,0x10,0x10,0x20,0x3f,0x22,0x42,0x62,0x94,0x14,0x08,0x08,0x94,0x24,0x43,0x82 -+// 25947 敛 ; -+,0x04,0x04,0x0a,0x09,0x10,0x2f,0x40,0x08,0x24,0x14,0x15,0x10,0x07,0x38,0x03,0x00,0x20,0x30,0x20,0xa0,0xbf,0x64,0x64,0xa4,0xa4,0x94,0x08,0xc8,0x14,0x67,0x82,0x00 -+// 25948 敜 ; -+,0x04,0x04,0x0a,0x19,0x24,0x42,0x1f,0x01,0x02,0x04,0x02,0x2a,0x28,0x68,0x07,0x00,0x20,0x30,0x20,0xa0,0xff,0x62,0xa2,0x24,0x14,0x14,0x88,0x48,0x94,0xa7,0xc2,0x00 -+// 25949 敝 ; -+,0x00,0x04,0x24,0x15,0x0e,0x3f,0x24,0x2c,0x2e,0x37,0x24,0x24,0x24,0x24,0x24,0x21,0x00,0x10,0x98,0x90,0x3f,0xa2,0xe2,0xa2,0x94,0x94,0x88,0x88,0x94,0xa4,0xc3,0x82 -+// 25950 敞 ; -+,0x04,0x04,0x24,0x15,0x0e,0x3f,0x20,0x2e,0x2a,0x2a,0x2a,0x2e,0x20,0x20,0x22,0x21,0x10,0x18,0x90,0x10,0x3f,0xa2,0xe2,0xa4,0x94,0x94,0x88,0x88,0x94,0xa4,0xc3,0x02 -+// 25951 敟 ; -+,0x0a,0x0a,0x0a,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x7f,0x00,0x11,0x10,0x20,0x40,0x00,0x10,0x18,0x10,0x90,0xbf,0xa4,0xe4,0xa4,0x94,0xd4,0x08,0x08,0x94,0xa7,0xc2,0x00 -+// 25952 敠 ; -+,0x00,0x3b,0x0a,0x29,0x11,0x1a,0x24,0x7b,0x08,0x2a,0x11,0x11,0x2a,0x24,0x40,0x00,0x08,0xc8,0x48,0x8f,0x88,0x48,0x3e,0xa2,0x94,0x94,0x08,0x08,0xd4,0xa3,0x42,0x00 -+// 25953 敡 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x1f,0x2a,0x4a,0x12,0x14,0x25,0x09,0x35,0x02,0x10,0x10,0x10,0x1f,0x10,0x10,0x7e,0xc4,0xa4,0xa4,0x98,0x88,0x14,0x27,0x42,0x00 -+// 25954 敢 ; -+,0x00,0x3e,0x02,0x02,0x7f,0x12,0x1e,0x13,0x1e,0x12,0x13,0x1e,0x72,0x02,0x03,0x02,0x20,0x30,0x20,0x20,0x7f,0x44,0xc4,0x44,0x28,0x28,0x90,0x18,0x2c,0x47,0x82,0x00 -+// 25955 散 ; -+,0x12,0x12,0x7f,0x12,0x12,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x25,0x22,0x20,0x30,0xa0,0x20,0x3f,0xc2,0x62,0xa4,0x14,0x14,0x08,0x08,0x14,0x14,0x23,0x42 -+// 25956 敤 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x0c,0x16,0x15,0x25,0x44,0x04,0x04,0x04,0x10,0x90,0x90,0x9f,0x90,0x90,0x7e,0xc2,0x22,0x24,0x14,0x88,0x94,0x27,0xc2,0x00 -+// 25957 敥 ; -+,0x04,0x24,0x15,0x16,0x0a,0x09,0x35,0x04,0x25,0x16,0x04,0x0a,0x09,0x11,0x60,0x01,0x10,0x90,0x10,0x1f,0x10,0x10,0x7e,0x42,0x44,0x24,0x28,0x10,0x18,0x24,0x47,0x82 -+// 25958 敦 ; -+,0x08,0x04,0x7f,0x00,0x3f,0x21,0x3f,0x00,0x3f,0x02,0x07,0x7c,0x04,0x04,0x15,0x08,0x20,0x30,0xa0,0x20,0x7f,0x44,0xc4,0x44,0x28,0x28,0x90,0x10,0x28,0x44,0x87,0x02 -+// 25959 敧 ; -+,0x04,0x04,0x3f,0x04,0x0a,0x31,0x7f,0x01,0x3d,0x25,0x25,0x3d,0x01,0x01,0x05,0x02,0x10,0x10,0x90,0x1f,0x10,0x10,0xfe,0x42,0x24,0x24,0x18,0x08,0x14,0x24,0xc3,0x02 -+// 25960 敨 ; -+,0x08,0x04,0x3f,0x00,0x11,0x09,0x0a,0x7f,0x00,0x1f,0x11,0x11,0x11,0x1f,0x10,0x00,0x10,0x10,0x90,0x1f,0x22,0x22,0x62,0xa4,0x14,0x14,0x08,0x08,0x14,0x27,0xc2,0x00 -+// 25961 敩 ; -+,0x11,0x49,0x29,0x22,0x00,0x7f,0x40,0x1f,0x02,0x04,0x07,0x7c,0x04,0x04,0x14,0x08,0x10,0x90,0x10,0x20,0x3f,0xc2,0xa2,0x22,0x14,0x14,0x88,0x08,0x14,0x14,0x23,0x42 -+// 25962 敪 ; -+,0x00,0x7b,0x2a,0x11,0x19,0x2a,0x40,0x3f,0x04,0x16,0x09,0x15,0x22,0x44,0x08,0x00,0x10,0xd0,0x50,0x90,0x9f,0x62,0x22,0xd2,0x94,0x94,0x08,0x88,0x54,0x27,0xc2,0x00 -+// 25963 敫 ; -+,0x04,0x08,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x7f,0x08,0x0f,0x09,0x11,0x11,0x25,0x02,0x10,0x10,0x10,0x10,0x3f,0x22,0x62,0xa2,0x94,0x14,0x08,0x18,0x24,0x47,0x82,0x00 -+// 25964 敬 ; -+,0x09,0x09,0x7f,0x09,0x10,0x1f,0x20,0x40,0x1e,0x12,0x12,0x1e,0x00,0x00,0x02,0x01,0x10,0x10,0xd0,0x10,0x3f,0xa2,0xe2,0xa4,0x94,0x94,0x88,0x88,0x94,0xa7,0xc2,0x00 -+// 25965 敭 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x7f,0x10,0x1f,0x2a,0x0a,0x32,0x04,0x18,0x05,0x02,0x10,0x10,0x10,0x20,0x3f,0x62,0xa2,0x22,0x94,0x94,0x88,0x88,0x94,0xa4,0x43,0x02 -+// 25966 敮 ; -+,0x03,0x3c,0x04,0x04,0x7f,0x04,0x15,0x24,0x24,0x37,0x24,0x24,0x3f,0x20,0x00,0x00,0x88,0x08,0x08,0x0f,0xc8,0x08,0xbf,0xa2,0xa2,0x94,0x94,0x88,0x94,0x27,0xc2,0x00 -+// 25967 敯 ; -+,0x3f,0x21,0x3f,0x24,0x3f,0x24,0x32,0x61,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x20,0x00,0x08,0x08,0x0f,0x08,0x88,0x08,0xbf,0xa2,0x22,0x14,0x14,0x08,0x14,0x27,0xc2,0x00 -+// 25968 数 ; -+,0x04,0x24,0x15,0x0e,0x7f,0x0e,0x15,0x24,0x04,0x7f,0x09,0x1a,0x06,0x19,0x60,0x00,0x10,0x98,0x10,0x10,0xbf,0x22,0xa2,0x62,0x14,0x94,0x08,0x08,0x14,0x27,0x42,0x00 -+// 25969 敱 ; -+,0x04,0x24,0x24,0x3f,0x00,0x7f,0x00,0x3f,0x21,0x3f,0x00,0x22,0x14,0x0f,0x71,0x00,0x10,0x90,0x90,0x9f,0x10,0x90,0x7e,0x42,0x24,0x24,0x18,0x18,0x24,0x47,0x82,0x00 -+// 25970 敲 ; -+,0x08,0x04,0x7f,0x00,0x1f,0x11,0x1f,0x00,0x7f,0x40,0x5e,0x52,0x5e,0x40,0x42,0x41,0x10,0x10,0xd0,0x1f,0x10,0x10,0x7f,0x42,0xa2,0xa4,0x94,0x88,0x98,0xa4,0xc7,0x02 -+// 25971 敳 ; -+,0x04,0x24,0x24,0x3f,0x00,0x3f,0x00,0x3f,0x20,0x3f,0x11,0x0a,0x07,0x78,0x03,0x00,0x10,0x98,0x90,0x90,0x3f,0xa2,0x62,0xa2,0x94,0x94,0x08,0x18,0xa4,0xc7,0x02,0x00 -+// 25972 整 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x15,0x1f,0x0e,0x15,0x3f,0x00,0x08,0x08,0x08,0x3f,0x00,0x10,0x10,0xbf,0x22,0x54,0x14,0x08,0x14,0x63,0xfe,0x80,0xf8,0x80,0x80,0xfe,0x00 -+// 25973 敵 ; -+,0x04,0x04,0x7f,0x11,0x0a,0x3f,0x24,0x3f,0x24,0x2e,0x2a,0x2a,0x2e,0x20,0x22,0x21,0x10,0x18,0xd0,0x10,0x3f,0xa2,0xe2,0xa2,0x94,0x94,0x88,0x88,0x94,0xa7,0xc2,0x00 -+// 25974 敶 ; -+,0x01,0x3d,0x27,0x29,0x37,0x35,0x2f,0x25,0x25,0x37,0x2b,0x25,0x21,0x21,0x21,0x00,0x08,0x08,0xe8,0x08,0xdf,0x52,0xd2,0x32,0x14,0x8c,0x48,0x0c,0x14,0x23,0x42,0x00 -+// 25975 敷 ; -+,0x05,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x02,0x7f,0x08,0x0f,0x10,0x12,0x21,0x10,0xd8,0x10,0x90,0xbf,0xa2,0xd2,0x94,0x94,0x14,0xc8,0x08,0x94,0xe3,0x82,0x00 -+// 25976 數 ; -+,0x04,0x3f,0x24,0x7f,0x24,0x3f,0x04,0x3f,0x24,0x3f,0x04,0x7f,0x11,0x0a,0x0e,0x71,0x10,0x90,0x90,0xd0,0xbf,0xa4,0x24,0xa4,0xe4,0x94,0x14,0x88,0x08,0x14,0x67,0x82 -+// 25977 敹 ; -+,0x08,0x08,0x0f,0x08,0x7f,0x45,0x18,0x2a,0x1c,0x7f,0x0c,0x1a,0x29,0x48,0x09,0x08,0x20,0x30,0x20,0x20,0xbf,0x44,0x44,0xa4,0x24,0x18,0x08,0x18,0x24,0x47,0x82,0x00 -+// 25978 敺 ; -+,0x00,0x7f,0x40,0x4e,0x4a,0x4e,0x40,0x5f,0x55,0x55,0x55,0x5f,0x40,0x7f,0x01,0x00,0x10,0x90,0x10,0x1f,0x10,0x10,0x7e,0x42,0x24,0x24,0x18,0x18,0x24,0x47,0x82,0x00 -+// 25979 敻 ; -+,0x03,0x04,0x1f,0x70,0x13,0x1f,0x00,0x0f,0x09,0x08,0x0f,0x04,0x0f,0x12,0x01,0x3e,0xf8,0x10,0xfe,0xc2,0x22,0xfe,0x00,0xfc,0x24,0x94,0xfc,0x00,0xfc,0x10,0xe0,0x1f -+// 25980 敼 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x1f,0x10,0x1f,0x09,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x00,0x08,0xc8,0x08,0x8f,0x08,0x88,0xff,0xa2,0x22,0xd4,0x14,0x88,0x94,0xa7,0xc2,0x00 -+// 25981 敽 ; -+,0x03,0x3c,0x04,0x7f,0x09,0x1f,0x69,0x0f,0x00,0x3f,0x20,0x2e,0x2a,0x2e,0x20,0x21,0x90,0x10,0x10,0xdf,0x10,0x90,0x7e,0x42,0x24,0xa4,0x98,0x88,0x98,0xa4,0xc7,0x82 -+// 25982 敾 ; -+,0x11,0x0a,0x3f,0x04,0x3f,0x04,0x3f,0x15,0x0e,0x7f,0x00,0x1f,0x11,0x11,0x1f,0x10,0x10,0x10,0x90,0x10,0xbf,0x22,0xa2,0x62,0x14,0xd4,0x08,0x08,0x14,0x14,0x23,0xc2 -+// 25983 敿 ; -+,0x07,0x38,0x08,0x7f,0x11,0x3f,0x51,0x1f,0x00,0x3f,0x20,0x2e,0x2a,0x2e,0x20,0x21,0x20,0x20,0x20,0xe0,0x3f,0xa2,0x62,0xa2,0x14,0x94,0x88,0x88,0x94,0xa4,0xc3,0x82 -+// 25984 斀 ; -+,0x00,0x3f,0x2a,0x3f,0x10,0x1f,0x28,0x48,0x3e,0x2a,0x3e,0x0a,0x7f,0x00,0x02,0x01,0x08,0x88,0x88,0x8f,0x08,0x88,0xff,0xa2,0xa2,0x94,0x94,0x88,0x98,0xa4,0xc7,0x02 -+// 25985 斁 ; -+,0x00,0x3f,0x2a,0x2a,0x3f,0x04,0x1f,0x04,0x3f,0x0a,0x3f,0x04,0x7f,0x04,0x05,0x04,0x10,0x90,0x90,0xa0,0xbf,0x44,0xc4,0x24,0xa8,0x18,0x10,0x18,0xa8,0x44,0x87,0x02 -+// 25986 斂 ; -+,0x04,0x06,0x09,0x10,0x6f,0x00,0x3d,0x25,0x25,0x3d,0x10,0x10,0x29,0x25,0x42,0x04,0x10,0x10,0x10,0xd0,0x9f,0x22,0xf2,0x52,0x54,0xcc,0x88,0x88,0x54,0x24,0xc3,0x02 -+// 25987 斃 ; -+,0x15,0x0e,0x3f,0x24,0x2e,0x35,0x24,0x00,0x3f,0x08,0x0f,0x19,0x26,0x0c,0x70,0x00,0x10,0x10,0xbf,0xa4,0xd4,0x88,0xb7,0x00,0xff,0x20,0xa6,0x38,0x21,0x21,0x1f,0x00 -+// 25988 斄 ; -+,0x04,0x3f,0x04,0x3f,0x0e,0x35,0x1f,0x10,0x1f,0x12,0x12,0x15,0x28,0x23,0x3c,0x40,0x20,0x3f,0x62,0x94,0x0c,0x32,0xff,0x40,0xfe,0x48,0x48,0x74,0xd2,0x48,0x47,0x42 -+// 25989 斅 ; -+,0x08,0x35,0x22,0x35,0x20,0x35,0x22,0x25,0x7f,0x40,0x0f,0x01,0x03,0x3e,0x02,0x06,0x08,0x68,0x28,0x6f,0x28,0x68,0x3f,0x21,0xf2,0x52,0x8c,0x08,0xcc,0x14,0x23,0xc2 -+// 25990 斆 ; -+,0x10,0x2b,0x24,0x3b,0x20,0x3b,0x24,0x2a,0x7f,0x40,0x1e,0x04,0x07,0x3c,0x04,0x0c,0x10,0x98,0x90,0x90,0xbf,0xa2,0xa2,0xa2,0xd4,0x94,0x08,0x08,0x94,0x24,0xc3,0x02 -+// 25991 文 ; -+,0x01,0x00,0x00,0x7f,0x04,0x04,0x04,0x02,0x02,0x01,0x00,0x01,0x02,0x0c,0x70,0x00,0x00,0x80,0x80,0xff,0x10,0x10,0x10,0x20,0x20,0x40,0x80,0x40,0x30,0x0f,0x04,0x00 -+// 25992 斈 ; -+,0x00,0x00,0x3f,0x02,0x01,0x00,0x03,0x1c,0x03,0x00,0x00,0x3f,0x00,0x00,0x01,0x00,0x80,0x40,0xff,0x10,0x20,0xc0,0x30,0x0f,0xf4,0x20,0x40,0xff,0x40,0x40,0x40,0x80 -+// 25993 斉 ; -+,0x00,0x00,0x3f,0x02,0x01,0x00,0x03,0x3c,0x04,0x07,0x04,0x07,0x04,0x08,0x08,0x10,0x80,0x40,0xff,0x10,0x20,0xc0,0x30,0x0f,0x0c,0xf8,0x08,0xf8,0x08,0x08,0x08,0x08 -+// 25994 斊 ; -+,0x00,0x3f,0x02,0x01,0x00,0x03,0x7c,0x1f,0x04,0x07,0x04,0x07,0x04,0x3f,0x00,0x00,0x80,0xff,0x10,0x20,0xc0,0x70,0x0f,0xfc,0x10,0xf0,0x10,0xf0,0x1f,0xf0,0x10,0x10 -+// 25995 斋 ; -+,0x01,0x00,0x3f,0x02,0x01,0x00,0x03,0x7c,0x1f,0x01,0x1f,0x11,0x11,0x11,0x11,0x10,0x00,0x80,0xff,0x10,0x20,0xc0,0x70,0x0f,0xfe,0x00,0xfc,0x24,0x24,0x24,0x24,0x0c -+// 25996 斌 ; -+,0x00,0x10,0x09,0x7e,0x03,0x04,0x25,0x15,0x15,0x09,0x09,0x15,0x25,0x43,0x00,0x00,0x08,0x0c,0xea,0x08,0xff,0x48,0x48,0x48,0x78,0x48,0x48,0x45,0x75,0x83,0x01,0x00 -+// 25997 斍 ; -+,0x00,0x3f,0x02,0x01,0x00,0x03,0x3f,0x04,0x07,0x04,0x07,0x04,0x07,0x01,0x02,0x1c,0x80,0xff,0x10,0x20,0xc0,0x30,0xff,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x41,0x41,0x3f -+// 25998 斎 ; -+,0x01,0x00,0x3f,0x02,0x01,0x00,0x03,0x3c,0x0b,0x08,0x0f,0x08,0x0a,0x12,0x14,0x20,0x00,0x80,0xff,0x10,0x20,0xc0,0x30,0x0f,0xf4,0x04,0xfc,0x84,0xa4,0x94,0x94,0x84 -+// 25999 斏 ; -+,0x10,0x08,0x08,0x7e,0x04,0x24,0x14,0x08,0x08,0x14,0x12,0x22,0x40,0x00,0x00,0x00,0x20,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0xa0,0x92,0x94,0x88,0xa4,0xc7,0x82,0x00 -+// 26000 斐 ; -+,0x02,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x00,0x3f,0x02,0x01,0x00,0x00,0x03,0x1c,0x20,0x20,0x3e,0x20,0x3c,0x20,0x3f,0xa0,0x40,0xff,0x08,0x10,0xa0,0xc0,0x30,0x0e -+// 26001 斑 ; -+,0x00,0x7d,0x10,0x17,0x12,0x12,0x7d,0x11,0x10,0x10,0x11,0x11,0x1a,0x64,0x18,0x00,0x00,0x3f,0x88,0xe8,0x48,0x48,0x48,0xbe,0x88,0xc8,0x48,0x48,0x48,0x08,0x7f,0x00 -+// 26002 斒 ; -+,0x00,0x10,0x09,0x7f,0x05,0x25,0x15,0x09,0x09,0x0d,0x15,0x12,0x22,0x44,0x08,0x00,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xff,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0x85,0x82 -+// 26003 斓 ; -+,0x01,0x10,0x09,0x7f,0x05,0x25,0x25,0x15,0x19,0x09,0x15,0x25,0x41,0x01,0x01,0x01,0x00,0xbf,0x01,0x11,0xff,0x11,0xff,0x55,0xff,0x39,0x55,0x53,0x91,0x11,0x05,0x02 -+// 26004 斔 ; -+,0x10,0x08,0x7f,0x12,0x0c,0x14,0x6b,0x08,0x3f,0x29,0x3f,0x08,0x09,0x7f,0x00,0x01,0x08,0x28,0x4b,0x49,0x49,0x6b,0x49,0x49,0x7f,0x08,0x08,0x18,0x14,0xa4,0x43,0x82 -+// 26005 斕 ; -+,0x03,0x22,0x13,0x7e,0x0b,0x0a,0x4b,0x2a,0x13,0x1a,0x2b,0x2a,0x42,0x03,0x02,0x02,0xdf,0x51,0xdf,0x51,0xdf,0x21,0xff,0x21,0xfd,0xb5,0xfd,0x71,0xad,0x21,0x25,0x02 -+// 26006 斖 ; -+,0x00,0x3f,0x01,0x00,0x3f,0x1b,0x12,0x1b,0x12,0x1a,0x3f,0x20,0x07,0x05,0x04,0x3f,0x80,0xff,0x10,0xe0,0x1f,0xf6,0x12,0xf6,0xf2,0x96,0xff,0x02,0xf8,0x28,0x98,0xff -+// 26007 斗 ; -+,0x00,0x04,0x02,0x03,0x09,0x04,0x06,0x02,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3f,0xe0,0x20,0x20,0x20,0x20,0x20,0x20 -+// 26008 斘 ; -+,0x08,0x08,0x08,0x1f,0x10,0x21,0x31,0x4a,0x02,0x04,0x04,0x08,0x10,0x20,0x40,0x00,0x04,0x44,0x24,0xb4,0x84,0x44,0x34,0x24,0x07,0xfc,0x04,0x04,0x04,0x04,0x04,0x04 -+// 26009 料 ; -+,0x04,0x04,0x25,0x16,0x0c,0x7f,0x0e,0x15,0x15,0x24,0x24,0x44,0x04,0x04,0x04,0x04,0x04,0x44,0x24,0x24,0x04,0x84,0x44,0x24,0x27,0xfc,0x04,0x04,0x04,0x04,0x04,0x04 -+// 26010 斚 ; -+,0x04,0x04,0x0a,0x1f,0x00,0x3f,0x20,0x03,0x00,0x0c,0x02,0x00,0x3f,0x00,0x00,0x00,0x10,0x10,0x24,0x7e,0x00,0xff,0x12,0x10,0x90,0x10,0x17,0xf8,0x10,0x10,0x10,0x10 -+// 26011 斛 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x54,0x14,0x1f,0x14,0x14,0x1f,0x14,0x24,0x24,0x42,0x01,0x04,0x04,0x24,0x14,0x94,0xc4,0xa4,0xa4,0x84,0xff,0x84,0x84,0x84,0x84,0x84,0x04 -+// 26012 斜 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x04,0x3f,0x04,0x25,0x24,0x44,0x04,0x14,0x08,0x04,0x04,0x24,0x94,0x94,0x04,0x44,0x24,0x87,0x7c,0x04,0x84,0x84,0x04,0x04,0x04 -+// 26013 斝 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x3f,0x22,0x01,0x09,0x04,0x00,0x7f,0x00,0x00,0x00,0x00,0x7c,0x44,0x44,0x7c,0x00,0xff,0x22,0x20,0x20,0x20,0x3f,0xe0,0x20,0x20,0x20,0x20 -+// 26014 斞 ; -+,0x04,0x14,0x25,0x24,0x24,0x35,0x24,0x24,0x3f,0x04,0x06,0x09,0x09,0x10,0x60,0x00,0x04,0x04,0xa4,0x94,0x94,0xa4,0x94,0x94,0x87,0x7c,0x04,0x04,0x84,0xc4,0x84,0x04 -+// 26015 斟 ; -+,0x11,0x11,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x25,0x24,0x28,0x20,0x3f,0x00,0x00,0x04,0x24,0xd4,0x14,0x04,0x24,0x14,0x14,0xc7,0x3c,0x84,0x84,0x04,0xc4,0x04,0x00 -+// 26016 斠 ; -+,0x09,0x3f,0x09,0x3f,0x09,0x7f,0x04,0x1f,0x14,0x1f,0x14,0x7f,0x10,0x10,0x12,0x11,0x02,0xc2,0x12,0xca,0x0a,0xe2,0x12,0x8a,0x83,0xbe,0x82,0xe2,0x82,0x82,0x82,0x02 -+// 26017 斡 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x24,0x43,0x8a,0x28,0x18,0x48,0x28,0x0f,0x78,0x08,0x08,0x08,0x08 -+// 26018 斢 ; -+,0x0a,0x0a,0x3f,0x0a,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x12,0x11,0x21,0x21,0x04,0x04,0xa4,0x14,0xd4,0x04,0xa4,0x94,0x87,0xbc,0x84,0x04,0x04,0x04,0x84,0x04 -+// 26019 斣 ; -+,0x00,0x3f,0x2a,0x3f,0x10,0x1f,0x28,0x7e,0x2a,0x3e,0x08,0x0a,0x3e,0x00,0x02,0x01,0x04,0xa4,0x94,0x94,0x04,0xa4,0x94,0x94,0x87,0xfc,0x84,0x84,0x84,0x84,0x84,0x04 -+// 26020 斤 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x38,0xc0,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 26021 斥 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x3c,0xc0,0x00,0x00,0x00,0xff,0x20,0x20,0xe0,0x30,0x2c,0x24,0x20,0x20,0x20,0x20 -+// 26022 斦 ; -+,0x00,0x03,0x1c,0x10,0x10,0x1f,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x43,0x02,0x00,0x87,0x38,0x20,0x20,0xbf,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x84,0x04,0x04 -+// 26023 斧 ; -+,0x02,0x0c,0x33,0x00,0x03,0x3c,0x00,0x07,0x04,0x07,0x04,0x08,0x08,0x10,0x60,0x00,0x10,0x0c,0x32,0xc0,0x30,0x0f,0x34,0xc0,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20 -+// 26024 斨 ; -+,0x02,0x12,0x12,0x12,0x1e,0x02,0x02,0x7e,0x12,0x12,0x12,0x12,0x22,0x22,0x43,0x02,0x0e,0x70,0x40,0x40,0x40,0x7f,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 26025 斩 ; -+,0x08,0x08,0x7f,0x08,0x10,0x14,0x24,0x3f,0x04,0x04,0x7f,0x04,0x04,0x05,0x06,0x04,0x00,0x07,0x78,0x40,0x40,0x40,0x7f,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 26026 斪 ; -+,0x10,0x18,0x10,0x3f,0x21,0x41,0x01,0x3d,0x25,0x25,0x3d,0x01,0x01,0x01,0x05,0x02,0x00,0x06,0x38,0x20,0x20,0x20,0x3f,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04,0x04 -+// 26027 斫 ; -+,0x00,0x7f,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x1e,0x10,0x01,0x06,0x00,0x04,0x7e,0x40,0x40,0x40,0x7f,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08,0x08 -+// 26028 斬 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x04,0x7f,0x04,0x04,0x05,0x04,0x00,0x07,0xb8,0x20,0x20,0x20,0x3f,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04,0x04 -+// 26029 断 ; -+,0x02,0x22,0x32,0x2a,0x2b,0x22,0x3f,0x26,0x2b,0x2a,0x32,0x22,0x22,0x3f,0x01,0x00,0x00,0x07,0xb8,0xa0,0x20,0x20,0xbf,0x24,0x24,0xa4,0x24,0x44,0x44,0x84,0x04,0x04 -+// 26030 斮 ; -+,0x12,0x12,0x12,0x7f,0x12,0x12,0x7f,0x00,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x3f,0x20,0xa0,0x20,0x3f,0xa4,0x24,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 26031 斯 ; -+,0x11,0x11,0x7f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x7f,0x00,0x12,0x31,0x41,0x00,0x06,0x38,0xa0,0x20,0x20,0x3f,0x24,0x24,0x24,0x24,0xa4,0x24,0x44,0x44,0x84,0x04 -+// 26032 新 ; -+,0x08,0x04,0x3f,0x11,0x0a,0x7f,0x04,0x04,0x7f,0x04,0x16,0x15,0x25,0x44,0x15,0x08,0x00,0x07,0xb8,0x20,0x20,0xbf,0x24,0x24,0xa4,0x24,0x24,0x44,0x44,0x84,0x04,0x04 -+// 26033 斱 ; -+,0x08,0x08,0x3f,0x09,0x0a,0x7f,0x04,0x08,0x3f,0x51,0x1f,0x11,0x11,0x1f,0x10,0x00,0x06,0x38,0x20,0x20,0x20,0xbf,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 26034 斲 ; -+,0x10,0x2b,0x2a,0x2a,0x3b,0x0a,0x3b,0x20,0x3b,0x0a,0x0a,0x0a,0x0b,0x3c,0x00,0x00,0x06,0xb8,0xa0,0xa0,0xa0,0x3f,0xa4,0xa4,0xa4,0x24,0x24,0x24,0xc4,0x44,0x84,0x04 -+// 26035 斳 ; -+,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x07,0x78,0x01,0x06,0xb8,0x20,0x20,0x20,0xbf,0xa4,0xa4,0x24,0xa4,0x24,0xa4,0x44,0x44,0x84,0x04 -+// 26036 斴 ; -+,0x04,0x24,0x15,0x7f,0x0d,0x14,0x64,0x10,0x1f,0x26,0x3a,0x4b,0x10,0x20,0x40,0x00,0x00,0x83,0x1c,0xd0,0x10,0xdf,0x12,0x92,0xd2,0x92,0x92,0xd2,0xa2,0xa2,0xc2,0x82 -+// 26037 斵 ; -+,0x08,0x33,0x21,0x29,0x32,0x00,0x3f,0x0a,0x3b,0x20,0x3b,0x0a,0x0b,0x0e,0x70,0x00,0x00,0xc3,0x5c,0x50,0xd0,0x1f,0xd2,0x12,0x92,0x92,0x92,0x22,0xa2,0x42,0x82,0x02 -+// 26038 斶 ; -+,0x04,0x09,0x31,0x21,0x21,0x3e,0x24,0x25,0x26,0x24,0x24,0x24,0x25,0x44,0x44,0x04,0x00,0xfe,0x52,0x52,0xfe,0x40,0xff,0x21,0xf9,0xa9,0xf9,0x25,0xff,0x01,0x05,0x02 -+// 26039 斷 ; -+,0x51,0x62,0x7b,0x51,0x6a,0x7f,0x40,0x7f,0x51,0x62,0x7b,0x51,0x7b,0x48,0x7f,0x00,0x02,0x3f,0xa0,0x20,0xa0,0xbf,0x24,0xa4,0x24,0x24,0xa4,0x24,0xa4,0xc4,0xc4,0x84 -+// 26040 斸 ; -+,0x3f,0x20,0x3f,0x2a,0x27,0x2a,0x3f,0x35,0x3f,0x24,0x3f,0x25,0x3f,0x24,0x47,0x5c,0xc3,0x5c,0xd0,0x90,0x10,0x9f,0xd2,0x52,0xd2,0x52,0x52,0x52,0x52,0x52,0x52,0xa2 -+// 26041 方 ; -+,0x01,0x00,0x00,0x7f,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x60,0x00,0x00,0x80,0x40,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x30,0x00 -+// 26042 斺 ; -+,0x00,0x10,0x08,0x7f,0x10,0x11,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x05,0x10,0x10,0x30,0x28,0x44,0x83,0x4a,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 26043 斻 ; -+,0x10,0x08,0x08,0x7f,0x10,0x10,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x40,0x60,0x40,0x7f,0x80,0xbc,0x24,0x24,0x24,0x24,0x24,0x44,0x45,0x85,0x07,0x00 -+// 26044 於 ; -+,0x10,0x08,0x08,0x7f,0x10,0x10,0x1e,0x13,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x10,0x10,0x30,0x28,0x44,0x46,0xa3,0x10,0x08,0x08,0x20,0x10,0x08,0x0c,0x04,0x00 -+// 26045 施 ; -+,0x10,0x08,0x08,0x7e,0x10,0x11,0x1e,0x12,0x12,0x13,0x12,0x12,0x22,0x2a,0x44,0x00,0x40,0x60,0x40,0xff,0x80,0x10,0x50,0x5e,0x72,0xd2,0x52,0x56,0x51,0x41,0x3f,0x00 -+// 26046 斾 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x00,0x40,0x40,0xff,0x90,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x96,0x10,0x10,0x10 -+// 26047 斿 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x40,0x40,0xff,0x80,0x00,0x7c,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 26048 旀 ; -+,0x10,0x08,0x7f,0x10,0x10,0x1e,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x2b,0x44,0x00,0x10,0x10,0x20,0x42,0xff,0x01,0x10,0x10,0x54,0x52,0x93,0x91,0x91,0x10,0x50,0x20 -+// 26049 旁 ; -+,0x01,0x00,0x1f,0x04,0x02,0x3f,0x20,0x00,0x1f,0x01,0x01,0x02,0x02,0x04,0x18,0x00,0x00,0x80,0xfe,0x10,0x20,0xff,0x82,0x40,0xfe,0x00,0xf8,0x08,0x08,0x08,0x28,0x10 -+// 26050 旂 ; -+,0x10,0x08,0x08,0x7e,0x10,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x2b,0x45,0x02,0x00,0x40,0x40,0x7f,0x80,0x1c,0xe0,0x80,0xff,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 26051 旃 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x05,0x00,0x40,0x40,0xff,0x80,0x7e,0x42,0x52,0x4a,0xff,0x42,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 26052 旄 ; -+,0x10,0x08,0x08,0x7e,0x11,0x11,0x1e,0x12,0x13,0x12,0x13,0x12,0x22,0x22,0x4a,0x04,0x40,0x40,0xff,0x80,0x1c,0xe0,0x20,0x3e,0xe0,0x3f,0xe0,0x20,0x21,0x21,0x1f,0x00 -+// 26053 旅 ; -+,0x10,0x08,0x08,0x7f,0x10,0x11,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x20,0x20,0x40,0x7f,0x80,0x06,0x78,0x40,0x66,0x58,0x50,0x48,0x44,0x53,0x62,0x40 -+// 26054 旆 ; -+,0x10,0x08,0x00,0x7e,0x11,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x00,0x40,0x40,0xff,0x90,0x10,0xff,0x10,0x7e,0x52,0x52,0x52,0x52,0x56,0x10,0x10,0x10 -+// 26055 旇 ; -+,0x10,0x08,0x00,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x23,0x4a,0x04,0x40,0x40,0xff,0x90,0x10,0xff,0x92,0x90,0xfe,0xc2,0xa4,0x98,0x98,0x27,0xc2,0x00 -+// 26056 旈 ; -+,0x10,0x08,0x08,0x7f,0x10,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x22,0x54,0x0b,0x00,0x20,0x10,0xff,0x10,0x24,0x42,0xff,0x01,0x54,0x54,0x54,0x54,0x95,0x95,0x17,0x00 -+// 26057 旉 ; -+,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x09,0x7f,0x02,0x07,0x04,0x08,0x10,0x90,0xff,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x8c,0xff,0x00,0xf0,0x10,0x50,0x20 -+// 26058 旊 ; -+,0x10,0x08,0x08,0x7e,0x10,0x11,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x40,0x40,0x7f,0x80,0xff,0x20,0x20,0x3c,0x24,0x64,0x54,0x44,0x55,0x65,0xc7,0x00 -+// 26059 旋 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x22,0x55,0x09,0x02,0x40,0x40,0x7f,0x80,0x00,0xff,0x12,0x90,0x90,0x9e,0x90,0x90,0xd0,0x30,0x0f,0x00 -+// 26060 旌 ; -+,0x10,0x08,0x08,0x7e,0x10,0x11,0x1e,0x12,0x12,0x13,0x12,0x12,0x22,0x22,0x4b,0x04,0x40,0x40,0x40,0xff,0x90,0x10,0x50,0xfe,0x90,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 26061 旍 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x13,0x12,0x12,0x22,0x22,0x2a,0x44,0x00,0x40,0x40,0xff,0x80,0x20,0x30,0x48,0xa6,0x13,0xfc,0x08,0x10,0x60,0x30,0x10,0x00 -+// 26062 旎 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x01,0x02,0x40,0x40,0xff,0x80,0xfe,0x82,0xfe,0xa0,0xa0,0xa6,0xb8,0xa1,0xa1,0x21,0x1f,0x00 -+// 26063 族 ; -+,0x10,0x08,0x08,0x7e,0x10,0x11,0x1e,0x12,0x12,0x12,0x12,0x22,0x22,0x22,0x4b,0x04,0x40,0x60,0x40,0xff,0x80,0x40,0x7e,0x90,0x10,0xff,0x10,0x10,0x28,0x44,0x83,0x00 -+// 26064 旐 ; -+,0x10,0x08,0x08,0x7e,0x10,0x11,0x1e,0x12,0x12,0x12,0x13,0x22,0x22,0x4a,0x05,0x02,0x40,0x40,0xff,0x80,0x50,0x52,0xd4,0x58,0x58,0xd4,0x52,0x50,0x91,0x91,0x0f,0x00 -+// 26065 旑 ; -+,0x10,0x08,0x08,0x7f,0x10,0x10,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x10,0x10,0xff,0x10,0x2c,0x42,0xff,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 26066 旒 ; -+,0x10,0x08,0x7e,0x11,0x12,0x1c,0x14,0x14,0x14,0x14,0x14,0x24,0x24,0x54,0x0b,0x00,0x80,0x80,0xfe,0x20,0xfe,0x20,0x48,0xfc,0x02,0xa8,0xa8,0xa8,0xa9,0xa9,0x27,0x00 -+// 26067 旓 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x40,0x40,0xff,0x90,0x52,0x34,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 26068 旔 ; -+,0x00,0x13,0x08,0x7e,0x10,0x11,0x1d,0x14,0x14,0x16,0x15,0x14,0x24,0x35,0x4a,0x00,0x08,0xc8,0x7e,0x8a,0xff,0x0a,0xbe,0x48,0x7e,0x48,0x7f,0x88,0x88,0x60,0x1f,0x00 -+// 26069 旕 ; -+,0x08,0x04,0x3f,0x08,0x0e,0x12,0x12,0x2a,0x44,0x1e,0x12,0x12,0x12,0x1e,0x00,0x00,0x10,0x10,0x28,0x47,0x92,0x08,0x10,0x08,0x40,0x48,0x58,0x60,0x42,0x42,0x3e,0x00 -+// 26070 旖 ; -+,0x10,0x08,0x7e,0x10,0x11,0x1e,0x12,0x13,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x40,0x40,0xff,0x90,0x7e,0x30,0x48,0xff,0x04,0xf4,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 26071 旗 ; -+,0x10,0x08,0x7e,0x10,0x11,0x11,0x1e,0x12,0x12,0x12,0x12,0x23,0x2a,0x44,0x01,0x00,0x40,0x40,0xff,0x80,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0xff,0x44,0x86,0x02,0x00 -+// 26072 旘 ; -+,0x10,0x08,0x03,0x7d,0x10,0x13,0x1c,0x15,0x15,0x15,0x15,0x15,0x25,0x25,0x55,0x08,0x88,0x48,0xfa,0x29,0xc8,0xff,0x08,0xe8,0x2a,0x2b,0xe6,0x24,0x2d,0xf3,0x21,0x00 -+// 26073 旙 ; -+,0x10,0x09,0x00,0x7e,0x11,0x10,0x1c,0x17,0x15,0x15,0x15,0x25,0x25,0x45,0x15,0x08,0x1e,0xe4,0xa8,0x70,0xff,0x68,0xa4,0x23,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x00 -+// 26074 旚 ; -+,0x10,0x08,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x12,0x13,0x22,0x22,0x4b,0x04,0x40,0x7f,0x80,0xff,0x28,0xfe,0xaa,0xfe,0x00,0x7c,0x00,0xff,0x90,0x94,0x52,0x20 -+// 26075 旛 ; -+,0x20,0x10,0x7d,0x11,0x12,0x10,0x1d,0x14,0x14,0x17,0x15,0x25,0x25,0x55,0x09,0x01,0x80,0xff,0x00,0xfe,0xa4,0x68,0xff,0x68,0xa4,0xff,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 26076 旜 ; -+,0x10,0x08,0x08,0x7d,0x12,0x10,0x1c,0x14,0x14,0x14,0x14,0x14,0x24,0x24,0x54,0x09,0x80,0xff,0x90,0xff,0x00,0xfe,0xaa,0xba,0x82,0xfe,0x00,0xfe,0x92,0xfe,0x00,0xff -+// 26077 旝 ; -+,0x10,0x08,0x09,0x7d,0x12,0x13,0x1d,0x15,0x15,0x15,0x14,0x14,0x24,0x24,0x54,0x08,0x80,0xff,0x30,0x48,0xcc,0x33,0xfe,0xaa,0x72,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc -+// 26078 旞 ; -+,0x10,0x08,0x08,0x7e,0x10,0x12,0x1d,0x14,0x17,0x15,0x15,0x15,0x25,0x25,0x56,0x08,0x40,0x7f,0x40,0xa2,0x14,0x7f,0x10,0x6a,0x1c,0x2c,0xda,0x2b,0xca,0x98,0x7f,0x00 -+// 26079 旟 ; -+,0x10,0x08,0x01,0x7d,0x12,0x11,0x1d,0x15,0x15,0x15,0x15,0x27,0x24,0x44,0x14,0x09,0x80,0x80,0xff,0x00,0xb6,0x22,0xa6,0x32,0x96,0x72,0x12,0xff,0x00,0x44,0xc6,0x02 -+// 26080 无 ; -+,0x00,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x60,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0xff,0xc0,0x40,0x40,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 26081 旡 ; -+,0x00,0x1f,0x00,0x08,0x08,0x10,0x10,0x3f,0x01,0x01,0x02,0x02,0x04,0x18,0x60,0x00,0x00,0xfc,0x80,0x80,0x80,0x80,0x80,0xff,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 26082 既 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x28,0x24,0x2a,0x32,0x21,0x06,0x00,0x00,0xfe,0x10,0x90,0x90,0x90,0xff,0x10,0x30,0x30,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 26083 旣 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x00,0x20,0x26,0x38,0x22,0x22,0x1e,0x01,0x00,0x00,0xfe,0x10,0x90,0x90,0x90,0xff,0x10,0x10,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 26084 旤 ; -+,0x00,0x1f,0x11,0x1d,0x15,0x15,0x3f,0x20,0x2e,0x2a,0x2a,0x2e,0x20,0x22,0x21,0x00,0x00,0x3f,0x08,0x28,0x28,0x28,0xbf,0x88,0x88,0x98,0x98,0x99,0xa9,0xa9,0x47,0x00 -+// 26085 日 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x00,0x00 -+// 26086 旦 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x7f,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0xf8,0x00,0x00,0x00,0xff,0x00 -+// 26087 旧 ; -+,0x00,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 26088 旨 ; -+,0x10,0x10,0x1f,0x10,0x10,0x0f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x1c,0xe0,0x02,0x02,0xfe,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26089 早 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80 -+// 26090 旪 ; -+,0x00,0x3e,0x22,0x22,0x22,0x23,0x3e,0x22,0x22,0x22,0x22,0x3e,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26091 旫 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x01,0x02,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x0a,0x04,0x00 -+// 26092 旬 ; -+,0x04,0x04,0x0f,0x08,0x10,0x2f,0x48,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0xe2,0x22,0x22,0xe2,0x22,0x22,0xe2,0x22,0x02,0x0a,0x04 -+// 26093 旭 ; -+,0x08,0x08,0x08,0x08,0x7e,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x12,0x22,0x22,0x41,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x00,0x01,0x01,0xff,0x00 -+// 26094 旮 ; -+,0x01,0x01,0x3f,0x01,0x02,0x02,0x04,0x18,0x67,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x00,0x00,0xf8,0x08,0x08,0x09,0x09,0x07,0xf0,0x10,0x10,0xf0,0x10,0x10,0xf0,0x10 -+// 26095 旯 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x01,0x01,0x3f,0x02,0x02,0x04,0x08,0x30,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00,0x00,0xf8,0x08,0x08,0x09,0x09,0x07,0x00 -+// 26096 旰 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x23,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26097 旱 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80 -+// 26098 旲 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x01,0x01,0x02,0x0c,0x70,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x80,0x80,0xfe,0x40,0x20,0x18,0x0f,0x04,0x00 -+// 26099 旳 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x40,0x60,0x40,0xfe,0x82,0x02,0x42,0x22,0x32,0x22,0x02,0x02,0x02,0x12,0x0c,0x00 -+// 26100 旴 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 26101 旵 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00,0x20,0x20,0x20,0x20,0x3f,0x20,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x80,0x80,0x82,0x82,0x82,0x82,0xfe,0x02,0x00 -+// 26102 时 ; -+,0x00,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x22,0x22,0x3e,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x88,0x48,0x48,0x08,0x08,0x08,0x08,0x28,0x10 -+// 26103 旷 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x3d,0x01,0x02,0x0c,0x00,0x20,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 26104 旸 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x23,0x3e,0x00,0x00,0x03,0x00,0x00,0x00,0xfc,0x08,0x10,0x20,0x7f,0x29,0x29,0x49,0x91,0x11,0x21,0xc1,0x0a,0x04,0x00 -+// 26105 旹 ; -+,0x00,0x10,0x10,0x1f,0x00,0x00,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x80,0x84,0x84,0xfc,0x80,0x80,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 26106 旺 ; -+,0x00,0x01,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x3e,0x00,0x00,0x03,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 26107 旻 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x00,0x7f,0x04,0x02,0x01,0x00,0x01,0x06,0x38,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x80,0xff,0x10,0x20,0x40,0xc0,0x30,0x0e,0x04 -+// 26108 旼 ; -+,0x00,0x00,0x3c,0x27,0x25,0x25,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x03,0x0c,0x00,0x40,0x20,0x20,0xff,0x08,0x08,0x88,0x90,0x50,0x20,0x20,0x50,0x8c,0x07,0x02,0x00 -+// 26109 旽 ; -+,0x00,0x00,0x3c,0x27,0x24,0x25,0x3d,0x25,0x25,0x25,0x24,0x3c,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xff,0x20,0x24,0x24,0x24,0x24,0xfc,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 26110 旾 ; -+,0x00,0x00,0x3f,0x00,0x08,0x0f,0x00,0x00,0x00,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x80,0x80,0xff,0x80,0x84,0xfc,0x81,0x81,0x7f,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 26111 旿 ; -+,0x00,0x00,0x3c,0x25,0x25,0x26,0x3c,0x24,0x25,0x24,0x24,0x3c,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26112 昀 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x3e,0x00,0x00,0x00,0x00,0x40,0x60,0x40,0x7e,0x82,0x82,0x22,0x12,0x0a,0x12,0x22,0xc2,0x02,0x0a,0x04,0x00 -+// 26113 昁 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x3e,0x00,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x96,0x10,0x10,0x10,0x10 -+// 26114 昂 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x03,0x1c,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x00,0x7e,0x42,0x42,0x42,0x4a,0x44,0x40,0x40,0x40 -+// 26115 昃 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x21,0x26,0x58,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x40,0x40,0x40,0xa0,0x90,0x0c,0x07,0x02,0x00 -+// 26116 昄 ; -+,0x00,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x02,0x02,0x05,0x00,0x00,0x0f,0xf0,0x00,0x00,0xfe,0x82,0x44,0x44,0x28,0x10,0x18,0x24,0x47,0x82,0x00 -+// 26117 昅 ; -+,0x00,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x25,0x3d,0x02,0x02,0x04,0x09,0x00,0x00,0xfe,0x84,0x88,0x88,0x9e,0x82,0x82,0xc4,0x24,0x18,0x08,0x14,0x67,0x82,0x00 -+// 26118 昆 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x10,0x10,0x10,0x1f,0x10,0x10,0x13,0x1c,0x10,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x20,0x22,0x26,0x38,0x20,0x21,0x21,0x1f,0x00 -+// 26119 昇 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x03,0x1e,0x02,0x7f,0x02,0x04,0x04,0x08,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xd0,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26120 昈 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x01,0x01,0x02,0x04,0x00,0x20,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 26121 昉 ; -+,0x00,0x00,0x3e,0x23,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x3e,0x00,0x01,0x06,0x00,0x20,0x10,0x10,0xff,0x20,0x20,0x3e,0x22,0x22,0x22,0x42,0x42,0x82,0x0a,0x04,0x00 -+// 26122 昊 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x00,0x7f,0x01,0x02,0x0c,0x70,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x80,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 26123 昋 ; -+,0x00,0x0f,0x00,0x00,0x3f,0x01,0x02,0x04,0x1f,0x64,0x04,0x07,0x04,0x04,0x07,0x04,0x00,0xfc,0x80,0x80,0xff,0x40,0x20,0x18,0xff,0x0a,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26124 昌 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 26125 昍 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x3e,0x00,0x00,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x7e,0x00 -+// 26126 明 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x00,0x00,0x00,0x01,0x02,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x82,0x82,0x02,0x0a,0x04 -+// 26127 昏 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x14,0x18,0x1f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0xf8,0x80,0x80,0xfe,0x40,0x40,0x22,0x1a,0xfe,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26128 昐 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x3e,0x25,0x24,0x24,0x24,0x3c,0x00,0x01,0x06,0x00,0x20,0x20,0x50,0x48,0x84,0x07,0x02,0xfc,0x44,0x44,0x44,0x84,0x84,0x14,0x08,0x00 -+// 26129 昑 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3d,0x26,0x24,0x25,0x24,0x3c,0x00,0x00,0x00,0x00,0x20,0x20,0x50,0x48,0x84,0xa7,0x12,0x10,0x00,0xfe,0x04,0x08,0x08,0x10,0x10,0x00 -+// 26130 昒 ; -+,0x00,0x00,0x3c,0x24,0x25,0x25,0x3e,0x24,0x24,0x27,0x3c,0x00,0x00,0x03,0x00,0x00,0x80,0xc0,0x80,0xfe,0x2a,0x2a,0x4a,0x52,0x92,0x22,0x22,0x42,0x82,0x0a,0x04,0x00 -+// 26131 易 ; -+,0x00,0x07,0x04,0x07,0x04,0x07,0x02,0x07,0x08,0x31,0x02,0x0c,0x31,0x06,0x38,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x92,0x12,0x22,0x42,0x82,0x02,0x0a,0x04 -+// 26132 昔 ; -+,0x02,0x02,0x02,0x1f,0x02,0x02,0x3f,0x00,0x07,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26133 昕 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x3c,0x01,0x01,0x02,0x04,0x00,0x1c,0xe0,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08 -+// 26134 昖 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x26,0x24,0x24,0x3c,0x00,0x01,0x00,0x00,0x00,0x10,0x50,0x48,0x48,0x84,0x84,0x23,0x22,0x20,0x40,0x44,0x82,0xfe,0x02,0x00 -+// 26135 昗 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x01,0x00,0x7f,0x00,0x02,0x04,0x08,0x30,0x00,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x00,0x80,0xff,0x00,0x20,0x10,0x0c,0x04,0x00 -+// 26136 昘 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x7f,0x02,0x03,0x02,0x04,0x04,0x08,0x30,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0x40,0xff,0x00,0xfc,0x04,0x04,0x08,0x28,0x10 -+// 26137 昙 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x00,0x7f,0x01,0x02,0x04,0x1f,0x08,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x00,0xfc,0x00,0xff,0x00,0x10,0x08,0xfc,0x04,0x00 -+// 26138 昚 ; -+,0x00,0x00,0x3f,0x00,0x11,0x0a,0x04,0x18,0x67,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x80,0x80,0xff,0x84,0x48,0x30,0x18,0x0f,0xfa,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26139 昛 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x00,0x00,0xff,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xfe,0x00,0x00,0x00,0x00,0xff,0x00 -+// 26140 昜 ; -+,0x07,0x04,0x07,0x04,0x07,0x00,0x3f,0x04,0x07,0x09,0x11,0x02,0x0c,0x01,0x06,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x00,0xfe,0x22,0x22,0x42,0x42,0x82,0x0a,0x04 -+// 26141 昝 ; -+,0x08,0x08,0x1f,0x10,0x29,0x46,0x07,0x18,0x60,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0x98,0x96,0x12,0x10,0x10,0xd0,0x3f,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26142 昞 ; -+,0x00,0x03,0x3c,0x24,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x01,0x00,0xff,0x20,0x20,0xfe,0x22,0x22,0x22,0x32,0x4a,0x46,0x82,0x02,0x02,0x0a,0x04 -+// 26143 星 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x08,0x0f,0x10,0x10,0x27,0x00,0x00,0x3f,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0x80,0xfe,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 26144 映 ; -+,0x00,0x00,0x3c,0x25,0x25,0x25,0x3d,0x25,0x27,0x24,0x24,0x3c,0x00,0x00,0x03,0x0c,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x20,0x20,0x50,0x48,0x84,0x07,0x02 -+// 26145 昡 ; -+,0x00,0x00,0x3c,0x27,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x24,0x3c,0x01,0x00,0x00,0x40,0x20,0x20,0xff,0x20,0x40,0x44,0x88,0xf0,0x10,0x20,0x48,0x84,0xfe,0x02,0x00 -+// 26146 昢 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x25,0x25,0x3d,0x01,0x01,0x01,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 26147 昣 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x3e,0x24,0x25,0x24,0x24,0x3d,0x24,0x00,0x03,0x00,0x20,0x20,0x50,0x48,0x84,0x07,0x22,0x40,0x88,0x10,0x62,0x84,0x18,0x60,0x80,0x00 -+// 26148 昤 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x3e,0x24,0x25,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x20,0x20,0x50,0x48,0x84,0x27,0x12,0x10,0xff,0x02,0x04,0x08,0x50,0x20,0x10,0x10 -+// 26149 春 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x01,0x7f,0x02,0x04,0x1f,0x64,0x07,0x04,0x04,0x07,0x00,0x80,0x80,0xfe,0x80,0xfc,0x00,0xff,0x10,0x0c,0xf7,0x12,0xf0,0x10,0x10,0xf0,0x00 -+// 26150 昦 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x02,0x7f,0x04,0x1a,0x62,0x02,0x04,0x04,0x08,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x00,0xff,0x10,0x2c,0x27,0x22,0x20,0x20,0x20,0x20 -+// 26151 昧 ; -+,0x00,0x00,0x3c,0x25,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x3d,0x22,0x04,0x00,0x00,0x20,0x20,0x20,0xfc,0x20,0x20,0xff,0x60,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 26152 昨 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3d,0x26,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x40,0x40,0x80,0xff,0x20,0x20,0x3e,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20 -+// 26153 昩 ; -+,0x00,0x00,0x3c,0x27,0x24,0x24,0x3d,0x24,0x24,0x24,0x24,0x3d,0x22,0x04,0x00,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x60,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 26154 昪 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x0f,0x02,0x02,0x7f,0x04,0x04,0x08,0x30,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x08,0xfc,0x24,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 26155 昫 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x3c,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x40,0x60,0x40,0xfe,0x82,0x02,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0x0a,0x04 -+// 26156 昬 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x14,0x18,0x1f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0xf8,0x08,0xf8,0x80,0xfe,0x40,0x32,0x0e,0xfa,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26157 昭 ; -+,0x00,0x01,0x3c,0x24,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x24,0x3c,0x00,0x00,0x00,0x00,0xfe,0x42,0x42,0x42,0x42,0x82,0x8a,0x04,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 26158 昮 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x04,0x04,0x05,0x0e,0x70,0x03,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x10,0x7e,0x12,0x22,0x22,0x42,0x92,0x0c,0x00 -+// 26159 是 ; -+,0x00,0x07,0x04,0x07,0x04,0x07,0x00,0x7f,0x00,0x04,0x04,0x04,0x0a,0x11,0x20,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x80,0x80,0xfc,0x80,0x80,0x80,0x7f,0x00 -+// 26160 昰 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x00,0x08,0x08,0x08,0x08,0x7f,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x00,0xfe,0x80,0x80,0xf8,0x80,0x80,0xff,0x00 -+// 26161 昱 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x04,0x04,0x02,0x02,0x7f,0x00,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x80,0x40,0xfe,0x10,0x10,0x20,0x40,0xff,0x00 -+// 26162 昲 ; -+,0x00,0x00,0x3d,0x24,0x24,0x25,0x3d,0x25,0x25,0x24,0x3c,0x24,0x00,0x01,0x02,0x00,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xff,0x49,0x49,0x8d,0x8a,0x08,0x08,0x08 -+// 26163 昳 ; -+,0x00,0x01,0x3d,0x25,0x25,0x26,0x3c,0x27,0x24,0x24,0x3c,0x24,0x00,0x01,0x06,0x00,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x50,0x50,0x88,0x84,0x07,0x02,0x00 -+// 26164 昴 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x06,0x18,0x11,0x11,0x17,0x19,0x02,0x0c,0x30,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x00,0x7e,0x22,0x22,0x22,0x2a,0x24,0x20,0x20,0x20 -+// 26165 昵 ; -+,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x02,0x02,0x04,0x18,0x00,0xfe,0x02,0x02,0x02,0xfe,0x40,0x40,0x40,0x46,0x78,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 26166 昶 ; -+,0x08,0x04,0x00,0x3c,0x04,0x04,0x06,0x75,0x15,0x14,0x24,0x24,0x44,0x14,0x08,0x00,0x00,0x3e,0x22,0x22,0x22,0x7e,0xa2,0x22,0x22,0xbe,0x80,0x40,0x30,0x1e,0x08,0x00 -+// 26167 昷 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x12,0x12,0x12,0x12,0x7f,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 26168 昸 ; -+,0x00,0x00,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x27,0x24,0x3c,0x24,0x00,0x00,0x00,0x40,0x40,0x7e,0x84,0xc8,0x28,0x10,0x28,0xc7,0x22,0x10,0x10,0x40,0x30,0x10,0x00 -+// 26169 昹 ; -+,0x00,0x00,0x3c,0x25,0x24,0x24,0x3f,0x24,0x24,0x25,0x25,0x3e,0x24,0x08,0x00,0x00,0x40,0x20,0x00,0xe0,0x22,0x26,0xa8,0xb0,0xa8,0x28,0x24,0x27,0x22,0x20,0xa0,0x40 -+// 26170 昺 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x1f,0x10,0x11,0x11,0x12,0x1c,0x10,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x80,0xfe,0x82,0x42,0x22,0x1a,0x12,0x0a,0x04 -+// 26171 昻 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x04,0x04,0x04,0x07,0x7c,0x00,0x00,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xbe,0x22,0x22,0x22,0xaa,0x24,0x20,0x20,0x20 -+// 26172 昼 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x10,0x17,0x24,0x47,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0xfc,0x04,0x04,0xfc,0x20,0x10,0xfc,0x17,0xf2,0x10,0x10,0xf0,0x00,0xff,0x00 -+// 26173 昽 ; -+,0x00,0x00,0x3c,0x24,0x25,0x24,0x3c,0x24,0x24,0x24,0x3c,0x25,0x01,0x02,0x0c,0x00,0x40,0x48,0x44,0x40,0xff,0x50,0x50,0x56,0x54,0x98,0x90,0x30,0x51,0x11,0x0f,0x00 -+// 26174 显 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x22,0x12,0x0a,0x0a,0x02,0x7f,0x00,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x20,0x24,0x24,0x28,0x30,0x20,0xff,0x00,0x00 -+// 26175 昿 ; -+,0x00,0x00,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3e,0x02,0x05,0x08,0x00,0x20,0x10,0x10,0xff,0x00,0x10,0x18,0x10,0x10,0x20,0x20,0x44,0x82,0xff,0x82,0x00 -+// 26176 晀 ; -+,0x00,0x00,0x3c,0x24,0x25,0x24,0x3c,0x24,0x24,0x27,0x24,0x3c,0x24,0x01,0x06,0x00,0x50,0x50,0x50,0x52,0x52,0xd4,0x58,0x58,0xd4,0x52,0x52,0x90,0x91,0x11,0x0f,0x00 -+// 26177 晁 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x01,0x11,0x0d,0x03,0x05,0x09,0x32,0x02,0x04,0x18,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x44,0x48,0x70,0x50,0x4c,0x45,0x41,0x41,0x3f -+// 26178 時 ; -+,0x00,0x00,0x3d,0x24,0x24,0x27,0x3c,0x24,0x27,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0x08,0xff,0x08,0x88,0x48,0x48,0x08,0x28,0x10 -+// 26179 晃 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x08,0x06,0x02,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0x88,0x98,0xa0,0xff,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 26180 晄 ; -+,0x00,0x00,0x3c,0x25,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x3c,0x25,0x02,0x04,0x00,0x20,0x20,0x24,0x26,0xa4,0xa8,0xff,0x50,0x50,0x50,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 26181 晅 ; -+,0x00,0x01,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x03,0x00,0x00,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x00,0x00,0xff,0x00 -+// 26182 晆 ; -+,0x00,0x00,0x3c,0x25,0x24,0x24,0x3f,0x24,0x24,0x24,0x25,0x3c,0x24,0x00,0x07,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 26183 晇 ; -+,0x00,0x00,0x3d,0x24,0x24,0x27,0x3c,0x25,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x20,0x20,0xfe,0x50,0x88,0x77,0x02,0xfe,0x40,0x40,0x7c,0x04,0x04,0x04,0x14,0x08 -+// 26184 晈 ; -+,0x00,0x00,0x3d,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x3c,0x24,0x00,0x01,0x06,0x00,0x20,0x10,0xff,0x00,0x48,0x44,0x82,0x4a,0x48,0x28,0x10,0x30,0x48,0x87,0x02,0x00 -+// 26185 晉 ; -+,0x1f,0x04,0x04,0x0a,0x1f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0xfe,0x10,0x10,0x24,0x7e,0x00,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26186 晊 ; -+,0x00,0x01,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x3d,0x24,0x00,0x00,0x07,0x00,0x00,0xff,0x20,0x40,0x40,0x84,0xfe,0x22,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 26187 晋 ; -+,0x3f,0x02,0x12,0x0a,0x0a,0x02,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0xfe,0x20,0x28,0x28,0x30,0x20,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26188 晌 ; -+,0x00,0x00,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x20,0x20,0x40,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 26189 晍 ; -+,0x01,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0xfe,0x02,0x02,0x7a,0x02,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 26190 晎 ; -+,0x00,0x3c,0x24,0x24,0x25,0x24,0x3c,0x24,0x24,0x27,0x3c,0x24,0x00,0x01,0x06,0x00,0x48,0x48,0x48,0x48,0xfe,0x48,0x48,0x48,0x48,0xff,0x00,0x48,0x84,0x06,0x02,0x00 -+// 26191 晏 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x21,0x02,0x3f,0x04,0x03,0x00,0x03,0x3c,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xff,0x02,0x00,0xff,0x10,0x20,0xc0,0xb0,0x0c,0x04 -+// 26192 晐 ; -+,0x00,0x00,0x3c,0x25,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x3f,0x24,0x00,0x07,0x00,0x20,0x10,0x10,0xff,0x20,0x42,0xfc,0x08,0x12,0x24,0xc8,0x18,0x24,0xc2,0x02,0x00 -+// 26193 晑 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x1f,0x10,0x13,0x12,0x13,0x10,0x10,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x02,0x0a,0x04 -+// 26194 晒 ; -+,0x00,0x03,0x3c,0x24,0x24,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x01,0x00,0xff,0x48,0x48,0x48,0xfe,0x4a,0x4a,0x4a,0x4a,0x8e,0x02,0x02,0x02,0xfe,0x02 -+// 26195 晓 ; -+,0x00,0x3c,0x25,0x24,0x24,0x24,0x3c,0x25,0x27,0x24,0x3c,0x25,0x01,0x02,0x04,0x00,0x40,0x40,0xfe,0x20,0x24,0x18,0x69,0x85,0xfb,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 26196 晔 ; -+,0x00,0x3c,0x24,0x24,0x25,0x26,0x3c,0x24,0x24,0x24,0x27,0x3c,0x24,0x00,0x00,0x00,0x50,0x50,0x92,0x96,0x98,0xb1,0x91,0x8f,0xa0,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 26197 晕 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x20,0x1f,0x02,0x04,0x0f,0x00,0x3f,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x82,0xf8,0x00,0x80,0xf8,0x80,0xfe,0x80,0x80 -+// 26198 晖 ; -+,0x01,0x3d,0x24,0x24,0x25,0x3c,0x24,0x24,0x24,0x24,0x3c,0x03,0x00,0x00,0x00,0x00,0xff,0x02,0x20,0x20,0xfe,0x40,0x50,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 26199 晗 ; -+,0x00,0x00,0x3c,0x24,0x25,0x26,0x3d,0x24,0x24,0x24,0x25,0x3d,0x01,0x01,0x01,0x00,0x20,0x20,0x50,0x8c,0x47,0x22,0xfc,0x08,0x10,0x20,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 26200 晘 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x24,0x00,0x00,0x00,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26201 晙 ; -+,0x00,0x00,0x3c,0x25,0x24,0x24,0x3c,0x27,0x24,0x24,0x27,0x3c,0x24,0x00,0x07,0x00,0x20,0x40,0x84,0xfe,0x02,0x48,0x84,0x42,0x7d,0x84,0x48,0x30,0x30,0xcc,0x07,0x02 -+// 26202 晚 ; -+,0x00,0x00,0x3c,0x25,0x26,0x25,0x3d,0x25,0x25,0x25,0x24,0x3c,0x00,0x03,0x1c,0x00,0x40,0x40,0xfc,0x08,0x10,0xfe,0x22,0x22,0xfe,0x20,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 26203 晛 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x3c,0x00,0x00,0x01,0x06,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x48,0x48,0x89,0x09,0x07,0x00 -+// 26204 晜 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x1f,0x00,0x1f,0x10,0x1f,0x01,0x02,0x0c,0x30,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x20,0xfc,0x84,0xfc,0x80,0xfe,0x82,0x82,0x8a,0x84,0x80 -+// 26205 晝 ; -+,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x00,0x1f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfc,0x80,0xff,0x08,0xf8,0x08,0xf8,0x00,0xff -+// 26206 晞 ; -+,0x00,0x00,0x3c,0x24,0x24,0x27,0x3c,0x24,0x25,0x26,0x3c,0x00,0x00,0x00,0x00,0x00,0x88,0x50,0x30,0x4c,0xa4,0xff,0x50,0x90,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 26207 晟 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x10,0x1f,0x10,0x12,0x21,0x20,0x40,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x28,0x24,0xff,0x20,0xa4,0xa4,0x98,0x19,0x25,0x43,0x00 -+// 26208 晠 ; -+,0x00,0x00,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x02,0x02,0x04,0x00,0x10,0x14,0x12,0xff,0x10,0x12,0xd3,0x52,0x56,0x54,0x48,0x49,0x95,0x23,0x41,0x00 -+// 26209 晡 ; -+,0x00,0x3c,0x25,0x24,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x01,0x28,0x24,0xff,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0x2a,0x04 -+// 26210 晢 ; -+,0x04,0x04,0x3f,0x04,0x07,0x7c,0x04,0x14,0x09,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x7e,0x40,0x40,0x7f,0x48,0x88,0x88,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26211 晣 ; -+,0x01,0x01,0x79,0x49,0x4f,0x49,0x79,0x49,0x4b,0x4d,0x49,0x79,0x49,0x01,0x05,0x02,0x00,0x06,0x38,0x20,0xe0,0x3f,0x24,0xa4,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 26212 晤 ; -+,0x00,0x03,0x7c,0x44,0x45,0x44,0x7c,0x47,0x44,0x44,0x7d,0x45,0x01,0x01,0x01,0x00,0x00,0xfe,0x40,0x40,0xf8,0x88,0x88,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 26213 晥 ; -+,0x00,0x00,0x3d,0x25,0x24,0x24,0x3c,0x24,0x25,0x24,0x3c,0x24,0x00,0x01,0x06,0x00,0x20,0x10,0xff,0x02,0x00,0xfe,0x00,0x00,0xff,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 26214 晦 ; -+,0x00,0x00,0x3d,0x25,0x26,0x24,0x3c,0x24,0x27,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x80,0x80,0xff,0x00,0xfc,0x84,0xa4,0x94,0xff,0x84,0xa4,0x94,0xff,0x04,0x14,0x08 -+// 26215 晧 ; -+,0x00,0x00,0x3c,0x25,0x26,0x24,0x3f,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x90,0x90,0x90,0xfe,0x10,0x10,0xff,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 26216 晨 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x17,0x10,0x1f,0x12,0x22,0x22,0x43,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x00,0xfc,0x00,0xff,0x48,0x30,0x90,0x0e,0x04 -+// 26217 晩 ; -+,0x00,0x00,0x3c,0x25,0x27,0x25,0x3d,0x25,0x25,0x24,0x3c,0x24,0x00,0x01,0x06,0x00,0x40,0x7c,0x88,0x10,0xfe,0x22,0x22,0x22,0xfe,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 26218 晪 ; -+,0x00,0x00,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x27,0x3c,0x24,0x00,0x01,0x06,0x00,0x50,0x50,0x50,0xfc,0x54,0x54,0xfc,0x54,0x54,0xff,0x00,0x48,0x84,0x06,0x02,0x00 -+// 26219 晫 ; -+,0x00,0x00,0x00,0x3c,0x25,0x25,0x25,0x3d,0x25,0x24,0x24,0x27,0x3c,0x00,0x00,0x00,0x20,0x20,0x3e,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 26220 晬 ; -+,0x00,0x00,0x3d,0x24,0x24,0x24,0x3d,0x26,0x24,0x24,0x3f,0x24,0x00,0x00,0x00,0x00,0x40,0x20,0xfe,0x88,0x88,0x88,0x54,0x62,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 26221 晭 ; -+,0x00,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x02,0x02,0x04,0x00,0xff,0x11,0x11,0x7d,0x11,0xff,0x01,0x7d,0x45,0x45,0x7d,0x01,0x09,0x05,0x02 -+// 26222 普 ; -+,0x04,0x02,0x3f,0x02,0x12,0x0a,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x20,0xfe,0x20,0x24,0x28,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26223 景 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x04,0x0c,0x30,0x02,0x01,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x00,0xf8,0x08,0xf8,0x90,0x8c,0x86,0x84,0x00 -+// 26224 晰 ; -+,0x01,0x01,0x79,0x49,0x4f,0x49,0x79,0x4b,0x4b,0x4d,0x49,0x79,0x49,0x01,0x01,0x01,0x00,0x06,0x38,0x20,0xe0,0x3f,0xa4,0x64,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 26225 晱 ; -+,0x00,0x00,0x3c,0x24,0x25,0x24,0x3c,0x27,0x24,0x24,0x3c,0x25,0x00,0x01,0x06,0x00,0x20,0x20,0xa4,0xac,0x30,0x48,0x87,0x22,0x20,0xa4,0xa8,0x30,0x48,0x87,0x02,0x00 -+// 26226 晲 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x24,0x24,0x3c,0x24,0x00,0x01,0x06,0x00,0x40,0x9c,0x04,0x04,0xdc,0x04,0x04,0xfc,0x50,0x50,0x50,0x91,0x91,0x11,0x0f,0x00 -+// 26227 晳 ; -+,0x08,0x08,0x3f,0x0c,0x1a,0x29,0x48,0x09,0x02,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x06,0x78,0x40,0x7f,0x48,0x88,0x88,0x08,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 26228 晴 ; -+,0x00,0x01,0x3c,0x24,0x24,0x27,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 26229 晵 ; -+,0x08,0x04,0x1f,0x11,0x11,0x1f,0x10,0x20,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x20,0x20,0x7f,0x44,0xa8,0x10,0x2c,0xc7,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x00 -+// 26230 晶 ; -+,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00 -+// 26231 晷 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x19,0x26,0x0d,0x70,0x0f,0x08,0x08,0x0f,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0xb0,0x28,0x24,0xa0,0x7f,0xf8,0x08,0x08,0xf8,0x08 -+// 26232 晸 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x04,0x04,0x27,0x24,0x24,0x27,0x7c,0x21,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xb0,0x20,0x7f,0x64,0xa4,0x18,0x88,0x37,0xc2,0x00 -+// 26233 晹 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x26,0x24,0x3c,0x03,0x00,0x03,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0x80,0xfe,0x4a,0x4a,0x92,0x22,0xc2,0x0a,0x04 -+// 26234 智 ; -+,0x10,0x1f,0x24,0x04,0x7f,0x06,0x05,0x08,0x37,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x00,0x80,0x3e,0x22,0xa2,0x22,0x3e,0x80,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26235 晻 ; -+,0x00,0x00,0x3d,0x24,0x24,0x25,0x3e,0x25,0x25,0x25,0x25,0x3d,0x24,0x00,0x00,0x00,0x20,0x20,0xfe,0x50,0x88,0x24,0x23,0xfc,0x24,0xfc,0x24,0xfc,0x21,0x21,0x1f,0x00 -+// 26236 晼 ; -+,0x00,0x00,0x7b,0x4a,0x48,0x49,0x79,0x4a,0x4a,0x4d,0x78,0x48,0x01,0x02,0x0c,0x00,0x40,0x20,0xff,0x02,0x00,0x00,0xde,0x52,0x52,0x52,0x9a,0x94,0x11,0x11,0x0f,0x00 -+// 26237 晽 ; -+,0x01,0x01,0x79,0x4f,0x49,0x4b,0x7b,0x4b,0x4d,0x4d,0x79,0x49,0x01,0x01,0x01,0x01,0x08,0x08,0x08,0xfe,0x08,0x18,0x9c,0x6c,0x2a,0x4b,0x4a,0x88,0x08,0x08,0x08,0x08 -+// 26238 晾 ; -+,0x00,0x00,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x3c,0x01,0x02,0x00,0x00,0x20,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x10,0x94,0x92,0x13,0x11,0x50,0x20 -+// 26239 晿 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x24,0x3c,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x01,0x00,0xfe,0x82,0x82,0xfe,0x82,0xfe,0x00,0xff,0x01,0x01,0xff,0x01,0x01,0xff,0x01 -+// 26240 暀 ; -+,0x00,0x00,0x3c,0x25,0x26,0x24,0x3c,0x25,0x26,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x40,0x48,0x84,0x3f,0x48,0x48,0x88,0x88,0xbf,0x88,0x88,0x88,0x88,0xff,0x80,0x00 -+// 26241 暁 ; -+,0x00,0x3c,0x25,0x24,0x24,0x27,0x3c,0x24,0x27,0x24,0x3c,0x24,0x00,0x01,0x06,0x00,0x20,0x20,0xfe,0x20,0xa4,0xff,0x84,0x84,0xff,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 26242 暂 ; -+,0x04,0x3f,0x08,0x14,0x3f,0x04,0x07,0x7c,0x05,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x7e,0x40,0x40,0x7f,0x44,0x44,0x84,0x04,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x00 -+// 26243 暃 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x02,0x02,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x20,0x3e,0x20,0x3e,0x20,0x3f,0x20,0x20,0x20 -+// 26244 暄 ; -+,0x00,0x00,0x3d,0x25,0x24,0x25,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x03,0x00,0x20,0x10,0xff,0x02,0x00,0xfe,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00 -+// 26245 暅 ; -+,0x01,0x01,0x79,0x49,0x49,0x4d,0x7d,0x49,0x49,0x49,0x49,0x79,0x49,0x01,0x01,0x01,0x00,0x7f,0x00,0x00,0xbe,0x62,0x22,0x3e,0x22,0x22,0x3e,0x00,0x00,0x7f,0x00,0x00 -+// 26246 暆 ; -+,0x00,0x02,0x79,0x4f,0x4a,0x4a,0x7b,0x4a,0x4a,0x4a,0x7a,0x4c,0x04,0x0a,0x11,0x00,0x10,0x10,0x10,0xbf,0x20,0x48,0xa8,0xae,0xba,0xea,0xaa,0xa2,0xa6,0xa1,0x1f,0x00 -+// 26247 暇 ; -+,0x00,0x03,0x7a,0x4a,0x4b,0x4a,0x7a,0x4b,0x4a,0x4a,0x4b,0x7a,0x4a,0x02,0x02,0x02,0x00,0xdf,0x41,0x41,0xdf,0x00,0x00,0xdf,0x11,0x11,0xca,0x0a,0x04,0x0c,0x33,0xc2 -+// 26248 暈 ; -+,0x0f,0x09,0x08,0x0f,0x00,0x3f,0x20,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x7f,0x00,0x00,0xf8,0x08,0x88,0xf8,0x00,0xff,0x82,0xfc,0x80,0xf8,0x88,0xf8,0x88,0xff,0x80,0x80 -+// 26249 暉 ; -+,0x01,0x3d,0x24,0x25,0x24,0x25,0x3d,0x25,0x25,0x25,0x3c,0x23,0x00,0x00,0x00,0x00,0xff,0x02,0x10,0xfe,0x10,0xfe,0x12,0xfe,0x12,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 26250 暊 ; -+,0x00,0x01,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0xff,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0x44,0x42,0x82 -+// 26251 暋 ; -+,0x3f,0x21,0x3f,0x24,0x3f,0x22,0x2a,0x31,0x20,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x20,0x20,0x7f,0x44,0xa8,0x10,0xa8,0xc7,0x82,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x00 -+// 26252 暌 ; -+,0x03,0x38,0x2a,0x29,0x28,0x39,0x2a,0x2c,0x28,0x2b,0x38,0x00,0x00,0x03,0x0c,0x00,0xe4,0x68,0x52,0x94,0x88,0x04,0xfb,0x20,0x20,0xfe,0x20,0x50,0x8c,0x06,0x02,0x00 -+// 26253 暍 ; -+,0x00,0x3d,0x25,0x25,0x25,0x25,0x3c,0x25,0x25,0x27,0x3d,0x25,0x01,0x00,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xfe,0x22,0x22,0x52,0x8a,0xfe,0x02,0x0a,0x04 -+// 26254 暎 ; -+,0x00,0x00,0x3f,0x24,0x24,0x24,0x3d,0x25,0x25,0x27,0x3c,0x24,0x00,0x03,0x0c,0x00,0x88,0x88,0xff,0x88,0x88,0x20,0xfc,0x24,0x24,0xff,0x20,0x50,0x88,0x07,0x02,0x00 -+// 26255 暏 ; -+,0x00,0x00,0x3d,0x24,0x24,0x27,0x3c,0x24,0x25,0x26,0x3c,0x24,0x00,0x00,0x00,0x00,0x20,0x20,0xfe,0x24,0x28,0xff,0x20,0x40,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 26256 暐 ; -+,0x00,0x00,0x3d,0x24,0x27,0x24,0x3c,0x24,0x24,0x24,0x25,0x3d,0x03,0x00,0x00,0x00,0x20,0x20,0xfc,0x44,0xff,0x00,0xfc,0x84,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 26257 暑 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x1f,0x01,0x7f,0x01,0x07,0x1c,0x67,0x04,0x07,0x04,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfc,0x10,0xff,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 26258 暒 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x25,0x26,0x3c,0x24,0x00,0x00,0x03,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 26259 暓 ; -+,0x00,0x3f,0x0a,0x7f,0x0d,0x0c,0x14,0x24,0x4c,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x20,0x20,0x3f,0xc4,0x64,0x98,0x18,0x27,0xc2,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26260 暔 ; -+,0x00,0x00,0x7b,0x48,0x49,0x49,0x79,0x49,0x49,0x49,0x79,0x49,0x01,0x01,0x01,0x01,0x20,0x20,0xff,0x20,0xfe,0x02,0x4a,0x32,0xfe,0x22,0xfe,0x22,0x22,0x22,0x2a,0x04 -+// 26261 暕 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x4a,0x7a,0x4a,0x4b,0x48,0x78,0x48,0x01,0x06,0x00,0x00,0x20,0x20,0xff,0x20,0xfe,0x22,0xaa,0x72,0xfe,0x20,0x70,0xac,0x27,0x22,0x20,0x20 -+// 26262 暖 ; -+,0x00,0x01,0x3d,0x24,0x24,0x25,0x3c,0x27,0x24,0x24,0x3c,0x25,0x01,0x02,0x05,0x00,0x0e,0xf0,0x22,0x94,0x00,0xfe,0x40,0xff,0x40,0xfe,0xc4,0x28,0x18,0x67,0x82,0x00 -+// 26263 暗 ; -+,0x00,0x00,0x3d,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x20,0x10,0xfe,0x88,0x48,0x50,0xff,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 26264 暘 ; -+,0x00,0x3c,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x25,0x3e,0x24,0x03,0x00,0x03,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x4a,0x4a,0x92,0x22,0xc2,0x0a,0x04 -+// 26265 暙 ; -+,0x00,0x00,0x3d,0x24,0x25,0x24,0x3f,0x24,0x25,0x26,0x24,0x3c,0x24,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x88,0x04,0xff,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 26266 暚 ; -+,0x00,0x01,0x3c,0x25,0x24,0x25,0x3d,0x26,0x24,0x27,0x24,0x3d,0x25,0x01,0x01,0x00,0x1e,0xe0,0x02,0x23,0x94,0x00,0xfe,0x10,0x10,0xff,0x10,0x11,0x11,0xff,0x01,0x00 -+// 26267 暛 ; -+,0x00,0x00,0x3c,0x27,0x24,0x25,0x3c,0x27,0x24,0x24,0x3c,0x25,0x02,0x0c,0x03,0x00,0x00,0x88,0x50,0xff,0x20,0xfe,0x20,0xff,0x40,0x80,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 26268 暜 ; -+,0x08,0x04,0x7f,0x22,0x12,0x14,0x0f,0x70,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x08,0x7f,0x22,0x12,0x14,0x7f,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 26269 暝 ; -+,0x00,0x3d,0x25,0x24,0x24,0x24,0x3c,0x24,0x24,0x27,0x3c,0x24,0x00,0x01,0x02,0x00,0x00,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x00,0x88,0x84,0x03,0x01,0x00 -+// 26270 暞 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x25,0x3c,0x24,0x00,0x03,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x38,0x54,0x97,0x12,0x10 -+// 26271 暟 ; -+,0x00,0x01,0x3d,0x25,0x24,0x25,0x3c,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x03,0x00,0x10,0x11,0x11,0xff,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x84,0x44,0x48,0xff,0x00 -+// 26272 暠 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x04,0x07,0x00,0x1f,0x10,0x13,0x12,0x13,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x08,0xf8,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x06 -+// 26273 暡 ; -+,0x00,0x78,0x49,0x4a,0x48,0x49,0x78,0x4b,0x49,0x48,0x78,0x49,0x02,0x01,0x00,0x00,0x10,0x88,0x84,0x27,0x4a,0xfc,0x00,0xde,0x4a,0xc6,0xc6,0x4a,0x52,0x4a,0x84,0x00 -+// 26274 暢 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x09,0x08,0x09,0x08,0x08,0x08,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xff,0x40,0x7f,0xa9,0x29,0x49,0x91,0x21,0xc5,0x02 -+// 26275 暣 ; -+,0x00,0x3c,0x25,0x26,0x24,0x3d,0x24,0x25,0x24,0x27,0x3c,0x25,0x02,0x04,0x00,0x00,0x80,0xfe,0x00,0xfe,0x00,0xfc,0x44,0x54,0xe4,0xfc,0xe4,0x55,0x4b,0x43,0x41,0x00 -+// 26276 暤 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x3c,0x27,0x24,0x24,0x3d,0x26,0x00,0x00,0x00,0x00,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x50,0xa8,0x27,0xfa,0x20,0x20,0x20,0x20 -+// 26277 暥 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x25,0x24,0x25,0x3c,0x24,0x00,0x00,0x03,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x02,0x20,0xff,0x44,0xc8,0x38,0x66,0x82,0x00 -+// 26278 暦 ; -+,0x1f,0x10,0x12,0x12,0x1f,0x17,0x16,0x1a,0x12,0x17,0x14,0x27,0x24,0x47,0x04,0x00,0xff,0x00,0x08,0x08,0xbf,0x1c,0xaa,0xcb,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00 -+// 26279 暧 ; -+,0x00,0x03,0x79,0x48,0x4b,0x4a,0x78,0x4b,0x48,0x48,0x79,0x49,0x02,0x04,0x01,0x0e,0x1e,0xe0,0x44,0xa8,0xff,0x42,0x40,0xff,0x80,0xfc,0x88,0x50,0x20,0x58,0x87,0x02 -+// 26280 暨 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x16,0x1a,0x10,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x7e,0x10,0x50,0x7f,0x18,0x29,0xcf,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff -+// 26281 暩 ; -+,0x00,0x3c,0x25,0x25,0x26,0x3d,0x24,0x25,0x26,0x25,0x3c,0x25,0x01,0x02,0x00,0x00,0x80,0x8e,0xf2,0x2c,0xa8,0x44,0x83,0xfa,0x00,0xfe,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 26282 暪 ; -+,0x00,0x78,0x4b,0x48,0x48,0x48,0x7b,0x4a,0x4b,0x4a,0x4b,0x7a,0x4a,0x02,0x02,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0x32,0xaa,0x76,0x22,0x22,0x2a,0x24,0x00 -+// 26283 暫 ; -+,0x04,0x3f,0x04,0x1f,0x14,0x1f,0x14,0x3f,0x04,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x86,0x38,0xa0,0xbf,0xa4,0xa4,0xc4,0x44,0x84,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 26284 暬 ; -+,0x04,0x3f,0x04,0x7f,0x15,0x64,0x1f,0x04,0x3e,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x10,0x10,0x7c,0x94,0x14,0xa4,0x65,0x55,0x83,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 26285 暭 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x3c,0x25,0x24,0x24,0x25,0x3f,0x24,0x00,0x00,0x00,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x24,0xe8,0xa4,0x22,0xff,0x20,0x20,0x20,0x20 -+// 26286 暮 ; -+,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x7f,0x04,0x1f,0x64,0x07,0x04,0x07,0x20,0xfe,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x08,0xf4,0x13,0xf0,0x10,0xf0 -+// 26287 暯 ; -+,0x00,0x00,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x24,0x00,0x01,0x06,0x00,0x48,0x48,0xff,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x50,0x88,0x07,0x02 -+// 26288 暰 ; -+,0x01,0x79,0x4a,0x4c,0x49,0x49,0x7b,0x4b,0x4d,0x49,0x49,0x79,0x49,0x01,0x01,0x00,0x24,0x24,0x24,0x34,0x4a,0x93,0x08,0x48,0x4f,0x48,0x48,0x68,0x58,0x88,0x07,0x00 -+// 26289 暱 ; -+,0x00,0x03,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x03,0x00,0x00,0xff,0x44,0xff,0x44,0x10,0xff,0x10,0x20,0x7e,0xa2,0x22,0x3e,0x00,0xff,0x00 -+// 26290 暲 ; -+,0x00,0x00,0x3c,0x24,0x25,0x24,0x3c,0x24,0x24,0x24,0x24,0x3c,0x25,0x00,0x00,0x00,0x20,0x10,0xfe,0x44,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 26291 暳 ; -+,0x00,0x3c,0x27,0x24,0x27,0x24,0x3f,0x24,0x24,0x25,0x24,0x3d,0x24,0x01,0x00,0x00,0x84,0x84,0xdf,0x84,0xdf,0x84,0xdf,0x84,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x00 -+// 26292 暴 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x3f,0x02,0x7f,0x02,0x04,0x1a,0x61,0x04,0x08,0x01,0xf8,0x08,0xf8,0x08,0xf8,0x20,0xfe,0x20,0xff,0x20,0x90,0xaf,0xc2,0x90,0x88,0x80 -+// 26293 暵 ; -+,0x00,0x03,0x38,0x28,0x28,0x2b,0x3a,0x2b,0x28,0x2b,0x38,0x2b,0x00,0x01,0x0e,0x00,0x88,0xfe,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x50,0x88,0x07,0x00 -+// 26294 暶 ; -+,0x02,0x01,0x79,0x4f,0x4a,0x4a,0x7b,0x4a,0x4a,0x4a,0x4a,0x7c,0x04,0x0a,0x11,0x00,0x10,0x10,0x3f,0xa0,0x00,0x3f,0x8a,0x88,0xae,0xa8,0xa8,0xa8,0xd8,0x8f,0x02,0x00 -+// 26295 暷 ; -+,0x00,0x01,0x3c,0x25,0x25,0x25,0x3d,0x25,0x24,0x25,0x24,0x3d,0x24,0x00,0x00,0x00,0x20,0xfe,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x21,0xff,0x04,0xff,0x44,0x44,0x14,0x08 -+// 26296 暸 ; -+,0x00,0x00,0x7b,0x4a,0x49,0x49,0x7b,0x4d,0x49,0x49,0x78,0x49,0x01,0x02,0x00,0x00,0x20,0x20,0xff,0x52,0x8c,0xff,0x06,0xfc,0x04,0xfc,0x20,0x28,0x24,0x22,0xa0,0x40 -+// 26297 暹 ; -+,0x03,0x22,0x13,0x12,0x03,0x01,0x71,0x12,0x17,0x1a,0x13,0x12,0x13,0x2a,0x47,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xfe,0x20,0xfc,0x20,0xfc,0x20,0xfe,0x00,0xff,0x00 -+// 26298 暺 ; -+,0x01,0x3d,0x25,0x25,0x24,0x3d,0x25,0x25,0x25,0x25,0x3c,0x00,0x07,0x00,0x00,0x00,0xde,0x52,0x52,0xde,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0x20,0xff,0x20,0x20,0x20 -+// 26299 暻 ; -+,0x01,0x3d,0x25,0x25,0x25,0x24,0x3f,0x24,0x25,0x25,0x3d,0x24,0x01,0x01,0x02,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x20,0x24,0x22,0xa2,0x40 -+// 26300 暼 ; -+,0x04,0x25,0x16,0x3f,0x24,0x2e,0x35,0x24,0x24,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0x3f,0xa4,0xd4,0x94,0x88,0x97,0xa2,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26301 暽 ; -+,0x00,0x79,0x48,0x4b,0x48,0x48,0x7b,0x49,0x49,0x4a,0x4d,0x78,0x49,0x02,0x0c,0x00,0x20,0x24,0xa8,0xff,0x70,0xac,0x27,0x22,0xdf,0x54,0x54,0xbf,0x04,0x04,0x04,0x04 -+// 26302 暾 ; -+,0x01,0x00,0x7b,0x48,0x4b,0x4a,0x7b,0x48,0x4b,0x48,0x78,0x07,0x00,0x00,0x02,0x01,0x08,0x8c,0xe8,0x0f,0xca,0x52,0xd2,0x2a,0xea,0x44,0xe4,0x8a,0x8a,0x93,0xe2,0x00 -+// 26303 暿 ; -+,0x00,0x03,0x3c,0x25,0x24,0x25,0x3d,0x25,0x24,0x27,0x3c,0x25,0x01,0x01,0x01,0x00,0x20,0xff,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0x00 -+// 26304 曀 ; -+,0x00,0x00,0x7b,0x48,0x49,0x48,0x7b,0x4a,0x49,0x48,0x49,0x79,0x49,0x00,0x00,0x07,0x20,0x20,0xfe,0x20,0xfc,0x00,0xff,0x02,0xfc,0x00,0xfc,0x04,0xfc,0x88,0x50,0xff -+// 26305 曁 ; -+,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x28,0x32,0x1e,0x07,0x04,0x07,0x04,0x07,0x00,0x3f,0x00,0xfe,0x10,0x90,0xfe,0x10,0x31,0xdf,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff -+// 26306 曂 ; -+,0x00,0x3c,0x24,0x24,0x24,0x25,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x00,0x48,0x48,0xfe,0x48,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x44,0x42,0x82 -+// 26307 曃 ; -+,0x00,0x00,0x78,0x4c,0x4a,0x4a,0x78,0x4f,0x49,0x49,0x79,0x49,0x01,0x02,0x04,0x00,0x10,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x56,0x38,0x54,0x93,0x30,0x80,0x7f,0x00 -+// 26308 曄 ; -+,0x00,0x00,0x7b,0x48,0x4b,0x49,0x7b,0x49,0x49,0x4b,0x48,0x7f,0x48,0x00,0x00,0x00,0x88,0x88,0xfe,0x88,0xfe,0x24,0xff,0x24,0x24,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 26309 曅 ; -+,0x0f,0x08,0x08,0x0f,0x02,0x3f,0x02,0x1f,0x04,0x7f,0x04,0x1f,0x00,0x3f,0x00,0x00,0xfc,0x84,0x44,0xfc,0x10,0xff,0x10,0xfe,0x88,0xff,0x88,0xfe,0x80,0xff,0x80,0x80 -+// 26310 曆 ; -+,0x00,0x1f,0x10,0x1f,0x12,0x1f,0x17,0x16,0x1a,0x17,0x14,0x27,0x24,0x47,0x04,0x00,0x00,0xff,0x00,0xbe,0x08,0xbf,0x1c,0xaa,0x4b,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00 -+// 26311 曇 ; -+,0x07,0x04,0x04,0x07,0x00,0x07,0x00,0x3f,0x20,0x0e,0x00,0x0f,0x00,0x3f,0x02,0x0f,0xf8,0x88,0x48,0xf8,0x00,0xf0,0x80,0xff,0x82,0xb8,0x00,0xf8,0x00,0xfe,0x10,0xf8 -+// 26312 曈 ; -+,0x00,0x00,0x3d,0x24,0x24,0x27,0x24,0x3d,0x25,0x25,0x25,0x25,0x3c,0x03,0x00,0x07,0x40,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff -+// 26313 曉 ; -+,0x00,0x79,0x48,0x4b,0x49,0x4b,0x79,0x49,0x4f,0x48,0x4f,0x78,0x48,0x01,0x06,0x00,0x20,0xfe,0x20,0xff,0x08,0xde,0x08,0xc8,0x3f,0x00,0xff,0x90,0x91,0x11,0x0f,0x00 -+// 26314 曊 ; -+,0x00,0x3d,0x24,0x25,0x25,0x25,0x3c,0x25,0x26,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0x48,0xfe,0x4a,0xfe,0x48,0xff,0x89,0xff,0x92,0xca,0xa6,0x92,0xfe,0x44,0x42,0x82 -+// 26315 曋 ; -+,0x01,0x3c,0x25,0x25,0x25,0x25,0x3c,0x24,0x24,0x24,0x24,0x3c,0x00,0x03,0x00,0x00,0xff,0x48,0xff,0x49,0x49,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10 -+// 26316 曌 ; -+,0x00,0x1e,0x12,0x1e,0x12,0x1e,0x01,0x00,0x3f,0x22,0x0c,0x00,0x0f,0x00,0x3f,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x94,0x88,0xff,0x22,0x18,0x00,0xf8,0x80,0xff,0x00 -+// 26317 曍 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x24,0x25,0x3c,0x01,0x07,0x00,0x00,0x00,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x24,0xa8,0x24,0xff,0x20,0x20,0x20 -+// 26318 曎 ; -+,0x00,0x01,0x3d,0x25,0x25,0x24,0x3d,0x24,0x27,0x24,0x25,0x3c,0x27,0x00,0x00,0x00,0x00,0xfe,0x4a,0x4a,0xfe,0x20,0xfe,0x20,0xff,0x88,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 26319 曏 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x11,0x21,0x79,0x11,0x25,0x7d,0x09,0x09,0x11,0x60,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xef,0x2a,0xea,0x2c,0xea,0x49,0x6d,0xaa,0x08,0x08 -+// 26320 曐 ; -+,0x07,0x04,0x07,0x04,0x07,0x3f,0x21,0x3f,0x21,0x3f,0x08,0x0f,0x10,0x2f,0x00,0x7f,0xf8,0x08,0xf8,0x08,0xf8,0x3f,0x21,0x3f,0x21,0xbf,0x80,0xfe,0x80,0xfc,0x80,0xff -+// 26321 曑 ; -+,0x07,0x04,0x07,0x04,0x3f,0x22,0x3e,0x22,0x3e,0x01,0x06,0x39,0x06,0x03,0x00,0x0f,0xf0,0x10,0xf0,0x10,0xfe,0x22,0x3e,0x22,0xbe,0x60,0x98,0x27,0xc8,0x10,0x60,0x80 -+// 26322 曒 ; -+,0x00,0x01,0x7b,0x4a,0x4b,0x4a,0x7b,0x49,0x4f,0x49,0x49,0x7a,0x4a,0x04,0x19,0x00,0x88,0x08,0xc8,0x50,0xdf,0x72,0xd2,0x14,0xf4,0x14,0xc8,0x48,0x54,0x57,0x62,0x80 -+// 26323 曓 ; -+,0x0f,0x08,0x08,0x0f,0x10,0x1f,0x10,0x1f,0x00,0x3f,0x01,0x0e,0x77,0x01,0x07,0x18,0xf8,0x88,0x48,0xf8,0x84,0xfc,0x84,0xfc,0x80,0xff,0xc0,0xb8,0xf7,0xa0,0xf0,0x8c -+// 26324 曔 ; -+,0x01,0x79,0x4b,0x49,0x4a,0x4b,0x7c,0x4b,0x4a,0x4a,0x7b,0x48,0x00,0x00,0x00,0x00,0x48,0x48,0xe8,0x4f,0x12,0xf2,0x32,0xba,0xaa,0xa4,0xa4,0x24,0x2a,0xb3,0x42,0x00 -+// 26325 曕 ; -+,0x00,0x3c,0x25,0x27,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x02,0x02,0x04,0x00,0x40,0xfc,0x08,0xff,0x44,0x92,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x00 -+// 26326 曖 ; -+,0x00,0x7b,0x49,0x48,0x4b,0x4a,0x78,0x4a,0x4a,0x48,0x49,0x79,0x06,0x00,0x07,0x00,0x3e,0xe0,0x22,0x94,0xff,0x22,0x90,0x85,0xfd,0x80,0xfc,0x48,0x30,0xd8,0x07,0x00 -+// 26327 曗 ; -+,0x00,0x3d,0x24,0x27,0x24,0x24,0x3d,0x24,0x25,0x24,0x27,0x3c,0x00,0x03,0x0c,0x00,0x48,0x4a,0xcc,0xff,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x68,0xa4,0x27,0x22,0x20 -+// 26328 曘 ; -+,0x01,0x00,0x03,0x3e,0x25,0x24,0x25,0x3c,0x25,0x24,0x25,0x3d,0x25,0x01,0x01,0x01,0xfc,0x20,0xff,0x22,0xac,0x20,0xac,0x00,0xfe,0x20,0xfe,0x52,0x52,0x52,0x52,0x06 -+// 26329 曙 ; -+,0x01,0x3d,0x25,0x25,0x24,0x25,0x3c,0x27,0x24,0x24,0x27,0x3c,0x00,0x00,0x00,0x00,0xfe,0x4a,0x4a,0xfe,0x20,0xfe,0x24,0xff,0x30,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 26330 曚 ; -+,0x00,0x7b,0x48,0x4b,0x4a,0x78,0x48,0x4b,0x48,0x4b,0x78,0x4b,0x01,0x06,0x00,0x00,0x48,0xff,0x48,0xff,0x02,0xfc,0x00,0xff,0xc4,0x68,0xb8,0x54,0x97,0x12,0x50,0x20 -+// 26331 曛 ; -+,0x00,0x01,0x78,0x4b,0x48,0x4b,0x7a,0x4b,0x48,0x4b,0x48,0x7b,0x40,0x02,0x02,0x04,0x00,0xfc,0x20,0xff,0x20,0xfe,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x00,0x54,0x2a,0x2a -+// 26332 曜 ; -+,0x00,0x03,0x78,0x49,0x48,0x49,0x7a,0x49,0x49,0x4b,0x4d,0x79,0x49,0x01,0x01,0x01,0x00,0xde,0x42,0x4a,0xc6,0x4a,0x62,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 26333 曝 ; -+,0x01,0x3d,0x25,0x25,0x25,0x3c,0x27,0x24,0x27,0x24,0x3d,0x02,0x0c,0x03,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xfe,0x88,0xff,0xa8,0xac,0x73,0xa8,0x26,0xa0,0x40 -+// 26334 曞 ; -+,0x03,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x04,0x04,0x08,0x00,0xff,0x24,0xff,0x24,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x95,0xff,0x81,0x85,0x82 -+// 26335 曟 ; -+,0x0f,0x08,0x0f,0x00,0x3f,0x29,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x14,0x16,0x24,0xf8,0x88,0xf8,0x00,0x7e,0x52,0x7e,0x00,0xfc,0x00,0xf8,0x00,0xfe,0x48,0x30,0x0e -+// 26336 曠 ; -+,0x00,0x00,0x7b,0x4a,0x4a,0x4a,0x7b,0x4a,0x4a,0x4a,0x7a,0x02,0x04,0x04,0x08,0x00,0x20,0x10,0xff,0x48,0xfe,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x42,0x82 -+// 26337 曡 ; -+,0x07,0x04,0x07,0x00,0x1f,0x19,0x15,0x1f,0x00,0x3f,0x24,0x07,0x04,0x07,0x04,0x7f,0xf0,0x90,0xf0,0x00,0x7c,0x64,0x54,0x7c,0x00,0xff,0x12,0xf0,0x10,0xf0,0x10,0xff -+// 26338 曢 ; -+,0x00,0x7b,0x4a,0x48,0x4b,0x49,0x78,0x4b,0x49,0x49,0x49,0x79,0x49,0x00,0x01,0x02,0x20,0xff,0x02,0x20,0xff,0x32,0xcc,0x03,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x24,0x62 -+// 26339 曣 ; -+,0x00,0x00,0x7b,0x48,0x48,0x49,0x7f,0x49,0x49,0x4b,0x4d,0x78,0x4a,0x02,0x06,0x00,0x48,0x48,0xff,0x48,0x78,0x04,0x77,0x54,0x55,0x75,0x03,0x00,0x92,0x49,0x49,0x00 -+// 26340 曤 ; -+,0x01,0x78,0x4b,0x4a,0x49,0x48,0x79,0x48,0x48,0x49,0x7b,0x45,0x01,0x01,0x01,0x01,0xfc,0x20,0xff,0x22,0xac,0x20,0xac,0x20,0x90,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff -+// 26341 曥 ; -+,0x00,0x00,0x38,0x29,0x29,0x29,0x39,0x29,0x29,0x29,0x29,0x3a,0x2a,0x04,0x0b,0x00,0x20,0x3e,0x20,0xff,0x22,0xfc,0x22,0x7e,0x54,0x7c,0x54,0xfe,0xaa,0xaa,0xff,0x00 -+// 26342 曦 ; -+,0x00,0x3b,0x28,0x2b,0x28,0x2b,0x38,0x2b,0x28,0x2b,0x39,0x2a,0x03,0x01,0x01,0x00,0x90,0xfe,0x20,0xfe,0x20,0xfe,0x10,0xd4,0x92,0xff,0xc8,0xaa,0xf5,0x0d,0xd3,0x41 -+// 26343 曧 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x1f,0x11,0x3f,0x2a,0x3f,0x24,0x24,0x25,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x88,0x08,0x3e,0x2a,0xaa,0xbe,0x88,0x8a,0xff,0x81 -+// 26344 曨 ; -+,0x01,0x38,0x2f,0x2a,0x29,0x2f,0x38,0x2b,0x2a,0x2b,0x2a,0x2b,0x3a,0x2a,0x02,0x02,0x10,0x90,0xff,0x50,0x9e,0xe2,0x02,0xde,0x50,0xde,0x50,0xde,0x50,0x5d,0xd1,0x4f -+// 26345 曩 ; -+,0x0f,0x08,0x0f,0x00,0x3f,0x09,0x0f,0x02,0x1f,0x02,0x1f,0x02,0x3f,0x06,0x0a,0x33,0xf8,0x88,0xf8,0x80,0xff,0x44,0x7c,0x10,0xfe,0x10,0xfe,0x10,0xff,0x48,0xb0,0x0f -+// 26346 曪 ; -+,0x00,0x03,0x7a,0x4a,0x4b,0x49,0x49,0x7b,0x48,0x49,0x4b,0x48,0x7a,0x4d,0x04,0x00,0x00,0xff,0x49,0x49,0xff,0x18,0x24,0xff,0xa4,0x3f,0xa4,0x3f,0xa4,0x64,0x3f,0x20 -+// 26347 曫 ; -+,0x08,0x13,0x24,0x79,0x24,0x7d,0x00,0x55,0x55,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x84,0xf4,0x09,0xde,0x09,0xdf,0x00,0xd5,0x55,0xc0,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 26348 曬 ; -+,0x03,0x38,0x2b,0x2b,0x2a,0x38,0x2b,0x2a,0x2b,0x2a,0x3b,0x2a,0x04,0x04,0x08,0x10,0xde,0x00,0xde,0x5a,0x52,0x20,0xff,0x50,0xfe,0x52,0xfe,0x90,0xdc,0x91,0xd1,0x8f -+// 26349 曭 ; -+,0x01,0x00,0x3b,0x2a,0x28,0x28,0x39,0x29,0x29,0x29,0x28,0x39,0x28,0x03,0x02,0x04,0x24,0xa8,0xff,0x8a,0xf8,0x00,0xfe,0xaa,0x72,0xfe,0x20,0xfe,0x20,0xff,0x92,0x49 -+// 26350 曮 ; -+,0x03,0x02,0x73,0x50,0x57,0x55,0x74,0x57,0x55,0x55,0x75,0x55,0x05,0x09,0x0b,0x10,0xde,0x52,0xde,0x00,0xff,0xe8,0x48,0xff,0x32,0xea,0x2a,0xe4,0x34,0xec,0x33,0x22 -+// 26351 曯 ; -+,0x03,0x3a,0x2b,0x2a,0x2a,0x3a,0x2b,0x2b,0x2b,0x2a,0x3a,0x2a,0x04,0x04,0x09,0x00,0xfe,0x02,0xfe,0xa8,0x70,0xa8,0xfe,0x4a,0xfe,0x23,0xf9,0xa9,0xf9,0x29,0xfd,0x03 -+// 26352 曰 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00,0x00 -+// 26353 曱 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x80,0x80,0x80,0x80 -+// 26354 曲 ; -+,0x02,0x02,0x02,0x1f,0x12,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x1f,0x10,0x00,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0xfe,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 26355 曳 ; -+,0x01,0x01,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x00,0x00,0x00,0x00,0x07,0x78,0x00,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x80,0x88,0x58,0xe2,0x12,0x0a,0x06 -+// 26356 更 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x04,0x02,0x01,0x02,0x0c,0x70,0x00,0x00,0xff,0x80,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x80,0x80,0x00,0xc0,0x30,0x0f,0x04 -+// 26357 曵 ; -+,0x00,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x03,0x3c,0x00,0x88,0x84,0x82,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x80,0x48,0x58,0x60,0x91,0x0d,0x03 -+// 26358 曶 ; -+,0x04,0x04,0x07,0x0a,0x12,0x04,0x18,0x03,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0xfc,0x24,0x24,0x44,0x94,0x08,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 26359 曷 ; -+,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x04,0x0f,0x08,0x18,0x28,0x0b,0x0f,0x00,0x00,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x00,0xfe,0x42,0x42,0xa2,0x12,0xfa,0x02,0x0a,0x04 -+// 26360 書 ; -+,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfc,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 26361 曹 ; -+,0x01,0x7f,0x01,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x20,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00 -+// 26362 曺 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x80,0x80,0xff,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 26363 曻 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x08,0x0f,0x11,0x19,0x26,0x02,0x04,0x18,0x60,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x08,0x7e,0x48,0x48,0xff,0x08,0x08,0x08,0x08,0x08 -+// 26364 曼 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x22,0x3f,0x00,0x0f,0x02,0x01,0x00,0x03,0x3c,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x22,0xfe,0x00,0xf8,0x10,0x20,0xc0,0x30,0x0e -+// 26365 曽 ; -+,0x04,0x02,0x01,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x08,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x00 -+// 26366 曾 ; -+,0x04,0x02,0x01,0x1f,0x14,0x12,0x12,0x1f,0x00,0x07,0x04,0x07,0x04,0x04,0x07,0x04,0x18,0x10,0x20,0xfe,0x8a,0x92,0xa2,0xfe,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26367 替 ; -+,0x04,0x04,0x1f,0x04,0x3f,0x04,0x0a,0x11,0x6f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x08,0x08,0x3e,0x08,0x7f,0x18,0x24,0x43,0xfa,0x08,0xf8,0x08,0x08,0xf8,0x08,0x00 -+// 26368 最 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x71,0x01,0x01,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x00,0x7e,0x44,0x28,0x90,0x28,0x47,0x82,0x00 -+// 26369 朁 ; -+,0x3f,0x08,0x28,0x3f,0x0c,0x15,0x16,0x64,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x7e,0x10,0x50,0x7f,0x18,0x29,0x29,0x47,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x00 -+// 26370 朂 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x71,0x01,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x20,0x20,0xfe,0x22,0x22,0xa2,0x42,0x4a,0x84 -+// 26371 會 ; -+,0x00,0x01,0x02,0x0c,0x33,0x00,0x0f,0x0a,0x09,0x0f,0x00,0x07,0x04,0x07,0x04,0x07,0x80,0x40,0x30,0x08,0xf7,0x00,0xfc,0x94,0xa4,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 26372 朄 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x08,0x08,0x0b,0x08,0x08,0x10,0x10,0xff,0x10,0xfe,0x92,0xd6,0xba,0xfe,0x10,0x38,0x54,0x93,0x12,0x10,0x10 -+// 26373 朅 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x09,0x10,0x14,0x2e,0x72,0x00,0x00,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0xfe,0x12,0x92,0xaa,0xc6,0xfe,0x02,0x0a,0x04 -+// 26374 朆 ; -+,0x00,0x11,0x0a,0x3f,0x24,0x35,0x2e,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x00,0x20,0x30,0x20,0xbf,0xb5,0xd5,0x95,0x95,0x25,0x29,0x49,0x11,0x61,0x05,0x02,0x00 -+// 26375 朇 ; -+,0x04,0x0a,0x11,0x6e,0x00,0x3f,0x35,0x2e,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x08,0x10,0x3e,0xea,0x3e,0xaa,0xaa,0xbe,0x98,0x28,0x7f,0x08,0x08,0x08,0x08,0x00 -+// 26376 月 ; -+,0x03,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x03,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x28,0x10,0x00 -+// 26377 有 ; -+,0x00,0x00,0x3f,0x01,0x02,0x07,0x0c,0x14,0x27,0x44,0x04,0x07,0x04,0x04,0x04,0x04,0x80,0x80,0xff,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x48,0x38,0x10 -+// 26378 朊 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x22,0x22,0x4a,0x05,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 26379 朋 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x11,0x21,0x25,0x42,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x42,0x4a,0x84,0x00 -+// 26380 朌 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x08,0x08,0x48,0x64,0x44,0x83,0x82,0x7c,0x24,0x24,0x24,0x44,0x44,0x94,0x08,0x00 -+// 26381 服 ; -+,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x7e,0x42,0x42,0x4a,0x44,0x40,0x7e,0x62,0x62,0x54,0x54,0x48,0x54,0x67,0x42,0x00 -+// 26382 朎 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x23,0x22,0x3e,0x22,0x22,0x22,0x22,0x2a,0x44,0x00,0x10,0x10,0x10,0x28,0x44,0x87,0x22,0x10,0xff,0x02,0x04,0x48,0x30,0x18,0x08,0x00 -+// 26383 朏 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 26384 朐 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0x40,0x40,0xfe,0x82,0x02,0x02,0xf2,0x92,0x92,0xf2,0x02,0x02,0x02,0x0a,0x04 -+// 26385 朑 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x27,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x34,0x48,0x00,0x00,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x3c,0x00,0x00,0xff,0x00,0x00 -+// 26386 朒 ; -+,0x00,0x3c,0x24,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x09,0x00,0x20,0x20,0xfe,0x22,0x32,0x4a,0x86,0x22,0x22,0x52,0x8a,0x02,0x02,0x0a,0x04 -+// 26387 朓 ; -+,0x00,0x3c,0x24,0x26,0x3d,0x25,0x24,0x24,0x3c,0x27,0x24,0x24,0x24,0x35,0x4a,0x00,0x00,0x50,0x50,0x52,0x54,0x58,0x50,0x58,0xd4,0x52,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 26388 朔 ; -+,0x10,0x08,0x09,0x3f,0x04,0x14,0x14,0x14,0x1f,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x80,0x9f,0x11,0xd1,0x1f,0x91,0x91,0x9f,0x91,0x11,0x21,0x21,0x41,0x45,0x82,0x00 -+// 26389 朕 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x24,0x25,0x3c,0x24,0x24,0x24,0x24,0x34,0x4b,0x00,0x84,0x44,0x28,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 26390 朖 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x20,0x10,0xfe,0x82,0xfe,0x82,0xfe,0xc0,0xa2,0x94,0x98,0x88,0xa4,0xc7,0x82,0x00 -+// 26391 朗 ; -+,0x08,0x04,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x20,0x24,0x26,0x2a,0x30,0x20,0x03,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 26392 朘 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x13,0x12,0x22,0x2a,0x45,0x00,0x20,0x20,0x44,0xfe,0x02,0x24,0x42,0xa1,0x3c,0x44,0xa8,0x10,0x28,0x47,0x82,0x00 -+// 26393 朙 ; -+,0x00,0x3f,0x20,0x2a,0x2a,0x2b,0x30,0x2e,0x2a,0x2a,0x2a,0x3f,0x00,0x00,0x01,0x00,0x00,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0x22,0x4a,0x84,0x00 -+// 26394 朚 ; -+,0x00,0x00,0x7f,0x08,0x0f,0x00,0x1e,0x12,0x12,0x1e,0x12,0x1e,0x00,0x00,0x01,0x00,0x80,0x40,0xff,0x00,0xfc,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x84,0x94,0x08,0x00 -+// 26395 望 ; -+,0x08,0x04,0x7f,0x10,0x10,0x12,0x14,0x18,0x00,0x1f,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x8e,0x00,0xfe,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 26396 朜 ; -+,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x13,0x12,0x22,0x2a,0x44,0x00,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x50,0x20,0x00 -+// 26397 朝 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x00,0x3e,0xa2,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0xa2,0x22,0x42,0x4a,0x84,0x00 -+// 26398 朞 ; -+,0x04,0x3f,0x04,0x06,0x05,0x04,0x3f,0x08,0x17,0x64,0x07,0x04,0x07,0x04,0x04,0x04,0x10,0xfe,0x90,0x50,0x30,0x90,0xff,0x08,0xf4,0x17,0xf2,0x10,0xf0,0x10,0x50,0x20 -+// 26399 期 ; -+,0x11,0x11,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x7f,0x00,0x12,0x11,0x21,0x40,0x00,0x00,0x3e,0xa2,0x22,0x22,0x3e,0x22,0x22,0x22,0xbe,0x22,0x42,0x42,0x8a,0x84,0x00 -+// 26400 朠 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x24,0x2c,0x45,0x00,0x44,0x44,0xff,0x44,0x10,0xfe,0x92,0x92,0x92,0xff,0x10,0x28,0x24,0x47,0x82,0x00 -+// 26401 朡 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x24,0x24,0x24,0x3d,0x24,0x24,0x25,0x24,0x34,0x4b,0x00,0x00,0x4a,0x32,0x4a,0xfe,0x00,0x44,0x83,0x40,0x7e,0xc4,0x28,0x30,0xc8,0x07,0x02 -+// 26402 朢 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x24,0x3f,0x00,0x1f,0x00,0x0f,0x00,0x00,0x3f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x46,0x00,0xfe,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 26403 朣 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x2c,0x45,0x00,0x20,0x10,0xfe,0x44,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 26404 朤 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x15,0x22,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x25,0x02,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x2a,0x44,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x4a,0x04 -+// 26405 朥 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x25,0x3d,0x25,0x24,0x24,0x24,0x24,0x34,0x48,0x00,0x44,0x45,0x56,0xec,0x46,0xa9,0x11,0xff,0x22,0x20,0xfe,0x22,0x42,0x4a,0x84,0x00 -+// 26406 朦 ; -+,0x00,0x3d,0x24,0x25,0x25,0x3c,0x24,0x25,0x24,0x3d,0x24,0x25,0x24,0x25,0x54,0x48,0x44,0xff,0x44,0xff,0x02,0xfc,0x00,0xff,0x40,0xa4,0x78,0x94,0x6b,0x88,0x28,0x10 -+// 26407 朧 ; -+,0x3c,0x24,0x27,0x25,0x3c,0x27,0x24,0x25,0x3d,0x25,0x25,0x25,0x25,0x35,0x4a,0x00,0x88,0x4f,0xe8,0x2e,0xc2,0xfe,0x08,0xee,0x28,0xee,0x28,0xee,0x29,0x69,0x27,0x00 -+// 26408 木 ; -+,0x00,0x00,0x00,0x3f,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0xff,0x80,0xc0,0xa0,0xa0,0x90,0x88,0x8c,0x87,0x82,0x80,0x80,0x00 -+// 26409 朩 ; -+,0x00,0x00,0x00,0x3f,0x00,0x04,0x06,0x04,0x04,0x08,0x08,0x10,0x10,0x20,0x42,0x01,0x80,0x80,0x80,0xff,0x80,0xa0,0xa0,0x90,0x90,0x88,0x88,0x84,0x87,0x82,0x80,0x00 -+// 26410 未 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x7f,0x01,0x01,0x02,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 26411 末 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0x80,0x80,0xff,0x80,0x80,0xfc,0x80,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 26412 本 ; -+,0x00,0x00,0x00,0x7f,0x01,0x01,0x02,0x02,0x04,0x08,0x17,0x60,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0xff,0xc0,0xa0,0xa0,0x90,0x88,0x8c,0xf7,0x82,0x80,0x80,0x80,0x00 -+// 26413 札 ; -+,0x04,0x04,0x04,0x7f,0x04,0x0e,0x0d,0x0d,0x14,0x14,0x24,0x44,0x04,0x04,0x04,0x04,0x20,0x20,0x20,0xa0,0x20,0x20,0x20,0xa0,0xa0,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 26414 朮 ; -+,0x00,0x00,0x00,0x3f,0x00,0x00,0x04,0x04,0x04,0x08,0x08,0x08,0x10,0x20,0x40,0x00,0x80,0x90,0x88,0xff,0x80,0x80,0x90,0x90,0x90,0x90,0x90,0x90,0x91,0x8f,0x80,0x80 -+// 26415 术 ; -+,0x00,0x00,0x00,0x00,0x7f,0x00,0x01,0x02,0x02,0x04,0x08,0x10,0x60,0x00,0x00,0x00,0x80,0x90,0x88,0x80,0xff,0x80,0xc0,0xa0,0x90,0x88,0x8c,0x87,0x82,0x80,0x80,0x00 -+// 26416 朰 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x0f,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x80,0x80,0xff,0xc0,0xb0,0x88,0x87,0xf8,0x10,0x60,0x80,0x02,0x02,0x02,0xfe,0x00 -+// 26417 朱 ; -+,0x00,0x08,0x08,0x1f,0x10,0x20,0x7f,0x00,0x01,0x02,0x04,0x08,0x10,0x60,0x00,0x00,0x80,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 26418 朲 ; -+,0x04,0x04,0x04,0x04,0x3f,0x04,0x0c,0x0e,0x15,0x14,0x24,0x44,0x04,0x04,0x07,0x04,0x10,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 26419 朳 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x1a,0x28,0x28,0x48,0x09,0x09,0x0a,0x0c,0x08,0x00,0x08,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x84,0x84,0x04,0x02,0x03,0x02,0x00 -+// 26420 朴 ; -+,0x04,0x04,0x04,0x3f,0x04,0x0c,0x0e,0x15,0x14,0x24,0x24,0x44,0x04,0x04,0x04,0x04,0x10,0x10,0x10,0x90,0x10,0x18,0x14,0x93,0x91,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26421 朵 ; -+,0x03,0x02,0x02,0x02,0x04,0x04,0x18,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xe0,0x20,0x20,0x20,0x20,0x1e,0x80,0x80,0xfe,0xc0,0xa0,0x98,0x87,0x82,0x80,0x00 -+// 26422 朶 ; -+,0x0f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x3f,0x01,0x02,0x04,0x18,0x00,0x00,0xf8,0x10,0x20,0x3e,0x02,0x02,0x0a,0x84,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26423 朷 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0c,0x1a,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x08,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 26424 朸 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x8a,0x04,0x00 -+// 26425 朹 ; -+,0x08,0x08,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x09,0x0a,0x08,0x00,0x40,0x40,0x40,0x40,0xf8,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00,0x00 -+// 26426 机 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x00,0x7c,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x85,0x05,0x05,0x03,0x00 -+// 26427 朻 ; -+,0x08,0x08,0x08,0x7f,0x08,0x0c,0x1a,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x02,0x02,0x02,0x42,0x42,0x42,0x42,0x42,0x4e,0x72,0x42,0x02,0x02,0x02,0x02,0x02 -+// 26428 朼 ; -+,0x04,0x04,0x04,0x04,0x3f,0x0c,0x0e,0x15,0x15,0x24,0x24,0x44,0x04,0x04,0x04,0x04,0x20,0x20,0x20,0x22,0xa3,0x26,0x28,0x30,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 26429 朽 ; -+,0x08,0x09,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x7e,0x02,0x02,0x02,0x02,0x02,0x02,0x14,0x08,0x00 -+// 26430 朾 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 26431 朿 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x10,0x10,0x10,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0x80,0xff,0x80,0xfc,0x84,0x84,0x84,0x84,0xc0,0xb0,0x88,0x87,0x82,0x80,0x80 -+// 26432 杀 ; -+,0x00,0x0c,0x03,0x00,0x01,0x06,0x18,0x00,0x3f,0x00,0x04,0x04,0x08,0x10,0x02,0x01,0x10,0x10,0x20,0xc0,0x30,0x18,0x88,0x80,0xff,0x80,0x90,0x88,0x84,0x84,0x80,0x00 -+// 26433 杁 ; -+,0x08,0x08,0x08,0x7f,0x08,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x80,0x40,0x20,0x20,0x10,0x10,0x10,0x30,0x28,0x28,0x48,0x44,0x84,0x07,0x02,0x00 -+// 26434 杂 ; -+,0x01,0x01,0x1f,0x02,0x02,0x04,0x18,0x00,0x3f,0x00,0x04,0x04,0x08,0x10,0x02,0x01,0x00,0x00,0xf0,0x10,0x12,0x12,0x8e,0x80,0xff,0x80,0x90,0x88,0x86,0x82,0x80,0x00 -+// 26435 权 ; -+,0x08,0x08,0x08,0x7f,0x08,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0xfe,0x42,0x44,0x44,0x44,0x24,0x28,0x28,0x10,0x10,0x28,0xc7,0x02,0x00 -+// 26436 杄 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26437 杅 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x0d,0x1a,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 26438 杆 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26439 杇 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x00,0x00,0x00,0xff,0x40,0x40,0x40,0x7c,0x04,0x04,0x04,0x04,0x14,0x08 -+// 26440 杈 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0xfe,0x82,0xa2,0x94,0x54,0x48,0x28,0x10,0x10,0x28,0x44,0x87,0x02,0x00 -+// 26441 杉 ; -+,0x04,0x04,0x04,0x3f,0x04,0x0e,0x0d,0x15,0x14,0x24,0x44,0x04,0x04,0x04,0x05,0x04,0x00,0x04,0x08,0x90,0x60,0x02,0x04,0x08,0x30,0xc1,0x02,0x04,0x08,0x30,0xc0,0x00 -+// 26442 杊 ; -+,0x08,0x08,0x08,0x3f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x42,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x92,0x92,0x02,0x02,0x00 -+// 26443 杋 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x00,0x78,0x48,0x48,0x48,0x48,0x68,0x58,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 26444 杌 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x00,0x00,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x09,0x09,0x07,0x00 -+// 26445 杍 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x04,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 26446 李 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x6f,0x00,0x00,0x3f,0x00,0x00,0x00,0x02,0x01,0x80,0x80,0xfe,0xc0,0xa0,0x98,0x87,0xf2,0x40,0x80,0xff,0x80,0x80,0x80,0x80,0x00 -+// 26447 杏 ; -+,0x00,0x00,0x00,0x3f,0x00,0x01,0x02,0x0c,0x30,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0xff,0xc0,0xa0,0x98,0x8f,0x84,0x80,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 26448 材 ; -+,0x00,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x1a,0x28,0x28,0x48,0x09,0x08,0x08,0x08,0x00,0x08,0x08,0x08,0xff,0x08,0x18,0x18,0x28,0x28,0x48,0x88,0x08,0x08,0x28,0x10 -+// 26449 村 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x88,0x48,0x48,0x08,0x08,0x08,0x08,0x28,0x10 -+// 26450 杒 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x28,0x48,0x08,0x08,0x09,0x00,0x00,0x00,0xfe,0x12,0x12,0x52,0x52,0x52,0x92,0x22,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 26451 杓 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x40,0x60,0x40,0xfe,0x82,0x02,0x02,0x42,0x22,0x22,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 26452 杔 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x1e,0xe0,0x20,0x20,0x20,0x3f,0xe0,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 26453 杕 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x0c,0x1a,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x08,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 26454 杖 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x90,0x50,0x20,0x30,0x48,0x87,0x02,0x00 -+// 26455 杗 ; -+,0x00,0x00,0x3f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x80,0x40,0xff,0x00,0x00,0xfc,0x80,0x80,0xfe,0x80,0xc0,0xb0,0x8e,0x84,0x80,0x80 -+// 26456 杘 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x11,0x11,0x22,0x24,0x48,0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x40,0x40,0xfe,0xe0,0x50,0x48,0x4c,0x47,0x42,0x40,0x40 -+// 26457 杙 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x20,0x28,0x24,0x20,0xff,0x20,0x20,0x20,0x10,0x10,0x10,0x08,0x09,0x05,0x03,0x00 -+// 26458 杚 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x40,0xff,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x40,0x81,0x81,0x7f,0x00 -+// 26459 杛 ; -+,0x08,0x08,0x08,0x3f,0x08,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x02,0x02,0x7e,0x40,0x40,0x7e,0x02,0x02,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 26460 杜 ; -+,0x00,0x08,0x08,0x08,0x08,0x7f,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 26461 杝 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0x24,0xbc,0xe4,0xa4,0xa4,0xa4,0xac,0xa0,0xa1,0x81,0x7f,0x00,0x00 -+// 26462 杞 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 26463 束 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x11,0x02,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0x80,0xff,0x80,0xfc,0x84,0x84,0xfc,0x84,0xc0,0xa0,0x98,0x87,0x82,0x80,0x80 -+// 26464 杠 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 26465 条 ; -+,0x02,0x02,0x07,0x06,0x09,0x30,0x01,0x06,0x38,0x0f,0x00,0x04,0x08,0x10,0x02,0x01,0x00,0x00,0xf8,0x10,0x20,0xc0,0x30,0x8f,0x84,0xfe,0x80,0x90,0x8c,0x84,0x80,0x00 -+// 26466 杢 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x80,0x80,0xff,0xc0,0xb0,0x9e,0x88,0x00,0xfc,0x80,0x80,0x80,0x80,0xff,0x00,0x00 -+// 26467 杣 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0xfe,0x00,0x00 -+// 26468 杤 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x09,0x0a,0x08,0x00,0x00,0xff,0x40,0x40,0x40,0x40,0x7c,0x44,0x84,0x84,0x84,0x04,0x04,0x14,0x08,0x00 -+// 26469 来 ; -+,0x00,0x00,0x1f,0x00,0x04,0x02,0x01,0x3f,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0x80,0xfe,0x80,0x98,0x90,0xa0,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 26470 杦 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x80,0xc0,0x80,0xfc,0x88,0x08,0x10,0x10,0x10,0x28,0x28,0x44,0x84,0x03,0x02,0x00 -+// 26471 杧 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x20,0x10,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x00,0x00 -+// 26472 杨 ; -+,0x08,0x09,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x00,0xfc,0x08,0x10,0x20,0x40,0xfe,0x2a,0x4a,0x52,0x92,0x22,0x42,0x82,0x0a,0x04 -+// 26473 杩 ; -+,0x08,0x09,0x08,0x7e,0x08,0x18,0x1c,0x1a,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x04,0x84,0x84,0x84,0x84,0xff,0x01,0x01,0xfd,0x01,0x01,0x01,0x05,0x02 -+// 26474 杪 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x00,0x10,0x10,0x10,0x10,0x94,0x92,0x11,0x10,0x12,0x12,0x04,0x08,0x10,0x60,0x80,0x00 -+// 26475 杫 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x9f,0x90,0x90,0x90,0x90,0x90,0x90,0xff,0x00,0x00 -+// 26476 杬 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 26477 杭 ; -+,0x08,0x08,0x08,0x7d,0x08,0x18,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x40,0x20,0x20,0xff,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0x89,0x09,0x09,0x07,0x00 -+// 26478 杮 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x10,0xff,0x91,0x91,0x91,0x91,0x91,0x95,0x92,0x10,0x10,0x10 -+// 26479 杯 ; -+,0x08,0x0b,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x49,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x10,0x20,0x20,0x60,0x68,0xa4,0x22,0x23,0x21,0x20,0x20,0x20,0x20 -+// 26480 杰 ; -+,0x00,0x00,0x00,0x3f,0x01,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x24,0x22,0x42,0x00,0x80,0x80,0x80,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x00,0x44,0x22,0x22,0x00 -+// 26481 東 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0x80,0xff,0x80,0xfc,0x84,0xfc,0x84,0xfc,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26482 杲 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0x80,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 26483 杳 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x80,0x80,0xfe,0xc0,0xa0,0x98,0x8e,0x84,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 26484 杴 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x20,0x20,0x20,0x40,0x7f,0x52,0x94,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 26485 杵 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x40,0xff,0x90,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26486 杶 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1d,0x1b,0x29,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x20,0xfe,0x20,0x20,0x24,0x24,0x24,0xfc,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 26487 杷 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 26488 杸 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x78,0x48,0x48,0x48,0x88,0x87,0x00,0xfe,0x84,0x44,0x28,0x10,0x28,0xc4,0x07,0x02 -+// 26489 杹 ; -+,0x08,0x08,0x08,0x08,0x7f,0x0a,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x40,0x50,0x90,0x92,0x93,0x96,0x98,0x90,0xb0,0x90,0x90,0x90,0x91,0x91,0x8f,0x00 -+// 26490 杺 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x18,0x1d,0x2b,0x29,0x4b,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0x18,0x08,0x40,0x40,0x44,0x42,0x43,0x41,0x41,0x40,0x42,0x42,0x3e,0x00 -+// 26491 杻 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x08,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xfc,0x24,0x24,0x24,0x24,0x24,0xff,0x00,0x00 -+// 26492 杼 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1b,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x08,0x50,0x20,0x20,0xff,0x22,0x24,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 26493 杽 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x1e,0xf0,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 26494 松 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x09,0x0b,0x08,0x08,0x08,0x48,0x68,0x48,0x44,0x84,0x82,0x23,0x32,0x60,0x40,0x84,0x02,0xff,0x02,0x00 -+// 26495 板 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x29,0x49,0x09,0x0a,0x08,0x08,0x00,0x0e,0xf0,0x80,0x80,0x80,0xfe,0xc2,0xa4,0xa4,0x18,0x08,0x18,0x24,0x47,0x82,0x00 -+// 26496 枀 ; -+,0x00,0x02,0x04,0x08,0x31,0x02,0x07,0x00,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x20,0x10,0x08,0x8e,0x24,0x10,0xf8,0x88,0x80,0xff,0xc0,0xa0,0x98,0x8f,0x84,0x80 -+// 26497 极 ; -+,0x08,0x09,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x0d,0x08,0x00,0xfe,0x44,0x44,0x48,0x50,0x5e,0x62,0xa4,0x94,0x88,0x08,0x14,0x67,0x82,0x00 -+// 26498 枂 ; -+,0x04,0x04,0x04,0x3f,0x04,0x0c,0x0c,0x16,0x15,0x24,0x44,0x04,0x04,0x04,0x05,0x00,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x82,0x8a,0x04,0x00 -+// 26499 枃 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x09,0x08,0x08,0x08,0x00,0x40,0x40,0x40,0x7e,0x82,0x82,0x42,0x22,0x2a,0x12,0x62,0x82,0x02,0x0a,0x04,0x00 -+// 26500 构 ; -+,0x08,0x08,0x08,0x7f,0x08,0x19,0x1c,0x2a,0x2a,0x48,0x09,0x08,0x08,0x08,0x08,0x00,0x20,0x20,0x40,0x7e,0x82,0x22,0x22,0x42,0x52,0x8a,0xfa,0x0a,0x02,0x0a,0x04,0x00 -+// 26501 枅 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x00,0xfe,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 26502 枆 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x1e,0xe0,0x20,0x3e,0xe0,0x20,0x3f,0xe0,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 26503 枇 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0x10,0x10,0x10,0x10,0x10,0xdf,0x10,0x10,0x10,0x10,0x11,0x51,0x91,0x0f,0x00 -+// 26504 枈 ; -+,0x10,0x10,0x10,0x1f,0x10,0x14,0x18,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x40,0x40,0x4e,0x70,0x40,0x41,0x3f,0x80,0xff,0xc0,0xa0,0x98,0x8f,0x84,0x80,0x80 -+// 26505 枉 ; -+,0x08,0x09,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 26506 枊 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x08,0x08,0x08,0x08,0x00,0x60,0x9e,0x12,0x12,0x12,0x12,0x12,0x12,0x52,0x92,0x16,0x10,0x10,0x10,0x10 -+// 26507 枋 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x20,0x10,0x10,0xff,0x20,0x20,0x20,0x3e,0x22,0x22,0x42,0x42,0x82,0x0a,0x04,0x00 -+// 26508 枌 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0e,0x08,0x00,0x10,0x48,0x48,0x84,0x86,0x03,0xfe,0x24,0x24,0x44,0x44,0x84,0x04,0x14,0x08 -+// 26509 枍 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1e,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x10,0x50,0x48,0x88,0x84,0xfb,0x42,0x40,0x40,0x7c,0x04,0x04,0x04,0x14,0x08,0x00 -+// 26510 枎 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x30,0x28,0x48,0x84,0x07,0x02,0x00 -+// 26511 枏 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x84,0x84,0x84,0xfe,0x84,0x84,0xff,0x84,0x84,0x84,0x84,0x84,0x94,0x88 -+// 26512 析 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x09,0x09,0x0a,0x08,0x00,0x1e,0xe0,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 26513 枑 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x2a,0x49,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x40,0x40,0x40,0xfc,0x84,0x84,0x84,0xfc,0x08,0x08,0x08,0x08,0xff,0x00 -+// 26514 枒 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x00,0xff,0x08,0x48,0x48,0x48,0xff,0x18,0x28,0x28,0x48,0x48,0x88,0x08,0x28,0x10 -+// 26515 枓 ; -+,0x08,0x08,0x08,0x7f,0x08,0x0c,0x1a,0x1a,0x28,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x28,0x28,0x88,0x48,0x48,0x0f,0xf8,0x08,0x08,0x08,0x08,0x08,0x08 -+// 26516 枔 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x48,0x84,0xa7,0x12,0x10,0x00,0xfe,0x04,0x08,0x08,0x10,0x20,0x20 -+// 26517 枕 ; -+,0x08,0x08,0x08,0x7d,0x09,0x19,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x10,0x10,0x10,0xff,0x12,0x14,0x20,0x30,0x30,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 26518 枖 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x19,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x28,0x24,0x44,0x83,0x02,0x00 -+// 26519 林 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x49,0x0a,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xff,0x10,0x30,0x38,0x58,0x54,0x94,0x13,0x12,0x10,0x10,0x10 -+// 26520 枘 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0xaa,0xa6,0xc2,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 26521 枙 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xff,0x00,0x00,0x7e,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x21,0x21,0x1f,0x00 -+// 26522 枚 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x19,0x1e,0x2a,0x28,0x48,0x08,0x08,0x09,0x0e,0x08,0x40,0x60,0x40,0x40,0xff,0x88,0x48,0x48,0x28,0x30,0x10,0x28,0x44,0x87,0x02,0x00 -+// 26523 枛 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x49,0x09,0x0a,0x0c,0x08,0x08,0x00,0x03,0xfc,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0x24,0x22,0x22,0x23,0x22,0x20 -+// 26524 果 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x80,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80,0x80 -+// 26525 枝 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x44,0x44,0x28,0x28,0x10,0x38,0xc4,0x07,0x02 -+// 26526 枞 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x28,0x28,0x49,0x09,0x0a,0x0c,0x09,0x08,0x00,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xd4,0x34,0x14,0x22,0x43,0x82,0x00 -+// 26527 枟 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x10,0x20,0x20,0x48,0x44,0x8e,0xf3,0x02,0x00 -+// 26528 枠 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x0c,0x1a,0x1b,0x2b,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0x20,0xf8,0x28,0x28,0x49,0x49,0x87,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 26529 枡 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1b,0x28,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x00,0x34,0xc4,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 26530 枢 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x80,0x84,0x86,0xa4,0x94,0x88,0x8c,0x94,0xa2,0xc2,0x80,0xff,0x00,0x00 -+// 26531 枣 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x08,0x09,0x02,0x0c,0x31,0x00,0x00,0x03,0x00,0x00,0x00,0x80,0x80,0xfe,0x80,0xfc,0x84,0xc4,0xb0,0x8f,0x04,0xc0,0x60,0x00,0xc0,0x70,0x20 -+// 26532 枤 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0x14,0x12,0x10,0xff,0x10,0x10,0x18,0x28,0x28,0x44,0x46,0x83,0x02,0x00 -+// 26533 枥 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x08,0x00,0x00,0xff,0x90,0x90,0x90,0x90,0xfe,0x92,0x92,0x92,0x92,0x22,0x22,0x4a,0x84,0x00 -+// 26534 枦 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x09,0x09,0x0a,0x08,0x10,0x08,0xff,0x81,0x81,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 26535 枧 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0xfe,0x82,0xa2,0xa2,0xa2,0xa2,0xa2,0xb2,0xb2,0x30,0x50,0x51,0x91,0x0f,0x00 -+// 26536 枨 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1d,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x80,0x84,0x86,0x8c,0x90,0xa0,0xff,0x80,0xa0,0x90,0x90,0x88,0x8c,0xa7,0xc2,0x80 -+// 26537 枩 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x02,0x04,0x18,0x60,0x01,0x02,0x07,0x00,0x80,0x80,0xff,0xc0,0xb0,0x8e,0x84,0x80,0x20,0x10,0x8c,0x87,0x22,0x10,0xf8,0x08 -+// 26538 枪 ; -+,0x08,0x08,0x08,0x7f,0x08,0x09,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x70,0x48,0x84,0x07,0xfa,0x88,0x88,0x88,0xa8,0x92,0x82,0x82,0x7e,0x00 -+// 26539 枫 ; -+,0x10,0x11,0x11,0x7d,0x11,0x19,0x35,0x35,0x31,0x51,0x11,0x12,0x12,0x14,0x10,0x10,0x00,0xfc,0x04,0x04,0x14,0x94,0x54,0x24,0x24,0x54,0x8d,0x05,0x03,0x03,0x01,0x00 -+// 26540 枬 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x1c,0x1a,0x2b,0x28,0x48,0x09,0x09,0x0a,0x0c,0x08,0x00,0xfc,0x84,0x84,0xa4,0x94,0x94,0x84,0xff,0x84,0x84,0x04,0x04,0x04,0x14,0x08 -+// 26541 枭 ; -+,0x00,0x01,0x0f,0x09,0x08,0x08,0x08,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x80,0x00,0xf8,0x08,0x88,0x98,0x00,0xfe,0x82,0xfa,0xc2,0xa6,0x98,0x8e,0x84,0x80 -+// 26542 枮 ; -+,0x00,0x08,0x08,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x00 -+// 26543 枯 ; -+,0x08,0x08,0x08,0x7f,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 26544 枰 ; -+,0x08,0x09,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x12,0x92,0x54,0x58,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26545 枱 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x20,0x24,0x42,0x8f,0xf1,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 26546 枲 ; -+,0x01,0x02,0x04,0x1f,0x00,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x08,0x04,0xfe,0x02,0xf8,0x08,0xf8,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26547 枳 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x09,0x0a,0x08,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x00,0x08,0x44,0x62,0x83,0x01,0x01,0x00 -+// 26548 枴 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x0c,0x1a,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0xff,0x11,0x11,0x21,0x21,0x41,0x85,0x02 -+// 26549 枵 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1d,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x84,0x84,0xfc,0x00,0xff,0x40,0x40,0x7c,0x04,0x04,0x04,0x04,0x14,0x08 -+// 26550 架 ; -+,0x04,0x04,0x3f,0x04,0x04,0x08,0x0a,0x31,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0xbe,0xa2,0xa2,0xa2,0xbe,0x00,0x80,0xfe,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26551 枷 ; -+,0x00,0x08,0x08,0x08,0x7d,0x08,0x18,0x1c,0x2a,0x28,0x48,0x09,0x09,0x0a,0x08,0x08,0x00,0x80,0x80,0x80,0xee,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x2a,0x2a,0xae,0x40,0x00 -+// 26552 枸 ; -+,0x08,0x08,0x08,0x08,0x7e,0x19,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x40,0x60,0x40,0xfe,0x82,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0x0a,0x04,0x00 -+// 26553 枹 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1a,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x80,0xfe,0x02,0xf2,0x92,0x92,0xf2,0x82,0x8a,0x84,0x81,0x81,0x7f,0x00 -+// 26554 枺 ; -+,0x08,0x08,0x08,0x09,0x7e,0x18,0x1d,0x2a,0x2a,0x48,0x08,0x09,0x0e,0x08,0x08,0x08,0x20,0x20,0x20,0xfe,0x20,0x20,0xfe,0x20,0x70,0x68,0xa4,0x27,0x22,0x20,0x20,0x20 -+// 26555 枻 ; -+,0x08,0x08,0x09,0x09,0x7f,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x3c,0x00,0x00,0xff,0x00,0x00 -+// 26556 枼 ; -+,0x08,0x08,0x7f,0x08,0x08,0x08,0x0f,0x00,0x00,0x7f,0x01,0x02,0x0c,0x70,0x00,0x00,0x90,0x90,0xff,0x90,0xf0,0x00,0xfe,0x80,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26557 枽 ; -+,0x00,0x00,0x1f,0x04,0x7f,0x04,0x07,0x00,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0x80,0xfe,0x88,0xff,0x08,0xf8,0x80,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26558 枾 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x09,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x10,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x12,0x10,0x10,0x10 -+// 26559 枿 ; -+,0x08,0x08,0x08,0x7d,0x08,0x18,0x1c,0x2a,0x28,0x4b,0x08,0x08,0x09,0x09,0x0a,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x84,0x84,0x84,0xff,0x84,0x84,0x04,0x04,0x04,0x04 -+// 26560 柀 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x28,0x29,0x49,0x09,0x0a,0x0c,0x0b,0x08,0x10,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0xc4,0x28,0x28,0x10,0x18,0x67,0x82,0x00 -+// 26561 柁 ; -+,0x08,0x08,0x09,0x7f,0x09,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x02,0x04,0x40,0x40,0x46,0x58,0x60,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 26562 柂 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0xff,0x80,0x10,0x10,0x9e,0xf2,0x92,0x92,0x9a,0x94,0x91,0x81,0x7f,0x00 -+// 26563 柃 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x48,0x8c,0x27,0x12,0x10,0xfe,0x04,0x08,0x90,0x60,0x30,0x18,0x10 -+// 26564 柄 ; -+,0x08,0x09,0x08,0x7e,0x08,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x29,0x45,0x85,0x01,0x09,0x05,0x02 -+// 26565 柅 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xfe,0x02,0x02,0xfe,0x20,0x20,0x22,0x27,0x38,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 26566 柆 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x20,0x10,0x10,0xff,0x00,0x04,0x86,0x44,0x44,0x24,0x28,0x28,0x08,0xff,0x00,0x00 -+// 26567 柇 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x1c,0x1a,0x2a,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x00,0x1c,0xf0,0x10,0x10,0xff,0x10,0x30,0x38,0x58,0x94,0x17,0x12,0x10,0x10,0x10 -+// 26568 柈 ; -+,0x08,0x08,0x09,0x7e,0x08,0x19,0x1c,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x24,0xac,0x70,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 26569 柉 ; -+,0x08,0x09,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x09,0x0a,0x0a,0x08,0x1e,0xe0,0x40,0x20,0x10,0xff,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x60,0x1f,0x00 -+// 26570 柊 ; -+,0x08,0x08,0x08,0x7e,0x09,0x0a,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0xfe,0x84,0x88,0x50,0x30,0x48,0x87,0x22,0x10,0x00,0x60,0x18,0x08,0x00 -+// 26571 柋 ; -+,0x06,0x04,0x08,0x1b,0x28,0x48,0x08,0x08,0x00,0x3f,0x01,0x02,0x0c,0x70,0x00,0x00,0x50,0x48,0x40,0xff,0x20,0x11,0x8d,0x83,0x80,0xfe,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26572 柌 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0xfa,0x8a,0x8a,0xfa,0x02,0x02,0x02,0x0a,0x04 -+// 26573 柍 ; -+,0x08,0x08,0x08,0x7d,0x09,0x19,0x1d,0x1b,0x2f,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x20,0x20,0x50,0x4c,0x87,0x02,0x00 -+// 26574 柎 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1e,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x44,0x64,0x44,0x84,0x84,0xff,0x84,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x94,0x88 -+// 26575 柏 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 26576 某 ; -+,0x04,0x04,0x3f,0x04,0x07,0x04,0x04,0x07,0x00,0x7f,0x01,0x02,0x0c,0x30,0x00,0x00,0x10,0x10,0xff,0x10,0xf0,0x10,0x10,0xf0,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26577 柑 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x42,0x42,0x42,0x42,0xff,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 26578 柒 ; -+,0x08,0x04,0x20,0x10,0x03,0x08,0x08,0x10,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x40,0x40,0x4e,0x70,0xc2,0x42,0x3e,0x00,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26579 染 ; -+,0x10,0x08,0x41,0x24,0x08,0x30,0x11,0x16,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x40,0x40,0xf8,0x48,0x88,0x89,0x09,0x87,0x80,0xff,0xc0,0xa0,0x98,0x8e,0x84,0x80 -+// 26580 柔 ; -+,0x0f,0x00,0x00,0x3f,0x01,0x06,0x18,0x01,0x00,0x7f,0x01,0x02,0x0c,0x70,0x00,0x00,0xf8,0x10,0xa0,0xff,0x82,0x84,0x80,0x80,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26581 柕 ; -+,0x08,0x09,0x08,0x7e,0x08,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x09,0x0e,0x08,0x08,0x08,0x00,0xfe,0x04,0x48,0x30,0x10,0xff,0x12,0x34,0x50,0x90,0x10,0x10,0x10,0x50,0x20 -+// 26582 柖 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 26583 柗 ; -+,0x08,0x08,0x08,0x7f,0x08,0x18,0x1c,0x2b,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x48,0x68,0x48,0x44,0x84,0x82,0x01,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 26584 柘 ; -+,0x08,0x09,0x08,0x7f,0x08,0x18,0x1c,0x2a,0x2a,0x49,0x0a,0x0c,0x08,0x08,0x08,0x08,0x00,0xff,0x20,0x20,0x20,0x40,0x40,0xfe,0xc2,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 26585 柙 ; -+,0x08,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26586 柚 ; -+,0x08,0x08,0x08,0x7e,0x09,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x10,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 26587 柛 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 26588 柜 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0xff,0x00 -+// 26589 柝 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x09,0x09,0x0a,0x0c,0x08,0x0e,0xf0,0x80,0x80,0x80,0xff,0x88,0x88,0xb8,0x8c,0x8b,0x09,0x08,0x08,0x08,0x08 -+// 26590 柞 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x40,0xff,0xa0,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20 -+// 26591 柟 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 26592 柠 ; -+,0x08,0x08,0x09,0x09,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x02,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 26593 柡 ; -+,0x08,0x08,0x08,0x08,0x7f,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x09,0x09,0x0a,0x08,0x08,0x00,0xfe,0x00,0x00,0xff,0x20,0x22,0x24,0xa8,0xa8,0xa4,0x24,0x23,0x22,0xa0,0x40 -+// 26594 柢 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x1e,0xf0,0x90,0x90,0x90,0xff,0x90,0x90,0x88,0x88,0xa5,0xc5,0x93,0x09,0x00 -+// 26595 柣 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1e,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x10,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xff,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 26596 柤 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 26597 查 ; -+,0x00,0x00,0x00,0x3f,0x02,0x04,0x18,0x6f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x3f,0x00,0x80,0x80,0x80,0xff,0xa0,0x98,0x87,0xfa,0x08,0xf8,0x08,0x08,0xf8,0x00,0xff,0x00 -+// 26598 柦 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x00,0x00,0xff,0x00 -+// 26599 柧 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x00,0x1e,0xe8,0xa8,0xa8,0xa8,0xa8,0xa4,0xa4,0x24,0x24,0x22,0x22,0x2b,0x36,0x20 -+// 26600 柨 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x29,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0xff,0x20,0x50,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 26601 柩 ; -+,0x08,0x09,0x09,0x09,0x7f,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x20,0x20,0x3e,0x44,0x48,0x88,0x10,0x18,0x24,0x42,0x82,0x00,0xff,0x00 -+// 26602 柪 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1d,0x1b,0x28,0x28,0x49,0x0a,0x0b,0x08,0x08,0x08,0x08,0x08,0x88,0xc8,0x88,0x1e,0x4a,0xca,0x8a,0x8a,0x0a,0x52,0xd2,0x22,0x42,0x8a,0x04 -+// 26603 柫 ; -+,0x08,0x08,0x09,0x7e,0x18,0x1d,0x2b,0x29,0x49,0x08,0x08,0x08,0x08,0x09,0x0e,0x08,0x50,0x50,0xfe,0x52,0x52,0xfe,0x50,0x50,0xff,0x51,0x51,0x95,0x92,0x10,0x10,0x10 -+// 26604 柬 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x10,0x14,0x12,0x1f,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0x80,0xff,0x80,0xfc,0x84,0x94,0xa4,0xfc,0x80,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26605 柭 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x09,0x0a,0x08,0x0b,0x08,0x20,0x24,0x22,0xff,0x20,0x20,0x7e,0x44,0x44,0xa8,0xa8,0x10,0x28,0xc4,0x07,0x02 -+// 26606 柮 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x10,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 26607 柯 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x02,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 26608 柰 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x0f,0x00,0x7f,0x00,0x08,0x18,0x60,0x02,0x01,0x80,0x80,0xfe,0xa0,0x98,0x8e,0x84,0xf8,0x00,0xff,0x80,0x88,0x86,0x83,0x82,0x00 -+// 26609 柱 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x40,0x20,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 26610 柲 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1b,0x29,0x29,0x4a,0x08,0x08,0x08,0x0b,0x08,0x00,0x20,0x14,0x16,0x44,0x44,0x48,0x4a,0x49,0x51,0x50,0x62,0x42,0xc2,0x3e,0x00 -+// 26611 柳 ; -+,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x08,0x08,0x08,0x0b,0x08,0x00,0x60,0x8f,0x09,0x29,0x29,0x29,0x29,0x69,0xad,0x2a,0x48,0x48,0x88,0x08,0x08 -+// 26612 柴 ; -+,0x04,0x04,0x14,0x17,0x14,0x17,0x7c,0x20,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x20,0x20,0x26,0xb8,0x20,0xa1,0x21,0x9f,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26613 柵 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x0a,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0xff,0x52,0x52,0x52,0x52,0x52,0x52,0x0a,0x04 -+// 26614 柶 ; -+,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0xff,0x29,0x29,0x29,0x29,0x29,0x49,0x4f,0x81,0x01,0xff,0x01,0x00,0x00 -+// 26615 柷 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x50,0x50,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 26616 柸 ; -+,0x08,0x09,0x08,0x7f,0x08,0x18,0x1c,0x2a,0x2a,0x49,0x0a,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x10,0x10,0x20,0x30,0x68,0x64,0xa6,0x23,0x22,0x20,0x20,0x20,0xff,0x00 -+// 26617 柹 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x08,0x10,0x10,0x1f,0xf0,0x90,0x90,0x90,0xff,0x31,0x31,0x51,0x95,0x12,0x10,0x10,0x10 -+// 26618 柺 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0xfe,0x82,0x82,0x82,0xfe,0x20,0x20,0xfe,0x22,0x22,0x42,0x42,0x82,0x0a,0x04 -+// 26619 査 ; -+,0x00,0x00,0x00,0x3f,0x01,0x02,0x0c,0x70,0x07,0x04,0x07,0x04,0x07,0x04,0x3f,0x00,0x80,0x80,0x80,0xfe,0xc0,0xb0,0x8f,0x84,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x00 -+// 26620 柼 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x20,0x10,0x10,0xff,0x82,0x08,0x48,0x68,0x48,0x44,0x84,0x86,0x02,0x03,0x02,0x00 -+// 26621 柽 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x18,0x1c,0x2b,0x28,0x48,0x09,0x08,0x08,0x0b,0x08,0x00,0x00,0xfe,0x84,0x48,0x30,0x30,0xcc,0x27,0x22,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 26622 柾 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x9e,0x90,0x90,0x90,0x90,0x90,0x90,0xff,0x00 -+// 26623 柿 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10,0x10 -+// 26624 栀 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x0f,0xf0,0x00,0x00,0xff,0x00,0x7c,0x44,0x44,0x44,0x54,0x48,0x41,0x41,0x3f,0x00 -+// 26625 栁 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1d,0x1b,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x08,0x80,0xc0,0x80,0xef,0x29,0x29,0x29,0xa9,0x49,0x49,0x89,0x8b,0x08,0x08,0x08,0x08 -+// 26626 栂 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0xb2,0x9a,0x92,0xff,0x82,0xa2,0x9a,0x92,0xff,0x04,0x04,0x14,0x08 -+// 26627 栃 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0d,0x08,0x00,0x0f,0xf0,0x00,0x7f,0x10,0x10,0x1e,0x12,0x12,0x22,0x22,0x42,0x8a,0x04,0x00 -+// 26628 栄 ; -+,0x09,0x04,0x06,0x02,0x3f,0x20,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x08,0x8c,0xc8,0x50,0xff,0x82,0x80,0x80,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26629 栅 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0d,0x08,0x00,0xde,0x52,0x52,0x52,0x52,0xff,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x5a,0xa4 -+// 26630 栆 ; -+,0x00,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x01,0x02,0x0c,0x30,0x00,0x01,0x00,0x00,0x00,0x80,0x80,0xfe,0x80,0xf8,0x88,0xf8,0x40,0x30,0x8f,0x64,0x20,0x00,0xc0,0x60,0x40 -+// 26631 标 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2a,0x28,0x49,0x0a,0x08,0x08,0x08,0x08,0x00,0xfe,0x00,0x00,0x00,0xff,0x10,0x10,0x94,0x92,0x13,0x11,0x11,0x10,0x50,0x20 -+// 26632 栈 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x40,0x50,0x4c,0x48,0xfe,0x40,0x40,0xff,0x20,0x24,0x37,0x1c,0x39,0xcd,0x07,0x02 -+// 26633 栉 ; -+,0x08,0x08,0x08,0x09,0x3e,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0xff,0x48,0x48,0xfe,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20,0x20 -+// 26634 栊 ; -+,0x08,0x08,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x09,0x09,0x0a,0x0c,0x08,0x40,0x48,0x44,0x40,0xff,0x50,0x50,0x52,0x52,0x94,0x98,0x30,0x51,0x11,0x0f,0x00 -+// 26635 栋 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x08,0x20,0x20,0xff,0x20,0x40,0x50,0x90,0xfe,0x10,0x90,0x94,0x12,0x13,0x11,0x50,0x20 -+// 26636 栌 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x09,0x09,0x0a,0x0c,0x08,0x20,0x20,0x3f,0x20,0x20,0xfe,0x82,0x82,0x82,0xfe,0x80,0x00,0x00,0x00,0x00,0x00 -+// 26637 栍 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x10,0x10,0x90,0x90,0xff,0x90,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 26638 栎 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x08,0x0e,0xf0,0x90,0x90,0x90,0x90,0x90,0xff,0x10,0x94,0x92,0x13,0x11,0x11,0x50,0x20 -+// 26639 栏 ; -+,0x08,0x08,0x08,0x7e,0x09,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x00,0x84,0x44,0x48,0xff,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 26640 栐 ; -+,0x10,0x10,0x10,0x7d,0x10,0x10,0x3b,0x34,0x34,0x50,0x50,0x11,0x12,0x14,0x10,0x10,0x40,0x20,0x00,0xe0,0x20,0x22,0xec,0x70,0x70,0xa8,0xa4,0x27,0x22,0x20,0xa0,0x40 -+// 26641 树 ; -+,0x08,0x08,0x08,0x09,0x7e,0x09,0x1d,0x1a,0x2a,0x28,0x49,0x0a,0x0c,0x08,0x08,0x08,0x02,0x02,0x02,0xe2,0x3f,0x42,0x42,0x92,0xca,0xa2,0x22,0x02,0x02,0x02,0x0a,0x04 -+// 26642 栒 ; -+,0x08,0x08,0x08,0x08,0x7d,0x09,0x1e,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x80,0xc0,0x80,0xfe,0x02,0x02,0xf2,0x92,0xf2,0x92,0xf2,0x02,0x02,0x02,0x0a,0x04 -+// 26643 栓 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0x50,0x50,0x88,0x07,0xfc,0x20,0x20,0xfc,0x20,0x20,0x20,0x20,0xff,0x00 -+// 26644 栔 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x3f,0x04,0x04,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xbe,0x12,0x12,0x22,0xa2,0x4a,0x84,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26645 栕 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xfe,0x10,0x10,0x10,0xfe,0x02,0x02,0x02,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 26646 栖 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x48,0x48,0x48,0xfe,0x4a,0x4a,0x4a,0x4a,0x8e,0x02,0x02,0xfe,0x02,0x00 -+// 26647 栗 ; -+,0x3f,0x02,0x02,0x1f,0x12,0x12,0x1f,0x00,0x7f,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0xff,0x20,0x20,0xfc,0x24,0x24,0xfc,0x80,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26648 栘 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x2b,0x48,0x09,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0x7e,0xc4,0x28,0x10,0x20,0xd0,0x3f,0x42,0xa4,0x18,0x10,0x60,0x80,0x00 -+// 26649 栙 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x09,0x08,0x08,0x08,0x08,0x40,0x7e,0x84,0xc8,0x30,0x28,0xd7,0x12,0xfe,0x90,0x90,0xff,0x10,0x10,0x10,0x10 -+// 26650 栚 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x08,0x08,0x09,0x0e,0x08,0x86,0x44,0x28,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x48,0x84,0x07,0x02,0x00 -+// 26651 栛 ; -+,0x08,0x08,0x09,0x08,0x3e,0x0c,0x1a,0x18,0x2b,0x28,0x48,0x09,0x09,0x0a,0x0c,0x08,0x20,0x20,0xfe,0x22,0x42,0x4a,0x84,0x84,0xef,0xa5,0xa5,0x25,0x29,0xad,0x52,0x00 -+// 26652 栜 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x39,0x35,0x35,0x50,0x50,0x11,0x16,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0xfc,0x24,0x24,0x24,0x24,0x70,0xa8,0x27,0x22,0x20,0x20,0x20 -+// 26653 栝 ; -+,0x08,0x08,0x08,0x7f,0x08,0x19,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 26654 栞 ; -+,0x1f,0x04,0x04,0x04,0x3f,0x08,0x08,0x10,0x00,0x3f,0x01,0x02,0x0c,0x70,0x00,0x00,0x3e,0x08,0x08,0x08,0x7f,0x08,0x08,0x88,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26655 栟 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x09,0x0a,0x00,0x84,0x44,0x48,0xff,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x88,0x88,0x08,0x08,0x00 -+// 26656 栠 ; -+,0x08,0x0d,0x18,0x18,0x2b,0x48,0x08,0x09,0x00,0x3f,0x01,0x02,0x0c,0x70,0x00,0x00,0x3c,0xe0,0x20,0x20,0xff,0x20,0x20,0xfe,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26657 校 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x49,0x08,0x08,0x08,0x08,0x0b,0x08,0x20,0x10,0x10,0xff,0x00,0x44,0x42,0x85,0x84,0x48,0x48,0x30,0x30,0xcc,0x07,0x02 -+// 26658 栢 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 26659 栣 ; -+,0x08,0x08,0x08,0x7c,0x09,0x1e,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0xbe,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0xbe,0x80 -+// 26660 栤 ; -+,0x10,0x10,0x12,0x7d,0x11,0x38,0x34,0x51,0x51,0x16,0x12,0x10,0x11,0x12,0x10,0x10,0x10,0x10,0x10,0x12,0x12,0xf4,0x38,0x38,0x54,0x54,0x94,0x93,0x12,0x10,0x50,0x20 -+// 26661 栥 ; -+,0x20,0x10,0x15,0x05,0x0a,0x30,0x11,0x16,0x00,0x3f,0x01,0x02,0x0c,0x70,0x00,0x00,0x80,0xfe,0x04,0x48,0x40,0xb0,0x0c,0x04,0x80,0xfe,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26662 栦 ; -+,0x08,0x08,0x08,0x08,0x3e,0x0a,0x19,0x1c,0x2a,0x28,0x48,0x09,0x09,0x0a,0x08,0x08,0x82,0x92,0x92,0x92,0x92,0xda,0xb6,0x92,0x92,0x92,0x92,0x12,0x12,0x12,0x02,0x00 -+// 26663 栧 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x08,0x10,0x10,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x12,0x14,0x18,0x69,0x85,0x03,0x01 -+// 26664 栨 ; -+,0x08,0x0a,0x09,0x09,0x7e,0x1c,0x1a,0x28,0x28,0x4b,0x09,0x09,0x09,0x08,0x0b,0x08,0x20,0x20,0x20,0x20,0x3f,0x52,0x54,0x90,0x90,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 26665 栩 ; -+,0x08,0x09,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x28,0x48,0x09,0x0a,0x08,0x08,0x08,0x08,0x00,0xfe,0x22,0x22,0x22,0x2a,0xa6,0x22,0x26,0xaa,0x32,0x22,0x22,0x22,0xaa,0x44 -+// 26666 株 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x08,0x20,0x20,0xa0,0xfe,0x20,0x20,0xff,0x20,0x70,0xa8,0xa4,0x27,0x22,0x20,0x20,0x20 -+// 26667 栫 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x40,0x40,0xbe,0x82,0x84,0x88,0xff,0x88,0x88,0x88,0x88,0xa8,0x90 -+// 26668 栬 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x7c,0x48,0x90,0xfe,0x92,0x92,0x92,0xfe,0x80,0x81,0x81,0x81,0x7f,0x00 -+// 26669 栭 ; -+,0x08,0x09,0x08,0x08,0x7e,0x0d,0x1b,0x19,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x20,0x20,0x40,0xff,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x05,0x02 -+// 26670 栮 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x00,0xff,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x9f,0xe4,0x04,0x04,0x04,0x04 -+// 26671 栯 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x18,0x10,0xff,0x20,0x40,0x7e,0xc2,0x7e,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 26672 栰 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x50,0x54,0x52,0x90,0x97,0xf8,0x90,0x91,0x8a,0x8c,0x88,0x94,0xa5,0x83,0x83,0x81 -+// 26673 栱 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x08,0x08,0x09,0x0a,0x08,0x48,0x48,0x48,0xfe,0x48,0x48,0x48,0x48,0xff,0x00,0x48,0x44,0x82,0x03,0x01,0x00 -+// 26674 栲 ; -+,0x08,0x08,0x08,0x7e,0x08,0x09,0x1c,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x22,0xfe,0x24,0xff,0x10,0x20,0x7e,0xa0,0x3e,0x02,0x02,0x02,0x0a,0x04 -+// 26675 栳 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1d,0x2a,0x28,0x48,0x09,0x0e,0x08,0x08,0x08,0x08,0x20,0x20,0x22,0xfa,0x24,0x28,0xff,0x20,0x40,0xc6,0x78,0x40,0x41,0x41,0x3f,0x00 -+// 26676 栴 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x2a,0x49,0x08,0x08,0x08,0x08,0x09,0x08,0x40,0x40,0x7f,0x80,0x80,0x7e,0x42,0x52,0x4a,0xff,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 26677 栵 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x01,0xf9,0x41,0x41,0x45,0xf5,0x95,0x95,0x65,0x25,0x45,0x45,0x81,0x01,0x05,0x02 -+// 26678 栶 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x11,0x11,0x11,0x7d,0x11,0x11,0x29,0x29,0x45,0x81,0x01,0xff,0x01,0x00 -+// 26679 样 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x08,0x84,0x44,0x48,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26680 核 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x08,0x08,0x09,0x08,0x20,0x10,0x10,0xff,0x20,0x22,0x44,0xf8,0x11,0x22,0x44,0x88,0x14,0x62,0x83,0x02 -+// 26681 根 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xc2,0xa6,0x98,0x88,0xa4,0xc7,0x82,0x00 -+// 26682 栺 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x80,0x84,0x9c,0xe0,0x81,0x7f,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 26683 栻 ; -+,0x08,0x08,0x08,0x09,0x7e,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x08,0x10,0x14,0x12,0xff,0x10,0x10,0x10,0xe8,0x48,0x48,0x48,0x45,0x75,0x83,0x01,0x00 -+// 26684 格 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1a,0x1c,0x2a,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0xfc,0x84,0x48,0x28,0x10,0x6c,0x83,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 26685 栽 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x3f,0x04,0x0e,0x15,0x64,0x04,0x04,0x04,0x20,0x28,0xa4,0x24,0x20,0xff,0x20,0x24,0xa6,0x14,0x18,0x90,0xa9,0x45,0x83,0x01 -+// 26686 栾 ; -+,0x01,0x00,0x7f,0x02,0x0a,0x12,0x22,0x02,0x00,0x3f,0x01,0x02,0x0c,0x70,0x00,0x00,0x00,0x80,0xff,0x20,0x28,0x26,0x22,0xa0,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26687 栿 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1e,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x48,0x48,0x8a,0x89,0xff,0x88,0x88,0x88,0x88,0x88,0x94,0x94,0xa2,0xc3,0x82 -+// 26688 桀 ; -+,0x08,0x08,0x0f,0x11,0x12,0x2a,0x04,0x08,0x10,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x10,0x10,0x7e,0x10,0x50,0xff,0x10,0x10,0x90,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26689 桁 ; -+,0x10,0x10,0x10,0x7d,0x12,0x38,0x35,0x35,0x53,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0x80,0xbf,0x00,0x80,0x80,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x08 -+// 26690 桂 ; -+,0x10,0x10,0x10,0x11,0x7e,0x10,0x3b,0x34,0x34,0x50,0x11,0x10,0x10,0x10,0x17,0x10,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 26691 桃 ; -+,0x10,0x10,0x10,0x7c,0x11,0x38,0x34,0x50,0x50,0x13,0x10,0x10,0x10,0x11,0x16,0x00,0x50,0x50,0x50,0x53,0x52,0xd4,0x50,0x58,0xd4,0x56,0x52,0x90,0x91,0x11,0x0f,0x00 -+// 26692 桄 ; -+,0x08,0x08,0x09,0x08,0x7e,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x08,0x20,0x20,0x22,0xa4,0xa8,0x20,0xff,0x50,0x50,0x50,0x50,0x91,0x91,0x11,0x0f,0x00 -+// 26693 桅 ; -+,0x10,0x10,0x10,0x7d,0x13,0x39,0x35,0x35,0x51,0x51,0x11,0x12,0x12,0x14,0x18,0x10,0x40,0x7c,0x88,0x10,0xff,0x00,0xfc,0x44,0x44,0x54,0x48,0x40,0x41,0x41,0x3f,0x00 -+// 26694 框 ; -+,0x00,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0xff,0x00,0x7e,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x00,0x00,0xff,0x00 -+// 26695 桇 ; -+,0x04,0x04,0x3f,0x09,0x19,0x06,0x05,0x18,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x00,0x00,0xbe,0x22,0x22,0x22,0x3e,0x80,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26696 案 ; -+,0x01,0x00,0x1f,0x11,0x02,0x3f,0x06,0x01,0x0f,0x00,0x3f,0x01,0x06,0x38,0x00,0x00,0x00,0x80,0xfe,0x04,0x20,0xfe,0x40,0xc0,0x30,0x90,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 26697 桉 ; -+,0x08,0x08,0x09,0x09,0x7f,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x20,0x10,0xff,0x02,0x20,0x30,0x20,0xff,0x44,0x44,0xc4,0x28,0x18,0x64,0x83,0x01 -+// 26698 桊 ; -+,0x00,0x08,0x04,0x02,0x1f,0x01,0x3f,0x04,0x18,0x6f,0x01,0x02,0x0c,0x30,0x00,0x00,0x80,0x88,0x98,0xa0,0xfc,0x00,0xfe,0x20,0x98,0xf7,0xc2,0xb0,0x8c,0x86,0x82,0x80 -+// 26699 桋 ; -+,0x10,0x10,0x13,0x7c,0x11,0x38,0x35,0x35,0x51,0x50,0x10,0x10,0x10,0x10,0x13,0x10,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x26,0x50,0x4c,0x87,0x02,0x00 -+// 26700 桌 ; -+,0x00,0x00,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0xfe,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26701 桍 ; -+,0x10,0x10,0x11,0x10,0x7c,0x11,0x3a,0x34,0x51,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xff,0x50,0x88,0xfc,0x03,0x00,0xff,0x40,0x40,0x7c,0x04,0x04,0x14,0x08 -+// 26702 桎 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0xff,0x20,0x20,0x44,0x42,0xff,0x12,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 26703 桏 ; -+,0x10,0x10,0x13,0x7c,0x10,0x30,0x38,0x34,0x50,0x50,0x13,0x10,0x10,0x10,0x10,0x10,0x00,0x1f,0xf2,0x92,0x94,0x98,0x94,0x92,0x91,0xd1,0x15,0x12,0x10,0x10,0x10,0x10 -+// 26704 桐 ; -+,0x10,0x11,0x11,0x7d,0x11,0x39,0x35,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x02,0x7a,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x02,0x0a,0x04 -+// 26705 桑 ; -+,0x07,0x01,0x00,0x0f,0x00,0x3e,0x12,0x0c,0x32,0x7f,0x01,0x02,0x0c,0x30,0x00,0x00,0xf0,0x20,0xc0,0x3c,0x00,0x7e,0x24,0x98,0xa6,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26706 桒 ; -+,0x00,0x00,0x1f,0x00,0x08,0x7f,0x08,0x08,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0x80,0xfc,0x80,0x08,0xff,0x08,0x88,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26707 桓 ; -+,0x08,0x09,0x08,0x08,0x7e,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0xfe,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0x00,0xff,0x00,0x00 -+// 26708 桔 ; -+,0x00,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 26709 桕 ; -+,0x08,0x08,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x20,0xce,0x82,0x82,0x82,0x82,0xee,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 26710 桖 ; -+,0x08,0x08,0x08,0x09,0x7f,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x0b,0x08,0x20,0x20,0x40,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 26711 桗 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1b,0x28,0x2b,0x48,0x08,0x08,0x09,0x0a,0x08,0x08,0x00,0xfc,0x48,0x4e,0x82,0x82,0x0a,0x24,0xff,0x60,0xb0,0xa8,0x24,0x23,0x20,0x20 -+// 26712 桘 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x40,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0xff,0x81,0x81,0x81,0xff,0x81 -+// 26713 桙 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x44,0xfe,0x12,0x10,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26714 桚 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x49,0x0a,0x08,0x08,0x0b,0x08,0x00,0x92,0x92,0x24,0x92,0x92,0x40,0x7f,0x82,0xc2,0x24,0x28,0x10,0x60,0x80,0x00 -+// 26715 桛 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0x00,0xff,0x30,0x2c,0x24,0x20,0x20,0x20,0x20 -+// 26716 桜 ; -+,0x08,0x0a,0x09,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x42,0x23,0x32,0x94,0x80,0x20,0x30,0x20,0xff,0x44,0xc4,0x28,0x18,0x66,0x82,0x00 -+// 26717 桝 ; -+,0x10,0x10,0x10,0x11,0x7d,0x11,0x3a,0x35,0x50,0x50,0x10,0x10,0x11,0x16,0x10,0x10,0x84,0x84,0x84,0x04,0xff,0x24,0x24,0x54,0xd4,0x5f,0x84,0x84,0x04,0x04,0x04,0x04 -+// 26718 桞 ; -+,0x10,0x10,0x10,0x11,0x7d,0x11,0x33,0x3a,0x54,0x50,0x10,0x10,0x10,0x11,0x12,0x10,0x80,0x8f,0x89,0xea,0x2a,0x2c,0x2a,0xa9,0x49,0x49,0x4d,0x8a,0x88,0x08,0x08,0x08 -+// 26719 桟 ; -+,0x08,0x08,0x08,0x7e,0x0b,0x1c,0x1b,0x28,0x2b,0x48,0x08,0x08,0x08,0x0b,0x08,0x08,0x40,0x50,0x48,0x7e,0xc0,0x7c,0xc0,0x3f,0xe0,0x24,0x18,0x30,0xd1,0x09,0x05,0x03 -+// 26720 桠 ; -+,0x00,0x08,0x09,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x0b,0x08,0x00,0x00,0xff,0x48,0x48,0x48,0x49,0x4a,0xcc,0x48,0x48,0x48,0x48,0x48,0xff,0x00 -+// 26721 桡 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x09,0x09,0x0a,0x08,0x20,0x20,0xff,0x20,0x22,0x14,0x19,0xe5,0x03,0xff,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 26722 桢 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0x1f,0x10,0x10,0xfe,0x82,0x82,0x92,0x92,0x92,0x92,0x28,0xc6,0x03,0x01 -+// 26723 档 ; -+,0x08,0x08,0x09,0x08,0x7f,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x00,0x10,0x12,0x92,0x54,0x58,0xff,0x01,0x01,0xff,0x01,0x01,0x01,0xff,0x01,0x00 -+// 26724 桤 ; -+,0x08,0x09,0x09,0x09,0x7d,0x08,0x19,0x1c,0x2a,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x10,0x12,0x12,0x12,0xfe,0x00,0xfe,0x02,0x02,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 26725 桥 ; -+,0x10,0x11,0x10,0x7e,0x13,0x38,0x34,0x51,0x56,0x10,0x10,0x10,0x11,0x11,0x12,0x10,0x00,0xfe,0x20,0x20,0xff,0x50,0x88,0x04,0x8b,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 26726 桦 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x50,0x50,0x92,0x94,0x98,0xb0,0x91,0x8f,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 26727 桧 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x2b,0x48,0x08,0x08,0x08,0x09,0x08,0x08,0x20,0x20,0x50,0x48,0x84,0x7b,0x00,0x00,0xff,0x20,0x40,0x48,0x84,0xfe,0x02,0x00 -+// 26728 桨 ; -+,0x02,0x12,0x0a,0x06,0x06,0x0a,0x32,0x02,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0x20,0x3f,0x42,0xa4,0x18,0x90,0xa0,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 26729 桩 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0d,0x08,0x20,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 26730 桪 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x04,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x14,0x08 -+// 26731 桫 ; -+,0x10,0x11,0x10,0x10,0x7c,0x12,0x39,0x34,0x50,0x50,0x11,0x17,0x11,0x11,0x11,0x10,0x08,0x08,0x88,0x88,0x2a,0x2a,0x49,0x09,0x88,0x8a,0x02,0x04,0x04,0x08,0x30,0xc0 -+// 26732 桬 ; -+,0x10,0x08,0x20,0x10,0x05,0x08,0x30,0x17,0x10,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x20,0x28,0xa4,0xa2,0x24,0x18,0x60,0x80,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26733 桭 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x19,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xff,0x00,0x00,0xfe,0x00,0xff,0x60,0x52,0x54,0x48,0x48,0x44,0x57,0x62,0x40 -+// 26734 桮 ; -+,0x08,0x09,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x30,0x34,0x52,0x93,0x11,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 26735 桯 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0xfe,0x82,0x82,0x82,0xfe,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 26736 桰 ; -+,0x08,0x08,0x08,0x08,0x7e,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0xf0,0x90,0x90,0xff,0x88,0xa9,0xc5,0x83,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 26737 桱 ; -+,0x08,0x09,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x00,0x52,0xa4,0x48,0xa4,0xa4,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 26738 桲 ; -+,0x08,0x08,0x09,0x08,0x7d,0x09,0x1c,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xfe,0x20,0xff,0x02,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 26739 桳 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1b,0x28,0x28,0x49,0x0a,0x09,0x08,0x08,0x08,0x08,0x20,0x20,0x48,0xfc,0x24,0x20,0xff,0x50,0xa8,0x27,0x22,0xfc,0x20,0x20,0x20,0x20 -+// 26740 桴 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x1e,0xe0,0x00,0x22,0x94,0x48,0xfe,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 26741 桵 ; -+,0x08,0x09,0x08,0x09,0x7e,0x08,0x1c,0x1e,0x2b,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x1e,0xf0,0x00,0x23,0x92,0x94,0x20,0x20,0xff,0x44,0x84,0x68,0x18,0x66,0x82,0x00 -+// 26742 桶 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xfe,0x24,0x18,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0x15,0x12 -+// 26743 桷 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x40,0x7c,0x88,0x90,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x12,0x12,0x0a,0x04 -+// 26744 桸 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x29,0x4a,0x0c,0x08,0x08,0x08,0x08,0x08,0x84,0x48,0x30,0x4c,0xa2,0xff,0x50,0x90,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 26745 桹 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xfe,0x82,0x82,0xfe,0x82,0xfe,0xc0,0xa2,0xac,0x90,0x88,0xac,0xc7,0x82 -+// 26746 桺 ; -+,0x08,0x09,0x08,0x3e,0x09,0x1d,0x1b,0x29,0x29,0x49,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0xff,0x28,0x28,0xef,0x29,0x29,0x29,0x29,0xef,0x28,0x28,0x48,0x48,0x88,0x08 -+// 26747 桻 ; -+,0x10,0x10,0x10,0x10,0x7d,0x10,0x3b,0x34,0x50,0x50,0x10,0x13,0x10,0x10,0x10,0x10,0x40,0x40,0xfc,0xc8,0x30,0xcc,0x13,0xfe,0x10,0xfc,0x10,0xff,0x10,0x10,0x10,0x10 -+// 26748 桼 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x01,0x02,0x0c,0x72,0x01,0x02,0x0c,0x02,0x01,0x80,0x80,0xfe,0xc0,0xb0,0x8e,0x84,0xc0,0xb0,0x8e,0xb4,0xc0,0xb0,0x8c,0x88,0x00 -+// 26749 桽 ; -+,0x00,0x00,0x3f,0x00,0x03,0x1c,0x00,0x04,0x04,0x0a,0x31,0x0f,0x00,0x00,0x3f,0x00,0x40,0x40,0xff,0xe0,0x58,0x47,0x02,0x48,0x48,0x54,0x63,0xfc,0x40,0x40,0xff,0x00 -+// 26750 桾 ; -+,0x10,0x11,0x10,0x10,0x7d,0x10,0x38,0x35,0x50,0x50,0x11,0x11,0x12,0x14,0x10,0x10,0x00,0xfc,0x44,0x44,0xff,0x44,0x44,0xfc,0x80,0x80,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 26751 桿 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26752 梀 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x39,0x35,0x54,0x50,0x10,0x10,0x11,0x16,0x10,0x10,0x20,0x20,0xff,0x20,0xfe,0x22,0x22,0xfe,0x20,0x70,0xa8,0xa4,0x27,0x22,0x20,0x20 -+// 26753 梁 ; -+,0x11,0x08,0x40,0x25,0x09,0x70,0x11,0x16,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0xfc,0x24,0x24,0x46,0x45,0x85,0x14,0x88,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26754 梂 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x20,0x28,0x24,0xff,0x20,0x20,0xb2,0xb4,0x28,0x68,0xa4,0x27,0x22,0x20,0xa0,0x40 -+// 26755 梃 ; -+,0x08,0x0b,0x08,0x7e,0x09,0x1d,0x1b,0x28,0x28,0x4a,0x09,0x08,0x09,0x0a,0x0c,0x08,0x06,0xb8,0x88,0x88,0x08,0x7f,0xc8,0x48,0x48,0x88,0xbe,0x80,0x40,0x30,0x0f,0x00 -+// 26756 梄 ; -+,0x08,0x0b,0x08,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x48,0x48,0xff,0x49,0x49,0x49,0x87,0x01,0xff,0x01,0x01,0xff,0x01,0x00 -+// 26757 梅 ; -+,0x08,0x08,0x08,0x09,0x7d,0x0a,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x80,0x80,0xff,0x00,0xfc,0x84,0xa4,0x94,0xff,0xa4,0x94,0x84,0xff,0x04,0x14,0x08 -+// 26758 梆 ; -+,0x08,0x08,0x08,0x0b,0x7e,0x08,0x1d,0x1a,0x28,0x2b,0x48,0x09,0x09,0x0a,0x0c,0x08,0x80,0x8f,0x89,0xe9,0x8a,0x8a,0xec,0x8c,0x8a,0xe9,0x89,0x0d,0x0a,0x08,0x08,0x08 -+// 26759 梇 ; -+,0x08,0x09,0x08,0x7e,0x08,0x18,0x1d,0x2a,0x28,0x4b,0x08,0x08,0x09,0x09,0x0a,0x08,0x00,0xff,0x20,0xfe,0x20,0x20,0xff,0x88,0x88,0xff,0x88,0x88,0x08,0x08,0x08,0x08 -+// 26760 梈 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x04,0x08,0x10,0x10,0x10,0x50,0x20 -+// 26761 梉 ; -+,0x08,0x08,0x09,0x09,0x7f,0x19,0x1c,0x2a,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x24,0x24,0x24,0x24,0x24,0xe4,0x3f,0x24,0xe4,0x24,0x24,0x24,0x24,0x3f,0x20,0x20 -+// 26762 梊 ; -+,0x08,0x08,0x08,0x7f,0x1c,0x1a,0x28,0x49,0x08,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x0c,0x70,0x40,0x40,0x7f,0x88,0x88,0x08,0x88,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82 -+// 26763 梋 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 26764 梌 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1b,0x1c,0x2a,0x2b,0x48,0x09,0x09,0x0a,0x08,0x08,0x08,0x20,0x20,0x30,0x48,0x84,0x7b,0x20,0x20,0xff,0x20,0x28,0x24,0x22,0x22,0xa0,0x40 -+// 26765 梍 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x39,0x35,0x30,0x50,0x57,0x10,0x10,0x10,0x10,0x10,0x20,0x40,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x20,0x3f,0xe0,0x20,0x21,0x21,0x1f,0x00 -+// 26766 梎 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x80,0x8e,0xf0,0x80,0x81,0x81,0x7f,0x00 -+// 26767 梏 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 26768 梐 ; -+,0x08,0x09,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x28,0x28,0x49,0x08,0x08,0x08,0x0b,0x08,0x00,0x10,0x12,0xdc,0x10,0x51,0x91,0x0f,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 26769 梑 ; -+,0x10,0x14,0x12,0x11,0x7a,0x10,0x38,0x35,0x51,0x52,0x14,0x10,0x10,0x15,0x12,0x10,0x08,0x48,0x88,0x08,0xa9,0x9b,0xdc,0x48,0x48,0x48,0x48,0x94,0x94,0x24,0x43,0x82 -+// 26770 梒 ; -+,0x08,0x08,0x08,0x08,0x7e,0x0b,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x4c,0xa7,0x12,0xfc,0x08,0x10,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 26771 梓 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xfe,0x84,0x48,0x48,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26772 梔 ; -+,0x10,0x11,0x11,0x7d,0x11,0x39,0x35,0x31,0x51,0x51,0x11,0x12,0x12,0x14,0x18,0x10,0x00,0xfe,0x00,0x00,0xff,0x00,0x7e,0x52,0x52,0x7e,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 26773 梕 ; -+,0x08,0x08,0x08,0x3e,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x00,0x00,0xfe,0x12,0x92,0x92,0x22,0x22,0x4a,0x84,0x10,0x4a,0x41,0x45,0x44,0x3c,0x00 -+// 26774 梖 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x08,0x08,0x08,0x09,0x0a,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x00,0x84,0x82,0x03,0x02 -+// 26775 梗 ; -+,0x10,0x11,0x10,0x7e,0x10,0x38,0x34,0x54,0x50,0x11,0x10,0x10,0x10,0x11,0x16,0x10,0x00,0xff,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x90,0x60,0x60,0x98,0x07,0x02 -+// 26776 梘 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x08,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 26777 梙 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x11,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26778 梚 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x40,0x7c,0x48,0x90,0xfe,0x92,0x92,0x92,0xfe,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 26779 梛 ; -+,0x10,0x13,0x10,0x10,0x78,0x13,0x10,0x18,0x13,0x30,0x50,0x11,0x11,0x12,0x54,0x20,0x00,0xef,0xa9,0xaa,0xaa,0xec,0xac,0xaa,0xe9,0xa9,0xa9,0x2d,0x2a,0xa8,0x48,0x08 -+// 26780 梜 ; -+,0x08,0x08,0x08,0x09,0x7e,0x0c,0x1a,0x18,0x29,0x2a,0x48,0x08,0x08,0x09,0x0a,0x08,0x20,0x20,0x20,0xff,0x20,0xa4,0xa4,0xa4,0x6a,0x30,0x50,0x48,0x88,0x04,0x07,0x02 -+// 26781 條 ; -+,0x08,0x08,0x08,0x10,0x15,0x34,0x54,0x15,0x14,0x15,0x14,0x14,0x10,0x11,0x10,0x10,0x40,0x40,0x7e,0xc4,0x28,0x18,0x67,0x92,0x10,0xfe,0x10,0x94,0x92,0x13,0x51,0x20 -+// 26782 梞 ; -+,0x08,0x08,0x08,0x3e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x09,0x09,0x0a,0x08,0x08,0x00,0xfc,0x04,0x04,0xfc,0x80,0x82,0xfe,0x20,0x10,0x52,0x41,0x45,0x44,0x3c,0x00 -+// 26783 梟 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x02,0x04,0x18,0x60,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x00,0xfe,0x82,0xfa,0xc2,0xa6,0x98,0x86 -+// 26784 梠 ; -+,0x08,0x08,0x08,0x3e,0x08,0x1c,0x1a,0x18,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xfe,0x82,0x82,0x82,0xfe,0x00,0x00,0xff,0x01,0x01,0x01,0x01,0xff,0x01,0x00 -+// 26785 梡 ; -+,0x10,0x10,0x11,0x11,0x7c,0x10,0x38,0x34,0x51,0x50,0x10,0x10,0x10,0x11,0x12,0x10,0x20,0x10,0xff,0x02,0x00,0xfc,0x00,0x00,0xff,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 26786 梢 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x92,0x52,0x54,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 26787 梣 ; -+,0x08,0x09,0x09,0x09,0x7e,0x08,0x1c,0x1a,0x2b,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0x20,0x22,0x22,0xfe,0x20,0x60,0x50,0x8c,0x23,0x10,0xfe,0x04,0x08,0x08,0x10,0x10 -+// 26788 梤 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x29,0x48,0x08,0x08,0x08,0x08,0x09,0x0a,0x10,0x92,0x92,0xfe,0x00,0x48,0x48,0x84,0x07,0xfa,0x48,0x48,0x88,0x88,0x28,0x10 -+// 26789 梥 ; -+,0x00,0x1f,0x10,0x01,0x02,0x0c,0x01,0x07,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0xff,0x02,0x20,0x18,0x86,0x10,0xf8,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26790 梦 ; -+,0x04,0x04,0x3f,0x04,0x0e,0x15,0x65,0x06,0x03,0x04,0x06,0x19,0x00,0x01,0x06,0x38,0x10,0x10,0x7f,0x18,0x34,0x57,0x92,0x10,0xfc,0x08,0x10,0x20,0xc0,0x80,0x00,0x00 -+// 26791 梧 ; -+,0x08,0x09,0x08,0x08,0x7d,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x20,0x20,0xfc,0x44,0x44,0xff,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 26792 梨 ; -+,0x03,0x3e,0x02,0x3f,0x07,0x0a,0x12,0x62,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0xc2,0x02,0x12,0xd2,0x12,0x92,0x82,0x0a,0x84,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26793 梩 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x49,0x08,0x08,0x08,0x0b,0x08,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 26794 梪 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x00,0x82,0x82,0x44,0x48,0xff,0x00 -+// 26795 梫 ; -+,0x08,0x08,0x08,0x7e,0x08,0x0c,0x1a,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xff,0x01,0xfc,0x48,0x30,0x30,0xcc,0x07,0x02 -+// 26796 梬 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x20,0x7e,0x02,0x02,0x02,0x0a,0x04 -+// 26797 梭 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x19,0x2a,0x28,0x48,0x09,0x08,0x08,0x0b,0x08,0x10,0x20,0x44,0xfe,0x02,0x84,0x82,0x21,0x7c,0x44,0xa8,0x10,0x28,0xc4,0x07,0x02 -+// 26798 梮 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xfe,0x02,0xfe,0x00,0x00,0xff,0x01,0x79,0x49,0x49,0x79,0x01,0x01,0x05,0x02 -+// 26799 梯 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1b,0x29,0x29,0x49,0x08,0x08,0x09,0x0a,0x08,0x08,0x84,0x48,0x50,0xfe,0x22,0x22,0xfe,0x20,0x20,0xff,0x61,0xa1,0x25,0x22,0x20,0x20 -+// 26800 械 ; -+,0x10,0x10,0x10,0x11,0x7c,0x11,0x39,0x35,0x33,0x51,0x51,0x12,0x12,0x14,0x10,0x10,0x10,0x14,0x12,0xff,0x10,0x50,0x52,0x52,0xf4,0x54,0x48,0x49,0x55,0x25,0x43,0x01 -+// 26801 梱 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x11,0x11,0x11,0x7d,0x11,0x39,0x55,0x93,0x11,0x11,0x11,0xff,0x01,0x00 -+// 26802 梲 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x48,0x44,0x82,0xff,0x84,0x84,0x84,0xfc,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 26803 梳 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1d,0x2a,0x28,0x48,0x08,0x08,0x09,0x09,0x0a,0x08,0x20,0x10,0xff,0x20,0x40,0x84,0xfe,0x02,0xa4,0xa4,0xa4,0xa4,0x25,0x25,0x23,0x00 -+// 26804 梴 ; -+,0x10,0x17,0x10,0x10,0x7d,0x11,0x3b,0x34,0x30,0x52,0x52,0x11,0x11,0x12,0x14,0x10,0x07,0xb8,0x88,0x88,0x28,0x2e,0xa8,0xa8,0xa8,0xa8,0xbf,0x00,0x80,0x60,0x1f,0x00 -+// 26805 梵 ; -+,0x04,0x04,0x7f,0x0c,0x0e,0x15,0x65,0x04,0x03,0x02,0x03,0x02,0x02,0x04,0x18,0x00,0x10,0x10,0xff,0x18,0x34,0x53,0x90,0x00,0xf0,0x10,0x10,0xd0,0x51,0x11,0x0f,0x00 -+// 26806 梶 ; -+,0x08,0x09,0x09,0x09,0x7f,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xfe,0x02,0xfe,0x00,0x0e,0xf0,0x10,0xfe,0x10,0xff,0x10,0x11,0x11,0x0f,0x00 -+// 26807 梷 ; -+,0x04,0x04,0x07,0x04,0x3f,0x21,0x21,0x3f,0x00,0x3f,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x7e,0x82,0x14,0x08,0x14,0x26,0x42,0x40,0xff,0xe0,0x50,0x4c,0x47,0x42,0x40 -+// 26808 梸 ; -+,0x08,0x08,0x09,0x08,0x7e,0x09,0x1c,0x1a,0x29,0x29,0x4a,0x0c,0x08,0x08,0x08,0x08,0x01,0x31,0xc5,0x45,0x45,0xf5,0xc5,0xe5,0x55,0x45,0x45,0x41,0x41,0x41,0x45,0x42 -+// 26809 梹 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x08,0x09,0x0a,0x08,0x00,0x1c,0xe0,0x80,0x80,0xfe,0x90,0x90,0x90,0xff,0x00,0x88,0x84,0x02,0x02,0x00 -+// 26810 梺 ; -+,0x04,0x04,0x3f,0x04,0x0e,0x15,0x24,0x04,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x7f,0x08,0x1c,0x2a,0xc9,0x08,0xff,0x80,0x90,0x88,0x8c,0x84,0x80,0x80 -+// 26811 梻 ; -+,0x08,0x08,0x08,0x7d,0x09,0x1b,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x94,0x94,0x94,0x7f,0x15,0x15,0x7f,0x54,0x54,0x7f,0x15,0x25,0x25,0x47,0x84,0x04 -+// 26812 梼 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1d,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x0c,0x08,0x10,0x10,0xff,0x10,0xfe,0x20,0xff,0x40,0x44,0xff,0x84,0x24,0x14,0x04,0x14,0x08 -+// 26813 梽 ; -+,0x08,0x08,0x08,0x09,0x7e,0x18,0x1c,0x2a,0x2a,0x48,0x09,0x09,0x0a,0x0a,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x00,0x20,0x10,0x52,0x41,0x45,0x45,0x3c,0x00 -+// 26814 梾 ; -+,0x08,0x08,0x09,0x7e,0x09,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x09,0x0a,0x0c,0x08,0x08,0x20,0x20,0xfe,0x20,0x24,0xa8,0xb0,0xff,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 26815 梿 ; -+,0x10,0x12,0x11,0x11,0x7c,0x10,0x3b,0x35,0x51,0x51,0x11,0x11,0x11,0x12,0x14,0x10,0x08,0x08,0x7f,0x10,0x10,0x28,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0xc0,0x3f,0x00 -+// 26816 检 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x28,0x49,0x08,0x08,0x08,0x0b,0x08,0x00,0x20,0x20,0x50,0x88,0x07,0x00,0xfc,0x00,0x44,0x26,0xa4,0xa8,0x10,0xff,0x00,0x00 -+// 26817 棁 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x44,0x24,0x28,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 26818 棂 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x29,0x49,0x0b,0x08,0x08,0x08,0x0b,0x08,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x20,0x22,0x2c,0x30,0x50,0x4c,0x87,0x02,0x00 -+// 26819 棃 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x64,0x04,0x00,0x3f,0x00,0x01,0x02,0x0c,0x30,0x00,0x90,0x10,0x3e,0xaa,0x4a,0x12,0x22,0x46,0x40,0xff,0xc0,0x60,0x58,0x47,0x42,0x40 -+// 26820 棄 ; -+,0x00,0x00,0x3f,0x02,0x07,0x00,0x04,0x3f,0x04,0x07,0x00,0x3f,0x00,0x03,0x1c,0x00,0x80,0x40,0xff,0x08,0xfc,0x40,0x48,0xff,0x48,0xf8,0x40,0xff,0xe0,0x58,0x47,0x42 -+// 26821 棅 ; -+,0x08,0x09,0x08,0x0b,0x7c,0x09,0x1c,0x1b,0x28,0x29,0x48,0x08,0x08,0x09,0x0e,0x08,0x1c,0xe0,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x70,0xa8,0x27,0x22,0x20 -+// 26822 棆 ; -+,0x08,0x08,0x08,0x08,0x7d,0x0a,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x20,0x50,0x8c,0x07,0xfa,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x52,0x06 -+// 26823 棇 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1a,0x1c,0x2a,0x28,0x48,0x08,0x0a,0x0a,0x0a,0x08,0x08,0x10,0x48,0x48,0x84,0x03,0x20,0x48,0xfc,0x04,0x20,0x92,0x91,0x85,0x84,0x7c,0x00 -+// 26824 棈 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x19,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84 -+// 26825 棉 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x11,0x11,0x11,0x11,0x13,0x10,0x10 -+// 26826 棊 ; -+,0x02,0x1f,0x02,0x03,0x02,0x03,0x02,0x3f,0x02,0x0c,0x37,0x01,0x06,0x18,0x00,0x00,0x10,0xff,0x10,0xf0,0x10,0xf0,0x10,0xff,0x48,0x44,0xfb,0x60,0x50,0x4e,0x44,0x40 -+// 26827 棋 ; -+,0x08,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x28,0x48,0x08,0x09,0x08,0x08,0x08,0x08,0x09,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x00,0x44,0x42,0x83,0x01 -+// 26828 棌 ; -+,0x10,0x11,0x10,0x7d,0x10,0x38,0x34,0x53,0x50,0x10,0x10,0x11,0x12,0x10,0x10,0x10,0x0f,0xf0,0x00,0x42,0xa4,0x88,0x20,0xff,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 26829 棍 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0x90,0x93,0xdc,0x90,0x90,0x91,0xd1,0x8f -+// 26830 棎 ; -+,0x08,0x09,0x09,0x7e,0x08,0x0d,0x1a,0x19,0x28,0x28,0x48,0x09,0x0a,0x08,0x08,0x08,0x00,0xff,0x02,0x48,0x86,0x22,0x20,0xfe,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 26831 棏 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x08,0xff,0x88,0x48,0x08,0x08,0x28,0x10 -+// 26832 棐 ; -+,0x02,0x02,0x7e,0x02,0x3e,0x02,0x7e,0x02,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x20,0x20,0x3f,0x20,0x3e,0x20,0x3f,0x20,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26833 棑 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1b,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0xcf,0x48,0x48,0xce,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 26834 棒 ; -+,0x10,0x10,0x13,0x10,0x7d,0x10,0x3b,0x34,0x51,0x56,0x10,0x13,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x90,0x2c,0xfb,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 26835 棓 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x20,0xfe,0x00,0x84,0x48,0x50,0xff,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 26836 棔 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x0e,0xf0,0x90,0x90,0xff,0x88,0xa5,0xc3,0x81,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 26837 棕 ; -+,0x08,0x08,0x09,0x7d,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x08,0x0b,0x08,0x08,0x08,0x20,0x10,0xff,0x02,0x00,0xfe,0x00,0x00,0xff,0x10,0x54,0x92,0x11,0x11,0x50,0x20 -+// 26838 棖 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x80,0xfc,0x80,0xfc,0x80,0xff,0xa0,0x92,0x94,0x88,0x84,0xa7,0xc2,0x80 -+// 26839 棗 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x09,0x06,0x18,0x3f,0x00,0x0f,0x08,0x09,0x02,0x0c,0x30,0x80,0xff,0x80,0xfc,0x84,0xe4,0x98,0x84,0xff,0x80,0xfc,0x84,0xc4,0xb0,0x8e,0x84 -+// 26840 棘 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x29,0x29,0x29,0x2b,0x0c,0x1a,0x29,0x48,0x0b,0x08,0x08,0x10,0x10,0x7f,0x10,0x7e,0x52,0x52,0x52,0x56,0x10,0x38,0x54,0x97,0x12,0x10,0x10 -+// 26841 棙 ; -+,0x08,0x08,0x09,0x09,0x7f,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0d,0x08,0x20,0x10,0xfe,0x02,0x02,0xfe,0x10,0x14,0x12,0xff,0x10,0x28,0x28,0x44,0x87,0x02 -+// 26842 棚 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0d,0x08,0x08,0x00,0xcf,0x49,0x49,0xcf,0x49,0x49,0x49,0xcf,0x49,0x49,0x51,0x51,0x65,0x82,0x00 -+// 26843 棛 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x20,0x44,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 26844 棜 ; -+,0x11,0x10,0x10,0x13,0x7d,0x11,0x39,0x35,0x55,0x51,0x11,0x12,0x12,0x15,0x18,0x10,0x08,0x88,0x88,0xec,0x14,0x13,0xe2,0x48,0x44,0x44,0x50,0x48,0x4c,0x44,0x84,0x00 -+// 26845 棝 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0x7d,0x45,0x45,0x7d,0x01,0x01,0xff,0x01,0x00 -+// 26846 棞 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x01,0x7d,0x11,0xfd,0x11,0x39,0x35,0x55,0x91,0x11,0x11,0xff,0x01,0x00 -+// 26847 棟 ; -+,0x08,0x08,0x0b,0x7c,0x09,0x1d,0x1b,0x29,0x29,0x48,0x08,0x08,0x09,0x0e,0x08,0x08,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x30,0x68,0xa4,0x27,0x22,0x20,0x20 -+// 26848 棠 ; -+,0x00,0x04,0x02,0x3f,0x20,0x07,0x04,0x07,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0x90,0xa0,0xfe,0x04,0xf0,0x10,0xf0,0x80,0xfe,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26849 棡 ; -+,0x08,0x09,0x09,0x7f,0x09,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x01,0x45,0x29,0x7d,0x11,0x55,0x55,0x55,0x7d,0x01,0x01,0x01,0x05,0x02 -+// 26850 棢 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x01,0x49,0x31,0xff,0x21,0xff,0x41,0x41,0x41,0x7d,0x01,0x01,0x05,0x02 -+// 26851 棣 ; -+,0x08,0x08,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x28,0x49,0x08,0x08,0x0b,0x08,0x08,0x08,0x20,0x20,0xfc,0x24,0xff,0x24,0x24,0xfc,0x22,0xa4,0x78,0xa8,0x26,0x22,0xa0,0x40 -+// 26852 棤 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1b,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0xfe,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 26853 棥 ; -+,0x08,0x0a,0x09,0x3e,0x08,0x1d,0x1a,0x2a,0x29,0x48,0x09,0x0a,0x08,0x08,0x08,0x08,0x04,0x24,0x44,0xbf,0xc4,0x2c,0x0e,0x4e,0x96,0x95,0x65,0x25,0x44,0x04,0x04,0x04 -+// 26854 棦 ; -+,0x10,0x10,0x10,0x10,0x7d,0x12,0x38,0x35,0x30,0x50,0x51,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0xfc,0x88,0xfe,0x22,0x22,0xff,0x22,0x22,0xfe,0x20,0x20,0x20,0xa0,0x40 -+// 26855 棧 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x18,0x1d,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x0b,0x08,0x50,0x7e,0xc0,0x28,0x30,0x51,0x89,0x57,0x48,0x7e,0xc0,0x2c,0x30,0xd9,0x05,0x03 -+// 26856 棨 ; -+,0x08,0x04,0x1f,0x11,0x1f,0x10,0x20,0x20,0x40,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x20,0x20,0x7f,0x64,0x98,0x18,0x64,0x82,0x80,0xff,0xa0,0x98,0x87,0x82,0x80,0x80 -+// 26857 棩 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x09,0x09,0x0a,0x08,0xa5,0xa5,0xa5,0xa5,0xe7,0x81,0xff,0x81,0x81,0xe7,0xa5,0xa5,0x25,0x25,0x25,0x25 -+// 26858 棪 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1b,0x28,0x28,0x48,0x08,0x09,0x08,0x08,0x0b,0x08,0x20,0x20,0xa6,0xb8,0x30,0x4c,0x82,0x20,0x20,0xa6,0xa8,0x50,0x48,0x87,0x02,0x00 -+// 26859 棫 ; -+,0x08,0x08,0x08,0x0b,0x7c,0x09,0x1d,0x1b,0x29,0x29,0x48,0x08,0x0b,0x08,0x08,0x08,0x14,0x12,0x10,0xff,0x10,0xd2,0x53,0x52,0x54,0xcc,0x08,0x69,0x95,0x23,0x41,0x00 -+// 26860 棬 ; -+,0x10,0x11,0x10,0x7b,0x10,0x38,0x37,0x50,0x51,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x20,0x28,0xb0,0xfe,0x40,0x40,0xff,0x90,0x08,0xff,0x8a,0xa8,0x90,0x84,0x84,0x7c -+// 26861 棭 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0x50,0x5f,0xa2,0xca,0xa4,0x94,0x88,0x88,0x94,0xa4,0xc3,0x82 -+// 26862 森 ; -+,0x00,0x00,0x3f,0x01,0x02,0x0c,0x30,0x04,0x7f,0x04,0x0e,0x15,0x64,0x05,0x04,0x04,0x80,0x80,0xfe,0xc0,0xb0,0x88,0x86,0x10,0x7f,0x10,0x38,0x34,0x54,0x93,0x10,0x10 -+// 26863 棯 ; -+,0x08,0x08,0x08,0x7e,0x0b,0x1c,0x1a,0x28,0x28,0x48,0x08,0x0a,0x0a,0x0e,0x08,0x08,0x20,0x20,0x50,0x88,0x47,0x22,0xfc,0x08,0x10,0x20,0x10,0x92,0x81,0x85,0x7c,0x00 -+// 26864 棰 ; -+,0x10,0x11,0x10,0x7c,0x13,0x38,0x34,0x53,0x50,0x10,0x13,0x10,0x10,0x10,0x11,0x10,0x00,0xfe,0x20,0x20,0xff,0xa4,0xa4,0xff,0xa4,0xa4,0xff,0x20,0x20,0x20,0xfe,0x00 -+// 26865 棱 ; -+,0x08,0x08,0x09,0x7e,0x08,0x0b,0x1c,0x1a,0x29,0x2a,0x48,0x0b,0x08,0x08,0x0b,0x08,0x20,0x20,0xfe,0x20,0x20,0xff,0x88,0x86,0x42,0x7c,0x88,0x50,0x30,0xcc,0x07,0x02 -+// 26866 棲 ; -+,0x08,0x0b,0x08,0x7d,0x08,0x1d,0x1a,0x19,0x28,0x2b,0x48,0x08,0x08,0x08,0x08,0x0b,0x20,0xff,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xff,0x48,0x88,0x50,0x30,0xcc,0x04 -+// 26867 棳 ; -+,0x10,0x13,0x12,0x7d,0x10,0x39,0x36,0x57,0x50,0x12,0x11,0x10,0x11,0x12,0x14,0x10,0x00,0xff,0x52,0x8a,0xc4,0x4a,0x31,0xdf,0x52,0x4a,0x84,0x84,0x4a,0x33,0xc2,0x00 -+// 26868 棴 ; -+,0x10,0x13,0x12,0x7e,0x13,0x3a,0x36,0x52,0x53,0x12,0x12,0x12,0x14,0x14,0x19,0x10,0x00,0xdf,0x51,0x51,0xd5,0x52,0x50,0x5f,0xd1,0x52,0x5a,0x54,0x54,0x5a,0x53,0x92 -+// 26869 棵 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x29,0x48,0x08,0x08,0x0b,0x08,0x08,0x08,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x30,0x58,0x94,0x17,0x12,0x10,0x10 -+// 26870 棶 ; -+,0x08,0x08,0x0b,0x7e,0x09,0x1d,0x1a,0x2a,0x28,0x48,0x09,0x0e,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x20,0x24,0x24,0xaa,0x71,0x70,0xa8,0x24,0x27,0x22,0x20,0x20,0x20 -+// 26871 棷 ; -+,0x10,0x13,0x11,0x7d,0x11,0x39,0x35,0x51,0x51,0x11,0x11,0x11,0x17,0x10,0x10,0x10,0x00,0xf0,0x20,0x3f,0xf1,0x29,0x2a,0xea,0x24,0x24,0x24,0xea,0x33,0x22,0x20,0x20 -+// 26872 棸 ; -+,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x71,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0xbe,0x02,0x24,0x14,0x08,0x94,0x62,0x02,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 26873 棹 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 26874 棺 ; -+,0x08,0x08,0x09,0x7d,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x02,0x00,0xfc,0x84,0x84,0xfc,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 26875 棻 ; -+,0x04,0x3f,0x04,0x02,0x04,0x1b,0x61,0x01,0x02,0x0c,0x3f,0x01,0x02,0x0c,0x70,0x00,0x10,0xff,0x10,0x20,0x10,0xfc,0x13,0x10,0x50,0xa0,0xff,0xc0,0xb0,0x8e,0x84,0x80 -+// 26876 棼 ; -+,0x04,0x04,0x3f,0x0e,0x15,0x64,0x04,0x01,0x06,0x18,0x6f,0x01,0x02,0x0c,0x30,0x00,0x08,0x08,0x7f,0x1c,0x2a,0xc9,0x08,0x20,0x10,0x0c,0xf7,0x12,0x10,0x10,0x50,0x20 -+// 26877 棽 ; -+,0x04,0x04,0x3f,0x0e,0x15,0x64,0x04,0x00,0x01,0x06,0x38,0x07,0x00,0x00,0x00,0x00,0x10,0x10,0x7f,0x38,0x56,0x92,0x50,0xc0,0x30,0x88,0x47,0xfa,0x10,0x20,0x40,0x80 -+// 26878 棾 ; -+,0x04,0x04,0x3f,0x06,0x0d,0x35,0x04,0x3f,0x20,0x03,0x02,0x02,0x04,0x04,0x18,0x00,0x10,0x10,0x7e,0x38,0x54,0x93,0x10,0xff,0x02,0xf4,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 26879 棿 ; -+,0x08,0x08,0x08,0x3e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 26880 椀 ; -+,0x08,0x08,0x09,0x7d,0x08,0x1c,0x1a,0x29,0x29,0x4a,0x08,0x08,0x08,0x09,0x0a,0x08,0x20,0x10,0xff,0x02,0x80,0xfe,0xb2,0x32,0x32,0xd2,0x56,0x90,0x91,0x11,0x0f,0x00 -+// 26881 椁 ; -+,0x08,0x0b,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x08,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 26882 椂 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1b,0x1c,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x08,0xfc,0x04,0xfc,0x04,0x04,0xff,0x10,0x92,0x54,0x38,0x58,0x94,0x13,0x12,0x50,0x20 -+// 26883 椃 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0d,0x08,0x20,0x3c,0x20,0xff,0x22,0xfc,0x22,0x3e,0x00,0x78,0x48,0x48,0x49,0x89,0x07,0x00 -+// 26884 椄 ; -+,0x10,0x10,0x11,0x7c,0x10,0x3b,0x34,0x50,0x57,0x10,0x11,0x10,0x10,0x10,0x17,0x10,0x20,0x10,0xfe,0x84,0x48,0xff,0x20,0x40,0xff,0x88,0x08,0xd0,0x30,0xcc,0x06,0x02 -+// 26885 椅 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x20,0x50,0x88,0xff,0x04,0xf4,0x94,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 26886 椆 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x09,0x0a,0x0c,0x00,0xff,0x91,0x91,0xff,0x91,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x01,0x01,0x05,0x02 -+// 26887 椇 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x09,0x0a,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x00,0x84,0xc2,0x03,0x02 -+// 26888 椈 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1d,0x1a,0x28,0x29,0x48,0x08,0x09,0x0a,0x08,0x08,0x08,0x40,0x40,0xff,0x81,0x21,0x25,0xa9,0x71,0xfd,0x71,0xa9,0x25,0x21,0x21,0x05,0x02 -+// 26889 椉 ; -+,0x00,0x00,0x7f,0x04,0x0f,0x11,0x2a,0x04,0x08,0x30,0x7f,0x01,0x06,0x18,0x60,0x00,0x80,0x40,0xff,0x08,0x7f,0x48,0x7f,0x08,0x88,0x88,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 26890 椊 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0x88,0x88,0xd4,0x22,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 26891 椋 ; -+,0x08,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x08,0x20,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x10,0x94,0x92,0x13,0x11,0x50,0x20 -+// 26892 椌 ; -+,0x10,0x10,0x11,0x7d,0x10,0x38,0x34,0x51,0x52,0x11,0x10,0x10,0x10,0x10,0x13,0x10,0x20,0x10,0xff,0x02,0x00,0x88,0x84,0x02,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 26893 植 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x10,0x10,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x00 -+// 26894 椎 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1e,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x50,0x88,0xff,0x90,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80 -+// 26895 椏 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x09,0x1d,0x1b,0x29,0x29,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x48,0x48,0x48,0xce,0x02,0x02,0x02,0xce,0x48,0x48,0x48,0x48,0xff,0x00 -+// 26896 椐 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x0a,0x0a,0x0a,0x0c,0x08,0x08,0x00,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x00 -+// 26897 椑 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x20,0x40,0xfe,0x92,0xfe,0xa2,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26898 椒 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x2a,0x4a,0x0c,0x08,0x08,0x0a,0x09,0x00,0x80,0x9f,0xf2,0x92,0x92,0xf2,0x94,0x94,0xcc,0xa8,0x8c,0x92,0xa3,0xc1,0x00 -+// 26899 椓 ; -+,0x10,0x11,0x10,0x7c,0x10,0x38,0x33,0x50,0x50,0x11,0x16,0x10,0x11,0x16,0x10,0x10,0x00,0xff,0x20,0x20,0x40,0xc6,0x2c,0xb0,0xd0,0x58,0x34,0x53,0x92,0x10,0x50,0x20 -+// 26900 椔 ; -+,0x08,0x08,0x08,0x7d,0x09,0x1c,0x1a,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x92,0x92,0x24,0x24,0x92,0x92,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 26901 椕 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1b,0x1d,0x2d,0x29,0x49,0x0a,0x0a,0x0c,0x08,0x08,0x88,0x88,0x88,0x48,0x3f,0x28,0xdc,0x5c,0x6a,0x6a,0x4b,0x4a,0x48,0xc8,0x08,0x08 -+// 26902 椖 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x0c,0x08,0x20,0x10,0xfe,0x82,0xfe,0xa0,0x90,0xff,0x90,0x9e,0x92,0x22,0x22,0x42,0x8a,0x04 -+// 26903 椗 ; -+,0x08,0x08,0x09,0x09,0x7c,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x20,0x10,0xff,0x02,0x00,0xff,0x10,0x10,0x10,0x9e,0x90,0x90,0x50,0x30,0x1f,0x00 -+// 26904 椘 ; -+,0x04,0x04,0x3f,0x0e,0x15,0x24,0x45,0x00,0x3f,0x00,0x00,0x03,0x1c,0x26,0x41,0x00,0x10,0x10,0x7f,0x38,0x54,0x92,0x10,0x80,0xfc,0x10,0x60,0x80,0x00,0x00,0xff,0x00 -+// 26905 椙 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 26906 椚 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x02 -+// 26907 椛 ; -+,0x10,0x10,0x13,0x7c,0x10,0x38,0x34,0x50,0x50,0x11,0x12,0x14,0x10,0x10,0x10,0x10,0x88,0x88,0xff,0x88,0x88,0x50,0x50,0x93,0x96,0x98,0xb0,0x90,0x91,0x91,0x8f,0x80 -+// 26908 検 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0x28,0x44,0xbf,0x10,0x10,0xfe,0x92,0x92,0xfe,0x10,0x28,0xc4,0x03,0x00 -+// 26909 椝 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x04,0x0a,0x31,0x00,0x3f,0x00,0x01,0x02,0x0c,0x30,0x00,0x7c,0x44,0x54,0x54,0x54,0x55,0x29,0xcf,0x40,0xff,0xc0,0x60,0x58,0x47,0x42,0x40 -+// 26910 椞 ; -+,0x04,0x04,0x3f,0x04,0x0e,0x15,0x64,0x05,0x04,0x7f,0x01,0x02,0x0c,0x30,0x00,0x00,0x0e,0x70,0x40,0x7f,0x48,0x48,0x88,0x08,0x88,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 26911 椟 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x29,0x48,0x0b,0x08,0x08,0x08,0x08,0x0b,0x20,0x20,0xfe,0x20,0xff,0x02,0x90,0x50,0x10,0x90,0xff,0x10,0x10,0x2c,0xc7,0x02 -+// 26912 椠 ; -+,0x08,0x7f,0x08,0x14,0x3f,0x04,0x7f,0x04,0x05,0x00,0x7f,0x01,0x02,0x0c,0x70,0x00,0x00,0x7e,0x40,0x40,0x7f,0x48,0x48,0x88,0x88,0x80,0xfe,0xc0,0xb0,0x8f,0x84,0x80 -+// 26913 椡 ; -+,0x10,0x13,0x10,0x10,0x7d,0x13,0x18,0x34,0x30,0x53,0x50,0x10,0x10,0x17,0x10,0x10,0x01,0xf1,0x81,0x85,0x25,0xf5,0x55,0x45,0x45,0xf5,0x45,0x41,0x79,0x81,0x05,0x02 -+// 26914 椢 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x01,0x01,0xff,0x11,0x11,0x11,0x7d,0x11,0x15,0x13,0xff,0x01,0xff,0x01 -+// 26915 椣 ; -+,0x08,0x08,0x08,0x7c,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x0b,0x08,0x08,0x08,0x09,0x0a,0x28,0x28,0x28,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xff,0x28,0x44,0x86,0x02,0x02 -+// 26916 椤 ; -+,0x08,0x09,0x09,0x7f,0x09,0x19,0x1c,0x2a,0x28,0x49,0x0a,0x08,0x08,0x08,0x08,0x0b,0x00,0xff,0x29,0x29,0x29,0xff,0x40,0x40,0xff,0x42,0x24,0x18,0x10,0x20,0xc0,0x00 -+// 26917 椥 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1a,0x1c,0x2b,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x08,0x80,0x80,0x80,0xf0,0x4f,0x49,0x49,0xf9,0x49,0x49,0x49,0xa9,0xaf,0x20,0x00,0x00 -+// 26918 椦 ; -+,0x08,0x08,0x08,0x7e,0x09,0x18,0x1d,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x09,0x08,0x10,0x10,0x92,0x54,0xfe,0x20,0xff,0x48,0xa4,0x7b,0x28,0x48,0x48,0x88,0x28,0x10 -+// 26919 椧 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x29,0x29,0x49,0x09,0x09,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x44,0x87,0x7a,0x00,0xde,0x52,0x52,0x52,0xd6,0x10,0x10,0x10,0x10 -+// 26920 椨 ; -+,0x10,0x10,0x11,0x7d,0x11,0x39,0x35,0x55,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x20,0x10,0xff,0x20,0x24,0x44,0x7f,0xc4,0x64,0x54,0x54,0x44,0x44,0x44,0x54,0x48 -+// 26921 椩 ; -+,0x10,0x10,0x11,0x7d,0x11,0x39,0x35,0x51,0x51,0x11,0x11,0x12,0x12,0x14,0x18,0x10,0x20,0x10,0xff,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x10,0x28,0x24,0x47,0x82 -+// 26922 椪 ; -+,0x10,0x10,0x10,0x11,0x7c,0x10,0x18,0x35,0x34,0x50,0x50,0x10,0x10,0x10,0x13,0x10,0x82,0x44,0x48,0xff,0x48,0x48,0x48,0x4a,0xca,0xcc,0x48,0x48,0x48,0x48,0xff,0x00 -+// 26923 椫 ; -+,0x10,0x10,0x10,0x7d,0x11,0x39,0x35,0x51,0x50,0x10,0x13,0x10,0x10,0x10,0x10,0x10,0x84,0x44,0x48,0xfe,0x12,0xfe,0x12,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 26924 椬 ; -+,0x10,0x10,0x13,0x12,0x7c,0x10,0x38,0x34,0x50,0x50,0x10,0x10,0x10,0x10,0x17,0x10,0x40,0x20,0xff,0x02,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xff,0x00 -+// 26925 椭 ; -+,0x10,0x13,0x12,0x7e,0x12,0x3b,0x36,0x52,0x52,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x08,0xc8,0x7f,0x88,0x90,0x1e,0xb2,0x5e,0x52,0x52,0x5e,0x92,0x12,0x12,0x16,0x12 -+// 26926 椮 ; -+,0x10,0x10,0x10,0x11,0x7c,0x13,0x38,0x35,0x56,0x50,0x13,0x10,0x13,0x10,0x17,0x10,0x20,0x40,0x88,0xfc,0x24,0xff,0x50,0x8c,0x23,0xc8,0x30,0xc4,0x18,0x60,0x80,0x00 -+// 26927 椯 ; -+,0x08,0x09,0x09,0x7f,0x09,0x0c,0x1b,0x18,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x22,0x22,0x22,0xfe,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x06 -+// 26928 椰 ; -+,0x10,0x13,0x11,0x7d,0x11,0x31,0x39,0x55,0x51,0x11,0x11,0x11,0x17,0x10,0x10,0x10,0x00,0xff,0x29,0x29,0xea,0x2a,0x2c,0x2c,0xea,0x29,0x39,0xed,0x2a,0x28,0x28,0x28 -+// 26929 椱 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x09,0x40,0x7f,0x80,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7e,0xc2,0xa4,0x18,0x18,0x67,0x82 -+// 26930 椲 ; -+,0x10,0x10,0x11,0x10,0x7d,0x10,0x38,0x34,0x50,0x50,0x11,0x10,0x11,0x10,0x10,0x10,0x20,0x20,0xfc,0x48,0xff,0x00,0xfc,0x84,0xfc,0x10,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 26931 椳 ; -+,0x10,0x11,0x11,0x7d,0x11,0x19,0x35,0x30,0x57,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xff,0x20,0x24,0x18,0x10,0x4c,0x87,0x02 -+// 26932 椴 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x39,0x35,0x51,0x51,0x11,0x17,0x11,0x11,0x11,0x11,0x40,0x9e,0x12,0x12,0xd2,0x23,0x00,0xde,0x12,0x12,0xca,0x04,0x0c,0x12,0x63,0x00 -+// 26933 椵 ; -+,0x10,0x13,0x12,0x7e,0x13,0x12,0x3a,0x37,0x52,0x52,0x13,0x12,0x12,0x12,0x12,0x00,0x00,0xde,0x42,0x42,0xde,0x00,0x00,0xde,0x52,0x54,0xcc,0x08,0x14,0x27,0xc2,0x00 -+// 26934 椶 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1c,0x1a,0x29,0x2a,0x48,0x09,0x08,0x08,0x08,0x0b,0x08,0x48,0x32,0x32,0x4a,0xfe,0x00,0x84,0x42,0x7d,0x84,0x48,0x30,0x30,0xcc,0x07,0x02 -+// 26935 椷 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x3b,0x36,0x52,0x52,0x12,0x12,0x14,0x14,0x18,0x10,0x14,0x12,0x10,0xff,0x10,0x10,0xe9,0x09,0xea,0xae,0xa4,0xed,0x15,0x23,0x43,0x01 -+// 26936 椸 ; -+,0x12,0x11,0x10,0x13,0x7d,0x11,0x39,0x35,0x51,0x51,0x11,0x11,0x12,0x12,0x15,0x10,0x10,0x10,0x1f,0xf0,0x24,0x05,0xd7,0x5d,0x75,0x55,0x55,0x57,0x54,0x51,0x5f,0x80 -+// 26937 椹 ; -+,0x10,0x10,0x13,0x7c,0x10,0x38,0x34,0x50,0x50,0x17,0x11,0x11,0x11,0x11,0x11,0x10,0x84,0x84,0xff,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x48,0x44,0x82,0x00,0xff,0x00 -+// 26938 椺 ; -+,0x08,0x08,0x09,0x7d,0x0b,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x80,0xfc,0x44,0x44,0x7c,0x10,0x10,0xff,0x10,0x38,0x34,0x54,0x53,0x92,0x10,0x10 -+// 26939 椻 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x24,0x68,0x18,0x66,0xff,0x00 -+// 26940 椼 ; -+,0x11,0x11,0x12,0x7c,0x11,0x39,0x32,0x52,0x56,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x40,0x2f,0x20,0x00,0x10,0x5f,0x54,0x24,0x24,0x24,0xa4,0x44,0x44,0x44,0x14,0x08 -+// 26941 椽 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2b,0x28,0x4b,0x08,0x09,0x0e,0x08,0x08,0x20,0x3c,0x44,0xf8,0x10,0xff,0x40,0xa2,0x54,0x98,0x38,0x54,0x97,0x12,0x50,0x20 -+// 26942 椾 ; -+,0x08,0x08,0x08,0x0b,0x7c,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0x88,0x50,0xff,0x00,0xe2,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x2a,0x2a,0x22,0x66 -+// 26943 椿 ; -+,0x08,0x08,0x0b,0x7c,0x09,0x1c,0x1b,0x28,0x29,0x4e,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x88,0x04,0xff,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 26944 楀 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x0f,0xf0,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x1d,0xe5,0x01,0x01,0x05,0x02 -+// 26945 楁 ; -+,0x08,0x08,0x09,0x7d,0x08,0x1c,0x1a,0x29,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x42,0x7c,0x44,0xa8,0x10,0x2c,0xc7,0xfe,0x84,0x84,0x84,0xfc,0x84 -+// 26946 楂 ; -+,0x10,0x10,0x11,0x10,0x7c,0x10,0x3b,0x34,0x50,0x50,0x10,0x10,0x10,0x10,0x13,0x10,0x20,0x20,0xfe,0x30,0x6c,0xa7,0x22,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 26947 楃 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x39,0x35,0x51,0x51,0x12,0x12,0x12,0x14,0x15,0x18,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x20,0x44,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 26948 楄 ; -+,0x08,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x4a,0x0a,0x0c,0x08,0x08,0x08,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xff,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xad,0x82 -+// 26949 楅 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 26950 楆 ; -+,0x10,0x13,0x10,0x7d,0x11,0x19,0x35,0x30,0x50,0x53,0x10,0x10,0x10,0x10,0x10,0x13,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x20,0x20,0xff,0x44,0xc8,0x30,0x28,0xc6,0x02 -+// 26951 楇 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x19,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0x7e,0x42,0x42,0x7a,0x4a,0x4a,0xff,0x01,0x7d,0x45,0x45,0x7d,0x01,0x05,0x02 -+// 26952 楈 ; -+,0x10,0x11,0x10,0x7c,0x10,0x39,0x34,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xff,0x10,0x9e,0xd0,0x3f,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 26953 楉 ; -+,0x10,0x10,0x13,0x7c,0x10,0x38,0x35,0x50,0x50,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x88,0x88,0xff,0x88,0x20,0x20,0xff,0x40,0x80,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 26954 楊 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x29,0x4e,0x08,0x0b,0x08,0x0b,0x08,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x40,0xfe,0x2a,0x4a,0x92,0x22,0xc2,0x0a,0x04 -+// 26955 楋 ; -+,0x08,0x08,0x0b,0x08,0x7d,0x09,0x1d,0x1b,0x28,0x28,0x49,0x09,0x0a,0x0c,0x08,0x08,0x41,0x41,0xf9,0x41,0xf5,0x55,0x55,0xf5,0x45,0xe5,0x55,0x51,0x41,0x41,0x45,0x42 -+// 26956 楌 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0d,0x08,0x20,0x10,0xff,0x84,0x48,0x50,0xff,0x04,0x18,0x62,0x04,0x19,0xe2,0x0c,0xf0,0x00 -+// 26957 楍 ; -+,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x1d,0x15,0x15,0x15,0x15,0x1d,0x15,0x00,0x80,0x80,0xfe,0xc0,0xa0,0x98,0x8f,0x04,0xdc,0x54,0x54,0x54,0x54,0xdc,0x54,0x00 -+// 26958 楎 ; -+,0x10,0x13,0x12,0x7d,0x10,0x39,0x35,0x51,0x51,0x11,0x10,0x17,0x10,0x10,0x10,0x10,0x00,0xff,0x22,0xfc,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 26959 楏 ; -+,0x10,0x10,0x13,0x10,0x7c,0x13,0x38,0x34,0x53,0x50,0x10,0x11,0x10,0x10,0x13,0x10,0x20,0x20,0xff,0x50,0xa8,0x24,0xfb,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 26960 楐 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x38,0x34,0x50,0x53,0x10,0x10,0x10,0x10,0x11,0x12,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0x50,0x8c,0x03,0x48,0x48,0x88,0x88,0x08,0x08 -+// 26961 楑 ; -+,0x10,0x11,0x10,0x7d,0x10,0x38,0x35,0x51,0x52,0x11,0x10,0x10,0x10,0x10,0x11,0x16,0x20,0xe6,0x58,0x51,0x8e,0x88,0x7c,0x23,0x20,0xfe,0x20,0x50,0x50,0x88,0x07,0x02 -+// 26962 楒 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x4a,0x0a,0x0a,0x08,0x08,0x08,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0x20,0x92,0x91,0x85,0x84,0x7c,0x00 -+// 26963 楓 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x08,0x00,0xfc,0x04,0x7c,0x24,0x24,0xfc,0x24,0x24,0xfc,0x25,0x2d,0xfb,0x0b,0x01,0x00 -+// 26964 楔 ; -+,0x10,0x10,0x13,0x7c,0x13,0x38,0x37,0x50,0x50,0x13,0x10,0x10,0x10,0x10,0x13,0x10,0x80,0x9e,0xea,0x8a,0xea,0x8a,0xea,0x92,0xa4,0xff,0x20,0x50,0x4c,0x87,0x02,0x00 -+// 26965 楕 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x40,0x7e,0x90,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84 -+// 26966 楖 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x08,0x00,0xe0,0x2f,0x29,0xe9,0x29,0x29,0xe9,0x09,0x49,0x6d,0xaa,0x08,0x08,0x08,0x08 -+// 26967 楗 ; -+,0x10,0x13,0x10,0x11,0x7d,0x12,0x3b,0x34,0x50,0x54,0x12,0x11,0x11,0x12,0x14,0x10,0x08,0x88,0xbe,0x0a,0x7f,0x0a,0xbe,0x88,0xbe,0x88,0xbf,0x08,0x88,0x68,0x1f,0x00 -+// 26968 楘 ; -+,0x00,0x3f,0x02,0x0c,0x7f,0x0d,0x14,0x24,0x55,0x08,0x3f,0x01,0x02,0x0c,0x30,0x00,0x00,0x20,0x20,0x3f,0x64,0x54,0x88,0x34,0xc3,0x80,0xfe,0xa0,0x98,0x8f,0x84,0x80 -+// 26969 楙 ; -+,0x10,0x13,0x10,0x7d,0x10,0x3b,0x35,0x51,0x52,0x12,0x14,0x18,0x10,0x10,0x12,0x11,0x08,0xe8,0x48,0xbf,0x88,0xe8,0xd8,0x9c,0x9c,0xaa,0xab,0xca,0x88,0x88,0x88,0x08 -+// 26970 楚 ; -+,0x04,0x04,0x7f,0x0e,0x15,0x24,0x04,0x1f,0x00,0x00,0x08,0x08,0x0c,0x13,0x20,0x00,0x10,0x10,0x7f,0x18,0x34,0xd3,0x10,0xfc,0x88,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 26971 楛 ; -+,0x08,0x08,0x09,0x7c,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0xff,0x48,0x48,0x20,0x20,0xff,0x20,0x20,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 26972 楜 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x08,0x80,0x9e,0x92,0xf2,0x92,0x9e,0x92,0xd2,0x5e,0x52,0x52,0x52,0xd2,0x22,0xca,0x04 -+// 26973 楝 ; -+,0x08,0x08,0x0b,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x20,0x20,0xff,0x20,0xfe,0xaa,0x72,0x22,0xfe,0x60,0xb0,0xac,0x27,0x22,0x20,0x20 -+// 26974 楞 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0xff,0x29,0x29,0xff,0x20,0x10,0xff,0x20,0x20,0x3e,0x42,0x42,0x82,0x0a,0x04 -+// 26975 楟 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x0c,0x1a,0x18,0x29,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x02,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 26976 楠 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x10,0x10,0xff,0x20,0x40,0xff,0x45,0x29,0xfd,0x11,0xfd,0x11,0x11,0x11,0x15,0x02 -+// 26977 楡 ; -+,0x08,0x08,0x08,0x7c,0x0b,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0x30,0x48,0x84,0x7b,0x00,0xea,0x2a,0xea,0x34,0xf4,0x34,0x2a,0x2a,0x6a,0x2a -+// 26978 楢 ; -+,0x10,0x10,0x10,0x7b,0x10,0x10,0x39,0x35,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x84,0x44,0x48,0xff,0x48,0x48,0xfe,0x4a,0x4a,0x8e,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 26979 楣 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xff,0x91,0x91,0xff,0x80,0xff,0xc1,0xff,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00 -+// 26980 楤 ; -+,0x08,0x08,0x08,0x09,0x7d,0x0a,0x1c,0x1b,0x28,0x28,0x48,0x0a,0x0a,0x0c,0x08,0x08,0x80,0x80,0xfe,0x2a,0x6a,0x5a,0x96,0x22,0xca,0x04,0x20,0x92,0x91,0x85,0x7c,0x00 -+// 26981 楥 ; -+,0x08,0x0b,0x09,0x08,0x7e,0x09,0x1c,0x1b,0x28,0x28,0x48,0x08,0x09,0x0a,0x0d,0x08,0x1e,0xe0,0x46,0xa8,0x00,0xfe,0x20,0xff,0x40,0x7e,0xc4,0xa8,0x10,0x6c,0x87,0x02 -+// 26982 楦 ; -+,0x08,0x08,0x09,0x09,0x7c,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x20,0x10,0xff,0x02,0x00,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x00,0x00 -+// 26983 楧 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x08,0x1d,0x1b,0x29,0x2b,0x48,0x08,0x08,0x08,0x0b,0x08,0x48,0x48,0xff,0x48,0x20,0x20,0xfc,0x24,0x24,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 26984 楨 ; -+,0x08,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0x44,0x43,0x81 -+// 26985 楩 ; -+,0x08,0x08,0x08,0x09,0x7d,0x0b,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x80,0xbf,0x88,0x3e,0x2a,0x2a,0x3e,0x2a,0x3e,0x48,0x28,0x10,0x18,0x24,0x47,0x02 -+// 26986 楪 ; -+,0x10,0x11,0x11,0x13,0x7d,0x11,0x39,0x35,0x50,0x53,0x10,0x10,0x11,0x16,0x10,0x10,0x00,0x48,0x48,0xfe,0x48,0x78,0x00,0xfe,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 26987 楫 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1b,0x1c,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x08,0x00,0xfc,0x84,0xfc,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0x9f,0xe4,0x04,0x04,0x04 -+// 26988 楬 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x4b,0x09,0x09,0x09,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xff,0x11,0x31,0x49,0x01,0xfd,0x01,0x05,0x02 -+// 26989 業 ; -+,0x01,0x09,0x05,0x7f,0x04,0x02,0x3f,0x00,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x20,0x24,0x28,0xff,0x20,0x40,0xfc,0x80,0xf8,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82 -+// 26990 楮 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1b,0x1c,0x2a,0x28,0x49,0x0e,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xfa,0x22,0x24,0xff,0x10,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 26991 楯 ; -+,0x10,0x11,0x11,0x11,0x7d,0x19,0x35,0x31,0x51,0x51,0x11,0x12,0x12,0x14,0x18,0x10,0x0f,0xf0,0x00,0x10,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 26992 楰 ; -+,0x08,0x08,0x09,0x7f,0x09,0x09,0x1d,0x1b,0x29,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x20,0x20,0xae,0x22,0x22,0xae,0x22,0x22,0xfe,0x20,0x20,0x50,0x48,0x84,0x07,0x02 -+// 26993 楱 ; -+,0x10,0x13,0x10,0x7d,0x10,0x33,0x38,0x55,0x52,0x10,0x13,0x10,0x10,0x11,0x16,0x10,0x20,0xfe,0x20,0xfc,0x40,0xff,0x88,0x04,0xfb,0x20,0xfe,0x20,0x50,0x88,0x0e,0x04 -+// 26994 楲 ; -+,0x10,0x10,0x10,0x7b,0x12,0x3a,0x36,0x53,0x52,0x12,0x13,0x12,0x14,0x15,0x18,0x10,0x08,0x0c,0x0a,0xff,0x08,0x48,0x4a,0xfb,0x8a,0xaa,0xa4,0x44,0xad,0x13,0x23,0x01 -+// 26995 楳 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x08,0x08,0x09,0x08,0x84,0x84,0xff,0x84,0xfc,0x84,0xfc,0x10,0x10,0xff,0x30,0x58,0x54,0x97,0x12,0x10 -+// 26996 楴 ; -+,0x10,0x10,0x11,0x7c,0x10,0x13,0x3a,0x34,0x51,0x51,0x11,0x11,0x11,0x11,0x10,0x10,0x20,0x10,0xfe,0x84,0x48,0xff,0x22,0x20,0xfc,0x24,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 26997 極 ; -+,0x10,0x11,0x10,0x7e,0x10,0x13,0x3a,0x36,0x52,0x52,0x13,0x10,0x10,0x10,0x13,0x10,0x00,0xfc,0x08,0x10,0x20,0xaf,0xa2,0xb2,0xac,0xa4,0xab,0x31,0xa0,0x40,0xfe,0x00 -+// 26998 楶 ; -+,0x20,0x18,0x02,0x04,0x28,0x11,0x17,0x04,0x07,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x40,0x7e,0xa4,0x30,0x48,0x86,0xfa,0x08,0xf8,0x40,0xff,0x60,0x58,0x47,0x42,0x40 -+// 26999 楷 ; -+,0x11,0x11,0x11,0x11,0x7d,0x11,0x39,0x34,0x51,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x08,0x08,0xef,0x08,0x49,0x89,0x27,0x40,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 27000 楸 ; -+,0x10,0x10,0x13,0x11,0x7d,0x17,0x31,0x39,0x53,0x53,0x15,0x15,0x19,0x11,0x11,0x11,0x08,0x88,0x08,0x08,0x09,0xc9,0x2a,0x1c,0x88,0x48,0x08,0x14,0x14,0x22,0x43,0x82 -+// 27001 楹 ; -+,0x10,0x13,0x10,0x10,0x7c,0x10,0x39,0x35,0x51,0x52,0x14,0x11,0x11,0x11,0x11,0x17,0x00,0xfe,0x84,0x88,0x9e,0x82,0x7a,0x4a,0x32,0x4a,0x84,0xfe,0x52,0x52,0x52,0xff -+// 27002 楺 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1b,0x28,0x29,0x48,0x08,0x08,0x0b,0x08,0x08,0x00,0xfe,0x04,0x18,0xff,0x32,0xd0,0x30,0x10,0xff,0x38,0x54,0x93,0x11,0x10,0x10 -+// 27003 楻 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x09,0x08,0x08,0x0b,0x08,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 27004 楼 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x08,0x0b,0x08,0x10,0x52,0x34,0xff,0x38,0x54,0x93,0x20,0x20,0xff,0x48,0xc8,0x30,0x6c,0x83,0x01 -+// 27005 楽 ; -+,0x00,0x20,0x13,0x0a,0x03,0x0a,0x12,0x63,0x00,0x7f,0x01,0x02,0x0c,0x30,0x00,0x00,0x40,0x82,0xf2,0x14,0xf8,0x14,0x12,0xf2,0x80,0xff,0xc0,0xa0,0x98,0x8e,0x84,0x80 -+// 27006 楾 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x08,0x09,0x0a,0x08,0x08,0x20,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x22,0xe6,0x78,0xa8,0xa4,0x27,0x22,0xa0,0x40 -+// 27007 楿 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0xf0,0x10,0xff,0x10,0x38,0x54,0x93,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 27008 榀 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00,0xef,0x29,0x29,0x29,0x29,0xef,0x29,0x00 -+// 27009 榁 ; -+,0x08,0x08,0x08,0x7d,0x09,0x1c,0x1a,0x28,0x29,0x48,0x08,0x09,0x08,0x08,0x0b,0x08,0x20,0x10,0x10,0xff,0x02,0xfc,0x40,0x84,0xfe,0x22,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 27010 概 ; -+,0x10,0x13,0x12,0x7e,0x13,0x3a,0x36,0x53,0x52,0x12,0x12,0x12,0x13,0x12,0x10,0x10,0x00,0xdf,0x44,0x54,0xd4,0x54,0x5f,0xc4,0x0c,0x8c,0x4c,0xd4,0x55,0x25,0xc3,0x00 -+// 27011 榃 ; -+,0x04,0x04,0x04,0x3f,0x0e,0x0d,0x14,0x64,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x7f,0x1c,0x2a,0x4b,0x88,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 27012 榄 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x08,0x09,0x0e,0x08,0x48,0x48,0x5f,0x68,0x44,0x00,0xfc,0x04,0x24,0x24,0x24,0x34,0x51,0x91,0x0f,0x00 -+// 27013 榅 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x0b,0x08,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 27014 榆 ; -+,0x08,0x08,0x08,0x7c,0x0b,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0x30,0x48,0x84,0x7b,0x00,0xe1,0x29,0xe9,0x29,0xe9,0x29,0x29,0x21,0x25,0x62 -+// 27015 榇 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x20,0x10,0xfe,0x84,0x48,0x50,0xff,0x10,0x10,0xfe,0x10,0x94,0x92,0x12,0x50,0x20 -+// 27016 榈 ; -+,0x09,0x08,0x08,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0x9f,0x01,0x01,0x7d,0x45,0x7d,0x01,0x01,0x7d,0x45,0x45,0x7d,0x01,0x05,0x02 -+// 27017 榉 ; -+,0x10,0x12,0x11,0x7c,0x13,0x38,0x34,0x51,0x56,0x10,0x10,0x13,0x10,0x10,0x10,0x10,0x44,0x46,0x24,0xa8,0xff,0x90,0x88,0x24,0xfb,0x20,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 27018 榊 ; -+,0x10,0x11,0x10,0x10,0x7b,0x10,0x39,0x35,0x53,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x08,0x08,0x88,0x88,0xff,0xa9,0x29,0x3f,0xa9,0x69,0x3f,0x08,0x08,0x08,0x08,0x08 -+// 27019 榋 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x2b,0x48,0x0b,0x08,0x08,0x0b,0x08,0x08,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x00,0x00,0xdf,0x41,0xdf,0x41,0x41,0xdf,0x41,0x00 -+// 27020 榌 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x08,0x09,0x09,0x0a,0x08,0x00,0xf8,0x0a,0x0c,0xa6,0xa5,0xa3,0xf8,0xa9,0xaa,0xa6,0xa5,0x24,0x23,0x23,0x21 -+// 27021 榍 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x08,0x00,0xfe,0x02,0xfe,0x10,0x52,0x34,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 27022 榎 ; -+,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x0b,0xff,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x80,0xfe,0x44,0x28,0x30,0xcc,0x03 -+// 27023 榏 ; -+,0x08,0x09,0x08,0x7e,0x09,0x1c,0x1a,0x29,0x28,0x49,0x09,0x09,0x09,0x09,0x0b,0x08,0x00,0x04,0x88,0x50,0xfe,0x48,0x84,0x02,0x00,0xfc,0x54,0x54,0x54,0x54,0xff,0x00 -+// 27024 榐 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x08,0x00,0xfe,0x02,0xfe,0x48,0x48,0xfe,0x48,0xff,0x62,0x54,0x48,0x44,0x47,0x62,0x40 -+// 27025 榑 ; -+,0x08,0x09,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x24,0x04,0x14,0x08 -+// 27026 榒 ; -+,0x08,0x09,0x08,0x7e,0x09,0x1d,0x1b,0x29,0x28,0x49,0x08,0x08,0x0b,0x08,0x08,0x08,0x00,0xef,0x21,0x21,0xef,0x08,0x08,0xef,0x21,0xa9,0x67,0xa5,0x29,0x21,0xa5,0x42 -+// 27027 榓 ; -+,0x10,0x10,0x10,0x10,0x7a,0x12,0x38,0x35,0x50,0x51,0x11,0x11,0x11,0x11,0x13,0x10,0x44,0x24,0x28,0x88,0x92,0xa1,0xc5,0xfc,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 27028 榔 ; -+,0x09,0x08,0x09,0x7f,0x09,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x80,0xef,0x29,0x2a,0xec,0x2c,0x2a,0xe9,0x09,0x89,0x4d,0xaa,0x28,0x08,0x08 -+// 27029 榕 ; -+,0x10,0x10,0x11,0x7d,0x10,0x38,0x35,0x50,0x50,0x11,0x16,0x10,0x10,0x10,0x10,0x10,0x20,0x10,0xff,0x02,0x48,0x84,0x22,0x20,0x50,0x8c,0xfb,0x88,0x88,0x88,0xf8,0x88 -+// 27030 榖 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x20,0x1e,0x04,0x3f,0x0e,0x15,0x24,0x05,0x04,0x00,0x3c,0xa4,0x24,0x24,0x47,0xc0,0xbe,0x24,0x24,0x14,0x08,0x18,0x67,0x82,0x00 -+// 27031 榗 ; -+,0x08,0x0b,0x08,0x7d,0x08,0x1c,0x1b,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xfe,0x48,0x4a,0xcc,0x48,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 27032 榘 ; -+,0x10,0x10,0x3f,0x24,0x44,0x3f,0x04,0x0a,0x31,0x00,0x7f,0x01,0x02,0x0c,0x70,0x00,0x00,0x7f,0x40,0x7e,0x42,0x7e,0x40,0x40,0x7f,0x80,0xff,0xc0,0xb0,0x8f,0x82,0x80 -+// 27033 榙 ; -+,0x08,0x08,0x0b,0x7e,0x08,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0xff,0x88,0xa8,0x30,0x48,0x84,0x7b,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 27034 榚 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x09,0x09,0x0a,0x08,0x84,0x44,0x48,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x00,0x52,0x29,0x29,0x00 -+// 27035 榛 ; -+,0x10,0x10,0x11,0x10,0x7d,0x10,0x3b,0x34,0x51,0x56,0x11,0x10,0x11,0x16,0x10,0x10,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x88,0x74,0x23,0xfc,0x68,0xa6,0x22,0x20,0x20 -+// 27036 榜 ; -+,0x08,0x08,0x09,0x7e,0x08,0x19,0x1d,0x2a,0x29,0x48,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x10,0xfe,0x48,0x30,0xff,0x22,0x10,0xfe,0x20,0x3c,0x44,0x44,0x84,0x14,0x08 -+// 27037 榝 ; -+,0x10,0x12,0x11,0x10,0x7d,0x12,0x39,0x37,0x51,0x53,0x13,0x15,0x19,0x11,0x11,0x11,0x00,0x5c,0x94,0x94,0x54,0x27,0x00,0xbe,0x22,0x94,0x54,0x08,0x0c,0x13,0x22,0x00 -+// 27038 榞 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x08,0x08,0x4a,0x49,0x89,0x28,0x10 -+// 27039 榟 ; -+,0x08,0x08,0x09,0x7d,0x08,0x0c,0x1a,0x18,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x22,0x10,0xfe,0x44,0x28,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0x10 -+// 27040 榠 ; -+,0x08,0x09,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x08,0x08,0x08,0x09,0x00,0xff,0x02,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x20,0x10,0xff,0x00,0x44,0x83,0x01 -+// 27041 榡 ; -+,0x10,0x11,0x10,0x11,0x7c,0x13,0x38,0x34,0x51,0x50,0x11,0x10,0x11,0x11,0x12,0x10,0x20,0xfe,0x20,0xfe,0x20,0xff,0x20,0x48,0xf0,0x44,0xfe,0x22,0x24,0x22,0xa2,0x40 -+// 27042 榢 ; -+,0x08,0x08,0x09,0x09,0x7c,0x08,0x1c,0x19,0x28,0x28,0x4b,0x08,0x08,0x0b,0x08,0x08,0x20,0x10,0xff,0x02,0xfc,0x20,0x60,0x93,0x2c,0xc8,0x18,0x2c,0xcb,0x08,0x28,0x10 -+// 27043 榣 ; -+,0x10,0x10,0x13,0x7c,0x11,0x38,0x35,0x51,0x52,0x10,0x17,0x10,0x12,0x12,0x13,0x10,0x00,0x1e,0xe0,0x46,0x24,0xa8,0x00,0xfe,0x20,0x20,0xff,0x20,0x22,0x22,0xfe,0x00 -+// 27044 榤 ; -+,0x08,0x08,0x08,0x7d,0x09,0x1e,0x1a,0x28,0x29,0x4b,0x08,0x08,0x09,0x0a,0x08,0x08,0x84,0x84,0xff,0x24,0x34,0xdf,0x44,0x84,0x24,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 27045 榥 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1c,0x1a,0x28,0x2b,0x48,0x08,0x08,0x08,0x09,0x08,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xa4,0x68,0xff,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 27046 榦 ; -+,0x08,0x08,0x7f,0x08,0x08,0x3f,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x09,0x08,0x08,0x08,0x10,0x10,0x30,0x28,0x57,0x92,0x10,0xff,0x10,0x38,0x34,0x54,0x93,0x12,0x10,0x10 -+// 27047 榧 ; -+,0x10,0x13,0x12,0x7e,0x13,0x3a,0x36,0x53,0x52,0x12,0x13,0x12,0x12,0x12,0x13,0x10,0x00,0xff,0x28,0x28,0xef,0x28,0x28,0xef,0x28,0x28,0xef,0x28,0x28,0x28,0xff,0x00 -+// 27048 榨 ; -+,0x08,0x08,0x09,0x7d,0x08,0x1d,0x1a,0x28,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x52,0x48,0x84,0x40,0x7f,0xa0,0x3e,0x20,0x3e,0x20,0x20,0x20,0x20 -+// 27049 榩 ; -+,0x08,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x0b,0x20,0x3c,0x20,0xff,0x22,0xfe,0x20,0x3e,0x10,0xff,0x44,0x28,0x10,0x2c,0xc7,0x02 -+// 27050 榪 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x4a,0x0a,0x0c,0x08,0x08,0x08,0x00,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x01,0xa9,0x55,0x55,0x01,0x05,0x02 -+// 27051 榫 ; -+,0x08,0x08,0x09,0x7d,0x0b,0x1d,0x1b,0x29,0x29,0x49,0x08,0x0b,0x08,0x08,0x08,0x08,0xa0,0x90,0xfe,0x10,0xfc,0x10,0xfc,0x10,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 27052 榬 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x10,0xfc,0x10,0xff,0x00,0xfc,0x84,0x84,0xfc,0x42,0xa4,0x90,0x88,0xa7,0xc2,0x80 -+// 27053 榭 ; -+,0x10,0x11,0x13,0x12,0x7a,0x13,0x3a,0x37,0x52,0x57,0x10,0x10,0x13,0x1c,0x10,0x10,0x82,0x02,0xe2,0x22,0x2f,0xe2,0x22,0xea,0x26,0xe2,0x62,0xa2,0x22,0x22,0xaa,0x44 -+// 27054 榮 ; -+,0x04,0x05,0x16,0x14,0x0a,0x11,0x3f,0x20,0x00,0x1f,0x01,0x02,0x04,0x18,0x60,0x00,0x10,0x14,0x58,0x50,0x18,0x24,0xff,0x82,0x80,0xfe,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 27055 榯 ; -+,0x10,0x10,0x13,0x7e,0x12,0x3a,0x37,0x52,0x52,0x12,0x12,0x13,0x12,0x10,0x10,0x10,0x08,0x08,0xde,0x48,0x48,0x7f,0xc4,0x44,0x7f,0x44,0x64,0xd4,0x44,0x04,0x14,0x08 -+// 27056 榰 ; -+,0x10,0x10,0x11,0x7c,0x13,0x38,0x30,0x53,0x50,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0xfc,0x28,0xff,0x40,0xf8,0x82,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 27057 榱 ; -+,0x10,0x13,0x10,0x7c,0x10,0x3b,0x34,0x50,0x50,0x10,0x10,0x11,0x16,0x10,0x10,0x10,0x20,0xff,0x00,0xfc,0x84,0xff,0x84,0xfc,0x60,0x52,0x94,0x88,0x84,0xa7,0xc2,0x80 -+// 27058 榲 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x0b,0x08,0x00,0xfc,0xa4,0xa4,0xb4,0xcc,0xfc,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 27059 榳 ; -+,0x08,0x08,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x0b,0x08,0x20,0x10,0xff,0x00,0xee,0x24,0x44,0xdf,0x44,0x24,0xa4,0xaf,0x40,0xb0,0x0f,0x00 -+// 27060 榴 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x60,0x9f,0x09,0x49,0x69,0x91,0x23,0x00,0xfe,0x12,0x12,0xfe,0x12,0x12,0xfe,0x02 -+// 27061 榵 ; -+,0x10,0x10,0x13,0x7c,0x10,0x33,0x38,0x54,0x50,0x10,0x10,0x10,0x13,0x10,0x10,0x10,0x88,0x88,0xff,0x88,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04,0x04 -+// 27062 榶 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x39,0x35,0x51,0x51,0x11,0x12,0x12,0x14,0x18,0x10,0x20,0x10,0xff,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x82,0x82,0xfe,0x82 -+// 27063 榷 ; -+,0x10,0x10,0x11,0x7d,0x10,0x30,0x38,0x55,0x52,0x14,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x22,0x30,0x48,0xff,0x88,0x88,0xfe,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 27064 榸 ; -+,0x10,0x11,0x11,0x11,0x79,0x13,0x39,0x35,0x51,0x51,0x11,0x11,0x11,0x16,0x10,0x10,0x00,0x3e,0x2a,0x2a,0x3e,0xaa,0x2a,0x3e,0x08,0x08,0x3e,0x88,0x08,0x08,0x7f,0x00 -+// 27065 榹 ; -+,0x10,0x13,0x12,0x12,0x7e,0x12,0x3a,0x36,0x52,0x52,0x12,0x12,0x15,0x15,0x1a,0x15,0x00,0xfe,0x20,0x3c,0x20,0xfe,0xa4,0xfc,0xa2,0x9e,0x80,0xb8,0x28,0x28,0x49,0x8f -+// 27066 榺 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x25,0x24,0x3c,0x27,0x24,0x24,0x24,0x25,0x54,0x08,0x10,0x92,0x54,0x10,0xfe,0x20,0xff,0x48,0x94,0x13,0xfc,0x38,0x54,0x97,0x12,0x10 -+// 27067 榻 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xef,0x21,0xa5,0x63,0xa5,0x29,0x21,0xa5,0x42 -+// 27068 榼 ; -+,0x08,0x08,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x28,0x49,0x09,0x09,0x09,0x09,0x0b,0x08,0x10,0x10,0xfe,0x10,0xff,0x20,0x44,0xfe,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 27069 榽 ; -+,0x08,0x0b,0x09,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x0b,0x08,0x08,0x09,0x0e,0x08,0x3c,0xc0,0x22,0x94,0x20,0x48,0xf0,0x44,0xfe,0x20,0xff,0x20,0x58,0x87,0x02,0x00 -+// 27070 榾 ; -+,0x08,0x08,0x08,0x7e,0x08,0x19,0x1d,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x84,0xf4,0x94,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 27071 榿 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x00,0xfe,0x82,0xfe,0x84,0x44,0x48,0xff,0x00 -+// 27072 槀 ; -+,0x01,0x00,0x3f,0x04,0x07,0x00,0x3f,0x24,0x27,0x20,0x00,0x7f,0x01,0x02,0x0c,0x30,0x00,0x80,0xff,0x10,0xf0,0x00,0xfe,0x12,0xf2,0x86,0x80,0xff,0xc0,0xb0,0x8e,0x84 -+// 27073 槁 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xff,0x01,0x79,0x49,0x79,0x01,0x05,0x02 -+// 27074 槂 ; -+,0x10,0x13,0x10,0x7c,0x11,0x39,0x35,0x51,0x53,0x15,0x11,0x11,0x11,0x11,0x15,0x12,0x03,0xdc,0x44,0x88,0x12,0x3c,0x08,0x92,0x3f,0x09,0x08,0x2a,0x4a,0x89,0x29,0x10 -+// 27075 槃 ; -+,0x04,0x1f,0x19,0x15,0x3f,0x19,0x15,0x21,0x25,0x42,0x3f,0x01,0x02,0x0c,0x70,0x00,0x00,0x3c,0x24,0x25,0x47,0x3c,0x24,0x18,0x94,0xa2,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 27076 槄 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x0f,0xf0,0x20,0x92,0x54,0x48,0x9e,0x02,0x02,0xde,0x02,0x02,0x02,0xfe,0x02 -+// 27077 槅 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x00,0xfe,0x82,0xfe,0x00,0xff,0x45,0x29,0xff,0x11,0x11,0x11,0x15,0x02 -+// 27078 槆 ; -+,0x08,0x08,0x09,0x7c,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0xff,0x48,0x80,0xfe,0x02,0xfa,0x8a,0xfa,0x8a,0xfa,0x02,0x02,0x0a,0x04 -+// 27079 槇 ; -+,0x08,0x08,0x08,0x08,0x7e,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x08,0x08,0x08,0x09,0x80,0xfe,0x80,0xff,0x00,0x7e,0x4a,0x66,0x52,0x7e,0x00,0xff,0x00,0x84,0x83,0x01 -+// 27080 槈 ; -+,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0xfe,0x00,0xfc,0x00,0xff,0x52,0x4c,0x64,0x43,0x04,0xff,0x44,0x24,0x04,0x14,0x08 -+// 27081 槉 ; -+,0x08,0x08,0x08,0x08,0x7e,0x0a,0x1d,0x1a,0x29,0x2a,0x48,0x09,0x09,0x0a,0x0c,0x08,0x10,0x08,0xff,0x80,0xa0,0xbe,0xa8,0xc8,0x88,0xff,0x88,0x08,0x14,0x14,0x23,0xc2 -+// 27082 槊 ; -+,0x08,0x05,0x1f,0x02,0x0a,0x0f,0x02,0x04,0x08,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x80,0x1e,0xd2,0x1e,0x92,0x9e,0x12,0x2a,0x84,0x80,0xff,0xc0,0xa0,0x98,0x8e,0x84 -+// 27083 構 ; -+,0x08,0x09,0x08,0x7c,0x08,0x19,0x1c,0x2a,0x28,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x48,0xff,0x48,0xfe,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xff,0x82,0x82,0x8a,0x84 -+// 27084 槌 ; -+,0x10,0x12,0x11,0x11,0x7c,0x10,0x38,0x37,0x51,0x51,0x11,0x11,0x11,0x12,0x14,0x10,0x10,0x10,0x20,0x7c,0x44,0x44,0x7c,0x40,0x7e,0x42,0x42,0x7e,0x00,0x80,0x7f,0x00 -+// 27085 槍 ; -+,0x08,0x08,0x08,0x08,0x7d,0x0a,0x1c,0x1a,0x28,0x28,0x49,0x09,0x0a,0x0c,0x08,0x08,0x20,0x20,0x50,0xac,0x13,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x82,0x82,0xfe,0x82 -+// 27086 槎 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1d,0x1a,0x2b,0x28,0x48,0x08,0x09,0x0a,0x08,0x09,0x08,0x84,0x48,0x30,0xfe,0x20,0xfe,0x40,0xff,0x40,0x80,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 27087 槏 ; -+,0x10,0x10,0x13,0x10,0x7d,0x10,0x3b,0x34,0x50,0x51,0x10,0x10,0x11,0x16,0x10,0x10,0x88,0x50,0xff,0x50,0xfc,0x54,0xff,0x54,0x54,0xfc,0x50,0xd8,0x54,0x57,0x52,0x50 -+// 27088 槐 ; -+,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x08,0x20,0x40,0xfe,0x22,0x22,0xfe,0x22,0xfe,0x30,0x34,0x54,0x5a,0x9e,0x11,0x0f,0x00 -+// 27089 槑 ; -+,0x1f,0x11,0x11,0x11,0x1f,0x04,0x04,0x7f,0x0c,0x0e,0x15,0x14,0x25,0x44,0x04,0x04,0x7c,0x44,0x44,0x44,0x7c,0x10,0x10,0x7f,0x10,0x38,0x54,0x92,0x13,0x11,0x10,0x10 -+// 27090 槒 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x40,0x20,0xff,0x20,0x48,0xf0,0x44,0xfe,0x00,0xfe,0x12,0xfe,0x12,0x12,0xfe,0x02 -+// 27091 槓 ; -+,0x10,0x11,0x10,0x13,0x7c,0x11,0x39,0x35,0x51,0x51,0x11,0x11,0x10,0x10,0x11,0x16,0x00,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x84,0x02,0x02 -+// 27092 槔 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1a,0x2b,0x28,0x48,0x0b,0x09,0x08,0x08,0x08,0x08,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x50,0x8c,0x23,0xfc,0x20,0x20,0x20,0x20 -+// 27093 槕 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x4b,0x08,0x08,0x0b,0x08,0x08,0x20,0x20,0x3e,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x70,0xa8,0x27,0x22,0x20 -+// 27094 槖 ; -+,0x00,0x1f,0x00,0x3f,0x20,0x0f,0x02,0x07,0x0a,0x33,0x00,0x1f,0x00,0x03,0x1c,0x00,0x80,0xfe,0x80,0xff,0x02,0xfc,0x00,0xf8,0x08,0xf8,0x40,0xff,0xe0,0x58,0x47,0x42 -+// 27095 槗 ; -+,0x08,0x08,0x09,0x7e,0x08,0x19,0x1c,0x2a,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0x20,0xff,0x40,0xfc,0x44,0x7c,0x00,0xff,0x01,0x79,0x49,0x79,0x01,0x05,0x02 -+// 27096 様 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1b,0x28,0x28,0x49,0x08,0x08,0x08,0x09,0x0a,0x84,0x48,0xff,0x20,0xfc,0x20,0x20,0xff,0x20,0x22,0xf4,0x68,0xa8,0xa4,0x67,0x22 -+// 27097 槙 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x0b,0x08,0x20,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0x84,0x06,0x04 -+// 27098 槚 ; -+,0x10,0x13,0x10,0x11,0x7d,0x11,0x39,0x34,0x51,0x51,0x11,0x11,0x11,0x10,0x11,0x16,0x00,0xff,0x50,0xfe,0x52,0x52,0xfe,0x00,0xfc,0x04,0x24,0x24,0x34,0x48,0x86,0x02 -+// 27099 槛 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x39,0x34,0x50,0x51,0x11,0x11,0x11,0x11,0x17,0x10,0x50,0x50,0x5f,0x50,0x60,0x48,0x44,0x44,0x00,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 27100 槜 ; -+,0x08,0x08,0x08,0x7d,0x09,0x1e,0x18,0x28,0x28,0x48,0x09,0x08,0x08,0x09,0x09,0x0a,0x90,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfc,0x88,0x9e,0x02,0x0a,0x04 -+// 27101 槝 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x48,0x0a,0x0a,0x0b,0x08,0x08,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfe,0x42,0x52,0x52,0xf2,0x0a,0x04 -+// 27102 槞 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1d,0x1a,0x29,0x29,0x49,0x09,0x09,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x44,0x28,0xff,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x21,0x21,0x1f,0x00 -+// 27103 槟 ; -+,0x08,0x08,0x09,0x09,0x7c,0x08,0x1c,0x1a,0x28,0x28,0x4b,0x08,0x08,0x09,0x0e,0x08,0x20,0x10,0xff,0x02,0x18,0xe0,0x80,0xfe,0x88,0x88,0xff,0x00,0x88,0x06,0x02,0x00 -+// 27104 槠 ; -+,0x08,0x0a,0x09,0x08,0x7e,0x08,0x1f,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x10,0x10,0x7f,0x12,0x14,0xff,0x08,0x10,0x3e,0x62,0xa2,0x3e,0x22,0xa2,0x3e,0x22 -+// 27105 槡 ; -+,0x08,0x08,0x08,0x7e,0x0b,0x1a,0x1d,0x2a,0x2c,0x4b,0x08,0x08,0x08,0x0b,0x08,0x08,0xfc,0x48,0x30,0xcc,0xde,0x52,0x8c,0xaa,0x31,0xff,0x20,0x70,0xa8,0x27,0x22,0x20 -+// 27106 槢 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xef,0x21,0xa5,0x63,0xa5,0x21,0x10,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 27107 槣 ; -+,0x08,0x09,0x09,0x7e,0x09,0x1c,0x1a,0x19,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0xff,0x02,0x20,0xfe,0x30,0x48,0xff,0x04,0xf4,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 27108 槤 ; -+,0x10,0x14,0x12,0x12,0x7c,0x10,0x38,0x36,0x52,0x52,0x13,0x12,0x12,0x13,0x14,0x10,0x10,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x90,0x7f,0x00 -+// 27109 槥 ; -+,0x10,0x10,0x13,0x7c,0x13,0x30,0x3b,0x54,0x50,0x11,0x10,0x11,0x10,0x10,0x11,0x10,0x88,0x88,0xdf,0x88,0xdf,0x88,0xdf,0x88,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 27110 槦 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x20,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x96 -+// 27111 槧 ; -+,0x04,0x7f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x00,0x3f,0x01,0x02,0x0c,0x70,0x00,0x06,0xb8,0x20,0x3f,0x28,0x28,0x48,0x48,0x88,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 27112 槨 ; -+,0x10,0x10,0x13,0x7c,0x11,0x39,0x35,0x50,0x53,0x10,0x10,0x10,0x17,0x10,0x12,0x11,0x80,0x4f,0xf9,0x0a,0xea,0x2c,0xec,0x0a,0xe9,0x49,0x8d,0xea,0x88,0x88,0x88,0x08 -+// 27113 槩 ; -+,0x04,0x1f,0x15,0x13,0x1f,0x10,0x1f,0x10,0x1e,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x7f,0x08,0x48,0x7f,0x18,0x28,0x29,0x49,0x87,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 27114 槪 ; -+,0x10,0x11,0x13,0x12,0x7f,0x12,0x3b,0x34,0x52,0x52,0x13,0x12,0x13,0x10,0x10,0x10,0x80,0x1f,0xc4,0x54,0xd4,0x54,0xdf,0x04,0x04,0x4c,0x8c,0x54,0xd5,0x25,0xc3,0x00 -+// 27115 槫 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x28,0x4b,0x08,0x0b,0x08,0x08,0x08,0x08,0x20,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x21,0xff,0x04,0xff,0x44,0x24,0x04,0x0c -+// 27116 槬 ; -+,0x11,0x11,0x17,0x79,0x12,0x37,0x38,0x57,0x52,0x12,0x13,0x10,0x10,0x10,0x12,0x11,0x03,0x3e,0xea,0xaa,0x6a,0xaa,0x2a,0xea,0x2a,0x2a,0xaa,0xaa,0xad,0xad,0xd1,0x00 -+// 27117 槭 ; -+,0x10,0x10,0x10,0x7b,0x12,0x3a,0x36,0x52,0x53,0x12,0x12,0x13,0x14,0x14,0x19,0x10,0x08,0x0c,0x0a,0xff,0x48,0x48,0x7a,0x4b,0xfa,0x4a,0xe4,0x54,0x4d,0x53,0x43,0x81 -+// 27118 槮 ; -+,0x10,0x10,0x11,0x10,0x7c,0x11,0x3b,0x34,0x50,0x57,0x10,0x13,0x10,0x13,0x10,0x13,0x20,0x48,0xfc,0x00,0x84,0x4a,0xef,0x30,0xcc,0x23,0xc8,0x32,0xc4,0x18,0x60,0x80 -+// 27119 槯 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x92,0x92,0x92,0xfe,0x50,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 27120 槰 ; -+,0x10,0x10,0x10,0x12,0x7d,0x11,0x30,0x3b,0x55,0x51,0x11,0x11,0x11,0x12,0x14,0x10,0x20,0x20,0x3e,0x64,0x58,0x24,0xd3,0x7c,0x10,0x7c,0x10,0xfe,0x10,0x90,0x7f,0x00 -+// 27121 槱 ; -+,0x08,0x0b,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x08,0x0a,0x0a,0x0a,0x00,0x00,0xff,0x50,0xfe,0x52,0x52,0x8e,0x02,0xfe,0x02,0xfe,0x00,0x92,0x49,0x49,0x00 -+// 27122 槲 ; -+,0x11,0x11,0x11,0x7a,0x13,0x3a,0x36,0x53,0x52,0x12,0x13,0x12,0x12,0x14,0x14,0x18,0x02,0x02,0xe2,0x4a,0xe6,0xa2,0xb2,0xea,0xa2,0xbf,0xe2,0xa2,0xa2,0xa2,0xa2,0x62 -+// 27123 槳 ; -+,0x04,0x24,0x24,0x3c,0x04,0x3d,0x24,0x24,0x44,0x00,0x7f,0x01,0x02,0x0c,0x70,0x00,0x20,0x7e,0xa4,0x18,0x68,0xff,0x48,0x28,0x98,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 27124 槴 ; -+,0x08,0x09,0x09,0x7f,0x09,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x20,0xfe,0x02,0xfe,0x00,0x7c,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x80,0x81,0x7f,0x00 -+// 27125 槵 ; -+,0x08,0x08,0x09,0x09,0x7f,0x08,0x1d,0x1b,0x29,0x28,0x48,0x0a,0x0a,0x0c,0x08,0x08,0x20,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x22,0xfe,0x20,0x00,0xa2,0x91,0x85,0x7c,0x00 -+// 27126 槶 ; -+,0x08,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x19,0x15,0xff,0x11,0x15,0xf5,0xa9,0xe9,0x2d,0xd5,0x25,0x01,0xff,0x01 -+// 27127 槷 ; -+,0x04,0x3f,0x04,0x7f,0x12,0x25,0x5f,0x04,0x3f,0x00,0x3f,0x00,0x03,0x0c,0x70,0x00,0x10,0x10,0x7c,0x94,0x14,0xa4,0x35,0x55,0x83,0x40,0xff,0xe0,0x50,0x4c,0x47,0x42 -+// 27128 槸 ; -+,0x11,0x11,0x13,0x11,0x7d,0x17,0x3a,0x37,0x55,0x5b,0x11,0x11,0x11,0x16,0x10,0x10,0x08,0x08,0xc8,0x3e,0x0a,0xca,0x8a,0x6a,0x0a,0x8a,0x12,0x13,0xa3,0x41,0x81,0x00 -+// 27129 槹 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x10,0x96,0x78,0x54,0x92,0xff,0x10,0x10,0x10,0x10 -+// 27130 槺 ; -+,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x20,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x54,0x38,0x54,0x93,0x51,0x20 -+// 27131 槻 ; -+,0x10,0x10,0x10,0x13,0x7c,0x10,0x38,0x37,0x50,0x50,0x10,0x11,0x11,0x12,0x14,0x10,0x80,0x9e,0x92,0xde,0x92,0x92,0x9e,0xf2,0x92,0x9e,0xcc,0x4c,0x15,0x25,0xc3,0x00 -+// 27132 槼 ; -+,0x08,0x08,0x3e,0x08,0x3e,0x08,0x14,0x12,0x21,0x00,0x7f,0x01,0x02,0x0c,0x30,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfd,0x51,0x8f,0x80,0xff,0xc0,0xb0,0x8e,0x84,0x80 -+// 27133 槽 ; -+,0x08,0x09,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0xff,0x28,0xff,0x29,0xff,0x29,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 27134 槾 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1b,0x19,0x28,0x29,0x48,0x08,0x08,0x08,0x0b,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x52,0xfe,0x00,0xfc,0x88,0x50,0x30,0xc8,0x06 -+// 27135 槿 ; -+,0x08,0x08,0x0b,0x08,0x7e,0x08,0x1d,0x1b,0x29,0x28,0x49,0x08,0x09,0x08,0x0b,0x08,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 27136 樀 ; -+,0x08,0x08,0x09,0x08,0x7e,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x10,0xff,0x44,0x28,0xff,0x11,0xff,0x11,0x7d,0x45,0x45,0x7d,0x01,0x05,0x02 -+// 27137 樁 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1b,0x1c,0x2a,0x29,0x4f,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0xfe,0x20,0xfe,0x20,0xff,0x48,0x84,0x43,0x9c,0x04,0xdc,0x04,0x04,0xfc,0x04 -+// 27138 樂 ; -+,0x08,0x08,0x11,0x25,0x39,0x15,0x3d,0x04,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x42,0x82,0xe4,0x29,0xee,0x25,0xef,0x81,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 27139 樃 ; -+,0x09,0x08,0x09,0x3f,0x09,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x08,0x00,0x8f,0xe9,0x29,0xe9,0x2f,0x29,0xe9,0x0f,0x09,0x49,0x69,0xb1,0x11,0x25,0x42 -+// 27140 樄 ; -+,0x10,0x13,0x12,0x12,0x7e,0x13,0x3b,0x36,0x52,0x52,0x13,0x12,0x12,0x12,0x12,0x12,0x08,0xc8,0x7f,0x88,0xbe,0x2a,0x3e,0xaa,0xbe,0x88,0x98,0x1c,0x2b,0xca,0x08,0x08 -+// 27141 樅 ; -+,0x10,0x10,0x11,0x11,0x7a,0x10,0x38,0x35,0x53,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x80,0x92,0x12,0x12,0x12,0xad,0xc9,0x00,0x08,0x28,0x2f,0x28,0x28,0x58,0x8f,0x00 -+// 27142 樆 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x39,0x35,0x50,0x53,0x12,0x12,0x12,0x12,0x12,0x12,0x40,0x20,0xff,0x00,0x54,0x24,0x54,0xfc,0x20,0xfe,0x22,0x52,0xfa,0x0a,0x02,0x06 -+// 27143 樇 ; -+,0x08,0x08,0x08,0x7d,0x09,0x1f,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x90,0x9f,0xa2,0x34,0x4c,0x33,0x40,0x5e,0x52,0x5e,0x52,0x5e,0x12,0x12,0x12,0x16 -+// 27144 樈 ; -+,0x00,0x08,0x09,0x08,0x7e,0x0b,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x20,0x10,0xff,0x84,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x50,0x51,0x91,0x0f -+// 27145 樉 ; -+,0x10,0x10,0x13,0x10,0x7a,0x11,0x3a,0x34,0x52,0x51,0x12,0x10,0x10,0x10,0x10,0x13,0x20,0x20,0xff,0x20,0xaa,0x24,0xaa,0x20,0xaa,0x24,0xaa,0x20,0x50,0x48,0x87,0x02 -+// 27146 樊 ; -+,0x08,0x0a,0x09,0x3d,0x08,0x1d,0x28,0x49,0x08,0x7f,0x00,0x01,0x02,0x0c,0x30,0x00,0x04,0x44,0x84,0x5f,0x04,0x4e,0x95,0x44,0x84,0xff,0x80,0x40,0x20,0x18,0x0e,0x04 -+// 27147 樋 ; -+,0x10,0x12,0x11,0x7d,0x10,0x30,0x3b,0x55,0x51,0x11,0x11,0x11,0x11,0x12,0x14,0x10,0x7e,0x04,0x18,0x08,0x7e,0x52,0x7e,0x52,0x7e,0x52,0x52,0x52,0x56,0x80,0x7f,0x00 -+// 27148 樌 ; -+,0x08,0x08,0x08,0x7d,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x92,0xff,0x92,0xfe,0x00,0xfe,0x92,0xca,0xa6,0x92,0xfe,0x44,0x42,0x82 -+// 27149 樍 ; -+,0x10,0x11,0x10,0x11,0x7c,0x13,0x38,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x10,0x11,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x84,0x02 -+// 27150 樎 ; -+,0x08,0x08,0x09,0x09,0x7c,0x08,0x1c,0x1a,0x29,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x02,0x40,0x7f,0x88,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2 -+// 27151 樏 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x44,0xf8,0x22,0xff,0x10,0x12,0x11,0x51,0x20 -+// 27152 樐 ; -+,0x08,0x08,0x08,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x20,0x3f,0x20,0xfe,0x22,0x86,0x4a,0x32,0x96,0x2a,0x46,0xa2,0x12,0xfe,0x02 -+// 27153 樑 ; -+,0x12,0x11,0x14,0x12,0x7c,0x11,0x3a,0x32,0x50,0x57,0x10,0x10,0x11,0x16,0x10,0x10,0x00,0x7c,0x14,0x94,0xa6,0x25,0x54,0x88,0x20,0xfe,0x60,0xb0,0x28,0x2e,0x24,0x20 -+// 27154 樒 ; -+,0x08,0x08,0x09,0x7d,0x08,0x1d,0x1b,0x28,0x28,0x4b,0x08,0x09,0x09,0x09,0x09,0x08,0x20,0x10,0xff,0x02,0x14,0x4a,0x51,0x65,0xfc,0x00,0x10,0x12,0x12,0x12,0xfe,0x00 -+// 27155 樓 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x29,0x29,0x49,0x08,0x0b,0x08,0x08,0x08,0x09,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xff,0x11,0xff,0x20,0xff,0x48,0xc8,0x30,0xef -+// 27156 樔 ; -+,0x08,0x08,0x09,0x7e,0x09,0x0d,0x1b,0x19,0x29,0x28,0x4b,0x08,0x08,0x0b,0x08,0x08,0xa4,0xa4,0x48,0xa4,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x70,0xac,0x27,0x22,0x20 -+// 27157 樕 ; -+,0x10,0x10,0x10,0x7b,0x10,0x3b,0x36,0x52,0x53,0x10,0x11,0x11,0x12,0x14,0x10,0x10,0x88,0x88,0x88,0xef,0x91,0xf2,0xa4,0xa4,0xe4,0x84,0xc4,0xaa,0xaa,0x93,0xa2,0x80 -+// 27158 樖 ; -+,0x00,0x01,0x06,0x3b,0x00,0x07,0x04,0x07,0x08,0x3e,0x1c,0x2a,0x28,0x48,0x08,0x08,0x80,0x60,0x18,0xf7,0x00,0xf8,0x08,0xf8,0x00,0xff,0x04,0xf4,0x94,0xf4,0x04,0x0c -+// 27159 樗 ; -+,0x08,0x08,0x09,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x08,0xfe,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0xfe,0x00,0xff,0x20,0x3e,0x02,0x0a,0x04 -+// 27160 樘 ; -+,0x08,0x08,0x08,0x09,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x10,0x92,0x54,0xff,0x02,0x00,0x7c,0x44,0x44,0x7c,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 27161 標 ; -+,0x08,0x0b,0x08,0x09,0x7d,0x09,0x1d,0x1a,0x29,0x28,0x4b,0x08,0x08,0x09,0x0a,0x08,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x10,0x94,0x13,0x51,0x20 -+// 27162 樚 ; -+,0x08,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x20,0x10,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0x6f,0x48,0x49,0x69,0x47,0x00 -+// 27163 樛 ; -+,0x10,0x13,0x11,0x7c,0x11,0x3a,0x34,0x50,0x50,0x17,0x11,0x10,0x13,0x10,0x17,0x00,0x00,0xde,0x4a,0xc6,0x4a,0x52,0x42,0x20,0xd0,0x4c,0x93,0x64,0x98,0x60,0x80,0x00 -+// 27164 樜 ; -+,0x10,0x10,0x11,0x11,0x7d,0x11,0x39,0x35,0x51,0x51,0x11,0x11,0x12,0x12,0x15,0x10,0x20,0x10,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x3c,0x00,0x00,0xaa,0x95,0x15,0x00 -+// 27165 樝 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x09,0x0a,0x0c,0x08,0x10,0x1e,0x10,0xff,0x92,0xfe,0x91,0x8f,0x80,0xfe,0xc2,0x7e,0x42,0x7e,0x42,0xff -+// 27166 樞 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x00,0x3e,0x22,0x3e,0x00,0x00,0x77,0x55,0x55,0x55,0x77,0x00,0xff,0x00 -+// 27167 樟 ; -+,0x08,0x09,0x08,0x7e,0x09,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x08,0x08,0x08,0x20,0xff,0x44,0x28,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 27168 樠 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x44,0x44,0xff,0x44,0x44,0x7c,0x10,0xff,0x11,0x99,0x55,0xbb,0x11,0x11,0x15,0x12 -+// 27169 模 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x39,0x35,0x51,0x50,0x13,0x10,0x10,0x10,0x10,0x13,0x48,0x48,0xfe,0x48,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 27170 樢 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x0a,0x0a,0x08,0x08,0x08,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0xa9,0x55,0x01,0x05,0x02 -+// 27171 樣 ; -+,0x08,0x08,0x09,0x7e,0x09,0x1c,0x1b,0x28,0x28,0x48,0x0b,0x08,0x09,0x0e,0x08,0x08,0x88,0x50,0xfe,0x20,0xfc,0x20,0xff,0x20,0xe0,0x2c,0xb0,0xa8,0x24,0x27,0xa2,0x40 -+// 27172 樤 ; -+,0x11,0x11,0x11,0x12,0x7e,0x16,0x3a,0x36,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x1f,0x22,0x54,0x08,0x94,0xe3,0x88,0xbf,0x88,0xaa,0xa9,0x49,0x28,0x10 -+// 27173 樥 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2b,0x29,0x48,0x09,0x08,0x0b,0x08,0x08,0x88,0xff,0x88,0x40,0xfc,0x48,0x30,0xcc,0x23,0xfe,0x20,0xfc,0x20,0xfe,0x20,0x20 -+// 27174 樦 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x88,0x88,0xff,0x8c,0x52,0x20,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 27175 樧 ; -+,0x10,0x14,0x12,0x7d,0x12,0x39,0x35,0x51,0x57,0x11,0x15,0x15,0x19,0x11,0x11,0x11,0x00,0x5c,0x94,0x14,0x94,0x67,0x80,0x7e,0xd2,0x14,0x94,0x48,0x08,0x34,0xc3,0x00 -+// 27176 樨 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x08,0x00,0xfe,0x02,0xfe,0x54,0x38,0x56,0x00,0x50,0x7e,0x90,0xff,0x10,0x10,0x10,0x10 -+// 27177 権 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0xff,0xa0,0x20,0xff,0x50,0x48,0xff,0x88,0xff,0x88,0xff,0x88,0xff,0x80 -+// 27178 横 ; -+,0x10,0x10,0x11,0x10,0x7c,0x13,0x38,0x34,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x13,0x48,0x48,0xfe,0x48,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x44,0x83,0x01 -+// 27179 樫 ; -+,0x08,0x09,0x09,0x7d,0x09,0x19,0x1d,0x2b,0x29,0x48,0x08,0x09,0x08,0x08,0x0b,0x08,0x00,0xef,0x49,0xe9,0x2a,0xe6,0x44,0x4a,0xe1,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 27180 樬 ; -+,0x08,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x48,0x09,0x09,0x0a,0x08,0x08,0x20,0x40,0xfe,0x42,0x7a,0xaa,0x12,0x2a,0x42,0xfe,0x10,0x52,0x41,0x45,0x3c,0x00 -+// 27181 樭 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x2b,0x28,0x48,0x0b,0x08,0x08,0x0b,0x08,0x84,0x84,0xfe,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0xa4,0x7b,0x20,0x20,0xff,0x00 -+// 27182 樮 ; -+,0x09,0x08,0x08,0x09,0x7d,0x09,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0xff,0x28,0x28,0xff,0x29,0x29,0xff,0x10,0x92,0x56,0x58,0x10,0x28,0xc4,0x07,0x02 -+// 27183 樯 ; -+,0x08,0x08,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xfe,0x10,0x54,0x38,0xff,0x00,0xfe,0x82,0xba,0xaa,0xba,0x82,0xfe,0x82 -+// 27184 樰 ; -+,0x08,0x08,0x08,0x7d,0x09,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0xff,0x12,0xd6,0x10,0xd6,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 27185 樱 ; -+,0x10,0x13,0x12,0x12,0x7a,0x12,0x38,0x35,0x52,0x50,0x17,0x10,0x11,0x10,0x11,0x16,0x00,0xff,0xb1,0xb5,0xb5,0xb5,0xc4,0x2a,0x51,0x40,0xff,0x88,0x90,0x70,0x8c,0x04 -+// 27186 樲 ; -+,0x08,0x09,0x08,0x7d,0x08,0x1d,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x09,0x0a,0xff,0x08,0xe8,0x08,0xe8,0x08,0xe8,0x28,0xe8,0x24,0xe5,0x25,0xe3,0xc3,0x21 -+// 27187 樳 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x19,0x28,0x28,0x4b,0x0b,0x08,0x08,0x08,0x08,0x08,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xef,0x89,0xef,0x04,0xff,0x44,0x24,0x04,0x14,0x08 -+// 27188 樴 ; -+,0x09,0x08,0x0b,0x7d,0x09,0x1f,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x00,0x10,0x90,0xf4,0x52,0x50,0xff,0x10,0xf2,0x2a,0x2a,0xec,0x24,0x2d,0xf3,0x21,0x00 -+// 27189 樵 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x09,0x09,0x0a,0x08,0x50,0x48,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x00,0x52,0x29,0x29,0x00 -+// 27190 樶 ; -+,0x11,0x11,0x11,0x7d,0x11,0x10,0x3b,0x35,0x51,0x51,0x11,0x11,0x11,0x16,0x10,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x40,0xde,0x52,0xca,0x64,0xc4,0x4b,0x52,0x40 -+// 27191 樷 ; -+,0x04,0x04,0x3f,0x0e,0x35,0x04,0x3f,0x09,0x0f,0x09,0x0f,0x09,0x0f,0x39,0x01,0x01,0x08,0x08,0x7e,0x1c,0x2a,0xc8,0xff,0x00,0x7e,0x44,0x24,0x18,0x98,0x27,0xc2,0x00 -+// 27192 樸 ; -+,0x08,0x09,0x08,0x7d,0x08,0x1c,0x1b,0x28,0x29,0x48,0x0b,0x08,0x08,0x08,0x08,0x09,0x50,0x54,0xd8,0xfe,0x88,0x50,0xfe,0x20,0xfc,0x20,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 27193 樹 ; -+,0x10,0x10,0x13,0x7c,0x13,0x10,0x39,0x35,0x51,0x51,0x12,0x11,0x10,0x17,0x10,0x10,0x84,0x84,0xe4,0x84,0xef,0x04,0xd4,0x4c,0x44,0xc4,0x24,0x44,0xe4,0x04,0x14,0x08 -+// 27194 樺 ; -+,0x08,0x09,0x08,0x08,0x7d,0x08,0x1d,0x1a,0x28,0x29,0x48,0x0b,0x08,0x08,0x08,0x08,0x44,0xff,0x44,0x00,0xff,0x94,0xff,0x94,0x94,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 27195 樻 ; -+,0x10,0x11,0x11,0x11,0x7c,0x17,0x38,0x35,0x51,0x51,0x11,0x11,0x11,0x10,0x10,0x11,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x24,0x94,0x4c,0x24,0xfc,0x50,0x8c,0x04 -+// 27196 樼 ; -+,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x0a,0x0a,0x0b,0x0c,0x0d,0x08,0xfe,0x02,0xfe,0x00,0x7e,0x04,0x7f,0x08,0x18,0xef,0x42,0x64,0xdf,0x44,0x54,0x88 -+// 27197 樽 ; -+,0x08,0x08,0x0b,0x7e,0x09,0x1d,0x1b,0x29,0x29,0x49,0x08,0x0b,0x08,0x08,0x08,0x08,0x88,0x50,0xff,0x50,0xfe,0x52,0x8e,0xfe,0x02,0xfe,0x08,0xff,0x88,0x88,0x28,0x10 -+// 27198 樾 ; -+,0x11,0x11,0x11,0x7b,0x11,0x37,0x39,0x55,0x51,0x15,0x15,0x15,0x15,0x17,0x18,0x10,0x08,0x0c,0x0a,0xc8,0x3f,0xe8,0x29,0x26,0xe4,0x2d,0x23,0x33,0x21,0x00,0xff,0x00 -+// 27199 樿 ; -+,0x08,0x09,0x09,0x09,0x7c,0x09,0x1d,0x1b,0x29,0x29,0x48,0x0b,0x08,0x08,0x08,0x08,0x00,0xde,0x52,0xde,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 27200 橀 ; -+,0x10,0x10,0x13,0x7c,0x10,0x39,0x34,0x50,0x51,0x12,0x11,0x11,0x11,0x11,0x17,0x10,0x20,0x10,0xff,0x40,0x82,0xff,0xa4,0xa5,0x25,0x23,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 27201 橁 ; -+,0x08,0x08,0x08,0x7d,0x09,0x1d,0x1b,0x2a,0x2c,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0xef,0x54,0x22,0xfe,0x02,0xf2,0x92,0xf2,0x92,0x92,0xf2,0x02,0x0a,0x04 -+// 27202 橂 ; -+,0x08,0x08,0x0b,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x48,0x0b,0x08,0x08,0x0b,0x08,0x84,0x48,0xff,0x28,0xfe,0x4a,0x8e,0xfe,0x02,0xfe,0x20,0xff,0x30,0xc8,0x07,0x02 -+// 27203 橃 ; -+,0x10,0x11,0x11,0x7c,0x10,0x39,0x37,0x50,0x53,0x12,0x13,0x10,0x10,0x10,0x12,0x11,0x20,0xe8,0x52,0xcc,0x84,0x03,0xdc,0x54,0xe7,0x00,0xbe,0x94,0x88,0x94,0xa6,0x42 -+// 27204 橄 ; -+,0x10,0x13,0x10,0x10,0x7b,0x11,0x39,0x35,0x51,0x51,0x11,0x11,0x16,0x10,0x10,0x10,0x08,0xc8,0x88,0x88,0xef,0x52,0xd2,0x6a,0xca,0x4a,0x64,0xc4,0x46,0x4a,0x53,0x62 -+// 27205 橅 ; -+,0x10,0x10,0x11,0x11,0x7b,0x11,0x3b,0x35,0x51,0x51,0x17,0x10,0x12,0x12,0x14,0x10,0x80,0x80,0x00,0xfe,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x00,0xa4,0x52,0x52,0x00 -+// 27206 橆 ; -+,0x04,0x0f,0x39,0x09,0x3f,0x09,0x7f,0x04,0x04,0x3f,0x0e,0x15,0x24,0x45,0x04,0x04,0x00,0xfe,0x28,0x28,0xff,0x28,0xff,0x10,0x10,0x7e,0x38,0x54,0x97,0x12,0x10,0x10 -+// 27207 橇 ; -+,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x2b,0x49,0x0f,0x09,0x0f,0x09,0x09,0x09,0xfc,0x20,0xfc,0x20,0xfe,0x21,0x1f,0x00,0xde,0x08,0xde,0x08,0xff,0x08,0x89,0x07 -+// 27208 橈 ; -+,0x08,0x08,0x08,0x7e,0x09,0x18,0x1d,0x2a,0x29,0x48,0x09,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0xfc,0x20,0xfe,0x88,0xde,0x88,0xdf,0x00,0xfe,0x50,0x51,0x91,0x0f,0x00 -+// 27209 橉 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1d,0x1a,0x29,0x29,0x4a,0x0d,0x08,0x09,0x0e,0x08,0x10,0x92,0x54,0xff,0x30,0x58,0x97,0x12,0x04,0xff,0x54,0xa4,0xbf,0x04,0x04,0x04 -+// 27210 橊 ; -+,0x08,0x09,0x08,0x7d,0x09,0x19,0x1c,0x2a,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x28,0xef,0x29,0xef,0x28,0x28,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 27211 橋 ; -+,0x08,0x09,0x08,0x7d,0x08,0x1c,0x1b,0x2a,0x28,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x1e,0xe0,0x20,0xff,0x48,0xfc,0x4b,0x78,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x06 -+// 27212 橌 ; -+,0x10,0x13,0x12,0x7f,0x12,0x3b,0x36,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0xcf,0x49,0xcf,0x49,0xcf,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0x69,0x95,0x02 -+// 27213 橍 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x7d,0x11,0x7d,0x11,0x11,0x7d,0x01,0x05,0x02 -+// 27214 橎 ; -+,0x10,0x11,0x10,0x10,0x7d,0x10,0x38,0x37,0x51,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x1e,0xe0,0xa4,0x68,0xff,0x70,0xac,0x23,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 27215 橏 ; -+,0x10,0x10,0x11,0x7c,0x10,0x38,0x35,0x50,0x50,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x84,0x48,0xfe,0x20,0xfc,0x20,0xfe,0xa4,0x68,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 27216 橐 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x3f,0x20,0x0f,0x04,0x0f,0x34,0x07,0x00,0x3f,0x01,0x0e,0x80,0xfe,0x80,0xf8,0x88,0xff,0x02,0xf8,0x00,0xf8,0x08,0xf8,0x80,0xfe,0xe0,0x9c -+// 27217 橑 ; -+,0x10,0x10,0x13,0x11,0x7c,0x11,0x3b,0x35,0x51,0x51,0x11,0x10,0x11,0x11,0x12,0x10,0x20,0x20,0xfe,0x54,0x88,0x04,0xff,0x04,0xfc,0x04,0xfc,0x20,0x24,0x22,0xa2,0x40 -+// 27218 橒 ; -+,0x08,0x08,0x08,0x7d,0x09,0x18,0x1c,0x2a,0x28,0x48,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0xff,0x12,0xd6,0x10,0xd6,0x10,0xfe,0x00,0xff,0x20,0x44,0xfe,0x02 -+// 27219 橓 ; -+,0x10,0x13,0x11,0x7c,0x10,0x33,0x3a,0x55,0x51,0x12,0x13,0x14,0x10,0x11,0x16,0x10,0x1e,0xe0,0x42,0xa4,0x08,0xff,0x01,0x04,0xdf,0x54,0x54,0x9f,0x84,0x04,0x04,0x04 -+// 27220 橔 ; -+,0x11,0x10,0x17,0x78,0x13,0x12,0x3b,0x34,0x53,0x50,0x10,0x17,0x10,0x12,0x11,0x00,0x08,0x88,0xe8,0x08,0xdf,0x52,0xd2,0x32,0xd4,0x54,0xe8,0x88,0x94,0xa7,0x42,0x00 -+// 27221 橕 ; -+,0x08,0x08,0x08,0x09,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x10,0x92,0x54,0xff,0x02,0x7c,0x44,0x7c,0x00,0xfe,0x48,0xff,0x28,0x48,0xa8,0x10 -+// 27222 橖 ; -+,0x08,0x09,0x08,0x7d,0x09,0x18,0x1c,0x2a,0x28,0x4b,0x08,0x08,0x08,0x0b,0x08,0x08,0x20,0x24,0xa8,0xff,0x02,0xfc,0x84,0xfc,0x20,0xff,0x30,0x68,0xa4,0x27,0x22,0x20 -+// 27223 橗 ; -+,0x10,0x10,0x13,0x7c,0x10,0x39,0x35,0x51,0x51,0x11,0x11,0x11,0x10,0x10,0x10,0x10,0x88,0x88,0xff,0x88,0x1e,0xd2,0x52,0x5e,0xd2,0x52,0x5e,0xd2,0x12,0x22,0x2a,0x44 -+// 27224 橘 ; -+,0x08,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0xfe,0x04,0x18,0xff,0x2a,0xc8,0x18,0xff,0x49,0x47,0xb9,0x29,0x39,0x01,0x05,0x02 -+// 27225 橙 ; -+,0x10,0x13,0x12,0x11,0x7c,0x11,0x3a,0x34,0x51,0x51,0x11,0x10,0x10,0x10,0x13,0x10,0x20,0xe4,0x58,0x92,0x8c,0x04,0xfa,0x01,0xfc,0x04,0xfc,0x00,0x88,0x50,0xff,0x00 -+// 27226 橚 ; -+,0x08,0x09,0x08,0x7d,0x08,0x1d,0x18,0x2a,0x2b,0x4a,0x0b,0x0a,0x0b,0x0a,0x0c,0x08,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0xaa,0x22 -+// 27227 橛 ; -+,0x10,0x13,0x12,0x13,0x7e,0x12,0x3b,0x36,0x53,0x53,0x13,0x12,0x12,0x14,0x15,0x1a,0x00,0xff,0x00,0x24,0xa4,0x44,0xff,0x49,0x56,0x54,0xf4,0x44,0x84,0x8a,0x11,0x61 -+// 27228 橜 ; -+,0x3f,0x28,0x25,0x2f,0x22,0x2a,0x2f,0x22,0x44,0x00,0x7f,0x01,0x02,0x0c,0x70,0x00,0xfe,0x88,0x08,0xdf,0x22,0x88,0x88,0x14,0xa3,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82 -+// 27229 橝 ; -+,0x08,0x0b,0x08,0x09,0x7f,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x00,0xff,0x50,0xfe,0x52,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x20 -+// 27230 橞 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x0a,0x0a,0x08,0x08,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x11,0xff,0x00,0x92,0x91,0x85,0x7c,0x00 -+// 27231 機 ; -+,0x10,0x11,0x11,0x7a,0x17,0x3a,0x37,0x50,0x50,0x17,0x10,0x11,0x11,0x12,0x14,0x10,0x20,0x24,0x24,0xaa,0x3c,0xa9,0xbf,0x28,0xa4,0xff,0x92,0x54,0x49,0x15,0x23,0x01 -+// 27232 橠 ; -+,0x10,0x13,0x10,0x7c,0x11,0x30,0x39,0x54,0x51,0x10,0x13,0x10,0x11,0x16,0x10,0x10,0x20,0xff,0x40,0xfc,0x48,0x70,0x9e,0x64,0x98,0x70,0xff,0x50,0x88,0xa4,0xc7,0x82 -+// 27233 橡 ; -+,0x10,0x10,0x11,0x7f,0x11,0x39,0x35,0x54,0x50,0x13,0x10,0x13,0x10,0x17,0x10,0x10,0x80,0xf8,0x10,0xfc,0x24,0x24,0xfc,0x40,0xe6,0x78,0xb8,0x34,0xd3,0x12,0x50,0x20 -+// 27234 橢 ; -+,0x10,0x13,0x12,0x7e,0x13,0x3b,0x36,0x52,0x52,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x08,0x88,0xbf,0x90,0x3e,0x48,0xbf,0x80,0xbe,0xa2,0x3e,0x22,0x3e,0x22,0x2a,0x24 -+// 27235 橣 ; -+,0x10,0x10,0x13,0x12,0x7c,0x11,0x31,0x38,0x55,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x10,0xff,0x02,0x50,0x45,0x3d,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x22,0x26 -+// 27236 橤 ; -+,0x00,0x0a,0x0a,0x01,0x00,0x25,0x35,0x52,0x0e,0x00,0x3f,0x02,0x04,0x18,0x60,0x00,0x80,0x48,0x14,0xf0,0x00,0x09,0x55,0x52,0x8e,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 27237 橥 ; -+,0x02,0x14,0x08,0x35,0x06,0x0a,0x32,0x03,0x14,0x08,0x00,0x3f,0x02,0x0c,0x70,0x00,0x22,0xfe,0x24,0xff,0x20,0x7c,0xc4,0x7c,0x44,0xfc,0x80,0xff,0xb0,0x8c,0x87,0x82 -+// 27238 橦 ; -+,0x10,0x11,0x10,0x10,0x7d,0x10,0x39,0x35,0x51,0x51,0x11,0x10,0x11,0x10,0x17,0x10,0x20,0xfe,0x84,0x48,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfc,0x20,0xff,0x00 -+// 27239 橧 ; -+,0x10,0x10,0x10,0x7d,0x11,0x39,0x35,0x51,0x50,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x84,0x48,0x50,0xfe,0x22,0xaa,0x72,0xfe,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 27240 橨 ; -+,0x08,0x09,0x08,0x7e,0x0b,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x0b,0x20,0xfe,0x20,0xa8,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x48,0x86,0x02 -+// 27241 橩 ; -+,0x08,0x09,0x09,0x0a,0x7e,0x09,0x18,0x1d,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x44,0x55,0x6e,0x44,0xaa,0x11,0x00,0xff,0x02,0xfc,0x24,0x24,0xfc,0x25,0x45,0x83 -+// 27242 橪 ; -+,0x10,0x10,0x10,0x11,0x7d,0x12,0x3a,0x35,0x50,0x51,0x16,0x10,0x12,0x12,0x16,0x10,0x88,0x8c,0x8a,0xe8,0x3f,0xa8,0x48,0x54,0x94,0x23,0x42,0x00,0x92,0x49,0x49,0x00 -+// 27243 橫 ; -+,0x08,0x09,0x08,0x7e,0x08,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x48,0xff,0x48,0x78,0x00,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x44,0x83,0x01 -+// 27244 橬 ; -+,0x13,0x10,0x12,0x7b,0x10,0x39,0x35,0x52,0x50,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0xef,0x84,0x94,0xdf,0x84,0xac,0xd5,0xa3,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 27245 橭 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x1d,0x1a,0x29,0x28,0x48,0x0b,0x08,0x09,0x08,0x08,0x08,0x20,0xff,0x20,0xfc,0x04,0xfc,0x20,0xfe,0x88,0x50,0xff,0x20,0xfc,0x20,0x20,0x20 -+// 27246 橮 ; -+,0x08,0x09,0x09,0x09,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x40,0x9f,0x09,0x49,0x93,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x28,0x46,0x82 -+// 27247 橯 ; -+,0x08,0x08,0x09,0x7c,0x08,0x1c,0x1b,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x0b,0x08,0x44,0x44,0x55,0xee,0x44,0xaa,0xff,0x22,0x20,0xfc,0x24,0x44,0x44,0x84,0x14,0x08 -+// 27248 橰 ; -+,0x08,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x28,0x49,0x0b,0x08,0x08,0x08,0x08,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x24,0xa8,0x24,0xff,0x20,0x20,0x20,0x20 -+// 27249 橱 ; -+,0x10,0x13,0x12,0x7b,0x12,0x3a,0x36,0x52,0x52,0x12,0x12,0x12,0x14,0x15,0x18,0x10,0x00,0xff,0x00,0xf2,0x02,0x02,0xef,0xa2,0xaa,0xe6,0x22,0xa2,0x72,0x82,0x0a,0x04 -+// 27250 橲 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xfe,0x20,0xfc,0x00,0xfc,0x84,0xfc,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84 -+// 27251 橳 ; -+,0x10,0x13,0x12,0x7e,0x13,0x3a,0x36,0x52,0x53,0x12,0x12,0x12,0x12,0x14,0x15,0x18,0x08,0xaa,0x9c,0xbe,0x88,0xff,0x88,0x94,0xeb,0x9e,0x8a,0x8a,0x92,0x92,0xaa,0x84 -+// 27252 橴 ; -+,0x08,0x08,0x09,0x09,0x7d,0x0b,0x1c,0x1a,0x29,0x28,0x49,0x08,0x08,0x0b,0x08,0x08,0x48,0x4a,0x6c,0x48,0x69,0x8f,0x20,0x48,0xf0,0x44,0xfe,0x10,0x94,0x13,0x51,0x20 -+// 27253 橵 ; -+,0x11,0x11,0x13,0x7d,0x11,0x17,0x38,0x37,0x52,0x53,0x12,0x13,0x12,0x12,0x12,0x12,0x44,0x44,0xe4,0x44,0x4f,0xea,0x0a,0xd2,0x52,0xea,0x4c,0xc4,0x4c,0x52,0xe3,0x42 -+// 27254 橶 ; -+,0x10,0x10,0x13,0x10,0x7b,0x12,0x3b,0x36,0x53,0x50,0x10,0x17,0x10,0x10,0x10,0x10,0x88,0x8a,0xe9,0x88,0xe8,0x3f,0xe8,0x28,0xe9,0x85,0x86,0xe4,0x8d,0xb3,0x83,0x81 -+// 27255 橷 ; -+,0x11,0x11,0x11,0x13,0x79,0x11,0x39,0x33,0x55,0x50,0x10,0x10,0x10,0x10,0x11,0x10,0x24,0x24,0x75,0x56,0x74,0x54,0x55,0x75,0x07,0x78,0x48,0x48,0x89,0x89,0x07,0x00 -+// 27256 橸 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00,0xef,0x29,0xef,0x29,0x29,0xef,0x29,0x00 -+// 27257 橹 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x7c,0x88,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe -+// 27258 橺 ; -+,0x08,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x49,0x79,0x01,0x05,0x02 -+// 27259 橻 ; -+,0x10,0x11,0x10,0x7c,0x11,0x38,0x34,0x53,0x50,0x17,0x12,0x17,0x12,0x12,0x1f,0x10,0x00,0xfc,0x44,0x44,0xfc,0x84,0x84,0xff,0x00,0xbe,0x8a,0xbe,0x8a,0x8a,0xff,0x00 -+// 27260 橼 ; -+,0x10,0x11,0x11,0x7d,0x12,0x3b,0x35,0x52,0x57,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x10,0x1e,0x12,0x3c,0x84,0xff,0x10,0x31,0x5a,0x24,0x4c,0x16,0x25,0xc4,0x14,0x08 -+// 27261 橽 ; -+,0x10,0x10,0x12,0x7d,0x10,0x38,0x34,0x57,0x51,0x11,0x11,0x11,0x11,0x12,0x14,0x10,0x10,0x10,0x7e,0x10,0xff,0x24,0xfe,0x10,0x7e,0x10,0xff,0x10,0x10,0xd0,0x3f,0x00 -+// 27262 橾 ; -+,0x10,0x10,0x10,0x10,0x7c,0x13,0x3a,0x37,0x50,0x57,0x10,0x10,0x10,0x13,0x10,0x10,0xf8,0x88,0x88,0xf8,0x00,0xde,0x52,0xde,0x20,0xff,0x30,0x68,0xa4,0x27,0x22,0x20 -+// 27263 橿 ; -+,0x13,0x10,0x11,0x11,0x7d,0x11,0x39,0x34,0x53,0x51,0x11,0x11,0x11,0x10,0x17,0x10,0xfe,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff,0x24,0xfc,0x24,0xfc,0x00,0xff,0x00 -+// 27264 檀 ; -+,0x10,0x13,0x10,0x11,0x7d,0x11,0x39,0x35,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x13,0x20,0xff,0x00,0xfe,0x02,0x7a,0x4a,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 27265 檁 ; -+,0x10,0x10,0x13,0x10,0x7d,0x11,0x39,0x35,0x51,0x50,0x11,0x10,0x13,0x10,0x10,0x13,0x20,0x10,0xff,0x00,0xfe,0x02,0x7a,0x4a,0xfe,0x00,0xfe,0x20,0xff,0x70,0xac,0x23 -+// 27266 檂 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x38,0x35,0x51,0x51,0x11,0x11,0x12,0x12,0x14,0x10,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xff,0x00,0x7c,0x00,0xff,0x52,0x4c,0x64,0x43 -+// 27267 檃 ; -+,0x1e,0x12,0x14,0x18,0x14,0x12,0x12,0x1a,0x14,0x10,0x10,0x00,0x3f,0x00,0x03,0x1c,0xfe,0xa4,0xfe,0x10,0xfe,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x40,0xff,0xe0,0x58,0x47 -+// 27268 檄 ; -+,0x11,0x13,0x12,0x13,0x7e,0x13,0x39,0x30,0x57,0x51,0x11,0x12,0x12,0x14,0x19,0x10,0x08,0xc8,0x48,0xcf,0x52,0xd2,0x32,0x8a,0xea,0x0a,0xc4,0x44,0x4a,0x52,0x63,0x82 -+// 27269 檅 ; -+,0x10,0x10,0x10,0x13,0x7c,0x10,0x3b,0x36,0x53,0x52,0x12,0x13,0x14,0x14,0x1b,0x10,0x10,0x9e,0x90,0xff,0x08,0x08,0xff,0x08,0xf9,0x49,0xda,0x24,0x45,0x8b,0x13,0x21 -+// 27270 檆 ; -+,0x10,0x10,0x12,0x7d,0x10,0x39,0x35,0x52,0x54,0x12,0x12,0x11,0x11,0x12,0x14,0x10,0x84,0x84,0xa4,0xc7,0x84,0x44,0x24,0x8f,0xa9,0xc9,0x89,0x49,0x29,0x0f,0x09,0x00 -+// 27271 檇 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x09,0x09,0x09,0x09,0x09,0x50,0x48,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xce,0x4a,0x7a,0x02,0x0a,0x04 -+// 27272 檈 ; -+,0x10,0x11,0x11,0x11,0x7c,0x13,0x38,0x35,0x51,0x51,0x10,0x11,0x12,0x14,0x10,0x10,0x00,0xfe,0x52,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0xa2,0x94,0x88,0xa4,0xc7,0x82 -+// 27273 檉 ; -+,0x08,0x0b,0x09,0x09,0x3d,0x09,0x1d,0x1b,0x28,0x29,0x48,0x08,0x08,0x08,0x09,0x08,0x00,0xf0,0x2f,0xe9,0x29,0xe9,0x29,0xef,0x20,0xff,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 27274 檊 ; -+,0x11,0x11,0x13,0x11,0x7b,0x12,0x3b,0x36,0x53,0x51,0x11,0x17,0x11,0x11,0x11,0x11,0x08,0x08,0xc8,0x14,0xd2,0x61,0xde,0x48,0xc8,0x3f,0x08,0xc8,0x08,0x08,0x08,0x08 -+// 27275 檋 ; -+,0x10,0x11,0x10,0x13,0x7d,0x12,0x38,0x35,0x51,0x51,0x11,0x11,0x10,0x17,0x10,0x10,0x88,0xfe,0x88,0xff,0x24,0xfb,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20 -+// 27276 檌 ; -+,0x10,0x11,0x11,0x11,0x7d,0x10,0x3b,0x34,0x50,0x53,0x10,0x10,0x13,0x10,0x10,0x10,0x00,0xfe,0x52,0x52,0xfe,0x50,0xdf,0x50,0x50,0xde,0x50,0x50,0xdf,0x50,0x50,0x50 -+// 27277 檍 ; -+,0x10,0x11,0x10,0x7c,0x13,0x10,0x39,0x35,0x51,0x51,0x11,0x10,0x12,0x12,0x14,0x10,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xa2,0x95,0x7d,0x00 -+// 27278 檎 ; -+,0x10,0x10,0x10,0x13,0x78,0x10,0x39,0x35,0x51,0x50,0x13,0x12,0x12,0x12,0x12,0x12,0x20,0x30,0xcc,0x23,0xf8,0x50,0x24,0x54,0xfc,0x20,0xfe,0x52,0xfa,0x0a,0x02,0x06 -+// 27279 檏 ; -+,0x08,0x09,0x08,0x7d,0x08,0x18,0x1d,0x2a,0x28,0x48,0x09,0x08,0x08,0x0b,0x08,0x08,0x48,0x4a,0xcc,0xff,0x84,0x48,0xff,0x10,0xfe,0x10,0xff,0x58,0x94,0x17,0x12,0x10 -+// 27280 檐 ; -+,0x08,0x08,0x08,0x7d,0x09,0x0d,0x1b,0x19,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x40,0x7c,0x88,0xff,0x44,0x93,0x08,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e -+// 27281 檑 ; -+,0x08,0x08,0x08,0x09,0x7d,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0xff,0x12,0xd6,0x10,0xd6,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 27282 檒 ; -+,0x04,0x3f,0x0e,0x15,0x24,0x1f,0x10,0x17,0x10,0x17,0x14,0x17,0x20,0x2f,0x40,0x00,0x10,0x7e,0x30,0x58,0x17,0xf8,0x08,0xe8,0x88,0xe8,0xa8,0xe8,0x85,0xf5,0x13,0x01 -+// 27283 檓 ; -+,0x10,0x11,0x13,0x12,0x7e,0x13,0x3a,0x37,0x50,0x53,0x10,0x10,0x10,0x13,0x10,0x10,0x80,0x1c,0xd4,0x54,0xd4,0x55,0x67,0xc0,0x1f,0xd2,0x8a,0x84,0xcc,0x13,0x62,0x00 -+// 27284 檔 ; -+,0x08,0x09,0x08,0x0b,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x22,0xa4,0xff,0x02,0xf8,0x88,0xf8,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 27285 檕 ; -+,0x02,0x3f,0x12,0x1f,0x12,0x3f,0x02,0x12,0x1f,0x00,0x3f,0x00,0x01,0x06,0x18,0x00,0x00,0xdc,0x94,0x93,0xa0,0xde,0x14,0x8c,0xb2,0x40,0xff,0xe0,0x58,0x47,0x42,0x40 -+// 27286 檖 ; -+,0x10,0x14,0x12,0x12,0x78,0x10,0x38,0x36,0x53,0x52,0x12,0x12,0x12,0x13,0x14,0x10,0x84,0x44,0x48,0xff,0x20,0xe2,0x34,0x58,0x9c,0x2c,0xcb,0x0a,0x28,0x10,0xff,0x00 -+// 27287 檗 ; -+,0x00,0x1f,0x11,0x1f,0x10,0x1f,0x29,0x2f,0x40,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x10,0x08,0x7f,0x14,0x7f,0x08,0x3e,0x08,0x88,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 27288 檘 ; -+,0x10,0x13,0x12,0x12,0x7a,0x13,0x3a,0x36,0x53,0x56,0x16,0x1a,0x13,0x12,0x10,0x10,0x08,0xc4,0x7f,0x52,0x4a,0xca,0x04,0x3f,0xc4,0x44,0x5f,0x44,0xc4,0x44,0x04,0x04 -+// 27289 檙 ; -+,0x10,0x10,0x10,0x11,0x7d,0x11,0x39,0x35,0x51,0x50,0x13,0x11,0x11,0x12,0x12,0x14,0x78,0x48,0x78,0x4a,0x7a,0x4a,0x7a,0x02,0xce,0x48,0xcf,0x49,0x49,0x49,0x49,0x49 -+// 27290 檚 ; -+,0x08,0x08,0x0b,0x08,0x7d,0x0a,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x84,0x84,0xef,0xc4,0xae,0x95,0xa4,0x84,0xff,0x12,0x10,0x9e,0x90,0x90,0x50,0x3f -+// 27291 檛 ; -+,0x10,0x12,0x11,0x7d,0x10,0x38,0x36,0x52,0x52,0x12,0x12,0x12,0x12,0x15,0x18,0x10,0x00,0x3e,0x22,0x3a,0x2a,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x81,0x83,0x00,0xff,0x00 -+// 27292 檜 ; -+,0x08,0x08,0x08,0x0b,0x7c,0x09,0x1d,0x1b,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x50,0x8c,0x7b,0x00,0xfe,0xaa,0x72,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 27293 檝 ; -+,0x10,0x11,0x11,0x11,0x7c,0x17,0x39,0x35,0x51,0x51,0x11,0x11,0x17,0x10,0x10,0x10,0x08,0xe8,0x2a,0xe9,0x08,0xff,0x28,0xe8,0x2a,0xea,0x24,0xec,0x35,0x23,0x23,0x21 -+// 27294 檞 ; -+,0x11,0x11,0x13,0x12,0x7f,0x15,0x3d,0x37,0x55,0x55,0x17,0x15,0x15,0x15,0x18,0x10,0x00,0x3f,0xc9,0x89,0xd1,0x63,0x44,0xd4,0x5f,0x64,0xc4,0x7f,0x44,0x44,0xc4,0x04 -+// 27295 檟 ; -+,0x08,0x09,0x08,0x09,0x7d,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x00,0xff,0x48,0xff,0x49,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 27296 檠 ; -+,0x09,0x3f,0x09,0x20,0x3f,0x20,0x5e,0x12,0x1e,0x01,0x00,0x3f,0x00,0x01,0x06,0x18,0x10,0x90,0x3f,0x24,0xd4,0x88,0x8c,0x92,0xa2,0x80,0x40,0xff,0xe0,0x58,0x47,0x42 -+// 27297 檡 ; -+,0x08,0x09,0x09,0x09,0x7e,0x09,0x1c,0x1b,0x28,0x29,0x48,0x08,0x0b,0x08,0x08,0x08,0x00,0xfe,0x52,0xfe,0x20,0xfe,0x20,0xff,0x88,0xfe,0x20,0x20,0xff,0x20,0x20,0x20 -+// 27298 檢 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x1d,0x1b,0x29,0x29,0x48,0x08,0x09,0x09,0x0a,0x08,0x20,0x20,0x50,0x8c,0x7b,0x00,0xde,0x52,0x52,0xde,0x88,0x88,0x48,0x34,0x23,0x42 -+// 27299 檣 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1d,0x1b,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x10,0x10,0xff,0x94,0x94,0x5a,0xff,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0xfe,0x02 -+// 27300 檤 ; -+,0x10,0x10,0x12,0x11,0x7d,0x10,0x38,0x37,0x51,0x51,0x11,0x11,0x11,0x12,0x14,0x10,0x00,0x22,0x14,0x7f,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x80,0x7f,0x00 -+// 27301 檥 ; -+,0x11,0x10,0x13,0x10,0x7d,0x10,0x3b,0x34,0x51,0x50,0x17,0x10,0x10,0x13,0x10,0x11,0x08,0x90,0xfe,0x20,0xfc,0x20,0xfe,0x10,0xd4,0x92,0xff,0x94,0xc8,0x95,0x83,0x81 -+// 27302 檦 ; -+,0x10,0x13,0x10,0x13,0x7a,0x12,0x3b,0x34,0x51,0x50,0x13,0x10,0x12,0x14,0x11,0x10,0x01,0xf9,0xa1,0xf9,0xa9,0xad,0xfd,0x05,0xf5,0x05,0xf5,0x41,0x51,0x51,0x45,0x82 -+// 27303 檧 ; -+,0x08,0x08,0x09,0x08,0x7c,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x0a,0x0a,0x0c,0x08,0x44,0x44,0xff,0x44,0x7f,0xd3,0x35,0xc9,0x35,0xc1,0x03,0xa0,0x92,0x85,0x7d,0x00 -+// 27304 檨 ; -+,0x08,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x29,0x48,0x08,0x08,0x0a,0x09,0x09,0x84,0x48,0xff,0x10,0xfe,0x10,0xff,0x00,0x10,0x1e,0xa2,0x08,0x48,0x94,0x27,0x42 -+// 27305 檩 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x28,0x49,0x08,0x0b,0x08,0x09,0x09,0x0a,0x20,0xff,0x00,0xfe,0x02,0x7a,0x4a,0xfe,0x00,0xfc,0x00,0xff,0x20,0x24,0x23,0x61 -+// 27306 檪 ; -+,0x10,0x14,0x12,0x11,0x7c,0x10,0x39,0x36,0x50,0x57,0x10,0x10,0x11,0x16,0x10,0x10,0x20,0x71,0x52,0x54,0x70,0xd4,0x52,0x73,0x20,0xff,0x60,0xb0,0x2c,0x27,0x22,0x20 -+// 27307 檫 ; -+,0x08,0x09,0x09,0x7e,0x08,0x1d,0x1a,0x29,0x29,0x4a,0x09,0x08,0x08,0x08,0x09,0x08,0x10,0xff,0x02,0x80,0xe8,0x32,0xcc,0x84,0x7b,0x00,0xfe,0x10,0x94,0x92,0x52,0x20 -+// 27308 檬 ; -+,0x10,0x13,0x10,0x7b,0x12,0x38,0x34,0x53,0x50,0x13,0x10,0x13,0x10,0x17,0x10,0x10,0x48,0xff,0x48,0xff,0x02,0xfc,0x00,0xff,0xc0,0x24,0xd8,0x34,0xd7,0x12,0x50,0x20 -+// 27309 檭 ; -+,0x10,0x11,0x11,0x12,0x7b,0x15,0x39,0x31,0x57,0x51,0x15,0x13,0x11,0x11,0x16,0x10,0x00,0x1e,0x92,0x52,0xde,0x12,0x1e,0x10,0xd1,0x1a,0x54,0x94,0x12,0xd3,0x1a,0x10 -+// 27310 檮 ; -+,0x08,0x0b,0x08,0x09,0x7e,0x09,0x1c,0x19,0x28,0x2b,0x48,0x0b,0x0a,0x0b,0x08,0x08,0x20,0xff,0x20,0xfe,0x00,0xff,0x02,0xfe,0x20,0xff,0x04,0xff,0x44,0xd4,0x04,0x0c -+// 27311 檯 ; -+,0x08,0x0b,0x08,0x7d,0x08,0x1c,0x18,0x2b,0x2a,0x49,0x08,0x09,0x08,0x09,0x08,0x0b,0x20,0xff,0x20,0xfe,0x00,0xfc,0x84,0xff,0x02,0xfc,0x48,0xfc,0x20,0xfe,0x20,0xff -+// 27312 檰 ; -+,0x10,0x10,0x11,0x7d,0x12,0x3b,0x31,0x52,0x57,0x10,0x10,0x15,0x15,0x14,0x10,0x10,0x84,0x88,0x3e,0x22,0xbe,0x22,0x3e,0x88,0xbf,0x29,0xa9,0x69,0x29,0x2b,0x08,0x08 -+// 27313 檱 ; -+,0x08,0x08,0x08,0x09,0x7e,0x09,0x1c,0x1a,0x28,0x28,0x48,0x0b,0x08,0x08,0x08,0x0b,0x88,0x88,0xef,0x58,0xa4,0xff,0x84,0xfc,0x84,0xfc,0x84,0xff,0x00,0x44,0x83,0x01 -+// 27314 檲 ; -+,0x08,0x0b,0x0a,0x0b,0x7e,0x0a,0x1e,0x1a,0x2a,0x2b,0x4a,0x0b,0x0a,0x0a,0x0b,0x08,0x00,0xff,0x11,0xff,0x95,0xfd,0x95,0xfd,0x11,0xff,0x09,0xff,0x29,0x09,0xff,0x00 -+// 27315 檳 ; -+,0x08,0x09,0x09,0x7e,0x08,0x1c,0x19,0x28,0x29,0x4e,0x08,0x08,0x08,0x08,0x08,0x09,0x10,0xff,0x02,0xfc,0x12,0x94,0x38,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 27316 檴 ; -+,0x08,0x0b,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x88,0xff,0x88,0x50,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfc,0x48,0x30,0xcf -+// 27317 檵 ; -+,0x09,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x08,0x24,0x24,0x4a,0xee,0x44,0xee,0x22,0xff,0x44,0xaa,0xcc,0x44,0xef,0x21,0xff,0x00 -+// 27318 檶 ; -+,0x08,0x08,0x09,0x08,0x7c,0x0b,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x20,0xff,0x48,0x84,0xff,0x00,0x3c,0x24,0x3c,0x00,0x77,0x55,0x77,0x00,0xff -+// 27319 檷 ; -+,0x13,0x10,0x10,0x7d,0x17,0x39,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0xff,0x54,0x92,0x11,0xff,0xbb,0x55,0xbb,0x11,0xbb,0x55,0xbb,0x11,0x11,0x15,0x02 -+// 27320 檸 ; -+,0x08,0x09,0x09,0x7c,0x09,0x1d,0x1a,0x28,0x28,0x49,0x08,0x09,0x08,0x08,0x08,0x08,0x10,0xff,0x22,0x10,0x45,0x7d,0x00,0xfe,0xaa,0xff,0x00,0xff,0x10,0x10,0x50,0x20 -+// 27321 檹 ; -+,0x0a,0x09,0x08,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0d,0x08,0x10,0x10,0x1f,0xa8,0x5e,0x08,0xd4,0x7f,0x42,0x5e,0x56,0x5e,0x42,0x42,0x4a,0x84 -+// 27322 檺 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1b,0x18,0x28,0x28,0x49,0x08,0x0b,0x08,0x0b,0x08,0x10,0xff,0x44,0x7c,0x00,0xff,0x02,0xfc,0x20,0x62,0xb4,0xd8,0x38,0xd7,0x12,0x30 -+// 27323 檻 ; -+,0x10,0x13,0x12,0x7f,0x12,0x3b,0x36,0x52,0x53,0x10,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0xf4,0x84,0xe7,0x28,0xec,0x92,0x83,0xe2,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 27324 檼 ; -+,0x10,0x13,0x11,0x7c,0x11,0x38,0x35,0x50,0x51,0x10,0x11,0x10,0x11,0x12,0x12,0x14,0x1e,0xe0,0x44,0xa8,0xfe,0x10,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0xa0,0x95,0x7d -+// 27325 檽 ; -+,0x10,0x11,0x10,0x13,0x7a,0x11,0x38,0x35,0x50,0x53,0x10,0x13,0x12,0x12,0x12,0x12,0x00,0xfc,0x20,0xff,0x22,0xac,0x20,0xac,0x00,0xfe,0x40,0xfe,0x52,0x52,0x52,0x06 -+// 27326 檾 ; -+,0x04,0x15,0x0e,0x06,0x09,0x3f,0x24,0x04,0x3f,0x04,0x0e,0x0d,0x14,0x64,0x04,0x04,0x10,0x54,0x38,0x28,0x44,0xff,0x12,0x10,0x7e,0x10,0x38,0x34,0x57,0x92,0x10,0x10 -+// 27327 檿 ; -+,0x1f,0x16,0x15,0x17,0x10,0x17,0x16,0x15,0x16,0x15,0x18,0x1f,0x20,0x23,0x4c,0x00,0xff,0x88,0x8a,0x89,0x3f,0x88,0x88,0x94,0x92,0xa1,0xc0,0xff,0xe0,0x58,0x47,0x42 -+// 27328 櫀 ; -+,0x10,0x13,0x10,0x10,0x7c,0x10,0x3b,0x34,0x51,0x56,0x10,0x11,0x10,0x11,0x11,0x12,0x88,0xff,0xa8,0xd8,0xa8,0x98,0xff,0xa8,0x54,0xe3,0x48,0xfc,0x24,0x20,0x24,0x62 -+// 27329 櫁 ; -+,0x08,0x08,0x0b,0x0a,0x7c,0x0a,0x1a,0x1c,0x2b,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x20,0x10,0xff,0x22,0xa8,0x92,0xa5,0xfc,0x10,0xfe,0x92,0xfe,0x10,0x12,0xff,0x01 -+// 27330 櫂 ; -+,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x4b,0x0d,0x09,0x09,0x09,0x09,0x09,0xef,0x21,0xa5,0x63,0xa5,0x21,0x90,0x88,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 27331 櫃 ; -+,0x09,0x09,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0xff,0x10,0x7e,0x52,0x7e,0x10,0xff,0x00,0x7e,0x4a,0x66,0x52,0x7e,0x24,0x42,0xff -+// 27332 櫄 ; -+,0x08,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x08,0x09,0x0a,0x0e,0xf0,0x10,0xff,0x10,0xfe,0xd6,0xba,0xfe,0x10,0xfe,0x10,0xff,0x00,0x52,0x29 -+// 27333 櫅 ; -+,0x08,0x0b,0x08,0x7e,0x0b,0x1e,0x1a,0x2d,0x29,0x49,0x09,0x09,0x09,0x0a,0x0c,0x08,0x20,0xff,0x88,0x52,0xac,0xaa,0xaa,0xad,0x02,0xfe,0x02,0xfe,0x02,0x02,0x02,0x02 -+// 27334 櫆 ; -+,0x10,0x11,0x13,0x12,0x7f,0x12,0x3a,0x33,0x50,0x50,0x11,0x11,0x12,0x14,0x18,0x10,0x80,0x04,0xe4,0xb4,0xec,0xb4,0xac,0xff,0xc4,0xd4,0x54,0x7c,0x4d,0x41,0x3f,0x00 -+// 27335 櫇 ; -+,0x08,0x08,0x08,0x7f,0x0a,0x1e,0x1b,0x2a,0x2b,0x4a,0x0a,0x0a,0x0d,0x0e,0x08,0x08,0x80,0xbf,0x84,0xe4,0xdf,0x91,0xff,0x31,0x5f,0xd1,0x5f,0xa0,0x2a,0x09,0x31,0x00 -+// 27336 櫈 ; -+,0x08,0x09,0x08,0x7e,0x09,0x1e,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x08,0x09,0x08,0x04,0xd8,0x4a,0xf4,0x02,0xfb,0x88,0xf8,0x50,0xff,0x00,0xf8,0x89,0x89,0x07,0x00 -+// 27337 櫉 ; -+,0x10,0x13,0x12,0x12,0x7e,0x12,0x3a,0x36,0x52,0x52,0x12,0x12,0x14,0x15,0x18,0x10,0x00,0xff,0x42,0xe2,0x42,0xef,0x02,0xe2,0xaa,0xe6,0x02,0xa2,0x72,0x82,0x0a,0x04 -+// 27338 櫊 ; -+,0x09,0x09,0x09,0x7f,0x09,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0xef,0x29,0xef,0x29,0xef,0x21,0x3d,0x69,0x91,0x29,0xc7,0x79,0x49,0x79,0x05,0x02 -+// 27339 櫋 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x38,0x33,0x52,0x51,0x13,0x10,0x10,0x10,0x11,0x16,0x20,0xfc,0x94,0x4c,0x24,0xfc,0x20,0xff,0x8a,0x24,0xfe,0x40,0x7c,0x84,0x14,0x08 -+// 27340 櫌 ; -+,0x09,0x08,0x08,0x7e,0x08,0x1c,0x1b,0x29,0x28,0x49,0x09,0x08,0x08,0x09,0x08,0x09,0xff,0x20,0xfe,0xca,0xa6,0x92,0xff,0x22,0x50,0x45,0x3d,0x80,0xfc,0x48,0x30,0xcf -+// 27341 櫍 ; -+,0x10,0x11,0x11,0x11,0x7d,0x12,0x38,0x34,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0x11,0x63,0x8c,0x08,0xef,0x4a,0x52,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x48,0x86 -+// 27342 櫎 ; -+,0x08,0x08,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x09,0x20,0x10,0xff,0x28,0xfe,0x28,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x24,0x42,0x82 -+// 27343 櫏 ; -+,0x08,0x08,0x0a,0x09,0x7e,0x08,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0c,0x08,0x00,0x7f,0x14,0x7f,0x55,0x7f,0x10,0x7f,0x22,0x7d,0xac,0x22,0x3e,0x80,0x7f,0x00 -+// 27344 櫐 ; -+,0x0f,0x08,0x0f,0x08,0x3f,0x25,0x3f,0x25,0x3f,0x00,0x7f,0x01,0x02,0x0c,0x30,0x00,0xf8,0x88,0xf8,0x88,0xfe,0x2a,0x3e,0x2a,0xbe,0x80,0xff,0xc0,0xb0,0x8e,0x84,0x80 -+// 27345 櫑 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x38,0x37,0x55,0x55,0x17,0x15,0x15,0x17,0x14,0x10,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xdf,0x55,0x55,0xdf,0x55,0x55,0xdf,0x51,0x00 -+// 27346 櫒 ; -+,0x10,0x11,0x10,0x7c,0x10,0x39,0x36,0x51,0x51,0x16,0x11,0x10,0x11,0x11,0x12,0x10,0x48,0xff,0x48,0x80,0xf7,0xa9,0x46,0x84,0x7a,0x01,0xfe,0x10,0x12,0x11,0x51,0x20 -+// 27347 櫓 ; -+,0x08,0x08,0x08,0x7d,0x08,0x1c,0x1a,0x28,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x7c,0x88,0xfe,0x92,0xfe,0x92,0xfe,0x52,0x29,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 27348 櫔 ; -+,0x13,0x12,0x13,0x7e,0x12,0x3a,0x36,0x52,0x52,0x12,0x13,0x13,0x15,0x15,0x19,0x11,0xff,0x44,0xff,0x44,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x11,0x7d,0x05,0x01,0x03 -+// 27349 櫕 ; -+,0x10,0x10,0x13,0x10,0x7b,0x11,0x3a,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x10,0x13,0x88,0x88,0xdf,0x88,0xdf,0x8c,0x53,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06 -+// 27350 櫖 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x3a,0x36,0x52,0x52,0x12,0x12,0x12,0x15,0x15,0x1a,0x20,0x3c,0x20,0xff,0x22,0xf8,0x22,0xfe,0x92,0xfe,0x92,0xfe,0xa0,0x52,0x45,0x3c -+// 27351 櫗 ; -+,0x10,0x13,0x10,0x11,0x7d,0x11,0x39,0x34,0x51,0x51,0x11,0x11,0x12,0x12,0x14,0x10,0x48,0xff,0x48,0xfe,0x52,0x52,0xfe,0x24,0xff,0x20,0xa2,0x54,0x49,0x15,0x63,0x01 -+// 27352 櫘 ; -+,0x08,0x0b,0x08,0x7f,0x08,0x1d,0x18,0x29,0x28,0x49,0x08,0x09,0x08,0x0a,0x0a,0x08,0x84,0xdf,0x84,0xdf,0x84,0xdf,0x84,0xfe,0x02,0xfe,0x02,0xfe,0x20,0x91,0x85,0xfc -+// 27353 櫙 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x48,0xff,0x48,0xff,0x00,0x7c,0x44,0x7c,0x00,0xee,0x2a,0x2a,0xee,0x00,0xff,0x00 -+// 27354 櫚 ; -+,0x13,0x12,0x13,0x12,0x7b,0x12,0x3a,0x36,0x52,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0xdf,0x51,0xdf,0x51,0xdf,0x01,0x79,0x49,0x79,0x01,0xfd,0x85,0xfd,0x01,0x05,0x02 -+// 27355 櫛 ; -+,0x11,0x11,0x11,0x12,0x7c,0x11,0x39,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x11,0x10,0x08,0xef,0x4c,0x32,0x00,0xef,0x29,0xe9,0x29,0xe9,0x09,0x49,0x6d,0xaa,0x08,0x08 -+// 27356 櫜 ; -+,0x00,0x3f,0x08,0x0f,0x3f,0x24,0x4f,0x33,0x0e,0x77,0x04,0x07,0x00,0x3f,0x03,0x3c,0x80,0xfe,0x88,0xf8,0xff,0x22,0xb0,0x28,0x20,0xff,0x10,0xf0,0x80,0xfe,0xe0,0x9e -+// 27357 櫝 ; -+,0x08,0x09,0x08,0x7e,0x08,0x1d,0x1b,0x29,0x28,0x49,0x09,0x09,0x09,0x08,0x08,0x0b,0x10,0xff,0x10,0xfe,0x00,0xff,0x49,0xff,0x00,0xfe,0x4a,0x26,0xfe,0x48,0x86,0x02 -+// 27358 櫞 ; -+,0x10,0x12,0x12,0x7a,0x14,0x3f,0x32,0x54,0x57,0x11,0x12,0x15,0x14,0x10,0x10,0x10,0x20,0x3e,0x24,0x7c,0x08,0x7f,0x10,0x79,0x16,0x24,0xce,0x15,0x64,0x04,0x14,0x08 -+// 27359 櫟 ; -+,0x11,0x11,0x12,0x7b,0x11,0x3a,0x37,0x50,0x50,0x17,0x10,0x10,0x11,0x16,0x10,0x10,0x22,0x72,0xd5,0x5e,0x72,0x54,0xdf,0xf1,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 27360 櫠 ; -+,0x10,0x10,0x13,0x7e,0x13,0x3b,0x36,0x53,0x53,0x12,0x13,0x13,0x13,0x14,0x15,0x18,0x40,0x20,0xff,0x14,0xea,0x4c,0x87,0x1c,0xd5,0x57,0xe0,0x1f,0xca,0x44,0x4a,0xb1 -+// 27361 櫡 ; -+,0x11,0x11,0x11,0x7a,0x10,0x39,0x34,0x53,0x50,0x10,0x11,0x16,0x10,0x10,0x10,0x10,0x08,0xef,0x94,0x42,0x20,0xfc,0x28,0xff,0x40,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 27362 櫢 ; -+,0x10,0x13,0x12,0x7f,0x12,0x3b,0x34,0x53,0x52,0x13,0x10,0x17,0x11,0x13,0x10,0x13,0x88,0xe8,0xa8,0xff,0xaa,0xf2,0x8a,0xea,0xaa,0xea,0x84,0xe4,0x46,0x8a,0xd3,0x22 -+// 27363 櫣 ; -+,0x10,0x10,0x12,0x11,0x7d,0x10,0x38,0x37,0x51,0x51,0x11,0x11,0x11,0x12,0x14,0x10,0x24,0xff,0x24,0x10,0x7f,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x90,0x7f,0x00 -+// 27364 櫤 ; -+,0x10,0x10,0x11,0x7d,0x12,0x38,0x35,0x50,0x51,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x88,0x88,0xef,0x94,0x42,0x48,0xff,0x00,0xe2,0x2a,0xea,0x2a,0xea,0x2a,0x22,0x66 -+// 27365 櫥 ; -+,0x08,0x08,0x0b,0x0a,0x7e,0x0a,0x1e,0x1a,0x2a,0x2a,0x4b,0x0a,0x0a,0x0b,0x0c,0x08,0x20,0x10,0xff,0x00,0xf2,0x02,0xef,0xa2,0xea,0x06,0x22,0xc2,0x72,0x82,0x0a,0x04 -+// 27366 櫦 ; -+,0x08,0x09,0x09,0x09,0x7d,0x09,0x1d,0x1b,0x29,0x29,0x4a,0x0a,0x0a,0x0c,0x08,0x09,0x10,0xff,0x48,0xfe,0x4a,0xfe,0x10,0xc5,0x7d,0x20,0x7e,0x44,0xa8,0x18,0x67,0x82 -+// 27367 櫧 ; -+,0x10,0x12,0x11,0x13,0x78,0x10,0x3b,0x34,0x53,0x50,0x13,0x12,0x12,0x12,0x13,0x12,0x08,0x08,0x09,0xdf,0x0a,0x3f,0xc4,0x08,0xde,0x32,0xd2,0x5e,0x52,0x52,0xde,0x52 -+// 27368 櫨 ; -+,0x10,0x10,0x10,0x13,0x7e,0x12,0x3a,0x36,0x52,0x52,0x12,0x12,0x12,0x14,0x14,0x19,0x20,0x3c,0x20,0xff,0x22,0xfc,0x22,0xfe,0x94,0xfc,0x94,0xfc,0x00,0xfe,0xaa,0xff -+// 27369 櫩 ; -+,0x13,0x12,0x13,0x12,0x7f,0x12,0x3a,0x36,0x53,0x52,0x12,0x12,0x12,0x12,0x12,0x12,0xde,0x52,0xde,0x52,0xde,0x42,0x7a,0x92,0xfa,0x8a,0xda,0x8a,0xfa,0x02,0x0a,0x04 -+// 27370 櫪 ; -+,0x10,0x13,0x12,0x13,0x7e,0x13,0x3a,0x37,0x52,0x52,0x12,0x12,0x14,0x14,0x1b,0x10,0x00,0xff,0x00,0xef,0x44,0xef,0xee,0x55,0x64,0x10,0x90,0x9e,0x90,0x90,0xff,0x00 -+// 27371 櫫 ; -+,0x00,0x3e,0x08,0x10,0x6a,0x16,0x6d,0x14,0x64,0x08,0x00,0x3f,0x01,0x06,0x38,0x00,0x12,0x7e,0x14,0xff,0x10,0x3e,0x62,0xbe,0x22,0xbe,0x80,0xff,0xc0,0xb0,0x8e,0x84 -+// 27372 櫬 ; -+,0x12,0x11,0x17,0x7a,0x11,0x37,0x39,0x51,0x57,0x11,0x11,0x15,0x19,0x15,0x12,0x00,0x00,0x1f,0xd1,0x9f,0x11,0xd1,0x1f,0x11,0xdf,0x0c,0x0c,0x4c,0x55,0x15,0x23,0x00 -+// 27373 櫭 ; -+,0x13,0x12,0x13,0x12,0x7b,0x12,0x3b,0x36,0x50,0x51,0x11,0x11,0x11,0x11,0x10,0x13,0xdf,0x44,0xd4,0x54,0xdf,0x84,0x4d,0x57,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff -+// 27374 櫮 ; -+,0x10,0x13,0x10,0x7b,0x12,0x33,0x38,0x57,0x50,0x13,0x12,0x12,0x13,0x10,0x17,0x10,0x00,0xff,0x20,0xae,0xaa,0xae,0x20,0xff,0x20,0xae,0xaa,0xaa,0xae,0x20,0xff,0x00 -+// 27375 櫯 ; -+,0x11,0x11,0x13,0x7a,0x17,0x3a,0x37,0x52,0x52,0x12,0x13,0x10,0x15,0x15,0x14,0x10,0x00,0x03,0xdc,0x44,0xe4,0xbf,0xe4,0xae,0xae,0xb5,0xe5,0x05,0x54,0x54,0x04,0x04 -+// 27376 櫰 ; -+,0x10,0x13,0x10,0x7d,0x11,0x39,0x34,0x50,0x50,0x13,0x10,0x11,0x16,0x10,0x10,0x10,0x20,0xff,0x00,0xfe,0x4a,0xfe,0xa4,0x78,0xa8,0x26,0x82,0x94,0x88,0xa4,0xc7,0x82 -+// 27377 櫱 ; -+,0x04,0x24,0x3f,0x0a,0x1f,0x30,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x3f,0x01,0x06,0x38,0x10,0x88,0xbf,0x12,0x8c,0xbf,0x88,0x3f,0x88,0x88,0xc8,0x40,0xff,0x58,0x47,0x42 -+// 27378 櫲 ; -+,0x10,0x17,0x10,0x7b,0x11,0x3f,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x11,0x15,0x12,0x10,0xd0,0x9e,0x24,0x3e,0xea,0xbe,0x08,0x1d,0x6e,0x14,0x6e,0x15,0xe5,0x14,0x08 -+// 27379 櫳 ; -+,0x12,0x11,0x17,0x7a,0x12,0x3f,0x34,0x53,0x52,0x13,0x12,0x13,0x12,0x12,0x12,0x12,0x10,0x1f,0xd0,0x9e,0x82,0xde,0x10,0xde,0x50,0xde,0x50,0xde,0x50,0x51,0x51,0xcf -+// 27380 櫴 ; -+,0x11,0x11,0x17,0x79,0x17,0x3d,0x35,0x57,0x51,0x13,0x13,0x15,0x15,0x19,0x11,0x11,0x08,0x08,0xcf,0x12,0xe4,0x5f,0x51,0xdf,0x11,0x9f,0x51,0x5f,0x00,0x12,0x11,0x21 -+// 27381 櫵 ; -+,0x10,0x10,0x13,0x7c,0x11,0x39,0x35,0x53,0x55,0x11,0x11,0x11,0x10,0x12,0x12,0x14,0x88,0x88,0xff,0xa8,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x00,0x92,0x49,0x49 -+// 27382 櫶 ; -+,0x08,0x0b,0x0a,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x49,0x09,0x08,0x0a,0x0a,0x08,0x20,0xff,0x22,0xfc,0x20,0xfc,0x20,0xfe,0x20,0xfe,0x4a,0xfe,0x20,0x91,0x85,0x7c -+// 27383 櫷 ; -+,0x10,0x10,0x11,0x7b,0x12,0x3b,0x30,0x57,0x51,0x17,0x11,0x17,0x11,0x17,0x10,0x10,0x80,0xf8,0x10,0xfe,0x52,0xde,0x50,0x5f,0x51,0xdb,0x55,0xdb,0x5f,0x50,0x51,0x7f -+// 27384 櫸 ; -+,0x10,0x13,0x12,0x13,0x7e,0x13,0x3a,0x37,0x50,0x51,0x16,0x10,0x13,0x10,0x10,0x10,0xa0,0x36,0x22,0xb6,0x12,0x56,0x52,0xff,0xa8,0x24,0xfb,0x20,0xfe,0x20,0x20,0x20 -+// 27385 櫹 ; -+,0x10,0x17,0x10,0x11,0x7c,0x13,0x38,0x35,0x52,0x53,0x12,0x13,0x12,0x13,0x12,0x14,0x88,0xff,0xa8,0xfe,0x22,0xff,0x22,0xfe,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0x22 -+// 27386 櫺 ; -+,0x10,0x11,0x10,0x7b,0x12,0x39,0x30,0x51,0x50,0x17,0x15,0x15,0x15,0x17,0x15,0x10,0x00,0xfe,0x20,0xff,0x22,0xac,0x20,0xac,0x00,0x77,0x55,0x55,0x55,0x77,0x55,0x00 -+// 27387 櫻 ; -+,0x09,0x09,0x09,0x09,0x7d,0x09,0x1d,0x1a,0x29,0x48,0x0b,0x08,0x08,0x08,0x0b,0x08,0xef,0x29,0xef,0x29,0xef,0x29,0xef,0xc6,0x29,0x20,0xff,0x48,0xd0,0x30,0xce,0x02 -+// 27388 櫼 ; -+,0x10,0x11,0x11,0x12,0x7f,0x11,0x3b,0x31,0x57,0x51,0x17,0x11,0x11,0x17,0x10,0x10,0x08,0x28,0x2a,0xd9,0xff,0x48,0x78,0x4a,0x7a,0x46,0x74,0x44,0x75,0x8b,0x31,0x00 -+// 27389 櫽 ; -+,0x1e,0x12,0x14,0x18,0x18,0x14,0x15,0x14,0x1c,0x11,0x12,0x00,0x3f,0x01,0x06,0x18,0xfe,0x54,0xfe,0x10,0xff,0x02,0xff,0x02,0xfe,0x55,0x7d,0x80,0xfe,0xc0,0xb0,0x8e -+// 27390 櫾 ; -+,0x10,0x17,0x10,0x15,0x7d,0x12,0x3b,0x35,0x51,0x57,0x11,0x15,0x15,0x17,0x10,0x10,0x06,0xd8,0x08,0x48,0x52,0x3c,0xc8,0x12,0x3f,0xc9,0x08,0x5a,0x69,0xc9,0x28,0x10 -+// 27391 櫿 ; -+,0x08,0x08,0x09,0x7e,0x08,0x1c,0x1b,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x44,0x44,0x55,0xee,0x44,0xaa,0xff,0x02,0x7c,0x44,0x7c,0x00,0xfe,0x82,0xfe,0x82 -+// 27392 欀 ; -+,0x08,0x0b,0x08,0x09,0x7d,0x09,0x1c,0x19,0x28,0x29,0x48,0x0b,0x09,0x0e,0x08,0x08,0x20,0xff,0x00,0xce,0x4a,0xce,0x48,0xfe,0x48,0xfe,0x48,0xff,0x88,0xa6,0xc4,0x83 -+// 27393 欁 ; -+,0x11,0x17,0x15,0x7f,0x15,0x3f,0x30,0x57,0x54,0x17,0x14,0x17,0x15,0x19,0x11,0x11,0x44,0xf4,0x54,0xf4,0x5f,0xf4,0x04,0xec,0x0e,0xd6,0x15,0xe5,0x54,0x24,0x94,0x04 -+// 27394 欂 ; -+,0x10,0x13,0x10,0x7c,0x11,0x38,0x36,0x51,0x50,0x11,0x11,0x12,0x16,0x12,0x12,0x12,0x88,0xff,0x88,0x12,0x7f,0x90,0x7e,0x52,0x7e,0x52,0x7e,0x04,0xff,0x04,0x14,0x08 -+// 27395 欃 ; -+,0x10,0x11,0x13,0x11,0x7d,0x11,0x39,0x35,0x51,0x57,0x11,0x11,0x11,0x10,0x11,0x16,0xfc,0x08,0xfe,0x02,0xfe,0x08,0xce,0x09,0xff,0x10,0xfe,0x12,0xfe,0x50,0x91,0x0f -+// 27396 欄 ; -+,0x13,0x12,0x13,0x12,0x7f,0x12,0x3b,0x36,0x53,0x52,0x13,0x12,0x12,0x13,0x12,0x12,0xdf,0x51,0xdf,0x51,0xdf,0x21,0xfd,0x21,0xff,0xa9,0xff,0x71,0xad,0x25,0x21,0x03 -+// 27397 欅 ; -+,0x10,0x11,0x11,0x11,0x7d,0x11,0x39,0x37,0x50,0x51,0x16,0x10,0x10,0x11,0x10,0x10,0xa0,0x36,0xa2,0x26,0x92,0x56,0x52,0xff,0x84,0x7a,0x21,0xfc,0x20,0xfe,0x20,0x60 -+// 27398 欆 ; -+,0x12,0x12,0x13,0x7e,0x17,0x3a,0x37,0x52,0x53,0x10,0x11,0x10,0x10,0x10,0x10,0x13,0x94,0x94,0xdf,0xb4,0xdf,0x94,0xdf,0x94,0xdf,0x00,0xfc,0x88,0x50,0x30,0xce,0x04 -+// 27399 欇 ; -+,0x09,0x08,0x08,0x08,0x7e,0x09,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x0b,0x08,0x08,0xff,0x54,0x4c,0x64,0x54,0xff,0x04,0xff,0x2a,0xee,0x2a,0xee,0x2b,0xfe,0x22,0x22 -+// 27400 欈 ; -+,0x08,0x09,0x09,0x7e,0x09,0x1a,0x1c,0x2a,0x28,0x48,0x09,0x09,0x09,0x09,0x09,0x09,0x10,0x11,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x90,0xff,0x45,0xfb,0x49,0x79,0x03 -+// 27401 欉 ; -+,0x09,0x08,0x0b,0x7c,0x09,0x1c,0x1a,0x28,0x2b,0x49,0x09,0x09,0x09,0x09,0x0b,0x08,0x54,0xd8,0xff,0x48,0xfe,0x20,0xfe,0x20,0xff,0x40,0xde,0x54,0xc8,0x54,0xe7,0x42 -+// 27402 權 ; -+,0x08,0x0b,0x08,0x09,0x7d,0x09,0x1c,0x1a,0x28,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x48,0xff,0x48,0xee,0x2a,0xee,0x50,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 27403 欋 ; -+,0x13,0x12,0x13,0x12,0x7f,0x12,0x3b,0x35,0x52,0x51,0x13,0x15,0x11,0x11,0x11,0x11,0xde,0x52,0xde,0x52,0xde,0x52,0xde,0xac,0xd2,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff -+// 27404 欌 ; -+,0x10,0x17,0x10,0x7c,0x11,0x3d,0x35,0x57,0x51,0x17,0x15,0x15,0x15,0x1a,0x12,0x14,0x90,0xff,0x90,0x0a,0xff,0x08,0xf8,0x48,0xf9,0x15,0xf6,0x44,0xed,0x13,0x23,0x01 -+// 27405 欍 ; -+,0x08,0x09,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x09,0x09,0x09,0x09,0x09,0x44,0xff,0x44,0x10,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x8e,0x02,0xce,0x02,0xce -+// 27406 欎 ; -+,0x09,0x3e,0x09,0x1d,0x2a,0x49,0x3f,0x20,0x0f,0x0a,0x09,0x0f,0x0a,0x09,0x0d,0x08,0x48,0xbf,0x48,0x5c,0xab,0x48,0xff,0x02,0x84,0xff,0x84,0xa4,0x14,0x04,0x14,0x08 -+// 27407 欏 ; -+,0x10,0x13,0x12,0x13,0x7c,0x11,0x3a,0x37,0x51,0x52,0x17,0x10,0x15,0x15,0x10,0x10,0x00,0xff,0x49,0xff,0x00,0x14,0x1f,0xb4,0x14,0x9f,0x94,0x1f,0x54,0x54,0x1f,0x10 -+// 27408 欐 ; -+,0x13,0x10,0x13,0x13,0x7e,0x10,0x39,0x35,0x51,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0xdf,0x00,0xde,0x5a,0x52,0x20,0xff,0x48,0xfe,0x4a,0xfe,0x88,0xee,0x89,0xe9,0x87 -+// 27409 欑 ; -+,0x12,0x13,0x14,0x13,0x7d,0x11,0x3a,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x10,0x13,0x94,0xdf,0xa4,0xdf,0x84,0xad,0xd7,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06 -+// 27410 欒 ; -+,0x08,0x0b,0x14,0x39,0x10,0x3d,0x00,0x35,0x55,0x01,0x00,0x7f,0x01,0x06,0x18,0x00,0x84,0xe4,0x09,0xde,0x04,0xde,0x00,0xd5,0x55,0xc0,0x80,0xff,0xc0,0xb0,0x8e,0x84 -+// 27411 欓 ; -+,0x11,0x10,0x13,0x7e,0x10,0x30,0x3b,0x56,0x53,0x10,0x11,0x10,0x13,0x10,0x12,0x12,0x24,0xa8,0xff,0x8a,0xf8,0x00,0xfe,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x00,0x49,0x49 -+// 27412 欔 ; -+,0x11,0x11,0x11,0x11,0x7d,0x11,0x38,0x31,0x53,0x55,0x11,0x11,0x10,0x10,0x10,0x11,0xef,0xad,0x6b,0xad,0x6b,0xef,0x90,0xff,0x10,0xff,0x10,0xff,0x84,0x48,0x30,0xcf -+// 27413 欕 ; -+,0x11,0x11,0x11,0x10,0x7b,0x12,0x3a,0x37,0x52,0x52,0x12,0x12,0x14,0x15,0x18,0x10,0xde,0x52,0xde,0x00,0xff,0xe8,0x48,0xef,0xaa,0xfa,0xaa,0xe4,0xa4,0xea,0x33,0x22 -+// 27414 欖 ; -+,0x13,0x12,0x13,0x12,0x7b,0x12,0x3b,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x10,0x13,0xd0,0x9f,0xd8,0x64,0xdf,0x95,0xdf,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfd,0x51,0x9f -+// 27415 欗 ; -+,0x10,0x17,0x10,0x7b,0x13,0x3a,0x37,0x52,0x53,0x12,0x13,0x12,0x12,0x13,0x12,0x12,0x88,0xff,0x88,0xdf,0x55,0xd3,0xdf,0x21,0xfd,0xb5,0xfd,0x71,0xa9,0x29,0x21,0x03 -+// 27416 欘 ; -+,0x13,0x12,0x13,0x12,0x7e,0x12,0x3a,0x36,0x52,0x52,0x12,0x13,0x12,0x14,0x14,0x18,0xfe,0x02,0xfe,0x54,0x38,0x54,0xfe,0xaa,0xfe,0x40,0xff,0xa9,0xf9,0x21,0xf9,0x0b -+// 27417 欙 ; -+,0x11,0x11,0x11,0x11,0x7f,0x15,0x37,0x3d,0x57,0x50,0x11,0x10,0x13,0x10,0x11,0x12,0xfc,0x24,0xfc,0x24,0xff,0x55,0xdf,0x55,0xff,0x48,0xf0,0x44,0xfe,0x20,0x22,0x62 -+// 27418 欚 ; -+,0x10,0x10,0x10,0x10,0x7c,0x13,0x38,0x33,0x50,0x53,0x11,0x17,0x15,0x17,0x11,0x17,0x40,0x7c,0x88,0xf8,0x10,0xff,0xa4,0x78,0xb4,0x53,0xb4,0xdf,0x55,0xdf,0x45,0xdf -+// 27419 欛 ; -+,0x10,0x10,0x13,0x12,0x7d,0x10,0x39,0x35,0x53,0x51,0x11,0x10,0x13,0x12,0x17,0x10,0xfe,0x20,0xff,0x22,0xac,0x20,0xac,0x40,0xee,0x4a,0xce,0x8a,0xee,0xaa,0xea,0x96 -+// 27420 欜 ; -+,0x10,0x13,0x11,0x11,0x7c,0x13,0x3b,0x35,0x50,0x51,0x10,0x13,0x10,0x17,0x11,0x12,0x20,0xff,0x22,0xfe,0x20,0xff,0x55,0xdc,0x88,0xfc,0x88,0xfe,0x88,0xff,0x94,0xce -+// 27421 欝 ; -+,0x08,0x09,0x3e,0x09,0x1c,0x29,0x1f,0x12,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x16,0x1a,0x08,0x48,0x9f,0x4c,0x9a,0x69,0xfc,0x24,0xfc,0x00,0x04,0x7f,0x24,0x14,0x04,0x0c -+// 27422 欞 ; -+,0x11,0x10,0x13,0x12,0x7d,0x18,0x35,0x33,0x52,0x53,0x10,0x13,0x11,0x11,0x12,0x17,0xfe,0x20,0xff,0x22,0xac,0x20,0xac,0xfe,0x92,0xfe,0x00,0xfe,0x24,0x24,0xaa,0xff -+// 27423 欟 ; -+,0x12,0x12,0x17,0x12,0x7f,0x15,0x3f,0x35,0x57,0x5d,0x17,0x15,0x17,0x15,0x17,0x14,0x80,0x9e,0xf2,0x9e,0xd2,0x52,0xde,0x12,0xd2,0x1e,0xcc,0x0c,0xcd,0x15,0xd3,0x20 -+// 27424 欠 ; -+,0x04,0x06,0x04,0x0f,0x08,0x10,0x20,0x40,0x01,0x01,0x02,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0x00,0xfe,0x04,0x88,0x90,0x80,0x40,0x40,0x20,0x20,0x18,0x0f,0x04,0x00 -+// 27425 次 ; -+,0x00,0x20,0x12,0x12,0x15,0x05,0x0a,0x08,0x10,0x70,0x20,0x21,0x22,0x0c,0x30,0x00,0x80,0x80,0x80,0xff,0x22,0x24,0x20,0x20,0x60,0x50,0x90,0x08,0x04,0x07,0x02,0x00 -+// 27426 欢 ; -+,0x00,0x00,0x7e,0x02,0x42,0x25,0x14,0x08,0x0c,0x0c,0x12,0x12,0x20,0x43,0x1c,0x00,0x40,0x40,0x40,0xff,0x82,0x24,0x20,0x20,0x20,0x30,0x50,0x48,0x8c,0x07,0x02,0x00 -+// 27427 欣 ; -+,0x01,0x1e,0x10,0x10,0x10,0x1f,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x03,0x00,0xa0,0x20,0x20,0x3f,0x42,0x54,0x90,0x10,0x10,0x10,0x28,0x24,0x44,0x83,0x02,0x00 -+// 27428 欤 ; -+,0x10,0x10,0x10,0x1f,0x10,0x10,0x1f,0x01,0x01,0x0d,0x71,0x01,0x01,0x01,0x05,0x02,0x20,0x20,0x20,0x20,0x7f,0x42,0x90,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27429 欥 ; -+,0x00,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x01,0x06,0x40,0x40,0x40,0x7f,0x82,0x84,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x84,0x07,0x02 -+// 27430 欦 ; -+,0x04,0x04,0x0c,0x0a,0x11,0x28,0x44,0x04,0x3f,0x01,0x02,0x02,0x04,0x04,0x08,0x03,0x00,0x20,0x20,0x20,0x7f,0x42,0x92,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x83,0x02 -+// 27431 欧 ; -+,0x00,0x3f,0x20,0x31,0x29,0x2a,0x26,0x24,0x26,0x29,0x29,0x30,0x3f,0x01,0x06,0x00,0x20,0xa0,0x20,0x3f,0x42,0x94,0x10,0x10,0x10,0x10,0x30,0x28,0x44,0x87,0x02,0x00 -+// 27432 欨 ; -+,0x10,0x10,0x10,0x3f,0x20,0x40,0x1c,0x14,0x14,0x1c,0x14,0x00,0x00,0x05,0x02,0x00,0x10,0x10,0x20,0xbf,0xc2,0x94,0x90,0x90,0x90,0x90,0xa8,0xa8,0xa4,0x47,0x82,0x00 -+// 27433 欩 ; -+,0x00,0x7f,0x11,0x11,0x21,0x25,0x42,0x00,0x3f,0x21,0x21,0x21,0x3f,0x20,0x03,0x00,0x20,0x20,0x20,0x3f,0x42,0x54,0x90,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27434 欪 ; -+,0x04,0x04,0x25,0x25,0x25,0x3f,0x04,0x04,0x25,0x25,0x25,0x25,0x3f,0x00,0x03,0x00,0x10,0x10,0x10,0x3f,0x22,0x44,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27435 欫 ; -+,0x08,0x08,0x10,0x3f,0x44,0x04,0x7f,0x04,0x17,0x14,0x14,0x15,0x1e,0x60,0x03,0x00,0x10,0x10,0x10,0xbf,0x22,0x54,0x90,0x10,0x90,0x10,0x28,0xa8,0x44,0x83,0x02,0x00 -+// 27436 欬 ; -+,0x08,0x04,0x7f,0x08,0x09,0x11,0x3e,0x04,0x09,0x11,0x62,0x06,0x19,0x60,0x03,0x00,0x10,0x10,0x90,0x3f,0x22,0x44,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x83,0x02,0x00 -+// 27437 欭 ; -+,0x00,0x3f,0x24,0x24,0x24,0x3f,0x24,0x24,0x2a,0x29,0x30,0x3f,0x20,0x00,0x03,0x00,0x10,0x90,0x90,0xbf,0xa1,0xca,0x88,0x88,0x88,0x88,0x94,0x94,0x22,0xc2,0x03,0x00 -+// 27438 欮 ; -+,0x21,0x11,0x0a,0x7f,0x04,0x25,0x25,0x25,0x25,0x3f,0x04,0x08,0x08,0x10,0x63,0x00,0x10,0x10,0x10,0xbf,0x22,0x54,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27439 欯 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x1f,0x00,0x1f,0x11,0x11,0x11,0x11,0x1f,0x11,0x00,0x10,0x10,0x10,0x9f,0x22,0x2a,0x48,0x08,0x08,0x08,0x18,0x14,0x24,0x43,0x82,0x00 -+// 27440 欰 ; -+,0x04,0x04,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x7c,0x00,0x03,0x0c,0x10,0x10,0x10,0xbf,0xa2,0xd2,0x90,0x90,0x90,0x90,0xa8,0xa8,0x44,0x84,0x03,0x02 -+// 27441 欱 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x40,0x00,0x1f,0x11,0x11,0x11,0x1f,0x10,0x03,0x00,0x20,0x20,0x20,0x3f,0xc2,0x52,0x90,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27442 欲 ; -+,0x08,0x0a,0x11,0x11,0x24,0x04,0x0a,0x11,0x3f,0x51,0x11,0x11,0x1f,0x10,0x03,0x00,0x10,0x10,0x20,0x3f,0x42,0x94,0x10,0x10,0x90,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27443 欳 ; -+,0x04,0x04,0x07,0x04,0x3f,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2a,0x20,0x21,0x00,0x10,0x10,0x90,0x3f,0xa2,0xd4,0x90,0x90,0x90,0x90,0xa8,0xa8,0xc4,0xc7,0x82,0x00 -+// 27444 欴 ; -+,0x08,0x04,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x24,0x22,0x25,0x29,0x30,0x20,0x03,0x20,0x20,0x20,0x3f,0x42,0x44,0x90,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 27445 欵 ; -+,0x10,0x13,0x1c,0x11,0x0f,0x00,0x10,0x1f,0x24,0x04,0x7f,0x04,0x0a,0x09,0x11,0x21,0x20,0x20,0x20,0x3f,0x42,0x54,0x90,0x10,0x10,0x10,0x18,0x24,0x24,0x42,0x83,0x02 -+// 27446 欶 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x24,0x24,0x3f,0x04,0x0e,0x0d,0x14,0x24,0x44,0x07,0x04,0x10,0x10,0xd0,0x20,0xbf,0xd2,0x90,0x90,0x10,0x10,0x28,0xa8,0x44,0x86,0x03,0x02 -+// 27447 欷 ; -+,0x11,0x0a,0x06,0x19,0x04,0x7f,0x14,0x3f,0x54,0x14,0x14,0x16,0x15,0x04,0x04,0x05,0x10,0x10,0x10,0x3f,0x22,0xd2,0x50,0x90,0x90,0x90,0xa8,0xa8,0x44,0x44,0x83,0x02 -+// 27448 欸 ; -+,0x08,0x08,0x11,0x3f,0x00,0x10,0x1f,0x24,0x7f,0x04,0x04,0x0a,0x09,0x10,0x63,0x00,0x10,0x10,0x10,0xbf,0xa2,0x54,0x10,0x10,0x90,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 27449 欹 ; -+,0x04,0x04,0x3f,0x04,0x0a,0x11,0x7f,0x01,0x1d,0x15,0x15,0x1d,0x01,0x01,0x05,0x02,0x10,0x10,0x90,0x20,0x3f,0x42,0x94,0x10,0x10,0x10,0x10,0x28,0x24,0x44,0x43,0x82 -+// 27450 欺 ; -+,0x11,0x11,0x3f,0x11,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x00,0x12,0x11,0x21,0x40,0x03,0x10,0x10,0x90,0x3f,0x22,0x44,0x10,0x10,0x10,0x90,0x28,0x28,0x44,0x44,0x83,0x02 -+// 27451 欻 ; -+,0x04,0x04,0x05,0x26,0x24,0x0a,0x11,0x64,0x04,0x15,0x16,0x04,0x0a,0x11,0x61,0x00,0x10,0x10,0x90,0x20,0x3f,0x52,0x14,0x10,0x10,0x10,0x10,0x28,0x24,0x47,0x82,0x00 -+// 27452 欼 ; -+,0x00,0x7b,0x4a,0x32,0x29,0x42,0x04,0x7b,0x08,0x2a,0x11,0x19,0x2a,0x2c,0x41,0x00,0x10,0xd0,0x90,0x9f,0x22,0xa2,0x48,0xc8,0x48,0x88,0x14,0x94,0x62,0x43,0x82,0x00 -+// 27453 欽 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3f,0x08,0x4a,0x2c,0x2b,0x0c,0x70,0x00,0x03,0x20,0x20,0x20,0x7f,0x42,0x94,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 27454 款 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x00,0x00,0x3f,0x00,0x7f,0x04,0x25,0x25,0x44,0x14,0x09,0x20,0x20,0xa0,0x3f,0x42,0x94,0x10,0x10,0x10,0x90,0x28,0x28,0x44,0x46,0x83,0x02 -+// 27455 欿 ; -+,0x10,0x10,0x3f,0x22,0x44,0x10,0x67,0x41,0x41,0x77,0x41,0x41,0x7f,0x40,0x03,0x00,0x10,0x10,0x10,0x3f,0x22,0x44,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27456 歀 ; -+,0x04,0x04,0x3f,0x0e,0x15,0x64,0x00,0x1f,0x00,0x7f,0x04,0x25,0x24,0x44,0x14,0x08,0x08,0x08,0x90,0x1f,0x22,0x84,0x00,0x08,0x08,0x88,0x08,0x14,0x94,0xa2,0x23,0x42 -+// 27457 歁 ; -+,0x11,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x2a,0x2a,0x29,0x30,0x3f,0x00,0x03,0x10,0x10,0x90,0x3f,0x22,0x54,0x10,0x10,0xd0,0x10,0x10,0xa8,0x28,0xc4,0x83,0x02 -+// 27458 歂 ; -+,0x04,0x24,0x24,0x3f,0x00,0x7f,0x04,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x21,0x10,0x90,0x90,0x9f,0x21,0xaa,0x48,0x08,0x88,0x88,0x88,0x94,0x94,0xa2,0xc3,0x82 -+// 27459 歃 ; -+,0x00,0x03,0x3c,0x04,0x7f,0x04,0x14,0x25,0x24,0x35,0x24,0x24,0x3f,0x20,0x01,0x06,0x10,0x90,0x10,0x3f,0xa1,0x42,0x10,0x90,0x90,0xa8,0xa8,0xc8,0xc4,0x84,0x03,0x02 -+// 27460 歄 ; -+,0x00,0x1f,0x11,0x1d,0x15,0x15,0x3f,0x20,0x2e,0x2a,0x2a,0x2e,0x20,0x20,0x22,0x21,0x10,0x10,0x10,0x3f,0x21,0x42,0x88,0x88,0x88,0x88,0x88,0x94,0x94,0xa2,0xc3,0x02 -+// 27461 歅 ; -+,0x00,0x3f,0x0a,0x3f,0x2a,0x2a,0x3f,0x04,0x04,0x3f,0x04,0x05,0x0e,0x70,0x01,0x06,0x10,0x90,0x10,0xbf,0xa2,0xc4,0x90,0x10,0x10,0x90,0x10,0xa8,0x28,0x44,0x87,0x02 -+// 27462 歆 ; -+,0x08,0x04,0x3f,0x12,0x12,0x0c,0x7f,0x00,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x20,0x20,0x20,0x7f,0x42,0x94,0x90,0x10,0x10,0x10,0x28,0x28,0x48,0x44,0x87,0x02 -+// 27463 歇 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x08,0x1f,0x64,0x24,0x2a,0x31,0x3f,0x00,0x06,0x01,0x00,0x10,0x10,0x3f,0x22,0x44,0x10,0x90,0x90,0x90,0x90,0xa8,0xa8,0xc4,0x87,0x02 -+// 27464 歈 ; -+,0x04,0x06,0x09,0x10,0x6f,0x00,0x38,0x2a,0x3a,0x2a,0x3a,0x2a,0x2a,0x2a,0x38,0x29,0x10,0x10,0x10,0xbf,0x22,0x54,0x90,0x90,0x90,0x90,0x90,0xa8,0xa8,0xc4,0x87,0x82 -+// 27465 歉 ; -+,0x10,0x08,0x09,0x3f,0x0a,0x3f,0x0a,0x7f,0x0a,0x3f,0x0b,0x1a,0x2a,0x4a,0x0a,0x0a,0x90,0x90,0x10,0xdf,0x12,0xa4,0x88,0xe8,0x88,0x88,0x14,0x94,0xa4,0x22,0x43,0x82 -+// 27466 歊 ; -+,0x08,0x04,0x7f,0x00,0x1e,0x12,0x1e,0x00,0x7f,0x41,0x5d,0x55,0x5d,0x41,0x45,0x42,0x20,0x20,0xa0,0x20,0x7f,0x42,0x94,0x10,0x10,0x10,0x18,0x28,0x24,0x46,0x83,0x02 -+// 27467 歋 ; -+,0x03,0x3e,0x23,0x22,0x2f,0x2a,0x2f,0x2a,0x2b,0x28,0x2b,0x2a,0x32,0x54,0x68,0x00,0xc8,0x08,0x88,0x1f,0xd2,0xa2,0xc8,0x08,0xc8,0x08,0x8c,0x94,0xd2,0xa3,0xc2,0x00 -+// 27468 歌 ; -+,0x00,0x3f,0x01,0x3d,0x25,0x3d,0x01,0x7f,0x01,0x3d,0x25,0x25,0x3d,0x01,0x05,0x02,0x10,0x90,0x20,0x3f,0x42,0x94,0x10,0xd0,0x10,0x10,0x10,0x28,0x24,0x46,0x83,0x02 -+// 27469 歍 ; -+,0x04,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x3f,0x00,0x6a,0x55,0x00,0x00,0x06,0x01,0x10,0x10,0x20,0x3f,0x42,0x94,0x10,0x10,0x90,0x90,0xa8,0xa8,0xa4,0xc4,0xc3,0x02 -+// 27470 歎 ; -+,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x7f,0x0c,0x0a,0x12,0x61,0x20,0xa0,0x20,0x7f,0x42,0x94,0x90,0x90,0x10,0x90,0x10,0xa8,0x28,0x44,0x83,0x02 -+// 27471 歏 ; -+,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x07,0x78,0x01,0x10,0xd0,0x10,0x1f,0x21,0xa2,0xd4,0x90,0x10,0x90,0x10,0xa8,0x28,0xc4,0x83,0x02 -+// 27472 歐 ; -+,0x00,0x7f,0x40,0x4f,0x49,0x4f,0x40,0x7b,0x6a,0x6a,0x7b,0x40,0x40,0x7f,0x01,0x00,0x10,0x90,0x10,0x3f,0x21,0x52,0x14,0x90,0x90,0x90,0x90,0x28,0x24,0x47,0x82,0x00 -+// 27473 歑 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x27,0x20,0x2f,0x2a,0x3f,0x22,0x42,0x4a,0x04,0x10,0x90,0x10,0xdf,0xa1,0xaa,0x4a,0x88,0x08,0x88,0x88,0xd4,0x14,0x22,0x43,0x82 -+// 27474 歒 ; -+,0x08,0x04,0x7f,0x11,0x0a,0x3f,0x24,0x3f,0x24,0x2e,0x2a,0x2a,0x2e,0x20,0x22,0x21,0x10,0x10,0xd0,0x1f,0x22,0xa4,0xc8,0x88,0x88,0x88,0x88,0x94,0x94,0xa2,0xa3,0x42 -+// 27475 歓 ; -+,0x10,0x1f,0x24,0x44,0x3f,0x0c,0x12,0x3f,0x52,0x1f,0x12,0x1f,0x12,0x1f,0x10,0x11,0x10,0x90,0x20,0x3f,0xc2,0x54,0x10,0x90,0x10,0x90,0x10,0xa8,0x28,0x44,0x87,0x02 -+// 27476 歔 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x27,0x20,0x25,0x35,0x2d,0x25,0x46,0x58,0x01,0x08,0x88,0x10,0xdf,0xa1,0x52,0x14,0x90,0x10,0x50,0x90,0x28,0xa8,0x44,0x83,0x02 -+// 27477 歕 ; -+,0x04,0x7f,0x15,0x7f,0x11,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x3f,0x00,0x12,0x11,0x21,0x10,0xd0,0x10,0xdf,0x21,0xaa,0xc8,0x88,0x88,0x88,0x94,0x94,0x24,0x22,0x43,0x02 -+// 27478 歖 ; -+,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x21,0x3f,0x12,0x0c,0x7f,0x00,0x3f,0x21,0x3f,0x00,0x10,0xd0,0x10,0xbf,0x21,0x22,0x48,0x08,0x08,0x08,0x94,0x14,0x24,0x22,0x43,0x82 -+// 27479 歗 ; -+,0x02,0x1f,0x02,0x7f,0x02,0x1f,0x02,0x2b,0x3b,0x22,0x3f,0x22,0x3b,0x2b,0x42,0x42,0x00,0xc8,0x48,0xef,0x52,0xd2,0x28,0x48,0xc8,0x48,0xc8,0x48,0xd4,0x54,0x63,0x42 -+// 27480 歘 ; -+,0x02,0x0a,0x07,0x03,0x0c,0x30,0x10,0x16,0x59,0x30,0x18,0x15,0x22,0x4c,0x00,0x01,0x08,0x88,0x08,0x1f,0x91,0x2a,0x88,0xa8,0xc8,0x88,0xd8,0x54,0x24,0x22,0x43,0x82 -+// 27481 歙 ; -+,0x04,0x06,0x09,0x1f,0x60,0x1f,0x11,0x1f,0x00,0x7b,0x08,0x2a,0x19,0x2a,0x48,0x19,0x10,0x10,0x90,0x9f,0x21,0x2a,0x4a,0x08,0x08,0x88,0x94,0x94,0xa4,0xa2,0xc3,0x82 -+// 27482 歚 ; -+,0x10,0x09,0x3f,0x04,0x3f,0x04,0x3f,0x24,0x15,0x7f,0x00,0x3f,0x21,0x21,0x3f,0x00,0x90,0x10,0xd0,0x3f,0xa1,0x42,0xc8,0x88,0x08,0xc8,0x18,0x14,0x24,0x22,0x43,0x82 -+// 27483 歛 ; -+,0x04,0x06,0x09,0x10,0x6f,0x00,0x3b,0x2a,0x2a,0x3b,0x00,0x11,0x11,0x2a,0x2a,0x44,0x10,0x10,0x10,0xbf,0x22,0x44,0x90,0x90,0x90,0x90,0x10,0x18,0x28,0xa4,0xc7,0x82 -+// 27484 歜 ; -+,0x00,0x3f,0x2a,0x3f,0x10,0x1f,0x28,0x48,0x3e,0x2a,0x3e,0x0a,0x3e,0x00,0x02,0x01,0x10,0x90,0x90,0x9f,0x22,0xa4,0xc0,0x88,0x88,0x88,0x94,0x94,0xa4,0xa2,0xc3,0x02 -+// 27485 歝 ; -+,0x3f,0x2a,0x2a,0x3f,0x04,0x3f,0x04,0x7f,0x11,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x90,0x90,0x90,0xbf,0x21,0xc2,0x08,0xc8,0x08,0x88,0x14,0x94,0x22,0x22,0x43,0x82 -+// 27486 歞 ; -+,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x09,0x12,0x3b,0x11,0x2a,0x7b,0x00,0x2a,0x6a,0x01,0x08,0x88,0x88,0x88,0x9f,0x91,0x22,0x88,0x08,0x08,0x88,0xd4,0x14,0xa2,0x43,0x82 -+// 27487 歟 ; -+,0x04,0x15,0x24,0x24,0x37,0x22,0x3b,0x2a,0x2a,0x7f,0x00,0x09,0x10,0x60,0x01,0x00,0x08,0x88,0x88,0x9f,0x91,0xaa,0x88,0x88,0x88,0xc8,0x14,0x14,0xa4,0x42,0x83,0x02 -+// 27488 歠 ; -+,0x7b,0x2a,0x11,0x6a,0x7b,0x2a,0x11,0x6a,0x3f,0x0a,0x3f,0x2a,0x3b,0x20,0x3f,0x20,0xd0,0x90,0x10,0x9f,0xe2,0xa4,0x88,0x48,0xc8,0x08,0x94,0x94,0xa4,0xa6,0xc3,0x82 -+// 27489 歡 ; -+,0x11,0x7f,0x11,0x3b,0x2a,0x3b,0x14,0x1f,0x34,0x5f,0x14,0x1f,0x14,0x14,0x1f,0x10,0x10,0xd0,0x10,0xbf,0xa2,0xc4,0x10,0x90,0x10,0x90,0x10,0xa8,0x28,0x44,0xc3,0x82 -+// 27490 止 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x7f,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x7e,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xff,0x00 -+// 27491 正 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x7f,0x00,0x00,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x7e,0x40,0x40,0x40,0x40,0x40,0xff,0x00,0x00 -+// 27492 此 ; -+,0x02,0x02,0x02,0x02,0x12,0x13,0x12,0x12,0x12,0x12,0x12,0x13,0x1c,0x70,0x00,0x00,0x20,0x20,0x20,0x20,0x23,0xac,0x30,0x20,0x20,0x20,0x20,0xa1,0x21,0x21,0x1f,0x00 -+// 27493 步 ; -+,0x00,0x00,0x04,0x04,0x04,0x3f,0x00,0x04,0x04,0x08,0x30,0x00,0x00,0x03,0x3c,0x00,0x40,0x40,0x7c,0x40,0x40,0xff,0x40,0x40,0x44,0x46,0x48,0x10,0x60,0x80,0x00,0x00 -+// 27494 武 ; -+,0x00,0x00,0x1f,0x00,0x7f,0x00,0x02,0x02,0x13,0x12,0x12,0x12,0x13,0x1c,0x70,0x00,0x20,0x28,0xa4,0x20,0xff,0x20,0x20,0x10,0xd0,0x10,0x10,0x08,0x89,0x05,0x03,0x01 -+// 27495 歧 ; -+,0x04,0x04,0x04,0x05,0x24,0x27,0x24,0x25,0x24,0x24,0x27,0x78,0x00,0x00,0x0f,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x84,0x44,0x48,0x30,0x30,0xc8,0x07,0x02 -+// 27496 歨 ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x7f,0x00,0x08,0x08,0x08,0x08,0x14,0x13,0x20,0x00,0x40,0x40,0x7e,0x40,0x40,0x40,0xff,0x40,0x40,0x7e,0x40,0x40,0x40,0x40,0xff,0x00 -+// 27497 歩 ; -+,0x00,0x00,0x08,0x08,0x08,0x7f,0x00,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x03,0x3c,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0x88,0x84,0x83,0x8a,0x90,0xa0,0xc0,0x00,0x00 -+// 27498 歪 ; -+,0x00,0x3f,0x00,0x01,0x06,0x38,0x00,0x3f,0x00,0x00,0x08,0x08,0x08,0x08,0x7f,0x00,0x00,0xfe,0x40,0xb0,0x8c,0x83,0x81,0xfe,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 27499 歫 ; -+,0x04,0x04,0x04,0x04,0x24,0x27,0x24,0x24,0x24,0x24,0x24,0x27,0x38,0x60,0x00,0x00,0x00,0x7f,0x40,0x40,0x40,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x40,0x7f,0x00 -+// 27500 歬 ; -+,0x00,0x08,0x08,0x08,0x7f,0x01,0x0f,0x09,0x08,0x7f,0x09,0x08,0x08,0x10,0x10,0x20,0x80,0xfc,0x80,0x80,0xff,0x00,0xf8,0x08,0x88,0xff,0x08,0x88,0x08,0x08,0x28,0x10 -+// 27501 歭 ; -+,0x00,0x08,0x08,0x08,0x08,0x2d,0x28,0x28,0x29,0x28,0x2e,0x70,0x00,0x00,0x00,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x08,0x08,0xff,0x88,0x48,0x08,0x08,0x08,0x28,0x10 -+// 27502 歮 ; -+,0x00,0x00,0x04,0x04,0x04,0x7f,0x00,0x04,0x04,0x07,0x24,0x24,0x24,0x24,0x7f,0x00,0x40,0x40,0x7e,0x40,0x40,0xff,0x00,0x08,0x08,0x0f,0x48,0x48,0x48,0x48,0xff,0x00 -+// 27503 歯 ; -+,0x00,0x08,0x08,0x08,0x7f,0x00,0x14,0x12,0x11,0x1f,0x11,0x12,0x1c,0x10,0x1f,0x00,0x80,0x80,0xfc,0x80,0xff,0x80,0x94,0xa4,0xc4,0xfc,0xc4,0xb4,0x94,0x84,0xfc,0x00 -+// 27504 歰 ; -+,0x3f,0x05,0x05,0x25,0x29,0x09,0x15,0x62,0x04,0x04,0x17,0x14,0x17,0x18,0x61,0x00,0x7e,0x12,0x12,0x52,0x52,0x12,0x2a,0xc4,0x08,0x08,0x4e,0x48,0x48,0x48,0xff,0x00 -+// 27505 歱 ; -+,0x08,0x08,0x08,0x09,0x28,0x2e,0x28,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x01,0x00,0x00,0xfe,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 27506 歲 ; -+,0x00,0x04,0x04,0x3f,0x00,0x00,0x1f,0x10,0x1f,0x11,0x15,0x19,0x13,0x2c,0x31,0x40,0x40,0x78,0x40,0xff,0x24,0x22,0xff,0x20,0xe2,0x14,0x58,0x90,0x28,0x45,0x83,0x01 -+// 27507 歳 ; -+,0x00,0x08,0x08,0x3f,0x00,0x00,0x1f,0x10,0x1f,0x11,0x15,0x19,0x21,0x25,0x42,0x00,0x80,0xf8,0x80,0xff,0x28,0x24,0xff,0x20,0xd2,0x14,0x48,0x28,0x15,0x25,0x43,0x01 -+// 27508 歴 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x17,0x16,0x1a,0x12,0x10,0x12,0x22,0x22,0x42,0x1f,0x00,0x00,0xff,0x08,0x08,0xbf,0x08,0x9c,0x6b,0x08,0x40,0x40,0x7e,0x40,0x40,0xff,0x00 -+// 27509 歵 ; -+,0x08,0x09,0x08,0x08,0x2e,0x29,0x28,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x01,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 27510 歶 ; -+,0x04,0x04,0x17,0x14,0x17,0x78,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x13,0x10,0x20,0x26,0xb8,0x21,0xa1,0x1f,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0x82,0xe2,0x26 -+// 27511 歷 ; -+,0x00,0x1f,0x11,0x1e,0x12,0x1f,0x17,0x1a,0x12,0x12,0x10,0x12,0x22,0x22,0x5f,0x00,0x00,0xff,0x86,0x38,0x08,0xbf,0x1c,0xaa,0x49,0x08,0x40,0x40,0x7c,0x40,0xff,0x00 -+// 27512 歸 ; -+,0x08,0x3e,0x22,0x3e,0x20,0x3e,0x22,0x22,0x3e,0x08,0x2e,0x28,0x2e,0x70,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xff,0x92,0x10,0xfe,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 27513 歹 ; -+,0x00,0x3f,0x01,0x01,0x03,0x02,0x04,0x06,0x09,0x30,0x00,0x00,0x03,0x0c,0x70,0x00,0x00,0xff,0x00,0x00,0xfe,0x04,0x04,0x08,0x88,0x90,0x20,0xc0,0x00,0x00,0x00,0x00 -+// 27514 歺 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x08,0x0a,0x11,0x20,0x00,0x00,0x01,0x0e,0x70,0x80,0x80,0x80,0xff,0x80,0x80,0xfc,0x08,0x08,0x10,0x90,0xa0,0x40,0x80,0x00,0x00 -+// 27515 死 ; -+,0x00,0x3f,0x04,0x04,0x0f,0x08,0x10,0x19,0x25,0x45,0x02,0x02,0x04,0x18,0x60,0x00,0x00,0xff,0x20,0x20,0xa0,0xa3,0xac,0x30,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 27516 歼 ; -+,0x00,0x7f,0x08,0x08,0x0f,0x11,0x11,0x31,0x4a,0x02,0x04,0x04,0x08,0x10,0x60,0x00,0x00,0x0f,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 27517 歽 ; -+,0x00,0x7f,0x08,0x08,0x10,0x1e,0x22,0x32,0x4c,0x04,0x08,0x08,0x11,0x21,0x42,0x00,0x00,0x86,0x78,0x40,0x40,0x40,0x7f,0x48,0x48,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 27518 歾 ; -+,0x00,0x3f,0x08,0x08,0x0f,0x11,0x11,0x2a,0x26,0x44,0x04,0x0b,0x08,0x11,0x20,0x00,0x20,0x20,0x20,0x3f,0x55,0x55,0xa5,0x29,0x49,0x51,0x91,0x21,0x41,0x82,0x0a,0x04 -+// 27519 歿 ; -+,0x00,0x7f,0x08,0x08,0x08,0x1f,0x11,0x31,0x2a,0x46,0x04,0x08,0x10,0x20,0x43,0x00,0x20,0xa0,0x3e,0x42,0x42,0x8a,0x04,0x7f,0x22,0x24,0x18,0x10,0x28,0xc7,0x02,0x00 -+// 27520 殀 ; -+,0x00,0x7f,0x08,0x08,0x1f,0x11,0x22,0x3a,0x4c,0x04,0x08,0x08,0x10,0x21,0x46,0x00,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x84,0x03,0x02,0x00 -+// 27521 殁 ; -+,0x00,0x7f,0x08,0x08,0x1e,0x12,0x33,0x2a,0x44,0x04,0x08,0x08,0x10,0x20,0x47,0x00,0x00,0x78,0x48,0x49,0x49,0x87,0x00,0xfe,0x44,0x48,0x28,0x10,0x2c,0xc7,0x02,0x00 -+// 27522 殂 ; -+,0x00,0x7f,0x08,0x08,0x10,0x1f,0x22,0x32,0x4c,0x04,0x08,0x08,0x10,0x20,0x43,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0xff,0x00 -+// 27523 殃 ; -+,0x00,0x7f,0x10,0x10,0x1e,0x22,0x22,0x54,0x15,0x08,0x08,0x10,0x10,0x21,0x46,0x00,0x20,0x20,0x20,0xfc,0xa4,0xa4,0xa4,0xa4,0xff,0x20,0x50,0x48,0x8c,0x07,0x02,0x00 -+// 27524 殄 ; -+,0x00,0x7f,0x08,0x08,0x1f,0x11,0x22,0x32,0x4d,0x04,0x08,0x0b,0x10,0x20,0x47,0x00,0x10,0x10,0x10,0x28,0x44,0x97,0x22,0x40,0x88,0x10,0x62,0x84,0x18,0x60,0x80,0x00 -+// 27525 殅 ; -+,0x00,0x3f,0x08,0x08,0x1e,0x12,0x23,0x34,0x4c,0x04,0x08,0x08,0x10,0x20,0x43,0x00,0x10,0x90,0x50,0x50,0xff,0x90,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 27526 殆 ; -+,0x00,0x3f,0x08,0x08,0x1f,0x11,0x22,0x32,0x4c,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x10,0x10,0x10,0x20,0x24,0x42,0xff,0x01,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 27527 殇 ; -+,0x00,0x00,0x3f,0x08,0x09,0x1f,0x11,0x22,0x32,0x4c,0x04,0x08,0x13,0x20,0x43,0x00,0x40,0x40,0x7f,0x80,0x7c,0x08,0x10,0x7e,0x2a,0x2a,0x4a,0x92,0x22,0xc2,0x0a,0x04 -+// 27528 殈 ; -+,0x00,0x7e,0x10,0x11,0x1f,0x23,0x23,0x55,0x0d,0x05,0x09,0x09,0x11,0x21,0x47,0x00,0x20,0x20,0x40,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 27529 殉 ; -+,0x00,0x7f,0x08,0x08,0x1e,0x13,0x22,0x32,0x4c,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x20,0x20,0x40,0x7f,0x81,0x01,0x79,0x49,0x49,0x79,0x49,0x49,0x79,0x01,0x05,0x02 -+// 27530 殊 ; -+,0x00,0x00,0x7e,0x10,0x11,0x1e,0x23,0x22,0x54,0x0c,0x08,0x08,0x11,0x26,0x40,0x00,0x10,0x90,0x90,0xfe,0x10,0x10,0xff,0x30,0x38,0x58,0x54,0x94,0x13,0x12,0x10,0x10 -+// 27531 残 ; -+,0x00,0x3f,0x08,0x08,0x1f,0x11,0x21,0x32,0x4a,0x04,0x04,0x08,0x10,0x27,0x40,0x00,0x20,0xa8,0x24,0x27,0xf8,0x20,0x27,0xf8,0x10,0x14,0x18,0x18,0xe9,0x05,0x03,0x01 -+// 27532 殌 ; -+,0x00,0x7e,0x08,0x08,0x1e,0x13,0x22,0x32,0x4c,0x04,0x09,0x08,0x10,0x20,0x43,0x00,0x00,0xff,0x00,0x49,0x92,0x24,0xa4,0x52,0x52,0x00,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 27533 殍 ; -+,0x00,0x3e,0x08,0x08,0x1f,0x11,0x21,0x32,0x4a,0x05,0x04,0x08,0x10,0x20,0x40,0x00,0x0e,0xf0,0x22,0x94,0x48,0xfe,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 27534 殎 ; -+,0x00,0x7f,0x08,0x09,0x10,0x1e,0x22,0x22,0x55,0x0e,0x04,0x08,0x08,0x11,0x26,0x00,0x10,0x10,0x10,0xff,0x10,0x94,0x94,0x96,0x59,0x30,0x28,0x28,0x44,0x87,0x02,0x00 -+// 27535 殏 ; -+,0x00,0x7f,0x10,0x11,0x10,0x1e,0x22,0x22,0x54,0x0c,0x09,0x0a,0x10,0x20,0x40,0x00,0x28,0x24,0x24,0xff,0x20,0x24,0xa4,0x68,0x30,0xa8,0x24,0x26,0x22,0x20,0xa0,0x40 -+// 27536 殐 ; -+,0x00,0x7e,0x11,0x10,0x1e,0x22,0x22,0x52,0x4c,0x04,0x08,0x08,0x11,0x26,0x40,0x00,0x20,0x20,0xff,0x20,0xfe,0xa2,0xa2,0xfe,0x20,0x70,0x68,0xa4,0x27,0x22,0x20,0x20 -+// 27537 殑 ; -+,0x00,0x7f,0x08,0x08,0x10,0x1e,0x22,0x22,0x52,0x0c,0x04,0x08,0x10,0x20,0x40,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x49,0x49,0x87,0x00 -+// 27538 殒 ; -+,0x00,0x7e,0x08,0x08,0x10,0x1e,0x22,0x22,0x54,0x0c,0x08,0x10,0x20,0x40,0x03,0x00,0x00,0xfe,0x82,0xfe,0x00,0xfe,0x82,0x82,0x92,0x92,0x92,0xaa,0x24,0xc2,0x02,0x00 -+// 27539 殓 ; -+,0x00,0x7f,0x08,0x08,0x1e,0x12,0x23,0x32,0x4c,0x04,0x08,0x08,0x10,0x23,0x40,0x00,0x10,0x10,0x30,0x28,0x44,0x86,0x7b,0x00,0x22,0xa2,0x94,0x54,0x48,0xff,0x00,0x00 -+// 27540 殔 ; -+,0x00,0x00,0x7d,0x10,0x13,0x1e,0x22,0x25,0x54,0x09,0x08,0x10,0x21,0x46,0x00,0x00,0x20,0x20,0xfc,0x24,0xff,0x24,0x24,0xfc,0x20,0x24,0xf8,0xa8,0x27,0x22,0xa0,0x40 -+// 27541 殕 ; -+,0x00,0x7f,0x10,0x10,0x1e,0x22,0x22,0x35,0x4c,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x10,0x08,0xff,0x00,0x42,0x24,0x28,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 27542 殖 ; -+,0x00,0x7f,0x08,0x08,0x10,0x1e,0x22,0x24,0x54,0x0c,0x08,0x10,0x10,0x20,0x47,0x00,0x20,0x20,0xfe,0x20,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x00 -+// 27543 殗 ; -+,0x00,0x7f,0x09,0x08,0x10,0x1f,0x23,0x23,0x55,0x0d,0x09,0x09,0x10,0x20,0x40,0x00,0x20,0x20,0xff,0x50,0x8c,0x23,0xfc,0x24,0x24,0xfc,0x24,0xfc,0x21,0x21,0x1f,0x00 -+// 27544 殘 ; -+,0x00,0x7f,0x08,0x09,0x10,0x1f,0x22,0x32,0x4c,0x04,0x0b,0x08,0x10,0x20,0x43,0x00,0x50,0x48,0x5f,0xe0,0x24,0x19,0x69,0x97,0x88,0x5e,0xe0,0x24,0x18,0x72,0x8a,0x06 -+// 27545 殙 ; -+,0x00,0x00,0x7e,0x10,0x10,0x1e,0x22,0x22,0x54,0x0c,0x08,0x10,0x10,0x20,0x40,0x00,0x0e,0xf0,0x90,0x90,0xff,0x88,0xa9,0xc5,0x83,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe -+// 27546 殚 ; -+,0x00,0x7f,0x08,0x08,0x0e,0x12,0x12,0x2a,0x44,0x04,0x08,0x0b,0x10,0x20,0x40,0x00,0x44,0x24,0x28,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 27547 殛 ; -+,0x00,0x7e,0x10,0x10,0x1c,0x25,0x25,0x25,0x55,0x09,0x09,0x10,0x10,0x20,0x47,0x00,0x00,0xfe,0x04,0x08,0x10,0xdf,0x51,0x5a,0x54,0x56,0xd9,0x10,0x30,0x00,0xff,0x00 -+// 27548 殜 ; -+,0x00,0x7e,0x13,0x10,0x1e,0x12,0x22,0x24,0x54,0x0b,0x08,0x10,0x23,0x4c,0x00,0x00,0xa8,0xa8,0xff,0xa8,0xa8,0xb8,0x80,0xfe,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 27549 殝 ; -+,0x00,0x7e,0x11,0x10,0x10,0x3c,0x25,0x24,0x55,0x0e,0x08,0x11,0x10,0x20,0x43,0x00,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x48,0x87,0xf8,0x20,0xfe,0x70,0xac,0x24,0x20 -+// 27550 殞 ; -+,0x3f,0x08,0x08,0x08,0x0f,0x11,0x12,0x32,0x4c,0x04,0x08,0x08,0x10,0x20,0x41,0x00,0x7e,0x42,0x42,0x7e,0x00,0xff,0x81,0xff,0x81,0xff,0x81,0xff,0x24,0x43,0x81,0x00 -+// 27551 殟 ; -+,0x00,0x00,0x7e,0x10,0x10,0x1e,0x22,0x24,0x54,0x1d,0x09,0x09,0x11,0x21,0x47,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0xfc,0x00,0x00,0xfe,0x2a,0x2a,0x2a,0x2a,0xff,0x00 -+// 27552 殠 ; -+,0x00,0x7f,0x08,0x08,0x10,0x1e,0x22,0x22,0x54,0x04,0x0b,0x08,0x10,0x20,0x41,0x06,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 27553 殡 ; -+,0x00,0x00,0x7d,0x11,0x10,0x1e,0x22,0x24,0x54,0x08,0x0b,0x10,0x10,0x20,0x43,0x00,0x20,0x10,0xff,0x02,0x0c,0xf0,0x80,0xfe,0x88,0x88,0xff,0x00,0x48,0x84,0x06,0x00 -+// 27554 殢 ; -+,0x01,0x7d,0x13,0x11,0x1e,0x24,0x27,0x36,0x49,0x09,0x11,0x11,0x21,0x41,0x00,0x00,0x54,0x54,0xfe,0x55,0x77,0x00,0xff,0x22,0xfc,0x24,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 27555 殣 ; -+,0x00,0x7f,0x09,0x08,0x08,0x1e,0x13,0x23,0x35,0x44,0x09,0x08,0x11,0x20,0x43,0x00,0x48,0x48,0xff,0x48,0x78,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 27556 殤 ; -+,0x00,0x7e,0x11,0x12,0x10,0x1e,0x22,0x25,0x54,0x08,0x0b,0x10,0x23,0x40,0x07,0x00,0x80,0xff,0x00,0xfc,0xa4,0xfc,0x00,0xff,0x80,0xfe,0x2a,0xca,0x12,0x62,0x8a,0x04 -+// 27557 殥 ; -+,0x00,0x7e,0x11,0x11,0x10,0x3e,0x22,0x24,0x54,0x14,0x08,0x08,0x10,0x20,0x41,0x00,0x20,0x10,0xff,0x02,0x00,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x28,0x46,0x82,0x00 -+// 27558 殦 ; -+,0x00,0x3f,0x08,0x08,0x0f,0x11,0x11,0x32,0x2a,0x44,0x04,0x09,0x12,0x20,0x40,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x2b,0x01,0x0d,0x02 -+// 27559 殧 ; -+,0x01,0x00,0x7d,0x10,0x11,0x1d,0x25,0x25,0x54,0x08,0x0a,0x12,0x14,0x20,0x42,0x01,0x00,0x88,0xea,0x09,0xc8,0x5f,0x48,0xc8,0x88,0x88,0xc8,0xb4,0x95,0xa5,0xc7,0x00 -+// 27560 殨 ; -+,0x00,0x7d,0x11,0x11,0x10,0x3d,0x24,0x25,0x55,0x09,0x09,0x11,0x11,0x21,0x40,0x03,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x0c -+// 27561 殩 ; -+,0x00,0x7e,0x10,0x11,0x11,0x1e,0x22,0x25,0x54,0x09,0x08,0x10,0x20,0x43,0x00,0x00,0x40,0x77,0x45,0xe5,0x22,0xcd,0xb1,0x54,0x38,0xff,0x30,0x58,0x94,0x13,0x10,0x10 -+// 27562 殪 ; -+,0x00,0x00,0x7e,0x10,0x10,0x10,0x1e,0x22,0x32,0x2c,0x44,0x08,0x08,0x10,0x20,0x41,0x00,0x10,0xff,0x10,0x7e,0x00,0xff,0x82,0x7e,0x00,0x7e,0x42,0x7e,0x24,0x28,0xff -+// 27563 殫 ; -+,0x00,0x7e,0x10,0x10,0x10,0x1e,0x22,0x22,0x54,0x04,0x08,0x09,0x10,0x20,0x40,0x00,0xee,0xaa,0xaa,0xee,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 27564 殬 ; -+,0x00,0x7e,0x10,0x10,0x1e,0x22,0x22,0x55,0x0c,0x04,0x08,0x09,0x10,0x20,0x40,0x00,0x00,0xff,0xa9,0xff,0x10,0xfe,0x10,0xff,0x44,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 27565 殭 ; -+,0x00,0x7e,0x10,0x10,0x1e,0x12,0x22,0x34,0x4d,0x08,0x08,0x10,0x10,0x20,0x43,0x00,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x92,0xfe,0x92,0xfe,0x00,0xff,0x00 -+// 27566 殮 ; -+,0x00,0x7e,0x10,0x10,0x1f,0x12,0x23,0x25,0x55,0x19,0x08,0x10,0x21,0x42,0x0c,0x00,0x20,0x20,0x50,0x8c,0x7b,0x00,0xde,0x52,0x52,0xde,0x88,0x88,0x88,0x54,0x62,0x00 -+// 27567 殯 ; -+,0x00,0x7d,0x11,0x10,0x1e,0x22,0x23,0x34,0x4d,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x20,0xff,0x02,0xfc,0x20,0xa6,0x28,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0xc3 -+// 27568 殰 ; -+,0x00,0x7d,0x10,0x10,0x10,0x1d,0x25,0x25,0x54,0x09,0x09,0x11,0x11,0x20,0x40,0x03,0x10,0xff,0x10,0xfe,0x00,0xfe,0x4a,0xfe,0x00,0xfe,0x4a,0x26,0xfe,0x48,0x84,0x03 -+// 27569 殱 ; -+,0x00,0x7e,0x11,0x10,0x1f,0x15,0x27,0x35,0x4b,0x09,0x0b,0x11,0x11,0x27,0x40,0x00,0x48,0x4c,0xea,0x48,0xff,0x48,0x68,0x4a,0x6a,0x4a,0x64,0x44,0xed,0x15,0x03,0x01 -+// 27570 殲 ; -+,0x01,0x01,0x7d,0x12,0x17,0x1d,0x27,0x25,0x57,0x09,0x0b,0x11,0x11,0x26,0x40,0x00,0x28,0x2a,0x69,0x98,0xff,0x48,0x69,0x49,0x6a,0x46,0x64,0x4d,0xf5,0x23,0x43,0x01 -+// 27571 殳 ; -+,0x07,0x04,0x04,0x04,0x08,0x08,0x30,0x07,0x04,0x02,0x01,0x00,0x00,0x01,0x06,0x38,0xf0,0x10,0x10,0x10,0x10,0x1f,0x00,0xf8,0x10,0x10,0x20,0xc0,0xc0,0x30,0x0e,0x04 -+// 27572 殴 ; -+,0x00,0x3f,0x20,0x32,0x2a,0x2a,0x24,0x24,0x2a,0x2a,0x32,0x20,0x20,0x3e,0x03,0x00,0x00,0x7c,0x44,0x44,0x44,0x87,0x00,0xfe,0x44,0x48,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 27573 段 ; -+,0x03,0x1c,0x10,0x10,0x1e,0x10,0x11,0x1e,0x10,0x10,0x16,0x18,0x70,0x10,0x11,0x16,0x7c,0x44,0x44,0x44,0x44,0x87,0x00,0xfe,0x84,0x48,0x28,0x10,0x28,0x44,0x87,0x02 -+// 27574 殶 ; -+,0x10,0x08,0x00,0x7f,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0e,0x70,0x00,0x03,0x00,0x00,0x7c,0x44,0x44,0x44,0x87,0x00,0xfe,0x44,0x44,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 27575 殷 ; -+,0x04,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x10,0x1f,0x11,0x11,0x21,0x25,0x42,0x00,0x00,0x3c,0x24,0x24,0x44,0x47,0x80,0x7e,0x44,0x24,0x18,0x08,0x14,0x27,0xc2,0x00 -+// 27576 殸 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x25,0x25,0x3f,0x20,0x20,0x20,0x20,0x41,0x00,0x00,0x1e,0x92,0x12,0x12,0x23,0x40,0x3f,0x22,0x12,0x14,0x08,0x14,0x67,0x82,0x00 -+// 27577 殹 ; -+,0x00,0x3f,0x28,0x28,0x2f,0x32,0x22,0x3f,0x22,0x22,0x25,0x39,0x20,0x3f,0x00,0x00,0x00,0xbc,0x24,0x24,0xa4,0x47,0x00,0x7e,0x24,0x24,0x18,0x08,0x14,0x23,0xc2,0x00 -+// 27578 殺 ; -+,0x21,0x1a,0x06,0x09,0x31,0x04,0x04,0x3f,0x04,0x15,0x15,0x24,0x44,0x04,0x15,0x08,0x00,0x3c,0x24,0x24,0x24,0x47,0x80,0x7e,0x22,0x24,0x18,0x98,0x24,0x47,0x82,0x00 -+// 27579 殻 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x00,0x7f,0x41,0x1e,0x12,0x12,0x12,0x22,0x23,0x42,0x00,0x00,0x3c,0xa4,0x24,0x24,0x47,0x80,0x3e,0x22,0x14,0x14,0x08,0x94,0x27,0xc2,0x00 -+// 27580 殼 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x21,0x00,0x1e,0x12,0x12,0x22,0x23,0x42,0x00,0x00,0x3c,0xa4,0x24,0x24,0x47,0x80,0x7e,0x44,0x24,0x28,0x10,0x98,0x27,0x42,0x00 -+// 27581 殽 ; -+,0x20,0x19,0x06,0x19,0x64,0x7f,0x08,0x1f,0x31,0x5f,0x11,0x1f,0x11,0x11,0x15,0x12,0x80,0x3c,0x24,0x24,0x24,0x47,0x80,0x7e,0x42,0x24,0x24,0x18,0x08,0x14,0x27,0xc2 -+// 27582 殾 ; -+,0x08,0x08,0x3f,0x09,0x0a,0x7f,0x04,0x18,0x3f,0x51,0x11,0x1f,0x11,0x11,0x1f,0x11,0x00,0xbc,0x24,0x24,0x24,0xa7,0x40,0x00,0x7e,0x22,0x14,0x08,0x08,0x14,0x67,0x82 -+// 27583 殿 ; -+,0x3f,0x20,0x20,0x3f,0x20,0x29,0x29,0x3f,0x29,0x29,0x3f,0x20,0x29,0x50,0x60,0x00,0xbc,0xa4,0xa4,0xa4,0x24,0x43,0x00,0xbe,0x22,0x14,0xd4,0x08,0x14,0xa3,0xc2,0x00 -+// 27584 毀 ; -+,0x08,0x33,0x21,0x3f,0x21,0x21,0x3f,0x08,0x08,0x3f,0x08,0x08,0x0b,0x1c,0x61,0x00,0x00,0x3c,0x24,0x24,0x24,0x47,0x00,0x7e,0x44,0x24,0x28,0x10,0x28,0x44,0x87,0x02 -+// 27585 毁 ; -+,0x08,0x33,0x21,0x37,0x21,0x21,0x3f,0x00,0x3f,0x04,0x04,0x04,0x07,0x78,0x03,0x00,0x00,0x3c,0x24,0x24,0x24,0x27,0x40,0x3e,0x02,0x24,0x14,0x08,0x18,0x64,0x83,0x00 -+// 27586 毂 ; -+,0x04,0x04,0x7f,0x04,0x7f,0x49,0x3f,0x08,0x14,0x3f,0x04,0x07,0x7c,0x04,0x04,0x04,0x00,0x3c,0xa4,0x24,0xa4,0x27,0x40,0x3e,0x22,0x14,0x14,0x88,0x08,0x14,0x27,0xc2 -+// 27587 毃 ; -+,0x08,0x7f,0x00,0x1e,0x12,0x1e,0x00,0x7f,0x40,0x5e,0x52,0x52,0x5e,0x40,0x42,0x41,0x00,0xbc,0x24,0x24,0x24,0x47,0x00,0xbe,0xa2,0x94,0x94,0x88,0x88,0x94,0xa7,0x42 -+// 27588 毄 ; -+,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x3f,0x21,0x21,0x3f,0x01,0x00,0xbc,0x24,0x24,0x24,0x47,0x00,0x7e,0x22,0xa4,0x14,0x08,0x18,0x24,0x47,0x82 -+// 27589 毅 ; -+,0x08,0x04,0x3f,0x11,0x0a,0x7f,0x08,0x19,0x6e,0x17,0x66,0x1a,0x62,0x02,0x15,0x08,0x00,0x3c,0xa4,0x24,0x24,0x43,0x00,0x3e,0x44,0x24,0xa8,0x10,0x28,0x44,0x87,0x02 -+// 27590 毆 ; -+,0x00,0x7f,0x40,0x4f,0x49,0x4f,0x40,0x5d,0x55,0x55,0x5d,0x40,0x7f,0x00,0x03,0x00,0x00,0xbc,0x24,0x24,0x24,0x47,0x00,0xfe,0x64,0x54,0xc8,0x18,0xa4,0xc7,0x02,0x00 -+// 27591 毇 ; -+,0x08,0x33,0x21,0x3b,0x21,0x3f,0x04,0x25,0x16,0x7f,0x0e,0x15,0x25,0x44,0x05,0x04,0x00,0x3c,0x24,0x24,0x24,0x47,0x00,0x7e,0x44,0xa4,0x28,0x10,0x2c,0x47,0x82,0x00 -+// 27592 毈 ; -+,0x10,0x67,0x55,0x55,0x55,0x77,0x55,0x55,0x55,0x77,0x14,0x15,0x24,0x24,0x44,0x04,0x10,0x6e,0x4a,0x4a,0x6a,0x53,0x40,0x6f,0x49,0x45,0x66,0xc2,0x45,0x49,0x51,0x40 -+// 27593 毉 ; -+,0x3f,0x28,0x2f,0x32,0x2f,0x25,0x28,0x3f,0x00,0x3f,0x04,0x04,0x0a,0x11,0x3f,0x00,0x9c,0x14,0x97,0x20,0xbe,0x14,0x88,0xb6,0x00,0xfe,0x90,0x90,0xa8,0xc4,0xff,0x00 -+// 27594 毊 ; -+,0x04,0x3f,0x04,0x3f,0x24,0x3f,0x20,0x27,0x40,0x1f,0x02,0x0f,0x7a,0x0b,0x08,0x08,0x3c,0xa4,0x47,0xfc,0xa4,0x98,0x34,0xc3,0x80,0xff,0x10,0xfc,0x17,0xf4,0x04,0x0c -+// 27595 毋 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x7f,0x10,0x10,0x11,0x1f,0x01,0x02,0x04,0x18,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x08,0xff,0x08,0x08,0x28,0x10,0x00 -+// 27596 毌 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x7f,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0x84,0x84,0xfc,0x00,0x00 -+// 27597 母 ; -+,0x00,0x0f,0x08,0x09,0x08,0x08,0x7f,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x88,0x88,0xff,0x08,0x08,0x88,0x88,0xfe,0x08,0x08,0x28,0x10 -+// 27598 毎 ; -+,0x08,0x08,0x1f,0x10,0x27,0x44,0x04,0x04,0x7f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xf8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x08,0x28,0x10 -+// 27599 每 ; -+,0x08,0x08,0x1f,0x10,0x27,0x45,0x04,0x04,0x7f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xf8,0x08,0x88,0x08,0xff,0x88,0x48,0x08,0xff,0x08,0x28,0x10 -+// 27600 毐 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x00,0x07,0x04,0x04,0x7f,0x08,0x08,0x0f,0x00,0x00,0x00,0x80,0x80,0xff,0x80,0xfe,0x00,0xf8,0x88,0x88,0xff,0x88,0x88,0xff,0x08,0x28,0x10 -+// 27601 毑 ; -+,0x00,0x3e,0x22,0x32,0x2a,0x22,0x7f,0x22,0x32,0x2a,0x22,0x3f,0x02,0x02,0x0a,0x04,0x10,0x10,0x50,0x52,0x5e,0x72,0xd2,0x52,0x52,0x5a,0x54,0x51,0x41,0x41,0x3f,0x00 -+// 27602 毒 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x7f,0x08,0x08,0x0f,0x00,0x00,0x00,0x80,0xfe,0x80,0xfc,0x80,0xff,0x00,0xf8,0x88,0xff,0x88,0x48,0xff,0x08,0x28,0x10 -+// 27603 毓 ; -+,0x10,0x10,0x1e,0x20,0x3e,0x5a,0x16,0x12,0x7f,0x1a,0x16,0x1f,0x02,0x02,0x0a,0x05,0x20,0x10,0xfe,0x10,0x20,0x44,0xfe,0x02,0x54,0x54,0x54,0x54,0x55,0x95,0x95,0x13 -+// 27604 比 ; -+,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x40,0x40,0x40,0x40,0x40,0x47,0x78,0x40,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 27605 毕 ; -+,0x10,0x10,0x10,0x1f,0x10,0x12,0x14,0x18,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x46,0x78,0x40,0x41,0x41,0xbf,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80 -+// 27606 毖 ; -+,0x10,0x10,0x1f,0x10,0x10,0x12,0x14,0x19,0x00,0x04,0x14,0x14,0x25,0x06,0x7b,0x00,0x40,0x40,0x46,0x78,0x41,0x41,0x3f,0x00,0x90,0x90,0x22,0x41,0x89,0x08,0xf8,0x00 -+// 27607 毗 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x22,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0x88,0xef,0x88,0x88,0x88,0x88,0x88,0x89,0xa9,0xc9,0x87,0x00 -+// 27608 毘 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x10,0x1f,0x10,0x10,0x13,0x1c,0x10,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x40,0x40,0x4c,0x70,0x40,0x41,0x41,0x3f,0x00 -+// 27609 毙 ; -+,0x10,0x10,0x1f,0x10,0x13,0x1c,0x00,0x7f,0x08,0x0f,0x19,0x2a,0x04,0x18,0x60,0x00,0x40,0x4c,0x70,0x42,0x42,0x3e,0x00,0xff,0x20,0xa6,0x38,0x20,0x21,0x21,0x1f,0x00 -+// 27610 毚 ; -+,0x03,0x0c,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x1f,0x07,0x18,0x6f,0x08,0x0f,0x00,0x1f,0xf8,0x10,0xfc,0x04,0xfc,0x40,0x78,0x42,0x3e,0xf0,0x20,0xfc,0x84,0xfd,0xa9,0x3f -+// 27611 毛 ; -+,0x00,0x00,0x3f,0x01,0x01,0x01,0x1f,0x01,0x01,0x01,0x7f,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 27612 毜 ; -+,0x00,0x0e,0x38,0x08,0x0e,0x78,0x08,0x08,0x0e,0x79,0x0a,0x08,0x08,0x08,0x07,0x00,0x10,0x10,0x10,0x10,0x18,0x54,0x54,0x92,0x93,0x12,0x10,0x51,0x21,0x01,0xff,0x00 -+// 27613 毝 ; -+,0x07,0x38,0x08,0x08,0x0f,0x78,0x08,0x0f,0x78,0x09,0x08,0x08,0x0b,0x08,0x07,0x00,0x00,0x00,0x04,0x18,0x60,0x02,0x04,0x98,0x62,0x84,0x18,0x61,0x81,0x01,0xff,0x00 -+// 27614 毞 ; -+,0x10,0x10,0x1f,0x10,0x14,0x18,0x00,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x00,0x00,0x00,0x40,0x4c,0x70,0x42,0x42,0x3e,0x00,0xf8,0x80,0xfc,0x80,0xff,0x80,0x81,0x7f,0x00 -+// 27615 毟 ; -+,0x00,0x00,0x04,0x08,0x31,0x00,0x7f,0x00,0x1f,0x00,0x1f,0x00,0x3f,0x00,0x00,0x00,0x80,0xa0,0x98,0x86,0x8a,0x70,0x80,0xf8,0x80,0xfe,0x80,0xff,0x80,0x81,0x7f,0x00 -+// 27616 毠 ; -+,0x04,0x04,0x3f,0x09,0x09,0x15,0x62,0x1f,0x00,0x3f,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x3e,0x22,0x22,0x3e,0x00,0x7c,0x80,0xfe,0x80,0xff,0x80,0x81,0x81,0x7f,0x00 -+// 27617 毡 ; -+,0x00,0x07,0x78,0x08,0x08,0x7e,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x00,0x01,0x01,0xff,0x00 -+// 27618 毢 ; -+,0x00,0x06,0x78,0x08,0x0e,0x78,0x08,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xaa,0xce,0x82,0x82,0xfe,0x01,0x01,0xff,0x00 -+// 27619 毣 ; -+,0x1f,0x01,0x05,0x03,0x05,0x19,0x01,0x00,0x1f,0x00,0x1f,0x00,0x7f,0x00,0x00,0x00,0x7e,0x02,0x12,0x0a,0x12,0x22,0x02,0x78,0x80,0xf8,0x80,0xfc,0x81,0x81,0x7f,0x00 -+// 27620 毤 ; -+,0x04,0x12,0x11,0x21,0x48,0x08,0x12,0x3f,0x00,0x12,0x12,0x12,0x22,0x22,0x41,0x00,0x00,0x0c,0x70,0x10,0x10,0x1c,0xf0,0x10,0x1e,0xf0,0x14,0x14,0x1d,0x01,0xff,0x00 -+// 27621 毥 ; -+,0x00,0x06,0x38,0x09,0x08,0x0e,0x38,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x07,0x00,0x40,0x40,0xfe,0x02,0xfa,0x8a,0xfa,0x8a,0xfa,0x02,0x0a,0x04,0x01,0x01,0xff,0x00 -+// 27622 毦 ; -+,0x00,0x7f,0x12,0x12,0x12,0x1e,0x12,0x12,0x1e,0x13,0x12,0x13,0x7e,0x02,0x02,0x02,0x00,0x0e,0x70,0x10,0x10,0x1e,0xf0,0x10,0x1f,0xf0,0x10,0x90,0x11,0x11,0x0f,0x00 -+// 27623 毧 ; -+,0x00,0x06,0x38,0x09,0x08,0x3e,0x08,0x09,0x08,0x7e,0x08,0x08,0x09,0x08,0x07,0x00,0x10,0x18,0x14,0xfe,0x10,0x50,0x54,0xf4,0x58,0x48,0x9a,0xa6,0x43,0x01,0xff,0x00 -+// 27624 毨 ; -+,0x00,0x0e,0x78,0x08,0x09,0x0e,0x79,0x08,0x0f,0x78,0x08,0x09,0x0a,0x08,0x07,0x00,0x20,0xa0,0xa0,0xfc,0x20,0x20,0xfe,0x50,0x50,0x92,0x92,0x0e,0x01,0x01,0xff,0x00 -+// 27625 毩 ; -+,0x00,0x07,0x38,0x08,0x0f,0x78,0x08,0x08,0x0f,0x78,0x0b,0x08,0x08,0x08,0x07,0x00,0x10,0x10,0x92,0x54,0x38,0xff,0x30,0x38,0x54,0x96,0x12,0x10,0x11,0x01,0xff,0x00 -+// 27626 毪 ; -+,0x00,0x06,0x38,0x08,0x08,0x3e,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x07,0x00,0x10,0x20,0x44,0xfe,0x12,0x50,0x7e,0x90,0x10,0xfe,0x10,0x10,0x11,0x11,0xff,0x00 -+// 27627 毫 ; -+,0x00,0x3f,0x00,0x07,0x04,0x07,0x00,0x3f,0x20,0x07,0x00,0x0f,0x00,0x1f,0x00,0x00,0x80,0xff,0x00,0xf8,0x08,0xf8,0x00,0xff,0x02,0xf0,0x80,0xf8,0x80,0xfd,0x81,0x7f -+// 27628 毬 ; -+,0x00,0x0e,0x78,0x08,0x0e,0x78,0x09,0x08,0x0e,0x78,0x09,0x0a,0x08,0x08,0x07,0x00,0x20,0x28,0x24,0x20,0xfe,0x20,0x24,0xa8,0x30,0xa8,0x24,0xa4,0x41,0x01,0xff,0x00 -+// 27629 毭 ; -+,0x00,0x00,0x7f,0x00,0x3e,0x22,0x22,0x3e,0x00,0x22,0x12,0x14,0x07,0x78,0x00,0x00,0x00,0x0e,0x70,0x10,0x1e,0x70,0x10,0x10,0x1f,0xf0,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 27630 毮 ; -+,0x08,0x08,0x08,0x08,0x7d,0x08,0x08,0x0d,0x18,0x68,0x08,0x08,0x09,0x08,0x28,0x10,0x10,0x14,0x92,0x91,0x14,0x18,0x30,0xce,0xf0,0x10,0xfe,0x10,0xff,0x11,0x11,0x0f -+// 27631 毯 ; -+,0x00,0x06,0x38,0x08,0x08,0x0e,0x39,0x08,0x0e,0x78,0x08,0x08,0x09,0x08,0x07,0x00,0x20,0x20,0xac,0xb0,0x28,0x44,0xa4,0x20,0xa4,0xb8,0x30,0x48,0x85,0x01,0xff,0x00 -+// 27632 毰 ; -+,0x00,0x06,0x39,0x08,0x08,0x0e,0x39,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x07,0x00,0x40,0x20,0xfe,0x88,0x48,0x50,0xff,0x00,0xfc,0x84,0x84,0xfc,0x85,0x01,0xff,0x00 -+// 27633 毱 ; -+,0x00,0x0e,0x38,0x09,0x08,0x0e,0x39,0x08,0x0f,0x78,0x0b,0x08,0x08,0x08,0x07,0x00,0x40,0x40,0xfe,0x22,0xaa,0x72,0xfa,0x32,0x6a,0xaa,0x22,0x2a,0x25,0x01,0xff,0x00 -+// 27634 毲 ; -+,0x00,0x77,0x48,0x32,0x31,0x4a,0x04,0x3b,0x08,0x2a,0x13,0x19,0x2a,0x44,0x08,0x00,0x00,0xc6,0xb8,0x88,0x08,0x8e,0x38,0xc8,0x8f,0xb8,0x08,0x08,0x89,0x89,0x07,0x00 -+// 27635 毳 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x1e,0x08,0x3e,0x08,0x7f,0x08,0x0a,0x0c,0x08,0x7c,0x80,0xf8,0x80,0xfc,0x81,0xff,0x00,0x7c,0x10,0x7c,0x10,0xfe,0x11,0x11,0x0f -+// 27636 毴 ; -+,0x00,0x06,0x38,0x08,0x08,0x3e,0x08,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x28,0x28,0xef,0x28,0x28,0xee,0x28,0x28,0xef,0x28,0x28,0x29,0x01,0xff,0x00 -+// 27637 毵 ; -+,0x08,0x08,0x12,0x3f,0x04,0x7f,0x0a,0x11,0x64,0x1a,0x64,0x19,0x62,0x0c,0x70,0x00,0x00,0x0c,0x70,0x10,0x10,0x90,0x7c,0x90,0x10,0xff,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 27638 毶 ; -+,0x00,0x0e,0x70,0x10,0x1c,0x71,0x10,0x10,0x1d,0x70,0x10,0x10,0x10,0x11,0x0f,0x00,0x20,0x20,0x48,0xfc,0x20,0xfe,0x50,0x88,0x26,0xd0,0x24,0xc8,0x31,0xc1,0xff,0x00 -+// 27639 毷 ; -+,0x00,0x3f,0x20,0x2e,0x20,0x2e,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x00,0x00,0x8e,0xb0,0x90,0x90,0xbe,0x10,0x10,0x10,0x7f,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 27640 毸 ; -+,0x00,0x0d,0x71,0x11,0x11,0x1d,0x71,0x10,0x10,0x1c,0x72,0x12,0x10,0x10,0x0f,0x00,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xa0,0x94,0x82,0x88,0x79,0x01,0xff,0x00 -+// 27641 毹 ; -+,0x04,0x04,0x0a,0x11,0x3e,0x40,0x38,0x28,0x3a,0x2a,0x3a,0x2a,0x2a,0x28,0x39,0x28,0x00,0x0c,0x70,0x10,0x90,0x7e,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x91,0x91,0x8f -+// 27642 毺 ; -+,0x00,0x0e,0x70,0x10,0x1d,0x72,0x11,0x11,0x1d,0x71,0x11,0x11,0x11,0x10,0x0f,0x00,0x20,0x30,0x58,0x84,0x7b,0x00,0xea,0x2a,0xea,0x2a,0xea,0x2a,0x66,0x01,0xff,0x00 -+// 27643 毻 ; -+,0x04,0x3f,0x08,0x1f,0x24,0x5f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x13,0x11,0x00,0x8e,0x30,0x90,0x10,0xbc,0x10,0x10,0x7f,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 27644 毼 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x08,0x1f,0x64,0x24,0x2a,0x31,0x3e,0x00,0x02,0x01,0x00,0x0e,0x70,0x10,0x1e,0x70,0x10,0x90,0x9f,0xf0,0x90,0x90,0x91,0x91,0x8f,0x00 -+// 27645 毽 ; -+,0x00,0x0c,0x70,0x17,0x11,0x7a,0x12,0x17,0x11,0x7d,0x13,0x12,0x14,0x10,0x0f,0x00,0x10,0x7c,0x14,0x7e,0x14,0x7c,0x10,0x7c,0x10,0x7c,0x10,0xd0,0x3d,0x01,0xff,0x00 -+// 27646 毾 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x3b,0x08,0x28,0x1a,0x19,0x2a,0x48,0x2a,0x11,0x00,0x00,0x0e,0x70,0x10,0x1e,0x70,0x90,0x90,0x9e,0xf0,0x90,0x90,0x91,0x91,0x0f,0x00 -+// 27647 毿 ; -+,0x04,0x0a,0x1f,0x00,0x22,0x55,0x7f,0x0a,0x15,0x68,0x32,0x0d,0x32,0x0c,0x70,0x00,0x00,0x06,0x38,0x08,0x08,0x0f,0x78,0x08,0x8f,0x78,0x08,0x08,0x09,0x09,0x07,0x00 -+// 27648 氀 ; -+,0x04,0x1f,0x15,0x7f,0x15,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x7f,0x09,0x1a,0x06,0x39,0x00,0x07,0x38,0x88,0x08,0x0e,0x38,0x88,0x88,0x8f,0x78,0xc8,0x09,0x09,0x09,0x07 -+// 27649 氁 ; -+,0x00,0x06,0x38,0x08,0x08,0x3e,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x07,0x00,0x48,0xfe,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xfe,0x30,0x49,0x85,0x01,0xff,0x00 -+// 27650 氂 ; -+,0x04,0x3f,0x04,0x3f,0x0e,0x35,0x04,0x3f,0x20,0x2f,0x20,0x2f,0x20,0x5f,0x40,0x00,0x10,0x10,0x3f,0x24,0x58,0x18,0x66,0xff,0x00,0xf8,0x80,0xf0,0x80,0xfa,0x82,0x7e -+// 27651 氃 ; -+,0x10,0x08,0x3f,0x12,0x7f,0x00,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x3f,0x04,0x07,0x78,0x00,0x06,0x78,0x10,0x90,0x7e,0x10,0x10,0x10,0x7f,0x10,0x10,0x10,0x11,0x91,0x0f -+// 27652 氄 ; -+,0x00,0x3f,0x02,0x0c,0x3f,0x0d,0x34,0x04,0x3f,0x2a,0x3f,0x2a,0x2e,0x20,0x22,0x21,0x00,0x0e,0x70,0x10,0x90,0x1e,0x70,0x10,0x9f,0xf0,0x90,0x91,0x91,0x91,0x8f,0x00 -+// 27653 氅 ; -+,0x04,0x24,0x15,0x3f,0x20,0x2e,0x2a,0x2e,0x21,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x00,0x10,0x90,0x3f,0xa4,0xe4,0x98,0x88,0x94,0xe3,0xf8,0x80,0xf8,0x80,0xfd,0x81,0x7f -+// 27654 氆 ; -+,0x00,0x06,0x39,0x08,0x09,0x7e,0x09,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x07,0x00,0x84,0x48,0xfe,0x50,0x54,0xd8,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfd,0x01,0xff,0x00 -+// 27655 氇 ; -+,0x00,0x06,0x39,0x08,0x08,0x08,0x3c,0x08,0x0b,0x08,0x7e,0x08,0x08,0x08,0x07,0x00,0xf8,0x90,0xfc,0xa4,0xfc,0xa4,0xfc,0x00,0xff,0x84,0xfc,0x84,0xfd,0x01,0xff,0x00 -+// 27656 氈 ; -+,0x04,0x7f,0x00,0x3f,0x2a,0x2e,0x20,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x7f,0x00,0x8e,0x70,0x90,0x90,0x9e,0xf0,0x90,0x10,0x1f,0x70,0x10,0x11,0x11,0x11,0x8f -+// 27657 氉 ; -+,0x1e,0x12,0x1e,0x00,0x77,0x55,0x55,0x77,0x08,0x7f,0x0c,0x1b,0x29,0x48,0x08,0x08,0x0c,0x70,0x10,0x10,0x10,0x1e,0x70,0x10,0x1f,0x70,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 27658 氊 ; -+,0x00,0x0d,0x70,0x11,0x11,0x7d,0x11,0x11,0x10,0x7e,0x10,0x10,0x10,0x11,0x10,0x0f,0x20,0xfe,0x00,0xfc,0x54,0x74,0x04,0xfc,0x88,0xf8,0x88,0xf8,0x00,0xfd,0x01,0xff -+// 27659 氋 ; -+,0x09,0x3f,0x09,0x3f,0x20,0x0f,0x00,0x3f,0x08,0x14,0x6b,0x13,0x65,0x19,0x6a,0x04,0x00,0x8e,0x30,0xd0,0x90,0x10,0x7c,0xd0,0x10,0x90,0x7e,0x90,0x50,0x11,0x11,0x0f -+// 27660 氌 ; -+,0x00,0x0c,0x70,0x13,0x11,0x1d,0x71,0x11,0x1d,0x72,0x10,0x10,0x10,0x10,0x0f,0x00,0x40,0x78,0x90,0xfc,0x24,0xfc,0x24,0xfc,0x52,0x49,0xfc,0x84,0xfd,0x85,0xff,0x00 -+// 27661 氍 ; -+,0x7b,0x4a,0x7b,0x4a,0x7b,0x4a,0x7b,0x14,0x3f,0x62,0x3f,0x22,0x3f,0x22,0x3f,0x20,0xc6,0x58,0xc8,0x48,0xc8,0x5e,0xc8,0x08,0x88,0x3f,0x88,0x08,0x89,0x09,0xc7,0x00 -+// 27662 氎 ; -+,0x3f,0x24,0x3f,0x24,0x7f,0x55,0x7f,0x55,0x7f,0x08,0x7f,0x48,0x1f,0x2a,0x04,0x7f,0x80,0x86,0xb8,0x88,0xc8,0x5e,0xc8,0x48,0xc8,0x3f,0xc8,0x48,0x09,0x09,0x09,0x87 -+// 27663 氏 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x7c,0x80,0x80,0x80,0x80,0xfe,0x40,0x40,0x40,0x20,0x20,0x12,0x0a,0x06,0x02 -+// 27664 氐 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x12,0x15,0x18,0x10,0x00,0x78,0x80,0x80,0x80,0x80,0xfe,0x80,0x40,0x40,0x40,0x20,0x20,0x12,0xca,0x46 -+// 27665 民 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0xf8,0x08,0x08,0xf8,0x80,0x80,0xfe,0x40,0x40,0x20,0x20,0x12,0x0a,0x06,0x02 -+// 27666 氒 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x14,0x18,0x10,0x00,0x3f,0x00,0x00,0x00,0x00,0x7c,0x80,0x80,0x80,0xfe,0x40,0x40,0x22,0x9a,0x86,0x80,0xff,0x80,0x80,0x80,0x80 -+// 27667 氓 ; -+,0x00,0x10,0x08,0x08,0x7e,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x00,0x00,0x00,0x00,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0x89,0xa5,0xc3,0x81 -+// 27668 气 ; -+,0x04,0x04,0x0f,0x08,0x10,0x27,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0xfc,0x00,0xf8,0x08,0x08,0x08,0x08,0x05,0x05,0x03,0x01 -+// 27669 氕 ; -+,0x08,0x08,0x1f,0x10,0x2f,0x40,0x1f,0x00,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x08,0x08,0x08,0x04,0x05,0x05,0x03,0x01 -+// 27670 氖 ; -+,0x08,0x0f,0x10,0x17,0x20,0x5f,0x00,0x1f,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0xc8,0x48,0x88,0xe8,0x24,0x25,0x23,0xa3,0x41 -+// 27671 気 ; -+,0x08,0x0f,0x10,0x17,0x20,0x5f,0x00,0x08,0x04,0x02,0x01,0x01,0x02,0x04,0x18,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x48,0x48,0x88,0x08,0x88,0x44,0x65,0x23,0x01 -+// 27672 氘 ; -+,0x04,0x0f,0x08,0x17,0x20,0x5f,0x00,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x30,0x00,0x00,0xff,0x00,0xfe,0x00,0xfc,0x04,0x44,0x44,0x44,0x44,0x45,0x45,0x43,0x43,0x41 -+// 27673 氙 ; -+,0x08,0x08,0x1f,0x10,0x2f,0x40,0x3f,0x02,0x02,0x12,0x12,0x12,0x12,0x1f,0x10,0x00,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x08,0x28,0x28,0x29,0x25,0xe5,0x23,0x01 -+// 27674 氚 ; -+,0x08,0x0f,0x10,0x17,0x20,0x1f,0x00,0x09,0x09,0x09,0x09,0x09,0x11,0x11,0x20,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x28,0x28,0x28,0x24,0x24,0x25,0x23,0x23,0x01 -+// 27675 氛 ; -+,0x08,0x0f,0x10,0x2f,0x40,0x3f,0x01,0x08,0x08,0x1f,0x64,0x04,0x08,0x08,0x32,0x01,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x88,0x48,0xa8,0x88,0x84,0x85,0x85,0x83,0x01 -+// 27676 氜 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0xfc,0x00,0xfc,0x00,0xf8,0x08,0xc8,0x48,0x48,0xc8,0x49,0x45,0xc5,0x43,0x01 -+// 27677 氝 ; -+,0x08,0x0f,0x10,0x17,0x20,0x5f,0x02,0x02,0x1f,0x12,0x13,0x14,0x18,0x10,0x10,0x10,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x08,0xe8,0x28,0x24,0xa5,0x25,0x23,0xa3,0x41 -+// 27678 氞 ; -+,0x08,0x0f,0x10,0x17,0x20,0x1f,0x00,0x1f,0x02,0x1f,0x12,0x15,0x18,0x10,0x10,0x10,0x00,0xfe,0x00,0xf8,0x00,0xf8,0x08,0xe8,0x08,0xe8,0x28,0x24,0xa5,0x25,0xa3,0x41 -+// 27679 氟 ; -+,0x10,0x1f,0x20,0x5f,0x00,0x3f,0x00,0x04,0x1f,0x04,0x1f,0x14,0x1f,0x04,0x08,0x30,0x00,0xfc,0x00,0xf0,0x00,0xf8,0x08,0x88,0xe8,0xa8,0xe8,0x88,0xf5,0x95,0xb3,0x81 -+// 27680 氠 ; -+,0x08,0x0f,0x08,0x17,0x10,0x2f,0x01,0x01,0x0f,0x09,0x0f,0x09,0x0f,0x01,0x01,0x01,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x04,0x04,0xe4,0x24,0xe4,0x24,0xe5,0x03,0x03,0x01 -+// 27681 氡 ; -+,0x04,0x07,0x08,0x17,0x20,0x1f,0x04,0x0f,0x14,0x23,0x0c,0x72,0x01,0x04,0x03,0x01,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0xc8,0x88,0x08,0xc4,0x74,0x05,0x03,0x03,0x01 -+// 27682 氢 ; -+,0x04,0x0f,0x08,0x17,0x20,0x1f,0x00,0x1f,0x00,0x01,0x06,0x38,0x0f,0x01,0x01,0x3f,0x00,0xfe,0x00,0xfe,0x00,0xf8,0x08,0xe8,0x48,0x88,0x68,0x18,0xe8,0x05,0x05,0xfb -+// 27683 氣 ; -+,0x08,0x0f,0x10,0x1f,0x20,0x5f,0x01,0x09,0x05,0x3f,0x03,0x05,0x09,0x31,0x01,0x01,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x28,0x48,0xf8,0x88,0x44,0x35,0x15,0x03,0x01 -+// 27684 氤 ; -+,0x08,0x0f,0x10,0x17,0x20,0x5f,0x00,0x1f,0x12,0x1f,0x12,0x15,0x18,0x1f,0x10,0x00,0x00,0xff,0x00,0xfe,0x00,0xf8,0x08,0xe8,0x28,0xa8,0x24,0x24,0xa5,0xe3,0x23,0x01 -+// 27685 氥 ; -+,0x08,0x0f,0x08,0x17,0x20,0x1f,0x00,0x1f,0x04,0x1f,0x14,0x14,0x18,0x10,0x1f,0x10,0x00,0xff,0x00,0xfe,0x00,0xfc,0x04,0xf4,0x84,0xf4,0x94,0x94,0xf5,0x13,0xf3,0x11 -+// 27686 氦 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x02,0x01,0x1f,0x04,0x0f,0x01,0x06,0x39,0x06,0x38,0x00,0xfc,0x00,0xf8,0x00,0xf8,0x08,0x08,0xe8,0x48,0x88,0x28,0x45,0x85,0x43,0x21 -+// 27687 氧 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x08,0x04,0x1f,0x01,0x1f,0x01,0x3f,0x01,0x01,0x01,0x00,0xfe,0x00,0xf8,0x00,0xf8,0x48,0x88,0xe8,0x08,0xe8,0x08,0xf5,0x05,0x03,0x01 -+// 27688 氨 ; -+,0x04,0x07,0x08,0x17,0x00,0x3f,0x04,0x02,0x3f,0x20,0x04,0x7f,0x0c,0x03,0x06,0x38,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x08,0x08,0xe8,0x48,0x08,0xe8,0x85,0x05,0x83,0x41 -+// 27689 氩 ; -+,0x04,0x07,0x08,0x17,0x00,0x3f,0x00,0x3f,0x04,0x04,0x24,0x14,0x14,0x04,0x7f,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0xe8,0x88,0x88,0xa8,0xc8,0x85,0x85,0xf3,0x01 -+// 27690 氪 ; -+,0x08,0x0f,0x08,0x17,0x20,0x1f,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x05,0x05,0x09,0x30,0x00,0xff,0x00,0xfc,0x00,0xf8,0x08,0xe8,0x08,0xc8,0x48,0xc4,0x05,0x25,0x23,0xe1 -+// 27691 氫 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x00,0x1f,0x00,0x09,0x12,0x09,0x1f,0x01,0x3f,0x00,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x04,0xf4,0x04,0x24,0x44,0x25,0xf5,0x03,0xfb,0x01 -+// 27692 氬 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x00,0x3f,0x04,0x1c,0x10,0x1c,0x04,0x04,0x3f,0x00,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x04,0xf4,0x84,0xf4,0x14,0xf5,0x85,0x83,0xfb,0x01 -+// 27693 氭 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x01,0x1f,0x09,0x0f,0x09,0x0f,0x03,0x0d,0x31,0x01,0x00,0xfe,0x00,0xf0,0x00,0xfc,0x04,0xf4,0x24,0xe4,0x24,0xe4,0x85,0x63,0x13,0x01 -+// 27694 氮 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x01,0x09,0x05,0x02,0x1d,0x09,0x05,0x02,0x0c,0x70,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x68,0x88,0x48,0x28,0x48,0x85,0x85,0x43,0x31 -+// 27695 氯 ; -+,0x1f,0x10,0x2f,0x00,0x3f,0x00,0x1f,0x00,0x0f,0x00,0x7f,0x12,0x0b,0x0a,0x32,0x06,0xfc,0x00,0xf8,0x00,0xf8,0x08,0xc8,0x48,0xc8,0x48,0xf8,0x48,0x85,0x45,0x23,0x01 -+// 27696 氰 ; -+,0x1f,0x10,0x2f,0x40,0x3f,0x02,0x1f,0x02,0x1f,0x02,0x3f,0x08,0x0f,0x08,0x0f,0x08,0xfe,0x00,0xf8,0x00,0xf8,0x08,0xc8,0x08,0xc8,0x04,0xf4,0x45,0xc5,0x43,0xc3,0x41 -+// 27697 氱 ; -+,0x0f,0x08,0x17,0x00,0x3f,0x08,0x0f,0x08,0x0f,0x04,0x0f,0x32,0x0c,0x03,0x0c,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x24,0xe4,0x24,0xe4,0x04,0xf4,0x95,0x95,0x13,0x53,0x21 -+// 27698 氲 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x3f,0x25,0x25,0x7f,0x00,0x00,0xfe,0x00,0xf8,0x00,0xf8,0x08,0xc8,0x48,0xc8,0x48,0xe8,0x25,0x25,0xfb,0x01 -+// 27699 氳 ; -+,0x08,0x0f,0x10,0x2f,0x00,0x3f,0x00,0x0f,0x0a,0x0b,0x0c,0x1f,0x14,0x14,0x7f,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0xc8,0x48,0x48,0xc4,0xe4,0xa5,0xa3,0xfb,0x01 -+// 27700 水 ; -+,0x00,0x00,0x00,0x00,0x3e,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x60,0x00,0x02,0x01,0x80,0x80,0x84,0x88,0x90,0xe0,0xa0,0x90,0x90,0x88,0x8c,0x87,0x82,0x80,0x80,0x00 -+// 27701 氵 ; -+,0x04,0x02,0x02,0x00,0x11,0x09,0x0a,0x02,0x02,0x04,0x1c,0x04,0x04,0x0c,0x04,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 27702 氶 ; -+,0x00,0x07,0x00,0x00,0x00,0x3e,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x60,0x02,0x01,0x00,0xf0,0x20,0x40,0x80,0x86,0x88,0xb0,0x90,0x88,0x88,0x84,0x87,0x82,0x80,0x00 -+// 27703 氷 ; -+,0x00,0x00,0x10,0x0c,0x04,0x00,0x3e,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x22,0x01,0x80,0x80,0x80,0x80,0x80,0x8c,0xb0,0xc0,0xa0,0x90,0x88,0x8c,0x87,0x82,0x80,0x00 -+// 27704 永 ; -+,0x01,0x00,0x00,0x0f,0x00,0x00,0x3e,0x02,0x04,0x04,0x08,0x08,0x10,0x60,0x02,0x01,0x00,0xc0,0x40,0x80,0x84,0x8c,0xd0,0xa0,0x90,0x90,0x88,0x84,0x83,0x80,0x80,0x00 -+// 27705 氹 ; -+,0x00,0x7f,0x01,0x02,0x05,0x04,0x08,0x08,0x10,0x11,0x12,0x20,0x20,0x20,0x1f,0x00,0x10,0x10,0x10,0x12,0xd6,0x58,0x58,0x94,0x94,0x13,0x12,0x10,0x51,0x21,0xff,0x00 -+// 27706 氺 ; -+,0x00,0x00,0x00,0x10,0x08,0x04,0x04,0x00,0x02,0x04,0x08,0x30,0x00,0x00,0x02,0x01,0x80,0x80,0x80,0x84,0x88,0x90,0xa0,0xe0,0x90,0x8c,0x86,0x82,0x80,0x80,0x80,0x00 -+// 27707 氻 ; -+,0x10,0x08,0x08,0x00,0x21,0x10,0x12,0x02,0x04,0x04,0x38,0x08,0x08,0x09,0x0a,0x08,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x42,0x42,0x82,0x82,0x02,0x0a,0x04 -+// 27708 氼 ; -+,0x00,0x00,0x3e,0x02,0x02,0x04,0x1a,0x61,0x00,0x00,0x00,0x01,0x02,0x0c,0x70,0x00,0x80,0x84,0x98,0xe0,0xa0,0x98,0x87,0x02,0x80,0x80,0x80,0x40,0x20,0x18,0x07,0x02 -+// 27709 氽 ; -+,0x00,0x00,0x01,0x02,0x0c,0x30,0x00,0x3e,0x02,0x02,0x04,0x04,0x08,0x30,0x02,0x01,0x80,0x80,0x40,0x30,0x0c,0x87,0x88,0x90,0xe0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x00 -+// 27710 氾 ; -+,0x10,0x09,0x09,0x01,0x43,0x25,0x25,0x09,0x09,0x09,0x71,0x11,0x11,0x11,0x10,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x08,0x00,0x00,0x01,0x01,0xff,0x00 -+// 27711 氿 ; -+,0x00,0x10,0x08,0x00,0x43,0x24,0x04,0x08,0x08,0x10,0x70,0x11,0x11,0x12,0x14,0x00,0x40,0x40,0x40,0x40,0xf8,0x48,0x48,0x48,0x88,0x88,0x88,0x09,0x09,0x09,0x07,0x00 -+// 27712 汀 ; -+,0x10,0x08,0x0b,0x00,0x40,0x24,0x08,0x08,0x10,0x10,0x70,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 27713 汁 ; -+,0x10,0x08,0x08,0x40,0x24,0x24,0x0b,0x08,0x10,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 27714 求 ; -+,0x00,0x00,0x00,0x7f,0x00,0x10,0x08,0x04,0x02,0x04,0x08,0x30,0x00,0x00,0x02,0x01,0xa0,0x98,0x88,0xff,0x80,0x8c,0x90,0xa0,0xe0,0x90,0x8c,0x87,0x82,0x80,0x80,0x00 -+// 27715 汃 ; -+,0x20,0x10,0x10,0x04,0x44,0x28,0x28,0x08,0x11,0x11,0x71,0x12,0x12,0x14,0x30,0x10,0x00,0x10,0x90,0x90,0x90,0x90,0x88,0x88,0x08,0x04,0x04,0x04,0x02,0x03,0x02,0x00 -+// 27716 汄 ; -+,0x10,0x08,0x08,0x00,0x22,0x12,0x14,0x04,0x08,0x38,0x10,0x10,0x11,0x12,0x14,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02,0x00 -+// 27717 汅 ; -+,0x10,0x0b,0x08,0x00,0x40,0x24,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xff,0x20,0x20,0x20,0x40,0x40,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 27718 汆 ; -+,0x01,0x00,0x01,0x02,0x04,0x18,0x60,0x3e,0x02,0x04,0x04,0x08,0x10,0x60,0x02,0x01,0x00,0x80,0x40,0x20,0x98,0x87,0x88,0x90,0xe0,0xa0,0x90,0x88,0x84,0x87,0x82,0x00 -+// 27719 汇 ; -+,0x10,0x09,0x09,0x01,0x21,0x15,0x15,0x05,0x09,0x09,0x39,0x09,0x09,0x09,0x09,0x08,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00 -+// 27720 汈 ; -+,0x10,0x09,0x08,0x00,0x40,0x22,0x22,0x04,0x04,0x05,0x08,0x38,0x08,0x08,0x08,0x08,0x00,0xfe,0x02,0x02,0x02,0x0a,0x12,0x22,0x42,0x82,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 27721 汉 ; -+,0x10,0x08,0x0b,0x01,0x41,0x24,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x13,0x14,0x00,0x00,0x00,0xfe,0x04,0x04,0x88,0x88,0x88,0x50,0x50,0x20,0x50,0x8c,0x07,0x02,0x00 -+// 27722 汊 ; -+,0x10,0x0b,0x02,0x02,0x41,0x29,0x08,0x08,0x10,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x00,0xfc,0x84,0x44,0x28,0x28,0x88,0x90,0x50,0x60,0x20,0x50,0x8c,0x07,0x02,0x00 -+// 27723 汋 ; -+,0x10,0x08,0x08,0x00,0x40,0x25,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0x40,0xfe,0x82,0x02,0x02,0x42,0x22,0x22,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 27724 汌 ; -+,0x10,0x08,0x08,0x00,0x20,0x12,0x14,0x04,0x08,0x08,0x38,0x11,0x11,0x12,0x14,0x00,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x02,0x02,0x00 -+// 27725 汍 ; -+,0x10,0x08,0x08,0x00,0x43,0x20,0x24,0x05,0x08,0x08,0x10,0x70,0x11,0x12,0x14,0x10,0x40,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0xc4,0x44,0xa4,0xa5,0x05,0x03,0x03,0x01 -+// 27726 汎 ; -+,0x10,0x08,0x08,0x40,0x20,0x24,0x04,0x08,0x08,0x10,0x70,0x11,0x11,0x12,0x14,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0xc8,0xa8,0xa8,0x88,0x88,0x08,0x09,0x09,0x07,0x00 -+// 27727 汏 ; -+,0x20,0x10,0x10,0x00,0x43,0x28,0x28,0x08,0x10,0x10,0x70,0x11,0x11,0x12,0x14,0x00,0x40,0x40,0x40,0x40,0xfe,0x40,0x40,0x40,0x60,0x90,0x90,0x08,0x04,0x07,0x02,0x00 -+// 27728 汐 ; -+,0x10,0x08,0x08,0x00,0x42,0x24,0x24,0x09,0x08,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x20,0x20,0x20,0x3f,0x41,0x42,0xc2,0x24,0x14,0x08,0x10,0x20,0x40,0x80,0x00,0x00 -+// 27729 汑 ; -+,0x10,0x08,0x09,0x40,0x22,0x22,0x04,0x07,0x08,0x08,0x38,0x08,0x08,0x08,0x08,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0x3f,0xe0,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 27730 汒 ; -+,0x10,0x08,0x08,0x07,0x41,0x29,0x29,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x10,0x00,0x40,0x20,0x20,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00 -+// 27731 汓 ; -+,0x10,0x09,0x08,0x40,0x20,0x24,0x04,0x0b,0x08,0x08,0x30,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 27732 汔 ; -+,0x10,0x08,0x08,0x01,0x41,0x2a,0x29,0x08,0x10,0x10,0x70,0x11,0x12,0x12,0x11,0x00,0x80,0x80,0x80,0xff,0x00,0x00,0xf8,0x10,0x20,0x40,0x80,0x00,0x01,0x01,0xff,0x00 -+// 27733 汕 ; -+,0x10,0x08,0x08,0x00,0x40,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x12,0x13,0x12,0x00,0x00,0x20,0x20,0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 27734 汖 ; -+,0x00,0x10,0x10,0x1f,0x00,0x00,0x00,0x3e,0x02,0x04,0x04,0x08,0x10,0x20,0x42,0x01,0x80,0x84,0x84,0xfc,0x00,0x80,0x84,0x88,0xd0,0xa0,0x90,0x98,0x8e,0x84,0x80,0x00 -+// 27735 汗 ; -+,0x10,0x09,0x00,0x40,0x24,0x24,0x08,0x0b,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 27736 汘 ; -+,0x10,0x08,0x09,0x00,0x44,0x24,0x29,0x08,0x08,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 27737 汙 ; -+,0x10,0x0b,0x08,0x00,0x44,0x24,0x2b,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 27738 汚 ; -+,0x10,0x09,0x08,0x40,0x20,0x25,0x04,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x00,0x00,0xff,0x20,0x20,0x20,0xff,0x40,0x40,0x7e,0x02,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 27739 汛 ; -+,0x10,0x0b,0x08,0x00,0x40,0x24,0x07,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0xe8,0x88,0x88,0x88,0x84,0x85,0x85,0x83,0x81,0x00 -+// 27740 汜 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x29,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x10,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0xff,0x00 -+// 27741 汝 ; -+,0x10,0x08,0x08,0x40,0x27,0x20,0x04,0x08,0x09,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x20,0x20,0x20,0x40,0xff,0x44,0x84,0x88,0x08,0xd0,0x30,0x28,0x44,0x86,0x02,0x00 -+// 27742 汞 ; -+,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x3e,0x02,0x04,0x04,0x08,0x10,0x60,0x02,0x01,0x00,0xfc,0x80,0x80,0xfe,0x80,0x88,0x90,0xe0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x00 -+// 27743 江 ; -+,0x10,0x08,0x09,0x00,0x44,0x24,0x28,0x08,0x08,0x10,0x70,0x10,0x10,0x17,0x10,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 27744 池 ; -+,0x00,0x10,0x08,0x09,0x41,0x25,0x25,0x0b,0x09,0x09,0x11,0x71,0x11,0x11,0x10,0x00,0x00,0x20,0x20,0x20,0x26,0x3a,0xe2,0x22,0x22,0x2a,0x24,0x20,0x21,0x01,0xff,0x00 -+// 27745 污 ; -+,0x10,0x09,0x08,0x00,0x40,0x25,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x00,0x00,0x00,0xff,0x40,0x40,0x7e,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 27746 汢 ; -+,0x00,0x10,0x08,0x08,0x00,0x40,0x25,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x17,0x10,0x00,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 27747 汣 ; -+,0x10,0x08,0x08,0x00,0x22,0x12,0x15,0x04,0x08,0x08,0x38,0x10,0x10,0x11,0x16,0x00,0x40,0x40,0x40,0x7c,0x84,0x88,0x08,0x10,0x10,0x28,0x28,0x44,0x84,0x03,0x02,0x00 -+// 27748 汤 ; -+,0x10,0x09,0x08,0x00,0x44,0x24,0x28,0x08,0x10,0x70,0x13,0x10,0x10,0x11,0x16,0x10,0x00,0xfc,0x08,0x10,0x20,0x40,0xfe,0x4a,0x4a,0x92,0x12,0x22,0x42,0x82,0x0a,0x04 -+// 27749 汥 ; -+,0x10,0x08,0x08,0x01,0x44,0x24,0x28,0x09,0x10,0x10,0x70,0x10,0x10,0x10,0x11,0x16,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x84,0x48,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 27750 汦 ; -+,0x20,0x10,0x13,0x02,0x4a,0x2a,0x2b,0x12,0x12,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x00,0x3c,0xe0,0x20,0x20,0x20,0xff,0x20,0x20,0x10,0x10,0x10,0x49,0x89,0x05,0x03 -+// 27751 汧 ; -+,0x10,0x0b,0x08,0x00,0x40,0x24,0x27,0x08,0x08,0x10,0x70,0x11,0x11,0x12,0x14,0x10,0x00,0xfe,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08 -+// 27752 汨 ; -+,0x10,0x09,0x09,0x01,0x41,0x25,0x25,0x09,0x09,0x09,0x71,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 27753 汩 ; -+,0x10,0x08,0x0b,0x42,0x26,0x26,0x0a,0x0b,0x12,0x72,0x12,0x12,0x13,0x12,0x10,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00,0x00 -+// 27754 汪 ; -+,0x10,0x0b,0x08,0x00,0x44,0x24,0x28,0x09,0x10,0x70,0x10,0x10,0x10,0x17,0x10,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 27755 汫 ; -+,0x00,0x10,0x08,0x08,0x03,0x44,0x24,0x28,0x0b,0x10,0x70,0x10,0x10,0x11,0x11,0x12,0x00,0x88,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x08,0x08,0x08 -+// 27756 汬 ; -+,0x02,0x02,0x1f,0x02,0x7f,0x02,0x04,0x18,0x00,0x1e,0x02,0x04,0x08,0x10,0x62,0x01,0x20,0x20,0xfc,0x20,0xff,0x20,0xa0,0xa0,0x88,0xd0,0xa0,0x90,0x8c,0x87,0x82,0x00 -+// 27757 汭 ; -+,0x10,0x08,0x08,0x00,0x41,0x25,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x32,0x4a,0x86,0x02,0x02,0x02,0x0a,0x04 -+// 27758 汮 ; -+,0x10,0x08,0x08,0x01,0x41,0x22,0x20,0x04,0x08,0x08,0x70,0x10,0x13,0x10,0x10,0x00,0x80,0x80,0x80,0xfe,0x02,0x02,0x82,0x42,0x42,0x12,0x22,0xc2,0x02,0x02,0x0a,0x04 -+// 27759 汯 ; -+,0x20,0x10,0x10,0x07,0x40,0x24,0x28,0x08,0x11,0x11,0x72,0x12,0x14,0x11,0x10,0x00,0x40,0x40,0x40,0xff,0x40,0x80,0x90,0x90,0x20,0x20,0x48,0x44,0x82,0xff,0x02,0x00 -+// 27760 汰 ; -+,0x10,0x08,0x08,0x00,0x47,0x20,0x28,0x08,0x10,0x10,0x61,0x21,0x22,0x24,0x28,0x00,0x40,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0xa0,0x90,0x10,0x88,0x44,0x47,0x02,0x00 -+// 27761 汱 ; -+,0x00,0x10,0x08,0x00,0x44,0x25,0x28,0x08,0x10,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x20,0x20,0x28,0x24,0x20,0xff,0x20,0x20,0x50,0x50,0x48,0x88,0x84,0x07,0x02,0x00 -+// 27762 汲 ; -+,0x10,0x09,0x08,0x00,0x44,0x24,0x28,0x08,0x09,0x11,0x72,0x12,0x14,0x18,0x13,0x00,0x00,0xfe,0x84,0x84,0x88,0x88,0x9e,0xc2,0x44,0x24,0x18,0x18,0x24,0xc7,0x02,0x00 -+// 27763 汳 ; -+,0x10,0x08,0x09,0x45,0x25,0x29,0x09,0x09,0x11,0x11,0x71,0x12,0x12,0x14,0x1b,0x00,0x00,0x1e,0xe0,0x00,0x00,0xfe,0x44,0x44,0x28,0x28,0x10,0x18,0x24,0xc7,0x02,0x00 -+// 27764 汴 ; -+,0x10,0x08,0x08,0x00,0x21,0x12,0x12,0x04,0x04,0x08,0x38,0x08,0x08,0x08,0x08,0x00,0x40,0x20,0x20,0x00,0xff,0x20,0x20,0x30,0x2c,0x24,0x20,0x20,0x20,0x20,0x20,0x00 -+// 27765 汵 ; -+,0x20,0x10,0x10,0x04,0x44,0x25,0x2a,0x08,0x08,0x13,0x10,0x70,0x10,0x10,0x10,0x10,0x20,0x20,0x60,0x50,0x88,0x44,0x23,0x20,0x00,0xfe,0x04,0x08,0x08,0x10,0x20,0x20 -+// 27766 汶 ; -+,0x20,0x10,0x10,0x07,0x49,0x29,0x29,0x08,0x10,0x10,0x70,0x10,0x10,0x13,0x1c,0x10,0x40,0x20,0x20,0xff,0x08,0x08,0x08,0x88,0x90,0x50,0x20,0x50,0x8c,0x07,0x02,0x00 -+// 27767 汷 ; -+,0x10,0x08,0x08,0x00,0x44,0x24,0x29,0x0a,0x10,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x40,0x40,0x40,0x7c,0x84,0x84,0x84,0x48,0x48,0x30,0x10,0x28,0x44,0x87,0x02,0x00 -+// 27768 汸 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x24,0x04,0x08,0x08,0x38,0x10,0x10,0x11,0x12,0x04,0x40,0x20,0x20,0xff,0x40,0x40,0x40,0x7c,0x44,0x44,0x44,0x84,0x84,0x04,0x14,0x08 -+// 27769 汹 ; -+,0x20,0x10,0x11,0x00,0x48,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x13,0x13,0x12,0x00,0x00,0x08,0x08,0x90,0x50,0x52,0x22,0x22,0x52,0x52,0x8a,0x8a,0x02,0xfe,0x02,0x00 -+// 27770 決 ; -+,0x10,0x08,0x08,0x01,0x44,0x24,0x28,0x08,0x0b,0x10,0x70,0x10,0x10,0x11,0x12,0x14,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0x44,0xff,0x40,0x60,0x90,0x88,0x04,0x07,0x02 -+// 27771 汻 ; -+,0x20,0x10,0x10,0x01,0x45,0x26,0x28,0x0b,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0x80,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 27772 汼 ; -+,0x20,0x10,0x10,0x02,0x42,0x25,0x25,0x06,0x09,0x08,0x78,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 27773 汽 ; -+,0x21,0x11,0x11,0x02,0x4b,0x2c,0x2b,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x00,0xfc,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x05,0x05,0x03,0x01 -+// 27774 汾 ; -+,0x00,0x10,0x08,0x08,0x41,0x29,0x2a,0x0d,0x10,0x70,0x10,0x10,0x10,0x11,0x12,0x10,0x90,0x90,0x90,0x88,0x08,0x04,0x03,0xf8,0x48,0x48,0x48,0x88,0x88,0x08,0x28,0x10 -+// 27775 汿 ; -+,0x10,0x08,0x08,0x20,0x10,0x15,0x04,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x04,0x28,0x10,0xff,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 27776 沀 ; -+,0x04,0x04,0x04,0x04,0x7d,0x0e,0x0d,0x16,0x15,0x25,0x24,0x44,0x04,0x04,0x14,0x08,0x00,0xfe,0x04,0x88,0x30,0x10,0xff,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 27777 沁 ; -+,0x20,0x10,0x10,0x00,0x44,0x24,0x28,0x0a,0x12,0x14,0x64,0x28,0x20,0x20,0x20,0x00,0x40,0x20,0x10,0x10,0x80,0x80,0x84,0x82,0x81,0x81,0x80,0x84,0x84,0x84,0x7c,0x00 -+// 27778 沂 ; -+,0x10,0x08,0x09,0x01,0x45,0x25,0x29,0x09,0x11,0x11,0x61,0x22,0x22,0x24,0x28,0x20,0x00,0x1e,0xe0,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 27779 沃 ; -+,0x10,0x08,0x0b,0x00,0x40,0x20,0x27,0x08,0x08,0x10,0x70,0x11,0x11,0x12,0x14,0x00,0x00,0x3c,0xc0,0x40,0x40,0x40,0xff,0x40,0x40,0xa0,0x90,0x10,0x08,0x06,0x04,0x00 -+// 27780 沄 ; -+,0x20,0x10,0x11,0x00,0x40,0x24,0x27,0x08,0x08,0x10,0x71,0x11,0x12,0x17,0x10,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xff,0x40,0x40,0x80,0x08,0x04,0x3e,0xc2,0x02,0x00 -+// 27781 沅 ; -+,0x20,0x11,0x10,0x00,0x40,0x2b,0x28,0x08,0x10,0x10,0x70,0x21,0x21,0x22,0x2c,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x90,0x90,0x90,0x90,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 27782 沆 ; -+,0x20,0x10,0x17,0x00,0x48,0x29,0x09,0x11,0x11,0x11,0x61,0x22,0x22,0x24,0x28,0x00,0x80,0x40,0xfe,0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 27783 沇 ; -+,0x20,0x10,0x10,0x00,0x45,0x27,0x28,0x08,0x08,0x10,0x70,0x11,0x11,0x12,0x1c,0x10,0x20,0x20,0x60,0x88,0x04,0xfe,0x92,0x90,0x90,0x90,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 27784 沈 ; -+,0x10,0x08,0x08,0x43,0x26,0x2a,0x08,0x08,0x10,0x10,0x70,0x10,0x11,0x12,0x1c,0x00,0x20,0x20,0x20,0xff,0x22,0x24,0x60,0x60,0x60,0x60,0xa0,0xa1,0x21,0x21,0x1f,0x00 -+// 27785 沉 ; -+,0x20,0x13,0x12,0x00,0x44,0x24,0x28,0x08,0x10,0x70,0x10,0x10,0x11,0x11,0x12,0x00,0x00,0xfe,0x04,0x00,0x00,0xf0,0x90,0x90,0x90,0x90,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 27786 沊 ; -+,0x08,0x08,0x08,0x08,0x7e,0x4a,0x08,0x08,0x08,0x0c,0x0d,0x14,0x14,0x24,0x43,0x00,0x10,0x10,0x10,0x12,0xf4,0x38,0x30,0x58,0x54,0x92,0x12,0x50,0x21,0x01,0xff,0x00 -+// 27787 沋 ; -+,0x20,0x10,0x10,0x00,0x45,0x24,0x28,0x08,0x08,0x10,0x10,0x71,0x11,0x12,0x14,0x00,0x40,0x50,0x48,0x40,0xff,0x50,0x50,0x50,0x90,0x90,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 27788 沌 ; -+,0x20,0x10,0x10,0x03,0x40,0x2a,0x2a,0x12,0x12,0x13,0x72,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x20,0xfe,0x20,0x22,0x22,0x22,0x22,0xfe,0x22,0x20,0x21,0x21,0x1f,0x00 -+// 27789 沍 ; -+,0x20,0x17,0x10,0x04,0x44,0x28,0x29,0x09,0x11,0x13,0x70,0x10,0x10,0x17,0x10,0x00,0x00,0xff,0x80,0x80,0x80,0xfc,0x04,0x04,0x04,0xf8,0x08,0x08,0x08,0xff,0x00,0x00 -+// 27790 沎 ; -+,0x00,0x10,0x09,0x09,0x42,0x24,0x22,0x04,0x04,0x08,0x38,0x08,0x08,0x08,0x08,0x00,0x90,0x90,0x90,0x90,0x92,0x92,0x94,0x98,0x90,0xb0,0x90,0x91,0x91,0x91,0x8f,0x00 -+// 27791 沏 ; -+,0x01,0x21,0x11,0x11,0x45,0x27,0x29,0x09,0x11,0x11,0x71,0x11,0x10,0x10,0x11,0x00,0x00,0x00,0x7e,0x12,0x12,0xd2,0x12,0x12,0x12,0x52,0xa2,0x22,0x42,0x8a,0x04,0x00 -+// 27792 沐 ; -+,0x20,0x10,0x10,0x04,0x45,0x28,0x28,0x08,0x10,0x10,0x71,0x12,0x14,0x10,0x10,0x10,0x20,0x20,0x20,0x20,0xff,0x20,0x60,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20,0x20 -+// 27793 沑 ; -+,0x20,0x11,0x10,0x00,0x44,0x24,0x24,0x0b,0x08,0x08,0x30,0x10,0x10,0x17,0x10,0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0xfc,0x44,0x44,0x44,0x44,0x44,0xff,0x00,0x00 -+// 27794 沒 ; -+,0x20,0x10,0x10,0x00,0x21,0x14,0x14,0x09,0x08,0x08,0x70,0x10,0x10,0x10,0x11,0x16,0x40,0x40,0xfc,0x84,0x04,0x14,0x08,0xfc,0x84,0x48,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 27795 沓 ; -+,0x00,0x00,0x3e,0x02,0x04,0x04,0x0a,0x31,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x80,0x86,0x98,0xe0,0xa0,0x98,0x8f,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 27796 沔 ; -+,0x10,0x0b,0x08,0x00,0x45,0x25,0x29,0x09,0x09,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xff,0x20,0x20,0x3e,0x22,0x22,0x22,0xfe,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 27797 沕 ; -+,0x20,0x10,0x10,0x01,0x45,0x26,0x28,0x08,0x08,0x11,0x76,0x10,0x10,0x13,0x10,0x10,0x80,0x80,0x80,0xfe,0x4a,0x4a,0x4a,0x92,0x92,0x22,0x22,0x42,0x82,0x02,0x0a,0x04 -+// 27798 沖 ; -+,0x20,0x10,0x10,0x03,0x46,0x26,0x2a,0x0a,0x13,0x12,0x70,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0xfe,0x22,0x20,0x20,0x20,0x20,0x20,0x20 -+// 27799 沗 ; -+,0x00,0x1f,0x00,0x3f,0x01,0x02,0x0c,0x70,0x1f,0x01,0x02,0x04,0x18,0x60,0x02,0x01,0x00,0xfc,0x80,0xfe,0x20,0x18,0x87,0x82,0x88,0xd0,0xa0,0x90,0x88,0x8c,0x88,0x00 -+// 27800 沘 ; -+,0x21,0x11,0x11,0x01,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x00,0x10,0x10,0x10,0x10,0x12,0x14,0xd8,0x10,0x10,0x10,0x10,0x11,0x51,0x91,0x0f,0x00 -+// 27801 沙 ; -+,0x10,0x08,0x08,0x00,0x20,0x15,0x05,0x0a,0x08,0x10,0x70,0x10,0x10,0x10,0x11,0x16,0x20,0x20,0x20,0xa8,0xa4,0x22,0x21,0x20,0x22,0x22,0x04,0x08,0x10,0x60,0x80,0x00 -+// 27802 沚 ; -+,0x10,0x08,0x08,0x00,0x44,0x24,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x17,0x10,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 27803 沛 ; -+,0x10,0x08,0x0b,0x00,0x44,0x27,0x2a,0x0a,0x12,0x72,0x12,0x12,0x12,0x10,0x10,0x10,0x20,0x20,0xff,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20,0x20 -+// 27804 沜 ; -+,0x10,0x09,0x09,0x01,0x41,0x21,0x25,0x05,0x09,0x09,0x11,0x72,0x12,0x14,0x14,0x18,0x10,0x10,0x10,0x10,0xff,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 27805 沝 ; -+,0x08,0x08,0x08,0x08,0x79,0x1a,0x1c,0x1a,0x29,0x29,0x28,0x48,0x09,0x08,0x28,0x10,0x10,0x10,0x10,0x10,0xf2,0x34,0x38,0x58,0x54,0x54,0x93,0x92,0x10,0x10,0x50,0x20 -+// 27806 沞 ; -+,0x20,0x13,0x10,0x00,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x10,0x10,0x10,0x00,0xff,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20,0x20 -+// 27807 沟 ; -+,0x10,0x08,0x08,0x01,0x45,0x26,0x28,0x08,0x08,0x11,0x73,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0x80,0xfe,0x02,0x02,0x42,0x42,0x82,0x12,0xfa,0x0a,0x02,0x02,0x14,0x08 -+// 27808 沠 ; -+,0x10,0x08,0x09,0x01,0x25,0x15,0x15,0x09,0x09,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x00,0x1e,0xe8,0x28,0x28,0x28,0x28,0x24,0x24,0x24,0x24,0x22,0x22,0x23,0x22,0x20 -+// 27809 没 ; -+,0x10,0x08,0x08,0x40,0x21,0x2a,0x08,0x0b,0x11,0x10,0x70,0x10,0x10,0x10,0x13,0x10,0x00,0xf8,0x88,0x88,0x09,0x07,0x00,0xfc,0x08,0x88,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 27810 沢 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x09,0x09,0x09,0x11,0x71,0x11,0x11,0x12,0x12,0x14,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x20,0x20,0x10,0x10,0x08,0x08,0x04,0x07,0x02 -+// 27811 沣 ; -+,0x10,0x08,0x09,0x40,0x24,0x24,0x09,0x08,0x08,0x10,0x73,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 27812 沤 ; -+,0x10,0x0b,0x0a,0x02,0x42,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x13,0x12,0x13,0x12,0x00,0xff,0x04,0x04,0x88,0x48,0x30,0x10,0x28,0x28,0x44,0x86,0x04,0x00,0xff,0x00 -+// 27813 沥 ; -+,0x10,0x09,0x09,0x41,0x21,0x25,0x05,0x09,0x09,0x12,0x72,0x12,0x14,0x14,0x19,0x12,0x00,0xff,0x10,0x10,0x10,0xfe,0x12,0x12,0x12,0x22,0x22,0x42,0x42,0x82,0x0a,0x04 -+// 27814 沦 ; -+,0x20,0x10,0x10,0x00,0x44,0x25,0x2a,0x08,0x10,0x10,0x70,0x10,0x10,0x10,0x10,0x00,0x20,0x20,0x60,0x50,0x88,0x04,0x83,0x80,0x98,0xe0,0x80,0x80,0x82,0x82,0x7e,0x00 -+// 27815 沧 ; -+,0x10,0x08,0x08,0x00,0x41,0x26,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x10,0x20,0x20,0x50,0x88,0x04,0x07,0xfa,0x08,0x08,0x08,0x28,0x10,0x00,0x02,0x02,0xfe -+// 27816 沨 ; -+,0x20,0x13,0x12,0x02,0x47,0x26,0x2a,0x0a,0x12,0x12,0x72,0x13,0x14,0x14,0x18,0x10,0x00,0xfc,0x04,0x14,0x14,0xa4,0xa4,0x44,0x64,0xa4,0x94,0x15,0x05,0x03,0x03,0x01 -+// 27817 沩 ; -+,0x20,0x12,0x11,0x00,0x43,0x28,0x28,0x08,0x10,0x10,0x70,0x10,0x11,0x12,0x14,0x10,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x42,0x52,0x4a,0x8a,0x82,0x02,0x02,0x0a,0x04 -+// 27818 沪 ; -+,0x10,0x08,0x08,0x01,0x21,0x15,0x15,0x09,0x09,0x11,0x71,0x11,0x11,0x12,0x12,0x14,0x20,0x10,0x10,0xff,0x01,0x01,0x01,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 27819 沫 ; -+,0x10,0x08,0x08,0x43,0x28,0x28,0x0b,0x10,0x10,0x10,0x70,0x11,0x12,0x10,0x10,0x10,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 27820 沬 ; -+,0x10,0x08,0x08,0x01,0x40,0x28,0x2b,0x08,0x08,0x10,0x70,0x11,0x16,0x10,0x10,0x10,0x20,0x20,0x20,0xfc,0x20,0x20,0xff,0x60,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 27821 沭 ; -+,0x20,0x10,0x10,0x00,0x4b,0x28,0x28,0x10,0x10,0x71,0x11,0x12,0x14,0x10,0x10,0x10,0x20,0x28,0x24,0x20,0xff,0x60,0x70,0xb0,0xa8,0x28,0x24,0x24,0x23,0x22,0x20,0x20 -+// 27822 沮 ; -+,0x20,0x11,0x11,0x05,0x45,0x25,0x29,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x17,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0xff,0x00 -+// 27823 沯 ; -+,0x00,0x00,0x3e,0x02,0x04,0x08,0x12,0x61,0x3f,0x02,0x04,0x0f,0x34,0x04,0x07,0x04,0x80,0x80,0xc4,0xa8,0x90,0x8c,0x87,0x02,0xff,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 27824 沰 ; -+,0x20,0x13,0x10,0x00,0x44,0x24,0x24,0x08,0x08,0x11,0x72,0x14,0x10,0x10,0x10,0x10,0x00,0xff,0x20,0x20,0x20,0x40,0x40,0x80,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 27825 沱 ; -+,0x20,0x10,0x13,0x02,0x40,0x24,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x00,0x40,0x20,0xff,0x02,0x00,0x80,0x80,0x9c,0xe0,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 27826 沲 ; -+,0x20,0x10,0x10,0x01,0x45,0x26,0x28,0x08,0x13,0x10,0x70,0x10,0x10,0x10,0x10,0x00,0x80,0x80,0xff,0x00,0x10,0x12,0x9e,0xf2,0x92,0x92,0x92,0x96,0x91,0x81,0x7f,0x00 -+// 27827 河 ; -+,0x10,0x0b,0x08,0x00,0x44,0x25,0x29,0x09,0x11,0x11,0x71,0x10,0x10,0x10,0x10,0x10,0x00,0xff,0x04,0x04,0x04,0xe4,0x24,0x24,0x24,0xe4,0x24,0x04,0x04,0x04,0x14,0x08 -+// 27828 沴 ; -+,0x20,0x10,0x10,0x00,0x49,0x2a,0x2c,0x10,0x13,0x10,0x70,0x13,0x10,0x10,0x17,0x00,0x40,0x40,0x60,0x90,0x0c,0x07,0x42,0x80,0x10,0x20,0xc4,0x08,0x30,0xc0,0x00,0x00 -+// 27829 沵 ; -+,0x10,0x08,0x08,0x01,0x41,0x26,0x24,0x08,0x08,0x10,0x71,0x12,0x14,0x10,0x10,0x10,0x80,0x80,0x80,0xff,0x02,0x24,0x20,0x20,0xa8,0xa4,0x22,0x23,0x21,0x20,0xa0,0x40 -+// 27830 沶 ; -+,0x10,0x08,0x08,0x00,0x44,0x24,0x2b,0x08,0x08,0x10,0x71,0x12,0x14,0x10,0x10,0x10,0x00,0xfe,0x00,0x00,0x00,0x00,0xff,0x20,0xa8,0xa4,0x22,0x23,0x21,0x20,0xa0,0x40 -+// 27831 沷 ; -+,0x00,0x10,0x08,0x08,0x43,0x24,0x24,0x08,0x08,0x10,0x71,0x11,0x12,0x14,0x10,0x13,0x40,0x48,0x44,0x40,0xff,0x40,0x7c,0x44,0xc4,0xa8,0x28,0x10,0x28,0x44,0x87,0x02 -+// 27832 沸 ; -+,0x20,0x10,0x10,0x03,0x44,0x24,0x2b,0x0a,0x12,0x73,0x10,0x11,0x11,0x12,0x14,0x10,0x90,0x90,0x90,0xfc,0x94,0x94,0xfc,0x90,0x90,0xfe,0x92,0x12,0x12,0x16,0x10,0x10 -+// 27833 油 ; -+,0x20,0x10,0x10,0x00,0x4b,0x2a,0x2a,0x0a,0x12,0x13,0x72,0x12,0x12,0x12,0x13,0x12,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0xfe,0x22,0x22,0x22,0x22,0xfe,0x02 -+// 27834 沺 ; -+,0x10,0x08,0x0b,0x02,0x46,0x26,0x2a,0x0b,0x12,0x12,0x72,0x12,0x12,0x13,0x12,0x10,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0xfe,0x22,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 27835 治 ; -+,0x10,0x08,0x08,0x00,0x44,0x25,0x2b,0x08,0x08,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x40,0x48,0x84,0x1e,0xe2,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 27836 沼 ; -+,0x10,0x09,0x08,0x00,0x44,0x24,0x29,0x0a,0x10,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x42,0x42,0x82,0x82,0x0a,0x04,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02 -+// 27837 沽 ; -+,0x10,0x08,0x08,0x00,0x47,0x24,0x28,0x08,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 27838 沾 ; -+,0x10,0x08,0x08,0x00,0x44,0x24,0x28,0x08,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02 -+// 27839 沿 ; -+,0x10,0x08,0x08,0x40,0x24,0x24,0x09,0x0a,0x10,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xf8,0x88,0x88,0x88,0x88,0x07,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 27840 泀 ; -+,0x10,0x0b,0x08,0x00,0x21,0x10,0x15,0x05,0x09,0x09,0x39,0x09,0x08,0x08,0x08,0x08,0x00,0xfe,0x02,0x02,0xfa,0x02,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0x02,0x0a,0x04 -+// 27841 況 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x05,0x08,0x08,0x70,0x10,0x10,0x10,0x11,0x12,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x50,0x50,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 27842 泂 ; -+,0x20,0x13,0x02,0x02,0x4a,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x00,0xfe,0x02,0x02,0x02,0xfa,0x8a,0x8a,0x8a,0x8a,0xfa,0x02,0x02,0x02,0x0a,0x04 -+// 27843 泃 ; -+,0x20,0x10,0x10,0x01,0x45,0x26,0x25,0x09,0x09,0x09,0x71,0x11,0x10,0x10,0x10,0x10,0x80,0x80,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0x12,0xf2,0x12,0x02,0x02,0x0a,0x04 -+// 27844 泄 ; -+,0x20,0x11,0x11,0x01,0x45,0x27,0x29,0x09,0x09,0x71,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x3c,0x00,0x00,0x00,0xff,0x00 -+// 27845 泅 ; -+,0x20,0x13,0x12,0x02,0x42,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x13,0x12,0x12,0x13,0x12,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x52,0x4a,0x8a,0x02,0x02,0x02,0xfe,0x02 -+// 27846 泆 ; -+,0x20,0x10,0x11,0x01,0x43,0x2a,0x2c,0x08,0x13,0x10,0x70,0x10,0x10,0x10,0x11,0x16,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x48,0x84,0x07,0x02 -+// 27847 泇 ; -+,0x21,0x11,0x11,0x07,0x41,0x29,0x29,0x09,0x11,0x11,0x72,0x22,0x22,0x24,0x25,0x28,0x00,0x00,0x00,0xde,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x5e,0x52,0x80 -+// 27848 泈 ; -+,0x10,0x08,0x09,0x01,0x46,0x24,0x28,0x08,0x11,0x16,0x70,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0xfe,0x04,0x88,0x50,0x30,0x48,0x87,0x62,0x18,0x08,0x40,0x30,0x18,0x08 -+// 27849 泉 ; -+,0x00,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x3e,0x02,0x04,0x08,0x10,0x62,0x01,0x80,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x80,0x8e,0xf0,0xa0,0x90,0x8c,0x87,0x82,0x00 -+// 27850 泊 ; -+,0x20,0x10,0x10,0x41,0x25,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x40,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0x02,0xfe,0x02 -+// 27851 泋 ; -+,0x20,0x10,0x11,0x00,0x44,0x25,0x29,0x09,0x0b,0x11,0x71,0x11,0x11,0x12,0x12,0x14,0x20,0x20,0xfe,0x20,0x20,0x24,0x04,0x04,0xff,0x04,0x04,0x04,0x04,0x04,0x04,0x04 -+// 27852 泌 ; -+,0x10,0x08,0x08,0x00,0x44,0x24,0x28,0x0a,0x0a,0x12,0x74,0x10,0x10,0x11,0x16,0x10,0x40,0x20,0x24,0x84,0x84,0x88,0x8a,0x91,0x91,0xa1,0xa0,0xc2,0x82,0x82,0x7e,0x00 -+// 27853 泍 ; -+,0x10,0x08,0x08,0x03,0x44,0x24,0x28,0x08,0x11,0x12,0x75,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x20,0xfe,0x20,0x70,0xa8,0xa8,0x24,0x24,0xfb,0x22,0x20,0x20,0x20,0x20 -+// 27854 泎 ; -+,0x10,0x08,0x0a,0x02,0x42,0x25,0x26,0x04,0x08,0x08,0x70,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0x40,0xff,0xa0,0x20,0x3e,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20 -+// 27855 泏 ; -+,0x20,0x10,0x10,0x01,0x45,0x25,0x29,0x09,0x08,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x20,0x20,0x20,0x22,0x22,0x22,0xfe,0x22,0x20,0x21,0x21,0x21,0x21,0x21,0xff,0x01 -+// 27856 泐 ; -+,0x20,0x13,0x12,0x06,0x47,0x2a,0x2a,0x0a,0x12,0x13,0x72,0x12,0x12,0x12,0x12,0x12,0x08,0xc8,0x48,0xbf,0x09,0x89,0x89,0x49,0x49,0x51,0x91,0x11,0x21,0x21,0x45,0x82 -+// 27857 泑 ; -+,0x10,0x09,0x09,0x01,0x42,0x24,0x27,0x08,0x09,0x12,0x74,0x17,0x10,0x10,0x10,0x10,0x08,0x08,0x08,0x08,0x3f,0x49,0x89,0x89,0x09,0x11,0x91,0xd1,0x21,0x21,0x45,0x82 -+// 27858 泒 ; -+,0x10,0x08,0x0b,0x02,0x4a,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x14,0x14,0x18,0x10,0x00,0x3c,0xd0,0x50,0x50,0x50,0x48,0x48,0x48,0x48,0x44,0x64,0x52,0x6b,0x42,0x00 -+// 27859 泓 ; -+,0x20,0x13,0x10,0x04,0x47,0x2a,0x2a,0x0a,0x13,0x10,0x70,0x10,0x10,0x10,0x11,0x10,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x08,0xd0,0x50,0x50,0x52,0x62,0x7f,0x41,0x80 -+// 27860 泔 ; -+,0x21,0x11,0x11,0x01,0x47,0x25,0x05,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0xf8,0x08 -+// 27861 法 ; -+,0x10,0x08,0x08,0x00,0x45,0x24,0x28,0x08,0x0b,0x10,0x70,0x10,0x10,0x11,0x13,0x10,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x40,0x40,0x84,0x02,0xfe,0x02 -+// 27862 泖 ; -+,0x20,0x13,0x12,0x02,0x46,0x26,0x2a,0x0a,0x12,0x12,0x73,0x10,0x10,0x10,0x11,0x12,0x60,0x8f,0x09,0x49,0x49,0x49,0x49,0x49,0x49,0xcd,0x4a,0x48,0x88,0x88,0x08,0x08 -+// 27863 泗 ; -+,0x20,0x10,0x13,0x02,0x46,0x26,0x2a,0x0a,0x0a,0x12,0x12,0x73,0x12,0x13,0x12,0x10,0x00,0x00,0xff,0x49,0x49,0x49,0x49,0x49,0x49,0x89,0x87,0x01,0x01,0xff,0x01,0x00 -+// 27864 泘 ; -+,0x10,0x08,0x0b,0x00,0x45,0x24,0x28,0x0b,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0x3e,0xe0,0x20,0x24,0xa4,0xa8,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 27865 泙 ; -+,0x10,0x09,0x08,0x04,0x44,0x29,0x28,0x08,0x13,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x20,0x20,0x22,0x22,0xa4,0xa8,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 27866 泚 ; -+,0x20,0x10,0x10,0x04,0x44,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x17,0x10,0x90,0x90,0x90,0x90,0x90,0xf3,0x9c,0x90,0x90,0x90,0x90,0x91,0x91,0xd1,0x0f,0x00 -+// 27867 泛 ; -+,0x20,0x13,0x10,0x04,0x44,0x2b,0x28,0x08,0x10,0x10,0x70,0x10,0x13,0x14,0x10,0x10,0x1e,0xe0,0x40,0x20,0x20,0xfe,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x80,0x7f,0x00 -+// 27868 泜 ; -+,0x20,0x13,0x12,0x02,0x42,0x26,0x27,0x0a,0x0a,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x3e,0xe0,0x20,0x20,0x20,0x20,0xfe,0x10,0x10,0x10,0x08,0x88,0x45,0xa5,0x23,0x01 -+// 27869 泝 ; -+,0x10,0x09,0x09,0x05,0x45,0x29,0x29,0x09,0x11,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x1c,0xe0,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x18,0x16,0x12,0x10,0x10,0x10,0x10 -+// 27870 泞 ; -+,0x20,0x10,0x13,0x02,0x44,0x24,0x2b,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x40,0x20,0xff,0x02,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 27871 泟 ; -+,0x10,0x0b,0x08,0x00,0x44,0x24,0x29,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x17,0x10,0x00,0xff,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 27872 泠 ; -+,0x20,0x10,0x10,0x04,0x45,0x29,0x2a,0x0c,0x13,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0xa0,0x90,0x0c,0x47,0x22,0x20,0xfc,0x08,0x10,0xa0,0x40,0x60,0x20,0x20 -+// 27873 泡 ; -+,0x10,0x08,0x09,0x05,0x46,0x2a,0x2d,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x10,0x10,0x80,0x80,0x00,0xfc,0x04,0x04,0xf4,0x14,0x14,0xf4,0x04,0x0c,0x01,0x01,0xff,0x00 -+// 27874 波 ; -+,0x10,0x08,0x08,0x03,0x42,0x2a,0x2a,0x0b,0x12,0x12,0x72,0x12,0x14,0x14,0x18,0x13,0x20,0x20,0x20,0xff,0x22,0x20,0x20,0xfc,0x84,0x48,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 27875 泣 ; -+,0x10,0x08,0x08,0x03,0x44,0x24,0x28,0x09,0x11,0x10,0x70,0x10,0x10,0x10,0x1f,0x10,0x40,0x20,0x20,0xfe,0x00,0x04,0x04,0x08,0x08,0x88,0x90,0x90,0x20,0x20,0xff,0x00 -+// 27876 泤 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x10,0x11,0x10,0x04,0x04,0x04,0x44,0x44,0x24,0x24,0x04,0x08,0x28,0x4c,0x92,0x22,0x41,0x81,0x00 -+// 27877 泥 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x29,0x09,0x09,0x12,0x72,0x12,0x14,0x14,0x18,0x10,0x00,0xfe,0x02,0x02,0xfe,0x00,0x40,0x40,0x42,0x4c,0x70,0x41,0x41,0x41,0x3f,0x00 -+// 27878 泦 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x25,0x09,0x09,0x11,0x72,0x12,0x12,0x14,0x15,0x1a,0x00,0xfe,0x02,0x02,0xfe,0x20,0x20,0x20,0xf8,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 27879 泧 ; -+,0x20,0x10,0x10,0x04,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x24,0x22,0x20,0xff,0x20,0x22,0x12,0x14,0x14,0x08,0x18,0x25,0x05,0x83,0x01 -+// 27880 注 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x24,0x08,0x09,0x10,0x70,0x10,0x10,0x10,0x17,0x10,0x40,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 27881 泩 ; -+,0x10,0x08,0x08,0x00,0x44,0x25,0x29,0x0a,0x10,0x70,0x10,0x10,0x10,0x10,0x13,0x10,0x10,0x90,0x90,0x90,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 27882 泪 ; -+,0x10,0x09,0x09,0x45,0x25,0x29,0x09,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x00,0x00,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 27883 泫 ; -+,0x20,0x10,0x10,0x03,0x40,0x24,0x24,0x08,0x09,0x10,0x70,0x10,0x10,0x11,0x13,0x10,0x40,0x20,0x20,0xff,0x20,0x40,0x44,0x88,0xf0,0x10,0x20,0x40,0x84,0x02,0xfe,0x02 -+// 27884 泬 ; -+,0x20,0x10,0x12,0x03,0x42,0x28,0x28,0x08,0x10,0x10,0x71,0x11,0x11,0x12,0x12,0x14,0x40,0x20,0x20,0xff,0x02,0x10,0x90,0x90,0x90,0x88,0x08,0x08,0x04,0x04,0x03,0x02 -+// 27885 泭 ; -+,0x20,0x10,0x10,0x05,0x45,0x2b,0x29,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x84,0x84,0x84,0x04,0x7f,0x04,0x04,0x44,0x24,0x24,0x04,0x04,0x04,0x04,0x14,0x08 -+// 27886 泮 ; -+,0x20,0x12,0x11,0x04,0x44,0x2b,0x28,0x08,0x17,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x20,0x22,0x22,0xa4,0xa8,0xff,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 27887 泯 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x05,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x02,0x02,0xfe,0x20,0x20,0xff,0x10,0x10,0x10,0x08,0x09,0x45,0x83,0x01 -+// 27888 泰 ; -+,0x01,0x3f,0x01,0x1f,0x01,0x7f,0x02,0x04,0x08,0x14,0x63,0x02,0x0c,0x30,0x02,0x01,0x00,0xfe,0x00,0xfc,0x00,0xff,0x20,0x90,0x8c,0x97,0xa2,0xe0,0x90,0x8c,0x80,0x00 -+// 27889 泱 ; -+,0x20,0x10,0x10,0x05,0x45,0x25,0x29,0x09,0x0b,0x10,0x70,0x10,0x10,0x11,0x16,0x10,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x20,0x50,0x48,0x88,0x04,0x07,0x02 -+// 27890 泲 ; -+,0x20,0x10,0x10,0x03,0x4a,0x2a,0x2a,0x0b,0x10,0x10,0x70,0x11,0x12,0x14,0x10,0x10,0x20,0x20,0x3e,0xe0,0x20,0x20,0x20,0xfe,0x62,0xa2,0xa2,0x2a,0x24,0x20,0x20,0x20 -+// 27891 泳 ; -+,0x10,0x08,0x08,0x03,0x40,0x28,0x2b,0x08,0x09,0x11,0x72,0x12,0x14,0x18,0x10,0x10,0x40,0x20,0x00,0xe0,0x22,0x24,0xa8,0xb0,0x30,0x28,0x24,0x27,0x22,0x20,0xa0,0x40 -+// 27892 泴 ; -+,0x00,0x00,0x00,0x3e,0x02,0x04,0x08,0x32,0x01,0x1f,0x12,0x12,0x12,0x12,0x7f,0x00,0x80,0x80,0x8c,0xd0,0xa0,0x98,0x8e,0x84,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 27893 泵 ; -+,0x7f,0x01,0x02,0x07,0x1a,0x62,0x03,0x00,0x3e,0x02,0x04,0x04,0x08,0x10,0x62,0x01,0xff,0x00,0x00,0xf8,0x08,0x08,0xf8,0x80,0x86,0xd8,0xa0,0x90,0x8c,0x87,0x82,0x00 -+// 27894 泶 ; -+,0x09,0x04,0x04,0x00,0x3f,0x20,0x00,0x1e,0x02,0x04,0x04,0x08,0x10,0x20,0x02,0x01,0x04,0x84,0x88,0x10,0xff,0x82,0x80,0x84,0xc8,0xb0,0x90,0x88,0x8c,0x87,0x82,0x00 -+// 27895 泷 ; -+,0x10,0x08,0x08,0x00,0x45,0x24,0x28,0x08,0x08,0x10,0x70,0x10,0x11,0x11,0x12,0x10,0x40,0x50,0x48,0x48,0xfe,0x50,0x50,0x52,0x54,0x98,0x90,0xb1,0x51,0x11,0x0f,0x00 -+// 27896 泸 ; -+,0x10,0x08,0x08,0x00,0x44,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x12,0x12,0x14,0x20,0x20,0x3f,0x20,0x20,0xfe,0x02,0x02,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 27897 泹 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x05,0x09,0x09,0x09,0x71,0x10,0x10,0x10,0x13,0x10,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0x00,0xff,0x00 -+// 27898 泺 ; -+,0x20,0x10,0x11,0x01,0x45,0x25,0x29,0x09,0x08,0x10,0x70,0x11,0x11,0x12,0x10,0x10,0x00,0x1e,0xe0,0x10,0x10,0x10,0x10,0xff,0x10,0x94,0x92,0x12,0x11,0x11,0x50,0x20 -+// 27899 泻 ; -+,0x20,0x11,0x11,0x00,0x44,0x24,0x28,0x08,0x10,0x10,0x70,0x13,0x10,0x10,0x10,0x10,0x00,0xff,0x02,0x40,0x40,0x7e,0x80,0x80,0xfe,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 27900 泼 ; -+,0x10,0x09,0x09,0x01,0x45,0x24,0x28,0x08,0x08,0x10,0x11,0x71,0x12,0x14,0x10,0x13,0x20,0x24,0x22,0x20,0xff,0x40,0x40,0x7c,0x84,0xc8,0x28,0x10,0x18,0x24,0xc7,0x02 -+// 27901 泽 ; -+,0x10,0x0b,0x01,0x04,0x44,0x28,0x2b,0x08,0x13,0x10,0x70,0x17,0x10,0x10,0x10,0x10,0x00,0xf8,0x10,0xa0,0x60,0x98,0x07,0x40,0xfc,0x40,0x40,0xfe,0x40,0x40,0x40,0x40 -+// 27902 泾 ; -+,0x10,0x09,0x08,0x40,0x24,0x24,0x08,0x0b,0x10,0x11,0x70,0x10,0x10,0x10,0x17,0x10,0x00,0xfc,0x08,0x10,0x30,0x48,0x86,0x02,0x00,0xfc,0x20,0x20,0x20,0x20,0xff,0x00 -+// 27903 泿 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x09,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x40,0x24,0x18,0x10,0x08,0x44,0x87,0x02 -+// 27904 洀 ; -+,0x20,0x10,0x11,0x05,0x45,0x25,0x29,0x0b,0x09,0x11,0x71,0x11,0x11,0x12,0x12,0x14,0x20,0x40,0xfc,0x04,0x44,0x24,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x04,0x14,0x08 -+// 27905 洁 ; -+,0x10,0x08,0x08,0x03,0x44,0x24,0x28,0x0b,0x08,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 27906 洂 ; -+,0x20,0x10,0x10,0x01,0x40,0x24,0x25,0x09,0x0a,0x0a,0x74,0x10,0x10,0x11,0x12,0x14,0x40,0x20,0x10,0xff,0x48,0x48,0x48,0x4c,0x4a,0x49,0x49,0x88,0x88,0x08,0x28,0x10 -+// 27907 洃 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x24,0x08,0x09,0x11,0x72,0x14,0x10,0x10,0x11,0x16,0x40,0x40,0x40,0xff,0x40,0x90,0x90,0x92,0x54,0x38,0x10,0x28,0x28,0x44,0x87,0x02 -+// 27908 洄 ; -+,0x10,0x0b,0x0a,0x42,0x26,0x26,0x0a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x00,0xfe,0x02,0x02,0xfa,0x8a,0x8a,0x8a,0x8a,0xfa,0x8a,0x02,0x02,0x02,0xfe,0x02 -+// 27909 洅 ; -+,0x10,0x0b,0x08,0x40,0x25,0x25,0x09,0x09,0x09,0x11,0x77,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xff,0x02,0x02,0x02,0x0a,0x04 -+// 27910 洆 ; -+,0x20,0x11,0x10,0x00,0x40,0x23,0x24,0x04,0x08,0x08,0x11,0x72,0x14,0x10,0x13,0x10,0x00,0xfc,0x08,0x10,0x20,0xe2,0x74,0x68,0xa8,0xa4,0x24,0x23,0xa2,0x40,0xff,0x00 -+// 27911 洇 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0x32,0x4a,0x46,0x82,0x02,0x02,0xfe,0x02 -+// 27912 洈 ; -+,0x10,0x08,0x08,0x01,0x43,0x25,0x25,0x09,0x09,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x40,0x40,0xfc,0x08,0xff,0x00,0x7c,0x44,0x44,0x44,0x54,0x48,0x41,0x41,0x3f,0x00 -+// 27913 洉 ; -+,0x10,0x08,0x09,0x01,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x00,0x1e,0xe0,0x00,0x00,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 27914 洊 ; -+,0x20,0x10,0x17,0x00,0x44,0x25,0x29,0x0a,0x16,0x1a,0x72,0x12,0x12,0x12,0x12,0x12,0x40,0x40,0xfe,0x80,0x80,0x7e,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 27915 洋 ; -+,0x11,0x08,0x08,0x03,0x40,0x28,0x2b,0x08,0x10,0x17,0x70,0x10,0x10,0x10,0x10,0x10,0x08,0x88,0x90,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 27916 洌 ; -+,0x20,0x13,0x10,0x00,0x49,0x2b,0x2a,0x0b,0x12,0x14,0x70,0x10,0x11,0x12,0x14,0x10,0x01,0xf1,0x81,0x89,0xe9,0xa9,0x29,0x29,0xc9,0x49,0x89,0x89,0x01,0x01,0x05,0x02 -+// 27917 洍 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x7e,0x10,0x10,0x10,0x10,0xff,0x00 -+// 27918 洎 ; -+,0x10,0x08,0x08,0x01,0x45,0x25,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x40,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02 -+// 27919 洏 ; -+,0x20,0x17,0x10,0x00,0x48,0x2b,0x2a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x00,0xff,0x40,0x40,0x80,0xfe,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x06 -+// 27920 洐 ; -+,0x20,0x10,0x11,0x02,0x40,0x24,0x24,0x09,0x0b,0x15,0x71,0x11,0x11,0x11,0x11,0x11,0x80,0x9e,0x00,0x00,0x40,0x40,0xbf,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x08 -+// 27921 洑 ; -+,0x20,0x10,0x10,0x01,0x45,0x25,0x2b,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x01,0x90,0x90,0x94,0x12,0x10,0xff,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 27922 洒 ; -+,0x20,0x13,0x10,0x04,0x44,0x2b,0x2a,0x0a,0x12,0x12,0x72,0x13,0x12,0x12,0x13,0x12,0x00,0xff,0x50,0x50,0x50,0xfe,0x52,0x52,0x52,0x52,0x8e,0x02,0x02,0x02,0xfe,0x02 -+// 27923 洓 ; -+,0x10,0x08,0x0b,0x00,0x41,0x29,0x29,0x09,0x11,0x10,0x70,0x10,0x11,0x12,0x14,0x10,0x20,0x20,0xfe,0x20,0xfc,0x24,0x24,0x24,0x24,0x60,0xb0,0xac,0x27,0x22,0x20,0x20 -+// 27924 洔 ; -+,0x10,0x08,0x08,0x40,0x24,0x25,0x08,0x08,0x0b,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0x08,0xff,0x08,0x88,0x48,0x48,0x08,0x28,0x10 -+// 27925 洕 ; -+,0x20,0x10,0x10,0x04,0x45,0x2a,0x29,0x09,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x10,0x10,0x88,0x88,0x04,0x03,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04,0x14,0x08 -+// 27926 洖 ; -+,0x10,0x09,0x09,0x41,0x25,0x24,0x09,0x08,0x08,0x13,0x70,0x10,0x10,0x10,0x11,0x16,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 27927 洗 ; -+,0x20,0x11,0x11,0x03,0x4a,0x2c,0x28,0x0f,0x10,0x10,0x70,0x11,0x11,0x12,0x14,0x10,0x20,0x20,0x20,0xfc,0x20,0x20,0x20,0xff,0x90,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 27928 洘 ; -+,0x10,0x08,0x09,0x00,0x44,0x27,0x28,0x08,0x08,0x11,0x76,0x10,0x10,0x10,0x10,0x10,0x40,0x42,0xfa,0x44,0x48,0xff,0x20,0x7e,0xc0,0x40,0x7c,0x04,0x04,0x04,0x28,0x10 -+// 27929 洙 ; -+,0x10,0x09,0x09,0x01,0x46,0x24,0x28,0x0b,0x10,0x10,0x70,0x11,0x16,0x10,0x10,0x10,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x70,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 27930 洚 ; -+,0x20,0x10,0x10,0x01,0x46,0x24,0x2b,0x08,0x11,0x11,0x71,0x11,0x17,0x10,0x10,0x10,0x80,0x80,0xfc,0x88,0x70,0xd8,0x27,0x20,0xfc,0x20,0x20,0x20,0xfe,0x20,0x20,0x20 -+// 27931 洛 ; -+,0x00,0x20,0x11,0x11,0x42,0x28,0x28,0x08,0x11,0x17,0x71,0x11,0x11,0x11,0x11,0x11,0x80,0x80,0xfc,0x04,0x88,0x50,0x20,0x58,0x87,0x02,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 27932 洜 ; -+,0x02,0x03,0x06,0x09,0x00,0x03,0x3f,0x04,0x07,0x00,0x3e,0x04,0x18,0x60,0x02,0x01,0x00,0xf8,0x10,0x20,0xe0,0x1c,0xfb,0x08,0xf8,0x84,0xc8,0xb0,0x98,0x87,0x82,0x00 -+// 27933 洝 ; -+,0x20,0x10,0x13,0x02,0x42,0x28,0x28,0x0b,0x10,0x10,0x71,0x10,0x10,0x10,0x17,0x10,0x40,0x20,0xff,0x02,0x44,0x40,0x40,0xff,0x88,0x88,0x90,0x70,0x38,0xc4,0x02,0x00 -+// 27934 洞 ; -+,0x20,0x13,0x12,0x02,0x46,0x26,0x2a,0x0a,0x0a,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x00,0xfe,0x02,0x02,0xfa,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x02,0x02,0x02,0x0a,0x04 -+// 27935 洟 ; -+,0x20,0x10,0x17,0x00,0x43,0x28,0x2b,0x0a,0x13,0x10,0x60,0x20,0x21,0x21,0x22,0x2c,0x40,0x40,0xfe,0x40,0xfc,0x44,0xfc,0x40,0xfe,0x42,0xaa,0xa4,0x10,0x18,0x0e,0x04 -+// 27936 洠 ; -+,0x10,0x08,0x08,0x00,0x45,0x24,0x24,0x08,0x09,0x10,0x73,0x10,0x10,0x10,0x10,0x10,0x20,0x28,0x44,0x9e,0xe2,0x10,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 27937 洡 ; -+,0x20,0x10,0x10,0x05,0x44,0x25,0x28,0x0b,0x08,0x10,0x70,0x11,0x16,0x10,0x10,0x10,0x20,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x20,0x70,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 27938 洢 ; -+,0x20,0x10,0x10,0x05,0x45,0x25,0x2b,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x80,0xbe,0x92,0x12,0x12,0x7f,0x12,0x12,0x7e,0x10,0x20,0x20,0x20,0x40,0x40,0x80 -+// 27939 洣 ; -+,0x20,0x10,0x12,0x01,0x44,0x24,0x2b,0x08,0x08,0x10,0x70,0x11,0x12,0x1c,0x10,0x10,0x20,0x20,0x22,0x22,0xa4,0xa8,0xff,0x60,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 27940 洤 ; -+,0x20,0x10,0x10,0x04,0x45,0x2a,0x2d,0x10,0x10,0x70,0x21,0x20,0x20,0x20,0x27,0x20,0x40,0x40,0x60,0x90,0x0c,0x03,0xfc,0x20,0x20,0x20,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 27941 津 ; -+,0x20,0x10,0x13,0x00,0x47,0x28,0x2b,0x08,0x10,0x73,0x10,0x17,0x10,0x10,0x10,0x10,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x20,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 27942 洦 ; -+,0x20,0x13,0x10,0x00,0x22,0x13,0x15,0x05,0x05,0x09,0x39,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x10,0x20,0x40,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02 -+// 27943 洧 ; -+,0x10,0x08,0x0b,0x40,0x24,0x29,0x0b,0x15,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0xff,0x40,0x80,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 27944 洨 ; -+,0x20,0x10,0x10,0x03,0x48,0x28,0x29,0x0b,0x14,0x10,0x70,0x10,0x10,0x10,0x13,0x1c,0x40,0x20,0x20,0xff,0x90,0x88,0x06,0x10,0x90,0x90,0x60,0x20,0x50,0x98,0x0e,0x04 -+// 27945 洩 ; -+,0x10,0x08,0x09,0x01,0x21,0x15,0x15,0x09,0x09,0x10,0x70,0x10,0x10,0x17,0x10,0x10,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x24,0x2c,0x10,0x70,0x89,0x05,0x03 -+// 27946 洪 ; -+,0x10,0x08,0x08,0x44,0x25,0x28,0x08,0x08,0x10,0x17,0x70,0x10,0x11,0x11,0x12,0x14,0x00,0x88,0x88,0x88,0xfe,0x88,0x88,0x88,0x88,0xff,0x90,0x88,0x04,0x06,0x02,0x02 -+// 27947 洫 ; -+,0x10,0x08,0x08,0x41,0x25,0x25,0x09,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x17,0x10,0x20,0x20,0x40,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 27948 洬 ; -+,0x20,0x13,0x12,0x03,0x46,0x26,0x2a,0x0a,0x12,0x13,0x72,0x12,0x14,0x14,0x19,0x10,0x00,0xfc,0x04,0xfc,0x44,0x44,0x74,0x94,0x94,0x54,0x24,0x25,0x45,0x83,0x03,0x01 -+// 27949 洭 ; -+,0x20,0x13,0x12,0x02,0x42,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x00,0xff,0x00,0x00,0xfe,0x10,0x10,0x7c,0x10,0x10,0x10,0xfe,0x00,0x00,0xff,0x00 -+// 27950 洮 ; -+,0x20,0x10,0x10,0x00,0x4a,0x29,0x08,0x10,0x11,0x16,0x60,0x20,0x21,0x22,0x2c,0x20,0x50,0x50,0x50,0x50,0x56,0x58,0x50,0xd8,0x54,0x52,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 27951 洯 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x04,0x00,0x3e,0x02,0x04,0x08,0x10,0x62,0x01,0x00,0x7e,0x12,0x12,0x12,0xa2,0x4a,0x84,0x80,0xc4,0xa8,0x90,0x88,0x87,0x82,0x00 -+// 27952 洰 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0xfe,0x00,0x00,0x00,0x00,0xff,0x00 -+// 27953 洱 ; -+,0x20,0x17,0x11,0x01,0x49,0x29,0x29,0x11,0x11,0x11,0x67,0x20,0x20,0x20,0x20,0x00,0x00,0xff,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x08,0x08,0x08,0x08,0x00 -+// 27954 洲 ; -+,0x21,0x11,0x11,0x01,0x49,0x2d,0x2b,0x11,0x11,0x11,0x61,0x22,0x22,0x24,0x28,0x20,0x02,0x12,0x12,0x12,0x12,0x9a,0x56,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02 -+// 27955 洳 ; -+,0x11,0x09,0x09,0x01,0x47,0x29,0x29,0x12,0x12,0x16,0x61,0x20,0x21,0x22,0x2c,0x20,0x00,0x00,0x00,0x1f,0xf1,0x51,0x51,0x51,0x51,0x91,0x91,0x91,0x5f,0x51,0x00,0x00 -+// 27956 洴 ; -+,0x21,0x10,0x10,0x03,0x40,0x24,0x28,0x08,0x17,0x10,0x60,0x20,0x21,0x21,0x22,0x24,0x04,0x84,0x88,0xfe,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 27957 洵 ; -+,0x10,0x08,0x08,0x01,0x41,0x27,0x25,0x09,0x09,0x11,0x71,0x11,0x10,0x10,0x10,0x10,0x80,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x12,0x12,0xf2,0x02,0x02,0x0a,0x04 -+// 27958 洶 ; -+,0x20,0x10,0x10,0x01,0x45,0x26,0x29,0x0a,0x0a,0x12,0x73,0x13,0x10,0x10,0x10,0x10,0x80,0x80,0x80,0xfe,0x02,0x02,0x12,0xaa,0x4a,0xaa,0x1a,0xfa,0x02,0x02,0x0a,0x04 -+// 27959 洷 ; -+,0x10,0x09,0x08,0x00,0x40,0x24,0x25,0x08,0x08,0x10,0x71,0x10,0x10,0x10,0x17,0x10,0x00,0xff,0x20,0x40,0x40,0x84,0xfe,0x22,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 27960 洸 ; -+,0x20,0x10,0x12,0x01,0x40,0x28,0x2b,0x08,0x10,0x10,0x10,0x61,0x21,0x22,0x2c,0x20,0x20,0x20,0x22,0x24,0xa4,0xa8,0xff,0x90,0x90,0x90,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 27961 洹 ; -+,0x10,0x0b,0x08,0x00,0x43,0x22,0x2a,0x0b,0x12,0x12,0x63,0x20,0x20,0x20,0x27,0x20,0x00,0xff,0x00,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x00,0x00,0x00,0xff,0x00 -+// 27962 洺 ; -+,0x10,0x08,0x08,0x00,0x44,0x25,0x28,0x08,0x08,0x11,0x76,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0x7e,0x84,0x88,0x48,0x30,0x20,0x40,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 27963 活 ; -+,0x10,0x08,0x09,0x00,0x44,0x27,0x28,0x08,0x10,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0x1e,0xe0,0x20,0x20,0xff,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 27964 洼 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x27,0x08,0x08,0x10,0x73,0x10,0x10,0x10,0x17,0x10,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 27965 洽 ; -+,0x20,0x10,0x10,0x00,0x41,0x2a,0x2d,0x08,0x10,0x13,0x62,0x22,0x22,0x22,0x23,0x22,0x40,0x40,0xa0,0x90,0x0c,0x03,0xf8,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 27966 派 ; -+,0x20,0x10,0x11,0x05,0x45,0x29,0x29,0x09,0x11,0x11,0x61,0x22,0x22,0x24,0x28,0x20,0x00,0x1e,0xe0,0x0e,0x70,0x50,0x51,0x52,0x54,0x48,0x48,0x48,0x44,0x54,0x63,0x42 -+// 27967 洿 ; -+,0x20,0x10,0x17,0x00,0x41,0x2a,0x2d,0x08,0x17,0x10,0x71,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0xff,0x90,0x08,0x07,0xf8,0x00,0xff,0x80,0xf8,0x08,0x08,0x08,0x28,0x10 -+// 27968 浀 ; -+,0x10,0x08,0x08,0x40,0x23,0x2a,0x0a,0x0a,0x13,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x48,0x48,0x48,0x48,0xff,0x49,0x49,0x49,0xff,0x49,0x49,0x49,0x49,0x49,0xff,0x01 -+// 27969 流 ; -+,0x10,0x08,0x0b,0x00,0x40,0x24,0x25,0x08,0x09,0x09,0x71,0x11,0x12,0x12,0x14,0x10,0x40,0x20,0xff,0x20,0x40,0x88,0xfc,0x04,0x28,0x28,0x28,0x28,0x29,0x29,0x27,0x00 -+// 27970 浂 ; -+,0x11,0x08,0x08,0x00,0x45,0x24,0x28,0x08,0x0b,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x04,0x84,0x48,0x50,0xfe,0x20,0x20,0x20,0xff,0x20,0x50,0x48,0x88,0x04,0x03,0x00 -+// 27971 浃 ; -+,0x20,0x10,0x10,0x03,0x40,0x29,0x08,0x08,0x13,0x10,0x60,0x20,0x20,0x21,0x26,0x00,0x20,0x20,0x20,0xfe,0x20,0x24,0xa8,0x30,0xff,0x20,0x50,0x50,0x88,0x07,0x02,0x00 -+// 27972 浄 ; -+,0x10,0x08,0x08,0x40,0x25,0x24,0x08,0x0b,0x08,0x10,0x71,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0xfc,0x88,0xfe,0x22,0x22,0xff,0x22,0x22,0xfe,0x20,0x20,0x20,0xa0,0x40 -+// 27973 浅 ; -+,0x10,0x08,0x08,0x00,0x41,0x24,0x24,0x0b,0x08,0x10,0x70,0x10,0x10,0x13,0x10,0x10,0x40,0x48,0x44,0x40,0xfe,0x40,0x40,0xff,0x40,0x44,0x28,0x30,0xd1,0x09,0x05,0x03 -+// 27974 浆 ; -+,0x04,0x24,0x14,0x14,0x05,0x14,0x64,0x04,0x00,0x3e,0x02,0x04,0x08,0x30,0x02,0x01,0x40,0x40,0x7e,0x84,0x48,0x30,0x20,0xc0,0x8c,0xd0,0xa0,0x90,0x8c,0x87,0x82,0x00 -+// 27975 浇 ; -+,0x10,0x08,0x09,0x00,0x40,0x20,0x28,0x0b,0x10,0x17,0x60,0x20,0x21,0x21,0x26,0x20,0x40,0x40,0xfe,0x40,0x48,0x32,0xd2,0x0e,0x00,0xfe,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 27976 浈 ; -+,0x10,0x08,0x08,0x00,0x44,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x10,0x10,0x11,0x16,0x20,0x20,0x3f,0x20,0x20,0xfc,0x04,0x24,0x24,0x24,0x24,0x44,0x50,0x88,0x06,0x02 -+// 27977 浉 ; -+,0x20,0x10,0x12,0x02,0x42,0x2a,0x2a,0x0a,0x12,0x12,0x60,0x20,0x21,0x21,0x22,0x24,0x80,0xbf,0x88,0x88,0xbf,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xab,0x08,0x08,0x08,0x08 -+// 27978 浊 ; -+,0x20,0x10,0x10,0x00,0x45,0x25,0x29,0x09,0x11,0x10,0x60,0x20,0x20,0x27,0x20,0x00,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0xfc,0x20,0x28,0x24,0x3e,0xc3,0x02,0x00 -+// 27979 测 ; -+,0x20,0x13,0x12,0x42,0x22,0x2a,0x0a,0x12,0x12,0x12,0x62,0x20,0x21,0x21,0x22,0x24,0x01,0xe1,0x21,0x29,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x81,0x41,0x21,0x25,0x02 -+// 27980 浌 ; -+,0x10,0x08,0x08,0x01,0x41,0x2b,0x2d,0x09,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x90,0x90,0x94,0x12,0x12,0x7f,0x10,0x12,0x14,0x14,0x08,0x1a,0x6a,0x06,0x06,0x02 -+// 27981 浍 ; -+,0x00,0x10,0x08,0x08,0x40,0x25,0x26,0x08,0x08,0x13,0x70,0x10,0x10,0x11,0x13,0x10,0x20,0x20,0x60,0x90,0x8c,0x03,0xf8,0x00,0x00,0xfe,0x40,0x80,0x84,0x02,0xfe,0x02 -+// 27982 济 ; -+,0x20,0x10,0x13,0x00,0x44,0x24,0x28,0x0b,0x08,0x10,0x70,0x10,0x11,0x11,0x12,0x14,0x40,0x20,0xff,0x88,0x50,0x20,0xd8,0x07,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 27983 浏 ; -+,0x22,0x11,0x11,0x07,0x40,0x22,0x29,0x09,0x10,0x11,0x61,0x22,0x22,0x24,0x28,0x20,0x02,0x02,0x02,0xea,0x4a,0x4a,0x4a,0x8a,0x8a,0x8a,0x4a,0x4a,0x42,0x02,0x0a,0x04 -+// 27984 浐 ; -+,0x20,0x10,0x13,0x00,0x44,0x24,0x29,0x09,0x09,0x11,0x71,0x11,0x12,0x12,0x12,0x14,0x20,0x10,0xff,0x00,0x84,0x48,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 27985 浑 ; -+,0x10,0x0b,0x0a,0x40,0x23,0x28,0x08,0x09,0x13,0x10,0x70,0x17,0x10,0x10,0x10,0x10,0x00,0xff,0x42,0x40,0xfe,0x80,0xa0,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 27986 浒 ; -+,0x20,0x12,0x11,0x01,0x40,0x28,0x2f,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x10,0x10,0x20,0x20,0x20,0x7f,0x48,0x88,0x08,0x7f,0x08,0x08,0x08,0x48,0x88,0x08,0x08,0x08 -+// 27987 浓 ; -+,0x20,0x10,0x10,0x03,0x42,0x2a,0x28,0x09,0x11,0x12,0x72,0x14,0x18,0x10,0x10,0x10,0x20,0x20,0x40,0xff,0x42,0x84,0xc0,0xa2,0xac,0x90,0x90,0x88,0x88,0xa4,0xc3,0x82 -+// 27988 浔 ; -+,0x20,0x13,0x10,0x05,0x44,0x2b,0x28,0x08,0x17,0x11,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x08,0x08,0xff,0x08,0x88,0x88,0x08,0x08,0x28,0x10 -+// 27989 浕 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x29,0x0a,0x12,0x14,0x74,0x18,0x10,0x10,0x10,0x00,0x00,0xfc,0x04,0x04,0xfc,0x10,0x08,0x48,0x24,0x23,0x00,0x40,0x20,0x10,0x10,0x00 -+// 27990 浖 ; -+,0x10,0x08,0x09,0x00,0x45,0x24,0x28,0x08,0x13,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0x1e,0xe0,0x44,0x24,0xa8,0x00,0x08,0xff,0x88,0x48,0x48,0x08,0x08,0x28,0x10 -+// 27991 浗 ; -+,0x10,0x08,0x08,0x41,0x24,0x24,0x09,0x08,0x10,0x10,0x71,0x16,0x10,0x10,0x10,0x10,0x20,0x24,0x22,0xff,0x20,0x20,0x22,0xb4,0x28,0x68,0xa4,0x27,0x22,0x20,0xa0,0x40 -+// 27992 浘 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x09,0x11,0x11,0x61,0x21,0x22,0x22,0x24,0x28,0x00,0xfe,0x02,0x02,0xfe,0x00,0x0e,0x70,0x10,0x7e,0x10,0xff,0x10,0x11,0x11,0x0f -+// 27993 浙 ; -+,0x21,0x11,0x11,0x07,0x41,0x29,0x29,0x11,0x13,0x15,0x61,0x21,0x21,0x21,0x25,0x22,0x00,0x3f,0x20,0xe0,0x20,0x3f,0x24,0xa4,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 27994 浚 ; -+,0x20,0x10,0x10,0x01,0x43,0x29,0x29,0x0a,0x14,0x10,0x71,0x12,0x10,0x10,0x11,0x16,0x40,0x40,0x88,0x3c,0xc4,0x08,0x06,0x82,0xfc,0x84,0x88,0x50,0x30,0x4c,0x87,0x02 -+// 27995 浛 ; -+,0x20,0x10,0x10,0x01,0x4a,0x2c,0x2b,0x10,0x10,0x10,0x63,0x22,0x22,0x22,0x23,0x22,0x40,0x40,0xa0,0x18,0x47,0x22,0xfc,0x08,0x10,0x20,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 27996 浜 ; -+,0x00,0x20,0x13,0x12,0x02,0x4a,0x2b,0x12,0x12,0x12,0x2f,0x60,0x21,0x21,0x22,0x2c,0x00,0x3c,0xc0,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0xff,0x00,0x10,0x08,0x0c,0x04 -+// 27997 浝 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x24,0x08,0x08,0x10,0x70,0x11,0x11,0x12,0x14,0x10,0x40,0x48,0x44,0xff,0x60,0x64,0x68,0xb0,0xa4,0xa8,0xb3,0x24,0x39,0xe1,0x1f,0x00 -+// 27998 浞 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x28,0x08,0x09,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x20,0x20,0x20,0x3e,0x20,0x20,0xa0,0x60,0x1f,0x00 -+// 27999 浟 ; -+,0x21,0x11,0x11,0x01,0x4a,0x2a,0x2e,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x3f,0xa4,0xe4,0xa4,0x94,0x94,0x88,0x88,0x94,0x24,0xc3,0x02 -+// 28000 浠 ; -+,0x11,0x08,0x08,0x41,0x24,0x27,0x08,0x09,0x11,0x13,0x75,0x11,0x11,0x11,0x10,0x10,0x08,0xd0,0x60,0x98,0x44,0xff,0x80,0x20,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 28001 浡 ; -+,0x20,0x10,0x13,0x00,0x40,0x2b,0x2a,0x08,0x10,0x10,0x77,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x02,0xf8,0x10,0x20,0xff,0x20,0x20,0x20,0xa0,0x40 -+// 28002 浢 ; -+,0x20,0x13,0x10,0x00,0x45,0x25,0x29,0x09,0x09,0x10,0x71,0x10,0x10,0x10,0x17,0x10,0x00,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x04,0x84,0x88,0x10,0xff,0x00 -+// 28003 浣 ; -+,0x10,0x08,0x0b,0x02,0x40,0x29,0x28,0x0b,0x10,0x10,0x70,0x10,0x11,0x11,0x12,0x14,0x40,0x20,0xff,0x02,0x00,0xfc,0x00,0xff,0x90,0x90,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 28004 浤 ; -+,0x20,0x10,0x13,0x02,0x42,0x20,0x2b,0x08,0x10,0x10,0x61,0x21,0x22,0x24,0x29,0x00,0x40,0x20,0xff,0x02,0x44,0x40,0xff,0x40,0x90,0x90,0x20,0x20,0x40,0x84,0xfe,0x02 -+// 28005 浥 ; -+,0x20,0x11,0x11,0x05,0x45,0x28,0x2b,0x12,0x12,0x13,0x62,0x22,0x22,0x22,0x21,0x20,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 28006 浦 ; -+,0x10,0x08,0x08,0x07,0x48,0x2b,0x2a,0x13,0x12,0x12,0x63,0x22,0x22,0x22,0x22,0x22,0x20,0x24,0x22,0xff,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0x2a,0x24 -+// 28007 浧 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x08,0x0b,0x10,0x10,0x73,0x10,0x10,0x10,0x17,0x10,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28008 浨 ; -+,0x20,0x10,0x10,0x01,0x45,0x24,0x28,0x09,0x10,0x10,0x70,0x10,0x11,0x16,0x10,0x10,0x40,0x20,0x20,0xff,0x02,0x20,0x20,0xfe,0x20,0x60,0xb0,0xa8,0x27,0x22,0x20,0x20 -+// 28009 浩 ; -+,0x10,0x08,0x09,0x01,0x45,0x26,0x28,0x0b,0x08,0x10,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0x00,0xfe,0x02,0x02,0x02,0xfe,0x02 -+// 28010 浪 ; -+,0x10,0x08,0x09,0x41,0x25,0x25,0x09,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x40,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x40,0x26,0x28,0x10,0x08,0x4c,0x87,0x02 -+// 28011 浫 ; -+,0x11,0x09,0x09,0x40,0x25,0x24,0x09,0x08,0x10,0x73,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x02,0x48,0x84,0x03,0x00,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 28012 浬 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x09,0x10,0x70,0x11,0x10,0x10,0x10,0x17,0x10,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0x20,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 28013 浭 ; -+,0x20,0x13,0x10,0x00,0x43,0x2a,0x2b,0x0a,0x13,0x10,0x71,0x10,0x10,0x11,0x1e,0x10,0x00,0xff,0x20,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0x20,0xc0,0x60,0x98,0x07,0x02 -+// 28014 浮 ; -+,0x10,0x0b,0x08,0x02,0x45,0x24,0x29,0x08,0x10,0x17,0x70,0x10,0x10,0x10,0x10,0x10,0x1e,0xe0,0x04,0x44,0x28,0x00,0xf8,0x10,0x20,0xff,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 28015 浯 ; -+,0x20,0x13,0x10,0x04,0x45,0x28,0x28,0x08,0x17,0x10,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x40,0x40,0xfc,0x44,0x84,0x84,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 28016 浰 ; -+,0x20,0x10,0x17,0x00,0x48,0x2f,0x08,0x11,0x12,0x12,0x64,0x28,0x20,0x20,0x20,0x20,0x02,0x62,0x82,0x8a,0x8a,0xea,0x8a,0xca,0xaa,0xaa,0x8a,0x8a,0x82,0x82,0x8a,0x84 -+// 28017 浱 ; -+,0x20,0x13,0x12,0x02,0x4a,0x2a,0x2b,0x0a,0x12,0x12,0x12,0x72,0x14,0x14,0x18,0x10,0x00,0xfe,0x00,0x00,0xfc,0x00,0xff,0xa0,0x92,0x94,0x88,0x88,0x84,0xa7,0xc2,0x80 -+// 28018 浲 ; -+,0x20,0x10,0x10,0x01,0x40,0x20,0x2b,0x08,0x11,0x10,0x71,0x10,0x13,0x10,0x10,0x10,0x40,0x7e,0x84,0x48,0x30,0xcc,0x23,0x20,0xfe,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 28019 浳 ; -+,0x10,0x08,0x08,0x01,0x44,0x24,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x48,0x44,0x3f,0xe0,0x11,0x0d,0xff,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04,0x14,0x08 -+// 28020 浴 ; -+,0x10,0x08,0x08,0x41,0x22,0x28,0x08,0x09,0x12,0x1d,0x71,0x11,0x11,0x11,0x11,0x11,0x10,0x88,0x84,0x02,0x40,0x60,0x90,0x0c,0x03,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 28021 浵 ; -+,0x20,0x13,0x12,0x02,0x4b,0x2a,0x2a,0x17,0x12,0x12,0x62,0x22,0x24,0x24,0x29,0x20,0x02,0xc2,0x44,0x48,0x50,0x42,0x42,0xe4,0x49,0x51,0x42,0x42,0x44,0x48,0x50,0xa0 -+// 28022 浶 ; -+,0x20,0x10,0x13,0x02,0x40,0x29,0x29,0x09,0x12,0x10,0x67,0x20,0x20,0x20,0x20,0x20,0x40,0x20,0xff,0x02,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 28023 海 ; -+,0x10,0x08,0x08,0x01,0x4b,0x29,0x29,0x09,0x17,0x11,0x71,0x11,0x11,0x10,0x10,0x10,0x80,0x80,0xff,0x00,0xfc,0x44,0x24,0x04,0xff,0x44,0x24,0x04,0xff,0x04,0x14,0x08 -+// 28024 浸 ; -+,0x20,0x13,0x10,0x43,0x28,0x2b,0x08,0x17,0x14,0x71,0x11,0x10,0x10,0x10,0x11,0x16,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x02,0xf8,0x08,0x90,0x60,0x50,0x8e,0x04 -+// 28025 浹 ; -+,0x20,0x10,0x10,0x07,0x40,0x2a,0x2a,0x0a,0x15,0x19,0x70,0x10,0x11,0x12,0x1c,0x10,0x40,0x40,0x40,0xfe,0x40,0x48,0x48,0x4c,0x52,0x62,0xa0,0x90,0x0c,0x07,0x02,0x00 -+// 28026 浺 ; -+,0x21,0x11,0x11,0x01,0x45,0x25,0x2d,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x08,0x08,0x08,0x7f,0x49,0xc9,0x49,0x49,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 28027 浻 ; -+,0x10,0x0b,0x0a,0x02,0x46,0x26,0x2b,0x0a,0x0a,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x00,0xfe,0x52,0x52,0x8a,0x8a,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x02,0x02,0x0a,0x04 -+// 28028 浼 ; -+,0x20,0x10,0x11,0x01,0x43,0x29,0x29,0x09,0x11,0x10,0x10,0x70,0x10,0x11,0x16,0x10,0x80,0xf8,0x08,0x10,0xfc,0x24,0x24,0x24,0xfc,0x30,0x50,0x51,0x91,0x11,0x0f,0x00 -+// 28029 浽 ; -+,0x10,0x0b,0x08,0x01,0x44,0x24,0x28,0x08,0x0b,0x10,0x71,0x10,0x10,0x10,0x11,0x16,0x0e,0xf0,0x42,0x22,0xa4,0x88,0x40,0x40,0xff,0x88,0x88,0x50,0x30,0x4c,0x86,0x02 -+// 28030 浾 ; -+,0x10,0x08,0x09,0x00,0x44,0x25,0x28,0x08,0x09,0x11,0x72,0x14,0x10,0x11,0x16,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x48,0x48,0x4c,0x4a,0x4b,0x89,0x88,0x08,0x28,0x10 -+// 28031 浿 ; -+,0x20,0x11,0x11,0x05,0x45,0x29,0x29,0x09,0x11,0x11,0x71,0x10,0x10,0x10,0x11,0x12,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00,0x88,0x84,0x06,0x02 -+// 28032 涀 ; -+,0x11,0x09,0x09,0x01,0x45,0x25,0x29,0x09,0x09,0x71,0x10,0x10,0x10,0x10,0x11,0x16,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x50,0x50,0x91,0x91,0x11,0x0f -+// 28033 涁 ; -+,0x10,0x08,0x08,0x00,0x43,0x24,0x25,0x09,0x0a,0x12,0x74,0x10,0x10,0x10,0x10,0x10,0x82,0x82,0x84,0x84,0xe8,0xb2,0x84,0xc4,0xa9,0x91,0x82,0x82,0x84,0x88,0x90,0x80 -+// 28034 涂 ; -+,0x20,0x10,0x10,0x40,0x21,0x2a,0x08,0x10,0x13,0x60,0x21,0x21,0x22,0x24,0x20,0x20,0x20,0x20,0x50,0x88,0x04,0xfb,0x20,0x20,0xfe,0x20,0x28,0x24,0x26,0x22,0xa0,0x40 -+// 28035 涃 ; -+,0x10,0x09,0x09,0x01,0x41,0x25,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x11,0x11,0x11,0xff,0x31,0x39,0x57,0x95,0x11,0x11,0x11,0x11,0xff,0x01 -+// 28036 涄 ; -+,0x10,0x08,0x09,0x01,0x45,0x25,0x29,0x08,0x13,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff,0x40,0x40,0xfc,0x04,0x04,0x14,0x08 -+// 28037 涅 ; -+,0x10,0x09,0x09,0x01,0x41,0x25,0x25,0x09,0x08,0x10,0x71,0x10,0x10,0x10,0x17,0x10,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28038 涆 ; -+,0x20,0x10,0x13,0x02,0x42,0x2a,0x2b,0x0a,0x12,0x12,0x72,0x13,0x12,0x10,0x10,0x10,0x00,0x1e,0xc8,0x48,0x48,0x48,0xc8,0x7f,0x48,0x48,0x48,0xc8,0x48,0x08,0x08,0x08 -+// 28039 涇 ; -+,0x20,0x17,0x11,0x01,0x42,0x2a,0x2c,0x0a,0x12,0x17,0x60,0x20,0x20,0x20,0x2f,0x20,0x00,0xff,0x24,0x24,0x48,0x50,0x88,0x44,0x44,0xfe,0x40,0x40,0x40,0x40,0xff,0x00 -+// 28040 消 ; -+,0x10,0x08,0x09,0x40,0x24,0x25,0x09,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x22,0xa4,0xa8,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x0a,0x04 -+// 28041 涉 ; -+,0x10,0x08,0x09,0x05,0x45,0x29,0x2f,0x08,0x11,0x71,0x12,0x14,0x10,0x10,0x11,0x16,0x20,0x20,0x20,0x3e,0x20,0x20,0xff,0x20,0x22,0x22,0x24,0x28,0x10,0x60,0x80,0x00 -+// 28042 涊 ; -+,0x20,0x11,0x10,0x00,0x44,0x25,0x28,0x08,0x11,0x10,0x70,0x12,0x12,0x14,0x10,0x00,0x00,0xfe,0x22,0xa2,0xa2,0x42,0x42,0x8a,0x04,0x20,0x92,0x81,0x85,0x84,0xfc,0x00 -+// 28043 涋 ; -+,0x10,0x08,0x0b,0x02,0x40,0x24,0x24,0x0b,0x08,0x10,0x70,0x10,0x10,0x11,0x16,0x10,0x20,0x10,0xff,0x02,0x20,0x28,0x24,0xff,0x20,0x50,0x50,0x88,0x84,0x07,0x02,0x00 -+// 28044 涌 ; -+,0x11,0x08,0x08,0x00,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0xfe,0x04,0x48,0x30,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0x2a,0x24 -+// 28045 涍 ; -+,0x10,0x08,0x09,0x00,0x40,0x27,0x28,0x09,0x16,0x10,0x60,0x27,0x20,0x20,0x20,0x20,0x40,0x44,0xf4,0x48,0x50,0xfe,0x40,0x80,0xf8,0x10,0x20,0xff,0x20,0x20,0xa0,0x40 -+// 28046 涎 ; -+,0x20,0x10,0x17,0x00,0x41,0x2a,0x2b,0x10,0x11,0x15,0x65,0x22,0x25,0x28,0x20,0x20,0x00,0x07,0xb8,0x88,0x08,0x28,0xaf,0xa8,0x28,0x28,0x3f,0x00,0x80,0x60,0x1f,0x00 -+// 28047 涏 ; -+,0x20,0x13,0x10,0x00,0x44,0x25,0x2b,0x08,0x10,0x12,0x71,0x11,0x12,0x12,0x14,0x00,0x00,0xc7,0x58,0x88,0x88,0x08,0xbf,0x88,0x88,0x88,0x3e,0x00,0x80,0x60,0x1f,0x00 -+// 28048 涐 ; -+,0x20,0x10,0x13,0x00,0x44,0x27,0x28,0x08,0x08,0x11,0x76,0x10,0x10,0x10,0x12,0x11,0x10,0xd8,0x94,0x94,0x90,0xff,0x90,0x92,0xd2,0x94,0x88,0x98,0xa8,0x85,0x83,0x01 -+// 28049 涑 ; -+,0x20,0x10,0x17,0x00,0x4b,0x2a,0x2a,0x13,0x10,0x10,0x61,0x22,0x2c,0x20,0x20,0x20,0x40,0x40,0xff,0x40,0xfc,0x44,0x44,0xfc,0x40,0xe0,0x50,0x4c,0x47,0x42,0x40,0x40 -+// 28050 涒 ; -+,0x10,0x09,0x08,0x00,0x43,0x28,0x2b,0x08,0x10,0x11,0x11,0x72,0x14,0x18,0x10,0x10,0x00,0xfc,0x44,0x44,0xff,0x44,0xfc,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 28051 涓 ; -+,0x10,0x09,0x09,0x41,0x25,0x24,0x0b,0x0a,0x13,0x12,0x73,0x12,0x12,0x12,0x12,0x12,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0x02,0x0a,0x04 -+// 28052 涔 ; -+,0x20,0x12,0x12,0x03,0x40,0x28,0x28,0x09,0x12,0x1c,0x73,0x10,0x10,0x10,0x10,0x10,0x20,0x22,0x22,0xfe,0x40,0x60,0x90,0x08,0x47,0x20,0xfc,0x08,0x10,0x10,0x20,0x20 -+// 28053 涕 ; -+,0x11,0x08,0x08,0x03,0x40,0x28,0x0b,0x12,0x12,0x13,0x60,0x20,0x23,0x2c,0x20,0x20,0x08,0x88,0x90,0xfe,0x22,0x22,0xfe,0x20,0x20,0xff,0x61,0xa1,0x21,0x25,0x22,0x20 -+// 28054 涖 ; -+,0x20,0x10,0x10,0x01,0x45,0x27,0x29,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x90,0x88,0x88,0x7f,0x00,0x02,0x42,0x42,0x44,0x24,0x24,0x28,0x08,0x08,0xff,0x00 -+// 28055 涗 ; -+,0x10,0x08,0x08,0x01,0x40,0x24,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x11,0x12,0x50,0x48,0x84,0x03,0xfc,0x84,0x84,0x84,0xfc,0x50,0x50,0x51,0x91,0x91,0x0f,0x00 -+// 28056 涘 ; -+,0x10,0x08,0x08,0x00,0x45,0x24,0x28,0x0b,0x10,0x17,0x60,0x20,0x20,0x20,0x21,0x26,0x20,0x20,0x48,0x84,0xfe,0x80,0xfc,0x20,0x20,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 28057 涙 ; -+,0x10,0x08,0x09,0x41,0x25,0x25,0x09,0x09,0x11,0x11,0x71,0x12,0x12,0x14,0x18,0x13,0x20,0x10,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x83,0x02 -+// 28058 涚 ; -+,0x11,0x08,0x08,0x41,0x21,0x29,0x09,0x09,0x10,0x10,0x60,0x20,0x21,0x22,0x2c,0x20,0x08,0x88,0x90,0xfc,0x04,0x04,0x04,0xfc,0x50,0x50,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 28059 涛 ; -+,0x20,0x10,0x13,0x00,0x4b,0x28,0x2f,0x11,0x11,0x12,0x62,0x24,0x24,0x28,0x20,0x20,0x40,0x40,0xfe,0x40,0xfe,0x80,0xff,0x08,0x08,0xff,0x08,0x48,0x28,0x08,0x28,0x10 -+// 28060 涜 ; -+,0x20,0x10,0x13,0x00,0x45,0x24,0x2b,0x0a,0x08,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x20,0x20,0xfe,0x20,0xfc,0x00,0xff,0x02,0x88,0x88,0x88,0x88,0x89,0x09,0x07,0x00 -+// 28061 涝 ; -+,0x10,0x08,0x0b,0x40,0x28,0x2b,0x0a,0x10,0x10,0x13,0x60,0x20,0x20,0x21,0x22,0x24,0x88,0x88,0xff,0x88,0x88,0xff,0x02,0x40,0x40,0xfc,0x44,0x84,0x84,0x04,0x14,0x08 -+// 28062 涞 ; -+,0x20,0x10,0x13,0x00,0x49,0x28,0x28,0x17,0x10,0x10,0x60,0x21,0x26,0x20,0x20,0x00,0x20,0x20,0xfe,0x20,0x24,0xa8,0xb0,0xff,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 28063 涟 ; -+,0x20,0x14,0x12,0x02,0x48,0x28,0x28,0x16,0x12,0x12,0x62,0x22,0x22,0x25,0x28,0x00,0x20,0x20,0xfe,0x20,0x20,0x50,0x50,0xfe,0x10,0xff,0x10,0x10,0x10,0x10,0xff,0x00 -+// 28064 涠 ; -+,0x20,0x13,0x12,0x02,0x43,0x2a,0x2a,0x0a,0x13,0x12,0x72,0x12,0x12,0x13,0x12,0x00,0x00,0xff,0x21,0x21,0xfd,0x21,0xf9,0x21,0xfd,0x25,0x35,0x29,0x21,0xff,0x01,0x00 -+// 28065 涡 ; -+,0x10,0x09,0x09,0x01,0x45,0x24,0x28,0x0b,0x12,0x12,0x72,0x13,0x12,0x12,0x12,0x12,0x00,0xfc,0x04,0x04,0xfc,0x20,0x20,0xfe,0x22,0x22,0x52,0x8a,0x02,0x02,0x0a,0x04 -+// 28066 涢 ; -+,0x10,0x09,0x09,0x41,0x25,0x24,0x09,0x09,0x11,0x11,0x71,0x11,0x10,0x10,0x11,0x16,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x02,0x22,0x22,0x22,0x52,0x48,0x84,0x06,0x02 -+// 28067 涣 ; -+,0x10,0x08,0x09,0x01,0x4a,0x2d,0x29,0x09,0x11,0x17,0x70,0x10,0x10,0x10,0x11,0x16,0x80,0x80,0xf8,0x10,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x50,0x88,0x07,0x02 -+// 28068 涤 ; -+,0x00,0x10,0x08,0x08,0x41,0x2a,0x28,0x09,0x16,0x11,0x70,0x11,0x11,0x12,0x14,0x10,0x40,0x40,0xfc,0x88,0x50,0x20,0x58,0xa7,0x20,0xfe,0x20,0x28,0x24,0x22,0xa2,0x40 -+// 28069 涥 ; -+,0x10,0x08,0x0b,0x00,0x41,0x25,0x25,0x08,0x09,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x40,0x20,0xff,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x10,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 28070 润 ; -+,0x22,0x11,0x10,0x02,0x42,0x2b,0x2a,0x12,0x13,0x22,0x62,0x23,0x22,0x22,0x22,0x22,0x00,0x7e,0x02,0x02,0x02,0xfa,0x42,0x42,0xfa,0x42,0x42,0xfa,0x02,0x02,0x0a,0x04 -+// 28071 涧 ; -+,0x22,0x11,0x10,0x02,0x46,0x26,0x2a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x00,0x7e,0x02,0x02,0xfa,0x8a,0x8a,0xfa,0x8a,0x8a,0xfa,0x02,0x02,0x02,0x0a,0x04 -+// 28072 涨 ; -+,0x20,0x17,0x10,0x00,0x47,0x2c,0x2c,0x14,0x17,0x10,0x60,0x20,0x20,0x20,0x22,0x21,0x20,0xa2,0xa2,0xa4,0xa8,0x30,0x20,0x7f,0xa0,0xb0,0xa8,0xa8,0xa4,0xa7,0xb2,0x20 -+// 28073 涩 ; -+,0x20,0x13,0x10,0x01,0x49,0x2a,0x28,0x0b,0x10,0x11,0x71,0x11,0x11,0x11,0x17,0x10,0x00,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04,0x20,0x20,0x3e,0x20,0x20,0x20,0xff,0x00 -+// 28074 涪 ; -+,0x10,0x08,0x09,0x00,0x44,0x24,0x28,0x0b,0x10,0x11,0x71,0x11,0x11,0x11,0x11,0x00,0x20,0x10,0xff,0x00,0x84,0x48,0x50,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 28075 涫 ; -+,0x20,0x10,0x13,0x02,0x40,0x29,0x29,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x40,0x20,0xff,0x02,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 28076 涬 ; -+,0x10,0x08,0x09,0x00,0x40,0x23,0x28,0x08,0x0b,0x10,0x10,0x77,0x10,0x10,0x10,0x10,0x20,0x20,0xfc,0x20,0x20,0xff,0x88,0x50,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28077 涭 ; -+,0x20,0x13,0x10,0x01,0x40,0x23,0x2a,0x09,0x10,0x10,0x70,0x10,0x10,0x10,0x17,0x10,0x0e,0xf0,0x42,0x24,0xa8,0xff,0x02,0xfc,0x88,0x48,0x50,0x20,0x30,0xcc,0x07,0x02 -+// 28078 涮 ; -+,0x20,0x13,0x12,0x02,0x43,0x2a,0x2a,0x13,0x13,0x15,0x65,0x29,0x29,0x31,0x20,0x20,0x01,0xf1,0x11,0x15,0xf5,0x45,0x45,0xf5,0x55,0x55,0x55,0x51,0x51,0x71,0x45,0x42 -+// 28079 涯 ; -+,0x20,0x13,0x12,0x02,0x4a,0x2a,0x2a,0x13,0x12,0x12,0x63,0x24,0x24,0x28,0x33,0x20,0x00,0xff,0x20,0x20,0xfc,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28080 涰 ; -+,0x10,0x0b,0x0a,0x01,0x44,0x25,0x2a,0x0b,0x0a,0x11,0x10,0x71,0x11,0x12,0x14,0x10,0x00,0xde,0x42,0x94,0x8c,0x52,0x00,0xfe,0x52,0x94,0x8c,0x48,0x54,0x24,0xc3,0x02 -+// 28081 涱 ; -+,0x10,0x08,0x08,0x00,0x44,0x24,0x28,0x0f,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x80,0xfc,0x80,0xfc,0x80,0xff,0x40,0x24,0x28,0x10,0x08,0x4c,0x87,0x02 -+// 28082 液 ; -+,0x20,0x10,0x13,0x04,0x44,0x29,0x29,0x0b,0x15,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x10,0xff,0x90,0x90,0x3e,0x22,0x54,0xcc,0x28,0x10,0x18,0x28,0x44,0x87,0x02 -+// 28083 涳 ; -+,0x20,0x10,0x13,0x02,0x4a,0x28,0x28,0x09,0x12,0x11,0x70,0x10,0x10,0x10,0x13,0x10,0x40,0x20,0xff,0x02,0x00,0x88,0x84,0x02,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 28084 涴 ; -+,0x20,0x10,0x13,0x02,0x49,0x29,0x09,0x12,0x12,0x15,0x60,0x20,0x21,0x21,0x22,0x00,0x40,0x20,0xff,0x02,0x00,0x1e,0xd2,0x52,0x52,0x5a,0x94,0x91,0x11,0x11,0x0f,0x00 -+// 28085 涵 ; -+,0x10,0x09,0x08,0x04,0x44,0x2a,0x2a,0x0a,0x12,0x12,0x73,0x12,0x12,0x13,0x12,0x00,0x00,0xfc,0x08,0x10,0x20,0x21,0xa5,0x69,0x71,0xa9,0x25,0xa5,0x41,0xff,0x01,0x00 -+// 28086 涶 ; -+,0x00,0x10,0x09,0x08,0x43,0x21,0x29,0x0b,0x09,0x11,0x70,0x13,0x10,0x10,0x11,0x00,0x00,0x1e,0xe0,0x20,0xff,0x24,0x24,0xff,0x24,0x24,0x20,0xfe,0x20,0x20,0xfe,0x00 -+// 28087 涷 ; -+,0x10,0x08,0x0b,0x00,0x41,0x25,0x25,0x09,0x09,0x10,0x70,0x10,0x11,0x16,0x10,0x10,0x20,0x20,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x30,0x68,0xa8,0x24,0x23,0x22,0x20 -+// 28088 涸 ; -+,0x10,0x0b,0x0a,0x42,0x23,0x26,0x06,0x0a,0x0a,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x00,0xff,0x21,0x21,0xfd,0x21,0x21,0xf9,0x89,0x89,0x89,0xf9,0x01,0x01,0xff,0x01 -+// 28089 涹 ; -+,0x20,0x11,0x10,0x07,0x40,0x28,0x2b,0x08,0x08,0x17,0x10,0x71,0x10,0x10,0x11,0x16,0x1c,0xe0,0x20,0xff,0x70,0xa8,0x27,0x22,0x40,0xff,0x88,0x88,0x50,0x70,0x8c,0x04 -+// 28090 涺 ; -+,0x11,0x09,0x09,0x01,0x41,0x25,0x25,0x09,0x09,0x12,0x72,0x12,0x14,0x14,0x18,0x10,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 28091 涻 ; -+,0x20,0x10,0x10,0x04,0x45,0x26,0x28,0x0b,0x08,0x10,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x50,0x88,0x04,0xfb,0x20,0xfe,0x20,0x20,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 28092 涼 ; -+,0x20,0x10,0x13,0x00,0x40,0x25,0x25,0x09,0x09,0x10,0x71,0x11,0x12,0x14,0x10,0x10,0x40,0x20,0xff,0x00,0x00,0xfc,0x04,0x04,0xfc,0x20,0x24,0x22,0x23,0x21,0xa0,0x40 -+// 28093 涽 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x29,0x09,0x09,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x0e,0xf0,0x10,0x10,0xff,0x08,0x49,0x85,0x03,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 28094 涾 ; -+,0x20,0x10,0x13,0x00,0x45,0x25,0x2a,0x0c,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x22,0xac,0xb0,0x28,0x24,0xa3,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28095 涿 ; -+,0x20,0x13,0x10,0x00,0x40,0x2b,0x28,0x0a,0x13,0x1d,0x60,0x23,0x2c,0x20,0x20,0x20,0x00,0xfe,0x40,0x40,0x86,0x48,0x70,0xa8,0x28,0x54,0x93,0x10,0x10,0x10,0xa0,0x40 -+// 28096 淀 ; -+,0x20,0x10,0x13,0x02,0x40,0x25,0x24,0x08,0x09,0x11,0x71,0x12,0x12,0x14,0x18,0x10,0x40,0x20,0xff,0x02,0x00,0xfe,0x20,0x20,0x20,0x3e,0x20,0xa0,0x60,0x30,0x0f,0x00 -+// 28097 淁 ; -+,0x10,0x08,0x0b,0x00,0x44,0x24,0x2b,0x08,0x08,0x17,0x71,0x13,0x10,0x10,0x11,0x16,0x40,0x20,0xfe,0x88,0x48,0x50,0xff,0x40,0x80,0xff,0x08,0x10,0xe0,0x58,0x8c,0x04 -+// 28098 淂 ; -+,0x00,0x21,0x11,0x11,0x45,0x25,0x28,0x0b,0x10,0x17,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x08,0xff,0x88,0x48,0x48,0x08,0x28,0x10 -+// 28099 淃 ; -+,0x20,0x11,0x10,0x00,0x45,0x24,0x2b,0x08,0x09,0x12,0x74,0x10,0x10,0x10,0x10,0x00,0x20,0x24,0xa4,0xa8,0xfc,0x40,0xff,0x88,0x04,0xfb,0x88,0x8a,0x9a,0x82,0x7e,0x00 -+// 28100 淄 ; -+,0x10,0x08,0x08,0x01,0x46,0x25,0x28,0x0b,0x12,0x12,0x73,0x12,0x12,0x13,0x12,0x00,0x00,0x92,0xa2,0x44,0x24,0x12,0x92,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02,0x00 -+// 28101 淅 ; -+,0x21,0x11,0x11,0x01,0x47,0x29,0x29,0x13,0x13,0x25,0x65,0x29,0x21,0x21,0x21,0x21,0x00,0x03,0x1c,0x10,0xd0,0x1f,0x14,0x94,0x54,0x14,0x24,0x24,0x44,0x44,0x84,0x04 -+// 28102 淆 ; -+,0x10,0x08,0x08,0x00,0x44,0x25,0x28,0x08,0x09,0x12,0x70,0x10,0x10,0x10,0x10,0x10,0x84,0x48,0x30,0xcc,0x20,0xff,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 28103 淇 ; -+,0x21,0x11,0x17,0x01,0x49,0x29,0x29,0x09,0x11,0x11,0x71,0x17,0x10,0x11,0x16,0x10,0x08,0x08,0xfe,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x88,0x04,0x06,0x02 -+// 28104 淈 ; -+,0x10,0x0b,0x0a,0x02,0x43,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x12,0x14,0x14,0x18,0x10,0x00,0xfe,0x02,0x02,0xfe,0x10,0x92,0x92,0xfe,0x10,0x92,0x92,0x92,0x92,0xfe,0x00 -+// 28105 淉 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x08,0x0b,0x10,0x70,0x10,0x11,0x16,0x10,0x10,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x20,0x70,0xac,0x27,0x22,0x20,0x20 -+// 28106 淊 ; -+,0x10,0x08,0x08,0x00,0x41,0x24,0x24,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x40,0x40,0x7e,0x84,0x08,0x10,0x40,0x9e,0x02,0x02,0xde,0x02,0x02,0x02,0xfe,0x02 -+// 28107 淋 ; -+,0x21,0x11,0x11,0x01,0x47,0x21,0x2b,0x13,0x15,0x25,0x69,0x21,0x21,0x21,0x21,0x21,0x08,0x08,0x08,0x08,0xbe,0x08,0x18,0x9c,0x6c,0x2a,0x4b,0x88,0x08,0x08,0x08,0x08 -+// 28108 淌 ; -+,0x10,0x08,0x09,0x00,0x44,0x27,0x2a,0x0a,0x12,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x20,0x20,0x24,0xa4,0xa8,0xfe,0x02,0x02,0xf2,0x92,0x92,0xf2,0x02,0x02,0x0a,0x04 -+// 28109 淍 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x00,0xfe,0x22,0x22,0xfe,0x22,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 28110 淎 ; -+,0x10,0x08,0x0b,0x00,0x45,0x24,0x2b,0x08,0x09,0x16,0x70,0x13,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0xfe,0x40,0xff,0x88,0x24,0xfb,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28111 淏 ; -+,0x20,0x13,0x12,0x03,0x42,0x2b,0x08,0x13,0x10,0x17,0x60,0x20,0x20,0x21,0x22,0x2c,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x40,0xff,0x40,0xa0,0x90,0x0c,0x07,0x02 -+// 28112 淐 ; -+,0x00,0x11,0x09,0x09,0x01,0x45,0x25,0x28,0x0b,0x12,0x72,0x13,0x12,0x12,0x13,0x12,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 28113 淑 ; -+,0x22,0x12,0x12,0x43,0x22,0x22,0x0f,0x12,0x12,0x26,0x6a,0x2a,0x32,0x22,0x2a,0x24,0x00,0x00,0x3e,0xa2,0x22,0x22,0xd4,0x14,0x14,0x88,0x48,0x54,0x26,0x43,0x82,0x00 -+// 28114 淒 ; -+,0x20,0x17,0x10,0x03,0x48,0x2f,0x28,0x13,0x10,0x17,0x60,0x23,0x20,0x20,0x21,0x2e,0x40,0xfe,0x40,0xf8,0x48,0xff,0x48,0xf8,0x40,0xff,0x88,0x10,0xe0,0x50,0x8c,0x04 -+// 28115 淓 ; -+,0x10,0x08,0x0b,0x00,0x44,0x24,0x2b,0x08,0x08,0x10,0x70,0x10,0x11,0x11,0x12,0x14,0x88,0x88,0xff,0x88,0xa8,0x10,0xff,0x40,0x40,0x7c,0x84,0x84,0x04,0x04,0x14,0x08 -+// 28116 淔 ; -+,0x20,0x10,0x13,0x00,0x40,0x25,0x25,0x09,0x09,0x09,0x71,0x11,0x11,0x11,0x17,0x10,0x20,0x20,0xfe,0x40,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xff,0x00 -+// 28117 淕 ; -+,0x10,0x08,0x09,0x00,0x44,0x27,0x24,0x08,0x09,0x16,0x71,0x10,0x10,0x10,0x13,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x88,0x84,0x23,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28118 淖 ; -+,0x08,0x04,0x04,0x40,0x21,0x25,0x05,0x09,0x09,0x10,0x70,0x13,0x10,0x10,0x10,0x10,0x20,0x20,0x3f,0x20,0xfe,0x02,0xfe,0x02,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28119 淗 ; -+,0x10,0x08,0x08,0x41,0x21,0x22,0x08,0x09,0x08,0x10,0x10,0x71,0x12,0x10,0x10,0x10,0x80,0x80,0xff,0x01,0x21,0xa9,0x71,0xfd,0x21,0x71,0xa9,0x21,0x21,0x21,0x05,0x02 -+// 28120 淘 ; -+,0x10,0x08,0x09,0x01,0x42,0x29,0x2a,0x08,0x13,0x10,0x72,0x12,0x13,0x10,0x10,0x10,0x80,0x80,0xfe,0x02,0x82,0xfa,0x42,0x42,0xfa,0x42,0x4a,0x4a,0xfa,0x02,0x0a,0x04 -+// 28121 淙 ; -+,0x20,0x10,0x13,0x02,0x40,0x29,0x28,0x08,0x13,0x10,0x71,0x21,0x22,0x24,0x28,0x20,0x40,0x20,0xff,0x02,0x00,0xfc,0x00,0x00,0xff,0x20,0x28,0x24,0x22,0x23,0xa1,0x40 -+// 28122 淚 ; -+,0x20,0x10,0x13,0x02,0x42,0x2b,0x2a,0x0a,0x13,0x12,0x62,0x24,0x24,0x29,0x36,0x20,0x40,0x20,0xfe,0x02,0x02,0xfe,0x28,0x24,0xff,0x20,0x20,0x50,0x48,0x84,0x07,0x02 -+// 28123 淛 ; -+,0x20,0x10,0x14,0x07,0x48,0x20,0x2f,0x08,0x17,0x14,0x64,0x24,0x24,0x24,0x20,0x20,0x81,0x81,0x81,0xf5,0x85,0x85,0xf5,0x85,0xf5,0x95,0x95,0x95,0x91,0xb1,0x85,0x82 -+// 28124 淜 ; -+,0x20,0x13,0x12,0x02,0x43,0x2a,0x2a,0x0a,0x13,0x12,0x12,0x62,0x24,0x24,0x29,0x20,0x00,0xde,0x52,0x52,0xde,0x52,0x52,0x52,0xde,0x52,0x52,0x52,0x52,0x62,0x4a,0x84 -+// 28125 淝 ; -+,0x20,0x17,0x14,0x44,0x27,0x2c,0x0c,0x14,0x17,0x14,0x64,0x24,0x24,0x28,0x32,0x21,0x00,0xbe,0xaa,0xaa,0xaa,0xaa,0xaa,0xbe,0xa0,0xa0,0xa0,0xa1,0xa1,0xa1,0x9f,0x00 -+// 28126 淞 ; -+,0x22,0x12,0x12,0x02,0x4f,0x22,0x2a,0x0f,0x16,0x1a,0x6a,0x32,0x22,0x22,0x22,0x22,0x08,0x24,0x24,0x24,0xa2,0x22,0x43,0x50,0x90,0x10,0x10,0x20,0x20,0x42,0xff,0x01 -+// 28127 淟 ; -+,0x20,0x10,0x10,0x03,0x4a,0x2a,0x2b,0x12,0x12,0x22,0x6f,0x20,0x20,0x21,0x22,0x2c,0x90,0x90,0x90,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xff,0x00,0x88,0x04,0x06,0x02 -+// 28128 淠 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x08,0x0b,0x10,0x70,0x10,0x11,0x11,0x12,0x14,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x00,0xff,0x84,0x84,0x84,0x04,0x04,0x04,0x04 -+// 28129 淡 ; -+,0x20,0x10,0x11,0x01,0x4a,0x28,0x28,0x13,0x10,0x12,0x62,0x24,0x20,0x21,0x22,0x2c,0x40,0x40,0x44,0x48,0x70,0x48,0x84,0x42,0x40,0x58,0x60,0xa0,0x90,0x0c,0x07,0x02 -+// 28130 淢 ; -+,0x20,0x10,0x10,0x07,0x40,0x24,0x2b,0x0a,0x0a,0x13,0x70,0x10,0x11,0x16,0x10,0x10,0x10,0x14,0x12,0xff,0x10,0x10,0xd2,0x52,0x54,0xd4,0x08,0x48,0x95,0x25,0xc3,0x01 -+// 28131 淣 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x09,0x08,0x10,0x70,0x10,0x10,0x11,0x16,0x00,0x40,0x9e,0x02,0x02,0xde,0x02,0x02,0xfe,0x50,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 28132 淤 ; -+,0x22,0x11,0x11,0x07,0x42,0x2a,0x2b,0x0a,0x12,0x12,0x72,0x24,0x24,0x2a,0x31,0x00,0x08,0x08,0x08,0xcc,0x14,0x12,0xa3,0xc8,0x84,0x84,0x80,0x90,0x88,0x8c,0x04,0x00 -+// 28133 淥 ; -+,0x10,0x08,0x08,0x40,0x24,0x25,0x08,0x09,0x08,0x10,0x71,0x16,0x10,0x10,0x10,0x10,0x40,0x7c,0x84,0xf8,0x08,0xff,0x20,0x22,0xac,0x70,0xa8,0x24,0x23,0x20,0xa0,0x40 -+// 28134 淦 ; -+,0x20,0x10,0x10,0x00,0x45,0x26,0x28,0x08,0x11,0x10,0x70,0x11,0x10,0x10,0x17,0x10,0x20,0x20,0x50,0x88,0x04,0xfb,0x20,0x20,0xfc,0x20,0x20,0x24,0xa8,0xb0,0xff,0x00 -+// 28135 淧 ; -+,0x20,0x10,0x13,0x02,0x40,0x24,0x28,0x08,0x12,0x12,0x74,0x10,0x10,0x11,0x16,0x00,0x40,0x20,0xff,0x02,0x00,0x48,0x28,0x88,0x90,0x92,0xa1,0xa1,0xc4,0x84,0x7c,0x00 -+// 28136 淨 ; -+,0x10,0x08,0x0b,0x01,0x44,0x25,0x28,0x0b,0x08,0x10,0x71,0x10,0x10,0x10,0x10,0x10,0x00,0x3e,0xc0,0x24,0xa8,0xfc,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 28137 淩 ; -+,0x10,0x08,0x09,0x40,0x20,0x23,0x09,0x0a,0x14,0x11,0x61,0x22,0x20,0x20,0x23,0x2c,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0x86,0xfa,0x08,0x90,0x50,0x60,0x98,0x07,0x02 -+// 28138 淪 ; -+,0x20,0x10,0x10,0x00,0x49,0x2b,0x2c,0x10,0x13,0x22,0x62,0x23,0x22,0x22,0x22,0x22,0x40,0x40,0x60,0x90,0x0c,0xfb,0x00,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x06 -+// 28139 淫 ; -+,0x10,0x08,0x0b,0x00,0x42,0x29,0x29,0x0b,0x10,0x10,0x67,0x20,0x20,0x20,0x23,0x20,0x00,0x3e,0xc0,0x42,0x22,0x24,0x08,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x00 -+// 28140 淬 ; -+,0x20,0x10,0x13,0x00,0x45,0x29,0x2a,0x0c,0x10,0x10,0x77,0x10,0x10,0x10,0x10,0x10,0x40,0x20,0xff,0x00,0x08,0x08,0x94,0x62,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 28141 淭 ; -+,0x20,0x10,0x13,0x02,0x42,0x2b,0x2a,0x0a,0x12,0x12,0x62,0x22,0x24,0x25,0x28,0x20,0x40,0x20,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x30,0x58,0x54,0x97,0x12,0x10,0x10 -+// 28142 淮 ; -+,0x20,0x10,0x10,0x05,0x45,0x2b,0x2d,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x00,0xa0,0x90,0x90,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 28143 淯 ; -+,0x10,0x08,0x0b,0x00,0x40,0x25,0x24,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x40,0x20,0xff,0x40,0x84,0xfe,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 28144 淰 ; -+,0x10,0x08,0x08,0x00,0x43,0x28,0x29,0x08,0x10,0x10,0x70,0x12,0x12,0x14,0x10,0x00,0x20,0x20,0x50,0x8c,0x43,0x20,0xfc,0x08,0x10,0x10,0xa0,0x92,0x85,0x85,0x7c,0x00 -+// 28145 深 ; -+,0x20,0x13,0x12,0x00,0x40,0x2b,0x28,0x08,0x13,0x10,0x60,0x20,0x23,0x2c,0x20,0x20,0x00,0xff,0x02,0x90,0x8c,0x04,0x20,0x20,0xfe,0x20,0x70,0xac,0x27,0x22,0x20,0x20 -+// 28146 淲 ; -+,0x20,0x10,0x10,0x01,0x41,0x25,0x25,0x09,0x09,0x11,0x71,0x12,0x12,0x12,0x14,0x11,0x20,0x3e,0x20,0xff,0x21,0xfc,0x20,0x3e,0x00,0x78,0x48,0x48,0x49,0x49,0x87,0x00 -+// 28147 淳 ; -+,0x20,0x10,0x13,0x00,0x49,0x29,0x29,0x10,0x11,0x10,0x60,0x27,0x20,0x20,0x20,0x20,0x40,0x20,0xff,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x10,0x20,0xff,0x20,0x20,0xa0,0x40 -+// 28148 淴 ; -+,0x20,0x10,0x10,0x01,0x4a,0x28,0x2b,0x08,0x11,0x16,0x10,0x72,0x12,0x14,0x10,0x00,0x80,0x80,0xfe,0x2a,0x4a,0x92,0x22,0x42,0x8a,0x04,0x20,0x92,0x91,0x85,0x7c,0x00 -+// 28149 淵 ; -+,0x22,0x12,0x12,0x02,0x43,0x2a,0x2b,0x0a,0x12,0x13,0x62,0x22,0x24,0x24,0x28,0x00,0x52,0x52,0x52,0x52,0xde,0x02,0xfe,0x02,0x02,0x9e,0x92,0x92,0x92,0x92,0x92,0x00 -+// 28150 淶 ; -+,0x20,0x10,0x17,0x00,0x49,0x29,0x09,0x12,0x14,0x10,0x60,0x23,0x2c,0x20,0x20,0x20,0x20,0x20,0xff,0x20,0x24,0x24,0x24,0xaa,0x71,0x70,0xac,0x27,0x22,0x20,0x20,0x20 -+// 28151 混 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x09,0x08,0x12,0x12,0x73,0x12,0x12,0x12,0x13,0x12,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x10,0x10,0x12,0xdc,0x10,0x10,0x91,0x11,0x0f -+// 28152 淸 ; -+,0x20,0x10,0x11,0x04,0x45,0x28,0x2b,0x08,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x24,0x24,0xfc,0x04,0x04,0x14,0x08 -+// 28153 淹 ; -+,0x20,0x10,0x17,0x00,0x41,0x2a,0x2f,0x12,0x13,0x22,0x62,0x23,0x20,0x20,0x20,0x20,0x40,0x40,0xfe,0xa0,0x18,0x47,0xfa,0x48,0xf8,0x48,0x48,0xf8,0x41,0x41,0x3f,0x00 -+// 28154 淺 ; -+,0x10,0x08,0x0b,0x40,0x24,0x24,0x09,0x08,0x10,0x17,0x70,0x10,0x10,0x11,0x16,0x10,0x50,0x48,0xff,0x48,0x30,0x61,0x99,0xa7,0x90,0xfe,0x88,0x50,0x60,0x91,0x0d,0x03 -+// 28155 添 ; -+,0x10,0x0b,0x08,0x00,0x47,0x20,0x28,0x09,0x12,0x1c,0x70,0x12,0x12,0x14,0x11,0x10,0x00,0xfc,0x40,0x40,0xff,0xa0,0x90,0x0c,0x47,0x42,0x40,0x64,0x52,0x52,0x40,0x80 -+// 28156 淼 ; -+,0x00,0x00,0x1e,0x02,0x04,0x1a,0x01,0x04,0x75,0x16,0x16,0x25,0x24,0x45,0x14,0x08,0x80,0x8c,0xd0,0xa0,0x98,0x87,0x02,0x10,0xd6,0x58,0x54,0x54,0x93,0x12,0x50,0x20 -+// 28157 淽 ; -+,0x20,0x10,0x10,0x03,0x40,0x24,0x24,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x17,0x10,0x00,0x88,0x88,0xff,0x88,0x88,0x10,0x10,0x9e,0x90,0x90,0x90,0x90,0x90,0xff,0x00 -+// 28158 淾 ; -+,0x00,0x01,0x02,0x0f,0x70,0x07,0x04,0x02,0x3f,0x00,0x00,0x1e,0x04,0x18,0x62,0x01,0x80,0x40,0x30,0xef,0x84,0xf0,0x90,0xa0,0xfe,0x00,0x80,0xd8,0xa0,0x98,0x87,0x00 -+// 28159 淿 ; -+,0x10,0x08,0x09,0x41,0x25,0x25,0x09,0x08,0x13,0x12,0x72,0x12,0x12,0x10,0x10,0x00,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xfe,0x22,0x22,0x22,0x26,0x20,0x20,0x20 -+// 28160 渀 ; -+,0x20,0x10,0x13,0x00,0x41,0x2a,0x2d,0x08,0x09,0x11,0x17,0x71,0x11,0x12,0x12,0x14,0x40,0x40,0xff,0xa0,0x58,0x47,0xf8,0x40,0x48,0x08,0xff,0x08,0x08,0x08,0x08,0x08 -+// 28161 渁 ; -+,0x20,0x10,0x13,0x00,0x40,0x29,0x2a,0x08,0x10,0x13,0x70,0x10,0x11,0x16,0x10,0x10,0x20,0x20,0xa6,0xb8,0xa8,0x26,0xa2,0x40,0x20,0xa6,0xb8,0xa8,0x24,0x23,0xa0,0x40 -+// 28162 渂 ; -+,0x20,0x11,0x11,0x05,0x45,0x25,0x28,0x08,0x0b,0x10,0x70,0x10,0x10,0x10,0x17,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x20,0xff,0x84,0x48,0x30,0x30,0xcc,0x07,0x02 -+// 28163 渃 ; -+,0x20,0x10,0x13,0x00,0x40,0x28,0x2b,0x08,0x10,0x10,0x61,0x22,0x2c,0x20,0x20,0x20,0x88,0x88,0xff,0x88,0xa8,0x20,0xff,0x40,0x80,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 28164 渄 ; -+,0x10,0x08,0x08,0x03,0x44,0x24,0x2b,0x08,0x08,0x17,0x70,0x10,0x10,0x10,0x10,0x10,0x48,0x48,0x48,0xcf,0x48,0x48,0xcf,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48,0x48 -+// 28165 清 ; -+,0x20,0x11,0x10,0x05,0x44,0x2b,0x28,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0xfe,0x20,0xfe,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 28166 渆 ; -+,0x20,0x12,0x11,0x03,0x41,0x29,0x29,0x0b,0x11,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x22,0x22,0x42,0xea,0x4a,0x4a,0x4a,0xea,0x4a,0x4a,0x4a,0x42,0x42,0x42,0x4a,0x44 -+// 28167 渇 ; -+,0x10,0x08,0x08,0x40,0x24,0x24,0x08,0x08,0x10,0x71,0x16,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7f,0x81,0x9d,0xe1,0x85,0xfd,0x01,0x05,0x02 -+// 28168 済 ; -+,0x20,0x10,0x13,0x00,0x40,0x28,0x28,0x13,0x10,0x10,0x60,0x20,0x21,0x21,0x22,0x2c,0x40,0x20,0xff,0x88,0x50,0x20,0xd8,0x07,0x84,0xfc,0x84,0xfc,0x04,0x04,0x04,0x04 -+// 28169 渉 ; -+,0x10,0x08,0x08,0x40,0x24,0x27,0x08,0x08,0x08,0x11,0x72,0x10,0x10,0x10,0x10,0x17,0x20,0x20,0xbe,0xa0,0xa0,0xff,0x20,0xa8,0xa6,0x22,0x24,0x28,0x10,0x20,0xc0,0x00 -+// 28170 渊 ; -+,0x12,0x0a,0x0a,0x43,0x22,0x2a,0x0b,0x12,0x12,0x62,0x22,0x23,0x24,0x24,0x28,0x00,0x02,0x22,0x22,0x2a,0xaa,0x72,0xfe,0x22,0x72,0xaa,0xaa,0x22,0x22,0x22,0x02,0x00 -+// 28171 渋 ; -+,0x20,0x10,0x10,0x00,0x44,0x24,0x2b,0x08,0x13,0x10,0x60,0x20,0x20,0x21,0x26,0x00,0x10,0x10,0x10,0x9e,0x90,0x90,0xff,0x00,0x02,0x8c,0x00,0x48,0x84,0x02,0x02,0x00 -+// 28172 渌 ; -+,0x20,0x13,0x10,0x03,0x48,0x2f,0x28,0x12,0x11,0x10,0x60,0x21,0x26,0x20,0x20,0x20,0x00,0xf8,0x08,0xf8,0x08,0xff,0x20,0x24,0x28,0x30,0xa8,0x24,0x23,0x20,0xa0,0x40 -+// 28173 渍 ; -+,0x10,0x09,0x08,0x01,0x40,0x2b,0x28,0x09,0x11,0x11,0x71,0x21,0x20,0x20,0x21,0x26,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0x24,0x24,0x24,0x50,0x88,0x0e,0x04 -+// 28174 渎 ; -+,0x10,0x08,0x0b,0x00,0x47,0x20,0x29,0x08,0x12,0x11,0x67,0x20,0x20,0x20,0x21,0x26,0x20,0x20,0xfe,0x20,0xff,0x02,0x24,0xa0,0x20,0x20,0xff,0x20,0x50,0x88,0x0c,0x04 -+// 28175 渏 ; -+,0x10,0x08,0x0b,0x00,0x44,0x24,0x2b,0x08,0x09,0x11,0x71,0x11,0x10,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0x50,0x8c,0xff,0x04,0xe4,0x24,0x24,0xe4,0x04,0x04,0x14,0x08 -+// 28176 渐 ; -+,0x21,0x11,0x17,0x01,0x42,0x2b,0x2d,0x0f,0x11,0x11,0x6f,0x21,0x21,0x21,0x21,0x21,0x00,0x03,0xdc,0x10,0x10,0x10,0x1f,0xd2,0x12,0x12,0xd2,0x12,0x22,0x22,0x42,0x02 -+// 28177 渑 ; -+,0x20,0x11,0x11,0x01,0x41,0x28,0x2b,0x0a,0x13,0x12,0x62,0x23,0x20,0x20,0x20,0x20,0x00,0xfc,0x04,0x04,0xfc,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x20,0x21,0x21,0x1f -+// 28178 渒 ; -+,0x10,0x08,0x08,0x00,0x42,0x22,0x24,0x04,0x08,0x08,0x73,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0xfe,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10,0x10 -+// 28179 渓 ; -+,0x10,0x0b,0x08,0x42,0x21,0x29,0x08,0x09,0x10,0x10,0x63,0x20,0x20,0x20,0x23,0x2c,0x3e,0xc0,0x84,0x44,0x48,0x30,0x20,0xfe,0x20,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 28180 渔 ; -+,0x10,0x08,0x09,0x01,0x42,0x25,0x29,0x09,0x11,0x11,0x71,0x11,0x10,0x10,0x17,0x10,0x80,0x80,0xfc,0x08,0x10,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x00,0x00,0xff,0x00 -+// 28181 渕 ; -+,0x10,0x0a,0x09,0x40,0x23,0x28,0x08,0x10,0x17,0x10,0x61,0x21,0x22,0x24,0x28,0x20,0x21,0x21,0x41,0x89,0xe9,0x89,0x89,0x89,0xe9,0x89,0x49,0x49,0x21,0x21,0x05,0x02 -+// 28182 渖 ; -+,0x10,0x08,0x0b,0x42,0x20,0x21,0x09,0x09,0x11,0x11,0x61,0x21,0x20,0x20,0x20,0x20,0x40,0x20,0xff,0x22,0x20,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0x20,0x20,0x20 -+// 28183 渗 ; -+,0x20,0x10,0x10,0x01,0x40,0x2b,0x28,0x09,0x12,0x1c,0x63,0x20,0x23,0x20,0x21,0x26,0x40,0x40,0x88,0xfc,0x40,0xff,0x90,0x08,0x24,0xc3,0x10,0x64,0x98,0x60,0x80,0x00 -+// 28184 渘 ; -+,0x21,0x10,0x10,0x03,0x40,0x28,0x2b,0x08,0x10,0x13,0x60,0x20,0x21,0x26,0x20,0x20,0xfc,0x48,0x30,0xff,0x62,0xa4,0x20,0x60,0x20,0xff,0x70,0xa8,0x27,0x22,0x20,0x20 -+// 28185 渙 ; -+,0x10,0x08,0x09,0x42,0x21,0x29,0x09,0x11,0x11,0x10,0x67,0x20,0x20,0x20,0x21,0x26,0x80,0xfc,0x08,0x10,0xfe,0x22,0x52,0x8a,0x22,0x20,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 28186 渚 ; -+,0x10,0x08,0x09,0x00,0x40,0x23,0x28,0x08,0x11,0x17,0x61,0x21,0x21,0x21,0x21,0x21,0x20,0x22,0xfa,0x24,0x28,0xff,0x20,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28187 減 ; -+,0x10,0x08,0x08,0x03,0x42,0x22,0x2a,0x0a,0x12,0x12,0x62,0x24,0x24,0x28,0x30,0x20,0x08,0x0c,0x0a,0xff,0x08,0xe8,0x09,0xe9,0xaa,0xaa,0xa4,0xec,0x15,0x23,0xc3,0x01 -+// 28188 渜 ; -+,0x10,0x0b,0x08,0x43,0x22,0x2a,0x0a,0x12,0x12,0x10,0x67,0x20,0x20,0x23,0x2c,0x20,0x00,0xff,0x40,0xfe,0x92,0x92,0x92,0x92,0x06,0x40,0xff,0x60,0x90,0x0c,0x07,0x02 -+// 28189 渝 ; -+,0x20,0x10,0x10,0x01,0x46,0x20,0x2b,0x0a,0x13,0x12,0x63,0x22,0x22,0x22,0x23,0x22,0x20,0x20,0x50,0x8c,0xfb,0x00,0xc2,0x52,0xd2,0x52,0xd2,0x52,0x52,0x42,0x4a,0x84 -+// 28190 渞 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x29,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x88,0x48,0x50,0xff,0x20,0x40,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28191 渟 ; -+,0x10,0x08,0x09,0x40,0x20,0x28,0x08,0x08,0x13,0x12,0x60,0x21,0x20,0x20,0x20,0x20,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x02,0x00,0xfe,0x10,0x10,0x50,0x20 -+// 28192 渠 ; -+,0x10,0x09,0x41,0x25,0x09,0x09,0x31,0x11,0x10,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x80,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 28193 渡 ; -+,0x20,0x10,0x13,0x02,0x4a,0x2b,0x2a,0x12,0x12,0x12,0x62,0x24,0x24,0x28,0x31,0x26,0x40,0x20,0xff,0x48,0x48,0xfe,0x48,0x78,0x00,0xfc,0x88,0x50,0x20,0x58,0x87,0x02 -+// 28194 渢 ; -+,0x20,0x13,0x12,0x03,0x42,0x2a,0x2b,0x0a,0x12,0x13,0x62,0x22,0x24,0x25,0x28,0x30,0x00,0xfc,0x04,0xf4,0x44,0x44,0xf4,0x54,0x54,0xf4,0x44,0x55,0x75,0x93,0x03,0x01 -+// 28195 渣 ; -+,0x20,0x10,0x13,0x00,0x48,0x2b,0x28,0x11,0x11,0x11,0x61,0x21,0x20,0x20,0x27,0x00,0x20,0x20,0xff,0x70,0xa8,0x26,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x00,0xff,0x00 -+// 28196 渤 ; -+,0x21,0x11,0x17,0x01,0x41,0x2f,0x28,0x17,0x10,0x21,0x61,0x2f,0x21,0x21,0x25,0x22,0x08,0x08,0xc8,0x08,0x1f,0xe9,0x29,0xc9,0x89,0x09,0xd1,0x11,0x11,0x21,0x25,0x42 -+// 28197 渥 ; -+,0x20,0x13,0x12,0x03,0x4a,0x2b,0x2a,0x12,0x12,0x12,0x64,0x25,0x24,0x28,0x33,0x20,0x00,0xfe,0x02,0xfe,0x00,0xfe,0x20,0x48,0xfc,0x24,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 28198 渦 ; -+,0x21,0x11,0x11,0x41,0x29,0x29,0x17,0x14,0x14,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0xf8,0x08,0x08,0xe8,0x28,0x28,0xfe,0x02,0xf2,0x92,0x92,0xf2,0x02,0x02,0x0a,0x04 -+// 28199 渧 ; -+,0x20,0x10,0x11,0x04,0x44,0x2b,0x2a,0x08,0x11,0x11,0x71,0x11,0x11,0x10,0x10,0x10,0x40,0x20,0xfe,0x88,0x50,0xff,0x22,0x20,0xfc,0x24,0x24,0x24,0x2c,0x20,0x20,0x20 -+// 28200 渨 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x28,0x0f,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff,0x40,0x44,0x28,0x10,0x0c,0x47,0x82,0x00 -+// 28201 温 ; -+,0x20,0x13,0x12,0x03,0x4a,0x2a,0x0b,0x10,0x17,0x64,0x24,0x24,0x24,0x24,0x2f,0x20,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xff,0x00 -+// 28202 渪 ; -+,0x20,0x11,0x10,0x05,0x45,0x25,0x29,0x08,0x0b,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x1c,0xe0,0x20,0xfc,0x24,0x24,0xfc,0x20,0xfe,0x22,0x2a,0xfe,0x06,0x02,0x0a,0x04 -+// 28203 渫 ; -+,0x20,0x11,0x11,0x07,0x41,0x21,0x29,0x09,0x10,0x13,0x20,0x60,0x21,0x26,0x20,0x20,0x00,0x48,0x48,0xff,0x48,0x78,0x00,0xfe,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 28204 測 ; -+,0x10,0x0b,0x0a,0x42,0x23,0x2a,0x0a,0x0b,0x12,0x12,0x63,0x20,0x21,0x21,0x22,0x24,0x02,0xe2,0x22,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x02,0x42,0x22,0x2a,0x04 -+// 28205 渭 ; -+,0x10,0x0b,0x0a,0x43,0x22,0x2b,0x08,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 28206 渮 ; -+,0x10,0x08,0x0b,0x00,0x40,0x2b,0x28,0x09,0x11,0x11,0x71,0x10,0x10,0x10,0x10,0x10,0x90,0x90,0xfe,0x90,0x00,0xff,0x04,0xe4,0x24,0x24,0xe4,0x04,0x04,0x04,0x14,0x08 -+// 28207 港 ; -+,0x20,0x10,0x13,0x00,0x48,0x2f,0x28,0x11,0x13,0x25,0x69,0x21,0x21,0x21,0x20,0x00,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x08,0xf4,0x17,0xf2,0x00,0x04,0x04,0xfc,0x00 -+// 28208 渰 ; -+,0x10,0x08,0x08,0x01,0x46,0x20,0x29,0x09,0x11,0x10,0x67,0x20,0x20,0x21,0x21,0x22,0x40,0x60,0x98,0x04,0xfb,0x00,0xfc,0x04,0xfc,0x88,0xff,0x88,0x88,0x08,0x08,0x08 -+// 28209 渱 ; -+,0x21,0x11,0x11,0x01,0x47,0x25,0x2d,0x0d,0x17,0x11,0x61,0x21,0x2f,0x20,0x20,0x00,0x00,0x00,0x1f,0x04,0xc4,0x44,0x44,0x44,0xc4,0x04,0x04,0x44,0xc4,0x04,0x3f,0x00 -+// 28210 渲 ; -+,0x20,0x10,0x13,0x02,0x40,0x29,0x28,0x09,0x11,0x11,0x21,0x61,0x20,0x20,0x27,0x20,0x40,0x20,0xff,0x02,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x00,0xff,0x00 -+// 28211 渳 ; -+,0x20,0x17,0x10,0x00,0x47,0x2c,0x2c,0x14,0x17,0x10,0x60,0x20,0x20,0x20,0x22,0x21,0x00,0xff,0xa4,0xa4,0xbc,0x24,0x24,0x3c,0xa4,0xa4,0xa7,0xfc,0x84,0x84,0x84,0x04 -+// 28212 渴 ; -+,0x10,0x09,0x09,0x41,0x21,0x25,0x08,0x08,0x11,0x16,0x61,0x21,0x21,0x20,0x20,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xfe,0x22,0x22,0x52,0x8a,0xfa,0x02,0x0a,0x04 -+// 28213 渵 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x88,0x88,0x88,0xff,0x88,0x88,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0x22,0xfe,0x02 -+// 28214 渶 ; -+,0x10,0x08,0x0b,0x00,0x44,0x24,0x29,0x09,0x11,0x11,0x67,0x20,0x20,0x20,0x23,0x2c,0x88,0x88,0xff,0x88,0x20,0x20,0xfc,0x24,0x24,0x24,0xff,0x50,0x48,0x84,0x07,0x02 -+// 28215 渷 ; -+,0x10,0x08,0x0b,0x00,0x44,0x25,0x2b,0x09,0x09,0x11,0x70,0x10,0x10,0x11,0x12,0x00,0x20,0x10,0xff,0x08,0x84,0x02,0xfe,0x04,0x04,0xfc,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 28216 游 ; -+,0x22,0x11,0x11,0x07,0x42,0x2a,0x2b,0x12,0x12,0x12,0x62,0x24,0x24,0x24,0x2a,0x21,0x10,0x10,0x10,0xdf,0x20,0x5e,0x84,0x88,0x88,0xbf,0x88,0x88,0x88,0x88,0xa8,0x10 -+// 28217 渹 ; -+,0x21,0x11,0x13,0x02,0x44,0x23,0x28,0x09,0x10,0x11,0x10,0x61,0x21,0x21,0x20,0x20,0x00,0x00,0xfe,0x42,0x22,0xfa,0x02,0xf2,0x02,0xf2,0x02,0xf2,0x12,0xf2,0x0a,0x04 -+// 28218 渺 ; -+,0x20,0x10,0x17,0x04,0x44,0x2f,0x0c,0x14,0x17,0x14,0x64,0x27,0x20,0x20,0x23,0x00,0x08,0x08,0x88,0xaa,0xaa,0xa9,0xc9,0x8b,0x8a,0x84,0x84,0x88,0x10,0x60,0x80,0x00 -+// 28219 渻 ; -+,0x20,0x10,0x10,0x01,0x44,0x24,0x28,0x09,0x17,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0xa4,0xa2,0x25,0x28,0x30,0x60,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 28220 渼 ; -+,0x21,0x10,0x17,0x00,0x43,0x28,0x28,0x17,0x10,0x20,0x67,0x20,0x20,0x21,0x22,0x2c,0x10,0xa0,0xfe,0x40,0xfc,0x40,0x40,0xfe,0x00,0x40,0xfc,0x40,0xa0,0x18,0x07,0x02 -+// 28221 渽 ; -+,0x20,0x10,0x13,0x00,0x48,0x2f,0x28,0x13,0x12,0x12,0x12,0x63,0x20,0x20,0x21,0x20,0x90,0x90,0xd4,0x92,0x90,0xff,0x10,0xd0,0x52,0x4a,0x4c,0xc9,0x15,0x65,0x83,0x01 -+// 28222 渾 ; -+,0x27,0x14,0x10,0x43,0x20,0x2b,0x0a,0x13,0x12,0x13,0x60,0x2f,0x20,0x20,0x20,0x20,0xff,0x02,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28223 渿 ; -+,0x20,0x10,0x13,0x00,0x40,0x2b,0x28,0x09,0x10,0x13,0x70,0x22,0x22,0x24,0x28,0x00,0x20,0x20,0xfe,0x70,0xa8,0x26,0x00,0xf8,0x00,0xfe,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 28224 湀 ; -+,0x20,0x13,0x10,0x02,0x41,0x28,0x29,0x0e,0x08,0x13,0x70,0x10,0x10,0x10,0x11,0x16,0x10,0xd4,0x58,0x52,0x8c,0x88,0x74,0x23,0x20,0xfe,0x20,0x50,0x48,0x84,0x06,0x02 -+// 28225 湁 ; -+,0x21,0x11,0x11,0x01,0x47,0x21,0x29,0x09,0x13,0x15,0x61,0x21,0x21,0x21,0x25,0x22,0x10,0x10,0x10,0x28,0xa4,0x43,0x3c,0x80,0x00,0x3c,0x24,0x24,0x24,0x24,0x3c,0x24 -+// 28226 湂 ; -+,0x10,0x09,0x09,0x01,0x45,0x24,0x25,0x08,0x0b,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x00,0xde,0x52,0x52,0xde,0x00,0xfc,0x00,0xff,0x40,0xfc,0x04,0x04,0x04,0x14,0x08 -+// 28227 湃 ; -+,0x20,0x13,0x10,0x00,0x43,0x28,0x28,0x08,0x17,0x10,0x70,0x11,0x11,0x12,0x14,0x10,0x40,0x9f,0x84,0x9f,0xe4,0x84,0x9f,0x84,0xe4,0xbf,0x84,0x04,0x04,0x04,0x04,0x04 -+// 28228 湄 ; -+,0x20,0x13,0x12,0x02,0x43,0x2a,0x2a,0x0a,0x12,0x12,0x72,0x22,0x24,0x24,0x28,0x20,0x00,0xfe,0x22,0x22,0xfe,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 28229 湅 ; -+,0x20,0x10,0x17,0x00,0x43,0x2b,0x2a,0x0a,0x13,0x10,0x60,0x20,0x23,0x2c,0x20,0x20,0x20,0x20,0xff,0x20,0xfe,0x2a,0xaa,0xb2,0xfe,0x20,0x70,0xac,0x27,0x22,0x20,0x20 -+// 28230 湆 ; -+,0x20,0x10,0x11,0x00,0x40,0x28,0x2b,0x08,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x40,0x20,0xfe,0x88,0x48,0x50,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28231 湇 ; -+,0x20,0x10,0x13,0x00,0x44,0x27,0x28,0x09,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x40,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 28232 湈 ; -+,0x10,0x08,0x0b,0x00,0x40,0x24,0x24,0x08,0x08,0x13,0x70,0x10,0x11,0x16,0x10,0x10,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x20,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 28233 湉 ; -+,0x21,0x11,0x11,0x01,0x45,0x25,0x2d,0x09,0x11,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x00,0x07,0x38,0x08,0x88,0x7f,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x22,0x3e,0x22 -+// 28234 湊 ; -+,0x10,0x08,0x0b,0x00,0x43,0x28,0x2f,0x08,0x11,0x12,0x6c,0x23,0x20,0x20,0x21,0x26,0x40,0x40,0xfe,0x40,0xfc,0x40,0xff,0x88,0xf4,0x43,0x40,0xfe,0x60,0x90,0x0e,0x04 -+// 28235 湋 ; -+,0x20,0x10,0x11,0x00,0x43,0x20,0x29,0x09,0x11,0x10,0x13,0x62,0x27,0x20,0x20,0x20,0x40,0x40,0xfc,0x44,0xff,0x00,0xfc,0x04,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 28236 湌 ; -+,0x20,0x10,0x10,0x01,0x4a,0x2d,0x29,0x11,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x40,0x40,0xa0,0x90,0x4c,0xfb,0x08,0xf8,0x08,0xf8,0x44,0x28,0x10,0x4c,0x86,0x04 -+// 28237 湍 ; -+,0x20,0x11,0x11,0x05,0x45,0x28,0x2b,0x08,0x13,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x20,0x22,0x22,0x22,0xfe,0x00,0xff,0x40,0xfe,0x52,0x52,0x52,0x52,0x52,0x5a,0x04 -+// 28238 湎 ; -+,0x20,0x17,0x10,0x00,0x4b,0x2a,0x2a,0x12,0x12,0x12,0x62,0x22,0x22,0x23,0x22,0x00,0x00,0xff,0x20,0x40,0xfe,0x52,0x72,0x52,0x52,0x72,0x52,0x52,0x52,0xfe,0x02,0x00 -+// 28239 湏 ; -+,0x20,0x13,0x10,0x00,0x45,0x25,0x29,0x09,0x09,0x11,0x71,0x11,0x10,0x10,0x11,0x16,0x00,0xff,0x20,0x40,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x02,0xfe,0x88,0x84,0x02,0x02 -+// 28240 湐 ; -+,0x20,0x10,0x10,0x03,0x48,0x29,0x29,0x0a,0x12,0x14,0x70,0x10,0x10,0x10,0x10,0x00,0x84,0x84,0x88,0xff,0x91,0xd1,0xb1,0x9f,0x91,0x91,0x91,0x91,0x91,0x9f,0x91,0x00 -+// 28241 湑 ; -+,0x20,0x13,0x10,0x05,0x45,0x2a,0x2a,0x0d,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x24,0x20,0x3e,0xa0,0x7f,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 28242 湒 ; -+,0x20,0x11,0x11,0x05,0x44,0x2b,0x29,0x09,0x11,0x11,0x71,0x11,0x17,0x10,0x10,0x10,0x00,0xfc,0x04,0xfc,0x00,0xff,0x04,0xfc,0x04,0xfc,0x04,0x07,0xfc,0x04,0x04,0x04 -+// 28243 湓 ; -+,0x10,0x08,0x08,0x01,0x42,0x28,0x28,0x08,0x11,0x10,0x63,0x22,0x22,0x22,0x2f,0x00,0x00,0x90,0x88,0x04,0xfb,0x48,0x48,0xa8,0x10,0x00,0xfc,0x94,0x94,0x94,0xff,0x00 -+// 28244 湔 ; -+,0x11,0x08,0x08,0x07,0x40,0x2b,0x0a,0x0b,0x12,0x12,0x73,0x12,0x12,0x12,0x12,0x12,0x08,0x88,0x90,0xff,0x00,0xc2,0x52,0xd2,0x52,0x52,0xd2,0x52,0x42,0x42,0x4a,0xc4 -+// 28245 湕 ; -+,0x20,0x13,0x10,0x00,0x45,0x25,0x2b,0x08,0x08,0x10,0x75,0x13,0x11,0x12,0x14,0x10,0x08,0x88,0xbe,0x8a,0x7f,0x0a,0xbe,0x88,0xbe,0x88,0x7f,0x08,0x08,0xc0,0x3f,0x00 -+// 28246 湖 ; -+,0x21,0x11,0x11,0x01,0x47,0x29,0x09,0x17,0x14,0x14,0x64,0x24,0x27,0x20,0x20,0x20,0x00,0x1e,0x12,0x12,0xde,0x12,0x12,0xde,0x52,0x52,0x52,0x52,0xe2,0x22,0x4a,0x84 -+// 28247 湗 ; -+,0x21,0x11,0x11,0x07,0x41,0x29,0x0f,0x11,0x11,0x17,0x61,0x21,0x21,0x23,0x2c,0x20,0x02,0x02,0x02,0xc2,0x1f,0x02,0xe2,0x12,0x0a,0xca,0x02,0x02,0x62,0x82,0x0a,0x04 -+// 28248 湘 ; -+,0x21,0x11,0x11,0x01,0x47,0x21,0x2b,0x0b,0x15,0x15,0x79,0x11,0x11,0x11,0x11,0x00,0x00,0x00,0x3e,0x22,0xe2,0x3e,0x22,0xa2,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 28249 湙 ; -+,0x10,0x08,0x0b,0x00,0x41,0x2a,0x28,0x11,0x10,0x10,0x67,0x20,0x20,0x20,0x23,0x2c,0x40,0x20,0xfe,0x50,0x54,0x52,0x90,0x30,0x00,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 28250 湚 ; -+,0x22,0x12,0x12,0x02,0x42,0x2a,0x0a,0x0a,0x12,0x12,0x12,0x62,0x22,0x24,0x24,0x28,0x44,0x54,0xe4,0x24,0x54,0xfc,0x04,0xf4,0x94,0xf4,0x94,0xf4,0x95,0x95,0x95,0xb3 -+// 28251 湛 ; -+,0x20,0x10,0x13,0x00,0x48,0x28,0x08,0x10,0x10,0x17,0x62,0x22,0x23,0x22,0x23,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0x88,0xff,0x48,0x84,0x04,0x00,0xff,0x00 -+// 28252 湜 ; -+,0x20,0x11,0x11,0x01,0x41,0x29,0x28,0x0b,0x10,0x11,0x61,0x21,0x22,0x22,0x24,0x28,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x20,0x20,0x3e,0x20,0xa0,0x60,0x30,0x0f -+// 28253 湝 ; -+,0x22,0x12,0x12,0x03,0x4a,0x2a,0x0b,0x10,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x10,0x10,0x16,0xd8,0x12,0x92,0x2e,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28254 湞 ; -+,0x20,0x10,0x10,0x00,0x41,0x29,0x09,0x09,0x11,0x11,0x61,0x21,0x20,0x20,0x21,0x26,0x20,0x20,0x3e,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0xfc,0x08,0x84,0x02,0x02 -+// 28255 湟 ; -+,0x20,0x10,0x13,0x02,0x4b,0x2a,0x0b,0x10,0x17,0x10,0x60,0x23,0x20,0x20,0x27,0x20,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x20,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 28256 湠 ; -+,0x20,0x12,0x12,0x03,0x48,0x28,0x0b,0x10,0x11,0x11,0x62,0x24,0x28,0x20,0x23,0x2c,0x20,0x22,0x22,0xfe,0x40,0x40,0xff,0x80,0x20,0x24,0xa8,0x70,0x50,0x8c,0x07,0x02 -+// 28257 湡 ; -+,0x10,0x09,0x09,0x05,0x45,0x29,0x09,0x08,0x13,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x00,0xfc,0x24,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x2a,0xfe,0x02,0x02,0x0a,0x04 -+// 28258 湢 ; -+,0x20,0x13,0x10,0x01,0x45,0x25,0x29,0x08,0x0b,0x12,0x72,0x13,0x12,0x12,0x13,0x12,0x00,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 28259 湣 ; -+,0x20,0x13,0x12,0x03,0x4a,0x2b,0x2a,0x12,0x13,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x00,0xfe,0x02,0xfe,0x20,0xfe,0x10,0x89,0x07,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28260 湤 ; -+,0x04,0x22,0x10,0x0f,0x42,0x22,0x0b,0x0a,0x12,0x12,0x62,0x24,0x24,0x2a,0x31,0x00,0x10,0x10,0x10,0xbf,0x28,0x48,0xae,0xba,0xea,0xaa,0xae,0xa8,0xa9,0xa1,0x1f,0x00 -+// 28261 湥 ; -+,0x20,0x10,0x13,0x02,0x40,0x28,0x09,0x08,0x10,0x13,0x70,0x10,0x10,0x10,0x11,0x16,0x40,0x20,0xff,0x02,0x88,0x84,0x24,0x28,0x24,0xff,0x20,0x50,0x48,0x8c,0x07,0x02 -+// 28262 湦 ; -+,0x20,0x11,0x11,0x01,0x41,0x29,0x08,0x12,0x13,0x12,0x64,0x21,0x20,0x20,0x27,0x20,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 28263 湧 ; -+,0x23,0x10,0x10,0x01,0x41,0x29,0x09,0x09,0x11,0x10,0x63,0x20,0x20,0x20,0x23,0x2c,0xfe,0x04,0x18,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x20,0xfe,0x22,0x42,0x82,0x0a,0x04 -+// 28264 湨 ; -+,0x21,0x11,0x11,0x01,0x49,0x29,0x09,0x10,0x10,0x17,0x50,0x20,0x20,0x23,0x2c,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x50,0x48,0xff,0x40,0xa0,0x98,0x07,0x02,0x00 -+// 28265 湩 ; -+,0x20,0x13,0x10,0x07,0x40,0x2b,0x2a,0x0b,0x12,0x13,0x10,0x63,0x20,0x20,0x27,0x20,0x3c,0xc0,0x40,0xff,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x40,0xfc,0x40,0x40,0xff,0x00 -+// 28266 湪 ; -+,0x20,0x10,0x10,0x00,0x44,0x25,0x28,0x09,0x16,0x11,0x66,0x20,0x21,0x2e,0x20,0x20,0x40,0x7e,0x44,0xfc,0x08,0xff,0x40,0xc2,0x64,0xb8,0x28,0x54,0x97,0x12,0x50,0x20 -+// 28267 湫 ; -+,0x00,0x20,0x17,0x11,0x01,0x41,0x2f,0x09,0x13,0x13,0x15,0x65,0x29,0x31,0x21,0x21,0x08,0xc8,0x08,0x08,0x09,0x29,0xda,0x0c,0x88,0x48,0x48,0x14,0x14,0x22,0x43,0x82 -+// 28268 湬 ; -+,0x03,0x1c,0x04,0x3f,0x0e,0x15,0x24,0x04,0x00,0x3e,0x02,0x04,0x08,0x10,0x62,0x01,0x10,0x10,0x52,0x5c,0x10,0x28,0x47,0x82,0x98,0xe0,0xc0,0xa0,0x98,0x87,0x82,0x00 -+// 28269 湭 ; -+,0x10,0x08,0x08,0x03,0x40,0x24,0x05,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x84,0x44,0x48,0xff,0x48,0x48,0xff,0x49,0x49,0x87,0x01,0xff,0x01,0x01,0xff,0x01 -+// 28270 湮 ; -+,0x10,0x0b,0x08,0x00,0x43,0x2a,0x2a,0x0b,0x10,0x10,0x13,0x60,0x20,0x20,0x27,0x00,0x00,0xff,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28271 湯 ; -+,0x11,0x09,0x09,0x01,0x45,0x24,0x2b,0x08,0x11,0x16,0x60,0x21,0x26,0x21,0x26,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x80,0xfe,0x52,0x92,0x22,0x42,0x82,0x0a,0x04 -+// 28272 湰 ; -+,0x20,0x10,0x10,0x05,0x44,0x28,0x2b,0x08,0x11,0x11,0x72,0x15,0x10,0x10,0x17,0x00,0x80,0xfc,0x88,0x50,0x30,0xcc,0x03,0xfc,0x20,0xfe,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 28273 湱 ; -+,0x10,0x0b,0x08,0x01,0x40,0x2b,0x08,0x10,0x13,0x10,0x60,0x21,0x26,0x20,0x20,0x20,0x20,0xff,0x20,0xfe,0x20,0xff,0x20,0x00,0xff,0x40,0x80,0xfe,0x82,0x82,0xfe,0x82 -+// 28274 湲 ; -+,0x10,0x0b,0x0a,0x41,0x20,0x2b,0x08,0x13,0x10,0x10,0x61,0x21,0x22,0x24,0x28,0x23,0x0e,0xf0,0x44,0x28,0x10,0xfe,0x40,0xff,0x80,0xfc,0x88,0x50,0x20,0x58,0x87,0x02 -+// 28275 湳 ; -+,0x10,0x08,0x0b,0x00,0x43,0x22,0x0a,0x0a,0x12,0x12,0x63,0x22,0x22,0x22,0x22,0x22,0x20,0x20,0xff,0x20,0xfe,0x02,0x8a,0x52,0xfa,0x22,0xfe,0x22,0x22,0x22,0x2a,0x04 -+// 28276 湴 ; -+,0x21,0x10,0x10,0x03,0x40,0x28,0x28,0x0a,0x11,0x11,0x60,0x20,0x20,0x20,0x27,0x00,0x08,0x88,0x90,0xfe,0x90,0x90,0x90,0x92,0x94,0x98,0x90,0x90,0x90,0x90,0xff,0x00 -+// 28277 湵 ; -+,0x20,0x10,0x11,0x00,0x41,0x28,0x2b,0x08,0x10,0x11,0x11,0x62,0x20,0x21,0x26,0x20,0x84,0x48,0xfe,0x20,0xfe,0x20,0xff,0x80,0x80,0xf8,0x10,0x20,0x50,0x8c,0x03,0x00 -+// 28278 湶 ; -+,0x20,0x10,0x11,0x01,0x45,0x25,0x09,0x08,0x0b,0x10,0x70,0x11,0x12,0x1c,0x10,0x10,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xa6,0xa8,0xb0,0x28,0x27,0x22,0xa0,0x40 -+// 28279 湷 ; -+,0x10,0x08,0x09,0x00,0x45,0x24,0x2b,0x08,0x09,0x13,0x75,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0xfc,0x20,0xfe,0x40,0xff,0x88,0x04,0xff,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28280 湸 ; -+,0x20,0x10,0x13,0x00,0x44,0x28,0x08,0x10,0x13,0x12,0x60,0x20,0x20,0x21,0x21,0x22,0x40,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x02,0xf8,0x88,0x88,0x09,0x09,0x07 -+// 28281 湹 ; -+,0x20,0x13,0x12,0x02,0x42,0x2a,0x0a,0x12,0x12,0x12,0x62,0x22,0x22,0x24,0x25,0x08,0x00,0xff,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 28282 湺 ; -+,0x20,0x10,0x11,0x01,0x43,0x2d,0x09,0x11,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x80,0xbe,0x22,0x22,0x22,0x3e,0x08,0x7f,0x08,0x1c,0x2c,0x2a,0x4a,0x89,0x08,0x08 -+// 28283 湻 ; -+,0x10,0x08,0x0b,0x00,0x41,0x29,0x09,0x10,0x13,0x12,0x62,0x23,0x22,0x22,0x23,0x22,0x40,0x20,0xff,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 28284 湼 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x09,0x09,0x08,0x11,0x70,0x10,0x10,0x10,0x13,0x00,0x60,0x8e,0x02,0x02,0xce,0x02,0x02,0xfe,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 28285 湽 ; -+,0x20,0x10,0x11,0x03,0x41,0x28,0x08,0x10,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x94,0x94,0x28,0xff,0x28,0x94,0x94,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 28286 湾 ; -+,0x10,0x08,0x0b,0x04,0x45,0x2a,0x29,0x08,0x11,0x11,0x71,0x10,0x10,0x10,0x10,0x10,0x40,0x20,0xff,0x50,0x52,0x51,0xfc,0x04,0xfc,0x00,0xfe,0x02,0x02,0x02,0x0a,0x04 -+// 28287 湿 ; -+,0x00,0x11,0x09,0x09,0x41,0x21,0x28,0x08,0x08,0x12,0x11,0x71,0x10,0x10,0x17,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x50,0x50,0x52,0x54,0x58,0x50,0x50,0xff,0x00 -+// 28288 満 ; -+,0x20,0x10,0x13,0x00,0x43,0x28,0x2b,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x22,0x88,0x88,0xff,0x88,0xff,0x20,0xfe,0x22,0xaa,0xaa,0xaa,0xfa,0x02,0x02,0x0a,0x04 -+// 28289 溁 ; -+,0x20,0x10,0x13,0x00,0x40,0x2b,0x2a,0x08,0x13,0x10,0x70,0x10,0x11,0x16,0x10,0x10,0x88,0x88,0xff,0x88,0x00,0xff,0x22,0x20,0xfe,0x60,0xb0,0xa8,0x24,0x27,0x22,0x20 -+// 28290 溂 ; -+,0x10,0x08,0x0b,0x00,0x23,0x16,0x06,0x0b,0x08,0x11,0x71,0x12,0x14,0x10,0x10,0x10,0x81,0x81,0xf1,0x85,0xe5,0xa5,0xa5,0xe5,0x85,0xc5,0xa5,0x91,0x81,0x81,0x85,0x82 -+// 28291 溃 ; -+,0x10,0x09,0x09,0x41,0x21,0x08,0x0b,0x08,0x11,0x11,0x61,0x21,0x21,0x20,0x20,0x23,0x20,0xfc,0x24,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0x24,0x24,0x30,0x48,0x86,0x02 -+// 28292 溄 ; -+,0x10,0x09,0x09,0x01,0x40,0x24,0x09,0x08,0x11,0x16,0x60,0x21,0x20,0x23,0x20,0x20,0x20,0x22,0x22,0xfe,0x80,0xfc,0x48,0x70,0xac,0xfb,0x20,0xfc,0x20,0xfe,0x20,0x20 -+// 28293 溅 ; -+,0x40,0x20,0x2f,0x08,0x4a,0x2a,0x0a,0x1a,0x1a,0x2a,0x62,0x26,0x25,0x28,0x30,0x20,0x10,0x14,0x92,0x90,0xff,0x90,0x90,0xff,0x90,0x92,0x14,0x08,0x19,0xa5,0x83,0x01 -+// 28294 溆 ; -+,0x21,0x11,0x12,0x02,0x44,0x23,0x29,0x09,0x17,0x11,0x65,0x25,0x29,0x31,0x25,0x02,0x00,0x00,0xbe,0x52,0x12,0xd2,0x14,0x14,0xd4,0x88,0x48,0x54,0x14,0x23,0x42,0x00 -+// 28295 溇 ; -+,0x10,0x09,0x08,0x03,0x40,0x24,0x27,0x08,0x08,0x17,0x10,0x71,0x10,0x10,0x11,0x16,0x20,0x24,0xa8,0xff,0x70,0xa8,0x27,0x22,0x40,0xff,0x88,0x90,0x60,0x58,0x86,0x02 -+// 28296 溈 ; -+,0x21,0x10,0x10,0x03,0x40,0x24,0x24,0x08,0x08,0x09,0x11,0x72,0x12,0x14,0x10,0x10,0x10,0x90,0xa0,0xfe,0x44,0x48,0xfe,0x82,0xff,0x01,0x55,0xab,0x01,0x01,0x05,0x02 -+// 28297 溉 ; -+,0x20,0x17,0x14,0x04,0x47,0x24,0x2c,0x0f,0x14,0x15,0x64,0x25,0x26,0x24,0x23,0x00,0x00,0xbe,0x88,0x88,0xa8,0xa8,0xbf,0x88,0x08,0x14,0x94,0xa4,0x45,0x85,0x07,0x00 -+// 28298 溊 ; -+,0x10,0x0b,0x0a,0x02,0x43,0x2a,0x2a,0x0b,0x12,0x12,0x73,0x12,0x12,0x12,0x12,0x12,0x00,0xde,0x42,0x42,0xde,0x00,0x00,0xde,0x12,0x12,0xd4,0x0c,0x08,0x14,0x27,0xc2 -+// 28299 溋 ; -+,0x20,0x13,0x10,0x00,0x44,0x25,0x29,0x0a,0x15,0x10,0x63,0x22,0x22,0x22,0x27,0x00,0x00,0xfc,0x88,0x8e,0xfa,0x52,0x32,0xca,0x0a,0x04,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 28300 溌 ; -+,0x20,0x13,0x12,0x01,0x44,0x25,0x2b,0x08,0x10,0x13,0x60,0x20,0x21,0x21,0x22,0x24,0x24,0xe8,0x52,0x94,0x88,0x04,0xfb,0x90,0x90,0xfe,0x90,0x90,0x10,0x12,0x12,0x0e -+// 28301 溍 ; -+,0x20,0x13,0x10,0x42,0x21,0x29,0x08,0x13,0x10,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x00,0xff,0x48,0x49,0x49,0x4a,0x48,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc -+// 28302 溎 ; -+,0x21,0x11,0x11,0x01,0x47,0x29,0x0b,0x13,0x15,0x15,0x69,0x21,0x21,0x21,0x21,0x21,0x08,0x08,0x08,0x3f,0xc8,0x08,0xbf,0x40,0x08,0x3f,0x08,0x08,0x08,0x08,0x7f,0x00 -+// 28303 溏 ; -+,0x20,0x10,0x13,0x02,0x4a,0x2a,0x0b,0x12,0x12,0x12,0x62,0x24,0x24,0x24,0x28,0x20,0x40,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 28304 源 ; -+,0x20,0x13,0x12,0x02,0x42,0x2a,0x0a,0x0a,0x12,0x12,0x62,0x22,0x24,0x25,0x28,0x20,0x00,0xff,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x54,0x52,0x91,0x11,0x50,0x20 -+// 28305 溑 ; -+,0x10,0x09,0x08,0x00,0x41,0x25,0x25,0x09,0x09,0x09,0x31,0x11,0x10,0x10,0x11,0x16,0x20,0x24,0xa4,0xa8,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00,0x84,0x02,0x02 -+// 28306 溒 ; -+,0x10,0x08,0x09,0x40,0x23,0x24,0x05,0x09,0x09,0x10,0x70,0x11,0x16,0x10,0x10,0x10,0x20,0x20,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x42,0xcc,0xb0,0x98,0xa7,0xc2,0x80 -+// 28307 溓 ; -+,0x21,0x10,0x17,0x00,0x43,0x28,0x2f,0x08,0x13,0x10,0x11,0x62,0x22,0x24,0x28,0x20,0x08,0x90,0xff,0x90,0xfc,0x94,0xff,0x94,0xfc,0x90,0x98,0x94,0x93,0x92,0x90,0x90 -+// 28308 溔 ; -+,0x21,0x10,0x10,0x03,0x48,0x28,0x2b,0x10,0x10,0x17,0x60,0x20,0x24,0x24,0x28,0x00,0x08,0x88,0x90,0xfe,0x40,0x40,0xfc,0x40,0x40,0xfe,0x00,0x00,0x92,0x49,0x49,0x00 -+// 28309 溕 ; -+,0x12,0x0b,0x0a,0x01,0x40,0x2b,0x08,0x0b,0x10,0x11,0x66,0x20,0x23,0x2c,0x20,0x20,0x00,0xff,0x02,0xfc,0x00,0xff,0xc0,0x24,0x78,0x90,0x78,0x94,0x17,0x12,0x50,0x20 -+// 28310 準 ; -+,0x10,0x08,0x21,0x11,0x07,0x09,0x09,0x31,0x11,0x11,0x00,0x7f,0x00,0x00,0x00,0x00,0xa0,0x90,0xff,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0x80,0xff,0x80,0x80,0x80,0x80 -+// 28311 溗 ; -+,0x10,0x09,0x08,0x43,0x20,0x24,0x07,0x08,0x0b,0x10,0x70,0x10,0x11,0x16,0x10,0x10,0x1c,0xe0,0x20,0xff,0x20,0xaa,0xac,0xa9,0xaf,0x20,0x70,0xa8,0x27,0x22,0x20,0x20 -+// 28312 溘 ; -+,0x10,0x08,0x09,0x00,0x48,0x2b,0x08,0x11,0x13,0x10,0x63,0x22,0x22,0x22,0x2f,0x20,0x40,0x40,0xfc,0x40,0x40,0xfe,0x80,0x08,0xfc,0x04,0xfc,0x94,0x94,0x94,0xff,0x00 -+// 28313 溙 ; -+,0x10,0x08,0x0b,0x00,0x41,0x28,0x0b,0x08,0x11,0x17,0x70,0x10,0x10,0x13,0x10,0x10,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x88,0x24,0x2b,0xb0,0x28,0xa4,0x26,0xa0,0x40 -+// 28314 溚 ; -+,0x20,0x10,0x17,0x00,0x40,0x28,0x08,0x11,0x16,0x10,0x61,0x21,0x21,0x21,0x21,0x21,0x90,0x90,0xfe,0x90,0x40,0x60,0x90,0x0c,0xfb,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 28315 溛 ; -+,0x20,0x10,0x13,0x02,0x40,0x2b,0x09,0x11,0x11,0x11,0x61,0x21,0x22,0x22,0x24,0x20,0x40,0x20,0xff,0x8a,0x84,0x03,0xfc,0x28,0x28,0x28,0x28,0x24,0x24,0x2a,0x7b,0x02 -+// 28316 溜 ; -+,0x20,0x13,0x12,0x02,0x42,0x2b,0x0a,0x10,0x13,0x12,0x62,0x23,0x22,0x22,0x23,0x22,0xc0,0x1f,0x09,0x89,0xd1,0x55,0x22,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 28317 溝 ; -+,0x20,0x13,0x10,0x03,0x40,0x2b,0x08,0x13,0x12,0x23,0x62,0x2f,0x22,0x22,0x22,0x22,0x88,0xfe,0x88,0xfe,0x88,0xff,0x20,0xfe,0x22,0xfe,0x22,0xff,0x02,0x02,0x0a,0x04 -+// 28318 溞 ; -+,0x23,0x11,0x10,0x00,0x48,0x29,0x0e,0x10,0x13,0x12,0x62,0x23,0x20,0x20,0x27,0x20,0xfe,0x44,0xa8,0x90,0x60,0x98,0x27,0x20,0xfc,0x24,0x24,0xfc,0x20,0x22,0xff,0x01 -+// 28319 溟 ; -+,0x20,0x13,0x12,0x01,0x41,0x21,0x09,0x09,0x08,0x10,0x17,0x70,0x10,0x10,0x11,0x16,0x00,0xff,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x20,0xff,0x00,0x88,0x84,0x02,0x02 -+// 28320 溠 ; -+,0x21,0x10,0x10,0x03,0x48,0x2b,0x08,0x17,0x10,0x11,0x61,0x22,0x22,0x24,0x2b,0x20,0x08,0x88,0x90,0xfe,0x20,0xfe,0x40,0xff,0x80,0x00,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28321 溡 ; -+,0x20,0x10,0x17,0x04,0x44,0x24,0x0f,0x0c,0x14,0x14,0x64,0x27,0x24,0x20,0x20,0x20,0x10,0x10,0x90,0xfe,0x90,0xff,0x84,0x84,0xff,0x84,0xa4,0x94,0x84,0x04,0x14,0x08 -+// 28322 溢 ; -+,0x10,0x09,0x08,0x00,0x43,0x28,0x08,0x0b,0x10,0x11,0x71,0x11,0x11,0x11,0x13,0x10,0x00,0x04,0x88,0x90,0xff,0x48,0x84,0x02,0x00,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 28323 溣 ; -+,0x20,0x10,0x11,0x01,0x42,0x2a,0x0e,0x0a,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x22,0x90,0x90,0x28,0x28,0x44,0xfb,0x00,0xfe,0xaa,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86 -+// 28324 溤 ; -+,0x20,0x11,0x11,0x01,0x45,0x25,0x29,0x09,0x11,0x11,0x70,0x12,0x14,0x10,0x10,0x10,0x00,0xff,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x01,0xa9,0xa5,0x01,0x05,0x02 -+// 28325 溥 ; -+,0x20,0x10,0x17,0x00,0x43,0x2a,0x0b,0x12,0x13,0x12,0x60,0x27,0x21,0x20,0x20,0x20,0x28,0x24,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x08,0xff,0x08,0x88,0x28,0x10 -+// 28326 溦 ; -+,0x21,0x11,0x15,0x05,0x47,0x28,0x0f,0x10,0x17,0x14,0x64,0x24,0x28,0x28,0x30,0x00,0x08,0x08,0x48,0x48,0xcf,0x12,0xd2,0x32,0x8a,0x8a,0x84,0x84,0xaa,0xd3,0xa2,0x00 -+// 28327 溧 ; -+,0x23,0x10,0x10,0x03,0x42,0x2a,0x0b,0x10,0x10,0x17,0x60,0x20,0x21,0x26,0x20,0x20,0xff,0x50,0x50,0xfe,0x52,0x52,0xfe,0x20,0x20,0xff,0x60,0xb0,0x28,0x27,0x22,0x20 -+// 28328 溨 ; -+,0x20,0x10,0x13,0x00,0x48,0x2f,0x08,0x13,0x10,0x11,0x62,0x22,0x24,0x28,0x20,0x20,0x90,0x94,0xd2,0x92,0x90,0xff,0x90,0xf0,0x92,0xca,0xac,0x88,0x95,0xa5,0x83,0x81 -+// 28329 溩 ; -+,0x10,0x08,0x09,0x01,0x45,0x25,0x09,0x09,0x11,0x11,0x70,0x12,0x14,0x10,0x10,0x10,0x20,0x40,0xfc,0x04,0x04,0xfc,0x00,0xff,0x00,0xff,0x01,0xa9,0x55,0x01,0x05,0x02 -+// 28330 溪 ; -+,0x20,0x17,0x12,0x01,0x40,0x28,0x09,0x10,0x13,0x10,0x67,0x20,0x20,0x21,0x26,0x20,0x3c,0xc0,0x44,0x28,0x40,0x90,0xe0,0x88,0xfc,0x24,0xff,0x20,0x50,0x88,0x07,0x02 -+// 28331 溫 ; -+,0x20,0x13,0x12,0x02,0x4a,0x2b,0x08,0x10,0x13,0x12,0x62,0x22,0x22,0x22,0x27,0x00,0x00,0xfc,0x44,0x64,0x94,0xfc,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xff,0x00 -+// 28332 溬 ; -+,0x21,0x10,0x10,0x03,0x40,0x25,0x04,0x08,0x0b,0x08,0x70,0x10,0x10,0x11,0x12,0x14,0x08,0x88,0x90,0xff,0x20,0xfe,0x20,0x20,0xff,0x54,0x58,0x9e,0x92,0x11,0x11,0x0f -+// 28333 溭 ; -+,0x21,0x11,0x11,0x01,0x45,0x24,0x28,0x09,0x0a,0x10,0x11,0x72,0x10,0x11,0x16,0x10,0xfe,0x22,0xfe,0x22,0xfe,0x00,0x84,0x02,0x81,0xfc,0x48,0x30,0x50,0x8c,0x07,0x02 -+// 28334 溮 ; -+,0x21,0x12,0x17,0x04,0x44,0x24,0x0f,0x0c,0x14,0x17,0x24,0x64,0x24,0x27,0x24,0x20,0x00,0x3f,0x88,0x88,0x88,0xbf,0xa9,0x29,0x29,0xa9,0xa9,0xa9,0xab,0x88,0x88,0x08 -+// 28335 溯 ; -+,0x24,0x12,0x10,0x07,0x40,0x28,0x2a,0x12,0x12,0x13,0x60,0x20,0x21,0x21,0x22,0x24,0x40,0x4f,0x89,0xe9,0x89,0x8f,0xa9,0xa9,0xaf,0xe9,0x89,0x89,0x11,0x11,0x25,0x42 -+// 28336 溰 ; -+,0x20,0x11,0x11,0x01,0x41,0x28,0x0b,0x10,0x11,0x11,0x61,0x20,0x20,0x20,0x23,0x00,0x10,0x12,0x12,0x12,0xfe,0x00,0xff,0x00,0xfe,0x02,0xfe,0x00,0x84,0x48,0xff,0x00 -+// 28337 溱 ; -+,0x10,0x08,0x0b,0x00,0x43,0x28,0x0f,0x11,0x12,0x14,0x6b,0x20,0x21,0x26,0x20,0x20,0x40,0x40,0xfe,0x40,0xfc,0x80,0xff,0x10,0xf8,0x47,0xfa,0xe0,0x50,0x4e,0x44,0x40 -+// 28338 溲 ; -+,0x20,0x13,0x12,0x02,0x4b,0x2a,0x2a,0x13,0x10,0x13,0x61,0x20,0x20,0x20,0x21,0x2e,0x20,0xae,0x22,0x22,0xae,0x22,0x22,0xfe,0x20,0xfc,0x08,0x90,0x60,0x58,0x87,0x02 -+// 28339 溳 ; -+,0x23,0x12,0x12,0x03,0x40,0x2b,0x0a,0x13,0x12,0x13,0x62,0x23,0x20,0x21,0x21,0x22,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x08,0x04,0x04 -+// 28340 溴 ; -+,0x20,0x13,0x12,0x03,0x42,0x2b,0x0a,0x13,0x10,0x10,0x67,0x20,0x20,0x21,0x22,0x2c,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x50,0x48,0xff,0xa0,0x90,0x08,0x07,0x02 -+// 28341 溵 ; -+,0x21,0x16,0x14,0x07,0x44,0x2f,0x0c,0x17,0x14,0x17,0x64,0x24,0x28,0x28,0x31,0x20,0xbc,0x24,0x24,0xa4,0xa4,0xa3,0xc0,0xbe,0x22,0x94,0x94,0x88,0x88,0x94,0xa3,0x42 -+// 28342 溶 ; -+,0x20,0x10,0x13,0x02,0x40,0x29,0x09,0x12,0x10,0x11,0x67,0x21,0x21,0x21,0x21,0x21,0x40,0x20,0xff,0x02,0x90,0x0c,0x44,0x60,0x90,0x0c,0xfb,0x08,0x08,0x08,0xf8,0x08 -+// 28343 溷 ; -+,0x20,0x13,0x12,0x02,0x46,0x26,0x0a,0x0a,0x0b,0x12,0x73,0x12,0x12,0x12,0x13,0x12,0x00,0xff,0x01,0xfd,0x21,0xc9,0x71,0xb1,0x59,0x97,0x11,0x51,0x21,0x01,0xff,0x01 -+// 28344 溸 ; -+,0x00,0x10,0x0b,0x08,0x01,0x44,0x27,0x08,0x08,0x09,0x10,0x71,0x10,0x12,0x12,0x14,0x20,0x20,0xff,0x20,0xfe,0x20,0xff,0x40,0x90,0xe0,0x44,0xfe,0x20,0x24,0xa2,0x42 -+// 28345 溹 ; -+,0x20,0x11,0x10,0x03,0x42,0x28,0x08,0x09,0x10,0x13,0x60,0x21,0x21,0x22,0x20,0x00,0x20,0xfc,0x20,0xff,0x02,0x40,0x88,0xf0,0x48,0xfc,0x20,0x24,0x22,0x22,0xa0,0x40 -+// 28346 溺 ; -+,0x10,0x0b,0x08,0x40,0x23,0x2a,0x0a,0x0b,0x10,0x12,0x11,0x61,0x26,0x20,0x21,0x20,0x00,0xde,0x42,0x42,0xde,0x10,0x10,0xde,0x42,0x52,0x4a,0x4a,0x72,0x42,0x4a,0x84 -+// 28347 溻 ; -+,0x10,0x09,0x09,0x41,0x25,0x25,0x08,0x0b,0x0a,0x11,0x70,0x11,0x16,0x10,0x11,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x52,0x4a,0x46,0x4a,0x52,0x42,0x4a,0x84 -+// 28348 溼 ; -+,0x20,0x13,0x10,0x01,0x03,0x48,0x29,0x0b,0x10,0x10,0x11,0x60,0x20,0x20,0x27,0x20,0x00,0xff,0x84,0x08,0xde,0x84,0x08,0xdf,0x41,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28349 溽 ; -+,0x00,0x23,0x12,0x12,0x02,0x43,0x2a,0x0a,0x12,0x12,0x12,0x63,0x24,0x24,0x28,0x20,0x00,0xfe,0x00,0xfc,0x00,0xff,0xa4,0x98,0xc8,0x86,0x08,0xff,0x48,0x28,0x08,0x18 -+// 28350 溾 ; -+,0x10,0x08,0x09,0x01,0x45,0x25,0x05,0x09,0x09,0x08,0x70,0x10,0x10,0x10,0x11,0x12,0x20,0x40,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x50,0x54,0x58,0x9e,0x93,0x11,0x0f -+// 28351 溿 ; -+,0x20,0x10,0x17,0x05,0x45,0x2d,0x0f,0x15,0x15,0x15,0x65,0x27,0x20,0x20,0x20,0x20,0x08,0x08,0xc9,0x6a,0x5c,0x48,0xff,0x48,0x48,0x7f,0x48,0xc8,0x08,0x08,0x08,0x08 -+// 28352 滀 ; -+,0x10,0x08,0x0b,0x00,0x48,0x29,0x08,0x11,0x10,0x13,0x62,0x23,0x22,0x23,0x22,0x00,0x40,0x20,0xff,0x40,0x88,0xf0,0x44,0xfe,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x02,0x00 -+// 28353 滁 ; -+,0x20,0x17,0x14,0x05,0x45,0x2e,0x0d,0x14,0x14,0x16,0x25,0x64,0x24,0x25,0x24,0x24,0x10,0x90,0xa8,0x24,0x43,0x3c,0x10,0x90,0xfe,0x90,0x54,0x52,0x91,0x11,0x50,0x20 -+// 28354 滂 ; -+,0x10,0x08,0x0b,0x00,0x40,0x23,0x0a,0x08,0x13,0x10,0x10,0x60,0x20,0x21,0x22,0x20,0x20,0x10,0xff,0x84,0x48,0xff,0x42,0x20,0xff,0x40,0x7c,0x84,0x84,0x04,0x14,0x08 -+// 28355 滃 ; -+,0x20,0x10,0x10,0x03,0x40,0x29,0x28,0x0b,0x10,0x12,0x71,0x11,0x12,0x10,0x11,0x10,0x40,0x50,0x88,0x27,0x48,0xf8,0x00,0xde,0x42,0x4a,0xc6,0x5a,0x62,0x42,0x4a,0x84 -+// 28356 滄 ; -+,0x20,0x10,0x10,0x00,0x41,0x2b,0x09,0x11,0x11,0x11,0x61,0x22,0x22,0x22,0x24,0x20,0x20,0x20,0x50,0xcc,0x23,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 28357 滅 ; -+,0x20,0x10,0x10,0x03,0x4a,0x2a,0x0b,0x12,0x13,0x12,0x64,0x25,0x25,0x2a,0x28,0x10,0x10,0x14,0x12,0xff,0x10,0x10,0xd2,0x92,0xb4,0xcc,0xc8,0x28,0x19,0x15,0x23,0x41 -+// 28358 滆 ; -+,0x10,0x0b,0x08,0x01,0x41,0x29,0x28,0x0b,0x12,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x8a,0x52,0x22,0xfa,0x22,0x22,0x2a,0x04 -+// 28359 滇 ; -+,0x00,0x10,0x0b,0x08,0x01,0x41,0x29,0x09,0x09,0x11,0x11,0x71,0x17,0x10,0x11,0x12,0x20,0x20,0xfe,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff,0x88,0x04,0x04 -+// 28360 滈 ; -+,0x20,0x10,0x13,0x40,0x24,0x24,0x08,0x08,0x0b,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x40,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x01,0xf9,0x89,0xf9,0x01,0x05,0x02 -+// 28361 滉 ; -+,0x13,0x0a,0x0b,0x02,0x43,0x28,0x2a,0x09,0x11,0x17,0x70,0x10,0x11,0x11,0x12,0x14,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x48,0x48,0x50,0xfe,0xa0,0xa0,0x20,0x21,0x21,0x1f -+// 28362 滊 ; -+,0x11,0x09,0x0a,0x01,0x40,0x2b,0x08,0x12,0x11,0x17,0x60,0x20,0x21,0x26,0x20,0x20,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x44,0x54,0x64,0xfc,0x64,0xd5,0x55,0x43,0x43,0x41 -+// 28363 滋 ; -+,0x21,0x10,0x10,0x07,0x40,0x28,0x29,0x11,0x12,0x17,0x60,0x21,0x22,0x27,0x20,0x00,0x08,0x88,0x90,0xff,0x84,0x84,0x08,0x4a,0x52,0xbc,0x84,0x08,0x92,0xdf,0x41,0x00 -+// 28364 滌 ; -+,0x21,0x11,0x12,0x02,0x44,0x2d,0x05,0x15,0x15,0x25,0x65,0x25,0x25,0x24,0x24,0x24,0x10,0x10,0x3e,0x24,0x58,0x18,0x24,0xd3,0x10,0x7e,0x10,0x54,0x52,0x92,0x50,0x20 -+// 28365 滍 ; -+,0x20,0x12,0x12,0x03,0x48,0x2f,0x08,0x10,0x13,0x12,0x62,0x23,0x20,0x20,0x27,0x20,0x20,0x22,0x22,0xfe,0x20,0xff,0x20,0x20,0xfe,0x22,0x22,0xfe,0x20,0x24,0xfe,0x02 -+// 28366 滎 ; -+,0x04,0x04,0x15,0x16,0x06,0x09,0x3f,0x20,0x00,0x1e,0x02,0x04,0x08,0x10,0x62,0x01,0x10,0x14,0x58,0x30,0x28,0x44,0xff,0x82,0x88,0x90,0xe0,0xa0,0x98,0x87,0x82,0x00 -+// 28367 滏 ; -+,0x20,0x10,0x11,0x02,0x40,0x28,0x09,0x16,0x11,0x10,0x61,0x20,0x21,0x20,0x27,0x00,0x90,0x88,0x0c,0x94,0x60,0x50,0x88,0x06,0xf8,0x20,0xf8,0x20,0x24,0xa8,0xff,0x00 -+// 28368 滐 ; -+,0x21,0x11,0x13,0x02,0x46,0x29,0x09,0x12,0x10,0x13,0x60,0x20,0x21,0x26,0x20,0x00,0x08,0x08,0xfe,0x68,0xa8,0xbf,0x08,0x28,0x20,0xfe,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 28369 滑 ; -+,0x10,0x09,0x09,0x41,0x21,0x23,0x0a,0x09,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x11,0x00,0xfc,0x04,0xe4,0x24,0xff,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 28370 滒 ; -+,0x20,0x13,0x10,0x01,0x41,0x29,0x28,0x0b,0x10,0x11,0x11,0x61,0x20,0x20,0x20,0x20,0x00,0xff,0x04,0xe4,0x24,0xe4,0x04,0xff,0x04,0xe4,0x24,0xe4,0x04,0x04,0x14,0x08 -+// 28371 滓 ; -+,0x20,0x10,0x13,0x02,0x48,0x29,0x08,0x10,0x13,0x10,0x70,0x11,0x10,0x10,0x10,0x10,0x40,0x20,0xff,0x42,0x20,0xfc,0x88,0x50,0xfe,0x20,0x20,0xfc,0x20,0x20,0x20,0x20 -+// 28372 滔 ; -+,0x20,0x13,0x10,0x01,0x48,0x28,0x08,0x11,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x1f,0xe0,0x21,0x11,0x92,0x00,0x60,0x8f,0x01,0x01,0xef,0x01,0x01,0x01,0xff,0x01 -+// 28373 滕 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x25,0x24,0x24,0x3d,0x26,0x24,0x24,0x25,0x24,0x54,0x08,0x92,0x54,0x58,0xff,0x20,0xff,0x48,0x94,0x13,0x94,0x58,0x78,0x96,0x12,0x50,0x20 -+// 28374 滖 ; -+,0x20,0x10,0x17,0x00,0x41,0x29,0x0b,0x09,0x11,0x10,0x60,0x21,0x23,0x2d,0x21,0x21,0x40,0x20,0xff,0x00,0xfc,0x04,0xff,0x04,0xfc,0x42,0xa4,0x18,0x08,0x44,0x87,0x02 -+// 28375 滗 ; -+,0x01,0x21,0x13,0x13,0x44,0x20,0x28,0x0b,0x10,0x13,0x60,0x27,0x20,0x20,0x20,0x20,0x10,0x10,0xdf,0x18,0xa4,0x40,0x3c,0xc0,0x40,0xfc,0x40,0xfe,0x40,0x41,0x41,0x3f -+// 28376 滘 ; -+,0x20,0x13,0x12,0x00,0x43,0x29,0x08,0x10,0x13,0x10,0x61,0x21,0x21,0x21,0x21,0x21,0x00,0xff,0x02,0x88,0x04,0xfe,0x20,0x20,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 28377 滙 ; -+,0x20,0x13,0x12,0x02,0x46,0x27,0x0a,0x0a,0x0a,0x12,0x12,0x72,0x12,0x12,0x13,0x12,0x00,0xff,0x50,0x48,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x90,0xfe,0x80,0x00,0xff,0x00 -+// 28378 滚 ; -+,0x20,0x10,0x17,0x00,0x41,0x22,0x28,0x09,0x08,0x10,0x11,0x73,0x1d,0x11,0x11,0x11,0x40,0x20,0xff,0x90,0x0c,0x44,0x90,0xf8,0x48,0xc4,0x28,0x10,0x08,0x44,0x87,0x02 -+// 28379 滛 ; -+,0x20,0x13,0x10,0x01,0x40,0x29,0x09,0x12,0x10,0x17,0x60,0x22,0x22,0x22,0x23,0x00,0x3e,0xc0,0x44,0x24,0xa8,0x00,0xfe,0x20,0x20,0xff,0x20,0x22,0x22,0x22,0xfe,0x00 -+// 28380 滜 ; -+,0x20,0x11,0x11,0x01,0x49,0x29,0x08,0x13,0x10,0x11,0x66,0x21,0x20,0x20,0x20,0x20,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xff,0x90,0x2c,0x23,0xfc,0x20,0x20,0x20,0x20 -+// 28381 滝 ; -+,0x20,0x10,0x11,0x04,0x44,0x2b,0x28,0x09,0x11,0x11,0x71,0x11,0x10,0x10,0x10,0x00,0x40,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x21,0x21,0x1f,0x00 -+// 28382 滞 ; -+,0x10,0x08,0x0b,0x00,0x24,0x17,0x06,0x08,0x09,0x09,0x31,0x11,0x11,0x11,0x10,0x10,0xa8,0xa8,0xff,0xa8,0x00,0xff,0x22,0x20,0xfc,0x24,0x24,0x24,0x34,0x28,0x20,0x20 -+// 28383 滟 ; -+,0x22,0x12,0x12,0x07,0x42,0x22,0x27,0x0a,0x0a,0x17,0x12,0x62,0x22,0x22,0x22,0x00,0x10,0x10,0x3e,0xa4,0x48,0x3e,0xaa,0x2a,0x2a,0xbe,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 28384 滠 ; -+,0x23,0x11,0x11,0x01,0x41,0x29,0x0b,0x10,0x17,0x14,0x62,0x21,0x22,0x24,0x28,0x00,0xfc,0x08,0xf8,0x08,0xf8,0x08,0xfe,0x08,0xbe,0xa2,0x94,0x14,0x88,0x34,0xc3,0x00 -+// 28385 满 ; -+,0x20,0x10,0x17,0x00,0x40,0x2b,0x28,0x0b,0x12,0x12,0x12,0x63,0x22,0x22,0x22,0x22,0x88,0x88,0xff,0x88,0x00,0xff,0x90,0xfe,0x92,0x92,0xda,0x26,0x42,0x02,0x0a,0x04 -+// 28386 滢 ; -+,0x20,0x10,0x13,0x00,0x40,0x2b,0x2a,0x09,0x10,0x10,0x71,0x10,0x10,0x10,0x13,0x00,0x88,0x88,0xff,0x88,0x00,0xff,0x02,0xfc,0x20,0x20,0xfc,0x20,0x28,0x24,0xfe,0x00 -+// 28387 滣 ; -+,0x20,0x13,0x12,0x02,0x42,0x2b,0x2a,0x12,0x12,0x12,0x64,0x24,0x28,0x28,0x30,0x20,0x00,0xfe,0x00,0xfc,0x00,0xff,0xa4,0x98,0xc8,0x87,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 28388 滤 ; -+,0x10,0x08,0x08,0x03,0x42,0x2a,0x0b,0x12,0x12,0x12,0x62,0x24,0x26,0x2a,0x30,0x00,0x40,0x7c,0x40,0xff,0x42,0x7c,0xc0,0x44,0x7c,0x00,0x20,0x92,0x85,0x85,0x7c,0x00 -+// 28389 滥 ; -+,0x10,0x08,0x0a,0x02,0x42,0x2a,0x0a,0x12,0x10,0x13,0x62,0x22,0x22,0x22,0x2f,0x00,0x90,0x90,0x90,0xbf,0xa0,0xc8,0x84,0x84,0x00,0xfc,0x94,0x94,0x94,0x94,0xff,0x00 -+// 28390 滦 ; -+,0x20,0x10,0x17,0x00,0x4a,0x2a,0x0c,0x10,0x10,0x17,0x60,0x20,0x21,0x22,0x2c,0x20,0x40,0x20,0xff,0x90,0x94,0x92,0x92,0x90,0x40,0xff,0x60,0xd0,0x4c,0x47,0x42,0x40 -+// 28391 滧 ; -+,0x22,0x11,0x11,0x07,0x40,0x2a,0x2c,0x14,0x12,0x11,0x61,0x22,0x24,0x28,0x20,0x00,0x08,0x08,0x08,0xcf,0x92,0x52,0x32,0x8a,0x8a,0x04,0x04,0x8c,0x92,0x23,0xc2,0x00 -+// 28392 滨 ; -+,0x20,0x10,0x13,0x42,0x20,0x00,0x08,0x08,0x10,0x10,0x63,0x20,0x20,0x20,0x21,0x26,0x20,0x10,0xff,0x02,0x1c,0xe0,0x80,0xfe,0x88,0x88,0xff,0x00,0x08,0x84,0x02,0x02 -+// 28393 滩 ; -+,0x20,0x10,0x17,0x00,0x49,0x25,0x2b,0x0a,0x13,0x15,0x65,0x28,0x30,0x20,0x20,0x20,0x28,0x24,0xa0,0xff,0x48,0xc8,0x7e,0x48,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40 -+// 28394 滪 ; -+,0x20,0x17,0x10,0x01,0x46,0x2a,0x0f,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x2a,0x24,0x00,0xbe,0x90,0x10,0x20,0x7e,0xd2,0x52,0x52,0x52,0x52,0x52,0x10,0x28,0x26,0x42 -+// 28395 滫 ; -+,0x21,0x11,0x12,0x02,0x46,0x22,0x0a,0x0a,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x22,0x10,0x10,0x3e,0x22,0xd4,0x9c,0xe3,0xbe,0xa2,0xbe,0xa2,0xbe,0x22,0x22,0x2a,0x24 -+// 28396 滬 ; -+,0x20,0x13,0x12,0x03,0x4a,0x2a,0x0a,0x12,0x12,0x12,0x62,0x24,0x24,0x24,0x28,0x00,0x20,0xfe,0x02,0xfe,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x92,0xfe,0x80,0x81,0x7f,0x00 -+// 28397 滭 ; -+,0x23,0x12,0x13,0x02,0x4b,0x28,0x09,0x17,0x11,0x10,0x63,0x20,0x27,0x20,0x20,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0x28,0xff,0x28,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 28398 滮 ; -+,0x20,0x10,0x10,0x07,0x45,0x2d,0x0f,0x15,0x14,0x15,0x65,0x25,0x29,0x2a,0x34,0x20,0x80,0xf8,0x80,0xf2,0x04,0xc8,0x22,0xe4,0x19,0xc2,0x44,0x48,0x71,0x41,0x7f,0x00 -+// 28399 滯 ; -+,0x22,0x12,0x17,0x02,0x4a,0x2c,0x28,0x17,0x14,0x13,0x62,0x22,0x22,0x22,0x20,0x20,0x94,0x94,0xff,0x94,0x95,0xf7,0x00,0xff,0x42,0xfc,0x44,0x44,0x54,0x48,0x40,0x40 -+// 28400 滰 ; -+,0x00,0x20,0x13,0x11,0x00,0x47,0x20,0x2b,0x0a,0x13,0x12,0x13,0x60,0x20,0x21,0x26,0x40,0x20,0xfe,0x08,0x90,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x91,0x11,0x0f -+// 28401 滱 ; -+,0x20,0x10,0x17,0x04,0x40,0x2b,0x28,0x17,0x12,0x12,0x62,0x22,0x24,0x24,0x28,0x00,0x40,0x20,0xff,0x02,0x10,0xde,0x10,0xd0,0xbe,0x84,0xa8,0x90,0xa9,0xc5,0x7f,0x00 -+// 28402 滲 ; -+,0x10,0x08,0x08,0x01,0x4a,0x2f,0x08,0x10,0x13,0x1c,0x63,0x20,0x23,0x20,0x27,0x00,0x20,0x48,0xf8,0x04,0x8a,0xdf,0x60,0x98,0x27,0xc2,0x10,0x64,0x88,0x30,0xc0,0x00 -+// 28403 滳 ; -+,0x20,0x10,0x13,0x00,0x40,0x2b,0x0a,0x12,0x12,0x13,0x62,0x22,0x22,0x22,0x22,0x22,0x40,0x20,0xff,0x88,0x50,0xfe,0x52,0x4a,0x86,0x7a,0x4a,0x4a,0x7a,0x02,0x0a,0x04 -+// 28404 滴 ; -+,0x20,0x13,0x10,0x00,0x43,0x2a,0x2a,0x0b,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x40,0xfe,0x88,0x50,0xfe,0x22,0x22,0xfe,0x22,0xfa,0x8a,0xfa,0x02,0x02,0x0a,0x04 -+// 28405 滵 ; -+,0x20,0x10,0x13,0x02,0x00,0x48,0x2a,0x0a,0x10,0x11,0x70,0x11,0x11,0x11,0x11,0x00,0x40,0x20,0xff,0x42,0x20,0x8a,0x91,0xa1,0x7c,0x80,0x20,0x22,0x22,0x22,0xfe,0x00 -+// 28406 滶 ; -+,0x21,0x11,0x17,0x01,0x47,0x29,0x0f,0x12,0x12,0x13,0x62,0x24,0x24,0x2a,0x31,0x00,0x08,0x08,0xc8,0x10,0x9f,0x32,0xd2,0x14,0x14,0x94,0x88,0x88,0x94,0xa7,0x42,0x00 -+// 28407 滷 ; -+,0x10,0x08,0x08,0x00,0x40,0x23,0x0a,0x0b,0x12,0x13,0x12,0x62,0x23,0x22,0x23,0x22,0x20,0x20,0x3e,0x20,0x20,0xfe,0x42,0x0a,0x92,0x6a,0x62,0x92,0x2a,0x02,0xfe,0x02 -+// 28408 滸 ; -+,0x22,0x11,0x10,0x07,0x40,0x2f,0x28,0x17,0x10,0x17,0x24,0x64,0x27,0x24,0x24,0x20,0x10,0x10,0x10,0xbf,0x28,0x88,0x08,0xbf,0x08,0x88,0x88,0x88,0x88,0x88,0x08,0x08 -+// 28409 滹 ; -+,0x20,0x10,0x10,0x03,0x42,0x2b,0x2a,0x0a,0x12,0x12,0x12,0x64,0x25,0x24,0x28,0x20,0x20,0x3c,0x20,0xff,0x42,0xfc,0x40,0x7c,0x00,0xfe,0x54,0x38,0xff,0x10,0x50,0x20 -+// 28410 滺 ; -+,0x21,0x11,0x12,0x02,0x46,0x2a,0x2a,0x12,0x12,0x12,0x61,0x25,0x25,0x29,0x20,0x00,0x10,0x10,0x3f,0xa4,0xd4,0x94,0x88,0x98,0x67,0x00,0x40,0x22,0x09,0x09,0xf8,0x00 -+// 28411 滻 ; -+,0x20,0x10,0x17,0x01,0x40,0x27,0x2c,0x0d,0x15,0x16,0x14,0x65,0x28,0x28,0x37,0x20,0x40,0x20,0xfe,0x08,0x90,0xff,0x20,0x20,0xfe,0x20,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 28412 滼 ; -+,0x20,0x10,0x10,0x03,0x41,0x29,0x2a,0x08,0x10,0x10,0x70,0x10,0x10,0x11,0x11,0x12,0x84,0x84,0x84,0xef,0xcc,0xb6,0xa5,0x84,0x00,0xf8,0x88,0xc8,0xa8,0x09,0x09,0x07 -+// 28413 滽 ; -+,0x20,0x13,0x12,0x02,0x42,0x2b,0x0a,0x0a,0x12,0x13,0x13,0x63,0x23,0x25,0x25,0x29,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x2c -+// 28414 滾 ; -+,0x20,0x10,0x13,0x00,0x41,0x23,0x29,0x09,0x11,0x10,0x10,0x61,0x22,0x24,0x20,0x20,0x40,0x20,0xff,0x88,0x04,0xfa,0x08,0x08,0xf8,0xa2,0xa4,0x98,0x88,0xa4,0xc7,0x82 -+// 28415 滿 ; -+,0x20,0x10,0x13,0x00,0x40,0x28,0x0b,0x12,0x13,0x12,0x62,0x23,0x22,0x22,0x22,0x22,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0x32,0xaa,0xaa,0x76,0x22,0x22,0x2a,0x04 -+// 28416 漀 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x1f,0x15,0x1f,0x10,0x20,0x1f,0x02,0x04,0x18,0x62,0x01,0x3c,0xa4,0x24,0x27,0x40,0x3e,0x14,0x08,0xb7,0x80,0xcc,0xb0,0x90,0x88,0x86,0x00 -+// 28417 漁 ; -+,0x10,0x08,0x08,0x01,0x43,0x29,0x09,0x09,0x11,0x11,0x71,0x10,0x12,0x12,0x14,0x00,0x40,0x78,0x88,0x10,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x00,0x92,0x49,0x49,0x00 -+// 28418 漂 ; -+,0x27,0x10,0x10,0x43,0x2a,0x2b,0x08,0x13,0x10,0x17,0x60,0x22,0x22,0x24,0x20,0x20,0xff,0x90,0x90,0xfe,0x92,0xfe,0x00,0xfe,0x00,0xff,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 28419 漃 ; -+,0x20,0x10,0x17,0x04,0x41,0x29,0x09,0x11,0x17,0x11,0x65,0x25,0x29,0x21,0x25,0x22,0x40,0x20,0xff,0x02,0x00,0x3e,0xd2,0x12,0xd2,0x14,0x8c,0x48,0x14,0x24,0x43,0x00 -+// 28420 漄 ; -+,0x20,0x11,0x11,0x01,0x40,0x2b,0x0a,0x12,0x12,0x13,0x62,0x22,0x22,0x24,0x25,0x28,0x20,0x22,0x22,0xfe,0x00,0xff,0x10,0xfc,0x10,0xff,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 28421 漅 ; -+,0x20,0x10,0x11,0x00,0x45,0x25,0x09,0x09,0x11,0x10,0x73,0x10,0x10,0x11,0x16,0x10,0x92,0x92,0x24,0x92,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x70,0xa8,0x27,0x22,0x20 -+// 28422 漆 ; -+,0x20,0x13,0x10,0x00,0x4b,0x28,0x08,0x10,0x13,0x11,0x60,0x20,0x21,0x26,0x20,0x20,0x20,0xfe,0x70,0xa8,0x26,0x20,0x50,0x88,0x26,0x28,0xb0,0x70,0xac,0x22,0xa0,0x40 -+// 28423 漇 ; -+,0x21,0x11,0x12,0x04,0x41,0x29,0x0a,0x16,0x12,0x12,0x62,0x22,0x22,0x22,0x23,0x22,0x10,0x10,0x10,0x5f,0x50,0x50,0xff,0x00,0x10,0x5f,0x50,0x50,0xb0,0x90,0x0f,0x00 -+// 28424 漈 ; -+,0x21,0x11,0x12,0x03,0x4c,0x2a,0x09,0x16,0x10,0x73,0x10,0x12,0x12,0x14,0x10,0x00,0x00,0xde,0x62,0x54,0x88,0x84,0x7b,0x00,0x00,0xfe,0x20,0x24,0x22,0x22,0xa0,0x40 -+// 28425 漉 ; -+,0x20,0x10,0x13,0x02,0x42,0x2b,0x0a,0x13,0x12,0x12,0x62,0x22,0x24,0x24,0x28,0x00,0x40,0x20,0xfe,0x50,0x50,0xfe,0x52,0xfe,0x00,0x90,0x92,0xdc,0x90,0xd1,0x9f,0x00 -+// 28426 漊 ; -+,0x20,0x13,0x12,0x07,0x42,0x23,0x08,0x0b,0x12,0x13,0x10,0x67,0x20,0x21,0x20,0x27,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x40,0xff,0x88,0x90,0x70,0xce -+// 28427 漋 ; -+,0x20,0x17,0x14,0x04,0x45,0x26,0x0d,0x0c,0x16,0x15,0x64,0x24,0x24,0x24,0x24,0x00,0x20,0xbe,0xa2,0xe4,0x18,0x14,0x63,0xbe,0xc8,0x7e,0x88,0x3e,0x08,0x08,0xff,0x00 -+// 28428 漌 ; -+,0x20,0x10,0x13,0x00,0x44,0x24,0x2b,0x0a,0x0b,0x10,0x73,0x10,0x13,0x10,0x17,0x10,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 28429 漍 ; -+,0x00,0x23,0x12,0x12,0x03,0x4a,0x2a,0x0a,0x12,0x12,0x12,0x63,0x22,0x22,0x23,0x22,0x00,0xff,0x15,0x13,0xff,0x11,0xf1,0xa9,0xeb,0x05,0x4d,0x93,0x01,0x01,0xff,0x01 -+// 28430 漎 ; -+,0x21,0x11,0x12,0x04,0x41,0x29,0x0a,0x0e,0x12,0x12,0x62,0x22,0x22,0x22,0x23,0x22,0x24,0x24,0x24,0x36,0x49,0x91,0x08,0x08,0x48,0x4f,0x48,0x48,0x68,0x98,0x0f,0x00 -+// 28431 漏 ; -+,0x10,0x0b,0x0a,0x03,0x42,0x2a,0x0b,0x0a,0x13,0x13,0x13,0x63,0x25,0x25,0x29,0x21,0x00,0xfe,0x02,0xfe,0x00,0x00,0xff,0x10,0xff,0x11,0x55,0x11,0x55,0x11,0x15,0x02 -+// 28432 漐 ; -+,0x08,0x3f,0x08,0x7f,0x12,0x3f,0x08,0x3f,0x08,0x00,0x1e,0x04,0x08,0x30,0x02,0x01,0x10,0x10,0x7c,0x94,0x14,0x64,0x35,0x43,0x81,0x88,0xd0,0xa0,0x90,0x88,0x86,0x00 -+// 28433 漑 ; -+,0x21,0x12,0x17,0x04,0x47,0x24,0x07,0x10,0x14,0x17,0x64,0x24,0x24,0x24,0x23,0x00,0x00,0x3f,0xc4,0x44,0xd4,0x54,0xdf,0x0c,0x0c,0x8c,0x14,0x94,0x95,0xa5,0xc3,0x00 -+// 28434 漒 ; -+,0x20,0x13,0x10,0x00,0x4b,0x2a,0x0a,0x13,0x10,0x10,0x60,0x20,0x20,0x22,0x21,0x00,0x00,0xbe,0xa2,0xa2,0xbe,0x08,0x3e,0xaa,0xaa,0xbe,0x88,0x88,0x8a,0xbf,0x01,0x00 -+// 28435 漓 ; -+,0x10,0x08,0x0b,0x00,0x41,0x29,0x09,0x11,0x10,0x13,0x62,0x22,0x22,0x22,0x22,0x22,0x40,0x20,0xff,0x00,0x54,0x34,0x4c,0xfc,0x20,0xfe,0x42,0x8a,0xfa,0x02,0x0a,0x04 -+// 28436 演 ; -+,0x20,0x10,0x13,0x02,0x41,0x28,0x09,0x11,0x11,0x11,0x61,0x21,0x20,0x20,0x20,0x21,0x40,0x20,0xff,0x02,0xfc,0x20,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0x88,0x84,0x04 -+// 28437 漕 ; -+,0x20,0x17,0x10,0x03,0x42,0x2b,0x0a,0x13,0x10,0x11,0x61,0x21,0x21,0x21,0x21,0x00,0x50,0xff,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00 -+// 28438 漖 ; -+,0x21,0x11,0x17,0x01,0x41,0x2f,0x09,0x12,0x17,0x18,0x61,0x2f,0x21,0x21,0x25,0x22,0x08,0x08,0xc8,0x2f,0x52,0xd2,0x12,0x34,0xd4,0x88,0xc8,0x14,0x14,0x22,0x43,0x00 -+// 28439 漗 ; -+,0x20,0x10,0x11,0x01,0x41,0x25,0x05,0x09,0x09,0x08,0x30,0x12,0x12,0x16,0x10,0x00,0x20,0x40,0xfe,0x22,0x3a,0x6a,0x12,0x6a,0xfe,0x00,0xa0,0x92,0x85,0x85,0x7c,0x00 -+// 28440 漘 ; -+,0x00,0x23,0x12,0x12,0x02,0x4b,0x2a,0x0a,0x12,0x13,0x13,0x65,0x25,0x25,0x29,0x21,0x00,0xfe,0x00,0xfc,0x00,0xff,0xa4,0xd8,0x87,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x0c -+// 28441 漙 ; -+,0x20,0x17,0x10,0x43,0x2a,0x0b,0x0a,0x13,0x10,0x17,0x60,0x27,0x21,0x20,0x20,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x22,0xfe,0x08,0xff,0x08,0x88,0x28,0x10 -+// 28442 漚 ; -+,0x20,0x13,0x12,0x42,0x2a,0x0a,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x23,0x00,0x00,0xff,0x00,0x7c,0x44,0x7c,0x00,0x00,0xee,0xaa,0xaa,0xee,0x00,0x00,0xff,0x00 -+// 28443 漛 ; -+,0x20,0x11,0x10,0x05,0x44,0x29,0x08,0x08,0x13,0x10,0x70,0x10,0x13,0x10,0x10,0x10,0x20,0x24,0xa8,0xfe,0x20,0xff,0x50,0x8c,0x23,0x20,0xa4,0x78,0xa6,0x22,0xa0,0x40 -+// 28444 漜 ; -+,0x21,0x11,0x17,0x01,0x43,0x2d,0x09,0x09,0x11,0x10,0x63,0x20,0x20,0x20,0x27,0x20,0x08,0x08,0xbe,0x08,0x9c,0x6b,0x4a,0x08,0x28,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 28445 漝 ; -+,0x20,0x13,0x11,0x00,0x40,0x29,0x08,0x10,0x10,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x00,0xef,0x29,0xa7,0x65,0xa9,0x21,0x40,0x80,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 28446 漞 ; -+,0x20,0x13,0x11,0x00,0x41,0x29,0x09,0x09,0x11,0x11,0x61,0x20,0x20,0x20,0x20,0x21,0x1e,0xe0,0x22,0x94,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x50,0x50,0x91,0x91,0x0f -+// 28447 漟 ; -+,0x10,0x09,0x08,0x00,0x43,0x2a,0x08,0x11,0x11,0x11,0x60,0x21,0x20,0x20,0x27,0x00,0x20,0x24,0xa4,0xa8,0xff,0x02,0x00,0xfc,0x04,0xfc,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 28448 漠 ; -+,0x10,0x08,0x0b,0x40,0x21,0x29,0x09,0x09,0x11,0x10,0x73,0x10,0x10,0x10,0x10,0x13,0x90,0x90,0xff,0x90,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 28449 漡 ; -+,0x00,0x10,0x09,0x0a,0x00,0x40,0x24,0x08,0x0b,0x10,0x10,0x73,0x10,0x11,0x10,0x11,0x80,0xfe,0x00,0xfc,0xa4,0x94,0xfc,0x00,0xff,0x80,0xfe,0x2a,0x4a,0x92,0x6a,0x84 -+// 28450 漢 ; -+,0x00,0x10,0x0b,0x08,0x00,0x48,0x2b,0x0a,0x13,0x10,0x73,0x10,0x17,0x10,0x11,0x16,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x50,0x88,0x07 -+// 28451 漣 ; -+,0x20,0x14,0x12,0x0a,0x48,0x28,0x16,0x12,0x12,0x22,0x63,0x22,0x22,0x25,0x28,0x00,0x10,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x90,0x7f,0x00 -+// 28452 漤 ; -+,0x10,0x08,0x0b,0x00,0x41,0x2a,0x08,0x08,0x10,0x17,0x70,0x11,0x10,0x10,0x11,0x16,0x84,0x84,0xdf,0xcc,0xae,0x95,0xa4,0x84,0x40,0xff,0x88,0x90,0x60,0x50,0x8c,0x04 -+// 28453 漥 ; -+,0x20,0x10,0x13,0x02,0x48,0x29,0x08,0x11,0x10,0x13,0x60,0x21,0x20,0x20,0x27,0x20,0x40,0x20,0xff,0x02,0x88,0x24,0x20,0xfc,0x20,0xfe,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 28454 漦 ; -+,0x04,0x1f,0x04,0x3f,0x0e,0x15,0x24,0x1f,0x10,0x17,0x11,0x12,0x22,0x24,0x49,0x00,0x20,0x3e,0x22,0x54,0x08,0x14,0x62,0xfe,0x48,0x50,0x60,0x50,0x48,0x4e,0x44,0x80 -+// 28455 漧 ; -+,0x21,0x11,0x17,0x01,0x47,0x2c,0x0f,0x14,0x17,0x11,0x61,0x27,0x21,0x21,0x21,0x21,0x08,0x08,0xcf,0x10,0xc0,0x40,0xde,0x44,0xc8,0x08,0x10,0xd1,0x21,0x21,0x1f,0x00 -+// 28456 漨 ; -+,0x20,0x14,0x12,0x02,0x40,0x20,0x0e,0x12,0x12,0x12,0x22,0x62,0x22,0x25,0x28,0x00,0x40,0x7c,0x44,0xa8,0x30,0xcf,0x10,0x7c,0x10,0x7c,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 28457 漩 ; -+,0x22,0x19,0x01,0x0d,0x4a,0x32,0x33,0x12,0x12,0x14,0x64,0x24,0x29,0x29,0x33,0x00,0x28,0x10,0x10,0xbf,0x40,0x77,0x8a,0x84,0xc8,0xae,0xa8,0xe8,0x28,0x58,0x87,0x00 -+// 28458 漪 ; -+,0x20,0x10,0x14,0x03,0x43,0x25,0x01,0x11,0x13,0x15,0x11,0x61,0x21,0x21,0x25,0x22,0x08,0x88,0xbe,0x08,0x14,0x22,0x7f,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 28459 漫 ; -+,0x11,0x09,0x09,0x01,0x41,0x28,0x0b,0x12,0x13,0x10,0x61,0x20,0x20,0x20,0x20,0x23,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x92,0xfe,0x00,0xfc,0x88,0x50,0x30,0xce,0x04 -+// 28460 漬 ; -+,0x10,0x09,0x08,0x01,0x40,0x2b,0x08,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x10,0x13,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06 -+// 28461 漭 ; -+,0x20,0x13,0x10,0x00,0x48,0x2b,0x08,0x11,0x16,0x20,0x67,0x20,0x21,0x21,0x22,0x24,0x88,0xff,0x88,0x50,0x48,0xff,0x90,0x0c,0x8b,0x88,0xff,0x88,0x08,0x08,0x08,0x08 -+// 28462 漮 ; -+,0x10,0x08,0x0b,0x02,0x42,0x2a,0x0b,0x12,0x12,0x12,0x62,0x22,0x24,0x25,0x28,0x20,0x20,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xf6,0x58,0x94,0x13,0x50,0x20 -+// 28463 漯 ; -+,0x10,0x0b,0x0a,0x43,0x22,0x0b,0x08,0x10,0x11,0x10,0x63,0x20,0x21,0x22,0x24,0x20,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x40,0x90,0xe0,0x84,0xfe,0x22,0x24,0x22,0xa2,0x40 -+// 28464 漰 ; -+,0x20,0x11,0x01,0x01,0x48,0x2b,0x0a,0x13,0x12,0x13,0x62,0x22,0x22,0x24,0x25,0x28,0x10,0x11,0x11,0xff,0x00,0xcf,0x49,0xcf,0x49,0xcf,0x49,0x49,0x51,0x51,0x65,0x82 -+// 28465 漱 ; -+,0x21,0x11,0x17,0x01,0x47,0x2d,0x0d,0x15,0x17,0x11,0x63,0x25,0x29,0x21,0x21,0x21,0x10,0x10,0xd0,0x1f,0xd2,0x6a,0x48,0x48,0xc8,0x08,0x88,0x54,0x14,0x22,0x23,0x42 -+// 28466 漲 ; -+,0x20,0x17,0x10,0x00,0x40,0x27,0x04,0x14,0x17,0x21,0x61,0x21,0x21,0x21,0x25,0x22,0x00,0xbe,0xa0,0xbe,0xa0,0xbe,0x20,0x20,0x7f,0x30,0x2a,0x24,0x24,0x23,0x32,0x20 -+// 28467 漳 ; -+,0x10,0x0b,0x09,0x00,0x47,0x28,0x0b,0x0a,0x13,0x12,0x73,0x10,0x17,0x10,0x10,0x10,0x40,0xfe,0x08,0x90,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 28468 漴 ; -+,0x20,0x11,0x11,0x01,0x48,0x2b,0x0a,0x11,0x10,0x13,0x60,0x21,0x21,0x22,0x24,0x20,0x20,0x22,0x22,0xfe,0x20,0xff,0x02,0xfc,0x00,0xff,0x20,0x28,0x24,0x22,0xa2,0x40 -+// 28469 漵 ; -+,0x20,0x11,0x11,0x02,0x44,0x23,0x11,0x11,0x17,0x21,0x65,0x25,0x29,0x21,0x25,0x22,0x08,0x08,0x88,0x48,0x1f,0xd2,0x32,0x12,0xd4,0x0c,0x88,0x4c,0x54,0x23,0x42,0x00 -+// 28470 漶 ; -+,0x20,0x10,0x13,0x02,0x43,0x28,0x0b,0x12,0x13,0x10,0x61,0x21,0x25,0x25,0x28,0x00,0x20,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x22,0xfe,0x20,0x20,0x42,0x21,0x05,0xfc,0x00 -+// 28471 漷 ; -+,0x22,0x11,0x17,0x00,0x43,0x2a,0x0b,0x10,0x17,0x10,0x61,0x21,0x2f,0x21,0x25,0x22,0x00,0x00,0xde,0x12,0xd2,0x54,0xd4,0x12,0xd1,0x91,0x19,0xd6,0x10,0x10,0x10,0x10 -+// 28472 漸 ; -+,0x21,0x11,0x17,0x01,0x47,0x2d,0x0f,0x15,0x17,0x11,0x61,0x2f,0x21,0x21,0x21,0x21,0x00,0x03,0xdc,0x10,0xd0,0x50,0xdf,0x52,0xd2,0x12,0x12,0xd2,0x22,0x22,0x42,0x02 -+// 28473 漹 ; -+,0x20,0x13,0x10,0x01,0x41,0x2b,0x09,0x11,0x11,0x11,0x60,0x22,0x24,0x20,0x20,0x20,0x00,0xfe,0x20,0x3c,0x20,0xff,0x00,0xfe,0x00,0xfe,0x02,0xaa,0x56,0x02,0x0a,0x04 -+// 28474 漺 ; -+,0x20,0x13,0x10,0x01,0x40,0x29,0x08,0x10,0x12,0x11,0x62,0x20,0x20,0x20,0x21,0x26,0x20,0xff,0x20,0x6a,0xa4,0x6a,0x30,0x20,0xaa,0x24,0xaa,0x60,0x50,0x88,0x0e,0x04 -+// 28475 漻 ; -+,0x23,0x10,0x12,0x01,0x41,0x22,0x08,0x08,0x13,0x10,0x63,0x20,0x23,0x20,0x27,0x00,0xde,0x42,0x52,0x4e,0x4a,0x12,0x60,0x90,0x0c,0x63,0x90,0x64,0x88,0x30,0xc0,0x00 -+// 28476 漼 ; -+,0x20,0x12,0x12,0x03,0x40,0x29,0x09,0x0b,0x15,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0x22,0x22,0xfe,0xa0,0x10,0xfe,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 28477 漽 ; -+,0x21,0x11,0x11,0x01,0x45,0x25,0x09,0x09,0x09,0x12,0x72,0x13,0x15,0x14,0x18,0x10,0xfe,0x02,0x02,0xfe,0x10,0x54,0x38,0x56,0x00,0x90,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 28478 漾 ; -+,0x21,0x10,0x17,0x00,0x43,0x28,0x0b,0x10,0x11,0x10,0x67,0x20,0x21,0x22,0x2c,0x20,0x08,0x90,0xff,0x20,0xfc,0x20,0xff,0x40,0xe4,0x28,0xb0,0xa8,0x24,0x27,0xa2,0x40 -+// 28479 漿 ; -+,0x12,0x12,0x12,0x1e,0x02,0x1e,0x12,0x22,0x00,0x1e,0x02,0x04,0x08,0x10,0x62,0x01,0x10,0x1e,0x24,0x58,0x28,0xff,0x28,0x08,0x98,0x84,0xd8,0xa0,0x98,0x87,0x82,0x00 -+// 28480 潀 ; -+,0x10,0x09,0x09,0x01,0x41,0x24,0x25,0x08,0x09,0x09,0x72,0x12,0x14,0x10,0x10,0x10,0x00,0xfe,0x52,0x52,0xfe,0x00,0xfe,0x20,0x24,0x24,0xaa,0x69,0x31,0x20,0x20,0x20 -+// 28481 潁 ; -+,0x10,0x10,0x1f,0x10,0x11,0x1f,0x04,0x05,0x76,0x14,0x16,0x25,0x24,0x44,0x14,0x08,0x00,0x7f,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x24,0x42,0x82 -+// 28482 潂 ; -+,0x10,0x09,0x09,0x01,0x45,0x24,0x08,0x09,0x08,0x12,0x71,0x11,0x10,0x10,0x17,0x10,0x20,0x22,0x22,0x22,0xfe,0x84,0x48,0xff,0x48,0x4a,0x4a,0x4c,0x48,0x48,0xff,0x00 -+// 28483 潃 ; -+,0x21,0x11,0x12,0x04,0x40,0x29,0x09,0x0a,0x16,0x12,0x72,0x12,0x12,0x12,0x12,0x12,0x10,0x1e,0x22,0x54,0x08,0x14,0x63,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24 -+// 28484 潄 ; -+,0x21,0x11,0x17,0x01,0x49,0x2f,0x0d,0x15,0x17,0x11,0x63,0x25,0x25,0x29,0x21,0x00,0x08,0x08,0xe8,0x08,0x1f,0xd2,0x72,0x52,0xd4,0x0c,0x88,0x4c,0x14,0x23,0x42,0x00 -+// 28485 潅 ; -+,0x20,0x10,0x11,0x01,0x45,0x24,0x08,0x09,0x0b,0x15,0x71,0x11,0x11,0x11,0x11,0x11,0x80,0x80,0xff,0x20,0xfe,0x60,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 28486 潆 ; -+,0x20,0x10,0x13,0x00,0x43,0x2a,0x08,0x11,0x10,0x10,0x61,0x20,0x22,0x22,0x24,0x20,0x88,0x88,0xff,0x88,0xff,0x42,0x90,0xe0,0x40,0x88,0xfc,0x20,0x24,0x22,0xa2,0x40 -+// 28487 潇 ; -+,0x20,0x13,0x10,0x00,0x41,0x24,0x07,0x08,0x09,0x08,0x11,0x71,0x11,0x12,0x12,0x14,0x88,0xff,0x88,0x20,0xfc,0x24,0xff,0x24,0xfc,0x22,0x72,0xaa,0x2a,0x22,0x22,0x22 -+// 28488 潈 ; -+,0x20,0x13,0x12,0x02,0x43,0x28,0x08,0x0b,0x10,0x11,0x76,0x10,0x13,0x10,0x10,0x10,0x00,0xfe,0x92,0x92,0xfe,0x40,0xa2,0x34,0x58,0x90,0x38,0xd7,0x12,0x10,0x50,0x20 -+// 28489 潉 ; -+,0x20,0x12,0x12,0x03,0x40,0x23,0x0a,0x0b,0x0a,0x13,0x12,0x73,0x12,0x12,0x13,0x12,0x20,0x22,0x22,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x10,0xde,0x10,0x91,0x11,0x0f -+// 28490 潊 ; -+,0x20,0x10,0x01,0x01,0x4a,0x2d,0x08,0x10,0x13,0x10,0x62,0x22,0x24,0x28,0x22,0x21,0x84,0x84,0x44,0x27,0x14,0xe4,0x9f,0x91,0xe9,0x8a,0xca,0xa4,0xa4,0x8a,0x93,0x22 -+// 28491 潋 ; -+,0x21,0x11,0x11,0x02,0x4a,0x2f,0x28,0x12,0x11,0x15,0x62,0x20,0x2f,0x20,0x21,0x20,0x08,0x08,0x08,0x90,0x5f,0xb2,0x12,0x52,0x54,0x54,0x88,0xec,0x14,0x62,0x83,0x02 -+// 28492 潌 ; -+,0x10,0x08,0x0b,0x42,0x20,0x08,0x09,0x10,0x10,0x11,0x60,0x21,0x20,0x20,0x23,0x20,0x40,0x20,0xff,0x4a,0x84,0x00,0xfc,0x40,0x88,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 28493 潍 ; -+,0x20,0x12,0x12,0x04,0x4f,0x32,0x12,0x14,0x2f,0x20,0x60,0x21,0x2e,0x20,0x20,0x00,0x00,0x28,0x24,0x3f,0x68,0xa8,0x3e,0x28,0x28,0x3e,0x28,0xa8,0x28,0x3f,0x20,0x00 -+// 28494 潎 ; -+,0x41,0x21,0x25,0x03,0x43,0x27,0x05,0x15,0x17,0x17,0x65,0x25,0x25,0x25,0x25,0x00,0x08,0x08,0x48,0x5f,0x92,0xf2,0x32,0x32,0xaa,0x64,0x24,0x24,0x2a,0x33,0x62,0x00 -+// 28495 潏 ; -+,0x11,0x08,0x08,0x03,0x44,0x24,0x09,0x0b,0x0a,0x13,0x72,0x12,0x12,0x12,0x12,0x12,0xfc,0x48,0x30,0xff,0x62,0xa0,0x60,0xfe,0x52,0x8e,0xf2,0x92,0xf2,0x02,0x0a,0x04 -+// 28496 潐 ; -+,0x21,0x11,0x11,0x03,0x4b,0x2d,0x29,0x11,0x11,0x11,0x61,0x20,0x22,0x22,0x24,0x00,0x20,0x10,0x10,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0x00,0x92,0x49,0x49,0x00 -+// 28497 潑 ; -+,0x20,0x13,0x10,0x02,0x49,0x2b,0x2c,0x10,0x17,0x14,0x67,0x20,0x20,0x20,0x22,0x21,0x24,0xa8,0x92,0x94,0x08,0xbc,0xab,0xa8,0xc6,0x00,0xbc,0xa8,0x90,0xa8,0xc6,0x00 -+// 28498 潒 ; -+,0x10,0x08,0x08,0x01,0x43,0x29,0x29,0x08,0x13,0x10,0x11,0x66,0x21,0x2e,0x20,0x20,0x80,0xf8,0x88,0xfe,0x22,0x22,0xfe,0x40,0x84,0x58,0xa8,0x54,0x93,0x12,0x50,0x20 -+// 28499 潓 ; -+,0x00,0x27,0x10,0x13,0x02,0x4b,0x2a,0x13,0x10,0x17,0x60,0x21,0x25,0x25,0x20,0x00,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x22,0xff,0x00,0x44,0x22,0x0a,0xf8,0x00 -+// 28500 潔 ; -+,0x21,0x17,0x11,0x03,0x49,0x2f,0x09,0x10,0x11,0x10,0x61,0x20,0x22,0x22,0x24,0x20,0x00,0xdf,0x09,0x89,0x11,0xd5,0x62,0x88,0xf0,0x48,0xfc,0x20,0x24,0x22,0xa2,0x40 -+// 28501 潕 ; -+,0x21,0x11,0x11,0x03,0x41,0x29,0x2b,0x09,0x11,0x11,0x67,0x20,0x22,0x22,0x24,0x00,0x00,0x00,0xfe,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x00,0x92,0x49,0x49,0x00 -+// 28502 潖 ; -+,0x20,0x13,0x11,0x03,0x49,0x29,0x0b,0x10,0x13,0x12,0x62,0x23,0x22,0x22,0x21,0x00,0x00,0xde,0x08,0xde,0x08,0x08,0xde,0x00,0xfc,0x44,0x44,0xfc,0x00,0x02,0xfe,0x00 -+// 28503 潗 ; -+,0x21,0x11,0x11,0x03,0x45,0x29,0x29,0x11,0x11,0x10,0x63,0x20,0x20,0x23,0x20,0x20,0x20,0x10,0xff,0x20,0xfe,0x20,0xfe,0x20,0xff,0x20,0xff,0x68,0xa4,0x23,0x20,0x20 -+// 28504 潘 ; -+,0x20,0x13,0x11,0x00,0x43,0x28,0x08,0x13,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x1c,0xe0,0x24,0xa8,0xfe,0x70,0xac,0x23,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 28505 潙 ; -+,0x20,0x13,0x12,0x01,0x43,0x2a,0x0b,0x12,0x12,0x13,0x62,0x23,0x25,0x24,0x28,0x20,0x1e,0xe0,0x44,0x28,0xfc,0x08,0xfc,0x04,0x08,0xff,0x01,0x55,0x53,0x01,0x05,0x02 -+// 28506 潚 ; -+,0x00,0x21,0x10,0x13,0x00,0x41,0x28,0x0a,0x13,0x12,0x13,0x62,0x23,0x22,0x24,0x28,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0xaa,0x22 -+// 28507 潛 ; -+,0x20,0x17,0x11,0x05,0x47,0x2b,0x0b,0x15,0x18,0x21,0x61,0x21,0x21,0x21,0x21,0x21,0x00,0xbe,0x08,0x28,0xbf,0x0c,0x55,0xa3,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28508 潜 ; -+,0x21,0x11,0x13,0x01,0x47,0x29,0x0a,0x14,0x10,0x13,0x62,0x23,0x22,0x22,0x23,0x22,0x08,0x08,0xde,0x08,0xdf,0x08,0x94,0x63,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28509 潝 ; -+,0x20,0x10,0x11,0x06,0x40,0x29,0x09,0x11,0x10,0x17,0x62,0x21,0x22,0x24,0x22,0x21,0x40,0x60,0x98,0xf7,0x00,0xf8,0x08,0xf8,0x00,0x9e,0x8a,0x86,0x8a,0x92,0x8a,0x04 -+// 28510 潞 ; -+,0x20,0x13,0x12,0x02,0x4a,0x2b,0x09,0x11,0x15,0x15,0x65,0x25,0x25,0x2e,0x20,0x00,0x10,0x90,0x9e,0x92,0xa4,0x94,0x08,0x14,0x23,0xfe,0x22,0x22,0xa2,0x3e,0x22,0x00 -+// 28511 潟 ; -+,0x20,0x13,0x12,0x03,0x42,0x2a,0x0b,0x11,0x11,0x12,0x64,0x22,0x24,0x20,0x20,0x20,0xc0,0x1c,0x04,0xdc,0x04,0x04,0xfc,0x00,0xfe,0x02,0x02,0xaa,0xa6,0x02,0x0a,0x04 -+// 28512 潠 ; -+,0x23,0x12,0x13,0x02,0x42,0x29,0x28,0x10,0x13,0x10,0x60,0x27,0x20,0x21,0x26,0x20,0xde,0x52,0xde,0x10,0x51,0xcf,0x00,0x90,0xfe,0x90,0x90,0xff,0x88,0x04,0x06,0x02 -+// 28513 潡 ; -+,0x21,0x10,0x17,0x00,0x43,0x2a,0x0b,0x10,0x13,0x10,0x60,0x27,0x20,0x20,0x22,0x21,0x08,0x88,0xe8,0x08,0xdf,0x52,0xd2,0x2a,0xca,0x8a,0xe4,0x84,0x8c,0x92,0xa3,0x02 -+// 28514 潢 ; -+,0x20,0x10,0x11,0x00,0x40,0x2b,0x08,0x11,0x11,0x11,0x61,0x21,0x20,0x20,0x20,0x21,0x88,0x88,0xfe,0x88,0x88,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x00,0x88,0x84,0x04 -+// 28515 潣 ; -+,0x20,0x13,0x12,0x03,0x42,0x2b,0x0a,0x0b,0x12,0x12,0x12,0x62,0x23,0x22,0x22,0x22,0x00,0xdf,0x51,0xdf,0x51,0xdf,0x21,0xfd,0x89,0x51,0x31,0x49,0x89,0x01,0x05,0x02 -+// 28516 潤 ; -+,0x20,0x13,0x12,0x03,0x4a,0x2b,0x0a,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x22,0x00,0xdf,0x51,0xdf,0x51,0xdf,0x01,0xf9,0x21,0xf9,0x21,0xfd,0x01,0x01,0x05,0x02 -+// 28517 潥 ; -+,0x20,0x13,0x10,0x03,0x42,0x2b,0x08,0x09,0x10,0x13,0x10,0x60,0x21,0x26,0x20,0x20,0x00,0xfe,0x90,0xfe,0x92,0xfe,0x20,0x24,0xa8,0xff,0x60,0xb0,0x28,0x26,0x20,0x20 -+// 28518 潦 ; -+,0x20,0x10,0x17,0x02,0x49,0x2b,0x0d,0x11,0x11,0x11,0x60,0x21,0x22,0x2c,0x20,0x20,0x40,0x40,0xfe,0xa4,0x18,0xfc,0x0b,0xf8,0x08,0xf8,0x20,0x28,0x24,0x22,0xa2,0x40 -+// 28519 潧 ; -+,0x11,0x08,0x08,0x43,0x22,0x0a,0x0a,0x13,0x10,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x04,0x84,0x88,0xfe,0x26,0xaa,0x72,0xfe,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28520 潨 ; -+,0x20,0x10,0x13,0x0a,0x4a,0x2b,0x10,0x13,0x11,0x22,0x6c,0x21,0x22,0x2c,0x20,0x00,0x40,0x80,0xfe,0x92,0x92,0xfe,0x1c,0xe0,0x22,0x34,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 28521 潩 ; -+,0x20,0x13,0x12,0x03,0x42,0x2b,0x08,0x10,0x13,0x10,0x60,0x27,0x20,0x20,0x21,0x26,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x90,0x90,0xfe,0x90,0x90,0xff,0x00,0x88,0x06,0x02 -+// 28522 潪 ; -+,0x22,0x12,0x13,0x44,0x23,0x28,0x09,0x0a,0x15,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x00,0x00,0xef,0x89,0xe9,0x8f,0x49,0x20,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28523 潫 ; -+,0x22,0x11,0x13,0x00,0x47,0x28,0x09,0x16,0x11,0x10,0x61,0x20,0x21,0x21,0x22,0x20,0x44,0x48,0xfe,0x40,0xff,0x90,0x4c,0x93,0xe0,0x48,0xfc,0x20,0x24,0x22,0xa2,0x40 -+// 28524 潬 ; -+,0x10,0x0b,0x0a,0x03,0x44,0x25,0x09,0x09,0x09,0x11,0x70,0x13,0x10,0x10,0x10,0x10,0x00,0xde,0x52,0xde,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28525 潭 ; -+,0x23,0x10,0x13,0x02,0x43,0x24,0x05,0x09,0x09,0x09,0x11,0x70,0x13,0x10,0x10,0x10,0xfe,0x50,0xfe,0x52,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 28526 潮 ; -+,0x21,0x11,0x17,0x01,0x4f,0x2c,0x17,0x14,0x17,0x21,0x61,0x2f,0x21,0x21,0x21,0x21,0x00,0x1e,0xd2,0x12,0xd2,0x5e,0xd2,0x52,0xde,0x12,0x12,0xd2,0x12,0x22,0x4a,0x04 -+// 28527 潯 ; -+,0x21,0x10,0x11,0x00,0x49,0x28,0x0b,0x11,0x11,0x16,0x60,0x27,0x21,0x20,0x20,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xbe,0x22,0xbe,0x00,0x08,0xff,0x08,0x88,0x28,0x10 -+// 28528 潰 ; -+,0x20,0x11,0x11,0x01,0x40,0x2b,0x28,0x09,0x11,0x11,0x71,0x11,0x11,0x11,0x10,0x13,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06 -+// 28529 潱 ; -+,0x10,0x0b,0x08,0x03,0x40,0x2b,0x0a,0x09,0x10,0x11,0x61,0x21,0x20,0x20,0x27,0x20,0x20,0xfe,0x20,0xfe,0x00,0xff,0x02,0xfc,0x00,0xfc,0x04,0xfc,0x88,0x50,0xff,0x00 -+// 28530 潲 ; -+,0x20,0x10,0x17,0x01,0x49,0x2f,0x2b,0x13,0x15,0x15,0x65,0x29,0x21,0x21,0x21,0x21,0x00,0xc8,0x09,0x2a,0x1c,0xbe,0x22,0xbe,0x62,0x22,0x3e,0x22,0x22,0x22,0x2a,0x24 -+// 28531 潳 ; -+,0x10,0x09,0x09,0x01,0x45,0x25,0x09,0x09,0x09,0x11,0x71,0x12,0x13,0x14,0x18,0x10,0x00,0xfe,0x02,0xfe,0x10,0xfe,0x14,0xff,0x10,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0x42 -+// 28532 潴 ; -+,0x00,0x24,0x12,0x11,0x43,0x2d,0x09,0x11,0x13,0x15,0x69,0x21,0x21,0x21,0x25,0x22,0x10,0x50,0xbe,0x12,0x14,0x7f,0x10,0x20,0x7e,0xa2,0x22,0x3e,0x22,0x22,0x3e,0x22 -+// 28533 潵 ; -+,0x22,0x12,0x17,0x02,0x4a,0x2f,0x28,0x17,0x14,0x17,0x64,0x27,0x24,0x24,0x25,0x24,0x88,0x88,0xe8,0x90,0x9f,0xf2,0x12,0xf2,0x4a,0xca,0x44,0xc4,0x4a,0x52,0x63,0x82 -+// 28534 潶 ; -+,0x10,0x09,0x09,0x01,0x41,0x29,0x08,0x11,0x10,0x10,0x63,0x20,0x22,0x22,0x24,0x00,0x00,0xfe,0x22,0xaa,0x72,0xfe,0x20,0xfc,0x20,0x20,0xff,0x00,0x92,0x49,0x49,0x00 -+// 28535 潷 ; -+,0x22,0x13,0x13,0x04,0x41,0x20,0x0b,0x08,0x09,0x10,0x13,0x70,0x17,0x10,0x10,0x10,0x10,0xdf,0x14,0xa2,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 28536 潸 ; -+,0x21,0x11,0x17,0x01,0x4b,0x2d,0x09,0x13,0x12,0x13,0x62,0x23,0x22,0x22,0x22,0x22,0x08,0x08,0xdf,0x8c,0x5a,0x29,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 28537 潹 ; -+,0x20,0x10,0x13,0x00,0x40,0x29,0x0e,0x11,0x11,0x17,0x63,0x25,0x25,0x29,0x21,0x21,0x40,0x40,0xfc,0x60,0xd0,0x48,0x46,0x48,0x08,0xbe,0x18,0xac,0x2a,0x49,0x08,0x08 -+// 28538 潺 ; -+,0x27,0x14,0x17,0x04,0x45,0x2c,0x0f,0x14,0x17,0x14,0x64,0x24,0x2b,0x28,0x32,0x21,0xfe,0x02,0xfe,0x00,0xf8,0x10,0xfe,0x20,0xde,0x44,0x88,0xff,0x88,0x88,0xa8,0x10 -+// 28539 潻 ; -+,0x10,0x08,0x0b,0x40,0x20,0x0b,0x08,0x10,0x11,0x16,0x60,0x20,0x20,0x23,0x20,0x20,0xfc,0x20,0xfe,0x70,0xa8,0x26,0x20,0x50,0x88,0x27,0xa8,0x70,0xac,0x23,0xa0,0x40 -+// 28540 潼 ; -+,0x20,0x10,0x13,0x00,0x47,0x28,0x09,0x11,0x11,0x11,0x61,0x20,0x23,0x20,0x27,0x00,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x00 -+// 28541 潽 ; -+,0x10,0x08,0x09,0x00,0x45,0x24,0x08,0x0b,0x08,0x10,0x70,0x10,0x10,0x10,0x10,0x10,0x84,0x48,0xff,0x48,0x4a,0xcc,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 28542 潾 ; -+,0x20,0x11,0x10,0x03,0x40,0x29,0x08,0x12,0x13,0x14,0x66,0x29,0x21,0x22,0x2c,0x20,0x20,0x28,0xb0,0xff,0x70,0xa8,0x26,0x28,0xdf,0x48,0xa8,0xbf,0x08,0x08,0x08,0x08 -+// 28543 潿 ; -+,0x00,0x23,0x12,0x12,0x02,0x4b,0x2a,0x2a,0x0a,0x12,0x12,0x73,0x12,0x12,0x12,0x13,0x00,0xfe,0x22,0xfa,0x2a,0xfe,0x02,0xfa,0x8a,0xfa,0x22,0xfa,0xa2,0xfa,0x22,0xfe -+// 28544 澀 ; -+,0x40,0x2f,0x24,0x14,0x54,0x2a,0x01,0x10,0x11,0x15,0x65,0x25,0x25,0x26,0x28,0x00,0x00,0x9f,0x89,0xa9,0xa9,0x95,0x22,0x08,0x08,0x28,0xaf,0x28,0xa8,0x28,0x7f,0x00 -+// 28545 澁 ; -+,0x20,0x10,0x11,0x01,0x49,0x2b,0x08,0x11,0x11,0x15,0x65,0x25,0x25,0x27,0x2c,0x20,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0x08,0x08,0xae,0x28,0x28,0x28,0xa8,0x7f,0x00 -+// 28546 澂 ; -+,0x21,0x15,0x15,0x07,0x48,0x2f,0x08,0x17,0x11,0x17,0x61,0x21,0x2f,0x20,0x20,0x00,0x08,0x48,0x48,0xd0,0x1f,0xd2,0x32,0xd4,0x14,0xd4,0x08,0x08,0xd4,0x23,0xc2,0x00 -+// 28547 澃 ; -+,0x01,0x08,0x10,0x64,0x18,0x62,0x04,0x18,0x61,0x00,0x3e,0x02,0x04,0x18,0x62,0x01,0xff,0x20,0xfc,0x94,0xcc,0xa4,0xfc,0x48,0x86,0x88,0xd0,0xa0,0x90,0x8e,0x84,0x00 -+// 28548 澄 ; -+,0x20,0x13,0x00,0x02,0x49,0x29,0x2a,0x0d,0x11,0x11,0x61,0x20,0x21,0x20,0x2f,0x00,0x20,0xa4,0x98,0x92,0x0c,0xf8,0x04,0xfb,0x08,0x08,0xf8,0x00,0x08,0x90,0xff,0x00 -+// 28549 澅 ; -+,0x10,0x09,0x08,0x03,0x40,0x29,0x08,0x13,0x10,0x17,0x61,0x21,0x21,0x21,0x20,0x27,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0xff,0x24,0xfc,0x24,0xfc,0x00,0xff -+// 28550 澆 ; -+,0x10,0x09,0x08,0x43,0x20,0x09,0x0b,0x11,0x11,0x16,0x67,0x20,0x20,0x21,0x2e,0x00,0x20,0xfc,0x20,0xff,0x00,0x08,0xde,0x08,0xdf,0x00,0xff,0x90,0x91,0x11,0x0f,0x00 -+// 28551 澇 ; -+,0x20,0x10,0x12,0x01,0x40,0x29,0x0a,0x13,0x12,0x11,0x60,0x20,0x20,0x21,0x22,0x2c,0x88,0x88,0xab,0xdc,0x8c,0x52,0x22,0xff,0x42,0xfc,0x44,0x84,0x84,0x04,0x14,0x08 -+// 28552 澈 ; -+,0x22,0x11,0x17,0x01,0x42,0x27,0x10,0x17,0x14,0x17,0x64,0x27,0x24,0x24,0x25,0x24,0x08,0x08,0xc8,0x08,0x9f,0xd2,0x12,0xf2,0x4a,0xca,0x4c,0xc4,0x4c,0x52,0x63,0x82 -+// 28553 澉 ; -+,0x20,0x13,0x10,0x07,0x42,0x2a,0x0b,0x12,0x12,0x13,0x62,0x22,0x2f,0x20,0x20,0x20,0x08,0xc8,0x88,0xdf,0x92,0xb2,0xd2,0x8a,0x8a,0x8a,0x84,0xe4,0x8c,0x92,0xa3,0x82 -+// 28554 澊 ; -+,0x20,0x10,0x13,0x00,0x41,0x29,0x09,0x09,0x11,0x11,0x71,0x10,0x13,0x10,0x10,0x10,0x84,0x48,0xff,0x50,0xfe,0x52,0x8e,0x02,0xfe,0x02,0xfe,0x08,0xff,0x88,0x48,0x18 -+// 28555 澋 ; -+,0x21,0x11,0x11,0x01,0x41,0x28,0x0b,0x10,0x11,0x11,0x61,0x20,0x21,0x21,0x22,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x20,0x24,0x22,0xa2,0x40 -+// 28556 澌 ; -+,0x22,0x12,0x17,0x02,0x4a,0x2b,0x0a,0x13,0x12,0x17,0x60,0x22,0x22,0x24,0x28,0x20,0x40,0x43,0xfc,0x50,0x50,0xdf,0x52,0xd2,0x52,0xf2,0x92,0x52,0x52,0x22,0x22,0x42 -+// 28557 澍 ; -+,0x21,0x11,0x17,0x01,0x47,0x20,0x07,0x14,0x14,0x17,0x60,0x24,0x22,0x21,0x2e,0x20,0x02,0x02,0xe2,0x02,0xdf,0x02,0xc2,0x52,0x4a,0xca,0x02,0x42,0x82,0xe2,0x0a,0x04 -+// 28558 澎 ; -+,0x20,0x10,0x13,0x00,0x43,0x28,0x0b,0x0a,0x13,0x10,0x12,0x61,0x20,0x27,0x20,0x00,0x82,0x82,0xe4,0x88,0xe0,0x02,0xe2,0x24,0xe8,0x01,0x41,0x82,0xe4,0x18,0x60,0x00 -+// 28559 澏 ; -+,0x10,0x08,0x08,0x40,0x20,0x2b,0x0a,0x12,0x13,0x10,0x60,0x22,0x22,0x22,0x23,0x20,0x00,0xfc,0x84,0xfc,0x00,0xdf,0x51,0x51,0xdf,0x20,0x20,0x21,0x21,0x21,0xff,0x00 -+// 28560 澐 ; -+,0x20,0x11,0x10,0x03,0x4a,0x29,0x08,0x11,0x10,0x11,0x60,0x27,0x20,0x21,0x23,0x20,0x00,0xfc,0x20,0xff,0x22,0xac,0x20,0xac,0x00,0xfc,0x00,0xff,0x80,0x04,0xfe,0x02 -+// 28561 澑 ; -+,0x20,0x13,0x10,0x03,0x42,0x2b,0x08,0x10,0x13,0x12,0x62,0x23,0x22,0x22,0x23,0x22,0x00,0xff,0x50,0xde,0x52,0xde,0x50,0x50,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 28562 澒 ; -+,0x20,0x10,0x17,0x02,0x4a,0x2a,0x12,0x12,0x12,0x62,0x23,0x2c,0x20,0x20,0x20,0x21,0x00,0x7f,0x90,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x22,0x41,0x81 -+// 28563 澓 ; -+,0x20,0x12,0x12,0x04,0x49,0x21,0x0a,0x0a,0x16,0x12,0x62,0x22,0x22,0x22,0x22,0x22,0x40,0x40,0xfe,0x80,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7c,0x48,0xb0,0x28,0xc7,0x02 -+// 28564 澔 ; -+,0x20,0x11,0x11,0x03,0x42,0x2a,0x0a,0x13,0x12,0x12,0x62,0x22,0x23,0x22,0x20,0x00,0x08,0x28,0x28,0xbf,0xc8,0x88,0x88,0xbf,0x80,0xbe,0xa2,0xa2,0xa2,0xbe,0x22,0x00 -+// 28565 澕 ; -+,0x10,0x08,0x0b,0x00,0x41,0x28,0x0b,0x08,0x10,0x13,0x10,0x61,0x20,0x20,0x20,0x20,0x48,0x48,0xff,0x48,0xfe,0xa4,0xff,0xa4,0xa4,0xff,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28566 澖 ; -+,0x20,0x13,0x12,0x03,0x42,0x2b,0x0a,0x13,0x12,0x12,0x62,0x22,0x23,0x22,0x22,0x22,0x00,0xdf,0x51,0xdf,0x51,0xdf,0x21,0xfd,0x21,0x71,0xa9,0xa5,0x21,0x21,0x25,0x02 -+// 28567 澗 ; -+,0x10,0x0b,0x0a,0x03,0x42,0x2b,0x0a,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x22,0x00,0xdf,0x51,0xdf,0x51,0xdf,0x01,0xf9,0x89,0xf9,0x89,0xf9,0x01,0x01,0x05,0x02 -+// 28568 澘 ; -+,0x21,0x11,0x17,0x41,0x23,0x0d,0x09,0x10,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x00,0x08,0x08,0xdf,0x08,0x9c,0x6b,0x48,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 28569 澙 ; -+,0x10,0x09,0x09,0x01,0x41,0x29,0x08,0x10,0x10,0x11,0x60,0x22,0x22,0x20,0x20,0x20,0x40,0x9e,0x02,0xde,0x02,0xfe,0x80,0xfc,0x80,0xfe,0x02,0xaa,0x56,0x02,0x0a,0x04 -+// 28570 澚 ; -+,0x10,0x08,0x0b,0x02,0x42,0x2b,0x0a,0x13,0x12,0x17,0x60,0x21,0x20,0x20,0x20,0x20,0x40,0x80,0xfe,0xaa,0x72,0xfe,0x72,0xae,0x22,0xff,0x80,0xfc,0x04,0x04,0x14,0x08 -+// 28571 澛 ; -+,0x10,0x08,0x09,0x03,0x41,0x29,0x09,0x11,0x10,0x13,0x60,0x21,0x21,0x21,0x21,0x21,0x80,0xf8,0x10,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 28572 澜 ; -+,0x22,0x11,0x10,0x02,0x4b,0x2a,0x0b,0x12,0x12,0x13,0x62,0x22,0x23,0x22,0x22,0x22,0x00,0x7f,0x01,0x21,0xfd,0x21,0xfd,0xad,0x75,0xfd,0x71,0xa9,0x25,0x21,0x25,0x02 -+// 28573 澝 ; -+,0x20,0x13,0x12,0x00,0x4a,0x2a,0x08,0x10,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x21,0x20,0xff,0x02,0x20,0x92,0x85,0xfc,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x2a,0x24 -+// 28574 澞 ; -+,0x00,0x20,0x10,0x13,0x02,0x4b,0x2a,0x0a,0x12,0x12,0x12,0x64,0x24,0x25,0x28,0x31,0x20,0x3e,0x20,0xff,0x42,0xf8,0x40,0xfc,0x84,0xfc,0x00,0xfc,0x20,0xff,0x48,0x86 -+// 28575 澟 ; -+,0x10,0x0b,0x08,0x01,0x41,0x29,0x09,0x11,0x10,0x11,0x60,0x23,0x20,0x20,0x23,0x20,0x20,0xff,0x00,0xfe,0x02,0x7a,0x4a,0xfe,0x00,0xfc,0x20,0xff,0x68,0xa4,0x23,0x20 -+// 28576 澠 ; -+,0x20,0x13,0x12,0x03,0x40,0x28,0x0b,0x0a,0x13,0x12,0x73,0x10,0x10,0x10,0x10,0x00,0x00,0xfe,0x52,0xde,0x50,0x50,0xde,0x52,0xde,0x52,0xde,0x50,0x51,0x51,0x3f,0x00 -+// 28577 澡 ; -+,0x10,0x09,0x09,0x01,0x40,0x2b,0x0a,0x13,0x10,0x10,0x67,0x20,0x21,0x22,0x2c,0x20,0x00,0xf8,0x08,0xf8,0x00,0x9c,0x94,0x9c,0x40,0x40,0xfe,0xe0,0x50,0x48,0x46,0x40 -+// 28578 澢 ; -+,0x20,0x11,0x10,0x07,0x44,0x29,0x09,0x11,0x10,0x13,0x62,0x23,0x22,0x22,0x23,0x22,0x20,0x24,0xa8,0xff,0x02,0xf8,0x08,0xf8,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 28579 澣 ; -+,0x21,0x11,0x17,0x01,0x47,0x2c,0x0f,0x14,0x17,0x11,0x61,0x2f,0x21,0x21,0x21,0x21,0x08,0x08,0xc8,0x14,0xd2,0x7d,0xc8,0x48,0xc8,0x3f,0x08,0xe8,0x08,0x08,0x08,0x08 -+// 28580 澤 ; -+,0x13,0x0a,0x0a,0x03,0x48,0x2b,0x08,0x17,0x10,0x13,0x60,0x27,0x20,0x20,0x20,0x20,0xfe,0x92,0x92,0xfe,0x20,0xfc,0x20,0xff,0x88,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28581 澥 ; -+,0x22,0x12,0x13,0x04,0x47,0x2d,0x0d,0x17,0x15,0x17,0x65,0x25,0x25,0x28,0x29,0x30,0x00,0x3f,0xc9,0x89,0xc9,0x55,0x62,0xd4,0x5f,0xe4,0x44,0x7f,0x44,0x44,0x44,0x84 -+// 28582 澦 ; -+,0x20,0x17,0x10,0x03,0x49,0x2f,0x0a,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x2a,0x24,0x00,0xbf,0x88,0x10,0x3e,0xe2,0xbe,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x12,0x22 -+// 28583 澧 ; -+,0x20,0x13,0x12,0x03,0x02,0x4b,0x28,0x0b,0x10,0x11,0x11,0x61,0x20,0x20,0x27,0x20,0x90,0xfc,0x94,0xfc,0x94,0xfc,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x88,0x50,0xff,0x00 -+// 28584 澨 ; -+,0x21,0x11,0x13,0x02,0x44,0x23,0x08,0x09,0x11,0x11,0x62,0x22,0x24,0x20,0x27,0x00,0x08,0x08,0xdf,0x98,0x64,0xfe,0x20,0x24,0x24,0x24,0xaa,0xaa,0x32,0x20,0xff,0x00 -+// 28585 澩 ; -+,0x02,0x0d,0x08,0x0f,0x09,0x0e,0x09,0x3f,0x20,0x00,0x3e,0x02,0x04,0x18,0x62,0x01,0x00,0x5c,0x84,0x7c,0x44,0x9c,0x44,0xff,0x82,0x88,0xd0,0xa0,0x98,0x87,0x82,0x00 -+// 28586 澪 ; -+,0x21,0x10,0x17,0x04,0x41,0x28,0x09,0x10,0x10,0x17,0x61,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0xff,0x22,0xac,0x20,0xac,0x50,0xc8,0x27,0xfc,0x08,0x10,0x60,0x20,0x10 -+// 28587 澫 ; -+,0x20,0x10,0x13,0x00,0x45,0x25,0x09,0x09,0x09,0x10,0x73,0x12,0x12,0x12,0x12,0x12,0x88,0x88,0xff,0x88,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x2a,0xfa,0x02,0x0a,0x04 -+// 28588 澬 ; -+,0x20,0x13,0x10,0x00,0x40,0x29,0x0a,0x11,0x11,0x11,0x61,0x21,0x21,0x21,0x20,0x23,0x20,0x3e,0xa2,0x14,0x98,0x24,0x43,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06 -+// 28589 澭 ; -+,0x20,0x10,0x17,0x01,0x49,0x2a,0x0f,0x11,0x12,0x17,0x60,0x21,0x21,0x22,0x24,0x00,0x40,0x20,0xff,0x28,0x24,0xbf,0xa8,0x28,0x3e,0xa8,0xbe,0x28,0x28,0x3f,0x20,0x00 -+// 28590 澮 ; -+,0x00,0x20,0x10,0x11,0x02,0x4c,0x23,0x0b,0x0a,0x13,0x10,0x61,0x21,0x21,0x21,0x21,0x40,0x40,0xa0,0x18,0xf6,0x00,0xfc,0x54,0xe4,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 28591 澯 ; -+,0x10,0x08,0x0a,0x03,0x4a,0x2d,0x08,0x13,0x11,0x10,0x67,0x20,0x20,0x21,0x26,0x20,0x80,0xef,0x89,0xe6,0x26,0x49,0x91,0x20,0x24,0xa8,0xff,0x70,0xa8,0x24,0x23,0x20 -+// 28592 澰 ; -+,0x20,0x10,0x10,0x01,0x46,0x28,0x0b,0x12,0x12,0x13,0x61,0x21,0x21,0x22,0x24,0x00,0x40,0x60,0x90,0x0c,0xfb,0x00,0xde,0x52,0x52,0xde,0x08,0x08,0x08,0x94,0x62,0x00 -+// 28593 澱 ; -+,0x20,0x1f,0x18,0x0f,0x48,0x3a,0x1f,0x1a,0x2a,0x2f,0x6a,0x2a,0x2c,0x30,0x20,0x00,0x00,0xdc,0x54,0xd4,0x14,0x97,0xc0,0xbe,0xa2,0xd4,0x94,0x48,0x54,0x24,0xc3,0x00 -+// 28594 澲 ; -+,0x20,0x12,0x11,0x00,0x43,0x28,0x0b,0x10,0x11,0x10,0x63,0x20,0x20,0x21,0x26,0x20,0x50,0x52,0x54,0x50,0xff,0x88,0xfe,0x20,0xfc,0x20,0xff,0x70,0xa8,0x24,0x23,0x20 -+// 28595 澳 ; -+,0x20,0x10,0x13,0x03,0x42,0x2b,0x0a,0x12,0x13,0x12,0x6f,0x20,0x20,0x23,0x2c,0x00,0x40,0x80,0xfc,0x54,0xe4,0xfc,0x64,0xd4,0x54,0x44,0xff,0x60,0x90,0x08,0x07,0x00 -+// 28596 澴 ; -+,0x10,0x09,0x09,0x01,0x40,0x2b,0x08,0x11,0x11,0x11,0x60,0x21,0x23,0x2d,0x21,0x21,0x00,0xfc,0x54,0xfc,0x00,0xff,0x00,0xfc,0x04,0xfc,0x92,0x14,0x08,0x48,0x86,0x04 -+// 28597 澵 ; -+,0x21,0x10,0x17,0x02,0x49,0x2f,0x09,0x11,0x17,0x11,0x65,0x25,0x29,0x25,0x22,0x00,0x00,0x86,0xf8,0x50,0x90,0xff,0x12,0x12,0xd2,0x12,0x92,0x52,0x22,0x22,0x42,0x00 -+// 28598 澶 ; -+,0x20,0x10,0x17,0x00,0x43,0x2a,0x0a,0x12,0x13,0x10,0x61,0x21,0x21,0x21,0x27,0x00,0x40,0x20,0xff,0x00,0xfe,0x8a,0xfa,0x02,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xff,0x00 -+// 28599 澷 ; -+,0x21,0x11,0x11,0x01,0x45,0x24,0x2b,0x0a,0x0b,0x10,0x77,0x10,0x10,0x11,0x11,0x12,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x4a,0xfe,0x20,0xff,0x80,0xfc,0x04,0x14,0x08 -+// 28600 澸 ; -+,0x20,0x10,0x13,0x02,0x43,0x2a,0x0b,0x13,0x13,0x14,0x64,0x2a,0x22,0x24,0x20,0x00,0x14,0x12,0xff,0x10,0xf0,0x12,0xf2,0x2c,0xe9,0x15,0x03,0xa0,0x92,0x85,0x7c,0x00 -+// 28601 澹 ; -+,0x20,0x10,0x11,0x03,0x46,0x2a,0x0b,0x12,0x12,0x12,0x62,0x24,0x24,0x28,0x30,0x00,0x80,0xf8,0x10,0xff,0x48,0xa4,0xff,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x84,0xfc,0x00 -+// 28602 澺 ; -+,0x20,0x11,0x10,0x00,0x03,0x40,0x29,0x09,0x09,0x11,0x11,0x70,0x12,0x12,0x14,0x00,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x92,0x85,0x7d,0x00 -+// 28603 澻 ; -+,0x20,0x14,0x12,0x02,0x40,0x28,0x29,0x0e,0x13,0x12,0x13,0x62,0x22,0x25,0x28,0x20,0x84,0x44,0x48,0xfe,0x20,0x62,0xb4,0x58,0xb8,0x54,0x93,0x50,0x20,0x00,0xff,0x00 -+// 28604 澼 ; -+,0x20,0x13,0x12,0x02,0x4a,0x2b,0x0a,0x14,0x17,0x16,0x6a,0x2a,0x33,0x22,0x20,0x00,0x10,0x88,0xbf,0x92,0x92,0x8c,0x3f,0x08,0xc8,0x7f,0x48,0x48,0xc8,0x48,0x08,0x00 -+// 28605 澽 ; -+,0x20,0x10,0x10,0x03,0x42,0x2a,0x0a,0x12,0x12,0x13,0x62,0x23,0x24,0x27,0x28,0x20,0x20,0x3e,0x20,0xff,0x22,0xf8,0x20,0xfc,0x62,0xb4,0x58,0xb4,0xd3,0x10,0x50,0x20 -+// 28606 澾 ; -+,0x20,0x10,0x14,0x02,0x42,0x28,0x08,0x16,0x12,0x12,0x62,0x22,0x22,0x25,0x28,0x00,0x10,0x10,0x7e,0x10,0xff,0x28,0xff,0x10,0xfe,0x10,0xff,0x10,0x10,0x80,0x7f,0x00 -+// 28607 澿 ; -+,0x10,0x08,0x0b,0x00,0x49,0x2a,0x0c,0x11,0x10,0x13,0x60,0x21,0x21,0x22,0x24,0x20,0x88,0x88,0xdf,0x88,0xdc,0xab,0x88,0xfe,0x00,0xff,0x20,0x28,0x24,0x26,0xa2,0x40 -+// 28608 激 ; -+,0x21,0x12,0x17,0x04,0x47,0x2c,0x0f,0x11,0x1f,0x12,0x63,0x24,0x24,0x28,0x31,0x00,0x08,0x08,0xc8,0x50,0xdf,0x72,0xd2,0x14,0xd4,0x14,0xc8,0x48,0x54,0x67,0x42,0x80 -+// 28609 濁 ; -+,0x20,0x13,0x12,0x02,0x4b,0x29,0x09,0x12,0x17,0x12,0x63,0x20,0x27,0x20,0x20,0x00,0x00,0xfe,0x52,0x52,0xfe,0x00,0xfe,0x42,0xfa,0x4a,0xfa,0x52,0xfa,0x02,0x0a,0x04 -+// 28610 濂 ; -+,0x20,0x10,0x17,0x04,0x47,0x2c,0x0f,0x14,0x17,0x14,0x67,0x28,0x29,0x32,0x2c,0x20,0x40,0x20,0xfe,0x90,0xfe,0x90,0xfc,0x94,0xff,0x94,0xfc,0x90,0x98,0x97,0x92,0x90 -+// 28611 濃 ; -+,0x00,0x23,0x12,0x13,0x02,0x4b,0x28,0x0b,0x12,0x13,0x12,0x63,0x22,0x24,0x24,0x28,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xfe,0x00,0xfc,0x00,0xff,0xa4,0x98,0xc8,0x86 -+// 28612 濄 ; -+,0x20,0x10,0x14,0x02,0x48,0x28,0x11,0x1d,0x15,0x65,0x25,0x25,0x26,0x29,0x30,0x20,0x00,0x7c,0x44,0x74,0x54,0x54,0xff,0x01,0x79,0x49,0x79,0x05,0x02,0x80,0x7f,0x00 -+// 28613 濅 ; -+,0x20,0x13,0x12,0x00,0x40,0x2b,0x08,0x0b,0x12,0x11,0x51,0x30,0x11,0x10,0x10,0x13,0x20,0xff,0x02,0xfc,0x04,0xff,0x04,0xff,0x22,0xfc,0x24,0x20,0xfc,0x88,0x70,0xde -+// 28614 濆 ; -+,0x20,0x13,0x10,0x00,0x47,0x28,0x0b,0x12,0x13,0x12,0x63,0x22,0x23,0x21,0x21,0x22,0x20,0xfe,0x20,0xa8,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x08,0x04,0x04 -+// 28615 濇 ; -+,0x20,0x10,0x13,0x01,0x41,0x2a,0x0f,0x08,0x13,0x12,0x72,0x12,0x12,0x12,0x13,0x12,0x20,0x20,0xfe,0x28,0x28,0xb4,0xff,0x00,0xfe,0x02,0xf2,0x92,0xf2,0x02,0xfe,0x02 -+// 28616 濈 ; -+,0x20,0x13,0x12,0x03,0x40,0x27,0x0a,0x0b,0x0a,0x13,0x72,0x12,0x13,0x1c,0x10,0x10,0x00,0xc8,0x4c,0xca,0x08,0xff,0x48,0xc8,0x4a,0xc6,0x44,0x6c,0xd5,0x63,0x43,0x41 -+// 28617 濉 ; -+,0x20,0x17,0x15,0x05,0x45,0x2f,0x0d,0x15,0x17,0x15,0x65,0x25,0x27,0x25,0x20,0x20,0x28,0x24,0x20,0x7f,0x68,0xa8,0x3e,0x28,0x28,0x3e,0x28,0x28,0x28,0x28,0x3f,0x20 -+// 28618 濊 ; -+,0x20,0x10,0x10,0x00,0x4b,0x28,0x0b,0x12,0x13,0x12,0x63,0x22,0x24,0x24,0x29,0x20,0x10,0x10,0x9e,0x90,0xff,0x10,0xff,0x10,0xd2,0x92,0xac,0xa8,0x4d,0x95,0x23,0x00 -+// 28619 濋 ; -+,0x21,0x11,0x17,0x01,0x4b,0x2d,0x09,0x13,0x10,0x11,0x61,0x21,0x22,0x22,0x24,0x00,0x08,0x08,0xdf,0x98,0x6c,0x4a,0x08,0xfe,0x24,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x00 -+// 28620 濌 ; -+,0x03,0x7c,0x08,0x08,0x7f,0x08,0x3f,0x29,0x3f,0x29,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x08,0x08,0xea,0x2c,0x4c,0x8b,0x28,0x10,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 28621 濍 ; -+,0x10,0x08,0x09,0x00,0x44,0x25,0x0a,0x08,0x0b,0x10,0x71,0x10,0x12,0x12,0x14,0x10,0x48,0x48,0xff,0x48,0x80,0xfe,0x4a,0xca,0x32,0x6a,0x86,0x20,0x92,0x85,0x7d,0x00 -+// 28622 濎 ; -+,0x20,0x10,0x10,0x02,0x42,0x2a,0x0a,0x0a,0x13,0x10,0x57,0x32,0x12,0x12,0x12,0x14,0xf8,0x88,0xf8,0x8a,0xfa,0x8a,0xfa,0x02,0xde,0x50,0xde,0x52,0x52,0x52,0x52,0x52 -+// 28623 濏 ; -+,0x13,0x08,0x08,0x03,0x40,0x28,0x0b,0x08,0x10,0x10,0x72,0x12,0x14,0x11,0x12,0x00,0xdf,0x88,0x88,0xdf,0x88,0x88,0xdf,0x04,0x24,0x98,0x92,0xa1,0xc5,0x84,0x7c,0x00 -+// 28624 濐 ; -+,0x21,0x11,0x11,0x01,0x45,0x24,0x09,0x08,0x0b,0x10,0x70,0x11,0x16,0x10,0x10,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x22,0xfc,0x28,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 28625 濑 ; -+,0x21,0x11,0x17,0x01,0x47,0x25,0x0d,0x0f,0x11,0x13,0x13,0x65,0x25,0x29,0x21,0x00,0x10,0x10,0xdf,0x22,0xc4,0x5f,0x51,0xd5,0x15,0x15,0x95,0x44,0x0a,0x11,0x21,0x00 -+// 28626 濒 ; -+,0x21,0x11,0x15,0x05,0x45,0x2f,0x11,0x15,0x25,0x29,0x60,0x20,0x21,0x26,0x38,0x00,0x00,0x3f,0x08,0xd0,0x3e,0xe2,0x2a,0x2a,0x6a,0x6a,0xaa,0x88,0x14,0x23,0xc1,0x00 -+// 28627 濓 ; -+,0x20,0x10,0x13,0x02,0x43,0x2a,0x0b,0x12,0x13,0x12,0x63,0x22,0x24,0x25,0x2a,0x20,0x40,0x20,0xff,0x88,0xff,0x50,0xfe,0x52,0xff,0x52,0xfe,0x58,0xd4,0x57,0x52,0x50 -+// 28628 濔 ; -+,0x20,0x17,0x11,0x02,0x47,0x23,0x0a,0x0b,0x12,0x13,0x12,0x63,0x22,0x22,0x22,0x22,0x00,0xff,0x24,0x22,0xff,0x76,0xaa,0x76,0x22,0x76,0xaa,0x76,0x22,0x22,0x2a,0x04 -+// 28629 濕 ; -+,0x10,0x0b,0x0a,0x03,0x42,0x23,0x09,0x09,0x12,0x17,0x12,0x67,0x20,0x22,0x22,0x24,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x08,0x48,0x94,0x38,0x92,0xbf,0x00,0x92,0x49,0x49 -+// 28630 濖 ; -+,0x20,0x13,0x12,0x02,0x43,0x28,0x0b,0x10,0x17,0x10,0x61,0x27,0x21,0x21,0x21,0x21,0x00,0xfc,0x94,0x94,0xfc,0x42,0xfc,0x48,0xff,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 28631 濗 ; -+,0x20,0x13,0x10,0x01,0x05,0x45,0x25,0x09,0x08,0x0b,0x51,0x33,0x15,0x11,0x11,0x10,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xff,0x24,0xfe,0x25,0x24,0x2c,0x20 -+// 28632 濘 ; -+,0x20,0x13,0x12,0x00,0x42,0x28,0x08,0x11,0x11,0x11,0x67,0x20,0x23,0x20,0x20,0x20,0x20,0xff,0x42,0xa4,0x8a,0xf8,0x00,0xfc,0x54,0x54,0xff,0x00,0xfe,0x20,0xa0,0x40 -+// 28633 濙 ; -+,0x21,0x15,0x13,0x01,0x4a,0x2c,0x0f,0x14,0x10,0x11,0x61,0x22,0x20,0x20,0x21,0x26,0x08,0x6a,0x9c,0x08,0x94,0x62,0xff,0x02,0x20,0x24,0x28,0x30,0x50,0x88,0x07,0x02 -+// 28634 濚 ; -+,0x10,0x08,0x0a,0x02,0x41,0x29,0x0b,0x12,0x10,0x13,0x60,0x20,0x21,0x26,0x20,0x20,0x88,0xaa,0xdc,0x88,0x5c,0x62,0xff,0x22,0x20,0xff,0x70,0xa8,0x27,0x22,0x20,0x20 -+// 28635 濛 ; -+,0x20,0x13,0x10,0x03,0x42,0x28,0x08,0x13,0x10,0x13,0x60,0x27,0x20,0x21,0x26,0x20,0x88,0xff,0x88,0xff,0x02,0xfc,0x00,0xff,0xc4,0x68,0x98,0x34,0x54,0x93,0x50,0x20 -+// 28636 濜 ; -+,0x20,0x13,0x10,0x07,0x48,0x2b,0x08,0x17,0x12,0x14,0x63,0x22,0x22,0x22,0x2f,0x00,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x92,0x49,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 28637 濝 ; -+,0x10,0x08,0x0b,0x00,0x44,0x24,0x2b,0x08,0x09,0x12,0x74,0x11,0x10,0x11,0x12,0x10,0x88,0x88,0xfe,0xa8,0xd8,0xa8,0xff,0xa8,0x54,0xe3,0x48,0xfc,0xa8,0x24,0xa4,0x40 -+// 28638 濞 ; -+,0x10,0x09,0x09,0x01,0x41,0x25,0x05,0x0b,0x0a,0x0b,0x12,0x77,0x10,0x10,0x11,0x12,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfe,0x22,0xfe,0x22,0xff,0x88,0x88,0x08,0x08 -+// 28639 濟 ; -+,0x20,0x10,0x17,0x00,0x47,0x2a,0x0a,0x0c,0x11,0x13,0x72,0x13,0x12,0x12,0x14,0x18,0x40,0x20,0xff,0x48,0xb3,0xae,0xaa,0xad,0x28,0xfc,0x04,0xfc,0x04,0x04,0x04,0x04 -+// 28640 濠 ; -+,0x10,0x08,0x0b,0x00,0x40,0x28,0x0b,0x12,0x11,0x10,0x63,0x21,0x26,0x21,0x26,0x20,0x40,0x20,0xff,0x88,0xf8,0x00,0xff,0x02,0xfc,0xc8,0x70,0xa8,0x54,0x93,0x50,0x20 -+// 28641 濡 ; -+,0x23,0x10,0x17,0x44,0x23,0x08,0x0b,0x10,0x13,0x10,0x63,0x22,0x22,0x22,0x22,0x22,0xfe,0x20,0xff,0x22,0xbc,0x20,0xbc,0x00,0xfe,0x80,0xfe,0x92,0x92,0x92,0x92,0x06 -+// 28642 濢 ; -+,0x13,0x09,0x08,0x41,0x2a,0x28,0x0b,0x10,0x10,0x11,0x62,0x27,0x20,0x20,0x20,0x20,0xde,0x4a,0xc6,0x4a,0x52,0x20,0xfe,0x88,0x88,0x54,0x22,0xff,0x20,0x20,0x20,0x20 -+// 28643 濣 ; -+,0x21,0x11,0x17,0x01,0x47,0x2c,0x0f,0x14,0x17,0x21,0x6f,0x21,0x21,0x21,0x21,0x21,0x08,0x08,0xd4,0x14,0xa2,0xc5,0x94,0x8c,0xa4,0x14,0xbf,0x04,0x04,0x04,0x04,0x04 -+// 28644 濤 ; -+,0x20,0x17,0x10,0x03,0x40,0x27,0x08,0x0b,0x10,0x17,0x50,0x23,0x22,0x23,0x20,0x20,0x40,0xfe,0x40,0xfc,0x00,0xff,0x40,0xfc,0x00,0xff,0x04,0xfe,0xa4,0x94,0x04,0x0c -+// 28645 濥 ; -+,0x20,0x10,0x11,0x02,0x40,0x23,0x0a,0x09,0x10,0x11,0x51,0x21,0x21,0x21,0x20,0x21,0x80,0xf8,0x90,0x60,0xa0,0xff,0x02,0xfc,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x48,0x84 -+// 28646 濦 ; -+,0x10,0x0b,0x09,0x01,0x40,0x2b,0x08,0x09,0x10,0x11,0x50,0x21,0x24,0x25,0x29,0x20,0x3e,0xc4,0x28,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x40,0x21,0x05,0xfc -+// 28647 濧 ; -+,0x21,0x11,0x15,0x03,0x47,0x28,0x0a,0x09,0x17,0x10,0x67,0x20,0x20,0x2f,0x20,0x00,0x42,0x42,0x52,0x62,0xef,0x02,0x42,0x92,0xea,0x8a,0xe2,0x82,0xf2,0x02,0x0a,0x04 -+// 28648 濨 ; -+,0x21,0x10,0x10,0x03,0x40,0x29,0x0b,0x10,0x11,0x13,0x60,0x22,0x22,0x24,0x20,0x00,0x08,0x88,0x10,0xff,0x88,0x12,0xdc,0x88,0x52,0xff,0x00,0xa2,0x91,0x85,0x7c,0x00 -+// 28649 濩 ; -+,0x20,0x13,0x10,0x01,0x41,0x2b,0x0d,0x09,0x11,0x11,0x71,0x10,0x10,0x10,0x10,0x13,0x88,0xff,0xa8,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfc,0x48,0x30,0xde -+// 28650 濪 ; -+,0x21,0x17,0x11,0x03,0x41,0x27,0x28,0x0b,0x12,0x13,0x52,0x23,0x22,0x22,0x22,0x22,0x08,0xc8,0x0f,0x92,0x24,0xdf,0x15,0xd5,0x55,0xdf,0x50,0xd0,0x50,0x51,0x51,0xcf -+// 28651 濫 ; -+,0x20,0x17,0x15,0x07,0x4c,0x2f,0x15,0x15,0x17,0x20,0x63,0x22,0x22,0x22,0x2f,0x00,0x08,0xc8,0x08,0xd0,0x5f,0xd8,0x24,0x06,0xc0,0x00,0xfc,0x94,0x94,0x94,0xff,0x00 -+// 28652 濬 ; -+,0x20,0x10,0x10,0x03,0x42,0x29,0x08,0x0b,0x10,0x13,0x51,0x31,0x11,0x11,0x11,0x11,0x20,0x3e,0x20,0xff,0x02,0xfc,0xa8,0x56,0x88,0xff,0x04,0xfc,0x04,0xfc,0x04,0xfc -+// 28653 濭 ; -+,0x20,0x13,0x10,0x04,0x45,0x24,0x2b,0x08,0x09,0x50,0x31,0x11,0x11,0x11,0x17,0x10,0x88,0xff,0x88,0x20,0xfe,0x20,0xff,0x84,0xfe,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 28654 濮 ; -+,0x11,0x09,0x0a,0x02,0x47,0x2a,0x0a,0x12,0x12,0x12,0x62,0x22,0x22,0x22,0x22,0x22,0x28,0x2a,0xac,0x68,0xff,0x44,0x28,0xfe,0x10,0xfc,0x10,0xfe,0x10,0x28,0x44,0x83 -+// 28655 濯 ; -+,0x00,0x23,0x11,0x10,0x01,0x42,0x28,0x08,0x11,0x11,0x13,0x65,0x21,0x21,0x21,0x21,0x00,0xde,0x4a,0xc6,0x4a,0x52,0xa0,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 28656 濰 ; -+,0x21,0x11,0x11,0x02,0x47,0x29,0x0a,0x14,0x17,0x10,0x66,0x25,0x25,0x20,0x20,0x00,0x00,0x14,0x52,0x5f,0xb4,0x54,0x1f,0x94,0xd4,0x1f,0x94,0x54,0x54,0x1f,0x10,0x00 -+// 28657 濱 ; -+,0x10,0x0b,0x0a,0x01,0x40,0x29,0x0a,0x08,0x11,0x17,0x71,0x11,0x11,0x10,0x10,0x11,0x20,0xff,0x02,0xfc,0xa4,0x28,0x30,0x40,0xfe,0x92,0x4a,0x26,0xfe,0x48,0x84,0x04 -+// 28658 濲 ; -+,0x01,0x21,0x17,0x11,0x03,0x48,0x2b,0x10,0x17,0x11,0x6f,0x21,0x23,0x25,0x29,0x21,0x00,0x0e,0xea,0x0a,0xca,0x0a,0xd3,0x00,0xdf,0x12,0xea,0x84,0x44,0x4a,0x13,0x62 -+// 28659 濳 ; -+,0x10,0x0a,0x0b,0x04,0x43,0x29,0x09,0x0a,0x14,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x84,0x94,0xdf,0xa4,0xff,0x4c,0x6d,0x55,0x23,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 28660 濴 ; -+,0x20,0x10,0x12,0x02,0x41,0x2a,0x0b,0x0a,0x10,0x13,0x70,0x11,0x11,0x12,0x14,0x10,0x88,0x88,0xaa,0xdc,0x4c,0x32,0xff,0x22,0x20,0xac,0xb0,0x28,0x24,0x23,0xa0,0x40 -+// 28661 濵 ; -+,0x20,0x13,0x12,0x01,0x41,0x25,0x05,0x09,0x09,0x09,0x71,0x12,0x12,0x12,0x14,0x11,0x20,0xff,0x02,0xfe,0x22,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 28662 濶 ; -+,0x00,0x27,0x14,0x17,0x04,0x47,0x2c,0x0d,0x14,0x15,0x54,0x24,0x24,0x24,0x24,0x24,0x00,0xdf,0x51,0xdf,0x51,0xdf,0x01,0xf9,0x21,0xfd,0x21,0xf9,0x89,0xf9,0x05,0x02 -+// 28663 濷 ; -+,0x00,0x3e,0x02,0x04,0x18,0x61,0x20,0x17,0x48,0x2b,0x13,0x52,0x23,0x22,0x22,0x22,0x80,0x9c,0xe0,0x90,0x8e,0x80,0x88,0xff,0x88,0xfe,0x32,0xaa,0x32,0xaa,0x22,0x06 -+// 28664 濸 ; -+,0x21,0x17,0x11,0x00,0x40,0x29,0x0f,0x09,0x11,0x11,0x71,0x11,0x12,0x12,0x14,0x10,0x08,0xfe,0x48,0x60,0x98,0x24,0xff,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x84,0x84,0xfc -+// 28665 濹 ; -+,0x10,0x09,0x09,0x01,0x41,0x28,0x09,0x08,0x13,0x12,0x74,0x10,0x13,0x10,0x17,0x10,0x00,0xfe,0xa6,0x6a,0xfe,0x20,0xfc,0x20,0xff,0x92,0x49,0x20,0xfe,0x20,0xff,0x00 -+// 28666 濺 ; -+,0x20,0x17,0x14,0x04,0x47,0x24,0x0f,0x0c,0x14,0x17,0x10,0x65,0x24,0x28,0x20,0x20,0x18,0x94,0x9f,0xf0,0x96,0x99,0xa7,0x98,0x94,0x9f,0x72,0x14,0x89,0x95,0x63,0x01 -+// 28667 濻 ; -+,0x20,0x17,0x15,0x05,0x46,0x2e,0x0d,0x15,0x14,0x16,0x65,0x24,0x24,0x24,0x24,0x24,0x10,0x7e,0x52,0x7e,0x10,0xff,0x00,0x7e,0xc2,0xfe,0x42,0x7e,0x42,0x7e,0x24,0xc2 -+// 28668 濼 ; -+,0x22,0x12,0x14,0x0f,0x42,0x25,0x3f,0x10,0x10,0x17,0x60,0x20,0x21,0x26,0x20,0x20,0x22,0x44,0xf9,0x9e,0xf4,0x99,0x9f,0xf0,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 28669 濽 ; -+,0x20,0x13,0x10,0x03,0x40,0x29,0x0a,0x11,0x11,0x11,0x61,0x21,0x21,0x21,0x20,0x21,0x84,0xdf,0x84,0xdf,0x84,0x4a,0x11,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04 -+// 28670 濾 ; -+,0x20,0x10,0x10,0x03,0x02,0x4b,0x2a,0x0b,0x13,0x13,0x13,0x65,0x24,0x26,0x2a,0x28,0x20,0x3e,0x20,0xff,0x42,0xfc,0x42,0xfe,0x24,0xfc,0x24,0xfc,0x22,0x91,0x85,0x7c -+// 28671 濿 ; -+,0x20,0x13,0x12,0x03,0x42,0x2a,0x0a,0x12,0x12,0x12,0x62,0x23,0x25,0x25,0x25,0x29,0x00,0xff,0x44,0xff,0x44,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x11,0x7d,0x05,0x03 -+// 28672 瀀 ; -+,0x07,0x40,0x21,0x21,0x01,0x41,0x27,0x25,0x13,0x14,0x10,0x21,0x62,0x24,0x20,0x23,0xff,0x40,0xfc,0x04,0xfc,0x04,0xff,0x41,0x2a,0xfa,0x80,0xfc,0xc8,0x30,0xd8,0x06 -+// 28673 瀁 ; -+,0x20,0x13,0x10,0x05,0x44,0x27,0x28,0x09,0x0b,0x15,0x11,0x71,0x11,0x11,0x31,0x11,0x88,0xfe,0x20,0xfe,0x40,0xff,0x90,0x2c,0xff,0x0a,0xf8,0x08,0xfa,0x2c,0xd8,0x0e -+// 28674 瀂 ; -+,0x20,0x10,0x11,0x01,0x45,0x25,0x29,0x09,0x0a,0x12,0x70,0x10,0x10,0x10,0x10,0x10,0x40,0xfc,0x08,0xfe,0x22,0xfe,0x22,0xfe,0x4a,0x25,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 28675 瀃 ; -+,0x20,0x13,0x1a,0x12,0x43,0x2a,0x2b,0x0a,0x0a,0x13,0x32,0x11,0x12,0x14,0x18,0x00,0x00,0xdf,0x51,0x5f,0xd1,0x5f,0xe8,0x5f,0x6d,0xd5,0x55,0xa9,0x51,0x65,0x42,0x00 -+// 28676 瀄 ; -+,0x22,0x12,0x1b,0x12,0x44,0x2b,0x2a,0x0b,0x12,0x13,0x72,0x12,0x12,0x12,0x13,0x12,0x10,0x10,0xdf,0xa8,0x44,0xde,0x52,0xd2,0x52,0xd2,0x12,0x12,0x96,0xd0,0x50,0x10 -+// 28677 瀅 ; -+,0x20,0x10,0x12,0x02,0x49,0x2a,0x2b,0x14,0x13,0x10,0x20,0x61,0x20,0x20,0x27,0x00,0x88,0xaa,0xcc,0xa8,0x54,0x22,0xff,0x01,0xfe,0x20,0x20,0xfc,0x20,0x24,0xff,0x00 -+// 28678 瀆 ; -+,0x20,0x19,0x08,0x00,0x40,0x35,0x15,0x05,0x08,0x08,0x10,0x70,0x10,0x10,0x10,0x11,0x10,0xff,0x10,0xfe,0x00,0xff,0x45,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 28679 瀇 ; -+,0x20,0x18,0x0b,0x02,0x4a,0x2a,0x2b,0x12,0x12,0x12,0x64,0x24,0x24,0x28,0x28,0x11,0x40,0x20,0xff,0x44,0xfe,0x44,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0xc3,0x02 -+// 28680 瀈 ; -+,0x03,0x22,0x11,0x11,0x42,0x2b,0x2a,0x0b,0x11,0x11,0x21,0x61,0x20,0x27,0x20,0x20,0xde,0x52,0x4a,0x4a,0x52,0xff,0x21,0xfe,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20 -+// 28681 瀉 ; -+,0x20,0x10,0x1b,0x0a,0x41,0x29,0x29,0x11,0x11,0x10,0x61,0x22,0x25,0x22,0x20,0x00,0x40,0x20,0xff,0x41,0x9c,0x04,0xdc,0x04,0xfc,0x80,0xfe,0xaa,0x56,0x56,0x0a,0x04 -+// 28682 瀊 ; -+,0x20,0x11,0x13,0x03,0x4a,0x2b,0x2e,0x13,0x14,0x24,0x6b,0x22,0x22,0x22,0x27,0x00,0x80,0x1c,0xd4,0x54,0x67,0xde,0x52,0x4c,0xca,0x51,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 28683 瀋 ; -+,0x20,0x1b,0x0a,0x04,0x43,0x29,0x2f,0x08,0x09,0x16,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0xff,0x09,0x3c,0xe4,0x28,0xff,0xf0,0xac,0x23,0xfc,0x24,0xfc,0x24,0xfc,0x04 -+// 28684 瀌 ; -+,0x20,0x1b,0x0a,0x02,0x43,0x2a,0x2b,0x0a,0x12,0x12,0x22,0x64,0x25,0x29,0x2a,0x10,0x20,0xff,0x48,0x48,0xff,0x49,0xff,0x88,0xee,0x89,0xe7,0x80,0x52,0x6b,0x29,0x00 -+// 28685 瀍 ; -+,0x20,0x1b,0x0a,0x02,0x42,0x2a,0x2a,0x0a,0x12,0x13,0x12,0x65,0x26,0x28,0x2b,0x10,0x20,0xff,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff,0x84,0x12,0xfd,0x10,0xff,0x00 -+// 28686 瀎 ; -+,0x20,0x17,0x10,0x43,0x2a,0x2b,0x08,0x10,0x13,0x72,0x12,0x12,0x12,0x14,0x15,0x08,0x88,0xff,0x88,0xfe,0x52,0xfe,0x28,0x24,0xff,0x20,0xa4,0x98,0x10,0x69,0x85,0x02 -+// 28687 瀏 ; -+,0x21,0x16,0x14,0x05,0x46,0x2c,0x29,0x12,0x17,0x28,0x63,0x22,0x20,0x27,0x22,0x00,0x01,0xf1,0x51,0x55,0x95,0xb5,0x45,0x25,0xf5,0x85,0xe5,0xa5,0xf1,0x85,0x02,0x00 -+// 28688 瀐 ; -+,0x20,0x10,0x13,0x00,0x47,0x29,0x29,0x17,0x11,0x27,0x61,0x27,0x21,0x27,0x20,0x00,0x88,0x8c,0xea,0x88,0xff,0x48,0x6a,0x4b,0x6a,0x4a,0x7c,0x4d,0xf5,0x13,0x21,0x00 -+// 28689 瀑 ; -+,0x21,0x11,0x11,0x49,0x29,0x28,0x1b,0x10,0x17,0x21,0x66,0x28,0x21,0x23,0x20,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x90,0xfe,0x90,0xff,0x28,0xaf,0x72,0xa8,0x26,0xa4,0x40 -+// 28690 瀒 ; -+,0x20,0x1b,0x09,0x01,0x42,0x28,0x28,0x09,0x16,0x11,0x71,0x11,0x11,0x11,0x11,0x11,0x20,0xff,0x24,0x24,0xaa,0x71,0x8c,0x07,0xfa,0x04,0x74,0x54,0x74,0x04,0xfc,0x04 -+// 28691 瀓 ; -+,0x44,0x24,0x2a,0x12,0x47,0x24,0x1d,0x14,0x14,0x25,0x64,0x24,0x27,0x24,0x24,0x00,0x80,0x88,0xa8,0xa8,0xff,0x14,0xe4,0x94,0x94,0xd4,0x88,0xe8,0x94,0x27,0xc2,0x00 -+// 28692 瀔 ; -+,0x21,0x17,0x11,0x43,0x20,0x2f,0x18,0x17,0x10,0x27,0x61,0x27,0x23,0x25,0x29,0x01,0x00,0xdc,0x14,0x94,0x14,0xe7,0x20,0xde,0x12,0x92,0x0a,0xcc,0x8c,0x57,0x62,0x00 -+// 28693 瀕 ; -+,0x21,0x11,0x15,0x05,0x45,0x3f,0x11,0x15,0x25,0x29,0x68,0x31,0x22,0x24,0x28,0x10,0x3e,0x08,0xd0,0x3e,0x22,0xfe,0x22,0x22,0x3e,0x62,0xbe,0x22,0x14,0x22,0x41,0x00 -+// 28694 瀖 ; -+,0x21,0x10,0x1b,0x0a,0x45,0x24,0x25,0x08,0x09,0x13,0x15,0x79,0x11,0x11,0x11,0x11,0xfc,0x20,0xff,0x21,0xad,0x20,0x8c,0xa0,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 28695 瀗 ; -+,0x20,0x13,0x1a,0x09,0x40,0x24,0x34,0x25,0x08,0x09,0x11,0x71,0x10,0x12,0x12,0x14,0x20,0xff,0x21,0xfc,0x20,0xfc,0x20,0xfe,0x20,0xfe,0x4a,0xfe,0x22,0x91,0x85,0x7c -+// 28696 瀘 ; -+,0x20,0x10,0x10,0x0b,0x4a,0x2b,0x12,0x12,0x12,0x12,0x62,0x24,0x24,0x25,0x29,0x2b,0x20,0x3c,0x20,0xff,0x20,0xf8,0x22,0xfc,0xa4,0xfc,0xa4,0xfc,0x00,0xfe,0x4a,0xff -+// 28697 瀙 ; -+,0x22,0x11,0x17,0x42,0x2a,0x2f,0x11,0x11,0x1f,0x21,0x65,0x29,0x31,0x25,0x22,0x00,0x00,0x3e,0xe2,0xbe,0xa2,0xe2,0x3e,0x22,0xe2,0x3e,0x94,0x54,0x15,0x25,0x47,0x80 -+// 28698 瀚 ; -+,0x22,0x12,0x1f,0x02,0x4f,0x38,0x1f,0x18,0x2f,0x22,0x6f,0x22,0x22,0x22,0x22,0x00,0x08,0x08,0xd4,0x22,0xc1,0x80,0xb7,0xd1,0xb5,0x13,0xb5,0x59,0x91,0x57,0x22,0x00 -+// 28699 瀛 ; -+,0x40,0x2f,0x24,0x07,0x12,0x53,0x30,0x17,0x25,0x27,0x65,0x27,0x29,0x29,0x33,0x00,0x40,0xff,0x00,0xfe,0x04,0xfc,0x00,0x5c,0x54,0xfc,0xb4,0xb4,0x55,0xa5,0x47,0x00 -+// 28700 瀜 ; -+,0x20,0x17,0x10,0x0b,0x4a,0x2b,0x28,0x1f,0x16,0x17,0x75,0x15,0x15,0x15,0x14,0x00,0x04,0xc4,0x04,0x84,0x9f,0x95,0x15,0xd5,0xdf,0xd5,0x54,0x45,0x47,0x5d,0x90,0x00 -+// 28701 瀝 ; -+,0x20,0x17,0x15,0x44,0x27,0x15,0x16,0x14,0x24,0x24,0x64,0x28,0x28,0x28,0x33,0x00,0x00,0xff,0xde,0x84,0xff,0xcc,0xb6,0xa5,0xc4,0x10,0x90,0x9e,0x90,0x92,0xff,0x00 -+// 28702 瀞 ; -+,0x21,0x17,0x11,0x07,0x41,0x2f,0x10,0x17,0x14,0x27,0x64,0x27,0x24,0x24,0x25,0x00,0x10,0xd0,0x1e,0xe4,0x04,0xfe,0x0a,0xff,0x8a,0xbe,0x8a,0x88,0x88,0xa8,0x90,0x00 -+// 28703 瀟 ; -+,0x21,0x17,0x11,0x03,0x48,0x2f,0x28,0x0b,0x12,0x13,0x72,0x13,0x12,0x17,0x14,0x08,0x08,0xff,0x28,0xfe,0x22,0xff,0x22,0xfe,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0x22 -+// 28704 瀠 ; -+,0x20,0x10,0x12,0x00,0x49,0x2a,0x2b,0x0a,0x10,0x11,0x10,0x13,0x71,0x11,0x12,0x14,0x88,0xaa,0xdc,0x88,0x54,0x22,0xff,0x41,0x8c,0xf0,0xc4,0xfe,0x22,0x28,0xa6,0x42 -+// 28705 瀡 ; -+,0x40,0x2f,0x2a,0x0a,0x4d,0x4a,0x09,0x2e,0x2b,0x29,0x69,0x29,0x29,0x29,0x2a,0x00,0x20,0x20,0xff,0x50,0x7e,0x80,0x3c,0x24,0xbc,0x24,0x3c,0x24,0x2c,0xc0,0x7f,0x00 -+// 28706 瀢 ; -+,0x00,0x20,0x14,0x02,0x4a,0x29,0x08,0x17,0x12,0x12,0x22,0x62,0x22,0x2b,0x2c,0x00,0x10,0xfe,0x92,0xfe,0x10,0xff,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x42,0xff,0x00 -+// 28707 瀣 ; -+,0x21,0x11,0x05,0x07,0x44,0x2a,0x0b,0x16,0x13,0x20,0x63,0x20,0x23,0x20,0x2f,0x00,0x00,0xff,0x11,0xea,0x46,0x8c,0x12,0xb1,0x9e,0x90,0x9e,0x90,0x9e,0x90,0xff,0x00 -+// 28708 瀤 ; -+,0x20,0x17,0x10,0x03,0x4a,0x2b,0x29,0x10,0x11,0x12,0x20,0x63,0x2d,0x21,0x21,0x01,0x40,0xff,0x00,0xfe,0x52,0xfe,0x24,0xa8,0x24,0x42,0xa4,0x18,0x2c,0x47,0x82,0x00 -+// 28709 瀥 ; -+,0x23,0x19,0x08,0x03,0x48,0x2b,0x28,0x08,0x10,0x13,0x72,0x12,0x12,0x12,0x12,0x00,0xde,0x4a,0xc6,0x4a,0x52,0xff,0x84,0xfc,0x00,0xff,0x01,0xf9,0x89,0xfd,0x02,0x00 -+// 28710 瀦 ; -+,0x20,0x17,0x11,0x02,0x44,0x3a,0x11,0x13,0x15,0x29,0x63,0x25,0x29,0x25,0x22,0x00,0x10,0xd0,0x3d,0x11,0x92,0xff,0x08,0x90,0x3e,0x62,0xbe,0x22,0x22,0x3e,0x22,0x00 -+// 28711 瀧 ; -+,0x22,0x11,0x17,0x42,0x22,0x2f,0x10,0x17,0x14,0x27,0x64,0x27,0x24,0x25,0x24,0x00,0x10,0x1f,0xd0,0x9e,0x82,0xfe,0x10,0xde,0x50,0xde,0x50,0xde,0x51,0x51,0x9f,0x00 -+// 28712 瀨 ; -+,0x21,0x11,0x17,0x01,0x47,0x25,0x15,0x17,0x13,0x23,0x65,0x29,0x31,0x21,0x21,0x00,0x10,0x1e,0xe4,0x3e,0xd2,0x5e,0x52,0xd2,0x1e,0x92,0x52,0x3e,0x14,0x22,0x41,0x00 -+// 28713 瀩 ; -+,0x41,0x27,0x21,0x0f,0x03,0x4b,0x2d,0x09,0x13,0x12,0x72,0x12,0x14,0x18,0x10,0x00,0xdf,0x04,0x1f,0xd1,0x91,0x5f,0x11,0x11,0x9f,0x91,0x91,0xdf,0x8a,0x11,0x21,0x00 -+// 28714 瀪 ; -+,0x10,0x1f,0x20,0x3f,0x54,0x12,0x1f,0x10,0x0f,0x08,0x0f,0x00,0x3f,0x02,0x0d,0x30,0x10,0xdf,0x22,0xa2,0xd4,0x8c,0xd2,0xa1,0xf8,0x88,0xf8,0x44,0x68,0x50,0x4f,0x82 -+// 28715 瀫 ; -+,0x21,0x17,0x11,0x03,0x48,0x2f,0x2a,0x14,0x17,0x22,0x67,0x21,0x25,0x39,0x23,0x01,0x00,0xdc,0x14,0x94,0x14,0xe7,0x40,0xbe,0x12,0x54,0xcc,0x08,0x54,0x23,0x42,0x00 -+// 28716 瀬 ; -+,0x21,0x11,0x17,0x01,0x4f,0x2d,0x2d,0x15,0x17,0x23,0x63,0x25,0x25,0x29,0x31,0x01,0x00,0x3f,0xc8,0x1e,0xd2,0x5e,0x52,0x52,0xde,0x92,0x52,0x5e,0x14,0x32,0x23,0x41 -+// 28717 瀭 ; -+,0x42,0x22,0x2f,0x02,0x4f,0x2a,0x0f,0x2a,0x2f,0x2a,0x62,0x2f,0x22,0x22,0x22,0x22,0x08,0x08,0xd4,0x12,0xbf,0x80,0xbd,0xa5,0xbd,0xa5,0x3d,0xa5,0x25,0x25,0x2d,0x02 -+// 28718 瀮 ; -+,0x23,0x10,0x17,0x44,0x2b,0x28,0x2b,0x09,0x11,0x17,0x73,0x13,0x15,0x15,0x19,0x11,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x08,0x08,0xbf,0x9c,0x6a,0x2a,0x49,0x88,0x08 -+// 28719 瀯 ; -+,0x20,0x10,0x12,0x02,0x45,0x2a,0x2f,0x08,0x09,0x11,0x11,0x10,0x63,0x22,0x23,0x22,0x88,0xaa,0xcc,0x88,0x54,0x22,0xff,0x01,0xfc,0x04,0xfc,0x00,0xfe,0x02,0xfe,0x02 -+// 28720 瀰 ; -+,0x40,0x2e,0x22,0x02,0x42,0x2e,0x28,0x18,0x1e,0x12,0x62,0x22,0x22,0x2a,0x24,0x00,0x00,0xff,0x54,0x92,0xff,0x92,0xda,0xb6,0xda,0xb6,0xda,0xb6,0x92,0x9a,0x94,0x00 -+// 28721 瀱 ; -+,0x23,0x12,0x13,0x00,0x47,0x24,0x34,0x16,0x14,0x15,0x76,0x24,0x2a,0x29,0x32,0x04,0xfe,0x52,0xfe,0x00,0xff,0x82,0xa2,0xca,0xaa,0x0a,0xaa,0xca,0x8a,0x42,0x2a,0x04 -+// 28722 瀲 ; -+,0x21,0x11,0x12,0x04,0x4f,0x30,0x1e,0x1a,0x2a,0x2e,0x64,0x24,0x2a,0x29,0x32,0x00,0x08,0x88,0x48,0x30,0xdf,0x22,0xe2,0xa2,0xa4,0xf4,0xc8,0x4c,0xb4,0x23,0x42,0x00 -+// 28723 瀳 ; -+,0x20,0x17,0x10,0x07,0x44,0x2f,0x2d,0x0d,0x15,0x15,0x14,0x66,0x2a,0x2a,0x28,0x10,0x88,0xff,0xa8,0xff,0x92,0xfe,0x00,0xfe,0x00,0xfe,0x02,0xaa,0xaa,0x02,0x14,0x08 -+// 28724 瀴 ; -+,0x23,0x32,0x13,0x02,0x4b,0x2a,0x2b,0x11,0x12,0x14,0x2f,0x60,0x21,0x20,0x21,0x2e,0xde,0x52,0xde,0x52,0xde,0x52,0xde,0x8c,0x52,0x22,0xff,0x88,0x90,0x70,0xcc,0x06 -+// 28725 瀵 ; -+,0x24,0x12,0x17,0x01,0x42,0x2f,0x2a,0x0b,0x12,0x17,0x71,0x2f,0x21,0x22,0x24,0x00,0x44,0x48,0xff,0x58,0x47,0xfc,0x44,0xfc,0x44,0xfe,0x10,0xff,0x08,0x04,0x02,0x00 -+// 28726 瀶 ; -+,0x20,0x17,0x15,0x05,0x45,0x2f,0x2c,0x14,0x14,0x27,0x65,0x25,0x25,0x27,0x24,0x00,0x90,0xd0,0x3f,0x40,0x3e,0xa2,0xa2,0xbe,0x80,0xf7,0x55,0x55,0x55,0xf7,0x55,0x00 -+// 28727 瀷 ; -+,0x27,0x12,0x11,0x02,0x48,0x2b,0x2a,0x13,0x12,0x13,0x60,0x27,0x20,0x21,0x22,0x00,0xbe,0x92,0x86,0x9a,0x82,0xfe,0x22,0xfe,0x22,0xfe,0x88,0xff,0x88,0x04,0x02,0x00 -+// 28728 瀸 ; -+,0x22,0x12,0x12,0x05,0x48,0x2f,0x29,0x17,0x11,0x17,0x71,0x27,0x21,0x2f,0x20,0x00,0x48,0x4c,0x4a,0xaa,0x88,0xff,0x48,0x6b,0x4a,0x76,0x44,0x45,0xed,0x13,0x61,0x00 -+// 28729 瀹 ; -+,0x20,0x10,0x11,0x03,0x4c,0x26,0x24,0x16,0x10,0x17,0x54,0x27,0x24,0x24,0x24,0x00,0x40,0xa0,0x10,0xfc,0x03,0xee,0xaa,0xee,0x00,0xfe,0x92,0xfe,0x92,0x9a,0x04,0x00 -+// 28730 瀺 ; -+,0x21,0x11,0x13,0x06,0x4b,0x2a,0x2b,0x16,0x11,0x17,0x6a,0x23,0x20,0x21,0x22,0x0c,0xf0,0x10,0xfc,0x04,0xfc,0xaa,0x22,0xbe,0x10,0xfc,0x44,0xfc,0xa8,0x24,0x21,0x1f -+// 28731 瀻 ; -+,0x20,0x13,0x10,0x07,0x4a,0x2b,0x2a,0x13,0x11,0x13,0x71,0x17,0x11,0x16,0x18,0x00,0x88,0xec,0x8a,0xff,0xa8,0xe8,0xaa,0xeb,0x4a,0xee,0x44,0xe5,0x4d,0x53,0x21,0x00 -+// 28732 瀼 ; -+,0x20,0x10,0x17,0x0a,0x4b,0x28,0x33,0x10,0x13,0x20,0x67,0x20,0x23,0x2d,0x21,0x01,0x40,0x20,0xff,0x52,0xde,0x88,0xfe,0x88,0xfe,0x88,0xff,0xa4,0x18,0x4f,0x82,0x00 -+// 28733 瀽 ; -+,0x20,0x17,0x14,0x03,0x40,0x2b,0x08,0x11,0x13,0x25,0x61,0x22,0x22,0x22,0x25,0x28,0x20,0xff,0x91,0xfe,0x90,0xfe,0x90,0x0c,0xff,0x0a,0xf8,0x40,0x78,0x40,0x40,0xff -+// 28734 瀾 ; -+,0x27,0x14,0x17,0x04,0x47,0x24,0x25,0x14,0x14,0x14,0x64,0x24,0x24,0x25,0x26,0x24,0xdf,0x51,0xdf,0x51,0xdf,0x21,0xfd,0x21,0xf9,0xa9,0xf9,0x71,0xa9,0x25,0x25,0x02 -+// 28735 瀿 ; -+,0x24,0x17,0x18,0x17,0x45,0x25,0x27,0x10,0x11,0x13,0x20,0x63,0x21,0x22,0x24,0x00,0x10,0xdf,0x12,0xea,0x44,0x4a,0xd1,0x88,0x10,0xe8,0x84,0xfe,0x2a,0x24,0xa2,0x40 -+// 28736 灀 ; -+,0x23,0x30,0x17,0x04,0x4b,0x28,0x2b,0x11,0x11,0x17,0x63,0x25,0x25,0x29,0x21,0x01,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x00,0x1f,0xd1,0x9f,0x51,0x5f,0x11,0x1f,0x11 -+// 28737 灁 ; -+,0x23,0x12,0x13,0x0a,0x4b,0x2a,0x2a,0x12,0x12,0x12,0x63,0x22,0x22,0x23,0x22,0x02,0xdf,0x51,0xdf,0x51,0xdf,0x21,0xfd,0xa5,0x95,0xfd,0xd5,0x59,0x95,0x53,0x25,0x02 -+// 28738 灂 ; -+,0x20,0x17,0x12,0x07,0x44,0x27,0x20,0x17,0x14,0x17,0x64,0x27,0x24,0x25,0x26,0x04,0x7e,0xc4,0x48,0xfe,0x92,0xfe,0x00,0xc4,0x44,0xff,0x44,0xd4,0x14,0x04,0x94,0x08 -+// 28739 灃 ; -+,0x00,0x25,0x17,0x15,0x07,0x4d,0x2d,0x37,0x10,0x1f,0x22,0x63,0x21,0x20,0x2f,0x20,0x40,0x4a,0xde,0x4a,0xde,0x4a,0x4a,0xfe,0x00,0xff,0x04,0xfc,0x08,0x92,0xff,0x00 -+// 28740 灄 ; -+,0x23,0x10,0x10,0x00,0x48,0x2f,0x28,0x17,0x12,0x23,0x62,0x22,0x2f,0x24,0x20,0x00,0xff,0x84,0xa4,0x94,0x84,0xff,0x04,0xff,0x52,0x5a,0xd6,0x52,0xd7,0x7a,0x42,0x00 -+// 28741 灅 ; -+,0x00,0x23,0x12,0x13,0x02,0x4b,0x2d,0x2f,0x15,0x17,0x10,0x13,0x70,0x10,0x17,0x10,0x00,0xfe,0x22,0xfe,0x22,0xff,0x55,0xdf,0x55,0xdf,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 28742 灆 ; -+,0x20,0x17,0x10,0x03,0x4a,0x2b,0x2a,0x13,0x12,0x13,0x20,0x63,0x22,0x22,0x27,0x00,0x88,0xff,0x88,0xe8,0x88,0xdf,0x50,0xe4,0x82,0xe0,0x00,0xfe,0x52,0x52,0xff,0x00 -+// 28743 灇 ; -+,0x20,0x12,0x11,0x07,0x48,0x2b,0x28,0x17,0x12,0x13,0x62,0x23,0x22,0x2f,0x24,0x00,0x88,0x8a,0x8c,0xff,0x88,0xfe,0x20,0xff,0x40,0xfe,0x54,0xd4,0x68,0xd7,0x62,0x40 -+// 28744 灈 ; -+,0x23,0x12,0x13,0x02,0x43,0x2a,0x2b,0x11,0x13,0x16,0x2b,0x62,0x23,0x22,0x23,0x22,0xde,0x52,0xde,0x52,0xde,0x52,0xde,0x20,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 28745 灉 ; -+,0x45,0x2a,0x25,0x00,0x57,0x34,0x17,0x10,0x2f,0x2a,0x6f,0x28,0x28,0x28,0x27,0x00,0x54,0x92,0x50,0x3f,0xa4,0xe4,0xbf,0x24,0xa4,0xbf,0xa4,0x24,0x24,0xbf,0xa0,0x00 -+// 28746 灊 ; -+,0x47,0x2a,0x2f,0x05,0x05,0x49,0x30,0x1f,0x12,0x23,0x20,0x67,0x24,0x25,0x24,0x24,0x9e,0x28,0xff,0x14,0xa5,0x43,0x00,0xff,0x04,0xfc,0x00,0xfe,0x92,0xfa,0x4a,0x44 -+// 28747 灋 ; -+,0x20,0x17,0x14,0x07,0x45,0x25,0x15,0x15,0x16,0x14,0x25,0x64,0x2b,0x28,0x29,0x10,0x20,0xff,0x92,0xfe,0x00,0xfc,0x00,0xfe,0xaa,0x22,0xfc,0x20,0xff,0x88,0xfc,0x04 -+// 28748 灌 ; -+,0x20,0x17,0x00,0x4b,0x2a,0x2b,0x09,0x11,0x13,0x15,0x71,0x11,0x11,0x11,0x11,0x00,0x88,0xff,0x88,0xde,0x52,0xde,0x20,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0x00 -+// 28749 灍 ; -+,0x4f,0x28,0x2f,0x08,0x4f,0x29,0x2b,0x18,0x1a,0x2a,0x2b,0x68,0x29,0x2a,0x28,0x08,0x9f,0x91,0x9f,0x91,0x9f,0x11,0xfd,0x95,0xa9,0xa9,0xe9,0x95,0x23,0x41,0x05,0x02 -+// 28750 灎 ; -+,0x42,0x2f,0x2a,0x0f,0x4a,0x2f,0x30,0x1f,0x10,0x27,0x24,0x67,0x24,0x23,0x2e,0x00,0x88,0xc8,0xbe,0xc8,0xbf,0xc8,0x14,0xfe,0x02,0xbe,0xaa,0xaa,0xaa,0xaa,0x7f,0x00 -+// 28751 灏 ; -+,0x00,0x27,0x14,0x17,0x04,0x4f,0x29,0x17,0x12,0x12,0x23,0x61,0x25,0x29,0x15,0x02,0x00,0xdf,0x44,0xc4,0x5f,0xd1,0x11,0xd5,0x95,0x95,0x95,0x15,0x84,0x4a,0x11,0x21 -+// 28752 灐 ; -+,0x20,0x12,0x11,0x01,0x4a,0x2b,0x2a,0x08,0x10,0x11,0x72,0x11,0x10,0x10,0x13,0x00,0xaa,0xdc,0x88,0x54,0x22,0xff,0x21,0x58,0x84,0xfb,0x20,0xfc,0xa8,0xaa,0xff,0x00 -+// 28753 灑 ; -+,0x27,0x10,0x17,0x05,0x45,0x24,0x37,0x14,0x17,0x24,0x67,0x25,0x25,0x29,0x29,0x11,0xdf,0x00,0xdf,0x55,0x55,0x51,0xff,0x90,0xfe,0x92,0xfe,0x10,0xd6,0x59,0x91,0x0f -+// 28754 灒 ; -+,0x22,0x13,0x14,0x07,0x42,0x2a,0x2a,0x0d,0x09,0x11,0x11,0x71,0x11,0x10,0x11,0x02,0x94,0xde,0xa4,0xff,0x94,0xd5,0xa7,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x88,0x04,0x02 -+// 28755 灓 ; -+,0x10,0x13,0x24,0x39,0x10,0x25,0x7d,0x55,0x55,0x00,0x3e,0x04,0x18,0x60,0x02,0x01,0x84,0xe8,0x12,0xdc,0x08,0xd1,0x7f,0xd5,0x55,0x80,0xd8,0xa0,0x98,0x87,0x82,0x00 -+// 28756 灔 ; -+,0x22,0x1f,0x1a,0x0f,0x4a,0x2f,0x20,0x17,0x10,0x17,0x24,0x67,0x22,0x23,0x2e,0x20,0x88,0xe8,0xaf,0xf2,0xb4,0xff,0x35,0xd5,0x15,0xdf,0x50,0xd0,0x91,0xd1,0x0f,0x00 -+// 28757 灕 ; -+,0x22,0x1f,0x05,0x0a,0x48,0x5f,0x12,0x12,0x1f,0x2a,0x6a,0x2f,0x28,0x29,0x20,0x00,0x08,0xd4,0x10,0x9f,0xb4,0xd4,0x5f,0x94,0xd4,0x5f,0x54,0x54,0x5f,0x50,0x90,0x00 -+// 28758 灖 ; -+,0x20,0x17,0x14,0x04,0x47,0x24,0x25,0x16,0x14,0x15,0x14,0x65,0x28,0x2b,0x28,0x10,0x40,0xff,0x84,0x84,0xdf,0x8c,0xd6,0xa5,0x84,0xcf,0x48,0xce,0x48,0xcf,0x48,0x48 -+// 28759 灗 ; -+,0x22,0x13,0x12,0x02,0x4f,0x2a,0x2a,0x0a,0x1f,0x12,0x12,0x73,0x1e,0x10,0x10,0x10,0x10,0xff,0x82,0xba,0xaa,0xba,0x82,0xfe,0x80,0x7e,0x52,0xca,0x7e,0x00,0xff,0x00 -+// 28760 灘 ; -+,0x42,0x22,0x2f,0x02,0x43,0x51,0x17,0x15,0x17,0x21,0x27,0x61,0x22,0x24,0x28,0x00,0x90,0x94,0xd0,0xbf,0xb4,0x54,0xdf,0x54,0xd4,0x1f,0xd4,0x14,0x9f,0x50,0x50,0x00 -+// 28761 灙 ; -+,0x21,0x10,0x17,0x04,0x48,0x28,0x2b,0x0a,0x13,0x10,0x13,0x30,0x17,0x11,0x12,0x00,0x24,0xa8,0xff,0x89,0xf8,0x00,0xfe,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x54,0x4a,0x00 -+// 28762 灚 ; -+,0x20,0x11,0x11,0x01,0x49,0x29,0x2b,0x0d,0x11,0x11,0x11,0x61,0x21,0x20,0x21,0x26,0x50,0xae,0x52,0x5a,0xa6,0x52,0xff,0x05,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x11,0x0f -+// 28763 灛 ; -+,0x27,0x14,0x17,0x04,0x4f,0x2d,0x2d,0x14,0x15,0x15,0x15,0x65,0x25,0x24,0x24,0x04,0xdf,0x51,0xdf,0x51,0xdf,0x55,0xdd,0x01,0xfd,0x25,0xfd,0x25,0xfd,0x21,0x25,0x22 -+// 28764 灜 ; -+,0x20,0x1f,0x12,0x03,0x4a,0x2b,0x28,0x17,0x15,0x27,0x65,0x27,0x25,0x29,0x2b,0x11,0x40,0xff,0x00,0xfe,0x04,0xfc,0x00,0xee,0x2a,0xea,0x2a,0xea,0x2a,0xeb,0x2b,0x11 -+// 28765 灝 ; -+,0x27,0x14,0x17,0x44,0x2f,0x29,0x17,0x12,0x12,0x23,0x61,0x25,0x29,0x35,0x22,0x00,0xdf,0x48,0xde,0x52,0xd2,0x1e,0xd2,0x92,0x9e,0x92,0x12,0xbe,0x54,0x22,0x41,0x00 -+// 28766 灞 ; -+,0x23,0x10,0x17,0x04,0x43,0x28,0x13,0x12,0x1f,0x12,0x27,0x65,0x27,0x21,0x2f,0x01,0xfe,0x20,0xff,0x21,0xae,0x00,0x8e,0x80,0xde,0x92,0xde,0x52,0xde,0x12,0xa6,0x42 -+// 28767 灟 ; -+,0x27,0x14,0x17,0x05,0x4c,0x2d,0x2d,0x15,0x14,0x15,0x66,0x24,0x24,0x28,0x28,0x11,0xfe,0x02,0xfe,0x24,0xa8,0xfe,0x52,0xfe,0x80,0xfe,0x22,0xfa,0xaa,0xfa,0x2a,0xc4 -+// 28768 灠 ; -+,0x27,0x15,0x17,0x04,0x47,0x25,0x27,0x0b,0x0a,0x0b,0x12,0x73,0x12,0x13,0x11,0x16,0x90,0x1f,0xa8,0xfe,0xaa,0x3e,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfd,0x91,0x0f -+// 28769 灡 ; -+,0x21,0x17,0x11,0x07,0x44,0x27,0x24,0x15,0x14,0x15,0x25,0x65,0x24,0x25,0x24,0x04,0x08,0xff,0x08,0x9e,0x92,0x9e,0x52,0xfa,0x42,0xfa,0x4a,0xfa,0xd2,0x4a,0x4a,0x04 -+// 28770 灢 ; -+,0x20,0x13,0x11,0x0b,0x4a,0x2b,0x28,0x0b,0x10,0x13,0x70,0x17,0x10,0x11,0x12,0x00,0x20,0xff,0x24,0xff,0x95,0x9c,0x88,0xfe,0x88,0xfe,0x88,0xff,0x92,0xac,0xc7,0x82 -+// 28771 灣 ; -+,0x22,0x12,0x15,0x06,0x52,0x37,0x14,0x14,0x27,0x20,0x63,0x22,0x23,0x20,0x20,0x00,0x44,0xf5,0x0a,0xdc,0x0a,0xff,0xaa,0xea,0xfc,0x04,0xfc,0x00,0xfe,0x02,0x0a,0x04 -+// 28772 灤 ; -+,0x42,0x32,0x25,0x0e,0x45,0x2f,0x11,0x14,0x14,0x10,0x6f,0x20,0x21,0x22,0x24,0x28,0x44,0xf4,0x0f,0xf2,0x04,0xff,0x00,0xf5,0x95,0x40,0xff,0xe0,0x50,0x4c,0x47,0x40 -+// 28773 灥 ; -+,0x01,0x0f,0x08,0x0f,0x3c,0x04,0x18,0x69,0x10,0x3e,0x2a,0x3e,0x6a,0x2c,0x4a,0x18,0x00,0xf8,0x88,0xf8,0x90,0xa0,0x90,0x88,0x10,0x3e,0x2a,0x3e,0x6a,0x2c,0x4b,0x9a -+// 28774 灦 ; -+,0x27,0x14,0x17,0x04,0x47,0x24,0x2a,0x1f,0x24,0x28,0x2f,0x60,0x2a,0x2a,0x20,0x00,0xff,0x48,0xc8,0x5e,0xd2,0x5e,0xb2,0xf2,0x5e,0x92,0xfe,0x00,0x94,0x92,0x23,0x42 -+// 28775 灧 ; -+,0x42,0x2a,0x2f,0x0a,0x4f,0x2a,0x2f,0x10,0x17,0x10,0x67,0x24,0x27,0x24,0x22,0x2f,0x88,0xa8,0xef,0xa9,0xf2,0xbf,0xf5,0x15,0x95,0x1f,0xd0,0x50,0xd0,0x51,0x91,0xef -+// 28776 灨 ; -+,0x42,0x21,0x2f,0x04,0x0f,0x40,0x27,0x24,0x17,0x14,0x67,0x22,0x2f,0x22,0x22,0x22,0x10,0x1f,0xd2,0xac,0xd2,0x7d,0x88,0xbe,0x80,0xbe,0xa2,0x3e,0xa2,0x3e,0x14,0x22 -+// 28777 灩 ; -+,0x0a,0x4f,0x2a,0x2f,0x0a,0x4a,0x2f,0x00,0x1f,0x10,0x6f,0x28,0x2f,0x28,0x25,0x2f,0xa4,0xe4,0xbf,0xe4,0xa4,0xbf,0xe8,0x0a,0x9f,0x01,0xbe,0xaa,0xaa,0xaa,0x2a,0xff -+// 28778 灪 ; -+,0x04,0x44,0x3f,0x2e,0x55,0x24,0x20,0x0f,0x2a,0x25,0x26,0x67,0x24,0x27,0x24,0x27,0x84,0xf4,0xaf,0x76,0xad,0xf4,0x00,0xff,0x43,0xa4,0x69,0xe2,0x04,0xd9,0x06,0xb8 -+// 28779 火 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x11,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x80,0xc0,0x80,0x88,0x8c,0x90,0xa0,0x80,0x40,0x40,0x20,0x10,0x18,0x0e,0x04,0x00 -+// 28780 灬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x12,0x11,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x44,0x22,0x22,0x00,0x00,0x00,0x00 -+// 28781 灭 ; -+,0x00,0x3f,0x00,0x00,0x00,0x08,0x08,0x09,0x11,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x04,0xfe,0x80,0x80,0x84,0x84,0xc8,0x50,0x20,0x20,0x10,0x18,0x0c,0x07,0x02,0x00 -+// 28782 灮 ; -+,0x00,0x00,0x04,0x05,0x09,0x02,0x0c,0x33,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x80,0x88,0x88,0x50,0x20,0x10,0x0e,0xe4,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 28783 灯 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2a,0x2c,0x48,0x08,0x0c,0x12,0x11,0x20,0x20,0x40,0x00,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00 -+// 28784 灰 ; -+,0x01,0x01,0x01,0x3f,0x02,0x02,0x02,0x06,0x05,0x05,0x08,0x08,0x11,0x12,0x24,0x00,0x00,0x00,0x02,0xff,0x20,0x20,0x26,0x38,0x20,0x50,0x50,0x88,0x0c,0x07,0x02,0x00 -+// 28785 灱 ; -+,0x08,0x09,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x0c,0x12,0x12,0x20,0x21,0x42,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x84,0x14,0x08,0x00 -+// 28786 灲 ; -+,0x04,0x04,0x04,0x04,0x15,0x16,0x24,0x04,0x04,0x06,0x09,0x09,0x10,0x10,0x20,0x00,0x02,0x03,0x82,0x92,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x0a,0x04,0x00 -+// 28787 灳 ; -+,0x04,0x04,0x0f,0x08,0x11,0x21,0x45,0x05,0x09,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x02,0xff,0x02,0x02,0x22,0x22,0x42,0x82,0x82,0x42,0x22,0x1a,0x04,0x14,0x08 -+// 28788 灴 ; -+,0x08,0x08,0x09,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x12,0x23,0x40,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 28789 灵 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x1f,0x00,0x00,0x04,0x04,0x09,0x01,0x02,0x04,0x18,0x20,0x04,0xfe,0x04,0xfc,0x04,0xfc,0x84,0xc8,0x88,0x90,0x40,0x20,0x10,0x0e,0x04,0x00 -+// 28790 灶 ; -+,0x10,0x10,0x10,0x14,0x14,0x58,0x53,0x50,0x10,0x10,0x18,0x14,0x24,0x27,0x40,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 28791 灷 ; -+,0x00,0x00,0x08,0x09,0x11,0x02,0x0c,0x72,0x02,0x7f,0x04,0x04,0x08,0x10,0x20,0x00,0x80,0x88,0x88,0x50,0x20,0x18,0x07,0x12,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x00 -+// 28792 灸 ; -+,0x01,0x03,0x04,0x08,0x10,0x21,0x06,0x18,0x64,0x05,0x09,0x02,0x04,0x18,0x60,0x00,0x00,0xf0,0x20,0x40,0xa0,0x18,0x06,0x82,0x88,0x90,0x40,0x20,0x18,0x0f,0x02,0x00 -+// 28793 灹 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x4b,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0x1c,0xe0,0x20,0x20,0x22,0x3f,0xe0,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 28794 灺 ; -+,0x08,0x08,0x08,0x0a,0x0c,0x2b,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x10,0x90,0x90,0x92,0x9f,0xf2,0x92,0x92,0x92,0x9a,0x94,0x90,0x81,0x81,0x7f,0x00 -+// 28795 灻 ; -+,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x04,0x04,0x08,0x01,0x02,0x0c,0x30,0x00,0x40,0x44,0xfe,0x40,0x42,0xff,0x00,0x44,0x44,0x48,0xb0,0x10,0x08,0x07,0x02,0x00 -+// 28796 灼 ; -+,0x08,0x08,0x0a,0x0a,0x2c,0x29,0x4a,0x08,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x20,0x40,0x7f,0x81,0x01,0x41,0x21,0x11,0x11,0x01,0x01,0x02,0x0a,0x04,0x00 -+// 28797 災 ; -+,0x00,0x04,0x08,0x11,0x08,0x04,0x00,0x00,0x08,0x08,0x10,0x01,0x02,0x0c,0x30,0x00,0x00,0x44,0x88,0x10,0x88,0x44,0x88,0x88,0x90,0x80,0xc0,0x20,0x18,0x07,0x02,0x00 -+// 28798 灾 ; -+,0x01,0x00,0x1f,0x10,0x20,0x00,0x00,0x08,0x09,0x09,0x11,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0xff,0x82,0xc4,0x80,0x88,0x88,0x50,0x40,0x20,0x10,0x0c,0x07,0x02,0x00 -+// 28799 灿 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x14,0x12,0x12,0x20,0x20,0x40,0x00,0x10,0x18,0x10,0x10,0x93,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x02 -+// 28800 炀 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x48,0x08,0x08,0x0c,0x12,0x11,0x22,0x20,0x43,0x00,0x00,0xfe,0x04,0x08,0x10,0x20,0x7f,0xa5,0x25,0x49,0x89,0x11,0x22,0xc2,0x0a,0x04 -+// 28801 炁 ; -+,0x00,0x0f,0x00,0x10,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x14,0x12,0x11,0x21,0x00,0x00,0xfc,0x80,0x80,0xfe,0x40,0x40,0x42,0x42,0x3e,0x00,0x44,0x22,0x11,0x11,0x00 -+// 28802 炂 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x49,0x0a,0x08,0x14,0x12,0x12,0x21,0x40,0x00,0x00,0x10,0x50,0x48,0x48,0x84,0xa7,0x22,0x20,0x40,0x48,0x44,0x9e,0xe2,0x82,0x00 -+// 28803 炃 ; -+,0x02,0x02,0x04,0x08,0x17,0x20,0x01,0x06,0x18,0x04,0x04,0x09,0x02,0x0c,0x30,0x00,0x20,0x10,0x08,0x07,0xfa,0x88,0x08,0x28,0x90,0x88,0xd0,0x20,0x18,0x07,0x02,0x00 -+// 28804 炄 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x49,0x08,0x08,0x14,0x12,0x22,0x20,0x43,0x00,0x00,0xfe,0x24,0x24,0x24,0x24,0x24,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0xff,0x00 -+// 28805 炅 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x04,0x05,0x09,0x12,0x02,0x04,0x08,0x30,0x08,0xfc,0x08,0xf8,0x08,0xf8,0x80,0x80,0x84,0x48,0x50,0x20,0x10,0x08,0x07,0x02 -+// 28806 炆 ; -+,0x08,0x08,0x08,0x0b,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x21,0x42,0x00,0x40,0x20,0x22,0xff,0x84,0x84,0x88,0x88,0x50,0x50,0x20,0x50,0x8c,0x07,0x02,0x00 -+// 28807 炇 ; -+,0x04,0x04,0x05,0x05,0x26,0x24,0x24,0x45,0x04,0x0a,0x09,0x11,0x10,0x20,0x40,0x00,0x20,0x20,0x20,0x42,0x7f,0x84,0xc4,0x44,0x28,0x28,0x10,0x18,0x24,0x43,0x82,0x00 -+// 28808 炈 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x29,0x48,0x08,0x08,0x14,0x12,0x12,0x20,0x41,0x06,0x00,0x7c,0x44,0x44,0x44,0x87,0x00,0xfc,0x44,0x44,0x48,0x28,0x30,0x4c,0x87,0x02 -+// 28809 炉 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x0c,0x12,0x11,0x21,0x42,0x04,0x20,0x10,0x12,0xff,0x82,0x82,0x82,0xfe,0x82,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 28810 炊 ; -+,0x08,0x08,0x08,0x0a,0x2c,0x29,0x29,0x4a,0x08,0x08,0x14,0x12,0x22,0x21,0x42,0x0c,0x40,0x40,0x40,0xfe,0x82,0x24,0x20,0x20,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 28811 炋 ; -+,0x08,0x09,0x0a,0x0a,0x0c,0x28,0x28,0x48,0x08,0x09,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0xff,0x08,0x10,0x10,0x30,0x30,0x54,0x92,0x11,0x11,0x10,0x10,0x10,0x10,0x10 -+// 28812 炌 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2d,0x2a,0x48,0x08,0x08,0x14,0x12,0x12,0x20,0x41,0x02,0x20,0x20,0x50,0x48,0x84,0x03,0x4a,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 28813 炍 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x13,0x21,0x22,0x44,0x00,0x00,0x0e,0xf0,0x80,0x80,0xfe,0xc4,0xc4,0xa8,0xa8,0x90,0x10,0x28,0x47,0x82,0x00 -+// 28814 炎 ; -+,0x00,0x00,0x04,0x04,0x09,0x02,0x0c,0x30,0x04,0x04,0x09,0x01,0x02,0x0c,0x30,0x00,0x80,0x88,0x90,0xa0,0x40,0x30,0x8c,0xc0,0x88,0x88,0x50,0x20,0x18,0x0f,0x02,0x00 -+// 28815 炏 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x49,0x08,0x08,0x14,0x12,0x20,0x21,0x42,0x04,0x20,0x30,0x20,0x22,0x22,0xa4,0xa8,0x20,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 28816 炐 ; -+,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x28,0x48,0x08,0x14,0x13,0x12,0x20,0x20,0x40,0x00,0x10,0x10,0x12,0xff,0x10,0x10,0xfe,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x10 -+// 28817 炑 ; -+,0x08,0x08,0x08,0x0a,0x0b,0x2c,0x28,0x48,0x08,0x15,0x15,0x12,0x24,0x20,0x40,0x00,0x20,0x20,0x20,0x24,0xfe,0x70,0x70,0xa8,0xa8,0x28,0x24,0x27,0x22,0x20,0x20,0x20 -+// 28818 炒 ; -+,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x49,0x0a,0x08,0x14,0x12,0x12,0x20,0x20,0x43,0x0c,0x10,0x10,0x10,0x14,0x92,0x91,0x11,0x10,0x12,0x12,0x04,0x08,0x30,0xc0,0x00,0x00 -+// 28819 炓 ; -+,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x48,0x08,0x09,0x14,0x12,0x20,0x20,0x40,0x00,0x08,0x88,0x48,0x48,0x08,0x88,0x48,0x4a,0x0f,0xf8,0x08,0x08,0x08,0x08,0x08,0x08 -+// 28820 炔 ; -+,0x08,0x08,0x0a,0x0b,0x0c,0x28,0x28,0x48,0x0b,0x08,0x14,0x12,0x21,0x22,0x44,0x08,0x20,0x20,0x20,0xfc,0x24,0x24,0x44,0x44,0xff,0x50,0x90,0x88,0x08,0x04,0x07,0x02 -+// 28821 炕 ; -+,0x08,0x08,0x08,0x0b,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x21,0x42,0x04,0x40,0x20,0x20,0xff,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 28822 炖 ; -+,0x08,0x08,0x08,0x09,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x10,0x10,0x12,0xff,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 28823 炗 ; -+,0x02,0x02,0x7f,0x02,0x02,0x03,0x02,0x00,0x04,0x04,0x09,0x01,0x02,0x0c,0x30,0x00,0x10,0x10,0xff,0x10,0x10,0xf0,0x90,0x84,0x88,0xd0,0x40,0x20,0x18,0x07,0x02,0x00 -+// 28824 炘 ; -+,0x08,0x08,0x0a,0x0a,0x0c,0x28,0x28,0x48,0x08,0x08,0x14,0x13,0x21,0x22,0x44,0x00,0x00,0x0e,0xf0,0x80,0x80,0x82,0xff,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x00 -+// 28825 炙 ; -+,0x01,0x03,0x04,0x0a,0x19,0x24,0x03,0x0c,0x30,0x08,0x09,0x11,0x02,0x04,0x18,0x60,0x00,0xf8,0x08,0x10,0x20,0xc0,0x00,0x80,0x88,0x88,0x50,0x20,0x10,0x08,0x07,0x02 -+// 28826 炚 ; -+,0x00,0x00,0x7c,0x48,0x49,0x49,0x79,0x4a,0x48,0x48,0x48,0x78,0x49,0x42,0x0c,0x00,0x20,0x30,0x20,0x22,0x22,0x24,0x28,0x30,0x50,0x50,0x88,0x88,0x04,0x03,0x02,0x00 -+// 28827 炛 ; -+,0x00,0x00,0x08,0x09,0x12,0x04,0x1a,0x62,0x04,0x0c,0x14,0x24,0x47,0x04,0x04,0x04,0x80,0x88,0x88,0x50,0x20,0x18,0x47,0x62,0x44,0x4e,0x70,0xc0,0x41,0x41,0x3f,0x00 -+// 28828 炜 ; -+,0x08,0x08,0x0b,0x0a,0x2a,0x2d,0x28,0x48,0x0b,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x21,0x21,0x21,0x2a,0x24,0x20,0x20 -+// 28829 炝 ; -+,0x08,0x08,0x0a,0x0a,0x0c,0x29,0x2a,0x28,0x48,0x14,0x12,0x12,0x20,0x20,0x40,0x00,0x20,0x20,0x50,0x50,0x88,0x04,0xfb,0x88,0x88,0x88,0xa8,0x90,0x82,0x82,0x7e,0x00 -+// 28830 炞 ; -+,0x08,0x08,0x08,0x0b,0x09,0x2a,0x2c,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x40,0x20,0x20,0xff,0x20,0x20,0x20,0x28,0x24,0x22,0x22,0x20,0x20,0x20,0x20,0x00 -+// 28831 炟 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x48,0x08,0x08,0x08,0x14,0x12,0x20,0x23,0x40,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00,0x00,0xff,0x00,0x00 -+// 28832 炠 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10 -+// 28833 炡 ; -+,0x08,0x09,0x0a,0x0a,0x0c,0x28,0x28,0x48,0x08,0x0c,0x12,0x12,0x20,0x23,0x40,0x00,0x00,0xff,0x10,0x10,0x10,0x90,0x9e,0x90,0x90,0x90,0x90,0x90,0x90,0xff,0x00,0x00 -+// 28834 炢 ; -+,0x08,0x08,0x0a,0x0a,0x2d,0x28,0x28,0x48,0x08,0x14,0x12,0x21,0x22,0x44,0x00,0x00,0x10,0x14,0x12,0x10,0xff,0x38,0x38,0x54,0x54,0x92,0x92,0x11,0x10,0x10,0x10,0x00 -+// 28835 炣 ; -+,0x08,0x08,0x09,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0x14,0x08,0x00 -+// 28836 炤 ; -+,0x08,0x09,0x08,0x0a,0x0a,0x2c,0x28,0x28,0x49,0x08,0x0c,0x12,0x12,0x20,0x40,0x00,0x00,0xfe,0x22,0x22,0x22,0x42,0x44,0x94,0x08,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 28837 炥 ; -+,0x10,0x10,0x13,0x14,0x58,0x53,0x52,0x52,0x13,0x1a,0x14,0x24,0x20,0x41,0x02,0x00,0x50,0x50,0xfe,0x52,0x52,0xfe,0x50,0x50,0xfe,0x52,0x52,0x9a,0x94,0x10,0x10,0x00 -+// 28838 炦 ; -+,0x10,0x10,0x10,0x13,0x14,0x54,0x58,0x50,0x10,0x18,0x15,0x15,0x22,0x24,0x4b,0x00,0x40,0x48,0x44,0xff,0x40,0x40,0x7e,0x44,0xc4,0xa8,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 28839 炧 ; -+,0x08,0x08,0x0a,0x0a,0x0d,0x2a,0x28,0x28,0x4b,0x08,0x18,0x14,0x22,0x20,0x40,0x00,0x80,0x82,0xff,0x80,0x20,0xa4,0xbe,0xe4,0xa4,0xa4,0xa4,0x94,0x89,0x81,0x7f,0x00 -+// 28840 炨 ; -+,0x08,0x08,0x08,0x0a,0x2b,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x10,0xff,0x81,0x02,0x40,0x42,0x43,0x4c,0x70,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 28841 炩 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x29,0x4a,0x09,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x20,0x50,0x50,0x88,0xa4,0x13,0x10,0xfe,0x04,0x08,0x90,0x60,0x20,0x30,0x10 -+// 28842 炪 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x12,0x10,0x92,0x92,0x92,0x92,0xfe,0x82,0x02 -+// 28843 炫 ; -+,0x08,0x08,0x09,0x0a,0x0a,0x2c,0x28,0x49,0x08,0x08,0x14,0x12,0x22,0x21,0x40,0x00,0x20,0x10,0xff,0x20,0x20,0x44,0x46,0xfc,0x88,0x10,0x20,0x44,0x82,0xff,0x81,0x01 -+// 28844 炬 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x82,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82,0x80,0x80,0x82,0xff,0x80 -+// 28845 炭 ; -+,0x00,0x10,0x10,0x1f,0x04,0x7f,0x04,0x04,0x08,0x0a,0x0a,0x14,0x11,0x22,0x4c,0x10,0x80,0x84,0x84,0xfc,0x00,0xff,0x40,0x44,0x44,0x48,0xa0,0xa0,0x10,0x0c,0x07,0x02 -+// 28846 炮 ; -+,0x08,0x08,0x0a,0x0a,0x0d,0x29,0x2a,0x4c,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x80,0x82,0xff,0x82,0x02,0xfa,0x8a,0x8a,0xfa,0x82,0x8a,0x84,0x81,0x81,0x7f,0x00 -+// 28847 炯 ; -+,0x08,0x09,0x09,0x0b,0x2d,0x29,0x49,0x09,0x09,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0x00,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x02,0x0a,0x04 -+// 28848 炰 ; -+,0x04,0x07,0x08,0x10,0x2f,0x08,0x0f,0x08,0x08,0x08,0x07,0x00,0x12,0x11,0x21,0x00,0x00,0xfc,0x04,0x04,0xe4,0x24,0xe4,0x04,0x29,0x11,0xff,0x00,0x22,0x11,0x11,0x00 -+// 28849 炱 ; -+,0x01,0x02,0x04,0x0f,0x00,0x0f,0x08,0x08,0x0f,0x04,0x04,0x09,0x01,0x02,0x0c,0x30,0x00,0x10,0x08,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x80,0x8c,0x50,0x20,0x10,0x0e,0x04 -+// 28850 炲 ; -+,0x04,0x04,0x04,0x05,0x06,0x14,0x15,0x24,0x24,0x0a,0x09,0x10,0x10,0x20,0x40,0x00,0x20,0x30,0x20,0x48,0x44,0x9e,0xe2,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 28851 炳 ; -+,0x08,0x09,0x0a,0x0a,0x2c,0x29,0x29,0x49,0x09,0x0d,0x13,0x11,0x21,0x21,0x41,0x01,0x00,0xff,0x10,0x10,0x10,0xfe,0x22,0x22,0x32,0x4a,0x4a,0x82,0x02,0x02,0x0a,0x04 -+// 28852 炴 ; -+,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x0b,0x14,0x12,0x12,0x20,0x20,0x41,0x02,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x28,0x28,0x48,0x44,0x84,0x07,0x02 -+// 28853 炵 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2d,0x28,0x48,0x08,0x19,0x14,0x12,0x22,0x20,0x40,0x00,0x40,0x40,0x7e,0x84,0xc8,0x30,0x28,0x47,0xa2,0x10,0x10,0x40,0x30,0x18,0x08,0x00 -+// 28854 炶 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x10,0x10,0x10,0x12,0x1f,0x10,0x10,0x12,0xff,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 28855 炷 ; -+,0x08,0x08,0x0a,0x0b,0x0c,0x28,0x28,0x48,0x09,0x14,0x12,0x12,0x20,0x23,0x40,0x00,0x40,0x20,0x24,0xfe,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x22,0xff,0x00,0x00 -+// 28856 炸 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2d,0x2a,0x48,0x08,0x14,0x12,0x12,0x20,0x20,0x40,0x00,0x40,0x40,0x42,0xff,0xa0,0x20,0x24,0x3e,0x20,0x24,0x3e,0x20,0x20,0x20,0x20,0x20 -+// 28857 点 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x14,0x12,0x22,0x00,0x80,0x80,0xfc,0x80,0x88,0xfc,0x08,0x08,0x08,0xf8,0x08,0x88,0x44,0x22,0x22,0x00 -+// 28858 為 ; -+,0x00,0x08,0x04,0x3f,0x01,0x01,0x03,0x02,0x04,0x0f,0x10,0x2a,0x49,0x09,0x00,0x00,0x80,0x80,0x80,0xf0,0x10,0x10,0xfc,0x04,0x08,0xfe,0x02,0x4a,0x2a,0x22,0x14,0x08 -+// 28859 炻 ; -+,0x08,0x09,0x0a,0x0a,0x2c,0x28,0x28,0x48,0x11,0x1a,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0xff,0x20,0x20,0x20,0x40,0x40,0xfe,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 28860 炼 ; -+,0x08,0x08,0x09,0x0a,0x2a,0x2c,0x28,0x48,0x09,0x18,0x14,0x12,0x20,0x21,0x42,0x00,0x20,0x22,0xff,0x20,0x40,0x78,0x90,0x90,0xff,0x90,0x14,0x92,0x91,0x11,0x50,0x20 -+// 28861 炽 ; -+,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x28,0x48,0x08,0x14,0x12,0x12,0x20,0x21,0x42,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x48,0x44,0xc2,0x83,0x01,0x01,0x00 -+// 28862 炾 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x08,0x0c,0x12,0x12,0x20,0x41,0x02,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0xaa,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 28863 炿 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x4b,0x08,0x08,0x14,0x15,0x21,0x22,0x44,0x00,0x10,0x24,0xfe,0x84,0xa4,0x94,0x84,0xff,0x84,0x84,0x84,0x04,0x04,0x14,0x08,0x00 -+// 28864 烀 ; -+,0x08,0x08,0x09,0x0a,0x0a,0x2c,0x28,0x4b,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x04,0x1e,0xf0,0x13,0x92,0x54,0x58,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 28865 烁 ; -+,0x08,0x08,0x09,0x0b,0x2d,0x29,0x29,0x48,0x08,0x0c,0x12,0x12,0x21,0x22,0x40,0x00,0x04,0x1e,0xe0,0x10,0x10,0x10,0xff,0x10,0x10,0x54,0xd2,0x91,0x11,0x10,0x50,0x20 -+// 28866 烂 ; -+,0x10,0x11,0x10,0x14,0x14,0x59,0x50,0x50,0x10,0x11,0x18,0x24,0x24,0x23,0x40,0x00,0x00,0x06,0x84,0x48,0x52,0xff,0x00,0x00,0x00,0xfe,0x00,0x00,0x02,0xff,0x00,0x00 -+// 28867 烃 ; -+,0x08,0x09,0x08,0x0a,0x2a,0x2c,0x28,0x4b,0x08,0x14,0x12,0x12,0x20,0x23,0x40,0x00,0x00,0xfe,0x04,0x08,0x10,0x2c,0xc3,0x01,0x00,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 28868 烄 ; -+,0x08,0x08,0x08,0x09,0x0a,0x2c,0x28,0x49,0x0a,0x08,0x14,0x12,0x22,0x20,0x41,0x06,0x20,0x10,0x10,0xff,0x08,0x44,0x82,0x85,0x44,0x48,0x28,0x10,0x28,0x4c,0x87,0x02 -+// 28869 烅 ; -+,0x08,0x08,0x08,0x0b,0x0b,0x2d,0x29,0x49,0x11,0x19,0x15,0x15,0x21,0x21,0x47,0x00,0x20,0x30,0x20,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 28870 烆 ; -+,0x08,0x08,0x08,0x09,0x2a,0x2c,0x28,0x49,0x0a,0x10,0x18,0x14,0x22,0x20,0x40,0x00,0x40,0x5f,0x80,0x00,0x40,0x5f,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88 -+// 28871 烇 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2d,0x2a,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x41,0x00,0x10,0x10,0x28,0x44,0x82,0x01,0x04,0xfe,0x10,0x10,0xfe,0x10,0x10,0x12,0xff,0x00 -+// 28872 烈 ; -+,0x3f,0x04,0x04,0x07,0x08,0x08,0x15,0x25,0x02,0x04,0x18,0x60,0x12,0x11,0x11,0x20,0xe2,0x02,0x12,0xd2,0x92,0x92,0x12,0x12,0x02,0x0a,0x04,0x08,0x26,0x13,0x11,0x00 -+// 28873 烉 ; -+,0x01,0x03,0x04,0x18,0x6f,0x08,0x09,0x0a,0x00,0x04,0x04,0x09,0x02,0x04,0x18,0x60,0x00,0xf8,0x10,0x20,0xfe,0xa2,0x12,0x0a,0x80,0x84,0xc8,0x20,0x10,0x0c,0x07,0x02 -+// 28874 烊 ; -+,0x08,0x09,0x08,0x0b,0x0c,0x28,0x29,0x48,0x08,0x14,0x13,0x12,0x20,0x20,0x40,0x00,0x04,0x04,0x88,0xfe,0x20,0x20,0xfe,0x20,0x20,0x22,0xff,0x20,0x20,0x20,0x20,0x20 -+// 28875 烋 ; -+,0x04,0x04,0x08,0x1b,0x28,0x48,0x08,0x09,0x0a,0x08,0x00,0x14,0x12,0x11,0x21,0x00,0x20,0x20,0x20,0xff,0x70,0xa8,0xa8,0x24,0x27,0x22,0x20,0x44,0x22,0x11,0x11,0x00 -+// 28876 烌 ; -+,0x08,0x08,0x09,0x0b,0x0d,0x29,0x29,0x49,0x09,0x09,0x15,0x15,0x25,0x21,0x41,0x01,0x88,0x88,0x08,0x08,0x7f,0x18,0x18,0x2c,0x2c,0x4a,0x4a,0x89,0x08,0x08,0x08,0x08 -+// 28877 烍 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2d,0x28,0x49,0x08,0x18,0x14,0x12,0x22,0x21,0x42,0x04,0x10,0x90,0x94,0xfe,0x90,0x10,0x12,0xff,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 28878 烎 ; -+,0x1f,0x04,0x04,0x04,0x3f,0x04,0x04,0x04,0x00,0x04,0x05,0x09,0x02,0x04,0x18,0x60,0x7f,0x08,0x08,0x08,0xff,0x08,0x88,0x80,0x88,0xc8,0x50,0x20,0x20,0x18,0x0e,0x04 -+// 28879 烏 ; -+,0x01,0x02,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x24,0x22,0x42,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0xf8,0x00,0xff,0x00,0xff,0x02,0x92,0x4a,0x4a,0x0a,0x04 -+// 28880 烐 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x4b,0x08,0x08,0x14,0x12,0x21,0x21,0x42,0x04,0x10,0x20,0xfe,0x82,0xa2,0x92,0x92,0xff,0x82,0xa2,0x92,0x92,0x02,0x02,0x0a,0x04 -+// 28881 烑 ; -+,0x08,0x08,0x08,0x0a,0x2b,0x2d,0x28,0x48,0x08,0x0b,0x14,0x12,0x22,0x21,0x42,0x04,0x00,0x48,0x48,0x4a,0x4a,0x4c,0xc8,0x48,0xcc,0x4a,0x49,0x89,0x88,0x09,0x07,0x00 -+// 28882 烒 ; -+,0x08,0x08,0x08,0x0a,0x0b,0x2c,0x28,0x49,0x08,0x08,0x14,0x12,0x13,0x20,0x40,0x00,0x08,0x0c,0x0a,0x08,0xff,0x08,0x08,0xe8,0x88,0x88,0x88,0xe5,0x05,0x03,0x01,0x00 -+// 28883 烓 ; -+,0x08,0x08,0x08,0x09,0x0a,0x2c,0x2b,0x28,0x48,0x08,0x15,0x12,0x22,0x20,0x43,0x00,0x20,0x20,0x24,0xfe,0x20,0x22,0xff,0x00,0x20,0x24,0xfe,0x20,0x20,0x22,0xff,0x00 -+// 28884 烔 ; -+,0x08,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x09,0x09,0x15,0x15,0x21,0x21,0x41,0x01,0x00,0xfe,0x02,0x02,0x7a,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 28885 烕 ; -+,0x00,0x00,0x00,0x1f,0x10,0x1f,0x12,0x12,0x1a,0x1b,0x12,0x15,0x24,0x28,0x51,0x00,0x20,0x28,0x24,0xfe,0x20,0xa4,0x24,0xa4,0xa8,0x28,0x10,0x10,0xa9,0x45,0x83,0x00 -+// 28886 烖 ; -+,0x02,0x02,0x1f,0x02,0x02,0x7f,0x02,0x02,0x12,0x12,0x25,0x04,0x08,0x11,0x20,0x00,0x20,0x28,0xa4,0x24,0x20,0xff,0x10,0x52,0x54,0x88,0x18,0xa8,0x45,0x85,0x03,0x01 -+// 28887 烗 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x43,0x00,0x20,0x10,0x10,0xff,0x20,0x24,0x44,0xf8,0x12,0x22,0x44,0x88,0x34,0xc2,0x02,0x00 -+// 28888 烘 ; -+,0x08,0x08,0x08,0x0a,0x0d,0x28,0x28,0x28,0x48,0x0b,0x14,0x12,0x20,0x21,0x42,0x00,0x48,0x6c,0x48,0x48,0xfe,0x48,0x48,0x48,0x48,0xff,0x10,0x48,0x84,0x02,0x02,0x00 -+// 28889 烙 ; -+,0x08,0x08,0x08,0x0a,0x0b,0x2c,0x28,0x28,0x49,0x0a,0x18,0x14,0x22,0x20,0x40,0x00,0x40,0x40,0xfc,0x84,0x48,0x30,0x30,0x48,0x87,0xfe,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 28890 烚 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x29,0x4a,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x20,0x50,0x50,0x88,0x87,0x7a,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 28891 烛 ; -+,0x08,0x08,0x08,0x0a,0x0b,0x2d,0x29,0x49,0x09,0x09,0x0c,0x12,0x10,0x23,0x41,0x00,0x20,0x30,0x20,0x20,0xfe,0x24,0x24,0x24,0xfc,0x24,0x28,0x24,0x3e,0xe2,0x00,0x00 -+// 28892 烜 ; -+,0x08,0x09,0x0a,0x0a,0x0c,0x28,0x28,0x48,0x08,0x14,0x12,0x12,0x20,0x20,0x43,0x00,0x00,0xff,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00,0x00,0xff,0x00 -+// 28893 烝 ; -+,0x00,0x1f,0x00,0x00,0x3e,0x06,0x04,0x08,0x12,0x21,0x5f,0x00,0x12,0x11,0x21,0x00,0x00,0xf8,0x20,0xc4,0x8c,0xd0,0xa0,0x98,0x87,0x02,0xfc,0x00,0x22,0x11,0x11,0x00 -+// 28894 烞 ; -+,0x08,0x08,0x08,0x0a,0x0b,0x2c,0x28,0x49,0x09,0x0a,0x14,0x12,0x22,0x20,0x40,0x00,0x44,0x44,0x44,0x44,0xf4,0xc4,0xc6,0x65,0x55,0x44,0x44,0x44,0x44,0x44,0x44,0x44 -+// 28895 烟 ; -+,0x08,0x09,0x09,0x09,0x2b,0x2d,0x29,0x49,0x09,0x09,0x15,0x15,0x21,0x21,0x41,0x01,0x00,0xff,0x11,0x11,0x11,0x7d,0x11,0x11,0x29,0x29,0x45,0x85,0x01,0x01,0xff,0x01 -+// 28896 烠 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x09,0x0a,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x20,0x20,0xff,0x40,0x7e,0xc2,0xc2,0x7e,0x42,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 28897 烡 ; -+,0x00,0x08,0x08,0x11,0x02,0x0c,0x32,0x02,0x1f,0x02,0x02,0x3f,0x02,0x04,0x08,0x10,0x80,0x88,0x88,0x50,0x20,0x18,0x17,0x12,0xfe,0x10,0x10,0xff,0x10,0x08,0x0c,0x04 -+// 28898 烢 ; -+,0x08,0x08,0x0a,0x0a,0x0d,0x28,0x29,0x48,0x08,0x0b,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x10,0xff,0x81,0x02,0x1c,0xe0,0x20,0x3f,0xe0,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 28899 烣 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x09,0x15,0x12,0x12,0x24,0x48,0x00,0x20,0x20,0x22,0xff,0x48,0x49,0x49,0xaa,0xa8,0x08,0x14,0x14,0x22,0x43,0x82,0x00 -+// 28900 烤 ; -+,0x08,0x08,0x09,0x0a,0x0c,0x2b,0x28,0x28,0x48,0x0b,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x22,0xfa,0x24,0x2a,0xff,0x20,0x7e,0xa0,0x20,0x3c,0x04,0x04,0x04,0x28,0x10 -+// 28901 烥 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x02,0xff,0x90,0x90,0x90,0xfe,0x82,0x82,0x82,0xfe,0x90,0x90,0x90,0x92,0xff,0x80 -+// 28902 烦 ; -+,0x08,0x09,0x08,0x0a,0x2c,0x28,0x28,0x48,0x08,0x08,0x0c,0x12,0x12,0x20,0x40,0x03,0x00,0xff,0x10,0x20,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0xaa,0x24,0x46,0x82,0x02 -+// 28903 烧 ; -+,0x08,0x08,0x0b,0x0a,0x0c,0x28,0x29,0x2e,0x4b,0x08,0x14,0x12,0x21,0x21,0x42,0x04,0x40,0x40,0xfe,0x44,0x28,0x72,0x9a,0x07,0xfe,0x90,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 28904 烨 ; -+,0x08,0x08,0x0a,0x0a,0x0d,0x2a,0x28,0x28,0x48,0x08,0x1b,0x14,0x22,0x20,0x40,0x00,0x50,0x58,0x91,0x93,0x94,0x99,0x91,0x8f,0xa0,0x22,0xff,0x20,0x20,0x20,0x20,0x20 -+// 28905 烩 ; -+,0x08,0x08,0x08,0x0a,0x0c,0x29,0x2a,0x2c,0x48,0x0b,0x14,0x12,0x22,0x21,0x40,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfc,0x00,0x02,0xff,0x40,0x48,0x84,0xfe,0x82,0x00 -+// 28906 烪 ; -+,0x09,0x08,0x08,0x0b,0x0c,0x28,0x28,0x4b,0x08,0x08,0x14,0x12,0x21,0x22,0x4c,0x00,0x04,0x84,0x48,0xfe,0x20,0x20,0x20,0xff,0x20,0x50,0x50,0x88,0x04,0x07,0x02,0x00 -+// 28907 烫 ; -+,0x11,0x08,0x44,0x25,0x28,0x08,0x31,0x10,0x13,0x00,0x08,0x09,0x12,0x04,0x18,0x60,0xfc,0x18,0x60,0xff,0x4a,0x92,0x22,0xca,0x84,0x98,0xa0,0x40,0x20,0x18,0x0f,0x02 -+// 28908 烬 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x51,0x12,0x12,0x1a,0x14,0x24,0x24,0x40,0x00,0x00,0xfc,0x04,0x04,0xfc,0x24,0x10,0x08,0x4c,0x27,0x32,0x90,0x60,0x30,0x10,0x00 -+// 28909 热 ; -+,0x08,0x08,0x7f,0x08,0x09,0x0c,0x78,0x28,0x09,0x2a,0x14,0x00,0x14,0x32,0x62,0x40,0x40,0x40,0xfc,0x48,0x48,0xc8,0x68,0xb4,0x15,0x05,0x03,0x88,0x44,0x66,0x22,0x00 -+// 28910 烮 ; -+,0x3f,0x04,0x04,0x0f,0x18,0x29,0x06,0x0c,0x10,0x68,0x09,0x11,0x02,0x04,0x18,0x60,0xc2,0x13,0x12,0xd2,0x92,0x12,0x0a,0x84,0x80,0x86,0xd8,0x20,0x10,0x0c,0x07,0x02 -+// 28911 烯 ; -+,0x11,0x10,0x10,0x14,0x15,0x1b,0x50,0x50,0x11,0x1b,0x15,0x25,0x21,0x21,0x40,0x00,0x04,0xcc,0x30,0x48,0xa4,0xff,0x40,0xa0,0xfc,0x24,0x24,0x24,0x34,0x28,0x20,0x20 -+// 28912 烰 ; -+,0x10,0x13,0x10,0x15,0x14,0x59,0x50,0x50,0x10,0x10,0x1b,0x14,0x24,0x20,0x40,0x00,0x3e,0xe4,0x46,0x24,0xa8,0xfe,0x04,0x08,0x30,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 28913 烱 ; -+,0x08,0x09,0x09,0x09,0x0b,0x2d,0x29,0x49,0x09,0x09,0x15,0x15,0x21,0x21,0x41,0x01,0x00,0xff,0x01,0x09,0x29,0x25,0x45,0xb9,0x29,0x29,0x29,0x39,0x01,0x01,0x05,0x02 -+// 28914 烲 ; -+,0x04,0x04,0x3f,0x04,0x07,0x7c,0x24,0x15,0x0a,0x00,0x08,0x19,0x02,0x04,0x18,0x60,0x0e,0x70,0x40,0x42,0x7f,0x48,0x88,0x08,0x88,0x84,0xdc,0x40,0x20,0x18,0x0f,0x02 -+// 28915 烳 ; -+,0x08,0x08,0x0b,0x08,0x2a,0x2d,0x29,0x49,0x09,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0x28,0x24,0xff,0x20,0x22,0xff,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x04 -+// 28916 烴 ; -+,0x08,0x09,0x08,0x08,0x0a,0x2d,0x29,0x28,0x48,0x15,0x14,0x12,0x20,0x20,0x43,0x00,0x00,0xfe,0x00,0x92,0xa4,0x48,0x24,0x92,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 28917 烵 ; -+,0x08,0x08,0x09,0x0a,0x0a,0x2d,0x29,0x49,0x0a,0x0a,0x14,0x12,0x12,0x20,0x40,0x00,0x48,0x48,0xff,0x48,0x48,0x02,0xff,0x02,0x02,0x42,0x32,0x12,0x02,0x04,0x14,0x08 -+// 28918 烶 ; -+,0x08,0x0b,0x08,0x0a,0x0a,0x2d,0x2b,0x48,0x0a,0x0a,0x15,0x12,0x21,0x22,0x44,0x00,0x02,0xc7,0xb8,0x88,0x88,0x08,0xff,0x48,0x48,0x48,0xbf,0x80,0x60,0x1f,0x02,0x00 -+// 28919 烷 ; -+,0x08,0x08,0x09,0x09,0x0a,0x2c,0x28,0x48,0x0b,0x14,0x12,0x12,0x21,0x42,0x04,0x08,0x20,0x10,0xff,0x01,0x02,0xf8,0x00,0x00,0xfe,0x90,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 28920 烸 ; -+,0x10,0x10,0x10,0x11,0x16,0x54,0x58,0x50,0x13,0x10,0x18,0x14,0x25,0x20,0x40,0x00,0x80,0x82,0xff,0x00,0xfc,0x84,0xa4,0x94,0xff,0xa4,0x94,0x84,0xff,0x04,0x14,0x08 -+// 28921 烹 ; -+,0x00,0x00,0x3f,0x00,0x07,0x04,0x07,0x00,0x1f,0x00,0x00,0x00,0x01,0x14,0x12,0x21,0x80,0x42,0xff,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x18,0x60,0x40,0x40,0x84,0x22,0x11 -+// 28922 烺 ; -+,0x08,0x08,0x09,0x0b,0x0b,0x2d,0x29,0x29,0x49,0x09,0x15,0x15,0x25,0x21,0x41,0x01,0x40,0x24,0xfe,0x04,0x04,0xfc,0x04,0x04,0xfc,0x22,0x26,0x18,0x10,0x4c,0x87,0x02 -+// 28923 烻 ; -+,0x10,0x10,0x13,0x10,0x15,0x19,0x52,0x53,0x50,0x14,0x1a,0x15,0x22,0x24,0x48,0x10,0x00,0x06,0xd8,0x88,0x08,0x2a,0x2f,0xa8,0xa8,0xa8,0xbf,0x20,0x80,0x60,0x1f,0x02 -+// 28924 烼 ; -+,0x08,0x0b,0x08,0x08,0x0a,0x2d,0x2a,0x48,0x08,0x09,0x14,0x12,0x23,0x20,0x40,0x00,0x02,0xff,0x20,0x40,0xc4,0x24,0x68,0x50,0x98,0x34,0x54,0x93,0x12,0x10,0xa0,0x40 -+// 28925 烽 ; -+,0x08,0x08,0x08,0x0a,0x2d,0x28,0x29,0x0e,0x08,0x08,0x14,0x13,0x20,0x20,0x40,0x00,0x20,0x7e,0x44,0xa8,0x10,0x6c,0x93,0xfe,0x10,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 28926 烾 ; -+,0x00,0x00,0x08,0x19,0x02,0x0c,0x30,0x09,0x12,0x0c,0x70,0x0f,0x00,0x00,0x3f,0x00,0x80,0x84,0x98,0x60,0x18,0x86,0x8a,0x50,0x20,0x98,0x87,0xfa,0x80,0x80,0xfe,0x00 -+// 28927 烿 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x53,0x11,0x19,0x15,0x16,0x22,0x22,0x44,0x00,0x00,0xe2,0x22,0x24,0xa8,0x72,0x22,0xf4,0x29,0x31,0x22,0x22,0xa4,0x68,0x30,0x00 -+// 28928 焀 ; -+,0x10,0x10,0x10,0x11,0x14,0x54,0x58,0x50,0x11,0x1a,0x14,0x22,0x22,0x40,0x00,0x00,0x48,0x44,0x82,0x22,0x20,0x50,0x48,0x87,0x02,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 28929 焁 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x20,0x07,0x00,0x08,0x09,0x11,0x02,0x04,0x18,0x60,0x40,0x40,0x7f,0x92,0x10,0x28,0xc6,0x02,0x80,0x8c,0x50,0x20,0x10,0x0c,0x07,0x02 -+// 28930 焂 ; -+,0x04,0x04,0x0a,0x1a,0x2a,0x4b,0x0a,0x0a,0x08,0x04,0x04,0x09,0x01,0x02,0x0c,0x30,0x20,0x20,0x3f,0x42,0xb4,0x08,0x36,0xc2,0x80,0x8c,0xb0,0x40,0x20,0x18,0x07,0x02 -+// 28931 焃 ; -+,0x08,0x08,0x08,0x0a,0x0b,0x2d,0x28,0x48,0x08,0x08,0x15,0x12,0x20,0x21,0x42,0x00,0x10,0x14,0xfe,0x10,0x10,0xff,0x28,0x28,0xac,0xaa,0x49,0x49,0x88,0x28,0x10,0x00 -+// 28932 焄 ; -+,0x00,0x1f,0x02,0x7f,0x02,0x1f,0x04,0x0f,0x14,0x24,0x47,0x00,0x12,0x11,0x21,0x00,0x08,0xfc,0x08,0xff,0x08,0xf8,0x00,0xf8,0x08,0x08,0xf8,0x08,0x44,0x22,0x22,0x00 -+// 28933 焅 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2d,0x28,0x49,0x08,0x18,0x14,0x12,0x22,0x20,0x40,0x00,0x10,0x90,0x92,0xff,0x90,0x10,0x12,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 28934 焆 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0xfe,0x82,0xfe,0x82,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84,0x00 -+// 28935 焇 ; -+,0x08,0x09,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x0c,0x12,0x12,0x20,0x40,0x00,0x10,0x12,0x92,0x54,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 28936 焈 ; -+,0x04,0x02,0x1f,0x11,0x11,0x1f,0x10,0x20,0x20,0x48,0x09,0x11,0x02,0x04,0x18,0x60,0x20,0x3f,0x22,0x22,0x3e,0x22,0x21,0xa1,0x9f,0x84,0x48,0x50,0x20,0x18,0x07,0x02 -+// 28937 焉 ; -+,0x3f,0x00,0x08,0x08,0x08,0x7f,0x04,0x07,0x08,0x1f,0x00,0x14,0x12,0x22,0x00,0x00,0xfe,0x80,0xfc,0x80,0x82,0xff,0x04,0xfe,0x00,0xff,0x02,0x92,0x4a,0x44,0x14,0x08 -+// 28938 焊 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x09,0x08,0x14,0x13,0x20,0x20,0x40,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x10,0x12,0xff,0x10,0x10,0x10,0x10 -+// 28939 焋 ; -+,0x11,0x11,0x11,0x1f,0x01,0x3f,0x11,0x11,0x21,0x48,0x08,0x11,0x02,0x04,0x18,0x60,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x00,0x84,0x8c,0x50,0x20,0x18,0x0f,0x02 -+// 28940 焌 ; -+,0x08,0x08,0x08,0x0b,0x0a,0x2c,0x28,0x29,0x4a,0x10,0x19,0x16,0x24,0x20,0x43,0x0c,0x20,0x50,0x88,0xfc,0x04,0x90,0x8c,0x42,0x7c,0x88,0x88,0x50,0x30,0xc8,0x07,0x02 -+// 28941 焍 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x0c,0x14,0x12,0x21,0x22,0x40,0x00,0x84,0x44,0x48,0xfe,0x12,0x12,0xfe,0x90,0xff,0x31,0x51,0x91,0x15,0x12,0x10,0x10 -+// 28942 焎 ; -+,0x04,0x04,0x3f,0x04,0x05,0x0e,0x74,0x24,0x04,0x15,0x0a,0x14,0x12,0x11,0x21,0x00,0x0e,0x70,0x40,0x40,0x7f,0x44,0x44,0x84,0x84,0x04,0x04,0x48,0x24,0x12,0x12,0x00 -+// 28943 焏 ; -+,0x00,0x1f,0x00,0x00,0x1e,0x12,0x12,0x12,0x1e,0x10,0x02,0x11,0x12,0x11,0x21,0x00,0x00,0xfc,0x18,0x60,0x9f,0xa2,0x92,0x8c,0x8c,0x92,0xa1,0x04,0x22,0x11,0x11,0x00 -+// 28944 焐 ; -+,0x08,0x09,0x08,0x0a,0x0a,0x2c,0x28,0x4b,0x08,0x18,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0xfe,0x20,0x20,0xfc,0x44,0x44,0xff,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 28945 焑 ; -+,0x08,0x09,0x09,0x09,0x0b,0x2d,0x29,0x49,0x09,0x09,0x0d,0x13,0x11,0x21,0x41,0x00,0x00,0xff,0x11,0x11,0x11,0xff,0x31,0x39,0x55,0x53,0x91,0x11,0x11,0xff,0x01,0x00 -+// 28946 焒 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2c,0x28,0x48,0x09,0x09,0x15,0x13,0x21,0x21,0x41,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 28947 焓 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2d,0x2a,0x48,0x08,0x10,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x20,0x50,0x48,0xa6,0x13,0xfc,0x08,0x08,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 28948 焔 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2d,0x2a,0x48,0x08,0x08,0x18,0x14,0x12,0x20,0x40,0x00,0x20,0x3e,0x42,0x42,0x8a,0x04,0xbf,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2,0x00 -+// 28949 焕 ; -+,0x10,0x10,0x10,0x11,0x16,0x59,0x51,0x51,0x11,0x17,0x18,0x14,0x24,0x20,0x43,0x0c,0x80,0x80,0xf8,0x10,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x48,0x8c,0x07,0x02 -+// 28950 焖 ; -+,0x12,0x11,0x10,0x12,0x16,0x5a,0x52,0x52,0x12,0x13,0x12,0x2a,0x26,0x22,0x42,0x02,0x00,0x02,0xbf,0x02,0x22,0x12,0x12,0x42,0xca,0x56,0x52,0x32,0x02,0x02,0x0a,0x04 -+// 28951 焗 ; -+,0x08,0x09,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x09,0x15,0x12,0x22,0x24,0x48,0x10,0x00,0xfe,0x02,0x02,0xfe,0x00,0xfe,0x02,0x02,0x7a,0x4a,0x7a,0x4a,0x02,0x14,0x08 -+// 28952 焘 ; -+,0x00,0x1f,0x00,0x1f,0x01,0x3f,0x02,0x07,0x09,0x10,0x20,0x00,0x12,0x11,0x11,0x20,0x80,0xfe,0x80,0xfc,0x00,0xff,0x0a,0xff,0x08,0x88,0xa8,0x10,0x44,0x22,0x21,0x00 -+// 28953 焙 ; -+,0x08,0x08,0x09,0x08,0x0a,0x2c,0x28,0x4b,0x08,0x08,0x0c,0x12,0x10,0x20,0x40,0x00,0x20,0x10,0xfe,0x00,0x82,0x44,0x28,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 28954 焚 ; -+,0x04,0x04,0x3f,0x0c,0x0e,0x15,0x25,0x44,0x00,0x04,0x04,0x09,0x02,0x04,0x18,0x60,0x08,0x08,0x7f,0x18,0x2c,0x4a,0x89,0x08,0x80,0x8c,0xd0,0x20,0x10,0x08,0x07,0x02 -+// 28955 焛 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x20,0x20,0x24,0x24,0x28,0x21,0x22,0x2c,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x82,0x9a,0xe2,0x82,0xc2,0x22,0x1a,0x02,0x0a,0x04 -+// 28956 焜 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x28,0x48,0x08,0x14,0x12,0x12,0x20,0x40,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x08,0x8b,0x8c,0xe8,0x88,0xa9,0xc9,0x87,0x00 -+// 28957 焝 ; -+,0x08,0x08,0x08,0x08,0x0a,0x2c,0x28,0x48,0x10,0x18,0x14,0x12,0x22,0x20,0x40,0x00,0x0e,0xf0,0x90,0x90,0xff,0x88,0xa5,0xc3,0xfe,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 28958 焞 ; -+,0x08,0x08,0x0b,0x08,0x0a,0x2c,0x28,0x48,0x09,0x10,0x18,0x15,0x24,0x20,0x40,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x0c,0x10,0xff,0x10,0x10,0x50,0x20 -+// 28959 焟 ; -+,0x08,0x08,0x08,0x09,0x0a,0x2c,0x2b,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 28960 焠 ; -+,0x08,0x08,0x0b,0x0a,0x0a,0x2c,0x29,0x29,0x4a,0x18,0x17,0x12,0x20,0x20,0x40,0x00,0x40,0x20,0xff,0x88,0x88,0x88,0x54,0x12,0x22,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 28961 無 ; -+,0x08,0x08,0x1f,0x29,0x49,0x09,0x3f,0x09,0x09,0x09,0x7f,0x00,0x14,0x12,0x31,0x61,0x00,0x00,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x00,0x44,0x22,0x11,0x11 -+// 28962 焢 ; -+,0x08,0x08,0x09,0x09,0x0a,0x2c,0x28,0x29,0x48,0x08,0x14,0x12,0x22,0x20,0x41,0x00,0x20,0x10,0xff,0x01,0x4a,0x44,0x82,0x00,0xfe,0x10,0x10,0x10,0x10,0x12,0xff,0x00 -+// 28963 焣 ; -+,0x00,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x17,0x79,0x21,0x01,0x14,0x12,0x33,0x61,0x00,0x00,0xff,0x22,0x22,0x24,0x14,0x08,0xdc,0x27,0x42,0x00,0x44,0x22,0x33,0x11,0x00 -+// 28964 焤 ; -+,0x00,0x1f,0x11,0x11,0x12,0x16,0x1a,0x12,0x22,0x24,0x44,0x19,0x02,0x04,0x18,0x60,0x82,0xff,0x04,0x04,0xff,0x44,0x24,0x24,0x94,0x88,0xc6,0x28,0x10,0x08,0x07,0x02 -+// 28965 焥 ; -+,0x08,0x08,0x09,0x09,0x2a,0x2c,0x28,0x49,0x11,0x1a,0x14,0x20,0x20,0x41,0x06,0x00,0x20,0x10,0xff,0x01,0x82,0x80,0xfe,0x12,0x32,0xb2,0x5a,0x54,0x91,0x11,0x0f,0x00 -+// 28966 焦 ; -+,0x04,0x04,0x0f,0x18,0x28,0x4f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x14,0x12,0x33,0x21,0x80,0x42,0xff,0x40,0x40,0xfe,0x40,0xfe,0x40,0x42,0xff,0x00,0x44,0x22,0x33,0x11 -+// 28967 焧 ; -+,0x08,0x08,0x0a,0x0a,0x0d,0x2a,0x28,0x49,0x08,0x14,0x14,0x12,0x22,0x24,0x40,0x00,0x00,0x50,0x48,0x84,0x27,0x4a,0x84,0xfe,0x02,0xa0,0x92,0x91,0x85,0x84,0x7c,0x00 -+// 28968 焨 ; -+,0x08,0x08,0x08,0x0a,0x0c,0x28,0x29,0x49,0x09,0x09,0x15,0x11,0x11,0x21,0x41,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0x0a,0x04,0x00 -+// 28969 焩 ; -+,0x08,0x09,0x09,0x0b,0x0d,0x29,0x29,0x49,0x09,0x19,0x15,0x16,0x22,0x24,0x48,0x00,0x00,0xef,0x29,0x29,0xef,0x29,0x29,0xef,0x29,0x29,0x29,0x29,0x29,0xb5,0x42,0x00 -+// 28970 焪 ; -+,0x08,0x08,0x09,0x0b,0x0d,0x2a,0x28,0x49,0x10,0x18,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x10,0xff,0x2a,0x44,0x82,0xfc,0x04,0xfc,0x80,0xfe,0x02,0x02,0x02,0x14,0x08 -+// 28971 焫 ; -+,0x08,0x08,0x0b,0x0a,0x2c,0x28,0x29,0x49,0x09,0x11,0x19,0x15,0x25,0x21,0x41,0x00,0x88,0x88,0xff,0x88,0xa8,0x20,0xfe,0x22,0x22,0x52,0x4a,0x8a,0x02,0x0a,0x04,0x00 -+// 28972 焬 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x0b,0x14,0x12,0x13,0x24,0x43,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x40,0xff,0x2a,0x4a,0x92,0x22,0xc2,0x14,0x08 -+// 28973 焭 ; -+,0x04,0x05,0x16,0x14,0x2a,0x11,0x1f,0x10,0x23,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x10,0x12,0x54,0x58,0x24,0x42,0xff,0x02,0xe4,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 28974 焮 ; -+,0x10,0x10,0x13,0x12,0x56,0x5b,0x52,0x52,0x12,0x12,0x12,0x2a,0x24,0x24,0x48,0x00,0x00,0x68,0x88,0x10,0x1f,0xe2,0xa4,0xd0,0x90,0x90,0x98,0x94,0xa4,0xa3,0xc2,0x00 -+// 28975 焯 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x21,0x20,0x40,0x00,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x10,0x10,0xff,0x10,0x10,0x10 -+// 28976 焰 ; -+,0x08,0x08,0x08,0x0a,0x2c,0x29,0x28,0x49,0x0f,0x09,0x15,0x13,0x21,0x21,0x41,0x00,0x20,0x20,0x7e,0x42,0x84,0x08,0x62,0x8f,0x02,0x02,0xde,0x02,0x02,0xfe,0x02,0x00 -+// 28977 焱 ; -+,0x00,0x00,0x08,0x09,0x12,0x0c,0x30,0x08,0x0a,0x2c,0x28,0x4c,0x12,0x11,0x20,0x43,0x80,0x8c,0x98,0x60,0x18,0x0f,0x12,0x10,0x12,0x94,0xb0,0x28,0x28,0x44,0x87,0x02 -+// 28978 焲 ; -+,0x10,0x10,0x17,0x12,0x54,0x58,0x51,0x51,0x13,0x1d,0x15,0x13,0x21,0x21,0x41,0x01,0x20,0x10,0xff,0x10,0x90,0x9f,0x32,0x2a,0x64,0x94,0x18,0x08,0x14,0x26,0x43,0x82 -+// 28979 焳 ; -+,0x08,0x08,0x0a,0x0b,0x0d,0x2b,0x2d,0x49,0x09,0x09,0x15,0x13,0x11,0x21,0x41,0x00,0xa0,0x90,0x80,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x00,0x00 -+// 28980 焴 ; -+,0x08,0x08,0x0b,0x08,0x0a,0x2d,0x28,0x49,0x09,0x11,0x19,0x15,0x23,0x23,0x41,0x01,0x40,0x20,0xff,0x48,0x84,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0x0a,0x04 -+// 28981 焵 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x51,0x11,0x19,0x15,0x15,0x25,0x21,0x41,0x01,0x00,0xff,0x05,0x45,0x29,0xff,0x11,0x55,0x55,0x55,0x7d,0x45,0x01,0x01,0x05,0x02 -+// 28982 然 ; -+,0x04,0x04,0x0f,0x08,0x19,0x15,0x32,0x4a,0x04,0x08,0x13,0x20,0x14,0x12,0x33,0x21,0x20,0x28,0xa4,0xa4,0xff,0x20,0x30,0x50,0x48,0x87,0x02,0x00,0x44,0x22,0x33,0x11 -+// 28983 焷 ; -+,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x28,0x48,0x08,0x18,0x14,0x13,0x20,0x20,0x40,0x00,0x10,0x20,0xff,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 28984 焸 ; -+,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x10,0x10,0x04,0x04,0x19,0x02,0x04,0x18,0x60,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0xa2,0x80,0x86,0xd8,0x20,0x10,0x0c,0x07,0x02 -+// 28985 焹 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x51,0x11,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0x00,0xff,0x01,0x45,0x29,0xff,0x21,0x11,0xff,0x41,0x41,0x41,0x7d,0x01,0x05,0x02 -+// 28986 焺 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x11,0x10,0x1b,0x14,0x22,0x20,0x40,0x01,0x02,0xff,0x82,0xfe,0x82,0xfe,0x82,0x34,0xc4,0x44,0xff,0x44,0x44,0x84,0x84,0x04 -+// 28987 焻 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 28988 焼 ; -+,0x08,0x08,0x0b,0x0a,0x0c,0x28,0x2b,0x48,0x08,0x13,0x18,0x14,0x24,0x21,0x46,0x00,0x20,0x20,0xfe,0x20,0xa4,0x84,0xff,0x84,0x84,0xff,0x48,0x48,0x89,0x09,0x07,0x00 -+// 28989 焽 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x01,0x02,0x08,0x08,0x11,0x02,0x04,0x18,0x60,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x84,0x14,0x88,0x88,0xbc,0x40,0x20,0x18,0x0f,0x04 -+// 28990 焾 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2d,0x2a,0x48,0x08,0x18,0x14,0x13,0x21,0x22,0x40,0x00,0x20,0x20,0x50,0x48,0xa4,0x23,0xfc,0x08,0x50,0x20,0x94,0x52,0x51,0x44,0x3c,0x00 -+// 28991 焿 ; -+,0x10,0x10,0x13,0x16,0x56,0x5a,0x52,0x53,0x12,0x1a,0x16,0x26,0x22,0x44,0x09,0x02,0x20,0x10,0xff,0x10,0x10,0xfe,0x12,0xff,0x22,0xfe,0x22,0x50,0x48,0x84,0x07,0x02 -+// 28992 煀 ; -+,0x13,0x12,0x12,0x17,0x5a,0x52,0x52,0x52,0x12,0x1a,0x16,0x12,0x24,0x24,0x48,0x10,0xff,0x02,0x02,0xfe,0x12,0x10,0x92,0x92,0xfe,0x90,0x12,0x93,0x92,0x92,0xfe,0x82 -+// 28993 煁 ; -+,0x10,0x10,0x13,0x14,0x14,0x58,0x50,0x50,0x17,0x11,0x19,0x15,0x25,0x21,0x41,0x00,0x84,0x84,0xff,0x84,0xfc,0x84,0xfc,0x84,0xff,0x00,0x28,0x44,0x84,0xff,0x00,0x00 -+// 28994 煂 ; -+,0x08,0x08,0x0b,0x08,0x2a,0x2c,0x29,0x49,0x09,0x09,0x14,0x17,0x10,0x20,0x40,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfc,0x24,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 28995 煃 ; -+,0x10,0x10,0x13,0x14,0x14,0x59,0x56,0x50,0x10,0x13,0x18,0x15,0x20,0x20,0x47,0x00,0x20,0x20,0xff,0x50,0x88,0x27,0x22,0xfc,0x20,0xfe,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 28996 煄 ; -+,0x08,0x08,0x08,0x08,0x09,0x2a,0x2c,0x28,0x48,0x08,0x14,0x12,0x10,0x20,0x43,0x00,0x00,0x1e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 28997 煅 ; -+,0x10,0x13,0x12,0x16,0x1b,0x52,0x52,0x52,0x13,0x1a,0x16,0x13,0x26,0x22,0x42,0x02,0xc0,0xbc,0x24,0x24,0xa4,0x27,0x40,0x7e,0xa4,0x24,0xa4,0x18,0x18,0x2c,0x47,0x82 -+// 28998 煆 ; -+,0x11,0x11,0x15,0x15,0x19,0x51,0x51,0x51,0x11,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0xee,0x22,0x22,0x22,0xee,0x00,0x00,0xde,0x12,0x12,0xd4,0x0c,0x08,0x14,0x23,0x42 -+// 28999 煇 ; -+,0x08,0x09,0x09,0x0a,0x2c,0x28,0x68,0x48,0x10,0x18,0x14,0x25,0x20,0x40,0x00,0x00,0x00,0xff,0x12,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 29000 煈 ; -+,0x10,0x13,0x12,0x16,0x5a,0x53,0x53,0x13,0x13,0x12,0x2a,0x2a,0x25,0x44,0x08,0x10,0x00,0xfc,0x34,0xc4,0x44,0xf4,0x54,0x54,0xf4,0x44,0x54,0x74,0xd5,0x05,0x03,0x01 -+// 29001 煉 ; -+,0x08,0x08,0x0b,0x0a,0x2d,0x29,0x29,0x49,0x09,0x09,0x14,0x14,0x21,0x22,0x44,0x00,0x20,0x22,0xff,0x20,0xfe,0x22,0xaa,0x6a,0xfe,0x72,0xe8,0xa8,0x24,0x27,0x22,0x20 -+// 29002 煊 ; -+,0x08,0x08,0x09,0x0a,0x2c,0x28,0x28,0x48,0x08,0x10,0x18,0x14,0x22,0x20,0x43,0x00,0x20,0x10,0xff,0x02,0x00,0xfc,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 29003 煋 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x09,0x14,0x12,0x12,0x20,0x41,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x12,0x90,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 29004 煌 ; -+,0x08,0x08,0x09,0x0b,0x0d,0x29,0x29,0x48,0x09,0x18,0x15,0x12,0x22,0x23,0x40,0x00,0x20,0x40,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xfe,0x20,0xfe,0x20,0x22,0xff,0x00,0x00 -+// 29005 煍 ; -+,0x10,0x13,0x10,0x16,0x14,0x5b,0x50,0x51,0x11,0x1a,0x14,0x28,0x20,0x40,0x00,0x00,0x68,0x88,0x88,0x88,0xa9,0xea,0xac,0xc8,0xa8,0x94,0x94,0x94,0xa2,0xa3,0xc2,0x80 -+// 29006 煎 ; -+,0x04,0x02,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x15,0x12,0x24,0x22,0x63,0x41,0x10,0x20,0xff,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x14,0x08,0x44,0x22,0x33,0x11 -+// 29007 煏 ; -+,0x08,0x09,0x0a,0x0a,0x0c,0x28,0x28,0x49,0x09,0x19,0x15,0x15,0x21,0x21,0x41,0x00,0x00,0xff,0x00,0xfe,0x82,0xfe,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01,0x00 -+// 29008 煐 ; -+,0x10,0x10,0x13,0x14,0x54,0x59,0x51,0x51,0x11,0x1b,0x14,0x12,0x20,0x21,0x46,0x00,0x88,0x88,0xff,0x88,0x20,0xfc,0x24,0x24,0x24,0xff,0x50,0x50,0x88,0x07,0x02,0x00 -+// 29009 煑 ; -+,0x00,0x00,0x0f,0x00,0x7f,0x06,0x1f,0x64,0x07,0x00,0x08,0x08,0x11,0x06,0x18,0x60,0x80,0x88,0xfc,0x82,0xff,0x08,0xf8,0x08,0xf8,0x80,0x86,0xd8,0x20,0x18,0x07,0x02 -+// 29010 煒 ; -+,0x08,0x09,0x08,0x0b,0x0a,0x2c,0x28,0x48,0x08,0x11,0x19,0x17,0x24,0x20,0x40,0x00,0x20,0xfc,0x44,0xff,0x00,0xfc,0x84,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 29011 煓 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x2b,0x48,0x09,0x09,0x15,0x15,0x21,0x21,0x41,0x01,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x52,0x52,0x0a,0x04 -+// 29012 煔 ; -+,0x04,0x04,0x27,0x24,0x4a,0x09,0x14,0x24,0x14,0x15,0x2a,0x09,0x10,0x20,0x40,0x00,0x08,0x88,0x08,0x0f,0x08,0x88,0x88,0x3e,0xa2,0x22,0x22,0x22,0xbe,0xa2,0x22,0x00 -+// 29013 煕 ; -+,0x00,0x3f,0x22,0x22,0x2f,0x28,0x2f,0x2a,0x22,0x3f,0x20,0x14,0x12,0x33,0x61,0x00,0x00,0xbe,0x22,0x22,0xa2,0xbe,0xa0,0xa0,0x21,0xa1,0x1f,0x44,0x22,0x33,0x11,0x00 -+// 29014 煖 ; -+,0x08,0x09,0x0a,0x0b,0x0d,0x28,0x28,0x4b,0x08,0x08,0x14,0x15,0x22,0x24,0x49,0x06,0x1e,0xe4,0x44,0x28,0xfe,0x40,0x42,0xff,0x40,0xfe,0x84,0x48,0x30,0x58,0x87,0x02 -+// 29015 煗 ; -+,0x08,0x09,0x08,0x0b,0x2d,0x29,0x29,0x49,0x09,0x18,0x17,0x14,0x20,0x20,0x43,0x0c,0x00,0xfe,0x20,0xfe,0x52,0x52,0x52,0x5a,0x04,0x22,0xff,0x30,0x48,0x8c,0x07,0x02 -+// 29016 煘 ; -+,0x08,0x08,0x08,0x0b,0x0a,0x2e,0x2a,0x4a,0x12,0x1a,0x16,0x12,0x24,0x24,0x48,0x00,0x0c,0x0a,0x08,0xff,0x08,0xea,0x0b,0xea,0xac,0xac,0xe8,0xac,0x15,0x23,0x41,0x00 -+// 29017 煙 ; -+,0x08,0x0b,0x08,0x08,0x0b,0x2d,0x29,0x49,0x09,0x08,0x15,0x12,0x22,0x20,0x43,0x00,0x02,0xff,0x50,0x50,0xfe,0x52,0x52,0xfe,0x22,0x24,0xfe,0x20,0x20,0x22,0xff,0x00 -+// 29018 煚 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x08,0x08,0x11,0x02,0x04,0x18,0x60,0x00,0x7f,0x40,0x7e,0x42,0x7e,0x40,0x7f,0xc0,0x88,0xbc,0x40,0x20,0x18,0x07,0x02 -+// 29019 煛 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x08,0x09,0x11,0x02,0x04,0x18,0x60,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0xa2,0x84,0x5e,0x20,0x10,0x0c,0x07,0x02 -+// 29020 煜 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x09,0x08,0x14,0x12,0x12,0x23,0x40,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0xa2,0x10,0xff,0x00,0x86,0x44,0x48,0xff,0x00,0x00 -+// 29021 煝 ; -+,0x08,0x09,0x09,0x09,0x0b,0x2d,0x29,0x49,0x09,0x11,0x19,0x16,0x22,0x24,0x48,0x00,0x00,0xfe,0x22,0x22,0xfe,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 29022 煞 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x41,0x1f,0x01,0x01,0x1f,0x01,0x00,0x24,0x22,0x63,0x41,0x20,0x20,0x22,0x7f,0x44,0xa4,0x24,0x18,0x18,0x67,0x82,0x00,0x44,0x22,0x33,0x11 -+// 29023 煟 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x28,0x48,0x08,0x0c,0x12,0x12,0x20,0x40,0x00,0x00,0xff,0x91,0xff,0x91,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 29024 煠 ; -+,0x11,0x11,0x13,0x15,0x55,0x59,0x51,0x51,0x10,0x13,0x18,0x14,0x25,0x26,0x48,0x00,0x48,0x48,0xff,0x48,0x48,0x78,0x00,0xfe,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 29025 煡 ; -+,0x10,0x13,0x10,0x15,0x15,0x5a,0x53,0x50,0x10,0x14,0x1b,0x15,0x22,0x24,0x48,0x10,0x10,0x90,0xfe,0x10,0x7e,0x12,0xff,0x92,0xfe,0x90,0x7e,0x10,0x90,0x60,0x1f,0x02 -+// 29026 煢 ; -+,0x04,0x05,0x16,0x24,0x0a,0x11,0x1f,0x10,0x2f,0x01,0x01,0x0f,0x01,0x01,0x01,0x00,0x10,0x12,0x54,0x90,0x28,0x44,0xff,0x02,0xf4,0x10,0x10,0xd0,0x09,0x09,0x07,0x01 -+// 29027 煣 ; -+,0x09,0x08,0x08,0x0b,0x0c,0x28,0x29,0x4e,0x08,0x0b,0x14,0x12,0x12,0x23,0x44,0x00,0xfe,0x0c,0x50,0xff,0x32,0x54,0x90,0x50,0x20,0xff,0x30,0x58,0x94,0x13,0x11,0x10 -+// 29028 煤 ; -+,0x08,0x08,0x0b,0x0a,0x2c,0x28,0x28,0x48,0x08,0x0b,0x14,0x14,0x21,0x26,0x58,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x20,0x20,0xff,0x70,0xa8,0x24,0x23,0x21,0x20 -+// 29029 煥 ; -+,0x08,0x08,0x08,0x0a,0x2d,0x29,0x29,0x49,0x09,0x18,0x15,0x12,0x20,0x40,0x01,0x06,0x40,0x7c,0x88,0x10,0xfe,0x52,0x4a,0x86,0x22,0x20,0xff,0x50,0x48,0x8c,0x07,0x02 -+// 29030 煦 ; -+,0x00,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x1e,0x12,0x00,0x14,0x12,0x33,0x61,0x00,0x40,0x40,0xfe,0x02,0xf2,0x92,0x92,0xf2,0x92,0x82,0x14,0x4c,0x22,0x33,0x11,0x00 -+// 29031 照 ; -+,0x00,0x1e,0x12,0x12,0x12,0x1e,0x13,0x12,0x1e,0x12,0x00,0x14,0x12,0x33,0x61,0x00,0xfe,0x22,0x22,0x22,0x4a,0x84,0x7e,0x42,0x42,0x7e,0x42,0x44,0x22,0x33,0x11,0x00 -+// 29032 煨 ; -+,0x08,0x08,0x0a,0x0a,0x0c,0x28,0x28,0x28,0x4b,0x09,0x15,0x13,0x11,0x21,0x41,0x01,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x20,0x26,0x18,0x10,0x4c,0x87,0x02 -+// 29033 煩 ; -+,0x08,0x09,0x08,0x0a,0x0c,0x28,0x28,0x28,0x48,0x08,0x0c,0x12,0x10,0x20,0x41,0x02,0x02,0xff,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x48,0x84,0x03,0x01 -+// 29034 煪 ; -+,0x09,0x08,0x08,0x0b,0x0c,0x28,0x29,0x49,0x09,0x11,0x19,0x15,0x23,0x21,0x41,0x01,0x02,0x84,0x48,0xff,0x48,0x48,0xfe,0x4a,0x4a,0x8e,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 29035 煫 ; -+,0x09,0x08,0x08,0x0b,0x0c,0x28,0x28,0x4b,0x08,0x1b,0x14,0x12,0x23,0x24,0x40,0x00,0x02,0x84,0x48,0xff,0x20,0x42,0xa4,0x68,0x90,0x38,0x54,0x92,0x13,0x10,0x50,0x20 -+// 29036 煬 ; -+,0x08,0x08,0x08,0x0a,0x0c,0x28,0x2b,0x48,0x08,0x09,0x1a,0x14,0x25,0x22,0x41,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x04,0xff,0x80,0xff,0x2a,0x4a,0x92,0x22,0xc2,0x14,0x08 -+// 29037 煭 ; -+,0x12,0x24,0x12,0x00,0x3f,0x08,0x1f,0x20,0x53,0x0c,0x18,0x64,0x12,0x13,0x31,0x20,0x42,0x82,0x52,0x12,0xd2,0x12,0xd2,0x92,0x12,0x0a,0x04,0x44,0x22,0x33,0x11,0x00 -+// 29038 煮 ; -+,0x00,0x00,0x1f,0x00,0x7f,0x01,0x07,0x1c,0x67,0x04,0x07,0x00,0x12,0x11,0x21,0x00,0x80,0x84,0xec,0x92,0xff,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x44,0x22,0x31,0x00 -+// 29039 煯 ; -+,0x09,0x09,0x09,0x09,0x2b,0x2d,0x29,0x48,0x08,0x14,0x14,0x22,0x22,0x40,0x00,0x00,0x08,0x09,0xea,0x0c,0x48,0x89,0x27,0x40,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 29040 煰 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x09,0x09,0x15,0x13,0x21,0x21,0x41,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00,0xef,0x29,0x29,0x29,0x29,0xef,0x29,0x00 -+// 29041 煱 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x49,0x09,0x09,0x15,0x13,0x21,0x21,0x41,0x01,0x00,0x7c,0x44,0x74,0x54,0x54,0x54,0xff,0x01,0x7d,0x45,0x7d,0x45,0x01,0x05,0x02 -+// 29042 煲 ; -+,0x05,0x0d,0x09,0x18,0x2b,0x48,0x08,0x09,0x0a,0x08,0x04,0x09,0x02,0x04,0x18,0x60,0xfc,0x04,0xfc,0x20,0xff,0x60,0xb8,0x26,0x21,0x84,0x8c,0x50,0x20,0x18,0x07,0x02 -+// 29043 煳 ; -+,0x10,0x10,0x10,0x17,0x14,0x58,0x50,0x53,0x12,0x1a,0x17,0x12,0x22,0x20,0x40,0x00,0x80,0x9f,0x91,0xf1,0x91,0x9f,0x91,0xd1,0x51,0x5f,0xd1,0x51,0x21,0x21,0x45,0x82 -+// 29044 煴 ; -+,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x48,0x09,0x15,0x15,0x15,0x21,0x21,0x47,0x00,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 29045 煵 ; -+,0x08,0x08,0x09,0x08,0x2a,0x2d,0x29,0x49,0x09,0x09,0x15,0x13,0x21,0x21,0x41,0x01,0x10,0x10,0xff,0x20,0x20,0xff,0x01,0x45,0x29,0x7d,0x11,0x7d,0x11,0x11,0x15,0x02 -+// 29046 煶 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x4b,0x09,0x18,0x14,0x12,0x21,0x21,0x42,0x04,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xff,0x10,0x90,0x9e,0x90,0xd0,0x30,0x0f,0x02 -+// 29047 煷 ; -+,0x08,0x09,0x08,0x08,0x2a,0x2c,0x28,0x49,0x09,0x1a,0x14,0x12,0x22,0x20,0x41,0x02,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xff,0x01,0x7a,0x48,0x48,0x89,0x89,0x07,0x00 -+// 29048 煸 ; -+,0x08,0x08,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x0a,0x16,0x12,0x14,0x24,0x48,0x00,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x84,0x00 -+// 29049 煹 ; -+,0x10,0x13,0x10,0x15,0x14,0x5b,0x50,0x51,0x11,0x11,0x19,0x17,0x25,0x21,0x41,0x01,0x88,0xfe,0x88,0xfe,0x88,0xff,0x20,0xfc,0x24,0xfc,0x24,0xff,0x04,0x04,0x14,0x08 -+// 29050 煺 ; -+,0x10,0x10,0x12,0x11,0x15,0x58,0x57,0x51,0x11,0x19,0x15,0x25,0x21,0x22,0x44,0x00,0x00,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x51,0x4a,0x44,0x52,0x61,0x40,0x80,0x7f,0x00 -+// 29051 煻 ; -+,0x08,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x15,0x15,0x13,0x22,0x22,0x44,0x08,0x10,0x20,0xff,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 29052 煼 ; -+,0x08,0x08,0x08,0x09,0x0e,0x28,0x28,0x48,0x09,0x0a,0x14,0x12,0x20,0x20,0x43,0x00,0x40,0xff,0xa2,0xaa,0xfa,0x2a,0x54,0x88,0xff,0x22,0xaa,0xfa,0x4a,0x82,0x14,0x08 -+// 29053 煽 ; -+,0x08,0x08,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x09,0x15,0x12,0x12,0x22,0x44,0x08,0x20,0x10,0xfe,0x02,0xfe,0x00,0xee,0x22,0xa2,0x6a,0x26,0x6a,0xa2,0x22,0xaa,0x44 -+// 29054 煾 ; -+,0x08,0x08,0x08,0x0a,0x0c,0x28,0x28,0x28,0x48,0x18,0x14,0x12,0x22,0x24,0x40,0x00,0xfe,0x92,0x92,0xfe,0x92,0xaa,0xc6,0xfe,0x02,0x20,0x92,0x91,0x85,0x84,0x7c,0x00 -+// 29055 煿 ; -+,0x08,0x08,0x09,0x0a,0x0d,0x29,0x29,0x49,0x09,0x09,0x14,0x17,0x20,0x20,0x40,0x00,0x28,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x24,0xff,0x84,0x44,0x14,0x08 -+// 29056 熀 ; -+,0x11,0x11,0x11,0x11,0x55,0x58,0x51,0x50,0x17,0x10,0x18,0x24,0x21,0x41,0x02,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x24,0xa8,0xff,0x90,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 29057 熁 ; -+,0x10,0x11,0x10,0x14,0x55,0x5b,0x51,0x52,0x15,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0x20,0xfc,0x44,0x94,0x08,0xdf,0x49,0xd7,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x0a,0x04 -+// 29058 熂 ; -+,0x10,0x10,0x10,0x15,0x55,0x5a,0x50,0x51,0x11,0x13,0x18,0x25,0x25,0x22,0x44,0x00,0x80,0xfe,0x80,0x7c,0x00,0xfc,0x44,0x54,0x54,0xfc,0xe4,0x55,0x4d,0x43,0x41,0x00 -+// 29059 熃 ; -+,0x00,0x3f,0x02,0x7f,0x0d,0x15,0x24,0x54,0x08,0x04,0x04,0x09,0x02,0x04,0x18,0x60,0x20,0x7e,0xa4,0x98,0x67,0xbe,0x24,0x54,0x88,0x88,0xbc,0x40,0x20,0x18,0x07,0x02 -+// 29060 熄 ; -+,0x08,0x08,0x08,0x0a,0x2c,0x28,0x28,0x48,0x10,0x18,0x16,0x16,0x22,0x24,0x40,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xa4,0x93,0x85,0x84,0x7c,0x00 -+// 29061 熅 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x14,0x22,0x20,0x43,0x00,0x00,0x7c,0x54,0x54,0x6c,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 29062 熆 ; -+,0x10,0x10,0x15,0x14,0x1b,0x50,0x50,0x51,0x10,0x11,0x19,0x15,0x25,0x21,0x47,0x00,0x20,0x20,0xfe,0x20,0xff,0x40,0x88,0xfc,0x02,0xfc,0x54,0x54,0x54,0x54,0xff,0x00 -+// 29063 熇 ; -+,0x10,0x10,0x13,0x14,0x14,0x58,0x50,0x50,0x11,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0x40,0x22,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 29064 熈 ; -+,0x00,0x17,0x15,0x17,0x14,0x14,0x17,0x15,0x15,0x27,0x24,0x48,0x24,0x26,0x42,0x00,0x00,0xdf,0x12,0xd2,0x5e,0x52,0xd0,0x51,0x11,0xcf,0x00,0x88,0x44,0x62,0x22,0x00 -+// 29065 熉 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2d,0x29,0x49,0x11,0x19,0x15,0x15,0x22,0x20,0x41,0x02,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x50,0x8c,0x06,0x02 -+// 29066 熊 ; -+,0x08,0x0a,0x11,0x3f,0x20,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x13,0x14,0x12,0x22,0x00,0x20,0x28,0x3c,0xa2,0xa2,0x1e,0x00,0x26,0x38,0x22,0x22,0x1e,0x44,0x22,0x22,0x00 -+// 29067 熋 ; -+,0x08,0x11,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x11,0x13,0x08,0x09,0x12,0x04,0x18,0x60,0x20,0x2c,0xb2,0xa2,0x1e,0x20,0x2c,0x32,0x22,0x9e,0x84,0x5e,0x20,0x18,0x0f,0x02 -+// 29068 熌 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x51,0x11,0x11,0x19,0x15,0x25,0x21,0x41,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x29,0x11,0x11,0x29,0x45,0x83,0x01,0x01,0x05,0x02 -+// 29069 熍 ; -+,0x08,0x08,0x09,0x09,0x2a,0x2c,0x28,0x48,0x08,0x18,0x14,0x12,0x22,0x20,0x40,0x00,0x20,0x10,0xff,0x01,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29070 熎 ; -+,0x08,0x08,0x09,0x09,0x2a,0x2c,0x28,0x48,0x11,0x1a,0x14,0x22,0x22,0x40,0x00,0x00,0x04,0x1e,0xe0,0x22,0x94,0x94,0x80,0xfe,0x10,0x10,0xff,0x10,0x92,0x92,0xfe,0x00 -+// 29071 熏 ; -+,0x00,0x1f,0x00,0x3f,0x00,0x0f,0x0a,0x0a,0x0f,0x00,0x1f,0x00,0x7f,0x12,0x11,0x21,0x7c,0x80,0x80,0xfe,0x80,0xf8,0xa8,0xa8,0xf8,0x80,0xfc,0x80,0xff,0x24,0x12,0x12 -+// 29072 熐 ; -+,0x08,0x09,0x0a,0x08,0x2a,0x2c,0x28,0x48,0x08,0x10,0x1b,0x14,0x20,0x20,0x41,0x02,0x00,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0xa4,0x20,0xff,0x00,0x50,0x88,0x04,0x02 -+// 29073 熑 ; -+,0x11,0x10,0x17,0x10,0x17,0x58,0x57,0x50,0x53,0x11,0x11,0x1a,0x24,0x28,0x50,0x00,0x08,0x90,0xff,0x90,0xfe,0x92,0xff,0x92,0xfe,0x90,0x98,0x98,0x94,0x93,0x92,0x90 -+// 29074 熒 ; -+,0x04,0x05,0x16,0x24,0x0a,0x11,0x3f,0x20,0x48,0x08,0x08,0x11,0x02,0x04,0x18,0x60,0x10,0x12,0x54,0x90,0x28,0x46,0xff,0x82,0x84,0x8c,0xd0,0x20,0x10,0x08,0x07,0x02 -+// 29075 熓 ; -+,0x08,0x08,0x08,0x08,0x0a,0x2c,0x28,0x48,0x08,0x08,0x14,0x13,0x21,0x22,0x40,0x00,0x20,0x10,0xfe,0x82,0xfe,0x80,0xff,0x80,0xff,0x81,0x15,0x4b,0x29,0x03,0x0a,0x04 -+// 29076 熔 ; -+,0x10,0x10,0x11,0x11,0x56,0x58,0x51,0x52,0x10,0x11,0x1a,0x14,0x22,0x20,0x40,0x00,0x20,0x10,0xff,0x02,0x48,0x84,0x22,0x50,0x88,0x06,0xff,0x84,0x84,0xfc,0x84,0x00 -+// 29077 熕 ; -+,0x08,0x08,0x08,0x09,0x2a,0x2c,0x28,0x48,0x08,0x18,0x14,0x22,0x22,0x40,0x00,0x01,0xfe,0x10,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x28,0x44,0x82,0x01 -+// 29078 熖 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x1e,0xf0,0x02,0x93,0x4a,0x4a,0x20,0xee,0x82,0x82,0xee,0x82,0x82,0xfe,0x82,0x00 -+// 29079 熗 ; -+,0x08,0x08,0x08,0x08,0x09,0x2a,0x2c,0x48,0x08,0x08,0x14,0x15,0x25,0x22,0x42,0x04,0x20,0x30,0x48,0xa4,0x13,0xfe,0x84,0xfc,0x84,0xfc,0x80,0x7e,0x42,0x42,0x7e,0x42 -+// 29080 熘 ; -+,0x08,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x08,0x08,0x14,0x12,0x12,0x20,0x40,0x00,0x60,0xdf,0x09,0x49,0x29,0x51,0xaa,0x44,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 29081 熙 ; -+,0x00,0x3f,0x22,0x22,0x2f,0x29,0x2f,0x22,0x22,0x3f,0x20,0x14,0x12,0x33,0x61,0x00,0x00,0xbe,0x22,0x22,0x3e,0x22,0x20,0x21,0x21,0x9f,0x00,0x44,0x22,0x33,0x11,0x00 -+// 29082 熚 ; -+,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x4b,0x08,0x09,0x14,0x15,0x24,0x20,0x40,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x92,0xff,0x92,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 29083 熛 ; -+,0x09,0x08,0x0a,0x0b,0x2d,0x29,0x28,0x49,0x08,0x0b,0x14,0x14,0x20,0x21,0x42,0x00,0xff,0x48,0x48,0xff,0x49,0xff,0x00,0xfe,0x00,0xff,0x10,0x54,0x92,0x11,0x50,0x20 -+// 29084 熜 ; -+,0x08,0x08,0x09,0x09,0x2b,0x2d,0x29,0x49,0x09,0x09,0x14,0x14,0x12,0x22,0x40,0x00,0x20,0x40,0xfe,0x22,0x3a,0x6a,0x92,0x2a,0xfe,0x02,0x24,0x92,0x91,0x85,0x7c,0x00 -+// 29085 熝 ; -+,0x08,0x08,0x09,0x09,0x2b,0x2d,0x29,0x49,0x09,0x09,0x16,0x12,0x24,0x44,0x08,0x10,0x20,0x10,0xff,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x88,0x8b,0xec,0x88,0xa9,0xc9,0x87 -+// 29086 熞 ; -+,0x10,0x13,0x12,0x13,0x16,0x5b,0x52,0x52,0x13,0x10,0x18,0x15,0x24,0x20,0x43,0x00,0x00,0xff,0x92,0xf2,0x2a,0xe4,0x84,0x8a,0xf3,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 29087 熟 ; -+,0x08,0x04,0x7f,0x12,0x1e,0x00,0x3f,0x02,0x04,0x3f,0x04,0x15,0x28,0x22,0x62,0x00,0x10,0x10,0x90,0x7c,0x14,0x54,0x24,0x34,0x25,0x45,0x83,0x09,0x44,0x26,0x22,0x00 -+// 29088 熠 ; -+,0x08,0x09,0x08,0x09,0x0a,0x2c,0x29,0x48,0x08,0x08,0x14,0x14,0x20,0x20,0x40,0x00,0x00,0xee,0x32,0xaa,0x66,0xaa,0x32,0x40,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 29089 熡 ; -+,0x08,0x08,0x08,0x0b,0x2a,0x2c,0x28,0x49,0x11,0x19,0x14,0x15,0x20,0x20,0x40,0x03,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x12,0xfe,0x20,0xff,0x48,0x90,0x78,0x86 -+// 29090 熢 ; -+,0x10,0x10,0x12,0x15,0x15,0x58,0x50,0x57,0x11,0x19,0x15,0x15,0x23,0x24,0x48,0x00,0x20,0x3e,0x44,0x28,0x18,0x67,0x92,0x7e,0x10,0x7c,0x10,0xff,0x10,0xc0,0x3f,0x02 -+// 29091 熣 ; -+,0x08,0x09,0x09,0x0b,0x0c,0x28,0x29,0x4b,0x15,0x19,0x15,0x25,0x21,0x41,0x01,0x00,0x10,0x12,0x12,0xfe,0xa0,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00,0x00 -+// 29092 熤 ; -+,0x08,0x09,0x09,0x08,0x0a,0x2c,0x29,0x28,0x48,0x09,0x14,0x12,0x22,0x20,0x43,0x00,0x00,0xee,0x22,0xaa,0x66,0xaa,0x32,0x22,0x10,0xfe,0x00,0x84,0x48,0x00,0xff,0x00 -+// 29093 熥 ; -+,0x10,0x12,0x11,0x15,0x14,0x58,0x57,0x51,0x11,0x19,0x15,0x25,0x23,0x44,0x08,0x00,0x7f,0x02,0x14,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x49,0x49,0x45,0xc2,0x3f,0x00 -+// 29094 熦 ; -+,0x08,0x08,0x08,0x08,0x2b,0x2c,0x28,0x49,0x17,0x11,0x19,0x15,0x27,0x21,0x41,0x01,0x20,0x24,0xa2,0xa1,0x26,0x28,0x70,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 29095 熧 ; -+,0x04,0x04,0x08,0x15,0x25,0x0a,0x19,0x29,0x0a,0x0c,0x00,0x09,0x12,0x04,0x18,0x60,0x88,0x88,0x8c,0x52,0x21,0xbe,0x20,0xe0,0x3f,0x84,0x8c,0x50,0x20,0x18,0x07,0x02 -+// 29096 熨 ; -+,0x1f,0x10,0x1f,0x10,0x17,0x10,0x2f,0x2a,0x52,0x0c,0x08,0x11,0x02,0x04,0x18,0x60,0x84,0x84,0x84,0xff,0x04,0x24,0x94,0x04,0x94,0x88,0x8c,0x50,0x20,0x18,0x07,0x02 -+// 29097 熩 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x51,0x11,0x12,0x1a,0x26,0x22,0x24,0x44,0x08,0x20,0xfe,0x02,0xfe,0x02,0x7c,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x81,0x81,0x7f,0x00 -+// 29098 熪 ; -+,0x08,0x08,0x0b,0x08,0x2c,0x2b,0x29,0x49,0x12,0x14,0x18,0x24,0x24,0x20,0x40,0x00,0x48,0xe8,0x9f,0xa2,0x94,0xe8,0x94,0xa8,0xdf,0xa1,0xd2,0x94,0x88,0x90,0xa0,0x80 -+// 29099 熫 ; -+,0x08,0x08,0x09,0x09,0x0b,0x2d,0x29,0x49,0x09,0x11,0x19,0x16,0x22,0x24,0x49,0x00,0x20,0x10,0xff,0x24,0x24,0x24,0xff,0x24,0x24,0x3c,0x00,0x54,0xaa,0x95,0x15,0x00 -+// 29100 熬 ; -+,0x08,0x3f,0x08,0x3f,0x08,0x7f,0x08,0x1f,0x12,0x12,0x2e,0x44,0x14,0x12,0x33,0x21,0x20,0x30,0x22,0x7f,0x44,0xc4,0xa8,0x18,0x18,0x2c,0x47,0x82,0x44,0x22,0x33,0x11 -+// 29101 熭 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x1f,0x00,0x1f,0x00,0x1f,0x04,0x19,0x06,0x78,0x10,0x7f,0x10,0x7e,0x10,0x7f,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x5c,0x30,0x0f -+// 29102 熮 ; -+,0x10,0x13,0x12,0x11,0x54,0x55,0x5a,0x50,0x11,0x1a,0x15,0x22,0x20,0x23,0x40,0x07,0x00,0xde,0x52,0x4a,0xce,0x52,0x22,0x50,0x8c,0x63,0x98,0x66,0x8c,0x30,0xc0,0x00 -+// 29103 熯 ; -+,0x10,0x13,0x10,0x14,0x14,0x59,0x51,0x51,0x50,0x13,0x18,0x17,0x24,0x20,0x43,0x0c,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x50,0x88,0x07,0x02 -+// 29104 熰 ; -+,0x10,0x13,0x12,0x12,0x16,0x5a,0x52,0x52,0x12,0x12,0x12,0x2a,0x26,0x22,0x43,0x00,0x00,0xff,0x00,0x7c,0x44,0x44,0x7c,0x00,0xee,0xaa,0xaa,0xee,0xaa,0x00,0xff,0x00 -+// 29105 熱 ; -+,0x04,0x3f,0x04,0x7f,0x12,0x15,0x24,0x5f,0x04,0x07,0x78,0x20,0x12,0x13,0x21,0x00,0x10,0x90,0x10,0xbe,0x12,0x12,0xd2,0x32,0x33,0x4b,0x81,0x48,0x26,0x33,0x11,0x00 -+// 29106 熲 ; -+,0x20,0x24,0x28,0x31,0x21,0x1f,0x08,0x08,0x2b,0x2c,0x48,0x0c,0x12,0x11,0x20,0x41,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x28,0x44,0x82,0x01 -+// 29107 熳 ; -+,0x08,0x08,0x08,0x0a,0x0a,0x2c,0x29,0x49,0x09,0x08,0x19,0x14,0x22,0x20,0x40,0x07,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x2a,0xfe,0x00,0xfe,0x84,0x48,0x30,0xcf,0x02 -+// 29108 熴 ; -+,0x10,0x12,0x13,0x12,0x15,0x59,0x51,0x51,0x11,0x18,0x15,0x25,0x25,0x21,0x41,0x01,0x20,0x22,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x12,0xd7,0x18,0x51,0x91,0x0f -+// 29109 熵 ; -+,0x08,0x08,0x0b,0x08,0x0a,0x2d,0x29,0x49,0x09,0x09,0x15,0x13,0x11,0x21,0x41,0x01,0x20,0x10,0xff,0x84,0x48,0xff,0x29,0x29,0x45,0x01,0x7d,0x45,0x7d,0x01,0x05,0x02 -+// 29110 熶 ; -+,0x08,0x08,0x08,0x0a,0x2c,0x28,0x2b,0x49,0x09,0x09,0x15,0x15,0x21,0x43,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x20,0xfe,0x32,0xea,0x2c,0xe4,0x2b,0x31,0x20 -+// 29111 熷 ; -+,0x08,0x08,0x0a,0x0b,0x0d,0x29,0x29,0x29,0x48,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x82,0x42,0x44,0xff,0x11,0x55,0x11,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 29112 熸 ; -+,0x13,0x10,0x12,0x13,0x55,0x5a,0x52,0x54,0x18,0x10,0x28,0x24,0x24,0x40,0x00,0x00,0xef,0x94,0x94,0xdf,0x8c,0xd4,0xa5,0x43,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 29113 熹 ; -+,0x00,0x3f,0x00,0x1f,0x08,0x0f,0x02,0x7f,0x00,0x0f,0x08,0x0f,0x14,0x12,0x33,0x61,0x82,0xff,0x80,0xfe,0x04,0xfc,0x10,0xff,0x00,0xfc,0x04,0xfc,0x44,0x22,0x33,0x11 -+// 29114 熺 ; -+,0x10,0x13,0x10,0x15,0x14,0x59,0x51,0x51,0x10,0x1b,0x14,0x15,0x25,0x21,0x41,0x00,0x20,0xfe,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0x00 -+// 29115 熻 ; -+,0x10,0x10,0x10,0x15,0x16,0x58,0x50,0x50,0x10,0x1b,0x15,0x14,0x21,0x22,0x41,0x00,0x20,0x50,0x8c,0x77,0x00,0xfc,0x84,0xfc,0x00,0xde,0x4a,0xc6,0x4a,0x52,0x4a,0x84 -+// 29116 熼 ; -+,0x10,0x11,0x11,0x11,0x15,0x55,0x58,0x50,0x13,0x18,0x14,0x17,0x24,0x21,0x42,0x04,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x8a,0x88,0xfe,0x88,0x88,0xff,0x88,0x04,0x02,0x01 -+// 29117 熽 ; -+,0x10,0x11,0x10,0x17,0x10,0x59,0x52,0x53,0x12,0x13,0x1a,0x17,0x22,0x24,0x48,0x10,0x20,0xfe,0x22,0xff,0x22,0xfe,0xab,0xae,0x22,0xfe,0x22,0xae,0xaa,0xaa,0xaa,0x22 -+// 29118 熾 ; -+,0x11,0x10,0x13,0x14,0x56,0x59,0x57,0x50,0x13,0x12,0x1b,0x16,0x23,0x22,0x41,0x00,0x10,0x90,0xf4,0x12,0x50,0x90,0xff,0x10,0xd2,0x52,0xcc,0x48,0xd5,0x63,0x81,0x00 -+// 29119 熿 ; -+,0x08,0x08,0x09,0x0a,0x2d,0x28,0x29,0x49,0x09,0x19,0x15,0x11,0x24,0x20,0x41,0x02,0x48,0x48,0xfe,0x48,0xff,0x20,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x50,0x8c,0x06,0x02 -+// 29120 燀 ; -+,0x08,0x09,0x09,0x09,0x2a,0x2d,0x29,0x49,0x11,0x19,0x15,0x14,0x23,0x20,0x40,0x00,0x00,0xce,0x4a,0xce,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 29121 燁 ; -+,0x08,0x08,0x0b,0x0a,0x2c,0x28,0x2b,0x48,0x08,0x11,0x18,0x14,0x23,0x20,0x40,0x00,0x84,0x84,0xff,0x84,0x84,0x92,0xff,0x92,0x92,0xff,0x10,0x10,0xff,0x10,0x10,0x10 -+// 29122 燂 ; -+,0x10,0x13,0x10,0x17,0x5a,0x53,0x50,0x51,0x11,0x19,0x15,0x15,0x20,0x27,0x40,0x00,0x00,0xff,0x48,0xff,0x49,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20 -+// 29123 燃 ; -+,0x11,0x11,0x11,0x16,0x5a,0x55,0x52,0x51,0x11,0x12,0x14,0x29,0x26,0x22,0x44,0x00,0x08,0x08,0xec,0x2a,0x48,0x7f,0x88,0x14,0x24,0x42,0x83,0x24,0x92,0xdb,0x49,0x00 -+// 29124 燄 ; -+,0x08,0x08,0x1f,0x11,0x22,0x44,0x18,0x27,0x21,0x21,0x3b,0x21,0x21,0x3f,0x21,0x00,0x10,0x12,0x54,0x50,0x98,0x24,0x52,0x90,0x13,0x54,0x50,0x28,0x24,0x43,0x82,0x00 -+// 29125 燅 ; -+,0x08,0x08,0x3f,0x08,0x08,0x7f,0x12,0x29,0x48,0x3f,0x08,0x08,0x0e,0x78,0x23,0x00,0x10,0x10,0x52,0x54,0x90,0xac,0x42,0x91,0x10,0x52,0x94,0x28,0x44,0x87,0x02,0x00 -+// 29126 燆 ; -+,0x10,0x11,0x10,0x17,0x14,0x59,0x52,0x54,0x10,0x19,0x15,0x21,0x21,0x41,0x01,0x01,0x1c,0xe0,0x20,0xff,0x88,0xfc,0x8b,0xf8,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x0a,0x04 -+// 29127 燇 ; -+,0x08,0x08,0x09,0x0a,0x0d,0x29,0x29,0x49,0x09,0x19,0x15,0x12,0x23,0x20,0x40,0x00,0x84,0x48,0xff,0x48,0xfe,0x4a,0x4e,0x82,0xfe,0x02,0xfe,0x08,0xff,0x48,0x28,0x10 -+// 29128 燈 ; -+,0x08,0x09,0x08,0x0b,0x0c,0x29,0x2a,0x4c,0x08,0x10,0x18,0x14,0x22,0x20,0x43,0x00,0x00,0xd1,0x53,0x4c,0x88,0xfc,0x03,0xfc,0x84,0x84,0xfc,0x04,0x84,0x48,0xff,0x00 -+// 29129 燉 ; -+,0x12,0x11,0x17,0x14,0x1b,0x52,0x53,0x50,0x17,0x10,0x11,0x2f,0x25,0x21,0x45,0x02,0x08,0x08,0xe8,0x10,0xdf,0x52,0xf2,0x24,0xd4,0x98,0xe8,0x18,0x24,0x46,0x83,0x02 -+// 29130 燊 ; -+,0x00,0x04,0x04,0x09,0x06,0x1a,0x12,0x26,0x09,0x11,0x7f,0x00,0x03,0x0c,0x70,0x00,0x80,0xb8,0xc0,0x30,0x0c,0x8b,0xaa,0x2c,0x12,0x61,0xff,0xe0,0x50,0x4c,0x47,0x42 -+// 29131 燋 ; -+,0x08,0x08,0x0a,0x0a,0x2d,0x2a,0x2c,0x48,0x08,0x08,0x14,0x12,0x21,0x21,0x42,0x00,0x40,0x50,0x88,0xff,0x88,0xfe,0x88,0x88,0xfe,0x88,0xff,0x80,0x52,0x29,0x29,0x00 -+// 29132 燌 ; -+,0x08,0x08,0x08,0x0a,0x0b,0x2c,0x28,0x48,0x08,0x18,0x14,0x12,0x20,0x20,0x40,0x01,0x10,0xfe,0x54,0x54,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x28,0x44,0x82 -+// 29133 燍 ; -+,0x12,0x12,0x12,0x17,0x12,0x57,0x5a,0x53,0x12,0x17,0x1a,0x16,0x22,0x24,0x48,0x00,0x40,0x43,0x4c,0xe8,0x48,0xc8,0x4f,0xca,0x4a,0xea,0x92,0x52,0x52,0x22,0x42,0x82 -+// 29134 燎 ; -+,0x10,0x10,0x11,0x12,0x14,0x59,0x53,0x55,0x11,0x11,0x19,0x14,0x25,0x22,0x40,0x00,0x20,0x20,0xfe,0x50,0x88,0xfc,0x0b,0xf8,0x08,0xf8,0x20,0xa8,0x26,0x22,0xa0,0x40 -+// 29135 燏 ; -+,0x09,0x08,0x08,0x0d,0x2a,0x2c,0x29,0x2b,0x49,0x09,0x19,0x15,0x15,0x21,0x41,0x01,0xfc,0x48,0x30,0xfe,0x54,0x98,0x50,0xfe,0x2a,0x4a,0x86,0x7a,0x4a,0x7a,0x0a,0x04 -+// 29136 燐 ; -+,0x10,0x10,0x10,0x15,0x14,0x58,0x51,0x50,0x11,0x12,0x19,0x14,0x25,0x22,0x4c,0x00,0x10,0x92,0x54,0xff,0x58,0x94,0x13,0x84,0xff,0x44,0x54,0x9f,0x04,0x04,0x04,0x04 -+// 29137 燑 ; -+,0x10,0x11,0x10,0x14,0x17,0x5a,0x51,0x51,0x11,0x19,0x15,0x24,0x21,0x40,0x03,0x00,0x20,0xfe,0x84,0x48,0xff,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xff,0x00 -+// 29138 燒 ; -+,0x08,0x08,0x0a,0x0a,0x0d,0x29,0x2b,0x49,0x0b,0x08,0x15,0x14,0x20,0x21,0x46,0x18,0x20,0x20,0xfc,0x20,0xfe,0x08,0xde,0x08,0xdf,0x00,0xfe,0x90,0x90,0x11,0x11,0x0f -+// 29139 燓 ; -+,0x0a,0x09,0x08,0x7d,0x1a,0x1d,0x2a,0x49,0x0a,0x00,0x08,0x18,0x01,0x06,0x18,0x60,0x44,0x44,0x84,0x5f,0x2c,0x4e,0x95,0x64,0x24,0x80,0x86,0xd8,0x20,0x18,0x07,0x02 -+// 29140 燔 ; -+,0x08,0x08,0x09,0x09,0x0a,0x2d,0x28,0x28,0x49,0x0a,0x11,0x19,0x15,0x25,0x21,0x41,0x08,0x3c,0xe2,0x26,0xa8,0xff,0x70,0xa8,0x27,0x22,0xfc,0x24,0xfc,0x24,0xfc,0x04 -+// 29141 燕 ; -+,0x02,0x02,0x7f,0x02,0x0b,0x08,0x7b,0x0a,0x1a,0x6b,0x00,0x14,0x12,0x33,0x61,0x00,0x20,0x20,0xff,0x20,0xe0,0x0a,0xef,0x28,0x29,0xe7,0x00,0x44,0x22,0x33,0x11,0x00 -+// 29142 燖 ; -+,0x08,0x08,0x08,0x0a,0x2c,0x28,0x2b,0x48,0x0b,0x08,0x17,0x14,0x10,0x20,0x40,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x92,0xde,0x04,0xff,0x84,0x44,0x04,0x14,0x08 -+// 29143 燗 ; -+,0x13,0x12,0x13,0x16,0x17,0x5a,0x52,0x52,0x12,0x1a,0x16,0x22,0x22,0x43,0x02,0x02,0xde,0x52,0xde,0x52,0xde,0x02,0x7a,0x4a,0x7a,0x4a,0x7a,0x4a,0x9a,0x12,0x0a,0x04 -+// 29144 燘 ; -+,0x10,0x11,0x11,0x11,0x55,0x59,0x51,0x51,0x11,0x19,0x15,0x21,0x21,0x41,0x01,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x11,0xff,0x49,0x29,0x11,0x29,0xc5,0x01,0x05,0x02 -+// 29145 燙 ; -+,0x21,0x11,0x51,0x29,0x2f,0x10,0x11,0x62,0x24,0x23,0x08,0x08,0x11,0x02,0x0c,0x70,0xf8,0x08,0xf8,0x08,0xff,0x80,0xfe,0x52,0xa2,0x54,0x88,0x8c,0x50,0x30,0x0f,0x02 -+// 29146 燚 ; -+,0x08,0x09,0x2a,0x2c,0x48,0x14,0x2a,0x4a,0x09,0x2a,0x2c,0x52,0x11,0x21,0x41,0x00,0x10,0x12,0x54,0x50,0x98,0x24,0x52,0x90,0x52,0x54,0xa8,0x28,0x44,0x47,0x82,0x00 -+// 29147 燛 ; -+,0x7f,0x09,0x09,0x3f,0x21,0x3f,0x09,0x7f,0x00,0x04,0x04,0x09,0x02,0x04,0x18,0x60,0x7f,0x48,0x48,0x7e,0x42,0x7e,0x48,0x7f,0x80,0x84,0xde,0x20,0x10,0x0c,0x07,0x02 -+// 29148 燜 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x51,0x11,0x11,0x19,0x15,0x25,0x21,0x41,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x09,0x11,0x6d,0xa3,0x29,0x19,0x01,0x01,0x05,0x02 -+// 29149 燝 ; -+,0x08,0x08,0x08,0x08,0x2a,0x2c,0x2b,0x48,0x08,0x08,0x14,0x12,0x12,0x20,0x41,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x10,0x54,0x92,0x51,0x20 -+// 29150 燞 ; -+,0x0a,0x09,0x1f,0x32,0x52,0x1f,0x12,0x1f,0x12,0x1f,0x10,0x14,0x12,0x33,0x21,0x00,0x10,0x10,0xdf,0x21,0x4a,0x88,0x08,0x94,0x24,0xc2,0x83,0x88,0x44,0x66,0x22,0x00 -+// 29151 營 ; -+,0x04,0x15,0x14,0x2a,0x11,0x3f,0x20,0x47,0x04,0x07,0x00,0x0f,0x08,0x0f,0x08,0x00,0x10,0x56,0x50,0x28,0x44,0xff,0x01,0xfa,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0x00 -+// 29152 燠 ; -+,0x10,0x13,0x12,0x13,0x16,0x5b,0x52,0x52,0x13,0x12,0x17,0x28,0x24,0x20,0x43,0x0c,0x40,0xfe,0x22,0x26,0xaa,0xfe,0x62,0xb2,0x2a,0x22,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 29153 燡 ; -+,0x10,0x13,0x12,0x13,0x14,0x59,0x50,0x53,0x10,0x11,0x18,0x17,0x24,0x20,0x40,0x00,0x00,0xff,0x49,0xff,0x20,0xfe,0x20,0xff,0x88,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 29154 燢 ; -+,0x02,0x07,0x18,0x11,0x1e,0x11,0x1e,0x11,0x3f,0x20,0x48,0x08,0x11,0x02,0x0c,0x30,0x00,0x40,0xbc,0x44,0x3c,0x44,0xbc,0x44,0xff,0x81,0x8a,0xd0,0x20,0x18,0x07,0x02 -+// 29155 燣 ; -+,0x10,0x13,0x10,0x11,0x15,0x55,0x59,0x51,0x10,0x11,0x18,0x17,0x24,0x21,0x42,0x04,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x3c,0xe0,0x22,0xff,0xa8,0x24,0x27,0x22 -+// 29156 燤 ; -+,0x10,0x13,0x10,0x14,0x14,0x58,0x50,0x50,0x10,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0x44,0xff,0x44,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x15,0x1d,0xf5,0x41,0x05,0x02 -+// 29157 燥 ; -+,0x08,0x08,0x0a,0x0c,0x2b,0x2a,0x2a,0x4b,0x08,0x0b,0x14,0x14,0x23,0x2c,0x40,0x00,0xfc,0x84,0x84,0xfc,0xde,0x52,0x52,0xde,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20 -+// 29158 燦 ; -+,0x11,0x11,0x15,0x1b,0x14,0x5a,0x51,0x53,0x14,0x13,0x18,0x14,0x21,0x22,0x48,0x00,0x00,0xdf,0x22,0xd4,0x48,0x94,0x22,0x24,0xa8,0xff,0x60,0xb0,0x2c,0x27,0x22,0x20 -+// 29159 燧 ; -+,0x10,0x14,0x12,0x16,0x18,0x50,0x57,0x52,0x13,0x12,0x12,0x2b,0x22,0x45,0x08,0x00,0x86,0x44,0x08,0xff,0x10,0x62,0x94,0x68,0x9c,0x2a,0xca,0x28,0x10,0x80,0x7f,0x02 -+// 29160 燨 ; -+,0x10,0x13,0x10,0x15,0x14,0x5b,0x50,0x51,0x10,0x1b,0x14,0x12,0x23,0x20,0x41,0x00,0x88,0xfe,0x20,0xfe,0x20,0xff,0x10,0xd4,0x50,0xff,0x4a,0xea,0x4d,0x75,0x43,0x81 -+// 29161 燩 ; -+,0x11,0x11,0x13,0x12,0x17,0x5a,0x53,0x50,0x17,0x11,0x19,0x15,0x22,0x22,0x45,0x08,0x08,0x08,0xe8,0x28,0xef,0x32,0xf2,0x92,0xea,0x2a,0xc4,0x44,0x4a,0x52,0x63,0x82 -+// 29162 燪 ; -+,0x10,0x10,0x13,0x15,0x55,0x59,0x52,0x50,0x13,0x10,0x1b,0x14,0x22,0x22,0x44,0x00,0x48,0x48,0xff,0x48,0xfe,0xaa,0x4a,0xb2,0x2a,0x94,0x08,0xa0,0x96,0x85,0x7d,0x00 -+// 29163 燫 ; -+,0x10,0x13,0x12,0x12,0x57,0x5a,0x53,0x52,0x13,0x12,0x1b,0x24,0x25,0x4a,0x14,0x00,0x20,0xff,0x84,0x48,0xfe,0x50,0xfc,0x54,0xff,0x54,0xfc,0xd8,0x54,0x57,0x52,0x50 -+// 29164 燬 ; -+,0x12,0x14,0x14,0x16,0x14,0x5c,0x57,0x50,0x17,0x11,0x29,0x25,0x21,0x2e,0x44,0x00,0x00,0xdc,0x54,0xd4,0x54,0x57,0xe0,0x1f,0xc2,0x12,0x14,0x28,0xd4,0x27,0xc2,0x00 -+// 29165 燭 ; -+,0x09,0x09,0x09,0x0b,0x0d,0x28,0x29,0x2a,0x4d,0x11,0x19,0x14,0x24,0x23,0x40,0x00,0xfe,0x52,0x52,0x52,0xfe,0x80,0xff,0x21,0xfd,0x25,0xfd,0x29,0x3d,0xe5,0x0a,0x04 -+// 29166 燮 ; -+,0x01,0x17,0x10,0x15,0x58,0x53,0x52,0x1b,0x24,0x4f,0x02,0x01,0x00,0x01,0x06,0x38,0x04,0xe4,0x15,0x96,0x24,0xc4,0x4a,0xd1,0x21,0xfc,0x08,0x10,0xe0,0xb8,0x0f,0x02 -+// 29167 燯 ; -+,0x11,0x10,0x13,0x12,0x15,0x58,0x51,0x50,0x10,0x11,0x1a,0x15,0x24,0x20,0x40,0x00,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x50,0x88,0x27,0x12,0xfc,0x08,0x50,0x20,0x10 -+// 29168 燰 ; -+,0x10,0x13,0x11,0x14,0x17,0x5a,0x51,0x51,0x12,0x18,0x14,0x15,0x22,0x20,0x41,0x06,0x1e,0xe0,0x22,0x94,0xff,0x21,0x52,0x45,0x3c,0x40,0xfc,0x48,0x30,0x58,0x8f,0x02 -+// 29169 燱 ; -+,0x08,0x09,0x08,0x2b,0x2c,0x28,0x48,0x08,0x08,0x14,0x14,0x21,0x21,0x42,0x00,0x00,0x20,0xfe,0x48,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x52,0x51,0x45,0x3c,0x00 -+// 29170 燲 ; -+,0x08,0x09,0x08,0x0a,0x0b,0x2c,0x29,0x4a,0x08,0x08,0x14,0x12,0x12,0x20,0x20,0x40,0x20,0xfe,0x42,0x84,0xef,0xa5,0x29,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 29171 燳 ; -+,0x08,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x09,0x09,0x14,0x15,0x25,0x21,0x42,0x00,0x00,0xdf,0x49,0x49,0x55,0xe2,0x5f,0x51,0x51,0xdf,0x11,0x00,0x52,0x29,0x29,0x00 -+// 29172 燴 ; -+,0x10,0x10,0x10,0x15,0x16,0x5b,0x53,0x52,0x13,0x12,0x11,0x29,0x25,0x21,0x41,0x01,0x20,0x50,0x8c,0x7b,0x02,0xfe,0x26,0xaa,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 29173 燵 ; -+,0x10,0x10,0x14,0x12,0x15,0x58,0x50,0x56,0x12,0x12,0x1b,0x16,0x22,0x25,0x48,0x00,0x10,0x10,0xfe,0x10,0xff,0x44,0xfe,0x10,0xfe,0x10,0xff,0x10,0x10,0x90,0x7f,0x02 -+// 29174 燶 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x53,0x52,0x12,0x12,0x1b,0x16,0x22,0x24,0x44,0x08,0x50,0xfe,0x52,0xfe,0x52,0xfe,0xff,0x00,0xfc,0x00,0xff,0xa2,0x94,0xa8,0xc7,0x82 -+// 29175 燷 ; -+,0x10,0x13,0x10,0x15,0x15,0x59,0x51,0x51,0x10,0x11,0x18,0x15,0x24,0x21,0x42,0x00,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfe,0x00,0xff,0x94,0x12,0x51,0x20 -+// 29176 燸 ; -+,0x11,0x10,0x13,0x16,0x15,0x58,0x53,0x50,0x17,0x10,0x1b,0x26,0x22,0x22,0x42,0x02,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x00,0xff,0x40,0xfe,0x92,0x92,0x92,0x8a,0x04 -+// 29177 燹 ; -+,0x3f,0x08,0x15,0x2e,0x54,0x2a,0x55,0x2c,0x04,0x00,0x08,0x09,0x12,0x04,0x18,0x60,0x7e,0x10,0x22,0x54,0xa8,0x5c,0x2a,0x4b,0x90,0x84,0xd8,0x20,0x10,0x08,0x07,0x02 -+// 29178 燺 ; -+,0x10,0x13,0x10,0x14,0x14,0x59,0x51,0x51,0x51,0x19,0x17,0x14,0x20,0x21,0x42,0x04,0x20,0xff,0x88,0xf8,0x00,0xfe,0x4a,0x7a,0x0a,0x24,0xff,0x70,0xa8,0x24,0x27,0x22 -+// 29179 燻 ; -+,0x08,0x09,0x08,0x0b,0x0c,0x29,0x28,0x49,0x08,0x15,0x12,0x13,0x21,0x21,0x42,0x00,0x1e,0xe0,0x20,0xff,0x20,0xfe,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x52,0x29,0x29,0x00 -+// 29180 燼 ; -+,0x10,0x13,0x10,0x17,0x18,0x53,0x50,0x5f,0x12,0x14,0x1b,0x16,0x22,0x22,0x4f,0x00,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0xff,0xa4,0x52,0xfc,0xa4,0xa4,0xa4,0xff,0x00 -+// 29181 燽 ; -+,0x10,0x11,0x10,0x13,0x14,0x58,0x50,0x51,0x10,0x17,0x18,0x15,0x25,0x21,0x41,0x00,0x20,0xfe,0x20,0xff,0x01,0xfa,0x20,0xfc,0x00,0xff,0x04,0xff,0x54,0x44,0xd4,0x08 -+// 29182 燾 ; -+,0x00,0x1f,0x00,0x3f,0x00,0x07,0x00,0x3f,0x00,0x1e,0x12,0x1e,0x00,0x12,0x33,0x61,0x80,0xfe,0x80,0xff,0x02,0xf4,0x80,0xff,0x04,0xff,0x44,0x34,0x08,0x22,0x33,0x11 -+// 29183 燿 ; -+,0x09,0x09,0x08,0x0a,0x2c,0x29,0x28,0x48,0x09,0x1a,0x14,0x12,0x22,0x20,0x40,0x00,0xef,0x29,0xa5,0x63,0xa5,0x29,0x51,0x88,0xff,0x88,0xff,0x88,0xff,0x88,0xff,0x80 -+// 29184 爀 ; -+,0x11,0x11,0x13,0x15,0x19,0x57,0x52,0x56,0x1a,0x12,0x32,0x2a,0x2a,0x44,0x4a,0x11,0x08,0x08,0xde,0x08,0x08,0xff,0x94,0xb4,0xd6,0xb5,0x95,0x94,0x94,0xa4,0xb4,0x48 -+// 29185 爁 ; -+,0x13,0x12,0x12,0x13,0x56,0x5b,0x52,0x52,0x13,0x10,0x19,0x15,0x25,0x25,0x43,0x00,0xe4,0x84,0x88,0xef,0x30,0xf4,0xa2,0x82,0xf0,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 29186 爂 ; -+,0x07,0x1a,0x13,0x1e,0x12,0x1e,0x12,0x3f,0x20,0x44,0x04,0x09,0x02,0x04,0x18,0x60,0xf0,0x1e,0xf2,0x9e,0x92,0xfe,0x12,0xff,0x01,0x84,0x9e,0x40,0x30,0x1c,0x07,0x02 -+// 29187 爃 ; -+,0x08,0x08,0x09,0x09,0x2a,0x2d,0x29,0x49,0x0a,0x09,0x18,0x14,0x22,0x21,0x42,0x00,0x44,0x54,0x57,0x44,0xaa,0x11,0xff,0x11,0x10,0xff,0x38,0x54,0x94,0x13,0x12,0x10 -+// 29188 爄 ; -+,0x10,0x11,0x11,0x15,0x15,0x59,0x51,0x51,0x11,0x11,0x1a,0x16,0x22,0x24,0x44,0x08,0x00,0xff,0x24,0xff,0x24,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x95,0xfd,0x85,0x82 -+// 29189 爅 ; -+,0x10,0x11,0x11,0x15,0x15,0x58,0x51,0x50,0x17,0x12,0x1a,0x14,0x25,0x20,0x43,0x00,0x00,0xfe,0xa6,0x6a,0xfe,0x20,0xfe,0x20,0xff,0x52,0x29,0x20,0xfe,0x20,0xff,0x00 -+// 29190 爆 ; -+,0x11,0x11,0x15,0x15,0x59,0x50,0x53,0x50,0x17,0x19,0x16,0x24,0x28,0x43,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x48,0xfe,0x48,0xff,0x24,0xaa,0x71,0xa8,0x24,0xa0,0x40 -+// 29191 爇 ; -+,0x02,0x7f,0x0a,0x08,0x3e,0x09,0x7e,0x2a,0x5d,0x08,0x7e,0x01,0x12,0x11,0x61,0x00,0x10,0xff,0x10,0x20,0x20,0xfc,0x24,0xa4,0x44,0x65,0x93,0x01,0x48,0x26,0x22,0x00 -+// 29192 爈 ; -+,0x10,0x10,0x10,0x11,0x15,0x55,0x59,0x51,0x11,0x11,0x11,0x2a,0x22,0x45,0x0b,0x02,0x10,0x1c,0x10,0xff,0x1c,0x71,0x1c,0x7f,0x49,0x7f,0x49,0x7f,0x00,0x51,0x4a,0x3e -+// 29193 爉 ; -+,0x08,0x09,0x08,0x0b,0x0d,0x29,0x29,0x49,0x08,0x19,0x15,0x15,0x21,0x21,0x41,0x01,0x92,0x24,0x92,0xfe,0x4a,0x32,0x4a,0xfe,0x20,0xb4,0x24,0xb4,0x25,0x6d,0xb3,0x21 -+// 29194 爊 ; -+,0x08,0x09,0x09,0x0b,0x2d,0x29,0x29,0x49,0x11,0x19,0x16,0x12,0x25,0x25,0x4a,0x00,0x10,0xff,0x48,0xfe,0x4a,0xfe,0x48,0x6e,0x48,0x69,0x47,0x00,0x52,0x29,0x29,0x00 -+// 29195 爋 ; -+,0x10,0x13,0x10,0x17,0x14,0x5b,0x52,0x53,0x10,0x13,0x10,0x2b,0x28,0x22,0x46,0x04,0xe8,0x88,0x88,0xfe,0x8a,0xea,0xaa,0xea,0x8a,0xf2,0x92,0xe6,0x04,0x92,0xdb,0x49 -+// 29196 爌 ; -+,0x10,0x13,0x12,0x16,0x5a,0x53,0x52,0x52,0x12,0x12,0x1a,0x2e,0x24,0x48,0x11,0x00,0x20,0xff,0x48,0xfe,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x82,0x01,0x00 -+// 29197 爍 ; -+,0x11,0x11,0x11,0x12,0x17,0x59,0x52,0x57,0x10,0x17,0x18,0x14,0x21,0x22,0x44,0x00,0x22,0x72,0x54,0x55,0xfe,0x5a,0x55,0xff,0x21,0xff,0x70,0xa8,0x2c,0x27,0x22,0x20 -+// 29198 爎 ; -+,0x10,0x11,0x12,0x15,0x14,0x5a,0x51,0x52,0x10,0x18,0x14,0x14,0x20,0x21,0x42,0x00,0x20,0xff,0x11,0xfe,0x48,0x85,0xfe,0x85,0xfc,0x84,0xfc,0x10,0x94,0x12,0x51,0x20 -+// 29199 爏 ; -+,0x10,0x13,0x12,0x16,0x16,0x5b,0x52,0x53,0x12,0x12,0x1a,0x16,0x22,0x24,0x49,0x10,0x00,0xff,0x26,0xdc,0x44,0xff,0xee,0x55,0x64,0x54,0x10,0x5e,0x50,0x50,0xff,0x00 -+// 29200 爐 ; -+,0x08,0x08,0x0a,0x0b,0x2d,0x29,0x29,0x49,0x09,0x1a,0x16,0x12,0x22,0x24,0x44,0x0b,0x20,0x3c,0x20,0xff,0x3d,0xe2,0x1e,0x92,0xfe,0x92,0xfe,0x00,0xfe,0xaa,0xaa,0xff -+// 29201 爑 ; -+,0x08,0x09,0x08,0x08,0x0a,0x2d,0x2a,0x48,0x08,0x10,0x18,0x14,0x23,0x21,0x42,0x00,0x44,0xff,0x54,0x48,0xff,0x88,0xff,0x88,0xff,0x88,0xff,0x80,0x52,0x6b,0x29,0x00 -+// 29202 爒 ; -+,0x08,0x0f,0x12,0x2a,0x55,0x08,0x11,0x68,0x0a,0x2c,0x28,0x48,0x14,0x13,0x20,0x40,0x10,0x10,0xff,0x29,0x46,0xfe,0x45,0x7c,0x44,0x7c,0x10,0x54,0x92,0x11,0x50,0x20 -+// 29203 爓 ; -+,0x13,0x12,0x13,0x12,0x17,0x5a,0x52,0x52,0x13,0x12,0x1a,0x16,0x22,0x22,0x42,0x02,0xde,0x52,0xde,0x52,0xde,0x22,0x7a,0x92,0x5a,0x8a,0xda,0x8a,0xfa,0x8a,0x0a,0x04 -+// 29204 爔 ; -+,0x10,0x11,0x10,0x14,0x56,0x59,0x50,0x53,0x10,0x17,0x19,0x16,0x21,0x20,0x41,0x00,0x48,0xfe,0x20,0xfe,0x20,0xff,0x08,0xea,0x88,0xff,0xca,0xa6,0xc5,0x4d,0x53,0x81 -+// 29205 爕 ; -+,0x10,0x17,0x18,0x53,0x50,0x53,0x1a,0x22,0x23,0x40,0x08,0x09,0x12,0x04,0x18,0x60,0x88,0xea,0x0a,0xec,0x28,0xc8,0x54,0x52,0xe2,0x80,0x86,0x58,0x20,0x18,0x07,0x02 -+// 29206 爖 ; -+,0x11,0x10,0x13,0x12,0x15,0x1b,0x50,0x53,0x12,0x13,0x1a,0x17,0x22,0x22,0x43,0x02,0x10,0x90,0xff,0x50,0x1f,0xe1,0x1f,0xd0,0x5e,0xd0,0x5e,0xd0,0x5e,0x51,0x51,0x8f -+// 29207 爗 ; -+,0x10,0x10,0x14,0x14,0x18,0x53,0x50,0x51,0x10,0x1b,0x14,0x15,0x20,0x23,0x40,0x00,0xfe,0x82,0xfe,0x82,0x44,0xff,0x44,0xff,0x92,0xff,0x92,0xff,0x10,0xff,0x10,0x10 -+// 29208 爘 ; -+,0x10,0x10,0x12,0x1b,0x14,0x5b,0x52,0x54,0x11,0x12,0x18,0x14,0x24,0x20,0x40,0x00,0x80,0xdf,0x92,0xcc,0xaa,0x71,0x48,0xa4,0xff,0x84,0xfc,0x84,0xfc,0xb2,0xcc,0x87 -+// 29209 爙 ; -+,0x10,0x10,0x13,0x15,0x55,0x58,0x53,0x50,0x11,0x10,0x1b,0x14,0x25,0x26,0x40,0x00,0x20,0x10,0xff,0x52,0xde,0x48,0xfe,0x48,0xfe,0x48,0xff,0x62,0x94,0xac,0xc7,0x82 -+// 29210 爚 ; -+,0x10,0x10,0x10,0x15,0x1a,0x57,0x52,0x53,0x14,0x13,0x1a,0x27,0x22,0x22,0x42,0x02,0x20,0x50,0x8c,0x77,0x02,0xee,0xaa,0xee,0x00,0xfe,0x52,0xfe,0x52,0x52,0x5a,0x04 -+// 29211 爛 ; -+,0x13,0x12,0x13,0x12,0x17,0x5a,0x52,0x52,0x12,0x12,0x1a,0x16,0x22,0x23,0x42,0x02,0xde,0x52,0xde,0x52,0xde,0x22,0xfa,0x22,0xfa,0xaa,0xfa,0x72,0xaa,0x22,0x2a,0x04 -+// 29212 爜 ; -+,0x10,0x12,0x11,0x17,0x18,0x53,0x50,0x53,0x10,0x1b,0x15,0x15,0x21,0x21,0x43,0x00,0x48,0x49,0x4a,0xff,0x88,0xfe,0x20,0xfe,0x20,0xff,0x20,0xff,0x2a,0xe4,0x2a,0x31 -+// 29213 爝 ; -+,0x10,0x13,0x11,0x10,0x17,0x5a,0x53,0x50,0x13,0x12,0x1b,0x16,0x23,0x22,0x42,0x03,0x3e,0xe0,0x22,0x94,0xfe,0x92,0xfe,0x00,0xc2,0x7f,0xc2,0x52,0xca,0x82,0xca,0x04 -+// 29214 爞 ; -+,0x08,0x08,0x08,0x08,0x0a,0x2d,0x28,0x48,0x0b,0x0a,0x1b,0x14,0x12,0x20,0x47,0x00,0x10,0xfe,0x92,0xfe,0x14,0xfe,0x82,0x84,0xff,0x95,0xff,0x94,0xa5,0xe7,0xbd,0x00 -+// 29215 爟 ; -+,0x08,0x0b,0x08,0x09,0x0b,0x2d,0x28,0x48,0x09,0x11,0x1a,0x14,0x22,0x20,0x40,0x00,0x48,0xff,0x48,0xde,0x52,0xde,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0x80 -+// 29216 爠 ; -+,0x09,0x09,0x09,0x0b,0x2d,0x29,0x29,0x48,0x08,0x09,0x16,0x12,0x20,0x20,0x40,0x00,0xef,0x29,0xef,0x29,0xef,0x29,0xef,0x50,0xff,0x88,0xfe,0x88,0xfe,0x88,0xff,0x80 -+// 29217 爡 ; -+,0x10,0x13,0x10,0x11,0x15,0x59,0x51,0x53,0x12,0x12,0x1b,0x15,0x25,0x20,0x43,0x00,0x88,0xff,0x88,0xfc,0x24,0xfc,0x24,0xff,0x29,0xfb,0xfe,0x22,0xfe,0x24,0xfe,0x00 -+// 29218 爢 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x17,0x1a,0x12,0x17,0x10,0x17,0x20,0x2a,0x29,0x59,0x10,0x40,0xff,0x08,0x08,0xbf,0x1c,0xab,0xd8,0x9e,0x90,0x9e,0x90,0x44,0x22,0xb3,0x91 -+// 29219 爣 ; -+,0x11,0x10,0x13,0x16,0x18,0x50,0x53,0x53,0x12,0x13,0x18,0x17,0x20,0x27,0x42,0x04,0x24,0xa8,0xff,0x89,0xfa,0x00,0xfe,0x26,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x92,0x49 -+// 29220 爤 ; -+,0x10,0x13,0x10,0x13,0x16,0x5b,0x52,0x53,0x12,0x12,0x1a,0x26,0x22,0x22,0x42,0x02,0x88,0xff,0x88,0xde,0x52,0xde,0x52,0xfe,0x22,0xfa,0xaa,0xfa,0x72,0xaa,0x2a,0x04 -+// 29221 爥 ; -+,0x09,0x09,0x09,0x0b,0x0d,0x29,0x29,0x49,0x09,0x09,0x09,0x16,0x13,0x24,0x48,0x00,0xff,0x01,0xff,0x56,0x38,0x54,0x7f,0x55,0x7f,0x40,0x7f,0x91,0x7d,0x11,0x7a,0x04 -+// 29222 爦 ; -+,0x13,0x12,0x13,0x12,0x17,0x5a,0x53,0x51,0x11,0x11,0x11,0x29,0x24,0x20,0x41,0x06,0xe8,0x9f,0xe4,0x5f,0xd5,0x9f,0xe0,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x91,0x11,0x0f -+// 29223 爧 ; -+,0x11,0x10,0x13,0x12,0x15,0x58,0x53,0x52,0x13,0x10,0x1b,0x15,0x25,0x22,0x47,0x00,0xfe,0x20,0xff,0x21,0xae,0x20,0xfe,0x52,0xfe,0x00,0xfe,0x24,0x24,0xaa,0xff,0x00 -+// 29224 爨 ; -+,0x0b,0x12,0x1b,0x16,0x12,0x3f,0x44,0x3f,0x0e,0x14,0x7f,0x1a,0x64,0x03,0x1c,0x70,0xec,0x24,0xec,0xb4,0x24,0xff,0x11,0x7e,0x38,0xd6,0xff,0xb0,0x8f,0x62,0x1f,0x02 -+// 29225 爩 ; -+,0x11,0x17,0x13,0x15,0x19,0x51,0x57,0x5a,0x15,0x16,0x2f,0x24,0x27,0x44,0x03,0x00,0x42,0xff,0x16,0xbb,0x52,0x3a,0xff,0x82,0x44,0xdb,0xc6,0x19,0x86,0x58,0xe0,0x00 -+// 29226 爪 ; -+,0x00,0x1f,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x21,0x21,0x21,0x41,0x00,0x1c,0xf0,0x20,0x20,0x20,0x10,0x10,0x10,0x08,0x08,0x04,0x04,0x06,0x03,0x02,0x00 -+// 29227 爫 ; -+,0x00,0x01,0x3f,0x11,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xfe,0x04,0x06,0x8c,0xc8,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 29228 爬 ; -+,0x03,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x29,0x29,0x29,0x28,0x28,0x28,0x48,0x08,0x00,0x00,0x7f,0x49,0x49,0x49,0x7f,0x40,0x41,0x41,0x41,0xbf,0x40,0x20,0x18,0x07,0x02 -+// 29229 爭 ; -+,0x00,0x0f,0x04,0x02,0x02,0x0f,0x00,0x00,0x3f,0x00,0x00,0x0f,0x00,0x00,0x01,0x00,0x78,0xc0,0x8c,0x48,0x50,0xfc,0x44,0x44,0xff,0x44,0x44,0xfc,0x40,0x40,0x40,0x80 -+// 29230 爮 ; -+,0x00,0x07,0x3a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x29,0x29,0x29,0x48,0x48,0x08,0x00,0x40,0x40,0x7e,0x82,0x82,0x7a,0x4a,0x4a,0x7a,0x4a,0x45,0x41,0xbf,0x70,0x1f,0x02 -+// 29231 爯 ; -+,0x00,0x3f,0x08,0x04,0x04,0x1f,0x10,0x10,0x1f,0x10,0x10,0x7f,0x10,0x10,0x10,0x10,0x7e,0xc4,0x86,0x48,0x50,0xfc,0x84,0x84,0xfc,0x84,0x84,0xff,0x04,0x04,0x14,0x08 -+// 29232 爰 ; -+,0x00,0x1f,0x11,0x08,0x1f,0x01,0x01,0x7f,0x02,0x07,0x06,0x09,0x30,0x41,0x06,0x38,0x3c,0xe8,0x0c,0x90,0xfe,0x00,0x00,0xff,0x00,0xfc,0x18,0xb0,0x60,0xb0,0x0f,0x02 -+// 29233 爱 ; -+,0x00,0x1f,0x09,0x04,0x1f,0x11,0x21,0x1f,0x02,0x03,0x06,0x05,0x08,0x31,0x46,0x18,0x7c,0xc8,0x08,0x90,0xff,0x01,0x00,0xfe,0x00,0xf8,0x10,0xa0,0x60,0x98,0x07,0x02 -+// 29234 爲 ; -+,0x00,0x1f,0x04,0x02,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x10,0x15,0x14,0x28,0x40,0x00,0xfc,0x88,0x8c,0x50,0xf8,0x08,0xfc,0x04,0x04,0xff,0x11,0x49,0xa9,0xa2,0x0a,0x04 -+// 29235 爳 ; -+,0x00,0x1f,0x04,0x0f,0x08,0x0f,0x08,0x1f,0x25,0x48,0x3f,0x00,0x00,0x00,0x02,0x01,0x7c,0x90,0x90,0xf8,0x08,0xfc,0x04,0xfe,0x2a,0xaa,0xfc,0x30,0xc0,0x80,0x80,0x00 -+// 29236 爴 ; -+,0x00,0x7f,0x44,0x44,0x7f,0x44,0x7d,0x6a,0x7a,0x44,0x5b,0x60,0x7f,0x40,0x01,0x00,0x07,0xba,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xca,0xca,0x89,0x09,0x00 -+// 29237 爵 ; -+,0x00,0x3f,0x08,0x04,0x1f,0x12,0x1f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x16,0x19,0x3e,0xc4,0x84,0x48,0xfe,0x22,0xfe,0x00,0x04,0x7f,0x04,0x24,0x14,0x04,0x14,0x08 -+// 29238 父 ; -+,0x02,0x03,0x06,0x0c,0x10,0x24,0x02,0x02,0x01,0x00,0x00,0x01,0x02,0x0c,0x10,0x60,0x20,0x10,0x0c,0x06,0x12,0x18,0x10,0x20,0x20,0xc0,0xc0,0x20,0x10,0x0c,0x07,0x02 -+// 29239 爷 ; -+,0x02,0x04,0x1a,0x61,0x00,0x03,0x0c,0x70,0x0f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x08,0x16,0x22,0xc0,0x30,0x0f,0x02,0xf8,0x08,0x08,0x08,0x28,0x10,0x00,0x00 -+// 29240 爸 ; -+,0x02,0x04,0x0a,0x11,0x00,0x01,0x06,0x1f,0x68,0x08,0x0f,0x08,0x08,0x08,0x07,0x00,0x10,0x08,0x16,0x22,0xc0,0x30,0x0f,0xfa,0x88,0x88,0xf8,0x00,0x02,0x02,0xfe,0x00 -+// 29241 爹 ; -+,0x02,0x0e,0x31,0x01,0x0e,0x71,0x06,0x1a,0x01,0x06,0x19,0x06,0x19,0x00,0x0f,0x70,0x10,0x0c,0x36,0xc0,0xb0,0xef,0x12,0x60,0x80,0xfe,0x04,0x08,0x30,0xc0,0x00,0x00 -+// 29242 爺 ; -+,0x02,0x0c,0x33,0x00,0x0f,0x70,0x3f,0x09,0x0f,0x09,0x0f,0x09,0x0f,0x39,0x01,0x01,0x10,0x0c,0x34,0xc0,0x3f,0x02,0xbe,0x22,0x24,0x28,0x24,0x22,0xaa,0x24,0x20,0x20 -+// 29243 爻 ; -+,0x00,0x0c,0x03,0x00,0x03,0x0c,0x30,0x04,0x02,0x02,0x01,0x00,0x01,0x06,0x18,0x60,0x10,0x10,0x20,0xc0,0x30,0x0c,0x04,0x10,0x10,0x20,0x40,0x80,0x60,0x18,0x0f,0x02 -+// 29244 爼 ; -+,0x00,0x22,0x14,0x08,0x14,0x22,0x40,0x02,0x24,0x14,0x08,0x14,0x22,0x43,0x00,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0xff,0x00,0x00 -+// 29245 爽 ; -+,0x00,0x00,0x7f,0x02,0x14,0x08,0x14,0x22,0x14,0x09,0x15,0x22,0x04,0x08,0x10,0x20,0x80,0x80,0xff,0x84,0xa8,0x90,0xa8,0xa0,0x94,0x48,0x54,0x20,0x10,0x0c,0x07,0x02 -+// 29246 爾 ; -+,0x3f,0x00,0x0e,0x70,0x1f,0x1a,0x14,0x1a,0x10,0x1a,0x14,0x1a,0x10,0x10,0x10,0x10,0xff,0x88,0x84,0x82,0xff,0xaa,0x92,0xaa,0x82,0xaa,0x92,0xaa,0x82,0x82,0x8a,0x04 -+// 29247 爿 ; -+,0x00,0x02,0x02,0x02,0x03,0x02,0x00,0x00,0x1f,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04 -+// 29248 牀 ; -+,0x04,0x24,0x24,0x25,0x3c,0x24,0x04,0x04,0x7c,0x15,0x15,0x16,0x24,0x24,0x44,0x04,0x20,0x20,0x20,0xff,0x70,0x70,0xa8,0xa8,0xa4,0x26,0x23,0x22,0x20,0x20,0x20,0x20 -+// 29249 牁 ; -+,0x02,0x13,0x12,0x12,0x12,0x1e,0x02,0x02,0x7e,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x00,0xff,0x02,0x02,0x02,0xf2,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x02,0x0a,0x04 -+// 29250 牂 ; -+,0x12,0x12,0x12,0x13,0x1e,0x12,0x02,0x02,0x3e,0x12,0x13,0x12,0x22,0x22,0x42,0x02,0x82,0x44,0x28,0xfe,0x10,0x10,0xfe,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x10 -+// 29251 牃 ; -+,0x04,0x04,0x24,0x27,0x24,0x3c,0x04,0x04,0x7c,0x27,0x24,0x24,0x24,0x25,0x46,0x04,0xa4,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xff,0x10,0xff,0x38,0x54,0x94,0x12,0x13,0x10 -+// 29252 牄 ; -+,0x04,0x24,0x24,0x24,0x25,0x3e,0x04,0x04,0x7c,0x24,0x25,0x25,0x25,0x25,0x46,0x04,0x20,0x30,0x48,0xa4,0x13,0xfc,0x84,0xfc,0x84,0xfc,0x80,0x7c,0x44,0x44,0x7c,0x44 -+// 29253 牅 ; -+,0x04,0x05,0x25,0x25,0x25,0x3d,0x05,0x05,0x7d,0x25,0x25,0x25,0x25,0x26,0x46,0x04,0x20,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x5a,0x54 -+// 29254 牆 ; -+,0x04,0x25,0x24,0x24,0x24,0x3d,0x07,0x04,0x7d,0x25,0x25,0x25,0x25,0x25,0x45,0x05,0x20,0xff,0xa4,0xa4,0xa4,0x6a,0xff,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0xfe,0x02 -+// 29255 片 ; -+,0x00,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x20,0x20,0x20,0x22,0xff,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 29256 版 ; -+,0x00,0x24,0x24,0x24,0x3f,0x20,0x20,0x3c,0x24,0x24,0x24,0x25,0x25,0x22,0x44,0x01,0x0e,0xf0,0x80,0x80,0x80,0xfe,0xc4,0xc4,0xa8,0xa8,0x90,0x18,0x28,0x44,0x87,0x02 -+// 29257 牉 ; -+,0x04,0x24,0x24,0x24,0x3f,0x20,0x20,0x20,0x3d,0x24,0x24,0x24,0x24,0x44,0x44,0x00,0x10,0x12,0x92,0x54,0x58,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 29258 牊 ; -+,0x02,0x12,0x12,0x12,0x1f,0x10,0x10,0x1e,0x13,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x00,0xfe,0x22,0x22,0xa2,0x22,0x42,0x94,0x08,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 29259 牋 ; -+,0x04,0x24,0x27,0x24,0x3f,0x20,0x21,0x20,0x3c,0x27,0x24,0x24,0x24,0x24,0x47,0x04,0x50,0x48,0xfe,0x40,0x4c,0x32,0xcf,0x50,0x48,0xfe,0x40,0x46,0x28,0x71,0x8d,0x03 -+// 29260 牌 ; -+,0x04,0x24,0x24,0x24,0x3e,0x20,0x20,0x3c,0x24,0x24,0x27,0x24,0x24,0x24,0x44,0x00,0x20,0xfe,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x52,0x90,0xff,0x10,0x10,0x10,0x10,0x10 -+// 29261 牍 ; -+,0x04,0x24,0x24,0x24,0x3e,0x20,0x20,0x3c,0x24,0x24,0x25,0x24,0x24,0x24,0x44,0x03,0x10,0x10,0xfe,0x10,0xff,0x01,0x92,0x50,0x90,0x50,0xff,0x28,0x28,0x44,0x87,0x02 -+// 29262 牎 ; -+,0x08,0x28,0x28,0x29,0x2a,0x3e,0x21,0x20,0x3c,0x29,0x28,0x2a,0x2a,0x2a,0x48,0x00,0x80,0xfe,0xaa,0x2a,0xca,0xb2,0x2a,0x42,0x94,0x08,0x22,0x91,0x91,0x84,0x7c,0x00 -+// 29263 牏 ; -+,0x04,0x24,0x24,0x24,0x3d,0x26,0x20,0x21,0x3d,0x25,0x25,0x25,0x25,0x25,0x45,0x01,0x20,0x30,0x48,0x84,0x7b,0x00,0x02,0xe2,0x2a,0xea,0x2a,0xea,0x2a,0x2a,0x22,0x44 -+// 29264 牐 ; -+,0x04,0x24,0x24,0x24,0x25,0x3e,0x20,0x20,0x3c,0x24,0x24,0x24,0x24,0x24,0x44,0x00,0x0e,0xf0,0x10,0x10,0xff,0x10,0x30,0xd6,0x92,0x92,0xd6,0x92,0x92,0xfe,0x82,0x00 -+// 29265 牑 ; -+,0x04,0x24,0x24,0x24,0x24,0x3c,0x20,0x20,0x3c,0x25,0x25,0x25,0x25,0x26,0x44,0x00,0x20,0x10,0xfe,0x82,0x82,0xfe,0x80,0xff,0xd5,0x55,0x7f,0x55,0x55,0x55,0x45,0x42 -+// 29266 牒 ; -+,0x04,0x24,0x27,0x24,0x3e,0x20,0x20,0x3c,0x24,0x25,0x24,0x24,0x25,0x26,0x44,0x00,0x24,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0xff,0x10,0xff,0x30,0x58,0x94,0x13,0x10,0x10 -+// 29267 牓 ; -+,0x04,0x24,0x25,0x24,0x24,0x3f,0x21,0x22,0x3f,0x24,0x24,0x24,0x24,0x24,0x45,0x02,0x20,0x10,0xfe,0x84,0x48,0xff,0x21,0x12,0xfe,0x40,0x7c,0x44,0x84,0x84,0x28,0x10 -+// 29268 牔 ; -+,0x04,0x25,0x24,0x24,0x3e,0x20,0x20,0x3e,0x24,0x24,0x25,0x24,0x24,0x24,0x44,0x04,0x14,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x24,0x24,0x14,0x08 -+// 29269 牕 ; -+,0x04,0x24,0x24,0x24,0x24,0x3e,0x20,0x20,0x3c,0x24,0x24,0x25,0x25,0x26,0x44,0x04,0x10,0x20,0xfe,0xa2,0xba,0xea,0x92,0xaa,0xfe,0x00,0x52,0x51,0x45,0x44,0x3c,0x00 -+// 29270 牖 ; -+,0x08,0x28,0x29,0x29,0x29,0x3f,0x21,0x21,0x3d,0x29,0x2a,0x2a,0x2a,0x2a,0x2a,0x44,0x20,0x10,0xfe,0x02,0xfe,0x14,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x9a,0x94 -+// 29271 牗 ; -+,0x04,0x25,0x25,0x25,0x3f,0x21,0x21,0x21,0x3d,0x25,0x25,0x25,0x26,0x26,0x44,0x08,0x20,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x52,0x54 -+// 29272 牘 ; -+,0x04,0x25,0x24,0x24,0x24,0x3f,0x21,0x21,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x10,0xff,0x10,0xfe,0x00,0xff,0x29,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 29273 牙 ; -+,0x00,0x1f,0x00,0x04,0x04,0x08,0x1f,0x08,0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x60,0xa0,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 29274 牚 ; -+,0x04,0x02,0x1f,0x10,0x27,0x04,0x07,0x00,0x0f,0x08,0x1f,0x00,0x03,0x1c,0x60,0x00,0x44,0x48,0xff,0x01,0xfa,0x08,0xf8,0x00,0xfc,0x20,0xff,0xa0,0x20,0x20,0xa0,0x40 -+// 29275 牛 ; -+,0x00,0x08,0x08,0x0f,0x10,0x10,0x20,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0xfe,0x40,0x40,0x40,0x40,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 29276 牜 ; -+,0x02,0x02,0x12,0x12,0x1f,0x22,0x22,0x43,0x0e,0x72,0x22,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x80,0xc0,0x00,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 29277 牝 ; -+,0x04,0x04,0x14,0x14,0x1f,0x24,0x24,0x45,0x0e,0x74,0x24,0x04,0x04,0x04,0x04,0x04,0x20,0x20,0x20,0x20,0xa2,0x26,0x28,0xb0,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 29278 牞 ; -+,0x04,0x24,0x24,0x24,0x3f,0x24,0x24,0x47,0x0c,0x74,0x24,0x04,0x04,0x04,0x05,0x06,0x10,0x10,0x10,0x10,0x7e,0x12,0x92,0x12,0x12,0x22,0x22,0x22,0x42,0x84,0x14,0x08 -+// 29279 牟 ; -+,0x01,0x02,0x04,0x0f,0x00,0x08,0x08,0x1f,0x20,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xfc,0x04,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80 -+// 29280 牠 ; -+,0x08,0x28,0x28,0x28,0x3e,0x28,0x4b,0x0e,0x78,0x28,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x90,0x90,0x9e,0xf2,0x92,0x92,0x92,0x9a,0x94,0x90,0x81,0x81,0x7f,0x00 -+// 29281 牡 ; -+,0x04,0x04,0x14,0x14,0x1f,0x25,0x24,0x47,0x1c,0x74,0x24,0x04,0x04,0x05,0x04,0x04,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 29282 牢 ; -+,0x00,0x00,0x1f,0x10,0x24,0x04,0x07,0x08,0x10,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0xff,0x01,0x42,0x40,0xfc,0x40,0x40,0x42,0xff,0x40,0x40,0x40,0x40,0x40 -+// 29283 牣 ; -+,0x08,0x08,0x08,0x28,0x3f,0x28,0x28,0x4a,0x0d,0x18,0x68,0x08,0x08,0x08,0x09,0x02,0x00,0x00,0xfe,0x12,0x12,0x92,0x92,0x92,0x22,0x22,0x22,0x42,0x42,0x82,0x14,0x08 -+// 29284 牤 ; -+,0x08,0x08,0x28,0x28,0x3f,0x48,0x08,0x08,0x0e,0x78,0x28,0x08,0x08,0x08,0x08,0x08,0x40,0x20,0x30,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xfe,0x80,0x00 -+// 29285 牥 ; -+,0x08,0x08,0x28,0x29,0x3f,0x28,0x29,0x4e,0x18,0x68,0x08,0x08,0x08,0x09,0x0a,0x0c,0x20,0x10,0x10,0xff,0x40,0x40,0x7c,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x28,0x10 -+// 29286 牦 ; -+,0x08,0x08,0x29,0x28,0x3e,0x28,0x49,0x0a,0x0c,0x1b,0x68,0x08,0x08,0x08,0x08,0x08,0x00,0x1e,0xe0,0x20,0x20,0x3e,0xe0,0x20,0x3f,0xe0,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 29287 牧 ; -+,0x08,0x08,0x28,0x28,0x3e,0x29,0x4a,0x0a,0x0c,0x78,0x28,0x08,0x08,0x09,0x0e,0x08,0x40,0x40,0x40,0x82,0xff,0x08,0x88,0x88,0x48,0x50,0x30,0x30,0x48,0x8c,0x07,0x02 -+// 29288 牨 ; -+,0x08,0x08,0x28,0x29,0x3e,0x28,0x28,0x4b,0x1c,0x68,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x10,0x10,0xff,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x44,0x85,0x85,0x05,0x03 -+// 29289 物 ; -+,0x08,0x08,0x28,0x28,0x3e,0x29,0x4a,0x0a,0x0c,0x19,0x6a,0x08,0x08,0x09,0x0a,0x00,0x40,0x40,0x40,0xfe,0xaa,0x2a,0x4a,0x4a,0x92,0x12,0x22,0x42,0x82,0x02,0x14,0x08 -+// 29290 牪 ; -+,0x04,0x24,0x24,0x24,0x3f,0x24,0x45,0x46,0x0d,0x74,0x24,0x04,0x04,0x04,0x04,0x04,0x10,0x90,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 29291 牫 ; -+,0x04,0x04,0x24,0x24,0x3f,0x24,0x44,0x06,0x0c,0x74,0x24,0x04,0x04,0x05,0x04,0x04,0x20,0x28,0x24,0x24,0x27,0xf8,0x22,0x22,0x14,0x14,0x08,0x19,0x65,0x83,0x01,0x00 -+// 29292 牬 ; -+,0x08,0x08,0x28,0x28,0x3e,0x28,0x4a,0x4c,0x18,0x68,0x08,0x09,0x0a,0x08,0x08,0x08,0x10,0x10,0x1f,0xf0,0x90,0x90,0x90,0xff,0x31,0x51,0x91,0x15,0x12,0x10,0x10,0x10 -+// 29293 牭 ; -+,0x08,0x09,0x29,0x29,0x3f,0x29,0x4b,0x0d,0x19,0x69,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0xff,0x29,0x29,0x29,0x29,0x29,0x29,0x49,0x47,0x81,0x01,0x01,0xff,0x01,0x00 -+// 29294 牮 ; -+,0x04,0x04,0x08,0x1b,0x28,0x48,0x08,0x08,0x0f,0x10,0x20,0x7f,0x00,0x00,0x00,0x00,0x90,0x88,0x7e,0xc0,0x20,0x10,0x8d,0x83,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80 -+// 29295 牯 ; -+,0x08,0x08,0x28,0x28,0x3f,0x28,0x48,0x0b,0x1c,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29296 牰 ; -+,0x08,0x08,0x28,0x3e,0x28,0x28,0x4a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0x10,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0x91,0xff,0x81,0x00 -+// 29297 牱 ; -+,0x08,0x08,0x2b,0x28,0x3e,0x28,0x48,0x0e,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0x04,0x14,0x08 -+// 29298 牲 ; -+,0x08,0x08,0x28,0x28,0x3e,0x49,0x09,0x0d,0x1a,0x68,0x08,0x08,0x08,0x0b,0x08,0x00,0x10,0x90,0x90,0x90,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 29299 牳 ; -+,0x08,0x28,0x28,0x28,0x3e,0x48,0x0b,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x84,0xa4,0x94,0x94,0xff,0xa4,0x94,0x94,0x84,0xff,0x04,0x04,0x14,0x08 -+// 29300 牴 ; -+,0x08,0x08,0x28,0x28,0x3f,0x28,0x4b,0x0c,0x08,0x18,0x68,0x08,0x08,0x08,0x08,0x00,0x04,0xfe,0x90,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0x89,0xa5,0xd3,0x91,0x00 -+// 29301 牵 ; -+,0x00,0x00,0x1f,0x01,0x02,0x0c,0x3f,0x24,0x44,0x0f,0x10,0x00,0x3f,0x00,0x00,0x00,0x80,0x80,0xfe,0x20,0x10,0x08,0xff,0x41,0x42,0xfc,0x40,0x40,0xff,0x40,0x40,0x40 -+// 29302 牶 ; -+,0x00,0x08,0x04,0x3f,0x01,0x3f,0x04,0x0a,0x33,0x44,0x00,0x3f,0x00,0x00,0x00,0x00,0x40,0x48,0x90,0xfe,0x00,0xff,0x50,0x48,0xf7,0x42,0x40,0xff,0x40,0x40,0x40,0x40 -+// 29303 牷 ; -+,0x08,0x08,0x28,0x28,0x3e,0x49,0x0a,0x08,0x0e,0x78,0x28,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0x50,0x48,0x84,0x03,0xfc,0x20,0x20,0x20,0xfc,0x20,0x20,0x22,0xff,0x00 -+// 29304 牸 ; -+,0x08,0x08,0x09,0x29,0x3e,0x28,0x48,0x0e,0x18,0x6b,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x01,0x00,0xfc,0x08,0x10,0x20,0xff,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 29305 特 ; -+,0x08,0x08,0x29,0x28,0x3e,0x4b,0x08,0x0e,0x19,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0x08,0xff,0x08,0x88,0x48,0x48,0x08,0x28,0x10 -+// 29306 牺 ; -+,0x08,0x0b,0x28,0x28,0x3e,0x29,0x2b,0x4d,0x19,0x69,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x48,0x48,0x48,0xff,0x49,0x49,0x49,0x49,0x47,0x81,0x01,0xff,0x01,0x00 -+// 29307 牻 ; -+,0x08,0x08,0x08,0x29,0x3e,0x28,0x2a,0x4c,0x18,0x68,0x08,0x09,0x09,0x0a,0x0c,0x08,0x50,0x48,0x48,0xff,0x50,0x56,0x58,0x56,0x58,0x92,0x94,0x19,0x31,0x51,0x0f,0x00 -+// 29308 牼 ; -+,0x08,0x09,0x28,0x28,0x3f,0x4a,0x09,0x0a,0x0c,0x19,0x68,0x08,0x08,0x0b,0x08,0x00,0x00,0xfe,0x00,0x92,0x24,0x48,0x24,0x92,0x92,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 29309 牽 ; -+,0x00,0x1f,0x01,0x07,0x00,0x3f,0x21,0x42,0x07,0x04,0x07,0x08,0x3f,0x00,0x00,0x00,0x40,0xfe,0x10,0xe0,0x40,0xff,0x21,0x12,0xf8,0x48,0xfc,0x40,0xff,0x40,0x40,0x40 -+// 29310 牾 ; -+,0x08,0x09,0x28,0x28,0x3e,0x28,0x28,0x4d,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x20,0x20,0xfe,0x22,0x22,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29311 牿 ; -+,0x08,0x08,0x28,0x28,0x3e,0x29,0x2a,0x4f,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 29312 犀 ; -+,0x00,0x1f,0x10,0x1f,0x14,0x12,0x10,0x12,0x1c,0x12,0x13,0x14,0x2f,0x20,0x20,0x40,0x00,0xfe,0x02,0xfe,0x44,0x48,0x40,0x48,0x06,0x40,0xfc,0x40,0xff,0x40,0x40,0x40 -+// 29313 犁 ; -+,0x3f,0x04,0x7f,0x0e,0x15,0x24,0x44,0x04,0x08,0x0f,0x10,0x00,0x3f,0x00,0x00,0x00,0x82,0x12,0xd2,0x12,0x12,0x92,0x0a,0x44,0x40,0xfe,0x40,0x40,0xff,0x40,0x40,0x40 -+// 29314 犂 ; -+,0x07,0x3c,0x04,0x3f,0x0e,0x15,0x64,0x00,0x08,0x0f,0x10,0x00,0x3f,0x00,0x00,0x00,0x20,0x20,0x3e,0x4a,0x92,0x22,0x42,0x94,0x48,0xfc,0x40,0x40,0xff,0x40,0x40,0x40 -+// 29315 犃 ; -+,0x08,0x08,0x29,0x28,0x3e,0x28,0x2a,0x4d,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xfe,0x00,0x84,0x48,0x10,0xff,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 29316 犄 ; -+,0x08,0x08,0x29,0x28,0x3e,0x29,0x4b,0x0c,0x19,0x29,0x49,0x09,0x09,0x08,0x08,0x08,0x20,0x20,0xfe,0x50,0x88,0x04,0xff,0x04,0xf4,0x14,0x14,0xf4,0x14,0x04,0x14,0x08 -+// 29317 犅 ; -+,0x08,0x09,0x29,0x3d,0x29,0x49,0x09,0x0d,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x01,0x45,0x29,0xff,0x11,0x11,0x55,0x55,0x55,0x7d,0x01,0x01,0x05,0x02 -+// 29318 犆 ; -+,0x08,0x08,0x29,0x28,0x3e,0x48,0x0a,0x0c,0x18,0x68,0x08,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0xfe,0x20,0xfc,0x84,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x00 -+// 29319 犇 ; -+,0x08,0x0f,0x08,0x10,0x3f,0x08,0x24,0x24,0x3f,0x24,0x46,0x0d,0x34,0x04,0x04,0x04,0x80,0xfc,0x80,0x80,0xfe,0x80,0x88,0x48,0x7e,0x48,0x88,0xff,0x08,0x08,0x08,0x08 -+// 29320 犈 ; -+,0x08,0x09,0x28,0x29,0x3e,0x28,0x4b,0x0c,0x09,0x1a,0x6c,0x08,0x08,0x08,0x08,0x08,0x20,0x24,0xa8,0xfe,0x40,0x40,0xff,0x88,0xfc,0x8b,0x8a,0xa8,0x92,0x82,0x7e,0x00 -+// 29321 犉 ; -+,0x08,0x08,0x0b,0x28,0x3e,0x28,0x4a,0x0c,0x19,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x40,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x0c,0x10,0xff,0x20,0x20,0xa0,0x40 -+// 29322 犊 ; -+,0x08,0x28,0x28,0x3e,0x29,0x48,0x0a,0x0c,0x19,0x68,0x0b,0x08,0x08,0x08,0x09,0x0a,0x10,0x10,0xfe,0x10,0xff,0x01,0x92,0x50,0x10,0x90,0xff,0x20,0x44,0x82,0x01,0x01 -+// 29323 犋 ; -+,0x08,0x08,0x08,0x28,0x3e,0x28,0x28,0x4a,0x0c,0x18,0x68,0x08,0x0b,0x08,0x08,0x09,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xff,0x48,0x84,0x02 -+// 29324 犌 ; -+,0x10,0x13,0x52,0x52,0x7f,0x52,0x56,0x1b,0x32,0x52,0x13,0x12,0x12,0x12,0x12,0x00,0x00,0xdf,0x42,0x42,0xde,0x42,0x00,0xdf,0x12,0x12,0xca,0x0c,0x0c,0x33,0xc2,0x00 -+// 29325 犍 ; -+,0x08,0x08,0x0b,0x29,0x3d,0x29,0x4a,0x0b,0x0c,0x7a,0x29,0x09,0x09,0x0a,0x0c,0x08,0x10,0x10,0x7e,0x12,0x7f,0x12,0x7e,0x90,0xfe,0x90,0x7f,0x10,0x90,0x60,0x1f,0x02 -+// 29326 犎 ; -+,0x04,0x3f,0x04,0x7f,0x04,0x3f,0x05,0x7e,0x28,0x0f,0x10,0x7f,0x00,0x00,0x00,0x00,0x04,0x04,0x7f,0x84,0x24,0x94,0xc4,0x14,0x88,0xfc,0x82,0xff,0x80,0x80,0x80,0x80 -+// 29327 犏 ; -+,0x08,0x08,0x28,0x28,0x3e,0x28,0x28,0x4a,0x0d,0x19,0x69,0x09,0x0a,0x0a,0x0c,0x08,0x20,0x10,0xff,0x81,0xff,0x80,0x80,0xff,0x55,0x55,0x7f,0x55,0x55,0x55,0x55,0x42 -+// 29328 犐 ; -+,0x08,0x0b,0x28,0x28,0x3c,0x4b,0x09,0x0d,0x1a,0x2a,0x4c,0x08,0x08,0x08,0x08,0x08,0x44,0x84,0xa4,0x94,0x94,0xc4,0xa4,0xd4,0xa7,0x9c,0xe4,0x84,0x84,0x84,0x84,0x84 -+// 29329 犑 ; -+,0x08,0x08,0x28,0x28,0x3e,0x28,0x4a,0x0c,0x18,0x6b,0x08,0x08,0x08,0x08,0x09,0x0a,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x14,0x12,0xff,0x30,0x28,0x48,0x84,0x07,0x02 -+// 29330 犒 ; -+,0x08,0x08,0x29,0x28,0x3e,0x28,0x4a,0x0c,0x19,0x69,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x01,0x7d,0x45,0x7d,0x01,0x05,0x02 -+// 29331 犓 ; -+,0x08,0x08,0x28,0x29,0x3e,0x28,0x48,0x0a,0x0c,0x19,0x6a,0x08,0x08,0x08,0x08,0x09,0x80,0x80,0xfe,0x22,0xaa,0xfa,0x4a,0x44,0xfe,0x22,0xaa,0xfa,0x2a,0x42,0x94,0x08 -+// 29332 犔 ; -+,0x08,0x08,0x28,0x29,0x3d,0x2a,0x48,0x0a,0x0c,0x39,0x68,0x08,0x09,0x0a,0x08,0x08,0x80,0xfe,0x80,0x7c,0x00,0xfe,0x24,0xac,0x74,0xfc,0x64,0xb5,0x2b,0x2b,0x21,0x20 -+// 29333 犕 ; -+,0x08,0x08,0x29,0x28,0x3f,0x28,0x4a,0x0c,0x09,0x1e,0x28,0x48,0x08,0x08,0x08,0x08,0x44,0x44,0xff,0x44,0xff,0x20,0x40,0xff,0x92,0xfe,0x92,0xfe,0x92,0x92,0x8a,0x84 -+// 29334 犖 ; -+,0x04,0x05,0x14,0x24,0x0a,0x11,0x1f,0x10,0x24,0x07,0x08,0x3f,0x00,0x00,0x00,0x00,0x08,0x2a,0xcc,0x08,0x14,0x22,0xff,0x41,0x42,0xfc,0x40,0xff,0x40,0x40,0x40,0x40 -+// 29335 犗 ; -+,0x08,0x08,0x29,0x29,0x3e,0x28,0x4a,0x0c,0x09,0x18,0x68,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x21,0xfe,0x20,0xfe,0x20,0xff,0x20,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 29336 犘 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x17,0x1a,0x12,0x12,0x13,0x14,0x20,0x2f,0x20,0x40,0x00,0x80,0xff,0x10,0x10,0xfe,0x34,0xd2,0x11,0x50,0xfe,0x40,0x40,0xff,0x40,0x40,0x40 -+// 29337 犙 ; -+,0x08,0x08,0x28,0x29,0x3e,0x29,0x2b,0x4c,0x18,0x69,0x0e,0x0b,0x08,0x0b,0x08,0x0b,0x20,0x48,0x84,0xfe,0x86,0x29,0xff,0x48,0x84,0x32,0xc9,0x36,0xc8,0x30,0xc0,0x00 -+// 29338 犚 ; -+,0x3f,0x20,0x3f,0x20,0x2f,0x20,0x3f,0x2a,0x64,0x07,0x08,0x10,0x3f,0x00,0x00,0x00,0x84,0x84,0x84,0x7f,0x24,0x14,0xc4,0x54,0x48,0xfc,0x40,0x40,0xff,0x40,0x40,0x40 -+// 29339 犛 ; -+,0x04,0x1f,0x04,0x3f,0x0e,0x15,0x64,0x1f,0x12,0x13,0x14,0x10,0x2f,0x20,0x40,0x00,0x10,0x9f,0x24,0xe4,0x18,0x16,0x21,0xfe,0x40,0xfe,0x40,0x42,0xff,0x40,0x40,0x40 -+// 29340 犜 ; -+,0x11,0x10,0x57,0x50,0x7b,0x52,0x53,0x18,0x33,0x50,0x10,0x10,0x17,0x10,0x12,0x11,0x08,0x88,0xe8,0x08,0xdf,0x52,0xf2,0x12,0xd4,0x54,0x88,0xe8,0x94,0xa6,0xc3,0x02 -+// 29341 犝 ; -+,0x08,0x09,0x28,0x28,0x3f,0x28,0x49,0x0d,0x19,0x69,0x09,0x08,0x09,0x08,0x0b,0x08,0x20,0xfc,0x88,0x50,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x00 -+// 29342 犞 ; -+,0x09,0x08,0x0b,0x28,0x3e,0x29,0x4a,0x0c,0x08,0x19,0x29,0x09,0x09,0x09,0x09,0x09,0xfc,0x20,0xff,0x48,0x84,0xff,0x8a,0xf8,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x0a,0x04 -+// 29343 犟 ; -+,0x3e,0x02,0x3e,0x21,0x3e,0x02,0x02,0x14,0x0c,0x04,0x0f,0x10,0x3f,0x00,0x00,0x00,0x7c,0x44,0x7c,0x10,0xfe,0x92,0xfe,0x1e,0xf2,0x80,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 29344 犠 ; -+,0x08,0x08,0x29,0x28,0x3e,0x2a,0x49,0x0c,0x18,0x6b,0x08,0x09,0x0e,0x09,0x08,0x08,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x48,0x48,0xff,0x6a,0xcc,0x49,0x75,0xc3,0x41 -+// 29345 犡 ; -+,0x08,0x09,0x29,0x3d,0x29,0x29,0x4b,0x0d,0x19,0x6a,0x0a,0x0a,0x0a,0x0a,0x0c,0x08,0x00,0xff,0x24,0xff,0xa4,0x4a,0x7e,0x4a,0x7e,0x08,0xff,0x89,0xbd,0x85,0x85,0x82 -+// 29346 犢 ; -+,0x08,0x09,0x08,0x28,0x3e,0x29,0x49,0x0b,0x0c,0x18,0x28,0x48,0x08,0x08,0x08,0x09,0x10,0xff,0x10,0xfe,0x00,0xff,0x49,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 29347 犣 ; -+,0x08,0x09,0x28,0x29,0x3d,0x49,0x09,0x0d,0x08,0x19,0x69,0x09,0x09,0x09,0x09,0x09,0x92,0x24,0x92,0xfe,0x4a,0x32,0x4a,0xfe,0x00,0x24,0xb4,0x6c,0xb4,0x6d,0xb3,0x21 -+// 29348 犤 ; -+,0x09,0x09,0x29,0x29,0x3c,0x49,0x0b,0x0c,0x0b,0x1a,0x6b,0x0a,0x0b,0x0a,0x0a,0x0a,0xfe,0x52,0x52,0xfe,0x94,0x58,0xd2,0x12,0xee,0x40,0xd2,0x54,0xd8,0x51,0x51,0x8f -+// 29349 犥 ; -+,0x10,0x13,0x52,0x53,0x7a,0x53,0x52,0x1a,0x32,0x52,0x12,0x12,0x12,0x14,0x14,0x19,0x20,0xff,0x48,0xfe,0x4a,0xfe,0x88,0x8b,0xec,0x89,0xe9,0x87,0x00,0xaa,0x95,0x15 -+// 29350 犦 ; -+,0x09,0x09,0x29,0x29,0x3d,0x28,0x4b,0x0c,0x1f,0x29,0x4b,0x0c,0x08,0x09,0x08,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x88,0xfc,0x88,0xff,0xb4,0x2b,0xb2,0xa8,0x24,0xa0,0x40 -+// 29351 犧 ; -+,0x09,0x0b,0x28,0x29,0x3e,0x2b,0x49,0x0e,0x1b,0x69,0x0a,0x09,0x08,0x08,0x09,0x08,0x08,0xfe,0x20,0xfc,0x20,0xff,0xd4,0x92,0xff,0xd0,0x92,0xcc,0x49,0x55,0x63,0x81 -+// 29352 犨 ; -+,0x14,0x1f,0x14,0x3f,0x54,0x1f,0x14,0x1f,0x10,0x08,0x0f,0x10,0x7f,0x00,0x00,0x00,0x48,0x7e,0xc8,0x7e,0x48,0x7e,0x48,0x7f,0x40,0x80,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 29353 犩 ; -+,0x3f,0x04,0x3f,0x16,0x65,0x3f,0x12,0x0c,0x32,0x07,0x04,0x00,0x3f,0x00,0x00,0x00,0x90,0x7e,0xd2,0x7e,0x52,0xfe,0x28,0x49,0x47,0xfc,0x40,0x40,0xff,0x40,0x40,0x40 -+// 29354 犪 ; -+,0x10,0x53,0x51,0x7d,0x51,0x55,0x55,0x1d,0x36,0x50,0x13,0x10,0x13,0x10,0x11,0x16,0x88,0xff,0x20,0xfe,0x4a,0xfe,0x7a,0xc9,0x57,0xa8,0x54,0xc8,0x30,0x4c,0x87,0x02 -+// 29355 犫 ; -+,0x28,0x3f,0x28,0x7d,0x28,0x3d,0x29,0x3d,0x20,0x08,0x0f,0x10,0x7f,0x00,0x00,0x00,0x94,0xff,0x34,0xde,0x14,0xde,0x54,0xdf,0x90,0x80,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 29356 犬 ; -+,0x00,0x00,0x00,0x00,0x3f,0x00,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x60,0x00,0x80,0x90,0x88,0x88,0xff,0x80,0x40,0x40,0x20,0x20,0x10,0x10,0x08,0x07,0x02,0x00 -+// 29357 犭 ; -+,0x08,0x04,0x02,0x01,0x02,0x04,0x08,0x11,0x01,0x02,0x04,0x08,0x10,0x00,0x02,0x01,0x40,0x40,0x80,0x00,0x80,0x80,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x00 -+// 29358 犮 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x08,0x13,0x2c,0x00,0x20,0x10,0x18,0x08,0xfe,0x00,0x10,0x98,0x90,0x90,0x60,0x60,0x98,0x07,0x02,0x00 -+// 29359 犯 ; -+,0x00,0x24,0x14,0x08,0x0c,0x14,0x22,0x06,0x0a,0x12,0x22,0x42,0x02,0x04,0x14,0x08,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x4a,0x44,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 29360 犰 ; -+,0x00,0x22,0x14,0x08,0x19,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x05,0x29,0x12,0x04,0x40,0x40,0x40,0x40,0xf8,0x48,0x48,0x48,0x48,0x88,0x88,0x89,0x09,0x09,0x07,0x00 -+// 29361 犱 ; -+,0x02,0x22,0x14,0x08,0x15,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x04,0x09,0x2a,0x10,0x20,0x20,0x20,0x20,0xfc,0x24,0xa4,0x64,0x24,0x54,0x44,0x85,0x85,0x03,0x01,0x00 -+// 29362 犲 ; -+,0x02,0x22,0x14,0x08,0x15,0x24,0x46,0x0a,0x12,0x22,0x42,0x03,0x02,0x04,0x14,0x08,0x08,0x08,0x08,0x08,0xff,0x18,0x18,0x28,0x28,0x48,0x88,0x08,0x08,0x08,0x28,0x10 -+// 29363 犳 ; -+,0x02,0x22,0x14,0x08,0x14,0x22,0x47,0x06,0x0a,0x12,0x22,0x42,0x02,0x04,0x14,0x08,0x40,0x40,0x40,0x7e,0x82,0x82,0x42,0x22,0x32,0x12,0x02,0x02,0x02,0x02,0x14,0x08 -+// 29364 犴 ; -+,0x02,0x22,0x14,0x08,0x18,0x24,0x44,0x0d,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 29365 犵 ; -+,0x02,0x22,0x14,0x08,0x18,0x25,0x45,0x0c,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x40,0x40,0x40,0xff,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x80,0x81,0x81,0x7f,0x00 -+// 29366 状 ; -+,0x08,0x08,0x08,0x48,0x28,0x2f,0x08,0x08,0x18,0x28,0x48,0x09,0x09,0x0a,0x0c,0x08,0x50,0x48,0x4c,0x44,0x40,0xff,0x50,0x50,0x90,0x90,0x88,0x08,0x04,0x07,0x02,0x00 -+// 29367 犷 ; -+,0x04,0x44,0x28,0x10,0x28,0x44,0x04,0x0c,0x14,0x24,0x45,0x05,0x05,0x0a,0x2a,0x14,0x20,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 29368 犸 ; -+,0x22,0x17,0x08,0x18,0x24,0x44,0x02,0x06,0x0a,0x12,0x23,0x42,0x02,0x04,0x14,0x08,0x00,0xfc,0x04,0x84,0x84,0x88,0x88,0xfe,0x82,0x02,0xfa,0x02,0x02,0x02,0x14,0x08 -+// 29369 犹 ; -+,0x00,0x22,0x14,0x08,0x1b,0x24,0x04,0x0c,0x14,0x24,0x44,0x04,0x05,0x09,0x2a,0x14,0x50,0x48,0x4c,0x44,0xff,0x50,0x50,0x50,0x50,0x90,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 29370 犺 ; -+,0x02,0x22,0x14,0x0b,0x18,0x24,0x4c,0x0c,0x14,0x24,0x44,0x04,0x05,0x05,0x2a,0x14,0x40,0x20,0x20,0xff,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x89,0x09,0x09,0x07,0x00 -+// 29371 犻 ; -+,0x00,0x44,0x29,0x10,0x28,0x48,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x28,0x10,0x10,0x12,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10,0x10 -+// 29372 犼 ; -+,0x44,0x2b,0x10,0x28,0x48,0x04,0x0c,0x14,0x25,0x46,0x04,0x04,0x04,0x08,0x29,0x10,0x08,0xf8,0x28,0x48,0x48,0x48,0x68,0xc8,0x48,0x48,0x48,0x48,0x49,0x49,0x49,0x87 -+// 29373 犽 ; -+,0x00,0x45,0x28,0x10,0x28,0x48,0x05,0x0c,0x14,0x24,0x44,0x04,0x05,0x06,0x28,0x10,0x00,0xff,0x08,0x08,0x88,0x88,0xff,0x18,0x28,0x28,0x48,0x88,0x08,0x08,0x28,0x10 -+// 29374 犾 ; -+,0x22,0x12,0x0c,0x08,0x17,0x24,0x0c,0x14,0x14,0x24,0x44,0x04,0x04,0x05,0x16,0x08,0x28,0x24,0x26,0x22,0xff,0x20,0x20,0x20,0x50,0x50,0x48,0x88,0x84,0x07,0x02,0x00 -+// 29375 犿 ; -+,0x04,0x44,0x28,0x13,0x28,0x48,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x40,0x20,0x20,0xff,0x20,0x20,0x20,0x28,0x24,0x26,0x22,0x20,0x20,0x20,0x20,0x20 -+// 29376 狀 ; -+,0x02,0x22,0x22,0x22,0x3e,0x03,0x02,0x7e,0x12,0x12,0x12,0x12,0x22,0x22,0x43,0x02,0x20,0x28,0x24,0x24,0x20,0xff,0x20,0x30,0x50,0x48,0x48,0x44,0x84,0x83,0x02,0x00 -+// 29377 狁 ; -+,0x00,0x22,0x14,0x08,0x14,0x25,0x44,0x0c,0x14,0x24,0x44,0x04,0x04,0x05,0x16,0x08,0x20,0x30,0x60,0x48,0x84,0xfe,0x4a,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 29378 狂 ; -+,0x42,0x23,0x14,0x08,0x18,0x24,0x44,0x0d,0x14,0x24,0x44,0x04,0x04,0x08,0x2b,0x10,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 29379 狃 ; -+,0x02,0x22,0x14,0x08,0x14,0x24,0x04,0x0d,0x14,0x24,0x44,0x04,0x04,0x04,0x2b,0x10,0x00,0xfe,0x24,0x24,0x24,0x24,0x24,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0xff,0x00 -+// 29380 狄 ; -+,0x02,0x42,0x24,0x18,0x29,0x45,0x05,0x0e,0x14,0x24,0x44,0x04,0x05,0x09,0x2a,0x14,0x20,0x20,0x22,0x22,0x24,0x28,0x20,0x50,0x50,0x50,0x88,0x88,0x08,0x04,0x07,0x02 -+// 29381 狅 ; -+,0x00,0x44,0x29,0x10,0x28,0x48,0x04,0x0d,0x14,0x14,0x24,0x44,0x04,0x05,0x28,0x10,0x04,0x1e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 29382 狆 ; -+,0x40,0x22,0x14,0x08,0x19,0x25,0x4d,0x0d,0x15,0x25,0x44,0x04,0x04,0x04,0x28,0x10,0x10,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x11,0x10,0x10,0x10,0x10,0x10,0x10 -+// 29383 狇 ; -+,0x00,0x44,0x24,0x18,0x1b,0x28,0x44,0x0c,0x0c,0x15,0x25,0x46,0x04,0x08,0x28,0x10,0x20,0x20,0x20,0x20,0xff,0x70,0x70,0xa8,0xa8,0x24,0x26,0x23,0x22,0x20,0x20,0x20 -+// 29384 狈 ; -+,0x02,0x22,0x14,0x08,0x18,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x29,0x12,0x00,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0xa2,0x28,0x46,0x83,0x01,0x00 -+// 29385 狉 ; -+,0x40,0x27,0x18,0x10,0x28,0x48,0x04,0x0c,0x15,0x26,0x44,0x04,0x08,0x2b,0x10,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x70,0xa8,0x26,0x23,0x21,0x20,0x20,0xff,0x00,0x00 -+// 29386 狊 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x7f,0x01,0x01,0x02,0x04,0x18,0x60,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x90,0x88,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 29387 狋 ; -+,0x02,0x22,0x14,0x08,0x14,0x24,0x4d,0x0c,0x14,0x24,0x44,0x05,0x05,0x0a,0x28,0x10,0x00,0xfe,0x00,0x00,0x00,0x00,0xff,0x10,0x98,0xd4,0x92,0x13,0x11,0x11,0x50,0x20 -+// 29388 狌 ; -+,0x00,0x44,0x28,0x10,0x29,0x49,0x06,0x0c,0x14,0x25,0x44,0x04,0x04,0x08,0x2b,0x10,0x00,0x10,0x90,0x90,0x12,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 29389 狍 ; -+,0x02,0x22,0x14,0x08,0x15,0x24,0x42,0x06,0x0a,0x12,0x62,0x02,0x02,0x04,0x14,0x08,0x40,0x40,0x80,0xfe,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x84,0x94,0x89,0x81,0x7f,0x00 -+// 29390 狎 ; -+,0x02,0x22,0x14,0x08,0x14,0x24,0x06,0x0a,0x12,0x22,0x42,0x02,0x02,0x04,0x14,0x08,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xff,0x91,0x10,0x10,0x10,0x10,0x10 -+// 29391 狏 ; -+,0x40,0x22,0x14,0x09,0x19,0x26,0x44,0x0c,0x17,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x80,0x80,0xff,0x00,0x10,0x10,0x9e,0xf2,0x92,0x92,0x9a,0x94,0x91,0x81,0x7f,0x00 -+// 29392 狐 ; -+,0x04,0x45,0x29,0x11,0x29,0x49,0x05,0x0d,0x15,0x25,0x45,0x05,0x0a,0x0a,0x2c,0x10,0x3c,0xe8,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x24,0x24,0x2c,0x2a,0x36,0x23,0x00 -+// 29393 狑 ; -+,0x04,0x44,0x28,0x10,0x29,0x4a,0x0c,0x14,0x15,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x20,0x70,0x50,0x88,0x0c,0x47,0x22,0x20,0xfe,0x04,0x88,0x50,0x20,0x30,0x10,0x00 -+// 29394 狒 ; -+,0x02,0x22,0x15,0x08,0x14,0x25,0x45,0x0d,0x15,0x25,0x44,0x04,0x04,0x08,0x29,0x12,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x4a,0x48,0xff,0x49,0x49,0x49,0x8d,0x8a,0x08,0x08 -+// 29395 狓 ; -+,0x04,0x44,0x28,0x11,0x29,0x49,0x05,0x0d,0x15,0x25,0x45,0x0a,0x0a,0x54,0x2b,0x00,0x10,0x10,0x10,0xff,0x12,0x14,0x10,0xfc,0x44,0x48,0x48,0x30,0x30,0xce,0x04,0x00 -+// 29396 狔 ; -+,0x00,0x25,0x15,0x09,0x19,0x25,0x45,0x0d,0x15,0x25,0x45,0x05,0x05,0x0a,0x2a,0x14,0x00,0xfe,0x02,0x02,0xfe,0x20,0x22,0x26,0x28,0x30,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 29397 狕 ; -+,0x44,0x24,0x18,0x18,0x25,0x45,0x0f,0x04,0x14,0x25,0x45,0x07,0x04,0x28,0x10,0x01,0x08,0x88,0x88,0x88,0x3e,0x4a,0xca,0x8a,0x8a,0x52,0xd2,0x52,0x22,0x42,0x94,0x08 -+// 29398 狖 ; -+,0x00,0x44,0x25,0x19,0x1a,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x05,0x29,0x12,0x00,0x40,0x20,0xff,0x01,0x02,0x58,0x50,0x50,0x50,0x48,0x88,0x88,0x04,0x07,0x02,0x00 -+// 29399 狗 ; -+,0x02,0x22,0x14,0x09,0x19,0x26,0x44,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x28,0x10,0x80,0x80,0x80,0xff,0x01,0x01,0xf9,0x89,0x89,0x89,0xf9,0x81,0x01,0x02,0x0a,0x04 -+// 29400 狘 ; -+,0x00,0x22,0x14,0x08,0x15,0x25,0x0d,0x0d,0x15,0x25,0x45,0x05,0x05,0x05,0x29,0x10,0x20,0x28,0x24,0x20,0xfe,0x20,0x24,0x24,0x24,0x28,0x28,0x10,0x52,0xaa,0x46,0x82 -+// 29401 狙 ; -+,0x04,0x44,0x28,0x10,0x28,0x48,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x08,0x2b,0x10,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 29402 狚 ; -+,0x00,0x22,0x14,0x08,0x18,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x29,0x10,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00,0x00,0xff,0x00 -+// 29403 狛 ; -+,0x00,0x22,0x14,0x08,0x14,0x24,0x02,0x06,0x0a,0x12,0x22,0x42,0x02,0x04,0x14,0x08,0x10,0x10,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82 -+// 29404 狜 ; -+,0x00,0x24,0x14,0x08,0x19,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x28,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82 -+// 29405 狝 ; -+,0x00,0x22,0x14,0x09,0x15,0x26,0x44,0x0c,0x14,0x15,0x25,0x46,0x04,0x04,0x28,0x10,0x80,0x80,0xff,0x01,0x12,0x10,0x90,0xd8,0x94,0x12,0x13,0x11,0x11,0x10,0x50,0x20 -+// 29406 狞 ; -+,0x00,0x22,0x15,0x09,0x1a,0x24,0x44,0x0d,0x14,0x24,0x44,0x04,0x04,0x04,0x28,0x10,0x20,0x10,0xff,0x01,0x02,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 29407 狟 ; -+,0x00,0x45,0x28,0x10,0x28,0x48,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x29,0x10,0x00,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00,0x00,0xff,0x00 -+// 29408 狠 ; -+,0x00,0x45,0x29,0x11,0x29,0x45,0x05,0x0d,0x15,0x25,0x45,0x05,0x05,0x09,0x29,0x11,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x20,0x22,0x14,0x18,0x28,0x44,0x87,0x02 -+// 29409 狡 ; -+,0x44,0x24,0x18,0x13,0x28,0x48,0x05,0x0e,0x14,0x24,0x44,0x04,0x08,0x28,0x13,0x0c,0x40,0x20,0x22,0xff,0x88,0x84,0x02,0x8a,0x88,0x50,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 29410 狢 ; -+,0x00,0x22,0x14,0x08,0x19,0x26,0x44,0x0c,0x14,0x27,0x44,0x04,0x04,0x08,0x28,0x10,0x40,0x40,0x7e,0x84,0x44,0x28,0x10,0x2c,0xc7,0x02,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 29411 狣 ; -+,0x04,0x44,0x28,0x12,0x29,0x49,0x04,0x0c,0x14,0x25,0x46,0x04,0x04,0x09,0x2a,0x14,0x50,0x50,0x50,0x52,0x54,0x58,0x50,0x58,0xd4,0x52,0x50,0x90,0x91,0x11,0x11,0x0f -+// 29412 狤 ; -+,0x00,0x44,0x28,0x13,0x28,0x48,0x05,0x0c,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 29413 狥 ; -+,0x04,0x44,0x28,0x11,0x29,0x4a,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x28,0x10,0x80,0x80,0xfe,0x02,0x02,0xf2,0x92,0x92,0xf2,0x92,0x92,0xf2,0x92,0x02,0x14,0x08 -+// 29414 狦 ; -+,0x40,0x25,0x15,0x19,0x2b,0x49,0x09,0x19,0x2b,0x29,0x49,0x09,0x09,0x09,0x29,0x11,0x00,0xfe,0x52,0x52,0xff,0x52,0x52,0x52,0xff,0x52,0x52,0x52,0x52,0x52,0x0a,0x04 -+// 29415 狧 ; -+,0x00,0x22,0x15,0x08,0x18,0x65,0x04,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x28,0x10,0x04,0x1e,0xf0,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 29416 狨 ; -+,0x44,0x24,0x18,0x13,0x28,0x48,0x04,0x0c,0x17,0x24,0x44,0x05,0x05,0x0a,0x2c,0x10,0x10,0x14,0x12,0xff,0x10,0x92,0x92,0x92,0xf4,0x94,0x88,0x18,0x28,0x45,0x83,0x01 -+// 29417 狩 ; -+,0x00,0x44,0x29,0x11,0x2a,0x48,0x04,0x0d,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x40,0x20,0xff,0x01,0x0a,0x08,0x08,0xff,0x08,0x88,0x48,0x48,0x08,0x08,0x28,0x10 -+// 29418 狪 ; -+,0x00,0x45,0x29,0x11,0x29,0x49,0x05,0x0d,0x15,0x25,0x45,0x05,0x05,0x09,0x29,0x11,0x00,0xfe,0x02,0x02,0x7a,0x02,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 29419 狫 ; -+,0x00,0x04,0x44,0x2b,0x10,0x28,0x47,0x0c,0x14,0x24,0x44,0x05,0x06,0x08,0x28,0x10,0x40,0x44,0x46,0xf4,0x48,0x48,0xff,0x10,0xa0,0x46,0xd8,0x60,0x42,0x42,0x42,0x3e -+// 29420 独 ; -+,0x00,0x44,0x24,0x18,0x19,0x25,0x45,0x0d,0x0d,0x15,0x24,0x44,0x04,0x0b,0x29,0x10,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0xfe,0x22,0x28,0x24,0x3e,0xe2,0x02,0x00 -+// 29421 狭 ; -+,0x04,0x44,0x2b,0x10,0x28,0x4a,0x05,0x0c,0x17,0x24,0x44,0x04,0x04,0x09,0x2a,0x14,0x20,0x20,0xfe,0x20,0x20,0x24,0x28,0xb0,0xff,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 29422 狮 ; -+,0x40,0x24,0x1a,0x12,0x2a,0x4a,0x0a,0x1a,0x2a,0x4a,0x0a,0x08,0x09,0x52,0x24,0x08,0x80,0xbf,0x88,0x88,0xbf,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xad,0x2a,0x08,0x08,0x08 -+// 29423 狯 ; -+,0x04,0x44,0x28,0x10,0x28,0x49,0x06,0x0c,0x14,0x27,0x44,0x04,0x09,0x2b,0x11,0x00,0x20,0x20,0x50,0x48,0x8c,0x07,0xfa,0x00,0x00,0xfe,0x40,0x88,0x04,0xfe,0x02,0x02 -+// 29424 狰 ; -+,0x04,0x44,0x28,0x10,0x29,0x4b,0x08,0x0b,0x18,0x28,0x49,0x08,0x08,0x28,0x10,0x00,0x40,0x40,0x7c,0x88,0x10,0xfe,0x22,0xff,0x22,0x22,0xfe,0x20,0x20,0x20,0xa0,0x40 -+// 29425 狱 ; -+,0x04,0x45,0x28,0x10,0x28,0x4f,0x09,0x09,0x19,0x29,0x49,0x09,0x09,0x28,0x11,0x00,0x10,0x10,0x94,0x12,0x10,0x7f,0x10,0x10,0x28,0x28,0x24,0xc4,0x42,0x83,0x01,0x00 -+// 29426 狲 ; -+,0x00,0x47,0x28,0x10,0x28,0x48,0x04,0x0c,0x15,0x26,0x44,0x04,0x04,0x08,0x2a,0x11,0x08,0xe8,0x48,0x88,0x88,0xac,0xca,0xab,0xa9,0xa9,0xc8,0x88,0x88,0x88,0xa8,0x10 -+// 29427 狳 ; -+,0x44,0x24,0x18,0x18,0x24,0x45,0x0e,0x14,0x15,0x24,0x44,0x04,0x05,0x0a,0x2c,0x10,0x20,0x20,0x50,0x4c,0x87,0xfa,0x20,0x20,0xfe,0x20,0xa8,0xa4,0x22,0x22,0xa0,0x40 -+// 29428 狴 ; -+,0x01,0x41,0x25,0x19,0x19,0x29,0x45,0x0d,0x14,0x24,0x45,0x04,0x04,0x08,0x2b,0x10,0x10,0x10,0x12,0xdc,0x10,0x11,0x51,0x8f,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 29429 狵 ; -+,0x04,0x26,0x14,0x08,0x19,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x05,0x05,0x16,0x08,0x20,0x28,0x24,0x24,0xff,0x52,0x54,0x5a,0x54,0x59,0x92,0x94,0x19,0x31,0xcf,0x00 -+// 29430 狶 ; -+,0x00,0x24,0x14,0x08,0x19,0x27,0x44,0x0c,0x14,0x25,0x46,0x04,0x04,0x08,0x28,0x10,0x84,0x66,0x38,0x64,0xa2,0xff,0x50,0x90,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 29431 狷 ; -+,0x02,0x22,0x14,0x08,0x14,0x24,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 29432 狸 ; -+,0x04,0x45,0x29,0x11,0x29,0x49,0x09,0x15,0x15,0x24,0x45,0x04,0x08,0x08,0x2b,0x10,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 29433 狹 ; -+,0x44,0x24,0x1b,0x10,0x29,0x49,0x05,0x0e,0x14,0x24,0x44,0x04,0x04,0x09,0x2a,0x14,0x20,0x20,0xff,0x20,0x24,0x24,0x24,0xaa,0x71,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 29434 狺 ; -+,0x04,0x44,0x28,0x11,0x28,0x48,0x04,0x0c,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x20,0x10,0x12,0xff,0x00,0xfe,0x00,0xfe,0x00,0x02,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 29435 狻 ; -+,0x22,0x12,0x0c,0x09,0x14,0x24,0x05,0x0e,0x14,0x24,0x45,0x06,0x04,0x08,0x29,0x16,0x40,0x48,0x84,0xfe,0x0a,0xc4,0x42,0x42,0xfe,0x84,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 29436 狼 ; -+,0x44,0x24,0x19,0x11,0x29,0x49,0x0d,0x15,0x15,0x25,0x45,0x05,0x05,0x09,0x29,0x11,0x20,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x42,0x24,0x28,0x10,0x4c,0x87,0x02 -+// 29437 狽 ; -+,0x24,0x14,0x08,0x18,0x24,0x44,0x0a,0x12,0x22,0x42,0x02,0x02,0x02,0x14,0x09,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x44,0x82,0x01,0x00 -+// 29438 狾 ; -+,0x01,0x45,0x29,0x11,0x2f,0x49,0x09,0x19,0x2b,0x4d,0x09,0x09,0x09,0x09,0x2d,0x12,0x06,0x3f,0x20,0x20,0xe0,0x3f,0x24,0xa4,0x24,0x24,0x24,0x44,0x44,0x44,0x84,0x04 -+// 29439 狿 ; -+,0x00,0x44,0x2b,0x10,0x29,0x49,0x0b,0x18,0x28,0x4c,0x0b,0x09,0x12,0x54,0x28,0x00,0x00,0x06,0xb8,0x88,0x28,0x2e,0xa8,0xa8,0xa8,0xaa,0x3f,0x00,0xc0,0x3f,0x02,0x00 -+// 29440 猀 ; -+,0x04,0x45,0x28,0x10,0x2a,0x49,0x05,0x0c,0x14,0x25,0x47,0x05,0x05,0x09,0x29,0x11,0x08,0x08,0x88,0x8c,0x2a,0x2b,0x49,0x48,0x88,0x89,0x02,0x04,0x08,0x10,0x60,0x80 -+// 29441 猁 ; -+,0x00,0x48,0x2b,0x10,0x28,0x4f,0x08,0x19,0x29,0x4a,0x0a,0x0c,0x08,0x28,0x10,0x00,0x01,0x61,0x81,0x89,0x89,0xe9,0x89,0xc9,0xa9,0xa9,0x89,0x81,0x81,0x81,0x85,0x82 -+// 29442 猂 ; -+,0x44,0x24,0x18,0x18,0x24,0x44,0x0c,0x14,0x24,0x44,0x04,0x05,0x04,0x08,0x28,0x10,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 29443 猃 ; -+,0x44,0x24,0x18,0x10,0x29,0x4a,0x0c,0x14,0x24,0x45,0x04,0x04,0x04,0x04,0x2b,0x10,0x20,0x50,0x48,0x84,0x03,0xfa,0x00,0x04,0x46,0x24,0xa4,0xa8,0x08,0x00,0xff,0x00 -+// 29444 猄 ; -+,0x04,0x44,0x28,0x11,0x28,0x48,0x0c,0x14,0x24,0x44,0x04,0x04,0x05,0x0a,0x28,0x10,0x20,0x10,0x12,0xff,0x00,0xfc,0x84,0x84,0xfc,0x10,0xd4,0x92,0x13,0x11,0x50,0x20 -+// 29445 猅 ; -+,0x04,0x24,0x18,0x1b,0x24,0x44,0x0d,0x0c,0x14,0x24,0x47,0x04,0x04,0x08,0x28,0x10,0x48,0x48,0x48,0xcf,0x48,0x48,0xcf,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 29446 猆 ; -+,0x02,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x02,0x3f,0x00,0x01,0x02,0x04,0x18,0x60,0x20,0x20,0x3e,0x20,0x3e,0x20,0x3e,0xa8,0xa4,0xff,0x80,0x40,0x20,0x18,0x0f,0x02 -+// 29447 猇 ; -+,0x04,0x44,0x28,0x11,0x29,0x49,0x05,0x0d,0x15,0x25,0x45,0x05,0x0a,0x0a,0x2d,0x12,0x20,0x3e,0x20,0xff,0x21,0x3a,0xe2,0x1e,0x00,0x78,0x48,0x48,0x49,0x89,0x07,0x00 -+// 29448 猈 ; -+,0x04,0x44,0x28,0x10,0x28,0x4c,0x04,0x0c,0x14,0x24,0x44,0x05,0x04,0x04,0x28,0x10,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 29449 猉 ; -+,0x04,0x44,0x29,0x10,0x28,0x48,0x04,0x0c,0x14,0x24,0x44,0x05,0x04,0x08,0x29,0x12,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0x48,0x84,0x02,0x01 -+// 29450 猊 ; -+,0x00,0x25,0x15,0x09,0x19,0x25,0x05,0x0d,0x15,0x24,0x44,0x04,0x05,0x09,0x2a,0x14,0x40,0x9c,0x04,0x04,0x04,0xdc,0x04,0x04,0xfc,0x90,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 29451 猋 ; -+,0x00,0x00,0x1f,0x01,0x02,0x0c,0x30,0x0a,0x08,0x3f,0x0c,0x12,0x11,0x20,0x43,0x00,0xa0,0x90,0xfe,0x40,0x20,0x18,0x07,0x12,0x12,0x7f,0x28,0x28,0x44,0x87,0x02,0x00 -+// 29452 猌 ; -+,0x04,0x04,0x7f,0x04,0x25,0x25,0x25,0x56,0x0c,0x0e,0x15,0x24,0x44,0x04,0x05,0x06,0x10,0x14,0xd2,0x12,0x10,0x7f,0x28,0xa8,0x28,0x28,0x44,0x44,0x84,0x86,0x03,0x02 -+// 29453 猍 ; -+,0x04,0x44,0x2b,0x10,0x28,0x48,0x04,0x0d,0x16,0x24,0x44,0x04,0x05,0x06,0x28,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x95,0x59,0x30,0x38,0x54,0x92,0x11,0x10,0x10,0x10 -+// 29454 猎 ; -+,0x02,0x22,0x14,0x09,0x18,0x24,0x47,0x0c,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x48,0x48,0x48,0xfe,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 29455 猏 ; -+,0x44,0x24,0x19,0x19,0x29,0x45,0x0d,0x0d,0x15,0x25,0x45,0x05,0x05,0x0a,0x2a,0x14,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 29456 猐 ; -+,0x45,0x24,0x1b,0x18,0x28,0x45,0x04,0x0c,0x17,0x24,0x44,0x04,0x04,0x05,0x2a,0x14,0x02,0x84,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x28,0x48,0x48,0x89,0x09,0x07,0x00 -+// 29457 猑 ; -+,0x04,0x45,0x29,0x11,0x29,0x49,0x04,0x0d,0x15,0x25,0x45,0x05,0x05,0x09,0x29,0x11,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x10,0x13,0xdc,0x10,0x11,0x11,0x51,0x8f,0x00 -+// 29458 猒 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x25,0x22,0x10,0x14,0x12,0x12,0x10,0x7f,0x10,0x10,0x10,0x28,0x28,0x24,0x44,0x46,0x83,0x02 -+// 29459 猓 ; -+,0x04,0x45,0x29,0x11,0x29,0x49,0x09,0x09,0x18,0x2b,0x48,0x08,0x09,0x0e,0x28,0x10,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x70,0xac,0x27,0x22,0x20,0x20 -+// 29460 猔 ; -+,0x04,0x44,0x29,0x11,0x2a,0x48,0x04,0x0c,0x15,0x24,0x44,0x04,0x05,0x0a,0x28,0x10,0x40,0x20,0xff,0x01,0x02,0xfc,0x00,0x02,0xff,0x10,0x94,0x92,0x11,0x10,0x50,0x20 -+// 29461 猕 ; -+,0x44,0x25,0x18,0x10,0x2b,0x4a,0x06,0x0e,0x17,0x24,0x44,0x04,0x04,0x08,0x2a,0x11,0x10,0xd0,0x90,0x9f,0xa1,0x2a,0x48,0x08,0xac,0xaa,0xab,0xa9,0xc9,0x88,0xa8,0x10 -+// 29462 猖 ; -+,0x24,0x14,0x08,0x18,0x24,0x44,0x0c,0x14,0x25,0x45,0x05,0x05,0x05,0x09,0x29,0x10,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xff,0x01,0xff,0x01,0x01,0xff,0x01,0x00 -+// 29463 猗 ; -+,0x02,0x22,0x15,0x08,0x18,0x29,0x4b,0x0c,0x15,0x25,0x45,0x05,0x05,0x08,0x28,0x10,0x20,0x20,0xfe,0x50,0x88,0x04,0xff,0x04,0xe4,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 29464 猘 ; -+,0x00,0x4a,0x2b,0x12,0x34,0x4f,0x08,0x1b,0x2a,0x4a,0x0a,0x0a,0x0a,0x08,0x28,0x10,0x82,0x82,0xe2,0x8a,0x8a,0xea,0x8a,0xea,0xaa,0xaa,0xaa,0xa2,0xe2,0x82,0x8a,0x84 -+// 29465 猙 ; -+,0x24,0x15,0x08,0x19,0x28,0x45,0x04,0x0f,0x14,0x25,0x44,0x04,0x04,0x08,0x28,0x10,0x1c,0xf0,0x46,0x24,0x88,0xfe,0x22,0xff,0x22,0xfe,0x22,0x20,0x20,0x20,0xa0,0x40 -+// 29466 猚 ; -+,0x22,0x12,0x0c,0x08,0x15,0x26,0x0c,0x14,0x14,0x24,0x44,0x04,0x04,0x04,0x14,0x08,0x50,0x48,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80,0x80 -+// 29467 猛 ; -+,0x45,0x24,0x18,0x10,0x2b,0x48,0x08,0x18,0x2b,0x4a,0x0a,0x0a,0x0a,0x0f,0x28,0x10,0xfc,0x08,0x10,0x20,0xff,0x20,0xa0,0x40,0xfc,0xa4,0xa4,0xa4,0xa4,0xff,0x00,0x00 -+// 29468 猜 ; -+,0x24,0x15,0x08,0x19,0x24,0x47,0x04,0x0d,0x15,0x25,0x45,0x05,0x05,0x09,0x29,0x11,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 29469 猝 ; -+,0x44,0x24,0x1b,0x10,0x28,0x48,0x0d,0x16,0x14,0x24,0x47,0x04,0x04,0x08,0x28,0x10,0x20,0x10,0xff,0x00,0x88,0x88,0x54,0x22,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 29470 猞 ; -+,0x04,0x44,0x28,0x10,0x29,0x46,0x0c,0x14,0x25,0x44,0x04,0x05,0x05,0x05,0x29,0x11,0x20,0x20,0x50,0x8c,0x07,0xfa,0x20,0x20,0xfc,0x20,0x20,0xfc,0x04,0x04,0xfc,0x04 -+// 29471 猟 ; -+,0x01,0x4a,0x29,0x13,0x2a,0x4a,0x0b,0x1a,0x2a,0x4b,0x0a,0x0a,0x0a,0x14,0x54,0x28,0x24,0x48,0x24,0xfc,0x44,0x44,0xfc,0x44,0x44,0xfc,0x44,0x44,0x45,0x45,0x43,0x01 -+// 29472 猠 ; -+,0x04,0x44,0x29,0x11,0x29,0x49,0x05,0x0d,0x15,0x25,0x47,0x04,0x04,0x09,0x2a,0x10,0x50,0x50,0xfc,0x54,0x54,0x54,0xfc,0x54,0x54,0x54,0xff,0x48,0x84,0x02,0x01,0x00 -+// 29473 猡 ; -+,0x00,0x25,0x15,0x09,0x19,0x25,0x44,0x0c,0x14,0x25,0x46,0x04,0x04,0x08,0x2b,0x16,0x00,0xff,0x29,0x29,0xff,0x21,0x40,0x7e,0x82,0x84,0x48,0x30,0x20,0xc0,0x00,0x00 -+// 29474 猢 ; -+,0x04,0x24,0x18,0x1b,0x24,0x44,0x0e,0x0b,0x12,0x22,0x42,0x03,0x02,0x04,0x14,0x08,0x80,0x9e,0x92,0xf2,0x92,0x9e,0x92,0xd2,0x52,0x5e,0x52,0xd2,0x22,0x22,0x4a,0x84 -+// 29475 猣 ; -+,0x02,0x22,0x15,0x09,0x19,0x25,0x44,0x0d,0x16,0x24,0x45,0x06,0x04,0x08,0x29,0x16,0x08,0x48,0x32,0x32,0x4a,0xfe,0x48,0x86,0x43,0xfc,0x88,0x50,0x30,0x4c,0x87,0x02 -+// 29476 猤 ; -+,0x04,0x45,0x2a,0x11,0x28,0x49,0x0a,0x14,0x24,0x47,0x04,0x04,0x04,0x09,0x2a,0x14,0x10,0xd6,0x48,0x8b,0x84,0x06,0xfb,0x20,0x20,0xfe,0x50,0x50,0x88,0x0c,0x07,0x02 -+// 29477 猥 ; -+,0x44,0x25,0x19,0x11,0x29,0x45,0x0c,0x17,0x25,0x45,0x05,0x05,0x05,0x05,0x29,0x11,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff,0x40,0x43,0x2c,0x30,0x18,0x4c,0x87,0x02 -+// 29478 猦 ; -+,0x44,0x25,0x19,0x11,0x29,0x49,0x0d,0x15,0x15,0x25,0x45,0x05,0x05,0x0a,0x2a,0x14,0x00,0xfe,0x02,0xfe,0x22,0xfa,0xaa,0xaa,0xaa,0xfa,0x22,0x3b,0xe7,0x81,0x01,0x00 -+// 29479 猧 ; -+,0x04,0x24,0x18,0x18,0x24,0x44,0x0d,0x15,0x15,0x25,0x45,0x05,0x05,0x05,0x29,0x11,0x00,0xfc,0x84,0xf4,0x94,0x94,0xff,0x01,0x79,0x49,0x49,0x79,0x49,0x01,0x05,0x02 -+// 29480 猨 ; -+,0x04,0x45,0x28,0x11,0x28,0x49,0x04,0x0f,0x14,0x24,0x44,0x04,0x05,0x0a,0x2c,0x13,0x1e,0xe0,0x42,0x24,0xa8,0xfe,0x40,0xff,0x40,0x7e,0x84,0xc8,0x30,0x2c,0xc7,0x02 -+// 29481 猩 ; -+,0x42,0x22,0x14,0x08,0x18,0x24,0x4c,0x14,0x14,0x25,0x45,0x06,0x04,0x08,0x29,0x10,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x92,0x90,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 29482 猪 ; -+,0x04,0x44,0x29,0x10,0x28,0x4b,0x04,0x0c,0x14,0x25,0x46,0x04,0x04,0x08,0x28,0x10,0x20,0x22,0xfa,0x24,0x28,0xff,0x20,0x40,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 29483 猫 ; -+,0x04,0x44,0x2b,0x10,0x28,0x44,0x0d,0x15,0x25,0x45,0x05,0x05,0x05,0x09,0x29,0x11,0x48,0x48,0xff,0x48,0x48,0x48,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0x22,0xfe,0x02 -+// 29484 猬 ; -+,0x05,0x45,0x29,0x11,0x29,0x45,0x0d,0x14,0x24,0x44,0x04,0x04,0x04,0x08,0x28,0x10,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 29485 猭 ; -+,0x04,0x44,0x28,0x11,0x28,0x4b,0x08,0x19,0x2a,0x48,0x0b,0x08,0x08,0x0b,0x28,0x10,0x80,0xf8,0x88,0xf8,0x08,0xff,0xc0,0x24,0x58,0x90,0x38,0x54,0x93,0x10,0xa0,0x40 -+// 29486 献 ; -+,0x04,0x04,0x7f,0x08,0x08,0x3f,0x2a,0x2a,0x3f,0x24,0x3f,0x24,0x24,0x24,0x22,0x21,0x10,0x10,0xd4,0x12,0x10,0xff,0x90,0x90,0xa8,0xa8,0xa8,0xa4,0xa4,0xa2,0xa3,0x42 -+// 29487 猯 ; -+,0x04,0x45,0x29,0x11,0x29,0x44,0x0f,0x14,0x15,0x25,0x45,0x05,0x05,0x05,0x29,0x11,0x20,0x22,0x22,0x22,0xfe,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x52,0x52,0x4a,0x04 -+// 29488 猰 ; -+,0x04,0x44,0x2b,0x10,0x2b,0x48,0x07,0x0c,0x14,0x27,0x44,0x04,0x04,0x09,0x2a,0x14,0x80,0xbe,0xca,0x8a,0xea,0x92,0xd2,0xaa,0xa4,0xff,0x60,0x50,0x88,0x04,0x07,0x02 -+// 29489 猱 ; -+,0x04,0x44,0x28,0x13,0x28,0x48,0x05,0x0e,0x14,0x25,0x44,0x04,0x08,0x09,0x2a,0x10,0xfc,0x28,0x10,0xff,0x51,0x92,0x50,0x20,0x10,0xff,0x38,0x54,0x94,0x13,0x12,0x10 -+// 29490 猲 ; -+,0x04,0x45,0x29,0x11,0x29,0x45,0x0c,0x14,0x25,0x47,0x05,0x05,0x05,0x08,0x28,0x10,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xfe,0x22,0x22,0x52,0x8a,0xfa,0x02,0x14,0x08 -+// 29491 猳 ; -+,0x00,0x4b,0x2a,0x12,0x33,0x4a,0x0a,0x1b,0x2a,0x4a,0x0b,0x0a,0x0a,0x0a,0x52,0x22,0x00,0xde,0x42,0x42,0xde,0x42,0x00,0xbe,0x12,0x14,0xd4,0x08,0x14,0x24,0x43,0x82 -+// 29492 猴 ; -+,0x44,0x24,0x18,0x11,0x29,0x47,0x0d,0x15,0x25,0x45,0x05,0x05,0x05,0x09,0x29,0x11,0x80,0xbc,0x84,0xff,0x40,0x40,0x7e,0x90,0x10,0xff,0x28,0x28,0x4c,0x44,0x87,0x02 -+// 29493 猵 ; -+,0x00,0x44,0x2b,0x12,0x2a,0x4b,0x0a,0x0a,0x1a,0x2a,0x4a,0x0a,0x0a,0x0a,0x2c,0x10,0x40,0x20,0xfe,0x02,0x02,0xfe,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xaa,0x84 -+// 29494 猶 ; -+,0x00,0x44,0x24,0x1b,0x10,0x29,0x49,0x19,0x29,0x49,0x09,0x09,0x09,0x09,0x29,0x11,0x84,0x48,0x10,0xff,0x48,0xfe,0x4a,0x4a,0x4a,0x8e,0x02,0x7a,0x02,0x02,0xfe,0x02 -+// 29495 猷 ; -+,0x21,0x11,0x12,0x7f,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x5d,0x41,0x7f,0x41,0x02,0x10,0x14,0x12,0x92,0x10,0x7f,0x10,0x10,0x28,0x28,0x28,0x44,0x44,0x86,0x03,0x02 -+// 29496 猸 ; -+,0x44,0x25,0x19,0x11,0x29,0x49,0x05,0x0d,0x15,0x25,0x45,0x05,0x05,0x0a,0x2a,0x14,0x00,0xff,0x11,0x11,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 29497 猹 ; -+,0x04,0x44,0x2b,0x10,0x28,0x49,0x06,0x0d,0x15,0x25,0x45,0x05,0x05,0x04,0x2b,0x10,0x20,0x20,0xfe,0x70,0xa8,0x27,0x22,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 29498 猺 ; -+,0x44,0x25,0x18,0x19,0x28,0x44,0x0c,0x15,0x24,0x45,0x04,0x05,0x05,0x09,0x29,0x10,0x1e,0xe0,0x40,0x22,0xa4,0x88,0xfe,0x20,0x20,0xff,0x20,0x22,0x22,0x22,0xfe,0x02 -+// 29499 猻 ; -+,0x04,0x47,0x28,0x11,0x31,0x49,0x09,0x19,0x2f,0x49,0x09,0x09,0x09,0x09,0x55,0x22,0x00,0xc6,0xb8,0x12,0x24,0x78,0x14,0xa2,0x7e,0x09,0x2c,0x4a,0x89,0x08,0x28,0x10 -+// 29500 猼 ; -+,0x04,0x44,0x2b,0x10,0x29,0x49,0x09,0x15,0x15,0x25,0x44,0x07,0x04,0x08,0x28,0x10,0x28,0x24,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x08,0xff,0x88,0x48,0x28,0x10 -+// 29501 猽 ; -+,0x44,0x2b,0x12,0x12,0x28,0x44,0x0c,0x14,0x24,0x44,0x05,0x04,0x04,0x08,0x29,0x12,0x00,0xff,0x01,0xfc,0x84,0xfc,0x84,0xfc,0xa4,0x10,0xff,0x00,0x48,0x84,0x03,0x02 -+// 29502 猾 ; -+,0x04,0x44,0x28,0x10,0x28,0x4b,0x0e,0x14,0x14,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x00,0xfc,0x84,0xf4,0x94,0xff,0x01,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 29503 猿 ; -+,0x04,0x24,0x19,0x18,0x2b,0x44,0x04,0x0c,0x14,0x24,0x44,0x05,0x06,0x04,0x28,0x10,0x20,0x20,0xfe,0x20,0xff,0x00,0xfc,0x84,0xfc,0x60,0xa3,0x94,0x88,0xa4,0xc7,0x82 -+// 29504 獀 ; -+,0x04,0x45,0x29,0x11,0x29,0x45,0x0d,0x0d,0x14,0x25,0x44,0x04,0x04,0x04,0x29,0x16,0xa0,0x2e,0x22,0x22,0xae,0x22,0x22,0xfe,0x20,0xfe,0x84,0x48,0x30,0x68,0x87,0x02 -+// 29505 獁 ; -+,0x04,0x45,0x29,0x11,0x31,0x49,0x09,0x0d,0x15,0x24,0x45,0x05,0x06,0x08,0x28,0x10,0x00,0xff,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x01,0x29,0x55,0x55,0x01,0x0a,0x04 -+// 29506 獂 ; -+,0x04,0x45,0x29,0x11,0x29,0x49,0x05,0x0d,0x15,0x25,0x45,0x05,0x0a,0x2b,0x14,0x08,0x02,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x10,0x54,0x52,0x91,0x10,0x50,0x20 -+// 29507 獃 ; -+,0x04,0x24,0x24,0x3f,0x00,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x0a,0x07,0x78,0x01,0x02,0x10,0x94,0x92,0x92,0x10,0xff,0x28,0x28,0x28,0x28,0x44,0x44,0x44,0x82,0x03,0x02 -+// 29508 獄 ; -+,0x05,0x44,0x28,0x17,0x30,0x4b,0x08,0x0b,0x18,0x28,0x4b,0x0a,0x0b,0x0a,0x28,0x10,0x08,0x88,0x8c,0xea,0x08,0xff,0x14,0xd4,0x14,0x14,0xd4,0x54,0xe2,0x22,0x43,0x82 -+// 29509 獅 ; -+,0x04,0x45,0x2b,0x12,0x2a,0x4b,0x0a,0x1a,0x2b,0x4a,0x0a,0x0a,0x0b,0x0a,0x52,0x20,0x80,0x1f,0xc4,0x44,0x5f,0xd5,0x15,0x15,0xd5,0x55,0x55,0x55,0xd7,0x04,0x04,0x04 -+// 29510 獆 ; -+,0x04,0x45,0x29,0x11,0x39,0x49,0x0c,0x17,0x24,0x44,0x05,0x06,0x05,0x08,0x28,0x10,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x50,0xac,0x23,0x20,0xfc,0x20,0x20,0x20 -+// 29511 獇 ; -+,0x05,0x44,0x2b,0x10,0x28,0x49,0x04,0x0c,0x17,0x24,0x44,0x04,0x04,0x09,0x2a,0x14,0x04,0x88,0xfe,0x20,0x20,0xfc,0x20,0x20,0xff,0x54,0x54,0x9a,0x9f,0x11,0x0f,0x00 -+// 29512 獈 ; -+,0x45,0x24,0x18,0x19,0x28,0x44,0x04,0x0d,0x15,0x25,0x45,0x05,0x05,0x07,0x28,0x10,0x02,0x84,0x48,0xfe,0x48,0x44,0x82,0x02,0xfe,0x52,0x52,0x52,0x52,0xff,0x00,0x00 -+// 29513 獉 ; -+,0x04,0x44,0x2b,0x10,0x29,0x48,0x0b,0x14,0x25,0x46,0x05,0x04,0x04,0x09,0x2a,0x10,0x20,0x20,0xfe,0x20,0xfe,0x40,0xff,0x84,0x7a,0x21,0xfe,0x68,0xa4,0x22,0x22,0x20 -+// 29514 獊 ; -+,0x00,0x24,0x14,0x08,0x19,0x26,0x44,0x0c,0x14,0x24,0x45,0x05,0x05,0x0a,0x2a,0x14,0x20,0x30,0x48,0xa4,0x13,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfc,0x84,0x84,0xfc,0x00 -+// 29515 獋 ; -+,0x00,0x45,0x25,0x19,0x11,0x29,0x49,0x05,0x0d,0x14,0x24,0x45,0x07,0x04,0x28,0x10,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x24,0xa8,0xa8,0x24,0xff,0x20,0x20,0x20 -+// 29516 獌 ; -+,0x00,0x44,0x24,0x18,0x18,0x28,0x45,0x0d,0x15,0x24,0x45,0x04,0x04,0x08,0x29,0x16,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfc,0x88,0x50,0x70,0x8f,0x02 -+// 29517 獍 ; -+,0x04,0x44,0x2b,0x10,0x2f,0x48,0x09,0x15,0x15,0x25,0x45,0x04,0x04,0x29,0x12,0x04,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x90,0x11,0x11,0x0f -+// 29518 獎 ; -+,0x24,0x24,0x24,0x3d,0x04,0x7c,0x17,0x14,0x24,0x40,0x3f,0x01,0x02,0x04,0x18,0x60,0x20,0x7c,0xa8,0x90,0x68,0xff,0x48,0x28,0xa8,0x92,0xff,0x40,0x20,0x18,0x07,0x02 -+// 29519 獏 ; -+,0x04,0x44,0x2b,0x10,0x29,0x49,0x05,0x0d,0x15,0x24,0x47,0x04,0x04,0x29,0x12,0x0c,0x90,0x90,0xff,0x90,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x60,0x90,0x0c,0x07,0x02 -+// 29520 獐 ; -+,0x44,0x28,0x13,0x28,0x4b,0x04,0x0d,0x15,0x25,0x45,0x05,0x04,0x07,0x08,0x28,0x10,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 29521 獑 ; -+,0x00,0x44,0x2b,0x10,0x33,0x4a,0x0b,0x0a,0x1b,0x28,0x48,0x0b,0x08,0x08,0x28,0x10,0x82,0x8f,0xe8,0x88,0xe8,0xa8,0xef,0xaa,0xea,0x8a,0x8a,0xd2,0x92,0xa2,0xc2,0x82 -+// 29522 獒 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x08,0x1f,0x25,0x42,0x7f,0x01,0x02,0x04,0x18,0x60,0x20,0xa0,0x3f,0xc4,0xa4,0x98,0x14,0x22,0x50,0x88,0xff,0x20,0x10,0x0c,0x07,0x02 -+// 29523 獓 ; -+,0x00,0x24,0x17,0x08,0x1b,0x28,0x48,0x0f,0x19,0x29,0x49,0x09,0x0a,0x0a,0x2c,0x10,0x88,0x88,0xe8,0x88,0xef,0x8a,0x92,0xd2,0x32,0xcc,0x44,0x4c,0x52,0xa3,0xc2,0x00 -+// 29524 獔 ; -+,0x44,0x25,0x19,0x11,0x29,0x49,0x05,0x0d,0x14,0x24,0x44,0x05,0x07,0x08,0x28,0x10,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x24,0xa8,0x70,0xa8,0x24,0xff,0x20,0x20,0x20 -+// 29525 獕 ; -+,0x44,0x24,0x18,0x18,0x24,0x44,0x0c,0x15,0x26,0x44,0x04,0x04,0x04,0x08,0x28,0x10,0x10,0x92,0x92,0xfe,0x52,0x48,0xfe,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 29526 獖 ; -+,0x04,0x45,0x28,0x10,0x2b,0x44,0x05,0x0d,0x15,0x25,0x45,0x05,0x05,0x08,0x29,0x12,0x20,0xfe,0xa8,0xa8,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x08,0x04 -+// 29527 獗 ; -+,0x08,0x4b,0x33,0x32,0x53,0x0a,0x0a,0x1a,0x2a,0x4b,0x04,0x04,0x04,0x29,0x12,0x00,0x02,0xff,0x28,0xc8,0xff,0x91,0x8a,0xa8,0xa8,0xe8,0x94,0x94,0xa2,0x23,0x42,0x00 -+// 29528 獘 ; -+,0x04,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x25,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x10,0x90,0x1f,0xa4,0xa4,0xd4,0x8c,0x97,0x2a,0x84,0xff,0x40,0x20,0x18,0x07,0x02 -+// 29529 獙 ; -+,0x00,0x48,0x2a,0x12,0x28,0x4b,0x0a,0x1b,0x2a,0x4a,0x0a,0x0a,0x0a,0x0a,0x52,0x22,0x88,0x88,0xa8,0xa8,0x9f,0xf2,0xb2,0xaa,0xea,0xac,0xa4,0xac,0xaa,0x92,0xa3,0x42 -+// 29530 獚 ; -+,0x44,0x24,0x19,0x10,0x28,0x47,0x0c,0x15,0x25,0x45,0x05,0x05,0x04,0x08,0x29,0x12,0x88,0x88,0xfe,0x88,0x88,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x88,0xc4,0x06,0x04 -+// 29531 獛 ; -+,0x04,0x46,0x29,0x13,0x29,0x48,0x09,0x14,0x15,0x24,0x47,0x04,0x04,0x08,0x29,0x16,0x50,0x52,0x54,0xff,0x04,0x88,0xfe,0x20,0xfe,0x20,0xff,0x50,0x48,0x8c,0x07,0x02 -+// 29532 獜 ; -+,0x04,0x45,0x28,0x13,0x28,0x49,0x0e,0x19,0x29,0x4a,0x0d,0x08,0x08,0x09,0x52,0x24,0x20,0x24,0xaa,0xff,0x70,0xa8,0x26,0x24,0xdf,0x54,0x54,0xbf,0x84,0x04,0x04,0x04 -+// 29533 獝 ; -+,0x05,0x44,0x28,0x13,0x28,0x48,0x04,0x0d,0x15,0x25,0x45,0x05,0x05,0x09,0x29,0x11,0xfe,0x04,0x28,0xff,0x31,0x52,0x90,0xfe,0x4a,0x86,0x7a,0x4a,0x7a,0x4a,0x06,0x04 -+// 29534 獞 ; -+,0x04,0x44,0x2b,0x10,0x37,0x48,0x09,0x19,0x29,0x49,0x09,0x08,0x09,0x10,0x57,0x20,0x40,0x20,0xfe,0x88,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfc,0x20,0xff,0x00 -+// 29535 獟 ; -+,0x04,0x45,0x28,0x13,0x31,0x49,0x0b,0x19,0x2f,0x48,0x0b,0x08,0x08,0x09,0x2a,0x14,0x20,0xfc,0x20,0xff,0x04,0x04,0xdf,0x04,0xff,0x00,0xfe,0x90,0x91,0x11,0x0f,0x00 -+// 29536 獠 ; -+,0x48,0x28,0x13,0x30,0x48,0x0b,0x0d,0x19,0x29,0x49,0x09,0x08,0x09,0x52,0x24,0x00,0x20,0x20,0xff,0x50,0x88,0x04,0xff,0x05,0xfc,0x04,0xfc,0xa8,0x24,0x22,0xa0,0x40 -+// 29537 獡 ; -+,0x04,0x45,0x29,0x11,0x29,0x49,0x04,0x0c,0x15,0x26,0x44,0x05,0x05,0x0a,0x28,0x10,0x60,0x8e,0x02,0xde,0x02,0xfe,0x82,0x80,0xff,0x09,0x55,0x55,0x41,0x01,0x0a,0x04 -+// 29538 獢 ; -+,0x04,0x47,0x28,0x17,0x28,0x49,0x0a,0x1c,0x28,0x4b,0x0a,0x0a,0x0a,0x0a,0x2a,0x12,0x08,0xfc,0x40,0xff,0x88,0xfc,0x8b,0xfa,0x00,0xfe,0x02,0xfa,0x8a,0xfa,0x0a,0x04 -+// 29539 獣 ; -+,0x28,0x14,0x15,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x00,0x3f,0x20,0x3f,0x20,0x01,0x88,0x88,0x0a,0x8a,0x88,0xff,0x88,0x98,0x14,0xd4,0x14,0xa4,0xa4,0xc2,0x83,0x02 -+// 29540 獤 ; -+,0x05,0x44,0x2b,0x10,0x2b,0x4a,0x0b,0x18,0x2b,0x48,0x08,0x0b,0x08,0x08,0x2a,0x11,0x08,0x88,0xe8,0x08,0xdf,0x52,0xf2,0x12,0xd4,0x84,0xec,0x88,0x94,0x94,0xa3,0x42 -+// 29541 獥 ; -+,0x00,0x49,0x2b,0x12,0x33,0x4a,0x0b,0x18,0x2f,0x49,0x09,0x0a,0x0a,0x54,0x29,0x00,0x88,0x08,0xc8,0x50,0xdf,0x52,0xd2,0xa2,0xe4,0x14,0xc8,0x48,0x54,0xa6,0xc3,0x82 -+// 29542 獦 ; -+,0x04,0x47,0x28,0x11,0x29,0x49,0x05,0x0d,0x14,0x25,0x47,0x05,0x05,0x09,0x28,0x10,0x48,0xff,0x48,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xfe,0x22,0x52,0x8a,0xfa,0x14,0x08 -+// 29543 獧 ; -+,0x45,0x25,0x19,0x19,0x28,0x4f,0x04,0x0d,0x15,0x25,0x44,0x05,0x06,0x08,0x28,0x10,0xfe,0x52,0x52,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0x62,0x94,0x88,0xac,0xc7,0x82 -+// 29544 獨 ; -+,0x44,0x25,0x19,0x11,0x29,0x49,0x09,0x19,0x2a,0x4c,0x08,0x08,0x08,0x28,0x10,0x00,0x00,0xfe,0x52,0x52,0xfe,0x00,0xfe,0x02,0xfa,0xaa,0xfa,0xaa,0xfa,0x02,0x14,0x08 -+// 29545 獩 ; -+,0x04,0x45,0x29,0x13,0x28,0x48,0x0b,0x0a,0x1b,0x2a,0x4a,0x0b,0x0a,0x14,0x54,0x29,0x20,0x3e,0x20,0xff,0x0c,0x0a,0xff,0x08,0xe9,0x49,0xea,0x5c,0x69,0x55,0xa5,0x02 -+// 29546 獪 ; -+,0x04,0x44,0x28,0x11,0x2a,0x4d,0x09,0x15,0x15,0x24,0x45,0x05,0x05,0x09,0x29,0x11,0x20,0x50,0x88,0xfc,0x03,0xfe,0xa6,0x6a,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 29547 獫 ; -+,0x04,0x44,0x28,0x11,0x2a,0x4c,0x09,0x0d,0x15,0x25,0x44,0x04,0x04,0x09,0x2a,0x14,0x20,0x50,0x88,0x04,0xf3,0x00,0xde,0x52,0x52,0xde,0x8a,0x88,0x88,0x54,0x22,0x01 -+// 29548 獬 ; -+,0x01,0x4d,0x29,0x12,0x2b,0x4a,0x0a,0x1b,0x2a,0x4a,0x0b,0x0a,0x0a,0x0a,0x54,0x28,0x00,0x1f,0xe9,0x49,0xed,0xb2,0xaa,0xef,0xaa,0xa2,0xff,0xa2,0xa2,0xa2,0xa2,0x42 -+// 29549 獭 ; -+,0x05,0x45,0x2b,0x11,0x37,0x4d,0x0d,0x1f,0x29,0x4b,0x0d,0x09,0x09,0x11,0x51,0x21,0x08,0x08,0xef,0x12,0xe4,0x5f,0x51,0xd5,0x55,0x95,0x55,0x55,0x0a,0x11,0x21,0x40 -+// 29550 獮 ; -+,0x23,0x14,0x09,0x1a,0x25,0x45,0x0d,0x15,0x25,0x45,0x05,0x05,0x05,0x09,0x29,0x11,0xff,0xa8,0x26,0x21,0xfe,0x22,0x76,0xaa,0x36,0x76,0xaa,0x36,0x22,0x22,0x2a,0x04 -+// 29551 獯 ; -+,0x25,0x14,0x0b,0x18,0x2b,0x4a,0x0a,0x0b,0x18,0x2b,0x48,0x0f,0x08,0x0a,0x2a,0x14,0xfc,0x20,0xff,0x20,0xfe,0xaa,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x00,0x92,0x49,0x49 -+// 29552 獰 ; -+,0x44,0x25,0x19,0x12,0x29,0x4a,0x04,0x0d,0x15,0x27,0x44,0x05,0x04,0x08,0x28,0x10,0x10,0xff,0x21,0x54,0x4a,0x3a,0x00,0xfe,0x52,0xff,0x00,0xfe,0x10,0x10,0x50,0x20 -+// 29553 獱 ; -+,0x44,0x25,0x19,0x12,0x28,0x4c,0x0c,0x14,0x17,0x24,0x44,0x04,0x04,0x08,0x28,0x10,0x20,0xff,0x01,0x7c,0x12,0x54,0x98,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 29554 獲 ; -+,0x04,0x47,0x29,0x11,0x2b,0x4d,0x05,0x0d,0x15,0x25,0x45,0x04,0x05,0x08,0x28,0x17,0x48,0xff,0x48,0x20,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x88,0xfe,0x84,0x78,0x87 -+// 29555 獳 ; -+,0x45,0x24,0x1b,0x12,0x2d,0x48,0x05,0x0c,0x17,0x24,0x45,0x05,0x05,0x09,0x29,0x11,0xfe,0x20,0xff,0x21,0xac,0x20,0xae,0x00,0xff,0x40,0xfe,0x52,0x52,0x52,0x5a,0x04 -+// 29556 獴 ; -+,0x48,0x2b,0x10,0x33,0x4a,0x0c,0x18,0x1b,0x28,0x4b,0x08,0x0b,0x08,0x0b,0x28,0x10,0x88,0xff,0x88,0xff,0x01,0xfc,0x00,0xfe,0xc0,0x64,0xb8,0x54,0x93,0x12,0xa0,0x40 -+// 29557 獵 ; -+,0x24,0x15,0x0a,0x19,0x29,0x45,0x05,0x0d,0x17,0x25,0x45,0x05,0x05,0x09,0x29,0x11,0x92,0x24,0x48,0x24,0xfe,0x8a,0x72,0x8a,0xfe,0x24,0xb4,0x24,0xb5,0x2d,0xb3,0x21 -+// 29558 獶 ; -+,0x05,0x44,0x28,0x10,0x28,0x48,0x0b,0x1a,0x2d,0x4a,0x08,0x09,0x0a,0x14,0x50,0x27,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xff,0xa2,0xac,0x7a,0x80,0xfc,0x48,0x38,0xef,0x02 -+// 29559 獷 ; -+,0x04,0x44,0x2b,0x12,0x2a,0x4a,0x0b,0x1a,0x2a,0x4a,0x0a,0x0a,0x0a,0x14,0x54,0x29,0x20,0x10,0xff,0x28,0xfe,0x28,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x82,0x01 -+// 29560 獸 ; -+,0x3b,0x2a,0x2a,0x3b,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x00,0x1f,0x11,0x11,0x1f,0x11,0x90,0x94,0x92,0x92,0xff,0x90,0x90,0xa8,0x28,0xe8,0x24,0x24,0x44,0x42,0x83,0x02 -+// 29561 獹 ; -+,0x04,0x44,0x28,0x13,0x32,0x4b,0x0a,0x1a,0x2a,0x4a,0x0a,0x0a,0x0a,0x0c,0x2b,0x10,0x20,0x3c,0x20,0xff,0x3d,0xe2,0x3e,0xa4,0xfc,0xa4,0xfc,0x00,0xfe,0xaa,0xff,0x00 -+// 29562 獺 ; -+,0x49,0x29,0x17,0x31,0x4f,0x09,0x09,0x1f,0x29,0x4b,0x0d,0x09,0x09,0x09,0x29,0x11,0x08,0x0e,0xd2,0x24,0xde,0x52,0x5e,0xd2,0x5e,0x92,0x52,0x5e,0x02,0x14,0x22,0x41 -+// 29563 獻 ; -+,0x04,0x07,0x04,0x3f,0x27,0x3c,0x27,0x28,0x2f,0x20,0x3f,0x35,0x37,0x32,0x53,0x10,0x08,0x8c,0x0a,0xca,0x48,0x7f,0xc8,0x88,0x94,0x14,0xd4,0x54,0x62,0x62,0x43,0x82 -+// 29564 獼 ; -+,0x00,0x4f,0x29,0x11,0x37,0x4c,0x0d,0x1c,0x2e,0x4a,0x0a,0x0a,0x0a,0x12,0x5a,0x24,0x00,0xff,0x30,0x54,0x52,0x93,0xfe,0x92,0xba,0xd6,0xb6,0xda,0x92,0x92,0x9a,0x84 -+// 29565 獽 ; -+,0x04,0x44,0x2b,0x12,0x33,0x48,0x0b,0x18,0x2b,0x48,0x0f,0x08,0x09,0x13,0x55,0x21,0x40,0x20,0xff,0x52,0xde,0x88,0xfe,0x88,0xfe,0x88,0xff,0xa4,0x18,0x48,0x87,0x02 -+// 29566 獾 ; -+,0x04,0x45,0x28,0x11,0x29,0x49,0x04,0x0c,0x15,0x26,0x44,0x04,0x04,0x0c,0x28,0x10,0x48,0xff,0x48,0xef,0x29,0xef,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 29567 獿 ; -+,0x00,0x47,0x28,0x12,0x2a,0x4b,0x0a,0x1b,0x2e,0x49,0x0a,0x09,0x0a,0x10,0x51,0x26,0x00,0xff,0x40,0xfe,0x92,0xfe,0x91,0xff,0x84,0x42,0xfd,0x84,0x48,0x30,0xcf,0x02 -+// 29568 玀 ; -+,0x04,0x45,0x29,0x11,0x29,0x49,0x1a,0x1b,0x29,0x2a,0x4b,0x08,0x0a,0x0a,0x2a,0x14,0x00,0xff,0x49,0xff,0x14,0x1f,0x54,0xb4,0x5f,0x54,0xd4,0x1f,0x94,0xb4,0xbf,0x10 -+// 29569 玁 ; -+,0x04,0x47,0x2a,0x13,0x30,0x4b,0x0a,0x1b,0x1a,0x2b,0x4b,0x0d,0x0d,0x09,0x2b,0x10,0x00,0xde,0x52,0xde,0x00,0xff,0x08,0xc8,0x4f,0xf2,0x5a,0xe4,0x44,0xea,0x53,0x62 -+// 29570 玂 ; -+,0x4a,0x2f,0x12,0x36,0x4a,0x0e,0x08,0x17,0x15,0x27,0x45,0x07,0x09,0x09,0x29,0x11,0x40,0xf3,0x4c,0xe8,0xa8,0xe8,0x0f,0xea,0x2a,0xea,0x2a,0xf2,0x12,0x22,0x22,0x42 -+// 29571 玃 ; -+,0x47,0x2a,0x13,0x2a,0x4b,0x0c,0x15,0x17,0x25,0x45,0x05,0x05,0x05,0x08,0x2c,0x13,0xde,0x52,0xde,0x52,0xde,0xa0,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x44,0x38,0xc7 -+// 29572 玄 ; -+,0x00,0x00,0x00,0x3f,0x00,0x01,0x02,0x04,0x0f,0x04,0x01,0x02,0x04,0x1f,0x08,0x00,0x80,0x40,0x42,0xff,0x80,0x10,0x10,0x20,0xc0,0x80,0x10,0x08,0x04,0xfe,0x02,0x00 -+// 29573 玅 ; -+,0x08,0x04,0x7f,0x08,0x09,0x11,0x12,0x3e,0x05,0x08,0x0a,0x11,0x3f,0x01,0x01,0x07,0x10,0x10,0xd0,0x10,0x54,0x52,0x91,0x91,0x12,0x12,0x04,0x08,0x10,0x60,0x80,0x00 -+// 29574 玆 ; -+,0x08,0x04,0x04,0x7f,0x08,0x08,0x11,0x11,0x3e,0x04,0x08,0x14,0x22,0x7f,0x21,0x00,0x10,0x08,0x08,0x7f,0x10,0x10,0x22,0x22,0x7c,0x08,0x14,0x12,0x21,0x7f,0x21,0x00 -+// 29575 率 ; -+,0x01,0x00,0x3f,0x20,0x11,0x0b,0x02,0x08,0x11,0x23,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x80,0x14,0xe8,0x40,0x88,0x24,0xe2,0x90,0xff,0x80,0x80,0x80,0x80 -+// 29576 玈 ; -+,0x10,0x08,0x08,0x7f,0x08,0x09,0x11,0x22,0x7c,0x08,0x14,0x22,0x7f,0x21,0x00,0x00,0x20,0x20,0x42,0x7f,0x80,0x7e,0x52,0x54,0x58,0x50,0x48,0x48,0x44,0x56,0x63,0x42 -+// 29577 玉 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0xfe,0x80,0x80,0x80,0x80,0xfc,0x80,0xa0,0x90,0x98,0x88,0x80,0xff,0x00,0x00 -+// 29578 玊 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0xfe,0x80,0xa0,0x90,0x98,0x88,0xfc,0x80,0x80,0x80,0x80,0x80,0xff,0x00,0x00 -+// 29579 王 ; -+,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x04,0xfe,0x80,0x80,0x80,0x80,0x84,0xfe,0x80,0x80,0x80,0x80,0x82,0xff,0x00,0x00 -+// 29580 玌 ; -+,0x00,0x00,0x3f,0x08,0x08,0x08,0x08,0x3f,0x08,0x08,0x08,0x0f,0x78,0x20,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 29581 玍 ; -+,0x04,0x06,0x04,0x0f,0x08,0x10,0x20,0x40,0x1f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x04,0xfe,0x40,0x40,0x40,0x44,0xfe,0x40,0x40,0x40,0x42,0xff,0x00,0x00 -+// 29582 玎 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0f,0x78,0x20,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 29583 玏 ; -+,0x00,0x3e,0x08,0x08,0x09,0x08,0x3e,0x08,0x08,0x08,0x0e,0x78,0x20,0x01,0x02,0x04,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x14,0x08,0x00 -+// 29584 玐 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0f,0x79,0x22,0x04,0x08,0x00,0x10,0x50,0x50,0x50,0x50,0x48,0x48,0x88,0x88,0x84,0x04,0x04,0x02,0x03,0x02 -+// 29585 玑 ; -+,0x00,0x7e,0x10,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x1d,0x71,0x22,0x04,0x08,0x10,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x09,0x09,0x09,0x07 -+// 29586 玒 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x38,0x01,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 29587 玓 ; -+,0x00,0x00,0x3e,0x08,0x08,0x09,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x40,0x40,0x40,0xfe,0x82,0x02,0x02,0x82,0x42,0x62,0x22,0x02,0x02,0x04,0x14,0x08 -+// 29588 玔 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0f,0x31,0x02,0x04,0x08,0x82,0xc3,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x02,0x02,0x02 -+// 29589 玕 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x09,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 29590 玖 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x09,0x0a,0x08,0x0e,0x30,0x00,0x01,0x02,0x04,0x40,0x40,0x40,0x7c,0x88,0x88,0x88,0x10,0x10,0x28,0x28,0x44,0x84,0x03,0x02,0x00 -+// 29591 玗 ; -+,0x00,0x7c,0x10,0x10,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 29592 玘 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x84,0x80,0x80,0x80,0x82,0x82,0x82,0x7e,0x00 -+// 29593 玙 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x09,0x0e,0x70,0x00,0x00,0x00,0x40,0x40,0x40,0x7f,0x40,0x40,0x7e,0x02,0x02,0x02,0xfa,0x02,0x02,0x02,0x14,0x08 -+// 29594 玚 ; -+,0x00,0x7d,0x10,0x10,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x1d,0x62,0x00,0x00,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0xfe,0x4a,0x4a,0x92,0x92,0x22,0x22,0x42,0x94,0x08 -+// 29595 玛 ; -+,0x00,0x7d,0x10,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x11,0x1c,0x60,0x00,0x00,0x00,0x00,0xfc,0x04,0x84,0x84,0x84,0x84,0xff,0x01,0x01,0xfd,0x01,0x01,0x02,0x0a,0x04 -+// 29596 玜 ; -+,0x00,0x00,0x7c,0x10,0x10,0x10,0x7d,0x11,0x12,0x10,0x10,0x1c,0x60,0x01,0x00,0x00,0x00,0x50,0x50,0x50,0x88,0x88,0x24,0x23,0x22,0x40,0x50,0x88,0x88,0xfc,0x84,0x00 -+// 29597 玝 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3f,0x09,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x40,0x60,0x40,0x7e,0x90,0x90,0x12,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 29598 玞 ; -+,0x00,0x00,0x3e,0x09,0x08,0x08,0x3e,0x09,0x08,0x08,0x0e,0x30,0x00,0x01,0x02,0x04,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x50,0x50,0x48,0x88,0x84,0x04,0x03,0x02 -+// 29599 玟 ; -+,0x00,0x00,0x7e,0x13,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x1c,0x60,0x01,0x02,0x0c,0x20,0x10,0x10,0xff,0x84,0x84,0x84,0x88,0x48,0x50,0x20,0x50,0x88,0x0c,0x07,0x02 -+// 29600 玠 ; -+,0x00,0x7c,0x10,0x10,0x10,0x11,0x7a,0x14,0x10,0x10,0x10,0x1c,0x61,0x01,0x02,0x04,0x20,0x20,0x50,0x48,0x84,0x03,0x8a,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 29601 玡 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0e,0x30,0x01,0x02,0x04,0x00,0x00,0xff,0x08,0x88,0x88,0x88,0xff,0x18,0x28,0x28,0x48,0x88,0x08,0x08,0x28,0x10 -+// 29602 玢 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3d,0x0a,0x08,0x08,0x0e,0x70,0x00,0x01,0x02,0x04,0x08,0x48,0x68,0x44,0x84,0x82,0x03,0xfc,0x24,0x24,0x44,0x44,0x84,0x08,0x28,0x10 -+// 29603 玣 ; -+,0x00,0x00,0x3e,0x09,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x40,0x20,0x10,0xff,0x20,0x20,0x30,0x28,0x26,0x22,0x20,0x20,0x20,0x20,0x20,0x20 -+// 29604 玤 ; -+,0x00,0x00,0x3e,0x09,0x08,0x08,0x3e,0x08,0x08,0x08,0x09,0x0e,0x30,0x00,0x00,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 29605 玥 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x01,0x02,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 29606 玦 ; -+,0x00,0x00,0x7c,0x11,0x10,0x10,0x7c,0x13,0x10,0x10,0x10,0x1c,0x61,0x02,0x04,0x08,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0xff,0x50,0x50,0x90,0x88,0x08,0x04,0x07,0x02 -+// 29607 玧 ; -+,0x00,0x00,0x3e,0x08,0x08,0x09,0x3e,0x08,0x08,0x08,0x08,0x0e,0x70,0x01,0x02,0x04,0x20,0x20,0x40,0x48,0x84,0xfe,0x4a,0x48,0x48,0x48,0x48,0x89,0x89,0x09,0x07,0x00 -+// 29608 玨 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x70,0x01,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x12,0xff,0x00,0x00 -+// 29609 玩 ; -+,0x00,0x7c,0x10,0x10,0x10,0x11,0x7c,0x10,0x10,0x10,0x1c,0x60,0x01,0x02,0x04,0x08,0x00,0xfc,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x88,0x88,0x09,0x09,0x07,0x00 -+// 29610 玪 ; -+,0x00,0x00,0x7c,0x10,0x10,0x10,0x7d,0x12,0x10,0x11,0x10,0x1c,0x60,0x00,0x00,0x00,0x20,0x20,0x50,0x50,0x88,0xa4,0x17,0x12,0x00,0xfe,0x04,0x08,0x08,0x10,0x10,0x00 -+// 29611 玫 ; -+,0x00,0x7c,0x10,0x10,0x10,0x10,0x7d,0x11,0x12,0x10,0x10,0x1c,0x60,0x03,0x0c,0x00,0x40,0x60,0x40,0x42,0xff,0x88,0x08,0x88,0x50,0x50,0x20,0x50,0x88,0x07,0x02,0x00 -+// 29612 玬 ; -+,0x00,0x7e,0x10,0x10,0x10,0x10,0x7c,0x13,0x10,0x10,0x10,0x1c,0x61,0x01,0x02,0x04,0x7e,0x42,0x42,0x52,0x4a,0x4a,0x42,0xff,0x42,0x42,0x82,0x82,0x02,0x02,0x14,0x08 -+// 29613 玭 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x90,0x98,0x90,0x90,0x90,0x93,0xfc,0x90,0x90,0x90,0x90,0x91,0xb1,0xd1,0x8f,0x00 -+// 29614 玮 ; -+,0x00,0x3e,0x09,0x08,0x08,0x08,0x3e,0x08,0x09,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x20,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 29615 环 ; -+,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0e,0x31,0x02,0x04,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x30,0x30,0x58,0x54,0x92,0x93,0x11,0x11,0x10,0x10,0x10,0x10 -+// 29616 现 ; -+,0x00,0x7f,0x09,0x09,0x09,0x09,0x3f,0x09,0x09,0x09,0x0e,0x70,0x00,0x01,0x02,0x04,0x00,0xfc,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x54,0x50,0x91,0x91,0x11,0x0f,0x00 -+// 29617 玱 ; -+,0x00,0x00,0x7c,0x10,0x10,0x11,0x7e,0x14,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfa,0x88,0x88,0x88,0xb8,0x90,0x82,0x82,0x7e,0x00 -+// 29618 玲 ; -+,0x00,0x7c,0x10,0x10,0x10,0x10,0x7d,0x12,0x11,0x10,0x11,0x1c,0x60,0x00,0x00,0x00,0x20,0x20,0x50,0x50,0x88,0xa4,0x13,0x10,0xfc,0x08,0x10,0xa0,0x60,0x30,0x10,0x00 -+// 29619 玳 ; -+,0x00,0x00,0x7e,0x10,0x10,0x11,0x7e,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x50,0x54,0x52,0x92,0x90,0x9f,0xf0,0x90,0x88,0x88,0x88,0x88,0x85,0x85,0x83,0x81 -+// 29620 玴 ; -+,0x00,0x01,0x7d,0x11,0x11,0x13,0x7d,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x00,0x24,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x3c,0x00,0x00,0x02,0xff,0x00 -+// 29621 玵 ; -+,0x00,0x00,0x7c,0x10,0x13,0x10,0x7c,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x84,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 29622 玶 ; -+,0x00,0x3e,0x08,0x08,0x09,0x08,0x3e,0x08,0x0b,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x12,0x92,0x94,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 29623 玷 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29624 玸 ; -+,0x00,0x00,0x7e,0x10,0x10,0x11,0x7e,0x10,0x10,0x10,0x10,0x1e,0x70,0x00,0x00,0x00,0x40,0x40,0x7e,0x82,0x82,0xfa,0x8a,0x8a,0xfa,0x82,0x8a,0x84,0x81,0x81,0x7f,0x00 -+// 29625 玹 ; -+,0x00,0x00,0x3e,0x09,0x08,0x08,0x3e,0x08,0x09,0x08,0x08,0x0e,0x30,0x01,0x00,0x00,0x20,0x10,0x10,0xff,0x10,0x20,0x44,0x84,0xf8,0x10,0x20,0x44,0x82,0xff,0x81,0x01 -+// 29626 玺 ; -+,0x04,0x04,0x0f,0x10,0x24,0x08,0x12,0x01,0x1f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0xfc,0x84,0x90,0x88,0x84,0x00,0xfc,0x80,0x80,0xf8,0xa0,0x90,0xfe,0x00 -+// 29627 玻 ; -+,0x00,0x00,0x7e,0x08,0x08,0x08,0x3e,0x08,0x09,0x09,0x0d,0x7a,0x22,0x04,0x08,0x01,0x10,0x10,0x10,0xff,0x91,0x92,0x90,0xfe,0x44,0x44,0x28,0x10,0x28,0x44,0x87,0x02 -+// 29628 玼 ; -+,0x00,0x00,0x7c,0x10,0x10,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x61,0x07,0x02,0x00,0x48,0x48,0x48,0x48,0x48,0x4a,0x7c,0x48,0x48,0x48,0x48,0x49,0x69,0x89,0x07,0x00 -+// 29629 玽 ; -+,0x00,0x00,0x7f,0x08,0x08,0x09,0x3e,0x08,0x08,0x08,0x08,0x0f,0x70,0x00,0x00,0x00,0x40,0x40,0x7e,0x82,0x82,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x14,0x08 -+// 29630 玾 ; -+,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x10,0x10,0x10,0x10,0x10 -+// 29631 玿 ; -+,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x09,0x08,0x0e,0x70,0x00,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x42,0x4a,0x84,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 29632 珀 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x20,0x30,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29633 珁 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x00,0xff,0x40,0x40,0x7c,0x44,0x44,0x64,0x54,0x54,0x84,0x95,0xa5,0xc5,0x83,0x00 -+// 29634 珂 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x00,0xff,0x02,0x02,0x02,0xf2,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x02,0x14,0x08 -+// 29635 珃 ; -+,0x00,0x00,0x7e,0x10,0x10,0x10,0x7c,0x10,0x10,0x13,0x10,0x1c,0x60,0x00,0x00,0x00,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xff,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 29636 珄 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3f,0x09,0x0a,0x08,0x08,0x0e,0x30,0x03,0x00,0x00,0x10,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xfe,0x10,0x10,0x10,0x12,0xff,0x00,0x00 -+// 29637 珅 ; -+,0x00,0x00,0x7c,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x60,0x00,0x00,0x00,0x20,0x20,0x20,0xfc,0x24,0x24,0xfc,0x24,0x24,0x24,0xfc,0x24,0x20,0x20,0x20,0x20 -+// 29638 珆 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3d,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x20,0x20,0x20,0x44,0x42,0x9f,0xf1,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29639 珇 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x07,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 29640 珈 ; -+,0x01,0x7d,0x11,0x13,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1a,0x62,0x04,0x08,0x10,0x00,0x00,0x00,0xef,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x29,0x2f,0xa9,0x40,0x00 -+// 29641 珉 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x01,0x00,0xfe,0x02,0x02,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x0a,0x4a,0x86,0x02 -+// 29642 珊 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7f,0x11,0x11,0x11,0x12,0x1e,0x63,0x04,0x08,0x00,0x00,0xde,0x52,0x52,0x52,0x52,0xff,0x52,0x52,0x52,0x52,0x52,0x62,0xaa,0x44,0x00 -+// 29643 珋 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x1d,0x60,0x00,0x01,0x02,0x04,0x60,0x8f,0x09,0x29,0x29,0x29,0x29,0x29,0x69,0xad,0x4a,0x48,0x88,0x08,0x08,0x08 -+// 29644 珌 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x09,0x09,0x09,0x08,0x0e,0x30,0x01,0x02,0x04,0x40,0x24,0x16,0x54,0x44,0x44,0x48,0x4a,0x51,0x51,0x62,0x42,0xc2,0x3e,0x00,0x00 -+// 29645 珍 ; -+,0x00,0x7c,0x10,0x10,0x11,0x12,0x7c,0x11,0x10,0x10,0x1c,0x63,0x00,0x00,0x03,0x1c,0x20,0x20,0x50,0x88,0x14,0x23,0x40,0x88,0x12,0x22,0xc4,0x08,0x30,0xc0,0x00,0x00 -+// 29646 珎 ; -+,0x00,0x3e,0x08,0x08,0x09,0x08,0x3e,0x08,0x08,0x08,0x0f,0x71,0x02,0x00,0x00,0x00,0x40,0x40,0x40,0xff,0x11,0x12,0x90,0xd8,0x94,0x92,0x13,0x11,0x11,0x10,0x50,0x20 -+// 29647 珏 ; -+,0x00,0x01,0x7e,0x10,0x10,0x10,0x7c,0x11,0x10,0x10,0x10,0x1c,0x60,0x03,0x00,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0xfe,0x30,0x28,0x24,0x24,0x20,0xff,0x00,0x00 -+// 29648 珐 ; -+,0x00,0x00,0x7c,0x10,0x10,0x10,0x10,0x7c,0x11,0x10,0x10,0x10,0x1c,0x61,0x00,0x00,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x20,0x20,0x48,0x84,0xfe,0x82,0x00 -+// 29649 珑 ; -+,0x00,0x00,0x7f,0x08,0x0b,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x70,0x01,0x02,0x04,0x20,0x28,0x24,0x24,0xff,0x50,0x50,0x52,0x52,0x54,0x98,0x91,0xb1,0x51,0x0f,0x00 -+// 29650 珒 ; -+,0x00,0x00,0x7d,0x10,0x13,0x10,0x7d,0x10,0x11,0x10,0x10,0x1d,0x60,0x00,0x00,0x00,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 29651 珓 ; -+,0x00,0x7c,0x13,0x10,0x10,0x10,0x7d,0x12,0x14,0x10,0x10,0x1c,0x60,0x01,0x06,0x18,0x20,0x10,0xff,0x00,0x88,0x84,0x02,0x84,0x88,0x48,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 29652 珔 ; -+,0x00,0x00,0x7d,0x10,0x10,0x10,0x7d,0x13,0x15,0x19,0x11,0x1d,0x61,0x01,0x01,0x01,0x20,0x20,0xff,0x40,0x80,0xfe,0x04,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x28,0x10 -+// 29653 珕 ; -+,0x00,0x3d,0x10,0x10,0x10,0x10,0x3d,0x11,0x13,0x11,0x11,0x1e,0x62,0x04,0x09,0x10,0x20,0xfc,0x24,0x44,0x44,0x94,0x08,0x08,0xff,0x49,0x49,0x49,0x51,0x51,0xaa,0x44 -+// 29654 珖 ; -+,0x00,0x00,0x7e,0x11,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x1c,0x60,0x01,0x02,0x04,0x20,0x20,0x22,0x22,0xa4,0x28,0xff,0x48,0x48,0x48,0x48,0x89,0x89,0x09,0x07,0x00 -+// 29655 珗 ; -+,0x00,0x7e,0x08,0x08,0x08,0x09,0x7e,0x09,0x08,0x08,0x08,0x0e,0x70,0x01,0x02,0x04,0x10,0x90,0x90,0xff,0x90,0x10,0x10,0xff,0x48,0x48,0x48,0x88,0x89,0x09,0x09,0x07 -+// 29656 珘 ; -+,0x00,0x00,0x7e,0x10,0x10,0x10,0x7c,0x13,0x10,0x10,0x10,0x1c,0x61,0x01,0x02,0x04,0x10,0x20,0xfc,0x84,0xa4,0x94,0x94,0xff,0x84,0xa4,0x94,0x94,0x04,0x04,0x14,0x08 -+// 29657 珙 ; -+,0x00,0x00,0x7e,0x10,0x13,0x10,0x7e,0x10,0x10,0x17,0x10,0x1e,0x70,0x01,0x02,0x04,0x88,0x88,0x88,0x8a,0xff,0x88,0x88,0x88,0x8a,0xff,0x00,0x48,0x84,0x06,0x02,0x02 -+// 29658 珚 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x00,0x00,0xff,0x11,0x11,0x11,0x7d,0x11,0x29,0x25,0x43,0x81,0x01,0x01,0xff,0x01,0x00 -+// 29659 珛 ; -+,0x00,0x00,0x7c,0x13,0x10,0x10,0x7c,0x10,0x11,0x12,0x14,0x1c,0x60,0x00,0x00,0x00,0x20,0x20,0x20,0xff,0x40,0x7e,0xc2,0xc2,0x7e,0x42,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 29660 珜 ; -+,0x00,0x00,0x3e,0x09,0x08,0x08,0x3e,0x08,0x08,0x09,0x08,0x0e,0x70,0x00,0x00,0x00,0x82,0x44,0x28,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 29661 珝 ; -+,0x00,0x03,0x7c,0x10,0x12,0x11,0x7d,0x10,0x10,0x11,0x12,0x1c,0x60,0x00,0x01,0x00,0x00,0xde,0x42,0x42,0x52,0x4a,0x4a,0x42,0xc6,0x4a,0x52,0x42,0x42,0x42,0x4a,0x84 -+// 29662 珞 ; -+,0x00,0x00,0x7e,0x10,0x11,0x12,0x7c,0x10,0x10,0x11,0x12,0x1c,0x60,0x00,0x00,0x00,0x40,0x40,0xfc,0x84,0x48,0x30,0x30,0x48,0x87,0xfe,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 29663 珟 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x1f,0x62,0x02,0x04,0x09,0x10,0x00,0xfe,0x02,0xfa,0x22,0x22,0x3a,0x4a,0x4a,0xb2,0x12,0x22,0x42,0x82,0x03,0x01 -+// 29664 珠 ; -+,0x00,0x7c,0x10,0x10,0x10,0x11,0x7c,0x13,0x10,0x10,0x1c,0x60,0x01,0x02,0x04,0x00,0x10,0x90,0x94,0xfe,0x90,0x10,0x10,0xff,0x38,0x54,0x54,0x92,0x13,0x12,0x10,0x10 -+// 29665 珡 ; -+,0x7f,0x08,0x08,0x3f,0x08,0x08,0x08,0x7e,0x01,0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x7f,0x08,0x08,0x3e,0x08,0x08,0x08,0x7f,0x00,0x80,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 29666 珢 ; -+,0x00,0x7e,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa0,0xa4,0x98,0x90,0x88,0x8c,0xa7,0xc2,0x80 -+// 29667 珣 ; -+,0x00,0x7c,0x10,0x11,0x11,0x12,0x7c,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x80,0x80,0xfe,0x02,0x02,0xf2,0x92,0x92,0xf2,0x92,0x92,0xf2,0x02,0x02,0x14,0x08 -+// 29668 珤 ; -+,0x00,0x7f,0x08,0x08,0x09,0x0a,0x3e,0x09,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x00,0x40,0x40,0x7f,0x90,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 29669 珥 ; -+,0x00,0x7d,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x1c,0x73,0x00,0x00,0x00,0x00,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0x4f,0xf4,0x04,0x04,0x04,0x04 -+// 29670 珦 ; -+,0x00,0x7c,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x01,0x20,0x20,0x40,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 29671 珧 ; -+,0x00,0x7c,0x10,0x12,0x11,0x11,0x7c,0x10,0x11,0x12,0x10,0x1c,0x60,0x01,0x02,0x04,0x48,0x48,0x48,0x4a,0x4a,0x4c,0x48,0xc8,0x4c,0x4a,0x48,0x88,0x89,0x09,0x07,0x00 -+// 29672 珨 ; -+,0x00,0x3e,0x08,0x08,0x08,0x09,0x3c,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x83,0x02,0xfc,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 29673 珩 ; -+,0x00,0x00,0x7d,0x12,0x14,0x10,0x7c,0x11,0x13,0x15,0x11,0x1d,0x61,0x01,0x01,0x01,0x80,0x82,0x3f,0x00,0x00,0x80,0xbf,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x08 -+// 29674 珪 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x09,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x01,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 29675 珫 ; -+,0x00,0x7e,0x09,0x08,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x0f,0x70,0x00,0x01,0x02,0x20,0x10,0xff,0x10,0x20,0x48,0x84,0xfe,0x4a,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 29676 珬 ; -+,0x00,0x00,0x7c,0x13,0x12,0x12,0x7a,0x12,0x13,0x12,0x12,0x1a,0x64,0x04,0x09,0x10,0x10,0x14,0x12,0xff,0x10,0x10,0x12,0x12,0xd4,0x14,0x08,0x08,0x15,0x65,0x83,0x01 -+// 29677 班 ; -+,0x00,0x7c,0x10,0x10,0x10,0x12,0x7e,0x12,0x14,0x10,0x10,0x1d,0x61,0x02,0x04,0x08,0x80,0xbf,0x88,0x88,0x88,0x88,0xbf,0x88,0x88,0x88,0x88,0x08,0x08,0x7f,0x00,0x00 -+// 29678 珮 ; -+,0x00,0x7f,0x12,0x12,0x12,0x7a,0x12,0x12,0x12,0x12,0x1c,0x64,0x08,0x08,0x10,0x20,0x00,0xfe,0x02,0xfa,0x22,0x22,0xfa,0xaa,0xaa,0xaa,0xaa,0xba,0xaa,0x23,0x23,0x21 -+// 29679 珯 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3f,0x08,0x08,0x08,0x08,0x0f,0x32,0x04,0x00,0x00,0x20,0x20,0x21,0xfd,0x22,0x24,0xff,0x10,0x20,0x42,0xcc,0x70,0x41,0x41,0x3f,0x00 -+// 29680 珰 ; -+,0x00,0x00,0x7d,0x10,0x10,0x10,0x11,0x7c,0x10,0x10,0x10,0x10,0x1c,0x71,0x00,0x00,0x20,0x22,0x22,0xa4,0xa8,0x20,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 29681 珱 ; -+,0x00,0x3e,0x09,0x09,0x08,0x08,0x3e,0x0b,0x08,0x08,0x08,0x0e,0x70,0x00,0x03,0x0c,0x42,0x23,0x22,0x14,0x94,0x90,0x40,0xff,0x44,0x48,0x88,0x50,0x30,0xcc,0x06,0x02 -+// 29682 珲 ; -+,0x00,0x7d,0x11,0x10,0x11,0x10,0x7c,0x10,0x11,0x10,0x10,0x1d,0x60,0x00,0x00,0x00,0x00,0xff,0x21,0x20,0xfe,0x40,0x50,0x90,0xfe,0x90,0x10,0xff,0x10,0x10,0x10,0x10 -+// 29683 珳 ; -+,0x01,0x3e,0x08,0x0f,0x09,0x09,0x3d,0x09,0x08,0x08,0x08,0x0e,0x31,0x02,0x0c,0x30,0x00,0x81,0x82,0xf4,0x28,0x21,0x22,0x24,0xa9,0xc2,0x44,0xa8,0x10,0x2c,0x47,0x82 -+// 29684 珴 ; -+,0x00,0x00,0x3d,0x08,0x08,0x0b,0x3c,0x08,0x08,0x0b,0x08,0x0e,0x30,0x02,0x01,0x00,0x10,0x10,0xd4,0x92,0x92,0xff,0x90,0xb2,0xd2,0x94,0x88,0x89,0x95,0xa3,0x01,0x00 -+// 29685 珵 ; -+,0x00,0x00,0x7e,0x08,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x0e,0x70,0x03,0x00,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x00 -+// 29686 珶 ; -+,0x00,0x00,0x7c,0x11,0x10,0x11,0x7d,0x11,0x11,0x11,0x10,0x1c,0x61,0x06,0x18,0x00,0x84,0x48,0x10,0xfe,0x12,0xfe,0x12,0x10,0xff,0x31,0x51,0x91,0x15,0x12,0x10,0x10 -+// 29687 珷 ; -+,0x00,0x00,0x7d,0x10,0x13,0x10,0x7c,0x10,0x11,0x11,0x11,0x1d,0x61,0x07,0x00,0x00,0x08,0x0c,0xea,0x08,0xff,0x48,0x48,0x48,0x78,0x48,0x48,0x45,0x75,0x83,0x01,0x00 -+// 29688 珸 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x09,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x00,0xfe,0x20,0x20,0xfc,0x24,0x24,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29689 珹 ; -+,0x00,0x7c,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1a,0x63,0x04,0x08,0x00,0x10,0x14,0x12,0xff,0x10,0x12,0xd2,0x52,0x54,0x4c,0x48,0x49,0x55,0xa3,0x41,0x00 -+// 29690 珺 ; -+,0x00,0x7d,0x10,0x10,0x13,0x7c,0x10,0x11,0x10,0x10,0x1d,0x62,0x04,0x08,0x10,0x00,0x00,0xfc,0x24,0x24,0xff,0x44,0x44,0xfc,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 29691 珻 ; -+,0x01,0x01,0x7d,0x12,0x15,0x11,0x7d,0x11,0x17,0x11,0x11,0x1d,0x61,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0xfc,0x44,0x24,0x24,0xff,0x44,0x24,0x24,0xff,0x04,0x28,0x10 -+// 29692 珼 ; -+,0x00,0x00,0x7e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x01,0x02,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x48,0x84,0x02,0x01 -+// 29693 珽 ; -+,0x00,0x03,0x7c,0x10,0x11,0x11,0x7b,0x10,0x14,0x12,0x11,0x1d,0x62,0x02,0x04,0x08,0x00,0x86,0xb8,0x88,0x08,0x08,0xff,0x88,0x88,0x88,0x3e,0x00,0x80,0x70,0x0f,0x02 -+// 29694 現 ; -+,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x01,0x02,0x04,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x48,0x48,0x89,0x09,0x09,0x07 -+// 29695 珿 ; -+,0x00,0x7c,0x10,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x1c,0x61,0x01,0x02,0x04,0x00,0xfe,0x82,0x82,0x82,0xfe,0x10,0x10,0x90,0x9e,0x90,0x90,0x50,0x30,0x0f,0x02 -+// 29696 琀 ; -+,0x00,0x7c,0x10,0x10,0x11,0x12,0x7d,0x10,0x10,0x11,0x11,0x1d,0x61,0x01,0x01,0x00,0x20,0x30,0x48,0xa4,0x13,0x12,0xfc,0x08,0x10,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 29697 琁 ; -+,0x00,0x00,0x7c,0x11,0x12,0x11,0x7c,0x10,0x11,0x11,0x11,0x1d,0x61,0x02,0x04,0x08,0x80,0x80,0xff,0x00,0x00,0xfe,0x22,0x24,0x20,0x3e,0x20,0xa0,0x60,0x30,0x0f,0x02 -+// 29698 琂 ; -+,0x00,0x00,0x7e,0x11,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x10,0x1c,0x70,0x00,0x00,0x20,0x10,0x10,0xff,0x00,0xfe,0x00,0xfe,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 29699 球 ; -+,0x00,0x00,0x7c,0x13,0x10,0x11,0x3c,0x10,0x10,0x10,0x10,0x1d,0x62,0x00,0x00,0x00,0x28,0x24,0x24,0xff,0x20,0x22,0xa4,0xa8,0x30,0x68,0xa4,0x23,0x20,0x20,0xa0,0x40 -+// 29700 琄 ; -+,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 29701 琅 ; -+,0x00,0x00,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x20,0x10,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x44,0x28,0x10,0x08,0x47,0x82,0x00 -+// 29702 理 ; -+,0x00,0x01,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x11,0x1c,0x60,0x00,0x07,0x00,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 29703 琇 ; -+,0x00,0x7c,0x10,0x11,0x10,0x10,0x7c,0x11,0x13,0x10,0x10,0x1c,0x60,0x01,0x02,0x04,0x0e,0xf0,0x12,0xff,0x38,0x54,0x93,0x12,0xfc,0x48,0x5e,0x82,0x82,0x02,0x14,0x08 -+// 29704 琈 ; -+,0x00,0x7d,0x10,0x11,0x10,0x10,0x7d,0x10,0x10,0x10,0x13,0x1c,0x60,0x00,0x00,0x00,0x1e,0xe0,0x42,0x24,0xa8,0x00,0xfe,0x04,0x28,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 29705 琉 ; -+,0x00,0x3e,0x09,0x08,0x08,0x08,0x3d,0x08,0x08,0x08,0x08,0x0e,0x71,0x01,0x02,0x04,0x20,0x10,0xff,0x20,0x48,0x84,0xfe,0x02,0xa8,0xa8,0xa8,0xa8,0x29,0x29,0x27,0x00 -+// 29706 琊 ; -+,0x00,0x7b,0x10,0x12,0x12,0x3b,0x10,0x10,0x11,0x11,0x1a,0x62,0x04,0x08,0x01,0x00,0x00,0xef,0x49,0x4a,0x4a,0xfc,0xca,0xc9,0x49,0x49,0x49,0x4d,0x4a,0x48,0x48,0x88 -+// 29707 琋 ; -+,0x00,0x00,0x7c,0x10,0x10,0x13,0x7c,0x10,0x10,0x11,0x1a,0x64,0x00,0x00,0x00,0x00,0x84,0x48,0x30,0x48,0xa4,0xff,0x50,0x90,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 29708 琌 ; -+,0x00,0x3f,0x09,0x09,0x09,0x08,0x3e,0x08,0x09,0x0a,0x09,0x0e,0x38,0x00,0x00,0x00,0x20,0x22,0x22,0x22,0xfe,0x20,0x50,0x8c,0x27,0x00,0xfe,0x04,0x08,0x10,0x30,0x00 -+// 29709 琍 ; -+,0x00,0x7c,0x13,0x10,0x10,0x13,0x7c,0x11,0x11,0x12,0x12,0x1c,0x64,0x08,0x00,0x00,0x02,0x62,0x82,0x8a,0x8a,0xfa,0x8a,0xca,0xaa,0x9a,0x8a,0x8a,0x82,0x82,0x8a,0x84 -+// 29710 琎 ; -+,0x00,0x04,0x7a,0x13,0x11,0x10,0x78,0x17,0x11,0x11,0x11,0x1d,0x61,0x02,0x04,0x00,0x24,0x24,0x24,0x7f,0x24,0x24,0x24,0x7f,0x24,0x24,0x24,0x24,0x44,0x80,0x7f,0x00 -+// 29711 琏 ; -+,0x00,0x02,0x7d,0x11,0x10,0x10,0x78,0x17,0x11,0x11,0x11,0x1d,0x61,0x02,0x04,0x00,0x10,0x10,0x7e,0x20,0x28,0x48,0x7e,0x08,0x08,0x7f,0x08,0x08,0x08,0xc0,0x3f,0x02 -+// 29712 琐 ; -+,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x03,0x0c,0x10,0x92,0x52,0x54,0xfe,0x82,0x92,0x92,0x92,0x92,0xb2,0xaa,0x44,0x82,0x03,0x01 -+// 29713 琑 ; -+,0x00,0x01,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x00,0x10,0x11,0x92,0x54,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 29714 琒 ; -+,0x00,0x3e,0x08,0x09,0x0a,0x3e,0x08,0x0b,0x08,0x08,0x0e,0x70,0x03,0x00,0x00,0x00,0x40,0x7c,0x84,0x48,0x30,0x58,0xa7,0x22,0xfc,0x20,0xfc,0x20,0xfe,0x20,0x20,0x20 -+// 29715 琓 ; -+,0x00,0x00,0x3d,0x09,0x0a,0x08,0x3e,0x08,0x0b,0x08,0x08,0x0e,0x70,0x01,0x02,0x04,0x20,0x10,0xff,0x01,0x00,0xfc,0x00,0x00,0xff,0x50,0x50,0x50,0x91,0x11,0x0f,0x00 -+// 29716 琔 ; -+,0x00,0x00,0x7d,0x11,0x12,0x11,0x10,0x7c,0x10,0x10,0x10,0x1c,0x61,0x01,0x02,0x04,0x20,0x10,0xff,0x01,0x02,0xfe,0x10,0x10,0x90,0x9e,0x90,0x90,0x90,0x70,0x1f,0x02 -+// 29717 琕 ; -+,0x00,0x00,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x10,0x1b,0x60,0x00,0x00,0x00,0x20,0x40,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 29718 琖 ; -+,0x00,0x00,0x3e,0x0b,0x08,0x08,0x3e,0x09,0x08,0x09,0x08,0x0e,0x70,0x01,0x06,0x00,0x50,0x48,0x7c,0xc0,0x4c,0x71,0x4f,0xd0,0x4f,0xf0,0x44,0x29,0x31,0xcd,0x03,0x00 -+// 29719 琗 ; -+,0x00,0x7c,0x13,0x10,0x10,0x10,0x7c,0x11,0x12,0x10,0x1f,0x60,0x00,0x00,0x00,0x00,0x40,0x20,0xfe,0x88,0x88,0x88,0x88,0x54,0x22,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 29720 琘 ; -+,0x00,0x01,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x0e,0xf0,0x10,0x10,0xff,0x08,0x45,0x83,0xfd,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 29721 琙 ; -+,0x00,0x00,0x7c,0x13,0x10,0x11,0x11,0x7d,0x11,0x11,0x10,0x1c,0x63,0x00,0x00,0x00,0x14,0x12,0x10,0xff,0x10,0xd0,0x53,0x52,0x52,0xd4,0x0c,0xe9,0x15,0x25,0x43,0x80 -+// 29722 琚 ; -+,0x01,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x12,0x12,0x1e,0x64,0x04,0x08,0x10,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 29723 琛 ; -+,0x00,0x7d,0x11,0x12,0x10,0x39,0x10,0x13,0x10,0x10,0x1c,0x61,0x02,0x04,0x08,0x00,0x00,0xff,0x01,0x4a,0x84,0x22,0x20,0xfe,0x60,0xb0,0xa8,0x24,0x23,0x22,0x20,0x20 -+// 29724 琜 ; -+,0x00,0x00,0x7c,0x13,0x10,0x10,0x7c,0x11,0x12,0x10,0x10,0x1d,0x62,0x04,0x00,0x00,0x20,0x20,0x20,0xff,0xa4,0xa4,0xa4,0x6a,0x31,0x70,0xa8,0x24,0x23,0x20,0x20,0x20 -+// 29725 琝 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3e,0x08,0x09,0x08,0x08,0x0e,0x70,0x00,0x00,0x03,0xfe,0x82,0x82,0xfe,0x82,0xfe,0xa2,0x10,0xff,0x44,0x44,0x28,0x10,0x2c,0xc7,0x02 -+// 29726 琞 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x00,0x01,0x3f,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x94,0x08,0xff,0x80,0xfc,0x90,0x88,0xff,0x00 -+// 29727 琟 ; -+,0x00,0x00,0x3e,0x08,0x09,0x09,0x0a,0x3c,0x08,0x08,0x08,0x08,0x0e,0x30,0x00,0x00,0x50,0x48,0x88,0x82,0xff,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0xff,0x80,0x80 -+// 29728 琠 ; -+,0x00,0x00,0x7c,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x1d,0x60,0x00,0x00,0x01,0x28,0x28,0x28,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x48,0x64,0x83,0x02 -+// 29729 琡 ; -+,0x01,0x7d,0x11,0x11,0x11,0x17,0x7d,0x11,0x11,0x15,0x15,0x1d,0x65,0x09,0x05,0x02,0x00,0x00,0x3f,0xd2,0x12,0xd2,0x12,0x14,0x94,0x54,0x28,0x34,0x14,0x26,0x43,0x82 -+// 29730 琢 ; -+,0x00,0x7d,0x10,0x10,0x10,0x11,0x7a,0x11,0x16,0x10,0x10,0x1d,0x62,0x00,0x00,0x00,0x00,0xff,0x20,0x42,0xc4,0x28,0x70,0x98,0xb8,0x54,0x94,0x13,0x12,0x10,0xa0,0x40 -+// 29731 琣 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x09,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x20,0x10,0xff,0x00,0x42,0x24,0x28,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 29732 琤 ; -+,0x00,0x01,0x3e,0x08,0x08,0x09,0x3e,0x08,0x0b,0x08,0x08,0x0f,0x70,0x00,0x00,0x00,0x1e,0xe0,0x22,0x94,0x50,0xfe,0x22,0x22,0xff,0x22,0x22,0xfe,0x20,0x20,0xa0,0x40 -+// 29733 琥 ; -+,0x00,0x00,0x7c,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1e,0x62,0x04,0x09,0x12,0x20,0x3c,0x20,0xff,0x22,0x38,0xe2,0x3e,0x00,0x78,0x48,0x48,0x49,0x89,0x07,0x00 -+// 29734 琦 ; -+,0x00,0x00,0x7d,0x10,0x10,0x11,0x7b,0x10,0x11,0x11,0x11,0x1d,0x61,0x01,0x00,0x00,0x20,0x20,0xfe,0x50,0x88,0x04,0xff,0x04,0xe4,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 29735 琧 ; -+,0x00,0x3f,0x01,0x1f,0x10,0x1f,0x01,0x3f,0x00,0x1f,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0xff,0x20,0x3e,0x02,0x3e,0x20,0xff,0x00,0xfe,0x80,0xfc,0x90,0x88,0xff,0x00 -+// 29736 琨 ; -+,0x00,0x01,0x7d,0x11,0x11,0x11,0x11,0x7d,0x10,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x00,0x10,0xd3,0x1c,0x11,0x51,0x91,0x0f -+// 29737 琩 ; -+,0x00,0x7e,0x08,0x08,0x08,0x08,0x3e,0x08,0x09,0x09,0x09,0x0f,0x71,0x01,0x01,0x01,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00,0xff,0x01,0x01,0xff,0x01,0x01,0xff,0x01 -+// 29738 琪 ; -+,0x00,0x3e,0x09,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0d,0x70,0x00,0x01,0x02,0x84,0x84,0xff,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xff,0x48,0x84,0x02,0x01 -+// 29739 琫 ; -+,0x00,0x7d,0x10,0x11,0x10,0x13,0x7c,0x11,0x12,0x15,0x10,0x1b,0x60,0x00,0x00,0x00,0x20,0xfe,0x20,0xfc,0x40,0xff,0x90,0x28,0x24,0xfb,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 29740 琬 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x3c,0x11,0x13,0x14,0x10,0x1c,0x61,0x02,0x04,0x08,0x20,0x10,0xff,0x01,0x82,0x80,0xfe,0x32,0x32,0xd2,0x5a,0x94,0x10,0x11,0x11,0x0f -+// 29741 琭 ; -+,0x00,0x01,0x7c,0x11,0x10,0x13,0x7c,0x12,0x11,0x10,0x10,0x1d,0x62,0x04,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xff,0x20,0x22,0x24,0x38,0xa8,0x24,0x23,0x20,0xa0,0x40 -+// 29742 琮 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x7c,0x10,0x11,0x10,0x10,0x1c,0x61,0x02,0x04,0x00,0x20,0x10,0xff,0x01,0x02,0xfc,0x00,0x00,0xff,0x10,0x94,0x92,0x13,0x11,0x50,0x20 -+// 29743 琯 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x10,0x7c,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x40,0x20,0xff,0x01,0x02,0xfc,0x84,0x84,0xfc,0x80,0x80,0xfc,0x84,0x84,0xfc,0x84 -+// 29744 琰 ; -+,0x00,0x7c,0x10,0x10,0x11,0x10,0x7c,0x11,0x12,0x10,0x11,0x1c,0x60,0x00,0x01,0x06,0x20,0x20,0xa6,0xa8,0x30,0x48,0x84,0x22,0xa1,0xa6,0x38,0x50,0x48,0x84,0x07,0x02 -+// 29745 琱 ; -+,0x00,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x61,0x02,0x02,0x04,0x08,0x00,0xfe,0x22,0x7a,0x22,0x22,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x42,0x02,0x0a,0x04 -+// 29746 琲 ; -+,0x00,0x7c,0x10,0x13,0x10,0x10,0x7c,0x11,0x10,0x10,0x10,0x1b,0x60,0x00,0x00,0x00,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0xce,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48 -+// 29747 琳 ; -+,0x00,0x00,0x7c,0x10,0x13,0x10,0x7d,0x11,0x11,0x12,0x1a,0x64,0x08,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0xdf,0x88,0x9c,0xdc,0xac,0xaa,0xca,0x8b,0x88,0x88,0x88,0x88 -+// 29748 琴 ; -+,0x00,0x3f,0x04,0x1f,0x04,0x3f,0x00,0x01,0x06,0x18,0x60,0x07,0x00,0x00,0x00,0x00,0x00,0x7f,0x08,0x3e,0x08,0x7f,0x80,0x40,0x30,0x8f,0x42,0xf8,0x10,0x20,0x40,0x00 -+// 29749 琵 ; -+,0x00,0x3f,0x08,0x3f,0x08,0x08,0x7f,0x10,0x10,0x1f,0x10,0x10,0x12,0x1c,0x10,0x00,0x00,0x7e,0x10,0x7e,0x10,0x10,0x7f,0x00,0x44,0x4e,0x70,0x40,0x41,0x41,0x3f,0x00 -+// 29750 琶 ; -+,0x00,0x3f,0x04,0x3f,0x04,0x04,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x0f,0x00,0x00,0x7e,0x10,0x7e,0x10,0x10,0x7f,0x00,0xfc,0x84,0x84,0xfc,0x01,0x01,0xff,0x00 -+// 29751 琷 ; -+,0x00,0x7c,0x13,0x10,0x10,0x11,0x7c,0x10,0x13,0x10,0x10,0x1c,0x61,0x02,0x04,0x08,0x84,0x48,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x50,0x50,0x90,0x11,0x11,0x0f,0x00 -+// 29752 琸 ; -+,0x00,0x00,0x7c,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x10,0x1c,0x67,0x00,0x00,0x00,0x20,0x3e,0x20,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x20,0x20,0xff,0x20,0x20,0x20 -+// 29753 琹 ; -+,0x3f,0x04,0x04,0x3f,0x04,0x04,0x7f,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x7e,0x10,0x10,0x7e,0x10,0x10,0x7f,0x80,0x80,0xfe,0xa0,0x90,0x88,0x87,0x82,0x80 -+// 29754 琺 ; -+,0x02,0x7d,0x11,0x10,0x14,0x12,0x7e,0x11,0x11,0x12,0x16,0x1a,0x62,0x02,0x02,0x00,0x10,0x10,0x10,0x7e,0x90,0x90,0x90,0x7f,0x10,0x10,0x24,0x22,0x42,0xff,0x41,0x00 -+// 29755 琻 ; -+,0x00,0x00,0x3e,0x08,0x08,0x09,0x3e,0x08,0x08,0x09,0x08,0x0d,0x70,0x00,0x03,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfa,0x20,0x20,0xfe,0x20,0x24,0xa4,0xa8,0xff,0x00 -+// 29756 琼 ; -+,0x00,0x00,0x3c,0x0b,0x08,0x09,0x3d,0x09,0x09,0x08,0x09,0x0d,0x32,0x02,0x04,0x00,0x40,0x20,0x20,0xff,0x00,0xfc,0x04,0x04,0xfc,0x20,0x28,0x24,0x22,0x22,0xa0,0x40 -+// 29757 琽 ; -+,0x00,0x00,0x7d,0x10,0x10,0x13,0x7c,0x10,0x11,0x16,0x10,0x1c,0x60,0x00,0x00,0x00,0x20,0x21,0xf9,0x22,0x24,0xff,0x30,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 29758 琾 ; -+,0x01,0x7d,0x11,0x11,0x11,0x11,0x7d,0x10,0x11,0x16,0x10,0x1c,0x61,0x01,0x02,0x04,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x50,0x88,0x8f,0x8a,0x88,0x08,0x08,0x08,0x08 -+// 29759 琿 ; -+,0x00,0x3d,0x09,0x0a,0x08,0x08,0x3e,0x08,0x08,0x08,0x0e,0x71,0x00,0x00,0x00,0x00,0x00,0xff,0x11,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 29760 瑀 ; -+,0x00,0x3d,0x08,0x08,0x08,0x08,0x3e,0x08,0x09,0x09,0x09,0x0f,0x71,0x01,0x01,0x01,0x0e,0xf0,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x1d,0x65,0x01,0x05,0x02 -+// 29761 瑁 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7d,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x00,0xff,0x01,0x7d,0x01,0x7d,0x01,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00 -+// 29762 瑂 ; -+,0x00,0x01,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x1d,0x62,0x02,0x04,0x08,0x00,0xff,0x11,0x11,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 29763 瑃 ; -+,0x00,0x00,0x7d,0x10,0x11,0x10,0x7d,0x10,0x11,0x12,0x14,0x1c,0x60,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0xfe,0x40,0xff,0x88,0x04,0xff,0x85,0xfc,0x84,0x84,0xfc,0x84 -+// 29764 瑄 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x7c,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x03,0x00,0x20,0x10,0xff,0x01,0xfe,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00 -+// 29765 瑅 ; -+,0x00,0x7c,0x10,0x10,0x10,0x10,0x7c,0x13,0x10,0x11,0x11,0x1d,0x61,0x02,0x04,0x08,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x20,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x02 -+// 29766 瑆 ; -+,0x00,0x7e,0x10,0x10,0x10,0x10,0x7e,0x11,0x11,0x11,0x12,0x1c,0x60,0x00,0x03,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 29767 瑇 ; -+,0x00,0x7d,0x10,0x10,0x10,0x13,0x7c,0x11,0x11,0x17,0x12,0x1e,0x63,0x00,0x00,0x00,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x24,0xff,0x48,0x28,0xff,0x08,0x50,0x20 -+// 29768 瑈 ; -+,0x01,0x7c,0x10,0x10,0x13,0x10,0x7d,0x16,0x10,0x13,0x10,0x1c,0x61,0x02,0x04,0x00,0xfc,0x08,0x30,0x10,0xff,0x52,0x94,0x50,0x20,0xff,0x70,0xa8,0x24,0x23,0x22,0x20 -+// 29769 瑉 ; -+,0x00,0x01,0x7d,0x11,0x11,0x11,0x3d,0x11,0x11,0x11,0x14,0x18,0x60,0x00,0x00,0x00,0x00,0xfe,0x02,0xfe,0x10,0xfe,0x10,0x49,0x85,0x03,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 29770 瑊 ; -+,0x00,0x00,0x7c,0x13,0x12,0x12,0x7b,0x12,0x12,0x12,0x16,0x1a,0x64,0x04,0x08,0x10,0x14,0x12,0x12,0xff,0x10,0x12,0xf2,0x12,0xea,0xac,0xac,0xe8,0x95,0x25,0x43,0x01 -+// 29771 瑋 ; -+,0x00,0x01,0x3c,0x0b,0x08,0x08,0x3c,0x08,0x08,0x08,0x0b,0x0d,0x30,0x00,0x00,0x00,0x20,0xfc,0x24,0xff,0x00,0xfc,0x84,0xfc,0x90,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 29772 瑌 ; -+,0x00,0x7b,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x10,0x1b,0x60,0x00,0x01,0x06,0x18,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x5a,0x24,0x20,0xff,0x50,0x88,0x0c,0x07,0x02 -+// 29773 瑍 ; -+,0x00,0x7c,0x10,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x13,0x1c,0x60,0x01,0x02,0x0c,0x40,0x7c,0x88,0x10,0xfe,0x02,0x4a,0x86,0x22,0x20,0xff,0x50,0x88,0x04,0x07,0x02 -+// 29774 瑎 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0a,0x0c,0x30,0x00,0x00,0x00,0x88,0x88,0x8b,0xec,0x88,0xa9,0xc9,0xa7,0x40,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 29775 瑏 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x7c,0x10,0x10,0x11,0x14,0x18,0x60,0x01,0x06,0x00,0x20,0x10,0xff,0x29,0x44,0x82,0x7e,0x88,0x88,0xff,0x18,0x28,0x48,0x88,0x28,0x10 -+// 29776 瑐 ; -+,0x00,0x00,0x7c,0x13,0x10,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x82,0x44,0x48,0xff,0x00,0xe2,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x22,0x22,0x2a,0x44 -+// 29777 瑑 ; -+,0x00,0x00,0x7c,0x10,0x10,0x13,0x7c,0x11,0x16,0x10,0x11,0x1a,0x60,0x01,0x02,0x00,0x80,0xfc,0x88,0xf8,0x08,0xff,0x40,0x88,0x50,0xa0,0x38,0x54,0x93,0x10,0xa0,0x40 -+// 29778 瑒 ; -+,0x00,0x00,0x7c,0x10,0x10,0x10,0x7d,0x10,0x10,0x11,0x16,0x18,0x61,0x02,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x40,0xfe,0x4a,0x4a,0x92,0x22,0x42,0x94,0x08 -+// 29779 瑓 ; -+,0x00,0x00,0x7d,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x14,0x18,0x61,0x02,0x04,0x00,0x20,0x20,0xff,0x20,0xfe,0x22,0xaa,0x6a,0xfe,0x72,0xa8,0xa8,0x24,0x23,0x22,0x20 -+// 29780 瑔 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3c,0x08,0x08,0x09,0x0a,0x0c,0x31,0x02,0x04,0x00,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x12,0xd4,0x58,0x94,0x12,0x11,0x50,0x20 -+// 29781 瑕 ; -+,0x00,0x3b,0x12,0x12,0x13,0x12,0x3a,0x13,0x12,0x12,0x17,0x1a,0x62,0x02,0x02,0x02,0x00,0xde,0x42,0x42,0xde,0x42,0x00,0xff,0x12,0x12,0xd4,0x1c,0x08,0x14,0x63,0x82 -+// 29782 瑖 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x67,0x01,0x01,0x01,0x40,0x9e,0x12,0x12,0xd2,0x23,0x40,0xff,0x12,0x12,0x14,0xcc,0x08,0x14,0x23,0x42 -+// 29783 瑗 ; -+,0x00,0x3d,0x12,0x11,0x11,0x13,0x3c,0x13,0x10,0x10,0x15,0x19,0x62,0x04,0x08,0x13,0x1e,0xe0,0x42,0x24,0x28,0xfe,0x40,0xff,0x40,0xfc,0x48,0x28,0x10,0x28,0xc7,0x02 -+// 29784 瑘 ; -+,0x03,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x15,0x19,0x61,0x06,0x00,0x00,0x00,0xf0,0x2f,0x29,0x29,0xea,0x2a,0x2c,0xea,0x29,0x29,0x39,0xed,0x2a,0x28,0x28,0x28 -+// 29785 瑙 ; -+,0x00,0x00,0x7d,0x12,0x11,0x10,0x3c,0x11,0x11,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x92,0x92,0x24,0x48,0x24,0x92,0xa2,0xfe,0x02,0x4a,0x32,0x32,0x4a,0x02,0xfe,0x02 -+// 29786 瑚 ; -+,0x00,0x7c,0x10,0x13,0x10,0x10,0x7c,0x13,0x12,0x12,0x17,0x1a,0x62,0x00,0x00,0x00,0x80,0x9e,0x92,0xf2,0x92,0x9e,0x92,0xd2,0x52,0x5e,0xd2,0x52,0x22,0x22,0x4a,0x84 -+// 29787 瑛 ; -+,0x00,0x00,0x7f,0x10,0x10,0x11,0x7d,0x11,0x11,0x17,0x14,0x18,0x61,0x02,0x04,0x18,0x88,0x88,0xff,0x88,0x88,0xfe,0x24,0x24,0x24,0xff,0x60,0x90,0x08,0x0c,0x07,0x02 -+// 29788 瑜 ; -+,0x00,0x7c,0x10,0x11,0x12,0x14,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x20,0x50,0x88,0x04,0xfb,0x00,0xe2,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0x44 -+// 29789 瑝 ; -+,0x00,0x00,0x7d,0x11,0x11,0x11,0x7d,0x11,0x10,0x11,0x10,0x1c,0x71,0x00,0x00,0x03,0x40,0x80,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x20,0x20,0xfc,0x20,0x20,0xff -+// 29790 瑞 ; -+,0x00,0x7c,0x10,0x10,0x10,0x10,0x7d,0x10,0x11,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x20,0xff,0x29,0x29,0x29,0x29,0x29,0x25,0x02 -+// 29791 瑟 ; -+,0x00,0x3f,0x08,0x3f,0x08,0x08,0x7f,0x00,0x00,0x12,0x12,0x12,0x23,0x0e,0x31,0x00,0x00,0x7e,0x10,0x7e,0x10,0x10,0x7f,0x88,0x48,0x50,0x22,0xc1,0x09,0x08,0xf8,0x00 -+// 29792 瑠 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7c,0x11,0x11,0x11,0x15,0x19,0x61,0x01,0x01,0x00,0x60,0x9e,0x0a,0x4a,0x52,0xaa,0x44,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02,0x00 -+// 29793 瑡 ; -+,0x01,0x79,0x13,0x12,0x12,0x13,0x7a,0x12,0x13,0x12,0x16,0x1a,0x63,0x02,0x02,0x00,0x00,0x3f,0x88,0x88,0xbf,0xa9,0xa9,0x29,0xa9,0xa9,0xa9,0xad,0xaa,0x88,0x08,0x08 -+// 29794 瑢 ; -+,0x00,0x7c,0x11,0x11,0x12,0x10,0x7d,0x10,0x10,0x13,0x10,0x1c,0x60,0x00,0x00,0x00,0x20,0x10,0xff,0x01,0x4a,0xa4,0x32,0x48,0x84,0x03,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 29795 瑣 ; -+,0x00,0x7d,0x10,0x10,0x11,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x00,0x01,0x02,0x20,0x22,0xa4,0x28,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x4a,0x84,0x06,0x02 -+// 29796 瑤 ; -+,0x00,0x00,0x7c,0x11,0x12,0x10,0x7c,0x13,0x10,0x13,0x14,0x18,0x60,0x00,0x00,0x00,0x40,0x7e,0xc4,0x28,0x90,0x60,0xc0,0x7e,0x90,0xff,0x10,0x92,0x92,0xfe,0x82,0x00 -+// 29797 瑥 ; -+,0x00,0x00,0x7e,0x10,0x10,0x10,0x7c,0x10,0x10,0x11,0x15,0x19,0x61,0x01,0x07,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x52,0x52,0x52,0x52,0xff,0x00 -+// 29798 瑦 ; -+,0x00,0x00,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0a,0x0d,0x31,0x02,0x00,0x00,0x20,0xfc,0x84,0x84,0xfc,0x80,0xff,0x80,0xfe,0x82,0x2a,0x56,0x52,0x42,0x14,0x08 -+// 29799 瑧 ; -+,0x00,0x00,0x7d,0x10,0x11,0x10,0x7d,0x10,0x11,0x12,0x15,0x18,0x60,0x01,0x02,0x00,0x20,0x20,0xff,0x20,0xfe,0x40,0xff,0x88,0x74,0x27,0xfa,0x70,0xa8,0x27,0x22,0x20 -+// 29800 瑨 ; -+,0x00,0x7d,0x10,0x11,0x10,0x10,0x7d,0x10,0x10,0x10,0x10,0x1c,0x60,0x00,0x00,0x00,0x00,0xfe,0x48,0x4a,0xcc,0x48,0xfe,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 29801 瑩 ; -+,0x04,0x05,0x16,0x14,0x2a,0x11,0x1f,0x10,0x2f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x10,0x12,0x5c,0x50,0xa8,0x44,0xff,0x02,0xfc,0x80,0x80,0xf8,0xa0,0x92,0xff,0x00 -+// 29802 瑪 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x7d,0x11,0x11,0x14,0x1a,0x62,0x02,0x04,0x00,0x00,0x00,0xff,0x20,0xfe,0x20,0xfe,0x20,0xfe,0x02,0x52,0xaa,0xaa,0x82,0x14,0x08,0x00 -+// 29803 瑫 ; -+,0x00,0x01,0x7c,0x11,0x10,0x10,0x7c,0x11,0x11,0x11,0x15,0x19,0x61,0x01,0x01,0x00,0x1e,0xe0,0x21,0x11,0x92,0x84,0x30,0xcf,0x01,0x01,0xef,0x01,0x01,0xff,0x01,0x00 -+// 29804 瑬 ; -+,0x20,0x10,0x07,0x49,0x2b,0x09,0x31,0x12,0x14,0x1f,0x00,0x1f,0x00,0x00,0x7f,0x00,0x80,0x40,0xfe,0x00,0xfc,0x50,0x51,0x4f,0x40,0xfe,0x80,0xfc,0xa0,0x90,0xff,0x00 -+// 29805 瑭 ; -+,0x00,0x00,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x12,0x1a,0x64,0x04,0x08,0x00,0x20,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 29806 瑮 ; -+,0x03,0x7c,0x10,0x13,0x12,0x12,0x7b,0x10,0x17,0x10,0x14,0x19,0x62,0x0c,0x00,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0xfe,0x20,0xff,0x70,0xa8,0x24,0x23,0x20,0x20,0x20 -+// 29807 瑯 ; -+,0x01,0x00,0x7f,0x12,0x12,0x13,0x7e,0x12,0x13,0x12,0x16,0x1a,0x62,0x03,0x02,0x00,0x00,0x80,0xef,0x29,0x2a,0xea,0x2c,0x2c,0xea,0x29,0x89,0x4d,0xaa,0x28,0x08,0x08 -+// 29808 瑰 ; -+,0x00,0x00,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x14,0x18,0x60,0x01,0x02,0x0c,0x20,0x40,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x54,0x5a,0x9e,0x91,0x11,0x0f,0x00 -+// 29809 瑱 ; -+,0x00,0x00,0x3d,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x0a,0x0c,0x33,0x00,0x01,0x02,0x20,0x20,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x88,0x04,0x02 -+// 29810 瑲 ; -+,0x00,0x7c,0x10,0x13,0x14,0x11,0x7d,0x11,0x11,0x15,0x19,0x62,0x02,0x04,0x08,0x10,0x20,0x50,0x88,0x44,0x23,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 29811 瑳 ; -+,0x01,0x00,0x7c,0x13,0x10,0x10,0x7d,0x10,0x10,0x13,0x14,0x18,0x61,0x02,0x05,0x08,0x04,0x88,0x10,0xfe,0x20,0x20,0xfc,0x40,0x40,0xff,0x80,0xfc,0x10,0x12,0xff,0x00 -+// 29812 瑴 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x20,0x5e,0x00,0x3f,0x04,0x1f,0x04,0x07,0x38,0x01,0x00,0xbc,0x24,0x24,0x24,0xa4,0xa3,0xc0,0x7f,0xa2,0x24,0x14,0x08,0x94,0x67,0x82 -+// 29813 瑵 ; -+,0x01,0x7c,0x10,0x10,0x10,0x10,0x7c,0x13,0x11,0x11,0x15,0x19,0x60,0x00,0x03,0x01,0xfe,0xa2,0x94,0x44,0x28,0x38,0xc7,0x22,0xfe,0x24,0x24,0xfc,0x24,0x3e,0xe2,0x00 -+// 29814 瑶 ; -+,0x00,0x01,0x3e,0x09,0x08,0x08,0x3e,0x09,0x08,0x09,0x0a,0x0c,0x30,0x00,0x00,0x00,0x1e,0xe0,0x21,0x12,0x94,0x80,0xfe,0x10,0x10,0xff,0x10,0x92,0x92,0xfe,0x82,0x00 -+// 29815 瑷 ; -+,0x00,0x7d,0x10,0x10,0x11,0x11,0x7a,0x11,0x10,0x14,0x18,0x60,0x01,0x02,0x04,0x01,0x1e,0xe0,0x92,0x54,0xff,0x21,0x24,0xff,0x40,0x7e,0xa4,0xa8,0x10,0x28,0x47,0x82 -+// 29816 瑸 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x7c,0x10,0x10,0x10,0x13,0x1c,0x60,0x01,0x02,0x04,0x20,0x10,0xff,0x01,0x1a,0xe0,0x80,0xfe,0x88,0x88,0xff,0x00,0x88,0x04,0x02,0x01 -+// 29817 瑹 ; -+,0x00,0x00,0x7d,0x10,0x10,0x10,0x78,0x11,0x12,0x11,0x14,0x18,0x60,0x01,0x00,0x00,0x44,0x44,0xff,0x44,0x30,0x48,0x84,0x7b,0x10,0xfe,0x10,0x54,0x92,0x11,0x50,0x20 -+// 29818 瑺 ; -+,0x00,0x01,0x7c,0x13,0x12,0x14,0x7c,0x10,0x10,0x11,0x15,0x19,0x61,0x01,0x01,0x00,0x20,0x24,0xa8,0xff,0x01,0xfe,0x84,0xfc,0x20,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20 -+// 29819 瑻 ; -+,0x00,0x7c,0x13,0x11,0x11,0x10,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x00,0x00,0x01,0xfe,0x92,0xff,0x24,0xfc,0x04,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x44,0x82,0x01 -+// 29820 瑼 ; -+,0x00,0x7d,0x10,0x11,0x11,0x11,0x7d,0x11,0x10,0x13,0x10,0x1b,0x60,0x00,0x00,0x00,0x24,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xfc,0x8a,0xff,0x88,0x48,0x28,0x10 -+// 29821 瑽 ; -+,0x00,0x01,0x7d,0x12,0x1c,0x10,0x7d,0x13,0x15,0x11,0x11,0x1d,0x61,0x01,0x01,0x01,0x24,0x24,0x24,0x24,0xb4,0xaa,0x40,0x08,0x48,0x4e,0x48,0x48,0x68,0x58,0x4f,0x82 -+// 29822 瑾 ; -+,0x00,0x00,0x7b,0x10,0x10,0x10,0x7d,0x11,0x11,0x10,0x13,0x18,0x61,0x00,0x07,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00 -+// 29823 瑿 ; -+,0x3f,0x28,0x2f,0x2a,0x3f,0x26,0x29,0x3f,0x00,0x1f,0x00,0x0f,0x00,0x00,0x7f,0x00,0xb8,0x28,0x29,0x49,0x87,0x7c,0x24,0x98,0x67,0xfc,0x80,0xfc,0xa0,0x90,0xff,0x00 -+// 29824 璀 ; -+,0x00,0x7d,0x11,0x11,0x10,0x10,0x7d,0x13,0x15,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x20,0x22,0x22,0xfe,0xa2,0x90,0xff,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 29825 璁 ; -+,0x00,0x7c,0x11,0x11,0x11,0x11,0x3d,0x11,0x11,0x10,0x14,0x1a,0x62,0x04,0x00,0x00,0x20,0x40,0xfe,0x22,0x7a,0xca,0x32,0x4a,0xfe,0x20,0xb0,0x92,0x85,0x85,0x7c,0x00 -+// 29826 璂 ; -+,0x00,0x03,0x78,0x10,0x10,0x10,0x78,0x17,0x10,0x11,0x12,0x1c,0x68,0x00,0x03,0x00,0x88,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xff,0x88,0x24,0xfa,0x23,0x20,0x20,0xfe,0x00 -+// 29827 璃 ; -+,0x00,0x00,0x7d,0x10,0x10,0x10,0x7c,0x10,0x10,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x20,0x10,0xff,0x40,0xaa,0x92,0xaa,0xfe,0x10,0xff,0x21,0x49,0x79,0x09,0x05,0x02 -+// 29828 璄 ; -+,0x00,0x7d,0x10,0x10,0x13,0x10,0x7d,0x11,0x11,0x11,0x15,0x18,0x60,0x00,0x03,0x0c,0x20,0xfe,0x84,0x48,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x48,0x48,0x89,0x09,0x07 -+// 29829 璅 ; -+,0x00,0x7d,0x11,0x10,0x11,0x11,0x7d,0x11,0x11,0x10,0x1b,0x60,0x00,0x03,0x0c,0x00,0x92,0x24,0x24,0x92,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x70,0xa8,0x24,0x23,0x20 -+// 29830 璆 ; -+,0x03,0x7c,0x11,0x10,0x11,0x7e,0x10,0x10,0x11,0x16,0x14,0x1b,0x60,0x03,0x00,0x03,0xde,0x52,0x4a,0xc6,0x4a,0x52,0x20,0x50,0x88,0x27,0xd2,0x24,0xc8,0x30,0xc0,0x00 -+// 29831 璇 ; -+,0x02,0x7d,0x11,0x17,0x12,0x12,0x7b,0x12,0x12,0x12,0x1a,0x14,0x64,0x05,0x09,0x12,0x10,0x10,0x1f,0xa0,0x40,0x3f,0x88,0x88,0xaf,0xa8,0xa8,0xa8,0xa8,0x38,0x4f,0x82 -+// 29832 璈 ; -+,0x01,0x01,0x7f,0x11,0x13,0x11,0x79,0x17,0x12,0x13,0x12,0x1a,0x64,0x0a,0x11,0x20,0x10,0x10,0xd0,0x10,0xdf,0x12,0x12,0xd2,0x24,0xf4,0x48,0x4c,0x54,0xa3,0x42,0x80 -+// 29833 璉 ; -+,0x00,0x02,0x7d,0x11,0x10,0x17,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x02,0x04,0x00,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0xc8,0x3f,0x02 -+// 29834 璊 ; -+,0x00,0x7c,0x13,0x10,0x10,0x10,0x7d,0x11,0x11,0x11,0x11,0x1d,0x61,0x01,0x01,0x01,0x48,0x48,0xff,0x48,0x48,0x20,0xfe,0x22,0x32,0xaa,0x6e,0xb6,0x22,0x22,0x2a,0x04 -+// 29835 璋 ; -+,0x00,0x01,0x7c,0x10,0x13,0x10,0x7c,0x10,0x10,0x10,0x14,0x18,0x63,0x00,0x00,0x00,0x20,0xfe,0x84,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 29836 璌 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x7c,0x10,0x10,0x10,0x14,0x18,0x60,0x00,0x00,0x01,0x20,0x10,0xff,0x01,0xfe,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x28,0x44,0x82,0x01 -+// 29837 璍 ; -+,0x00,0x3e,0x09,0x08,0x09,0x08,0x3f,0x08,0x08,0x09,0x0e,0x73,0x00,0x00,0x00,0x00,0x48,0x48,0xff,0x48,0xff,0xa4,0xff,0xa4,0xa4,0xfe,0x20,0xff,0x20,0x20,0x20,0x20 -+// 29838 璎 ; -+,0x03,0x7a,0x12,0x12,0x12,0x12,0x7d,0x12,0x14,0x13,0x14,0x18,0x60,0x00,0x01,0x06,0xff,0x95,0x95,0x95,0x95,0xd7,0x2a,0x51,0x40,0xff,0x48,0xc8,0x30,0x6c,0x86,0x02 -+// 29839 璏 ; -+,0x01,0x01,0x7d,0x11,0x10,0x17,0x7a,0x12,0x12,0x13,0x13,0x1a,0x62,0x02,0x03,0x02,0x00,0xf8,0x08,0xf8,0x10,0xff,0x44,0x44,0xf5,0x26,0xfc,0x24,0x25,0x55,0x8d,0x03 -+// 29840 璐 ; -+,0x00,0x7b,0x12,0x12,0x12,0x13,0x7d,0x11,0x11,0x15,0x15,0x1d,0x65,0x0e,0x00,0x00,0x10,0xd0,0x5e,0x72,0x54,0xcc,0x08,0x14,0xa3,0x5e,0x12,0x52,0x92,0x1e,0x12,0x00 -+// 29841 璑 ; -+,0x01,0x7d,0x11,0x13,0x15,0x11,0x7f,0x11,0x11,0x11,0x17,0x18,0x62,0x02,0x02,0x04,0x00,0x00,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x00,0x92,0x49,0x49,0x49 -+// 29842 璒 ; -+,0x00,0x01,0x7c,0x11,0x10,0x10,0x7d,0x16,0x10,0x10,0x14,0x18,0x60,0x00,0x03,0x00,0x12,0xd4,0x59,0x4a,0x8c,0x84,0x7b,0x02,0xfc,0x84,0xfc,0x88,0x4c,0x48,0xff,0x00 -+// 29843 璓 ; -+,0x00,0x03,0x7c,0x10,0x10,0x13,0x3c,0x10,0x11,0x12,0x14,0x18,0x60,0x00,0x01,0x02,0x48,0xff,0x48,0xfc,0x20,0xff,0x70,0xa8,0x27,0xfa,0x48,0x4e,0x42,0x82,0x14,0x08 -+// 29844 璔 ; -+,0x00,0x00,0x7d,0x11,0x11,0x11,0x7d,0x11,0x10,0x10,0x14,0x18,0x60,0x00,0x00,0x00,0x82,0x44,0xff,0x11,0x55,0x55,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 29845 璕 ; -+,0x01,0x7c,0x11,0x10,0x11,0x10,0x7d,0x10,0x11,0x10,0x17,0x18,0x60,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x92,0xde,0x04,0xff,0x44,0x24,0x24,0x14,0x08 -+// 29846 璖 ; -+,0x01,0x7c,0x12,0x11,0x10,0x10,0x7b,0x11,0x11,0x11,0x14,0x18,0x60,0x03,0x0c,0x00,0x00,0xbf,0x24,0x3f,0x61,0xbf,0x24,0x3f,0x10,0xff,0x30,0x58,0x94,0x12,0x11,0x10 -+// 29847 璗 ; -+,0x11,0x09,0x09,0x41,0x25,0x29,0x13,0x6c,0x21,0x22,0x00,0x3f,0x00,0x1f,0x00,0x7f,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x92,0x22,0x4a,0x04,0xfe,0x80,0xfc,0x88,0xff -+// 29848 璘 ; -+,0x00,0x7d,0x10,0x13,0x10,0x10,0x79,0x13,0x11,0x12,0x1b,0x64,0x08,0x01,0x02,0x04,0x20,0x24,0xa8,0xfe,0x70,0xac,0x23,0x24,0xdf,0x44,0x44,0xbf,0x84,0x04,0x04,0x04 -+// 29849 璙 ; -+,0x00,0x00,0x7d,0x10,0x12,0x11,0x7a,0x14,0x10,0x10,0x15,0x18,0x61,0x02,0x04,0x00,0x20,0x20,0xff,0x50,0x8a,0xfc,0x87,0xfc,0x84,0xfc,0x20,0xa8,0x24,0x22,0xa2,0x40 -+// 29850 璚 ; -+,0x01,0x7c,0x10,0x13,0x10,0x10,0x7d,0x13,0x11,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0xfe,0x4c,0x30,0xff,0x52,0x94,0x20,0xfe,0x0a,0x46,0xfa,0x4a,0x7a,0x4a,0x0a,0x04 -+// 29851 璛 ; -+,0x00,0x01,0x7c,0x13,0x10,0x11,0x7a,0x13,0x12,0x13,0x12,0x1b,0x62,0x04,0x04,0x08,0x20,0xfc,0x24,0xff,0x24,0xfc,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0xaa,0xb2,0x22 -+// 29852 璜 ; -+,0x00,0x01,0x7c,0x10,0x13,0x10,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x00,0x01,0x02,0x88,0xfe,0x88,0x88,0xff,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x88,0x04,0x02 -+// 29853 璝 ; -+,0x00,0x01,0x7d,0x11,0x10,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x00,0x01,0x02,0x20,0xfc,0x24,0xfc,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x88,0x04,0x02 -+// 29854 璞 ; -+,0x00,0x02,0x7d,0x10,0x13,0x10,0x7d,0x10,0x11,0x10,0x17,0x18,0x60,0x00,0x03,0x0c,0x50,0x52,0x54,0x58,0xff,0x88,0xfe,0x20,0xfe,0x20,0xff,0x50,0x48,0x8c,0x07,0x02 -+// 29855 璟 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x3d,0x08,0x08,0x08,0x0a,0x0c,0x30,0x01,0x02,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x10,0x94,0x12,0x51,0x20 -+// 29856 璠 ; -+,0x00,0x01,0x7d,0x10,0x13,0x10,0x7c,0x13,0x15,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x1c,0xe0,0x24,0xa8,0xff,0x70,0xa8,0x27,0xfe,0x24,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 29857 璡 ; -+,0x02,0x7d,0x11,0x10,0x10,0x17,0x79,0x11,0x11,0x11,0x15,0x19,0x61,0x02,0x04,0x00,0x28,0x24,0x7f,0x48,0xc8,0x7e,0x48,0x48,0x7e,0x48,0x48,0x7f,0x40,0xc0,0x3f,0x02 -+// 29858 璢 ; -+,0x00,0x7f,0x10,0x13,0x12,0x13,0x78,0x13,0x12,0x12,0x17,0x1a,0x62,0x03,0x02,0x00,0x00,0xff,0x50,0xde,0x52,0xde,0x50,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x02,0x00 -+// 29859 璣 ; -+,0x01,0x7d,0x12,0x13,0x11,0x12,0x7b,0x10,0x13,0x12,0x12,0x1a,0x62,0x04,0x04,0x08,0x24,0x24,0x69,0xae,0x24,0xaa,0xaf,0x25,0xff,0x10,0x92,0x4c,0x19,0x25,0xc3,0x01 -+// 29860 璤 ; -+,0x00,0x7b,0x10,0x11,0x11,0x11,0x7d,0x11,0x10,0x13,0x15,0x18,0x62,0x02,0x04,0x00,0x20,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x24,0xfe,0x21,0x92,0x95,0x85,0x7c,0x00 -+// 29861 璥 ; -+,0x02,0x02,0x7f,0x12,0x14,0x17,0x78,0x10,0x17,0x15,0x1d,0x17,0x60,0x00,0x02,0x01,0x88,0x88,0xc8,0x9f,0x92,0xd2,0x62,0x72,0x54,0x4c,0x4c,0x4c,0x54,0x52,0xa3,0x42 -+// 29862 璦 ; -+,0x00,0x7d,0x10,0x10,0x13,0x12,0x7c,0x12,0x14,0x10,0x14,0x19,0x66,0x00,0x03,0x1c,0x1e,0xe0,0x92,0x54,0xff,0x21,0x92,0x95,0x7c,0x80,0xfc,0x08,0x90,0x70,0x8f,0x02 -+// 29863 璧 ; -+,0x00,0x1f,0x11,0x1f,0x10,0x2f,0x29,0x4f,0x00,0x3f,0x00,0x1f,0x00,0x00,0x7f,0x00,0x10,0x7e,0x24,0x28,0xff,0x10,0x7e,0x10,0x10,0xfe,0x80,0xfc,0x90,0x88,0xff,0x00 -+// 29864 璨 ; -+,0x00,0x7c,0x12,0x13,0x12,0x15,0x7d,0x12,0x15,0x10,0x13,0x18,0x60,0x03,0x0c,0x00,0x80,0xfe,0x92,0xd4,0x48,0x94,0x22,0x40,0x24,0xa8,0xff,0x70,0xac,0x27,0x22,0x20 -+// 29865 璩 ; -+,0x00,0x7c,0x10,0x13,0x12,0x13,0x7a,0x12,0x13,0x12,0x1f,0x62,0x05,0x04,0x09,0x10,0x20,0x3c,0x20,0xff,0x3d,0xe2,0x3e,0x00,0xfe,0x60,0xb2,0x54,0xac,0x4b,0xaa,0x10 -+// 29866 璪 ; -+,0x00,0x7c,0x10,0x10,0x10,0x13,0x7a,0x13,0x10,0x13,0x14,0x18,0x61,0x02,0x04,0x00,0x00,0xfc,0x84,0xfc,0x00,0xde,0x52,0xde,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 29867 璫 ; -+,0x00,0x01,0x7c,0x13,0x12,0x14,0x7c,0x10,0x10,0x11,0x15,0x19,0x61,0x01,0x01,0x01,0x20,0x24,0xa8,0xff,0x02,0xf8,0x88,0xf8,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 29868 璬 ; -+,0x00,0x79,0x13,0x12,0x13,0x12,0x7b,0x10,0x17,0x11,0x15,0x1a,0x62,0x04,0x0a,0x11,0x88,0x08,0xc8,0x48,0xdf,0x52,0xd2,0x92,0xea,0x0a,0xc4,0x44,0x4a,0x8a,0x93,0x22 -+// 29869 璭 ; -+,0x00,0x01,0x7d,0x12,0x12,0x10,0x7c,0x16,0x12,0x12,0x12,0x1b,0x62,0x05,0x08,0x00,0x00,0xff,0x11,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x90,0x7f,0x02 -+// 29870 璮 ; -+,0x00,0x00,0x3f,0x08,0x09,0x09,0x3d,0x09,0x09,0x08,0x0a,0x0c,0x30,0x00,0x03,0x00,0x20,0x10,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x84,0xfc,0x84,0xfc,0x00,0xff,0x00 -+// 29871 璯 ; -+,0x00,0x7c,0x10,0x11,0x12,0x15,0x7d,0x11,0x11,0x10,0x14,0x18,0x60,0x00,0x00,0x00,0x20,0x50,0x8c,0x77,0x02,0xfe,0xaa,0x6a,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 29872 環 ; -+,0x01,0x7d,0x11,0x11,0x10,0x13,0x78,0x11,0x11,0x11,0x14,0x18,0x63,0x0c,0x00,0x00,0xfe,0x52,0x52,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0x62,0x94,0x98,0xac,0xc7,0x82 -+// 29873 璱 ; -+,0x03,0x7c,0x10,0x13,0x10,0x10,0x7b,0x10,0x10,0x10,0x12,0x1a,0x64,0x01,0x06,0x18,0xde,0x88,0x88,0xde,0x88,0x88,0xdf,0x20,0xa4,0x88,0x92,0xa1,0xc5,0x84,0x7c,0x00 -+// 29874 璲 ; -+,0x00,0x04,0x7a,0x12,0x10,0x10,0x7e,0x12,0x12,0x12,0x16,0x1a,0x62,0x03,0x04,0x00,0x04,0x44,0x28,0xff,0x20,0x30,0x52,0xac,0x58,0xac,0x4a,0x8a,0x28,0x90,0x7f,0x02 -+// 29875 璳 ; -+,0x01,0x7d,0x12,0x17,0x10,0x13,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x00,0x01,0x02,0x20,0xfe,0x20,0xff,0xa8,0x24,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04,0x02 -+// 29876 璴 ; -+,0x00,0x7c,0x13,0x11,0x12,0x14,0x7c,0x13,0x10,0x10,0x14,0x18,0x61,0x01,0x02,0x04,0x84,0x84,0xff,0xce,0xad,0x95,0xa4,0xff,0x11,0x92,0x9e,0x90,0x50,0x30,0x0f,0x02 -+// 29877 璵 ; -+,0x01,0x02,0x7a,0x13,0x12,0x12,0x7b,0x12,0x12,0x12,0x17,0x18,0x61,0x02,0x04,0x08,0x40,0x76,0x42,0x42,0x7e,0x12,0x52,0x5e,0x52,0x52,0xff,0x00,0x08,0x04,0x02,0x01 -+// 29878 璶 ; -+,0x00,0x01,0x7c,0x13,0x10,0x11,0x7c,0x13,0x12,0x12,0x15,0x19,0x61,0x01,0x03,0x00,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x92,0x49,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 29879 璷 ; -+,0x00,0x7d,0x13,0x12,0x13,0x12,0x7b,0x12,0x11,0x17,0x19,0x61,0x02,0x02,0x05,0x08,0x88,0x08,0xc8,0x48,0xcf,0x52,0xd2,0x52,0x2a,0xea,0x04,0xc4,0x4a,0x52,0x63,0x80 -+// 29880 璸 ; -+,0x00,0x01,0x7d,0x12,0x10,0x11,0x7c,0x10,0x13,0x10,0x10,0x1c,0x60,0x00,0x00,0x01,0x20,0xff,0x01,0xfc,0x22,0xa6,0x38,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 29881 璹 ; -+,0x00,0x03,0x7c,0x11,0x10,0x13,0x7c,0x10,0x13,0x10,0x17,0x18,0x61,0x01,0x01,0x00,0x20,0xfe,0x20,0xfc,0x00,0xff,0x21,0x20,0xfe,0x00,0xff,0x04,0xff,0x54,0xd4,0x0c -+// 29882 璺 ; -+,0x04,0x19,0x11,0x1d,0x11,0x1d,0x11,0x3f,0x20,0x5f,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0xf6,0x12,0xf6,0x52,0xd6,0x12,0xff,0x01,0xfc,0x80,0xfc,0x90,0x88,0xff,0x00 -+// 29883 璻 ; -+,0x03,0x7a,0x11,0x10,0x11,0x12,0x7c,0x13,0x10,0x10,0x15,0x1b,0x60,0x00,0x00,0x00,0xde,0x52,0x4a,0xc6,0x4a,0x52,0x20,0xfe,0x88,0xd8,0x24,0xff,0x20,0x20,0x20,0x20 -+// 29884 璼 ; -+,0x00,0x01,0x7d,0x11,0x11,0x11,0x7d,0x11,0x11,0x10,0x15,0x19,0x61,0x01,0x07,0x00,0x00,0xe8,0x48,0xef,0x28,0xf4,0x52,0x42,0xe0,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 29885 璽 ; -+,0x3f,0x08,0x30,0x5f,0x1a,0x14,0x1a,0x14,0x1a,0x10,0x3f,0x00,0x1f,0x00,0x7f,0x00,0xfe,0x98,0x86,0xfd,0xd4,0xa4,0xd4,0xa4,0xd4,0x08,0xfe,0x80,0xfc,0x88,0xff,0x00 -+// 29886 璾 ; -+,0x00,0x03,0x7c,0x10,0x17,0x12,0x7e,0x12,0x14,0x11,0x19,0x61,0x01,0x02,0x04,0x08,0x20,0xff,0x88,0x52,0xd4,0xaa,0xaa,0xad,0xa8,0xfc,0x04,0xfc,0x04,0x04,0x04,0x04 -+// 29887 璿 ; -+,0x00,0x00,0x7c,0x13,0x12,0x15,0x10,0x7d,0x12,0x11,0x12,0x14,0x18,0x60,0x00,0x00,0x20,0x3c,0x20,0xff,0x01,0xfc,0xa4,0x52,0x89,0xfc,0x87,0xfc,0x84,0xfc,0x84,0xfc -+// 29888 瓀 ; -+,0x01,0x7c,0x13,0x12,0x15,0x10,0x7d,0x10,0x13,0x10,0x17,0x1a,0x62,0x02,0x02,0x02,0xfe,0x20,0xff,0x21,0xac,0x20,0xac,0x00,0xff,0x40,0xfe,0x52,0x52,0x52,0x4a,0x04 -+// 29889 瓁 ; -+,0x00,0x7b,0x10,0x11,0x11,0x7b,0x15,0x11,0x11,0x15,0x19,0x60,0x00,0x00,0x00,0x07,0x88,0xff,0xa8,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfc,0x48,0x30,0xcf,0x02 -+// 29890 瓂 ; -+,0x00,0x00,0x7f,0x10,0x11,0x10,0x7f,0x10,0x10,0x11,0x14,0x19,0x61,0x01,0x03,0x00,0x88,0x88,0xff,0xa8,0xfc,0x20,0xff,0x50,0x88,0xfc,0x04,0xfe,0x52,0x52,0xff,0x00 -+// 29891 瓃 ; -+,0x01,0x7d,0x11,0x11,0x11,0x11,0x7c,0x17,0x15,0x15,0x1f,0x65,0x05,0x07,0x04,0x00,0xfc,0x24,0x24,0xfc,0x24,0xfc,0x00,0xdf,0x55,0x55,0xdf,0x55,0x55,0xdf,0x51,0x00 -+// 29892 瓄 ; -+,0x00,0x3d,0x08,0x08,0x08,0x09,0x3d,0x09,0x08,0x08,0x0a,0x0c,0x30,0x00,0x00,0x00,0x10,0xff,0x10,0xfe,0x00,0xff,0x49,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 29893 瓅 ; -+,0x01,0x79,0x12,0x13,0x11,0x12,0x7b,0x10,0x10,0x13,0x14,0x18,0x61,0x06,0x18,0x00,0x24,0x24,0xf9,0x56,0x72,0x55,0xdf,0x71,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 29894 瓆 ; -+,0x00,0x01,0x7d,0x11,0x11,0x12,0x7d,0x11,0x11,0x11,0x15,0x19,0x61,0x00,0x00,0x01,0x66,0x98,0x10,0xdf,0x52,0x62,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x48,0x84,0x02 -+// 29895 瓇 ; -+,0x03,0x7c,0x10,0x10,0x10,0x10,0x7d,0x12,0x11,0x11,0x14,0x18,0x61,0x02,0x00,0x07,0xff,0x20,0xfc,0x84,0xfc,0x84,0xff,0x21,0x56,0x3a,0x44,0xfc,0x88,0x78,0xcf,0x02 -+// 29896 瓈 ; -+,0x00,0x03,0x7c,0x13,0x11,0x12,0x7c,0x10,0x10,0x14,0x19,0x66,0x00,0x01,0x02,0x00,0x50,0x90,0x9e,0xea,0x8a,0xd2,0xaa,0xa4,0x50,0xc8,0x27,0xaa,0x70,0xae,0xa4,0x40 -+// 29897 瓉 ; -+,0x01,0x7f,0x11,0x17,0x11,0x12,0x7b,0x15,0x11,0x11,0x15,0x19,0x61,0x00,0x01,0x02,0x08,0xde,0x08,0xff,0x14,0xa2,0xfd,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04,0x02 -+// 29898 瓊 ; -+,0x00,0x7c,0x11,0x11,0x11,0x10,0x7c,0x10,0x10,0x10,0x14,0x18,0x60,0x01,0x00,0x03,0x78,0x88,0xff,0x11,0x2b,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7e,0xc4,0x38,0x6c,0x83 -+// 29899 瓋 ; -+,0x00,0x00,0x7d,0x12,0x12,0x10,0x7e,0x12,0x12,0x12,0x16,0x1a,0x62,0x05,0x08,0x00,0x20,0x10,0xff,0x44,0x28,0xfe,0xaa,0xc6,0xba,0xaa,0xba,0x82,0x0a,0x84,0x7f,0x02 -+// 29900 瓌 ; -+,0x00,0x01,0x7c,0x11,0x11,0x11,0x7d,0x10,0x10,0x10,0x15,0x18,0x63,0x0c,0x00,0x00,0x20,0xff,0x00,0xfe,0x52,0xfe,0x24,0xa8,0x64,0xa2,0x62,0xd4,0x88,0xa4,0xc7,0x82 -+// 29901 瓍 ; -+,0x00,0x7f,0x12,0x13,0x12,0x12,0x7e,0x13,0x12,0x12,0x16,0x1a,0x62,0x02,0x02,0x02,0x08,0xbf,0x90,0x5e,0xa4,0xaf,0x80,0xde,0x52,0x5e,0x52,0x5e,0x52,0xb2,0x0f,0x02 -+// 29902 瓎 ; -+,0x01,0x7d,0x17,0x11,0x17,0x15,0x7d,0x15,0x17,0x11,0x15,0x1b,0x65,0x09,0x01,0x00,0x08,0x0e,0xca,0x14,0xfe,0x52,0x5e,0x52,0xde,0x12,0x9e,0x52,0x48,0x12,0x11,0x21 -+// 29903 瓏 ; -+,0x01,0x00,0x7b,0x11,0x11,0x13,0x78,0x13,0x12,0x13,0x12,0x1b,0x62,0x02,0x02,0x00,0x08,0x88,0xef,0x48,0x4e,0xe2,0x0e,0xe8,0x2e,0xe8,0x2e,0xe8,0x2e,0xa9,0x47,0x00 -+// 29904 瓐 ; -+,0x00,0x00,0x7c,0x11,0x11,0x11,0x7d,0x11,0x11,0x11,0x15,0x1a,0x62,0x04,0x09,0x00,0x20,0x3c,0x20,0xff,0x3d,0xe2,0x3e,0x54,0x7c,0x54,0x7c,0x00,0xfe,0xaa,0xff,0x00 -+// 29905 瓑 ; -+,0x00,0x7f,0x12,0x12,0x12,0x13,0x7e,0x13,0x12,0x12,0x16,0x1a,0x64,0x04,0x0b,0x10,0x00,0xff,0x00,0xee,0x44,0xff,0xee,0x55,0x44,0x10,0x90,0x9e,0x90,0x90,0xff,0x00 -+// 29906 瓒 ; -+,0x02,0x7b,0x12,0x17,0x11,0x7e,0x12,0x15,0x11,0x15,0x19,0x61,0x01,0x00,0x03,0x0c,0x94,0xdf,0x94,0xff,0x8c,0xd5,0xa3,0xfe,0x04,0x24,0x24,0x24,0x54,0x88,0x04,0x02 -+// 29907 瓓 ; -+,0x03,0x7a,0x13,0x12,0x13,0x12,0x7a,0x12,0x12,0x12,0x16,0x1a,0x62,0x03,0x02,0x02,0xcf,0x49,0xcf,0x49,0xcf,0x21,0xfd,0x21,0xfd,0xa5,0xfd,0x71,0xa9,0x25,0x25,0x02 -+// 29908 瓔 ; -+,0x03,0x7e,0x13,0x12,0x13,0x12,0x7f,0x11,0x12,0x13,0x14,0x18,0x60,0x00,0x03,0x00,0xde,0x52,0xde,0x52,0xde,0x52,0xde,0x4a,0x22,0xff,0x44,0xc8,0x30,0x6c,0x82,0x00 -+// 29909 瓕 ; -+,0x00,0x3f,0x04,0x3d,0x23,0x3d,0x05,0x05,0x15,0x09,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x00,0xff,0xac,0x23,0xfe,0x76,0xaa,0x76,0xaa,0x04,0xfe,0x80,0xfc,0x88,0xff,0x00 -+// 29910 瓖 ; -+,0x00,0x03,0x7c,0x11,0x11,0x11,0x3c,0x11,0x10,0x11,0x14,0x1b,0x61,0x06,0x18,0x00,0x20,0xff,0x00,0xde,0x52,0xde,0x48,0xfe,0x48,0xfe,0x48,0xff,0x88,0xa4,0xc7,0x82 -+// 29911 瓗 ; -+,0x00,0x01,0x7d,0x10,0x11,0x12,0x7c,0x10,0x10,0x14,0x19,0x61,0x01,0x01,0x01,0x01,0x10,0x11,0xff,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x80,0xff,0x45,0xab,0x39,0x05,0x02 -+// 29912 瓘 ; -+,0x00,0x03,0x7c,0x11,0x11,0x11,0x7c,0x11,0x13,0x15,0x11,0x19,0x61,0x01,0x01,0x00,0x44,0xff,0x44,0xce,0x4a,0xee,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0x00 -+// 29913 瓙 ; -+,0x00,0x03,0x7c,0x11,0x10,0x13,0x3c,0x11,0x10,0x11,0x15,0x19,0x60,0x02,0x02,0x04,0x20,0xff,0x20,0xfc,0x00,0xff,0x21,0xfe,0x04,0xff,0x54,0xd4,0x08,0x92,0x49,0x49 -+// 29914 瓚 ; -+,0x02,0x7b,0x12,0x17,0x12,0x7e,0x12,0x15,0x11,0x11,0x15,0x19,0x61,0x01,0x00,0x01,0x94,0xde,0xa4,0xff,0x94,0xd5,0xa3,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04 -+// 29915 瓛 ; -+,0x01,0x01,0x71,0x2f,0x29,0x2f,0x79,0x28,0x2f,0x2a,0x2b,0x38,0x4f,0x16,0x15,0x25,0x08,0xc8,0x0a,0xe9,0x28,0x5f,0xc8,0x08,0xcc,0x94,0x94,0x12,0xd2,0xd2,0x63,0x62 -+// 29916 瓜 ; -+,0x00,0x00,0x0f,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x21,0x40,0x08,0xfc,0x20,0x20,0x20,0x10,0x10,0x10,0x10,0x08,0x48,0x28,0x54,0x94,0x03,0x02 -+// 29917 瓝 ; -+,0x00,0x03,0x1d,0x15,0x15,0x15,0x15,0x15,0x15,0x14,0x16,0x25,0x25,0x26,0x44,0x00,0x20,0xa0,0x20,0x3e,0x42,0x42,0xa2,0x12,0x12,0x82,0x82,0x4a,0xa4,0x98,0x07,0x02 -+// 29918 瓞 ; -+,0x00,0x03,0x1d,0x15,0x15,0x15,0x15,0x15,0x15,0x14,0x14,0x25,0x25,0x26,0x24,0x40,0x00,0x90,0x10,0x50,0x7e,0x90,0xff,0x18,0x24,0xc2,0x82,0x40,0x20,0x98,0x87,0x02 -+// 29919 瓟 ; -+,0x00,0x07,0x3a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x29,0x29,0x2a,0x2b,0x2d,0x28,0x40,0x40,0x40,0x7e,0x82,0x7a,0x4a,0x6a,0x52,0x4d,0x41,0x3f,0x80,0x40,0x30,0x0f,0x02 -+// 29920 瓠 ; -+,0x08,0x08,0x7f,0x14,0x22,0x3f,0x00,0x7f,0x10,0x10,0x1e,0x02,0x02,0x15,0x0a,0x00,0x0e,0x74,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x52,0x92,0x9a,0x17,0x02,0x00 -+// 29921 瓡 ; -+,0x08,0x08,0x3e,0x08,0x7f,0x00,0x22,0x14,0x7f,0x08,0x08,0x7f,0x08,0x09,0x09,0x0a,0x0e,0x74,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x92,0x92,0x9a,0x16,0x03,0x02 -+// 29922 瓢 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x7f,0x00,0x3e,0x00,0x7f,0x2a,0x48,0x29,0x12,0x00,0x0e,0x74,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x52,0x5a,0x92,0x9e,0x13,0x02 -+// 29923 瓣 ; -+,0x20,0x10,0x7d,0x0a,0x2a,0x0a,0x7e,0x12,0x12,0x3a,0x12,0x12,0x24,0x24,0x48,0x00,0x08,0x64,0x9f,0xc2,0xca,0xca,0xbf,0xa4,0xa4,0xbf,0xa4,0x94,0xd4,0x8c,0x04,0x00 -+// 29924 瓤 ; -+,0x08,0x7f,0x29,0x3b,0x12,0x3f,0x12,0x3f,0x12,0x7f,0x14,0x35,0x52,0x18,0x11,0x02,0x00,0x8e,0x74,0x54,0x54,0x54,0x54,0x54,0x54,0xd4,0x54,0x52,0x92,0x9e,0x13,0x02 -+// 29925 瓥 ; -+,0x00,0x3e,0x28,0x2c,0x2a,0x2a,0x2d,0x29,0x40,0x48,0x3f,0x29,0x3f,0x0a,0x7f,0x01,0x00,0xff,0x22,0xd4,0x18,0x6c,0x9b,0x68,0x28,0x10,0x7e,0x52,0x7e,0x12,0x7f,0x01 -+// 29926 瓦 ; -+,0x00,0x7f,0x04,0x04,0x04,0x07,0x04,0x06,0x05,0x05,0x04,0x08,0x09,0x0a,0x0c,0x08,0x00,0xff,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x90,0x90,0x21,0x21,0x21,0x1f,0x00 -+// 29927 瓧 ; -+,0x00,0x7f,0x10,0x10,0x1f,0x11,0x11,0x11,0x19,0x15,0x11,0x11,0x15,0x19,0x10,0x00,0x00,0x90,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x01,0xff,0x00 -+// 29928 瓨 ; -+,0x00,0x01,0x3e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0x38,0x00,0x00,0x00,0x00,0x00,0xfe,0x40,0x40,0x40,0x78,0x48,0x48,0xa8,0xa8,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 29929 瓩 ; -+,0x00,0x7f,0x10,0x10,0x1f,0x11,0x11,0x19,0x15,0x15,0x11,0x21,0x29,0x31,0x20,0x00,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x11,0x01,0xff,0x00 -+// 29930 瓪 ; -+,0x00,0x7f,0x10,0x10,0x1f,0x12,0x12,0x1a,0x12,0x12,0x22,0x23,0x2a,0x32,0x21,0x00,0x02,0x8f,0x70,0x40,0x7e,0x42,0x64,0x54,0x48,0x8c,0x92,0x22,0x41,0x01,0xff,0x00 -+// 29931 瓫 ; -+,0x00,0x02,0x04,0x1b,0x61,0x06,0x18,0x3f,0x04,0x07,0x05,0x04,0x08,0x0b,0x0c,0x00,0x20,0x10,0x08,0xf4,0x13,0x50,0x20,0xff,0x00,0xf0,0x10,0x90,0x51,0x11,0x0f,0x00 -+// 29932 瓬 ; -+,0x10,0x09,0x08,0x7f,0x10,0x10,0x1c,0x14,0x14,0x14,0x24,0x24,0x24,0x54,0x48,0x00,0x00,0xfe,0x40,0x40,0x40,0x78,0x48,0x88,0xa8,0xa8,0x88,0x89,0xa9,0xc9,0x87,0x00 -+// 29933 瓭 ; -+,0x08,0x09,0x08,0x3f,0x29,0x48,0x08,0x14,0x14,0x14,0x14,0x25,0x26,0x24,0x40,0x00,0x00,0xff,0x20,0x20,0x3c,0x24,0x24,0x44,0x54,0x54,0x44,0x45,0x55,0x65,0x43,0x00 -+// 29934 瓮 ; -+,0x00,0x02,0x04,0x09,0x32,0x67,0x00,0x7f,0x04,0x07,0x04,0x05,0x08,0x0a,0x0c,0x08,0x00,0x40,0x20,0x18,0x47,0xe2,0x10,0xff,0x00,0xf0,0x10,0x10,0x90,0xd1,0x51,0x0f -+// 29935 瓯 ; -+,0x00,0x3f,0x20,0x22,0x32,0x2a,0x24,0x24,0x2a,0x29,0x31,0x20,0x20,0x3f,0x00,0x00,0x00,0x7f,0x20,0x20,0x20,0x3c,0x24,0x24,0x54,0x54,0x44,0x45,0x55,0x65,0x43,0x00 -+// 29936 瓰 ; -+,0x00,0x7f,0x10,0x10,0x1e,0x12,0x13,0x1a,0x16,0x12,0x12,0x22,0x2a,0x32,0x21,0x00,0x10,0x10,0x08,0x48,0x44,0x83,0x7c,0x24,0x24,0x24,0x44,0x54,0x89,0x01,0xff,0x00 -+// 29937 瓱 ; -+,0x00,0x7f,0x10,0x10,0x1e,0x12,0x12,0x1a,0x17,0x12,0x22,0x22,0x2a,0x32,0x21,0x00,0x00,0x1c,0xe0,0x20,0x3c,0xe0,0x20,0x3e,0xe0,0x20,0x22,0x1e,0x01,0x01,0xff,0x00 -+// 29938 瓲 ; -+,0x00,0x7e,0x10,0x11,0x1e,0x12,0x12,0x12,0x1a,0x16,0x22,0x22,0x2a,0x32,0x21,0x00,0x20,0x20,0x20,0xfe,0x20,0xa4,0xa4,0xa4,0xfc,0x20,0x22,0x22,0x1f,0x01,0xff,0x00 -+// 29939 瓳 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0xff,0x20,0x20,0x3c,0x24,0x44,0x64,0x54,0x54,0x44,0x45,0x55,0x65,0x43,0x00 -+// 29940 瓴 ; -+,0x08,0x08,0x0c,0x12,0x21,0x48,0x04,0x04,0x3f,0x02,0x14,0x08,0x0c,0x04,0x00,0x00,0x00,0xff,0x20,0x20,0x3c,0xa4,0x24,0x24,0x54,0x54,0x44,0x44,0x55,0x65,0x43,0x00 -+// 29941 瓵 ; -+,0x10,0x11,0x10,0x24,0x24,0x22,0x7e,0x02,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xfe,0x40,0x40,0x40,0x7c,0x44,0x64,0x54,0x54,0x44,0x44,0x44,0x55,0x65,0x43 -+// 29942 瓶 ; -+,0x01,0x11,0x0a,0x3f,0x0a,0x0a,0x0a,0x0a,0x7f,0x0a,0x0a,0x12,0x12,0x12,0x22,0x42,0x00,0x7f,0x20,0xa0,0x3c,0x24,0x24,0x24,0xa4,0x54,0x54,0x44,0x45,0x55,0x65,0x43 -+// 29943 瓷 ; -+,0x20,0x18,0x0a,0x05,0x0a,0x38,0x08,0x09,0x7f,0x04,0x07,0x05,0x04,0x08,0x0b,0x0c,0x80,0xfe,0xa2,0x20,0x20,0x58,0x87,0x02,0xff,0x00,0xf0,0x10,0x90,0x91,0x11,0x0f -+// 29944 瓸 ; -+,0x00,0x7f,0x10,0x10,0x1f,0x11,0x11,0x19,0x15,0x15,0x21,0x21,0x29,0x31,0x20,0x00,0x00,0xff,0x10,0x10,0x7c,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x01,0x01,0xff,0x00 -+// 29945 瓹 ; -+,0x00,0x3e,0x22,0x3e,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x22,0x2a,0x24,0x00,0x00,0xff,0x20,0x20,0x3c,0x24,0x44,0x64,0x54,0x54,0x44,0x45,0x55,0x65,0x43,0x00 -+// 29946 瓺 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x7f,0x08,0x0a,0x12,0x3f,0x11,0x00,0x00,0x00,0x7f,0x20,0x20,0x3c,0x24,0x24,0x34,0xcc,0x44,0x44,0x45,0x55,0x65,0x43,0x00 -+// 29947 瓻 ; -+,0x00,0x12,0x0c,0x12,0x28,0x7f,0x10,0x14,0x3f,0x55,0x15,0x15,0x17,0x04,0x04,0x04,0x00,0xff,0x20,0x20,0x3c,0xa4,0x24,0x34,0x2c,0x24,0x44,0x44,0x55,0x65,0x43,0x00 -+// 29948 瓼 ; -+,0x00,0x7f,0x10,0x10,0x1e,0x12,0x12,0x1a,0x16,0x12,0x22,0x22,0x2a,0x32,0x21,0x00,0x00,0x7e,0x52,0x52,0x7e,0x52,0x52,0x7e,0x10,0x7e,0x10,0xfe,0x01,0x01,0xff,0x00 -+// 29949 瓽 ; -+,0x00,0x04,0x02,0x1f,0x10,0x27,0x04,0x07,0x00,0x3f,0x04,0x07,0x04,0x04,0x05,0x06,0x80,0x98,0xa0,0xff,0x01,0xfa,0x08,0xf8,0x00,0xff,0x00,0xf0,0x10,0x91,0x4d,0x03 -+// 29950 瓾 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x24,0x44,0x08,0x7f,0x12,0x1a,0x06,0x19,0x60,0x00,0x00,0xff,0x20,0xa0,0x3c,0x24,0xa4,0x34,0x2c,0xa4,0x44,0x45,0x55,0x65,0x43,0x00 -+// 29951 瓿 ; -+,0x08,0x04,0x3f,0x00,0x11,0x0a,0x3f,0x00,0x1f,0x11,0x11,0x11,0x11,0x1f,0x11,0x00,0x00,0xff,0xa0,0x20,0x3c,0x24,0xa4,0x34,0x2c,0x44,0x44,0x44,0x55,0x65,0x43,0x00 -+// 29952 甀 ; -+,0x00,0x3f,0x04,0x3f,0x15,0x15,0x7f,0x15,0x15,0x15,0x3f,0x04,0x04,0x07,0x38,0x00,0x00,0x7f,0x20,0xa0,0x20,0x3c,0xe4,0x24,0x34,0x2c,0xc4,0x44,0x55,0x65,0x43,0x00 -+// 29953 甁 ; -+,0x21,0x11,0x12,0x7f,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x00,0x00,0xff,0x20,0xa0,0x20,0x3c,0x44,0x44,0x64,0x54,0x54,0x44,0x55,0x65,0x43,0x00 -+// 29954 甂 ; -+,0x08,0x04,0x3f,0x20,0x3f,0x20,0x20,0x3f,0x2a,0x3f,0x2a,0x2a,0x2a,0x2a,0x41,0x00,0x00,0x7f,0x90,0x90,0x9c,0x14,0x24,0xb4,0xac,0xa4,0xa4,0xa4,0xa5,0xb5,0x23,0x00 -+// 29955 甃 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x65,0x00,0x3f,0x04,0x07,0x05,0x04,0x08,0x0b,0x0c,0x10,0x14,0x52,0x34,0xa8,0x24,0x43,0x80,0xff,0x00,0xf0,0x10,0xd0,0x51,0x11,0x0f -+// 29956 甄 ; -+,0x00,0x7f,0x0a,0x3f,0x2a,0x2a,0x2a,0x3f,0x04,0x04,0x3f,0x04,0x04,0x07,0x78,0x20,0x00,0xff,0x20,0xa0,0xbc,0xa4,0xa4,0xa4,0x34,0x2c,0x44,0x44,0x45,0x55,0x65,0x43 -+// 29957 甅 ; -+,0x00,0x7f,0x11,0x11,0x1d,0x25,0x25,0x35,0x2d,0x25,0x25,0x25,0x2e,0x34,0x23,0x00,0x00,0xfe,0x00,0x7c,0x54,0x7c,0x54,0x7c,0x10,0x7c,0x10,0x7c,0x01,0x01,0xff,0x00 -+// 29958 甆 ; -+,0x04,0x02,0x3f,0x04,0x09,0x1e,0x09,0x1f,0x01,0x3f,0x04,0x07,0x05,0x08,0x0b,0x0c,0x10,0x20,0xff,0x10,0x24,0x78,0x12,0x3e,0x02,0xff,0x00,0xf0,0x10,0xd1,0x51,0x0f -+// 29959 甇 ; -+,0x04,0x04,0x17,0x14,0x2a,0x11,0x3f,0x20,0x5f,0x02,0x03,0x05,0x04,0x04,0x0b,0x0c,0x10,0x10,0x5e,0x50,0x28,0x44,0xff,0x01,0xfe,0x00,0xf0,0x10,0xd0,0x51,0x11,0x0f -+// 29960 甈 ; -+,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x04,0x7f,0x0e,0x15,0x15,0x24,0x44,0x04,0x00,0xff,0x20,0x20,0x3c,0x24,0x24,0x24,0x54,0x54,0x44,0x44,0x45,0x55,0x65,0x43 -+// 29961 甉 ; -+,0x21,0x12,0x7f,0x0a,0x3f,0x0a,0x3f,0x0a,0x3f,0x1a,0x1b,0x2a,0x4a,0x0a,0x0a,0x0a,0x00,0x7f,0x90,0x10,0xbc,0xa4,0xe4,0xb4,0xac,0x24,0x24,0xa4,0x45,0x55,0x65,0x43 -+// 29962 甊 ; -+,0x04,0x3f,0x25,0x7f,0x25,0x3f,0x04,0x3f,0x24,0x3f,0x08,0x7f,0x12,0x0c,0x1b,0x61,0x00,0x7f,0x10,0xd0,0x1e,0x12,0x22,0xb2,0xaa,0xaa,0x24,0xa4,0x45,0x55,0x65,0x43 -+// 29963 甋 ; -+,0x04,0x3f,0x11,0x0a,0x3f,0x24,0x24,0x3f,0x24,0x2e,0x2a,0x2a,0x2e,0x20,0x22,0x21,0x00,0xbf,0x10,0x10,0x9c,0x94,0xa4,0xb4,0xac,0xa4,0xa4,0xa4,0xa5,0xad,0xb5,0x23 -+// 29964 甌 ; -+,0x00,0x7f,0x40,0x4f,0x49,0x4f,0x40,0x7b,0x6a,0x6a,0x6a,0x7b,0x40,0x7f,0x00,0x00,0x00,0xff,0x10,0x10,0x1c,0x24,0x24,0xb4,0xac,0xa4,0xa4,0xa5,0x2d,0xb5,0x27,0x00 -+// 29965 甍 ; -+,0x02,0x7f,0x02,0x0f,0x09,0x0f,0x00,0x3f,0x20,0x5f,0x04,0x07,0x09,0x08,0x0b,0x0c,0x20,0xff,0x20,0xfc,0x24,0xfc,0x00,0xff,0x01,0xfc,0x00,0xe0,0x20,0xa2,0x22,0x1e -+// 29966 甎 ; -+,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x05,0x7f,0x02,0x7f,0x12,0x0a,0x0a,0x04,0x00,0xff,0x10,0x90,0x90,0x9c,0xa4,0xa4,0x34,0xac,0xa4,0xe4,0x25,0x25,0x35,0x23 -+// 29967 甏 ; -+,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x0a,0x3f,0x00,0x7f,0x04,0x07,0x09,0x08,0x0b,0x0c,0x06,0xb8,0xc3,0x0c,0x30,0xc3,0x0c,0x70,0x00,0xff,0x00,0xf0,0x10,0xd1,0x51,0x0f -+// 29968 甐 ; -+,0x04,0x25,0x16,0x3f,0x0e,0x15,0x64,0x11,0x39,0x2b,0x6d,0x17,0x11,0x21,0x21,0x41,0x00,0x7f,0x10,0x90,0x1c,0x94,0x94,0x14,0x24,0xb4,0x2c,0xa4,0x24,0x25,0x35,0x23 -+// 29969 甑 ; -+,0x02,0x22,0x14,0x7f,0x48,0x6a,0x5c,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0xff,0x20,0xa0,0xbc,0xa4,0xa4,0xa4,0x34,0x4c,0x44,0x44,0x45,0x55,0x65,0x43 -+// 29970 甒 ; -+,0x20,0x20,0x3f,0x2a,0x6a,0x2a,0x7f,0x2a,0x2a,0x2a,0x7f,0x00,0x55,0x4a,0x4a,0x00,0x00,0x00,0xff,0x90,0x90,0x9e,0xd2,0x92,0x92,0xaa,0xe4,0x24,0x25,0xa5,0xb5,0x23 -+// 29971 甓 ; -+,0x1f,0x11,0x1f,0x10,0x3f,0x52,0x1e,0x12,0x7f,0x04,0x07,0x04,0x04,0x04,0x05,0x06,0x10,0xfe,0x44,0x28,0xff,0x10,0xfe,0x10,0xff,0x00,0xf0,0x90,0x50,0x51,0x11,0x0f -+// 29972 甔 ; -+,0x10,0x1f,0x22,0x7f,0x2a,0x35,0x24,0x2f,0x20,0x2f,0x20,0x2f,0x29,0x29,0x4f,0x49,0x00,0x7f,0x10,0xd0,0x1e,0x22,0x22,0x22,0x32,0x2a,0x24,0x44,0x44,0x55,0x65,0x43 -+// 29973 甕 ; -+,0x00,0x7f,0x08,0x12,0x3c,0x11,0x3e,0x0c,0x30,0x7f,0x04,0x07,0x05,0x08,0x0b,0x0c,0x80,0xff,0x50,0x7f,0xc8,0x7e,0x48,0x7f,0x40,0xff,0x00,0xf0,0x10,0x91,0x51,0x0f -+// 29974 甖 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x0a,0x11,0x7f,0x04,0x07,0x05,0x04,0x08,0x0b,0x0c,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x28,0x44,0xff,0x00,0xf0,0x10,0x90,0x11,0x11,0x0f -+// 29975 甗 ; -+,0x04,0x07,0x04,0x3f,0x27,0x3c,0x27,0x29,0x2f,0x20,0x3f,0x3a,0x37,0x54,0x57,0x11,0x00,0xff,0x10,0xd0,0x10,0x9e,0x92,0x22,0x32,0x2a,0xa2,0xa4,0xa4,0xa5,0xb5,0x23 -+// 29976 甘 ; -+,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x07,0x04,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0xf0,0x10 -+// 29977 甙 ; -+,0x00,0x00,0x00,0x7f,0x11,0x11,0x11,0x3f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x00,0x28,0x24,0x24,0xff,0x20,0x20,0x20,0xa0,0x20,0x10,0x10,0x10,0x09,0x09,0x05,0x03 -+// 29978 甚 ; -+,0x04,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x04,0x7f,0x08,0x08,0x09,0x0a,0x0f,0x00,0x10,0x10,0xff,0x10,0xf0,0x10,0xf0,0x10,0x10,0xff,0x00,0xa0,0x10,0x08,0xfc,0x00 -+// 29979 甛 ; -+,0x22,0x22,0x22,0x22,0x7f,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 29980 甜 ; -+,0x07,0x78,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 29981 甝 ; -+,0x04,0x07,0x04,0x3f,0x24,0x26,0x3c,0x27,0x20,0x27,0x25,0x25,0x25,0x29,0x48,0x50,0x24,0x24,0x24,0xa4,0xff,0x24,0xa4,0xbc,0x24,0x24,0x24,0x3c,0x25,0x01,0xff,0x00 -+// 29982 甞 ; -+,0x00,0x08,0x04,0x3f,0x20,0x47,0x04,0x07,0x00,0x04,0x7f,0x04,0x07,0x04,0x07,0x04,0x80,0x88,0x90,0xff,0x01,0xf2,0x10,0xf0,0x00,0x10,0xff,0x10,0xf0,0x10,0xf0,0x10 -+// 29983 生 ; -+,0x00,0x08,0x08,0x08,0x0f,0x10,0x10,0x20,0x4f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x40,0x60,0x40,0x44,0xfe,0x40,0x40,0x44,0xfe,0x40,0x40,0x40,0x40,0x42,0xff,0x00 -+// 29984 甠 ; -+,0x00,0x00,0x3c,0x24,0x24,0x24,0x25,0x3d,0x26,0x24,0x24,0x24,0x3c,0x24,0x03,0x00,0x10,0x10,0x10,0x90,0x92,0xff,0x10,0x10,0x14,0xfe,0x10,0x10,0x10,0x12,0xff,0x00 -+// 29985 甡 ; -+,0x04,0x04,0x24,0x24,0x3f,0x24,0x24,0x44,0x3f,0x04,0x04,0x04,0x07,0x79,0x20,0x00,0x08,0x08,0x48,0x48,0x7f,0x48,0x88,0x08,0x7e,0x08,0x08,0x08,0x0a,0xff,0x00,0x00 -+// 29986 產 ; -+,0x01,0x00,0x1f,0x03,0x00,0x07,0x1f,0x12,0x13,0x12,0x14,0x1b,0x10,0x20,0x2f,0x40,0x00,0x84,0xfe,0x18,0xe0,0x18,0xff,0x40,0xfc,0x40,0x48,0xfc,0x40,0x42,0xff,0x00 -+// 29987 産 ; -+,0x00,0x00,0x1f,0x02,0x01,0x1f,0x12,0x12,0x13,0x14,0x18,0x13,0x20,0x20,0x5f,0x00,0x80,0x40,0xff,0x08,0x10,0xfe,0x40,0x40,0xfc,0x40,0x40,0xfc,0x40,0x42,0xff,0x00 -+// 29988 甤 ; -+,0x00,0x3f,0x08,0x08,0x11,0x29,0x4a,0x14,0x26,0x4d,0x15,0x24,0x44,0x04,0x28,0x10,0x08,0x08,0x48,0x48,0x7f,0x88,0x08,0x7f,0x08,0x08,0x7f,0x80,0x60,0x30,0x0f,0x02 -+// 29989 甥 ; -+,0x04,0x04,0x24,0x24,0x3f,0x24,0x44,0x3f,0x04,0x04,0x04,0x07,0x7c,0x20,0x00,0x01,0x7e,0x52,0x52,0x7e,0x52,0x52,0x7e,0x10,0xfe,0x12,0x12,0x22,0x22,0x42,0x8a,0x04 -+// 29990 甦 ; -+,0x00,0x7f,0x04,0x3f,0x24,0x24,0x3f,0x24,0x24,0x3f,0x08,0x28,0x18,0x17,0x20,0x40,0x08,0xc8,0x28,0xa8,0xbf,0xc8,0x88,0xbe,0x88,0x88,0x0a,0x7f,0x00,0x00,0xff,0x02 -+// 29991 甧 ; -+,0x04,0x24,0x3f,0x44,0x3f,0x04,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x10,0x50,0x7e,0x90,0x7e,0x10,0x7f,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 29992 用 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0xfe,0x42,0x42,0x42,0xfe,0x42,0x42,0x42,0xfe,0x42,0x42,0x42,0x42,0x4a,0x44 -+// 29993 甩 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0x95,0x89,0x81,0x7f,0x00 -+// 29994 甪 ; -+,0x01,0x02,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x00,0xfe,0x42,0x42,0xfe,0x42,0x42,0x42,0xfe,0x42,0x42,0x42,0x42,0x4a,0x04 -+// 29995 甫 ; -+,0x00,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x90,0x88,0xff,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0x94,0x08 -+// 29996 甬 ; -+,0x1f,0x00,0x03,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0xfc,0x18,0x60,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0x94,0x08 -+// 29997 甭 ; -+,0x00,0x3f,0x00,0x07,0x78,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x20,0x20,0x40,0x02,0xff,0xc0,0xb0,0x8e,0x83,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x84,0x94,0x08 -+// 29998 甮 ; -+,0x08,0x0f,0x11,0x22,0x04,0x08,0x13,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x10,0x10,0x20,0x00,0xfc,0x24,0x24,0x44,0x94,0x08,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 29999 甯 ; -+,0x00,0x00,0x1f,0x12,0x2a,0x0a,0x11,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x80,0x40,0xff,0x82,0x4c,0x12,0xf0,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x08 -+// 30000 田 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x04,0x04,0x00 -+// 30001 由 ; -+,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x80,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 30002 甲 ; -+,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x80,0x80,0x80 -+// 30003 申 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x80,0x80,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x80,0x80,0x80,0x80 -+// 30004 甴 ; -+,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x80,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 30005 电 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x81,0x81,0x7f,0x00 -+// 30006 甶 ; -+,0x01,0x01,0x02,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 30007 男 ; -+,0x07,0x04,0x04,0x07,0x04,0x04,0x07,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x18,0x60,0xfc,0x44,0x44,0xfc,0x44,0x44,0xfc,0x80,0x80,0xfe,0x02,0x02,0x02,0x02,0x14,0x08 -+// 30008 甸 ; -+,0x08,0x08,0x0f,0x10,0x10,0x2f,0x48,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0xfa,0x8a,0x8a,0xfa,0x8a,0x8a,0xfa,0x0a,0x02,0x14,0x08 -+// 30009 甹 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x7f,0x04,0x07,0x00,0x00,0x00,0x00,0x80,0x80,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00,0xf8,0x08,0x08,0x50,0x20 -+// 30010 町 ; -+,0x00,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0x7f,0x41,0x40,0x00,0x00,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 30011 画 ; -+,0x00,0x7f,0x00,0x07,0x24,0x24,0x27,0x24,0x24,0x24,0x27,0x24,0x20,0x3f,0x20,0x00,0x00,0xff,0x00,0xf0,0x92,0x92,0xf2,0x92,0x92,0x92,0xf2,0x12,0x02,0xfe,0x02,0x00 -+// 30012 甼 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 30013 甽 ; -+,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x22,0x21,0x01,0x02,0x04,0x00,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x02,0x02,0x02 -+// 30014 甾 ; -+,0x04,0x08,0x11,0x22,0x11,0x08,0x08,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x42,0x84,0x08,0x10,0x08,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04,0x00 -+// 30015 甿 ; -+,0x00,0x00,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0x7f,0x41,0x40,0x00,0x00,0x10,0x08,0x08,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x7e,0x00,0x00 -+// 30016 畀 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x7f,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 30017 畁 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x7f,0x02,0x02,0x04,0x04,0x08,0x30,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 30018 畂 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x22,0x20,0x01,0x02,0x20,0x20,0x20,0x7c,0x48,0x48,0x88,0x08,0x18,0x14,0x24,0x24,0x42,0x83,0x02,0x00 -+// 30019 畃 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x49,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x40,0x7e,0x42,0x82,0x42,0x22,0x32,0x12,0x02,0x02,0x02,0x02,0x14,0x08 -+// 30020 畄 ; -+,0x02,0x21,0x11,0x08,0x0c,0x04,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x04,0x06,0x84,0x88,0x88,0x10,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x04 -+// 30021 畅 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x2a,0x09,0x0a,0x08,0x0b,0x08,0x00,0xfc,0x08,0x10,0x20,0x7f,0xa9,0x29,0x49,0x51,0x91,0x21,0x41,0x82,0x0a,0x04 -+// 30022 畆 ; -+,0x08,0x04,0x04,0x7f,0x00,0x3f,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x3f,0x20,0x00,0x00,0x08,0x0c,0xc8,0x08,0x88,0x90,0x90,0x90,0xa0,0xa4,0xa2,0xcf,0xf1,0x81,0x00 -+// 30023 畇 ; -+,0x00,0x00,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0x7f,0x41,0x40,0x00,0x00,0x20,0x30,0x20,0x3f,0x21,0x41,0x51,0x89,0x0b,0x05,0x19,0x71,0x21,0x01,0x0a,0x04 -+// 30024 畈 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x23,0x21,0x02,0x04,0x09,0x00,0x0e,0xf0,0x80,0x80,0xfe,0xa4,0xa4,0xa4,0xa8,0x98,0x18,0x24,0x44,0x83,0x02 -+// 30025 畉 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x22,0x00,0x01,0x02,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x48,0x44,0x84,0x03,0x02 -+// 30026 畊 ; -+,0x00,0x00,0x3e,0x2a,0x2b,0x2a,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x22,0x20,0x01,0x02,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 30027 畋 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x22,0x20,0x03,0x0c,0x20,0x20,0x20,0x42,0x7f,0x44,0x84,0x44,0x28,0x28,0x10,0x30,0x48,0x84,0x07,0x02 -+// 30028 界 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x01,0x02,0x0d,0x31,0x01,0x02,0x04,0x08,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xc4,0x20,0x18,0x27,0x22,0x20,0x20,0x20,0x20 -+// 30029 畍 ; -+,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x22,0x00,0x01,0x02,0x10,0x10,0x30,0x28,0x44,0x83,0x45,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 30030 畎 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x22,0x20,0x00,0x01,0x02,0x10,0x14,0x12,0x12,0x10,0xff,0x10,0x30,0x28,0x28,0x28,0x44,0x44,0x86,0x03,0x02 -+// 30031 畏 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x7f,0x09,0x08,0x08,0x08,0x08,0x0b,0x0c,0xf8,0x88,0x88,0xf8,0x88,0x88,0xf8,0x00,0xff,0x00,0x88,0x50,0x20,0x18,0x0f,0x02 -+// 30032 畐 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 30033 畑 ; -+,0x08,0x08,0x08,0x08,0x0a,0x2a,0x2c,0x28,0x48,0x08,0x18,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 30034 畒 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3f,0x29,0x29,0x3f,0x29,0x29,0x29,0x3f,0x21,0x21,0x02,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x28,0x28,0x28,0x24,0x44,0x44,0x82,0x03,0x02 -+// 30035 畓 ; -+,0x00,0x00,0x3e,0x04,0x04,0x08,0x12,0x21,0x4f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x84,0x88,0xd0,0xa0,0x90,0x8c,0x87,0x02,0xf8,0x88,0x88,0xf8,0x88,0x88,0xf8,0x08 -+// 30036 畔 ; -+,0x00,0x3f,0x2a,0x2a,0x2a,0x2b,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x22,0x00,0x00,0x00,0x10,0x12,0x93,0x52,0x54,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 30037 畕 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0xf8,0x88,0x88,0xf8,0x88,0x88,0xf8,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 30038 畖 ; -+,0x00,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x23,0x21,0x02,0x02,0x04,0x00,0x1e,0xe8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa4,0xa4,0x34,0x2a,0x32,0x23,0x02 -+// 30039 畗 ; -+,0x01,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x82,0xff,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 30040 畘 ; -+,0x00,0x00,0x7c,0x55,0x55,0x55,0x7d,0x55,0x55,0x57,0x55,0x7d,0x45,0x41,0x01,0x01,0x20,0x20,0x20,0xfc,0x24,0x24,0xfc,0x24,0x24,0xff,0x04,0x04,0x04,0x04,0x14,0x08 -+// 30041 留 ; -+,0x03,0x1c,0x10,0x14,0x12,0x15,0x19,0x10,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x7e,0x22,0x22,0x22,0x42,0x54,0x88,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 30042 畚 ; -+,0x01,0x02,0x04,0x0f,0x00,0x7f,0x02,0x04,0x0f,0x18,0x68,0x0f,0x08,0x08,0x0f,0x08,0x00,0x10,0x78,0x84,0x84,0xff,0x20,0x10,0xfc,0x8f,0x8a,0xf8,0x88,0x88,0xf8,0x08 -+// 30043 畛 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2b,0x3e,0x2a,0x2b,0x2a,0x2a,0x3f,0x22,0x20,0x01,0x0e,0x20,0x20,0x50,0x48,0x84,0x13,0x20,0x44,0x88,0x10,0x62,0x84,0x08,0x30,0xc0,0x00 -+// 30044 畜 ; -+,0x01,0x00,0x7f,0x01,0x06,0x1f,0x06,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x00,0x60,0x90,0x08,0xfc,0x04,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 30045 畝 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3e,0x2a,0x2b,0x3e,0x2a,0x2a,0x2a,0x3e,0x22,0x21,0x02,0x20,0x20,0x20,0x7c,0x48,0x88,0x88,0x08,0x14,0x14,0x24,0x24,0x42,0x83,0x02,0x00 -+// 30046 畞 ; -+,0x00,0x00,0x7f,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x22,0x22,0x00,0x00,0x80,0x80,0xff,0x90,0x90,0x9e,0xa4,0xa4,0xc8,0x8c,0x94,0x92,0xa2,0xc1,0x80,0x80 -+// 30047 畟 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x03,0x0c,0x32,0x47,0x1a,0x21,0x00,0x07,0x38,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x30,0x0c,0x06,0xfa,0x10,0x20,0xc0,0x30,0x0e -+// 30048 畠 ; -+,0x01,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x02 -+// 30049 畡 ; -+,0x00,0x00,0x3f,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x22,0x20,0x01,0x06,0x20,0x10,0xff,0x20,0x24,0x44,0xf8,0x08,0x12,0x24,0x48,0x98,0x24,0x42,0x82,0x00 -+// 30050 畢 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x08,0x08,0x7f,0x08,0x3f,0x00,0x7f,0x00,0x00,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x88,0x88,0xff,0x88,0xfe,0x80,0xff,0x80,0x80,0x80 -+// 30051 畣 ; -+,0x00,0x01,0x02,0x04,0x1b,0x60,0x07,0x04,0x07,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x80,0x40,0x20,0x18,0xf7,0x02,0xf8,0x08,0xf8,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x04 -+// 30052 畤 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x22,0x00,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x04,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x14,0x08 -+// 30053 略 ; -+,0x00,0x00,0x7c,0x54,0x55,0x56,0x7c,0x54,0x57,0x54,0x54,0x7c,0x44,0x00,0x00,0x00,0x40,0x40,0xfe,0x84,0x48,0x30,0x28,0xc4,0x03,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 30054 畦 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x22,0x20,0x01,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 30055 畧 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x14,0x07,0x0a,0x11,0x03,0x0c,0x77,0x04,0x04,0x07,0x04,0xfc,0x84,0xfc,0x84,0xfc,0x04,0xf8,0x30,0xc0,0x70,0x0f,0xfa,0x08,0x08,0xf8,0x08 -+// 30056 畨 ; -+,0x10,0x08,0x04,0x00,0x7f,0x02,0x04,0x18,0x6f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x88,0x88,0x90,0xa2,0xff,0xa0,0x98,0x87,0xfa,0x88,0x88,0xf8,0x88,0x88,0xf8,0x08 -+// 30057 畩 ; -+,0x00,0x00,0x7c,0x57,0x54,0x54,0x7c,0x54,0x54,0x55,0x56,0x7c,0x44,0x44,0x00,0x00,0x20,0x10,0x10,0xff,0x20,0x20,0x52,0x54,0xd8,0x50,0x48,0x48,0x44,0x54,0x63,0x42 -+// 30058 番 ; -+,0x00,0x1f,0x04,0x02,0x3f,0x01,0x06,0x18,0x6f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x7c,0x80,0x88,0x92,0xff,0xa0,0x90,0x8c,0xff,0x88,0x88,0xf8,0x88,0x88,0xf8,0x08 -+// 30059 畫 ; -+,0x00,0x0f,0x00,0x7f,0x00,0x0f,0x00,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 30060 畬 ; -+,0x00,0x01,0x02,0x04,0x1b,0x60,0x1f,0x06,0x18,0x60,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x80,0x40,0x20,0x18,0xe7,0x82,0xfc,0xb0,0x8c,0x86,0xfa,0x88,0xf8,0x88,0xf8,0x08 -+// 30061 畭 ; -+,0x00,0x3e,0x2a,0x2a,0x2a,0x2b,0x3e,0x2a,0x2b,0x2a,0x3e,0x22,0x21,0x02,0x00,0x00,0x10,0x10,0x28,0x44,0x82,0x7d,0x10,0x10,0xfe,0x10,0x94,0x92,0x11,0x11,0x50,0x20 -+// 30062 畮 ; -+,0x00,0x00,0x3e,0x2a,0x2b,0x2a,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x22,0x20,0x00,0x00,0x40,0x40,0x7e,0x80,0x00,0xfc,0xa4,0x94,0xff,0xa4,0x94,0x84,0xff,0x04,0x28,0x10 -+// 30063 畯 ; -+,0x00,0x00,0x7c,0x55,0x54,0x54,0x7c,0x55,0x56,0x54,0x55,0x7c,0x44,0x40,0x03,0x0c,0x20,0x48,0x84,0xfe,0x4a,0x44,0x82,0x41,0x7e,0xc4,0x48,0x28,0x30,0xcc,0x07,0x02 -+// 30064 異 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x06,0x08,0x10,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x08,0x0c,0x08 -+// 30065 畱 ; -+,0x00,0x7f,0x02,0x3e,0x22,0x3e,0x02,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0xff,0x20,0x3e,0x22,0x3e,0x20,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 30066 畲 ; -+,0x00,0x01,0x06,0x1b,0x60,0x1f,0x04,0x0a,0x11,0x2f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x80,0x40,0x30,0xec,0x03,0xfc,0x90,0x88,0x04,0xf8,0x88,0xf8,0x88,0x88,0xf8,0x08 -+// 30067 畳 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x20,0x47,0x04,0x07,0x04,0x07,0x04,0x3f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x01,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xff,0x00 -+// 30068 畴 ; -+,0x00,0x7c,0x57,0x54,0x54,0x55,0x7c,0x54,0x57,0x54,0x7d,0x45,0x02,0x04,0x08,0x10,0x20,0x20,0xfe,0x20,0x20,0xfe,0x40,0x40,0xff,0x84,0x7f,0x24,0x24,0x04,0x14,0x08 -+// 30069 畵 ; -+,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x3f,0x00,0x27,0x24,0x27,0x24,0x27,0x20,0x3f,0x80,0xfc,0x84,0xff,0x84,0xfc,0x80,0xfe,0x00,0xf2,0x92,0xf2,0x92,0xf2,0x02,0xfe -+// 30070 當 ; -+,0x08,0x04,0x3f,0x20,0x4f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x88,0x90,0xff,0x01,0xfa,0x08,0xf8,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 30071 畷 ; -+,0x00,0x01,0x7e,0x55,0x54,0x55,0x7e,0x55,0x56,0x55,0x54,0x7d,0x45,0x02,0x04,0x08,0x00,0xde,0x62,0x54,0x88,0x54,0x22,0xde,0x62,0x52,0x94,0x48,0x4c,0x53,0x22,0x40 -+// 30072 畸 ; -+,0x00,0x7c,0x55,0x54,0x54,0x55,0x7f,0x54,0x55,0x55,0x55,0x7d,0x45,0x40,0x00,0x00,0x20,0x20,0xfe,0x50,0x88,0x04,0xff,0x04,0xe4,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 30073 畹 ; -+,0x00,0x00,0x3e,0x2a,0x2b,0x2a,0x3e,0x2b,0x2a,0x2a,0x3e,0x22,0x20,0x01,0x02,0x04,0x20,0x10,0xff,0x81,0x42,0xee,0xaa,0x2a,0xaa,0xae,0x4a,0x49,0x89,0x09,0x07,0x00 -+// 30074 畺 ; -+,0x00,0x3f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0xfe,0x88,0xf8,0x88,0xf8,0x00,0xff,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xff -+// 30075 畻 ; -+,0x00,0x01,0x3e,0x2a,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2b,0x3e,0x22,0x20,0x01,0x00,0x10,0x12,0x92,0x54,0xfe,0x20,0xff,0x28,0x44,0x94,0x13,0xfe,0x10,0x12,0xff,0x00 -+// 30076 畼 ; -+,0x00,0x7c,0x54,0x54,0x54,0x54,0x7f,0x54,0x54,0x55,0x7e,0x44,0x41,0x02,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x2a,0x4a,0x92,0x22,0x44,0x94,0x08 -+// 30077 畽 ; -+,0x00,0x7d,0x54,0x55,0x54,0x54,0x7c,0x54,0x54,0x54,0x54,0x7d,0x44,0x40,0x03,0x00,0x0e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0xff,0x00 -+// 30078 畾 ; -+,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x41,0x00,0xf8,0x88,0xf8,0x88,0x88,0xf8,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x41,0x00 -+// 30079 畿 ; -+,0x08,0x08,0x12,0x3c,0x0a,0x1e,0x02,0x7f,0x00,0x3f,0x29,0x3f,0x29,0x3f,0x21,0x00,0x90,0x94,0xa4,0xf8,0x94,0xbe,0x82,0xff,0x44,0x44,0x48,0x30,0x21,0x51,0x8d,0x03 -+// 30080 疀 ; -+,0x00,0x2a,0x2a,0x54,0x2a,0x2a,0x00,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x43,0x01,0x02,0x10,0x10,0xfe,0x10,0xfc,0x14,0xff,0x14,0xfc,0x10,0x9e,0x90,0xd0,0x30,0x0f,0x02 -+// 30081 疁 ; -+,0x01,0x7c,0x55,0x54,0x55,0x7e,0x54,0x54,0x54,0x57,0x7c,0x47,0x40,0x03,0x00,0x07,0xde,0x42,0x4a,0xc6,0x4a,0x52,0x22,0x50,0x88,0x37,0xcc,0x32,0xcc,0x30,0xc0,0x00 -+// 30082 疂 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x02,0x04,0x3f,0x24,0x07,0x04,0x07,0x04,0x04,0x7f,0xf8,0x88,0xf8,0x88,0xf8,0x10,0x20,0x10,0xfe,0x12,0xf0,0x10,0xf0,0x10,0x10,0xff -+// 30083 疃 ; -+,0x00,0x00,0x7c,0x54,0x55,0x54,0x54,0x7c,0x54,0x54,0x54,0x54,0x7c,0x44,0x00,0x01,0x10,0xfe,0x44,0x28,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff -+// 30084 疄 ; -+,0x00,0x7c,0x54,0x55,0x54,0x54,0x7f,0x54,0x54,0x55,0x7f,0x44,0x40,0x01,0x02,0x04,0x10,0x92,0x54,0xff,0x38,0xd4,0x13,0x94,0xff,0x24,0x54,0xdf,0x84,0x04,0x04,0x04 -+// 30085 疅 ; -+,0x01,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x22,0x20,0x01,0x00,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x92,0xfe,0x92,0xfe,0x00,0xff,0x00 -+// 30086 疆 ; -+,0x7d,0x04,0x04,0x3c,0x20,0x20,0x3c,0x04,0x25,0x74,0x24,0x34,0x44,0x28,0x13,0x00,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x92,0xfe,0x92,0xfe,0x00,0xff,0x00 -+// 30087 疇 ; -+,0x00,0x7f,0x54,0x55,0x54,0x57,0x7c,0x55,0x54,0x57,0x54,0x7d,0x41,0x01,0x01,0x00,0x20,0xfe,0x20,0xfc,0x00,0xff,0x21,0xfc,0x00,0xff,0x02,0xdf,0x4a,0x42,0xca,0x04 -+// 30088 疈 ; -+,0x00,0x7f,0x00,0x3e,0x22,0x3f,0x01,0x3f,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x22,0x01,0x40,0x5f,0x40,0x5e,0x52,0x5e,0x40,0x5f,0x55,0x55,0x5f,0x95,0x95,0x9f,0x91,0x00 -+// 30089 疉 ; -+,0x0f,0x08,0x0f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x02,0x03,0x04,0x0f,0x00,0x7f,0x00,0xf8,0x88,0xf8,0x88,0x7f,0x49,0x7f,0x49,0xff,0x00,0xf0,0x10,0xe0,0x20,0xff,0x00 -+// 30090 疊 ; -+,0x0f,0x08,0x0f,0x08,0x1f,0x15,0x1f,0x15,0x3f,0x24,0x47,0x04,0x07,0x04,0x3f,0x00,0xf8,0x88,0xf8,0x88,0xfe,0x2a,0x3e,0x2a,0xff,0x09,0xfa,0x08,0xf8,0x08,0xff,0x00 -+// 30091 疋 ; -+,0x00,0x3f,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x14,0x12,0x11,0x20,0x20,0x40,0x00,0xfe,0x82,0x84,0x80,0x88,0xfc,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x00 -+// 30092 疌 ; -+,0x00,0x00,0x7f,0x00,0x0f,0x00,0x7f,0x00,0x0f,0x00,0x08,0x08,0x0c,0x13,0x10,0x20,0x80,0x82,0xff,0x80,0xfc,0x84,0xff,0x84,0xfc,0x80,0x80,0xfe,0x80,0x80,0x7f,0x02 -+// 30093 疍 ; -+,0x00,0x3f,0x00,0x08,0x08,0x0e,0x11,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0xfe,0x82,0x84,0xf8,0x80,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x02,0xff,0x00 -+// 30094 疎 ; -+,0x00,0x7e,0x03,0x04,0x08,0x28,0x28,0x2e,0x28,0x28,0x2e,0x38,0x61,0x02,0x04,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0x92,0xfe,0xb2,0x58,0x54,0x94,0x12,0x13,0x12,0x10 -+// 30095 疏 ; -+,0x00,0x7e,0x03,0x14,0x08,0x08,0x29,0x2e,0x28,0x28,0x28,0x2e,0x39,0x61,0x02,0x04,0x20,0x10,0xff,0x40,0x48,0x84,0xfe,0x02,0xa4,0xa4,0xa4,0xa4,0x25,0x25,0x25,0x03 -+// 30096 疐 ; -+,0x00,0x1f,0x00,0x3f,0x28,0x4f,0x08,0x0f,0x00,0x3f,0x00,0x08,0x0c,0x0b,0x10,0x20,0x80,0xfc,0x80,0xff,0x89,0xfa,0x88,0xf8,0x00,0xff,0x81,0xfa,0x80,0x80,0xff,0x02 -+// 30097 疑 ; -+,0x10,0x16,0x18,0x11,0x11,0x0e,0x20,0x3f,0x24,0x44,0x7f,0x0c,0x0a,0x10,0x21,0x42,0x00,0xfe,0x04,0x28,0x10,0xff,0x11,0x12,0x50,0x5e,0x50,0x50,0xb0,0x98,0x07,0x02 -+// 30098 疒 ; -+,0x00,0x00,0x07,0x44,0x24,0x24,0x04,0x0c,0x14,0x64,0x08,0x08,0x10,0x10,0x20,0x40,0x40,0x20,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 30099 疓 ; -+,0x00,0x00,0x0f,0x48,0x2b,0x28,0x08,0x18,0x28,0x48,0x08,0x09,0x11,0x12,0x24,0x48,0x80,0x40,0xff,0x00,0xfc,0x84,0x88,0x90,0x9e,0x82,0x82,0x02,0x02,0x04,0x14,0x08 -+// 30100 疔 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x28,0x18,0x28,0x48,0x08,0x10,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 30101 疕 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x29,0x19,0x29,0x49,0x11,0x11,0x11,0x21,0x20,0x40,0x80,0x42,0xff,0x00,0x00,0x00,0x04,0x0e,0x30,0xc0,0x00,0x00,0x01,0x01,0xff,0x00 -+// 30102 疖 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x28,0x08,0x18,0x28,0x48,0x08,0x10,0x10,0x20,0x40,0x80,0x40,0xff,0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0x54,0x48,0x40,0x40,0x40 -+// 30103 疗 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x28,0x18,0x28,0x48,0x08,0x10,0x10,0x20,0x20,0x40,0x80,0x42,0xff,0x00,0x00,0xfc,0x08,0x10,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 30104 疘 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x28,0x08,0x18,0x28,0x48,0x10,0x10,0x27,0x20,0x40,0x80,0x40,0xff,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 30105 疙 ; -+,0x00,0x00,0x0f,0x09,0x49,0x29,0x2a,0x0c,0x19,0x28,0x48,0x08,0x08,0x11,0x11,0x20,0x40,0x20,0xff,0x00,0x00,0xfe,0x00,0x00,0xf8,0x10,0x20,0x40,0x81,0x01,0xff,0x00 -+// 30106 疚 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x09,0x19,0x2a,0x4c,0x10,0x10,0x10,0x21,0x22,0x44,0x40,0x20,0xff,0x80,0x80,0xf8,0x10,0x10,0x10,0x20,0x20,0x50,0x88,0x04,0x07,0x02 -+// 30107 疛 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x0b,0x18,0x29,0x48,0x08,0x08,0x10,0x10,0x20,0x40,0x40,0x20,0xff,0x00,0x08,0x08,0xff,0x08,0x08,0x88,0xc8,0x88,0x08,0x08,0x28,0x10 -+// 30108 疜 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x08,0x08,0x18,0x28,0x48,0x08,0x10,0x10,0x20,0x40,0x40,0x20,0xff,0x00,0x00,0xff,0x20,0x20,0x28,0x24,0x26,0x22,0x20,0x20,0x20,0x20 -+// 30109 疝 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x0a,0x1a,0x2a,0x4a,0x0a,0x12,0x12,0x13,0x20,0x40,0x80,0x40,0xff,0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 30110 疞 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x08,0x18,0x2f,0x48,0x08,0x10,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x00,0x00,0xfc,0x00,0x00,0xff,0x80,0xfc,0x04,0x04,0x04,0x28,0x10 -+// 30111 疟 ; -+,0x00,0x00,0x0f,0x08,0x48,0x29,0x29,0x09,0x19,0x2f,0x51,0x11,0x11,0x21,0x21,0x40,0x40,0x20,0xff,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xfe,0x00,0x00 -+// 30112 疠 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x08,0x18,0x28,0x48,0x11,0x11,0x22,0x24,0x48,0x80,0x40,0xff,0x00,0x00,0xff,0x40,0x40,0x7c,0x84,0x84,0x04,0x04,0x08,0x28,0x10 -+// 30113 疡 ; -+,0x00,0x00,0x0f,0x48,0x2b,0x28,0x08,0x19,0x28,0x48,0x09,0x12,0x10,0x23,0x2c,0x40,0x80,0x40,0xfe,0x00,0xf8,0x30,0xc0,0xfe,0x4a,0x8a,0x12,0x22,0xc2,0x04,0x14,0x08 -+// 30114 疢 ; -+,0x00,0x00,0x0f,0x48,0x28,0x28,0x09,0x19,0x29,0x4a,0x08,0x08,0x10,0x11,0x26,0x58,0x40,0x20,0xff,0x20,0x20,0x22,0x22,0x24,0x28,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 30115 疣 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x2f,0x08,0x18,0x28,0x49,0x11,0x12,0x22,0x24,0x48,0x80,0x42,0xff,0x80,0x90,0x88,0xff,0xa0,0xa0,0xa0,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 30116 疤 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x2a,0x0a,0x1a,0x2b,0x4a,0x12,0x12,0x22,0x21,0x40,0x80,0x40,0xff,0x00,0x00,0xfe,0x22,0x22,0x22,0xfe,0x00,0x00,0x01,0x01,0xff,0x00 -+// 30117 疥 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x29,0x0e,0x18,0x28,0x48,0x08,0x11,0x11,0x22,0x44,0x80,0x40,0xff,0x20,0x50,0x88,0x06,0x8b,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 30118 疦 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x08,0x18,0x28,0x4f,0x08,0x08,0x11,0x12,0x24,0x48,0x80,0x40,0xff,0x40,0x40,0xfc,0x44,0x44,0x44,0xff,0x50,0x90,0x08,0x04,0x07,0x02 -+// 30119 疧 ; -+,0x00,0x00,0x1f,0x10,0x50,0x33,0x12,0x12,0x33,0x52,0x12,0x12,0x12,0x22,0x23,0x42,0x80,0x42,0xff,0x00,0x3c,0xe0,0x20,0x20,0xfe,0x20,0x10,0x10,0x49,0x85,0x03,0x01 -+// 30120 疨 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x29,0x1a,0x2b,0x48,0x08,0x10,0x11,0x22,0x24,0x40,0x40,0x20,0xff,0x00,0xfe,0x10,0x10,0x10,0xff,0x30,0x50,0x90,0x10,0x10,0x50,0x20 -+// 30121 疩 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x08,0x08,0x19,0x6a,0x28,0x0f,0x10,0x10,0x20,0x40,0x80,0x40,0xff,0x40,0x40,0xf8,0x89,0x89,0x07,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 30122 疪 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x29,0x09,0x19,0x29,0x49,0x09,0x11,0x11,0x21,0x40,0x80,0x40,0xff,0x00,0x10,0x10,0x12,0xd4,0x18,0x10,0x10,0x10,0x51,0x91,0x0f,0x00 -+// 30123 疫 ; -+,0x00,0x00,0x0f,0x08,0x09,0x49,0x29,0x2a,0x0c,0x19,0x69,0x09,0x10,0x10,0x21,0x46,0x80,0x40,0xfe,0x00,0xf0,0x10,0x10,0x0e,0x00,0xf0,0x10,0x10,0xa0,0x40,0xb0,0x0e -+// 30124 疬 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x09,0x19,0x29,0x49,0x0a,0x12,0x12,0x24,0x49,0x12,0x80,0x40,0xff,0x00,0xff,0x10,0x10,0xfe,0x22,0x22,0x22,0x42,0x42,0x82,0x14,0x08 -+// 30125 疭 ; -+,0x00,0x00,0x0f,0x49,0x29,0x29,0x09,0x19,0x29,0x4a,0x12,0x14,0x24,0x28,0x50,0x00,0x80,0x40,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x94,0x54,0x22,0x22,0x43,0x82,0x00 -+// 30126 疮 ; -+,0x00,0x00,0x0f,0x08,0x48,0x29,0x0a,0x1d,0x29,0x49,0x09,0x11,0x11,0x21,0x20,0x40,0x80,0x40,0xff,0x40,0xa0,0x10,0x0c,0xf7,0x12,0x10,0x50,0x20,0x02,0x02,0xfe,0x00 -+// 30127 疯 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2a,0x0a,0x1a,0x2a,0x52,0x14,0x15,0x24,0x28,0x50,0x80,0x40,0xff,0x00,0xfc,0x04,0x94,0x54,0x24,0x24,0x54,0x94,0x15,0x05,0x03,0x01 -+// 30128 疰 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x08,0x18,0x2b,0x48,0x10,0x10,0x10,0x2f,0x40,0x80,0x40,0xff,0x40,0x20,0xfe,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 30129 疱 ; -+,0x00,0x00,0x0f,0x09,0x49,0x2a,0x2b,0x0d,0x19,0x29,0x49,0x09,0x11,0x11,0x20,0x40,0x80,0x40,0xff,0x00,0xfe,0x02,0xf2,0x12,0x12,0xf2,0x14,0x08,0x01,0x01,0xff,0x00 -+// 30130 疲 ; -+,0x00,0x0f,0x08,0x08,0x4b,0x2a,0x0a,0x1b,0x2a,0x4a,0x12,0x12,0x14,0x24,0x29,0x56,0x40,0xff,0x20,0x20,0xfe,0x24,0x20,0xfc,0x84,0x88,0x48,0x30,0x30,0x48,0x87,0x02 -+// 30131 疳 ; -+,0x00,0x00,0x0f,0x09,0x49,0x29,0x2f,0x09,0x19,0x29,0x49,0x11,0x11,0x11,0x21,0x41,0x80,0x40,0xff,0x08,0x08,0x08,0xfe,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 30132 疴 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x08,0x1b,0x2a,0x4a,0x13,0x10,0x10,0x20,0x40,0x80,0x42,0xff,0x00,0x02,0xff,0x04,0x04,0xe4,0x24,0x24,0xe4,0x04,0x04,0x14,0x08 -+// 30133 疵 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x2a,0x1a,0x2a,0x4a,0x12,0x12,0x12,0x23,0x2c,0x40,0x80,0x42,0xff,0x90,0x90,0x90,0x93,0xfc,0x90,0x90,0x90,0x90,0xd1,0x11,0x0f,0x00 -+// 30134 疶 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2a,0x0a,0x1f,0x2a,0x4a,0x12,0x12,0x12,0x22,0x23,0x40,0x80,0x40,0xff,0x00,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x78,0x40,0x00,0xff,0x00 -+// 30135 疷 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x0a,0x1a,0x2b,0x4a,0x0a,0x12,0x12,0x23,0x42,0x00,0x80,0x40,0xff,0x00,0x1c,0xe0,0x20,0x22,0xff,0x20,0x10,0x50,0xa9,0x25,0x03,0x00 -+// 30136 疸 ; -+,0x00,0x00,0x0f,0x08,0x48,0x29,0x29,0x09,0x19,0x29,0x49,0x09,0x11,0x10,0x27,0x40,0x80,0x40,0xff,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 30137 疹 ; -+,0x00,0x00,0x0f,0x08,0x48,0x29,0x2a,0x0c,0x19,0x2e,0x48,0x11,0x16,0x20,0x23,0x5c,0x80,0x40,0xff,0x40,0xa0,0x10,0x08,0x67,0x80,0x18,0x60,0x86,0x18,0x60,0x80,0x00 -+// 30138 疺 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x08,0x08,0x1b,0x28,0x48,0x08,0x11,0x16,0x20,0x40,0x80,0x40,0xff,0x04,0x3e,0xc0,0x20,0x20,0xfe,0x0c,0x30,0x40,0x80,0x60,0x1f,0x02 -+// 30139 疻 ; -+,0x00,0x00,0x0f,0x08,0x08,0x49,0x29,0x29,0x09,0x19,0x29,0x48,0x10,0x11,0x22,0x44,0x40,0x20,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x50,0x88,0x04,0x06,0x02 -+// 30140 疼 ; -+,0x00,0x00,0x0f,0x48,0x29,0x2a,0x0c,0x08,0x19,0x2e,0x50,0x10,0x10,0x20,0x20,0x40,0x80,0x42,0xff,0x80,0xfc,0x88,0x50,0x60,0x98,0x47,0x32,0x10,0x80,0x60,0x30,0x10 -+// 30141 疽 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x29,0x19,0x29,0x49,0x09,0x09,0x11,0x11,0x27,0x40,0x80,0x42,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x04,0xff,0x00 -+// 30142 疾 ; -+,0x00,0x00,0x0f,0x09,0x49,0x29,0x2a,0x1c,0x2f,0x48,0x08,0x08,0x10,0x11,0x22,0x44,0x80,0x40,0xff,0x00,0x04,0xfe,0x20,0x20,0xff,0x20,0x50,0x50,0x88,0x0c,0x07,0x02 -+// 30143 疿 ; -+,0x00,0x0f,0x08,0x48,0x2b,0x28,0x08,0x1b,0x2a,0x4a,0x0b,0x10,0x11,0x21,0x22,0x44,0x40,0xff,0x90,0x90,0xfe,0x92,0x92,0xfe,0x90,0x90,0xff,0x91,0x11,0x15,0x12,0x10 -+// 30144 痀 ; -+,0x00,0x00,0x0f,0x09,0x49,0x29,0x0a,0x1c,0x29,0x49,0x09,0x11,0x11,0x20,0x20,0x40,0x80,0x42,0xff,0x00,0x00,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x12,0x02,0x14,0x08 -+// 30145 痁 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x28,0x18,0x2b,0x4a,0x0a,0x12,0x12,0x23,0x42,0x00,0x80,0x42,0xff,0x40,0x40,0x7f,0x40,0x40,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 30146 痂 ; -+,0x00,0x00,0x0f,0x09,0x49,0x2f,0x29,0x09,0x19,0x29,0x4a,0x12,0x12,0x24,0x2a,0x51,0x80,0x40,0xff,0x00,0x00,0xde,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x9e,0x92,0x00 -+// 30147 痃 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x08,0x19,0x2b,0x48,0x10,0x11,0x27,0x22,0x40,0x80,0x42,0xff,0x40,0x22,0xff,0x40,0x88,0x10,0xe0,0x40,0x88,0x04,0xfe,0x02,0x00 -+// 30148 痄 ; -+,0x00,0x00,0x0f,0x09,0x49,0x29,0x2a,0x0a,0x1c,0x28,0x48,0x10,0x10,0x10,0x20,0x40,0x40,0x20,0xff,0x00,0x00,0xff,0x40,0x40,0x7e,0x40,0x40,0x7e,0x40,0x40,0x40,0x40 -+// 30149 病 ; -+,0x00,0x00,0x0f,0x08,0x4f,0x28,0x28,0x0b,0x1a,0x2a,0x4a,0x12,0x13,0x12,0x22,0x42,0x80,0x40,0xff,0x00,0xfe,0x20,0x20,0xfc,0x24,0x54,0x54,0x8c,0x04,0x04,0x14,0x08 -+// 30150 痆 ; -+,0x00,0x00,0x0f,0x48,0x2b,0x2a,0x0a,0x1b,0x2a,0x4a,0x12,0x12,0x12,0x24,0x24,0x48,0x80,0x42,0xff,0x00,0xfc,0x04,0x04,0xfc,0x00,0x44,0x4e,0x70,0x41,0x41,0x3f,0x00 -+// 30151 症 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x19,0x29,0x49,0x09,0x11,0x11,0x21,0x2f,0x40,0x80,0x40,0xff,0x00,0x00,0xfe,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0xff,0x00 -+// 30152 痈 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2a,0x0b,0x1a,0x2a,0x4b,0x12,0x14,0x24,0x48,0x10,0x80,0x40,0xff,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0x2a,0x24 -+// 30153 痉 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x28,0x18,0x29,0x4e,0x0b,0x10,0x10,0x20,0x2f,0x40,0x80,0x40,0xff,0x00,0xfc,0x08,0x10,0x68,0x84,0x02,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 30154 痊 ; -+,0x00,0x00,0x0f,0x08,0x48,0x28,0x29,0x0a,0x1d,0x28,0x48,0x13,0x10,0x10,0x27,0x40,0x40,0x20,0xff,0x20,0x50,0x88,0x04,0x03,0xfc,0x20,0x20,0xfc,0x20,0x22,0xff,0x00 -+// 30155 痋 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x0a,0x1a,0x2a,0x4b,0x0a,0x10,0x10,0x17,0x22,0x40,0x40,0x20,0xff,0x20,0x20,0xfe,0x22,0x22,0x22,0xfe,0x20,0x24,0x22,0xff,0x01,0x00 -+// 30156 痌 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x0b,0x1a,0x2a,0x4a,0x0a,0x12,0x12,0x12,0x22,0x42,0x40,0x20,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfa,0x8a,0x8a,0xfa,0x02,0x02,0x0a,0x04 -+// 30157 痍 ; -+,0x00,0x0f,0x08,0x4f,0x28,0x2b,0x08,0x1b,0x2a,0x4b,0x10,0x10,0x11,0x22,0x24,0x48,0x80,0xff,0x44,0xfe,0x40,0xfc,0x44,0xfc,0x40,0xfe,0xa2,0x92,0x14,0x08,0x07,0x02 -+// 30158 痎 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x28,0x08,0x18,0x28,0x48,0x09,0x16,0x10,0x27,0x40,0x80,0x40,0xff,0x40,0x20,0xff,0x20,0x44,0xf8,0x11,0x63,0x8c,0x18,0xe4,0x02,0x00 -+// 30159 痏 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x29,0x0b,0x1d,0x29,0x49,0x11,0x11,0x21,0x21,0x41,0x80,0x40,0xff,0x80,0x80,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 30160 痐 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2a,0x1a,0x2a,0x4a,0x0a,0x12,0x12,0x12,0x23,0x42,0x80,0x42,0xff,0x00,0xfe,0x02,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x02,0x02,0xfe,0x02 -+// 30161 痑 ; -+,0x00,0x0f,0x08,0x08,0x49,0x2a,0x0d,0x18,0x2b,0x4c,0x09,0x16,0x10,0x10,0x27,0x40,0x40,0xff,0x00,0x80,0xfc,0x08,0x30,0xd0,0x3f,0x42,0x84,0x48,0x30,0xc0,0x00,0x00 -+// 30162 痒 ; -+,0x00,0x00,0x0f,0x49,0x28,0x2b,0x08,0x08,0x1b,0x28,0x48,0x17,0x10,0x20,0x20,0x40,0x80,0x42,0xff,0x04,0x88,0xff,0x20,0x20,0xfe,0x20,0x22,0xff,0x20,0x20,0x20,0x20 -+// 30163 痓 ; -+,0x00,0x00,0x0f,0x08,0x4f,0x28,0x28,0x09,0x1b,0x28,0x50,0x17,0x10,0x20,0x2f,0x40,0x80,0x42,0xff,0x00,0xfe,0x80,0x90,0x08,0xfc,0x44,0x40,0xfe,0x40,0x42,0xff,0x00 -+// 30164 痔 ; -+,0x00,0x00,0x0f,0x08,0x08,0x4b,0x28,0x08,0x1f,0x28,0x4f,0x11,0x10,0x10,0x20,0x40,0x80,0x40,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x08,0xff,0x08,0x88,0x88,0x28,0x10 -+// 30165 痕 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x0a,0x1b,0x2a,0x4a,0x12,0x12,0x12,0x23,0x42,0x80,0x42,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x42,0x44,0x28,0x10,0x88,0x07,0x02 -+// 30166 痖 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x28,0x08,0x1c,0x2a,0x49,0x11,0x10,0x20,0x27,0x40,0x40,0x20,0xff,0x00,0x00,0xfe,0x50,0x50,0x52,0x52,0x54,0x58,0x50,0x50,0xff,0x00 -+// 30167 痗 ; -+,0x00,0x00,0x1f,0x11,0x13,0x52,0x35,0x19,0x31,0x5f,0x12,0x12,0x13,0x20,0x20,0x40,0x80,0x42,0xff,0x00,0xfe,0x00,0xfe,0x44,0x24,0xff,0x44,0x24,0xff,0x04,0x14,0x08 -+// 30168 痘 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x29,0x09,0x19,0x29,0x48,0x09,0x10,0x10,0x2f,0x40,0x80,0x40,0xff,0x00,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x00,0x04,0x88,0x50,0xff,0x00 -+// 30169 痙 ; -+,0x00,0x00,0x0f,0x08,0x4f,0x29,0x2a,0x0c,0x1a,0x29,0x48,0x0b,0x10,0x10,0x2f,0x40,0x80,0x40,0xff,0x00,0xfe,0x24,0x48,0x90,0x48,0x24,0x00,0xfe,0x20,0x22,0xff,0x00 -+// 30170 痚 ; -+,0x00,0x0f,0x08,0x48,0x2b,0x28,0x0f,0x18,0x29,0x48,0x11,0x17,0x10,0x20,0x20,0x40,0x80,0xff,0x40,0x42,0xf4,0x48,0xff,0x20,0xfc,0x88,0x30,0xff,0x10,0x10,0x50,0x20 -+// 30171 痛 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x2c,0x0b,0x1a,0x2b,0x4a,0x13,0x12,0x12,0x22,0x42,0x80,0x40,0xff,0x00,0xfc,0x08,0x50,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x22,0x2a,0x04 -+// 30172 痜 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x2b,0x08,0x1b,0x2c,0x48,0x08,0x10,0x11,0x22,0x4c,0x80,0x40,0xff,0x1c,0xe0,0x20,0xff,0xa8,0x24,0x23,0xf8,0x88,0x88,0x09,0x09,0x07 -+// 30173 痝 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2f,0x08,0x18,0x28,0x49,0x09,0x12,0x12,0x24,0x49,0x10,0x80,0x40,0xff,0x90,0x88,0xff,0xa4,0xaa,0xb4,0x2a,0x34,0x29,0x31,0x61,0x9f,0x00 -+// 30174 痞 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x08,0x19,0x2e,0x49,0x09,0x11,0x11,0x21,0x41,0x80,0x42,0xff,0x00,0x02,0xff,0x30,0x6c,0xa3,0x21,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 30175 痟 ; -+,0x00,0x00,0x0f,0x4a,0x29,0x28,0x0b,0x1a,0x2a,0x4b,0x0a,0x0a,0x13,0x12,0x22,0x42,0x80,0x42,0xff,0x22,0x24,0xa8,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x0a,0x04 -+// 30176 痠 ; -+,0x00,0x00,0x0f,0x08,0x48,0x29,0x2b,0x09,0x1a,0x2c,0x49,0x12,0x14,0x20,0x43,0x1c,0x80,0x40,0xff,0x40,0x88,0x1c,0xe2,0x04,0x82,0xfd,0x88,0x50,0x20,0xd8,0x07,0x02 -+// 30177 痡 ; -+,0x00,0x00,0x1f,0x10,0x50,0x37,0x10,0x13,0x32,0x53,0x12,0x13,0x22,0x22,0x22,0x42,0x80,0x42,0xff,0x28,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x22,0x2a,0x24 -+// 30178 痢 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x28,0x0f,0x19,0x2a,0x52,0x14,0x18,0x20,0x20,0x40,0x80,0x40,0xff,0x60,0x82,0x8a,0x8a,0xea,0x8a,0xca,0xaa,0x8a,0x8a,0x82,0x8a,0x84 -+// 30179 痣 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x08,0x1b,0x28,0x48,0x15,0x15,0x15,0x28,0x40,0x80,0x40,0xff,0x20,0x20,0xfe,0x20,0x20,0xfe,0x00,0x44,0x22,0x29,0x09,0xf8,0x00 -+// 30180 痤 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x29,0x0a,0x1c,0x28,0x4b,0x08,0x10,0x10,0x27,0x40,0x40,0x20,0xff,0x20,0x24,0x24,0x2a,0xaa,0x71,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 30181 痥 ; -+,0x00,0x00,0x0f,0x49,0x28,0x28,0x0b,0x1a,0x2a,0x4b,0x08,0x08,0x11,0x11,0x22,0x44,0x80,0x40,0xff,0x08,0x88,0x90,0xfc,0x04,0x04,0xfc,0x90,0x90,0x10,0x11,0x11,0x0f -+// 30182 痦 ; -+,0x00,0x00,0x0f,0x48,0x2b,0x28,0x0b,0x18,0x2f,0x48,0x0b,0x12,0x12,0x23,0x42,0x00,0x40,0x22,0xff,0x00,0xfe,0x40,0xfc,0x84,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 30183 痧 ; -+,0x00,0x00,0x0f,0x0a,0x49,0x28,0x2a,0x19,0x28,0x49,0x16,0x12,0x22,0x22,0x40,0x07,0x40,0x20,0xff,0x10,0x10,0x14,0x52,0x51,0x91,0x10,0x11,0x06,0x0c,0x30,0xc0,0x00 -+// 30184 痨 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x1b,0x2a,0x4c,0x0b,0x10,0x10,0x20,0x43,0x0c,0x40,0x20,0xff,0x88,0x88,0xff,0x88,0xff,0x21,0x20,0xfc,0x44,0x44,0x84,0x28,0x10 -+// 30185 痩 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x0a,0x1b,0x28,0x4b,0x10,0x10,0x20,0x41,0x0e,0x80,0x42,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xfe,0x84,0x48,0x30,0xcf,0x02 -+// 30186 痪 ; -+,0x00,0x00,0x0f,0x08,0x49,0x2a,0x2b,0x0a,0x1a,0x2a,0x57,0x10,0x10,0x21,0x22,0x4c,0x80,0x42,0xff,0x80,0xf8,0x10,0xfe,0x24,0x24,0x44,0xff,0x60,0x90,0x08,0x07,0x02 -+// 30187 痫 ; -+,0x00,0x00,0x0f,0x0a,0x49,0x2a,0x2a,0x0a,0x1a,0x2a,0x52,0x13,0x12,0x22,0x22,0x42,0x40,0x20,0xff,0x00,0x7e,0x22,0x22,0xfa,0x22,0x72,0xaa,0x2a,0x22,0x22,0x2a,0x04 -+// 30188 痬 ; -+,0x00,0x0f,0x08,0x49,0x29,0x29,0x09,0x19,0x28,0x49,0x0a,0x10,0x11,0x22,0x40,0x00,0x40,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xfe,0x4a,0x92,0x22,0x42,0x94,0x08 -+// 30189 痭 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x0a,0x1b,0x2a,0x4a,0x13,0x12,0x14,0x25,0x48,0x10,0x80,0x42,0xff,0x00,0xde,0x52,0x52,0xde,0x52,0x52,0xde,0x52,0x52,0x62,0xaa,0x44 -+// 30190 痮 ; -+,0x00,0x0f,0x48,0x29,0x29,0x09,0x09,0x19,0x29,0x4f,0x0a,0x12,0x12,0x22,0x43,0x02,0x40,0xff,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x00,0xff,0x44,0x28,0x10,0x8c,0x07,0x02 -+// 30191 痯 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2d,0x09,0x19,0x29,0x51,0x11,0x11,0x21,0x41,0x00,0x80,0x40,0xff,0x40,0xfe,0x02,0xfc,0x04,0xfc,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 30192 痰 ; -+,0x00,0x00,0x0f,0x48,0x2a,0x2a,0x0a,0x19,0x2e,0x4a,0x0a,0x14,0x10,0x21,0x46,0x18,0x80,0x40,0xff,0x44,0x48,0x60,0x98,0x04,0x40,0x48,0x50,0xa0,0x90,0x08,0x07,0x02 -+// 30193 痱 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2f,0x28,0x08,0x1b,0x28,0x48,0x17,0x10,0x10,0x20,0x40,0x40,0x20,0xff,0x90,0x90,0x9f,0x90,0x90,0x9e,0x90,0x90,0x9f,0x90,0x90,0x90,0x90 -+// 30194 痲 ; -+,0x00,0x00,0x1f,0x11,0x5f,0x31,0x15,0x15,0x35,0x55,0x15,0x15,0x29,0x29,0x51,0x21,0x80,0x40,0xff,0x10,0xbf,0x10,0x14,0x54,0x54,0x54,0x54,0x54,0x55,0x55,0x53,0x90 -+// 30195 痳 ; -+,0x00,0x00,0x0f,0x09,0x49,0x29,0x0f,0x19,0x2b,0x4b,0x15,0x15,0x29,0x21,0x41,0x01,0x80,0x40,0xff,0x08,0x08,0x08,0xbf,0x18,0x9c,0x6c,0x2a,0x4a,0x89,0x08,0x08,0x08 -+// 30196 痴 ; -+,0x00,0x00,0x0f,0x0a,0x4a,0x2b,0x2d,0x09,0x1f,0x29,0x49,0x12,0x12,0x24,0x48,0x10,0x40,0x20,0xff,0x00,0x00,0xde,0x12,0x12,0xd2,0x12,0x12,0x92,0x5e,0x12,0x12,0x00 -+// 30197 痵 ; -+,0x00,0x1f,0x10,0x13,0x50,0x37,0x10,0x13,0x3c,0x53,0x10,0x10,0x2f,0x20,0x20,0x40,0x40,0xff,0x00,0xfc,0x20,0xff,0xb0,0x2c,0x23,0xfc,0x48,0x30,0xff,0x20,0xa0,0x40 -+// 30198 痶 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x2a,0x0a,0x1b,0x2a,0x52,0x17,0x11,0x22,0x24,0x48,0x40,0x20,0xff,0x90,0x90,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x08,0x04,0x02,0x01 -+// 30199 痷 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x29,0x0a,0x1d,0x29,0x49,0x11,0x11,0x11,0x20,0x40,0x40,0x20,0xff,0x40,0xff,0x90,0x28,0x24,0xff,0x24,0xfc,0x24,0xfc,0x25,0x21,0x1f -+// 30200 痸 ; -+,0x00,0x00,0x0f,0x08,0x4a,0x2b,0x2c,0x0f,0x18,0x2b,0x4a,0x12,0x12,0x12,0x20,0x40,0x80,0x40,0xff,0x82,0x82,0xea,0x8a,0xea,0x8a,0xea,0xaa,0xaa,0xa2,0xe2,0x8a,0x84 -+// 30201 痹 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x0a,0x1b,0x28,0x4f,0x08,0x10,0x10,0x21,0x42,0x40,0x20,0xff,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff,0x88,0x88,0x88,0x08,0x08 -+// 30202 痺 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x1a,0x2b,0x4a,0x11,0x1f,0x10,0x20,0x40,0x00,0x80,0x40,0xff,0x80,0xfc,0x44,0xfc,0x44,0xfc,0xa4,0x20,0xff,0x20,0x20,0x20,0x20 -+// 30203 痻 ; -+,0x00,0x00,0x0f,0x48,0x2b,0x2a,0x0b,0x1a,0x2b,0x4a,0x09,0x11,0x11,0x21,0x41,0x01,0x80,0x40,0xff,0x1c,0xe0,0x20,0xff,0x10,0x89,0x07,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 30204 痼 ; -+,0x00,0x00,0x0f,0x48,0x2b,0x2a,0x0a,0x1a,0x2a,0x4a,0x0a,0x0a,0x12,0x12,0x23,0x42,0x80,0x42,0xff,0x00,0xfe,0x22,0xfa,0x22,0x22,0xfa,0x8a,0xfa,0x8a,0x02,0xfe,0x02 -+// 30205 痽 ; -+,0x00,0x00,0x0f,0x08,0x48,0x29,0x2b,0x0d,0x19,0x29,0x49,0x11,0x11,0x21,0x41,0x01,0x40,0x20,0xff,0xa0,0x90,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 30206 痾 ; -+,0x00,0x00,0x1f,0x10,0x57,0x34,0x15,0x15,0x34,0x54,0x17,0x15,0x14,0x24,0x24,0x44,0x80,0x40,0xff,0x00,0xbf,0x82,0x3a,0x2a,0xaa,0xaa,0xaa,0x3a,0x02,0x02,0x0a,0x04 -+// 30207 痿 ; -+,0x00,0x0f,0x08,0x49,0x28,0x2f,0x08,0x19,0x2a,0x48,0x17,0x10,0x11,0x20,0x41,0x0e,0x40,0xfe,0x00,0xfc,0x20,0xfe,0xb0,0x28,0x27,0xa2,0xff,0x88,0x90,0x70,0x98,0x04 -+// 30208 瘀 ; -+,0x00,0x00,0x1f,0x12,0x51,0x37,0x12,0x13,0x32,0x52,0x12,0x14,0x24,0x2a,0x51,0x00,0x80,0x40,0xff,0x08,0x08,0xc8,0x14,0x92,0xa1,0xc8,0x84,0x90,0x88,0x84,0x04,0x00 -+// 30209 瘁 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2f,0x09,0x19,0x2a,0x4c,0x10,0x17,0x10,0x20,0x20,0x40,0x80,0x40,0xff,0x80,0x44,0xfe,0x10,0x10,0x98,0x64,0x40,0xff,0x40,0x40,0x40,0x40 -+// 30210 瘂 ; -+,0x00,0x00,0x0f,0x08,0x4f,0x28,0x08,0x1b,0x2a,0x4a,0x13,0x10,0x10,0x20,0x4f,0x00,0x80,0x40,0xff,0x00,0xfe,0x90,0x90,0x9c,0x04,0x04,0x9c,0x90,0x90,0x92,0xff,0x00 -+// 30211 瘃 ; -+,0x00,0x00,0x1f,0x10,0x17,0x50,0x31,0x16,0x32,0x51,0x12,0x14,0x21,0x22,0x45,0x00,0x80,0x40,0xff,0x00,0xfe,0x40,0x84,0x48,0xb0,0x30,0xe8,0xac,0x27,0x22,0x40,0x80 -+// 30212 瘄 ; -+,0x00,0x00,0x0f,0x48,0x28,0x2b,0x08,0x18,0x2f,0x48,0x09,0x09,0x11,0x11,0x21,0x41,0x80,0x42,0xff,0x88,0x88,0xfe,0x88,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc -+// 30213 瘅 ; -+,0x00,0x00,0x0f,0x49,0x28,0x2b,0x0a,0x1b,0x2a,0x4a,0x0b,0x10,0x17,0x10,0x20,0x40,0x40,0x20,0xff,0x08,0x90,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 30214 瘆 ; -+,0x00,0x1f,0x10,0x10,0x51,0x33,0x10,0x10,0x33,0x5c,0x13,0x10,0x27,0x20,0x4f,0x00,0x80,0xff,0x80,0x90,0x08,0xfc,0x44,0xa0,0x18,0xc7,0x32,0xc0,0x18,0xe0,0x00,0x00 -+// 30215 瘇 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x2f,0x18,0x29,0x49,0x11,0x11,0x17,0x20,0x4f,0x00,0x40,0x20,0xff,0x00,0xfc,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfe,0x20,0xff,0x00 -+// 30216 瘈 ; -+,0x00,0x1f,0x11,0x51,0x37,0x11,0x17,0x31,0x57,0x11,0x1f,0x10,0x20,0x21,0x46,0x18,0x40,0xff,0x00,0x00,0xde,0x0a,0xea,0x12,0xda,0x64,0xff,0x40,0xa0,0x18,0x07,0x02 -+// 30217 瘉 ; -+,0x00,0x1f,0x10,0x10,0x53,0x3d,0x10,0x17,0x34,0x57,0x14,0x17,0x14,0x24,0x25,0x44,0x40,0xff,0x40,0xa0,0x18,0xf7,0x02,0xd4,0x54,0xd4,0x54,0xd4,0x54,0x54,0x44,0x88 -+// 30218 瘊 ; -+,0x00,0x1f,0x11,0x11,0x52,0x33,0x16,0x1a,0x32,0x52,0x13,0x12,0x12,0x22,0x22,0x43,0x40,0xff,0x00,0x78,0x08,0xff,0x40,0x7e,0x50,0x90,0xff,0x30,0x28,0x44,0x83,0x02 -+// 30219 瘋 ; -+,0x00,0x00,0x1f,0x10,0x57,0x34,0x15,0x14,0x35,0x55,0x15,0x14,0x28,0x2b,0x50,0x20,0x80,0x40,0xfe,0x00,0xfc,0x04,0xf4,0x44,0xf4,0x54,0xf4,0x55,0x75,0x8b,0x03,0x01 -+// 30220 瘌 ; -+,0x00,0x00,0x1f,0x11,0x57,0x31,0x17,0x15,0x35,0x57,0x13,0x15,0x25,0x29,0x51,0x01,0x80,0x40,0xfe,0x04,0xc4,0x14,0xd4,0x54,0x54,0xd4,0x94,0x54,0x24,0x04,0x14,0x08 -+// 30221 瘍 ; -+,0x00,0x00,0x0f,0x09,0x49,0x29,0x09,0x18,0x2f,0x49,0x0b,0x0c,0x11,0x12,0x24,0x40,0x40,0x20,0xff,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfe,0x92,0x22,0x42,0x94,0x08 -+// 30222 瘎 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x28,0x08,0x18,0x28,0x4f,0x09,0x09,0x11,0x11,0x20,0x40,0x20,0xff,0x88,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xff,0x00,0x28,0x44,0xfe,0x00 -+// 30223 瘏 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x28,0x0f,0x18,0x29,0x4b,0x0d,0x11,0x11,0x21,0x41,0x80,0x40,0xfe,0x40,0x42,0xfc,0x48,0xff,0x40,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 30224 瘐 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2a,0x0b,0x1a,0x2a,0x53,0x12,0x10,0x21,0x46,0x18,0x80,0x40,0xff,0x40,0x9e,0x22,0x22,0xae,0x22,0x22,0xfe,0x62,0x90,0x0c,0x07,0x02 -+// 30225 瘑 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x09,0x19,0x2b,0x4a,0x0a,0x0a,0x12,0x12,0x22,0x42,0x40,0x20,0xff,0x00,0xfc,0x04,0xf4,0x14,0xfe,0x02,0xfa,0x8a,0x8a,0xfa,0x02,0x06 -+// 30226 瘒 ; -+,0x00,0x0f,0x08,0x4b,0x2a,0x29,0x08,0x19,0x29,0x49,0x09,0x09,0x10,0x17,0x20,0x40,0x20,0xff,0x00,0xfe,0x22,0xfc,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20 -+// 30227 瘓 ; -+,0x00,0x00,0x0f,0x48,0x29,0x2a,0x0f,0x1a,0x2a,0x4a,0x0f,0x10,0x10,0x11,0x22,0x4c,0x80,0x42,0xff,0x80,0xf8,0x10,0xfe,0x52,0xaa,0x22,0xff,0x60,0x90,0x08,0x07,0x02 -+// 30228 瘔 ; -+,0x00,0x00,0x0f,0x49,0x29,0x2f,0x09,0x18,0x2f,0x48,0x08,0x0b,0x12,0x12,0x23,0x42,0x80,0x40,0xff,0x10,0x10,0xfc,0x50,0x40,0xfc,0x40,0x40,0xf8,0x08,0x08,0xf8,0x08 -+// 30229 瘕 ; -+,0x00,0x1f,0x10,0x57,0x34,0x14,0x17,0x34,0x57,0x14,0x14,0x17,0x14,0x24,0x24,0x45,0x40,0xff,0x00,0xde,0x42,0x42,0xde,0x00,0xde,0x02,0x12,0xd4,0x08,0x14,0x63,0x82 -+// 30230 瘖 ; -+,0x00,0x00,0x0f,0x08,0x48,0x2b,0x29,0x08,0x1f,0x28,0x49,0x09,0x11,0x11,0x21,0x41,0x40,0x20,0xff,0x40,0x20,0xfe,0x04,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 30231 瘗 ; -+,0x00,0x00,0x1f,0x10,0x57,0x32,0x11,0x17,0x30,0x53,0x1c,0x11,0x20,0x20,0x4f,0x00,0x80,0x40,0xff,0x40,0xfe,0x48,0x50,0xff,0x90,0x48,0x47,0xfa,0x40,0x40,0xff,0x00 -+// 30232 瘘 ; -+,0x00,0x00,0x1f,0x12,0x51,0x37,0x10,0x13,0x3c,0x57,0x10,0x11,0x20,0x21,0x4e,0x00,0x80,0x40,0xff,0x48,0x50,0xfe,0xe0,0x5f,0x82,0xff,0x90,0x90,0x70,0xdc,0x06,0x00 -+// 30233 瘙 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x08,0x1f,0x2a,0x4b,0x12,0x13,0x12,0x20,0x47,0x00,0x80,0x40,0xff,0x00,0xfc,0xa8,0x50,0xff,0x22,0xfc,0x24,0xfc,0x24,0x3e,0xe2,0x02 -+// 30234 瘚 ; -+,0x00,0x00,0x1f,0x14,0x12,0x5f,0x32,0x12,0x3a,0x5a,0x1f,0x12,0x12,0x24,0x44,0x08,0x80,0x40,0xff,0x90,0x10,0xdf,0x21,0xaa,0xc8,0x88,0x88,0x88,0x14,0x24,0x43,0x82 -+// 30235 瘛 ; -+,0x00,0x00,0x1f,0x11,0x17,0x51,0x37,0x11,0x17,0x31,0x51,0x10,0x25,0x25,0x48,0x00,0x40,0x20,0xff,0x00,0xfe,0x12,0xd2,0x12,0xea,0x24,0x40,0x22,0x25,0x05,0xfc,0x00 -+// 30236 瘜 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x0a,0x1b,0x2a,0x53,0x10,0x15,0x25,0x49,0x00,0x80,0x40,0xff,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x22,0x11,0x05,0xfc -+// 30237 瘝 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x2a,0x0b,0x18,0x29,0x4e,0x08,0x10,0x13,0x2c,0x40,0x80,0x40,0xff,0x00,0xfe,0x52,0x52,0xfe,0x20,0xa8,0x24,0x22,0xa8,0x24,0x22,0x20 -+// 30238 瘞 ; -+,0x00,0x00,0x1f,0x10,0x57,0x32,0x12,0x15,0x38,0x53,0x1c,0x13,0x20,0x20,0x4f,0x00,0x80,0x40,0xff,0x40,0xff,0x44,0x44,0x6a,0x91,0x2c,0x23,0xfe,0x20,0x20,0xff,0x00 -+// 30239 瘟 ; -+,0x00,0x00,0x0f,0x08,0x49,0x29,0x29,0x09,0x19,0x28,0x4b,0x12,0x12,0x12,0x2f,0x40,0x80,0x40,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x92,0x92,0x92,0xff,0x00 -+// 30240 瘠 ; -+,0x00,0x0f,0x09,0x48,0x29,0x2a,0x08,0x1b,0x2d,0x49,0x09,0x09,0x11,0x11,0x21,0x01,0x40,0xff,0x24,0xa8,0x24,0x58,0x87,0x02,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 30241 瘡 ; -+,0x00,0x0f,0x08,0x48,0x29,0x2e,0x0b,0x1a,0x2b,0x4a,0x0b,0x12,0x15,0x25,0x49,0x01,0x40,0xff,0x40,0xa0,0x58,0x47,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x04 -+// 30242 瘢 ; -+,0x00,0x00,0x1f,0x12,0x17,0x54,0x36,0x15,0x14,0x37,0x5c,0x16,0x15,0x24,0x2a,0x51,0x80,0x40,0xff,0x00,0xbc,0xa4,0xa4,0xa3,0xc0,0xbe,0xa2,0xa2,0x94,0x88,0x94,0x63 -+// 30243 瘣 ; -+,0x00,0x00,0x0f,0x08,0x08,0x4b,0x2a,0x0b,0x1a,0x2b,0x4a,0x08,0x11,0x12,0x24,0x48,0x80,0x40,0xfe,0x40,0x80,0xfc,0x44,0xfc,0x44,0xfc,0xa0,0xa8,0x2a,0x2e,0x21,0x1f -+// 30244 瘤 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x2a,0x0a,0x1a,0x2b,0x48,0x0b,0x0a,0x13,0x12,0x23,0x42,0x80,0x40,0xff,0x00,0xde,0x0a,0x8a,0xd2,0x26,0x40,0xfe,0x22,0xfe,0x22,0xfe,0x02 -+// 30245 瘥 ; -+,0x00,0x00,0x1f,0x11,0x57,0x30,0x13,0x10,0x37,0x50,0x10,0x11,0x12,0x24,0x2b,0x40,0x80,0x40,0xff,0x10,0xfe,0x40,0xfc,0x40,0xfe,0x80,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 30246 瘦 ; -+,0x00,0x00,0x0f,0x09,0x4a,0x2a,0x2b,0x0a,0x1b,0x28,0x4b,0x09,0x10,0x10,0x21,0x4e,0x80,0x40,0xff,0x40,0x5c,0x44,0x5c,0x44,0xfc,0x40,0xfc,0x08,0x90,0x60,0x98,0x07 -+// 30247 瘧 ; -+,0x00,0x0f,0x08,0x48,0x28,0x2b,0x0a,0x1b,0x2a,0x4a,0x12,0x12,0x25,0x24,0x48,0x10,0x20,0xff,0x40,0x7c,0x40,0xfe,0x72,0xc4,0x3c,0x00,0xfc,0x80,0xff,0x80,0xfe,0x00 -+// 30248 瘨 ; -+,0x00,0x00,0x0f,0x08,0x4f,0x28,0x2b,0x0a,0x1b,0x2a,0x53,0x12,0x1f,0x21,0x22,0x44,0x80,0x40,0xff,0x40,0xfe,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff,0x08,0x04,0x02 -+// 30249 瘩 ; -+,0x00,0x0f,0x09,0x49,0x2f,0x29,0x08,0x19,0x2a,0x4d,0x10,0x13,0x12,0x22,0x43,0x02,0x80,0xff,0x10,0x10,0xfe,0x50,0xa0,0x10,0x0c,0xf7,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 30250 瘪 ; -+,0x00,0x1f,0x10,0x53,0x32,0x12,0x12,0x13,0x32,0x50,0x13,0x1d,0x11,0x21,0x21,0x40,0x80,0xff,0x40,0xfc,0x24,0x94,0x44,0xfc,0x44,0xb0,0x0c,0x33,0xc0,0x04,0x04,0xfc -+// 30251 瘫 ; -+,0x00,0x00,0x1f,0x10,0x57,0x31,0x11,0x19,0x35,0x52,0x16,0x15,0x29,0x30,0x20,0x40,0x80,0x40,0xff,0x50,0x48,0x7e,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x7f,0x40 -+// 30252 瘬 ; -+,0x00,0x00,0x1f,0x10,0x57,0x30,0x10,0x17,0x34,0x57,0x10,0x10,0x10,0x20,0x25,0x42,0x80,0x42,0xff,0x00,0xbe,0xa0,0xbe,0xa0,0x3e,0xa0,0xff,0xa8,0xa4,0xa4,0x33,0x20 -+// 30253 瘭 ; -+,0x00,0x1f,0x10,0x17,0x50,0x33,0x12,0x12,0x33,0x50,0x13,0x10,0x17,0x22,0x24,0x48,0x40,0xff,0x00,0xff,0x90,0xfe,0x92,0x92,0xfe,0x00,0xfe,0x00,0xff,0x24,0xa2,0x41 -+// 30254 瘮 ; -+,0x00,0x1f,0x10,0x10,0x51,0x31,0x12,0x17,0x30,0x53,0x1d,0x16,0x21,0x26,0x40,0x07,0x40,0xff,0x40,0x90,0xf8,0x08,0x92,0xdf,0xb1,0x4c,0x93,0x60,0x8c,0x30,0xc0,0x00 -+// 30255 瘯 ; -+,0x00,0x00,0x1f,0x14,0x52,0x3f,0x14,0x14,0x37,0x55,0x15,0x15,0x29,0x29,0x55,0x22,0x80,0x40,0xff,0x20,0x3e,0xc0,0x20,0x3e,0x48,0x08,0x7f,0x14,0x14,0x22,0x43,0x82 -+// 30256 瘰 ; -+,0x00,0x0f,0x08,0x0b,0x4a,0x2b,0x2a,0x0b,0x18,0x29,0x48,0x13,0x10,0x22,0x24,0x48,0x40,0xff,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x44,0xf8,0x88,0xfc,0x24,0x28,0xa4,0x42 -+// 30257 瘱 ; -+,0x00,0x00,0x1f,0x10,0x57,0x32,0x12,0x15,0x38,0x53,0x1c,0x11,0x25,0x25,0x48,0x00,0x80,0x42,0xff,0x40,0xfe,0x44,0x44,0x4a,0xb0,0x0e,0x44,0x20,0x0a,0x09,0xf9,0x00 -+// 30258 瘲 ; -+,0x00,0x1f,0x10,0x12,0x52,0x35,0x19,0x12,0x36,0x5a,0x12,0x12,0x22,0x22,0x43,0x02,0x80,0xff,0x00,0x48,0x48,0xa8,0x14,0x22,0x10,0x90,0x9e,0x90,0xd0,0xb0,0x0f,0x02 -+// 30259 瘳 ; -+,0x00,0x1f,0x10,0x57,0x32,0x11,0x12,0x34,0x50,0x13,0x1c,0x13,0x20,0x23,0x40,0x07,0x82,0xff,0x00,0xbc,0x94,0x8c,0x94,0x44,0xb0,0x2e,0xc4,0x30,0xcc,0x30,0xc0,0x00 -+// 30260 瘴 ; -+,0x00,0x1f,0x10,0x57,0x31,0x1f,0x10,0x33,0x52,0x13,0x12,0x13,0x20,0x2f,0x40,0x00,0x40,0xff,0x40,0xfe,0x08,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xff,0x40,0x40 -+// 30261 瘵 ; -+,0x00,0x00,0x1f,0x11,0x52,0x34,0x1a,0x15,0x32,0x54,0x1b,0x10,0x21,0x22,0x44,0x00,0x80,0x40,0xff,0x10,0x9e,0x54,0x88,0x08,0xf7,0x02,0xfe,0x20,0x28,0x24,0xa2,0x40 -+// 30262 瘶 ; -+,0x00,0x00,0x1f,0x11,0x5f,0x31,0x17,0x15,0x35,0x57,0x13,0x15,0x19,0x21,0x21,0x41,0x80,0x40,0xff,0x08,0xc8,0x10,0xdf,0x51,0x6a,0xc8,0x08,0x88,0x54,0x14,0x23,0x42 -+// 30263 瘷 ; -+,0x00,0x00,0x1f,0x11,0x51,0x37,0x11,0x17,0x35,0x57,0x13,0x15,0x25,0x29,0x51,0x01,0x80,0x40,0xff,0x08,0x08,0xc8,0x0f,0xd2,0x52,0xf2,0x94,0x48,0x4c,0x12,0x23,0x42 -+// 30264 瘸 ; -+,0x00,0x1f,0x11,0x17,0x52,0x32,0x15,0x38,0x53,0x12,0x12,0x13,0x22,0x22,0x43,0x02,0x80,0xff,0x00,0xde,0x52,0x52,0x5e,0xa0,0xfe,0x52,0xaa,0x22,0x52,0x8a,0x0a,0x04 -+// 30265 瘹 ; -+,0x00,0x00,0x1f,0x11,0x51,0x32,0x14,0x1b,0x31,0x57,0x11,0x15,0x15,0x25,0x2e,0x40,0x80,0x40,0xff,0x10,0x90,0x5e,0x22,0xc2,0x12,0xd2,0x0a,0x4a,0x42,0xc2,0x14,0x08 -+// 30266 瘺 ; -+,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x0a,0x1b,0x2a,0x4b,0x13,0x15,0x15,0x25,0x49,0x11,0x40,0xff,0x00,0xfe,0x02,0xfe,0x00,0xff,0x20,0xfe,0x2a,0x66,0x2a,0x66,0x2a,0x04 -+// 30267 瘻 ; -+,0x00,0x0f,0x0a,0x0f,0x4a,0x2b,0x28,0x0b,0x1a,0x2b,0x48,0x0f,0x10,0x11,0x20,0x47,0x40,0xff,0x22,0xff,0x22,0xfe,0x20,0xfe,0x22,0xfe,0x40,0xff,0x88,0x90,0x78,0x86 -+// 30268 瘼 ; -+,0x00,0x1f,0x11,0x17,0x51,0x33,0x12,0x33,0x52,0x13,0x10,0x1f,0x10,0x21,0x22,0x4c,0x40,0xff,0x08,0xfe,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xff,0xa0,0x18,0x07,0x02 -+// 30269 瘽 ; -+,0x00,0x0f,0x08,0x4f,0x28,0x28,0x08,0x1b,0x2a,0x4b,0x08,0x13,0x10,0x13,0x20,0x4f,0x20,0xff,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff -+// 30270 瘾 ; -+,0x00,0x00,0x1f,0x10,0x17,0x55,0x35,0x16,0x15,0x35,0x55,0x16,0x14,0x25,0x25,0x46,0x80,0x40,0xff,0x20,0x3c,0x44,0x7e,0x02,0x7e,0x02,0x7e,0x20,0x52,0x51,0x45,0x3c -+// 30271 瘿 ; -+,0x00,0x1f,0x10,0x17,0x50,0x32,0x12,0x12,0x35,0x58,0x1f,0x11,0x13,0x20,0x23,0x5c,0x80,0xff,0x00,0xbe,0xa2,0xaa,0xaa,0x2a,0x14,0xa2,0xff,0x10,0x20,0xc0,0x3c,0x08 -+// 30272 癀 ; -+,0x00,0x00,0x0f,0x08,0x4b,0x28,0x2f,0x08,0x1b,0x2a,0x4b,0x0a,0x13,0x10,0x21,0x42,0x40,0x20,0xff,0x88,0xfe,0x88,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x88,0x04,0x02 -+// 30273 癁 ; -+,0x00,0x00,0x0f,0x09,0x49,0x2a,0x0d,0x19,0x2a,0x4e,0x0a,0x0a,0x12,0x12,0x22,0x42,0x80,0x40,0xff,0x20,0x3f,0x40,0x7e,0xa2,0x3e,0x22,0x3e,0x20,0x7e,0xa4,0x18,0xe7 -+// 30274 療 ; -+,0x00,0x1f,0x10,0x17,0x50,0x35,0x12,0x17,0x3a,0x53,0x12,0x13,0x10,0x24,0x29,0x40,0x80,0xff,0x40,0xfe,0xa0,0x14,0x08,0xff,0x0a,0xf8,0x08,0xf8,0x40,0x48,0x44,0x80 -+// 30275 癃 ; -+,0x00,0x00,0x1f,0x10,0x17,0x55,0x35,0x16,0x15,0x35,0x55,0x16,0x14,0x25,0x24,0x45,0x80,0x40,0xff,0x40,0x7c,0x44,0xa8,0x18,0x24,0xd3,0x50,0x7e,0x90,0x7e,0x10,0xff -+// 30276 癄 ; -+,0x00,0x00,0x1f,0x11,0x12,0x53,0x36,0x1b,0x32,0x53,0x12,0x13,0x22,0x24,0x44,0x08,0x80,0x40,0xff,0x40,0x20,0xfe,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0x92,0x49,0x49 -+// 30277 癅 ; -+,0x00,0x00,0x0f,0x08,0x4f,0x28,0x2b,0x0a,0x1b,0x28,0x4b,0x12,0x13,0x22,0x43,0x02,0x40,0x20,0xff,0x00,0xfe,0x50,0xde,0x52,0xde,0x50,0xfe,0x22,0xfe,0x22,0xfe,0x02 -+// 30278 癆 ; -+,0x00,0x00,0x1f,0x11,0x55,0x35,0x12,0x14,0x37,0x58,0x13,0x10,0x21,0x21,0x42,0x0c,0x80,0x40,0xff,0x08,0xab,0x48,0x94,0x62,0xff,0x41,0xfc,0x84,0x04,0x04,0x28,0x10 -+// 30279 癇 ; -+,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x0a,0x1b,0x2a,0x4a,0x0a,0x12,0x12,0x22,0x23,0x42,0x40,0xff,0x00,0xde,0x52,0xde,0x52,0xde,0x02,0xf2,0x92,0xf2,0x92,0xf2,0x12,0x24 -+// 30280 癈 ; -+,0x00,0x1f,0x10,0x17,0x54,0x33,0x17,0x18,0x37,0x54,0x17,0x14,0x10,0x20,0x25,0x42,0x80,0xfe,0x48,0xb2,0x94,0x08,0xbc,0xab,0xa8,0x46,0xbc,0xa4,0x98,0x94,0x23,0x42 -+// 30281 癉 ; -+,0x00,0x0f,0x08,0x0b,0x4a,0x2b,0x28,0x0b,0x1a,0x2b,0x4a,0x13,0x10,0x17,0x20,0x40,0x40,0xff,0x00,0xde,0x52,0xde,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xff,0x20,0x20 -+// 30282 癊 ; -+,0x00,0x1f,0x10,0x17,0x55,0x35,0x16,0x15,0x35,0x55,0x16,0x15,0x24,0x24,0x44,0x04,0x80,0xff,0x20,0x50,0x88,0x24,0xfb,0x08,0x10,0xfe,0x00,0xff,0x20,0x44,0xfe,0x02 -+// 30283 癋 ; -+,0x00,0x1f,0x10,0x17,0x50,0x37,0x14,0x17,0x30,0x5f,0x10,0x11,0x15,0x25,0x28,0x40,0x40,0xff,0x00,0xfe,0x90,0x9e,0x02,0x9e,0x90,0xff,0x40,0x22,0x21,0x05,0xfc,0x00 -+// 30284 癌 ; -+,0x00,0x00,0x1f,0x10,0x51,0x31,0x11,0x10,0x37,0x54,0x17,0x10,0x12,0x22,0x23,0x42,0x80,0x40,0xff,0x00,0xfc,0x04,0xfc,0x00,0xdf,0x51,0xdf,0x20,0x22,0x22,0xfe,0x02 -+// 30285 癍 ; -+,0x00,0x00,0x1f,0x10,0x57,0x32,0x12,0x12,0x37,0x52,0x12,0x13,0x2c,0x21,0x42,0x00,0x80,0x40,0xff,0x40,0x1f,0xf4,0x24,0xa4,0xbf,0x64,0x24,0x54,0x94,0x3f,0x00,0x00 -+// 30286 癎 ; -+,0x00,0x1f,0x10,0x17,0x54,0x37,0x14,0x17,0x34,0x54,0x14,0x14,0x24,0x24,0x44,0x04,0x40,0xff,0x00,0x9e,0x92,0x9e,0x92,0x9e,0x02,0xf2,0x92,0xf2,0x92,0xf2,0x0a,0x04 -+// 30287 癏 ; -+,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x08,0x1f,0x28,0x49,0x09,0x11,0x10,0x13,0x2d,0x41,0x40,0xff,0x00,0xfe,0x52,0xfe,0x00,0xff,0x00,0xfc,0x04,0xfc,0xa4,0x18,0x47,0x82 -+// 30288 癐 ; -+,0x00,0x1f,0x10,0x10,0x53,0x3d,0x10,0x17,0x35,0x57,0x10,0x13,0x12,0x23,0x22,0x43,0x80,0xff,0x40,0xa0,0x18,0xf7,0x00,0xfc,0x54,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 30289 癑 ; -+,0x00,0x0f,0x08,0x4b,0x2a,0x2b,0x0a,0x1b,0x2a,0x53,0x12,0x13,0x24,0x24,0x48,0x10,0x40,0xff,0x90,0xfe,0x92,0xfe,0x92,0xff,0x00,0xfe,0x00,0xff,0x90,0xaa,0xc4,0x83 -+// 30290 癒 ; -+,0x00,0x1f,0x10,0x13,0x5d,0x30,0x13,0x12,0x33,0x52,0x13,0x12,0x25,0x25,0x48,0x00,0x80,0xff,0xc0,0x30,0xef,0x02,0xd4,0x54,0xd4,0x54,0xc4,0x48,0x22,0x09,0xf9,0x00 -+// 30291 癓 ; -+,0x00,0x00,0x1f,0x10,0x55,0x35,0x19,0x12,0x35,0x5c,0x15,0x15,0x15,0x25,0x25,0x46,0x80,0x40,0xff,0x48,0x50,0x50,0xff,0x0a,0xfa,0x0a,0xea,0x24,0x24,0x2a,0x2a,0x11 -+// 30292 癔 ; -+,0x00,0x1f,0x10,0x17,0x51,0x3f,0x10,0x13,0x32,0x53,0x12,0x13,0x14,0x25,0x29,0x40,0x80,0xff,0x40,0xfe,0x08,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x42,0x21,0x05,0xfc -+// 30293 癕 ; -+,0x00,0x1f,0x10,0x1f,0x52,0x32,0x14,0x15,0x3e,0x52,0x14,0x1f,0x21,0x22,0x44,0x18,0x80,0xff,0x40,0xff,0x20,0x48,0xfe,0x48,0x48,0x7e,0xc8,0x7e,0x48,0x48,0x7f,0x40 -+// 30294 癖 ; -+,0x00,0x00,0x1f,0x10,0x57,0x34,0x14,0x17,0x34,0x57,0x16,0x1a,0x2a,0x2a,0x53,0x22,0x80,0x40,0xff,0x10,0x88,0xff,0xa2,0x94,0x7f,0x88,0x88,0xbf,0x88,0x88,0x88,0x88 -+// 30295 癗 ; -+,0x00,0x1f,0x10,0x13,0x50,0x37,0x14,0x1b,0x30,0x53,0x10,0x13,0x12,0x23,0x22,0x43,0x40,0xff,0x00,0xfc,0x40,0xfe,0x42,0x58,0x40,0x58,0x00,0xfc,0x44,0xfc,0x44,0xfc -+// 30296 癘 ; -+,0x00,0x1f,0x10,0x17,0x50,0x33,0x12,0x13,0x32,0x53,0x10,0x17,0x14,0x25,0x24,0x44,0x40,0xff,0x90,0xff,0x90,0xfc,0x44,0xfc,0x44,0xfc,0x40,0xfe,0x52,0xf2,0x0a,0x04 -+// 30297 癙 ; -+,0x00,0x1f,0x10,0x17,0x54,0x37,0x14,0x17,0x34,0x55,0x14,0x16,0x25,0x24,0x46,0x04,0x80,0xff,0x80,0x1c,0x04,0xbc,0x04,0xfc,0x44,0x64,0xd4,0x44,0x65,0x55,0x63,0x41 -+// 30298 癚 ; -+,0x00,0x0f,0x08,0x48,0x29,0x2b,0x0a,0x1a,0x2b,0x4a,0x0a,0x12,0x12,0x24,0x24,0x48,0x40,0xff,0x40,0xf8,0x10,0xff,0x44,0x92,0xff,0x00,0xfe,0x00,0xfe,0x82,0xfe,0x82 -+// 30299 癛 ; -+,0x00,0x0f,0x08,0x4f,0x28,0x2b,0x0a,0x0a,0x1a,0x2b,0x48,0x17,0x10,0x23,0x5c,0x00,0x40,0xff,0x20,0xff,0x00,0xfe,0x8a,0xfa,0x02,0xfe,0x20,0xff,0xa8,0x24,0x23,0x20 -+// 30300 癜 ; -+,0x00,0x1f,0x10,0x17,0x54,0x37,0x15,0x15,0x37,0x55,0x15,0x17,0x25,0x29,0x2a,0x54,0x80,0xfe,0x00,0xfc,0x14,0xf4,0x57,0x60,0xde,0x52,0x54,0xec,0x48,0x34,0x23,0x42 -+// 30301 癝 ; -+,0x00,0x0f,0x08,0x4f,0x2a,0x2a,0x0a,0x1b,0x28,0x4b,0x08,0x17,0x11,0x22,0x24,0x40,0x20,0xff,0x40,0xff,0x94,0xf4,0x04,0xfc,0x00,0xfc,0x00,0xff,0x28,0x24,0xa2,0x40 -+// 30302 癞 ; -+,0x00,0x00,0x1f,0x11,0x17,0x51,0x37,0x15,0x15,0x37,0x51,0x13,0x15,0x29,0x31,0x41,0x80,0x40,0xff,0x10,0xde,0x24,0xdf,0x51,0x55,0xd5,0x15,0x95,0x55,0x0a,0x11,0x21 -+// 30303 癟 ; -+,0x00,0x1f,0x10,0x13,0x52,0x32,0x13,0x12,0x30,0x53,0x1c,0x13,0x12,0x23,0x22,0x42,0x40,0xff,0x80,0xfc,0xa4,0x54,0xfc,0x60,0x90,0xfc,0x03,0xfc,0xa4,0xfc,0xa4,0x08 -+// 30304 癠 ; -+,0x00,0x1f,0x10,0x17,0x51,0x37,0x15,0x15,0x38,0x52,0x13,0x12,0x13,0x24,0x24,0x48,0x40,0xff,0x20,0xff,0x10,0xae,0x58,0x54,0x53,0x44,0xfc,0x04,0xfc,0x04,0x04,0x04 -+// 30305 癡 ; -+,0x00,0x1f,0x14,0x15,0x56,0x34,0x13,0x14,0x37,0x59,0x1f,0x12,0x23,0x24,0x48,0x10,0x80,0xff,0x00,0x3e,0x04,0xa8,0x98,0x7f,0xc9,0x28,0xee,0x28,0x28,0xd8,0x47,0x82 -+// 30306 癢 ; -+,0x00,0x1f,0x11,0x57,0x30,0x17,0x10,0x3f,0x51,0x13,0x1d,0x11,0x21,0x21,0x41,0x01,0x80,0xff,0x10,0xfe,0x40,0xfe,0x40,0xff,0x08,0xff,0x0a,0xf8,0x24,0x58,0x8e,0x04 -+// 30307 癣 ; -+,0x00,0x00,0x1f,0x12,0x53,0x34,0x1f,0x15,0x37,0x55,0x17,0x14,0x20,0x2f,0x44,0x00,0x80,0x40,0xff,0x00,0xa2,0x94,0xff,0x48,0xc8,0x5e,0xc8,0x48,0x3f,0xc8,0x08,0x08 -+// 30308 癤 ; -+,0x00,0x0f,0x0a,0x4b,0x2a,0x2c,0x0b,0x1a,0x2b,0x4a,0x0b,0x12,0x12,0x22,0x23,0x42,0x40,0xff,0x10,0xde,0xa8,0x44,0xde,0x52,0xd2,0x52,0xd2,0x52,0x9a,0xd4,0x50,0x10 -+// 30309 癥 ; -+,0x00,0x1f,0x10,0x52,0x35,0x19,0x12,0x15,0x3c,0x55,0x14,0x15,0x14,0x25,0x24,0x44,0x80,0xff,0x40,0x54,0x54,0xf8,0x0f,0xfa,0x0a,0xea,0x4a,0xe4,0x44,0xea,0x13,0x21 -+// 30310 癦 ; -+,0x00,0x00,0x1f,0x10,0x57,0x35,0x17,0x10,0x37,0x50,0x1f,0x14,0x10,0x27,0x20,0x4f,0x80,0x40,0xfe,0x00,0xfc,0x54,0xfc,0x40,0xfc,0x40,0xfe,0x94,0x40,0xfe,0x40,0xff -+// 30311 癧 ; -+,0x00,0x1f,0x10,0x17,0x54,0x35,0x14,0x17,0x35,0x56,0x14,0x15,0x29,0x29,0x57,0x00,0x40,0xff,0x00,0xff,0x00,0xde,0x84,0xdf,0xce,0xb5,0xa0,0x3e,0x20,0x20,0xff,0x00 -+// 30312 癨 ; -+,0x00,0x0f,0x08,0x4b,0x28,0x2b,0x0c,0x1b,0x29,0x4a,0x0f,0x0a,0x13,0x12,0x23,0x42,0x40,0xff,0x00,0xfe,0x20,0xff,0x21,0xae,0x40,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00 -+// 30313 癩 ; -+,0x00,0x1f,0x11,0x11,0x5f,0x31,0x17,0x15,0x35,0x57,0x13,0x15,0x25,0x29,0x51,0x01,0x80,0xff,0x10,0x1f,0xd2,0x3e,0xd2,0x5e,0x52,0xde,0x12,0x9e,0x40,0x12,0x11,0x21 -+// 30314 癪 ; -+,0x00,0x1f,0x10,0x1f,0x52,0x32,0x1f,0x12,0x37,0x56,0x1a,0x12,0x12,0x22,0x22,0x42,0x40,0xff,0x08,0xbe,0x08,0x3e,0x88,0x7f,0x22,0xbe,0x62,0x3e,0x22,0x3e,0x14,0x22 -+// 30315 癫 ; -+,0x00,0x1f,0x12,0x1f,0x52,0x37,0x14,0x17,0x34,0x57,0x14,0x17,0x14,0x2f,0x24,0x48,0x40,0xff,0x00,0xbe,0x08,0x88,0xbe,0xa2,0xaa,0xaa,0xaa,0xaa,0xaa,0xd4,0xa2,0x41 -+// 30316 癬 ; -+,0x00,0x1f,0x12,0x13,0x54,0x37,0x15,0x17,0x35,0x55,0x17,0x10,0x15,0x2a,0x32,0x40,0x80,0xff,0x02,0xa2,0x94,0xff,0x48,0xc8,0x7e,0x48,0xc8,0x3f,0x48,0xa8,0xa8,0x08 -+// 30317 癭 ; -+,0x00,0x1f,0x14,0x17,0x54,0x37,0x14,0x17,0x33,0x54,0x1f,0x10,0x11,0x20,0x23,0x5c,0x40,0xff,0xa2,0xbe,0xa2,0xbe,0xa2,0xbe,0x14,0xa2,0xff,0x88,0x90,0x70,0x8e,0x02 -+// 30318 癮 ; -+,0x00,0x1f,0x10,0x17,0x55,0x35,0x16,0x15,0x35,0x55,0x16,0x14,0x14,0x25,0x25,0x44,0x80,0xff,0x00,0x7e,0x54,0x7e,0x10,0xff,0x02,0x7e,0x02,0x7e,0x52,0x49,0x45,0x3c -+// 30319 癯 ; -+,0x00,0x1f,0x14,0x17,0x54,0x37,0x14,0x17,0x32,0x53,0x16,0x1b,0x12,0x23,0x22,0x43,0x40,0xff,0xa2,0xbe,0xa2,0xbe,0xa2,0xbe,0x40,0xff,0x20,0xfe,0x20,0xfe,0x20,0xff -+// 30320 癰 ; -+,0x00,0x00,0x1f,0x15,0x1a,0x55,0x37,0x14,0x17,0x30,0x5f,0x1a,0x1f,0x28,0x28,0x47,0x80,0x40,0xff,0x48,0xa4,0x3f,0xe4,0xa4,0xbe,0x24,0xa4,0xbe,0xa4,0x24,0xbf,0xa0 -+// 30321 癱 ; -+,0x00,0x1f,0x12,0x17,0x52,0x33,0x11,0x17,0x35,0x57,0x11,0x17,0x11,0x2f,0x22,0x44,0x80,0xff,0x94,0xd2,0x9f,0xb4,0x14,0xdf,0x54,0xd4,0x1f,0xd4,0x14,0xd4,0x9f,0x50 -+// 30322 癲 ; -+,0x00,0x0f,0x09,0x4f,0x29,0x2b,0x0a,0x1b,0x2a,0x4b,0x0a,0x0b,0x12,0x13,0x22,0x44,0x40,0xff,0x00,0xff,0x08,0xde,0x52,0xde,0x52,0xde,0x52,0xd2,0x5e,0xc4,0x92,0x61 -+// 30323 癳 ; -+,0x00,0x1f,0x11,0x11,0x51,0x37,0x15,0x17,0x35,0x57,0x10,0x13,0x10,0x27,0x21,0x42,0x40,0xff,0x24,0xfc,0x24,0xff,0x55,0xdf,0x55,0xdf,0x88,0xf0,0x84,0xfe,0x28,0x64 -+// 30324 癴 ; -+,0x00,0x1f,0x12,0x14,0x59,0x3e,0x14,0x1a,0x3e,0x53,0x10,0x17,0x20,0x2f,0x20,0x40,0x40,0xff,0x24,0xf9,0x0e,0xf5,0x0f,0xf5,0x95,0xfc,0x20,0xfe,0x20,0xff,0xa0,0x40 -+// 30325 癵 ; -+,0x00,0x1f,0x14,0x54,0x39,0x1e,0x14,0x3e,0x50,0x1a,0x10,0x13,0x12,0x22,0x22,0x42,0x80,0xff,0x44,0xf9,0x0e,0xf4,0x0f,0xf5,0x95,0xf0,0x20,0xfe,0x52,0xaa,0x52,0x06 -+// 30326 癶 ; -+,0x00,0x3f,0x01,0x21,0x12,0x0a,0x04,0x04,0x08,0x10,0x60,0x00,0x00,0x00,0x00,0x00,0x44,0x4e,0x70,0x42,0x23,0x2c,0x10,0x18,0x0c,0x07,0x02,0x00,0x00,0x00,0x00,0x00 -+// 30327 癷 ; -+,0x00,0x3f,0x01,0x12,0x0a,0x04,0x18,0x6f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x40,0x48,0x50,0x22,0x14,0x08,0x07,0xfa,0x80,0x80,0xfe,0x80,0x80,0x80,0x80,0x80 -+// 30328 癸 ; -+,0x00,0x1f,0x01,0x12,0x0a,0x04,0x1b,0x60,0x00,0x3f,0x00,0x01,0x02,0x04,0x18,0x60,0x40,0x48,0x50,0x24,0x28,0x10,0xe8,0x87,0x82,0xfe,0x80,0x20,0x10,0x0c,0x06,0x02 -+// 30329 癹 ; -+,0x00,0x3e,0x02,0x24,0x14,0x0b,0x12,0x24,0x48,0x17,0x00,0x07,0x00,0x03,0x0c,0x30,0x88,0x92,0x44,0x28,0x10,0xec,0x27,0x22,0x1c,0xe0,0x20,0x40,0x80,0x60,0x18,0x10 -+// 30330 発 ; -+,0x00,0x3f,0x01,0x22,0x14,0x08,0x17,0x22,0x42,0x3f,0x02,0x02,0x04,0x04,0x08,0x30,0x48,0x52,0x24,0x28,0x10,0x0c,0xf7,0x22,0x20,0xfe,0x20,0x20,0x20,0x22,0x22,0x1e -+// 30331 登 ; -+,0x00,0x1f,0x01,0x12,0x0a,0x04,0x0f,0x10,0x27,0x44,0x04,0x07,0x00,0x04,0x02,0x3f,0x40,0x48,0x52,0x24,0x28,0x10,0xfc,0x07,0xf2,0x10,0x10,0xf0,0x00,0x10,0x20,0xfe -+// 30332 發 ; -+,0x3e,0x02,0x14,0x08,0x1e,0x22,0x42,0x1e,0x11,0x10,0x1e,0x02,0x02,0x02,0x14,0x09,0x88,0x52,0x24,0x18,0xf7,0x92,0x90,0x8e,0x00,0xfc,0x08,0x50,0x20,0x58,0x8c,0x04 -+// 30333 白 ; -+,0x01,0x01,0x02,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 30334 百 ; -+,0x00,0x7f,0x01,0x01,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x0f,0x08,0x00,0xff,0x80,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0xf8,0x08 -+// 30335 癿 ; -+,0x08,0x08,0x10,0x3f,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x00,0x00,0x20,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 30336 皀 ; -+,0x01,0x02,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x10,0x10,0x1f,0x10,0x10,0x0f,0x00,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x10,0xf8,0x00,0x02,0x02,0xfe,0x00 -+// 30337 皁 ; -+,0x00,0x01,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x80,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80 -+// 30338 皂 ; -+,0x00,0x01,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x01,0x01,0x7f,0x01,0x01,0x00,0x00,0x80,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x02,0xff,0x00,0x02,0x02,0xfe,0x00 -+// 30339 皃 ; -+,0x01,0x02,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 30340 的 ; -+,0x08,0x08,0x10,0x3e,0x22,0x22,0x23,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x40,0x40,0x40,0x7e,0x82,0x82,0x02,0x42,0x22,0x32,0x12,0x02,0x02,0x14,0x08,0x00 -+// 30341 皅 ; -+,0x00,0x08,0x10,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 30342 皆 ; -+,0x10,0x12,0x1f,0x10,0x12,0x14,0x19,0x12,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x40,0x44,0x4e,0x70,0x41,0x41,0x3f,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 30343 皇 ; -+,0x01,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x80,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 30344 皈 ; -+,0x08,0x10,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x22,0x02,0x04,0x0b,0x04,0x1e,0xe0,0x00,0x00,0xfc,0x44,0x44,0x48,0x28,0x28,0x10,0x28,0x44,0x87,0x02 -+// 30345 皉 ; -+,0x10,0x18,0x10,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x22,0x00,0x48,0x48,0x48,0x48,0x49,0x4a,0x7c,0x48,0x48,0x48,0x48,0x58,0x69,0x89,0x07,0x00 -+// 30346 皊 ; -+,0x00,0x08,0x08,0x3e,0x22,0x22,0x23,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x10,0x10,0x28,0x44,0xa4,0x13,0x10,0xfe,0x04,0x08,0x50,0x20,0x30,0x10,0x00 -+// 30347 皋 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x01,0x7f,0x04,0x08,0x10,0x6f,0x00,0x00,0x00,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x88,0x02,0xff,0x10,0x88,0x87,0xfa,0x80,0x80,0x80 -+// 30348 皌 ; -+,0x08,0x08,0x10,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x25,0x22,0x04,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x38,0x58,0x54,0x94,0x12,0x13,0x12,0x10 -+// 30349 皍 ; -+,0x01,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x10,0x13,0x1c,0x10,0x10,0x16,0x18,0x00,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x7c,0x44,0x44,0x44,0x54,0x48,0x40,0x40 -+// 30350 皎 ; -+,0x00,0x08,0x10,0x3d,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x3c,0x24,0x00,0x03,0x0c,0x40,0x20,0x22,0xff,0x48,0x84,0x0a,0x8a,0x88,0x50,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 30351 皏 ; -+,0x08,0x08,0x10,0x3f,0x22,0x22,0x22,0x3e,0x23,0x22,0x22,0x3e,0x22,0x21,0x02,0x04,0x02,0x84,0x48,0xfe,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x88,0x88,0x08,0x08,0x08 -+// 30352 皐 ; -+,0x01,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x30,0x0e,0x01,0x06,0x38,0x7f,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x8e,0xb0,0xc0,0xb0,0x8e,0xff,0x80,0x80,0x80 -+// 30353 皑 ; -+,0x08,0x09,0x11,0x3d,0x25,0x24,0x25,0x3c,0x24,0x25,0x25,0x3d,0x25,0x21,0x00,0x00,0x20,0x22,0x22,0x22,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00,0x01,0x01,0xff,0x00 -+// 30354 皒 ; -+,0x08,0x09,0x10,0x3c,0x24,0x27,0x24,0x3c,0x24,0x24,0x27,0x3c,0x24,0x20,0x01,0x00,0x68,0xc8,0x4a,0x49,0x48,0xff,0x48,0x5a,0x6a,0xcc,0x48,0x54,0x65,0x45,0x43,0x81 -+// 30355 皓 ; -+,0x10,0x18,0x20,0x7c,0x45,0x46,0x44,0x7d,0x44,0x44,0x44,0x44,0x7c,0x44,0x40,0x00,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xff,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 30356 皔 ; -+,0x08,0x08,0x10,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x3f,0x22,0x20,0x00,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 30357 皕 ; -+,0x00,0x7f,0x08,0x08,0x3f,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x3f,0x21,0x21,0x00,0x00,0x7f,0x10,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x00 -+// 30358 皖 ; -+,0x10,0x18,0x21,0x7d,0x46,0x44,0x44,0x7c,0x47,0x44,0x44,0x7c,0x44,0x41,0x02,0x04,0x20,0x10,0xff,0x01,0x02,0xfc,0x00,0x00,0xff,0x90,0x90,0x90,0x91,0x11,0x0f,0x00 -+// 30359 皗 ; -+,0x10,0x19,0x21,0x7d,0x45,0x45,0x45,0x7d,0x45,0x45,0x45,0x7d,0x46,0x42,0x04,0x08,0x00,0xff,0x11,0x11,0x7d,0x11,0xff,0x01,0x7d,0x45,0x45,0x7d,0x45,0x01,0x05,0x02 -+// 30360 皘 ; -+,0x10,0x19,0x20,0x7d,0x44,0x47,0x44,0x7d,0x45,0x45,0x45,0x7d,0x45,0x41,0x01,0x01,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 30361 皙 ; -+,0x04,0x04,0x7f,0x0c,0x16,0x25,0x44,0x05,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x0e,0x70,0x40,0x7f,0x44,0x44,0x84,0x04,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 30362 皚 ; -+,0x10,0x10,0x20,0x7c,0x44,0x44,0x47,0x7c,0x44,0x44,0x44,0x7c,0x44,0x40,0x03,0x00,0x10,0x10,0x92,0x92,0xfe,0x00,0xff,0x00,0xfe,0x82,0xfe,0x00,0x44,0x28,0xff,0x00 -+// 30363 皛 ; -+,0x01,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x08,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 30364 皜 ; -+,0x08,0x08,0x13,0x3c,0x24,0x24,0x24,0x3c,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x01,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 30365 皝 ; -+,0x04,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x7f,0x04,0x3f,0x04,0x07,0x7c,0x00,0x00,0x10,0x10,0x12,0x92,0x54,0x50,0xff,0x28,0xa8,0x28,0x28,0x28,0xa9,0x49,0x47,0x80 -+// 30366 皞 ; -+,0x00,0x10,0x18,0x20,0x7c,0x44,0x44,0x44,0x7d,0x44,0x44,0x45,0x7e,0x44,0x00,0x00,0x20,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x48,0x94,0x13,0xfe,0x10,0x10,0x10 -+// 30367 皟 ; -+,0x08,0x09,0x10,0x3d,0x24,0x27,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x01,0x20,0xff,0x20,0xfe,0x20,0xff,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x00,0x48,0x84,0x02 -+// 30368 皠 ; -+,0x08,0x08,0x10,0x3e,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x10,0x92,0x92,0xfe,0x52,0x48,0xff,0x90,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 30369 皡 ; -+,0x08,0x08,0x11,0x3d,0x25,0x25,0x25,0x3d,0x25,0x24,0x24,0x3d,0x27,0x00,0x00,0x00,0x20,0x40,0xfc,0x04,0x04,0xfc,0x04,0xfc,0x24,0xa8,0xa8,0x24,0xff,0x20,0x20,0x20 -+// 30370 皢 ; -+,0x08,0x08,0x11,0x3c,0x27,0x24,0x27,0x3c,0x27,0x24,0x27,0x3c,0x24,0x20,0x01,0x02,0x20,0x20,0xfc,0x20,0xff,0x84,0xdf,0x84,0xdf,0x00,0xff,0x48,0x49,0x89,0x07,0x00 -+// 30371 皣 ; -+,0x08,0x08,0x13,0x3c,0x24,0x27,0x25,0x3f,0x25,0x25,0x27,0x3c,0x27,0x20,0x00,0x00,0x88,0x88,0xff,0x88,0x00,0xfe,0x24,0xff,0x24,0x24,0xff,0x20,0xff,0x20,0x20,0x20 -+// 30372 皤 ; -+,0x08,0x0b,0x11,0x3c,0x27,0x24,0x24,0x3d,0x26,0x25,0x25,0x3d,0x25,0x21,0x01,0x01,0x1e,0xe0,0x24,0xa8,0xff,0x70,0xa8,0x24,0x23,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 30373 皥 ; -+,0x08,0x08,0x10,0x3c,0x24,0x24,0x24,0x3c,0x25,0x24,0x25,0x3f,0x24,0x00,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x24,0xa8,0x24,0xff,0x20,0x20,0x20,0x20 -+// 30374 皦 ; -+,0x20,0x31,0x23,0x7a,0x4b,0x4a,0x4b,0x79,0x4f,0x49,0x49,0x7a,0x4a,0x04,0x09,0x10,0x88,0x08,0xc8,0x50,0xdf,0x52,0xd2,0x12,0xea,0x0a,0xc4,0x44,0x4c,0x4a,0x53,0xa2 -+// 30375 皧 ; -+,0x08,0x09,0x10,0x3c,0x25,0x25,0x26,0x3d,0x24,0x24,0x24,0x3c,0x25,0x02,0x01,0x06,0x1e,0xe4,0xa4,0xa8,0xff,0x11,0x56,0x7d,0x40,0x7c,0xc4,0xa8,0x10,0x6c,0x87,0x02 -+// 30376 皨 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x10,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x1f,0x00,0x7f,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x80,0xfc,0x80,0xff -+// 30377 皩 ; -+,0x04,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x3f,0x08,0x3f,0x08,0x08,0x0f,0x70,0x01,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x90,0x52,0x14,0xff,0x28,0x28,0x28,0x49,0x89,0x07 -+// 30378 皪 ; -+,0x10,0x11,0x21,0x7a,0x4f,0x49,0x4a,0x7f,0x48,0x4b,0x48,0x78,0x49,0x42,0x0c,0x00,0x20,0x22,0x74,0xdf,0x72,0x54,0x5a,0xff,0x20,0xff,0x60,0xb0,0x28,0x27,0x22,0x20 -+// 30379 皫 ; -+,0x10,0x10,0x21,0x7d,0x45,0x45,0x45,0x7d,0x45,0x45,0x45,0x7d,0x46,0x45,0x05,0x0a,0x20,0x10,0xff,0x48,0xfe,0x4a,0xfe,0x02,0x48,0x7e,0x49,0x69,0x47,0x12,0x69,0x29 -+// 30380 皬 ; -+,0x11,0x18,0x21,0x7d,0x44,0x44,0x44,0x7c,0x45,0x45,0x47,0x7d,0x45,0x41,0x01,0x01,0xff,0x10,0xff,0x11,0xd6,0x10,0xa6,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 30381 皭 ; -+,0x10,0x13,0x21,0x78,0x4b,0x4a,0x4b,0x78,0x4b,0x4a,0x4b,0x7a,0x4b,0x42,0x02,0x03,0x1e,0xe4,0x26,0x94,0xfe,0x92,0xfe,0x02,0xe2,0x3f,0xe2,0x2a,0xea,0x42,0xea,0x24 -+// 30382 皮 ; -+,0x00,0x00,0x1f,0x10,0x10,0x10,0x17,0x12,0x11,0x11,0x10,0x10,0x10,0x21,0x22,0x4c,0x40,0x40,0xfe,0x42,0x44,0x40,0xf8,0x08,0x10,0x10,0xa0,0x40,0xa0,0x18,0x07,0x02 -+// 30383 皯 ; -+,0x04,0x04,0x04,0x3f,0x25,0x24,0x24,0x3f,0x29,0x29,0x26,0x22,0x25,0x28,0x30,0x40,0x00,0x00,0x7f,0x88,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0x08 -+// 30384 皰 ; -+,0x04,0x04,0x3f,0x25,0x24,0x24,0x3f,0x21,0x32,0x2a,0x24,0x26,0x29,0x31,0x20,0x40,0x20,0x20,0xbe,0x42,0x42,0xfa,0x4a,0x4a,0x6a,0x52,0x4a,0x44,0x40,0x41,0x41,0x3f -+// 30385 皱 ; -+,0x10,0x10,0x1e,0x24,0x44,0x08,0x7e,0x02,0x02,0x7e,0x02,0x02,0x7f,0x01,0x02,0x04,0x10,0x10,0x10,0xff,0x91,0x92,0x90,0xfe,0xa2,0xa4,0xa4,0x98,0x18,0x24,0x43,0x82 -+// 30386 皲 ; -+,0x00,0x3f,0x29,0x48,0x3e,0x10,0x28,0x3e,0x08,0x08,0x0e,0x78,0x09,0x09,0x0a,0x0c,0x10,0x90,0x10,0xff,0x92,0x94,0x90,0xfc,0xa4,0xa4,0xa4,0xa8,0x18,0x24,0x47,0x82 -+// 30387 皳 ; -+,0x08,0x0a,0x0a,0x08,0x7f,0x08,0x49,0x2a,0x0c,0x1a,0x29,0x48,0x09,0x09,0x2a,0x14,0x08,0x08,0x08,0x7f,0x49,0x48,0x7e,0x52,0x52,0x54,0x94,0x88,0x18,0x24,0x47,0x82 -+// 30388 皴 ; -+,0x08,0x12,0x21,0x3f,0x04,0x12,0x21,0x48,0x1f,0x12,0x2a,0x44,0x0a,0x11,0x22,0x44,0x08,0x08,0x7f,0x49,0x4a,0x48,0x48,0x7e,0x62,0x64,0x94,0x88,0x98,0x24,0x47,0x82 -+// 30389 皵 ; -+,0x14,0x14,0x14,0x7f,0x14,0x14,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x21,0x02,0x08,0x08,0x08,0x7f,0x49,0x4a,0x48,0x7e,0x52,0x52,0x52,0x54,0x88,0x94,0x23,0x42 -+// 30390 皶 ; -+,0x08,0x08,0x7f,0x1c,0x2a,0x49,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x0e,0x70,0x01,0x02,0x08,0x08,0x08,0x7f,0x49,0x4a,0x7e,0x62,0x62,0x54,0x54,0x88,0x88,0x94,0x23,0x42 -+// 30391 皷 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x00,0x3f,0x21,0x3f,0x22,0x14,0x17,0x79,0x02,0x04,0x08,0x08,0x88,0x7f,0x49,0x4a,0x48,0x7e,0x62,0xa4,0xa4,0x98,0x18,0x24,0x47,0x82 -+// 30392 皸 ; -+,0x00,0x3f,0x24,0x5f,0x04,0x1f,0x15,0x1f,0x15,0x1f,0x04,0x3f,0x04,0x04,0x05,0x06,0x08,0x88,0x88,0x7f,0x49,0x4a,0x48,0x7e,0x62,0x64,0x54,0x88,0x98,0xa4,0x47,0x82 -+// 30393 皹 ; -+,0x04,0x04,0x3f,0x25,0x24,0x24,0x3f,0x22,0x32,0x2a,0x24,0x2a,0x2a,0x30,0x20,0x40,0x00,0x7f,0x49,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0x08,0x08 -+// 30394 皺 ; -+,0x20,0x3f,0x41,0x29,0x29,0x3d,0x12,0x10,0x3f,0x49,0x29,0x3d,0x29,0x12,0x25,0x42,0x08,0x08,0x7f,0x49,0x4a,0x48,0x7f,0x62,0x62,0x54,0x54,0x48,0x8c,0x94,0x23,0x42 -+// 30395 皻 ; -+,0x04,0x07,0x04,0x3f,0x26,0x3c,0x27,0x29,0x2f,0x29,0x2f,0x29,0x29,0x2e,0x31,0x42,0x08,0x88,0x08,0xbf,0xa9,0x2a,0xa8,0x3e,0x22,0x54,0x54,0x48,0x48,0x94,0x23,0x42 -+// 30396 皼 ; -+,0x04,0x3f,0x04,0x1e,0x00,0x3f,0x21,0x5e,0x00,0x3e,0x22,0x3e,0x24,0x16,0x79,0x02,0x08,0x08,0x08,0x7f,0x49,0xca,0x48,0x7e,0x62,0x62,0x54,0x54,0x88,0x94,0x27,0xc2 -+// 30397 皽 ; -+,0x08,0x7f,0x00,0x7f,0x55,0x5d,0x41,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x00,0x7f,0x08,0x88,0x08,0x7f,0x49,0x4a,0x48,0x7e,0x62,0x52,0x54,0x4c,0x88,0x94,0xa3,0x42 -+// 30398 皾 ; -+,0x08,0x7f,0x08,0x7f,0x55,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x15,0x62,0x08,0x08,0x08,0x7f,0x49,0x4a,0x48,0x7f,0x62,0x52,0x52,0x4c,0x8c,0x94,0x23,0x42 -+// 30399 皿 ; -+,0x00,0x1f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x7f,0x00,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0xff,0x00,0x00 -+// 30400 盀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0x80,0x80,0x90,0x88,0x86,0x82,0x80,0x80,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30401 盁 ; -+,0x00,0x3f,0x02,0x02,0x04,0x04,0x08,0x10,0x60,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0x00,0xfc,0x08,0x10,0x3e,0x02,0x02,0x14,0x08,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30402 盂 ; -+,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x02,0x01,0x1f,0x12,0x12,0x12,0x12,0x7f,0x00,0x00,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x00,0xf8,0x48,0x48,0x48,0x48,0xff,0x00 -+// 30403 盃 ; -+,0x00,0x3f,0x00,0x00,0x01,0x06,0x18,0x60,0x00,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0x02,0xff,0x40,0x80,0x90,0x88,0x86,0x82,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30404 盄 ; -+,0x1f,0x00,0x1f,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0xf8,0x88,0xf8,0x80,0x80,0xfc,0x84,0x94,0x88,0x80,0xfc,0x44,0x44,0x44,0xff,0x00 -+// 30405 盅 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x1f,0x12,0x12,0x12,0x12,0x7f,0x00,0x80,0x80,0xf8,0x88,0x88,0xf8,0x88,0x80,0x80,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30406 盆 ; -+,0x00,0x02,0x04,0x08,0x17,0x61,0x02,0x04,0x18,0x6f,0x09,0x09,0x09,0x09,0x7f,0x00,0x40,0x20,0x10,0x08,0xf7,0x12,0x10,0x50,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30407 盇 ; -+,0x00,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0x80,0x80,0x84,0xfe,0x20,0x10,0x88,0x47,0x02,0xf8,0x48,0x48,0x48,0x48,0xff,0x00 -+// 30408 盈 ; -+,0x00,0x1f,0x04,0x05,0x04,0x09,0x08,0x11,0x22,0x40,0x1f,0x12,0x12,0x12,0x7f,0x00,0x00,0xf8,0x08,0xd0,0x5c,0x44,0x84,0x44,0x28,0x10,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30409 盉 ; -+,0x00,0x1f,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0x7c,0x80,0x80,0xff,0xc0,0xa0,0x98,0x87,0x02,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30410 益 ; -+,0x00,0x08,0x04,0x02,0x3f,0x02,0x04,0x18,0x60,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0x10,0x18,0x20,0x40,0xfe,0x10,0x08,0x06,0x02,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30411 盋 ; -+,0x01,0x01,0x3f,0x02,0x03,0x05,0x08,0x10,0x63,0x0c,0x1f,0x12,0x12,0x12,0x7f,0x00,0x10,0x08,0xff,0x00,0xf8,0x10,0xa0,0xf0,0x0f,0x02,0xf8,0x48,0x48,0x48,0xff,0x00 -+// 30412 盌 ; -+,0x08,0x08,0x0f,0x10,0x31,0x49,0x06,0x04,0x18,0x60,0x0f,0x09,0x09,0x09,0x7f,0x00,0x00,0x00,0xbe,0xa2,0x22,0x2a,0x25,0x21,0x1f,0x00,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30413 盍 ; -+,0x00,0x00,0x1f,0x00,0x00,0x7f,0x02,0x04,0x0f,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0x80,0x80,0xfe,0x80,0x80,0xff,0x20,0x10,0xf8,0x08,0xfc,0x44,0x44,0x44,0xff,0x00 -+// 30414 盎 ; -+,0x00,0x00,0x0f,0x08,0x08,0x7f,0x01,0x02,0x04,0x1f,0x69,0x09,0x09,0x09,0x7f,0x00,0x80,0x80,0xf8,0x88,0x88,0xff,0x40,0x20,0x18,0xff,0x4a,0x48,0x48,0x48,0xff,0x00 -+// 30415 盏 ; -+,0x01,0x01,0x01,0x3f,0x00,0x7f,0x00,0x01,0x3e,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0x20,0x10,0xfc,0x00,0xfe,0x80,0x5c,0xe2,0x1a,0x06,0xfc,0x44,0x44,0x44,0xff,0x00 -+// 30416 盐 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x07,0x7c,0x20,0x0f,0x09,0x09,0x09,0x09,0x7f,0x00,0x20,0x20,0x20,0xa8,0x24,0x26,0xa2,0x20,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30417 监 ; -+,0x02,0x12,0x12,0x12,0x12,0x13,0x12,0x02,0x00,0x1f,0x12,0x12,0x12,0x12,0x7f,0x00,0x40,0x60,0x40,0x7f,0xa0,0x10,0x18,0x08,0x00,0xfc,0x44,0x44,0x44,0x44,0xff,0x00 -+// 30418 盒 ; -+,0x00,0x01,0x02,0x04,0x1b,0x60,0x07,0x04,0x07,0x00,0x0f,0x09,0x09,0x09,0x7f,0x00,0x80,0x40,0x20,0x18,0xef,0x02,0xf0,0x10,0xf0,0x00,0xf8,0x48,0x48,0x48,0xff,0x00 -+// 30419 盓 ; -+,0x10,0x0b,0x28,0x14,0x17,0x08,0x08,0x30,0x10,0x1f,0x09,0x09,0x09,0x09,0x7f,0x00,0x00,0xfe,0x20,0x20,0xff,0x20,0x20,0xa0,0x40,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30420 盔 ; -+,0x02,0x02,0x7f,0x04,0x04,0x0a,0x0a,0x14,0x21,0x46,0x0f,0x09,0x09,0x09,0x7f,0x00,0x00,0x00,0xff,0x40,0x40,0x46,0xa8,0x90,0x08,0x07,0xfe,0x24,0x24,0x24,0xff,0x00 -+// 30421 盕 ; -+,0x08,0x04,0x24,0x10,0x12,0x04,0x08,0x31,0x11,0x12,0x1f,0x12,0x12,0x12,0x7f,0x00,0x00,0xf8,0x88,0x88,0xc8,0xa8,0xa9,0x09,0x07,0x00,0xfc,0x44,0x44,0x44,0xff,0x00 -+// 30422 盖 ; -+,0x04,0x02,0x3f,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0x10,0x24,0xfe,0x80,0x88,0xfc,0x80,0x82,0xff,0x00,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30423 盗 ; -+,0x20,0x10,0x14,0x05,0x09,0x0a,0x30,0x10,0x13,0x1f,0x09,0x09,0x09,0x09,0x7f,0x00,0x80,0x80,0xfe,0x22,0x24,0x60,0x50,0x88,0x07,0xfe,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30424 盘 ; -+,0x01,0x02,0x0f,0x09,0x08,0x7f,0x09,0x10,0x10,0x20,0x4f,0x09,0x09,0x09,0x7f,0x00,0x00,0x00,0xf8,0x08,0x88,0xff,0x08,0x88,0xa8,0x10,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30425 盙 ; -+,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x1f,0x12,0x12,0x12,0x7f,0x00,0x90,0xff,0x80,0xf8,0x88,0xf8,0x88,0xf8,0xa8,0x10,0xfc,0x44,0x44,0x44,0xff,0x00 -+// 30426 盚 ; -+,0x00,0x00,0x3f,0x10,0x08,0x09,0x02,0x0c,0x32,0x01,0x1f,0x12,0x12,0x12,0x7f,0x00,0x90,0x88,0xfe,0x80,0x86,0xd8,0xa0,0x98,0x87,0x02,0xf8,0x48,0x48,0x48,0xff,0x00 -+// 30427 盛 ; -+,0x00,0x00,0x1f,0x10,0x10,0x1f,0x11,0x11,0x25,0x22,0x4f,0x09,0x09,0x09,0x7f,0x00,0x50,0x48,0xff,0x40,0x40,0x24,0x28,0x11,0x69,0x87,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30428 盜 ; -+,0x10,0x08,0x08,0x24,0x15,0x0a,0x08,0x30,0x11,0x12,0x0f,0x09,0x09,0x09,0x7f,0x00,0x80,0x80,0xfe,0xa2,0x24,0x20,0x50,0x88,0x07,0x02,0xf8,0x48,0x48,0x4a,0xff,0x00 -+// 30429 盝 ; -+,0x0f,0x00,0x0f,0x00,0x3f,0x10,0x0a,0x0c,0x32,0x01,0x1f,0x12,0x12,0x12,0x7f,0x00,0xf0,0x10,0xf0,0x10,0xfe,0x84,0xc8,0xb0,0x9e,0x04,0xfc,0x48,0x48,0x48,0xff,0x00 -+// 30430 盞 ; -+,0x02,0x02,0x3f,0x01,0x07,0x3a,0x01,0x3f,0x00,0x07,0x78,0x1f,0x12,0x12,0x7f,0x00,0x80,0x5e,0xe0,0x38,0xc2,0xc2,0x3e,0xc4,0x79,0x91,0x0f,0xfc,0x24,0x24,0xff,0x00 -+// 30431 盟 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x01,0x1f,0x12,0x12,0x12,0x7f,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x82,0x8a,0x04,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30432 盠 ; -+,0x07,0x08,0x0f,0x00,0x7f,0x06,0x19,0x66,0x19,0x06,0x39,0x0f,0x09,0x09,0x09,0x7f,0xf0,0x10,0xe0,0x20,0xff,0x08,0x10,0xa0,0x58,0x47,0x42,0xfc,0x24,0x24,0x24,0xff -+// 30433 盡 ; -+,0x00,0x0f,0x00,0x7f,0x00,0x0f,0x00,0x3f,0x14,0x22,0x1f,0x12,0x12,0x12,0x7f,0x00,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfe,0x88,0x44,0xfc,0x44,0x44,0x44,0xff,0x00 -+// 30434 盢 ; -+,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x40,0x01,0x0f,0x09,0x09,0x09,0x7f,0x00,0x14,0x12,0x12,0x10,0xff,0x28,0x28,0x44,0x87,0x02,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30435 監 ; -+,0x00,0x3f,0x24,0x3f,0x20,0x3f,0x24,0x3f,0x00,0x1f,0x12,0x12,0x12,0x12,0x7f,0x00,0x10,0x98,0x10,0x9f,0xa0,0xa8,0x24,0xc4,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 30436 盤 ; -+,0x04,0x08,0x1f,0x15,0x15,0x7f,0x19,0x15,0x25,0x22,0x5f,0x12,0x12,0x12,0x7f,0x00,0x00,0x78,0x48,0x48,0x87,0xfc,0x44,0x28,0x18,0xe7,0xfc,0x44,0x44,0x44,0xff,0x00 -+// 30437 盥 ; -+,0x06,0x18,0x10,0x17,0x11,0x1e,0x12,0x14,0x1f,0x10,0x00,0x0f,0x09,0x09,0x09,0x3f,0x40,0x4e,0x42,0x52,0x62,0x6e,0x52,0x4a,0x5e,0x82,0x00,0xfc,0x24,0x24,0x24,0xff -+// 30438 盦 ; -+,0x00,0x01,0x06,0x1b,0x60,0x1f,0x01,0x0f,0x09,0x0a,0x0c,0x0f,0x00,0x1f,0x12,0x7f,0x80,0x40,0xb0,0xef,0x22,0xfc,0x40,0xf8,0x48,0x78,0x08,0xf8,0x00,0xfc,0x24,0xff -+// 30439 盧 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x27,0x24,0x5f,0x80,0xfc,0x80,0xff,0xf8,0x82,0x7e,0xfc,0x44,0xfc,0x44,0xfc,0x00,0xfe,0x92,0xff -+// 30440 盨 ; -+,0x05,0x04,0x18,0x62,0x04,0x18,0x62,0x02,0x04,0x18,0x63,0x1f,0x12,0x12,0x7f,0x00,0xfe,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82,0xfd,0x44,0x44,0xff,0x00 -+// 30441 盩 ; -+,0x04,0x3f,0x04,0x7f,0x12,0x3f,0x04,0x7f,0x04,0x05,0x1f,0x12,0x12,0x12,0x7f,0x00,0x10,0x90,0x1f,0xa4,0x24,0x64,0x94,0x98,0x64,0x83,0xfa,0x48,0x48,0x48,0xff,0x00 -+// 30442 盪 ; -+,0x21,0x11,0x11,0x45,0x25,0x28,0x0f,0x11,0x73,0x15,0x12,0x14,0x0f,0x09,0x09,0x3f,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfc,0x24,0x54,0x88,0xfc,0x24,0x24,0xff -+// 30443 盫 ; -+,0x00,0x07,0x38,0x07,0x04,0x3f,0x01,0x0f,0x09,0x0a,0x09,0x0f,0x00,0x1f,0x12,0x7f,0xc0,0x38,0x07,0xf8,0x08,0xff,0x20,0xfc,0x24,0x1c,0xe4,0xfc,0x00,0xfc,0x24,0xff -+// 30444 盬 ; -+,0x00,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x24,0x3f,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0x20,0xbf,0x48,0x88,0x7f,0x08,0x3e,0x22,0xbe,0x00,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 30445 盭 ; -+,0x08,0x11,0x3e,0x08,0x3f,0x04,0x3f,0x0a,0x1f,0x04,0x1f,0x04,0x0f,0x09,0x09,0x7f,0x20,0x20,0x22,0x7f,0x44,0xa4,0xa8,0x18,0x18,0x24,0x43,0x82,0xfc,0x24,0x24,0xff -+// 30446 目 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 30447 盯 ; -+,0x00,0x3e,0x23,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0x02,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 30448 盰 ; -+,0x00,0x7d,0x44,0x44,0x7c,0x44,0x47,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x40,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 30449 盱 ; -+,0x00,0x7d,0x44,0x44,0x7c,0x44,0x47,0x7c,0x44,0x44,0x44,0x7c,0x44,0x40,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 30450 盲 ; -+,0x01,0x00,0x7f,0x08,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x00,0x00,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 30451 盳 ; -+,0x00,0x7c,0x44,0x47,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00,0x20,0x10,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x00,0x00 -+// 30452 直 ; -+,0x00,0x00,0x3f,0x01,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x7f,0x00,0x80,0x80,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0xff,0x00 -+// 30453 盵 ; -+,0x00,0x7c,0x44,0x44,0x45,0x7d,0x46,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00,0x80,0x80,0x82,0xff,0x00,0x00,0xfc,0x08,0x10,0x20,0x20,0x41,0x81,0x81,0x7f,0x00 -+// 30454 盶 ; -+,0x00,0x7c,0x44,0x44,0x7c,0x45,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x45,0x42,0x04,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x09,0x07,0x00 -+// 30455 盷 ; -+,0x00,0x7c,0x44,0x45,0x45,0x7e,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00,0x80,0x80,0xfe,0x02,0x02,0x42,0x22,0x22,0x0a,0x12,0x22,0xc2,0x02,0x02,0x14,0x08 -+// 30456 相 ; -+,0x08,0x08,0x08,0x08,0x7f,0x0c,0x1a,0x19,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 30457 盹 ; -+,0x00,0x3c,0x24,0x27,0x24,0x3d,0x25,0x25,0x3d,0x25,0x25,0x24,0x3c,0x24,0x00,0x00,0x20,0x20,0x20,0xfe,0x20,0x24,0x24,0x24,0x24,0xfc,0x24,0x20,0x21,0x21,0x1f,0x00 -+// 30458 盺 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x25,0x21,0x02,0x00,0x0e,0xf0,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08 -+// 30459 盻 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x26,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x10,0x50,0x48,0x88,0x84,0x03,0xfe,0x40,0x40,0x7c,0x04,0x04,0x04,0x04,0x28,0x10 -+// 30460 盼 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x25,0x26,0x25,0x3c,0x24,0x24,0x24,0x3c,0x25,0x22,0x04,0x10,0x90,0x90,0x88,0x08,0x04,0x07,0xfa,0x48,0x48,0x48,0x88,0x88,0x08,0x28,0x10 -+// 30461 盽 ; -+,0x00,0x00,0x3c,0x25,0x24,0x3c,0x25,0x24,0x3c,0x24,0x27,0x24,0x3c,0x24,0x20,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 30462 盾 ; -+,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x13,0x12,0x13,0x12,0x13,0x22,0x22,0x23,0x42,0x7e,0xc0,0x40,0x40,0xff,0x40,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 30463 盿 ; -+,0x00,0x3c,0x24,0x27,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x23,0x0c,0x40,0x20,0x20,0xff,0x88,0x88,0x88,0x88,0x50,0x50,0x20,0x30,0x48,0x8c,0x07,0x02 -+// 30464 眀 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x01,0x02,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x82,0x82,0x82,0x0a,0x04 -+// 30465 省 ; -+,0x00,0x04,0x04,0x08,0x30,0x00,0x03,0x1f,0x64,0x07,0x04,0x07,0x04,0x04,0x07,0x04,0x80,0x88,0x84,0x8a,0xb2,0xc0,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 30466 眂 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0x0e,0xf0,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x08,0x29,0x45,0x83,0x01 -+// 30467 眃 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x24,0x00,0x00,0x04,0xfe,0x00,0x00,0x02,0xff,0x20,0x20,0x40,0x48,0x44,0x84,0xfe,0x82,0x00 -+// 30468 眄 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x3c,0x24,0x00,0x00,0x02,0xff,0x10,0x90,0x90,0x9e,0x92,0x92,0x92,0xfe,0x02,0x02,0x02,0x02,0x14,0x08 -+// 30469 眅 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x25,0x25,0x3d,0x22,0x24,0x0b,0x0e,0xf0,0x80,0x80,0x80,0xfe,0xc4,0xc4,0xa8,0xa8,0x10,0x10,0x28,0x44,0x87,0x02 -+// 30470 眆 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x25,0x21,0x02,0x20,0x10,0x12,0xff,0x40,0x40,0x7c,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x28,0x10 -+// 30471 眇 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x25,0x26,0x3c,0x24,0x24,0x24,0x3c,0x24,0x01,0x0e,0x20,0x20,0x20,0x28,0xa4,0xa2,0x23,0x21,0x20,0x26,0x24,0x08,0x10,0x60,0x80,0x00 -+// 30472 眈 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3e,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x22,0x04,0x08,0x20,0x20,0x20,0xff,0x21,0x22,0x30,0x50,0x50,0x50,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 30473 眉 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x13,0x12,0x12,0x13,0x12,0x12,0x23,0x22,0x22,0x43,0x02,0xfe,0x42,0x42,0xfe,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 30474 眊 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x25,0x24,0x3c,0x24,0x27,0x24,0x3c,0x24,0x20,0x00,0x00,0x1c,0xe0,0x20,0x20,0x3c,0xe0,0x20,0x22,0x3f,0xe0,0x20,0x21,0x21,0x1f,0x00 -+// 30475 看 ; -+,0x00,0x1f,0x00,0x1f,0x01,0x7f,0x02,0x07,0x0c,0x37,0x44,0x07,0x04,0x04,0x07,0x04,0x7c,0x80,0x80,0xfc,0x00,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 30476 県 ; -+,0x00,0x03,0x12,0x13,0x12,0x13,0x12,0x13,0x10,0x1f,0x00,0x04,0x08,0x10,0x20,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x40,0x48,0x44,0x42,0x41,0x40 -+// 30477 眍 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x00,0x00,0xff,0x00,0x04,0x86,0x44,0x24,0x18,0x08,0x14,0x26,0x42,0x82,0x00,0xff,0x00 -+// 30478 眎 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x27,0x24,0x24,0x3c,0x24,0x24,0x25,0x3d,0x22,0x20,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x10,0x10,0x94,0x94,0x92,0x12,0x11,0x11,0x50,0x20 -+// 30479 眏 ; -+,0x00,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x3f,0x24,0x24,0x24,0x3c,0x25,0x22,0x04,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x50,0x50,0x90,0x88,0x0c,0x07,0x02 -+// 30480 眐 ; -+,0x00,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x23,0x00,0x00,0x02,0xff,0x10,0x10,0x10,0x90,0x9e,0x90,0x90,0x90,0x90,0x90,0x92,0xff,0x00 -+// 30481 眑 ; -+,0x00,0x00,0x78,0x49,0x49,0x7a,0x4b,0x48,0x48,0x79,0x49,0x4b,0x48,0x78,0x48,0x00,0x88,0x88,0x88,0x28,0x3f,0x4a,0xca,0x8a,0x8a,0x0a,0x52,0xd2,0x52,0x22,0x54,0x88 -+// 30482 眒 ; -+,0x00,0x3c,0x24,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x24,0x3c,0x24,0x00,0x00,0x20,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x20,0x20,0x20,0x20,0x20 -+// 30483 眓 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x00,0x14,0x12,0x12,0xff,0x10,0x12,0x13,0x12,0x12,0x14,0x0c,0x28,0x55,0xa5,0x43,0x81 -+// 30484 眔 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x10,0x04,0x0c,0x10,0x22,0x46,0x08,0x10,0x20,0x00,0x00,0x00,0xfe,0x22,0x22,0xfe,0x02,0xc0,0x88,0x86,0x92,0x88,0x86,0x82,0x80,0x80,0x80 -+// 30485 眕 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x3c,0x21,0x06,0x20,0x20,0x50,0x88,0x04,0x23,0x40,0x88,0x10,0x20,0x42,0x84,0x18,0x60,0x80,0x00 -+// 30486 眖 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x21,0x02,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x4a,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 30487 眗 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x40,0x40,0xfe,0x82,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x8a,0x82,0x02,0x02,0x14,0x08 -+// 30488 眘 ; -+,0x00,0x00,0x7f,0x11,0x0a,0x04,0x18,0x67,0x04,0x07,0x04,0x07,0x04,0x04,0x07,0x04,0x80,0x80,0xff,0x22,0x14,0x08,0x07,0xfa,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 30489 眙 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x20,0x30,0x20,0x48,0x44,0x82,0xff,0x81,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 30490 眚 ; -+,0x08,0x08,0x0f,0x10,0x2f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x80,0x80,0xfc,0x80,0xf8,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 30491 眛 ; -+,0x00,0x3c,0x24,0x25,0x24,0x3c,0x27,0x24,0x3c,0x24,0x24,0x25,0x3d,0x22,0x24,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x70,0x68,0xa8,0xa4,0x24,0x23,0x22,0x20,0x20 -+// 30492 眜 ; -+,0x00,0x3c,0x24,0x27,0x3c,0x24,0x25,0x24,0x3c,0x24,0x24,0x25,0x3e,0x24,0x20,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xfc,0x70,0x70,0xa8,0xa8,0x24,0x23,0x20,0x20,0x20 -+// 30493 眝 ; -+,0x00,0x3c,0x25,0x25,0x26,0x3c,0x24,0x25,0x3c,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x40,0x20,0xff,0x01,0x02,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 30494 眞 ; -+,0x08,0x0f,0x08,0x0f,0x02,0x03,0x12,0x13,0x12,0x13,0x10,0x1f,0x02,0x04,0x08,0x30,0x00,0xfc,0x00,0xfe,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x10,0x08,0x06,0x02 -+// 30495 真 ; -+,0x00,0x00,0x3f,0x01,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x04,0x7f,0x02,0x0c,0x30,0x80,0x82,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x20,0x18,0x06 -+// 30496 眠 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x00,0xfe,0x02,0x02,0xfe,0x12,0x10,0xff,0x10,0x10,0x10,0x09,0x29,0x45,0x83,0x01 -+// 30497 眡 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x0e,0xf0,0x90,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0x89,0xa5,0xd3,0x89,0x00 -+// 30498 眢 ; -+,0x08,0x0f,0x11,0x21,0x52,0x0a,0x04,0x18,0x60,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7c,0x44,0x44,0x54,0x49,0x41,0x3f,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8 -+// 30499 眣 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x25,0x27,0x3c,0x24,0x24,0x24,0x3c,0x24,0x21,0x02,0x10,0x90,0xd0,0x90,0xfe,0x10,0x10,0xff,0x28,0x28,0x28,0x44,0x44,0x84,0x03,0x02 -+// 30500 眤 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x25,0x3d,0x22,0x04,0x08,0x00,0xfe,0x82,0x82,0xfe,0x82,0xb0,0xa2,0xac,0xb0,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 30501 眥 ; -+,0x04,0x14,0x17,0x14,0x17,0x38,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x20,0x26,0xb8,0x21,0xa1,0x1f,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x00 -+// 30502 眦 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x23,0x00,0x48,0x48,0x48,0x48,0x49,0x4a,0x6c,0x48,0x48,0x48,0x48,0x49,0x49,0xe9,0x07,0x00 -+// 30503 眧 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x00,0xfe,0x22,0x22,0x42,0x42,0x94,0x08,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 30504 眨 ; -+,0x00,0x7d,0x44,0x44,0x44,0x7d,0x44,0x44,0x7c,0x44,0x44,0x44,0x7d,0x46,0x44,0x00,0x04,0xfe,0x40,0x20,0x20,0xfe,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0xc0,0x3f,0x02 -+// 30505 眩 ; -+,0x00,0x3c,0x24,0x27,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x24,0x00,0x40,0x20,0x22,0xff,0x20,0x22,0x42,0xfc,0x08,0x10,0x20,0x44,0x82,0xfe,0x82,0x00 -+// 30506 眪 ; -+,0x00,0x3d,0x24,0x24,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xff,0x10,0x10,0xff,0x11,0x11,0x11,0x29,0x25,0x43,0x81,0x01,0x01,0x05,0x02 -+// 30507 眫 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3d,0x24,0x24,0x3c,0x27,0x24,0x24,0x3c,0x24,0x20,0x00,0x20,0x20,0x22,0xa4,0xa8,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 30508 眬 ; -+,0x00,0x3c,0x24,0x24,0x27,0x3c,0x24,0x24,0x3c,0x24,0x24,0x25,0x3d,0x26,0x22,0x04,0x40,0x50,0x48,0x48,0xfe,0x50,0x50,0x52,0x94,0x98,0x90,0x31,0x51,0x91,0x0f,0x00 -+// 30509 眭 ; -+,0x00,0x00,0x3c,0x25,0x24,0x3c,0x27,0x24,0x3c,0x24,0x25,0x24,0x3c,0x24,0x23,0x00,0x20,0x20,0x20,0xfe,0x20,0x22,0xff,0x00,0x20,0x20,0xfe,0x20,0x20,0x22,0xff,0x00 -+// 30510 眮 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xfe,0x02,0x02,0x7a,0x02,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 30511 眯 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x27,0x24,0x3c,0x24,0x24,0x25,0x3e,0x24,0x20,0x00,0x20,0x20,0x26,0x24,0xa8,0x22,0xff,0x70,0x70,0xa8,0xa8,0x24,0x23,0x22,0x20,0x20 -+// 30512 眰 ; -+,0x00,0x3d,0x24,0x24,0x24,0x3c,0x25,0x24,0x3c,0x24,0x25,0x24,0x3c,0x24,0x23,0x00,0x00,0xff,0x20,0x20,0x48,0x84,0xfe,0x92,0x10,0x10,0xfe,0x10,0x10,0x12,0xff,0x00 -+// 30513 眱 ; -+,0x00,0x38,0x2b,0x28,0x2b,0x38,0x2b,0x2a,0x3b,0x2a,0x28,0x28,0x38,0x29,0x2a,0x04,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x6a,0x54,0x88,0x04,0x03,0x02 -+// 30514 眲 ; -+,0x00,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x27,0x3c,0x24,0x20,0x00,0x00,0xfe,0x88,0x88,0xf8,0x88,0x88,0xf8,0x88,0x88,0x8f,0xf8,0x08,0x08,0x08,0x08 -+// 30515 眳 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x27,0x24,0x3c,0x24,0x00,0x00,0x20,0x20,0x7e,0x82,0x44,0x24,0x28,0x10,0x20,0xfe,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 30516 眴 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3e,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x80,0x80,0xfe,0x02,0x02,0xf2,0x92,0x92,0xf2,0x92,0x92,0xf2,0x02,0x02,0x14,0x08 -+// 30517 眵 ; -+,0x00,0x3e,0x24,0x24,0x27,0x3c,0x24,0x27,0x3c,0x24,0x24,0x25,0x3c,0x24,0x21,0x0e,0x20,0x3f,0x42,0x84,0x08,0x90,0x60,0xa0,0x3f,0x42,0xa4,0x28,0x10,0x60,0x80,0x00 -+// 30518 眶 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x00,0x00,0xff,0x00,0x7e,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0xfe,0x00,0x00,0xff,0x00 -+// 30519 眷 ; -+,0x08,0x04,0x02,0x1f,0x01,0x7f,0x02,0x04,0x1f,0x64,0x07,0x04,0x07,0x04,0x07,0x04,0x88,0x90,0xa0,0xfc,0x00,0xff,0x10,0x08,0xf4,0x13,0xf0,0x10,0xf0,0x10,0xf0,0x10 -+// 30520 眸 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x25,0x25,0x3d,0x26,0x24,0x27,0x3c,0x24,0x20,0x00,0x00,0x40,0x48,0x84,0xfe,0x02,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 30521 眹 ; -+,0x01,0x3c,0x24,0x25,0x24,0x3c,0x24,0x27,0x3c,0x24,0x24,0x24,0x3c,0x25,0x22,0x04,0x02,0x84,0x48,0xfe,0x20,0x20,0x20,0xff,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 30522 眺 ; -+,0x00,0x3c,0x24,0x26,0x25,0x3d,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x25,0x21,0x02,0x50,0x50,0x52,0x52,0x54,0x58,0x50,0xd8,0x54,0x52,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 30523 眻 ; -+,0x01,0x3c,0x24,0x27,0x24,0x3c,0x25,0x24,0x3c,0x27,0x24,0x24,0x3c,0x24,0x00,0x00,0x04,0x84,0x88,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 30524 眼 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa0,0xa0,0x92,0x94,0x88,0xa4,0xc7,0x82 -+// 30525 眽 ; -+,0x00,0x79,0x49,0x49,0x79,0x49,0x49,0x49,0x79,0x49,0x49,0x4a,0x7a,0x42,0x04,0x08,0x1e,0xe0,0x00,0x0e,0x70,0x50,0x51,0x52,0x54,0x48,0x48,0x48,0x44,0x54,0x63,0x42 -+// 30526 眾 ; -+,0x1f,0x12,0x12,0x1f,0x10,0x00,0x1f,0x00,0x08,0x08,0x14,0x12,0x22,0x40,0x00,0x00,0xfc,0x44,0x44,0xfc,0x04,0x78,0x80,0x88,0x88,0x88,0x94,0xa2,0xc2,0x80,0x80,0x80 -+// 30527 眿 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x27,0x24,0x3c,0x24,0x25,0x25,0x3e,0x24,0x20,0x00,0x40,0x20,0xf0,0x10,0x12,0x14,0xd8,0x50,0x98,0x94,0x14,0x12,0x13,0x12,0x50,0x20 -+// 30528 着 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x00,0x3f,0x01,0x03,0x06,0x1b,0x62,0x03,0x02,0x03,0x02,0x08,0x10,0xff,0x80,0xfc,0x80,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 30529 睁 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3c,0x24,0x27,0x3c,0x24,0x25,0x24,0x3c,0x24,0x00,0x00,0x80,0xfc,0x88,0x08,0xfc,0x24,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 30530 睂 ; -+,0x01,0x06,0x18,0x63,0x0c,0x70,0x0f,0x08,0x0b,0x0a,0x0b,0x0a,0x13,0x12,0x23,0x42,0x04,0xc4,0x34,0x14,0xc4,0x34,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 30531 睃 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3c,0x24,0x25,0x3e,0x24,0x25,0x26,0x3c,0x28,0x03,0x0c,0x40,0x40,0x88,0x04,0xfe,0x48,0x84,0x42,0x7e,0xc4,0x48,0x30,0x30,0xc8,0x07,0x02 -+// 30532 睄 ; -+,0x00,0x3d,0x26,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x10,0x11,0x92,0x54,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 30533 睅 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x23,0x22,0x3e,0x22,0x00,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 30534 睆 ; -+,0x00,0x78,0x4b,0x4a,0x7c,0x49,0x48,0x48,0x7b,0x48,0x48,0x48,0x79,0x49,0x42,0x04,0x40,0x20,0xfe,0x02,0x04,0xfc,0x00,0x00,0xfe,0x90,0x90,0x90,0x10,0x11,0x11,0x0f -+// 30535 睇 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x26,0x20,0x00,0x84,0x48,0xfe,0x12,0x12,0xfe,0x90,0x90,0xff,0x31,0x51,0x95,0x12,0x10,0x10,0x10 -+// 30536 睈 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x25,0x3c,0x24,0x24,0x24,0x3c,0x24,0x03,0x00,0x00,0xfe,0x82,0x82,0xfe,0x00,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 30537 睉 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x25,0x25,0x3e,0x24,0x25,0x24,0x3c,0x24,0x23,0x00,0x20,0x20,0x20,0x24,0x24,0x24,0x24,0xaa,0x71,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 30538 睊 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x00,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x0a,0x04 -+// 30539 睋 ; -+,0x00,0x78,0x4b,0x48,0x48,0x7b,0x48,0x48,0x78,0x49,0x4e,0x48,0x78,0x48,0x42,0x01,0x10,0x50,0x94,0x92,0x90,0xfe,0x90,0x91,0xd2,0x8c,0x88,0x99,0xa5,0xc5,0x83,0x01 -+// 30540 睌 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x24,0x24,0x3c,0x25,0x02,0x0c,0x40,0x7c,0x88,0x10,0xfe,0x22,0x22,0x22,0xfe,0x32,0x50,0x50,0x90,0x11,0x11,0x0f -+// 30541 睍 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x23,0x0c,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x48,0x48,0x89,0x09,0x07 -+// 30542 睎 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x27,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x20,0x00,0x44,0x28,0x10,0x68,0xa6,0xff,0x50,0x90,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 30543 睏 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x00,0xff,0x11,0x11,0x11,0x7d,0x11,0x39,0x55,0x93,0x11,0x11,0x11,0x01,0xff,0x01 -+// 30544 睐 ; -+,0x00,0x3c,0x25,0x24,0x25,0x3c,0x24,0x27,0x3c,0x24,0x24,0x24,0x3d,0x26,0x04,0x00,0x20,0x24,0xfe,0x20,0x22,0xa4,0xa8,0xff,0x70,0x68,0xa8,0xa4,0x27,0x22,0x20,0x20 -+// 30545 睑 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3e,0x25,0x24,0x3c,0x26,0x25,0x24,0x3c,0x24,0x27,0x00,0x20,0x20,0x50,0x88,0x04,0x03,0xf8,0x00,0x42,0x22,0x24,0xa4,0x88,0x02,0xff,0x00 -+// 30546 睒 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3c,0x25,0x26,0x3d,0x25,0x25,0x24,0x3c,0x24,0x25,0x02,0x20,0x24,0x28,0x30,0x50,0x88,0x26,0x20,0x24,0x3e,0x20,0x50,0x48,0x8c,0x07,0x02 -+// 30547 睓 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x27,0x24,0x3c,0x24,0x01,0x02,0x50,0x50,0x50,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0xff,0x00,0x48,0x84,0x02,0x01 -+// 30548 睔 ; -+,0x00,0x00,0x3c,0x24,0x25,0x3e,0x24,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x20,0x20,0x50,0x88,0x04,0xfb,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x0a,0x04 -+// 30549 睕 ; -+,0x00,0x3c,0x25,0x26,0x25,0x3d,0x25,0x25,0x3d,0x26,0x24,0x24,0x3c,0x24,0x21,0x02,0x40,0x20,0xff,0x01,0x02,0xde,0x52,0x52,0x52,0xd2,0x5a,0x94,0x90,0x91,0x11,0x0f -+// 30550 睖 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x27,0x24,0x25,0x3e,0x24,0x24,0x25,0x3e,0x24,0x21,0x06,0x20,0x20,0xfe,0x20,0x20,0xff,0x84,0x42,0x7d,0x88,0xc8,0x30,0x30,0x48,0x87,0x02 -+// 30551 睗 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3d,0x26,0x24,0x24,0x3d,0x24,0x23,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0xfe,0x2a,0x2a,0x4a,0x92,0x22,0xc2,0x14,0x08 -+// 30552 睘 ; -+,0x0f,0x09,0x09,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x01,0x02,0x0e,0x32,0x03,0x02,0xfc,0x24,0x24,0xfc,0x00,0xff,0x00,0xf8,0x08,0xf8,0x44,0x28,0x10,0x8c,0x07,0x02 -+// 30553 睙 ; -+,0x00,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x22,0x02,0x05,0x40,0x20,0xfe,0x02,0x02,0xfe,0x14,0x12,0xff,0x10,0x30,0x28,0x48,0x44,0x87,0x02 -+// 30554 睚 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x3e,0x22,0x05,0x08,0x00,0xff,0x10,0x10,0x7e,0x10,0x10,0xff,0x00,0x10,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 30555 睛 ; -+,0x00,0x3d,0x24,0x25,0x24,0x3f,0x24,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 30556 睜 ; -+,0x00,0x3d,0x24,0x24,0x25,0x3c,0x24,0x27,0x3c,0x24,0x25,0x24,0x3c,0x24,0x00,0x00,0x0e,0xf0,0xa4,0x56,0xfc,0x24,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 30557 睝 ; -+,0x03,0x3c,0x04,0x3f,0x0c,0x16,0x25,0x44,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x20,0x20,0x3e,0x4a,0x92,0x22,0x4a,0x84,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 30558 睞 ; -+,0x00,0x3c,0x27,0x25,0x25,0x3d,0x25,0x26,0x3c,0x24,0x24,0x25,0x3e,0x24,0x20,0x00,0x20,0x20,0xff,0x24,0x24,0x24,0x2a,0xb1,0x60,0x70,0xa8,0x24,0x27,0x22,0x20,0x20 -+// 30559 睟 ; -+,0x00,0x78,0x4f,0x48,0x48,0x78,0x49,0x4a,0x4c,0x78,0x4f,0x48,0x48,0x78,0x48,0x00,0x40,0x20,0xff,0x88,0x88,0x88,0x54,0x52,0x22,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 30560 睠 ; -+,0x00,0x3d,0x24,0x25,0x24,0x3c,0x27,0x24,0x3c,0x25,0x26,0x24,0x3c,0x24,0x20,0x00,0x20,0x24,0xa8,0xfe,0x20,0x20,0xff,0x48,0x84,0xfb,0x88,0x88,0xa8,0x92,0x82,0x7e -+// 30561 睡 ; -+,0x00,0x7b,0x48,0x48,0x4b,0x79,0x49,0x4b,0x79,0x49,0x49,0x4b,0x78,0x48,0x43,0x00,0x1e,0xe0,0x20,0x20,0xff,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x20,0x20,0xfe,0x00 -+// 30562 睢 ; -+,0x00,0x3c,0x24,0x25,0x27,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0xa0,0x90,0x92,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x12,0xff,0x00,0x00 -+// 30563 督 ; -+,0x04,0x07,0x04,0x7f,0x16,0x25,0x44,0x15,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0xfe,0x44,0xa4,0x28,0x18,0x67,0x82,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 30564 睤 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x27,0x24,0x24,0x3c,0x24,0x00,0x01,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x44,0x44,0x44,0x84,0x84,0x04 -+// 30565 睥 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3c,0x24,0x25,0x27,0x3c,0x24,0x20,0x00,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x40,0x90,0x10,0xff,0x10,0x10,0x10,0x10 -+// 30566 睦 ; -+,0x00,0x78,0x49,0x48,0x48,0x7b,0x48,0x49,0x4e,0x78,0x49,0x48,0x48,0x78,0x4b,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x48,0x84,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 30567 睧 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x0e,0xf0,0x10,0x10,0xff,0x10,0x09,0x65,0x83,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 30568 睨 ; -+,0x00,0x79,0x49,0x49,0x79,0x49,0x49,0x79,0x49,0x48,0x48,0x78,0x48,0x01,0x06,0x18,0x40,0x9c,0x04,0x04,0xdc,0x04,0x04,0xfc,0x54,0x50,0x50,0x90,0x90,0x11,0x11,0x0f -+// 30569 睩 ; -+,0x00,0x79,0x48,0x48,0x49,0x78,0x48,0x4f,0x7a,0x49,0x48,0x49,0x7a,0x4c,0x40,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x24,0x28,0xb0,0x28,0x27,0x22,0xa0,0x40 -+// 30570 睪 ; -+,0x1f,0x12,0x12,0x1f,0x10,0x0f,0x00,0x7f,0x04,0x02,0x1f,0x00,0x00,0x3f,0x00,0x00,0xfc,0x24,0x24,0xfc,0x88,0xfc,0x82,0xff,0x10,0x20,0xfc,0x80,0x80,0xfe,0x80,0x80 -+// 30571 睫 ; -+,0x00,0x3b,0x28,0x2b,0x38,0x2b,0x28,0x2b,0x38,0x29,0x29,0x29,0x3a,0x2a,0x04,0x08,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x24,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x02 -+// 30572 睬 ; -+,0x00,0x3f,0x24,0x25,0x24,0x3c,0x24,0x27,0x3c,0x24,0x24,0x24,0x3d,0x25,0x22,0x00,0x1e,0xe0,0x42,0x22,0x84,0xa8,0x20,0xff,0x70,0x68,0xa8,0xa4,0x26,0x23,0x22,0x20 -+// 30573 睭 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x22,0x02,0x04,0x00,0xfe,0x22,0x22,0x7a,0x22,0x7a,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 30574 睮 ; -+,0x00,0x78,0x48,0x49,0x4e,0x78,0x4b,0x4a,0x7a,0x4b,0x4a,0x4a,0x7b,0x4a,0x42,0x02,0x20,0x50,0x88,0x04,0xfb,0x00,0xc6,0x54,0x54,0xd4,0x54,0x54,0xd4,0x54,0x44,0x88 -+// 30575 睯 ; -+,0x1f,0x10,0x1f,0x12,0x1f,0x12,0x1a,0x11,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x90,0x90,0x9f,0x24,0xd4,0x14,0x88,0xb7,0xfe,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 30576 睰 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x27,0x24,0x3c,0x24,0x24,0x25,0x3e,0x24,0x20,0x00,0x88,0x88,0xff,0x88,0xa8,0x22,0xff,0x40,0x40,0xfc,0xc4,0x44,0x44,0x44,0x7c,0x44 -+// 30577 睱 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xee,0x22,0x22,0xee,0x22,0x00,0xfe,0x12,0x12,0xd4,0x08,0x08,0x14,0x27,0x42 -+// 30578 睲 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x25,0x26,0x24,0x3c,0x24,0x21,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x92,0x90,0xfe,0x10,0x14,0xfe,0x10,0x10,0xff,0x00 -+// 30579 睳 ; -+,0x00,0x3c,0x27,0x24,0x24,0x3d,0x26,0x24,0x3f,0x24,0x24,0x25,0x3c,0x24,0x23,0x00,0x20,0x20,0xff,0x50,0xa8,0x27,0xfa,0x20,0xfe,0x20,0x20,0xfe,0x20,0x22,0xff,0x00 -+// 30580 睴 ; -+,0x00,0x7b,0x4a,0x4d,0x48,0x79,0x49,0x49,0x79,0x49,0x48,0x4b,0x78,0x48,0x40,0x00,0x00,0xff,0x21,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 30581 睵 ; -+,0x00,0x38,0x28,0x2b,0x28,0x38,0x2b,0x28,0x2b,0x3a,0x2a,0x2a,0x2b,0x3a,0x20,0x00,0x10,0x90,0x94,0xf2,0x92,0x90,0xff,0x10,0xd2,0x52,0x54,0x48,0xd5,0x65,0x43,0x81 -+// 30582 睶 ; -+,0x00,0x3d,0x24,0x25,0x24,0x3f,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x00,0x00,0x20,0xfe,0x20,0xfc,0x40,0xff,0x50,0x88,0xff,0x8a,0x88,0xf8,0x88,0x88,0xf8,0x88 -+// 30583 睷 ; -+,0x00,0x78,0x4b,0x49,0x49,0x79,0x4a,0x4b,0x78,0x48,0x4c,0x4b,0x79,0x4a,0x42,0x04,0x10,0x10,0xbe,0x12,0x7f,0x12,0x7e,0x90,0xfe,0x90,0xff,0x10,0x10,0xd0,0x3f,0x02 -+// 30584 睸 ; -+,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3e,0x22,0x04,0x08,0xff,0x11,0x11,0xff,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 30585 睹 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3f,0x24,0x24,0x3c,0x25,0x26,0x24,0x3c,0x24,0x20,0x00,0x20,0x22,0xfa,0x24,0x28,0xff,0x20,0x40,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 30586 睺 ; -+,0x00,0x3c,0x25,0x25,0x27,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x80,0xbc,0x04,0xff,0x40,0x40,0x7e,0x90,0x10,0xff,0x10,0x28,0x24,0x47,0x82,0x00 -+// 30587 睻 ; -+,0x00,0x00,0x3d,0x25,0x26,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x23,0x00,0x20,0x10,0xff,0x02,0xfc,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00 -+// 30588 睼 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x27,0x3c,0x25,0x25,0x25,0x3d,0x22,0x02,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x20,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x02 -+// 30589 睽 ; -+,0x00,0x3b,0x28,0x2c,0x2a,0x39,0x2a,0x2c,0x38,0x2b,0x28,0x28,0x38,0x29,0x22,0x04,0x10,0xd4,0x59,0x92,0x88,0x08,0xf7,0x22,0x20,0xfe,0x40,0x50,0x88,0x04,0x02,0x02 -+// 30590 睾 ; -+,0x01,0x02,0x1f,0x12,0x12,0x1f,0x00,0x1f,0x00,0x7f,0x02,0x1f,0x00,0x3f,0x00,0x00,0x00,0x00,0xfc,0x24,0x24,0xfc,0x80,0xfc,0x80,0xff,0x20,0xfc,0x80,0xfe,0x80,0x80 -+// 30591 睿 ; -+,0x01,0x01,0x01,0x3f,0x20,0x4f,0x06,0x18,0x63,0x1f,0x68,0x0f,0x08,0x0f,0x08,0x0f,0x00,0xfc,0x00,0xff,0x02,0xf8,0x30,0xcc,0x23,0xf8,0x0f,0xfa,0x08,0xf8,0x08,0xf8 -+// 30592 瞀 ; -+,0x3f,0x02,0x04,0x7f,0x0d,0x14,0x24,0x55,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x20,0x20,0x7f,0x44,0xa4,0x18,0x64,0x83,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 30593 瞁 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x27,0x24,0x3c,0x24,0x01,0x02,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x28,0x24,0xff,0x50,0x48,0x84,0x07,0x02 -+// 30594 瞂 ; -+,0x00,0x03,0x3c,0x24,0x3f,0x24,0x2f,0x29,0x2f,0x29,0x2f,0x29,0x2f,0x29,0x41,0x02,0x14,0x92,0x12,0x10,0x7f,0x10,0x1f,0x12,0x22,0x24,0x34,0x48,0x4c,0x96,0x23,0x42 -+// 30595 瞃 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x3e,0x22,0x04,0x08,0x00,0xff,0x10,0x10,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 30596 瞄 ; -+,0x00,0x38,0x28,0x2b,0x28,0x38,0x29,0x29,0x39,0x29,0x29,0x29,0x39,0x29,0x01,0x01,0x48,0x48,0x48,0xff,0x48,0x48,0xfe,0x22,0x22,0x22,0xfe,0x22,0x22,0x22,0xfe,0x02 -+// 30597 瞅 ; -+,0x00,0x78,0x4b,0x48,0x48,0x7f,0x49,0x49,0x7a,0x4a,0x4c,0x48,0x78,0x48,0x00,0x00,0x08,0x68,0x88,0x88,0xa9,0xea,0xac,0xa8,0xc8,0xd4,0x94,0x94,0xa2,0xa2,0xc3,0x82 -+// 30598 瞆 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x01,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0x92,0x92,0x92,0x28,0x44,0x82,0x01 -+// 30599 瞇 ; -+,0x00,0x38,0x2a,0x29,0x29,0x38,0x2b,0x29,0x39,0x29,0x29,0x29,0x39,0x2a,0x04,0x00,0x08,0x08,0x4b,0x2a,0x2c,0x7f,0x08,0x1c,0x2a,0x4a,0x88,0x08,0x08,0xe0,0x1f,0x02 -+// 30600 瞈 ; -+,0x00,0x3c,0x24,0x25,0x3e,0x24,0x24,0x25,0x3d,0x24,0x24,0x24,0x3f,0x24,0x00,0x00,0x08,0x48,0xa4,0x24,0x4b,0xfc,0x04,0xee,0x22,0xaa,0x66,0xaa,0x32,0x22,0xaa,0x44 -+// 30601 瞉 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x7f,0x40,0x1e,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x00,0xbe,0x24,0x24,0x24,0xa7,0xc0,0x3e,0x02,0x24,0x14,0x08,0x08,0x14,0x23,0x42 -+// 30602 瞊 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x22,0x02,0x04,0x20,0xff,0x10,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 30603 瞋 ; -+,0x00,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x27,0x3c,0x24,0x01,0x02,0x10,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x00,0x84,0x02,0x01 -+// 30604 瞌 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3f,0x24,0x24,0x3d,0x24,0x25,0x25,0x3d,0x25,0x07,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x48,0x84,0xfe,0x02,0xfc,0x54,0x54,0x54,0xff,0x00 -+// 30605 瞍 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x3c,0x25,0x24,0x24,0x3c,0x24,0x21,0x06,0x20,0xae,0x22,0x22,0xae,0x22,0x22,0xfe,0x20,0xfe,0x84,0x48,0x30,0x58,0x87,0x02 -+// 30606 瞎 ; -+,0x00,0x78,0x4b,0x4a,0x4d,0x78,0x49,0x48,0x7b,0x48,0x49,0x49,0x79,0x49,0x41,0x01,0x40,0x20,0xff,0x21,0xfe,0x20,0xfc,0x20,0xff,0x20,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 30607 瞏 ; -+,0x1f,0x11,0x1f,0x00,0x1f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x03,0x0c,0x74,0x05,0x06,0xfc,0x24,0xfc,0x80,0xfc,0x80,0xff,0x00,0xf8,0x08,0xf8,0x44,0x28,0x90,0x0e,0x04 -+// 30608 瞐 ; -+,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x21,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x42 -+// 30609 瞑 ; -+,0x00,0x3d,0x25,0x26,0x24,0x3c,0x24,0x24,0x3c,0x24,0x27,0x24,0x3c,0x20,0x01,0x02,0x00,0xff,0x01,0xfe,0x84,0xfc,0x84,0xfc,0x20,0x10,0xff,0x00,0x48,0x84,0x02,0x01 -+// 30610 瞒 ; -+,0x00,0x7b,0x48,0x48,0x4b,0x78,0x4b,0x4a,0x7a,0x4a,0x4a,0x4b,0x7a,0x4a,0x42,0x02,0x88,0xff,0x88,0x88,0xff,0x48,0xff,0x49,0x49,0xa9,0x95,0x23,0x41,0x01,0x05,0x02 -+// 30611 瞓 ; -+,0x01,0x38,0x2f,0x28,0x2b,0x38,0x2b,0x28,0x3b,0x2a,0x2a,0x2a,0x3b,0x2a,0x20,0x00,0x15,0x95,0xf5,0x15,0xd5,0x15,0xd5,0x15,0xd5,0x55,0x55,0x55,0xd5,0x25,0x21,0x41 -+// 30612 瞔 ; -+,0x00,0x3d,0x24,0x25,0x24,0x3f,0x24,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x00,0x01,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04 -+// 30613 瞕 ; -+,0x00,0x3d,0x24,0x24,0x27,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x24,0x20,0x00,0x20,0xfe,0x84,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 30614 瞖 ; -+,0x3f,0x28,0x2f,0x34,0x3f,0x2a,0x3f,0x21,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0xbc,0x24,0x27,0x40,0x3e,0x12,0x9c,0x63,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 30615 瞗 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x25,0x3d,0x26,0x20,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xfe,0x0a,0x56,0x52,0x02,0x14,0x08 -+// 30616 瞘 ; -+,0x00,0x7b,0x4a,0x4a,0x4a,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x43,0x00,0x00,0xff,0x00,0x7c,0x44,0x44,0x7c,0x00,0xee,0xaa,0xaa,0xaa,0xee,0x00,0xff,0x00 -+// 30617 瞙 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x24,0x3c,0x24,0x21,0x02,0x48,0xff,0x48,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x50,0x50,0x88,0x07,0x02 -+// 30618 瞚 ; -+,0x00,0x3c,0x25,0x25,0x26,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x20,0x01,0x20,0x10,0xff,0x01,0xfe,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0xaa,0x44,0x82,0x01 -+// 30619 瞛 ; -+,0x00,0x38,0x29,0x2a,0x2c,0x38,0x29,0x2b,0x2d,0x39,0x29,0x29,0x29,0x39,0x29,0x01,0xa4,0xa4,0x24,0x54,0x4a,0x91,0x20,0x10,0x50,0x5e,0x50,0x50,0x50,0x70,0x8f,0x00 -+// 30620 瞜 ; -+,0x00,0x3b,0x2a,0x2f,0x2a,0x3b,0x28,0x2b,0x3a,0x2b,0x28,0x2b,0x38,0x29,0x20,0x03,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xfe,0x22,0xfe,0x20,0xff,0x88,0xf0,0x6f,0x82 -+// 30621 瞝 ; -+,0x00,0x3c,0x27,0x24,0x25,0x3d,0x25,0x25,0x3c,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x40,0x20,0xff,0x48,0x32,0x32,0x4a,0xfe,0x20,0xff,0x21,0x49,0x79,0x05,0x05,0x02 -+// 30622 瞞 ; -+,0x00,0x3c,0x27,0x24,0x24,0x3c,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x01,0x88,0x88,0xff,0x88,0xf8,0x20,0xfe,0x22,0xb2,0x6a,0xb6,0x22,0x22,0x22,0x2a,0x04 -+// 30623 瞟 ; -+,0x00,0x3b,0x28,0x2b,0x2a,0x3b,0x28,0x29,0x38,0x2b,0x28,0x29,0x39,0x22,0x04,0x00,0x02,0xff,0x50,0xfe,0x52,0xfe,0x00,0xfc,0x00,0xff,0x20,0x28,0x24,0x22,0xa2,0x40 -+// 30624 瞠 ; -+,0x00,0x3d,0x24,0x24,0x25,0x3d,0x26,0x24,0x3c,0x24,0x24,0x25,0x3c,0x24,0x23,0x00,0x20,0x22,0xa4,0x28,0xff,0x01,0xfc,0x84,0x84,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 30625 瞡 ; -+,0x01,0x39,0x2f,0x29,0x29,0x39,0x2f,0x29,0x39,0x29,0x29,0x2a,0x3a,0x2c,0x28,0x00,0x3e,0x22,0xe2,0x3e,0x22,0x22,0xfe,0x22,0x22,0xbe,0x54,0x54,0x24,0x25,0x45,0x83 -+// 30626 瞢 ; -+,0x02,0x7f,0x02,0x0f,0x09,0x0f,0x00,0x3f,0x20,0x47,0x04,0x07,0x04,0x07,0x04,0x07,0x20,0xff,0x20,0xfc,0x24,0xfc,0x00,0xff,0x01,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8 -+// 30627 瞣 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3c,0x25,0x25,0x3d,0x25,0x24,0x25,0x3d,0x26,0x00,0x00,0x20,0xfe,0x22,0x22,0xfe,0x20,0xfe,0x22,0xfe,0x20,0x22,0x91,0x85,0x84,0x7c,0x00 -+// 30628 瞤 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x7d,0x11,0x7d,0x11,0xff,0x01,0x01,0x05,0x02 -+// 30629 瞥 ; -+,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x25,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0xa0,0x20,0xbf,0xe4,0xa4,0x98,0x98,0x67,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00 -+// 30630 瞦 ; -+,0x00,0x3f,0x24,0x25,0x24,0x3c,0x24,0x24,0x3c,0x27,0x24,0x24,0x3c,0x24,0x20,0x00,0x20,0xff,0x20,0xfe,0x00,0xfc,0x84,0xfc,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 30631 瞧 ; -+,0x00,0x3c,0x25,0x25,0x27,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x26,0x22,0x04,0xa0,0x90,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x92,0x49,0x49 -+// 30632 瞨 ; -+,0x00,0x3c,0x25,0x24,0x27,0x3c,0x24,0x25,0x3c,0x24,0x24,0x25,0x3c,0x24,0x21,0x06,0x48,0x49,0x4a,0xc8,0xff,0x84,0x48,0xfe,0x10,0xfe,0x10,0xff,0x28,0x44,0x87,0x02 -+// 30633 瞩 ; -+,0x03,0x3a,0x2b,0x2a,0x2a,0x3a,0x2a,0x2a,0x3a,0x2a,0x2a,0x2a,0x3a,0x24,0x04,0x08,0xfe,0x02,0xfe,0x00,0xfe,0x10,0xfe,0x92,0xfe,0x10,0xfe,0x92,0xfa,0x86,0x8a,0x84 -+// 30634 瞪 ; -+,0x00,0x7b,0x4c,0x4a,0x49,0x79,0x4a,0x4c,0x79,0x49,0x49,0x48,0x79,0x48,0x47,0x00,0x12,0xd4,0x58,0x89,0x8a,0x04,0xf7,0x02,0xf8,0x08,0xf8,0x00,0x08,0x92,0xff,0x00 -+// 30635 瞫 ; -+,0x00,0x3d,0x24,0x25,0x25,0x3d,0x25,0x24,0x3c,0x24,0x24,0x24,0x3c,0x23,0x00,0x00,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x20 -+// 30636 瞬 ; -+,0x00,0x3b,0x29,0x28,0x2b,0x3a,0x2d,0x29,0x39,0x2a,0x2d,0x28,0x39,0x2a,0x24,0x08,0x1e,0xe2,0x22,0x94,0xff,0x05,0x04,0xdf,0x44,0x54,0x9f,0xa4,0x04,0x04,0x04,0x04 -+// 30637 瞭 ; -+,0x00,0x3c,0x25,0x24,0x25,0x3c,0x25,0x26,0x3c,0x24,0x24,0x24,0x3c,0x25,0x02,0x00,0x20,0x20,0xfe,0x50,0x4a,0xfc,0x87,0xfc,0x84,0xfc,0x10,0x94,0x92,0x11,0x50,0x20 -+// 30638 瞮 ; -+,0x01,0x78,0x4f,0x48,0x49,0x7b,0x48,0x4b,0x7a,0x4b,0x4a,0x4b,0x7a,0x4a,0x42,0x02,0x08,0x88,0xe8,0x88,0x2f,0xf2,0x12,0xea,0x2a,0xea,0x24,0xe4,0x2a,0x2a,0xb3,0x42 -+// 30639 瞯 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0x49,0x95,0x02 -+// 30640 瞰 ; -+,0x00,0x7b,0x48,0x48,0x4f,0x7a,0x4a,0x4b,0x7a,0x4a,0x4b,0x4a,0x7a,0x4b,0x46,0x00,0x08,0xc8,0x48,0x90,0xdf,0x72,0x52,0xd2,0x54,0x54,0xd4,0x48,0x54,0xd4,0x53,0x62 -+// 30641 瞱 ; -+,0x00,0x3f,0x24,0x27,0x25,0x3d,0x27,0x25,0x3d,0x27,0x24,0x24,0x3f,0x24,0x20,0x00,0x88,0xff,0x88,0xff,0x24,0x24,0xff,0x24,0x24,0xff,0x20,0x20,0xff,0x20,0x20,0x20 -+// 30642 瞲 ; -+,0x01,0x3c,0x24,0x27,0x24,0x3f,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0xfc,0x08,0x50,0xff,0xd2,0x10,0xfe,0x4a,0x86,0x7a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 30643 瞳 ; -+,0x00,0x7b,0x48,0x48,0x4f,0x78,0x49,0x49,0x79,0x49,0x49,0x48,0x7b,0x48,0x07,0x00,0x20,0xfe,0x88,0x50,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x00 -+// 30644 瞴 ; -+,0x01,0x39,0x29,0x2b,0x2d,0x39,0x2b,0x29,0x39,0x29,0x2f,0x28,0x2a,0x3a,0x24,0x00,0x00,0x00,0xff,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0xff,0x00,0x92,0x49,0x49,0x00 -+// 30645 瞵 ; -+,0x00,0x39,0x28,0x2b,0x28,0x38,0x2b,0x2d,0x39,0x2a,0x2c,0x2a,0x39,0x2a,0x24,0x08,0x20,0x24,0xa8,0xff,0x70,0xa8,0x27,0x2a,0xdf,0x48,0xa8,0xbf,0x08,0x08,0x08,0x08 -+// 30646 瞶 ; -+,0x00,0x3d,0x25,0x25,0x24,0x3f,0x24,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x20,0x03,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06 -+// 30647 瞷 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0x01,0x05,0x02 -+// 30648 瞸 ; -+,0x00,0x7f,0x48,0x48,0x49,0x7f,0x49,0x49,0x79,0x49,0x48,0x4b,0x78,0x49,0x06,0x18,0x88,0xff,0x88,0x88,0x44,0xff,0x44,0x7c,0x00,0xfe,0x20,0xff,0xa8,0x24,0x27,0x22 -+// 30649 瞹 ; -+,0x00,0x3d,0x24,0x24,0x25,0x3e,0x24,0x24,0x3e,0x24,0x24,0x25,0x3e,0x24,0x21,0x06,0x1e,0xe0,0x92,0x54,0xff,0x21,0x94,0xfd,0x81,0xfc,0x88,0x48,0x30,0x68,0x87,0x02 -+// 30650 瞺 ; -+,0x00,0x3c,0x24,0x25,0x26,0x3d,0x25,0x25,0x3d,0x25,0x24,0x24,0x3c,0x24,0x00,0x00,0x20,0x50,0x88,0x74,0x03,0xfe,0xaa,0x72,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 30651 瞻 ; -+,0x00,0x38,0x29,0x2b,0x2d,0x39,0x29,0x29,0x39,0x29,0x29,0x2a,0x3a,0x2a,0x04,0x08,0x40,0xfc,0x08,0xff,0x24,0x52,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x42 -+// 30652 瞼 ; -+,0x00,0x38,0x28,0x29,0x2e,0x38,0x29,0x29,0x39,0x29,0x28,0x29,0x39,0x2a,0x24,0x00,0x20,0x50,0x88,0x04,0xfb,0x00,0xdc,0x54,0x54,0xdc,0x08,0x08,0x14,0xa2,0x42,0x00 -+// 30653 瞽 ; -+,0x04,0x7f,0x04,0x3f,0x11,0x1f,0x11,0x0b,0x7c,0x2f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x10,0x90,0x7e,0x10,0x7c,0x44,0x28,0x98,0x67,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8 -+// 30654 瞾 ; -+,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x1e,0x00,0x3f,0x22,0x4c,0x30,0x0f,0x00,0x3f,0x00,0x3c,0x24,0x3c,0x24,0x3c,0x24,0xbc,0x40,0xfe,0x22,0x18,0x04,0xf8,0x80,0xfe,0x00 -+// 30655 瞿 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x0f,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x22,0xbe,0x40,0xff,0x40,0xfe,0x40,0xfe,0x40,0xff,0x00 -+// 30656 矀 ; -+,0x02,0x72,0x55,0x59,0x51,0x72,0x55,0x5c,0x75,0x55,0x55,0x55,0x75,0x45,0x06,0x04,0x44,0x44,0x54,0x54,0xff,0x0a,0xfa,0x0a,0xf2,0x2a,0x24,0x34,0x2a,0x12,0x21,0x41 -+// 30657 矁 ; -+,0x00,0x3b,0x28,0x2b,0x29,0x39,0x2a,0x2c,0x38,0x28,0x28,0x28,0x3a,0x2a,0x24,0x00,0x48,0x88,0x89,0xca,0xac,0xe8,0x94,0x92,0xa1,0xc4,0x22,0x93,0x95,0x84,0x7c,0x00 -+// 30658 矂 ; -+,0x00,0x38,0x28,0x28,0x28,0x3b,0x2a,0x2a,0x3b,0x28,0x2b,0x28,0x38,0x29,0x22,0x04,0xf8,0x88,0x88,0xf8,0x00,0xde,0x52,0x52,0xde,0x20,0xff,0xa8,0xa4,0x27,0x22,0x20 -+// 30659 矃 ; -+,0x00,0x38,0x2b,0x2a,0x2d,0x3a,0x28,0x29,0x39,0x2b,0x28,0x29,0x38,0x28,0x20,0x00,0x40,0x20,0xff,0xa5,0xaa,0x7a,0x00,0xfe,0x52,0xff,0x00,0xfe,0x10,0x10,0x50,0x20 -+// 30660 矄 ; -+,0x00,0x7b,0x48,0x4f,0x48,0x7b,0x4a,0x4b,0x78,0x4b,0x48,0x4f,0x78,0x4a,0x02,0x04,0x1e,0xe0,0x20,0xff,0x20,0xfe,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x00,0x92,0x49,0x49 -+// 30661 矅 ; -+,0x01,0x3d,0x24,0x24,0x25,0x3e,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x20,0x00,0xef,0x29,0xa5,0xa5,0x29,0x71,0x88,0xff,0x88,0xfe,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 30662 矆 ; -+,0x00,0x3d,0x24,0x24,0x25,0x3f,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x24,0x20,0x07,0x48,0xff,0x48,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfe,0x44,0x78,0x87 -+// 30663 矇 ; -+,0x00,0x3b,0x2c,0x2b,0x2a,0x3d,0x28,0x2b,0x38,0x2b,0x28,0x2b,0x38,0x2b,0x20,0x00,0x48,0xff,0x48,0xff,0x01,0xfc,0x00,0xfe,0xc8,0x30,0x68,0x94,0x73,0x92,0x50,0x20 -+// 30664 矈 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x3d,0x26,0x25,0x24,0x3c,0x24,0x21,0x02,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x65,0x92,0xff,0x40,0x7c,0x84,0x14,0x08 -+// 30665 矉 ; -+,0x00,0x3d,0x25,0x26,0x25,0x3d,0x24,0x27,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x01,0x20,0xff,0x01,0xf8,0x22,0x2c,0x70,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 30666 矊 ; -+,0x01,0x39,0x29,0x2a,0x2a,0x3f,0x29,0x29,0x3a,0x2f,0x28,0x28,0x3a,0x2a,0x24,0x00,0x08,0x10,0x3e,0x62,0xbe,0xa2,0x3e,0x08,0xbe,0xaa,0xaa,0x2a,0xaa,0xae,0x88,0x08 -+// 30667 矋 ; -+,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3e,0x22,0x04,0x08,0xff,0x24,0xff,0x24,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x95,0xbd,0x81,0x85,0x82 -+// 30668 矌 ; -+,0x00,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x3e,0x22,0x04,0x08,0x20,0x10,0xff,0x24,0xff,0x24,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x24,0x42,0x81 -+// 30669 矍 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x0f,0x08,0x1f,0x68,0x0f,0x08,0x07,0x01,0x00,0x1f,0x3e,0x22,0x3e,0x22,0xbe,0x40,0xff,0x40,0xfe,0x40,0xff,0x00,0xfc,0x08,0xf0,0x0f -+// 30670 矎 ; -+,0x00,0x3c,0x27,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x24,0x25,0x3e,0x24,0x21,0x0e,0x78,0x88,0xfe,0x22,0x52,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xf8,0x90,0x70,0x8f,0x02 -+// 30671 矏 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x25,0x3e,0x25,0x27,0x24,0x3c,0x20,0x01,0x02,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0xa9,0x14,0xff,0x40,0x7c,0x84,0x14,0x08 -+// 30672 矐 ; -+,0x01,0x38,0x2b,0x2a,0x2d,0x38,0x2b,0x29,0x39,0x2b,0x2d,0x29,0x39,0x29,0x21,0x01,0xfc,0x20,0xff,0x21,0xae,0x20,0xae,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 30673 矑 ; -+,0x00,0x78,0x48,0x4b,0x4a,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x44,0x0b,0x20,0x3e,0x20,0xff,0x3a,0xe2,0x1e,0xfc,0xa4,0xfc,0xa4,0xfc,0x00,0xfe,0xaa,0xff -+// 30674 矒 ; -+,0x00,0x3f,0x24,0x25,0x25,0x3d,0x24,0x25,0x3e,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x48,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc -+// 30675 矓 ; -+,0x01,0x39,0x2f,0x2a,0x2a,0x3f,0x28,0x2b,0x3a,0x2b,0x2a,0x2b,0x3a,0x2a,0x02,0x02,0x10,0x10,0xff,0x50,0x9e,0xe2,0x1e,0xd0,0x5e,0xd0,0x5e,0xd0,0x5e,0x51,0x51,0x8f -+// 30676 矔 ; -+,0x00,0x3f,0x28,0x2b,0x3a,0x2b,0x2a,0x29,0x39,0x2b,0x2d,0x29,0x39,0x29,0x21,0x01,0x88,0xff,0x88,0xde,0x52,0xde,0xa2,0x10,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 30677 矕 ; -+,0x10,0x13,0x24,0x79,0x10,0x39,0x55,0x55,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x84,0xe9,0x1e,0xc4,0x1f,0xc0,0x55,0xd5,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 30678 矖 ; -+,0x03,0x38,0x2b,0x2a,0x2b,0x3a,0x2b,0x2a,0x3b,0x2a,0x2b,0x2a,0x3a,0x24,0x04,0x08,0xdf,0x00,0xde,0x52,0x5a,0x22,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xaa,0xcc,0xa9,0xc7 -+// 30679 矗 ; -+,0x00,0x3f,0x01,0x0f,0x0a,0x09,0x08,0x7f,0x08,0x7f,0x08,0x3e,0x2a,0x36,0x2b,0x7c,0x80,0xfe,0x00,0xf8,0x48,0x28,0x98,0xff,0x10,0x7e,0x10,0x7e,0x4a,0x66,0x52,0xff -+// 30680 矘 ; -+,0x01,0x38,0x2b,0x2a,0x2c,0x38,0x2b,0x2a,0x3a,0x2b,0x28,0x2b,0x38,0x2f,0x22,0x04,0x24,0xa8,0xff,0x89,0xf8,0x00,0xfe,0xaa,0xaa,0xfe,0x20,0xfe,0x20,0xff,0x92,0x49 -+// 30681 矙 ; -+,0x00,0x77,0x54,0x57,0x54,0x77,0x54,0x55,0x74,0x57,0x55,0x55,0x75,0x57,0x44,0x04,0x00,0xdf,0x51,0xdf,0x51,0xdf,0x01,0xc9,0x49,0xff,0x55,0xd5,0x69,0xd5,0x63,0x41 -+// 30682 矚 ; -+,0x03,0x3a,0x2b,0x2a,0x3a,0x2b,0x2a,0x3a,0x2a,0x2a,0x2b,0x3a,0x2a,0x04,0x04,0x08,0xfe,0x02,0xfe,0x94,0x54,0xfe,0xaa,0xfe,0x40,0xfe,0x22,0xfa,0xaa,0xfa,0x2a,0xe4 -+// 30683 矛 ; -+,0x00,0x0f,0x00,0x01,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x20,0x41,0x00,0x00,0xfc,0x08,0x10,0xa0,0xff,0xc2,0x44,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80 -+// 30684 矜 ; -+,0x00,0x3f,0x02,0x14,0x08,0x7f,0x0d,0x15,0x14,0x24,0x24,0x44,0x04,0x04,0x14,0x08,0x10,0x10,0x28,0x28,0x44,0x44,0xa3,0x12,0x10,0xfe,0x04,0x04,0x08,0x08,0x08,0x10 -+// 30685 矝 ; -+,0x00,0x3f,0x01,0x12,0x0c,0x08,0x7e,0x0b,0x19,0x18,0x28,0x28,0x48,0x08,0x28,0x10,0x10,0x10,0x28,0x28,0x44,0x64,0x93,0x10,0xfe,0x04,0x08,0x48,0x30,0x18,0x08,0x00 -+// 30686 矞 ; -+,0x0f,0x01,0x00,0x3f,0x01,0x0e,0x30,0x0f,0x09,0x0a,0x0d,0x09,0x09,0x08,0x08,0x08,0xf8,0x10,0xa0,0xff,0x42,0x44,0x80,0xfe,0x24,0x14,0xec,0x24,0xe4,0x04,0x14,0x08 -+// 30687 矟 ; -+,0x00,0x3f,0x02,0x14,0x08,0x7f,0x0d,0x0e,0x14,0x14,0x24,0x44,0x04,0x04,0x14,0x08,0x10,0x10,0x91,0x52,0x54,0xff,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 30688 矠 ; -+,0x00,0x3e,0x05,0x14,0x08,0x7f,0x1a,0x1c,0x28,0x28,0x48,0x08,0x08,0x08,0x28,0x10,0x48,0x48,0xfe,0x48,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 30689 矡 ; -+,0x01,0x3d,0x05,0x15,0x09,0x3e,0x0a,0x1d,0x1b,0x2d,0x29,0x49,0x0b,0x08,0x28,0x11,0xef,0x29,0xef,0x29,0xef,0x90,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x44,0x38,0xc7 -+// 30690 矢 ; -+,0x04,0x04,0x04,0x0f,0x08,0x10,0x20,0x7f,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x40,0x00,0x00,0x00,0xfc,0x80,0x80,0x80,0xff,0x40,0x40,0x20,0x20,0x10,0x08,0x07,0x02 -+// 30691 矣 ; -+,0x00,0x01,0x02,0x07,0x00,0x04,0x07,0x08,0x10,0x3f,0x01,0x01,0x02,0x04,0x18,0x60,0x80,0x10,0x08,0xfc,0x04,0x00,0xfc,0x80,0x80,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 30692 矤 ; -+,0x00,0x7c,0x04,0x04,0x3c,0x21,0x22,0x21,0x3c,0x04,0x04,0x04,0x04,0x04,0x15,0x0a,0x40,0x40,0x40,0xfe,0x90,0x10,0x10,0xff,0x28,0x28,0x28,0x44,0x44,0x84,0x03,0x02 -+// 30693 知 ; -+,0x08,0x08,0x08,0x1f,0x12,0x22,0x42,0x3f,0x04,0x06,0x05,0x08,0x08,0x10,0x20,0x40,0x00,0x00,0x00,0xbe,0x22,0x22,0x22,0xa2,0x22,0x22,0x22,0xa2,0xbe,0x22,0x20,0x00 -+// 30694 矦 ; -+,0x02,0x03,0x04,0x08,0x1f,0x32,0x52,0x17,0x18,0x10,0x1f,0x10,0x11,0x22,0x24,0x48,0x00,0xf0,0x20,0x40,0xfe,0x00,0x08,0xfc,0x40,0x40,0xff,0x90,0x08,0x04,0x07,0x02 -+// 30695 矧 ; -+,0x10,0x10,0x1e,0x28,0x28,0x48,0x3e,0x08,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x02,0xf2,0x12,0x12,0xf2,0x82,0x82,0x82,0xf2,0x12,0x12,0x12,0x12,0x22,0xa2,0x42 -+// 30696 矨 ; -+,0x10,0x10,0x10,0x1e,0x28,0x48,0x09,0x7e,0x08,0x08,0x0c,0x12,0x11,0x20,0x41,0x02,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x28,0x28,0x28,0x44,0x44,0x82,0x03,0x02 -+// 30697 矩 ; -+,0x10,0x10,0x10,0x1f,0x28,0x48,0x08,0x7f,0x08,0x0c,0x0a,0x11,0x11,0x20,0x40,0x00,0x00,0x7f,0x40,0x40,0x40,0x7e,0x42,0x42,0x42,0x7e,0x42,0x40,0x40,0x40,0x7f,0x00 -+// 30698 矪 ; -+,0x10,0x10,0x10,0x1f,0x24,0x44,0x04,0x7f,0x08,0x08,0x0c,0x12,0x12,0x20,0x41,0x02,0x10,0x20,0x7c,0x44,0x64,0x54,0x54,0xff,0x64,0x54,0x54,0x84,0x84,0x84,0x14,0x08 -+// 30699 矫 ; -+,0x10,0x10,0x10,0x1e,0x29,0x48,0x3f,0x08,0x0b,0x08,0x14,0x12,0x22,0x20,0x41,0x02,0x0e,0xf0,0x10,0x10,0xff,0x28,0x44,0x82,0x4b,0x48,0x48,0x48,0x48,0x88,0x08,0x08 -+// 30700 矬 ; -+,0x10,0x10,0x10,0x1e,0x28,0x48,0x09,0x3e,0x0a,0x08,0x14,0x12,0x12,0x20,0x41,0x00,0x10,0x10,0x94,0x94,0x94,0x94,0x56,0x39,0x11,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 30701 短 ; -+,0x10,0x11,0x10,0x1f,0x28,0x48,0x7f,0x08,0x08,0x08,0x0c,0x12,0x12,0x20,0x41,0x00,0x00,0xff,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x04,0x82,0x44,0x44,0x28,0xff,0x00 -+// 30702 矮 ; -+,0x20,0x21,0x3c,0x29,0x28,0x48,0x7e,0x09,0x08,0x15,0x14,0x22,0x20,0x40,0x03,0x00,0x0e,0xf0,0x10,0xff,0x38,0x54,0x93,0x30,0x20,0xff,0x48,0xc8,0x38,0x6c,0x82,0x00 -+// 30703 矯 ; -+,0x10,0x11,0x1e,0x29,0x48,0x0b,0x7e,0x08,0x08,0x09,0x19,0x15,0x25,0x21,0x41,0x01,0x0e,0xf0,0x20,0xfe,0x88,0xff,0x8a,0xf8,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x0a,0x04 -+// 30704 矰 ; -+,0x10,0x10,0x10,0x1e,0x28,0x28,0x48,0x3e,0x08,0x08,0x0c,0x12,0x12,0x20,0x40,0x00,0x02,0x44,0x28,0xfe,0x92,0xd6,0xba,0x92,0xfe,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44 -+// 30705 矱 ; -+,0x10,0x13,0x10,0x1e,0x28,0x49,0x0a,0x7e,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x03,0x48,0xff,0x48,0x90,0xff,0x90,0xfe,0x90,0xff,0x80,0xfe,0x44,0x28,0x38,0xc7,0x02 -+// 30706 矲 ; -+,0x01,0x21,0x21,0x3f,0x28,0x49,0x0b,0x7c,0x0b,0x0a,0x0b,0x16,0x17,0x22,0x22,0x42,0xfe,0x52,0x52,0xfe,0x88,0x4e,0xe9,0x29,0xc7,0x50,0xd2,0x54,0xd9,0x51,0x4f,0x80 -+// 30707 石 ; -+,0x00,0x7f,0x01,0x01,0x02,0x02,0x03,0x06,0x06,0x0a,0x12,0x22,0x42,0x03,0x02,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 30708 矴 ; -+,0x00,0x7e,0x09,0x08,0x08,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x00,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 30709 矵 ; -+,0x00,0x3f,0x04,0x04,0x08,0x08,0x0f,0x19,0x19,0x29,0x29,0x49,0x09,0x0f,0x09,0x00,0x02,0x82,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x02,0x0a,0x04 -+// 30710 矶 ; -+,0x00,0x7f,0x10,0x10,0x10,0x10,0x3c,0x24,0x64,0x24,0x24,0x3c,0x25,0x21,0x02,0x04,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x89,0x09,0x09,0x07,0x00 -+// 30711 矷 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xfe,0x02,0x04,0x28,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 30712 矸 ; -+,0x00,0x3f,0x08,0x08,0x10,0x10,0x1e,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0x00,0x7e,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 30713 矹 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x3c,0x54,0x14,0x14,0x14,0x14,0x1c,0x15,0x12,0x04,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x89,0x09,0x07,0x00 -+// 30714 矺 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x1e,0x12,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0x0e,0x70,0x10,0x10,0x10,0x10,0x1f,0xf0,0x10,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 30715 矻 ; -+,0x00,0x00,0x7e,0x10,0x11,0x12,0x1c,0x36,0x34,0x54,0x14,0x14,0x1c,0x14,0x10,0x00,0x40,0x40,0x80,0xff,0x00,0x00,0xfc,0x04,0x08,0x10,0x20,0x41,0x81,0x81,0x7f,0x00 -+// 30716 矼 ; -+,0x00,0x00,0x7e,0x08,0x08,0x10,0x10,0x1e,0x32,0x32,0x52,0x12,0x1e,0x13,0x10,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0xff,0x00,0x00 -+// 30717 矽 ; -+,0x00,0x7f,0x08,0x08,0x08,0x10,0x1e,0x33,0x52,0x12,0x12,0x12,0x1e,0x12,0x17,0x00,0x20,0x30,0x20,0x3f,0x42,0x42,0x82,0x44,0x24,0x28,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 30718 矾 ; -+,0x00,0x7e,0x08,0x08,0x10,0x1e,0x32,0x32,0x52,0x12,0x1e,0x12,0x11,0x01,0x02,0x04,0xf8,0x88,0x88,0x88,0x88,0xc8,0xa8,0xa8,0x88,0x88,0x88,0x89,0x09,0x09,0x07,0x00 -+// 30719 矿 ; -+,0x00,0x7f,0x08,0x08,0x08,0x10,0x1e,0x12,0x32,0x52,0x12,0x12,0x1e,0x13,0x11,0x02,0x10,0x08,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00 -+// 30720 砀 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x1f,0x12,0x10,0x01,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0xfe,0x2a,0x2a,0x52,0x92,0x22,0x42,0x82,0x14,0x08 -+// 30721 码 ; -+,0x00,0x7e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xfc,0x04,0x44,0x44,0x44,0x44,0x7e,0x02,0x02,0xfa,0x02,0x02,0x02,0x14,0x08 -+// 30722 砂 ; -+,0x00,0x7e,0x10,0x10,0x10,0x10,0x1d,0x35,0x36,0x54,0x14,0x14,0x1c,0x14,0x11,0x06,0x10,0x10,0x10,0x10,0x94,0x92,0x11,0x10,0x12,0x12,0x04,0x08,0x10,0x60,0x80,0x00 -+// 30723 砃 ; -+,0x00,0x7f,0x08,0x08,0x08,0x10,0x1e,0x33,0x52,0x12,0x12,0x1e,0x12,0x11,0x11,0x02,0x00,0x7c,0x44,0x64,0x54,0x54,0x44,0xff,0x44,0x44,0x84,0x84,0x84,0x04,0x14,0x08 -+// 30724 砄 ; -+,0x00,0x00,0x3f,0x08,0x08,0x10,0x1e,0x33,0x52,0x12,0x12,0x12,0x1e,0x11,0x12,0x04,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 30725 砅 ; -+,0x00,0x7e,0x08,0x08,0x10,0x11,0x3e,0x32,0x52,0x12,0x12,0x1f,0x11,0x12,0x04,0x00,0x10,0x10,0x10,0x12,0x12,0xd4,0x58,0x58,0x54,0x94,0x92,0x12,0x13,0x12,0x50,0x20 -+// 30726 砆 ; -+,0x00,0x7f,0x10,0x11,0x10,0x20,0x3e,0x33,0x52,0x12,0x12,0x12,0x1e,0x12,0x11,0x02,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x50,0x50,0x48,0x88,0x84,0x07,0x02 -+// 30727 砇 ; -+,0x00,0x00,0x7e,0x11,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x1e,0x12,0x11,0x06,0x00,0x20,0x10,0x10,0xff,0x84,0x84,0x48,0x48,0x50,0x30,0x20,0x50,0x88,0x07,0x02,0x00 -+// 30728 砈 ; -+,0x00,0x7e,0x10,0x10,0x10,0x20,0x3c,0x34,0x54,0x14,0x14,0x1d,0x15,0x11,0x02,0x04,0x00,0xff,0x80,0x80,0xbe,0xa2,0xa2,0xa2,0xaa,0xa4,0xa0,0x20,0x21,0x21,0x1f,0x00 -+// 30729 砉 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x3f,0x01,0x02,0x07,0x1c,0x64,0x07,0x04,0x80,0x80,0xfe,0x80,0xfc,0x80,0xff,0x80,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30730 砊 ; -+,0x00,0x7f,0x08,0x0b,0x10,0x10,0x1c,0x34,0x34,0x54,0x14,0x14,0x14,0x1d,0x15,0x02,0x40,0x20,0x22,0xff,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x89,0x09,0x07,0x00 -+// 30731 砋 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x13,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x9f,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0xff,0x00 -+// 30732 砌 ; -+,0x00,0x7e,0x10,0x10,0x10,0x23,0x3c,0x34,0x54,0x14,0x14,0x14,0x1c,0x14,0x10,0x00,0x80,0x80,0xbf,0x89,0xe9,0x89,0x89,0x89,0x91,0x91,0xd1,0x91,0x21,0x22,0x4a,0x84 -+// 30733 砍 ; -+,0x00,0x3e,0x08,0x08,0x10,0x10,0x1d,0x36,0x54,0x14,0x14,0x14,0x1c,0x15,0x12,0x04,0x40,0x40,0x40,0xff,0x82,0xa4,0x20,0x20,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 30734 砎 ; -+,0x00,0x00,0x7f,0x08,0x08,0x11,0x1e,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x01,0x02,0x20,0x20,0x50,0x48,0x84,0x03,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x88,0x08,0x08 -+// 30735 砏 ; -+,0x00,0x7e,0x08,0x08,0x08,0x10,0x1f,0x33,0x52,0x12,0x12,0x12,0x1e,0x11,0x02,0x04,0x00,0x48,0x48,0x48,0x84,0x84,0x02,0xfd,0x44,0x44,0x44,0x84,0x84,0x08,0x28,0x10 -+// 30736 砐 ; -+,0x00,0x00,0x7e,0x10,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x12,0x1f,0x11,0x02,0x04,0x00,0xfe,0x44,0x44,0x48,0x4e,0x62,0x62,0x52,0x94,0x94,0x88,0x14,0x24,0x43,0x82 -+// 30737 砑 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x1e,0x32,0x32,0x52,0x12,0x12,0x1f,0x12,0x00,0x00,0x00,0xff,0x04,0x44,0x44,0x84,0xff,0x0c,0x14,0x24,0x44,0x84,0x04,0x04,0x14,0x08 -+// 30738 砒 ; -+,0x00,0x7e,0x10,0x10,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x88,0x88,0x88,0x88,0x88,0x8f,0xe8,0x88,0x88,0x88,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 30739 砓 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x1f,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x01,0x06,0x78,0x48,0x48,0x48,0x48,0x8f,0x00,0xfe,0x84,0x44,0x28,0x10,0x28,0x44,0x87,0x02 -+// 30740 研 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x3d,0x34,0x54,0x14,0x14,0x14,0x1c,0x11,0x02,0x04,0x00,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 30741 砕 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x3e,0x52,0x13,0x12,0x13,0x12,0x1e,0x12,0x00,0x00,0x20,0x20,0xfc,0x24,0x24,0x45,0x45,0x97,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 30742 砖 ; -+,0x00,0x7e,0x08,0x09,0x10,0x10,0x1f,0x34,0x34,0x54,0x14,0x14,0x1c,0x14,0x10,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x40,0x40,0xfc,0x04,0x08,0x50,0x20,0x10,0x00 -+// 30743 砗 ; -+,0x00,0x7e,0x11,0x10,0x10,0x10,0x3c,0x35,0x54,0x14,0x17,0x14,0x1c,0x14,0x10,0x00,0x20,0x20,0xfe,0x40,0x50,0x90,0x90,0xfe,0x10,0x12,0xff,0x10,0x10,0x10,0x10,0x10 -+// 30744 砘 ; -+,0x00,0x7f,0x08,0x09,0x10,0x10,0x1c,0x34,0x34,0x54,0x14,0x14,0x1c,0x14,0x10,0x00,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x92,0x92,0xfe,0x12,0x10,0x11,0x11,0x0f,0x00 -+// 30745 砙 ; -+,0x00,0x01,0x7e,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xff,0x40,0x40,0x40,0x7c,0x44,0x44,0x64,0x54,0x54,0x84,0x95,0xa5,0xc7,0x80 -+// 30746 砚 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x11,0x02,0x00,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0xb2,0x28,0x48,0x49,0x89,0x07,0x00 -+// 30747 砛 ; -+,0x00,0x7e,0x10,0x10,0x10,0x21,0x3e,0x52,0x12,0x13,0x12,0x12,0x1e,0x10,0x10,0x00,0x20,0x20,0x50,0x50,0x88,0x24,0x17,0x12,0x00,0xfe,0x04,0x08,0x08,0x10,0x10,0x00 -+// 30748 砜 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x7d,0x25,0x25,0x25,0x25,0x3d,0x26,0x22,0x04,0x08,0x00,0xfc,0x04,0x14,0x1c,0x94,0x54,0x24,0x24,0x54,0x94,0x15,0x05,0x03,0x03,0x01 -+// 30749 砝 ; -+,0x00,0x7f,0x08,0x08,0x08,0x10,0x1e,0x32,0x33,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0xff,0x20,0x20,0x48,0x44,0xfe,0x42,0x00 -+// 30750 砞 ; -+,0x00,0x3e,0x08,0x0b,0x10,0x1c,0x35,0x54,0x14,0x14,0x14,0x1d,0x12,0x04,0x00,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x60,0x70,0xa8,0xa4,0x23,0x22,0x20,0x20,0x20 -+// 30751 砟 ; -+,0x00,0x00,0x7f,0x08,0x08,0x11,0x1e,0x12,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x40,0x40,0x7f,0xa0,0xa0,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20 -+// 30752 砠 ; -+,0x00,0x00,0x7e,0x10,0x10,0x10,0x20,0x3e,0x32,0x52,0x12,0x12,0x1e,0x10,0x13,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 30753 砡 ; -+,0x00,0x7e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x01,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0xfe,0x10,0x14,0x12,0x12,0x10,0x10,0xff,0x00 -+// 30754 砢 ; -+,0x00,0x7d,0x10,0x10,0x10,0x10,0x1c,0x34,0x34,0x54,0x14,0x14,0x1c,0x14,0x00,0x00,0x00,0xff,0x02,0x02,0x02,0xf2,0x92,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x0a,0x04 -+// 30755 砣 ; -+,0x00,0x7e,0x10,0x11,0x11,0x12,0x1c,0x34,0x34,0x54,0x14,0x14,0x1c,0x14,0x10,0x00,0x20,0x10,0x10,0xff,0x01,0x42,0x40,0x44,0x4e,0x70,0x40,0x42,0x42,0x42,0x3e,0x00 -+// 30756 砤 ; -+,0x00,0x00,0x7e,0x11,0x11,0x12,0x1e,0x32,0x53,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x80,0x80,0x82,0xff,0x10,0x10,0x9e,0xf2,0x92,0x92,0x9a,0x95,0x91,0x81,0x7f,0x00 -+// 30757 砥 ; -+,0x00,0x7e,0x10,0x10,0x10,0x20,0x3c,0x24,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x0e,0xf0,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x90,0x88,0x89,0x85,0xb5,0xcb,0x89 -+// 30758 砦 ; -+,0x02,0x12,0x13,0x12,0x12,0x13,0x3c,0x00,0x7f,0x02,0x07,0x0c,0x34,0x44,0x07,0x04,0x20,0x20,0xa6,0x38,0x21,0xa1,0x1f,0x00,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 30759 砧 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x12,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 30760 砨 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x1c,0x34,0x54,0x14,0x15,0x15,0x1d,0x12,0x02,0x04,0x20,0x10,0xfe,0x82,0xfe,0x82,0x80,0xfe,0x84,0x88,0x10,0x20,0x41,0x41,0x3f,0x00 -+// 30761 砩 ; -+,0x00,0x3e,0x09,0x08,0x10,0x11,0x1d,0x35,0x55,0x15,0x14,0x1c,0x14,0x11,0x02,0x04,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xff,0x49,0x49,0x8d,0x8a,0x08,0x08,0x08 -+// 30762 砪 ; -+,0x00,0x7f,0x10,0x10,0x10,0x10,0x3f,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xfe,0x82,0xa2,0x92,0x92,0xff,0x82,0x92,0x8a,0x8a,0xff,0x02,0x02,0x14,0x08 -+// 30763 砫 ; -+,0x00,0x00,0x3e,0x09,0x08,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x1e,0x12,0x11,0x00,0x40,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 30764 砬 ; -+,0x00,0x7f,0x08,0x09,0x08,0x11,0x1e,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x03,0x00,0x20,0x10,0x10,0xff,0x00,0x04,0x86,0x84,0x44,0x48,0x48,0x08,0x10,0x00,0xff,0x00 -+// 30765 砭 ; -+,0x00,0x7c,0x13,0x10,0x10,0x21,0x3e,0x32,0x52,0x12,0x12,0x1e,0x13,0x12,0x04,0x00,0x00,0x3e,0xc0,0x20,0x20,0xfe,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0xe0,0x1f,0x02 -+// 30766 砮 ; -+,0x08,0x08,0x7f,0x11,0x1a,0x06,0x1b,0x61,0x7f,0x02,0x04,0x0f,0x34,0x44,0x07,0x04,0x00,0x7e,0x84,0x24,0x28,0x10,0x6f,0x82,0xff,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 30767 砯 ; -+,0x00,0x7e,0x14,0x12,0x11,0x20,0x3f,0x64,0x24,0x24,0x25,0x25,0x3d,0x22,0x04,0x00,0x20,0x20,0x20,0x22,0x24,0x28,0xb0,0xb0,0xa8,0xa8,0x24,0x23,0x22,0x20,0xa0,0x40 -+// 30768 砰 ; -+,0x00,0x7d,0x10,0x10,0x11,0x20,0x3c,0x64,0x25,0x24,0x24,0x3c,0x24,0x20,0x00,0x00,0x00,0xfe,0x10,0x10,0x12,0x92,0x94,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 30769 砱 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x1f,0x32,0x52,0x13,0x12,0x12,0x1e,0x12,0x10,0x00,0x20,0x20,0x50,0x48,0x84,0xa3,0x12,0x10,0x00,0xfe,0x04,0x48,0x30,0x10,0x08,0x00 -+// 30770 砲 ; -+,0x00,0x00,0x7e,0x08,0x09,0x11,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x80,0x80,0xfe,0x82,0x02,0xf2,0x92,0x92,0x92,0xf2,0x8a,0x84,0x81,0x81,0x7f,0x00 -+// 30771 砳 ; -+,0x00,0x7e,0x08,0x08,0x08,0x10,0x1e,0x12,0x32,0x53,0x12,0x12,0x12,0x1e,0x12,0x00,0x00,0xff,0x10,0x10,0x10,0x20,0x3e,0x62,0xa2,0x22,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 30772 破 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x3c,0x34,0x54,0x14,0x14,0x1d,0x15,0x12,0x04,0x09,0x10,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0xc4,0xa4,0xa8,0x10,0x28,0x44,0x87,0x02 -+// 30773 砵 ; -+,0x00,0x7e,0x10,0x13,0x10,0x10,0x3c,0x34,0x55,0x15,0x16,0x14,0x1c,0x14,0x10,0x00,0x20,0x20,0x20,0xff,0x70,0x68,0xa8,0xa4,0x24,0x22,0x23,0xfc,0x20,0x20,0x20,0x20 -+// 30774 砶 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x20,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 30775 砷 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10 -+// 30776 砸 ; -+,0x00,0x7d,0x11,0x11,0x11,0x11,0x3d,0x35,0x55,0x15,0x15,0x15,0x1d,0x15,0x01,0x00,0x00,0xff,0x10,0x10,0x7e,0x52,0x52,0x52,0x52,0x52,0x5a,0x54,0x10,0x10,0xff,0x00 -+// 30777 砹 ; -+,0x00,0x7e,0x0b,0x08,0x10,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x10,0x13,0x0c,0x48,0x48,0xff,0x48,0x48,0x00,0x84,0x84,0x88,0x48,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 30778 砺 ; -+,0x00,0x7f,0x09,0x09,0x11,0x1d,0x35,0x35,0x55,0x15,0x15,0x1e,0x12,0x04,0x09,0x12,0x02,0xff,0x00,0x00,0x7f,0x10,0x10,0x1e,0x12,0x22,0x22,0x22,0x42,0x82,0x14,0x08 -+// 30779 砻 ; -+,0x01,0x01,0x3f,0x01,0x02,0x02,0x05,0x08,0x10,0x7f,0x02,0x07,0x1c,0x64,0x07,0x04,0x20,0x10,0xff,0x40,0x4e,0x71,0xc1,0x3f,0x00,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30780 砼 ; -+,0x00,0x7f,0x08,0x08,0x10,0x11,0x3e,0x34,0x55,0x14,0x14,0x14,0x1c,0x14,0x13,0x00,0x20,0x20,0x50,0x48,0x8c,0x07,0x02,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 30781 砽 ; -+,0x00,0x7e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x1e,0x11,0x11,0x02,0x04,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x12,0x12,0x1a,0x04 -+// 30782 砾 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x1e,0x13,0x12,0x04,0x00,0x00,0x1e,0xe0,0x90,0x90,0x90,0x92,0xff,0x10,0x94,0x92,0x93,0x11,0x11,0x50,0x20 -+// 30783 砿 ; -+,0x00,0x7e,0x10,0x11,0x11,0x21,0x3d,0x65,0x25,0x25,0x25,0x3d,0x26,0x22,0x04,0x08,0x20,0x10,0x10,0xff,0x10,0x18,0x10,0x10,0x20,0x20,0x28,0x44,0x44,0xfe,0x42,0x00 -+// 30784 础 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x92,0x10,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 30785 硁 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x53,0x12,0x12,0x12,0x1e,0x12,0x01,0x00,0x00,0xfc,0x08,0x08,0x10,0x28,0x44,0x82,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 30786 硂 ; -+,0x00,0x00,0x7f,0x08,0x08,0x11,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x11,0x00,0x10,0x10,0x28,0x44,0x82,0x01,0xfe,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 30787 硃 ; -+,0x00,0x7e,0x08,0x08,0x11,0x11,0x3e,0x55,0x14,0x14,0x14,0x1c,0x15,0x12,0x00,0x00,0x10,0x90,0x90,0xfe,0x10,0x10,0x12,0xff,0x30,0x58,0x54,0x94,0x13,0x12,0x10,0x10 -+// 30788 硄 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x1f,0x32,0x32,0x52,0x12,0x12,0x1e,0x12,0x11,0x02,0x10,0x10,0x12,0x92,0x54,0x14,0xff,0x28,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 30789 硅 ; -+,0x00,0x3f,0x08,0x08,0x10,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x13,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 30790 硆 ; -+,0x00,0x00,0x7f,0x08,0x08,0x11,0x12,0x3e,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0x7a,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 30791 硇 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x20,0xfe,0x82,0xca,0xaa,0xaa,0x92,0xaa,0xaa,0xca,0x82,0x82,0xfe,0x82 -+// 30792 硈 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 30793 硉 ; -+,0x00,0x00,0x7d,0x10,0x13,0x10,0x3d,0x24,0x65,0x24,0x24,0x27,0x3c,0x24,0x00,0x00,0x20,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 30794 硊 ; -+,0x00,0x7e,0x10,0x11,0x12,0x10,0x3c,0x34,0x54,0x14,0x14,0x15,0x1d,0x12,0x02,0x04,0x40,0x7c,0x88,0x10,0xff,0x80,0xbc,0xa4,0xa4,0xa4,0xb4,0x28,0x21,0x21,0x1f,0x00 -+// 30795 硋 ; -+,0x00,0x7e,0x11,0x10,0x10,0x10,0x3c,0x34,0x54,0x14,0x14,0x15,0x1c,0x11,0x06,0x00,0x40,0x20,0xff,0x20,0x20,0x44,0xf8,0x10,0x22,0x44,0x88,0x18,0x64,0x82,0x02,0x00 -+// 30796 硌 ; -+,0x00,0x7e,0x08,0x09,0x12,0x10,0x3c,0x24,0x67,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x80,0x80,0xfe,0x84,0x48,0x30,0x28,0xc7,0x02,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 30797 硍 ; -+,0x00,0x00,0x7e,0x08,0x08,0x10,0x10,0x3e,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa0,0xa4,0xa8,0x90,0x98,0xac,0xc7,0x82 -+// 30798 硎 ; -+,0x00,0x7b,0x11,0x11,0x21,0x21,0x7b,0x29,0x29,0x29,0x29,0x2a,0x3a,0x24,0x28,0x00,0x02,0xf2,0x42,0x4a,0x4a,0x4a,0xea,0x4a,0x4a,0x4a,0x4a,0x4a,0x42,0x42,0x4a,0x04 -+// 30799 硏 ; -+,0x00,0x7d,0x10,0x10,0x10,0x20,0x3d,0x34,0x54,0x14,0x14,0x1c,0x15,0x11,0x02,0x04,0x00,0xef,0x84,0x84,0x84,0x84,0xdf,0x84,0x84,0x84,0x84,0x84,0x04,0x04,0x04,0x04 -+// 30800 硐 ; -+,0x00,0x3e,0x08,0x08,0x10,0x10,0x1e,0x32,0x32,0x52,0x12,0x1e,0x12,0x10,0x00,0x00,0x00,0xff,0x81,0x81,0xff,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0xa5,0xa1,0x81,0x85,0x82 -+// 30801 硑 ; -+,0x00,0x7e,0x08,0x09,0x10,0x10,0x3e,0x52,0x13,0x12,0x12,0x1e,0x12,0x11,0x02,0x04,0x82,0x44,0x28,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 30802 硒 ; -+,0x00,0x7d,0x10,0x10,0x11,0x11,0x3d,0x35,0x55,0x15,0x15,0x15,0x1d,0x15,0x11,0x00,0x00,0xff,0x28,0x28,0xff,0x29,0x29,0x29,0x29,0x49,0x47,0x81,0x01,0xff,0x01,0x00 -+// 30803 硓 ; -+,0x00,0x00,0x3e,0x08,0x08,0x10,0x1e,0x12,0x32,0x52,0x12,0x13,0x1e,0x12,0x00,0x00,0x20,0x20,0xf9,0x21,0x22,0x24,0xff,0x10,0x20,0x44,0xce,0x70,0x41,0x41,0x3f,0x00 -+// 30804 硔 ; -+,0x00,0x7f,0x08,0x08,0x09,0x10,0x1e,0x32,0x52,0x13,0x12,0x1e,0x12,0x10,0x01,0x02,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0xff,0x00,0x48,0x44,0x86,0x02,0x02 -+// 30805 硕 ; -+,0x00,0x3e,0x08,0x08,0x10,0x10,0x1e,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x03,0x00,0xff,0x10,0x20,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0xa8,0x24,0x42,0x83,0x01 -+// 30806 硖 ; -+,0x00,0x7e,0x11,0x10,0x11,0x10,0x3c,0x37,0x54,0x14,0x14,0x1c,0x14,0x11,0x02,0x04,0x20,0x20,0xff,0x20,0x24,0xa4,0xa8,0xff,0x20,0x50,0x50,0x88,0x88,0x04,0x07,0x02 -+// 30807 硗 ; -+,0x00,0x7e,0x10,0x13,0x10,0x20,0x3c,0x37,0x54,0x17,0x14,0x14,0x1c,0x15,0x12,0x04,0x40,0x40,0x5f,0xe0,0x26,0x38,0xd1,0x0f,0x00,0xfe,0x90,0x90,0x90,0x11,0x11,0x0f -+// 30808 硘 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x3e,0x52,0x12,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xff,0x81,0x81,0x81,0xbd,0xa5,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0xff,0x81 -+// 30809 硙 ; -+,0x00,0x00,0x7e,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x92,0x92,0xfe,0x00,0xfe,0x02,0x02,0x7e,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 30810 硚 ; -+,0x00,0x7d,0x10,0x13,0x10,0x3c,0x35,0x56,0x14,0x14,0x14,0x1c,0x14,0x10,0x01,0x02,0x1e,0xe0,0x20,0xff,0x50,0x88,0x04,0x4b,0x48,0x48,0x48,0x88,0x88,0x88,0x08,0x08 -+// 30811 硛 ; -+,0x00,0x00,0x7e,0x09,0x08,0x10,0x1e,0x32,0x52,0x13,0x12,0x12,0x1e,0x12,0x11,0x02,0x40,0x20,0x20,0xff,0x28,0x28,0xa8,0xaa,0xa9,0x29,0x48,0x48,0x88,0x88,0x28,0x10 -+// 30812 硜 ; -+,0x00,0x01,0x7e,0x10,0x11,0x12,0x21,0x3c,0x24,0x65,0x24,0x24,0x3c,0x24,0x23,0x00,0x00,0xff,0x00,0x92,0x24,0x48,0x24,0x92,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 30813 硝 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x92,0x54,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 30814 硞 ; -+,0x00,0x7e,0x08,0x08,0x11,0x10,0x1f,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x90,0x90,0xfe,0x10,0x10,0xff,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44 -+// 30815 硟 ; -+,0x00,0x01,0x3e,0x08,0x08,0x10,0x1d,0x34,0x34,0x56,0x15,0x1c,0x15,0x12,0x04,0x08,0x00,0xc3,0x5c,0x44,0x94,0x94,0xd7,0x54,0x54,0x54,0x9f,0x80,0x40,0x30,0x0f,0x02 -+// 30816 硠 ; -+,0x00,0x00,0x7e,0x08,0x08,0x10,0x10,0x3c,0x54,0x14,0x14,0x14,0x1c,0x14,0x10,0x00,0x20,0x10,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa0,0xa2,0x94,0x98,0xac,0xc7,0x82 -+// 30817 硡 ; -+,0x00,0x7e,0x11,0x11,0x12,0x10,0x3d,0x34,0x54,0x14,0x14,0x14,0x1d,0x12,0x14,0x00,0x20,0x10,0xff,0x21,0x22,0x20,0xff,0x40,0x50,0x50,0xa0,0xa4,0x42,0xff,0x41,0x00 -+// 30818 硢 ; -+,0x00,0x00,0x7f,0x08,0x08,0x11,0x1e,0x32,0x53,0x12,0x12,0x1e,0x13,0x12,0x00,0x00,0x10,0x10,0x28,0x44,0x83,0x7c,0x10,0x10,0xff,0x10,0x54,0x92,0x11,0x10,0x50,0x20 -+// 30819 硣 ; -+,0x00,0x7e,0x08,0x08,0x08,0x11,0x1e,0x32,0x52,0x12,0x13,0x12,0x1e,0x12,0x10,0x00,0x20,0x20,0xfa,0x22,0x24,0xff,0x10,0x3e,0x44,0xa8,0xff,0x10,0x10,0x10,0x50,0x20 -+// 30820 硤 ; -+,0x00,0x7e,0x08,0x0b,0x10,0x11,0x1d,0x35,0x56,0x14,0x14,0x14,0x1c,0x15,0x12,0x04,0x20,0x20,0x20,0xff,0x20,0x24,0x24,0x24,0xaa,0x51,0x50,0x88,0x88,0x04,0x07,0x02 -+// 30821 硥 ; -+,0x00,0x00,0x7e,0x10,0x13,0x10,0x3e,0x32,0x52,0x12,0x12,0x12,0x1f,0x11,0x12,0x04,0x50,0x48,0x4c,0x44,0xff,0x52,0x54,0x5a,0x54,0x9a,0x94,0x98,0x31,0x51,0x8f,0x00 -+// 30822 硦 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x13,0x1e,0x12,0x10,0x01,0x02,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x44,0x44,0xff,0x44,0x84,0x84,0x04,0x04 -+// 30823 硧 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0x00,0x7e,0x04,0x28,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x9a,0x84 -+// 30824 硨 ; -+,0x00,0x7d,0x10,0x10,0x11,0x11,0x3d,0x35,0x35,0x54,0x14,0x1f,0x14,0x10,0x00,0x00,0x20,0xfe,0x20,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 30825 硩 ; -+,0x04,0x04,0x3f,0x04,0x07,0x7c,0x24,0x14,0x09,0x3f,0x02,0x07,0x1c,0x64,0x07,0x04,0x04,0x1e,0x60,0x42,0x7f,0x48,0x48,0x88,0x08,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30826 硪 ; -+,0x00,0x7e,0x0b,0x08,0x10,0x13,0x3c,0x24,0x64,0x25,0x26,0x24,0x3c,0x24,0x22,0x01,0x08,0x68,0x8a,0x8a,0x88,0xff,0x88,0xaa,0xca,0x84,0x88,0x8d,0x95,0xa5,0xc3,0x01 -+// 30827 硫 ; -+,0x00,0x3e,0x09,0x08,0x08,0x10,0x1d,0x14,0x34,0x54,0x14,0x1c,0x14,0x11,0x02,0x04,0x20,0x10,0xff,0x20,0x48,0x84,0xfe,0x02,0xa8,0xa8,0xa8,0xa8,0xa9,0x29,0x27,0x00 -+// 30828 硬 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x3e,0x32,0x52,0x12,0x13,0x1e,0x12,0x10,0x03,0x0c,0x00,0xff,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x20,0xa0,0x60,0x98,0x07,0x02 -+// 30829 硭 ; -+,0x00,0x3e,0x09,0x08,0x08,0x10,0x1e,0x33,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x44,0x44,0xff,0x44,0x64,0x54,0x10,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x7e,0x00 -+// 30830 确 ; -+,0x00,0x00,0x3e,0x08,0x09,0x10,0x1e,0x32,0x52,0x12,0x12,0x1e,0x11,0x11,0x02,0x04,0x40,0x7e,0x44,0x88,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x12,0x12,0x0a,0x04 -+// 30831 硯 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x11,0x06,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x48,0x48,0x89,0x09,0x07 -+// 30832 硰 ; -+,0x10,0x08,0x22,0x14,0x05,0x3a,0x08,0x07,0x3f,0x02,0x04,0x0f,0x14,0x24,0x07,0x04,0x10,0x14,0x92,0x91,0x16,0x18,0xe0,0x00,0xff,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30833 硱 ; -+,0x00,0x3e,0x08,0x08,0x10,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xff,0x88,0x88,0x88,0xff,0x98,0xbc,0xaa,0xc9,0x88,0x88,0x88,0xff,0x80,0x00 -+// 30834 硲 ; -+,0x00,0x7f,0x08,0x08,0x09,0x10,0x1e,0x32,0x53,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0x48,0x44,0x82,0x12,0x28,0x44,0x83,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 30835 硳 ; -+,0x00,0x00,0x7d,0x10,0x10,0x13,0x3c,0x24,0x65,0x25,0x26,0x3c,0x24,0x21,0x02,0x04,0x20,0x20,0xfe,0x20,0x20,0xff,0x48,0x48,0x4c,0x4a,0x49,0x49,0x88,0x08,0x28,0x10 -+// 30836 硴 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x1e,0x32,0x53,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x88,0x88,0xff,0x88,0x88,0x50,0x52,0x92,0x94,0x98,0xb0,0xd0,0x91,0x91,0x8f,0x80 -+// 30837 硵 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x1e,0x12,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x10,0x1f,0x10,0x10,0xfe,0x82,0xc6,0xaa,0x92,0xaa,0xc6,0x82,0x82,0xfe,0x82 -+// 30838 硶 ; -+,0x00,0x00,0x7d,0x11,0x11,0x10,0x3c,0x34,0x55,0x16,0x15,0x14,0x1c,0x14,0x10,0x00,0x20,0x20,0x22,0x22,0xfe,0x22,0x50,0x88,0x24,0x13,0xfc,0x08,0x10,0x10,0x20,0x00 -+// 30839 硷 ; -+,0x00,0x00,0x7f,0x08,0x08,0x11,0x12,0x3e,0x32,0x53,0x12,0x12,0x1e,0x12,0x11,0x00,0x20,0x20,0x50,0x50,0x88,0x06,0xfb,0x00,0x44,0x26,0xa4,0xa8,0x88,0x12,0xff,0x00 -+// 30840 硸 ; -+,0x00,0x00,0x7e,0x08,0x08,0x11,0x1d,0x35,0x55,0x15,0x15,0x15,0x1d,0x12,0x12,0x04,0x10,0x92,0x92,0xfe,0x00,0xff,0x00,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 30841 硹 ; -+,0x00,0x00,0x7e,0x10,0x13,0x10,0x3d,0x35,0x56,0x14,0x14,0x14,0x1c,0x14,0x10,0x00,0x84,0x94,0x94,0x94,0xd2,0xa2,0xa3,0xca,0xa8,0x88,0x90,0x92,0xa1,0xbf,0x81,0x80 -+// 30842 硺 ; -+,0x00,0x7e,0x10,0x10,0x10,0x11,0x3e,0x33,0x52,0x13,0x12,0x1e,0x13,0x12,0x00,0x00,0x00,0xff,0x10,0x20,0x62,0x94,0x28,0x48,0x9c,0x6a,0x49,0x88,0x08,0x08,0x50,0x20 -+// 30843 硻 ; -+,0x00,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x00,0x3f,0x04,0x0f,0x34,0x44,0x07,0x04,0x00,0x7e,0x44,0x24,0x28,0x18,0x27,0x42,0x80,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30844 硼 ; -+,0x00,0x3d,0x11,0x11,0x11,0x1d,0x35,0x35,0x55,0x15,0x15,0x15,0x1d,0x16,0x12,0x04,0x00,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0x29,0x29,0xb5,0x42 -+// 30845 硽 ; -+,0x00,0x00,0x7e,0x11,0x10,0x10,0x1d,0x37,0x35,0x55,0x15,0x15,0x1d,0x14,0x10,0x00,0x20,0x20,0x20,0xfe,0x48,0xa4,0x23,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x22,0x22,0x1e -+// 30846 硾 ; -+,0x00,0x00,0x7e,0x08,0x09,0x10,0x10,0x3f,0x52,0x12,0x12,0x13,0x1e,0x12,0x10,0x00,0x00,0x0e,0xf0,0x10,0xff,0x92,0x92,0xff,0x92,0x92,0x92,0xff,0x10,0x10,0xfe,0x00 -+// 30847 硿 ; -+,0x00,0x00,0x7e,0x10,0x11,0x10,0x3e,0x32,0x53,0x12,0x12,0x12,0x1e,0x12,0x11,0x00,0x20,0x10,0xff,0x81,0x02,0x24,0x42,0x81,0x01,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 30848 碀 ; -+,0x00,0x01,0x7e,0x11,0x10,0x11,0x1c,0x34,0x35,0x54,0x14,0x15,0x1c,0x14,0x10,0x00,0x1c,0xe0,0x44,0x24,0xa8,0xfc,0x24,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0xa0,0x40 -+// 30849 碁 ; -+,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x04,0x1f,0x62,0x07,0x0c,0x34,0x07,0x04,0x10,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xff,0x08,0xfc,0x03,0xf0,0x10,0x10,0xf0,0x10 -+// 30850 碂 ; -+,0x00,0x00,0x7e,0x08,0x09,0x10,0x1e,0x32,0x53,0x12,0x12,0x1e,0x11,0x12,0x00,0x00,0x20,0x10,0xff,0x81,0x02,0xfe,0x00,0x00,0xff,0x10,0x54,0x92,0x11,0x11,0x50,0x20 -+// 30851 碃 ; -+,0x00,0x00,0x7f,0x08,0x08,0x11,0x1e,0x32,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 30852 碄 ; -+,0x00,0x7c,0x10,0x13,0x10,0x20,0x3d,0x55,0x16,0x14,0x14,0x1c,0x14,0x10,0x00,0x00,0x88,0x88,0x88,0xdf,0x88,0x8c,0xdc,0x8c,0xaa,0xaa,0xc9,0x88,0x88,0x88,0x88,0x88 -+// 30853 碅 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x00,0x00,0x00,0xff,0x81,0x85,0xb9,0x89,0xff,0x99,0xad,0xcb,0x89,0x89,0x89,0x81,0xff,0x81 -+// 30854 碆 ; -+,0x10,0x09,0x29,0x11,0x15,0x0a,0x32,0x14,0x03,0x3f,0x04,0x0f,0x14,0x64,0x07,0x04,0x20,0xfe,0x22,0x20,0xfc,0x48,0x30,0xce,0x04,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 30855 碇 ; -+,0x00,0x7e,0x09,0x09,0x12,0x11,0x1e,0x32,0x52,0x12,0x12,0x1e,0x13,0x11,0x02,0x04,0x20,0x10,0xff,0x02,0x00,0xfe,0x10,0x90,0x90,0x9e,0x90,0x90,0x50,0x30,0x0f,0x02 -+// 30856 碈 ; -+,0x00,0x00,0x3e,0x08,0x08,0x10,0x1e,0x32,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x0e,0xf0,0x90,0x90,0xff,0x88,0xa5,0xc3,0x01,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 30857 碉 ; -+,0x00,0x7e,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1f,0x11,0x12,0x02,0x04,0x00,0xff,0x91,0x91,0xff,0x91,0xff,0x81,0xbd,0xa5,0xa5,0x3d,0x01,0x01,0x05,0x02 -+// 30858 碊 ; -+,0x00,0x7f,0x08,0x09,0x10,0x10,0x3e,0x32,0x53,0x12,0x13,0x12,0x1e,0x12,0x11,0x00,0x50,0x48,0x7f,0xc4,0x28,0x30,0x59,0xd5,0x4b,0x7c,0xc2,0x44,0x38,0x31,0xcd,0x03 -+// 30859 碋 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x3f,0x52,0x12,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x02,0xf2,0x92,0x92,0xf2,0x82,0x02,0x0a,0x04 -+// 30860 碌 ; -+,0x01,0x7e,0x08,0x09,0x10,0x1c,0x37,0x54,0x15,0x14,0x14,0x1c,0x15,0x12,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x22,0x34,0xa8,0x68,0xa4,0x27,0x22,0xa0,0x40 -+// 30861 碍 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x3d,0x34,0x54,0x15,0x14,0x14,0x1c,0x14,0x10,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xff,0x04,0x04,0xff,0x04,0x44,0x24,0x24,0x14,0x08 -+// 30862 碎 ; -+,0x00,0x7e,0x0b,0x08,0x10,0x10,0x1d,0x36,0x54,0x14,0x17,0x14,0x1c,0x14,0x10,0x00,0x40,0x20,0xfe,0x88,0x88,0x88,0x54,0x22,0x00,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 30863 碏 ; -+,0x00,0x7e,0x09,0x08,0x10,0x10,0x3d,0x54,0x14,0x14,0x14,0x14,0x14,0x1c,0x14,0x00,0x48,0x48,0xfe,0x48,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 30864 碐 ; -+,0x00,0x7e,0x09,0x08,0x13,0x10,0x3c,0x55,0x16,0x14,0x15,0x1e,0x14,0x10,0x03,0x0c,0x20,0x20,0xfe,0x20,0xff,0x08,0x84,0x42,0x7c,0x84,0x48,0x30,0x30,0xcc,0x07,0x02 -+// 30865 碑 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x13,0x1e,0x12,0x10,0x00,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 30866 碒 ; -+,0x00,0x7e,0x10,0x10,0x11,0x12,0x3c,0x34,0x54,0x15,0x14,0x15,0x1c,0x14,0x13,0x00,0x20,0x20,0x50,0x88,0x04,0xfb,0x20,0x20,0x20,0xfe,0x20,0x24,0xa8,0xb0,0xff,0x00 -+// 30867 碓 ; -+,0x00,0x7e,0x08,0x08,0x09,0x12,0x1e,0x32,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x50,0x48,0x88,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x80,0x80 -+// 30868 碔 ; -+,0x00,0x7e,0x09,0x08,0x13,0x10,0x1c,0x35,0x35,0x55,0x15,0x15,0x1d,0x15,0x13,0x00,0x08,0x0a,0xe9,0x09,0xff,0x48,0x48,0x48,0x78,0x48,0x48,0x45,0x45,0x75,0x83,0x01 -+// 30869 碕 ; -+,0x00,0x7e,0x11,0x10,0x10,0x10,0x23,0x3c,0x54,0x14,0x14,0x14,0x1c,0x14,0x10,0x00,0x20,0x20,0xfe,0x50,0x48,0x84,0xff,0x04,0xf4,0x94,0x94,0xf4,0x84,0x04,0x14,0x08 -+// 30870 碖 ; -+,0x00,0x7f,0x08,0x08,0x11,0x12,0x1c,0x35,0x55,0x15,0x15,0x1d,0x15,0x15,0x11,0x01,0x20,0x20,0x50,0x88,0x04,0xfb,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x4a,0x04 -+// 30871 碗 ; -+,0x00,0x7e,0x09,0x09,0x12,0x10,0x1c,0x35,0x56,0x14,0x14,0x14,0x1c,0x15,0x12,0x04,0x20,0x10,0xff,0x01,0x82,0x80,0xfe,0x32,0xb2,0x52,0x5a,0x94,0x90,0x11,0x11,0x0f -+// 30872 碘 ; -+,0x00,0x7e,0x09,0x09,0x11,0x11,0x3d,0x35,0x55,0x15,0x17,0x14,0x1c,0x14,0x11,0x02,0x50,0x50,0xfe,0x52,0x52,0x52,0xfe,0x52,0x52,0x52,0xff,0x00,0x48,0x84,0x02,0x01 -+// 30873 碙 ; -+,0x00,0x7d,0x09,0x09,0x11,0x11,0x1d,0x35,0x55,0x15,0x15,0x15,0x1d,0x15,0x11,0x01,0x00,0xff,0x01,0x45,0x29,0x7d,0x11,0x11,0x55,0x55,0x55,0x7d,0x05,0x01,0x05,0x02 -+// 30874 碚 ; -+,0x00,0x3e,0x09,0x08,0x08,0x10,0x1e,0x33,0x32,0x52,0x12,0x12,0x1e,0x12,0x10,0x00,0x20,0x10,0xff,0x00,0x82,0x44,0x28,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 30875 碛 ; -+,0x00,0x7f,0x08,0x08,0x10,0x11,0x3e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x00,0x01,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0x92,0x92,0x92,0x28,0x44,0x82,0x02 -+// 30876 碜 ; -+,0x00,0x7e,0x11,0x11,0x12,0x27,0x38,0x69,0x2a,0x2c,0x2b,0x28,0x39,0x2e,0x21,0x0e,0x40,0x90,0xf8,0x04,0x4a,0xff,0x91,0x08,0x27,0xc2,0x18,0x62,0x8c,0x30,0xc0,0x00 -+// 30877 碝 ; -+,0x00,0x7d,0x10,0x11,0x11,0x11,0x3d,0x35,0x55,0x14,0x17,0x14,0x1c,0x10,0x01,0x02,0x00,0xfe,0x20,0xfe,0x52,0x52,0x52,0x5a,0x24,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 30878 碞 ; -+,0x07,0x04,0x07,0x04,0x3f,0x21,0x3f,0x21,0x7f,0x02,0x04,0x1f,0x64,0x04,0x07,0x04,0xf8,0x08,0xf8,0x08,0x7e,0x42,0x7e,0x42,0xff,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30879 碟 ; -+,0x00,0x7c,0x13,0x10,0x10,0x10,0x3c,0x34,0x54,0x15,0x14,0x14,0x1c,0x15,0x12,0x00,0x24,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0xff,0x10,0xff,0x30,0x58,0x94,0x12,0x11,0x10 -+// 30880 碠 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x13,0x12,0x12,0x1e,0x12,0x00,0x00,0x10,0xff,0x00,0x7e,0x42,0x7e,0x00,0xff,0x81,0x02,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 30881 碡 ; -+,0x00,0x7e,0x08,0x08,0x08,0x11,0x1c,0x34,0x54,0x14,0x17,0x14,0x1c,0x14,0x10,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfc,0xa4,0x94,0xff,0xa4,0x94,0xff,0x14,0x08 -+// 30882 碢 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x3c,0x35,0x55,0x15,0x15,0x15,0x1d,0x15,0x11,0x01,0x00,0xfe,0x82,0x82,0xfa,0x8a,0x8a,0xff,0x01,0x7d,0x45,0x45,0x7d,0x01,0x05,0x02 -+// 30883 碣 ; -+,0x00,0x7c,0x10,0x10,0x10,0x10,0x1c,0x34,0x35,0x56,0x15,0x15,0x1d,0x15,0x10,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xff,0x11,0x11,0x29,0x45,0x01,0xfd,0x0a,0x04 -+// 30884 碤 ; -+,0x00,0x00,0x7f,0x10,0x10,0x10,0x3d,0x25,0x65,0x25,0x27,0x3c,0x24,0x21,0x02,0x04,0x88,0x88,0xff,0x88,0x88,0x20,0xfc,0x24,0x24,0x24,0xff,0x50,0x88,0x0c,0x07,0x02 -+// 30885 碥 ; -+,0x00,0x7e,0x09,0x09,0x09,0x11,0x1d,0x35,0x55,0x15,0x15,0x16,0x1e,0x12,0x04,0x08,0x20,0x10,0xff,0x01,0x01,0xff,0x00,0xff,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xad,0x82 -+// 30886 碦 ; -+,0x00,0x00,0x7d,0x11,0x12,0x10,0x1d,0x36,0x34,0x55,0x16,0x14,0x1c,0x14,0x10,0x00,0x20,0x10,0xff,0x41,0x7e,0x84,0x48,0x30,0x48,0x87,0x02,0xfc,0x84,0x84,0xfc,0x84 -+// 30887 碧 ; -+,0x00,0x3f,0x04,0x1e,0x04,0x04,0x3f,0x00,0x3f,0x02,0x04,0x0f,0x14,0x24,0x07,0x04,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0xff,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30888 碨 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x64,0x27,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xff,0x24,0x28,0x10,0x10,0x4c,0x87,0x02 -+// 30889 碩 ; -+,0x7e,0x10,0x10,0x10,0x20,0x3e,0x32,0x52,0x12,0x12,0x12,0x12,0x1e,0x12,0x10,0x01,0xff,0x10,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x44,0x82,0x01 -+// 30890 碪 ; -+,0x00,0x00,0x7f,0x08,0x08,0x10,0x10,0x3e,0x52,0x13,0x12,0x12,0x12,0x1e,0x10,0x00,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x80,0x94,0xa2,0xc2,0xff,0x00 -+// 30891 碫 ; -+,0x00,0x7d,0x09,0x09,0x09,0x11,0x1d,0x35,0x55,0x15,0x15,0x15,0x1d,0x17,0x11,0x01,0x00,0xdc,0x14,0x14,0xd4,0x27,0x40,0x3e,0xd2,0x12,0x14,0x54,0x88,0x14,0x27,0x42 -+// 30892 碬 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x65,0x25,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x00,0xef,0x21,0x21,0xef,0x21,0x00,0xff,0x12,0x12,0xd4,0x0c,0x08,0x14,0x27,0x42 -+// 30893 碭 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x3f,0x54,0x14,0x15,0x16,0x14,0x1d,0x14,0x11,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x40,0xfe,0x2a,0x4a,0x92,0x22,0x42,0x94,0x08 -+// 30894 碮 ; -+,0x00,0x00,0x7e,0x10,0x10,0x20,0x3c,0x67,0x24,0x24,0x24,0x24,0x3d,0x25,0x22,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x90,0x9e,0x90,0x90,0x70,0x1f,0x02 -+// 30895 碯 ; -+,0x00,0x3e,0x09,0x09,0x10,0x10,0x3e,0x52,0x12,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x49,0x92,0x24,0x24,0x92,0x49,0x20,0xfe,0x82,0xaa,0x92,0xaa,0xc6,0x82,0xfe,0x82 -+// 30896 碰 ; -+,0x00,0x00,0x7e,0x10,0x13,0x10,0x22,0x3d,0x35,0x54,0x14,0x14,0x14,0x1c,0x13,0x00,0x00,0x84,0x48,0x10,0xff,0x48,0x48,0x49,0x4a,0x4c,0x48,0x48,0x48,0x48,0xff,0x00 -+// 30897 碱 ; -+,0x00,0x00,0x7e,0x11,0x11,0x21,0x3d,0x65,0x25,0x25,0x25,0x3e,0x22,0x22,0x04,0x08,0x08,0x0c,0x0a,0xff,0x08,0x08,0xfa,0x0b,0xea,0xaa,0xa4,0xed,0x95,0x25,0x43,0x01 -+// 30898 碲 ; -+,0x00,0x00,0x7d,0x10,0x10,0x11,0x21,0x3e,0x54,0x14,0x14,0x14,0x14,0x1c,0x10,0x00,0x20,0x10,0xfe,0x84,0x48,0xff,0x21,0x22,0xfe,0xa4,0xa4,0xa4,0xb4,0xa8,0x20,0x20 -+// 30899 碳 ; -+,0x00,0x7d,0x11,0x11,0x11,0x10,0x1f,0x34,0x34,0x54,0x15,0x1d,0x12,0x14,0x09,0x12,0x20,0x22,0x22,0xfe,0x02,0x80,0xff,0x90,0x92,0xd4,0x28,0x28,0x48,0x84,0x07,0x02 -+// 30900 碴 ; -+,0x00,0x00,0x7e,0x10,0x10,0x10,0x21,0x3e,0x32,0x52,0x12,0x12,0x1e,0x12,0x11,0x00,0x10,0x10,0xff,0x38,0x54,0x97,0x12,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xff,0x00 -+// 30901 碵 ; -+,0x00,0x00,0x7e,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x01,0x20,0x3e,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x48,0x84,0x02 -+// 30902 碶 ; -+,0x00,0x7c,0x13,0x10,0x11,0x20,0x3f,0x34,0x54,0x14,0x15,0x14,0x1c,0x14,0x11,0x06,0x80,0x9e,0xea,0x8a,0xea,0x8a,0xf2,0x9a,0xa4,0x20,0xff,0x50,0x48,0x84,0x07,0x02 -+// 30903 碷 ; -+,0x00,0x7d,0x11,0x11,0x11,0x3d,0x25,0x65,0x25,0x25,0x25,0x3d,0x26,0x22,0x04,0x08,0x1e,0xe0,0x10,0x10,0xff,0x10,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 30904 碸 ; -+,0x00,0x7b,0x22,0x23,0x22,0x23,0x3a,0x6a,0x2b,0x2a,0x2a,0x2b,0x3a,0x22,0x04,0x08,0x00,0xfc,0x04,0xf4,0x44,0xf4,0x54,0x54,0xf4,0x44,0x54,0xf4,0x15,0x05,0x03,0x01 -+// 30905 碹 ; -+,0x00,0x3e,0x09,0x09,0x0a,0x10,0x1c,0x34,0x54,0x14,0x14,0x14,0x1c,0x14,0x13,0x00,0x20,0x10,0xff,0x01,0x02,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 30906 確 ; -+,0x00,0x7e,0x09,0x09,0x0a,0x10,0x1d,0x36,0x54,0x14,0x14,0x14,0x1c,0x14,0x10,0x00,0x10,0x10,0xff,0x31,0x4a,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 30907 碻 ; -+,0x00,0x7d,0x10,0x10,0x10,0x20,0x3c,0x55,0x15,0x15,0x15,0x1d,0x15,0x11,0x01,0x01,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xff,0x01,0x7d,0x45,0x7d,0x45,0x01,0x05,0x02 -+// 30908 碼 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x1e,0x12,0x11,0x00,0x00,0x00,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x01,0xa9,0xa5,0x95,0x11,0x0a,0x04 -+// 30909 碽 ; -+,0x00,0x7e,0x10,0x11,0x10,0x20,0x3c,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x01,0x00,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x44,0x82,0x01 -+// 30910 碾 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x35,0x55,0x15,0x15,0x1d,0x12,0x02,0x04,0x08,0x00,0xfe,0x02,0xfe,0x28,0x28,0xfe,0x28,0xff,0x52,0x54,0x48,0x48,0x54,0x67,0x42 -+// 30911 碿 ; -+,0x00,0x01,0x7d,0x11,0x11,0x21,0x3d,0x55,0x15,0x15,0x15,0x1d,0x15,0x12,0x02,0x04,0x00,0xff,0x01,0xff,0x08,0x49,0x2a,0x7f,0x41,0x7f,0x41,0x7f,0x41,0x41,0x45,0x42 -+// 30912 磀 ; -+,0x00,0x00,0x7e,0x12,0x11,0x11,0x3c,0x37,0x54,0x14,0x14,0x14,0x1c,0x15,0x12,0x00,0x41,0x22,0x14,0x7f,0x08,0x2a,0x2a,0xaa,0xbe,0x8a,0x90,0x90,0xa0,0xc0,0x3f,0x02 -+// 30913 磁 ; -+,0x00,0x7e,0x10,0x13,0x10,0x20,0x3c,0x64,0x25,0x27,0x24,0x25,0x3e,0x23,0x20,0x00,0x82,0x64,0x48,0xff,0x44,0x44,0x84,0x88,0x29,0xde,0x84,0x4a,0x31,0xff,0x21,0x00 -+// 30914 磂 ; -+,0x00,0x01,0x7d,0x11,0x11,0x21,0x3d,0x65,0x24,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x60,0x9f,0x09,0x09,0x29,0x49,0x95,0x22,0xff,0x91,0x91,0xff,0x91,0x91,0xff,0x81 -+// 30915 磃 ; -+,0x00,0x7c,0x13,0x12,0x12,0x22,0x3a,0x6a,0x2a,0x2a,0x2a,0x3a,0x2a,0x25,0x09,0x12,0x02,0x3f,0xd0,0x1e,0x10,0xff,0x9d,0xf2,0x8e,0x80,0xbc,0xa4,0xa4,0x25,0x45,0x83 -+// 30916 磄 ; -+,0x00,0x00,0x7f,0x11,0x11,0x11,0x3d,0x35,0x55,0x15,0x15,0x15,0x1d,0x12,0x02,0x04,0x20,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 30917 磅 ; -+,0x00,0x3e,0x09,0x08,0x08,0x11,0x1f,0x32,0x53,0x12,0x12,0x12,0x1e,0x12,0x11,0x02,0x20,0x10,0xfe,0x84,0x48,0xff,0x21,0x10,0xfe,0x40,0x7c,0x44,0x84,0x84,0x28,0x10 -+// 30918 磆 ; -+,0x00,0x00,0x7e,0x10,0x10,0x21,0x3d,0x66,0x24,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0x00,0xfc,0x84,0xf4,0x94,0xff,0x01,0xfe,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 30919 磇 ; -+,0x00,0x00,0x7e,0x08,0x08,0x10,0x10,0x3e,0x52,0x12,0x12,0x12,0x12,0x1e,0x12,0x00,0x10,0x20,0xfe,0xaa,0x92,0xaa,0x82,0xfe,0x88,0x89,0xea,0x8c,0xa9,0xc9,0x87,0x00 -+// 30920 磈 ; -+,0x00,0x7e,0x11,0x11,0x11,0x21,0x3d,0x65,0x25,0x24,0x24,0x24,0x3c,0x25,0x22,0x04,0x20,0x40,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x50,0x54,0x9a,0x9e,0x11,0x11,0x0f -+// 30921 磉 ; -+,0x00,0x7f,0x10,0x10,0x11,0x10,0x3d,0x34,0x55,0x17,0x14,0x14,0x1c,0x15,0x12,0x00,0xfc,0x44,0x18,0xec,0xdf,0x32,0x4c,0xcb,0x30,0xff,0x30,0x58,0x94,0x13,0x10,0x10 -+// 30922 磊 ; -+,0x00,0x3f,0x02,0x07,0x1c,0x64,0x07,0x04,0x7f,0x08,0x10,0x1f,0x31,0x51,0x1f,0x11,0x00,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x08,0x7f,0x10,0x10,0x3e,0x62,0xa2,0x3e,0x22 -+// 30923 磋 ; -+,0x00,0x7e,0x11,0x10,0x10,0x11,0x20,0x3c,0x37,0x54,0x14,0x15,0x1e,0x14,0x1b,0x00,0x82,0x44,0xff,0x20,0x20,0xfe,0x40,0x40,0xff,0x80,0xfe,0x10,0x10,0x12,0xff,0x00 -+// 30924 磌 ; -+,0x00,0x7e,0x11,0x10,0x10,0x20,0x3c,0x54,0x14,0x14,0x14,0x14,0x1d,0x14,0x10,0x01,0x20,0x20,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x44,0x82,0x01 -+// 30925 磍 ; -+,0x00,0x00,0x7f,0x11,0x10,0x10,0x3e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x20,0x10,0xff,0x11,0x10,0xfe,0x10,0x7c,0x10,0xfe,0x10,0xfe,0x82,0x82,0xfe,0x82 -+// 30926 磎 ; -+,0x00,0x7d,0x11,0x10,0x10,0x20,0x3d,0x54,0x14,0x14,0x15,0x1c,0x14,0x10,0x00,0x01,0x1c,0xe0,0x22,0x94,0xa8,0x44,0xf8,0x22,0xfe,0x12,0xff,0x10,0x28,0x44,0x83,0x02 -+// 30927 磏 ; -+,0x00,0x7e,0x13,0x10,0x11,0x20,0x3f,0x34,0x55,0x14,0x14,0x15,0x1e,0x14,0x08,0x00,0x84,0x48,0xff,0x50,0xfc,0x54,0xff,0x54,0xfc,0xd0,0xd8,0x54,0x53,0x52,0x50,0x50 -+// 30928 磐 ; -+,0x04,0x1f,0x11,0x15,0x3f,0x19,0x15,0x25,0x42,0x1f,0x02,0x07,0x1c,0x64,0x07,0x04,0x00,0x3c,0x24,0x47,0x80,0x7e,0x24,0x18,0xe3,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 30929 磑 ; -+,0x00,0x7e,0x08,0x08,0x10,0x11,0x1c,0x34,0x54,0x14,0x14,0x14,0x1c,0x14,0x03,0x00,0x10,0x92,0x92,0xfe,0x00,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x48,0x10,0xff,0x00 -+// 30930 磒 ; -+,0x00,0x7f,0x08,0x08,0x10,0x10,0x3e,0x52,0x12,0x12,0x12,0x12,0x1e,0x10,0x00,0x01,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x48,0x84,0x02 -+// 30931 磓 ; -+,0x00,0x7e,0x11,0x10,0x10,0x10,0x23,0x3c,0x64,0x24,0x24,0x24,0x3c,0x24,0x21,0x02,0x08,0x10,0x3e,0xa2,0x22,0x3e,0xa0,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2,0x80,0x7f,0x00 -+// 30932 磔 ; -+,0x00,0x7c,0x11,0x12,0x15,0x10,0x3d,0x36,0x54,0x17,0x14,0x14,0x1d,0x16,0x10,0x00,0x84,0x84,0xdf,0x24,0x54,0x9f,0x04,0x24,0x24,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 30933 磕 ; -+,0x00,0x00,0x7e,0x08,0x08,0x11,0x1c,0x34,0x54,0x14,0x15,0x15,0x1d,0x15,0x13,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x28,0x44,0xfe,0x02,0xfe,0x4a,0x4a,0x4a,0xff,0x00 -+// 30934 磖 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x1f,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x00,0xef,0x21,0xa5,0x63,0xa5,0x29,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 30935 磗 ; -+,0x00,0x7e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x12,0x13,0x1e,0x12,0x10,0x00,0x00,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x24,0x24,0x14,0x08 -+// 30936 磘 ; -+,0x00,0x01,0x7e,0x11,0x10,0x10,0x3c,0x34,0x55,0x17,0x14,0x14,0x1c,0x14,0x10,0x00,0x1e,0xe0,0x03,0x22,0x94,0x90,0xfe,0x90,0x10,0xff,0x10,0x92,0x92,0x92,0xfe,0x82 -+// 30937 磙 ; -+,0x00,0x7e,0x09,0x08,0x08,0x11,0x1c,0x34,0x55,0x14,0x14,0x14,0x1d,0x16,0x10,0x00,0x20,0x10,0xff,0x48,0x86,0x22,0x48,0x84,0xfe,0x32,0x54,0x88,0x88,0xa4,0xc7,0x82 -+// 30938 磚 ; -+,0x00,0x3e,0x08,0x08,0x08,0x10,0x1e,0x32,0x52,0x13,0x12,0x13,0x1e,0x12,0x10,0x00,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x12,0xfe,0x04,0xff,0x84,0x44,0x14,0x08 -+// 30939 磛 ; -+,0x04,0x7f,0x25,0x3f,0x25,0x3f,0x04,0x3f,0x04,0x05,0x7f,0x02,0x07,0x1c,0x67,0x04,0x0e,0xf0,0x40,0x40,0x7f,0x48,0x48,0x48,0x88,0x08,0xff,0x00,0xfc,0x04,0xfc,0x04 -+// 30940 磜 ; -+,0x00,0x7e,0x11,0x12,0x16,0x11,0x3c,0x35,0x56,0x15,0x14,0x14,0x1c,0x15,0x12,0x00,0x80,0xef,0x31,0xaa,0x44,0x4a,0xfd,0x00,0x00,0xff,0x10,0x54,0x92,0x11,0x50,0x20 -+// 30941 磝 ; -+,0x01,0x01,0x7f,0x11,0x13,0x11,0x39,0x6f,0x29,0x2b,0x2a,0x3a,0x2a,0x24,0x0a,0x11,0x08,0x08,0xc8,0x10,0xdf,0x32,0x12,0xd2,0x14,0xd4,0x4c,0x48,0x54,0xa6,0xc3,0x02 -+// 30942 磞 ; -+,0x02,0x7a,0x13,0x10,0x13,0x22,0x3a,0x6b,0x2a,0x2a,0x2b,0x3a,0x2a,0x22,0x05,0x08,0x22,0x22,0xfe,0x00,0xde,0x52,0x52,0xde,0x52,0x52,0xde,0x52,0x52,0x52,0x52,0xa4 -+// 30943 磟 ; -+,0x00,0x7b,0x11,0x10,0x11,0x10,0x3c,0x34,0x54,0x17,0x15,0x14,0x1d,0x10,0x00,0x07,0x00,0xde,0x4a,0xc6,0x4a,0x42,0x30,0x48,0x94,0x63,0x98,0x60,0x8c,0x30,0xc0,0x00 -+// 30944 磠 ; -+,0x00,0x7e,0x08,0x08,0x09,0x11,0x1d,0x35,0x55,0x15,0x15,0x15,0x1d,0x15,0x11,0x01,0x20,0x20,0x3f,0x20,0xff,0x21,0x93,0x45,0x29,0x55,0x29,0x55,0x93,0x01,0xff,0x01 -+// 30945 磡 ; -+,0x01,0x01,0x7f,0x11,0x11,0x11,0x1d,0x35,0x37,0x55,0x15,0x15,0x15,0x1c,0x10,0x00,0x28,0x28,0xf8,0x28,0xfe,0x2a,0xea,0x2a,0xfa,0x4a,0xaa,0x12,0xd2,0x22,0x2a,0x44 -+// 30946 磢 ; -+,0x00,0x7e,0x09,0x08,0x11,0x10,0x1d,0x34,0x35,0x54,0x15,0x16,0x1c,0x14,0x14,0x03,0x10,0x10,0xff,0x10,0x5a,0x94,0x5a,0x1a,0x54,0x9a,0x52,0x10,0x28,0x44,0x82,0x01 -+// 30947 磣 ; -+,0x00,0x7e,0x08,0x08,0x10,0x11,0x1c,0x34,0x57,0x14,0x15,0x16,0x1d,0x10,0x00,0x03,0x20,0x48,0xfc,0x42,0x84,0xef,0x31,0xc8,0x14,0x63,0x98,0x62,0x8c,0x30,0xc0,0x00 -+// 30948 磤 ; -+,0x00,0x7d,0x13,0x12,0x13,0x22,0x3b,0x6a,0x2a,0x2b,0x2a,0x3a,0x2a,0x25,0x04,0x08,0x80,0x1c,0xd4,0x54,0xd4,0x57,0xe0,0x1e,0x12,0xd2,0x52,0x4c,0x4c,0x52,0xa3,0x41 -+// 30949 磥 ; -+,0x00,0x7e,0x10,0x10,0x10,0x20,0x3c,0x34,0x54,0x14,0x15,0x14,0x1c,0x15,0x12,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x44,0xf8,0x34,0x42,0xfe,0x11,0x94,0x12,0x51,0x20 -+// 30950 磦 ; -+,0x00,0x7f,0x10,0x11,0x11,0x11,0x3d,0x34,0x54,0x17,0x14,0x1c,0x15,0x12,0x04,0x00,0x00,0xff,0x48,0xff,0x49,0xff,0x00,0xfc,0x00,0xff,0x10,0x94,0x12,0x11,0x50,0x20 -+// 30951 磧 ; -+,0x00,0x7e,0x08,0x08,0x10,0x11,0x1c,0x34,0x54,0x14,0x14,0x14,0x14,0x1c,0x14,0x01,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 30952 磨 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x17,0x1a,0x12,0x12,0x1f,0x11,0x13,0x26,0x2a,0x33,0x42,0x40,0xff,0x08,0x08,0xbf,0x1c,0xaa,0xc9,0x08,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30953 磩 ; -+,0x00,0x00,0x7c,0x13,0x12,0x22,0x22,0x7a,0x2b,0x2a,0x2a,0x2d,0x3e,0x24,0x0a,0x11,0x10,0x14,0x12,0xff,0x90,0xf2,0x93,0x92,0xf2,0x94,0xc8,0xa8,0x95,0xa5,0xc3,0x01 -+// 30954 磪 ; -+,0x00,0x7f,0x11,0x11,0x10,0x20,0x3d,0x36,0x54,0x14,0x14,0x14,0x1c,0x14,0x10,0x00,0x10,0x11,0x11,0xff,0x50,0x88,0xff,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 30955 磫 ; -+,0x00,0x00,0x7d,0x12,0x15,0x21,0x21,0x7b,0x2d,0x29,0x29,0x29,0x29,0x39,0x29,0x01,0xa4,0xa4,0x24,0x24,0x5a,0x81,0x08,0x08,0x28,0x2e,0x28,0x28,0x28,0x58,0x47,0x82 -+// 30956 磬 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x24,0x3f,0x20,0x40,0x3f,0x02,0x0f,0x34,0x07,0x04,0x00,0xbc,0x24,0x24,0x43,0xbc,0xa4,0x98,0x24,0x42,0xfe,0x00,0xf8,0x08,0xf8,0x08 -+// 30957 磭 ; -+,0x01,0x7f,0x11,0x11,0x11,0x1d,0x35,0x35,0x55,0x15,0x15,0x16,0x14,0x1c,0x10,0x00,0xff,0x00,0x7e,0x00,0xff,0x52,0x4c,0x63,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x4a,0x44 -+// 30958 磮 ; -+,0x00,0x7d,0x11,0x11,0x10,0x20,0x3c,0x67,0x24,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x10,0x11,0x11,0xff,0x31,0x48,0x84,0x7b,0x00,0xfe,0x4a,0xfe,0x4a,0x4a,0x4a,0x04 -+// 30959 磯 ; -+,0x00,0x7e,0x11,0x13,0x10,0x11,0x3f,0x34,0x57,0x14,0x14,0x14,0x1d,0x15,0x12,0x04,0x94,0x94,0x39,0xde,0x92,0x55,0xdf,0x55,0xff,0x90,0xd2,0xac,0x19,0x65,0x03,0x01 -+// 30960 磰 ; -+,0x00,0x7e,0x11,0x10,0x10,0x10,0x3f,0x32,0x52,0x13,0x12,0x12,0x1e,0x12,0x10,0x00,0x82,0x44,0xff,0x10,0xfe,0x10,0xff,0x92,0x54,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82 -+// 30961 磱 ; -+,0x00,0x7d,0x11,0x12,0x10,0x21,0x3d,0x35,0x56,0x15,0x14,0x1c,0x14,0x10,0x01,0x02,0x44,0x55,0x6e,0x54,0xaa,0x11,0xff,0x21,0x22,0xfc,0x24,0x44,0x44,0x84,0x14,0x08 -+// 30962 磲 ; -+,0x01,0x7e,0x12,0x11,0x11,0x10,0x3c,0x37,0x55,0x15,0x14,0x14,0x14,0x1c,0x15,0x00,0x00,0xbe,0xa0,0x3e,0x22,0xbe,0xa0,0x3e,0x10,0xff,0x38,0x54,0x54,0x93,0x12,0x10 -+// 30963 磳 ; -+,0x00,0x00,0x7e,0x11,0x11,0x11,0x11,0x3d,0x34,0x54,0x14,0x14,0x1c,0x14,0x10,0x00,0x00,0x82,0x44,0xff,0x11,0x55,0x55,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 30964 磴 ; -+,0x00,0x7e,0x08,0x0a,0x09,0x10,0x11,0x1e,0x34,0x34,0x54,0x14,0x1c,0x14,0x13,0x00,0x10,0xd2,0x54,0x49,0x4a,0x84,0x7b,0x00,0xfc,0x84,0xfc,0x00,0x84,0x48,0xff,0x00 -+// 30965 磵 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x35,0x55,0x15,0x15,0x15,0x1d,0x15,0x01,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0x01,0x05,0x02 -+// 30966 磶 ; -+,0x00,0x7e,0x08,0x08,0x10,0x10,0x1c,0x34,0x54,0x15,0x16,0x14,0x1c,0x15,0x10,0x00,0x20,0xce,0x82,0x82,0xee,0x82,0xfe,0x40,0xff,0x01,0x55,0xab,0xa9,0x01,0x0a,0x04 -+// 30967 磷 ; -+,0x00,0x3e,0x08,0x09,0x08,0x10,0x1f,0x34,0x55,0x16,0x15,0x1c,0x14,0x11,0x02,0x04,0x10,0x92,0x54,0xff,0x58,0x94,0x13,0x94,0xef,0x24,0x54,0xdf,0x94,0x04,0x04,0x04 -+// 30968 磸 ; -+,0x00,0x7c,0x13,0x10,0x11,0x21,0x3d,0x35,0x55,0x15,0x14,0x1f,0x14,0x10,0x01,0x06,0x84,0x48,0xff,0x48,0xfe,0x4a,0x8e,0x32,0x02,0xfe,0x20,0xff,0x50,0x88,0x07,0x02 -+// 30969 磹 ; -+,0x03,0x7c,0x11,0x11,0x21,0x21,0x3c,0x65,0x25,0x25,0x25,0x3d,0x24,0x23,0x00,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20 -+// 30970 磺 ; -+,0x00,0x7e,0x11,0x10,0x13,0x10,0x3d,0x35,0x55,0x15,0x15,0x15,0x1c,0x14,0x01,0x02,0x88,0x88,0xfe,0x88,0xff,0x20,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0x88,0x04,0x02 -+// 30971 磻 ; -+,0x00,0x7e,0x10,0x10,0x10,0x13,0x3c,0x34,0x57,0x14,0x14,0x14,0x1c,0x14,0x10,0x00,0x0e,0xf0,0x12,0x92,0x54,0xff,0x38,0xd4,0x13,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 30972 磼 ; -+,0x00,0x00,0x7d,0x13,0x15,0x11,0x11,0x3d,0x35,0x55,0x17,0x14,0x14,0x1d,0x16,0x00,0xa0,0x90,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x20,0xff,0x70,0xac,0x27,0x22,0x20 -+// 30973 磽 ; -+,0x00,0x00,0x7e,0x10,0x11,0x10,0x3f,0x34,0x57,0x14,0x17,0x1c,0x14,0x10,0x01,0x02,0x10,0x10,0xfe,0x10,0xff,0x84,0xff,0x84,0xdf,0x00,0xff,0x48,0x48,0x89,0x09,0x07 -+// 30974 磾 ; -+,0x03,0x7a,0x12,0x13,0x10,0x21,0x3d,0x35,0x55,0x15,0x14,0x17,0x1c,0x14,0x10,0x00,0xde,0x52,0x52,0xde,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 30975 磿 ; -+,0x00,0x1f,0x10,0x17,0x12,0x1f,0x17,0x1a,0x12,0x1f,0x10,0x11,0x23,0x25,0x49,0x01,0x00,0xff,0x00,0x9e,0x08,0xff,0x1c,0xab,0x48,0xff,0x80,0xfc,0x04,0x04,0xfc,0x04 -+// 30976 礀 ; -+,0x01,0x7d,0x11,0x11,0x11,0x21,0x3d,0x65,0x25,0x25,0x25,0x3d,0x25,0x21,0x01,0x01,0xef,0x29,0xef,0x29,0xef,0x01,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x55,0x89,0x05,0x02 -+// 30977 礁 ; -+,0x00,0x3e,0x08,0x08,0x11,0x12,0x3e,0x32,0x52,0x12,0x12,0x12,0x1e,0x10,0x01,0x00,0x50,0x48,0xff,0x88,0x88,0xfe,0x88,0xfe,0x88,0x88,0xff,0x00,0xaa,0x95,0x15,0x00 -+// 30978 礂 ; -+,0x00,0x00,0x7f,0x10,0x11,0x20,0x20,0x3c,0x64,0x24,0x27,0x24,0x3c,0x24,0x20,0x00,0x20,0x20,0xfe,0x20,0xfc,0x00,0xfc,0x84,0xfc,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc -+// 30979 礃 ; -+,0x01,0x7c,0x13,0x14,0x11,0x21,0x3d,0x64,0x25,0x24,0x25,0x3c,0x27,0x20,0x00,0x00,0x24,0xa8,0xff,0x01,0xfc,0x04,0xfc,0x00,0xfc,0x20,0xfe,0x20,0xff,0x20,0xa0,0x40 -+// 30980 礄 ; -+,0x00,0x01,0x7e,0x13,0x10,0x10,0x3d,0x36,0x54,0x15,0x15,0x1d,0x15,0x11,0x01,0x01,0x1c,0xe0,0x20,0xff,0x48,0xfc,0x4b,0x78,0x00,0xfe,0x4a,0x4a,0x7a,0x02,0x0a,0x04 -+// 30981 礅 ; -+,0x01,0x7c,0x13,0x10,0x13,0x22,0x3b,0x68,0x2b,0x28,0x28,0x2f,0x3a,0x28,0x22,0x01,0x08,0x8c,0xe8,0x08,0xcf,0x52,0xd2,0x12,0xea,0x4a,0xb4,0xc4,0x8a,0x92,0xa3,0x42 -+// 30982 礆 ; -+,0x00,0x7e,0x08,0x09,0x12,0x10,0x3d,0x55,0x15,0x15,0x14,0x14,0x1d,0x15,0x12,0x04,0x20,0x50,0x88,0x04,0xfb,0x00,0xde,0x52,0x52,0xde,0x8a,0x88,0x48,0x54,0x22,0x41 -+// 30983 礇 ; -+,0x00,0x00,0x7d,0x11,0x11,0x21,0x3d,0x65,0x25,0x24,0x27,0x24,0x3c,0x20,0x21,0x02,0x20,0x40,0xfe,0xa6,0x6a,0xfe,0x72,0xaa,0x02,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 30984 礈 ; -+,0x00,0x00,0x7c,0x12,0x11,0x20,0x3f,0x65,0x25,0x25,0x25,0x3d,0x25,0x22,0x04,0x00,0x42,0x24,0x08,0x7f,0x10,0x62,0x94,0x68,0x94,0x2a,0x4b,0x88,0x28,0x90,0x7f,0x02 -+// 30985 礉 ; -+,0x00,0x7d,0x13,0x12,0x23,0x22,0x3b,0x68,0x2f,0x29,0x29,0x29,0x3a,0x2a,0x25,0x08,0x88,0x08,0xc8,0x48,0xdf,0x52,0xd2,0xa2,0xf4,0x14,0xc8,0x48,0x54,0x66,0x43,0x82 -+// 30986 礊 ; -+,0x04,0x7f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x24,0x3f,0x00,0x7f,0x06,0x1b,0x62,0x03,0x00,0xbc,0x24,0x24,0x47,0x00,0x7e,0xa4,0x98,0x98,0x66,0xff,0x00,0xf8,0x08,0xf8 -+// 30987 礋 ; -+,0x01,0x7d,0x11,0x11,0x10,0x21,0x3c,0x37,0x54,0x14,0x15,0x14,0x1f,0x14,0x10,0x00,0xfe,0x52,0x52,0xfe,0x20,0xfe,0x20,0xff,0x88,0x50,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 30988 礌 ; -+,0x00,0x7d,0x10,0x13,0x12,0x25,0x3c,0x35,0x54,0x15,0x15,0x15,0x1d,0x15,0x11,0x01,0x00,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x00,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02 -+// 30989 礍 ; -+,0x00,0x7d,0x10,0x10,0x10,0x20,0x3c,0x54,0x14,0x14,0x17,0x15,0x1d,0x15,0x10,0x00,0x48,0xff,0x48,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xff,0x11,0x29,0x45,0xfd,0x0a,0x04 -+// 30990 礎 ; -+,0x00,0x7c,0x13,0x10,0x11,0x22,0x3c,0x35,0x54,0x15,0x15,0x1d,0x15,0x11,0x02,0x04,0x44,0x44,0xff,0xcc,0x66,0x55,0x44,0xff,0x11,0x12,0x1e,0x10,0x90,0x50,0x3f,0x02 -+// 30991 礏 ; -+,0x00,0x7e,0x11,0x10,0x13,0x20,0x3d,0x24,0x65,0x24,0x27,0x3c,0x24,0x21,0x02,0x00,0x50,0x52,0x54,0x50,0xff,0x48,0xfe,0x20,0xfe,0x20,0xff,0x70,0xa8,0x26,0x24,0x20 -+// 30992 礐 ; -+,0x06,0x19,0x10,0x1d,0x11,0x1e,0x11,0x3f,0x20,0x5f,0x02,0x07,0x1a,0x62,0x03,0x02,0x00,0x5e,0x82,0x5e,0x42,0x9e,0x42,0xff,0x01,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 30993 礑 ; -+,0x00,0x7e,0x08,0x09,0x11,0x12,0x1e,0x32,0x52,0x12,0x12,0x12,0x1e,0x12,0x10,0x00,0x10,0x92,0x54,0xff,0x01,0x7c,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 30994 礒 ; -+,0x00,0x00,0x7f,0x10,0x11,0x10,0x23,0x3c,0x34,0x57,0x14,0x14,0x1f,0x14,0x12,0x01,0x84,0x48,0xfe,0x20,0xfe,0x20,0xff,0xd4,0x92,0xff,0x92,0x94,0x89,0x95,0xa3,0x01 -+// 30995 礓 ; -+,0x00,0x01,0x7e,0x10,0x10,0x20,0x3c,0x65,0x24,0x24,0x24,0x24,0x3c,0x24,0x20,0x03,0x00,0xff,0x92,0xfe,0x92,0xfe,0x00,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff -+// 30996 礔 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x35,0x57,0x15,0x15,0x15,0x1d,0x15,0x10,0x00,0x08,0xe4,0x3f,0x20,0xf2,0x14,0x3f,0xc8,0x48,0x48,0x7f,0xc8,0x48,0x08,0x08,0x08 -+// 30997 礕 ; -+,0x3f,0x21,0x3f,0x20,0x3f,0x31,0x5f,0x11,0x00,0x3f,0x02,0x0f,0x74,0x04,0x07,0x04,0x10,0xff,0x44,0xff,0x10,0x7e,0x10,0x10,0x10,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 30998 礖 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x35,0x55,0x15,0x17,0x14,0x1c,0x11,0x02,0x04,0x40,0xa6,0x32,0x22,0xbe,0x12,0x52,0xd6,0x52,0x52,0xff,0x00,0x88,0x04,0x02,0x01 -+// 30999 礗 ; -+,0x00,0x7e,0x10,0x11,0x10,0x20,0x3d,0x34,0x57,0x14,0x14,0x14,0x1c,0x14,0x10,0x01,0x10,0xff,0x81,0x7c,0x10,0x96,0x38,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 31000 礘 ; -+,0x00,0x7e,0x10,0x10,0x10,0x20,0x3c,0x65,0x27,0x25,0x27,0x24,0x3d,0x25,0x02,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x84,0x29,0xde,0x08,0xdf,0x01,0x52,0x29,0x29,0x00 -+// 31001 礙 ; -+,0x02,0x7a,0x13,0x12,0x11,0x22,0x3f,0x34,0x54,0x17,0x14,0x15,0x1d,0x12,0x14,0x08,0x00,0xdf,0x01,0x52,0xcc,0x1f,0xe5,0x84,0x84,0xf7,0x94,0x94,0x54,0x2c,0x27,0x42 -+// 31002 礚 ; -+,0x00,0x03,0x7c,0x10,0x11,0x20,0x3f,0x34,0x54,0x15,0x14,0x15,0x1d,0x15,0x13,0x00,0x88,0xff,0x88,0x20,0xfe,0x20,0xff,0x48,0x84,0xfe,0x02,0xfe,0x52,0x52,0xff,0x00 -+// 31003 礛 ; -+,0x00,0x01,0x7d,0x11,0x11,0x11,0x3d,0x25,0x65,0x24,0x25,0x25,0x3d,0x21,0x27,0x00,0x08,0xf8,0x48,0x4f,0xe8,0x34,0xe2,0x42,0xf0,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 31004 礜 ; -+,0x05,0x19,0x11,0x1d,0x10,0x1d,0x11,0x7f,0x04,0x18,0x6f,0x02,0x0f,0x74,0x07,0x04,0x00,0xdc,0x04,0xdc,0x44,0x5c,0x44,0xff,0x08,0x06,0xfb,0x00,0xf8,0x08,0xf8,0x08 -+// 31005 礝 ; -+,0x01,0x00,0x7b,0x12,0x15,0x10,0x3d,0x34,0x57,0x14,0x15,0x1d,0x15,0x11,0x01,0x01,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x00,0xff,0x40,0xfe,0x52,0x52,0x52,0x5a,0x04 -+// 31006 礞 ; -+,0x00,0x7d,0x10,0x13,0x12,0x14,0x3c,0x35,0x54,0x17,0x14,0x15,0x1c,0x13,0x10,0x00,0x48,0xff,0x48,0xff,0x01,0xfc,0x02,0xff,0x40,0xa2,0x74,0x98,0x74,0x93,0x50,0x20 -+// 31007 礟 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x35,0x54,0x15,0x16,0x15,0x1c,0x14,0x11,0x00,0x00,0xf1,0x4a,0xe4,0x4a,0xf1,0x42,0xf2,0x2a,0x6a,0xa4,0x2c,0x2a,0x52,0x53,0xa2 -+// 31008 礠 ; -+,0x00,0x00,0x7d,0x10,0x10,0x11,0x1f,0x34,0x35,0x57,0x14,0x14,0x1d,0x15,0x12,0x00,0x82,0x44,0xff,0x00,0x84,0x29,0xde,0x84,0x4a,0xdf,0x20,0x52,0x55,0x45,0x3c,0x00 -+// 31009 礡 ; -+,0x00,0x7d,0x10,0x10,0x13,0x20,0x3d,0x35,0x55,0x15,0x15,0x15,0x17,0x1c,0x14,0x00,0x48,0xff,0x48,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x22,0xff,0x84,0x54,0x08 -+// 31010 礢 ; -+,0x00,0x7d,0x10,0x11,0x10,0x23,0x3c,0x65,0x27,0x25,0x25,0x3d,0x25,0x21,0x01,0x01,0x88,0xfe,0x20,0xfc,0x20,0xff,0x48,0xfc,0x0b,0xf8,0x08,0xf8,0x24,0x58,0x8c,0x04 -+// 31011 礣 ; -+,0x00,0x7f,0x10,0x11,0x21,0x3d,0x35,0x54,0x15,0x15,0x15,0x1d,0x15,0x11,0x02,0x04,0x48,0xff,0x48,0xfe,0x52,0x52,0xfe,0x14,0xff,0x10,0x12,0x94,0x48,0x19,0x25,0x43 -+// 31012 礤 ; -+,0x00,0x7d,0x10,0x10,0x11,0x22,0x3d,0x34,0x55,0x16,0x15,0x1c,0x14,0x11,0x02,0x00,0x48,0xff,0x48,0x80,0x4f,0xb2,0x4c,0x84,0x7b,0x00,0xfe,0x10,0x94,0x12,0x51,0x20 -+// 31013 礥 ; -+,0x01,0x7d,0x11,0x11,0x11,0x11,0x3d,0x34,0x54,0x14,0x14,0x14,0x1c,0x10,0x00,0x01,0xff,0x49,0xea,0x2a,0xe4,0x4a,0xf3,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 31014 礦 ; -+,0x00,0x7c,0x11,0x11,0x11,0x11,0x3d,0x35,0x35,0x55,0x15,0x15,0x1e,0x12,0x04,0x08,0x20,0x10,0xff,0x24,0x7f,0x24,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x24,0x42,0x81 -+// 31015 礧 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x39,0x68,0x2f,0x29,0x29,0x2f,0x39,0x2d,0x27,0x04,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xdf,0x55,0x45,0xdf,0x55,0x55,0xdf,0x51 -+// 31016 礨 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x3f,0x25,0x3f,0x25,0x3f,0x00,0x7f,0x06,0x1f,0x64,0x07,0xf8,0x88,0xf8,0x88,0xf8,0x7e,0x52,0x7e,0x52,0x7e,0x00,0xff,0x00,0xf8,0x08,0xf8 -+// 31017 礩 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3e,0x34,0x54,0x14,0x14,0x14,0x1c,0x14,0x10,0x01,0x63,0x8c,0x08,0xef,0x4a,0x4a,0x52,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 31018 礪 ; -+,0x00,0x7d,0x11,0x11,0x11,0x3d,0x35,0x35,0x55,0x15,0x15,0x1e,0x16,0x12,0x04,0x08,0x00,0xff,0x24,0xff,0x24,0x52,0x7e,0x52,0x7e,0x10,0xff,0x95,0x9d,0xe5,0x85,0x82 -+// 31019 礫 ; -+,0x01,0x01,0x7e,0x13,0x11,0x12,0x3e,0x37,0x54,0x17,0x14,0x14,0x1c,0x15,0x12,0x00,0x24,0x24,0x75,0xde,0x72,0x54,0x5a,0xff,0x21,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 31020 礬 ; -+,0x08,0x09,0x3e,0x09,0x1d,0x2a,0x49,0x7f,0x04,0x1f,0x62,0x07,0x0c,0x34,0x07,0x04,0x08,0x48,0xbf,0x5c,0x5a,0xab,0x48,0xff,0x10,0xfc,0x03,0xf8,0x08,0x08,0xf8,0x08 -+// 31021 礭 ; -+,0x00,0x7e,0x11,0x11,0x12,0x20,0x3c,0x34,0x55,0x16,0x14,0x14,0x14,0x1c,0x10,0x00,0xfe,0x10,0xff,0x11,0xd6,0x10,0xc6,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 31022 礮 ; -+,0x00,0x7b,0x12,0x13,0x22,0x23,0x3a,0x6a,0x2b,0x28,0x29,0x3a,0x29,0x20,0x21,0x00,0x08,0xe4,0x9f,0xe0,0x8a,0xe9,0x91,0x92,0xea,0xaa,0x66,0xa4,0x2a,0x2a,0x53,0xa2 -+// 31023 礯 ; -+,0x00,0x7e,0x11,0x12,0x10,0x21,0x3d,0x56,0x14,0x14,0x14,0x14,0x1c,0x15,0x02,0x00,0x44,0x45,0x6e,0x54,0xaa,0x11,0xff,0x21,0x48,0xf0,0x24,0xfe,0x94,0x12,0x51,0x20 -+// 31024 礰 ; -+,0x00,0x7d,0x11,0x11,0x11,0x21,0x3d,0x35,0x55,0x15,0x15,0x1e,0x16,0x12,0x05,0x08,0x00,0xff,0x00,0xee,0x44,0xef,0x6e,0xd5,0x44,0x10,0x5e,0x50,0x50,0x50,0xff,0x00 -+// 31025 礱 ; -+,0x04,0x3f,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x15,0x12,0x7f,0x06,0x1f,0x64,0x07,0x20,0xbf,0x20,0xbe,0x02,0x3e,0x20,0x3e,0x21,0x1f,0x00,0xff,0x00,0xfc,0x04,0xfc -+// 31026 礲 ; -+,0x01,0x7c,0x13,0x11,0x10,0x23,0x3c,0x35,0x55,0x15,0x15,0x15,0x1d,0x15,0x11,0x00,0x10,0x9f,0xd0,0x5e,0x82,0xfe,0x10,0xde,0x50,0xde,0x50,0xde,0x50,0x51,0x51,0x8f -+// 31027 礳 ; -+,0x00,0x7c,0x11,0x11,0x21,0x21,0x39,0x69,0x29,0x29,0x29,0x2a,0x3b,0x2a,0x04,0x08,0x10,0xff,0x24,0x24,0xff,0x6c,0xb5,0x24,0xff,0x20,0x40,0xfe,0x42,0x42,0x7e,0x42 -+// 31028 礴 ; -+,0x00,0x7d,0x10,0x14,0x12,0x20,0x3e,0x35,0x55,0x14,0x15,0x15,0x1e,0x12,0x12,0x00,0x48,0xff,0x48,0x14,0xff,0x10,0x7e,0x52,0x7e,0xd2,0x7e,0x52,0x7f,0x24,0x14,0x08 -+// 31029 礵 ; -+,0x01,0x7c,0x13,0x12,0x15,0x20,0x3d,0x54,0x14,0x17,0x14,0x1d,0x16,0x14,0x00,0x00,0xff,0x20,0xff,0x21,0xae,0x20,0xae,0x80,0x9e,0xf2,0x9e,0xd2,0xbe,0x92,0x9e,0x92 -+// 31030 礶 ; -+,0x00,0x7d,0x08,0x08,0x10,0x10,0x1c,0x34,0x54,0x15,0x16,0x14,0x1c,0x14,0x10,0x00,0x44,0xff,0x44,0xee,0xaa,0xee,0x50,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 31031 礷 ; -+,0x00,0x00,0x7d,0x10,0x11,0x21,0x3d,0x35,0x55,0x15,0x15,0x14,0x15,0x1d,0x11,0x03,0x48,0x48,0xff,0x48,0xe8,0x4f,0xe8,0x2a,0xea,0x52,0xe0,0x00,0xfe,0x4a,0x4a,0xff -+// 31032 礸 ; -+,0x02,0x7b,0x12,0x17,0x11,0x21,0x3e,0x54,0x14,0x14,0x14,0x14,0x1c,0x14,0x10,0x01,0x94,0xde,0xa4,0xff,0x54,0x55,0x63,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 31033 礹 ; -+,0x01,0x7d,0x11,0x10,0x13,0x22,0x3a,0x6b,0x2a,0x2a,0x2a,0x3a,0x2a,0x24,0x05,0x08,0xde,0x52,0xde,0x00,0xff,0xe8,0x28,0xef,0xba,0xea,0xaa,0xe4,0xba,0xea,0x33,0x22 -+// 31034 示 ; -+,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x08,0x08,0x10,0x20,0x40,0x00,0x02,0x01,0x00,0xfc,0x00,0x00,0x00,0xff,0x80,0x80,0x90,0x88,0x84,0x86,0x82,0x80,0x80,0x00 -+// 31035 礻 ; -+,0x04,0x02,0x02,0x1f,0x00,0x01,0x03,0x06,0x1a,0x62,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x80,0x00,0x00,0x80,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00 -+// 31036 礼 ; -+,0x08,0x04,0x04,0x7f,0x02,0x02,0x04,0x0e,0x15,0x25,0x44,0x04,0x04,0x04,0x04,0x04,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f -+// 31037 礽 ; -+,0x10,0x0b,0x08,0x7e,0x04,0x08,0x08,0x1c,0x2a,0x4a,0x08,0x09,0x09,0x0a,0x0a,0x0c,0x00,0xfc,0x44,0x44,0x44,0x48,0x4f,0x41,0x81,0x81,0x81,0x02,0x02,0x02,0x14,0x08 -+// 31038 社 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x05,0x08,0x1c,0x6a,0x08,0x08,0x08,0x08,0x0b,0x08,0x20,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 31039 礿 ; -+,0x10,0x08,0x08,0x00,0x7e,0x05,0x0a,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x80,0xfe,0x82,0x02,0x42,0x22,0x32,0x12,0x02,0x02,0x02,0x02,0x14,0x08 -+// 31040 祀 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x80,0x80,0x81,0x81,0x81,0x7f,0x00 -+// 31041 祁 ; -+,0x08,0x04,0x00,0x3f,0x01,0x02,0x04,0x0e,0x15,0x25,0x44,0x04,0x04,0x04,0x04,0x04,0x00,0x3f,0x22,0xa4,0x24,0x28,0x28,0x24,0x22,0x22,0x21,0x21,0x2a,0x24,0x20,0x20 -+// 31042 祂 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x0b,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x90,0x9e,0xf2,0x92,0x92,0x92,0x9a,0x94,0x91,0x91,0x81,0x7f,0x00 -+// 31043 祃 ; -+,0x10,0x09,0x08,0x7e,0x02,0x04,0x08,0x18,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0xfc,0x04,0x84,0x84,0x84,0x84,0xfe,0x02,0x02,0xfa,0x02,0x02,0x02,0x14,0x08 -+// 31044 祄 ; -+,0x08,0x04,0x04,0x3f,0x02,0x04,0x0d,0x16,0x25,0x45,0x04,0x04,0x04,0x04,0x04,0x05,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04 -+// 31045 祅 ; -+,0x10,0x08,0x09,0x7e,0x02,0x04,0x0b,0x18,0x2c,0x4a,0x08,0x08,0x08,0x09,0x0a,0x0c,0x00,0x1c,0xe0,0x20,0x20,0x20,0xff,0x20,0x50,0x50,0x48,0x88,0x84,0x04,0x03,0x02 -+// 31046 祆 ; -+,0x10,0x08,0x09,0x7e,0x02,0x04,0x0b,0x1c,0x2a,0x48,0x08,0x08,0x09,0x09,0x0a,0x0c,0x00,0x04,0xfe,0x20,0x20,0x20,0xff,0x50,0x50,0x50,0x88,0x88,0x04,0x04,0x03,0x02 -+// 31047 祇 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x0e,0xf0,0x90,0x90,0x90,0x90,0xff,0x88,0x88,0x88,0x88,0x95,0xa5,0xc3,0x81 -+// 31048 祈 ; -+,0x10,0x08,0x08,0x7e,0x04,0x08,0x08,0x18,0x2c,0x4a,0x08,0x08,0x08,0x09,0x09,0x0a,0x04,0x1e,0xe0,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08 -+// 31049 祉 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0x10,0x10,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x90,0x90,0x92,0xff,0x00 -+// 31050 祊 ; -+,0x10,0x0c,0x08,0x01,0x7e,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x09,0x0a,0x0c,0x40,0x20,0x10,0xff,0x40,0x40,0x40,0x7e,0x42,0x42,0x82,0x82,0x82,0x04,0x14,0x08 -+// 31051 祋 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x0a,0x1d,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0xf8,0x88,0x88,0x88,0x07,0x00,0xfc,0x84,0x48,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 31052 祌 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10 -+// 31053 祍 ; -+,0x10,0x08,0x09,0x7e,0x02,0x04,0x08,0x1b,0x2c,0x4a,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 31054 祎 ; -+,0x10,0x08,0x09,0x7e,0x02,0x05,0x08,0x1c,0x2b,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x21,0x21,0x21,0x2a,0x24,0x20,0x20 -+// 31055 祏 ; -+,0x20,0x10,0x09,0x7e,0x02,0x04,0x08,0x18,0x2d,0x4a,0x0c,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0xff,0x20,0x20,0x40,0x40,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x82 -+// 31056 祐 ; -+,0x10,0x08,0x08,0x7f,0x02,0x04,0x08,0x1c,0x2b,0x4a,0x0c,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x22,0xff,0x40,0x40,0x80,0xfe,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x42 -+// 31057 祑 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1b,0x2c,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x10,0x90,0x90,0x90,0xfe,0x90,0x10,0xff,0x28,0x28,0x28,0x44,0x44,0x86,0x03,0x02 -+// 31058 祒 ; -+,0x10,0x09,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2b,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x22,0x22,0x22,0x42,0x42,0x8a,0x04,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 31059 祓 ; -+,0x10,0x08,0x08,0x7f,0x02,0x04,0x08,0x1c,0x2a,0x48,0x09,0x09,0x0a,0x0c,0x08,0x0b,0x50,0x48,0x44,0xff,0x40,0x40,0x7e,0x44,0x84,0xc8,0x28,0x10,0x28,0x44,0x87,0x02 -+// 31060 祔 ; -+,0x10,0x08,0x08,0x00,0x7c,0x05,0x0a,0x08,0x1c,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x44,0x46,0x44,0x84,0x84,0xff,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x84,0x94,0x88 -+// 31061 祕 ; -+,0x10,0x08,0x08,0x00,0x7c,0x04,0x09,0x1d,0x2a,0x4a,0x08,0x08,0x08,0x09,0x0a,0x08,0x40,0x24,0x16,0x14,0x44,0x48,0x4a,0x49,0x51,0x50,0x60,0x42,0xc2,0x42,0x3e,0x00 -+// 31062 祖 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 31063 祗 ; -+,0x10,0x08,0x09,0x7d,0x05,0x09,0x09,0x1d,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x04,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x08,0x08,0x0c,0x24,0x56,0x93,0x02 -+// 31064 祘 ; -+,0x00,0x3f,0x00,0x00,0x7f,0x04,0x04,0x24,0x26,0x25,0x25,0x44,0x44,0x04,0x14,0x08,0x00,0x3e,0x00,0x00,0x7f,0x08,0x08,0x2c,0x2a,0x4a,0x49,0x89,0x89,0x08,0x28,0x10 -+// 31065 祙 ; -+,0x10,0x08,0x08,0x7f,0x04,0x08,0x18,0x2c,0x4a,0x0a,0x08,0x08,0x09,0x0a,0x0c,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x30,0x38,0x58,0x54,0x94,0x13,0x12,0x10,0x10 -+// 31066 祚 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x40,0x7f,0xa0,0xa0,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20 -+// 31067 祛 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1b,0x2c,0x4a,0x08,0x08,0x09,0x0b,0x09,0x08,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x48,0x84,0x06,0xfe,0x04,0x00 -+// 31068 祜 ; -+,0x10,0x08,0x08,0x7f,0x02,0x04,0x08,0x18,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 31069 祝 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x00,0xfc,0x84,0x84,0x84,0x84,0x84,0xfc,0x48,0x48,0x48,0x48,0x89,0x89,0x09,0x07 -+// 31070 神 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10 -+// 31071 祟 ; -+,0x00,0x08,0x0f,0x00,0x10,0x10,0x1f,0x00,0x1f,0x00,0x7f,0x00,0x06,0x18,0x62,0x01,0x80,0x84,0xfc,0x80,0x82,0x82,0xfe,0x00,0xfc,0x00,0xff,0x80,0x90,0x8c,0x84,0x00 -+// 31072 祠 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x01,0x01,0xfd,0x01,0xf9,0x89,0x89,0x89,0xf9,0x89,0x01,0x01,0x0a,0x04 -+// 31073 祡 ; -+,0x02,0x12,0x13,0x12,0x12,0x1f,0x70,0x0f,0x00,0x3f,0x00,0x04,0x08,0x10,0x21,0x00,0x20,0x20,0xa6,0x38,0x21,0x9f,0x00,0xfc,0x00,0xff,0x40,0x48,0x44,0x42,0x42,0x80 -+// 31074 祢 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1c,0x2a,0x4a,0x09,0x09,0x0a,0x0c,0x08,0x08,0x40,0x40,0x40,0x7f,0x91,0x92,0x10,0x94,0xd2,0x92,0x11,0x11,0x11,0x10,0x50,0x20 -+// 31075 祣 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x0a,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x40,0xff,0x80,0x0e,0xf0,0xa0,0xa3,0xac,0x90,0x90,0x88,0xac,0xc7,0x82 -+// 31076 祤 ; -+,0x10,0x09,0x08,0x3e,0x03,0x04,0x08,0x1c,0x2a,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0xef,0x21,0x21,0x29,0xa5,0xa5,0x21,0x63,0xa5,0x29,0x21,0x21,0x21,0xa5,0x42 -+// 31077 祥 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x82,0x44,0x28,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 31078 祦 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1c,0x2a,0x4b,0x08,0x08,0x08,0x08,0x09,0x0a,0xfc,0x84,0x84,0x84,0xfc,0x00,0xfe,0x20,0x20,0xff,0x50,0x50,0x88,0x8c,0x07,0x02 -+// 31079 祧 ; -+,0x10,0x08,0x08,0x3e,0x02,0x05,0x08,0x1c,0x2a,0x49,0x08,0x08,0x08,0x09,0x0a,0x08,0x50,0x50,0x50,0x52,0x54,0x58,0xd0,0x58,0xd4,0x52,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 31080 票 ; -+,0x3f,0x01,0x1f,0x11,0x11,0x1f,0x00,0x0f,0x00,0x00,0x7f,0x00,0x08,0x10,0x22,0x01,0xff,0x20,0xfe,0x22,0x22,0xfe,0x00,0xfc,0x00,0x00,0xff,0x80,0x88,0x84,0x82,0x00 -+// 31081 祩 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x08,0x1d,0x2a,0x4a,0x08,0x08,0x09,0x0a,0x08,0x08,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x38,0x54,0x54,0x92,0x13,0x12,0x10,0x10 -+// 31082 祪 ; -+,0x10,0x08,0x08,0x7e,0x05,0x05,0x09,0x19,0x2d,0x4b,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x40,0x7c,0x44,0x88,0xff,0x00,0x00,0x3e,0x22,0x22,0x2a,0x24,0x21,0x21,0x1f,0x00 -+// 31083 祫 ; -+,0x10,0x08,0x08,0x00,0x7e,0x05,0x0a,0x18,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x48,0x84,0x03,0xfc,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 31084 祬 ; -+,0x08,0x04,0x04,0x3f,0x01,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x09,0x08,0x00,0xff,0x20,0x20,0x44,0x42,0xff,0x12,0x10,0xfe,0x10,0x10,0x10,0x12,0xff,0x00 -+// 31085 祭 ; -+,0x08,0x0f,0x11,0x2a,0x46,0x14,0x08,0x17,0x20,0x5f,0x00,0x04,0x08,0x10,0x22,0x01,0x00,0x7e,0x44,0x28,0x30,0x10,0x08,0xf7,0x02,0xfe,0x80,0x90,0x88,0x84,0x82,0x00 -+// 31086 祮 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 31087 祯 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x09,0x10,0x10,0x1f,0x10,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x28,0x44,0x82,0x02 -+// 31088 祰 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x09,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x90,0x90,0xfe,0x90,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 31089 祱 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x02,0x82,0x44,0x28,0xfe,0x82,0x82,0x82,0xfe,0xaa,0x28,0x48,0x49,0x89,0x09,0x07 -+// 31090 祲 ; -+,0x10,0x09,0x08,0x7e,0x02,0x05,0x08,0x19,0x2d,0x4a,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xff,0x01,0xfc,0x44,0x28,0x10,0x28,0xc7,0x02 -+// 31091 祳 ; -+,0x10,0x09,0x09,0x7d,0x05,0x09,0x09,0x1d,0x2b,0x49,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x00,0xff,0x00,0x7e,0x00,0x00,0xff,0x50,0x52,0x54,0x48,0x48,0x44,0x56,0x63,0x42 -+// 31092 祴 ; -+,0x10,0x08,0x08,0x7f,0x04,0x09,0x11,0x3b,0x55,0x11,0x11,0x11,0x12,0x12,0x14,0x18,0x10,0x14,0x12,0xff,0x10,0x50,0x52,0xf2,0x52,0x54,0x4c,0x48,0x54,0x65,0x43,0x41 -+// 31093 祵 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0xba,0xd6,0x92,0x92,0x92,0x92,0x92,0xfe,0x82 -+// 31094 祶 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x08,0x1c,0x2a,0x48,0x08,0x08,0x09,0x0a,0x08,0x08,0x84,0x48,0xfe,0x12,0x12,0xfe,0x92,0x90,0xff,0x31,0x51,0x95,0x12,0x10,0x10,0x10 -+// 31095 祷 ; -+,0x10,0x08,0x0b,0x7c,0x05,0x08,0x0f,0x10,0x38,0x54,0x10,0x11,0x12,0x14,0x18,0x10,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x44,0x44,0xff,0xa4,0x14,0x14,0x04,0x14,0x08 -+// 31096 祸 ; -+,0x10,0x08,0x08,0x00,0x7e,0x04,0x08,0x19,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xfe,0x82,0x82,0xfe,0x10,0x10,0xff,0x11,0x11,0x29,0x45,0x01,0x01,0x05,0x02 -+// 31097 祹 ; -+,0x10,0x08,0x08,0x7d,0x05,0x0a,0x09,0x1d,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x80,0x80,0xfe,0x02,0x82,0xfa,0x22,0xfe,0x22,0xaa,0xaa,0xfa,0x8a,0x02,0x14,0x08 -+// 31098 祺 ; -+,0x10,0x08,0x09,0x7e,0x02,0x04,0x08,0x18,0x2c,0x4a,0x08,0x09,0x08,0x08,0x08,0x09,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0x00,0x44,0x82,0x01 -+// 31099 祻 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x91,0x91,0xff,0x91,0x91,0xbd,0xa5,0xa5,0xbd,0xa5,0x81,0x81,0xff,0x81 -+// 31100 祼 ; -+,0x00,0x21,0x11,0x11,0x7d,0x05,0x09,0x11,0x38,0x57,0x10,0x10,0x11,0x12,0x14,0x10,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 31101 祽 ; -+,0x10,0x08,0x09,0x7e,0x04,0x04,0x09,0x1d,0x2a,0x4f,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x20,0xfe,0x88,0x88,0x88,0x54,0x22,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 31102 祾 ; -+,0x10,0x08,0x08,0x7e,0x04,0x09,0x08,0x15,0x2a,0x4a,0x09,0x0a,0x08,0x08,0x09,0x0e,0x10,0x10,0xfe,0x10,0x10,0xff,0x84,0x42,0x7d,0x84,0x84,0x48,0x30,0x48,0x87,0x02 -+// 31103 祿 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x09,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x0b,0x08,0x08,0x20,0x3c,0x44,0x44,0xf8,0x08,0xff,0x10,0x92,0x54,0x38,0x54,0x97,0x12,0x50,0x20 -+// 31104 禀 ; -+,0x00,0x3f,0x00,0x0f,0x09,0x09,0x08,0x0f,0x00,0x0f,0x00,0x3f,0x04,0x08,0x10,0x00,0x80,0xff,0x00,0xfc,0x24,0xe4,0x04,0xfc,0x00,0xfc,0x00,0xff,0x48,0x44,0x42,0xc0 -+// 31105 禁 ; -+,0x04,0x04,0x3f,0x0e,0x15,0x24,0x44,0x1f,0x00,0x00,0x7f,0x04,0x08,0x10,0x22,0x01,0x08,0x08,0x7f,0x18,0x2c,0xca,0x09,0xfc,0x00,0x00,0xff,0x90,0x88,0x84,0x84,0x00 -+// 31106 禂 ; -+,0x20,0x11,0x11,0x7d,0x05,0x09,0x09,0x1d,0x2b,0x49,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x00,0xff,0x11,0x11,0x7d,0x11,0x7d,0x01,0x39,0x29,0x29,0x39,0x29,0x01,0x05,0x02 -+// 31107 禃 ; -+,0x10,0x08,0x09,0x3e,0x02,0x04,0x08,0x18,0x2c,0x4a,0x08,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0xff,0x20,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x00 -+// 31108 禄 ; -+,0x10,0x09,0x00,0x7e,0x02,0x05,0x08,0x1d,0x2a,0x48,0x08,0x08,0x0b,0x08,0x08,0x08,0x00,0xfc,0x04,0xfc,0x04,0xff,0x20,0x24,0xa8,0xb0,0x68,0xa4,0x23,0x20,0xa0,0x40 -+// 31109 禅 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x48,0x08,0x08,0x09,0x08,0x08,0x08,0x82,0x44,0x28,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xff,0x10,0x10,0x10 -+// 31110 禆 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 31111 禇 ; -+,0x10,0x08,0x01,0x7e,0x04,0x0b,0x08,0x1c,0x2a,0x49,0x0a,0x0c,0x08,0x08,0x08,0x08,0x20,0x21,0xfd,0x22,0x24,0xff,0x10,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 31112 禈 ; -+,0x10,0x09,0x09,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0xff,0x11,0x12,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 31113 禉 ; -+,0x10,0x08,0x08,0x7f,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x82,0x42,0x24,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xae,0xc2,0x82,0xfe,0x82,0xfe,0x82 -+// 31114 禊 ; -+,0x20,0x10,0x13,0x7e,0x05,0x04,0x0b,0x1c,0x2a,0x4b,0x08,0x08,0x08,0x09,0x0a,0x0c,0x80,0x9e,0xea,0x8a,0xea,0x92,0xda,0xa4,0xa0,0xff,0x50,0x50,0x88,0x0c,0x07,0x02 -+// 31115 禋 ; -+,0x10,0x0b,0x08,0x7e,0x05,0x05,0x09,0x1d,0x2a,0x48,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0xff,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 31116 禌 ; -+,0x10,0x08,0x08,0x7f,0x02,0x04,0x08,0x1c,0x2b,0x4a,0x08,0x08,0x09,0x0b,0x08,0x08,0x82,0x44,0x08,0xff,0x44,0x44,0x94,0xa9,0xee,0x42,0x84,0x8a,0x51,0xff,0x21,0x00 -+// 31117 禍 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x09,0x1d,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xfc,0x84,0xf4,0x94,0x94,0xff,0x01,0x79,0x49,0x49,0x79,0x49,0x01,0x05,0x02 -+// 31118 禎 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x08,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x09,0x20,0x3e,0x20,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x44,0x82,0x01 -+// 31119 福 ; -+,0x10,0x09,0x08,0x7e,0x02,0x04,0x08,0x18,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 31120 禐 ; -+,0x10,0x09,0x08,0x7e,0x02,0x04,0x08,0x1d,0x2a,0x4a,0x08,0x08,0x09,0x0a,0x0c,0x08,0x07,0xfa,0xa2,0x54,0xfe,0x20,0x20,0xff,0x40,0x7e,0x84,0xa8,0x10,0x28,0x47,0x82 -+// 31121 禑 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x7d,0x05,0x01,0x05,0x02 -+// 31122 禒 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x08,0x1c,0x2b,0x48,0x0b,0x08,0x09,0x08,0x08,0x08,0x20,0x3e,0x44,0x7c,0x04,0xff,0x60,0x92,0x34,0xc8,0x1c,0x6a,0x89,0x08,0x50,0x20 -+// 31123 禓 ; -+,0x11,0x09,0x09,0x7d,0x05,0x08,0x0b,0x1c,0x2a,0x49,0x0a,0x0c,0x0b,0x08,0x0b,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x80,0xfe,0x4a,0x4a,0x92,0x22,0xc2,0x14,0x08 -+// 31124 禔 ; -+,0x20,0x10,0x10,0x7c,0x04,0x08,0x10,0x3b,0x54,0x14,0x11,0x11,0x11,0x11,0x12,0x14,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x20,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x02 -+// 31125 禕 ; -+,0x20,0x10,0x11,0x7c,0x05,0x04,0x08,0x0c,0x1a,0x28,0x4b,0x09,0x09,0x09,0x08,0x08,0x20,0x20,0xfc,0x44,0xff,0x00,0xfc,0x84,0xfc,0x10,0xff,0x10,0x10,0xfe,0x10,0x10 -+// 31126 禖 ; -+,0x10,0x08,0x0b,0x7c,0x04,0x08,0x10,0x38,0x54,0x13,0x10,0x10,0x11,0x12,0x14,0x10,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0xa8,0x22,0xff,0x70,0xa8,0x24,0x22,0x21,0x20 -+// 31127 禗 ; -+,0x20,0x11,0x11,0x01,0x7d,0x09,0x11,0x39,0x54,0x10,0x12,0x12,0x12,0x14,0x10,0x10,0x00,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x00,0xa0,0x92,0x91,0x85,0x85,0x7c,0x00 -+// 31128 禘 ; -+,0x20,0x10,0x10,0x7c,0x04,0x09,0x09,0x1e,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xfe,0x44,0x28,0xff,0x11,0x12,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 31129 禙 ; -+,0x10,0x08,0x09,0x7e,0x02,0x05,0x0a,0x18,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0xcf,0x48,0xc9,0x47,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 31130 禚 ; -+,0x11,0x08,0x08,0x7d,0x04,0x08,0x09,0x1c,0x2a,0x4b,0x08,0x08,0x09,0x09,0x09,0x0a,0x04,0x84,0x08,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0x12,0x49,0x29,0x29,0x00 -+// 31131 禛 ; -+,0x20,0x13,0x10,0x7d,0x05,0x09,0x11,0x39,0x55,0x11,0x11,0x17,0x10,0x10,0x11,0x12,0x20,0xfe,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff,0x00,0x88,0x04,0x02 -+// 31132 禜 ; -+,0x04,0x05,0x16,0x24,0x0b,0x10,0x3f,0x20,0x4f,0x00,0x3f,0x00,0x08,0x10,0x22,0x01,0x10,0x12,0x54,0x90,0x28,0xc4,0xff,0x01,0xfa,0x00,0xfe,0x80,0x90,0x88,0x84,0x00 -+// 31133 禝 ; -+,0x10,0x08,0x08,0x7e,0x04,0x0c,0x08,0x10,0x39,0x54,0x11,0x12,0x10,0x10,0x11,0x16,0xfe,0x92,0xfe,0x92,0xfe,0x82,0x44,0x82,0x7d,0x84,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 31134 禞 ; -+,0x10,0x08,0x09,0x7e,0x04,0x08,0x1c,0x2a,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xff,0x01,0x7d,0x45,0x7d,0x01,0x05,0x02 -+// 31135 禟 ; -+,0x20,0x10,0x11,0x7d,0x05,0x09,0x11,0x39,0x55,0x11,0x12,0x12,0x12,0x12,0x14,0x18,0x20,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x00,0xfe,0x82,0x82,0xfe,0x82 -+// 31136 禠 ; -+,0x20,0x13,0x12,0x7a,0x0a,0x0a,0x12,0x1a,0x36,0x52,0x12,0x12,0x15,0x15,0x15,0x1a,0x1e,0xf0,0x1e,0x10,0xff,0x92,0xf8,0x92,0x9e,0x80,0xbc,0xa4,0x24,0x25,0x45,0x87 -+// 31137 禡 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1c,0x2a,0x48,0x09,0x09,0x09,0x0a,0x08,0x08,0x00,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x29,0x95,0x55,0x55,0x01,0x0a,0x04 -+// 31138 禢 ; -+,0x10,0x08,0x08,0x3e,0x02,0x04,0x08,0x1d,0x2b,0x48,0x08,0x09,0x0a,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xef,0x29,0xa5,0x63,0xa5,0x29,0x21,0xa5,0x42 -+// 31139 禣 ; -+,0x20,0x13,0x10,0x7d,0x05,0x09,0x09,0x1d,0x2b,0x48,0x0b,0x08,0x08,0x08,0x08,0x08,0x28,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x04,0xff,0x84,0x44,0x44,0x14,0x08 -+// 31140 禤 ; -+,0x11,0x09,0x09,0x7d,0x05,0x08,0x0b,0x1c,0x2b,0x48,0x08,0x09,0x0a,0x08,0x09,0x08,0xfe,0x4a,0x4a,0x4a,0xfe,0x00,0xde,0x42,0x52,0xca,0x42,0x4a,0x52,0x42,0x4a,0x84 -+// 31141 禥 ; -+,0x20,0x10,0x13,0x7c,0x04,0x08,0x10,0x38,0x57,0x10,0x13,0x1d,0x10,0x10,0x17,0x10,0x88,0x88,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xff,0xa4,0x23,0xfc,0x20,0x20,0xff,0x00 -+// 31142 禦 ; -+,0x0a,0x13,0x24,0x4f,0x10,0x32,0x52,0x13,0x16,0x0f,0x00,0x3f,0x02,0x0c,0x31,0x00,0x00,0xff,0x89,0xf9,0x89,0xe9,0x8d,0xea,0x08,0xfe,0x00,0xff,0x48,0x44,0x42,0x80 -+// 31143 禧 ; -+,0x20,0x13,0x10,0x7d,0x04,0x08,0x08,0x18,0x2c,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0xff,0x20,0xfe,0x00,0xfc,0x84,0xfc,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84 -+// 31144 禨 ; -+,0x21,0x11,0x09,0x7e,0x07,0x09,0x13,0x39,0x57,0x15,0x11,0x11,0x12,0x12,0x14,0x18,0x20,0x28,0x28,0x6a,0xbc,0x24,0xaf,0x24,0xff,0x12,0x54,0x28,0x19,0x25,0x43,0x81 -+// 31145 禩 ; -+,0x20,0x13,0x12,0x03,0x7e,0x07,0x08,0x1c,0x2b,0x48,0x08,0x0f,0x08,0x08,0x09,0x0a,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x88,0x88,0xff,0x88,0x88,0xff,0x00,0x84,0x02,0x01 -+// 31146 禪 ; -+,0x11,0x09,0x09,0x7e,0x05,0x05,0x09,0x1d,0x2b,0x49,0x09,0x08,0x0b,0x08,0x08,0x08,0xce,0x4a,0xce,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0xfe,0x20,0x20,0x20 -+// 31147 禫 ; -+,0x20,0x17,0x10,0x03,0x7e,0x0b,0x10,0x19,0x35,0x55,0x11,0x11,0x10,0x17,0x10,0x10,0x00,0xff,0x90,0xfe,0x92,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20 -+// 31148 禬 ; -+,0x20,0x10,0x10,0x7d,0x06,0x08,0x13,0x32,0x5b,0x14,0x11,0x11,0x11,0x11,0x11,0x11,0x20,0x50,0x88,0x04,0xfb,0x00,0xfe,0xaa,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 31149 禭 ; -+,0x20,0x12,0x11,0x7d,0x04,0x08,0x17,0x39,0x55,0x11,0x11,0x11,0x11,0x11,0x12,0x14,0x42,0x24,0xff,0x10,0x31,0x4a,0x94,0x2c,0x56,0x25,0x44,0x04,0x14,0xc8,0x3f,0x02 -+// 31150 禮 ; -+,0x10,0x08,0x00,0x3e,0x02,0x04,0x08,0x18,0x2d,0x4a,0x08,0x08,0x08,0x08,0x0b,0x08,0x28,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0x48,0xff,0x00 -+// 31151 禯 ; -+,0x10,0x09,0x09,0x3d,0x05,0x09,0x08,0x1d,0x2b,0x49,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xff,0x00,0x7e,0x00,0xff,0x48,0x54,0x63,0x42 -+// 31152 禰 ; -+,0x20,0x17,0x11,0x7e,0x0b,0x0a,0x13,0x12,0x3b,0x56,0x13,0x12,0x13,0x12,0x12,0x12,0x00,0xff,0xac,0x23,0xfe,0x22,0x76,0xaa,0x76,0x22,0x76,0xaa,0x76,0x22,0x2a,0x24 -+// 31153 禱 ; -+,0x20,0x13,0x10,0x7d,0x08,0x0b,0x10,0x39,0x50,0x17,0x10,0x13,0x12,0x13,0x10,0x10,0x20,0xfe,0x20,0xfc,0x00,0xff,0x21,0xfe,0x00,0xff,0x04,0xff,0x54,0xcc,0x14,0x08 -+// 31154 禲 ; -+,0x20,0x11,0x11,0x7d,0x05,0x09,0x09,0x1d,0x2b,0x49,0x09,0x0a,0x0a,0x0a,0x0a,0x0c,0x00,0xff,0x24,0xff,0x24,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x91,0xbd,0x85,0x82 -+// 31155 禳 ; -+,0x20,0x13,0x10,0x7b,0x0a,0x13,0x10,0x3b,0x54,0x13,0x10,0x17,0x11,0x17,0x11,0x11,0x20,0xff,0x00,0xde,0x52,0xde,0x90,0xfe,0x90,0xfe,0x90,0xff,0xa2,0x14,0x48,0x86 -+// 31156 禴 ; -+,0x20,0x10,0x11,0x7a,0x0c,0x0e,0x12,0x1a,0x34,0x53,0x12,0x12,0x13,0x12,0x12,0x12,0x40,0xa0,0x10,0xec,0x03,0xee,0xaa,0xee,0x00,0xfe,0x92,0x92,0xfe,0x92,0x9a,0x04 -+// 31157 禵 ; -+,0x00,0x23,0x12,0x13,0x7a,0x0b,0x10,0x17,0x39,0x55,0x15,0x15,0x15,0x15,0x1b,0x10,0x00,0xdf,0x48,0xde,0x52,0xde,0x12,0xd2,0x1e,0x12,0xde,0x00,0x12,0x21,0xff,0x00 -+// 31158 禶 ; -+,0x22,0x13,0x12,0x7f,0x09,0x09,0x12,0x39,0x55,0x11,0x11,0x11,0x11,0x11,0x10,0x13,0x94,0xde,0x94,0xff,0x54,0x75,0x53,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x06 -+// 31159 禷 ; -+,0x21,0x11,0x15,0x03,0x7f,0x0b,0x15,0x39,0x55,0x17,0x11,0x12,0x12,0x14,0x18,0x10,0x00,0x3f,0x48,0x9e,0xd2,0x92,0x5e,0x12,0x12,0xde,0x12,0x92,0x5e,0x40,0x12,0x21 -+// 31160 禸 ; -+,0x00,0x00,0x00,0x1f,0x11,0x11,0x11,0x12,0x12,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0x80,0xfe,0x02,0x02,0x22,0x12,0x7a,0x8a,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 31161 禹 ; -+,0x00,0x1f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x3f,0x20,0x20,0x2f,0x24,0x20,0x20,0x20,0x04,0xfe,0x80,0xfc,0x84,0x84,0xfc,0x80,0xfe,0x92,0x8a,0xfa,0x0a,0x02,0x0a,0x04 -+// 31162 禺 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x3f,0x20,0x20,0x2f,0x24,0x20,0x20,0x20,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x80,0xfe,0x92,0x8a,0xfa,0x0a,0x02,0x0a,0x04 -+// 31163 离 ; -+,0x01,0x00,0x3f,0x03,0x08,0x09,0x0a,0x0f,0x00,0x1f,0x12,0x14,0x17,0x10,0x10,0x10,0x00,0x82,0xff,0x30,0xc4,0x24,0x14,0xfc,0x80,0xfe,0x22,0x12,0xfa,0x0a,0x0a,0x04 -+// 31164 禼 ; -+,0x00,0x00,0x00,0x0f,0x09,0x08,0x09,0x0a,0x0f,0x00,0x1f,0x11,0x13,0x10,0x10,0x10,0x80,0xfc,0x80,0xfc,0x24,0xc4,0x24,0x14,0xfc,0x80,0xfe,0x12,0xf2,0x0a,0x0a,0x04 -+// 31165 禽 ; -+,0x00,0x01,0x06,0x18,0x6f,0x01,0x08,0x09,0x0f,0x01,0x1f,0x12,0x17,0x10,0x10,0x10,0x80,0x40,0xb0,0x4f,0xfa,0x20,0xc8,0x28,0xf8,0x00,0xfc,0x24,0xf4,0x14,0x14,0x08 -+// 31166 禾 ; -+,0x00,0x00,0x1f,0x00,0x00,0x3f,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x40,0x00,0x00,0x08,0x7c,0x80,0x80,0x82,0xff,0xc0,0xa0,0xa0,0x90,0x88,0x8c,0x87,0x82,0x80,0x80 -+// 31167 禿 ; -+,0x00,0x3f,0x00,0x00,0x7f,0x01,0x02,0x04,0x18,0x62,0x02,0x02,0x02,0x04,0x18,0x60,0x7c,0x80,0x80,0x82,0xff,0xa0,0x90,0x88,0x87,0xa2,0x20,0x20,0x20,0x22,0x22,0x1e -+// 31168 秀 ; -+,0x00,0x1f,0x00,0x3f,0x01,0x06,0x18,0x60,0x0f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x7c,0x80,0x80,0xff,0xe0,0x98,0x87,0x82,0xf8,0x10,0x20,0x7e,0x02,0x02,0x14,0x08 -+// 31169 私 ; -+,0x01,0x3f,0x04,0x04,0x7f,0x0c,0x0c,0x16,0x15,0x25,0x24,0x44,0x05,0x04,0x04,0x04,0x10,0x98,0x10,0x10,0xa0,0x20,0x20,0x40,0x40,0x44,0x82,0x82,0xff,0x81,0x01,0x00 -+// 31170 秂 ; -+,0x00,0x1f,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x7c,0x80,0x80,0xff,0xc0,0xa0,0x98,0x07,0x82,0x80,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 31171 秃 ; -+,0x00,0x3f,0x00,0x00,0x3f,0x01,0x02,0x04,0x08,0x13,0x02,0x02,0x04,0x04,0x08,0x30,0x7c,0x80,0x80,0x82,0xff,0xa0,0x90,0x8e,0x84,0xe0,0x20,0x20,0x20,0x21,0x21,0x1f -+// 31172 秄 ; -+,0x03,0x3c,0x04,0x04,0x04,0x3f,0x0e,0x0d,0x15,0x14,0x24,0x44,0x04,0x04,0x04,0x04,0x00,0xfe,0x02,0x04,0x48,0x30,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 31173 秅 ; -+,0x03,0x3c,0x04,0x04,0x7f,0x0c,0x0e,0x15,0x14,0x24,0x44,0x04,0x04,0x04,0x04,0x04,0x04,0x1e,0xe0,0x20,0x20,0x20,0x3f,0xe0,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 31174 秆 ; -+,0x06,0x78,0x08,0x0a,0x7f,0x18,0x18,0x2d,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31175 秇 ; -+,0x07,0x78,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x0a,0x0c,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0xa4,0x64,0x34,0x54,0x45,0x85,0x03,0x03,0x01 -+// 31176 秈 ; -+,0x06,0x78,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,0xff,0x81,0x00 -+// 31177 秉 ; -+,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x01,0x02,0x04,0x18,0x60,0x00,0x08,0xfc,0x80,0xff,0x80,0xfc,0x84,0xff,0x84,0xfc,0xc4,0xa0,0x90,0x8c,0x87,0x82 -+// 31178 秊 ; -+,0x00,0x1f,0x00,0x7f,0x01,0x06,0x18,0x60,0x00,0x1f,0x00,0x7f,0x00,0x00,0x00,0x00,0x7c,0x80,0x80,0xff,0xa0,0x98,0x87,0x82,0x78,0x80,0x80,0xff,0x80,0x80,0x80,0x80 -+// 31179 秋 ; -+,0x00,0x07,0x78,0x08,0x08,0x7f,0x18,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x10,0x10,0x10,0x12,0x52,0x54,0x58,0x90,0x30,0x28,0x28,0x44,0x44,0x82,0x03,0x02 -+// 31180 秌 ; -+,0x08,0x08,0x09,0x0a,0x2c,0x2b,0x28,0x48,0x08,0x08,0x14,0x15,0x22,0x20,0x40,0x00,0x00,0x0e,0xf0,0x10,0x10,0xff,0x38,0x38,0x54,0x54,0x92,0x13,0x12,0x10,0x10,0x10 -+// 31181 种 ; -+,0x03,0x3c,0x04,0x04,0x3e,0x04,0x0e,0x0d,0x14,0x14,0x24,0x44,0x04,0x04,0x04,0x04,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31182 秎 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x09,0x0a,0x0c,0x08,0x48,0x48,0x44,0x84,0x82,0x01,0xfc,0x44,0x44,0x44,0x44,0x84,0x04,0x28,0x10 -+// 31183 秏 ; -+,0x06,0x38,0x09,0x08,0x7f,0x08,0x19,0x1c,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x04,0x1e,0xe0,0x20,0x24,0x3e,0xe0,0x20,0x22,0x3f,0xe0,0x20,0x21,0x21,0x1f,0x00 -+// 31184 秐 ; -+,0x06,0x38,0x08,0x0a,0x7f,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x00,0x7e,0x00,0x00,0x00,0x00,0xff,0x20,0x20,0x40,0x48,0x84,0x84,0xfe,0x82,0x00 -+// 31185 科 ; -+,0x03,0x3c,0x04,0x04,0x7f,0x0c,0x0e,0x15,0x14,0x24,0x45,0x04,0x04,0x04,0x04,0x04,0x04,0x44,0x24,0x24,0x04,0x44,0x24,0x24,0x07,0x3c,0xc4,0x04,0x04,0x04,0x04,0x04 -+// 31186 秒 ; -+,0x06,0x78,0x08,0x08,0x7e,0x08,0x19,0x1d,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x0b,0x10,0x10,0x10,0x94,0xd2,0x91,0x11,0x10,0x11,0x11,0x02,0x04,0x08,0x30,0xc0,0x00 -+// 31187 秓 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x0b,0x10,0x10,0x10,0xfe,0x10,0x10,0xfc,0x84,0x84,0x48,0x48,0x30,0x30,0x48,0x87,0x02 -+// 31188 秔 ; -+,0x06,0x78,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x2a,0x48,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x10,0x10,0xff,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 31189 秕 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0x88,0x88,0x88,0xef,0x88,0x88,0x88,0x88,0x88,0x89,0xa9,0xc9,0x87,0x00 -+// 31190 秖 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x0e,0xf0,0x90,0x90,0x90,0x92,0xff,0x90,0x90,0x88,0x88,0x85,0x85,0xa3,0xc1,0x80 -+// 31191 秗 ; -+,0x06,0x38,0x08,0x08,0x7f,0x08,0x1d,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x04,0x0e,0xf0,0x10,0x10,0x10,0xff,0x30,0x28,0x28,0x48,0x44,0x84,0x82,0x03,0x02 -+// 31192 秘 ; -+,0x06,0x38,0x08,0x08,0x7f,0x08,0x18,0x1d,0x2b,0x29,0x4a,0x08,0x08,0x09,0x0e,0x08,0x40,0x22,0x13,0x52,0x42,0x44,0x44,0x4a,0x49,0x51,0x51,0x60,0x42,0xc2,0x3e,0x00 -+// 31193 秙 ; -+,0x03,0x3c,0x04,0x04,0x3e,0x0c,0x0e,0x15,0x14,0x24,0x44,0x04,0x04,0x04,0x04,0x04,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 31194 秚 ; -+,0x06,0x38,0x09,0x08,0x7f,0x08,0x18,0x1c,0x2a,0x29,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x11,0x92,0x54,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31195 秛 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x49,0x09,0x09,0x0a,0x0a,0x0d,0x10,0x10,0x10,0xff,0x91,0x92,0xfe,0xa2,0xa4,0xa4,0x28,0x10,0x28,0x4c,0x87,0x02 -+// 31196 秜 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x18,0x2c,0x2a,0x48,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x00,0xfe,0x82,0x82,0xfe,0x80,0xa0,0xa2,0xa4,0xa8,0x30,0x20,0x20,0x21,0x21,0x1f -+// 31197 秝 ; -+,0x00,0x3e,0x08,0x08,0x08,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x49,0x0a,0x08,0x08,0x08,0x04,0xfe,0x10,0x10,0x10,0xff,0x54,0x54,0x52,0x92,0x93,0x12,0x10,0x10,0x10,0x10 -+// 31198 秞 ; -+,0x06,0x78,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82 -+// 31199 租 ; -+,0x06,0x38,0x08,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 31200 秠 ; -+,0x06,0x39,0x08,0x08,0x7f,0x18,0x18,0x2c,0x2a,0x48,0x09,0x0a,0x08,0x08,0x0b,0x08,0x00,0xff,0x08,0x08,0x10,0x10,0x30,0x58,0x54,0x92,0x12,0x10,0x10,0x10,0xff,0x00 -+// 31201 秡 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x0c,0x08,0x28,0x24,0x24,0xff,0x20,0x40,0x7e,0x44,0x44,0xa4,0xa4,0x18,0x18,0x24,0x47,0x82 -+// 31202 秢 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x19,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x28,0x44,0xa7,0x12,0x10,0xfe,0x02,0x04,0x44,0x28,0x10,0x18,0x08 -+// 31203 秣 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x09,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x38,0x34,0x54,0x53,0x92,0x10,0x10,0x10 -+// 31204 秤 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x12,0x93,0x52,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31205 秥 ; -+,0x03,0x3c,0x04,0x04,0x3f,0x0c,0x0c,0x16,0x15,0x24,0x24,0x44,0x04,0x04,0x04,0x04,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x82 -+// 31206 秦 ; -+,0x00,0x1f,0x01,0x1f,0x01,0x7f,0x02,0x04,0x1f,0x60,0x1f,0x01,0x02,0x04,0x18,0x60,0x80,0xfe,0x00,0xfc,0x00,0xff,0x10,0x78,0x84,0x83,0xfc,0xa0,0x90,0x8c,0x87,0x82 -+// 31207 秧 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2b,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x28,0x28,0x44,0x44,0x86,0x03,0x02 -+// 31208 秨 ; -+,0x06,0x38,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x42,0xff,0xa0,0x20,0x3e,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20 -+// 31209 秩 ; -+,0x00,0x06,0x78,0x08,0x08,0x7f,0x18,0x1d,0x2a,0x2a,0x48,0x08,0x08,0x08,0x09,0x0a,0x10,0x10,0x90,0x94,0xfe,0x10,0x12,0xff,0x10,0x28,0x28,0x44,0x44,0x82,0x03,0x02 -+// 31210 秪 ; -+,0x06,0x38,0x08,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x0e,0xf0,0x90,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0x88,0x85,0xad,0xcb,0x81 -+// 31211 秫 ; -+,0x06,0x38,0x08,0x08,0x7f,0x18,0x18,0x2c,0x2a,0x29,0x49,0x0a,0x08,0x08,0x08,0x08,0x28,0x24,0x24,0x20,0xff,0x70,0x70,0xa8,0xa8,0x24,0x24,0x23,0x22,0x20,0x20,0x20 -+// 31212 秬 ; -+,0x06,0x78,0x08,0x08,0x08,0x7e,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0xff,0x00 -+// 31213 秭 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x08,0x10,0x12,0x1f,0xf0,0x90,0x90,0x90,0xff,0x31,0x31,0x51,0x55,0x92,0x10,0x10,0x10 -+// 31214 秮 ; -+,0x03,0x3c,0x04,0x04,0x7f,0x0c,0x0e,0x15,0x14,0x24,0x44,0x04,0x04,0x04,0x04,0x04,0x10,0x10,0x20,0x24,0x42,0x8f,0xf1,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 31215 积 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0x82,0xfe,0x00,0x48,0x44,0x82,0x83,0x01,0x01 -+// 31216 称 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x19,0x2c,0x2a,0x48,0x08,0x09,0x0a,0x08,0x08,0x08,0x40,0x40,0x7f,0x41,0x92,0x90,0x10,0x58,0x54,0xd2,0x92,0x11,0x11,0x10,0x50,0x20 -+// 31217 秱 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x81,0x81,0xbd,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0xa5,0x81,0x81,0x85,0x82 -+// 31218 秲 ; -+,0x03,0x3c,0x04,0x04,0x7f,0x0d,0x0e,0x15,0x17,0x24,0x44,0x04,0x04,0x04,0x04,0x04,0x10,0x10,0xfe,0x10,0x10,0xff,0x04,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x14,0x08 -+// 31219 秳 ; -+,0x06,0x38,0x08,0x08,0x7e,0x19,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x1e,0xf0,0x10,0x12,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 31220 秴 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x1d,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x28,0x44,0x84,0x7a,0x03,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 31221 秵 ; -+,0x06,0x38,0x08,0x08,0x7f,0x18,0x18,0x2c,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x91,0x91,0x91,0xfd,0x91,0x91,0xb1,0xa9,0xa5,0xc5,0x81,0x81,0xff,0x81 -+// 31222 秶 ; -+,0x20,0x14,0x15,0x0a,0x08,0x31,0x16,0x10,0x1f,0x00,0x7f,0x01,0x06,0x18,0x60,0x00,0x80,0xff,0x22,0x20,0x58,0x87,0x02,0xf8,0x80,0x80,0xff,0xc0,0xb0,0x8e,0x84,0x80 -+// 31223 秷 ; -+,0x06,0x39,0x08,0x08,0x7f,0x08,0x19,0x1c,0x2a,0x2a,0x49,0x08,0x08,0x08,0x0b,0x08,0x02,0xff,0x20,0x24,0x42,0x82,0xff,0x01,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 31224 秸 ; -+,0x06,0x38,0x08,0x09,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x12,0xff,0x10,0x10,0x10,0xfe,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 31225 秹 ; -+,0x06,0x38,0x08,0x08,0x7e,0x09,0x1e,0x1a,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x40,0x47,0x78,0x88,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x8a,0xff,0x80 -+// 31226 秺 ; -+,0x06,0x38,0x08,0x08,0x7f,0x18,0x1d,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x81,0x02,0x1c,0xe0,0x20,0x3e,0xe0,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 31227 移 ; -+,0x06,0x38,0x08,0x0a,0x7f,0x18,0x18,0x2d,0x2a,0x48,0x08,0x09,0x08,0x08,0x08,0x0b,0x20,0x3e,0x42,0x84,0x28,0x10,0x68,0x90,0x3f,0x42,0xc4,0x28,0x10,0x20,0xc0,0x00 -+// 31228 秼 ; -+,0x06,0x38,0x08,0x08,0x09,0x7e,0x09,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x0a,0x08,0x08,0x10,0x90,0x90,0xfe,0x10,0x10,0xff,0x38,0x38,0x54,0x54,0x92,0x13,0x12,0x10,0x10 -+// 31229 秽 ; -+,0x06,0x38,0x08,0x08,0x7f,0x18,0x18,0x2c,0x2a,0x49,0x0a,0x08,0x08,0x08,0x09,0x0e,0x10,0x91,0x91,0x91,0xff,0x91,0x20,0x7f,0x82,0x44,0x28,0x10,0x20,0x40,0x80,0x00 -+// 31230 秾 ; -+,0x06,0x38,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2a,0x29,0x29,0x4a,0x0c,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0xa1,0x22,0x50,0x52,0xd4,0x48,0x48,0x48,0x44,0x54,0x63,0x42 -+// 31231 秿 ; -+,0x06,0x38,0x0b,0x08,0x7e,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x28,0x24,0xff,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x04 -+// 31232 稀 ; -+,0x06,0x38,0x08,0x08,0x7f,0x09,0x1c,0x1a,0x29,0x2a,0x4c,0x08,0x08,0x08,0x08,0x08,0x44,0x28,0x10,0x28,0x54,0xff,0x40,0x90,0xfe,0x92,0x92,0x92,0x92,0x9a,0x94,0x10 -+// 31233 稁 ; -+,0x00,0x3f,0x00,0x07,0x04,0x07,0x00,0x3f,0x20,0x0f,0x00,0x1f,0x01,0x06,0x38,0x00,0x80,0xff,0x00,0xf8,0x08,0xf8,0x00,0xff,0x01,0xf8,0x80,0xfe,0xa0,0x98,0x87,0x82 -+// 31234 稂 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x1c,0x1a,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0xa1,0x92,0x94,0x88,0xa4,0xc7,0x82 -+// 31235 稃 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x1c,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x0f,0xf0,0x02,0xa2,0x52,0x54,0xfe,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 31236 稄 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1d,0x2a,0x2a,0x49,0x08,0x08,0x08,0x08,0x09,0x10,0x24,0x42,0xff,0x01,0x84,0x82,0x41,0x7e,0xc2,0x24,0x18,0x18,0x24,0x47,0x82 -+// 31237 稅 ; -+,0x07,0x3c,0x04,0x04,0x3f,0x0c,0x0e,0x15,0x14,0x24,0x24,0x44,0x04,0x04,0x04,0x05,0x04,0x42,0x42,0x81,0x7f,0x42,0x42,0x42,0x7e,0x28,0x28,0x28,0x49,0x49,0x89,0x07 -+// 31238 稆 ; -+,0x06,0x38,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00,0xff,0x81,0x81,0x81,0x81,0x81,0xff,0x81 -+// 31239 稇 ; -+,0x06,0x79,0x09,0x09,0x7f,0x19,0x19,0x2d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x11,0x11,0x11,0x7d,0x31,0x31,0x59,0x55,0x91,0x11,0x11,0x01,0xff,0x01 -+// 31240 稈 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x1c,0x1a,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 31241 稉 ; -+,0x06,0x39,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x90,0x60,0x38,0x47,0x82 -+// 31242 稊 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x44,0x28,0xfe,0x12,0x12,0xfe,0x90,0x90,0xff,0x51,0x51,0x95,0x92,0x10,0x10,0x10 -+// 31243 程 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1d,0x2a,0x28,0x49,0x08,0x08,0x08,0x0b,0x08,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 31244 稌 ; -+,0x06,0x38,0x08,0x08,0x7f,0x0a,0x1c,0x1a,0x29,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x20,0x20,0x50,0x88,0x07,0xfa,0x20,0x20,0xfe,0x20,0xa8,0xa4,0x22,0x22,0xa0,0x40 -+// 31245 稍 ; -+,0x07,0x3c,0x04,0x04,0x3e,0x0c,0x0e,0x15,0x14,0x24,0x24,0x44,0x04,0x04,0x04,0x04,0x10,0x91,0x52,0x54,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 31246 税 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x04,0x84,0x48,0x10,0xfc,0x84,0x84,0x84,0xfc,0x50,0x50,0x50,0x90,0x91,0x11,0x0f -+// 31247 稏 ; -+,0x06,0x79,0x08,0x08,0x7e,0x09,0x19,0x1d,0x2b,0x29,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0xff,0x48,0x48,0x48,0xce,0x02,0x02,0x02,0xce,0x48,0x48,0x48,0x48,0xff,0x00 -+// 31248 稐 ; -+,0x06,0x38,0x08,0x08,0x7f,0x1a,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x50,0x48,0x84,0x03,0xfc,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x4a,0x04 -+// 31249 稑 ; -+,0x06,0x38,0x08,0x08,0x7e,0x19,0x1c,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x44,0x92,0x11,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 31250 稒 ; -+,0x06,0x79,0x09,0x09,0x7f,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x11,0x11,0x7d,0x11,0x11,0x7d,0x45,0x45,0x45,0x7d,0x01,0x01,0xff,0x01 -+// 31251 稓 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1b,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0xfe,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 31252 稔 ; -+,0x06,0x78,0x08,0x08,0x7f,0x1a,0x1d,0x2a,0x28,0x48,0x08,0x0a,0x0a,0x0a,0x0c,0x08,0x20,0x30,0x48,0x84,0x23,0x10,0xfc,0x08,0x50,0x20,0xa4,0xa2,0x89,0x89,0x78,0x00 -+// 31253 稕 ; -+,0x06,0x39,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 31254 稖 ; -+,0x06,0x38,0x09,0x08,0x7f,0x08,0x18,0x1d,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0x42,0x24,0x28,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 31255 稗 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x0b,0x08,0x08,0x08,0x08,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 31256 稘 ; -+,0x06,0x38,0x09,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x0b,0x08,0x08,0x08,0x09,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0x00,0x44,0x82,0x01 -+// 31257 稙 ; -+,0x06,0x38,0x09,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0xfe,0x20,0xfc,0x84,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xff,0x00 -+// 31258 稚 ; -+,0x06,0x38,0x08,0x08,0x7e,0x09,0x1a,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x50,0x48,0x48,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x80,0x80 -+// 31259 稛 ; -+,0x06,0x39,0x09,0x09,0x7f,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x01,0x7d,0x11,0xff,0x31,0x39,0x55,0x51,0x91,0x11,0x11,0x01,0xff,0x01 -+// 31260 稜 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x09,0x0a,0x08,0x08,0x0b,0x10,0x10,0xfe,0x10,0xff,0x00,0x44,0x82,0x7d,0x44,0xc8,0x28,0x10,0x28,0xc7,0x02 -+// 31261 稝 ; -+,0x06,0x39,0x09,0x09,0x7d,0x19,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x00,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0x31,0x31,0xa5,0x42 -+// 31262 稞 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x30,0x58,0x54,0x97,0x12,0x10,0x10 -+// 31263 稟 ; -+,0x00,0x7f,0x00,0x1f,0x12,0x13,0x10,0x1f,0x00,0x1f,0x00,0x7f,0x02,0x0c,0x70,0x00,0x80,0xff,0x00,0xfc,0x24,0xe4,0x04,0xfc,0x00,0xfc,0x80,0xff,0xa0,0x98,0x87,0x82 -+// 31264 稠 ; -+,0x06,0x38,0x08,0x08,0x3e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x0c,0x00,0xff,0x91,0x91,0xfd,0x91,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x25,0x01,0x05,0x02 -+// 31265 稡 ; -+,0x06,0x38,0x09,0x08,0x7e,0x18,0x1d,0x1a,0x28,0x28,0x4b,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x88,0x88,0x88,0x54,0x22,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 31266 稢 ; -+,0x06,0x38,0x08,0x09,0x7e,0x09,0x1d,0x1b,0x29,0x29,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x0c,0x0a,0xff,0x08,0xe9,0x29,0x29,0x2a,0xea,0x04,0x6d,0x95,0x23,0x43,0x01 -+// 31267 稣 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x02,0x00,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x30,0x38,0x54,0x54,0x94,0x92,0x13,0x12,0x10 -+// 31268 稤 ; -+,0x06,0x38,0x09,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x09,0x0a,0x08,0x08,0x20,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x10,0x94,0x92,0x11,0x11,0x50,0x20 -+// 31269 稥 ; -+,0x00,0x1f,0x00,0x7f,0x02,0x0c,0x70,0x12,0x11,0x20,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x78,0x80,0x80,0xff,0xa0,0x98,0x87,0x4a,0x24,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 31270 稦 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0xfc,0x24,0xff,0x00,0xfc,0x84,0xfc,0x10,0xff,0x90,0x90,0xff,0x10,0x10,0x10 -+// 31271 稧 ; -+,0x0c,0x70,0x13,0x10,0x7f,0x10,0x33,0x38,0x54,0x53,0x10,0x10,0x10,0x10,0x11,0x12,0x80,0x9e,0xea,0x8a,0xea,0x92,0xda,0xa4,0x20,0xff,0x20,0x50,0x48,0x8c,0x07,0x02 -+// 31272 稨 ; -+,0x06,0x38,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x0a,0x0a,0x0c,0x08,0x08,0x20,0x10,0xff,0x01,0x01,0xff,0x00,0xff,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0x85,0x82 -+// 31273 稩 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 31274 稪 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x18,0x28,0x28,0x49,0x0a,0x08,0x08,0x0b,0x40,0x40,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xfe,0x44,0x28,0x38,0xc7,0x02 -+// 31275 稫 ; -+,0x06,0x39,0x08,0x08,0x7e,0x18,0x18,0x2c,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 31276 稬 ; -+,0x06,0x39,0x08,0x09,0x7f,0x09,0x19,0x1d,0x2b,0x28,0x4b,0x08,0x08,0x08,0x08,0x09,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x52,0x06,0x20,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 31277 稭 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x88,0x89,0x8a,0xec,0x89,0xa9,0xcf,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 31278 種 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x0e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 31279 稯 ; -+,0x0c,0x71,0x11,0x11,0x7d,0x10,0x38,0x34,0x35,0x52,0x50,0x11,0x10,0x10,0x10,0x10,0x84,0x4a,0x32,0x4a,0xfe,0x00,0x84,0x82,0x7d,0x45,0xa8,0x10,0x18,0x24,0x47,0x82 -+// 31280 稰 ; -+,0x04,0x39,0x08,0x08,0x7e,0x19,0x1d,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x9e,0x90,0x70,0x1f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 31281 稱 ; -+,0x06,0x39,0x08,0x09,0x7e,0x18,0x1c,0x2a,0x28,0x48,0x08,0x0b,0x08,0x08,0x08,0x08,0x1e,0xe0,0x44,0x24,0xa8,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x82,0x82,0x8a,0x84 -+// 31282 稲 ; -+,0x06,0x38,0x08,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x0e,0xf0,0x02,0xa2,0x54,0x54,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2 -+// 31283 稳 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x28,0x48,0x0a,0x0a,0x0a,0x08,0x08,0x40,0x78,0x88,0x10,0xfe,0x02,0xfe,0x02,0xfe,0x20,0x94,0x92,0x85,0x85,0x7c,0x00 -+// 31284 稴 ; -+,0x06,0x38,0x09,0x08,0x7d,0x18,0x1d,0x2a,0x29,0x48,0x08,0x09,0x09,0x0a,0x08,0x08,0x84,0x48,0xff,0x50,0xfe,0x52,0xff,0x52,0xfe,0xd8,0xd4,0x54,0x52,0x53,0x52,0x50 -+// 31285 稵 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1c,0x1b,0x29,0x28,0x48,0x09,0x09,0x0b,0x08,0x08,0x82,0x44,0x08,0xff,0x44,0x44,0x89,0x29,0xde,0x42,0x84,0x0a,0x51,0xdf,0x41,0x00 -+// 31286 稶 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1d,0x1b,0x19,0x29,0x28,0x48,0x0b,0x08,0x08,0x09,0x08,0x0c,0x0a,0xff,0x08,0x0a,0xec,0x39,0x2a,0xed,0x1a,0x64,0x8d,0x15,0x63,0x81 -+// 31287 稷 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x0b,0x08,0x08,0x08,0x0b,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x82,0x41,0x7e,0x84,0x48,0x30,0x2c,0xc7,0x02 -+// 31288 稸 ; -+,0x06,0x78,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x20,0x48,0xf0,0x20,0x44,0xfe,0x01,0xfe,0x92,0xfe,0x92,0xfe,0x82 -+// 31289 稹 ; -+,0x06,0x38,0x09,0x08,0x7e,0x18,0x18,0x2c,0x2a,0x2a,0x48,0x08,0x0b,0x08,0x08,0x09,0x10,0x10,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0x84,0x02 -+// 31290 稺 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x28,0x28,0x48,0x09,0x09,0x09,0x0a,0x0c,0xff,0x81,0x81,0xff,0x90,0x88,0xff,0xa2,0x94,0xff,0x88,0x08,0x7f,0x08,0x08,0x08 -+// 31291 稻 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x0e,0xf0,0x01,0x21,0x92,0x94,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x82 -+// 31292 稼 ; -+,0x06,0x38,0x09,0x09,0x7e,0x08,0x1c,0x1b,0x28,0x28,0x4b,0x08,0x0b,0x08,0x08,0x08,0x20,0x10,0xff,0x01,0x7c,0x20,0xc4,0x28,0x30,0xd8,0x34,0xd4,0x13,0x12,0xa0,0x40 -+// 31293 稽 ; -+,0x06,0x38,0x09,0x08,0x7e,0x0b,0x18,0x1c,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x28,0x20,0xfe,0x49,0x89,0x07,0x98,0xe2,0x82,0x7e,0x00,0xfc,0x84,0xfc,0x84,0xfc -+// 31294 稾 ; -+,0x00,0x3f,0x04,0x07,0x00,0x1f,0x12,0x13,0x10,0x17,0x00,0x7f,0x02,0x0c,0x70,0x00,0x80,0xff,0x10,0xf0,0x00,0xfe,0x12,0xf2,0x02,0xf6,0x80,0xff,0xa0,0x98,0x87,0x82 -+// 31295 稿 ; -+,0x06,0x38,0x09,0x08,0x7f,0x08,0x1c,0x1a,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xff,0x01,0x79,0x49,0x79,0x01,0x05,0x02 -+// 31296 穀 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x20,0x1f,0x00,0x1f,0x04,0x3f,0x0e,0x15,0x25,0x04,0x00,0xbc,0x24,0x24,0x24,0xc7,0x40,0x3e,0x22,0x14,0x14,0x88,0x08,0x14,0x23,0x42 -+// 31297 穁 ; -+,0x06,0x39,0x08,0x08,0x7f,0x08,0x18,0x1c,0x2a,0x28,0x28,0x48,0x08,0x0b,0x09,0x08,0x48,0xff,0x48,0x48,0xff,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04 -+// 31298 穂 ; -+,0x06,0x38,0x09,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x28,0x49,0x09,0x09,0x0a,0x08,0x08,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x52,0x49,0x49,0x42,0x3e,0x00 -+// 31299 穃 ; -+,0x0c,0x70,0x11,0x11,0x7e,0x10,0x39,0x34,0x34,0x51,0x56,0x10,0x10,0x10,0x10,0x10,0x20,0x10,0xff,0x01,0x4a,0x84,0x32,0x48,0x84,0x03,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 31300 穄 ; -+,0x0c,0x70,0x11,0x12,0x7d,0x10,0x31,0x3a,0x54,0x53,0x10,0x11,0x11,0x12,0x14,0x10,0x90,0xde,0x32,0x4c,0x48,0x84,0x03,0xfc,0x00,0xff,0x20,0x24,0x22,0x21,0xa1,0x40 -+// 31301 穅 ; -+,0x00,0x0e,0x71,0x11,0x11,0x7f,0x11,0x39,0x35,0x51,0x52,0x12,0x12,0x15,0x10,0x10,0x20,0x10,0xff,0x10,0x7c,0x14,0xff,0x14,0x7c,0x92,0x54,0x38,0x54,0x93,0x50,0x20 -+// 31302 穆 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x2b,0x2c,0x4b,0x08,0x0b,0x08,0x08,0x0b,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x52,0x91,0x0d,0x70,0x86,0x38,0xc3,0x0c,0x70,0x80 -+// 31303 穇 ; -+,0x06,0x38,0x08,0x09,0x7c,0x09,0x1f,0x1a,0x28,0x2b,0x48,0x0b,0x08,0x0b,0x08,0x0b,0x20,0x48,0x84,0xfe,0x88,0x4a,0xef,0x31,0xcc,0x33,0xc8,0x32,0xc4,0x18,0x60,0x80 -+// 31304 穈 ; -+,0x00,0x00,0x1f,0x12,0x1f,0x17,0x12,0x1a,0x13,0x10,0x1f,0x10,0x21,0x26,0x58,0x00,0x80,0x40,0xfe,0x08,0xbe,0x1c,0xaa,0x49,0xf8,0x40,0xfe,0xe0,0x58,0x47,0x42,0x40 -+// 31305 穉 ; -+,0x06,0x39,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x00,0xfe,0x02,0xfe,0x10,0x54,0x38,0x54,0x82,0x50,0x7e,0x90,0xff,0x10,0x10,0x10 -+// 31306 穊 ; -+,0x0c,0x73,0x12,0x12,0x7f,0x12,0x3a,0x37,0x52,0x52,0x12,0x12,0x13,0x12,0x10,0x10,0x00,0xdf,0x48,0x48,0xe8,0x68,0x7f,0xcc,0x0c,0x8c,0x54,0x94,0x25,0x25,0x45,0x83 -+// 31307 穋 ; -+,0x06,0x39,0x09,0x08,0x7d,0x1a,0x1c,0x2a,0x29,0x4e,0x09,0x08,0x09,0x08,0x0b,0x08,0x00,0xde,0x52,0xca,0x46,0x4a,0x22,0x50,0x8c,0x63,0x98,0x60,0x86,0x38,0xc0,0x00 -+// 31308 穌 ; -+,0x10,0x1e,0x22,0x24,0x7f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x0e,0xf0,0x10,0x10,0xff,0x38,0x34,0x54,0x52,0x93,0x12,0x90,0x90,0x90,0x10 -+// 31309 積 ; -+,0x06,0x39,0x08,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 31310 穎 ; -+,0x10,0x16,0x18,0x11,0x0f,0x00,0x3e,0x08,0x7f,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0xff,0x10,0x20,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x81 -+// 31311 穏 ; -+,0x06,0x38,0x09,0x08,0x7f,0x18,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x08,0x08,0x0e,0xf0,0x22,0x92,0x54,0xfe,0x02,0xfe,0x02,0xfe,0x24,0x52,0x51,0x45,0x3c,0x00 -+// 31312 穐 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x40,0x78,0x88,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x11,0x0f -+// 31313 穑 ; -+,0x00,0x06,0x78,0x08,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x10,0x10,0xfe,0x10,0x92,0x54,0xff,0x00,0xfe,0x82,0xba,0xaa,0xba,0x82,0xfe,0x82 -+// 31314 穒 ; -+,0x1f,0x00,0x3f,0x02,0x0c,0x72,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x24,0x24,0x00,0xf8,0x80,0xfe,0xa0,0x98,0x87,0xfa,0x08,0xf8,0x08,0xf8,0x00,0xff,0xa4,0xa4,0x0c -+// 31315 穓 ; -+,0x06,0x39,0x09,0x09,0x3f,0x09,0x18,0x1c,0x2b,0x28,0x48,0x0b,0x08,0x08,0x09,0x0a,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x88,0x88,0xff,0x88,0x88,0xff,0x00,0x88,0x06,0x02 -+// 31316 穔 ; -+,0x06,0x38,0x09,0x08,0x7e,0x09,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x44,0x44,0xff,0x44,0x44,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x44,0x83,0x01 -+// 31317 穕 ; -+,0x06,0x38,0x08,0x09,0x7d,0x0a,0x18,0x1c,0x1a,0x28,0x28,0x49,0x08,0x08,0x08,0x0b,0x90,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x90,0x10,0xff,0x38,0x54,0x93,0x12 -+// 31318 穖 ; -+,0x06,0x38,0x09,0x09,0x08,0x7f,0x19,0x1c,0x2b,0x29,0x49,0x09,0x09,0x0a,0x0a,0x0c,0x94,0x94,0x39,0xde,0x94,0x59,0xff,0x14,0xff,0x14,0x52,0x34,0x09,0x35,0xc3,0x01 -+// 31319 穗 ; -+,0x06,0x39,0x08,0x09,0x7f,0x09,0x19,0x1d,0x2a,0x29,0x48,0x08,0x0a,0x0a,0x0c,0x08,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x22,0xff,0x00,0xa2,0x91,0x85,0x7c,0x00 -+// 31320 穘 ; -+,0x0c,0x70,0x10,0x10,0x7d,0x10,0x3b,0x34,0x33,0x50,0x13,0x10,0x10,0x10,0x10,0x11,0x10,0x10,0xfe,0x10,0xff,0x84,0xdf,0x84,0xdf,0x00,0xff,0x48,0x48,0x89,0x89,0x07 -+// 31321 穙 ; -+,0x06,0x3a,0x09,0x08,0x7f,0x08,0x19,0x1c,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x09,0x50,0x52,0x54,0xd8,0xff,0x88,0xfe,0x20,0xfe,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 31322 穚 ; -+,0x06,0x39,0x08,0x09,0x7e,0x18,0x1d,0x1a,0x28,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x1c,0xe0,0x20,0xff,0x48,0xfc,0x4b,0x78,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x06 -+// 31323 穛 ; -+,0x06,0x38,0x08,0x09,0x0a,0x7e,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x09,0x09,0x0a,0x90,0x88,0xff,0x90,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80,0x00,0x52,0x29,0x29 -+// 31324 穜 ; -+,0x06,0x38,0x08,0x08,0x7e,0x18,0x1c,0x1a,0x28,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x10,0xfe,0x44,0x28,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 31325 穝 ; -+,0x06,0x38,0x08,0x08,0x7e,0x08,0x1b,0x1d,0x2b,0x29,0x49,0x09,0x09,0x0b,0x08,0x08,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x20,0xfe,0x32,0xea,0x24,0xe4,0x2b,0x32,0x20 -+// 31326 穞 ; -+,0x06,0x38,0x08,0x09,0x7f,0x19,0x1d,0x2b,0x2a,0x4a,0x0c,0x08,0x08,0x08,0x08,0x08,0x40,0x78,0x90,0xfc,0x24,0xfc,0x24,0xfc,0x92,0x49,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 31327 穟 ; -+,0x06,0x38,0x0a,0x09,0x7d,0x08,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x0a,0x08,0x02,0x44,0x28,0xff,0x20,0x22,0x52,0xb4,0x5c,0xaa,0x49,0xa8,0x10,0x80,0x7f,0x00 -+// 31328 穠 ; -+,0x06,0x39,0x09,0x09,0x7f,0x09,0x1c,0x1b,0x29,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x08,0x50,0xfe,0x52,0xfe,0x52,0xfe,0x00,0xff,0x00,0xfc,0x00,0xff,0x94,0xa8,0xc7,0x82 -+// 31329 穡 ; -+,0x06,0x38,0x09,0x08,0x7e,0x09,0x1b,0x1c,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x20,0x20,0xfe,0xa8,0xa8,0x74,0xff,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0xfe,0x02 -+// 31330 穢 ; -+,0x06,0x38,0x08,0x0b,0x7c,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x0a,0x0a,0x0c,0x10,0x9e,0x90,0xff,0x14,0xff,0x08,0xf8,0x49,0x69,0xda,0x25,0x4d,0x95,0x23,0x41 -+// 31331 穣 ; -+,0x06,0x39,0x08,0x09,0x7e,0x09,0x1c,0x1b,0x28,0x2b,0x48,0x09,0x0a,0x08,0x08,0x08,0x20,0xff,0x48,0x86,0x48,0xfe,0x48,0xff,0x48,0xff,0xa2,0x94,0x88,0xa4,0xc7,0x82 -+// 31332 穤 ; -+,0x05,0x38,0x0b,0x0a,0x7d,0x18,0x1d,0x1a,0x29,0x28,0x49,0x09,0x09,0x09,0x09,0x09,0xfe,0x20,0xff,0x21,0xae,0x20,0xae,0x00,0xff,0x20,0xfe,0x52,0x52,0x52,0x4a,0x04 -+// 31333 穥 ; -+,0x0c,0x73,0x12,0x12,0x7b,0x12,0x3a,0x37,0x52,0x52,0x17,0x10,0x10,0x11,0x12,0x14,0x20,0xae,0x32,0x22,0x36,0x52,0x52,0x56,0x52,0x52,0xff,0x88,0x84,0x06,0x02,0x02 -+// 31334 穦 ; -+,0x06,0x39,0x09,0x08,0x7e,0x08,0x1d,0x1a,0x2b,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x20,0xff,0x01,0xfc,0x22,0xa4,0x38,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 31335 穧 ; -+,0x0c,0x73,0x10,0x10,0x7f,0x12,0x32,0x3a,0x34,0x50,0x10,0x10,0x10,0x10,0x10,0x11,0x20,0xff,0x88,0x53,0xac,0xaa,0xaa,0xad,0x08,0x82,0xfe,0x82,0xfe,0x82,0x82,0x02 -+// 31336 穨 ; -+,0x03,0x3c,0x04,0x7f,0x0c,0x16,0x25,0x40,0x1e,0x12,0x12,0x12,0x23,0x22,0x40,0x00,0x10,0x7e,0x52,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0xfe,0x42,0x7e,0x24,0xc3 -+// 31337 穩 ; -+,0x06,0x39,0x09,0x08,0x7d,0x18,0x1d,0x1a,0x29,0x28,0x49,0x08,0x09,0x0a,0x0a,0x0c,0x1e,0xe4,0x48,0xa8,0xfe,0x20,0xff,0x00,0xfe,0x02,0xfe,0x02,0xfe,0xa2,0x95,0x7d -+// 31338 穪 ; -+,0x0c,0x39,0x08,0x0b,0x7d,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x92,0x11,0xff,0x11,0xbb,0x55,0xbb,0x11,0xbb,0x55,0xbb,0x11,0x15,0x02 -+// 31339 穫 ; -+,0x06,0x39,0x08,0x08,0x3e,0x09,0x1a,0x1c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x44,0xff,0x64,0x50,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfe,0x44,0x38,0xc7 -+// 31340 穬 ; -+,0x0c,0x71,0x11,0x11,0x7d,0x11,0x39,0x35,0x35,0x52,0x52,0x12,0x12,0x14,0x14,0x19,0x10,0xff,0x28,0xfe,0x28,0xff,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x83,0x01 -+// 31341 穭 ; -+,0x06,0x38,0x08,0x09,0x7e,0x08,0x1c,0x1a,0x29,0x29,0x4a,0x08,0x08,0x08,0x08,0x08,0x40,0x78,0x88,0xfe,0x92,0xfe,0x92,0xfe,0x52,0x29,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 31342 穮 ; -+,0x06,0x39,0x09,0x09,0x7f,0x19,0x19,0x1d,0x2b,0x29,0x49,0x0a,0x0a,0x0a,0x0c,0x09,0x20,0xff,0x28,0x28,0xff,0x29,0xff,0x48,0x7e,0x49,0x69,0x47,0x00,0xaa,0x95,0x15 -+// 31343 穯 ; -+,0x06,0x39,0x08,0x09,0x7d,0x09,0x18,0x1d,0x2a,0x29,0x49,0x09,0x09,0x09,0x09,0x09,0x10,0xff,0x10,0xd7,0x55,0xd7,0x10,0xff,0x00,0xff,0x01,0x7d,0x45,0x7d,0x01,0xff -+// 31344 穰 ; -+,0x0c,0x73,0x10,0x13,0x7e,0x13,0x38,0x37,0x30,0x53,0x50,0x17,0x11,0x16,0x18,0x10,0x20,0xff,0x00,0xde,0x52,0xde,0x88,0xfe,0x88,0xfe,0x88,0xff,0x94,0xa8,0xc7,0x82 -+// 31345 穱 ; -+,0x0c,0x73,0x11,0x10,0x7f,0x12,0x3b,0x34,0x33,0x52,0x13,0x12,0x13,0x12,0x13,0x12,0x1f,0xe2,0x12,0x94,0xff,0x49,0xff,0x00,0xe2,0x3f,0xe2,0x2a,0xea,0x82,0x4a,0x04 -+// 31346 穲 ; -+,0x0d,0x70,0x11,0x11,0x7d,0x10,0x39,0x35,0x35,0x51,0x11,0x11,0x11,0x12,0x12,0x14,0xef,0x00,0xef,0x29,0xad,0x28,0xff,0x48,0xfe,0x4a,0xfe,0x48,0x6a,0x4d,0x69,0x47 -+// 31347 穳 ; -+,0x06,0x3a,0x0b,0x0a,0x7f,0x19,0x1a,0x1a,0x2c,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x94,0x94,0xdf,0xa4,0xdf,0x95,0xd7,0xa0,0xfc,0x84,0x9c,0xe4,0x84,0xfc,0x84,0x02 -+// 31348 穴 ; -+,0x01,0x00,0x00,0x1f,0x10,0x10,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x80,0x80,0xff,0x02,0x04,0x20,0x20,0x20,0x10,0x10,0x10,0x08,0x0c,0x07,0x02 -+// 31349 穵 ; -+,0x01,0x00,0x3f,0x20,0x44,0x08,0x10,0x2f,0x00,0x00,0x03,0x04,0x08,0x08,0x07,0x00,0x00,0x80,0xff,0x02,0x24,0x10,0x08,0xe4,0x40,0x80,0x00,0x00,0x02,0x02,0xfe,0x00 -+// 31350 究 ; -+,0x01,0x00,0x3f,0x20,0x09,0x11,0x21,0x0f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0x80,0xff,0x02,0x10,0x08,0x04,0xe0,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 31351 穷 ; -+,0x01,0x00,0x3f,0x20,0x08,0x08,0x11,0x21,0x1f,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x80,0xff,0x01,0x10,0x08,0x04,0x00,0xfc,0x04,0x04,0x04,0x04,0x08,0x28,0x10 -+// 31352 穸 ; -+,0x00,0x00,0x3f,0x20,0x04,0x09,0x31,0x03,0x02,0x06,0x09,0x00,0x00,0x01,0x06,0x38,0x80,0x40,0xff,0x01,0x10,0x08,0x06,0xfc,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x00 -+// 31353 穹 ; -+,0x00,0x00,0x3f,0x24,0x08,0x17,0x00,0x00,0x07,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x80,0x40,0xff,0x09,0x04,0xfa,0x08,0x08,0xf8,0x00,0x00,0xfc,0x04,0x04,0x24,0x18 -+// 31354 空 ; -+,0x01,0x00,0x3f,0x20,0x42,0x04,0x08,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x80,0xff,0x01,0x22,0x10,0x08,0x04,0xf8,0x80,0x80,0x80,0x80,0x80,0xfe,0x00 -+// 31355 穻 ; -+,0x01,0x00,0x3f,0x22,0x04,0x08,0x00,0x07,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x00,0x00,0x80,0xff,0x12,0x08,0x04,0x00,0xf8,0x40,0x40,0xff,0x40,0x40,0x40,0x40,0x80 -+// 31356 穼 ; -+,0x00,0x00,0x1f,0x10,0x02,0x0c,0x30,0x00,0x1f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x80,0x40,0xff,0x02,0x10,0x0c,0x82,0x80,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 31357 穽 ; -+,0x01,0x00,0x3f,0x22,0x04,0x1a,0x02,0x1f,0x02,0x02,0x7f,0x04,0x04,0x08,0x10,0x20,0x00,0x80,0xff,0x12,0x08,0x24,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 31358 穾 ; -+,0x01,0x00,0x3f,0x22,0x04,0x08,0x30,0x0f,0x00,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0xff,0x21,0x10,0x08,0x74,0x80,0x80,0x80,0xff,0x20,0x10,0x0c,0x07,0x02 -+// 31359 穿 ; -+,0x01,0x00,0x3f,0x24,0x08,0x17,0x00,0x04,0x04,0x0f,0x00,0x01,0x06,0x18,0x60,0x00,0x00,0x80,0xff,0x12,0x08,0xf4,0x20,0x20,0x20,0xfe,0xa0,0x20,0x20,0x20,0xa0,0x40 -+// 31360 窀 ; -+,0x01,0x00,0x3f,0x22,0x04,0x18,0x00,0x3f,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x12,0x08,0x86,0x80,0xfe,0x80,0x88,0x88,0xf8,0x80,0x82,0x82,0x7e -+// 31361 突 ; -+,0x01,0x00,0x3f,0x21,0x02,0x04,0x18,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0xff,0x22,0x10,0x8c,0xa4,0x90,0xff,0x80,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 31362 窂 ; -+,0x00,0x1f,0x10,0x02,0x0c,0x30,0x08,0x0f,0x10,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x01,0x30,0x0c,0x42,0x40,0xfe,0x40,0x40,0xff,0x40,0x40,0x40,0x40,0x40 -+// 31363 窃 ; -+,0x00,0x00,0x1f,0x11,0x06,0x18,0x08,0x08,0x0f,0x78,0x08,0x09,0x0a,0x0c,0x08,0x01,0x80,0x40,0xff,0x11,0x08,0x04,0x00,0xfe,0x22,0x22,0x22,0x22,0x42,0x42,0x94,0x08 -+// 31364 窄 ; -+,0x01,0x00,0x1f,0x10,0x02,0x0c,0x32,0x03,0x05,0x05,0x09,0x01,0x01,0x01,0x01,0x01,0x00,0x80,0xff,0x01,0x30,0x0c,0x02,0xfc,0x00,0xfc,0x00,0xfc,0x00,0x00,0x00,0x00 -+// 31365 窅 ; -+,0x01,0x00,0x3f,0x20,0x04,0x08,0x30,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x01,0x10,0x0c,0x04,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 31366 窆 ; -+,0x01,0x00,0x3f,0x22,0x04,0x08,0x3f,0x00,0x1f,0x00,0x00,0x01,0x06,0x18,0x67,0x00,0x00,0x80,0xff,0x11,0x0c,0x7e,0x80,0x80,0xfc,0x10,0x60,0x80,0x00,0x00,0xff,0x00 -+// 31367 窇 ; -+,0x00,0x3f,0x20,0x06,0x18,0x64,0x0f,0x18,0x2f,0x48,0x0f,0x08,0x08,0x08,0x07,0x00,0x80,0xff,0x01,0x60,0x18,0x04,0xfa,0x08,0xc8,0x48,0xc8,0x2a,0x12,0x02,0xfe,0x00 -+// 31368 窈 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x30,0x08,0x0a,0x12,0x3c,0x08,0x0a,0x12,0x3e,0x02,0x01,0x00,0x80,0xff,0x12,0x08,0x26,0x20,0xfc,0x24,0x24,0x24,0x24,0x44,0x44,0xa8,0x10 -+// 31369 窉 ; -+,0x00,0x00,0x1f,0x12,0x04,0x18,0x1f,0x00,0x00,0x0f,0x08,0x08,0x09,0x0a,0x08,0x08,0x80,0x40,0xff,0x11,0x08,0x04,0xff,0x40,0x40,0xfe,0x42,0xa2,0x12,0x12,0x02,0x06 -+// 31370 窊 ; -+,0x00,0x00,0x1f,0x11,0x06,0x18,0x07,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x10,0x20,0x80,0x40,0xff,0x12,0x08,0x3e,0xd0,0x90,0x88,0x88,0xc8,0xa4,0xb4,0xd2,0x93,0x02 -+// 31371 窋 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x30,0x00,0x10,0x10,0x1f,0x00,0x10,0x10,0x10,0x1f,0x10,0x00,0x80,0xff,0x22,0x18,0x86,0x80,0x84,0x84,0xfc,0x80,0x84,0x84,0x84,0xfc,0x04 -+// 31372 窌 ; -+,0x01,0x00,0x3f,0x22,0x04,0x18,0x01,0x0e,0x09,0x09,0x0b,0x0d,0x09,0x02,0x0c,0x30,0x00,0x80,0xff,0x21,0x18,0x06,0x80,0x3e,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 31373 窍 ; -+,0x00,0x00,0x3f,0x22,0x4c,0x30,0x00,0x3f,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x80,0x40,0xff,0x22,0x18,0x04,0xfe,0x20,0x20,0x3c,0x04,0x04,0x04,0x04,0x28,0x10 -+// 31374 窎 ; -+,0x00,0x00,0x3f,0x22,0x0c,0x31,0x07,0x05,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x80,0x40,0xff,0x12,0x88,0x04,0xf0,0x10,0x90,0x30,0xfc,0x04,0xf4,0x04,0x28,0x10 -+// 31375 窏 ; -+,0x00,0x00,0x3f,0x22,0x0c,0x30,0x08,0x24,0x10,0x15,0x04,0x38,0x08,0x08,0x08,0x08,0x80,0x40,0xff,0x12,0x08,0x04,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 31376 窐 ; -+,0x00,0x3f,0x22,0x04,0x18,0x00,0x0f,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x80,0xff,0x22,0x10,0x8c,0x80,0xfc,0x80,0xff,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 31377 窑 ; -+,0x01,0x00,0x3f,0x20,0x06,0x18,0x6f,0x08,0x10,0x7f,0x00,0x10,0x10,0x10,0x1f,0x10,0x00,0x80,0xff,0x22,0x18,0x06,0xfc,0x80,0x80,0xff,0x80,0x84,0x84,0x84,0xfc,0x04 -+// 31378 窒 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x37,0x02,0x04,0x0f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x80,0xff,0x11,0x0c,0xfa,0x20,0x10,0xf8,0x88,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 31379 窓 ; -+,0x01,0x00,0x3f,0x20,0x02,0x0d,0x32,0x04,0x0f,0x00,0x01,0x14,0x14,0x24,0x03,0x00,0x00,0x80,0xff,0x21,0x10,0x0c,0x24,0x10,0xf8,0x08,0x00,0x84,0x92,0x12,0xf0,0x00 -+// 31380 窔 ; -+,0x00,0x00,0x3f,0x22,0x0d,0x30,0x1f,0x02,0x04,0x0c,0x32,0x01,0x00,0x03,0x0c,0x70,0x80,0x40,0xff,0x12,0x08,0x84,0xff,0x10,0x08,0x26,0x22,0x40,0xc0,0x30,0x0f,0x02 -+// 31381 窕 ; -+,0x01,0x00,0x3f,0x23,0x0c,0x31,0x01,0x11,0x09,0x05,0x19,0x62,0x02,0x04,0x18,0x60,0x00,0x80,0xff,0x11,0x0c,0x23,0x20,0x24,0x28,0x30,0x2c,0x24,0x20,0x21,0x21,0x1f -+// 31382 窖 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x34,0x07,0x08,0x10,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x12,0x8c,0x83,0xfc,0x80,0x80,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 31383 窗 ; -+,0x00,0x00,0x3f,0x20,0x04,0x09,0x3f,0x08,0x09,0x0a,0x0d,0x08,0x09,0x0a,0x0f,0x08,0x80,0x40,0xff,0x11,0x8c,0x03,0xfc,0x84,0xf4,0x24,0x44,0x84,0x44,0x04,0xfc,0x04 -+// 31384 窘 ; -+,0x01,0x00,0x3f,0x24,0x08,0x3f,0x01,0x3f,0x02,0x0f,0x04,0x1f,0x64,0x04,0x07,0x04,0x00,0x80,0xff,0x12,0x0c,0xfb,0x08,0xff,0x08,0xf8,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 31385 窙 ; -+,0x01,0x00,0x3f,0x24,0x08,0x30,0x07,0x00,0x1f,0x01,0x0f,0x70,0x1f,0x00,0x01,0x00,0x00,0x80,0xff,0x12,0x8c,0x83,0xec,0x90,0xff,0x80,0xf8,0x20,0xff,0x40,0x40,0x80 -+// 31386 窚 ; -+,0x00,0x00,0x3f,0x22,0x04,0x08,0x00,0x1f,0x10,0x1f,0x11,0x11,0x11,0x25,0x22,0x40,0x80,0x40,0xff,0x09,0x26,0x22,0x20,0xff,0x24,0x24,0x18,0x10,0x29,0x49,0x85,0x03 -+// 31387 窛 ; -+,0x01,0x00,0x3f,0x22,0x04,0x08,0x1f,0x00,0x00,0x3f,0x0a,0x0a,0x12,0x12,0x22,0x41,0x00,0x80,0xff,0x11,0x0c,0x04,0x10,0x10,0x7e,0xa4,0x68,0x10,0x29,0xc5,0x01,0xff -+// 31388 窜 ; -+,0x01,0x00,0x3f,0x22,0x04,0x18,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x00,0x00,0x00,0x00,0x80,0xff,0x11,0x88,0x84,0xf8,0x88,0xf8,0x80,0xfc,0x84,0xfc,0x80,0x80,0x80 -+// 31389 窝 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x17,0x04,0x04,0x07,0x00,0x1f,0x10,0x11,0x12,0x10,0x10,0x00,0x80,0xff,0x11,0x0c,0xf2,0x10,0x10,0xf0,0x80,0xfe,0x82,0x42,0x22,0x0a,0x04 -+// 31390 窞 ; -+,0x01,0x00,0x3f,0x25,0x09,0x13,0x04,0x08,0x03,0x0c,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x11,0x0c,0xf4,0x20,0x40,0x00,0x3c,0x04,0x3c,0x04,0x04,0xfc,0x04 -+// 31391 窟 ; -+,0x00,0x3f,0x24,0x08,0x3f,0x08,0x0f,0x08,0x0a,0x0a,0x0b,0x08,0x0c,0x14,0x17,0x24,0x80,0xff,0x09,0x04,0xfe,0x04,0xfc,0x40,0x44,0x44,0xfc,0x42,0x42,0x42,0xfe,0x02 -+// 31392 窠 ; -+,0x01,0x00,0x3f,0x24,0x08,0x3f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x06,0x38,0x00,0x00,0x80,0xff,0x11,0x0c,0xfa,0x88,0xf8,0x88,0xf8,0x80,0xff,0xa0,0x98,0x87,0x82 -+// 31393 窡 ; -+,0x00,0x3f,0x24,0x08,0x3f,0x12,0x0c,0x0a,0x31,0x00,0x3f,0x12,0x0c,0x0c,0x12,0x61,0x80,0xff,0x12,0x08,0x3e,0x24,0x18,0x14,0x22,0x00,0x7e,0x24,0x18,0x18,0x27,0x42 -+// 31394 窢 ; -+,0x01,0x3f,0x20,0x06,0x18,0x00,0x3f,0x00,0x1f,0x11,0x1f,0x00,0x01,0x0e,0x31,0x00,0x00,0xfe,0x22,0x10,0x48,0x40,0xfe,0x40,0x44,0x24,0x28,0x10,0x32,0x4a,0x86,0x02 -+// 31395 窣 ; -+,0x01,0x00,0x3f,0x24,0x09,0x00,0x3f,0x04,0x04,0x0a,0x09,0x7f,0x00,0x00,0x00,0x00,0x00,0x80,0xff,0x21,0x10,0x80,0xfe,0x10,0x10,0x28,0x44,0xff,0x80,0x80,0x80,0x80 -+// 31396 窤 ; -+,0x00,0x3f,0x22,0x0c,0x30,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x0a,0x0c,0x80,0xff,0x12,0x08,0x04,0xf8,0x08,0xf8,0x08,0xf8,0x40,0x4c,0x70,0x42,0x42,0x3e -+// 31397 窥 ; -+,0x01,0x00,0x3f,0x24,0x08,0x10,0x08,0x3e,0x08,0x08,0x7e,0x08,0x14,0x12,0x22,0x41,0x00,0x80,0xff,0x11,0x08,0xfe,0x82,0x92,0x92,0x92,0x92,0xaa,0x29,0x49,0x89,0x07 -+// 31398 窦 ; -+,0x01,0x00,0x3f,0x24,0x08,0x17,0x00,0x1f,0x04,0x0a,0x04,0x3f,0x01,0x02,0x0c,0x30,0x00,0x80,0xff,0x09,0x84,0xfa,0x80,0xfe,0x84,0x88,0x80,0xff,0x20,0x10,0x0c,0x04 -+// 31399 窧 ; -+,0x01,0x00,0x3f,0x24,0x08,0x30,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0x80,0xff,0x12,0x88,0xf6,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x80,0x80 -+// 31400 窨 ; -+,0x00,0x3f,0x22,0x05,0x18,0x0f,0x04,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x80,0xff,0x11,0x08,0x84,0xfc,0x10,0x20,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 31401 窩 ; -+,0x00,0x3f,0x24,0x08,0x17,0x04,0x07,0x04,0x1f,0x10,0x13,0x12,0x13,0x10,0x10,0x10,0x80,0xff,0x11,0x0c,0xf4,0x10,0xd0,0x50,0xfe,0x02,0xf2,0x12,0xf2,0x02,0x0a,0x04 -+// 31402 窪 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x30,0x08,0x08,0x20,0x25,0x08,0x09,0x30,0x10,0x17,0x10,0x00,0x80,0xff,0x11,0x0c,0x23,0xf8,0x20,0x20,0xfe,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 31403 窫 ; -+,0x01,0x00,0x3f,0x23,0x0c,0x37,0x04,0x1f,0x04,0x3f,0x04,0x3f,0x01,0x02,0x0c,0x30,0x00,0x80,0xff,0x32,0x0c,0x03,0x7e,0x12,0x12,0x2a,0x84,0xff,0x40,0x20,0x18,0x07 -+// 31404 窬 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x31,0x06,0x1b,0x60,0x0f,0x08,0x0f,0x08,0x0f,0x0a,0x09,0x00,0x80,0xff,0x12,0x8c,0x63,0x18,0xe7,0x02,0x84,0xa4,0xa4,0xa4,0xa4,0x94,0x08 -+// 31405 窭 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x14,0x02,0x3f,0x02,0x0c,0x01,0x3f,0x02,0x07,0x00,0x3f,0x00,0x80,0xff,0x11,0x0c,0x8a,0x90,0xfe,0xb0,0x8c,0x00,0xff,0x10,0x20,0xe0,0x1e -+// 31406 窮 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x34,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x3f,0x0d,0x71,0x03,0x00,0x80,0xff,0x22,0x18,0x06,0x7c,0x04,0x04,0x7c,0x40,0x7e,0x02,0x02,0x14,0x08 -+// 31407 窯 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x72,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x12,0x11,0x21,0x00,0x00,0x80,0xff,0x12,0x0c,0x23,0xfc,0x80,0xf8,0x80,0xfe,0x00,0x44,0x22,0x22,0x00 -+// 31408 窰 ; -+,0x01,0x00,0x3f,0x24,0x18,0x00,0x1f,0x09,0x14,0x1f,0x20,0x7f,0x00,0x10,0x1f,0x10,0x00,0x80,0xff,0x11,0x0c,0xf8,0x10,0x10,0xa0,0xfc,0x80,0xff,0x80,0x84,0xfc,0x04 -+// 31409 窱 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x32,0x04,0x09,0x1a,0x6a,0x0b,0x0a,0x0a,0x0a,0x0b,0x08,0x00,0x80,0xff,0x12,0x4c,0x43,0xfc,0x48,0x30,0x4f,0x90,0x7e,0x58,0x94,0x52,0x20 -+// 31410 窲 ; -+,0x01,0x00,0x3f,0x20,0x04,0x18,0x64,0x05,0x16,0x0c,0x3f,0x0e,0x15,0x14,0x24,0x04,0x00,0x80,0xff,0x22,0x18,0x06,0x08,0x48,0x28,0x48,0xa8,0xff,0x08,0x08,0x08,0x08 -+// 31411 窳 ; -+,0x01,0x00,0x3f,0x20,0x06,0x18,0x63,0x3c,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x29,0x42,0x00,0x80,0xff,0x02,0x30,0x0c,0x1b,0xe8,0xa8,0xa8,0xa8,0xa8,0xa4,0xac,0x33,0x22 -+// 31412 窴 ; -+,0x01,0x00,0x3f,0x22,0x0d,0x37,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x7f,0x04,0x18,0x00,0x80,0xff,0x22,0x18,0xf6,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x10,0x0c -+// 31413 窵 ; -+,0x00,0x3f,0x24,0x19,0x2f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x24,0x24,0x00,0x00,0x80,0xff,0x12,0x08,0xf4,0x10,0xf0,0x10,0xf0,0x00,0xff,0x04,0x94,0x94,0x24,0x18 -+// 31414 窶 ; -+,0x00,0x3f,0x24,0x08,0x1f,0x08,0x7f,0x00,0x0f,0x08,0x0f,0x01,0x7f,0x06,0x01,0x3f,0x80,0xff,0x11,0x88,0xfc,0x88,0xff,0x80,0xfc,0x84,0xfc,0x00,0xff,0x20,0xc0,0x3c -+// 31415 窷 ; -+,0x01,0x00,0x3f,0x24,0x08,0x10,0x3f,0x12,0x1e,0x12,0x1e,0x12,0x1e,0x72,0x02,0x02,0x00,0x80,0xff,0x11,0x08,0x04,0x2e,0xca,0xaa,0xaa,0xaa,0xea,0x2e,0x48,0x48,0x88 -+// 31416 窸 ; -+,0x01,0x00,0x3f,0x22,0x0c,0x37,0x04,0x3f,0x02,0x0c,0x30,0x04,0x14,0x14,0x23,0x00,0x00,0x80,0xff,0x11,0x6c,0x93,0xa0,0xff,0x90,0x8e,0x04,0x80,0x4a,0x09,0xf9,0x00 -+// 31417 窹 ; -+,0x01,0x00,0x3f,0x24,0x18,0x02,0x12,0x12,0x1e,0x02,0x03,0x1e,0x12,0x12,0x12,0x22,0x00,0x80,0xff,0x12,0x08,0xfe,0x20,0xfc,0x24,0x24,0xff,0x00,0x7c,0x44,0x7c,0x44 -+// 31418 窺 ; -+,0x00,0x3f,0x22,0x0c,0x30,0x08,0x3e,0x08,0x08,0x7f,0x08,0x0c,0x12,0x10,0x21,0x46,0x80,0xfe,0x22,0x18,0x04,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x50,0x51,0x91,0x0f -+// 31419 窻 ; -+,0x00,0x3f,0x24,0x09,0x32,0x0f,0x09,0x0b,0x0d,0x08,0x0f,0x00,0x25,0x24,0x24,0x43,0x80,0xff,0x22,0x18,0x06,0xf8,0x08,0xe8,0x48,0x88,0xf8,0x00,0x02,0x91,0x11,0xf0 -+// 31420 窼 ; -+,0x00,0x3f,0x28,0x14,0x09,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x01,0x06,0x18,0x80,0xff,0x0a,0x94,0x20,0x90,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0xa0,0x9c,0x88 -+// 31421 窽 ; -+,0x00,0x3f,0x24,0x08,0x30,0x1e,0x11,0x0f,0x10,0x1f,0x24,0x7f,0x0a,0x09,0x11,0x20,0x80,0xff,0x12,0x0c,0x42,0x40,0x7e,0x42,0x94,0x90,0x10,0x90,0x28,0x24,0x47,0x82 -+// 31422 窾 ; -+,0x00,0x3f,0x24,0x08,0x04,0x3f,0x04,0x1f,0x00,0x1f,0x00,0x3f,0x04,0x15,0x24,0x0d,0x80,0xff,0x11,0x08,0x24,0xa0,0x3e,0x22,0x54,0x10,0x10,0xa8,0x28,0x44,0x87,0x02 -+// 31423 窿 ; -+,0x00,0x3f,0x24,0x18,0x00,0x3d,0x25,0x2a,0x28,0x27,0x25,0x35,0x2a,0x24,0x20,0x23,0x80,0xff,0x12,0x88,0x80,0xfc,0x48,0x30,0xcf,0x7a,0x20,0xfe,0x20,0xfc,0x20,0xff -+// 31424 竀 ; -+,0x00,0x3f,0x24,0x08,0x10,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x03,0x80,0xff,0x11,0x0c,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x49,0x89,0x07 -+// 31425 竁 ; -+,0x00,0x3f,0x24,0x18,0x0f,0x00,0x1f,0x00,0x3e,0x08,0x3e,0x08,0x7f,0x0a,0x0c,0x08,0x80,0xff,0x12,0x68,0x84,0xf8,0x80,0x84,0x7c,0x20,0xfc,0x20,0xfe,0x20,0x21,0x1f -+// 31426 竂 ; -+,0x00,0x3f,0x24,0x18,0x0f,0x01,0x0a,0x07,0x1c,0x67,0x04,0x07,0x00,0x08,0x32,0x01,0x80,0xff,0x11,0x8c,0xfa,0x40,0x24,0xf8,0x17,0xf2,0x10,0xf0,0x80,0x90,0x88,0x00 -+// 31427 竃 ; -+,0x00,0x3f,0x26,0x18,0x07,0x00,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x80,0xff,0x32,0x8c,0xf0,0x80,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xf8,0x88,0xf9,0x7f -+// 31428 竄 ; -+,0x00,0x3f,0x24,0x09,0x1e,0x08,0x0f,0x08,0x0f,0x0c,0x0a,0x0c,0x0a,0x0a,0x0c,0x08,0x80,0xff,0x12,0x0c,0x7a,0x08,0x78,0x08,0xf8,0xc8,0xa8,0xc8,0xa5,0x85,0xc3,0x81 -+// 31429 竅 ; -+,0x00,0x00,0x3f,0x2c,0x14,0x3f,0x11,0x1f,0x11,0x1f,0x04,0x3f,0x08,0x0f,0x11,0x26,0x80,0x40,0xff,0x09,0x24,0x20,0x7f,0x42,0xa2,0x14,0x14,0x88,0x08,0x14,0x27,0x42 -+// 31430 竆 ; -+,0x01,0x00,0x3f,0x24,0x08,0x34,0x08,0x1f,0x11,0x1f,0x11,0x7f,0x05,0x19,0x65,0x02,0x00,0x80,0xff,0x22,0x18,0x06,0x3c,0x24,0x3c,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00 -+// 31431 竇 ; -+,0x00,0x3f,0x24,0x08,0x17,0x00,0x3f,0x00,0x1f,0x12,0x1f,0x08,0x08,0x09,0x06,0x38,0x80,0xff,0x12,0x88,0xf4,0x80,0xfe,0x00,0xfc,0x44,0xfc,0x88,0x88,0x60,0x1e,0x04 -+// 31432 竈 ; -+,0x00,0x3f,0x24,0x08,0x37,0x00,0x7f,0x11,0x3f,0x21,0x3f,0x21,0x3f,0x01,0x01,0x00,0x80,0xff,0x11,0x8c,0xf4,0x80,0xff,0x44,0x7e,0x42,0x7e,0x42,0x7e,0x41,0x41,0xff -+// 31433 竉 ; -+,0x00,0x3f,0x24,0x08,0x04,0x3f,0x12,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x25,0x22,0x80,0xff,0x11,0x48,0x7c,0x40,0x7c,0x84,0x7c,0x40,0x7c,0x40,0x7c,0x41,0x41,0x3f -+// 31434 竊 ; -+,0x00,0x3f,0x24,0x08,0x03,0x1c,0x15,0x0e,0x3f,0x0c,0x16,0x15,0x24,0x44,0x04,0x04,0x80,0xff,0x09,0x14,0x18,0x10,0x7e,0x4a,0x56,0xff,0x91,0xa5,0xbd,0x85,0x81,0x83 -+// 31435 立 ; -+,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x08,0x04,0x06,0x02,0x02,0x00,0x00,0x7f,0x00,0x00,0x80,0x80,0x00,0xfe,0x10,0x18,0x10,0x20,0x20,0x20,0x40,0x40,0x82,0xff,0x00 -+// 31436 竌 ; -+,0x10,0x08,0x08,0x7f,0x02,0x22,0x22,0x12,0x14,0x14,0x0e,0x70,0x00,0x01,0x02,0x04,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x89,0x09,0x07,0x00 -+// 31437 竍 ; -+,0x10,0x08,0x08,0x7f,0x00,0x02,0x22,0x12,0x12,0x14,0x05,0x0e,0x70,0x20,0x00,0x00,0x10,0x10,0x10,0x90,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31438 竎 ; -+,0x01,0x00,0x3f,0x08,0x04,0x7f,0x00,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x80,0xfe,0x08,0x10,0xff,0x00,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31439 竏 ; -+,0x10,0x08,0x08,0x7f,0x00,0x02,0x23,0x12,0x12,0x14,0x05,0x0e,0x70,0x20,0x00,0x00,0x00,0x0e,0x70,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x90,0x10,0x10,0x10,0x10,0x10 -+// 31440 竐 ; -+,0x10,0x08,0x08,0x7f,0x00,0x22,0x23,0x12,0x14,0x14,0x07,0x78,0x20,0x00,0x01,0x06,0x00,0x7c,0x44,0x44,0x44,0x87,0x00,0xfe,0x42,0x24,0x28,0x10,0x28,0x44,0x87,0x02 -+// 31441 竑 ; -+,0x00,0x20,0x10,0x10,0x7e,0x04,0x06,0x44,0x24,0x28,0x28,0x0f,0x71,0x02,0x04,0x08,0x20,0x30,0x20,0x20,0xff,0x20,0x40,0x50,0x50,0x90,0x90,0x20,0x24,0x42,0xff,0x01 -+// 31442 竒 ; -+,0x01,0x00,0x1f,0x04,0x02,0x7f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x80,0xfc,0x10,0x20,0xff,0x08,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x28,0x10 -+// 31443 竓 ; -+,0x10,0x08,0x08,0x7f,0x00,0x04,0x46,0x24,0x24,0x29,0x08,0x0e,0x70,0x00,0x00,0x00,0x00,0x0e,0x70,0x10,0x10,0x1e,0xf0,0x10,0x1f,0xf0,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 31444 竔 ; -+,0x20,0x10,0x11,0x7e,0x00,0x04,0x47,0x24,0x28,0x28,0x0e,0x70,0x00,0x00,0x01,0x02,0x04,0x34,0xc4,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 31445 竕 ; -+,0x10,0x08,0x08,0x7f,0x00,0x04,0x46,0x25,0x26,0x28,0x00,0x0e,0x70,0x01,0x02,0x04,0x08,0x4c,0x68,0x44,0x44,0x82,0x83,0xfe,0x44,0x44,0x44,0x84,0x84,0x04,0x28,0x10 -+// 31446 竖 ; -+,0x02,0x12,0x12,0x12,0x12,0x12,0x13,0x02,0x00,0x1f,0x04,0x02,0x02,0x00,0x3f,0x00,0x00,0xfe,0x44,0x28,0x30,0x48,0x87,0x82,0x40,0xfe,0x08,0x10,0x10,0x20,0xff,0x00 -+// 31447 竗 ; -+,0x10,0x08,0x08,0x7f,0x00,0x02,0x22,0x15,0x15,0x14,0x03,0x1c,0x60,0x00,0x03,0x1c,0x10,0x10,0x10,0x10,0x94,0x93,0x91,0x10,0x12,0x14,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 31448 竘 ; -+,0x00,0x10,0x08,0x08,0x7e,0x01,0x44,0x24,0x24,0x28,0x08,0x0e,0x70,0x00,0x00,0x00,0x40,0x40,0x7e,0x82,0x82,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x02,0x02,0x14,0x08 -+// 31449 站 ; -+,0x00,0x10,0x08,0x08,0x7f,0x02,0x22,0x12,0x14,0x14,0x08,0x1e,0x60,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 31450 竚 ; -+,0x00,0x10,0x08,0x7e,0x00,0x04,0x46,0x24,0x24,0x28,0x08,0x0e,0x70,0x00,0x00,0x00,0x20,0x10,0xff,0x81,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 31451 竛 ; -+,0x20,0x10,0x10,0x00,0x7e,0x05,0x46,0x24,0x29,0x28,0x0e,0x70,0x00,0x00,0x00,0x00,0x20,0x20,0x50,0x50,0x88,0x44,0x23,0x20,0xfe,0x04,0x08,0x90,0x60,0x30,0x10,0x00 -+// 31452 竜 ; -+,0x01,0x00,0x3f,0x04,0x02,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x80,0xfe,0x10,0x20,0xff,0x00,0xf8,0x88,0xf8,0x88,0x88,0xf8,0x81,0x81,0x7f -+// 31453 竝 ; -+,0x10,0x08,0x08,0x00,0x7e,0x00,0x42,0x22,0x22,0x24,0x04,0x08,0x7f,0x20,0x03,0x00,0x20,0x10,0x10,0x00,0xff,0x00,0x84,0x86,0x44,0x48,0x48,0x48,0x10,0x10,0xff,0x00 -+// 31454 竞 ; -+,0x01,0x00,0x1f,0x02,0x01,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x02,0x02,0x04,0x18,0x60,0x00,0x80,0xfe,0x10,0x20,0xff,0x00,0xf8,0x08,0x08,0xf8,0x20,0x20,0x22,0x22,0x1e -+// 31455 竟 ; -+,0x01,0x00,0x3f,0x02,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x04,0x04,0x08,0x00,0x80,0xfe,0x10,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x20,0x21,0x21,0x1f -+// 31456 章 ; -+,0x00,0x1f,0x04,0x02,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0x80,0xfe,0x10,0x20,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x80,0x80,0x80 -+// 31457 竡 ; -+,0x20,0x11,0x10,0x7e,0x00,0x04,0x46,0x24,0x24,0x28,0x08,0x0e,0x70,0x00,0x00,0x00,0x00,0xff,0x10,0x20,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 31458 竢 ; -+,0x20,0x10,0x10,0x7d,0x00,0x44,0x24,0x29,0x2a,0x29,0x10,0x1c,0x60,0x00,0x01,0x02,0x20,0x48,0x84,0xfe,0x02,0x80,0xfc,0x20,0x20,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 31459 竣 ; -+,0x20,0x10,0x10,0x7d,0x00,0x04,0x46,0x25,0x28,0x28,0x0c,0x71,0x00,0x00,0x01,0x06,0x20,0x48,0x84,0xfe,0x02,0x48,0x84,0x42,0x7c,0x84,0xc8,0x30,0x30,0x4c,0x87,0x02 -+// 31460 竤 ; -+,0x00,0x20,0x10,0x11,0x7d,0x00,0x45,0x24,0x24,0x28,0x08,0x0e,0x71,0x02,0x04,0x00,0x20,0x10,0x10,0xff,0x21,0x20,0xff,0x20,0x50,0x50,0x90,0xa0,0x22,0x41,0xff,0x01 -+// 31461 童 ; -+,0x01,0x00,0x1f,0x04,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x00,0x80,0xfc,0x10,0xff,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xff,0x00 -+// 31462 竦 ; -+,0x20,0x10,0x11,0x7e,0x01,0x05,0x45,0x29,0x28,0x28,0x10,0x1c,0x71,0x02,0x0c,0x00,0x20,0x20,0xfe,0x20,0xfc,0x24,0x24,0xfc,0x20,0x70,0xa8,0xa4,0x24,0x23,0x22,0x20 -+// 31463 竧 ; -+,0x10,0x08,0x08,0x7e,0x00,0x44,0x26,0x24,0x24,0x29,0x0e,0x70,0x00,0x01,0x06,0x00,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x85,0x86,0xfc,0x0c,0x14,0x64,0x84,0x14,0x08 -+// 31464 竨 ; -+,0x00,0x10,0x08,0x08,0x7e,0x00,0x44,0x26,0x24,0x28,0x2a,0x0d,0x70,0x00,0x00,0x00,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 31465 竩 ; -+,0x00,0x10,0x08,0x08,0x7e,0x00,0x22,0x22,0x14,0x14,0x08,0x0f,0x78,0x20,0x03,0x00,0x20,0x10,0x10,0xff,0x81,0x7c,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0x00 -+// 31466 竪 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x24,0x3f,0x00,0x1f,0x04,0x02,0x02,0x00,0x7f,0x00,0x00,0x7e,0x44,0x24,0x28,0x10,0x28,0xc7,0x82,0xfc,0x10,0x10,0x20,0x40,0xff,0x00 -+// 31467 竫 ; -+,0x00,0x10,0x08,0x08,0x7f,0x05,0x44,0x24,0x27,0x28,0x08,0x0d,0x70,0x00,0x00,0x00,0x40,0x40,0x7c,0x88,0x10,0xfe,0x22,0x22,0xff,0x22,0x22,0xfe,0x20,0x20,0xa0,0x40 -+// 31468 竬 ; -+,0x10,0x09,0x08,0x7e,0x00,0x44,0x26,0x24,0x25,0x29,0x09,0x0f,0x71,0x01,0x01,0x01,0x0f,0xf0,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x7f,0x01,0x01,0x05,0x02 -+// 31469 竭 ; -+,0x10,0x08,0x08,0x7e,0x00,0x44,0x24,0x28,0x29,0x2a,0x0d,0x71,0x01,0x00,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7f,0x91,0x11,0x29,0x45,0x01,0xfd,0x01,0x0a,0x04 -+// 31470 竮 ; -+,0x20,0x11,0x11,0x7d,0x01,0x45,0x25,0x25,0x29,0x09,0x0f,0x71,0x02,0x02,0x04,0x08,0x00,0xfe,0x02,0xfe,0x44,0x28,0xff,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x84 -+// 31471 端 ; -+,0x20,0x10,0x10,0x00,0x7e,0x04,0x45,0x24,0x29,0x29,0x09,0x0f,0x71,0x01,0x01,0x01,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x10,0xff,0x29,0x29,0x29,0x29,0x29,0x05,0x02 -+// 31472 竰 ; -+,0x20,0x11,0x11,0x7f,0x01,0x01,0x45,0x25,0x25,0x29,0x09,0x1d,0x62,0x02,0x05,0x08,0x00,0xff,0x00,0x7e,0x52,0x52,0x7e,0x52,0x52,0x7e,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 31473 竱 ; -+,0x20,0x11,0x10,0x7e,0x00,0x04,0x44,0x24,0x24,0x29,0x28,0x0d,0x70,0x00,0x00,0x00,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x12,0xfe,0x05,0xff,0x44,0x24,0x14,0x08 -+// 31474 竲 ; -+,0x00,0x20,0x10,0x11,0x7f,0x05,0x45,0x25,0x24,0x28,0x08,0x0e,0x70,0x00,0x00,0x00,0x82,0x44,0x08,0xff,0x11,0x55,0x55,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 31475 竳 ; -+,0x00,0x13,0x08,0x09,0x7e,0x01,0x46,0x24,0x25,0x29,0x29,0x0e,0x70,0x00,0x07,0x00,0x10,0xd2,0x54,0x49,0x8a,0x04,0xfb,0x00,0xfc,0x04,0xfc,0x00,0x88,0x50,0xff,0x00 -+// 31476 竴 ; -+,0x20,0x10,0x11,0x00,0x7e,0x04,0x44,0x24,0x28,0x28,0x00,0x0e,0x71,0x00,0x00,0x00,0x82,0x44,0xff,0x28,0xfe,0xaa,0xce,0x82,0xfe,0x82,0xfe,0x04,0xff,0x44,0x34,0x08 -+// 31477 竵 ; -+,0x20,0x13,0x10,0x7d,0x05,0x05,0x44,0x29,0x29,0x29,0x21,0x1d,0x71,0x01,0x01,0x01,0x00,0xff,0x04,0xff,0x54,0xdf,0x04,0xfe,0x8a,0x52,0xfa,0x22,0x22,0x22,0x0a,0x04 -+// 31478 競 ; -+,0x10,0x08,0x7f,0x22,0x14,0x7f,0x00,0x3e,0x22,0x22,0x3e,0x14,0x15,0x26,0x24,0x41,0x20,0x10,0x7e,0x44,0x28,0xff,0x00,0x7c,0x44,0x44,0x7c,0x28,0x28,0x49,0x89,0x07 -+// 31479 竷 ; -+,0x08,0x7f,0x22,0x14,0x7f,0x00,0x3f,0x22,0x3e,0x22,0x3e,0x09,0x7f,0x08,0x08,0x0b,0x20,0x3e,0x64,0x98,0x24,0xcb,0x7c,0x48,0x7f,0x48,0x7e,0x64,0x98,0x2c,0xc7,0x02 -+// 31480 竸 ; -+,0x08,0x7f,0x22,0x14,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x14,0x15,0x26,0x24,0x41,0x10,0x7f,0x44,0x28,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x28,0x28,0x49,0x89,0x07 -+// 31481 竹 ; -+,0x10,0x18,0x10,0x1f,0x28,0x28,0x48,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x30,0x22,0x3f,0x48,0x48,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 31482 竺 ; -+,0x08,0x08,0x0f,0x10,0x14,0x22,0x41,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x20,0x20,0xbf,0x40,0x50,0x88,0x08,0x00,0xfc,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 31483 竻 ; -+,0x08,0x08,0x0f,0x14,0x22,0x42,0x00,0x3f,0x00,0x01,0x01,0x02,0x02,0x04,0x18,0x60,0x20,0x20,0xbf,0x48,0x84,0x84,0x80,0xfc,0x84,0x04,0x04,0x04,0x04,0x04,0x28,0x10 -+// 31484 竼 ; -+,0x08,0x08,0x0f,0x14,0x22,0x40,0x07,0x04,0x05,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x20,0x20,0x3f,0x48,0x84,0x00,0xf0,0x10,0x10,0x90,0xd0,0x50,0x10,0x11,0x11,0x0f -+// 31485 竽 ; -+,0x08,0x0f,0x14,0x22,0x42,0x0f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x20,0xbf,0x50,0x48,0x88,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 31486 竾 ; -+,0x10,0x10,0x1f,0x28,0x45,0x00,0x08,0x0b,0x7c,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x20,0x22,0x7f,0x88,0x08,0x80,0x9e,0xe4,0x84,0x84,0x84,0x94,0x89,0x01,0xff,0x00 -+// 31487 竿 ; -+,0x10,0x1f,0x14,0x22,0x42,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xbf,0x28,0x44,0x84,0xfe,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80 -+// 31488 笀 ; -+,0x08,0x08,0x10,0x1f,0x24,0x42,0x02,0x00,0x3f,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x10,0x10,0x20,0xbf,0x48,0x04,0x84,0x40,0xff,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 31489 笁 ; -+,0x08,0x08,0x0f,0x18,0x14,0x22,0x41,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x20,0x20,0xbf,0x50,0x4c,0x84,0x00,0xfe,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x00 -+// 31490 笂 ; -+,0x10,0x10,0x1f,0x28,0x45,0x01,0x1f,0x01,0x05,0x03,0x01,0x02,0x02,0x04,0x08,0x10,0x40,0x40,0x7f,0x50,0x88,0x04,0xf0,0x10,0x10,0x10,0x10,0x91,0x51,0x11,0x11,0x0f -+// 31491 笃 ; -+,0x10,0x1f,0x14,0x22,0x41,0x1f,0x00,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x00,0x40,0x7f,0x48,0x84,0x04,0xf8,0x08,0x08,0x08,0xff,0x01,0xfd,0x01,0x01,0x0a,0x04 -+// 31492 笄 ; -+,0x10,0x1f,0x24,0x42,0x00,0x3f,0x02,0x02,0x02,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0x20,0xbf,0x28,0x44,0x80,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31493 笅 ; -+,0x10,0x1f,0x24,0x42,0x0c,0x03,0x00,0x03,0x3c,0x04,0x02,0x01,0x00,0x03,0x0c,0x70,0x20,0x3f,0x48,0x84,0x08,0x30,0xc0,0x30,0x0e,0x14,0x10,0x20,0xc0,0x30,0x0f,0x02 -+// 31494 笆 ; -+,0x10,0x1f,0x24,0x22,0x42,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x0f,0x00,0x20,0xbf,0x28,0x44,0x84,0xfe,0x42,0x42,0x42,0xfe,0x00,0x01,0x01,0x01,0xff,0x00 -+// 31495 笇 ; -+,0x08,0x08,0x1f,0x14,0x23,0x40,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x7f,0x90,0x08,0x80,0x80,0xff,0x80,0xa0,0x90,0x98,0x88,0x80,0x80,0x80 -+// 31496 笈 ; -+,0x08,0x08,0x1f,0x14,0x22,0x5f,0x02,0x02,0x02,0x05,0x04,0x08,0x10,0x20,0x43,0x1c,0x20,0x20,0x7f,0x48,0x84,0xf8,0x10,0x20,0x3e,0x04,0x88,0x50,0x20,0xd8,0x07,0x02 -+// 31497 笉 ; -+,0x10,0x10,0x1f,0x24,0x22,0x44,0x07,0x09,0x10,0x20,0x00,0x01,0x1e,0x08,0x00,0x00,0x20,0x20,0xbf,0x48,0x84,0x00,0xfc,0x04,0x84,0x84,0x34,0xc4,0x04,0x04,0x28,0x10 -+// 31498 笊 ; -+,0x10,0x10,0x1f,0x28,0x45,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x40,0x40,0x7f,0x90,0x08,0x7c,0xa0,0xa0,0x90,0x90,0x90,0x88,0x88,0x84,0x87,0x82 -+// 31499 笋 ; -+,0x10,0x10,0x1f,0x28,0x44,0x1f,0x01,0x3f,0x01,0x01,0x1f,0x01,0x02,0x02,0x04,0x18,0x20,0x20,0x3f,0x50,0x88,0xfc,0x04,0xff,0x04,0x04,0xfc,0x00,0x00,0x00,0x00,0x00 -+// 31500 笌 ; -+,0x08,0x08,0x0f,0x14,0x22,0x5f,0x08,0x08,0x0f,0x00,0x00,0x01,0x02,0x0c,0x30,0x00,0x20,0x20,0x3f,0x48,0x84,0xfe,0x20,0x20,0xff,0x60,0xa0,0x20,0x20,0x20,0xa0,0x40 -+// 31501 笍 ; -+,0x10,0x10,0x1f,0x24,0x22,0x42,0x00,0x1f,0x10,0x11,0x11,0x12,0x14,0x10,0x10,0x10,0x20,0x20,0xbf,0x50,0x48,0x88,0x80,0xfc,0x84,0x44,0x24,0x14,0x14,0x04,0x14,0x08 -+// 31502 笎 ; -+,0x10,0x10,0x1f,0x24,0x22,0x40,0x0f,0x00,0x00,0x3f,0x02,0x02,0x04,0x04,0x08,0x30,0x20,0x20,0xbf,0x48,0x84,0x00,0xf8,0x00,0x00,0xff,0x20,0x20,0x20,0x21,0x21,0x1f -+// 31503 笏 ; -+,0x10,0x10,0x1f,0x24,0x42,0x05,0x07,0x19,0x61,0x02,0x0c,0x30,0x01,0x06,0x38,0x00,0x40,0x40,0x7f,0x90,0x88,0x00,0xfe,0x12,0x12,0x22,0x22,0x42,0x82,0x02,0x14,0x08 -+// 31504 笐 ; -+,0x10,0x1f,0x28,0x24,0x41,0x00,0x7f,0x00,0x07,0x04,0x04,0x04,0x08,0x08,0x10,0x60,0x20,0x3f,0x48,0x84,0x04,0x80,0xff,0x00,0xe0,0x20,0x20,0x20,0x20,0x22,0x22,0x1e -+// 31505 笑 ; -+,0x10,0x1f,0x28,0x24,0x41,0x00,0x1f,0x00,0x00,0x3f,0x01,0x01,0x02,0x04,0x18,0x60,0x40,0x7f,0x50,0x88,0x04,0x78,0x80,0x80,0x80,0xfe,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 31506 笒 ; -+,0x08,0x08,0x0f,0x14,0x25,0x41,0x02,0x05,0x18,0x60,0x0f,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xbf,0x50,0x08,0x88,0x60,0x18,0x87,0x82,0xf8,0x08,0x10,0x20,0x40,0x80 -+// 31507 笓 ; -+,0x08,0x08,0x1f,0x24,0x45,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x11,0x16,0x18,0x10,0x20,0x20,0x7f,0x90,0x08,0x20,0x20,0x22,0x26,0x28,0x30,0x20,0x20,0x21,0x21,0x1f -+// 31508 笔 ; -+,0x10,0x10,0x1f,0x28,0x45,0x00,0x3f,0x01,0x01,0x3f,0x01,0x01,0x7f,0x01,0x01,0x00,0x20,0x20,0x7f,0x90,0x08,0xfc,0x00,0x00,0xf8,0x00,0x00,0xff,0x00,0x02,0x02,0xfe -+// 31509 笕 ; -+,0x10,0x10,0x1f,0x28,0x44,0x0f,0x08,0x08,0x08,0x08,0x08,0x09,0x01,0x02,0x0c,0x30,0x20,0x20,0xbf,0x48,0x84,0xf8,0x08,0x88,0x88,0x88,0x88,0x48,0x40,0x42,0x42,0x3e -+// 31510 笖 ; -+,0x10,0x10,0x1f,0x24,0x22,0x42,0x10,0x12,0x11,0x11,0x10,0x12,0x14,0x18,0x13,0x0c,0x20,0x20,0xbf,0x48,0x44,0x88,0x08,0x08,0x08,0x90,0x90,0x28,0x44,0x82,0x03,0x01 -+// 31511 笗 ; -+,0x10,0x10,0x1f,0x24,0x42,0x03,0x04,0x1b,0x60,0x03,0x0d,0x70,0x02,0x01,0x00,0x00,0x20,0x20,0xbf,0x48,0x04,0xf8,0x10,0x20,0xc0,0x30,0x0f,0xc2,0x40,0x80,0xc0,0x40 -+// 31512 笘 ; -+,0x10,0x1f,0x28,0x24,0x45,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x40,0x7f,0x50,0x88,0x08,0x80,0xfe,0x80,0x80,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 31513 笙 ; -+,0x10,0x10,0x1f,0x24,0x42,0x09,0x08,0x0f,0x10,0x20,0x0f,0x00,0x00,0x00,0x3f,0x00,0x20,0x20,0xbf,0x48,0x84,0x40,0x40,0xfe,0x40,0x40,0xfc,0x40,0x40,0x40,0xff,0x00 -+// 31514 笚 ; -+,0x10,0x10,0x1f,0x24,0x22,0x5f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x20,0x20,0xbf,0x48,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x80,0x80,0x80,0x80 -+// 31515 笛 ; -+,0x08,0x08,0x1f,0x14,0x22,0x42,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x20,0x20,0xbf,0x48,0x84,0x84,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x04 -+// 31516 笜 ; -+,0x10,0x10,0x1f,0x24,0x42,0x00,0x10,0x10,0x10,0x1f,0x00,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0xbf,0x48,0x04,0x80,0x84,0x84,0x84,0xfc,0x80,0x82,0x82,0x82,0xfe,0x02 -+// 31517 笝 ; -+,0x10,0x10,0x1f,0x14,0x22,0x5f,0x10,0x17,0x12,0x11,0x10,0x11,0x12,0x14,0x1f,0x10,0x20,0x20,0xbf,0x48,0x84,0xfc,0x04,0xf4,0x24,0x44,0x84,0x44,0x24,0x14,0xfc,0x04 -+// 31518 笞 ; -+,0x08,0x08,0x1f,0x28,0x45,0x02,0x04,0x08,0x1f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x20,0x20,0x7f,0x88,0x04,0x10,0x08,0x7c,0x86,0x02,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 31519 笟 ; -+,0x08,0x08,0x1f,0x14,0x22,0x40,0x0f,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x20,0x20,0xbf,0x48,0x84,0x3e,0xd0,0x90,0x90,0x90,0xc8,0xa8,0xa4,0xd4,0x93,0x02 -+// 31520 笠 ; -+,0x08,0x08,0x1f,0x14,0x22,0x42,0x00,0x1f,0x04,0x02,0x02,0x01,0x01,0x00,0x7f,0x00,0x20,0x20,0xbf,0x50,0x88,0x88,0x40,0xfe,0x10,0x18,0x10,0x20,0x20,0x40,0xff,0x00 -+// 31521 笡 ; -+,0x10,0x1f,0x24,0x22,0x40,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x7f,0x00,0x20,0x3f,0x48,0x44,0x80,0xf0,0x10,0x10,0xf0,0x10,0x10,0xf0,0x10,0x10,0xff,0x00 -+// 31522 笢 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x14,0x18,0x10,0x20,0xbf,0x28,0x44,0xfc,0x04,0x04,0xfc,0x40,0x40,0xff,0x20,0x20,0x12,0x0a,0x06 -+// 31523 笣 ; -+,0x10,0x1f,0x14,0x22,0x48,0x0f,0x10,0x2f,0x48,0x08,0x0f,0x08,0x08,0x08,0x07,0x00,0x20,0xbf,0x28,0x44,0x80,0xf8,0x08,0xc8,0x48,0x48,0xc8,0x29,0x11,0x01,0xff,0x00 -+// 31524 笤 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x01,0x01,0x02,0x0c,0x30,0x0f,0x08,0x08,0x08,0x0f,0x08,0x20,0x3f,0x48,0x84,0xfc,0x04,0x04,0x04,0x28,0x10,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 31525 笥 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x20,0x3f,0x50,0x88,0xfc,0x04,0xf4,0x04,0xc4,0x44,0x44,0xc4,0x44,0x04,0x14,0x08 -+// 31526 符 ; -+,0x10,0x1f,0x24,0x22,0x44,0x04,0x0b,0x08,0x19,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0xbf,0x28,0x44,0x88,0x08,0xff,0x08,0x08,0x88,0xc8,0x48,0x08,0x08,0x28,0x10 -+// 31527 笧 ; -+,0x10,0x1f,0x14,0x22,0x00,0x0f,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x09,0x13,0x20,0xbf,0x28,0x44,0x00,0x3c,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x24,0x4c -+// 31528 笨 ; -+,0x10,0x1f,0x28,0x24,0x44,0x00,0x3f,0x02,0x02,0x04,0x08,0x17,0x20,0x40,0x00,0x00,0x20,0x3f,0x48,0x84,0x84,0x82,0xff,0xa0,0x90,0x90,0x8c,0xf7,0x82,0x80,0x80,0x80 -+// 31529 笩 ; -+,0x10,0x10,0x1f,0x24,0x42,0x05,0x04,0x08,0x18,0x2f,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xbf,0x48,0x84,0x50,0x48,0x48,0x7f,0xc0,0x40,0x20,0x22,0x12,0x0a,0x06 -+// 31530 笪 ; -+,0x10,0x1f,0x14,0x22,0x22,0x4f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x7f,0x00,0x20,0xbf,0x28,0x44,0x84,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x00,0xff,0x00 -+// 31531 笫 ; -+,0x08,0x0f,0x14,0x22,0x42,0x00,0x1f,0x10,0x1f,0x01,0x02,0x02,0x04,0x08,0x10,0x00,0x20,0x3f,0x50,0x88,0x88,0xfc,0x80,0x80,0xfe,0x82,0x82,0x82,0x94,0x88,0x80,0x80 -+// 31532 第 ; -+,0x08,0x0f,0x14,0x22,0x4f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x01,0x06,0x38,0x00,0x00,0x20,0xbf,0x50,0x88,0xfc,0x44,0xfc,0x40,0x40,0xfe,0xc2,0x42,0x4a,0x44,0x40,0x40 -+// 31533 笭 ; -+,0x10,0x1f,0x28,0x24,0x44,0x01,0x02,0x0c,0x30,0x07,0x00,0x00,0x02,0x01,0x00,0x00,0x20,0x3f,0x50,0x88,0xc8,0x20,0x98,0x47,0x42,0xf8,0x10,0x20,0x40,0x80,0xc0,0x40 -+// 31534 笮 ; -+,0x10,0x1f,0x28,0x24,0x42,0x02,0x07,0x05,0x09,0x11,0x21,0x01,0x01,0x01,0x01,0x01,0x20,0xbf,0x48,0x84,0x00,0x00,0xff,0x00,0x00,0xfe,0x00,0x00,0xfe,0x00,0x00,0x00 -+// 31535 笯 ; -+,0x10,0x1f,0x28,0x24,0x45,0x08,0x7f,0x09,0x09,0x12,0x1a,0x04,0x0a,0x11,0x60,0x00,0x20,0x3f,0x48,0x84,0x04,0x00,0x7c,0x44,0x44,0x28,0x28,0x10,0x18,0x24,0x47,0x82 -+// 31536 笰 ; -+,0x10,0x1f,0x28,0x24,0x42,0x1f,0x02,0x1f,0x12,0x1f,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x3f,0x48,0x84,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 31537 笱 ; -+,0x10,0x1f,0x28,0x24,0x44,0x0f,0x08,0x10,0x17,0x24,0x04,0x07,0x04,0x00,0x00,0x00,0x20,0xbf,0x28,0x44,0x80,0xfe,0x02,0x02,0xe2,0x22,0x22,0xe2,0x22,0x02,0x14,0x08 -+// 31538 笲 ; -+,0x10,0x1f,0x28,0x25,0x45,0x02,0x04,0x1f,0x04,0x04,0x7f,0x04,0x08,0x08,0x10,0x20,0x40,0x7f,0x50,0x88,0x28,0x10,0x78,0x84,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 31539 笳 ; -+,0x10,0x1f,0x14,0x22,0x44,0x04,0x3f,0x04,0x08,0x08,0x08,0x10,0x10,0x21,0x45,0x02,0x20,0xbf,0x28,0x44,0x84,0x00,0xbe,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x22,0x3e,0x22 -+// 31540 笴 ; -+,0x10,0x1f,0x24,0x22,0x41,0x7f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x20,0xbf,0x48,0x84,0x04,0xff,0x08,0x08,0xc8,0x48,0x48,0xc8,0x48,0x08,0x28,0x10 -+// 31541 笵 ; -+,0x10,0x1f,0x28,0x24,0x51,0x08,0x0a,0x22,0x14,0x14,0x08,0x08,0x30,0x10,0x10,0x00,0x20,0x3f,0x50,0x88,0x08,0xfc,0x84,0x84,0x84,0x84,0x94,0x88,0x81,0x81,0x7f,0x00 -+// 31542 笶 ; -+,0x08,0x0f,0x14,0x12,0x22,0x08,0x0f,0x10,0x20,0x1f,0x00,0x00,0x00,0x01,0x02,0x0c,0x10,0x9f,0x28,0x24,0x44,0x00,0xfe,0x40,0x40,0xff,0x40,0xa0,0x90,0x0c,0x07,0x02 -+// 31543 笷 ; -+,0x10,0x10,0x1f,0x24,0x23,0x5c,0x11,0x11,0x11,0x13,0x15,0x1a,0x12,0x04,0x08,0x10,0x20,0x20,0xbf,0x48,0x04,0x3e,0x22,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20,0x20 -+// 31544 笸 ; -+,0x10,0x1f,0x14,0x22,0x42,0x1f,0x10,0x10,0x13,0x12,0x12,0x13,0x10,0x10,0x1f,0x00,0x20,0x3f,0x28,0x44,0x84,0xfe,0x00,0x00,0xf8,0x08,0x08,0xf8,0x00,0x00,0xff,0x00 -+// 31545 笹 ; -+,0x10,0x1f,0x14,0x22,0x42,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x08,0x08,0x0f,0x00,0x20,0x3f,0x50,0x88,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0xf0,0x00,0x00,0xfe,0x00 -+// 31546 笺 ; -+,0x08,0x0f,0x14,0x22,0x42,0x02,0x3f,0x01,0x01,0x3f,0x00,0x00,0x00,0x03,0x3c,0x00,0x20,0xbf,0x50,0x88,0x20,0x10,0xfe,0x00,0x00,0xff,0x90,0x60,0xa1,0x11,0x0d,0x03 -+// 31547 笻 ; -+,0x10,0x1f,0x14,0x22,0x42,0x00,0x3f,0x04,0x04,0x04,0x04,0x07,0x78,0x20,0x00,0x00,0x20,0x3f,0x50,0x48,0x88,0x3e,0xa2,0x22,0x22,0x22,0x22,0xaa,0x24,0x20,0x20,0x20 -+// 31548 笼 ; -+,0x10,0x1f,0x14,0x22,0x22,0x41,0x01,0x3f,0x02,0x02,0x04,0x04,0x08,0x13,0x60,0x00,0x20,0xbf,0x28,0x44,0x84,0x10,0x08,0xff,0x40,0x48,0x50,0x60,0xc1,0x41,0x3f,0x00 -+// 31549 笽 ; -+,0x08,0x08,0x0f,0x14,0x12,0x22,0x40,0x0f,0x09,0x09,0x09,0x09,0x09,0x3f,0x00,0x00,0x10,0x10,0x9f,0x28,0x44,0x84,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xff,0x00,0x00 -+// 31550 笾 ; -+,0x08,0x08,0x0f,0x12,0x21,0x10,0x09,0x00,0x38,0x08,0x08,0x08,0x09,0x14,0x23,0x00,0x20,0x20,0xbf,0x48,0x44,0x20,0xfc,0x24,0x24,0x44,0x44,0x84,0x28,0x10,0xff,0x00 -+// 31551 笿 ; -+,0x10,0x1f,0x14,0x22,0x44,0x07,0x0a,0x11,0x20,0x03,0x0c,0x77,0x04,0x04,0x07,0x04,0x20,0x3f,0x50,0x88,0x00,0xf8,0x10,0x20,0xc0,0x30,0x0f,0xf2,0x10,0x10,0xf0,0x10 -+// 31552 筀 ; -+,0x10,0x10,0x1f,0x24,0x42,0x00,0x1f,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x20,0x20,0xbf,0x48,0x84,0x80,0xfc,0x80,0xff,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 31553 筁 ; -+,0x08,0x08,0x1f,0x24,0x43,0x02,0x1f,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x1f,0x10,0x40,0x40,0x7f,0x88,0x44,0x40,0xfc,0x44,0x44,0x44,0xfc,0x44,0x44,0x44,0xfc,0x04 -+// 31554 筂 ; -+,0x10,0x10,0x1f,0x24,0x42,0x10,0x0a,0x22,0x15,0x04,0x08,0x38,0x10,0x10,0x10,0x00,0x20,0x20,0xbf,0x48,0x84,0x10,0x9e,0xf2,0x92,0x92,0x9a,0x94,0x81,0x81,0x7f,0x00 -+// 31555 筃 ; -+,0x08,0x08,0x1f,0x24,0x42,0x1f,0x10,0x10,0x17,0x11,0x11,0x12,0x14,0x18,0x1f,0x10,0x20,0x20,0xbf,0x48,0x84,0xfc,0x84,0x84,0xf4,0x44,0x24,0x14,0x14,0x04,0xfc,0x04 -+// 31556 筄 ; -+,0x10,0x1f,0x14,0x22,0x40,0x02,0x12,0x0a,0x0a,0x06,0x0a,0x34,0x04,0x08,0x10,0x20,0x40,0x7f,0x50,0x88,0x00,0x20,0x24,0x28,0x30,0x20,0x30,0x29,0x25,0x21,0x1f,0x00 -+// 31557 筅 ; -+,0x08,0x0f,0x14,0x12,0x24,0x04,0x07,0x08,0x10,0x3f,0x01,0x01,0x02,0x04,0x18,0x60,0x20,0xbf,0x50,0x48,0x84,0x80,0xfc,0x80,0x80,0xff,0x20,0x20,0x20,0x21,0x21,0x1f -+// 31558 筆 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x1f,0x00,0x7f,0x00,0x00,0x00,0x20,0xbf,0x48,0x88,0xfc,0x84,0xff,0x84,0xfc,0x80,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 31559 筇 ; -+,0x08,0x08,0x0f,0x14,0x22,0x00,0x3f,0x04,0x04,0x04,0x04,0x07,0x78,0x20,0x00,0x00,0x20,0x20,0xbf,0x48,0x84,0x3e,0xa2,0x24,0x28,0x24,0x22,0xa1,0x21,0x2a,0x24,0x20 -+// 31560 筈 ; -+,0x10,0x1f,0x24,0x22,0x42,0x00,0x1f,0x00,0x7f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x20,0x3f,0x50,0x88,0x00,0x7c,0x80,0x80,0xff,0x80,0x80,0xf8,0x08,0x08,0xf8,0x08 -+// 31561 等 ; -+,0x10,0x1f,0x14,0x22,0x42,0x1f,0x00,0x7f,0x00,0x00,0x3f,0x02,0x01,0x01,0x00,0x00,0x40,0x7e,0x50,0x88,0x88,0xfc,0x80,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 31562 筊 ; -+,0x08,0x0f,0x14,0x22,0x40,0x3f,0x02,0x04,0x18,0x64,0x02,0x01,0x00,0x03,0x0c,0x70,0x20,0xbe,0x50,0x88,0x40,0xff,0x00,0x20,0x18,0x16,0x20,0x40,0xc0,0x30,0x0f,0x02 -+// 31563 筋 ; -+,0x08,0x0f,0x14,0x22,0x42,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x21,0x25,0x42,0x20,0xbf,0x50,0x88,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x54,0x88 -+// 31564 筌 ; -+,0x10,0x10,0x1f,0x28,0x44,0x01,0x02,0x04,0x1b,0x60,0x00,0x07,0x00,0x00,0x3f,0x00,0x40,0x40,0x7f,0x90,0x88,0x40,0x20,0x18,0xf7,0x82,0x80,0xf8,0x80,0x80,0xfe,0x00 -+// 31565 筍 ; -+,0x10,0x1f,0x28,0x24,0x44,0x0f,0x08,0x17,0x24,0x04,0x07,0x04,0x04,0x07,0x00,0x00,0x20,0x3f,0x50,0x88,0x08,0xfe,0x02,0xe2,0x22,0x22,0xe2,0x22,0x22,0xe2,0x0a,0x04 -+// 31566 筎 ; -+,0x10,0x10,0x1f,0x24,0x22,0x4a,0x08,0x7f,0x11,0x11,0x22,0x1a,0x04,0x0b,0x11,0x60,0x20,0x20,0x3f,0x48,0x84,0x04,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 31567 筏 ; -+,0x10,0x1f,0x14,0x22,0x49,0x08,0x08,0x17,0x30,0x50,0x10,0x10,0x10,0x17,0x10,0x10,0x40,0x7f,0x50,0x88,0x50,0x48,0x7f,0xc0,0x42,0x44,0x28,0x30,0xd1,0x09,0x05,0x03 -+// 31568 筐 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x20,0x2f,0x20,0x20,0x2f,0x20,0x20,0x3f,0x20,0x3f,0x00,0x20,0x3f,0x50,0x88,0xff,0x00,0xfc,0x80,0x80,0xfc,0x80,0x80,0xfe,0x00,0xff,0x00 -+// 31569 筑 ; -+,0x10,0x10,0x1f,0x28,0x45,0x00,0x3e,0x08,0x08,0x08,0x08,0x0e,0x71,0x21,0x02,0x04,0x40,0x40,0x7f,0x90,0x08,0xf8,0x88,0x88,0xc8,0xa8,0xa8,0x88,0x09,0x09,0x07,0x00 -+// 31570 筒 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x10,0x10,0x17,0x10,0x13,0x12,0x12,0x13,0x10,0x10,0x10,0x20,0x3f,0x50,0x88,0xfe,0x02,0x02,0xfa,0x02,0xf2,0x12,0x12,0xf2,0x02,0x0a,0x04 -+// 31571 筓 ; -+,0x08,0x08,0x1f,0x14,0x22,0x42,0x3f,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0x20,0x20,0x3f,0x48,0x84,0x04,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31572 答 ; -+,0x08,0x0f,0x14,0x12,0x22,0x01,0x06,0x18,0x67,0x00,0x07,0x04,0x04,0x04,0x07,0x04,0x20,0xbf,0x48,0x84,0xc4,0x20,0x18,0x07,0xfa,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 31573 筕 ; -+,0x10,0x1f,0x14,0x22,0x48,0x08,0x10,0x24,0x49,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0xbf,0x48,0x84,0x04,0xfe,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 31574 策 ; -+,0x10,0x10,0x1f,0x24,0x42,0x3f,0x00,0x1f,0x10,0x10,0x11,0x12,0x04,0x18,0x60,0x00,0x20,0x20,0x7f,0x88,0x84,0xfe,0x80,0xfc,0x84,0x84,0xd4,0xa8,0x90,0x8c,0x87,0x82 -+// 31575 筗 ; -+,0x08,0x0f,0x14,0x22,0x44,0x04,0x08,0x19,0x29,0x49,0x09,0x08,0x08,0x08,0x08,0x08,0x20,0xbf,0x48,0x44,0x94,0x10,0x10,0xff,0x11,0x11,0xff,0x10,0x10,0x10,0x10,0x10 -+// 31576 筘 ; -+,0x10,0x1f,0x24,0x22,0x45,0x04,0x3f,0x04,0x05,0x0e,0x74,0x24,0x04,0x04,0x14,0x08,0x20,0x3f,0x48,0x84,0x04,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 31577 筙 ; -+,0x10,0x1f,0x24,0x22,0x42,0x1f,0x00,0x1f,0x00,0x3f,0x01,0x06,0x18,0x60,0x00,0x00,0x20,0xbf,0x28,0x44,0x80,0xfc,0x80,0xfc,0x80,0xfe,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 31578 筚 ; -+,0x10,0x1f,0x14,0x22,0x50,0x1f,0x10,0x10,0x13,0x1c,0x10,0x00,0x7f,0x00,0x00,0x00,0x20,0xbf,0x48,0x84,0x40,0x4c,0x70,0x42,0x42,0x3e,0x80,0x80,0xff,0x80,0x80,0x80 -+// 31579 筛 ; -+,0x10,0x1f,0x14,0x22,0x44,0x05,0x24,0x24,0x24,0x24,0x24,0x24,0x08,0x08,0x10,0x20,0x20,0xbf,0x48,0x84,0x00,0xff,0x10,0xfe,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 31580 筜 ; -+,0x08,0x08,0x1f,0x24,0x42,0x0a,0x04,0x02,0x1f,0x00,0x00,0x0f,0x00,0x00,0x1f,0x00,0x20,0x20,0xbf,0x48,0x84,0x88,0x90,0xa0,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 31581 筝 ; -+,0x10,0x1f,0x28,0x44,0x02,0x07,0x18,0x6f,0x00,0x7f,0x00,0x0f,0x00,0x00,0x02,0x01,0x20,0xbf,0x48,0x84,0x00,0xf0,0x20,0xfc,0x84,0xff,0x84,0xfc,0x80,0x80,0x80,0x00 -+// 31582 筞 ; -+,0x10,0x1f,0x14,0x22,0x42,0x00,0x1f,0x10,0x00,0x1f,0x00,0x01,0x02,0x0c,0x30,0x00,0x20,0xbf,0x28,0x44,0x84,0x40,0xff,0x01,0x40,0xff,0xe0,0x50,0x4c,0x47,0x42,0x40 -+// 31583 筟 ; -+,0x10,0x1f,0x14,0x22,0x22,0x5f,0x04,0x02,0x07,0x00,0x00,0x7f,0x00,0x00,0x01,0x00,0x20,0xbf,0x28,0x44,0xfe,0x08,0x88,0x50,0xf8,0x10,0x20,0xff,0x40,0x40,0x40,0x80 -+// 31584 筠 ; -+,0x10,0x1f,0x24,0x22,0x49,0x08,0x7e,0x08,0x09,0x08,0x08,0x0e,0x71,0x20,0x00,0x00,0x20,0xbf,0x50,0x88,0x48,0x40,0x7e,0x82,0x22,0x12,0x02,0x32,0xc2,0x02,0x14,0x08 -+// 31585 筡 ; -+,0x10,0x1f,0x14,0x24,0x41,0x02,0x0c,0x17,0x60,0x1f,0x00,0x08,0x08,0x10,0x22,0x01,0x20,0x3f,0x48,0x84,0x44,0x20,0x18,0xf7,0x82,0xfc,0x80,0x90,0x88,0x86,0x82,0x00 -+// 31586 筢 ; -+,0x10,0x1f,0x14,0x22,0x4a,0x08,0x7f,0x08,0x08,0x0e,0x18,0x68,0x08,0x08,0x28,0x10,0x20,0xbf,0x28,0x44,0x04,0xfe,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x81,0x81,0x7f -+// 31587 筣 ; -+,0x10,0x1f,0x14,0x22,0x40,0x3f,0x04,0x3f,0x0c,0x16,0x15,0x24,0x24,0x44,0x04,0x04,0x20,0xbf,0x28,0x44,0x00,0x02,0x22,0xa2,0x22,0x22,0x22,0xa2,0xa2,0x02,0x0a,0x04 -+// 31588 筤 ; -+,0x10,0x1f,0x14,0x23,0x40,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x0a,0x0c,0x08,0x20,0xbf,0x28,0x44,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x84,0x58,0x20,0x18,0x07,0x02 -+// 31589 筥 ; -+,0x10,0x1f,0x14,0x22,0x41,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x20,0xbf,0x50,0x88,0x08,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x02,0x02,0x02,0xfe,0x02 -+// 31590 筦 ; -+,0x10,0x1f,0x14,0x22,0x42,0x1f,0x10,0x07,0x00,0x00,0x1f,0x02,0x02,0x04,0x18,0x60,0x20,0xbf,0x50,0x88,0x48,0xff,0x01,0xf8,0x00,0x00,0xfe,0x20,0x20,0x21,0x21,0x1f -+// 31591 筧 ; -+,0x10,0x1f,0x14,0x22,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x0a,0x02,0x04,0x18,0x60,0x20,0x3f,0x48,0x84,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x48,0x40,0x42,0x42,0x3e -+// 31592 筨 ; -+,0x08,0x0f,0x14,0x22,0x41,0x02,0x04,0x18,0x6f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x20,0xbf,0x50,0x88,0x48,0x20,0x98,0x47,0xfa,0x10,0x20,0xf8,0x08,0x08,0xf8,0x08 -+// 31593 筩 ; -+,0x10,0x1f,0x14,0x22,0x4f,0x01,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x10,0x10,0x20,0xbf,0x50,0x88,0xf8,0x20,0xc0,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x08 -+// 31594 筪 ; -+,0x10,0x1f,0x14,0x22,0x40,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x10,0x1f,0x00,0x20,0x3f,0x28,0x44,0x00,0xfe,0x00,0xfc,0x44,0xfc,0x44,0xfc,0x40,0x40,0xff,0x00 -+// 31595 筫 ; -+,0x10,0x1f,0x14,0x22,0x4f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x02,0x0c,0x30,0x20,0xbf,0x48,0x84,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x20,0x18,0x06 -+// 31596 筬 ; -+,0x08,0x0f,0x14,0x22,0x42,0x00,0x1f,0x10,0x10,0x1f,0x11,0x11,0x15,0x22,0x20,0x40,0x20,0xbf,0x28,0x44,0xa4,0x20,0xff,0x20,0x24,0x24,0x18,0x10,0x31,0x49,0x85,0x03 -+// 31597 筭 ; -+,0x08,0x0f,0x14,0x22,0x4f,0x00,0x07,0x00,0x1f,0x02,0x02,0x3f,0x04,0x04,0x08,0x10,0x20,0xbf,0x48,0x84,0xfe,0x40,0xfc,0x40,0xff,0x08,0x08,0xff,0x08,0x08,0x08,0x08 -+// 31598 筮 ; -+,0x10,0x1f,0x14,0x22,0x42,0x00,0x3f,0x08,0x08,0x08,0x14,0x12,0x21,0x40,0x7f,0x00,0x20,0xbf,0x28,0x44,0x84,0x00,0xfe,0x90,0x90,0x90,0xa8,0xa4,0xc2,0x80,0xff,0x00 -+// 31599 筯 ; -+,0x08,0x0f,0x14,0x22,0x42,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x13,0x7c,0x20,0x01,0x20,0xbf,0x28,0x44,0x94,0x10,0xfe,0x12,0x12,0x12,0x12,0x22,0xa2,0x42,0x94,0x08 -+// 31600 筰 ; -+,0x10,0x1f,0x14,0x22,0x42,0x04,0x04,0x09,0x1a,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0xbf,0x48,0x84,0x40,0x40,0xff,0x20,0x20,0x3f,0x20,0x3f,0x20,0x20,0x20,0x20 -+// 31601 筱 ; -+,0x10,0x1f,0x14,0x22,0x44,0x04,0x08,0x12,0x33,0x52,0x12,0x12,0x12,0x10,0x11,0x16,0x20,0xbf,0x48,0x84,0x44,0x40,0x7e,0x88,0x48,0x48,0x28,0x10,0x28,0x44,0x87,0x02 -+// 31602 筲 ; -+,0x08,0x0f,0x14,0x12,0x20,0x04,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x08,0x20,0x3f,0x50,0x88,0x40,0x44,0x48,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0x0a,0x04 -+// 31603 筳 ; -+,0x10,0x1f,0x24,0x42,0x00,0x3e,0x04,0x08,0x3e,0x02,0x24,0x14,0x08,0x0e,0x11,0x20,0x20,0x3f,0x48,0x84,0x0e,0xf0,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x00,0xff,0x00 -+// 31604 筴 ; -+,0x10,0x1f,0x14,0x22,0x40,0x3f,0x08,0x08,0x08,0x14,0x23,0x01,0x02,0x04,0x18,0x60,0x20,0xbf,0x48,0x84,0x80,0xfe,0x88,0x88,0x88,0x94,0x62,0x20,0x10,0x0c,0x07,0x02 -+// 31605 筵 ; -+,0x08,0x0f,0x14,0x22,0x42,0x3c,0x08,0x10,0x3e,0x02,0x24,0x18,0x0c,0x13,0x20,0x40,0x20,0xbf,0x28,0x44,0x84,0xfe,0x10,0x90,0x9e,0x90,0x90,0xff,0x00,0x00,0xff,0x00 -+// 31606 筶 ; -+,0x08,0x0f,0x14,0x22,0x42,0x08,0x0f,0x10,0x20,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x20,0xbf,0x28,0x44,0x84,0x80,0xfc,0x80,0x80,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 31607 筷 ; -+,0x10,0x1f,0x14,0x22,0x48,0x09,0x2c,0x2a,0x28,0x0b,0x08,0x08,0x08,0x08,0x09,0x0a,0x20,0x3f,0x50,0x88,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 31608 筸 ; -+,0x10,0x1f,0x24,0x42,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x00,0x00,0x20,0x3f,0x48,0x84,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 31609 筹 ; -+,0x08,0x0f,0x14,0x22,0x5f,0x00,0x0f,0x01,0x3f,0x02,0x0f,0x05,0x08,0x10,0x20,0x00,0x20,0xbf,0x48,0x84,0xfe,0x80,0xfc,0x00,0xff,0x08,0xff,0x08,0x88,0x88,0x28,0x10 -+// 31610 筺 ; -+,0x08,0x0f,0x14,0x22,0x5f,0x10,0x1f,0x10,0x10,0x17,0x10,0x10,0x1f,0x10,0x1f,0x00,0x20,0xbf,0x48,0x84,0xff,0x00,0xfe,0x40,0x40,0xfc,0x48,0x44,0xfe,0x00,0xff,0x00 -+// 31611 筻 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x1f,0x04,0x03,0x02,0x0c,0x70,0x20,0xbf,0x28,0x44,0xff,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x80,0x00,0xe0,0x1f,0x02 -+// 31612 筼 ; -+,0x10,0x1f,0x14,0x22,0x4f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x11,0x02,0x0c,0x70,0x20,0x3f,0x48,0x84,0xf8,0x08,0xf8,0x00,0xfc,0x84,0x84,0x84,0x44,0x20,0x18,0x06 -+// 31613 筽 ; -+,0x10,0x1f,0x14,0x22,0x47,0x04,0x04,0x07,0x00,0x1f,0x00,0x3f,0x00,0x03,0x0c,0x70,0x20,0xbf,0x48,0x84,0xf8,0x08,0x08,0xf8,0x00,0xfe,0x80,0xff,0xa0,0x18,0x07,0x02 -+// 31614 签 ; -+,0x10,0x1f,0x14,0x22,0x41,0x02,0x04,0x08,0x17,0x60,0x09,0x04,0x04,0x00,0x3f,0x00,0x20,0x3f,0x48,0x84,0x84,0x40,0x30,0x0f,0xf2,0x08,0x08,0x90,0x90,0x20,0xfe,0x00 -+// 31615 筿 ; -+,0x10,0x1f,0x14,0x22,0x43,0x06,0x19,0x01,0x0e,0x70,0x0f,0x00,0x10,0x10,0x22,0x01,0x20,0x3f,0x48,0x84,0xf8,0x10,0x20,0xc0,0x38,0x87,0xfa,0x80,0x90,0x8c,0x84,0x00 -+// 31616 简 ; -+,0x10,0x1f,0x14,0x22,0x48,0x04,0x10,0x13,0x12,0x13,0x12,0x12,0x13,0x10,0x10,0x10,0x20,0xbf,0x48,0x84,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x12,0x12,0xf2,0x02,0x0a,0x04 -+// 31617 箁 ; -+,0x10,0x1f,0x14,0x22,0x40,0x1f,0x04,0x02,0x7f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x20,0xbf,0x48,0x04,0x80,0xfe,0x10,0x20,0xff,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 31618 箂 ; -+,0x10,0x1f,0x14,0x22,0x42,0x00,0x3f,0x08,0x08,0x14,0x23,0x02,0x04,0x18,0x60,0x00,0x20,0x3e,0x50,0x88,0x08,0x80,0xfe,0x88,0x88,0xd4,0xa2,0x90,0x8c,0x87,0x82,0x80 -+// 31619 箃 ; -+,0x08,0x0f,0x14,0x22,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x13,0x7d,0x21,0x01,0x01,0x20,0xbf,0x28,0x44,0x00,0x80,0x7f,0x22,0x22,0x14,0x14,0xc8,0x14,0x24,0x43,0x82 -+// 31620 箄 ; -+,0x10,0x1f,0x24,0x25,0x42,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x02,0x3f,0x00,0x00,0x00,0x20,0x3f,0x28,0x44,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0x40,0xff,0x40,0x40,0x40 -+// 31621 箅 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x10,0x1f,0x10,0x1f,0x00,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0xbf,0x28,0x44,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x10,0x10,0x10,0x10 -+// 31622 箆 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x10,0x11,0x12,0x00,0x10,0x10,0x1f,0x10,0x11,0x16,0x18,0x20,0xbf,0x48,0x84,0xfc,0x84,0x44,0x24,0x00,0x20,0x26,0x38,0x20,0x21,0x21,0x1f -+// 31623 箇 ; -+,0x10,0x1f,0x24,0x22,0x42,0x1f,0x10,0x17,0x10,0x13,0x12,0x13,0x12,0x10,0x1f,0x10,0x20,0xbf,0x28,0x44,0x84,0xfe,0x82,0xfa,0x82,0xf2,0x12,0xf2,0x12,0x02,0xfe,0x02 -+// 31624 箈 ; -+,0x08,0x0f,0x14,0x22,0x11,0x08,0x48,0x20,0x25,0x08,0x08,0x08,0x30,0x10,0x10,0x10,0x40,0x7f,0x50,0x88,0x28,0x40,0x48,0x84,0xfe,0x02,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 31625 箉 ; -+,0x10,0x1f,0x14,0x22,0x48,0x08,0x7e,0x08,0x0c,0x19,0x68,0x08,0x08,0x08,0x29,0x12,0x20,0xbf,0x28,0x44,0xfc,0x84,0x84,0xfc,0x20,0xfe,0x22,0x42,0x42,0x82,0x14,0x08 -+// 31626 箊 ; -+,0x10,0x1f,0x24,0x42,0x10,0x08,0x7f,0x10,0x10,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x20,0xbf,0x28,0x44,0x90,0x10,0x28,0x24,0x43,0x92,0x08,0x0c,0x24,0x10,0x18,0x08 -+// 31627 箋 ; -+,0x10,0x1f,0x14,0x22,0x42,0x3f,0x00,0x00,0x3f,0x02,0x3f,0x01,0x00,0x01,0x3e,0x00,0x20,0x3f,0x48,0x84,0xfe,0x00,0x90,0x62,0xb2,0x8e,0xf0,0x00,0x9a,0xe2,0x1a,0x06 -+// 31628 箌 ; -+,0x10,0x1f,0x14,0x22,0x40,0x3f,0x08,0x11,0x3f,0x04,0x04,0x3f,0x04,0x07,0x78,0x20,0x20,0xbf,0x28,0x44,0x00,0xc2,0x12,0x12,0x92,0x92,0x12,0x92,0x12,0x82,0x0a,0x04 -+// 31629 箍 ; -+,0x08,0x0f,0x14,0x22,0x4a,0x09,0x7f,0x09,0x0b,0x0d,0x79,0x29,0x09,0x09,0x29,0x11,0x20,0xbf,0x48,0x84,0x00,0xff,0x10,0x7e,0x52,0x52,0x52,0x5a,0x54,0x10,0x10,0xff -+// 31630 箎 ; -+,0x10,0x1f,0x14,0x22,0x41,0x01,0x1f,0x11,0x17,0x11,0x10,0x10,0x11,0x21,0x22,0x4c,0x20,0xbf,0x28,0x44,0xf8,0x00,0xff,0x02,0xf8,0x00,0xf0,0x00,0xf0,0x11,0x11,0x0f -+// 31631 箏 ; -+,0x08,0x0f,0x12,0x22,0x5f,0x08,0x04,0x0f,0x00,0x3f,0x00,0x0f,0x00,0x00,0x01,0x00,0x20,0xbf,0x48,0x3e,0xc4,0x84,0x48,0xfc,0x44,0xff,0x44,0xfc,0x40,0x40,0x40,0x80 -+// 31632 箐 ; -+,0x10,0x1f,0x24,0x5f,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x20,0x7f,0x88,0xfc,0x80,0xf8,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x28,0x10 -+// 31633 箑 ; -+,0x10,0x1f,0x14,0x22,0x7f,0x00,0x1f,0x00,0x3f,0x00,0x1f,0x08,0x08,0x16,0x21,0x40,0x20,0xbf,0x48,0x84,0xff,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfe,0x80,0xff,0x00 -+// 31634 箒 ; -+,0x10,0x1f,0x24,0x5f,0x00,0x0f,0x00,0x1f,0x00,0x3f,0x20,0x0f,0x08,0x08,0x00,0x00,0x20,0xbf,0x48,0xfc,0x08,0xf8,0x08,0xf8,0x00,0xff,0x82,0xf8,0x88,0x98,0x80,0x80 -+// 31635 箓 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x00,0x1f,0x00,0x7f,0x08,0x04,0x02,0x0c,0x70,0x02,0x01,0x40,0x7e,0x50,0x88,0xf8,0x08,0xf8,0x08,0xff,0x84,0xc8,0xb0,0x88,0x87,0x82,0x00 -+// 31636 箔 ; -+,0x10,0x1f,0x24,0x42,0x10,0x08,0x49,0x21,0x25,0x09,0x09,0x11,0x71,0x11,0x11,0x11,0x20,0xbf,0x28,0x44,0x20,0x40,0xfe,0x02,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02 -+// 31637 箕 ; -+,0x10,0x1f,0x14,0x22,0x45,0x3f,0x04,0x07,0x04,0x07,0x04,0x04,0x7f,0x02,0x0c,0x30,0x20,0xbf,0x48,0x84,0x10,0xfe,0x10,0xf0,0x10,0xf0,0x10,0x10,0xff,0x20,0x18,0x06 -+// 31638 箖 ; -+,0x10,0x1f,0x14,0x22,0x45,0x04,0x7f,0x0c,0x0e,0x15,0x14,0x24,0x45,0x04,0x04,0x04,0x20,0xbf,0x48,0x84,0x14,0x10,0x7f,0x10,0x38,0x54,0x54,0x93,0x12,0x10,0x10,0x10 -+// 31639 算 ; -+,0x20,0x3f,0x24,0x5f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x04,0x7f,0x04,0x08,0x08,0x10,0x20,0x3f,0x48,0xfc,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0xff,0x20,0x20,0x20,0x20 -+// 31640 箘 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x10,0x17,0x10,0x1f,0x11,0x12,0x14,0x18,0x10,0x1f,0x10,0x20,0xbf,0x50,0x88,0xfc,0x04,0xf4,0x84,0xfc,0xc4,0xa4,0x94,0x94,0x84,0xfc,0x04 -+// 31641 箙 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x21,0x25,0x42,0x20,0xbf,0x48,0x84,0x7e,0x42,0x4a,0x44,0x40,0x7f,0x62,0x52,0x4c,0x4c,0x52,0x61 -+// 31642 箚 ; -+,0x10,0x1f,0x28,0x48,0x02,0x05,0x08,0x10,0x2f,0x40,0x1f,0x10,0x10,0x10,0x1f,0x10,0x20,0xbf,0x50,0x88,0x02,0x02,0x92,0x52,0xb2,0x12,0xd2,0x52,0x52,0x42,0xca,0x44 -+// 31643 箛 ; -+,0x10,0x1f,0x24,0x42,0x00,0x7d,0x05,0x09,0x11,0x15,0x19,0x71,0x12,0x12,0x54,0x28,0x40,0x7f,0x50,0x88,0x1e,0xe8,0x28,0x28,0x28,0x24,0x24,0x34,0x2a,0x3a,0x2b,0x02 -+// 31644 箜 ; -+,0x10,0x1f,0x14,0x22,0x40,0x00,0x3f,0x22,0x0c,0x30,0x0f,0x00,0x00,0x00,0x3f,0x00,0x20,0xbf,0x28,0x44,0x84,0x40,0xff,0x11,0x0c,0x03,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 31645 箝 ; -+,0x10,0x1f,0x14,0x22,0x48,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x28,0x10,0x20,0x3f,0x48,0x04,0x84,0x84,0xff,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 31646 箞 ; -+,0x10,0x1f,0x14,0x22,0x44,0x02,0x3f,0x01,0x7f,0x04,0x1f,0x64,0x04,0x04,0x04,0x03,0x20,0x3f,0x48,0x84,0x90,0xa0,0xfe,0x00,0xff,0x10,0xfc,0x13,0x50,0x24,0x04,0xfc -+// 31647 箟 ; -+,0x10,0x1f,0x28,0x24,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0b,0x0c,0x40,0x7f,0x50,0x88,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x26,0xb8,0x21,0xa1,0x21,0x1f -+// 31648 箠 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x00,0x3f,0x08,0x08,0x7f,0x08,0x08,0x3f,0x00,0x00,0x1f,0x20,0x3f,0x50,0x88,0xfc,0x80,0xff,0x88,0x88,0xff,0x88,0x88,0xfe,0x80,0x80,0xfc -+// 31649 管 ; -+,0x10,0x1f,0x28,0x45,0x00,0x3f,0x20,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x40,0x7e,0x90,0x08,0x80,0xff,0x02,0xf0,0x10,0xf0,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 31650 箢 ; -+,0x10,0x1f,0x14,0x23,0x40,0x3f,0x20,0x10,0x1f,0x11,0x29,0x46,0x02,0x04,0x08,0x30,0x20,0xbf,0x28,0x44,0x80,0xff,0x02,0x00,0x7e,0x42,0x42,0x4a,0x44,0x41,0x41,0x3f -+// 31651 箣 ; -+,0x10,0x1f,0x14,0x22,0x42,0x3f,0x02,0x1f,0x12,0x12,0x16,0x0b,0x0a,0x12,0x22,0x02,0x20,0xbf,0x50,0x88,0x02,0xe2,0x12,0xd2,0x52,0x52,0x52,0x12,0x92,0x42,0x0a,0x04 -+// 31652 箤 ; -+,0x10,0x1f,0x14,0x23,0x40,0x3f,0x04,0x04,0x0a,0x09,0x10,0x7f,0x00,0x00,0x00,0x00,0x20,0xbf,0x28,0x44,0x80,0xfe,0x10,0x10,0x28,0x44,0x82,0xff,0x80,0x80,0x80,0x80 -+// 31653 箥 ; -+,0x10,0x1f,0x24,0x42,0x10,0x08,0x21,0x15,0x15,0x09,0x09,0x71,0x12,0x12,0x14,0x0b,0x40,0x7f,0x50,0x88,0x10,0x10,0xff,0x12,0x10,0xfe,0x44,0x28,0x10,0x28,0xc7,0x02 -+// 31654 箦 ; -+,0x10,0x1f,0x28,0x44,0x1f,0x00,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x09,0x06,0x38,0x20,0x3f,0x48,0x84,0xfc,0x80,0xf8,0x80,0xff,0x00,0xf8,0x88,0x88,0x68,0x18,0x06 -+// 31655 箧 ; -+,0x10,0x1f,0x24,0x22,0x5f,0x10,0x17,0x12,0x11,0x1f,0x10,0x11,0x11,0x12,0x1f,0x00,0x20,0xbf,0x48,0x84,0xfe,0x40,0xfc,0x48,0x50,0xfe,0xa0,0x10,0x08,0x04,0xff,0x00 -+// 31656 箨 ; -+,0x10,0x1f,0x14,0x22,0x49,0x08,0x7f,0x08,0x0f,0x18,0x69,0x08,0x0b,0x08,0x28,0x10,0x20,0x3f,0x48,0x84,0xfc,0x48,0x30,0xcc,0x23,0x20,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 31657 箩 ; -+,0x10,0x1f,0x24,0x22,0x5f,0x11,0x11,0x1f,0x11,0x03,0x04,0x1a,0x01,0x00,0x07,0x78,0x20,0xbf,0x48,0x84,0xfe,0x22,0x22,0xfe,0x00,0xfe,0x04,0x08,0x30,0xc0,0x00,0x00 -+// 31658 箪 ; -+,0x10,0x1f,0x14,0x22,0x44,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x7f,0x00,0x00,0x00,0x20,0xbf,0x50,0x88,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 31659 箫 ; -+,0x10,0x1f,0x28,0x44,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x12,0x12,0x14,0x14,0x28,0x40,0x20,0x3f,0x50,0x88,0xfc,0x84,0xff,0x84,0xfc,0x80,0xc4,0xa4,0x94,0x94,0x84,0x84 -+// 31660 箬 ; -+,0x10,0x1f,0x14,0x22,0x44,0x3f,0x04,0x05,0x7f,0x02,0x04,0x0f,0x14,0x64,0x07,0x04,0x20,0xbf,0x48,0x84,0x10,0xfe,0x90,0x10,0xff,0x00,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 31661 箭 ; -+,0x10,0x1f,0x24,0x4a,0x04,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x12,0x11,0x20,0xbf,0x48,0x94,0x20,0xff,0x00,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x8a,0x04 -+// 31662 箮 ; -+,0x10,0x1f,0x14,0x22,0x00,0x3f,0x20,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x20,0xbf,0x48,0x84,0x80,0xff,0x01,0xf8,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff -+// 31663 箯 ; -+,0x10,0x1f,0x28,0x45,0x0b,0x08,0x13,0x32,0x53,0x12,0x13,0x12,0x11,0x10,0x11,0x12,0x40,0x7f,0x90,0x08,0xfe,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x40,0x80,0xe0,0x1e,0x04 -+// 31664 箰 ; -+,0x10,0x1f,0x24,0x47,0x08,0x1f,0x68,0x0f,0x08,0x1f,0x00,0x7f,0x00,0x00,0x02,0x01,0x20,0xbf,0x48,0xfe,0x02,0xf2,0x12,0xf2,0x1a,0xf4,0x20,0xff,0x80,0x80,0x80,0x00 -+// 31665 箱 ; -+,0x10,0x1f,0x14,0x22,0x44,0x04,0x04,0x3f,0x0c,0x0e,0x15,0x15,0x24,0x44,0x04,0x04,0x20,0xbf,0x28,0x44,0x84,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 31666 箲 ; -+,0x10,0x1f,0x28,0x44,0x10,0x09,0x09,0x22,0x14,0x17,0x08,0x08,0x30,0x11,0x12,0x14,0x20,0x3f,0x50,0x88,0x20,0x20,0xfe,0x20,0x20,0xff,0x50,0x90,0x90,0x11,0x11,0x0f -+// 31667 箳 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x10,0x1f,0x12,0x11,0x17,0x11,0x11,0x2f,0x22,0x44,0x08,0x20,0x3f,0x48,0x84,0xfe,0x02,0xfe,0x08,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10 -+// 31668 箴 ; -+,0x10,0x1f,0x24,0x42,0x01,0x1f,0x10,0x1f,0x10,0x17,0x14,0x14,0x17,0x20,0x20,0x40,0x40,0x7f,0x50,0x88,0x24,0xff,0x20,0xa4,0x24,0xa8,0xa8,0x90,0x99,0x25,0x43,0x81 -+// 31669 箵 ; -+,0x10,0x1f,0x24,0x42,0x00,0x08,0x08,0x11,0x0f,0x74,0x07,0x04,0x07,0x04,0x07,0x04,0x20,0xbf,0x48,0x84,0x88,0x86,0xb2,0xc0,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 31670 箶 ; -+,0x10,0x1f,0x24,0x42,0x08,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x22,0x3e,0x00,0x01,0x20,0xbf,0x28,0x44,0x00,0x7c,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x84,0x94,0x08 -+// 31671 箷 ; -+,0x10,0x1f,0x14,0x22,0x48,0x04,0x3f,0x08,0x0e,0x0a,0x0b,0x0a,0x12,0x12,0x2a,0x04,0x20,0xbf,0x48,0x84,0x22,0x7f,0x50,0x92,0x5f,0x72,0xd2,0x5a,0x54,0x41,0x41,0x3f -+// 31672 箸 ; -+,0x10,0x1f,0x24,0x42,0x00,0x0f,0x00,0x7f,0x00,0x03,0x0c,0x77,0x04,0x04,0x07,0x04,0x20,0x3f,0x50,0x88,0x82,0xe4,0x98,0xff,0xc0,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 31673 箹 ; -+,0x10,0x1f,0x14,0x22,0x44,0x08,0x11,0x3e,0x04,0x09,0x3f,0x01,0x2a,0x25,0x25,0x40,0x20,0xbf,0x28,0x44,0xa4,0x20,0x7e,0x42,0x82,0x22,0x12,0x12,0x02,0x02,0x14,0x08 -+// 31674 箺 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x01,0x1f,0x02,0x7f,0x0c,0x17,0x64,0x07,0x04,0x07,0x04,0x20,0xbf,0x50,0x88,0xfe,0x00,0xfc,0x00,0xff,0x18,0xf7,0x12,0xf0,0x10,0xf0,0x10 -+// 31675 箻 ; -+,0x10,0x1f,0x24,0x42,0x08,0x09,0x10,0x27,0x48,0x11,0x30,0x53,0x10,0x17,0x10,0x10,0x20,0xbf,0x50,0x88,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20 -+// 31676 箼 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x10,0x1f,0x10,0x17,0x11,0x13,0x10,0x17,0x20,0x2f,0x40,0x20,0xbf,0x48,0x84,0xfe,0x02,0xfe,0x00,0xfe,0x08,0xfc,0x44,0xfe,0x40,0xff,0x00 -+// 31677 箽 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x20,0xbe,0x50,0x88,0xfc,0x80,0xff,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xff,0x00 -+// 31678 箾 ; -+,0x10,0x1f,0x28,0x44,0x02,0x22,0x12,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x11,0x10,0x20,0x3f,0x48,0x84,0x04,0x22,0x52,0x12,0xd2,0x52,0xd2,0x52,0xc2,0x42,0x4a,0x84 -+// 31679 箿 ; -+,0x08,0x0f,0x14,0x22,0x07,0x04,0x07,0x00,0x1f,0x04,0x07,0x04,0x04,0x3f,0x00,0x00,0x20,0xbf,0x50,0x88,0xf8,0x08,0xf8,0x00,0xff,0x08,0x88,0x78,0x0f,0xf8,0x08,0x08 -+// 31680 節 ; -+,0x10,0x1f,0x14,0x22,0x40,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x14,0x12,0x15,0x19,0x10,0x20,0xbf,0x50,0x88,0x08,0xbe,0xa2,0xa2,0xa2,0xa2,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 31681 篁 ; -+,0x10,0x1f,0x14,0x22,0x4f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x20,0xbf,0x48,0x84,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x80,0xfc,0x80,0xff,0x00 -+// 31682 篂 ; -+,0x10,0x1f,0x24,0x42,0x0f,0x08,0x0f,0x08,0x0f,0x10,0x1f,0x20,0x5f,0x00,0x7f,0x00,0x20,0xbf,0x48,0x84,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xfe,0x80,0xfc,0x80,0xff,0x00 -+// 31683 篃 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x27,0x24,0x47,0x04,0x20,0xbf,0x48,0x84,0xfc,0x84,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 31684 範 ; -+,0x10,0x1f,0x24,0x42,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x20,0xbf,0x48,0x84,0x00,0xbe,0x22,0xa2,0xa2,0xa2,0xaa,0xa4,0x20,0xe1,0x21,0x1f -+// 31685 篅 ; -+,0x10,0x1f,0x28,0x45,0x10,0x10,0x1f,0x00,0x7f,0x01,0x1f,0x12,0x12,0x12,0x12,0x10,0x40,0x7e,0x90,0x08,0x84,0x84,0xfc,0x00,0xff,0x00,0xfc,0x44,0x44,0x44,0x54,0x08 -+// 31686 篆 ; -+,0x10,0x1f,0x28,0x45,0x03,0x04,0x0f,0x00,0x7f,0x07,0x38,0x07,0x38,0x07,0x79,0x00,0x20,0xbf,0x48,0x04,0xf0,0x10,0xe0,0x20,0xff,0x10,0xa0,0x50,0xce,0x44,0x40,0x80 -+// 31687 篇 ; -+,0x10,0x1f,0x14,0x22,0x42,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x17,0x14,0x24,0x24,0x44,0x20,0x3f,0x48,0x84,0x40,0xfc,0x04,0xfc,0x00,0xfe,0x92,0xfe,0x92,0x92,0x9a,0x04 -+// 31688 篈 ; -+,0x10,0x1f,0x14,0x22,0x44,0x04,0x3f,0x04,0x7f,0x04,0x04,0x3f,0x04,0x07,0x7c,0x20,0x20,0xbf,0x28,0x44,0x84,0x04,0xbf,0x04,0xc4,0x24,0x14,0x94,0x04,0x84,0x14,0x08 -+// 31689 築 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x04,0x06,0x39,0x00,0x7f,0x01,0x02,0x0c,0x30,0x00,0x20,0xbf,0x50,0x08,0x78,0x48,0x68,0x89,0x07,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82 -+// 31690 篊 ; -+,0x10,0x1f,0x14,0x22,0x42,0x10,0x48,0x21,0x24,0x08,0x0b,0x10,0x70,0x10,0x11,0x12,0x20,0xbf,0x48,0x84,0x04,0x88,0x88,0xfe,0x88,0x88,0xff,0x00,0x88,0x84,0x03,0x01 -+// 31691 篋 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x10,0x17,0x12,0x12,0x15,0x18,0x10,0x11,0x12,0x1f,0x00,0x20,0xbf,0x48,0x84,0xfe,0x40,0xfc,0x48,0x48,0x54,0xa2,0x90,0x0e,0x04,0xff,0x00 -+// 31692 篌 ; -+,0x10,0x1f,0x24,0x42,0x05,0x04,0x0b,0x10,0x31,0x52,0x17,0x10,0x10,0x10,0x10,0x11,0x20,0xbf,0x48,0x84,0xf8,0x08,0xff,0x80,0xfe,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 31693 篍 ; -+,0x10,0x1f,0x28,0x44,0x07,0x38,0x08,0x7f,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x09,0x20,0x3f,0x48,0x84,0x10,0x10,0x10,0x52,0x54,0x98,0x10,0x28,0x28,0x44,0x83,0x02 -+// 31694 篎 ; -+,0x10,0x1f,0x14,0x22,0x40,0x1e,0x12,0x1e,0x12,0x13,0x1e,0x12,0x12,0x1e,0x00,0x03,0x20,0xbf,0x48,0x84,0x14,0x10,0x54,0x52,0x91,0x10,0x12,0x04,0x08,0x30,0xc0,0x00 -+// 31695 篏 ; -+,0x10,0x1f,0x24,0x22,0x40,0x12,0x12,0x7f,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x01,0x20,0xbf,0x48,0x44,0x84,0x20,0x3f,0xa2,0x54,0x90,0x10,0x28,0x28,0x44,0x87,0x02 -+// 31696 篐 ; -+,0x10,0x1f,0x14,0x22,0x48,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x20,0xbf,0x28,0x44,0x00,0xff,0x10,0x10,0x7e,0x52,0x52,0x5a,0x54,0x10,0x10,0xff -+// 31697 篑 ; -+,0x10,0x1f,0x24,0x42,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x09,0x06,0x38,0x20,0xbf,0x50,0x88,0xf8,0x88,0xf8,0x80,0xff,0x00,0xf8,0x88,0x88,0x48,0x30,0x0c -+// 31698 篒 ; -+,0x10,0x1f,0x24,0x42,0x01,0x02,0x0c,0x17,0x64,0x07,0x04,0x07,0x04,0x04,0x05,0x06,0x20,0xbf,0x50,0x88,0x40,0x20,0x98,0xf7,0x12,0xf0,0x10,0xf4,0x88,0x70,0x98,0x04 -+// 31699 篓 ; -+,0x10,0x1f,0x24,0x42,0x08,0x04,0x3f,0x04,0x18,0x61,0x3f,0x02,0x07,0x00,0x07,0x38,0x20,0x3f,0x48,0x84,0x88,0x90,0xff,0xb0,0x8f,0x02,0xfe,0x10,0x20,0xc0,0x30,0x0c -+// 31700 篔 ; -+,0x10,0x1f,0x24,0x47,0x04,0x07,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x38,0x40,0x7f,0x90,0xf8,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x0e -+// 31701 篕 ; -+,0x10,0x1f,0x28,0x44,0x0f,0x00,0x3f,0x01,0x02,0x07,0x00,0x0f,0x09,0x09,0x3f,0x00,0x20,0x3f,0x48,0x84,0xfc,0x80,0xff,0x00,0x10,0xf8,0x08,0xfc,0x24,0x24,0xff,0x00 -+// 31702 篖 ; -+,0x10,0x1f,0x29,0x44,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x10,0x27,0x24,0x47,0x04,0x20,0x3f,0x50,0x88,0xfe,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xf8,0x08,0xf8,0x08 -+// 31703 篗 ; -+,0x10,0x1f,0x24,0x4a,0x0f,0x18,0x2f,0x48,0x0f,0x08,0x1f,0x04,0x03,0x00,0x07,0x78,0x20,0x3f,0x48,0x84,0xfc,0x80,0xfc,0x80,0xfc,0x80,0xfe,0x08,0x10,0xe0,0x18,0x07 -+// 31704 篘 ; -+,0x10,0x1f,0x28,0x44,0x0f,0x14,0x27,0x01,0x0a,0x0f,0x10,0x28,0x0f,0x01,0x06,0x38,0x20,0xbf,0x48,0x84,0xfc,0x94,0xf4,0x14,0x08,0xfe,0x82,0x92,0xf2,0x02,0x14,0x08 -+// 31705 篙 ; -+,0x08,0x0f,0x14,0x22,0x3f,0x02,0x03,0x00,0x1f,0x10,0x13,0x12,0x13,0x10,0x10,0x10,0x20,0xbf,0x48,0x84,0xff,0x10,0xf0,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x02,0x0a,0x04 -+// 31706 篚 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x11,0x11,0x1f,0x11,0x17,0x11,0x1f,0x11,0x11,0x11,0x1f,0x20,0xbf,0x50,0x88,0xfe,0x20,0x20,0x3e,0x20,0x3c,0x20,0x3e,0x20,0x20,0x20,0xff -+// 31707 篛 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x01,0x1f,0x10,0x1f,0x11,0x09,0x05,0x09,0x11,0x2a,0x04,0x20,0xbf,0x50,0x88,0x7e,0x02,0x3e,0x20,0x3e,0x22,0x12,0x0a,0x12,0x22,0x54,0x08 -+// 31708 篜 ; -+,0x10,0x1f,0x24,0x42,0x0f,0x00,0x3e,0x02,0x04,0x1a,0x61,0x1f,0x02,0x11,0x11,0x20,0x20,0xbf,0x48,0x84,0xf0,0x24,0xc8,0xb0,0x90,0x88,0x06,0xfc,0x40,0x24,0x22,0x02 -+// 31709 篝 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x02,0x1f,0x02,0x7f,0x00,0x0f,0x08,0x7f,0x08,0x08,0x08,0x20,0x3f,0x48,0xa4,0xfe,0x20,0xfe,0x20,0xff,0x80,0xfc,0x84,0xff,0x04,0x14,0x08 -+// 31710 篞 ; -+,0x10,0x1f,0x14,0x22,0x52,0x09,0x09,0x45,0x25,0x29,0x08,0x13,0x30,0x10,0x17,0x10,0x20,0xbf,0x28,0x44,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 31711 篟 ; -+,0x10,0x1f,0x28,0x44,0x07,0x08,0x1b,0x28,0x4f,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0xbf,0x50,0xa8,0xfe,0x20,0xfe,0x20,0xff,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 31712 篠 ; -+,0x10,0x1f,0x28,0x45,0x08,0x08,0x15,0x36,0x54,0x17,0x15,0x14,0x15,0x11,0x12,0x10,0x40,0x7f,0x90,0x48,0x7e,0x84,0x68,0x18,0x67,0x92,0xfe,0x10,0x14,0x13,0x51,0x20 -+// 31713 篡 ; -+,0x10,0x1f,0x24,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x7f,0x05,0x1a,0x67,0x00,0x40,0x7f,0x90,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x28,0x17,0xfa,0x08 -+// 31714 篢 ; -+,0x10,0x1f,0x22,0x5f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x18,0x20,0xbf,0x48,0xfc,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c -+// 31715 篣 ; -+,0x10,0x1f,0x24,0x42,0x0f,0x02,0x01,0x3f,0x20,0x1f,0x02,0x03,0x04,0x04,0x08,0x10,0x40,0x7f,0x50,0x88,0xfc,0x10,0x20,0xff,0x81,0xfe,0x00,0xf8,0x08,0x08,0x50,0x20 -+// 31716 篤 ; -+,0x10,0x1f,0x28,0x44,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x12,0x12,0x20,0x00,0x20,0xbf,0x48,0x84,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x92,0x4a,0x4a,0x14,0x08 -+// 31717 篥 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x01,0x0f,0x09,0x0f,0x00,0x3f,0x02,0x04,0x18,0x60,0x00,0x20,0xbf,0x50,0x88,0xfe,0x20,0xfc,0x24,0xfc,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 31718 篦 ; -+,0x10,0x1f,0x14,0x22,0x5f,0x12,0x11,0x12,0x1f,0x10,0x10,0x1f,0x10,0x11,0x16,0x18,0x20,0xbf,0x50,0x88,0xfc,0x24,0xc4,0x24,0xfc,0x40,0x4e,0x70,0x40,0x41,0x41,0x3f -+// 31719 篧 ; -+,0x10,0x1f,0x28,0x45,0x02,0x3f,0x24,0x0f,0x18,0x6f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x20,0xbf,0x48,0x84,0x00,0xff,0x81,0xfc,0x40,0xfc,0x40,0xfc,0x40,0x40,0xff,0x00 -+// 31720 篨 ; -+,0x10,0x1f,0x28,0x44,0x3e,0x22,0x24,0x29,0x26,0x22,0x23,0x2a,0x25,0x22,0x24,0x20,0x20,0x3f,0x50,0x88,0x30,0x48,0x84,0x7b,0x20,0x20,0xfe,0x20,0x24,0x22,0xa1,0x40 -+// 31721 篩 ; -+,0x10,0x1f,0x24,0x4a,0x11,0x3e,0x22,0x22,0x3e,0x20,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x3f,0x50,0x88,0x00,0xff,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10 -+// 31722 篪 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x10,0x10,0x17,0x14,0x17,0x14,0x15,0x25,0x29,0x4a,0x14,0x20,0x3f,0x48,0x84,0xfe,0x54,0x60,0xff,0x41,0xfc,0x42,0xfe,0x10,0x11,0x11,0x0f -+// 31723 篫 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x04,0x07,0x38,0x01,0x07,0x00,0x0f,0x00,0x3f,0x01,0x00,0x20,0xbf,0x50,0x88,0x7c,0x44,0x65,0x95,0x03,0xf8,0x40,0xfc,0x40,0xff,0x40,0x80 -+// 31724 篬 ; -+,0x10,0x1f,0x24,0x42,0x03,0x0c,0x77,0x04,0x07,0x04,0x0f,0x08,0x17,0x14,0x27,0x44,0x20,0xbf,0x48,0xc4,0x30,0x8c,0xfb,0x08,0xf8,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04 -+// 31725 篭 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x00,0x20,0xbf,0x50,0x88,0xfe,0x20,0xff,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x8a,0x82,0x7e -+// 31726 篮 ; -+,0x10,0x1f,0x24,0x42,0x02,0x12,0x12,0x12,0x02,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0x20,0xbf,0x48,0x84,0x20,0x3f,0x48,0x44,0x84,0x00,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 31727 篯 ; -+,0x10,0x1f,0x14,0x22,0x50,0x1e,0x21,0x3e,0x48,0x09,0x7f,0x08,0x08,0x0a,0x0c,0x0b,0x20,0xbf,0x48,0x84,0x28,0x24,0xfe,0x20,0x3f,0xe0,0x24,0x28,0x11,0x29,0xc5,0x03 -+// 31728 篰 ; -+,0x10,0x1f,0x24,0x42,0x02,0x1f,0x08,0x05,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x20,0xbf,0x48,0x84,0x1f,0xd1,0x92,0x14,0xf2,0x11,0x91,0x91,0x9a,0x94,0x90,0x10 -+// 31729 篱 ; -+,0x10,0x1f,0x29,0x44,0x7f,0x02,0x09,0x0a,0x0f,0x01,0x1f,0x12,0x17,0x10,0x10,0x10,0x20,0xbf,0x50,0x88,0xff,0x20,0xc8,0x28,0xf8,0x00,0xfc,0x44,0xe4,0x24,0x14,0x08 -+// 31730 篲 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x3f,0x00,0x1f,0x00,0x3f,0x00,0x20,0xbf,0x48,0x94,0x7f,0x10,0x7e,0x10,0x7f,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 31731 篳 ; -+,0x10,0x1f,0x22,0x5f,0x10,0x1f,0x10,0x1f,0x04,0x7f,0x04,0x3f,0x00,0x7f,0x00,0x00,0x20,0xbf,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x90,0xff,0x90,0xfe,0x80,0xff,0x80,0x80 -+// 31732 篴 ; -+,0x10,0x1f,0x14,0x22,0x43,0x10,0x08,0x03,0x38,0x09,0x08,0x0b,0x08,0x0c,0x33,0x00,0x20,0xbf,0x48,0x84,0xfe,0x20,0xc4,0x28,0x50,0xb8,0x54,0x92,0x50,0x20,0xff,0x00 -+// 31733 篵 ; -+,0x10,0x1f,0x24,0x42,0x10,0x10,0x20,0x49,0x0a,0x11,0x31,0x51,0x11,0x12,0x14,0x10,0x20,0xbf,0x48,0x84,0x00,0x84,0x84,0x4a,0x31,0x10,0x1e,0x10,0x10,0xd0,0x3f,0x00 -+// 31734 篶 ; -+,0x10,0x1f,0x24,0x5f,0x00,0x08,0x08,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x15,0x22,0x00,0x20,0xbf,0x48,0xfe,0x80,0xfc,0x80,0xff,0x00,0xfc,0x00,0xfe,0x02,0x42,0xaa,0x04 -+// 31735 篷 ; -+,0x08,0x1f,0x24,0x40,0x21,0x12,0x00,0x7b,0x0d,0x08,0x09,0x08,0x0b,0x08,0x14,0x23,0x20,0x7e,0x90,0xfc,0x88,0x70,0x8c,0x23,0xfc,0x20,0xfc,0x20,0xfe,0x20,0x20,0xff -+// 31736 篸 ; -+,0x10,0x1f,0x24,0x42,0x07,0x08,0x12,0x3f,0x02,0x0c,0x73,0x0c,0x07,0x00,0x0f,0x00,0x40,0x7e,0x90,0x48,0xe8,0x12,0xbf,0x41,0x30,0x88,0x27,0xc2,0x10,0xe0,0x00,0x00 -+// 31737 篹 ; -+,0x10,0x1f,0x12,0x2f,0x48,0x0f,0x08,0x0f,0x09,0x7f,0x04,0x1b,0x62,0x02,0x02,0x01,0x20,0xbf,0x48,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x10,0xe8,0x27,0xa2,0x44,0xfc -+// 31738 篺 ; -+,0x10,0x1f,0x14,0x22,0x49,0x08,0x3e,0x08,0x0e,0x18,0x68,0x08,0x09,0x08,0x28,0x10,0x20,0xbf,0x48,0xa4,0x20,0x40,0xfe,0x92,0xfe,0xa2,0xfe,0x50,0xff,0x10,0x10,0x10 -+// 31739 篻 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x02,0x1f,0x12,0x1f,0x00,0x0f,0x00,0x7f,0x08,0x08,0x11,0x20,0x3f,0x48,0x84,0xfe,0x40,0xfc,0x44,0xfc,0x00,0xf8,0x00,0xff,0x90,0x88,0x88 -+// 31740 篼 ; -+,0x10,0x1f,0x24,0x42,0x3b,0x22,0x23,0x22,0x23,0x2c,0x32,0x02,0x02,0x04,0x18,0x60,0x20,0xbf,0x48,0x84,0xee,0x22,0xe2,0x22,0xe2,0x0e,0x22,0x20,0x20,0x21,0x21,0x1f -+// 31741 篽 ; -+,0x10,0x1f,0x24,0x42,0x0a,0x13,0x24,0x48,0x17,0x30,0x52,0x12,0x12,0x17,0x10,0x10,0x20,0xbf,0x48,0x84,0x00,0xef,0x89,0x89,0xe9,0x89,0xe9,0x8d,0xea,0x08,0x08,0x08 -+// 31742 篾 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x12,0x1f,0x00,0x00,0x1f,0x18,0x14,0x12,0x20,0x23,0x4c,0x20,0xbf,0x50,0x88,0xfe,0x22,0xfe,0xa0,0x90,0xfe,0x44,0x28,0x31,0xd1,0x0d,0x03 -+// 31743 篿 ; -+,0x10,0x1f,0x24,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x7f,0x02,0x01,0x00,0x00,0x40,0x7e,0x90,0xff,0x88,0xf8,0x88,0xf8,0x84,0xfe,0x12,0xff,0x10,0x10,0x50,0x20 -+// 31744 簀 ; -+,0x10,0x1f,0x24,0x7f,0x00,0x3f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x18,0x20,0xbf,0xc8,0xff,0x80,0xfe,0x80,0xff,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c -+// 31745 簁 ; -+,0x10,0x1f,0x24,0x42,0x04,0x18,0x62,0x04,0x0b,0x18,0x69,0x09,0x09,0x0a,0x0a,0x0c,0x20,0x3f,0x48,0x84,0x20,0xbe,0xa0,0xa0,0xff,0x20,0x20,0x3e,0xa0,0x60,0x1f,0x00 -+// 31746 簂 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x10,0x1f,0x10,0x17,0x14,0x17,0x10,0x1f,0x10,0x1f,0x10,0x20,0xbf,0x48,0x04,0xfe,0x42,0xfa,0x42,0xaa,0xb2,0xaa,0x5a,0x8a,0x02,0xfe,0x02 -+// 31747 簃 ; -+,0x10,0x1f,0x28,0x44,0x3e,0x08,0x7f,0x1c,0x1a,0x29,0x28,0x49,0x08,0x08,0x08,0x0b,0x20,0x3f,0x48,0xa4,0x3e,0x44,0xa8,0x30,0x50,0xbf,0x42,0xb4,0x08,0x10,0x60,0x80 -+// 31748 簄 ; -+,0x10,0x1f,0x24,0x4f,0x08,0x0f,0x0a,0x0b,0x08,0x0f,0x0c,0x17,0x14,0x24,0x43,0x00,0x10,0x9f,0x28,0xfe,0x02,0xfe,0x08,0xf8,0x00,0xfe,0x22,0xfe,0x01,0x01,0xff,0x00 -+// 31749 簅 ; -+,0x08,0x0f,0x14,0x22,0x1f,0x02,0x01,0x1f,0x14,0x17,0x18,0x13,0x10,0x20,0x2f,0x40,0x20,0xbf,0x50,0x88,0xff,0x08,0x10,0xff,0x40,0xfe,0x40,0xfc,0x40,0x40,0xff,0x00 -+// 31750 簆 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x20,0x1f,0x00,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x22,0x41,0x20,0xbf,0x48,0x84,0xff,0x02,0x20,0x3e,0x44,0xa8,0x10,0x28,0xc4,0x01,0x01,0xff -+// 31751 簇 ; -+,0x10,0x1f,0x24,0x42,0x10,0x08,0x7e,0x09,0x0e,0x0a,0x12,0x12,0x12,0x22,0x2a,0x44,0x20,0x3f,0x50,0x08,0x40,0x7f,0x80,0x40,0x7e,0x90,0xff,0x10,0x28,0x24,0x47,0x82 -+// 31752 簈 ; -+,0x10,0x1f,0x24,0x42,0x0f,0x08,0x0f,0x09,0x0f,0x09,0x09,0x17,0x11,0x22,0x42,0x04,0x20,0xbe,0x50,0x88,0xfe,0x02,0xfe,0x08,0xbe,0x08,0x08,0xbf,0x08,0x08,0x08,0x08 -+// 31753 簉 ; -+,0x10,0x1f,0x28,0x44,0x11,0x09,0x0a,0x07,0x78,0x09,0x09,0x09,0x09,0x14,0x23,0x00,0x20,0xbe,0x50,0x88,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0x04,0xfc,0x00,0xff,0x00 -+// 31754 簊 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x08,0x37,0x00,0x3f,0x00,0x20,0xbf,0x48,0x94,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xff,0x84,0xf3,0x80,0xfe,0x00 -+// 31755 簋 ; -+,0x10,0x1f,0x24,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0b,0x0c,0x0f,0x09,0x09,0x3f,0x00,0x20,0xbf,0x48,0xf8,0x08,0xf8,0x08,0xfc,0x48,0x30,0x0f,0xfc,0x24,0x24,0xff,0x00 -+// 31756 簌 ; -+,0x10,0x1f,0x28,0x45,0x05,0x7f,0x04,0x3f,0x25,0x25,0x3f,0x0e,0x15,0x14,0x24,0x05,0x20,0x3f,0x48,0x84,0x24,0xa0,0x3f,0x52,0x94,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 31757 簍 ; -+,0x10,0x1f,0x24,0x4f,0x08,0x3f,0x08,0x0f,0x00,0x1f,0x10,0x7f,0x02,0x07,0x00,0x1f,0x40,0x7f,0x90,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfc,0x84,0xff,0x10,0x20,0xe0,0x1c -+// 31758 簎 ; -+,0x10,0x1f,0x24,0x42,0x08,0x09,0x7e,0x08,0x0b,0x0c,0x78,0x28,0x08,0x08,0x28,0x10,0x20,0x3f,0x48,0x84,0x48,0xfe,0x48,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 31759 簏 ; -+,0x10,0x1f,0x24,0x42,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x14,0x17,0x24,0x25,0x46,0x20,0xbf,0x48,0x84,0x40,0xff,0x20,0xfe,0x22,0xfe,0x20,0x26,0xb8,0x21,0xa1,0x1f -+// 31760 簐 ; -+,0x10,0x1f,0x24,0x42,0x04,0x3f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x20,0xbf,0x48,0x84,0x20,0xbf,0x21,0xca,0x88,0x88,0x88,0x94,0x14,0xa2,0x43,0x82 -+// 31761 簑 ; -+,0x10,0x1f,0x29,0x44,0x7f,0x00,0x0f,0x08,0x7f,0x08,0x0f,0x02,0x0c,0x74,0x05,0x06,0x20,0x3e,0x50,0x88,0xff,0x00,0xf8,0x08,0xff,0x08,0xf8,0x44,0x28,0x10,0x8e,0x04 -+// 31762 簒 ; -+,0x10,0x1f,0x24,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x7f,0x0a,0x14,0x69,0x03,0x40,0x7e,0x90,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x84,0x93,0x0c,0xf8 -+// 31763 簓 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x24,0x2e,0x24,0x3f,0x20,0x2e,0x2a,0x2e,0x20,0x22,0x41,0x20,0x3f,0x48,0x84,0x80,0x86,0x88,0xb0,0x83,0x84,0x88,0xb1,0x83,0x84,0x98,0x60 -+// 31764 簔 ; -+,0x10,0x1f,0x25,0x42,0x7f,0x00,0x3f,0x04,0x7f,0x04,0x3f,0x02,0x0c,0x74,0x05,0x06,0x20,0xbe,0x50,0x88,0xff,0x00,0xfe,0x10,0xff,0x10,0xfe,0x22,0x14,0x08,0x87,0x02 -+// 31765 簕 ; -+,0x10,0x1f,0x24,0x42,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x05,0x40,0x7f,0x90,0x08,0x10,0xd0,0x7e,0x12,0x12,0x92,0x92,0xa2,0x22,0xc2,0x94,0x08 -+// 31766 簖 ; -+,0x10,0x1f,0x24,0x42,0x02,0x2a,0x27,0x3f,0x26,0x2b,0x32,0x22,0x22,0x22,0x3f,0x01,0x20,0xbf,0x48,0x84,0x0e,0xb0,0x20,0xbf,0x24,0x24,0xa4,0x44,0x44,0x84,0x84,0x04 -+// 31767 簗 ; -+,0x10,0x1f,0x24,0x52,0x08,0x22,0x14,0x05,0x18,0x08,0x04,0x7f,0x02,0x0c,0x70,0x00,0x20,0xbf,0x48,0x84,0xfc,0x24,0xa6,0x45,0x94,0x88,0x90,0xff,0xa0,0x98,0x87,0x82 -+// 31768 簘 ; -+,0x10,0x1f,0x24,0x5f,0x00,0x3f,0x00,0x1f,0x04,0x12,0x1f,0x11,0x12,0x24,0x28,0x40,0x40,0x7f,0x90,0xfc,0x84,0xff,0x84,0xfc,0x90,0xa4,0xfc,0xa4,0x94,0x94,0x84,0x84 -+// 31769 簙 ; -+,0x08,0x1f,0x14,0x22,0x53,0x10,0x7d,0x11,0x11,0x11,0x11,0x11,0x17,0x10,0x10,0x00,0x20,0x3f,0x48,0xa4,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xff,0x88,0x48,0x18 -+// 31770 簚 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x12,0x1f,0x00,0x7f,0x04,0x3f,0x24,0x26,0x25,0x04,0x04,0x20,0x3f,0x50,0x88,0xfc,0x24,0xfc,0x24,0xff,0x20,0xa4,0x98,0x90,0x29,0x45,0x83 -+// 31771 簛 ; -+,0x10,0x1f,0x24,0x42,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x00,0x12,0x21,0x41,0x20,0xbf,0x48,0x84,0x06,0xb8,0x20,0x20,0x3f,0x24,0x24,0xa4,0x44,0x44,0x84,0x04 -+// 31772 簜 ; -+,0x10,0x1f,0x24,0x53,0x09,0x09,0x45,0x25,0x28,0x0b,0x11,0x73,0x14,0x11,0x32,0x10,0x20,0xbf,0x48,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfe,0x92,0x22,0x54,0x88 -+// 31773 簝 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x12,0x0c,0x1f,0x64,0x07,0x04,0x07,0x00,0x08,0x32,0x01,0x20,0xbf,0x48,0x84,0xfe,0x24,0x18,0xf7,0x12,0xf0,0x10,0xf0,0x80,0x90,0x8c,0x00 -+// 31774 簞 ; -+,0x10,0x1f,0x24,0x5f,0x11,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x7f,0x00,0x00,0x20,0xbf,0x48,0x7c,0x44,0x7c,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0x80 -+// 31775 簟 ; -+,0x10,0x1f,0x24,0x7f,0x02,0x3f,0x22,0x3f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x20,0x3f,0x48,0xff,0x20,0xfe,0x22,0xfe,0x08,0xf8,0x08,0xf8,0x80,0xff,0x80,0x80 -+// 31776 簠 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x1f,0x12,0x12,0x7f,0x00,0x20,0x3f,0x48,0x94,0xfe,0x88,0xf8,0x88,0xf8,0x88,0x88,0xfc,0x24,0x24,0xff,0x00 -+// 31777 簡 ; -+,0x10,0x1f,0x24,0x5f,0x11,0x1f,0x11,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x10,0x20,0xbf,0x48,0xbe,0x22,0x3e,0x22,0x3e,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x0a,0x04 -+// 31778 簢 ; -+,0x10,0x1f,0x24,0x5f,0x11,0x1f,0x11,0x1f,0x10,0x17,0x11,0x10,0x13,0x1c,0x10,0x10,0x20,0x3f,0x48,0xbe,0x22,0x3e,0x22,0x3e,0x82,0xf2,0x22,0xc2,0x42,0x32,0x0a,0x04 -+// 31779 簣 ; -+,0x10,0x1f,0x24,0x5f,0x10,0x1f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x18,0x40,0x7e,0x90,0xfc,0x84,0xfc,0x80,0xff,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c -+// 31780 簤 ; -+,0x10,0x1f,0x24,0x5f,0x12,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x18,0x20,0xbf,0x48,0xfc,0x24,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c -+// 31781 簥 ; -+,0x10,0x1f,0x24,0x4f,0x00,0x3f,0x06,0x1f,0x64,0x1f,0x10,0x13,0x12,0x13,0x10,0x10,0x20,0x37,0x48,0xf8,0x80,0xff,0x10,0xfc,0x13,0xfc,0x04,0xe4,0x24,0xe4,0x14,0x08 -+// 31782 簦 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x12,0x0c,0x0f,0x10,0x6f,0x08,0x0f,0x04,0x02,0x7f,0x00,0x20,0xbf,0x48,0x84,0x48,0x30,0x10,0xf8,0x07,0xfa,0x08,0xf8,0x10,0x20,0xff,0x00 -+// 31783 簧 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x18,0x20,0xbf,0x48,0x94,0xfe,0x10,0xff,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x20,0x18,0x08 -+// 31784 簨 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x11,0x1f,0x10,0x0f,0x04,0x3f,0x04,0x7f,0x02,0x04,0x18,0x20,0xbf,0x48,0x84,0x7c,0x44,0x7c,0x42,0x3e,0x10,0xfe,0x10,0xff,0x20,0x18,0x08 -+// 31785 簩 ; -+,0x10,0x1f,0x24,0x42,0x14,0x15,0x0a,0x11,0x3f,0x20,0x0f,0x01,0x02,0x02,0x04,0x08,0x20,0x3f,0x48,0x14,0x92,0x54,0xa8,0x44,0xff,0x81,0xf8,0x08,0x08,0x08,0x50,0x20 -+// 31786 簪 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x24,0x3f,0x0a,0x13,0x62,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x20,0xbf,0x48,0x84,0x7e,0x90,0xff,0x28,0x49,0x87,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 31787 簫 ; -+,0x10,0x1f,0x24,0x4f,0x00,0x3f,0x00,0x0f,0x12,0x1e,0x10,0x1f,0x10,0x1e,0x12,0x22,0x40,0x7f,0x90,0xf8,0x88,0xff,0x88,0xf8,0xa4,0xbc,0x84,0xfc,0x84,0xbc,0xa4,0xc4 -+// 31788 簬 ; -+,0x10,0x1f,0x28,0x44,0x3e,0x22,0x22,0x3e,0x08,0x2e,0x2b,0x28,0x28,0x2e,0x70,0x00,0x20,0x3f,0x48,0xa4,0x3e,0x44,0xa8,0x10,0x28,0xc7,0x02,0x7c,0x44,0x44,0x7c,0x44 -+// 31789 簭 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x08,0x14,0x22,0x7f,0x03,0x0c,0x77,0x04,0x04,0x07,0x04,0x20,0x3f,0x48,0x84,0xfe,0x88,0x94,0xa2,0xff,0x30,0x0c,0xfb,0x08,0x08,0xf8,0x08 -+// 31790 簮 ; -+,0x10,0x1f,0x24,0x4a,0x3f,0x08,0x7f,0x14,0x22,0x40,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x20,0x3f,0x48,0x94,0x7e,0x10,0xff,0x28,0x44,0x83,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 31791 簯 ; -+,0x10,0x1f,0x24,0x42,0x0a,0x08,0x7f,0x18,0x1c,0x2a,0x2a,0x48,0x0b,0x08,0x08,0x09,0x20,0x3f,0x48,0x84,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0xff,0x44,0x82,0x01 -+// 31792 簰 ; -+,0x10,0x1f,0x24,0x42,0x00,0x14,0x14,0x14,0x1e,0x10,0x1f,0x14,0x25,0x24,0x24,0x44,0x20,0x3f,0x48,0xa4,0x40,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x50,0xff,0x10,0x10,0x10 -+// 31793 簱 ; -+,0x10,0x1f,0x24,0x52,0x08,0x7e,0x11,0x10,0x1e,0x12,0x12,0x12,0x13,0x22,0x2a,0x45,0x20,0xbf,0x48,0x84,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0xff,0x44,0x82,0x01 -+// 31794 簲 ; -+,0x10,0x1f,0x24,0x42,0x01,0x1e,0x12,0x1e,0x12,0x12,0x1e,0x12,0x13,0x22,0x2a,0x44,0x20,0xbf,0x48,0xa4,0x40,0xfe,0x92,0xfe,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10 -+// 31795 簳 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x3f,0x04,0x04,0x04,0x20,0xbf,0x48,0x94,0x90,0x28,0x44,0xbb,0x10,0x10,0x7e,0x10,0xd0,0x10,0x10,0x10 -+// 31796 簴 ; -+,0x10,0x1f,0x24,0x42,0x00,0x1f,0x10,0x17,0x10,0x10,0x11,0x19,0x25,0x2f,0x42,0x0c,0x20,0x7f,0x88,0xfc,0x80,0xff,0x81,0xfe,0x82,0x7e,0x10,0x12,0x14,0xff,0x08,0x06 -+// 31797 簵 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x1f,0x15,0x1f,0x15,0x1f,0x04,0x3f,0x04,0x04,0x04,0x20,0xbf,0x48,0xa4,0x3e,0x42,0xa4,0x18,0x24,0xc3,0x00,0x7e,0x42,0x42,0x7e,0x42 -+// 31798 簶 ; -+,0x10,0x1f,0x28,0x45,0x11,0x08,0x7e,0x04,0x0b,0x1d,0x2a,0x48,0x09,0x0a,0x08,0x08,0x40,0x7e,0xa0,0x10,0xfc,0x04,0xfc,0x04,0xff,0x22,0xb4,0xa8,0x27,0x22,0xa0,0x40 -+// 31799 簷 ; -+,0x08,0x0f,0x15,0x27,0x18,0x6f,0x09,0x0a,0x0f,0x08,0x0b,0x10,0x13,0x12,0x23,0x42,0x20,0xbf,0x48,0xf4,0x20,0xff,0x48,0x24,0xff,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x04 -+// 31800 簸 ; -+,0x10,0x1f,0x24,0x52,0x12,0x3f,0x12,0x1e,0x12,0x1e,0x12,0x7f,0x04,0x12,0x21,0x42,0x20,0xbf,0x48,0x84,0x08,0x7f,0x4a,0x48,0x7e,0x62,0x54,0x54,0x88,0x94,0x27,0xc2 -+// 31801 簹 ; -+,0x10,0x1f,0x24,0x4a,0x04,0x3f,0x20,0x07,0x04,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x20,0x3f,0xd0,0x88,0x90,0xff,0x02,0xf0,0x10,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 31802 簺 ; -+,0x10,0x1f,0x29,0x04,0x3f,0x22,0x1f,0x02,0x1f,0x02,0x7f,0x08,0x37,0x00,0x1f,0x00,0x20,0xbf,0x48,0x84,0xff,0x22,0xfc,0x20,0xfc,0x20,0xff,0x88,0xf6,0x80,0xfc,0x00 -+// 31803 簻 ; -+,0x10,0x1f,0x24,0x43,0x11,0x09,0x09,0x03,0x7a,0x0a,0x0a,0x0a,0x0a,0x14,0x63,0x00,0x20,0xbf,0x48,0xfc,0x08,0xe8,0x28,0xfe,0x02,0xf2,0x92,0xf2,0x06,0x00,0xff,0x00 -+// 31804 簼 ; -+,0x10,0x1f,0x28,0x45,0x0b,0x7c,0x09,0x08,0x0f,0x19,0x69,0x09,0x0f,0x09,0x29,0x11,0x40,0x7f,0x90,0x48,0xfe,0x48,0xfe,0x48,0xff,0x24,0xfc,0x24,0xff,0x04,0x14,0x08 -+// 31805 簽 ; -+,0x10,0x1f,0x28,0x44,0x01,0x06,0x1b,0x60,0x1f,0x11,0x1f,0x04,0x04,0x0a,0x10,0x63,0x20,0xbf,0x48,0x84,0x40,0x30,0xef,0x02,0x7c,0x44,0x7c,0x10,0x10,0x28,0xc6,0x02 -+// 31806 簾 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x11,0x1f,0x11,0x17,0x11,0x17,0x11,0x17,0x23,0x2d,0x51,0x20,0xbf,0x50,0x88,0xfe,0x10,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x30,0x2e,0x24 -+// 31807 簿 ; -+,0x10,0x1f,0x24,0x52,0x0b,0x08,0x41,0x25,0x29,0x09,0x11,0x17,0x70,0x10,0x10,0x10,0x20,0xbf,0x48,0x94,0xff,0x20,0xfe,0x22,0x3e,0xe2,0x26,0xff,0x84,0x44,0x14,0x08 -+// 31808 籀 ; -+,0x10,0x1f,0x24,0x42,0x09,0x09,0x7f,0x09,0x0d,0x18,0x69,0x09,0x09,0x09,0x29,0x11,0x20,0xbf,0x48,0xb4,0xcf,0x09,0x49,0x69,0x95,0x22,0xff,0x11,0xff,0x11,0xff,0x01 -+// 31809 籁 ; -+,0x10,0x1f,0x24,0x42,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x0c,0x16,0x25,0x44,0x04,0x04,0x20,0x3f,0x48,0xa4,0x3e,0x44,0x88,0x7e,0x42,0x52,0x52,0x52,0x5a,0x24,0x43,0x81 -+// 31810 籂 ; -+,0x10,0x1f,0x24,0x42,0x0c,0x1a,0x25,0x5f,0x12,0x1e,0x12,0x1e,0x14,0x16,0x1a,0x10,0x20,0xbf,0x48,0x84,0x40,0x7f,0x90,0x10,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 31811 籃 ; -+,0x10,0x1f,0x24,0x7f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x00,0x1f,0x12,0x12,0x7f,0x00,0x40,0x7e,0x90,0x08,0x20,0x3e,0x40,0x90,0x08,0x88,0x00,0xf8,0x48,0x48,0xff,0x00 -+// 31812 籄 ; -+,0x10,0x1f,0x24,0x5f,0x14,0x17,0x10,0x1f,0x12,0x13,0x12,0x13,0x12,0x13,0x11,0x1f,0x20,0xbf,0x48,0xfe,0x44,0xfc,0x40,0xff,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0xfe -+// 31813 籅 ; -+,0x10,0x1f,0x24,0x42,0x1d,0x11,0x1d,0x11,0x10,0x1d,0x11,0x11,0x7f,0x04,0x18,0x60,0x20,0xbf,0x48,0x84,0x1c,0xe4,0x1c,0xe4,0x24,0x3c,0x24,0x24,0xff,0x10,0x0c,0x03 -+// 31814 籆 ; -+,0x10,0x1f,0x22,0x5f,0x0a,0x0f,0x18,0x2f,0x48,0x0f,0x08,0x0f,0x02,0x01,0x07,0x38,0x20,0xbf,0x54,0xff,0x90,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xff,0x18,0xe0,0x1f,0x02 -+// 31815 籇 ; -+,0x10,0x1f,0x24,0x5f,0x04,0x07,0x00,0x3f,0x20,0x0f,0x03,0x1c,0x03,0x1c,0x03,0x1c,0x20,0xbf,0x48,0xfe,0x10,0xf0,0x00,0xff,0x02,0xf8,0x84,0xe8,0x50,0xef,0x22,0xc0 -+// 31816 籈 ; -+,0x10,0x1f,0x24,0x42,0x3f,0x0a,0x3f,0x2a,0x3f,0x04,0x04,0x3f,0x04,0x07,0x38,0x00,0x20,0xbf,0x48,0x84,0xff,0x20,0xa0,0xbc,0xa4,0x24,0x34,0xac,0x45,0x55,0x65,0x43 -+// 31817 籉 ; -+,0x10,0x1f,0x24,0x7f,0x00,0x3f,0x08,0x0f,0x00,0x3f,0x22,0x07,0x00,0x0f,0x00,0x1f,0x40,0x7f,0x90,0xff,0x80,0xfe,0x08,0xf8,0x00,0xff,0x11,0xf8,0x88,0xfc,0x80,0xff -+// 31818 籊 ; -+,0x10,0x1f,0x24,0x5f,0x09,0x05,0x19,0x08,0x1f,0x28,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x20,0x7f,0x88,0x7c,0x24,0x14,0xa4,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x00 -+// 31819 籋 ; -+,0x10,0x1f,0x24,0x5f,0x08,0x70,0x1f,0x1a,0x14,0x1a,0x10,0x1a,0x14,0x1a,0x10,0x10,0x20,0xbf,0x48,0xfe,0x88,0x86,0xfd,0xd4,0xa4,0xd4,0x84,0xd4,0xa4,0xd4,0x94,0x08 -+// 31820 籌 ; -+,0x10,0x3f,0x44,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x11,0x1f,0x20,0x7f,0x88,0xfe,0x80,0xfc,0x00,0xff,0x82,0xf8,0x00,0xff,0x08,0x7e,0x28,0x18 -+// 31821 籍 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x3f,0x04,0x3f,0x0c,0x16,0x15,0x24,0x44,0x04,0x04,0x20,0xbf,0x48,0x84,0x24,0xff,0x24,0x24,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42 -+// 31822 籎 ; -+,0x10,0x1f,0x24,0x42,0x10,0x1c,0x11,0x0f,0x10,0x1f,0x24,0x5f,0x04,0x0a,0x12,0x21,0x20,0xbf,0x48,0x84,0x7e,0x04,0x18,0x08,0xff,0x09,0x4e,0x48,0x68,0x98,0x8f,0x02 -+// 31823 籏 ; -+,0x10,0x1f,0x24,0x4a,0x04,0x3f,0x08,0x08,0x0e,0x0a,0x12,0x12,0x13,0x22,0x2a,0x45,0x20,0xbf,0x48,0x84,0xff,0x44,0xfe,0x44,0x7c,0x44,0x7c,0x44,0xff,0x44,0x83,0x01 -+// 31824 籐 ; -+,0x10,0x1f,0x24,0x42,0x3d,0x25,0x24,0x3f,0x24,0x24,0x3d,0x26,0x24,0x25,0x24,0x48,0x20,0xbf,0x48,0xa4,0x28,0xfe,0x20,0xff,0x48,0xa4,0xab,0x72,0xa8,0x26,0xa2,0x40 -+// 31825 籑 ; -+,0x10,0x1f,0x22,0x4f,0x0a,0x09,0x0f,0x01,0x7f,0x0c,0x17,0x65,0x04,0x07,0x05,0x06,0x20,0xbf,0x48,0xf8,0x48,0x28,0xf8,0x00,0xff,0x98,0xf7,0x12,0x90,0xf4,0x38,0x0e -+// 31826 籒 ; -+,0x10,0x1f,0x24,0x42,0x09,0x08,0x7d,0x09,0x0d,0x18,0x69,0x09,0x09,0x09,0x29,0x11,0x20,0xbf,0x48,0x84,0xff,0x28,0xef,0x29,0xef,0x28,0xff,0x11,0xff,0x11,0xff,0x01 -+// 31827 籓 ; -+,0x10,0x1f,0x28,0x54,0x0b,0x0a,0x41,0x2b,0x29,0x0e,0x13,0x12,0x73,0x12,0x13,0x12,0x20,0x3f,0x48,0xbc,0xc0,0x48,0x50,0xfe,0x48,0x47,0xfc,0x44,0xfc,0x44,0xfc,0x04 -+// 31828 籔 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x24,0x7f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x12,0x0e,0x71,0x20,0xbf,0x48,0x84,0xa2,0xbf,0xe4,0xa4,0xe4,0x94,0x88,0x08,0x94,0x14,0x23,0x02 -+// 31829 籕 ; -+,0x10,0x1f,0x24,0x42,0x09,0x09,0x7f,0x19,0x1d,0x2b,0x29,0x49,0x09,0x09,0x09,0x09,0x20,0xbf,0x48,0x84,0xde,0x0a,0x4a,0x6a,0xaa,0x14,0xfe,0x22,0xfe,0x22,0xfe,0x02 -+// 31830 籖 ; -+,0x10,0x1f,0x24,0x42,0x1f,0x02,0x7f,0x09,0x39,0x09,0x39,0x09,0x39,0x09,0x7f,0x20,0x20,0xbf,0x48,0x14,0xd4,0x12,0xff,0x10,0xd4,0x16,0xd4,0x08,0xc9,0x15,0xa5,0x43 -+// 31831 籗 ; -+,0x10,0x1f,0x24,0x5f,0x00,0x3f,0x28,0x04,0x0f,0x08,0x1f,0x28,0x0f,0x08,0x0f,0x08,0x20,0x3f,0x48,0xfc,0x80,0xff,0x92,0x48,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x00 -+// 31832 籘 ; -+,0x10,0x1f,0x24,0x42,0x3c,0x25,0x24,0x3d,0x24,0x27,0x3c,0x24,0x24,0x24,0x25,0x48,0x20,0xbf,0x50,0xa8,0xa8,0xfe,0x40,0xfe,0xac,0x53,0xe8,0x44,0xfc,0x94,0x52,0x20 -+// 31833 籙 ; -+,0x10,0x1f,0x24,0x49,0x14,0x22,0x5e,0x08,0x09,0x3e,0x0a,0x2c,0x18,0x0d,0x70,0x00,0x40,0x7e,0x90,0x08,0xfc,0x04,0xfc,0x04,0xff,0x24,0xa8,0x70,0xa8,0x27,0xa2,0x40 -+// 31834 籚 ; -+,0x10,0x1f,0x28,0x44,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x2f,0x29,0x5f,0x40,0x7e,0x90,0xfc,0x80,0xff,0x85,0xfc,0x88,0xf8,0x88,0xf8,0x00,0xfc,0x24,0xff -+// 31835 籛 ; -+,0x10,0x1f,0x24,0x4a,0x0d,0x12,0x20,0x5e,0x08,0x0b,0x3e,0x08,0x2a,0x1f,0x70,0x01,0x20,0xbf,0x48,0x84,0x28,0xfe,0x28,0x32,0xda,0x27,0x24,0xfe,0x24,0x19,0x6d,0x83 -+// 31836 籜 ; -+,0x10,0x1f,0x24,0x4b,0x09,0x09,0x7c,0x0a,0x0c,0x19,0x68,0x08,0x08,0x09,0x28,0x10,0x20,0xbf,0x48,0xff,0x29,0xff,0x10,0xfe,0x10,0xff,0x44,0xfe,0x10,0xff,0x10,0x10 -+// 31837 籝 ; -+,0x10,0x3f,0x45,0x7f,0x08,0x0f,0x08,0x0f,0x3d,0x27,0x3d,0x25,0x3d,0x24,0x25,0x4a,0x20,0xbf,0x48,0xff,0x00,0xfc,0x08,0xf8,0x1c,0xf4,0x54,0x54,0x54,0x95,0x65,0x43 -+// 31838 籞 ; -+,0x10,0x1f,0x24,0x4b,0x14,0x67,0x18,0x72,0x17,0x10,0x0f,0x00,0x3f,0x08,0x12,0x21,0x20,0xbf,0x48,0xff,0x89,0xf9,0x89,0xed,0x0a,0x08,0xf8,0x00,0xff,0x90,0x88,0x04 -+// 31839 籟 ; -+,0x10,0x1f,0x28,0x44,0x3f,0x04,0x3f,0x25,0x25,0x2d,0x0e,0x15,0x15,0x24,0x44,0x04,0x20,0xbf,0x48,0xbc,0xa4,0x48,0xfe,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x42,0x81 -+// 31840 籠 ; -+,0x10,0x1f,0x24,0x4a,0x3f,0x12,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x25,0x22,0x20,0xbf,0x50,0xa8,0xbe,0x20,0xbe,0x02,0x3e,0x20,0x3c,0x20,0x3c,0x21,0x21,0x3f -+// 31841 籡 ; -+,0x10,0x1f,0x24,0x43,0x08,0x08,0x7f,0x0a,0x09,0x1d,0x69,0x08,0x08,0x09,0x2a,0x14,0x40,0x7f,0x90,0x28,0x50,0x88,0x7c,0x03,0xdc,0x54,0xdc,0x88,0x88,0x54,0x53,0x21 -+// 31842 籢 ; -+,0x10,0x1f,0x24,0x46,0x09,0x10,0x2f,0x40,0x3b,0x2a,0x2a,0x3b,0x11,0x11,0x2a,0x44,0x20,0xbf,0x48,0x84,0x10,0x9f,0x52,0x32,0xd2,0x94,0x94,0x88,0x08,0x14,0xa7,0x42 -+// 31843 籣 ; -+,0x20,0x3f,0x44,0x3e,0x22,0x3e,0x22,0x3f,0x20,0x2f,0x2a,0x2f,0x21,0x26,0x38,0x20,0x20,0x7f,0x88,0x3e,0x22,0x3e,0xa2,0xfe,0x82,0xfa,0xaa,0xfa,0xa2,0x92,0x8a,0x04 -+// 31844 籤 ; -+,0x10,0x1f,0x24,0x53,0x11,0x2a,0x7f,0x09,0x39,0x09,0x39,0x09,0x39,0x09,0x7f,0x00,0x20,0xbf,0x48,0x14,0x14,0x92,0xff,0x10,0xd4,0x16,0xd4,0x14,0xc9,0x09,0xd5,0x23 -+// 31845 籥 ; -+,0x10,0x1f,0x28,0x45,0x06,0x1b,0x60,0x1d,0x15,0x1d,0x00,0x1f,0x11,0x1f,0x11,0x11,0x20,0xbf,0xc8,0x24,0x18,0xf7,0x02,0xdc,0x54,0xdc,0x00,0xfe,0x22,0xfe,0x2a,0x24 -+// 31846 籦 ; -+,0x10,0x1f,0x24,0x4c,0x12,0x21,0x5e,0x08,0x08,0x3e,0x08,0x2a,0x2a,0x08,0x7e,0x21,0x20,0x3f,0x48,0xfe,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff -+// 31847 籧 ; -+,0x10,0x1f,0x28,0x45,0x03,0x22,0x13,0x02,0x72,0x15,0x14,0x18,0x11,0x28,0x47,0x00,0x40,0x7e,0x90,0x28,0xfe,0x3a,0xe4,0x3c,0xe0,0x34,0xd8,0x34,0xd2,0x20,0xff,0x00 -+// 31848 籨 ; -+,0x10,0x1f,0x24,0x46,0x09,0x10,0x2f,0x40,0x3b,0x2a,0x2a,0x3b,0x11,0x11,0x2a,0x44,0x20,0xbf,0x48,0x84,0x10,0x9f,0x21,0x2a,0xc8,0x88,0x88,0x94,0x14,0x22,0xa3,0x42 -+// 31849 籩 ; -+,0x10,0x1f,0x28,0x45,0x11,0x09,0x09,0x00,0x3b,0x0a,0x09,0x08,0x08,0x14,0x23,0x00,0x40,0x7f,0x90,0xfe,0x52,0x2a,0xfe,0x20,0xff,0xa5,0xfe,0x40,0x7c,0x88,0xff,0x00 -+// 31850 籪 ; -+,0x10,0x1f,0x24,0x42,0x28,0x35,0x28,0x32,0x3f,0x29,0x36,0x29,0x3f,0x24,0x3f,0x00,0x20,0xbf,0x48,0x84,0x83,0x5c,0x90,0x50,0xff,0x52,0x92,0x52,0xd2,0x52,0xe2,0x42 -+// 31851 籫 ; -+,0x10,0x1f,0x28,0x54,0x1f,0x24,0x3f,0x0d,0x37,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x18,0x20,0xbf,0x50,0xa8,0x3e,0x48,0xff,0x29,0x47,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c -+// 31852 籬 ; -+,0x10,0x1f,0x24,0x4a,0x3f,0x0a,0x24,0x2a,0x3f,0x04,0x3f,0x2a,0x3e,0x21,0x22,0x21,0x20,0xbf,0x48,0x94,0xa8,0x3f,0xe8,0xa8,0xbe,0x28,0xa8,0xbe,0xa8,0xa8,0xbf,0x20 -+// 31853 籭 ; -+,0x10,0x1f,0x24,0x7f,0x12,0x1a,0x12,0x1f,0x12,0x1f,0x12,0x1f,0x24,0x27,0x25,0x46,0x20,0xbf,0x48,0xff,0x24,0x34,0xa4,0xff,0x20,0xfc,0x24,0xfc,0x24,0xbf,0xa1,0x1f -+// 31854 籮 ; -+,0x10,0x1f,0x22,0x5f,0x12,0x1f,0x08,0x12,0x3c,0x0a,0x11,0x3f,0x00,0x29,0x25,0x44,0x20,0xbf,0x48,0xfe,0x22,0xfe,0x50,0x48,0xff,0x48,0x7e,0x48,0x7e,0x48,0x7f,0xc0 -+// 31855 籯 ; -+,0x20,0x3f,0x44,0x7f,0x10,0x1f,0x08,0x0f,0x00,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x4a,0x40,0x7f,0x88,0xff,0x00,0xfc,0x08,0xf8,0x00,0xdc,0x54,0xd4,0x5c,0xd5,0x55,0x23 -+// 31856 籰 ; -+,0x10,0x1f,0x24,0x7f,0x29,0x25,0x3f,0x08,0x1f,0x68,0x0f,0x08,0x0f,0x02,0x01,0x3e,0x40,0x7f,0x88,0x7e,0x52,0x4a,0x7e,0x80,0xfc,0x80,0xfc,0x80,0xfe,0x10,0xe0,0x1f -+// 31857 籱 ; -+,0x10,0x1f,0x24,0x5f,0x00,0x7f,0x54,0x0a,0x14,0x3f,0x64,0x3f,0x24,0x3f,0x24,0x3f,0x20,0xbf,0x48,0xfc,0x80,0xff,0xa9,0x94,0x48,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x7f -+// 31858 籲 ; -+,0x10,0x1f,0x24,0x4a,0x11,0x2e,0x40,0x3b,0x2a,0x3b,0x00,0x3f,0x2a,0x3f,0x2a,0x21,0x20,0xbf,0x48,0x84,0x7f,0x90,0x3e,0xa2,0xbe,0xa2,0x3e,0xa2,0xbe,0x94,0xa3,0x41 -+// 31859 米 ; -+,0x00,0x10,0x08,0x04,0x04,0x7f,0x02,0x02,0x04,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x80,0x84,0x84,0x88,0x90,0xff,0xc0,0xa0,0xa0,0x90,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 31860 籴 ; -+,0x03,0x00,0x01,0x02,0x0c,0x10,0x64,0x02,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0xc0,0x20,0x10,0x8c,0x87,0x92,0xa0,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 31861 籵 ; -+,0x04,0x04,0x24,0x14,0x15,0x3f,0x0c,0x0e,0x15,0x15,0x24,0x44,0x04,0x04,0x04,0x04,0x10,0x10,0x90,0x90,0x10,0x90,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31862 籶 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x29,0x28,0x48,0x08,0x08,0x09,0x0a,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x09,0x07 -+// 31863 籷 ; -+,0x08,0x08,0x48,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x0e,0x70,0x10,0x10,0x10,0x1f,0xf0,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x0f -+// 31864 籸 ; -+,0x08,0x09,0x48,0x29,0x2a,0x7f,0x19,0x1c,0x1a,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x00,0xf8,0x48,0x48,0x48,0x48,0xf8,0x48,0x48,0x48,0x48,0x45,0x45,0x45,0x43,0x41 -+// 31865 籹 ; -+,0x08,0x08,0x4a,0x2a,0x2d,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x20,0x20,0x20,0x20,0xff,0x24,0x24,0x44,0x44,0xc4,0x28,0x18,0x14,0x22,0xc3,0x01 -+// 31866 籺 ; -+,0x08,0x08,0x49,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0x20,0x40,0x7e,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x40,0x81,0x81,0x7f,0x00 -+// 31867 类 ; -+,0x10,0x08,0x04,0x3f,0x01,0x06,0x18,0x60,0x00,0x7f,0x00,0x01,0x02,0x04,0x18,0x60,0x84,0x88,0x90,0xff,0xc0,0xb0,0x8c,0x82,0x80,0xff,0x80,0x40,0x20,0x18,0x07,0x02 -+// 31868 籼 ; -+,0x04,0x04,0x24,0x14,0x15,0x7f,0x0c,0x0e,0x15,0x15,0x24,0x24,0x44,0x04,0x04,0x04,0x08,0x08,0x88,0x88,0x49,0xc9,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x7f,0x41 -+// 31869 籽 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1d,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x02,0x04,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 31870 籾 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x00,0x00,0x7e,0x12,0x12,0x52,0x52,0x52,0x92,0x22,0x22,0x22,0x42,0x44,0x94,0x08 -+// 31871 籿 ; -+,0x04,0x04,0x25,0x15,0x16,0x7f,0x0c,0x0e,0x15,0x15,0x24,0x44,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x7f,0x84,0x04,0x44,0x24,0x34,0x14,0x04,0x04,0x04,0x14,0x08 -+// 31872 粀 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x08,0x48,0x30,0x10,0x28,0x28,0x44,0x83,0x02 -+// 31873 粁 ; -+,0x08,0x08,0x48,0x2a,0x2c,0x7f,0x18,0x1d,0x2a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 31874 粂 ; -+,0x02,0x03,0x04,0x08,0x10,0x03,0x0c,0x74,0x02,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xf0,0x20,0x60,0x90,0x08,0x87,0x92,0xa0,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 31875 粃 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0x48,0x49,0x4a,0x6c,0x48,0x48,0x48,0x48,0x48,0x49,0x59,0x69,0x47 -+// 31876 粄 ; -+,0x08,0x48,0x2a,0x2a,0x08,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x0c,0x02,0x0f,0xf0,0x80,0x80,0xfe,0xa2,0xa2,0xa4,0x94,0x94,0x88,0x18,0x24,0x47,0x82 -+// 31877 粅 ; -+,0x04,0x04,0x25,0x15,0x16,0x3f,0x0c,0x0d,0x16,0x15,0x24,0x44,0x05,0x04,0x04,0x04,0x20,0x20,0x20,0x3f,0x55,0x55,0x95,0x25,0x29,0x49,0x49,0x91,0x21,0x42,0x8a,0x04 -+// 31878 粆 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2b,0x2a,0x28,0x48,0x08,0x08,0x08,0x0b,0x10,0x10,0x10,0x54,0x52,0x93,0x91,0x90,0x12,0x12,0x04,0x08,0x10,0x20,0xc0,0x00 -+// 31879 粇 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x28,0x28,0x48,0x08,0x08,0x09,0x0a,0x20,0x10,0x10,0xff,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x07 -+// 31880 粈 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0xff,0x00 -+// 31881 粉 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x19,0x1b,0x2c,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x08,0x4c,0x48,0x48,0x84,0x84,0x03,0xfe,0x44,0x44,0x44,0x44,0x84,0x84,0x28,0x10 -+// 31882 粊 ; -+,0x10,0x10,0x1f,0x10,0x13,0x1c,0x10,0x08,0x04,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x44,0x4e,0x70,0x41,0x41,0x3f,0x80,0x84,0x88,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 31883 粋 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2b,0x2a,0x29,0x48,0x08,0x08,0x08,0x08,0x20,0x20,0xfc,0x24,0x24,0x45,0x45,0x93,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 31884 粌 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x02,0xf2,0x12,0x12,0x12,0xf2,0x82,0x82,0xf2,0x12,0x12,0x12,0x12,0x12,0x52,0x22 -+// 31885 粍 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x28,0x29,0x48,0x08,0x08,0x08,0x08,0x00,0x0e,0x70,0x10,0x10,0x1e,0xf0,0x10,0x10,0x1f,0xf0,0x10,0x11,0x11,0x11,0x0f -+// 31886 粎 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x0c,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x48,0x48,0x88,0x84,0x84,0x04,0x02,0x03,0x02 -+// 31887 粏 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x10,0x10,0x10,0x10,0xff,0x10,0x28,0x28,0x28,0x48,0x44,0x64,0x94,0x92,0x03,0x02 -+// 31888 粐 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x09,0x0a,0x10,0x08,0x08,0x7f,0x41,0x41,0x41,0x7f,0x40,0x40,0x40,0x40,0x80,0x80,0x00,0x00 -+// 31889 粑 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x7f -+// 31890 粒 ; -+,0x08,0x08,0x48,0x2a,0x2a,0x0c,0x7f,0x18,0x1c,0x2a,0x2b,0x29,0x48,0x08,0x0b,0x08,0x20,0x10,0x10,0xff,0x04,0x06,0x04,0x84,0x88,0x48,0x48,0x50,0x10,0x00,0xff,0x00 -+// 31891 粓 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x2a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0x7c,0x00 -+// 31892 粔 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0xff,0x80 -+// 31893 粕 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x10,0x10,0x20,0xff,0x81,0x81,0x81,0x81,0xff,0x81,0x81,0x81,0x81,0x81,0xff,0x81 -+// 31894 粖 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x09,0x0a,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x38,0x38,0x54,0x54,0x92,0x13,0x12,0x10,0x10 -+// 31895 粗 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x0b,0x08,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 31896 粘 ; -+,0x08,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 31897 粙 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82 -+// 31898 粚 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x40,0x40,0x40,0x7f,0x80,0x10,0x52,0x5f,0xf2,0x52,0x52,0x5a,0x54,0x41,0x41,0x3f -+// 31899 粛 ; -+,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x14,0x12,0x17,0x10,0x11,0x12,0x14,0x28,0x40,0x80,0xfc,0x84,0xff,0x84,0xfc,0x80,0x94,0xa4,0xf4,0x84,0xa4,0x94,0x94,0x84,0x04 -+// 31900 粜 ; -+,0x10,0x10,0x1f,0x00,0x10,0x10,0x1f,0x08,0x04,0x02,0x7f,0x01,0x06,0x18,0x60,0x00,0x84,0x84,0xfc,0x80,0x84,0x84,0xfc,0x88,0x88,0x92,0xff,0xa0,0x90,0x8c,0x87,0x82 -+// 31901 粝 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x28,0x29,0x49,0x0a,0x0c,0x09,0x08,0x00,0xff,0x80,0x80,0xff,0xa0,0xa0,0xbe,0xa2,0xa2,0x22,0x42,0x42,0x82,0x14,0x08 -+// 31902 粞 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x28,0x28,0x28,0xff,0xa9,0xa9,0xa9,0xa9,0xc7,0x81,0x81,0x81,0xff,0x81 -+// 31903 粟 ; -+,0x00,0x3f,0x02,0x1f,0x12,0x12,0x1f,0x08,0x04,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfe,0x20,0xfc,0x24,0x24,0xfc,0x88,0x90,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 31904 粠 ; -+,0x08,0x08,0x49,0x29,0x2a,0x7f,0x18,0x1c,0x1a,0x2a,0x29,0x28,0x48,0x08,0x09,0x0a,0x48,0x48,0x48,0x48,0xfe,0x48,0x48,0x48,0x48,0x48,0xff,0x00,0x48,0x84,0x06,0x02 -+// 31905 粡 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0xba,0x82,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x82,0x82,0x82,0x8a,0x84 -+// 31906 粢 ; -+,0x10,0x08,0x09,0x04,0x08,0x30,0x13,0x0c,0x02,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x80,0xfe,0x22,0x24,0x50,0x88,0x07,0x8a,0x90,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 31907 粣 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x19,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x09,0x09,0x0a,0x00,0xee,0xaa,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x2a,0xaa,0x54 -+// 31908 粤 ; -+,0x02,0x1f,0x10,0x12,0x17,0x12,0x14,0x1f,0x10,0x7f,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0xfc,0x84,0xa4,0xf4,0xa4,0x94,0xfc,0x04,0xff,0x00,0xfc,0x04,0x04,0x28,0x10 -+// 31909 粥 ; -+,0x00,0x3c,0x04,0x06,0x3d,0x21,0x27,0x20,0x3d,0x05,0x06,0x04,0x04,0x04,0x28,0x10,0x80,0x8f,0x81,0xa1,0xaf,0xc8,0xf8,0x88,0xcf,0xa1,0x91,0x91,0x81,0x81,0x8a,0x84 -+// 31910 粦 ; -+,0x00,0x08,0x04,0x3f,0x02,0x04,0x18,0x68,0x0f,0x11,0x2a,0x4a,0x04,0x08,0x10,0x60,0x80,0x88,0x90,0xff,0xa0,0x98,0x87,0x0a,0x7e,0x48,0x48,0xff,0x48,0x08,0x08,0x08 -+// 31911 粧 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x49,0x09,0x09,0x0a,0x0c,0x20,0x10,0x10,0xff,0x88,0x88,0x88,0x88,0xff,0x88,0x88,0x08,0x08,0x08,0xff,0x00 -+// 31912 粨 ; -+,0x08,0x09,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x20,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 31913 粩 ; -+,0x08,0x08,0x49,0x2a,0x2a,0x7f,0x19,0x1c,0x2a,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x20,0x20,0x20,0xfa,0x22,0x24,0xff,0x10,0x20,0x40,0xce,0x70,0x40,0x41,0x41,0x3f -+// 31914 粪 ; -+,0x10,0x08,0x04,0x3f,0x02,0x04,0x18,0x62,0x1f,0x02,0x02,0x7f,0x00,0x04,0x04,0x08,0x84,0x88,0x90,0xfe,0xa0,0x98,0x87,0x22,0xfc,0x20,0x20,0xff,0x00,0x10,0x0c,0x04 -+// 31915 粫 ; -+,0x08,0x09,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x84 -+// 31916 粬 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x28,0x28,0x28,0x28,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xa9,0xa9,0xa9,0xff,0x81 -+// 31917 粭 ; -+,0x08,0x08,0x49,0x2a,0x2a,0x7e,0x19,0x1e,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x48,0x88,0x84,0x7f,0x02,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 31918 粮 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0x10,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa0,0x92,0x94,0x88,0xac,0xc7,0x82 -+// 31919 粯 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x48,0x48,0x89,0x89,0x07 -+// 31920 粰 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x0e,0xf0,0x22,0x92,0x54,0x00,0x7e,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 31921 粱 ; -+,0x11,0x48,0x29,0x25,0x0a,0x70,0x13,0x18,0x04,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0xf8,0x48,0x4c,0x4a,0x49,0xa8,0x10,0x88,0x90,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 31922 粲 ; -+,0x04,0x07,0x14,0x1f,0x31,0x4a,0x04,0x18,0x64,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfe,0x42,0xa4,0x18,0x24,0xc2,0x88,0x90,0xff,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 31923 粳 ; -+,0x08,0x09,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x28,0x49,0x08,0x08,0x08,0x09,0x0a,0x00,0xff,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x20,0xa0,0x40,0xb0,0x0f,0x02 -+// 31924 粴 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x09,0x08,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 31925 粵 ; -+,0x02,0x1f,0x10,0x17,0x12,0x17,0x12,0x14,0x17,0x00,0x7f,0x04,0x07,0x00,0x00,0x00,0x00,0xfc,0xe4,0x94,0xa4,0xf4,0xa4,0x94,0xf4,0x00,0xff,0x00,0xf8,0x08,0x50,0x20 -+// 31926 粶 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1d,0x2a,0x2a,0x28,0x48,0x08,0x0b,0x08,0x08,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xff,0x92,0x54,0x38,0x54,0x93,0x11,0x50,0x20 -+// 31927 粷 ; -+,0x08,0x08,0x4a,0x2a,0x2d,0x7e,0x18,0x1d,0x2a,0x2a,0x28,0x48,0x09,0x0a,0x08,0x08,0x40,0x40,0x7f,0x81,0x21,0xa5,0xa9,0xfd,0x61,0x71,0xa9,0xa9,0x21,0x21,0x2a,0x04 -+// 31928 粸 ; -+,0x08,0x08,0x49,0x2a,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x49,0x08,0x08,0x08,0x09,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0x00,0x84,0x83,0x01 -+// 31929 粹 ; -+,0x08,0x08,0x4b,0x2a,0x2c,0x7f,0x08,0x1d,0x1a,0x28,0x2b,0x48,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x44,0x44,0x44,0xaa,0x11,0x11,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 31930 粺 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x4b,0x08,0x08,0x08,0x08,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 31931 粻 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1b,0x2c,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xfe,0x80,0xfc,0x80,0xfc,0x80,0xff,0xa0,0x92,0x94,0x88,0x88,0xa4,0xc7,0x82 -+// 31932 粼 ; -+,0x04,0x24,0x15,0x7f,0x0e,0x15,0x64,0x10,0x1d,0x26,0x4a,0x2b,0x10,0x10,0x20,0x40,0x0a,0x8a,0x0a,0xd2,0x14,0x94,0x28,0xa8,0xd4,0x94,0x92,0xea,0x8a,0x89,0x89,0x89 -+// 31933 粽 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x28,0x28,0x48,0x09,0x0a,0x08,0x08,0x20,0x10,0xff,0x81,0x00,0x7e,0x00,0x00,0xff,0x10,0x94,0x92,0x11,0x11,0x50,0x20 -+// 31934 精 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x10,0xff,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 31935 粿 ; -+,0x08,0x08,0x49,0x2a,0x2a,0x7e,0x18,0x18,0x2d,0x2a,0x28,0x48,0x08,0x09,0x0a,0x08,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x58,0x58,0x94,0x94,0x13,0x12,0x10 -+// 31936 糀 ; -+,0x08,0x08,0x4b,0x2a,0x2c,0x7e,0x18,0x1c,0x2b,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x48,0x48,0xff,0x48,0x20,0x28,0x49,0xca,0x4c,0x48,0x58,0x68,0x49,0x49,0x49,0x47 -+// 31937 糁 ; -+,0x08,0x08,0x4a,0x2b,0x2c,0x7f,0x18,0x1d,0x2a,0x2a,0x29,0x48,0x09,0x08,0x08,0x0b,0x20,0x40,0x88,0xfc,0x44,0xfe,0x90,0x08,0x27,0x4a,0x90,0x64,0x88,0x30,0xc0,0x00 -+// 31938 糂 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1c,0x2a,0x28,0x29,0x48,0x08,0x08,0x08,0x08,0x44,0x44,0xff,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0xa8,0xa4,0xc2,0x80,0xfe -+// 31939 糃 ; -+,0x08,0x08,0x4a,0x2a,0x2a,0x7e,0x19,0x1c,0x2a,0x2a,0x29,0x48,0x08,0x09,0x08,0x08,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x40,0x7e,0xaa,0x2a,0x52,0x92,0x22,0x4a,0x84 -+// 31940 糄 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x29,0x29,0x49,0x0a,0x0a,0x0c,0x08,0x20,0x10,0xff,0x81,0x81,0xff,0x80,0xff,0xd5,0x55,0x7f,0x55,0x55,0x55,0x55,0x43 -+// 31941 糅 ; -+,0x08,0x08,0x4a,0x2c,0x29,0x7e,0x18,0x1d,0x2a,0x2a,0x29,0x48,0x08,0x08,0x0b,0x08,0x00,0xfe,0x24,0x18,0xff,0x52,0x94,0x50,0x20,0x10,0xff,0x38,0x54,0x97,0x12,0x10 -+// 31942 糆 ; -+,0x08,0x09,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x20,0xff,0xa5,0xa5,0xbd,0xa5,0xa5,0xbd,0xa5,0xa5,0xa5,0xff,0x81 -+// 31943 糇 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x19,0x1a,0x2c,0x2a,0x2a,0x48,0x08,0x08,0x08,0x08,0x40,0x5e,0x44,0x84,0xff,0xa0,0xbe,0xa8,0xc8,0xff,0x88,0x94,0x94,0xa2,0xc3,0x82 -+// 31944 糈 ; -+,0x08,0x09,0x4a,0x2a,0x2c,0x7e,0x19,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x91,0x9e,0xd0,0xbf,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 31945 糉 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2b,0x28,0x28,0x4b,0x08,0x08,0x08,0x09,0x44,0xaa,0x92,0xaa,0xca,0xfe,0x44,0xa2,0x21,0x7e,0xc4,0x28,0x10,0x2c,0x47,0x82 -+// 31946 糊 ; -+,0x08,0x08,0x4a,0x2d,0x28,0x7e,0x08,0x1d,0x1b,0x29,0x29,0x49,0x08,0x08,0x08,0x08,0x80,0x8f,0x89,0xe9,0x89,0x8f,0x89,0xe9,0x29,0x2f,0x29,0xe9,0x11,0x11,0x25,0x42 -+// 31947 糋 ; -+,0x08,0x08,0x4a,0x2b,0x2c,0x7d,0x19,0x1d,0x1b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x82,0x44,0x48,0xff,0x00,0xe2,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x2a,0x22,0x66 -+// 31948 糌 ; -+,0x08,0x08,0x48,0x2a,0x2d,0x7e,0x18,0x1d,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x88,0x88,0xec,0xaa,0xaa,0x48,0xa0,0x1f,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 31949 糍 ; -+,0x09,0x08,0x4a,0x2a,0x2d,0x7e,0x18,0x1c,0x2b,0x29,0x28,0x48,0x09,0x09,0x0b,0x08,0x04,0x84,0x48,0x10,0xff,0x44,0x84,0xa9,0x29,0xde,0x44,0x84,0x08,0x4a,0xff,0x21 -+// 31950 糎 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x28,0x29,0x49,0x09,0x0a,0x0a,0x0c,0x00,0xff,0x80,0xbe,0xaa,0xaa,0xbe,0xaa,0xaa,0xbe,0x08,0x3e,0x08,0x08,0xff,0x00 -+// 31951 糏 ; -+,0x08,0x08,0x4a,0x2a,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x0c,0xff,0x81,0x81,0xff,0x88,0xc9,0xaa,0xbf,0xa1,0xbf,0xa1,0xbf,0x21,0x21,0x25,0x22 -+// 31952 糐 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x49,0x08,0x08,0x08,0x08,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x84,0x44,0x14,0x08 -+// 31953 糑 ; -+,0x09,0x08,0x4a,0x2b,0x2d,0x7f,0x19,0x1c,0x2b,0x28,0x28,0x48,0x09,0x0a,0x08,0x08,0xef,0x21,0x21,0xef,0x28,0x08,0xef,0x21,0x25,0xa3,0x65,0xa9,0x31,0x21,0xa5,0x42 -+// 31954 糒 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x18,0x1d,0x2b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x48,0x48,0xfe,0x48,0x48,0xff,0x80,0xfe,0x22,0xfe,0x22,0xfe,0x22,0x22,0x2a,0x04 -+// 31955 糓 ; -+,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x20,0x1f,0x24,0x15,0x3f,0x0e,0x15,0x14,0x24,0x04,0x00,0xbc,0x24,0x24,0x24,0xc7,0x80,0x7e,0xa2,0x22,0x94,0x14,0x88,0x94,0x27,0x42 -+// 31956 糔 ; -+,0x08,0x08,0x4a,0x2c,0x08,0x7e,0x19,0x1c,0x2a,0x28,0x28,0x48,0x08,0x08,0x09,0x08,0xfe,0xa2,0x54,0x28,0x10,0x2c,0xc3,0x10,0xfe,0x92,0x92,0xfe,0x10,0x12,0xff,0x81 -+// 31957 糕 ; -+,0x08,0x08,0x08,0x49,0x2a,0x2c,0x7e,0x18,0x1c,0x2b,0x28,0x29,0x49,0x09,0x0a,0x08,0x82,0x44,0x48,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x52,0x29,0x29,0x29,0x00 -+// 31958 糖 ; -+,0x08,0x08,0x49,0x2b,0x2d,0x7f,0x19,0x1d,0x2b,0x29,0x29,0x49,0x0a,0x0a,0x0c,0x08,0x20,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x10,0xfe,0x82,0x82,0xfe,0x82 -+// 31959 糗 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x2a,0x28,0x4b,0x08,0x08,0x08,0x09,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0x22,0xff,0x50,0x4c,0x87,0x02 -+// 31960 糘 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1c,0x2b,0x28,0x2b,0x48,0x08,0x0b,0x08,0x08,0x20,0x10,0xff,0x81,0x7e,0x20,0x62,0x94,0x38,0xd8,0x14,0x34,0xd2,0x13,0x52,0x20 -+// 31961 糙 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7e,0x18,0x1b,0x2d,0x2b,0x29,0x49,0x09,0x0a,0x0c,0x08,0x08,0x48,0x48,0x7e,0x48,0x88,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00,0x80,0x7f,0x00 -+// 31962 糚 ; -+,0x08,0x08,0x49,0x2a,0x2c,0x7f,0x1d,0x1b,0x29,0x28,0x2b,0x49,0x09,0x0a,0x0a,0x0c,0x44,0x44,0xff,0x44,0x00,0x24,0x24,0x24,0xe4,0x2f,0xe4,0x24,0x24,0x24,0x3f,0x20 -+// 31963 糛 ; -+,0x08,0x09,0x48,0x2b,0x2d,0x7e,0x18,0x1c,0x2a,0x28,0x28,0x49,0x08,0x08,0x0b,0x08,0x20,0x24,0xa8,0xff,0x02,0xfc,0x84,0x84,0xfc,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 31964 糜 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x17,0x1a,0x12,0x12,0x11,0x1f,0x10,0x21,0x26,0x58,0x00,0x40,0xff,0x08,0x08,0xbe,0x1c,0xaa,0x49,0x48,0x50,0xff,0xe0,0x50,0x4c,0x43,0x40 -+// 31965 糝 ; -+,0x08,0x08,0x48,0x2a,0x2c,0x7e,0x19,0x1c,0x2b,0x2c,0x28,0x4b,0x08,0x0b,0x08,0x0b,0x20,0x28,0x44,0xfe,0x48,0xaa,0xff,0x89,0x24,0x43,0x90,0x24,0xc8,0x10,0x60,0x80 -+// 31966 糞 ; -+,0x08,0x04,0x3f,0x04,0x1f,0x68,0x0f,0x08,0x0f,0x04,0x1f,0x04,0x7f,0x04,0x08,0x30,0x88,0x90,0xff,0x88,0xff,0x8a,0xf8,0x88,0xf8,0x10,0xfe,0x10,0xff,0x10,0x08,0x06 -+// 31967 糟 ; -+,0x08,0x08,0x49,0x2a,0x2d,0x7f,0x19,0x1d,0x2b,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x48,0x48,0xff,0x48,0xff,0x49,0xff,0x49,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 31968 糠 ; -+,0x10,0x10,0x55,0x55,0x39,0x7d,0x31,0x39,0x35,0x55,0x51,0x52,0x12,0x15,0x14,0x18,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x90,0x54,0x38,0x54,0x93,0x50,0x20 -+// 31969 糡 ; -+,0x08,0x08,0x4a,0x2a,0x2d,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x08,0x09,0x10,0xfe,0x44,0x28,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x49,0x89,0x89,0x07 -+// 31970 糢 ; -+,0x08,0x08,0x49,0x2a,0x2c,0x7e,0x18,0x1c,0x2a,0x28,0x2b,0x48,0x08,0x08,0x09,0x0a,0x48,0x48,0xff,0x48,0xfe,0x82,0xfe,0x82,0xfe,0x20,0xff,0x50,0x48,0x84,0x07,0x02 -+// 31971 糣 ; -+,0x09,0x08,0x4b,0x2b,0x2c,0x7f,0x19,0x1e,0x2a,0x28,0x28,0x48,0x08,0x08,0x08,0x08,0xef,0x44,0x54,0xff,0xd4,0x4d,0x6d,0x53,0xfe,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 31972 糤 ; -+,0x11,0x11,0x17,0x55,0x39,0x7f,0x30,0x3b,0x36,0x53,0x52,0x53,0x12,0x12,0x12,0x12,0x48,0x48,0xe8,0x48,0x5f,0xfa,0x2a,0xea,0x2a,0xea,0x24,0xe4,0x2a,0x2a,0xab,0x52 -+// 31973 糥 ; -+,0x08,0x08,0x08,0x49,0x2a,0x2a,0x7e,0x18,0x1d,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x00,0xff,0x20,0xff,0xa9,0xa9,0xa9,0x82,0xff,0x40,0xff,0xa9,0xa9,0xa9,0xad,0x82 -+// 31974 糦 ; -+,0x08,0x49,0x28,0x2a,0x0c,0x7e,0x18,0x1c,0x2a,0x2b,0x48,0x08,0x08,0x08,0x08,0x08,0x10,0xff,0x10,0xfe,0x00,0xfe,0x82,0xfe,0x44,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82 -+// 31975 糧 ; -+,0x08,0x08,0x49,0x2a,0x2a,0x7f,0x19,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0x09,0x08,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xff,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 31976 糨 ; -+,0x08,0x09,0x48,0x2a,0x2c,0x7f,0x19,0x1d,0x2b,0x28,0x28,0x48,0x08,0x08,0x0a,0x09,0x00,0xdf,0x51,0x51,0x5f,0xc4,0x04,0x1f,0xd5,0x55,0x5f,0x44,0x44,0x45,0xbf,0x01 -+// 31977 糩 ; -+,0x08,0x08,0x49,0x2a,0x2d,0x7f,0x19,0x19,0x2d,0x2a,0x28,0x48,0x08,0x08,0x08,0x08,0x20,0x30,0x48,0xfe,0x01,0xfe,0xaa,0x72,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 31978 糪 ; -+,0x00,0x1f,0x11,0x1f,0x10,0x2f,0x29,0x4f,0x08,0x04,0x3f,0x01,0x02,0x0c,0x70,0x00,0x10,0x7f,0x24,0x18,0xff,0x10,0x7e,0x10,0x94,0x88,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 31979 糫 ; -+,0x08,0x08,0x49,0x2a,0x2a,0x7f,0x18,0x1c,0x2a,0x2a,0x28,0x49,0x0e,0x08,0x08,0x08,0xfe,0xaa,0xaa,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0x52,0x8c,0x88,0xa4,0xc7,0x82 -+// 31980 糬 ; -+,0x09,0x09,0x4b,0x2d,0x28,0x7e,0x18,0x1b,0x2c,0x2a,0x29,0x4e,0x08,0x08,0x08,0x08,0xfe,0x52,0x52,0xfe,0x20,0xfa,0x24,0xff,0x30,0xc0,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 31981 糭 ; -+,0x08,0x49,0x2b,0x2d,0x09,0x7f,0x18,0x1d,0x2a,0x28,0x28,0x49,0x0a,0x08,0x08,0x0b,0x00,0xaa,0x4a,0xb6,0x4a,0xfe,0x88,0x46,0x7d,0x84,0xc8,0x28,0x10,0x28,0xc7,0x02 -+// 31982 糮 ; -+,0x09,0x09,0x49,0x2b,0x2d,0x09,0x7d,0x19,0x1d,0x2a,0x29,0x29,0x49,0x09,0x0b,0x08,0xf4,0x44,0x44,0xef,0x28,0xec,0x54,0x42,0xf2,0x00,0xfe,0x4a,0x4a,0x4a,0xff,0x00 -+// 31983 糯 ; -+,0x10,0x11,0x54,0x55,0x35,0x7e,0x30,0x38,0x34,0x51,0x50,0x51,0x11,0x11,0x11,0x11,0x00,0xff,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0x04 -+// 31984 糰 ; -+,0x08,0x09,0x4b,0x2d,0x29,0x7f,0x19,0x1d,0x2b,0x29,0x29,0x49,0x09,0x09,0x09,0x09,0x00,0xfe,0x22,0xfe,0xaa,0xfa,0xaa,0xfa,0x22,0xfe,0x0a,0xfe,0x2a,0x12,0xfe,0x02 -+// 31985 糱 ; -+,0x25,0x3f,0x10,0x3f,0x21,0x3f,0x21,0x3f,0x29,0x04,0x3f,0x02,0x04,0x18,0x60,0x00,0x10,0x7e,0x44,0x28,0xff,0x10,0x7e,0x10,0x90,0xa0,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 31986 糲 ; -+,0x08,0x09,0x4b,0x2d,0x29,0x7f,0x19,0x1d,0x1b,0x29,0x29,0x49,0x0a,0x0a,0x0c,0x08,0x00,0xff,0x28,0xfe,0x28,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x95,0xfd,0x85,0x82 -+// 31987 糳 ; -+,0x52,0x33,0x7f,0x04,0x35,0x24,0x35,0x24,0x3f,0x08,0x04,0x3f,0x02,0x0c,0x70,0x00,0x9c,0x14,0xd4,0x23,0xfe,0xa4,0x98,0x94,0xa3,0x98,0xa0,0xfe,0x90,0x8c,0x87,0x82 -+// 31988 糴 ; -+,0x11,0x09,0x14,0x22,0x48,0x2b,0x2c,0x7e,0x19,0x1c,0x2a,0x2a,0x28,0x48,0x08,0x08,0xef,0x31,0xa5,0x63,0xa5,0x31,0x48,0xff,0x88,0xfe,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 31989 糵 ; -+,0x02,0x7f,0x0a,0x3f,0x21,0x3f,0x20,0x3f,0x21,0x3f,0x04,0x7f,0x02,0x0c,0x70,0x00,0x20,0xff,0x28,0x7e,0x24,0xff,0x08,0x7f,0x08,0x88,0x90,0xff,0xa0,0x98,0x87,0x82 -+// 31990 糶 ; -+,0x08,0x2b,0x3e,0x08,0x2a,0x3f,0x00,0x2a,0x1c,0x7f,0x1c,0x1a,0x2a,0x28,0x48,0x08,0xee,0x22,0xaa,0x66,0xaa,0x22,0x48,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x48,0x7f,0x40 -+// 31991 糷 ; -+,0x10,0x13,0x54,0x55,0x39,0x7f,0x11,0x39,0x35,0x35,0x51,0x51,0x11,0x11,0x11,0x11,0x48,0xff,0x48,0xef,0x29,0xef,0x29,0xff,0x11,0xff,0x11,0x7d,0x55,0x7d,0x39,0x55 -+// 31992 糸 ; -+,0x00,0x00,0x01,0x02,0x04,0x0f,0x01,0x06,0x0f,0x00,0x04,0x04,0x08,0x10,0x21,0x00,0x80,0x80,0x10,0x10,0x20,0xc0,0x08,0x04,0xfe,0x42,0x52,0x48,0x44,0x42,0x42,0x80 -+// 31993 糹 ; -+,0x08,0x0c,0x08,0x12,0x12,0x24,0x3c,0x0a,0x11,0x3f,0x01,0x2a,0x2a,0x25,0x25,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 31994 糺 ; -+,0x04,0x04,0x08,0x09,0x11,0x3e,0x04,0x09,0x11,0x3f,0x00,0x2a,0x25,0x25,0x40,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0xa0,0x21,0x21,0x21,0x1f,0x00 -+// 31995 系 ; -+,0x00,0x1f,0x01,0x02,0x04,0x0f,0x01,0x06,0x1f,0x08,0x02,0x04,0x08,0x10,0x21,0x00,0x3e,0xc0,0x10,0x10,0x20,0xc0,0x90,0x08,0xfc,0x46,0x50,0x48,0x44,0x42,0x42,0x80 -+// 31996 糼 ; -+,0x08,0x0c,0x08,0x11,0x11,0x3e,0x04,0x0a,0x11,0x3f,0x01,0x2a,0x25,0x25,0x40,0x01,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x42,0x94,0x08 -+// 31997 糽 ; -+,0x08,0x0c,0x09,0x11,0x12,0x3e,0x04,0x0a,0x11,0x3f,0x00,0x2a,0x25,0x25,0x40,0x00,0x00,0x02,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x50,0x20 -+// 31998 糾 ; -+,0x04,0x04,0x08,0x09,0x11,0x3e,0x04,0x09,0x17,0x39,0x0a,0x25,0x25,0x24,0x40,0x00,0x02,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x26,0x3a,0x22,0x02,0x82,0x82,0x02,0x02 -+// 31999 糿 ; -+,0x08,0x08,0x10,0x12,0x22,0x3c,0x04,0x0a,0x11,0x3f,0x01,0x2a,0x29,0x25,0x41,0x02,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x84,0x14,0x08 -+// 32000 紀 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x02,0x34,0x2a,0x2a,0x4a,0x00,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x7f,0x00 -+// 32001 紁 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x08,0x12,0x21,0x7f,0x01,0x2a,0x25,0x25,0x44,0x01,0x00,0xfe,0x82,0xa2,0x92,0x94,0x44,0x48,0x48,0x28,0x10,0x10,0x28,0x44,0x87,0x02 -+// 32002 紂 ; -+,0x08,0x08,0x10,0x22,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x25,0x25,0x45,0x00,0x08,0x0c,0x08,0x08,0xff,0x08,0x08,0x88,0x48,0x68,0x28,0x08,0x08,0x08,0x28,0x10 -+// 32003 紃 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x14,0x22,0x7e,0x01,0x2a,0x2a,0x29,0x41,0x02,0x00,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x02,0x02 -+// 32004 約 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x09,0x10,0x22,0x7f,0x01,0x2a,0x25,0x25,0x45,0x00,0x20,0x20,0x40,0x7e,0x42,0x82,0x02,0x42,0x22,0x32,0x12,0x02,0x02,0x02,0x14,0x08 -+// 32005 紅 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x02,0x00,0x2a,0x2b,0x4a,0x00,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 32006 紆 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x11,0x24,0x7e,0x02,0x00,0x2a,0x2a,0x4a,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 32007 紇 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x0a,0x10,0x22,0x7f,0x01,0x00,0x2a,0x2a,0x2a,0x40,0x40,0x40,0x40,0xfe,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x40,0x81,0x81,0x7f,0x00 -+// 32008 紈 ; -+,0x08,0x08,0x10,0x10,0x25,0x78,0x08,0x10,0x24,0x7e,0x02,0x00,0x2a,0x2a,0x49,0x02,0x40,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0xc4,0x64,0x54,0x55,0x85,0x85,0x03,0x01 -+// 32009 紉 ; -+,0x08,0x08,0x11,0x11,0x22,0x7c,0x04,0x0a,0x11,0x3f,0x01,0x2a,0x29,0x25,0x45,0x00,0x00,0xff,0x11,0x11,0x11,0x11,0x51,0x51,0x91,0x11,0x21,0x21,0x21,0x42,0x4a,0x84 -+// 32010 紊 ; -+,0x00,0x3f,0x04,0x02,0x01,0x06,0x79,0x02,0x0f,0x02,0x0f,0x00,0x04,0x08,0x32,0x01,0x80,0xfe,0x10,0x20,0xc0,0x3f,0x82,0x30,0xc0,0x10,0xfc,0x84,0x90,0x8c,0x84,0x00 -+// 32011 紋 ; -+,0x10,0x10,0x10,0x23,0x24,0x78,0x10,0x10,0x24,0x7e,0x02,0x54,0x4a,0x4a,0x48,0x01,0x40,0x20,0x20,0xff,0x84,0x84,0x84,0x48,0x48,0x30,0x10,0x28,0x28,0x44,0x87,0x02 -+// 32012 紌 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x41,0x02,0x20,0x28,0x24,0x24,0x20,0xff,0x28,0x28,0x28,0x48,0x48,0x48,0x89,0x89,0x09,0x07 -+// 32013 納 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x02,0x00,0x2a,0x2a,0x2a,0x40,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xaa,0xa6,0xc2,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 32014 紎 ; -+,0x08,0x08,0x10,0x12,0x22,0x7d,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x41,0x02,0x20,0x28,0x24,0x24,0x20,0xff,0x20,0x20,0x20,0x50,0x50,0x48,0x88,0x84,0x03,0x02 -+// 32015 紏 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x14,0x22,0x7e,0x00,0x2a,0x25,0x25,0x45,0x00,0x04,0x84,0x44,0x64,0x24,0x84,0x44,0x64,0x24,0x07,0xfc,0x04,0x04,0x04,0x04,0x04 -+// 32016 紐 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x08,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x43,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0xff,0x00 -+// 32017 紑 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x08,0x14,0x22,0x7e,0x01,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xff,0x08,0x08,0x10,0x10,0x30,0x38,0x54,0x92,0x13,0x11,0x10,0x10,0x10,0x10 -+// 32018 紒 ; -+,0x08,0x08,0x12,0x12,0x24,0x79,0x14,0x22,0x7e,0x22,0x00,0x2a,0x2a,0x2a,0x41,0x02,0x10,0x30,0x28,0x48,0x84,0x03,0x4a,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 32019 紓 ; -+,0x08,0x09,0x10,0x12,0x24,0x79,0x10,0x24,0x7e,0x02,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x04,0x48,0x30,0xff,0x22,0x24,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x40 -+// 32020 純 ; -+,0x08,0x08,0x10,0x11,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 32021 紕 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x14,0x22,0x7e,0x02,0x54,0x4a,0x4a,0x4a,0x00,0x90,0x90,0x90,0x90,0x90,0x92,0xfc,0x90,0x90,0x90,0x90,0x90,0x91,0xb1,0xd1,0x8f -+// 32022 紖 ; -+,0x08,0x08,0x12,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x25,0x25,0x45,0x00,0x02,0xf2,0x12,0x12,0x12,0xf2,0x82,0x82,0xf2,0x12,0x12,0x12,0x12,0x12,0x52,0x22 -+// 32023 紗 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x22,0x7f,0x01,0x2a,0x29,0x29,0x41,0x06,0x10,0x10,0x10,0x54,0x52,0x93,0x91,0x10,0x12,0x12,0x04,0x08,0x10,0x60,0x80,0x00 -+// 32024 紘 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x12,0x22,0x7e,0x02,0x2a,0x2b,0x29,0x42,0x04,0x20,0x20,0x22,0xff,0x20,0x28,0x2c,0x48,0x50,0x50,0x90,0xa4,0x22,0x7f,0x21,0x00 -+// 32025 紙 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0x0e,0xf0,0x90,0x90,0x90,0xff,0x90,0x90,0x88,0x88,0x89,0x85,0xa5,0xc3,0x81 -+// 32026 級 ; -+,0x09,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2b,0x2b,0x21,0x42,0x04,0xfe,0x44,0x44,0x48,0x48,0x5e,0x42,0x42,0xa4,0xa4,0x94,0x18,0x18,0x24,0x47,0x82 -+// 32027 紛 ; -+,0x08,0x08,0x10,0x12,0x25,0x7d,0x0a,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x41,0x02,0x10,0x90,0xc8,0x88,0x04,0x07,0x02,0xfc,0x44,0x44,0x44,0x44,0x84,0x84,0x28,0x10 -+// 32028 紜 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x09,0x14,0x22,0x7e,0x04,0x22,0x2a,0x29,0x40,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x48,0x44,0x84,0xfe,0x02,0x00 -+// 32029 紝 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x00 -+// 32030 紞 ; -+,0x08,0x08,0x10,0x15,0x25,0x78,0x10,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x29,0x42,0x04,0x20,0x20,0x20,0xff,0x22,0x20,0x20,0x20,0x50,0x50,0x50,0x90,0x91,0x11,0x11,0x0f -+// 32031 紟 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x0a,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x20,0x50,0x48,0x8c,0x07,0x22,0x10,0x00,0xfc,0x04,0x08,0x10,0x10,0x20,0x20 -+// 32032 素 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x01,0x02,0x0f,0x02,0x1f,0x00,0x04,0x08,0x32,0x01,0x80,0xfe,0x80,0xfc,0x80,0xff,0x00,0x20,0xc0,0x08,0xfc,0x84,0x90,0x88,0x84,0x00 -+// 32033 紡 ; -+,0x08,0x08,0x10,0x11,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x41,0x02,0x20,0x10,0x10,0xff,0x20,0x20,0x3e,0x22,0x22,0x42,0x42,0x42,0x82,0x84,0x14,0x08 -+// 32034 索 ; -+,0x00,0x1f,0x00,0x00,0x3f,0x21,0x02,0x0f,0x01,0x06,0x0f,0x00,0x08,0x08,0x12,0x01,0x80,0xfc,0x80,0x80,0xfe,0x04,0x40,0xe0,0x80,0x10,0xf8,0x88,0x90,0x88,0x88,0x00 -+// 32035 紣 ; -+,0x08,0x08,0x12,0x12,0x24,0x7c,0x08,0x14,0x22,0x7e,0x00,0x00,0x2a,0x2a,0x4a,0x00,0x20,0x20,0xfc,0x24,0x24,0x45,0x45,0x93,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 32036 紤 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x22,0x7f,0x01,0x2a,0x2a,0x28,0x41,0x02,0x00,0x0e,0x70,0x40,0x40,0x7f,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x84,0x04,0x04 -+// 32037 紥 ; -+,0x02,0x3f,0x02,0x07,0x3a,0x0a,0x05,0x02,0x07,0x02,0x0f,0x00,0x08,0x08,0x12,0x01,0x20,0xa0,0x20,0xa1,0x21,0x9f,0x00,0x40,0x80,0x08,0xfc,0x84,0x90,0x8c,0x84,0x00 -+// 32038 紦 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x7f -+// 32039 紧 ; -+,0x04,0x25,0x24,0x24,0x24,0x24,0x03,0x02,0x07,0x01,0x07,0x00,0x08,0x08,0x12,0x01,0x00,0xfe,0x44,0x48,0x30,0xcf,0x82,0x20,0xc0,0x08,0xfc,0x84,0x90,0x8c,0x84,0x00 -+// 32040 紨 ; -+,0x10,0x10,0x24,0x24,0x78,0x09,0x12,0x28,0x7c,0x00,0x2a,0x2a,0x28,0x40,0x00,0x00,0x44,0x44,0x44,0x84,0x84,0xff,0x84,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x94,0x88 -+// 32041 紩 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x09,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x01,0x10,0x50,0x50,0x50,0xfe,0x90,0x10,0x10,0xff,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 32042 紪 ; -+,0x08,0x08,0x10,0x12,0x24,0x7c,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x41,0x00,0x28,0x28,0x28,0x28,0x29,0xba,0xac,0xa8,0xa8,0xa8,0xa8,0xa9,0xb9,0xc9,0x87,0x00 -+// 32043 紫 ; -+,0x04,0x14,0x17,0x14,0x17,0x38,0x01,0x02,0x0f,0x02,0x1f,0x08,0x08,0x10,0x22,0x01,0x20,0x26,0xb8,0x20,0x21,0x9f,0x00,0x60,0x80,0x08,0xfc,0x84,0x90,0x88,0x84,0x00 -+// 32044 紬 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82 -+// 32045 紭 ; -+,0x08,0x09,0x10,0x12,0x24,0x79,0x09,0x11,0x25,0x7e,0x00,0x2a,0x2a,0x28,0x41,0x00,0x04,0xe4,0x24,0x24,0x24,0xe8,0x08,0x08,0xc8,0x48,0x52,0x52,0x51,0x7f,0x41,0x81 -+// 32046 紮 ; -+,0x04,0x3f,0x0e,0x15,0x24,0x45,0x02,0x07,0x01,0x02,0x0f,0x00,0x08,0x08,0x11,0x00,0x20,0xa0,0x21,0x21,0x9f,0x00,0x30,0xc0,0x90,0x08,0xfc,0x44,0x48,0x44,0x44,0x80 -+// 32047 累 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x02,0x07,0x00,0x03,0x07,0x00,0x04,0x04,0x09,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0x10,0xe0,0x90,0x08,0xfc,0x44,0x50,0x4c,0x44,0x80 -+// 32048 細 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 32049 紱 ; -+,0x08,0x08,0x10,0x12,0x25,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x29,0x42,0x04,0x40,0x48,0x46,0x42,0xff,0x40,0x7c,0x44,0x44,0xa8,0xa8,0x90,0x18,0x24,0x47,0x82 -+// 32050 紲 ; -+,0x08,0x08,0x10,0x14,0x24,0x7b,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x24,0xa4,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0xa4,0xbc,0x80,0x80,0xff,0x00 -+// 32051 紳 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x10,0x10,0x10,0x10 -+// 32052 紴 ; -+,0x08,0x08,0x12,0x12,0x24,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x29,0x42,0x04,0x10,0x10,0x10,0xff,0x91,0x92,0x90,0xfe,0xa2,0xa4,0x94,0x88,0x08,0x14,0x27,0x42 -+// 32053 紵 ; -+,0x08,0x08,0x10,0x11,0x25,0x78,0x08,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x10,0x10,0xff,0x01,0x02,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 32054 紶 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x20,0x20,0x42,0x81,0xff,0x01 -+// 32055 紷 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x09,0x10,0x22,0x7f,0x01,0x00,0x29,0x29,0x49,0x00,0x10,0x10,0x28,0x28,0x44,0xa7,0x12,0x10,0xfe,0x04,0x08,0x50,0x20,0x30,0x10,0x00 -+// 32056 紸 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x22,0x7f,0x01,0x2a,0x2a,0x2a,0x41,0x00,0x20,0x10,0x10,0x00,0xfe,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 32057 紹 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x22,0x22,0x22,0x42,0x4a,0x84,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 32058 紺 ; -+,0x08,0x08,0x10,0x14,0x25,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x84,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 32059 紻 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x01,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 32060 紼 ; -+,0x10,0x10,0x11,0x24,0x28,0x79,0x11,0x25,0x7d,0x00,0x2a,0x2a,0x2a,0x48,0x01,0x02,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xff,0x49,0x49,0x4d,0x8a,0x88,0x08,0x08 -+// 32061 紽 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x10,0x10,0xff,0x81,0x00,0x40,0x42,0x4c,0x70,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 32062 紾 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x14,0x22,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x03,0x10,0x10,0x28,0x24,0x43,0x8a,0x10,0x24,0xc8,0x10,0x22,0xc4,0x08,0x30,0xc0,0x00 -+// 32063 紿 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x22,0x7f,0x01,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x20,0x24,0x42,0x41,0xff,0x01,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 32064 絀 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0xfe,0x10,0x92,0x92,0x92,0x92,0x92,0xfe,0x82 -+// 32065 絁 ; -+,0x08,0x08,0x10,0x14,0x25,0x7a,0x08,0x10,0x25,0x7c,0x04,0x2a,0x2a,0x28,0x40,0x00,0x40,0x40,0xff,0x80,0x10,0x12,0x9f,0xf2,0x92,0x92,0x9a,0x94,0x91,0x81,0x7f,0x00 -+// 32066 終 ; -+,0x08,0x08,0x10,0x14,0x25,0x7a,0x08,0x10,0x25,0x7c,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x40,0x40,0xfc,0x84,0x48,0x30,0x30,0x4c,0xa7,0x12,0x10,0x40,0x20,0x18,0x08,0x00 -+// 32067 絃 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x10,0x00,0xff,0x20,0x20,0x48,0x48,0xf0,0x10,0x20,0x24,0x42,0xff,0x01,0x00 -+// 32068 組 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x14,0x22,0x7e,0x00,0x2a,0x2a,0x28,0x43,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 32069 絅 ; -+,0x08,0x08,0x10,0x10,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x82,0x82,0x82,0xba,0xaa,0xaa,0xaa,0xaa,0xba,0x82,0x82,0x82,0x8a,0x84 -+// 32070 絆 ; -+,0x08,0x08,0x10,0x10,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x92,0x52,0x54,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32071 絇 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x0a,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x40,0x60,0x40,0xff,0x81,0x01,0x79,0x49,0x49,0x49,0x79,0x01,0x01,0x01,0x0a,0x04 -+// 32072 絈 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 32073 絉 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x14,0x22,0x7e,0x04,0x2a,0x2b,0x2a,0x40,0x00,0x10,0x14,0x12,0x10,0xff,0x10,0x38,0x38,0x54,0x54,0x94,0x92,0x13,0x12,0x10,0x10 -+// 32074 絊 ; -+,0x08,0x08,0x10,0x14,0x25,0x78,0x08,0x10,0x24,0x7e,0x01,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x20,0x20,0x20,0xff,0x70,0x68,0xa8,0xa4,0xa4,0x23,0xfa,0x20,0x20,0x20,0x20 -+// 32075 絋 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x14,0x22,0x7e,0x05,0x2b,0x29,0x2a,0x40,0x00,0x20,0x10,0x10,0xff,0x80,0x90,0x90,0x90,0xa0,0xa0,0x28,0x44,0x42,0xfe,0x02,0x00 -+// 32076 経 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x2a,0x41,0x00,0x00,0xfe,0x42,0x24,0x28,0x10,0x28,0x47,0x92,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 32077 絍 ; -+,0x08,0x08,0x10,0x12,0x22,0x7d,0x0a,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0x40,0x46,0xb8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0xbe,0x80 -+// 32078 絎 ; -+,0x08,0x08,0x10,0x14,0x25,0x7a,0x10,0x25,0x7e,0x00,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0x40,0x5f,0x80,0x20,0x40,0xbf,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88 -+// 32079 絏 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2b,0x40,0x00,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x16,0x18,0x69,0x85,0x03,0x01 -+// 32080 結 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32081 絑 ; -+,0x08,0x08,0x12,0x12,0x25,0x7d,0x0a,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x2b,0x40,0x00,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xff,0x10,0x38,0x34,0x54,0x93,0x12,0x10,0x10 -+// 32082 絒 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x09,0x12,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x41,0x02,0x41,0x49,0x49,0x49,0x49,0x49,0x6d,0x5b,0x49,0x49,0x49,0x49,0x89,0x89,0x09,0x01 -+// 32083 絓 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x09,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x43,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 32084 絔 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32085 絕 ; -+,0x08,0x09,0x10,0x12,0x22,0x7d,0x08,0x14,0x22,0x7e,0x14,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x22,0x42,0x94,0x08,0xfe,0x92,0x92,0x92,0xfe,0x80,0x81,0x81,0x81,0x7f -+// 32086 絖 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x0b,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x41,0x02,0x20,0x20,0x20,0x22,0xa4,0xa8,0xff,0x50,0x50,0x50,0x50,0x90,0x91,0x91,0x11,0x0f -+// 32087 絗 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x34,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x82,0x82,0x82,0xba,0xaa,0xaa,0xaa,0xaa,0xba,0x82,0x82,0x82,0xfe,0x82 -+// 32088 絘 ; -+,0x08,0x08,0x11,0x10,0x24,0x78,0x08,0x10,0x24,0x7d,0x04,0x28,0x2a,0x2a,0x40,0x01,0x10,0x18,0x10,0x9f,0xa1,0x4a,0x48,0x48,0x88,0x98,0x94,0xa4,0xa4,0x42,0x83,0x02 -+// 32089 絙 ; -+,0x08,0x09,0x10,0x24,0x78,0x08,0x10,0x24,0x7e,0x02,0x00,0x2a,0x2a,0x48,0x03,0x00,0x00,0xfe,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x00,0x00,0xff,0x00 -+// 32090 絚 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x08,0x14,0x22,0x7e,0x00,0x2a,0x2a,0x2a,0x41,0x00,0x00,0xff,0x20,0x20,0x3e,0x42,0x42,0x52,0x8a,0xa2,0x34,0x14,0x04,0x04,0xff,0x00 -+// 32091 絛 ; -+,0x08,0x0c,0x08,0x10,0x11,0x30,0x55,0x14,0x14,0x14,0x14,0x14,0x14,0x11,0x12,0x10,0x40,0x7e,0xc4,0xa8,0x18,0x67,0x92,0x24,0xf8,0x24,0xfe,0x12,0x94,0x12,0x51,0x20 -+// 32092 絜 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x05,0x02,0x0f,0x02,0x0f,0x00,0x08,0x08,0x12,0x01,0x00,0x7e,0x22,0x22,0x22,0x4a,0x84,0x40,0x80,0x08,0xfc,0x84,0x90,0x88,0x84,0x00 -+// 32093 絝 ; -+,0x08,0x08,0x11,0x24,0x78,0x09,0x10,0x28,0x7d,0x04,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x20,0xfe,0x50,0x88,0x07,0xfa,0x00,0xfe,0x40,0x78,0x08,0x08,0x08,0x50,0x20 -+// 32094 絞 ; -+,0x08,0x08,0x10,0x11,0x24,0x78,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x03,0x20,0x10,0x10,0xff,0x00,0x48,0x44,0x86,0x44,0x48,0x28,0x10,0x28,0x44,0x87,0x02 -+// 32095 絟 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x0a,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x43,0x00,0x20,0x20,0x50,0x48,0x84,0x07,0xfa,0x20,0x20,0xf8,0x20,0x20,0x20,0x20,0xfe,0x00 -+// 32096 絠 ; -+,0x08,0x08,0x10,0x11,0x22,0x7c,0x08,0x10,0x25,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x20,0x20,0x20,0xff,0x40,0x40,0xfe,0xc2,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 32097 絡 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x40,0x40,0x7e,0x84,0xc8,0x30,0x28,0x47,0x82,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 32098 絢 ; -+,0x08,0x08,0x12,0x12,0x25,0x7c,0x08,0x14,0x22,0x7e,0x02,0x2a,0x2a,0x2a,0x40,0x00,0x40,0x40,0x7f,0x81,0x01,0xf9,0x89,0x89,0xf9,0x89,0x89,0xf9,0x89,0x02,0x0a,0x04 -+// 32099 絣 ; -+,0x08,0x08,0x12,0x22,0x7d,0x08,0x10,0x24,0x7f,0x00,0x2a,0x2a,0x2a,0x40,0x01,0x02,0x00,0x82,0x44,0x48,0xfe,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 32100 絤 ; -+,0x08,0x0b,0x10,0x10,0x24,0x79,0x09,0x11,0x25,0x7f,0x01,0x25,0x2b,0x29,0x41,0x01,0x00,0xff,0x48,0x48,0x48,0xfe,0x4a,0x4a,0x4a,0x4a,0x46,0x82,0x02,0x02,0xfe,0x02 -+// 32101 絥 ; -+,0x08,0x08,0x10,0x10,0x24,0x79,0x0b,0x11,0x25,0x7d,0x01,0x55,0x55,0x55,0x41,0x01,0x00,0x90,0x94,0x92,0x92,0x7f,0x28,0x28,0x28,0x28,0x24,0x24,0x44,0x42,0x83,0x02 -+// 32102 給 ; -+,0x10,0x10,0x10,0x24,0x24,0x79,0x16,0x28,0x24,0x7d,0x03,0x55,0x55,0x55,0x41,0x00,0x20,0x20,0x70,0x50,0x88,0x04,0xfb,0x02,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 32103 絧 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x10,0x22,0x7e,0x02,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xff,0x81,0xbd,0x81,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82 -+// 32104 絨 ; -+,0x08,0x08,0x10,0x15,0x24,0x78,0x10,0x24,0x7d,0x00,0x54,0x55,0x55,0x42,0x04,0x00,0x10,0x14,0x12,0xff,0x10,0x92,0x93,0x92,0xd4,0x8c,0x88,0x19,0x25,0x45,0x83,0x01 -+// 32105 絩 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x08,0x10,0x24,0x7f,0x00,0x2a,0x2a,0x29,0x42,0x04,0x50,0x50,0x50,0x52,0x52,0x54,0xd8,0x50,0xd8,0x54,0x52,0x90,0x91,0x11,0x11,0x0f -+// 32106 絪 ; -+,0x10,0x11,0x25,0x25,0x79,0x09,0x11,0x25,0x7d,0x05,0x2b,0x2b,0x29,0x41,0x01,0x01,0x00,0xff,0x11,0x11,0x11,0x7d,0x11,0x11,0x29,0x29,0x45,0x85,0x01,0x01,0xff,0x01 -+// 32107 絫 ; -+,0x01,0x02,0x07,0x04,0x09,0x1f,0x01,0x02,0x07,0x01,0x0f,0x00,0x08,0x08,0x12,0x01,0x20,0x10,0xf8,0x14,0x22,0x7e,0x42,0x10,0xe0,0x08,0xfc,0x84,0x90,0x8c,0x84,0x00 -+// 32108 絬 ; -+,0x08,0x08,0x12,0x24,0x78,0x09,0x10,0x24,0x7e,0x02,0x00,0x2a,0x2a,0x4a,0x00,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 32109 絭 ; -+,0x08,0x04,0x00,0x1f,0x01,0x3f,0x04,0x09,0x12,0x27,0x02,0x07,0x00,0x04,0x09,0x00,0x84,0x88,0x90,0xfc,0x00,0xff,0x90,0x0c,0x67,0x82,0x08,0xfc,0x40,0x48,0x44,0x80 -+// 32110 絮 ; -+,0x04,0x3f,0x09,0x11,0x0a,0x06,0x39,0x02,0x07,0x01,0x07,0x00,0x08,0x08,0x11,0x00,0x00,0xbe,0x22,0x22,0x22,0x3e,0x00,0x20,0xc0,0x08,0xfc,0x44,0x48,0x46,0x42,0x80 -+// 32111 絯 ; -+,0x08,0x08,0x10,0x11,0x24,0x78,0x08,0x14,0x22,0x7e,0x01,0x2a,0x2a,0x28,0x43,0x00,0x20,0x10,0x10,0xff,0x20,0x44,0xfc,0x08,0x10,0x64,0x88,0x10,0x28,0xc6,0x02,0x00 -+// 32112 絰 ; -+,0x08,0x09,0x10,0x12,0x24,0x78,0x09,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x43,0x00,0x00,0xff,0x20,0x40,0x44,0x82,0xff,0x11,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 32113 統 ; -+,0x08,0x08,0x11,0x14,0x24,0x78,0x09,0x10,0x24,0x7e,0x02,0x54,0x54,0x55,0x02,0x04,0x20,0x10,0xff,0x20,0x48,0x84,0xfe,0x02,0x50,0x50,0x50,0x90,0x91,0x11,0x11,0x0f -+// 32114 絲 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x10,0x12,0x22,0x44,0xf8,0x10,0x24,0x42,0xff,0x11,0x54,0x52,0x91,0x11,0x50,0x20 -+// 32115 絳 ; -+,0x08,0x08,0x10,0x14,0x25,0x7a,0x08,0x11,0x24,0x7d,0x00,0x55,0x55,0x54,0x00,0x00,0x40,0x40,0xfe,0x84,0x48,0x30,0x48,0xa7,0x22,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20 -+// 32116 絴 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x08,0x10,0x14,0x22,0x7e,0x02,0x2a,0x2a,0x2a,0x40,0x42,0x22,0x24,0xff,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 32117 絵 ; -+,0x08,0x08,0x10,0x12,0x24,0x7d,0x0a,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x28,0x41,0x00,0x20,0x20,0x50,0x48,0x84,0x77,0x02,0x00,0xff,0x20,0x20,0x40,0x48,0x84,0xfe,0x02 -+// 32118 絶 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x0a,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x20,0x7c,0x44,0x88,0xfe,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x81,0x81,0x7f -+// 32119 絷 ; -+,0x04,0x04,0x3e,0x04,0x0e,0x34,0x14,0x09,0x02,0x0f,0x02,0x0f,0x00,0x08,0x12,0x21,0x20,0x20,0xfc,0xa4,0x44,0x65,0x95,0x03,0x40,0x80,0x10,0xf8,0x80,0x90,0x8c,0x04 -+// 32120 絸 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x01,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x48,0x48,0x89,0x89,0x07 -+// 32121 絹 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x8a,0x84 -+// 32122 絺 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x0b,0x10,0x28,0x7d,0x02,0x28,0x2a,0x2a,0x40,0x00,0x82,0x64,0x18,0x26,0xe2,0x20,0xff,0x50,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 32123 絻 ; -+,0x08,0x08,0x10,0x12,0x25,0x7a,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x41,0x02,0x40,0x40,0x7c,0x88,0x10,0xfe,0x92,0x92,0xfe,0x28,0x28,0x48,0x48,0x89,0x09,0x07 -+// 32124 絼 ; -+,0x08,0x08,0x11,0x12,0x24,0x7c,0x08,0x11,0x28,0x7c,0x05,0x00,0x54,0x57,0x00,0x00,0x06,0x38,0xd0,0x8b,0x4c,0x30,0x48,0x8c,0x12,0x66,0x8a,0x32,0xc2,0x02,0x14,0x08 -+// 32125 絽 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x14,0x22,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0xff,0x81,0x81,0x81,0x81,0x81,0xff,0x81 -+// 32126 絾 ; -+,0x08,0x08,0x10,0x10,0x25,0x79,0x11,0x25,0x7d,0x05,0x01,0x55,0x55,0x52,0x02,0x04,0x10,0x14,0x12,0x10,0xff,0x10,0x11,0xe9,0x29,0x2a,0x2a,0xac,0x49,0x15,0x23,0xc1 -+// 32127 絿 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x2a,0x40,0x00,0x10,0x14,0x12,0x12,0xff,0x10,0x92,0x54,0x38,0x38,0x54,0x94,0x13,0x12,0x50,0x20 -+// 32128 綀 ; -+,0x08,0x08,0x13,0x10,0x24,0x7d,0x09,0x11,0x25,0x7c,0x04,0x2a,0x2b,0x2a,0x40,0x00,0x20,0x20,0xff,0x20,0x20,0xfc,0x24,0x24,0xfc,0x30,0x68,0xa4,0x27,0x22,0x20,0x20 -+// 32129 綁 ; -+,0x08,0x08,0x13,0x14,0x24,0x7b,0x10,0x14,0x24,0x7f,0x04,0x2a,0x2b,0x29,0x42,0x04,0x80,0x8f,0xe9,0x89,0x89,0xea,0x8a,0x89,0x89,0xe9,0x8d,0x8a,0x08,0x08,0x08,0x08 -+// 32130 綂 ; -+,0x08,0x08,0x13,0x14,0x24,0x79,0x09,0x11,0x25,0x7f,0x00,0x2a,0x2a,0x29,0x41,0x02,0x20,0x10,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x90,0x90,0x91,0x11,0x11,0x0f -+// 32131 綃 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x10,0x10,0x92,0x52,0x54,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 32132 綄 ; -+,0x08,0x08,0x11,0x11,0x20,0x7c,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x28,0x41,0x02,0x20,0x10,0xff,0x01,0x00,0xfc,0x00,0x00,0xff,0x48,0x48,0x48,0x89,0x89,0x09,0x07 -+// 32133 綅 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x12,0x3f,0x01,0x2a,0x29,0x29,0x40,0x01,0x00,0x7e,0x02,0x7e,0x02,0x7e,0x00,0xff,0x81,0x7e,0x44,0x28,0x10,0x28,0x44,0x87,0x02 -+// 32134 綆 ; -+,0x08,0x0b,0x10,0x15,0x25,0x79,0x09,0x11,0x25,0x7f,0x00,0x2a,0x2a,0x28,0x43,0x0c,0x00,0xff,0x10,0xfe,0x12,0x12,0xfe,0x22,0x22,0xfe,0xa0,0x40,0x60,0x98,0x07,0x02 -+// 32135 綇 ; -+,0x08,0x0b,0x10,0x14,0x25,0x79,0x09,0x11,0x25,0x7f,0x01,0x25,0x2b,0x2b,0x51,0x01,0x00,0xff,0x28,0x28,0xff,0x29,0x29,0x49,0x87,0x01,0xff,0x01,0x01,0x01,0xff,0x01 -+// 32136 綈 ; -+,0x08,0x08,0x11,0x14,0x24,0x79,0x11,0x25,0x7d,0x00,0x2a,0x2a,0x29,0x42,0x04,0x00,0x84,0x48,0xfe,0x22,0x22,0xfe,0x20,0x20,0xfe,0x62,0xa2,0xa2,0x2a,0x24,0x20,0x20 -+// 32137 綉 ; -+,0x08,0x09,0x10,0x15,0x26,0x7c,0x0b,0x11,0x24,0x7e,0x14,0x2a,0x2a,0x21,0x42,0x00,0x1e,0xe0,0x20,0xff,0x70,0xac,0x27,0xfa,0x48,0x50,0x5e,0x82,0x82,0x02,0x14,0x08 -+// 32138 綊 ; -+,0x08,0x08,0x10,0x15,0x24,0x78,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x01,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x92,0x55,0x39,0x10,0x28,0x28,0x44,0x87,0x02 -+// 32139 綋 ; -+,0x08,0x08,0x11,0x15,0x24,0x78,0x09,0x10,0x24,0x7e,0x02,0x2a,0x2b,0x2a,0x44,0x00,0x20,0x10,0xff,0x21,0x30,0x20,0xff,0x20,0x50,0x50,0xa0,0xa2,0x42,0xff,0x41,0x00 -+// 32140 綌 ; -+,0x08,0x08,0x10,0x12,0x25,0x7c,0x08,0x10,0x25,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x08,0x44,0x42,0x82,0x28,0x24,0x44,0x82,0x01,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32141 綍 ; -+,0x08,0x08,0x11,0x10,0x24,0x79,0x09,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x02,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 32142 綎 ; -+,0x08,0x0b,0x10,0x14,0x25,0x79,0x13,0x10,0x24,0x7e,0x01,0x2a,0x2b,0x29,0x42,0x04,0x00,0xc7,0xb8,0x88,0x08,0x3f,0xc8,0x48,0x48,0x88,0xbe,0x80,0x40,0x30,0x0f,0x02 -+// 32143 綏 ; -+,0x08,0x09,0x10,0x15,0x24,0x78,0x08,0x10,0x25,0x7c,0x00,0x2a,0x2a,0x28,0x40,0x07,0x1e,0xe0,0x00,0x22,0x92,0x94,0x20,0x20,0xff,0x44,0x44,0xe8,0x18,0x34,0xc3,0x01 -+// 32144 綐 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x22,0x7f,0x00,0x2a,0x2a,0x28,0x41,0x02,0x00,0x82,0x44,0x48,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x48,0x49,0x89,0x09,0x07 -+// 32145 綑 ; -+,0x08,0x09,0x11,0x11,0x25,0x79,0x09,0x11,0x25,0x7d,0x03,0x55,0x55,0x55,0x41,0x01,0x00,0xff,0x11,0x11,0x11,0x7d,0x31,0x39,0x55,0x55,0x91,0x11,0x11,0x01,0xff,0x01 -+// 32146 綒 ; -+,0x08,0x09,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x0f,0xf0,0x00,0x22,0x92,0x54,0xfe,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 32147 經 ; -+,0x08,0x0b,0x11,0x15,0x25,0x7a,0x09,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x41,0x00,0x00,0xfe,0x24,0x24,0x48,0x48,0x24,0x92,0x00,0xfc,0x20,0x20,0x20,0x20,0xff,0x00 -+// 32148 綔 ; -+,0x08,0x08,0x7f,0x14,0x22,0x3f,0x40,0x7f,0x10,0x10,0x1e,0x02,0x02,0x02,0x15,0x08,0x0e,0xf0,0x10,0x10,0x24,0x78,0x14,0x22,0x7f,0x11,0x54,0x52,0x91,0x91,0x50,0x20 -+// 32149 綕 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x02,0x25,0x2b,0x29,0x40,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x00,0x10,0x4a,0x49,0x45,0x44,0x3c,0x00 -+// 32150 綖 ; -+,0x08,0x0b,0x10,0x10,0x24,0x79,0x09,0x10,0x24,0x7e,0x02,0x55,0x54,0x41,0x02,0x04,0x00,0xc3,0x5c,0x84,0x94,0x17,0xd4,0x54,0x54,0x54,0x9f,0x80,0xc0,0x30,0x0f,0x02 -+// 32151 綗 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x00,0xff,0x81,0xa9,0xa9,0xa5,0xc3,0xbd,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82 -+// 32152 綘 ; -+,0x08,0x08,0x10,0x15,0x24,0x78,0x13,0x25,0x7e,0x02,0x28,0x2b,0x2a,0x40,0x00,0x00,0x40,0x7c,0x88,0x50,0x30,0xcf,0x22,0xfc,0x20,0xfc,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 32153 継 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x00,0x08,0x88,0xc9,0xaa,0xac,0x88,0xff,0x98,0x9c,0xaa,0xaa,0xc8,0x88,0x88,0xff,0x00 -+// 32154 続 ; -+,0x08,0x08,0x11,0x10,0x22,0x7c,0x09,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x41,0x02,0x20,0x20,0xfe,0x20,0xfc,0x00,0xff,0x01,0x48,0x48,0x48,0x48,0x89,0x89,0x09,0x07 -+// 32155 綛 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x08,0x10,0x24,0x7e,0x02,0x28,0x25,0x25,0x40,0x00,0x00,0xfe,0x12,0x92,0x92,0x22,0x22,0x4a,0x84,0x20,0x12,0x51,0x45,0x44,0x3c,0x00 -+// 32156 綜 ; -+,0x08,0x08,0x10,0x12,0x23,0x7c,0x08,0x10,0x25,0x7e,0x02,0x54,0x55,0x52,0x04,0x00,0x20,0x10,0xff,0x81,0x02,0xfe,0x00,0x00,0xff,0x10,0x14,0x92,0x11,0x11,0x50,0x20 -+// 32157 綝 ; -+,0x10,0x10,0x20,0x28,0x4b,0x70,0x15,0x25,0x7d,0x06,0x52,0x54,0x54,0x40,0x00,0x00,0x88,0x88,0x88,0x88,0xdf,0x8c,0xdc,0xda,0xaa,0xaa,0xab,0xca,0x88,0x88,0x88,0x88 -+// 32158 綞 ; -+,0x08,0x08,0x10,0x14,0x25,0x78,0x10,0x15,0x22,0x7e,0x01,0x2a,0x2a,0x2a,0x40,0x00,0x0e,0xf0,0x10,0x10,0xff,0x92,0x92,0xff,0x92,0x92,0xff,0x10,0x10,0x10,0xfe,0x00 -+// 32159 綟 ; -+,0x08,0x08,0x11,0x15,0x25,0x79,0x09,0x11,0x25,0x7d,0x01,0x55,0x55,0x52,0x02,0x05,0x20,0x10,0xfe,0x02,0x02,0xfe,0x14,0x12,0xff,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 32160 綠 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x09,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x28,0x40,0x00,0x40,0x7c,0x44,0x84,0xf8,0x08,0xff,0x24,0xa8,0x70,0x68,0xa4,0x27,0x22,0xa0,0x40 -+// 32161 綡 ; -+,0x08,0x08,0x11,0x10,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x2a,0x40,0x00,0x20,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x10,0x94,0x92,0x13,0x11,0x50,0x20 -+// 32162 綢 ; -+,0x08,0x09,0x11,0x15,0x25,0x79,0x11,0x25,0x7d,0x05,0x2b,0x29,0x2a,0x42,0x04,0x08,0x00,0xfe,0x02,0x12,0x7a,0x12,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 32163 綣 ; -+,0x08,0x09,0x10,0x10,0x27,0x78,0x0b,0x10,0x24,0x7d,0x02,0x24,0x2a,0x28,0x40,0x00,0x20,0x24,0xa4,0xa8,0xfe,0x40,0xff,0x50,0x8c,0xfb,0x8a,0x88,0xa8,0x92,0x82,0x7e -+// 32164 綤 ; -+,0x3f,0x08,0x12,0x3f,0x50,0x1f,0x11,0x02,0x07,0x00,0x03,0x0f,0x02,0x04,0x09,0x00,0xbf,0xa2,0xa4,0xa4,0xa2,0xaa,0xa4,0x18,0xe0,0xd0,0x08,0xfc,0x54,0x48,0x44,0x80 -+// 32165 綥 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x01,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x44,0x44,0x44,0x84,0x84,0x04 -+// 32166 綦 ; -+,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x09,0x12,0x67,0x02,0x0f,0x04,0x0a,0x11,0x10,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xff,0x08,0x64,0x83,0x10,0xf8,0x90,0x88,0x04 -+// 32167 綧 ; -+,0x08,0x0b,0x10,0x10,0x24,0x78,0x08,0x10,0x24,0x7e,0x01,0x34,0x2a,0x2a,0x40,0x00,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 32168 綨 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x01,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0x00,0x44,0x83,0x01 -+// 32169 綩 ; -+,0x08,0x08,0x11,0x15,0x24,0x78,0x08,0x11,0x25,0x7e,0x04,0x12,0x4a,0x49,0x42,0x04,0x20,0x10,0xff,0x01,0x80,0x8e,0xea,0x2a,0x2a,0xaa,0x4e,0x48,0x89,0x09,0x09,0x07 -+// 32170 綪 ; -+,0x08,0x09,0x10,0x14,0x24,0x7b,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x20,0xff,0x20,0xfe,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 32171 綫 ; -+,0x08,0x08,0x10,0x15,0x24,0x78,0x11,0x24,0x7e,0x03,0x28,0x54,0x54,0x40,0x07,0x00,0x50,0x48,0x7f,0xa0,0x2c,0x72,0x8f,0x50,0x48,0xfe,0x40,0x26,0x38,0xc9,0x05,0x03 -+// 32172 綬 ; -+,0x08,0x09,0x11,0x14,0x24,0x79,0x09,0x10,0x24,0x7e,0x00,0x34,0x2a,0x28,0x41,0x06,0x04,0xfe,0x20,0x92,0x94,0xff,0x01,0x00,0xfc,0x88,0x48,0x50,0x30,0x48,0x87,0x02 -+// 32173 維 ; -+,0x08,0x08,0x10,0x14,0x25,0x7a,0x10,0x24,0x7e,0x00,0x04,0x52,0x4a,0x48,0x40,0x00,0x50,0x48,0x80,0xff,0x90,0x90,0xfe,0x90,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80 -+// 32174 綮 ; -+,0x04,0x1f,0x11,0x11,0x1f,0x10,0x21,0x22,0x47,0x01,0x07,0x00,0x08,0x08,0x12,0x01,0x20,0x3f,0x44,0xa8,0x10,0x6c,0x03,0x20,0xc0,0x10,0xf8,0x80,0x90,0x8c,0x84,0x00 -+// 32175 綯 ; -+,0x08,0x08,0x10,0x15,0x26,0x78,0x11,0x24,0x7e,0x00,0x14,0x2a,0x2a,0x28,0x40,0x00,0x80,0x80,0xfe,0x42,0x7a,0xa2,0x22,0xfe,0x22,0xaa,0xaa,0xfa,0x02,0x02,0x14,0x08 -+// 32176 綰 ; -+,0x08,0x08,0x11,0x15,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x10,0xff,0x01,0x00,0xfc,0x84,0x84,0xfc,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 32177 綱 ; -+,0x08,0x09,0x11,0x15,0x25,0x79,0x11,0x25,0x7d,0x03,0x01,0x55,0x55,0x55,0x41,0x01,0x00,0xff,0x01,0x45,0x29,0xff,0x11,0x55,0x55,0x55,0x55,0x7d,0x01,0x01,0x05,0x02 -+// 32178 網 ; -+,0x08,0x09,0x11,0x15,0x25,0x79,0x09,0x11,0x25,0x7f,0x01,0x2b,0x2b,0x29,0x41,0x01,0x00,0xff,0x85,0x45,0x49,0xff,0x21,0x11,0x7d,0x21,0x21,0x21,0x39,0x01,0x05,0x02 -+// 32179 綳 ; -+,0x08,0x09,0x11,0x15,0x25,0x79,0x09,0x15,0x25,0x7d,0x03,0x2b,0x29,0x2a,0x42,0x04,0x00,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0x29,0x31,0xa5,0x42 -+// 32180 綴 ; -+,0x08,0x0b,0x12,0x15,0x24,0x79,0x12,0x23,0x7c,0x06,0x01,0x54,0x55,0x55,0x42,0x00,0x00,0xde,0x42,0x54,0x8c,0x52,0x21,0xde,0x52,0x52,0x8a,0x84,0x4c,0x52,0x23,0x42 -+// 32181 綵 ; -+,0x08,0x09,0x10,0x15,0x24,0x78,0x14,0x25,0x7e,0x02,0x14,0x55,0x51,0x52,0x44,0x00,0x04,0xfe,0x40,0x22,0xa4,0x88,0x30,0xff,0x68,0xa8,0xa4,0x24,0x26,0x23,0x22,0x20 -+// 32182 綶 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7d,0x00,0x34,0x2a,0x2b,0x40,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x38,0x54,0x92,0x13,0x10,0x10 -+// 32183 綷 ; -+,0x08,0x08,0x11,0x14,0x24,0x78,0x10,0x25,0x7e,0x00,0x2d,0x2a,0x2a,0x20,0x40,0x00,0x20,0x10,0xff,0x00,0x44,0x44,0xaa,0x11,0x21,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 32184 綸 ; -+,0x08,0x08,0x10,0x12,0x22,0x7d,0x0a,0x10,0x24,0x7e,0x02,0x34,0x2a,0x2a,0x40,0x00,0x00,0x20,0x30,0x48,0x84,0x7b,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xaa,0x84 -+// 32185 綹 ; -+,0x08,0x08,0x10,0x11,0x25,0x7a,0x10,0x24,0x7d,0x06,0x00,0x2a,0x2a,0x28,0x40,0x00,0x88,0x88,0xe8,0x2c,0x2a,0xc9,0x48,0xa0,0x1f,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 32186 綺 ; -+,0x08,0x08,0x11,0x14,0x24,0x79,0x13,0x24,0x7e,0x02,0x54,0x4a,0x4a,0x4a,0x00,0x00,0x20,0x20,0xfe,0x50,0x88,0x04,0xff,0x04,0xf4,0x94,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 32187 綻 ; -+,0x08,0x08,0x11,0x15,0x24,0x79,0x10,0x24,0x7e,0x02,0x54,0x54,0x51,0x42,0x0c,0x00,0x20,0x10,0xff,0x01,0x00,0xfe,0x10,0x10,0x90,0x9e,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 32188 綼 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x02,0x29,0x2a,0x2a,0x40,0x00,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xa2,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 32189 綽 ; -+,0x08,0x08,0x12,0x12,0x24,0x7c,0x08,0x14,0x22,0x7e,0x00,0x2b,0x2a,0x2a,0x40,0x00,0x10,0x10,0x1e,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32190 綾 ; -+,0x08,0x08,0x10,0x14,0x25,0x78,0x08,0x11,0x24,0x7e,0x00,0x35,0x2a,0x28,0x40,0x01,0x20,0x20,0xfc,0x20,0xff,0x48,0x84,0x42,0x7c,0x84,0xc8,0x30,0x10,0x2c,0x47,0x82 -+// 32191 綿 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x91,0x91,0x91,0x95,0x92,0x10,0x10 -+// 32192 緀 ; -+,0x08,0x0b,0x10,0x15,0x24,0x7b,0x10,0x25,0x7c,0x03,0x28,0x2a,0x2a,0x40,0x00,0x07,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x44,0xc8,0x30,0x28,0xc6,0x02 -+// 32193 緁 ; -+,0x08,0x0b,0x10,0x11,0x24,0x7b,0x08,0x10,0x25,0x7e,0x04,0x2a,0x2a,0x29,0x41,0x02,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0x24,0xfc,0x20,0xbe,0xa0,0xa0,0x60,0x1f,0x00 -+// 32194 緂 ; -+,0x08,0x08,0x11,0x15,0x25,0x78,0x09,0x10,0x29,0x7d,0x01,0x56,0x54,0x50,0x41,0x02,0x20,0x24,0x24,0x28,0x30,0x4c,0x83,0x20,0x22,0x24,0x30,0x50,0x48,0x84,0x07,0x02 -+// 32195 緃 ; -+,0x08,0x08,0x10,0x12,0x24,0x79,0x0a,0x10,0x24,0x7e,0x02,0x28,0x2b,0x29,0x42,0x04,0x44,0x44,0x44,0xa4,0xaa,0x11,0x21,0x90,0x90,0x9f,0x90,0x90,0x50,0x30,0x0f,0x02 -+// 32196 緄 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00,0x88,0x88,0xeb,0x8c,0x88,0xa9,0xc9,0x87 -+// 32197 緅 ; -+,0x08,0x0b,0x11,0x15,0x25,0x79,0x09,0x11,0x25,0x7f,0x01,0x55,0x57,0x54,0x40,0x00,0x00,0xf0,0x20,0x3f,0xe9,0x29,0x29,0xea,0x2a,0x24,0x34,0xea,0x2a,0x33,0x22,0x20 -+// 32198 緆 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x27,0x7e,0x04,0x2a,0x2a,0x28,0x43,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x2a,0x2a,0x4a,0x92,0x22,0xc2,0x14,0x08 -+// 32199 緇 ; -+,0x08,0x08,0x10,0x15,0x25,0x78,0x08,0x14,0x22,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x93,0xda,0x92,0x24,0x24,0x92,0x9b,0x52,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 32200 緈 ; -+,0x08,0x08,0x10,0x12,0x22,0x7d,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x44,0x28,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32201 緉 ; -+,0x08,0x0b,0x10,0x10,0x25,0x79,0x09,0x11,0x25,0x7f,0x01,0x55,0x55,0x41,0x01,0x01,0x00,0xff,0x10,0x10,0xff,0x11,0x11,0x99,0x55,0xbb,0x11,0x11,0x11,0x11,0x15,0x02 -+// 32202 緊 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x02,0x07,0x01,0x02,0x07,0x00,0x08,0x0a,0x11,0x7e,0x24,0x24,0x28,0x18,0x67,0x82,0x20,0xc0,0x00,0x10,0xf8,0x84,0x90,0x8c,0x04 -+// 32203 緋 ; -+,0x08,0x08,0x10,0x13,0x24,0x78,0x08,0x11,0x24,0x7c,0x00,0x2b,0x2a,0x28,0x40,0x00,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0xce,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48 -+// 32204 緌 ; -+,0x08,0x09,0x10,0x15,0x24,0x78,0x11,0x24,0x7e,0x03,0x00,0x54,0x54,0x40,0x01,0x06,0x1c,0xe0,0x20,0xff,0x70,0xa8,0x27,0x22,0x40,0xff,0x48,0xc8,0x30,0x6c,0x86,0x02 -+// 32205 緍 ; -+,0x08,0x09,0x11,0x15,0x25,0x79,0x09,0x11,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x00,0x0e,0xf0,0x10,0xff,0x08,0x48,0x85,0x03,0xfd,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 32206 緎 ; -+,0x08,0x08,0x10,0x11,0x24,0x78,0x09,0x11,0x25,0x7d,0x08,0x54,0x55,0x50,0x40,0x00,0x14,0x12,0x10,0xff,0x10,0x12,0xeb,0x2a,0x2a,0xe4,0x04,0x6d,0x95,0x23,0x43,0x01 -+// 32207 総 ; -+,0x08,0x08,0x10,0x12,0x24,0x7d,0x08,0x10,0x24,0x7e,0x00,0x55,0x55,0x52,0x00,0x00,0x08,0x48,0x44,0x84,0xa3,0x22,0x44,0xfe,0x00,0x24,0x52,0x51,0x45,0x44,0x3c,0x00 -+// 32208 緐 ; -+,0x10,0x10,0x1f,0x20,0x5f,0x19,0x15,0x7f,0x22,0x2a,0x2a,0x3f,0x02,0x02,0x0a,0x04,0x07,0x78,0x90,0x10,0x22,0x7c,0x08,0x92,0x7f,0x09,0x28,0x2a,0x49,0x89,0x28,0x10 -+// 32209 緑 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x09,0x10,0x25,0x7e,0x00,0x2a,0x2b,0x2a,0x40,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xff,0x20,0x24,0xa8,0x70,0xa8,0x27,0x22,0xa0,0x40 -+// 32210 緒 ; -+,0x08,0x08,0x10,0x12,0x24,0x7f,0x08,0x10,0x24,0x7f,0x02,0x2a,0x2a,0x28,0x40,0x00,0x20,0x20,0xfc,0x22,0x24,0xff,0x10,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 32211 緓 ; -+,0x08,0x08,0x13,0x14,0x24,0x79,0x09,0x11,0x25,0x7f,0x00,0x2a,0x2a,0x29,0x46,0x18,0x88,0x88,0xff,0x88,0x88,0xfc,0x24,0x24,0x24,0xff,0x50,0x50,0x88,0x04,0x07,0x02 -+// 32212 緔 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x10,0x10,0x92,0x52,0x54,0xff,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x89,0x86 -+// 32213 緕 ; -+,0x08,0x08,0x11,0x12,0x22,0x7c,0x08,0x11,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x01,0x20,0x10,0xff,0x44,0x28,0x18,0x67,0x82,0x44,0x7c,0x44,0x7c,0x44,0x84,0x84,0x04 -+// 32214 緖 ; -+,0x08,0x08,0x11,0x14,0x24,0x7b,0x10,0x24,0x7c,0x03,0x04,0x2a,0x2a,0x28,0x40,0x00,0x20,0x20,0xfa,0x22,0x24,0xff,0x14,0x62,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 32215 緗 ; -+,0x08,0x08,0x10,0x14,0x27,0x78,0x09,0x15,0x22,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x80,0x9e,0x92,0x92,0xf2,0x9e,0x92,0xd2,0xb2,0x9e,0x92,0x92,0x92,0x9e,0x92,0x80 -+// 32216 緘 ; -+,0x08,0x08,0x10,0x11,0x25,0x79,0x11,0x25,0x7d,0x01,0x2a,0x56,0x52,0x44,0x08,0x00,0x08,0x0a,0x09,0xff,0x08,0x08,0xea,0x0b,0xea,0xaa,0xac,0xe8,0x15,0x25,0xc3,0x01 -+// 32217 緙 ; -+,0x08,0x08,0x13,0x14,0x24,0x78,0x09,0x11,0x29,0x7d,0x00,0x57,0x54,0x50,0x00,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfc,0x24,0x24,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 32218 線 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x29,0x40,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xd3,0x5c,0x58,0x94,0x94,0x13,0x52,0x20 -+// 32219 緛 ; -+,0x0b,0x08,0x10,0x15,0x25,0x79,0x11,0x11,0x24,0x7f,0x04,0x2a,0x2a,0x28,0x41,0x06,0xff,0x20,0x40,0xfe,0x52,0x52,0x52,0x06,0x20,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 32220 緜 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x3f,0x29,0x29,0x29,0x2d,0x2a,0x09,0x08,0x04,0x1e,0xf0,0x14,0x24,0x78,0x14,0x22,0x7f,0x09,0x4c,0x6a,0x49,0x89,0x28,0x10 -+// 32221 緝 ; -+,0x08,0x08,0x10,0x12,0x24,0x7d,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x2a,0x40,0x00,0xfc,0x84,0x84,0xfc,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04,0x04 -+// 32222 緞 ; -+,0x08,0x09,0x11,0x15,0x25,0x79,0x09,0x11,0x25,0x7d,0x01,0x55,0x55,0x51,0x01,0x01,0x60,0x9c,0x14,0x14,0xd4,0x27,0x40,0x1e,0xc2,0x14,0x14,0xc8,0x08,0x14,0x27,0x42 -+// 32223 緟 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x34,0x2a,0x2a,0x41,0x00,0x1e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 32224 締 ; -+,0x08,0x08,0x11,0x10,0x24,0x79,0x11,0x24,0x7e,0x02,0x00,0x54,0x54,0x50,0x40,0x00,0x40,0x20,0xfe,0x84,0x48,0xff,0x12,0x10,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 32225 緡 ; -+,0x09,0x09,0x11,0x15,0x25,0x79,0x09,0x11,0x24,0x7e,0x04,0x2a,0x2a,0x28,0x40,0x00,0xfe,0x02,0xfe,0x10,0xff,0x10,0x69,0x87,0xfd,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 32226 緢 ; -+,0x08,0x08,0x10,0x15,0x24,0x78,0x08,0x10,0x24,0x7e,0x04,0x2a,0x2a,0x28,0x40,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82 -+// 32227 緣 ; -+,0x08,0x08,0x10,0x14,0x24,0x7b,0x10,0x24,0x7f,0x00,0x2b,0x2a,0x28,0x43,0x00,0x00,0x40,0x7c,0x44,0xf8,0x08,0xff,0x20,0xc4,0x28,0xd8,0x34,0x54,0x93,0x12,0x50,0x20 -+// 32228 緤 ; -+,0x08,0x08,0x13,0x14,0x24,0x78,0x10,0x24,0x7c,0x03,0x54,0x54,0x55,0x42,0x0c,0x00,0x24,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0xfe,0x20,0xff,0x70,0xa8,0x24,0x27,0x22,0x20 -+// 32229 緥 ; -+,0x08,0x08,0x11,0x17,0x25,0x79,0x11,0x25,0x7f,0x01,0x01,0x55,0x55,0x41,0x01,0x01,0x80,0xfc,0x44,0x44,0x44,0x7c,0x10,0x10,0xff,0x38,0x34,0x54,0x53,0x92,0x10,0x10 -+// 32230 緦 ; -+,0x08,0x08,0x10,0x10,0x24,0x78,0x08,0x10,0x24,0x7e,0x01,0x2b,0x29,0x2a,0x40,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82,0x24,0x52,0x51,0x45,0x44,0x3c,0x00 -+// 32231 緧 ; -+,0x08,0x08,0x11,0x14,0x24,0x79,0x09,0x11,0x25,0x7d,0x05,0x51,0x55,0x55,0x41,0x01,0x84,0x48,0xff,0x48,0x48,0xfe,0x4a,0x4a,0x4a,0x8e,0x02,0xfe,0x02,0x02,0xfe,0x02 -+// 32232 編 ; -+,0x08,0x08,0x11,0x15,0x25,0x79,0x11,0x25,0x7d,0x05,0x55,0x55,0x55,0x52,0x02,0x04,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0x7f,0x55,0x55,0x7f,0x55,0x55,0x55,0x55,0x42 -+// 32233 緩 ; -+,0x08,0x0b,0x11,0x14,0x25,0x78,0x08,0x13,0x24,0x7e,0x00,0x54,0x55,0x42,0x04,0x01,0x3c,0xc0,0x44,0xa8,0xfe,0x20,0x20,0xff,0x40,0x7c,0xc4,0xa8,0x10,0x2c,0x47,0x82 -+// 32234 緪 ; -+,0x09,0x09,0x11,0x15,0x25,0x79,0x11,0x25,0x7d,0x03,0x15,0x55,0x55,0x41,0x01,0x01,0x00,0x7f,0x10,0x90,0x5e,0x52,0x22,0x2a,0x26,0x52,0x8c,0x04,0x04,0x04,0x7f,0x00 -+// 32235 緫 ; -+,0x08,0x08,0x10,0x15,0x26,0x78,0x0b,0x10,0x25,0x7e,0x04,0x54,0x52,0x52,0x40,0x00,0x40,0x40,0xfe,0xaa,0x4a,0xb2,0x1a,0x62,0x94,0x28,0x90,0x92,0x85,0x85,0x7c,0x00 -+// 32236 緬 ; -+,0x08,0x09,0x10,0x10,0x25,0x79,0x09,0x11,0x25,0x7d,0x05,0x51,0x55,0x55,0x41,0x00,0x00,0xff,0x20,0x40,0xff,0x29,0x29,0x39,0x29,0x29,0x39,0x29,0x29,0xff,0x01,0x00 -+// 32237 緭 ; -+,0x08,0x08,0x10,0x12,0x24,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x29,0x29,0x40,0x00,0x00,0xff,0x91,0xff,0x91,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 32238 緮 ; -+,0x08,0x08,0x10,0x10,0x25,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x03,0x40,0x40,0x7f,0x80,0x7e,0x42,0x7e,0x42,0x7e,0x20,0x3e,0x64,0x98,0x28,0xc7,0x02 -+// 32239 緯 ; -+,0x00,0x08,0x09,0x10,0x15,0x24,0x78,0x08,0x14,0x3e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x00,0x20,0xfc,0x24,0xff,0x00,0xfc,0x84,0xfc,0x10,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 32240 緰 ; -+,0x08,0x08,0x10,0x14,0x25,0x7a,0x11,0x21,0x29,0x7d,0x01,0x55,0x55,0x41,0x01,0x01,0x20,0x20,0x50,0x8c,0xfb,0x00,0xe2,0x2a,0xea,0x2a,0x2a,0xea,0x22,0x22,0xaa,0x44 -+// 32241 緱 ; -+,0x08,0x08,0x10,0x11,0x25,0x7b,0x0d,0x11,0x25,0x7d,0x05,0x51,0x55,0x55,0x41,0x01,0x80,0xbc,0x84,0x7f,0x00,0x20,0x3e,0x50,0x90,0xfe,0x10,0x10,0x28,0x24,0x47,0x82 -+// 32242 緲 ; -+,0x08,0x09,0x11,0x11,0x25,0x79,0x09,0x11,0x25,0x7d,0x01,0x55,0x55,0x50,0x40,0x01,0x08,0xc8,0x48,0x48,0xda,0x59,0x69,0x48,0xc9,0x4a,0x42,0x44,0xc8,0x10,0x60,0x80 -+// 32243 緳 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x12,0x1f,0x12,0x10,0x11,0x10,0x23,0x20,0x43,0x04,0x40,0xff,0x00,0xbe,0x12,0x92,0x12,0xaa,0x44,0x90,0xe0,0x88,0xfc,0x44,0x48,0x84 -+// 32244 練 ; -+,0x08,0x08,0x13,0x14,0x25,0x79,0x11,0x25,0x7d,0x00,0x54,0x54,0x54,0x41,0x02,0x00,0x20,0x20,0xff,0x20,0xfe,0x22,0xaa,0x72,0xfe,0x70,0x68,0xa8,0xa4,0x27,0x22,0x20 -+// 32245 緵 ; -+,0x10,0x11,0x11,0x25,0x25,0x79,0x08,0x11,0x24,0x7c,0x03,0x54,0x54,0x50,0x41,0x0e,0x84,0x4a,0x32,0x4a,0xfe,0x0a,0x84,0x42,0x7c,0xc4,0x48,0x30,0x30,0x4c,0x87,0x02 -+// 32246 緶 ; -+,0x08,0x08,0x11,0x15,0x25,0x7b,0x09,0x11,0x29,0x7d,0x01,0x55,0x55,0x55,0x41,0x01,0x80,0xff,0x08,0x7e,0x4a,0x4a,0x7e,0x4a,0x4a,0x7e,0x90,0x50,0x30,0x28,0x47,0x82 -+// 32247 緷 ; -+,0x08,0x09,0x11,0x14,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x29,0x2a,0x2a,0x40,0x00,0x00,0xff,0x11,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32248 緸 ; -+,0x08,0x09,0x10,0x14,0x25,0x79,0x09,0x11,0x24,0x7c,0x00,0x54,0x54,0x50,0x41,0x00,0x00,0xff,0x48,0x48,0xff,0x49,0x49,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 32249 緹 ; -+,0x08,0x08,0x10,0x10,0x24,0x78,0x10,0x25,0x7e,0x00,0x2a,0x2a,0x29,0x41,0x02,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x90,0x9e,0x90,0x50,0x30,0x0f,0x00 -+// 32250 緺 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x09,0x11,0x25,0x7f,0x01,0x55,0x55,0x55,0x41,0x01,0x00,0xfc,0x84,0xf4,0x94,0x94,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x0a,0x04 -+// 32251 緻 ; -+,0x08,0x0b,0x11,0x11,0x26,0x7b,0x10,0x28,0x7b,0x00,0x54,0x54,0x53,0x40,0x00,0x00,0x08,0xec,0x08,0x48,0x5f,0xd2,0xb2,0x92,0xf2,0x8a,0x84,0xe4,0x0a,0x12,0x23,0x42 -+// 32252 緼 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x25,0x7f,0x01,0x55,0x55,0x51,0x43,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0x00,0xfe,0x52,0x52,0x52,0x52,0x52,0xff,0x00 -+// 32253 緽 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x28,0x40,0x01,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x44,0x83,0x01 -+// 32254 緾 ; -+,0x08,0x09,0x11,0x15,0x25,0x79,0x11,0x25,0x7d,0x05,0x51,0x55,0x55,0x42,0x02,0x04,0x00,0xff,0x00,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x10,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 32255 緿 ; -+,0x08,0x08,0x12,0x12,0x24,0x7c,0x08,0x10,0x24,0x7e,0x02,0x24,0x2a,0x2b,0x42,0x00,0x10,0x10,0x24,0x42,0xff,0x01,0x7e,0x42,0x42,0x7e,0x10,0x4a,0x49,0x43,0x42,0x3e -+// 32256 縀 ; -+,0x10,0x11,0x11,0x25,0x25,0x79,0x11,0x29,0x45,0x7d,0x01,0x55,0x55,0x51,0x41,0x01,0x00,0xef,0x21,0x21,0xef,0x00,0x00,0xdf,0x11,0x0a,0xca,0x04,0x0c,0x12,0x23,0x42 -+// 32257 縁 ; -+,0x08,0x09,0x10,0x14,0x24,0x7b,0x10,0x25,0x7c,0x00,0x2b,0x28,0x28,0x43,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xff,0x20,0xc2,0x24,0xd8,0x18,0x34,0xd3,0x10,0x50,0x20 -+// 32258 縂 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x29,0x40,0x00,0x00,0x82,0x44,0x28,0xfe,0x82,0x82,0xfe,0x00,0x10,0x4a,0x49,0x45,0x45,0x3c,0x00 -+// 32259 縃 ; -+,0x09,0x08,0x10,0x12,0x22,0x7d,0x10,0x24,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xff,0x11,0x90,0x9e,0xd0,0x3f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 32260 縄 ; -+,0x08,0x0c,0x08,0x10,0x14,0x24,0x78,0x08,0x14,0x22,0x7e,0x00,0x2a,0x2a,0x2a,0x40,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x11,0x11,0x0f -+// 32261 縅 ; -+,0x08,0x08,0x10,0x11,0x25,0x7d,0x09,0x11,0x25,0x7d,0x05,0x51,0x55,0x55,0x02,0x04,0x08,0x0a,0x08,0xff,0x08,0xea,0x4b,0xfa,0x5a,0x9a,0x64,0x24,0x5d,0x8b,0x13,0x21 -+// 32262 縆 ; -+,0x01,0x11,0x11,0x25,0x25,0x7b,0x15,0x11,0x25,0x7d,0x05,0x01,0x55,0x55,0x41,0x01,0x00,0x7f,0x00,0x00,0xbe,0x62,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0x7f,0x00 -+// 32263 縇 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x08,0x10,0x24,0x7e,0x02,0x28,0x2a,0x2a,0x40,0x00,0x10,0x08,0xff,0x81,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x00,0xff,0x00 -+// 32264 縈 ; -+,0x04,0x15,0x15,0x04,0x0a,0x11,0x3f,0x21,0x02,0x07,0x01,0x0f,0x00,0x08,0x0a,0x11,0x10,0x14,0x58,0x50,0x28,0x44,0xfe,0x02,0x10,0xe0,0x10,0xf8,0x88,0xa0,0x98,0x10 -+// 32265 縉 ; -+,0x11,0x18,0x10,0x25,0x7d,0x08,0x11,0x25,0x7e,0x04,0x00,0x54,0x54,0x54,0x00,0x00,0xff,0x84,0x84,0x29,0xce,0x84,0x29,0xef,0x21,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe -+// 32266 縊 ; -+,0x00,0x10,0x10,0x10,0x25,0x78,0x08,0x10,0x29,0x7d,0x05,0x01,0x55,0x55,0x53,0x00,0x04,0x86,0x44,0x28,0xff,0x48,0x44,0x86,0x02,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 32267 縋 ; -+,0x10,0x12,0x11,0x25,0x24,0x78,0x13,0x29,0x7d,0x05,0x01,0x55,0x55,0x55,0x02,0x04,0x08,0x10,0x3e,0x22,0x22,0x3e,0x20,0x20,0x3e,0x22,0x22,0x22,0x3e,0x00,0xff,0x00 -+// 32268 縌 ; -+,0x10,0x12,0x11,0x25,0x78,0x08,0x17,0x29,0x7d,0x05,0x01,0x55,0x55,0x52,0x04,0x00,0x00,0x22,0x14,0x7f,0x08,0x08,0x49,0x49,0x49,0x7f,0x10,0x10,0x20,0xc0,0x7f,0x00 -+// 32269 縍 ; -+,0x00,0x10,0x19,0x10,0x24,0x79,0x11,0x24,0x7e,0x02,0x00,0x54,0x54,0x54,0x01,0x02,0x20,0x10,0xfe,0x84,0x48,0xff,0x42,0x20,0xff,0x40,0x7c,0x44,0x84,0x84,0x14,0x08 -+// 32270 縎 ; -+,0x10,0x10,0x20,0x24,0x78,0x0b,0x12,0x28,0x7c,0x04,0x00,0x2a,0x2a,0x4a,0x00,0x00,0xfc,0x84,0xf4,0x94,0x94,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 32271 縏 ; -+,0x10,0x3e,0x32,0x2a,0x7f,0x32,0x2a,0x25,0x42,0x07,0x01,0x0f,0x00,0x08,0x12,0x01,0x7c,0x44,0x44,0x43,0xbc,0x24,0x18,0x66,0x20,0xc0,0x08,0xfc,0xa4,0x98,0x88,0x00 -+// 32272 縐 ; -+,0x08,0x08,0x11,0x15,0x26,0x7c,0x08,0x15,0x3e,0x02,0x00,0x2a,0x2a,0x4a,0x00,0x01,0x80,0x80,0xfe,0x22,0xaa,0xfa,0x4a,0x84,0xfe,0x22,0xaa,0xfa,0x22,0x42,0x8a,0x04 -+// 32273 縑 ; -+,0x10,0x10,0x23,0x20,0x49,0x70,0x13,0x28,0x7d,0x04,0x00,0x55,0x55,0x42,0x04,0x00,0x88,0x50,0xfe,0x50,0xfc,0x54,0xff,0x54,0xfc,0xd0,0xd8,0x54,0x57,0x52,0x50,0x50 -+// 32274 縒 ; -+,0x00,0x10,0x18,0x11,0x24,0x7c,0x08,0x10,0x25,0x7e,0x04,0x00,0x2a,0x2a,0x49,0x02,0x00,0x84,0x48,0xff,0x20,0xfe,0x20,0x20,0xff,0x40,0x7e,0x50,0x90,0x90,0x7f,0x00 -+// 32275 縓 ; -+,0x10,0x19,0x11,0x25,0x25,0x79,0x11,0x25,0x7f,0x05,0x01,0x29,0x29,0x4a,0x02,0x04,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x08,0x0c,0x4a,0x4b,0x8a,0x28,0x10 -+// 32276 縔 ; -+,0x10,0x10,0x20,0x20,0x45,0x79,0x10,0x11,0x2a,0x7f,0x08,0x00,0x54,0x55,0x42,0x00,0xfc,0x48,0x38,0x44,0xde,0x4a,0x84,0x4a,0x31,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 32277 縕 ; -+,0x10,0x10,0x10,0x24,0x24,0x78,0x08,0x10,0x24,0x7e,0x04,0x00,0x2a,0x2b,0x4a,0x00,0x00,0xfe,0x92,0x92,0xaa,0xc6,0xfe,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 32278 縖 ; -+,0x10,0x18,0x11,0x25,0x7c,0x08,0x10,0x28,0x7d,0x04,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x20,0x10,0xff,0x11,0xfe,0x10,0xfe,0x10,0xff,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 32279 縗 ; -+,0x10,0x18,0x13,0x20,0x24,0x7c,0x0b,0x14,0x3e,0x02,0x00,0x2a,0x2b,0x4a,0x00,0x00,0x40,0x20,0xff,0x00,0xfc,0x84,0xff,0x84,0xfc,0x20,0x52,0xcc,0x44,0x43,0x62,0x40 -+// 32280 縘 ; -+,0x10,0x13,0x11,0x20,0x24,0x78,0x08,0x10,0x24,0x7e,0x04,0x01,0x2a,0x2a,0x4a,0x01,0x1e,0xf2,0x22,0x94,0xa0,0x44,0xf8,0x10,0x24,0xfe,0x22,0xff,0x20,0x50,0x8e,0x04 -+// 32281 縙 ; -+,0x10,0x10,0x21,0x24,0x78,0x09,0x10,0x24,0x7e,0x04,0x00,0x54,0x55,0x54,0x00,0x00,0x48,0x48,0xff,0x48,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0x9f,0xe4,0x04,0x04,0x04 -+// 32282 縚 ; -+,0x10,0x18,0x11,0x24,0x26,0x7c,0x08,0x11,0x25,0x7f,0x03,0x55,0x55,0x55,0x01,0x00,0x00,0x1f,0xe0,0x22,0x92,0x94,0x40,0x8e,0x02,0x02,0xce,0x02,0x02,0xfe,0x02,0x00 -+// 32283 縛 ; -+,0x10,0x19,0x10,0x20,0x24,0x78,0x08,0x14,0x3e,0x04,0x01,0x54,0x4a,0x4a,0x00,0x00,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x44,0x04,0x14,0x08 -+// 32284 縜 ; -+,0x10,0x18,0x10,0x24,0x7c,0x09,0x11,0x25,0x7f,0x05,0x01,0x55,0x54,0x54,0x01,0x02,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x48,0xc6,0x03,0x02 -+// 32285 縝 ; -+,0x10,0x18,0x11,0x24,0x24,0x78,0x08,0x14,0x3e,0x02,0x00,0x54,0x55,0x54,0x00,0x01,0x20,0x20,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0x84,0x04 -+// 32286 縞 ; -+,0x10,0x18,0x11,0x24,0x24,0x78,0x08,0x14,0x3d,0x05,0x01,0x55,0x55,0x55,0x01,0x01,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 32287 縟 ; -+,0x11,0x11,0x11,0x25,0x25,0x79,0x11,0x25,0x7d,0x05,0x01,0x55,0x55,0x52,0x02,0x04,0xff,0x00,0x7c,0x00,0xff,0x52,0x4c,0x44,0x63,0x04,0xff,0x44,0x24,0x04,0x14,0x08 -+// 32288 縠 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x7f,0x40,0x3f,0x08,0x12,0x3c,0x09,0x3f,0x14,0x25,0x4d,0x00,0xbc,0x24,0x24,0x24,0xa3,0xc0,0x3e,0x22,0x12,0x14,0x08,0x94,0x12,0x23,0x41 -+// 32289 縡 ; -+,0x10,0x10,0x21,0x25,0x78,0x08,0x10,0x28,0x7d,0x04,0x00,0x54,0x54,0x54,0x00,0x00,0x20,0x10,0xff,0x22,0x10,0xfe,0x44,0x28,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32290 縢 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x27,0x24,0x24,0x3d,0x26,0x24,0x24,0x24,0x24,0x55,0x48,0x20,0x24,0xa8,0xfc,0x20,0xfe,0x48,0xa4,0x4b,0xf0,0x28,0xfc,0x24,0xa8,0x24,0x60 -+// 32291 縣 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x04,0x05,0x25,0x25,0x44,0x14,0x08,0x0e,0x70,0x08,0x10,0x22,0x7c,0x08,0x12,0xbf,0x09,0x08,0x4a,0x49,0x89,0x28,0x10 -+// 32292 縤 ; -+,0x10,0x11,0x10,0x20,0x24,0x7f,0x08,0x10,0x24,0x7e,0x02,0x00,0x2a,0x2a,0x49,0x00,0x20,0xfe,0x20,0xfc,0x20,0xff,0x20,0x48,0xf0,0x24,0xfe,0x10,0x54,0x92,0x52,0x20 -+// 32293 縥 ; -+,0x10,0x10,0x11,0x24,0x24,0x78,0x0b,0x10,0x28,0x7d,0x03,0x54,0x54,0x50,0x01,0x00,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x48,0xf4,0x23,0xfe,0x70,0xa8,0xae,0x24,0x20 -+// 32294 縦 ; -+,0x10,0x18,0x11,0x2a,0x7c,0x08,0x10,0x25,0x7f,0x05,0x01,0x55,0x55,0x55,0x41,0x01,0x80,0xa1,0x12,0x14,0x3f,0x88,0x88,0x28,0x2f,0x28,0x28,0x28,0x28,0x58,0x07,0x00 -+// 32295 縧 ; -+,0x10,0x18,0x10,0x21,0x27,0x7d,0x09,0x15,0x3f,0x05,0x01,0x55,0x55,0x51,0x01,0x00,0x90,0xd0,0x9e,0xa2,0x14,0x48,0x54,0x63,0x48,0x7f,0x48,0x2a,0x29,0x49,0x28,0x10 -+// 32296 縨 ; -+,0x10,0x19,0x11,0x25,0x7d,0x09,0x10,0x25,0x7e,0x01,0x2a,0x2a,0x2a,0x40,0x00,0x01,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x24,0xa8,0xfe,0x50,0x50,0x51,0x91,0x8f,0x00 -+// 32297 縩 ; -+,0x11,0x19,0x11,0x26,0x79,0x08,0x11,0x2a,0x7d,0x08,0x00,0x54,0x55,0x52,0x00,0x00,0x00,0xde,0x52,0x54,0x48,0x84,0x7a,0x01,0xfe,0x10,0x94,0x92,0x13,0x12,0x50,0x20 -+// 32298 縪 ; -+,0x10,0x18,0x10,0x24,0x24,0x78,0x08,0x11,0x24,0x7f,0x04,0x00,0x2a,0x2a,0x4a,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x92,0xff,0x92,0xff,0x10,0xfe,0x10,0x10,0x10,0x10 -+// 32299 縫 ; -+,0x00,0x12,0x19,0x11,0x24,0x78,0x0b,0x11,0x25,0x7f,0x01,0x55,0x55,0x51,0x02,0x04,0x20,0x20,0x3e,0x42,0x64,0x98,0x64,0x93,0x7c,0x10,0x7c,0x10,0xfe,0x10,0x90,0x7f -+// 32300 縬 ; -+,0x10,0x18,0x10,0x25,0x7d,0x09,0x11,0x29,0x7d,0x05,0x01,0x55,0x55,0x42,0x02,0x04,0x08,0x08,0x08,0xff,0x48,0x78,0x4a,0xfb,0x4a,0x6a,0xd4,0x54,0x45,0x4b,0x51,0x80 -+// 32301 縭 ; -+,0x10,0x10,0x11,0x20,0x24,0x7c,0x08,0x14,0x3e,0x01,0x01,0x55,0x55,0x55,0x01,0x01,0x20,0x10,0xff,0x00,0xaa,0x92,0xaa,0xfe,0x10,0xff,0x21,0x49,0xfd,0x09,0x05,0x02 -+// 32302 縮 ; -+,0x10,0x18,0x11,0x21,0x24,0x78,0x09,0x15,0x3e,0x02,0x00,0x2a,0x2a,0x4a,0x00,0x00,0x20,0x10,0xff,0x02,0x80,0xff,0x88,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xbe,0xa2,0x00 -+// 32303 縯 ; -+,0x08,0x08,0x11,0x25,0x7c,0x08,0x10,0x24,0x7e,0x04,0x00,0x2a,0x2a,0x4a,0x00,0x01,0x20,0x10,0xff,0x01,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x48,0x46,0x83,0x02 -+// 32304 縰 ; -+,0x11,0x19,0x12,0x24,0x48,0x71,0x17,0x21,0x49,0x7d,0x05,0x51,0x55,0x55,0x01,0x01,0x10,0x10,0x50,0x5e,0xd0,0x50,0xff,0x10,0x50,0x5e,0x50,0x50,0x50,0xb0,0x0f,0x00 -+// 32305 縱 ; -+,0x11,0x19,0x11,0x22,0x44,0x79,0x13,0x29,0x45,0x7d,0x01,0x55,0x55,0x55,0x01,0x01,0x24,0xa4,0x24,0x54,0x8a,0x01,0x08,0x08,0x48,0x4e,0x48,0x48,0x48,0x68,0x9f,0x00 -+// 32306 縲 ; -+,0x10,0x18,0x10,0x20,0x44,0x78,0x10,0x24,0x7e,0x04,0x00,0x54,0x54,0x55,0x02,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x44,0xf8,0x20,0xfe,0x10,0x94,0x12,0x52,0x20 -+// 32307 縳 ; -+,0x10,0x11,0x20,0x44,0x78,0x08,0x10,0x28,0x7c,0x05,0x00,0x55,0x54,0x54,0x00,0x00,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x12,0xff,0x04,0xff,0x44,0x44,0x14,0x08 -+// 32308 縴 ; -+,0x10,0x19,0x10,0x20,0x24,0x79,0x11,0x24,0x7e,0x04,0x00,0x55,0x55,0x54,0x00,0x00,0x10,0xff,0x24,0x7c,0x08,0xff,0x29,0x7c,0x04,0x90,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 32309 縵 ; -+,0x10,0x18,0x10,0x10,0x24,0x78,0x09,0x11,0x25,0x7e,0x02,0x54,0x54,0x54,0x00,0x03,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfc,0x84,0x48,0x30,0xcc,0x03 -+// 32310 縶 ; -+,0x08,0x3e,0x08,0x7f,0x14,0x3e,0x08,0x7e,0x09,0x07,0x01,0x0f,0x00,0x08,0x12,0x01,0x10,0x10,0x7c,0x14,0x64,0x35,0x53,0x81,0x20,0xc0,0x10,0xf8,0x88,0xa0,0x90,0x00 -+// 32311 縷 ; -+,0x10,0x19,0x11,0x23,0x25,0x7d,0x08,0x11,0x29,0x7d,0x08,0x03,0x54,0x54,0x54,0x03,0x20,0xfc,0x24,0xfe,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x40,0xfe,0x88,0x88,0x70,0x8e -+// 32312 縸 ; -+,0x10,0x18,0x13,0x24,0x7c,0x08,0x10,0x24,0x7e,0x04,0x03,0x54,0x54,0x54,0x00,0x01,0x48,0x48,0xff,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x50,0x48,0x86,0x02 -+// 32313 縹 ; -+,0x10,0x1b,0x10,0x21,0x25,0x7d,0x09,0x10,0x24,0x7e,0x05,0x50,0x54,0x55,0x02,0x00,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x10,0x94,0x13,0x51,0x20 -+// 32314 縺 ; -+,0x10,0x1a,0x11,0x21,0x24,0x78,0x0b,0x11,0x25,0x7f,0x05,0x51,0x55,0x55,0x02,0x00,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0x08,0xff,0x00 -+// 32315 縻 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x17,0x1a,0x12,0x11,0x13,0x10,0x13,0x10,0x22,0x25,0x40,0x40,0xff,0x10,0x10,0xfe,0x38,0xd4,0x92,0x10,0xe0,0x88,0xfc,0x48,0x50,0x48,0x80 -+// 32316 縼 ; -+,0x12,0x11,0x20,0x2f,0x7a,0x0a,0x13,0x2a,0x7e,0x0a,0x02,0x2a,0x2a,0x44,0x09,0x00,0x10,0x18,0x10,0xdf,0x20,0x3f,0x8a,0x88,0xa8,0xae,0xa8,0xa8,0xa8,0xd8,0x8f,0x00 -+// 32317 總 ; -+,0x10,0x18,0x11,0x21,0x25,0x79,0x09,0x11,0x29,0x7c,0x08,0x00,0x55,0x55,0x56,0x00,0x20,0x40,0xfe,0x42,0x7e,0xca,0x32,0x52,0xfe,0x00,0x20,0x52,0x45,0x45,0x3c,0x00 -+// 32318 績 ; -+,0x10,0x19,0x10,0x24,0x78,0x09,0x10,0x24,0x7e,0x04,0x00,0x2a,0x2a,0x4a,0x00,0x01,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83 -+// 32319 縿 ; -+,0x10,0x18,0x11,0x24,0x79,0x0a,0x17,0x28,0x7d,0x06,0x01,0x54,0x54,0x53,0x00,0x03,0x40,0x88,0xfc,0x08,0x04,0xaa,0xaf,0x51,0x8c,0x63,0x90,0x24,0xc8,0x10,0x60,0x80 -+// 32320 繀 ; -+,0x10,0x11,0x21,0x25,0x7c,0x08,0x10,0x29,0x7e,0x04,0x00,0x54,0x54,0x54,0x00,0x00,0x10,0x11,0x11,0xff,0x50,0x48,0xff,0x88,0xfe,0x88,0xfe,0x88,0x88,0xff,0x80,0x00 -+// 32321 繁 ; -+,0x20,0x3f,0x40,0x3f,0x29,0x7f,0x25,0x3f,0x01,0x02,0x0f,0x01,0x07,0x00,0x04,0x09,0x20,0x20,0x3f,0x42,0xa4,0x14,0x08,0x94,0xa3,0x20,0xc0,0x10,0xf8,0x88,0x90,0x88 -+// 32322 繂 ; -+,0x10,0x18,0x11,0x24,0x7d,0x08,0x11,0x2a,0x7c,0x04,0x00,0x55,0x54,0x54,0x00,0x00,0x20,0x10,0xff,0x20,0x49,0xf2,0x22,0x49,0xfc,0x14,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32323 繃 ; -+,0x10,0x11,0x21,0x24,0x49,0x71,0x11,0x21,0x49,0x7d,0x01,0x55,0x55,0x55,0x02,0x04,0x10,0x11,0xff,0x00,0xef,0x29,0x29,0xef,0x29,0x29,0xef,0x29,0x29,0x29,0xb5,0x42 -+// 32324 繄 ; -+,0x3f,0x28,0x2f,0x32,0x2f,0x25,0x3f,0x02,0x07,0x00,0x07,0x00,0x04,0x08,0x32,0x01,0xbc,0x24,0xa3,0x5c,0x24,0x18,0xa4,0x53,0xe0,0x88,0xfc,0x84,0x90,0x8c,0x84,0x00 -+// 32325 繅 ; -+,0x10,0x18,0x11,0x24,0x7d,0x09,0x11,0x29,0x7d,0x04,0x03,0x54,0x54,0x55,0x02,0x00,0x92,0x92,0x24,0x92,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x70,0xa8,0x27,0x22,0x20 -+// 32326 繆 ; -+,0x10,0x1b,0x12,0x21,0x24,0x79,0x12,0x28,0x7c,0x0b,0x01,0x54,0x55,0x54,0x00,0x03,0x00,0xde,0x4a,0x46,0xca,0x52,0x20,0x50,0x8c,0x63,0x8c,0x30,0xc6,0x18,0x60,0x80 -+// 32327 繇 ; -+,0x07,0x78,0x00,0x29,0x2a,0x10,0x1f,0x24,0x3f,0x44,0x25,0x25,0x27,0x38,0x00,0x00,0x00,0x0e,0x70,0x10,0x22,0x7c,0x08,0x12,0x7f,0x09,0x28,0x2a,0x49,0x89,0x28,0x10 -+// 32328 繈 ; -+,0x10,0x1b,0x10,0x24,0x7d,0x09,0x11,0x25,0x7f,0x04,0x2a,0x2a,0x2a,0x41,0x00,0x00,0x08,0xcc,0x48,0x52,0xff,0x09,0x08,0x3e,0xea,0x6a,0x7e,0x48,0x4a,0xcf,0xb1,0x00 -+// 32329 繉 ; -+,0x10,0x18,0x10,0x20,0x22,0x7c,0x08,0x11,0x24,0x7e,0x02,0x55,0x56,0x54,0x50,0x01,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x28,0x29,0xaa,0x6c,0xaa,0x29,0x48,0x49,0x87,0x00 -+// 32330 繊 ; -+,0x10,0x18,0x11,0x24,0x7b,0x08,0x10,0x24,0x7e,0x05,0x00,0x54,0x54,0x53,0x00,0x00,0x48,0x4a,0xf9,0x48,0xff,0x08,0xaa,0xab,0xba,0xaa,0xa4,0xa4,0xfb,0x13,0x21,0x00 -+// 32331 繋 ; -+,0x04,0x3f,0x04,0x1f,0x15,0x1f,0x15,0x1f,0x04,0x07,0x01,0x07,0x00,0x04,0x0a,0x11,0x3c,0xa4,0x24,0x42,0xbc,0x24,0x18,0x24,0x83,0xe0,0x10,0xf8,0x88,0x90,0x8c,0x08 -+// 32332 繌 ; -+,0x10,0x18,0x11,0x25,0x7d,0x09,0x11,0x24,0x7d,0x02,0x00,0x55,0x56,0x50,0x01,0x06,0x20,0x40,0xfe,0x4a,0x32,0x4a,0xfe,0x88,0x44,0xfa,0x88,0x50,0x20,0x58,0x87,0x02 -+// 32333 繍 ; -+,0x10,0x19,0x10,0x27,0x7c,0x09,0x10,0x29,0x7d,0x05,0x01,0x51,0x51,0x52,0x53,0x04,0x20,0xfe,0x22,0xff,0x22,0xfe,0x20,0x2a,0x2a,0xfe,0x22,0x72,0x6a,0xaa,0x26,0x22 -+// 32334 繎 ; -+,0x10,0x18,0x10,0x21,0x25,0x79,0x12,0x24,0x7e,0x04,0x01,0x54,0x55,0x55,0x02,0x00,0x88,0x8a,0xea,0x28,0xbf,0x68,0xa8,0x54,0x54,0xa3,0x42,0x00,0x54,0x2a,0x2a,0x00 -+// 32335 繏 ; -+,0x11,0x11,0x21,0x25,0x79,0x09,0x10,0x28,0x7d,0x04,0x03,0x54,0x54,0x54,0x01,0x02,0xde,0x52,0x52,0xde,0x10,0x31,0xef,0x48,0xfe,0x48,0xff,0x00,0x88,0x86,0x03,0x02 -+// 32336 繐 ; -+,0x10,0x1b,0x10,0x25,0x25,0x79,0x11,0x29,0x7c,0x07,0x00,0x55,0x55,0x55,0x02,0x00,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x28,0xfe,0x04,0x52,0x49,0x45,0x3c,0x00 -+// 32337 繑 ; -+,0x10,0x11,0x20,0x27,0x7c,0x09,0x12,0x28,0x7c,0x05,0x01,0x55,0x55,0x55,0x01,0x01,0x0c,0xf0,0x40,0xff,0x84,0xfb,0x8a,0xf8,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x0a,0x04 -+// 32338 繒 ; -+,0x00,0x10,0x18,0x11,0x25,0x7d,0x09,0x15,0x3e,0x02,0x00,0x2a,0x2a,0x2a,0x4a,0x00,0x84,0x44,0x28,0xff,0x11,0x55,0x39,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe -+// 32339 繓 ; -+,0x10,0x18,0x10,0x20,0x24,0x7c,0x0b,0x11,0x25,0x7d,0x01,0x55,0x55,0x57,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x20,0xff,0x2a,0xea,0x24,0xf4,0x2a,0x31,0x20 -+// 32340 織 ; -+,0x11,0x18,0x13,0x22,0x29,0x7b,0x10,0x29,0x7d,0x05,0x01,0x55,0x55,0x54,0x00,0x00,0x08,0x88,0xec,0x2a,0x48,0xff,0x08,0xea,0x2b,0xea,0x2c,0xe8,0x35,0x23,0x41,0x00 -+// 32341 繕 ; -+,0x11,0x10,0x23,0x20,0x45,0x78,0x11,0x24,0x7f,0x04,0x00,0x54,0x54,0x54,0x00,0x00,0x04,0x88,0xff,0x20,0xfe,0x20,0xfe,0xa8,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 32342 繖 ; -+,0x11,0x19,0x13,0x21,0x47,0x78,0x13,0x2a,0x7f,0x06,0x03,0x52,0x52,0x52,0x02,0x00,0x48,0x4c,0xe8,0x48,0xef,0x12,0xf2,0x2a,0xea,0x24,0xe4,0x24,0x2a,0xb3,0x42,0x00 -+// 32343 繗 ; -+,0x10,0x18,0x10,0x24,0x7c,0x08,0x10,0x28,0x7c,0x05,0x01,0x56,0x54,0x54,0x01,0x02,0x10,0x94,0x58,0xff,0x38,0x54,0x93,0x84,0xff,0x24,0xb4,0x5f,0x44,0x84,0x04,0x04 -+// 32344 繘 ; -+,0x10,0x18,0x10,0x25,0x78,0x08,0x11,0x28,0x7d,0x09,0x01,0x55,0x55,0x55,0x01,0x01,0xfc,0x28,0x10,0xff,0x32,0x54,0x90,0x30,0xfe,0x4a,0x86,0x7a,0x4a,0x7a,0x02,0x04 -+// 32345 繙 ; -+,0x08,0x09,0x11,0x14,0x3f,0x08,0x10,0x29,0x7f,0x05,0x01,0x55,0x55,0x55,0x01,0x00,0x0e,0xf0,0x24,0xa8,0xff,0x68,0xa4,0x23,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x02,0x00 -+// 32346 繚 ; -+,0x10,0x18,0x11,0x22,0x25,0x79,0x12,0x24,0x7e,0x02,0x00,0x55,0x55,0x52,0x00,0x00,0x20,0x20,0xfe,0x52,0x8c,0xfe,0x85,0xfc,0x84,0xfc,0x20,0x28,0x26,0x22,0xa0,0x40 -+// 32347 繛 ; -+,0x04,0x7f,0x04,0x3f,0x04,0x7f,0x08,0x12,0x3c,0x12,0x3f,0x05,0x16,0x25,0x45,0x0c,0x08,0x88,0x0f,0x88,0x7e,0xc2,0x7e,0x42,0x7e,0x08,0xff,0x08,0x08,0x88,0x08,0x08 -+// 32348 繜 ; -+,0x10,0x13,0x20,0x25,0x79,0x09,0x11,0x29,0x7d,0x05,0x00,0x55,0x54,0x54,0x00,0x00,0x88,0xfe,0x50,0xfc,0x54,0x5c,0x84,0x74,0x04,0xfc,0x08,0xff,0x48,0x48,0x28,0x10 -+// 32349 繝 ; -+,0x08,0x09,0x11,0x11,0x25,0x79,0x09,0x11,0x29,0x7d,0x05,0x01,0x55,0x55,0x55,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x3d,0x25,0x3d,0x25,0x3d,0x45,0x55,0x89,0x05,0x02 -+// 32350 繞 ; -+,0x10,0x18,0x10,0x20,0x25,0x78,0x09,0x14,0x3f,0x04,0x03,0x54,0x54,0x55,0x01,0x02,0x20,0x20,0xfc,0x20,0xff,0x84,0xdf,0x84,0xdf,0x00,0xff,0x90,0x90,0x12,0x12,0x0e -+// 32351 繟 ; -+,0x10,0x19,0x11,0x21,0x24,0x78,0x08,0x10,0x24,0x7e,0x02,0x55,0x54,0x54,0x00,0x00,0x00,0xef,0x29,0xef,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32352 繠 ; -+,0x00,0x0a,0x0a,0x11,0x04,0x52,0x50,0x0f,0x02,0x0f,0x01,0x0f,0x00,0x08,0x10,0x21,0x80,0x48,0x14,0xf0,0x0a,0x25,0xa2,0x9e,0x20,0xc0,0x10,0xfc,0x88,0x90,0x8c,0x88 -+// 32353 繡 ; -+,0x10,0x18,0x10,0x23,0x24,0x78,0x11,0x29,0x7d,0x05,0x01,0x55,0x56,0x52,0x04,0x08,0x20,0xfe,0x22,0xff,0x22,0xfe,0x29,0xef,0x21,0xff,0x21,0xaf,0xa9,0xa9,0xa9,0x01 -+// 32354 繢 ; -+,0x10,0x19,0x11,0x25,0x7c,0x0b,0x10,0x29,0x7d,0x05,0x01,0x55,0x55,0x54,0x00,0x01,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0xe4,0x1c,0x04,0xfc,0x90,0x8c,0x04 -+// 32355 繣 ; -+,0x10,0x19,0x10,0x23,0x44,0x79,0x10,0x2b,0x7c,0x05,0x01,0x55,0x55,0x55,0x00,0x07,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xff -+// 32356 繤 ; -+,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x02,0x7f,0x05,0x1a,0x67,0x01,0x07,0x00,0x04,0x09,0x20,0xfe,0x20,0xf8,0x88,0xf8,0x00,0xff,0x10,0x2c,0xc3,0x10,0xf8,0x88,0x90,0x88 -+// 32357 繥 ; -+,0x08,0x09,0x10,0x14,0x24,0x78,0x08,0x10,0x24,0x7d,0x00,0x54,0x54,0x54,0x00,0x00,0x10,0xff,0x10,0xfe,0x00,0xfe,0x82,0xfe,0x44,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00 -+// 32358 繦 ; -+,0x08,0x0b,0x10,0x10,0x2b,0x7a,0x12,0x2a,0x7f,0x08,0x00,0x54,0x54,0x42,0x01,0x00,0x00,0xde,0x52,0x52,0xde,0x08,0x3f,0x29,0xa9,0xbf,0x88,0x88,0x8a,0xbf,0x01,0x00 -+// 32359 繧 ; -+,0x10,0x18,0x10,0x25,0x7d,0x08,0x08,0x14,0x3e,0x02,0x00,0x2a,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x10,0xff,0x11,0xd6,0x10,0x00,0xfe,0x00,0xff,0x10,0x24,0x4e,0xf2,0x00 -+// 32360 繨 ; -+,0x00,0x10,0x18,0x12,0x25,0x78,0x13,0x29,0x7d,0x05,0x01,0x55,0x55,0x42,0x04,0x00,0x10,0xfe,0x10,0xff,0x44,0x28,0xfe,0x10,0x7e,0x10,0xff,0x10,0x10,0x90,0x7f,0x00 -+// 32361 繩 ; -+,0x10,0x19,0x11,0x25,0x44,0x79,0x11,0x29,0x7d,0x05,0x01,0x55,0x54,0x54,0x00,0x00,0x00,0xfe,0x52,0xde,0x50,0xde,0x52,0x52,0xde,0x52,0x52,0xde,0x51,0x51,0x3f,0x00 -+// 32362 繪 ; -+,0x10,0x18,0x10,0x21,0x26,0x79,0x11,0x29,0x7d,0x04,0x01,0x55,0x55,0x55,0x01,0x01,0x20,0x50,0x88,0xfc,0x03,0xfe,0xac,0x74,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 32363 繫 ; -+,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x05,0x07,0x02,0x0f,0x00,0x08,0x12,0x01,0x3c,0xa4,0x24,0x43,0x7e,0x24,0x18,0xa7,0x62,0xc0,0x08,0xfc,0x84,0x90,0x8c,0x08 -+// 32364 繬 ; -+,0x08,0x0d,0x10,0x24,0x7d,0x08,0x11,0x28,0x7c,0x04,0x00,0x2a,0x2a,0x4a,0x00,0x00,0x10,0xff,0x92,0x92,0x55,0x10,0xff,0x00,0xff,0x81,0xbd,0xa5,0xbd,0x81,0xff,0x00 -+// 32365 繭 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x24,0x28,0x32,0x3e,0x24,0x2a,0x3f,0x20,0x2a,0x2a,0x20,0x20,0xff,0x20,0x20,0xfe,0x92,0x92,0xfe,0xd2,0xfe,0x92,0x9a,0x9e,0xea,0x82,0x86 -+// 32366 繮 ; -+,0x13,0x18,0x11,0x25,0x25,0x79,0x09,0x14,0x3f,0x04,0x01,0x55,0x55,0x55,0x03,0x00,0xfe,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xfe,0x00,0xfc,0x24,0xfc,0x24,0xff,0x00 -+// 32367 繯 ; -+,0x10,0x11,0x11,0x21,0x24,0x79,0x08,0x10,0x24,0x7e,0x00,0x2a,0x2b,0x4a,0x00,0x00,0x00,0xfe,0x4a,0xfe,0x00,0xfe,0x00,0xfc,0x84,0xfc,0x32,0x4c,0xc4,0x53,0x62,0x40 -+// 32368 繰 ; -+,0x10,0x10,0x20,0x24,0x7c,0x09,0x11,0x25,0x7e,0x01,0x00,0x54,0x54,0x50,0x01,0x00,0x00,0xfc,0x84,0xfc,0x00,0xcf,0x49,0xcf,0x10,0xff,0x38,0x54,0x54,0x93,0x12,0x10 -+// 32369 繱 ; -+,0x10,0x18,0x11,0x20,0x24,0x7c,0x09,0x12,0x28,0x7c,0x00,0x00,0x55,0x55,0x42,0x00,0x48,0x48,0xff,0x48,0xfe,0xaa,0x6a,0x52,0xaa,0x42,0x2c,0x52,0x55,0x45,0x7c,0x00 -+// 32370 繲 ; -+,0x11,0x11,0x21,0x22,0x4b,0x7a,0x12,0x2b,0x7e,0x03,0x02,0x56,0x52,0x44,0x04,0x08,0x00,0x1f,0xe9,0x29,0xe9,0xb3,0xa4,0xff,0xb4,0xe4,0xbf,0xa4,0xa4,0x24,0xa4,0x44 -+// 32371 繳 ; -+,0x10,0x19,0x13,0x22,0x2b,0x7a,0x13,0x28,0x7f,0x09,0x01,0x55,0x55,0x55,0x02,0x04,0x84,0x04,0xe8,0x28,0xef,0x32,0xea,0x8a,0xea,0x0a,0xe4,0x24,0x2a,0x2a,0xb3,0x42 -+// 32372 繴 ; -+,0x1f,0x11,0x1f,0x10,0x2f,0x29,0x4f,0x02,0x07,0x01,0x0f,0x00,0x04,0x08,0x32,0x01,0x10,0x7e,0x24,0xff,0x10,0x7f,0x90,0x10,0xe0,0x10,0xf8,0x84,0x90,0x8c,0x84,0x00 -+// 32373 繵 ; -+,0x10,0x1b,0x20,0x25,0x45,0x79,0x09,0x11,0x24,0x7e,0x00,0x00,0x54,0x54,0x50,0x03,0x20,0xff,0x00,0xfe,0x02,0x7a,0x4a,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 32374 繶 ; -+,0x10,0x10,0x21,0x20,0x45,0x7c,0x08,0x10,0x24,0x7e,0x02,0x54,0x55,0x55,0x02,0x00,0x20,0x10,0xff,0x44,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x22,0x55,0x45,0x3c,0x00 -+// 32375 繷 ; -+,0x08,0x09,0x11,0x25,0x7d,0x09,0x10,0x29,0x7d,0x05,0x01,0x55,0x55,0x52,0x02,0x04,0x48,0xfe,0x4a,0xfe,0x4a,0xfe,0x00,0xfe,0x00,0xfc,0x00,0xfe,0x51,0x4a,0x64,0x43 -+// 32376 繸 ; -+,0x10,0x12,0x21,0x45,0x78,0x08,0x13,0x29,0x7d,0x05,0x01,0x55,0x55,0x51,0x02,0x04,0x84,0x46,0x28,0xff,0x10,0x22,0x52,0x94,0x28,0xdc,0x2b,0xca,0x28,0x10,0xff,0x00 -+// 32377 繹 ; -+,0x09,0x09,0x11,0x11,0x24,0x78,0x08,0x15,0x3e,0x02,0x00,0x2a,0x2b,0x4a,0x00,0x00,0xfe,0x4a,0x4a,0xfe,0x10,0xfe,0x10,0xff,0x44,0x28,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 32378 繺 ; -+,0x10,0x10,0x21,0x24,0x44,0x79,0x08,0x11,0x28,0x7d,0x04,0x00,0x54,0x54,0x55,0x00,0x88,0xe8,0x28,0x4f,0x1a,0xea,0x2a,0xe4,0x24,0xea,0x11,0x00,0xaa,0xa9,0x29,0x00 -+// 32379 繻 ; -+,0x11,0x18,0x11,0x25,0x7a,0x08,0x10,0x28,0x7d,0x04,0x01,0x55,0x55,0x55,0x01,0x00,0xfe,0x20,0xff,0x22,0xac,0x20,0xac,0x00,0xfe,0x20,0xfe,0x52,0x52,0x52,0x06,0x00 -+// 32380 繼 ; -+,0x12,0x12,0x23,0x22,0x4a,0x73,0x12,0x2b,0x7e,0x0a,0x03,0x2a,0x2b,0x4a,0x03,0x00,0x42,0x95,0xef,0x42,0xa5,0xff,0x21,0xff,0x44,0xa9,0xde,0xa5,0xff,0x21,0xff,0x00 -+// 32381 繽 ; -+,0x08,0x09,0x11,0x24,0x78,0x09,0x10,0x2b,0x7c,0x04,0x00,0x2a,0x2a,0x4a,0x00,0x00,0x20,0xff,0x01,0xfc,0x94,0x1a,0x60,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 32382 繾 ; -+,0x10,0x10,0x20,0x20,0x4a,0x79,0x10,0x13,0x29,0x7d,0x05,0x51,0x55,0x55,0x42,0x04,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0x7c,0x44,0x7c,0x40,0x7e,0x42,0x7e,0x80,0x7f -+// 32383 繿 ; -+,0x10,0x19,0x11,0x25,0x7d,0x09,0x11,0x25,0x7f,0x04,0x51,0x55,0x55,0x55,0x03,0x00,0x04,0xf4,0x44,0xf7,0x14,0x16,0xf9,0x41,0xf0,0x00,0xfe,0x4a,0x4a,0x4a,0xff,0x00 -+// 32384 纀 ; -+,0x11,0x11,0x21,0x21,0x4b,0x73,0x15,0x21,0x49,0x7d,0x01,0x55,0x55,0x51,0x01,0x01,0x28,0xaa,0x6c,0x28,0xff,0x44,0xfe,0x10,0x7e,0x10,0xff,0x10,0x28,0x24,0x47,0x82 -+// 32385 纁 ; -+,0x11,0x18,0x11,0x20,0x24,0x7c,0x08,0x10,0x24,0x7e,0x02,0x55,0x54,0x55,0x02,0x00,0xfe,0x10,0xff,0x10,0xfe,0xd6,0xba,0xfe,0x10,0xff,0x10,0xff,0x00,0x49,0x49,0x00 -+// 32386 纂 ; -+,0x10,0x1f,0x24,0x0f,0x08,0x0f,0x08,0x7f,0x05,0x1a,0x67,0x02,0x07,0x00,0x08,0x11,0x20,0x3e,0x48,0xf8,0x08,0xf8,0x08,0xfe,0x10,0x4c,0x83,0x20,0xf0,0x80,0x90,0x88 -+// 32387 纃 ; -+,0x08,0x08,0x13,0x10,0x27,0x7d,0x09,0x12,0x28,0x7c,0x04,0x50,0x54,0x54,0x01,0x02,0x20,0x10,0xff,0x29,0xd2,0x55,0x55,0xd7,0x15,0x84,0xfc,0x84,0xfc,0x84,0x04,0x04 -+// 32388 纄 ; -+,0x10,0x1b,0x10,0x20,0x44,0x7a,0x12,0x28,0x7b,0x09,0x01,0x55,0x55,0x51,0x02,0x04,0x84,0xff,0xa4,0x3e,0x22,0x54,0x88,0x37,0x48,0x7f,0x08,0x3e,0x08,0x7f,0x88,0x7f -+// 32389 纅 ; -+,0x10,0x19,0x11,0x22,0x2b,0x79,0x0a,0x13,0x2c,0x77,0x00,0x54,0x54,0x55,0x02,0x00,0x10,0x22,0x7a,0x4d,0xff,0x4a,0x4d,0xff,0x21,0xff,0x70,0x68,0xa4,0x27,0x22,0x20 -+// 32390 纆 ; -+,0x11,0x19,0x11,0x21,0x24,0x79,0x10,0x2b,0x7d,0x05,0x02,0x55,0x54,0x54,0x03,0x00,0xff,0x55,0x39,0xff,0x10,0xff,0x10,0xff,0x4a,0x49,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 32391 纇 ; -+,0x08,0x2a,0x1c,0x7f,0x1c,0x2a,0x49,0x12,0x3c,0x08,0x11,0x3e,0x04,0x15,0x24,0x4c,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x00,0x24,0xa2,0x42 -+// 32392 纈 ; -+,0x00,0x10,0x10,0x23,0x28,0x70,0x13,0x28,0x7b,0x0a,0x02,0x56,0x57,0x52,0x00,0x00,0x80,0xbf,0x88,0xfe,0x92,0x9e,0xd2,0x12,0xde,0x52,0x5e,0x40,0xd2,0x21,0x41,0x00 -+// 32393 纉 ; -+,0x10,0x1b,0x10,0x23,0x44,0x7d,0x0a,0x10,0x24,0x7e,0x04,0x00,0x54,0x54,0x54,0x01,0x88,0xde,0x88,0xff,0x88,0x54,0x22,0xfc,0x84,0xe4,0x9c,0x84,0xfc,0x48,0x86,0x02 -+// 32394 纊 ; -+,0x10,0x10,0x21,0x21,0x45,0x79,0x11,0x25,0x7f,0x05,0x01,0x55,0x55,0x56,0x02,0x04,0x20,0x10,0xff,0x28,0xfe,0x28,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x24,0x43,0x81 -+// 32395 纋 ; -+,0x13,0x10,0x21,0x25,0x79,0x0b,0x12,0x28,0x7d,0x0a,0x00,0x55,0x56,0x54,0x00,0x03,0xfe,0x40,0xfc,0x44,0x24,0xfe,0x8a,0xc4,0x7a,0x48,0xc8,0x30,0x30,0x4c,0x87,0x02 -+// 32396 續 ; -+,0x10,0x19,0x10,0x24,0x28,0x79,0x11,0x25,0x7e,0x02,0x00,0x2a,0x2a,0x4a,0x00,0x01,0x20,0xfe,0x20,0xfc,0x00,0xfe,0x4a,0xfe,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 32397 纍 ; -+,0x0f,0x08,0x0f,0x08,0x3f,0x25,0x3f,0x25,0x3f,0x01,0x07,0x01,0x07,0x00,0x08,0x11,0xf8,0x88,0xf8,0x88,0xfe,0x4a,0x7e,0x4a,0xfe,0x10,0xe0,0x08,0xfc,0x80,0x90,0x88 -+// 32398 纎 ; -+,0x10,0x18,0x11,0x24,0x7b,0x08,0x13,0x28,0x7b,0x08,0x03,0x54,0x54,0x57,0x00,0x00,0x48,0x4a,0xf9,0x48,0xff,0xa8,0xba,0xab,0xba,0xa4,0xbc,0xa5,0xfb,0x8b,0x11,0x00 -+// 32399 纏 ; -+,0x10,0x19,0x11,0x25,0x7d,0x09,0x11,0x29,0x7d,0x05,0x01,0x52,0x52,0x54,0x09,0x00,0x10,0xff,0x00,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x44,0x92,0x7c,0x10,0xff,0x00 -+// 32400 纐 ; -+,0x11,0x18,0x13,0x24,0x7d,0x09,0x12,0x29,0x7c,0x04,0x01,0x51,0x52,0x54,0x00,0x00,0x00,0x9f,0xe4,0x08,0x5f,0x31,0x3f,0x51,0x9f,0x91,0x5f,0x51,0x4a,0x11,0x21,0x00 -+// 32401 纑 ; -+,0x10,0x10,0x20,0x25,0x49,0x71,0x11,0x29,0x7d,0x05,0x01,0x52,0x52,0x54,0x0b,0x00,0x20,0x3e,0x20,0xff,0x22,0xfc,0x22,0x7c,0x54,0x7c,0x54,0xfe,0xaa,0xaa,0xff,0x00 -+// 32402 纒 ; -+,0x11,0x19,0x11,0x21,0x25,0x79,0x11,0x29,0x7d,0x05,0x01,0x29,0x2a,0x4a,0x04,0x08,0xff,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0xff,0x55,0x08,0x7e,0x08,0xff -+// 32403 纓 ; -+,0x11,0x19,0x11,0x21,0x45,0x79,0x11,0x2a,0x7c,0x05,0x00,0x54,0x54,0x54,0x00,0x00,0xef,0xad,0x6b,0xad,0x6b,0xef,0x4a,0x31,0x48,0xff,0x48,0xc8,0x30,0x2c,0xc4,0x00 -+// 32404 纔 ; -+,0x10,0x18,0x11,0x21,0x49,0x79,0x11,0x29,0x7d,0x08,0x01,0x55,0x55,0x54,0x00,0x01,0x80,0xfe,0x04,0xfe,0x02,0xfe,0x50,0x9e,0x70,0x8e,0xfe,0x22,0xfe,0x50,0x91,0x0f -+// 32405 纕 ; -+,0x10,0x1b,0x10,0x21,0x29,0x79,0x10,0x2b,0x7c,0x05,0x00,0x57,0x55,0x52,0x04,0x00,0x40,0xfe,0x00,0xdc,0x54,0xdc,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x8c,0xc7,0x82 -+// 32406 纖 ; -+,0x11,0x11,0x21,0x2a,0x77,0x11,0x23,0x51,0x7b,0x09,0x03,0x55,0x55,0x55,0x03,0x00,0x28,0x28,0x2a,0xd9,0xff,0x48,0x68,0x4a,0x7b,0x4a,0x74,0x44,0x75,0xcb,0x11,0x00 -+// 32407 纗 ; -+,0x11,0x19,0x11,0x24,0x79,0x0a,0x10,0x28,0x7c,0x04,0x01,0x55,0x55,0x55,0x01,0x01,0x12,0x12,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0xfe,0x4a,0xfe,0x4a,0x7a,0x06 -+// 32408 纘 ; -+,0x12,0x1b,0x12,0x27,0x79,0x09,0x12,0x28,0x7c,0x04,0x00,0x54,0x54,0x54,0x00,0x01,0x94,0xdf,0x94,0xff,0x4a,0x6a,0x51,0xfe,0x82,0xf2,0x8e,0x82,0xfe,0x28,0x46,0x82 -+// 32409 纙 ; -+,0x10,0x11,0x11,0x25,0x78,0x11,0x21,0x4b,0x7d,0x0b,0x00,0x55,0x55,0x55,0x00,0x00,0x00,0xff,0x49,0xff,0x14,0x12,0x7f,0x94,0x1f,0xd4,0x14,0x5f,0x54,0x54,0x1f,0x10 -+// 32410 纚 ; -+,0x09,0x08,0x11,0x25,0x7d,0x09,0x11,0x29,0x7d,0x05,0x01,0x55,0x55,0x52,0x02,0x04,0xcf,0x00,0xce,0x4a,0xce,0x5a,0xff,0x48,0xfe,0x4a,0xfe,0x48,0x7a,0x4c,0x69,0x47 -+// 32411 纛 ; -+,0x00,0x3f,0x00,0x7f,0x08,0x7f,0x08,0x0f,0x19,0x15,0x11,0x7f,0x04,0x25,0x44,0x0c,0x80,0xfe,0x80,0xff,0x88,0xff,0x48,0xf8,0x12,0x3c,0x12,0xbf,0x08,0x2a,0xc9,0x18 -+// 32412 纜 ; -+,0x13,0x12,0x23,0x4a,0x7b,0x12,0x13,0x28,0x7d,0x09,0x01,0x55,0x55,0x54,0x00,0x01,0xd0,0x9f,0xe4,0x5f,0xd5,0x95,0xdf,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x49,0x89,0x07 -+// 32413 纝 ; -+,0x10,0x10,0x20,0x24,0x4b,0x72,0x13,0x2a,0x7f,0x08,0x00,0x54,0x54,0x54,0x00,0x01,0xfe,0x92,0xfe,0x92,0xff,0xa5,0xff,0xa5,0xff,0x20,0x44,0xf8,0x24,0xfe,0x94,0x32 -+// 32414 纞 ; -+,0x11,0x11,0x22,0x2b,0x79,0x12,0x17,0x28,0x7a,0x0a,0x00,0x52,0x52,0x52,0x04,0x00,0x42,0x22,0xa5,0xff,0x02,0x77,0x80,0x75,0xd5,0x74,0x00,0xa2,0x91,0x85,0x7c,0x00 -+// 32415 纟 ; -+,0x04,0x04,0x08,0x08,0x10,0x3f,0x12,0x04,0x08,0x13,0x3c,0x00,0x03,0x7c,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x00 -+// 32416 纠 ; -+,0x04,0x04,0x08,0x09,0x11,0x3e,0x12,0x04,0x09,0x1e,0x00,0x01,0x0e,0x30,0x00,0x00,0x02,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2e,0x32,0xa2,0x02,0x02,0x02,0x02 -+// 32417 纡 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x0b,0x10,0x26,0x78,0x00,0x07,0x78,0x20,0x00,0x00,0x04,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 32418 红 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x04,0x08,0x10,0x7e,0x20,0x00,0x0e,0x70,0x23,0x00,0x00,0x00,0x02,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x12,0xff,0x00 -+// 32419 纣 ; -+,0x08,0x08,0x10,0x14,0x25,0x78,0x08,0x10,0x26,0x78,0x20,0x06,0x78,0x20,0x00,0x00,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x88,0x48,0x68,0x28,0x08,0x08,0x08,0x28,0x10 -+// 32420 纤 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x27,0x08,0x10,0x3e,0x10,0x00,0x07,0x78,0x20,0x00,0x1c,0xe0,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 32421 纥 ; -+,0x08,0x08,0x10,0x12,0x22,0x7d,0x26,0x08,0x10,0x3e,0x00,0x00,0x0e,0x70,0x20,0x00,0x40,0x60,0x40,0xfe,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x40,0x81,0x81,0x7f,0x00 -+// 32422 约 ; -+,0x08,0x08,0x08,0x12,0x12,0x24,0x7d,0x08,0x10,0x3e,0x00,0x07,0x78,0x20,0x00,0x00,0x20,0x20,0x20,0x7e,0x42,0x82,0x42,0x22,0x12,0x12,0x02,0x02,0x02,0x02,0x14,0x08 -+// 32423 级 ; -+,0x08,0x09,0x10,0x12,0x22,0x7c,0x08,0x10,0x3e,0x20,0x01,0x0d,0x72,0x04,0x08,0x03,0x00,0xfc,0x44,0x44,0x48,0x48,0x5f,0xa2,0xa2,0xa4,0x14,0x08,0x18,0x24,0xc7,0x02 -+// 32424 纨 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x26,0x78,0x20,0x06,0x78,0x21,0x02,0x04,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0xa4,0x64,0x24,0x54,0x54,0x85,0x05,0x03,0x00 -+// 32425 纩 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x08,0x10,0x20,0x7c,0x00,0x00,0x1d,0x61,0x02,0x04,0x20,0x10,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 32426 纪 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x24,0x08,0x10,0x3e,0x00,0x06,0x78,0x20,0x00,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x80,0x80,0x80,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 32427 纫 ; -+,0x04,0x04,0x08,0x09,0x12,0x3e,0x04,0x08,0x10,0x3d,0x01,0x06,0x78,0x20,0x01,0x02,0x00,0x00,0xfe,0x12,0x12,0x92,0x92,0x92,0x92,0x22,0x22,0x22,0x42,0x82,0x14,0x08 -+// 32428 纬 ; -+,0x08,0x08,0x11,0x12,0x22,0x7d,0x08,0x10,0x21,0x7c,0x00,0x06,0x78,0x20,0x00,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x21,0x21,0x21,0x25,0x22,0x20,0x20 -+// 32429 纭 ; -+,0x08,0x08,0x08,0x12,0x12,0x24,0x7d,0x08,0x10,0x3e,0x10,0x06,0x78,0x21,0x00,0x00,0x00,0x04,0xfe,0x00,0x00,0x02,0xff,0x20,0x20,0x40,0x48,0x44,0x82,0xfe,0x82,0x00 -+// 32430 纮 ; -+,0x08,0x08,0x10,0x12,0x23,0x7c,0x08,0x10,0x26,0x78,0x00,0x05,0x79,0x22,0x04,0x08,0x20,0x30,0x20,0x22,0xff,0x20,0x50,0x58,0x50,0x90,0xa0,0x24,0x42,0xfe,0x42,0x00 -+// 32431 纯 ; -+,0x04,0x04,0x08,0x09,0x12,0x3e,0x04,0x08,0x10,0x3e,0x00,0x06,0x78,0x20,0x00,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x11,0x11,0x11,0x0f -+// 32432 纰 ; -+,0x09,0x09,0x11,0x11,0x25,0x7d,0x09,0x11,0x21,0x7d,0x01,0x01,0x0d,0x71,0x21,0x00,0x10,0x10,0x10,0x10,0x10,0xd3,0x1c,0x10,0x10,0x10,0x10,0x11,0x51,0x91,0x0f,0x00 -+// 32433 纱 ; -+,0x08,0x08,0x10,0x12,0x22,0x7c,0x09,0x12,0x20,0x7e,0x00,0x06,0x78,0x20,0x03,0x0c,0x10,0x10,0x10,0x94,0xd2,0x91,0x11,0x10,0x12,0x14,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 32434 纲 ; -+,0x08,0x09,0x11,0x11,0x25,0x7d,0x09,0x11,0x21,0x7d,0x01,0x01,0x0d,0x71,0x01,0x01,0x00,0xff,0x01,0x05,0x45,0x25,0x19,0x09,0x19,0x25,0x45,0x85,0x01,0x01,0x05,0x02 -+// 32435 纳 ; -+,0x08,0x08,0x10,0x13,0x23,0x7d,0x05,0x09,0x11,0x3f,0x01,0x07,0x79,0x21,0x01,0x01,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x29,0x25,0x47,0x85,0x01,0x01,0x01,0x05,0x02 -+// 32436 纴 ; -+,0x08,0x08,0x11,0x10,0x24,0x78,0x08,0x13,0x20,0x7c,0x00,0x06,0x78,0x20,0x03,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0xfe,0x00 -+// 32437 纵 ; -+,0x08,0x08,0x10,0x12,0x24,0x78,0x08,0x11,0x21,0x7d,0x01,0x1a,0x62,0x04,0x08,0x11,0x88,0x88,0x88,0x88,0x88,0x88,0x98,0x58,0x54,0x34,0x14,0x24,0x22,0x42,0x83,0x02 -+// 32438 纶 ; -+,0x08,0x08,0x10,0x10,0x22,0x7d,0x06,0x08,0x10,0x7c,0x20,0x00,0x0c,0x70,0x00,0x00,0x20,0x20,0x50,0x48,0x84,0x07,0x02,0x80,0x84,0x98,0xe0,0x80,0x82,0x83,0x7e,0x00 -+// 32439 纷 ; -+,0x10,0x10,0x10,0x20,0x24,0x79,0x0a,0x11,0x7c,0x20,0x00,0x0c,0x70,0x21,0x02,0x04,0x10,0x90,0xd0,0x88,0x88,0x04,0x03,0xf8,0x48,0x48,0x48,0x88,0x88,0x08,0x28,0x10 -+// 32440 纸 ; -+,0x08,0x08,0x11,0x11,0x25,0x7d,0x09,0x11,0x21,0x7d,0x01,0x01,0x0d,0x71,0x01,0x00,0x00,0x0e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x08,0x09,0x49,0x85,0x03,0x00 -+// 32441 纹 ; -+,0x10,0x18,0x10,0x23,0x24,0x78,0x08,0x10,0x20,0x7c,0x00,0x00,0x0e,0x70,0x01,0x02,0x40,0x30,0x20,0xff,0x08,0x88,0x88,0x88,0x50,0x50,0x20,0x20,0x50,0x8c,0x07,0x02 -+// 32442 纺 ; -+,0x00,0x10,0x18,0x13,0x24,0x78,0x08,0x10,0x20,0x7c,0x00,0x00,0x1c,0x61,0x02,0x00,0x20,0x18,0x10,0xff,0x20,0x20,0x3e,0x22,0x22,0x42,0x42,0x42,0x82,0x0a,0x04,0x00 -+// 32443 纻 ; -+,0x08,0x0c,0x08,0x10,0x24,0x7c,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x71,0x00,0x00,0x20,0x18,0x10,0xff,0x82,0x84,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 32444 纼 ; -+,0x08,0x09,0x10,0x10,0x25,0x79,0x09,0x11,0x21,0x7c,0x00,0x00,0x0c,0x71,0x00,0x00,0x04,0xe4,0x24,0x24,0xe4,0x04,0x04,0x04,0xe4,0x24,0x24,0x24,0x24,0x24,0xa4,0x44 -+// 32445 纽 ; -+,0x00,0x08,0x08,0x08,0x12,0x3e,0x04,0x08,0x10,0x3e,0x00,0x00,0x0e,0x71,0x00,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xfc,0x44,0x44,0x44,0x44,0x44,0xff,0x00,0x00 -+// 32446 纾 ; -+,0x08,0x0c,0x08,0x10,0x22,0x7c,0x09,0x10,0x3e,0x00,0x00,0x0e,0x70,0x20,0x00,0x00,0x00,0xfe,0x02,0x44,0x28,0x10,0xff,0x12,0x14,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 32447 线 ; -+,0x08,0x0c,0x08,0x10,0x11,0x24,0x7c,0x09,0x10,0x3e,0x00,0x00,0x0e,0x71,0x00,0x00,0x20,0x28,0x26,0x24,0xfe,0x20,0x20,0xff,0x20,0x24,0x18,0x11,0x69,0x85,0x03,0x01 -+// 32448 绀 ; -+,0x10,0x18,0x10,0x20,0x27,0x78,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x84,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 32449 绁 ; -+,0x10,0x10,0x20,0x20,0x44,0x7f,0x08,0x10,0x20,0x7c,0x00,0x00,0x0e,0x70,0x00,0x00,0x00,0xa4,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0xbc,0x80,0x80,0x80,0xff,0x00 -+// 32450 绂 ; -+,0x10,0x18,0x10,0x20,0x25,0x78,0x08,0x10,0x20,0x7c,0x00,0x0d,0x71,0x02,0x04,0x00,0x40,0x48,0x44,0x44,0xff,0x40,0x40,0x7e,0x62,0xa4,0xa4,0x18,0x18,0x24,0x47,0x82 -+// 32451 练 ; -+,0x00,0x10,0x19,0x10,0x24,0x7c,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x71,0x00,0x00,0x20,0x20,0xfe,0x20,0x20,0xf8,0x48,0x48,0xff,0x08,0x48,0x4a,0x89,0x09,0x28,0x10 -+// 32452 组 ; -+,0x08,0x0c,0x08,0x12,0x12,0x3c,0x04,0x08,0x10,0x3e,0x00,0x00,0x06,0x39,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 32453 绅 ; -+,0x00,0x08,0x08,0x10,0x22,0x7c,0x04,0x08,0x10,0x3e,0x00,0x0e,0x70,0x00,0x00,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32454 细 ; -+,0x08,0x0c,0x10,0x22,0x7c,0x04,0x08,0x10,0x3e,0x00,0x00,0x0e,0x70,0x00,0x00,0x00,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x00,0x00 -+// 32455 织 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x71,0x02,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x00,0x00,0x48,0x44,0x86,0x03,0x02,0x00 -+// 32456 终 ; -+,0x08,0x08,0x10,0x14,0x24,0x79,0x08,0x10,0x20,0x7d,0x00,0x00,0x0c,0x70,0x00,0x00,0x40,0x40,0x7e,0x84,0xc4,0x28,0x10,0x28,0x44,0xa3,0x18,0x08,0x20,0x18,0x0c,0x04 -+// 32457 绉 ; -+,0x08,0x08,0x08,0x10,0x14,0x25,0x7a,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x40,0x60,0x40,0xfe,0x84,0x08,0xfe,0x02,0x02,0x02,0x7e,0x02,0x02,0x02,0xfe,0x00 -+// 32458 绊 ; -+,0x08,0x08,0x08,0x10,0x10,0x24,0x78,0x08,0x10,0x21,0x7c,0x00,0x00,0x0e,0x70,0x00,0x10,0x10,0x92,0x52,0x54,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32459 绋 ; -+,0x08,0x08,0x11,0x10,0x24,0x79,0x09,0x11,0x21,0x7c,0x00,0x00,0x0c,0x71,0x02,0x00,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xff,0x49,0x49,0x8d,0x8a,0x08,0x08,0x08 -+// 32460 绌 ; -+,0x00,0x08,0x08,0x10,0x10,0x24,0x78,0x10,0x20,0x7d,0x01,0x01,0x0d,0x71,0x01,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 32461 绍 ; -+,0x08,0x08,0x10,0x10,0x24,0x78,0x08,0x11,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x00,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32462 绎 ; -+,0x08,0x08,0x10,0x10,0x24,0x78,0x09,0x10,0x20,0x7c,0x00,0x01,0x0c,0x70,0x00,0x00,0x00,0xfe,0x44,0x28,0x30,0x48,0x87,0x12,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32463 经 ; -+,0x08,0x08,0x10,0x10,0x24,0x78,0x09,0x10,0x20,0x7c,0x00,0x00,0x0c,0x71,0x00,0x00,0x00,0xfe,0x04,0x08,0x18,0x64,0x83,0x01,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 32464 绐 ; -+,0x08,0x08,0x10,0x14,0x24,0x78,0x09,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x20,0x30,0x20,0x40,0x44,0x82,0xff,0x02,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x00 -+// 32465 绑 ; -+,0x08,0x08,0x13,0x10,0x24,0x78,0x0b,0x10,0x20,0x7b,0x00,0x00,0x19,0x61,0x02,0x04,0x80,0x8f,0xe9,0x89,0x8a,0x8a,0xec,0x8a,0x89,0xf9,0x89,0x8d,0x0a,0x08,0x08,0x08 -+// 32466 绒 ; -+,0x08,0x08,0x10,0x10,0x27,0x78,0x08,0x10,0x23,0x78,0x00,0x01,0x0d,0x72,0x04,0x00,0x10,0x10,0x14,0x12,0xff,0x90,0x90,0x92,0xd2,0x8c,0x88,0x18,0x25,0x45,0x03,0x01 -+// 32467 结 ; -+,0x08,0x08,0x10,0x11,0x24,0x78,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32468 绔 ; -+,0x08,0x08,0x11,0x10,0x24,0x7b,0x08,0x10,0x21,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x20,0x20,0xfe,0x50,0x88,0x07,0xfa,0x00,0xfe,0x40,0x7c,0x04,0x04,0x04,0x14,0x08 -+// 32469 绕 ; -+,0x08,0x08,0x10,0x11,0x24,0x78,0x08,0x10,0x23,0x7c,0x00,0x00,0x0d,0x71,0x02,0x00,0x80,0x80,0x7e,0xc4,0x28,0x10,0x2a,0xc6,0xff,0x90,0x90,0x90,0x11,0x11,0x0f,0x00 -+// 32470 绖 ; -+,0x08,0x09,0x10,0x14,0x24,0x78,0x09,0x10,0x20,0x7d,0x00,0x00,0x0c,0x70,0x03,0x00,0x00,0xff,0x20,0x28,0x44,0x9e,0xe2,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 32471 绗 ; -+,0x08,0x08,0x10,0x15,0x25,0x7a,0x08,0x11,0x12,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0xbe,0x80,0x00,0x40,0x7f,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88 -+// 32472 绘 ; -+,0x08,0x08,0x10,0x10,0x24,0x78,0x09,0x10,0x20,0x7d,0x00,0x00,0x0c,0x70,0x01,0x00,0x20,0x20,0x30,0x48,0x44,0x83,0x7c,0x00,0x00,0xff,0x20,0x40,0x44,0x82,0xff,0x02 -+// 32473 给 ; -+,0x08,0x08,0x10,0x10,0x24,0x79,0x0a,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x20,0x20,0x50,0x48,0x84,0x07,0xfa,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00 -+// 32474 绚 ; -+,0x08,0x08,0x10,0x10,0x25,0x7a,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x40,0x40,0x80,0xfe,0x02,0xfa,0x8a,0x8a,0xfa,0x8a,0x8a,0xfa,0x02,0x02,0x0a,0x04 -+// 32475 绛 ; -+,0x08,0x08,0x10,0x15,0x24,0x78,0x08,0x13,0x21,0x79,0x01,0x01,0x0c,0x70,0x00,0x00,0x40,0x40,0xfc,0x48,0x30,0x48,0xa7,0x22,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 32476 络 ; -+,0x10,0x18,0x10,0x20,0x25,0x7c,0x08,0x10,0x20,0x7d,0x02,0x00,0x1c,0x60,0x00,0x00,0x40,0x40,0x7c,0xc4,0x48,0x30,0x30,0x48,0x86,0xff,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 32477 绝 ; -+,0x10,0x18,0x10,0x20,0x25,0x7d,0x0a,0x10,0x20,0x7c,0x00,0x00,0x0e,0x70,0x00,0x00,0x40,0x40,0xfe,0x84,0x08,0xfe,0x92,0x92,0x92,0xfe,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 32478 绞 ; -+,0x08,0x08,0x10,0x11,0x22,0x7e,0x04,0x09,0x10,0x3e,0x00,0x00,0x06,0x38,0x00,0x03,0x40,0x30,0x10,0xff,0x00,0x48,0x86,0x02,0x08,0x48,0x28,0x10,0x28,0x44,0x87,0x02 -+// 32479 统 ; -+,0x08,0x08,0x11,0x10,0x22,0x7c,0x04,0x09,0x10,0x3e,0x00,0x00,0x0e,0x70,0x01,0x02,0x20,0x10,0xff,0x20,0x20,0x44,0x82,0xff,0x4a,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 32480 绠 ; -+,0x10,0x11,0x10,0x20,0x24,0x78,0x08,0x10,0x20,0x7c,0x01,0x00,0x0c,0x70,0x03,0x0c,0x00,0xff,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xa0,0x40,0xa0,0x18,0x07 -+// 32481 绡 ; -+,0x08,0x0d,0x08,0x10,0x22,0x7c,0x04,0x08,0x10,0x3e,0x00,0x00,0x0e,0x70,0x00,0x00,0x10,0x12,0x93,0x54,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 32482 绢 ; -+,0x08,0x08,0x10,0x10,0x22,0x7c,0x04,0x08,0x10,0x3e,0x00,0x06,0x78,0x20,0x00,0x00,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 32483 绣 ; -+,0x08,0x0d,0x08,0x11,0x24,0x7c,0x09,0x10,0x3d,0x00,0x00,0x0e,0x70,0x01,0x02,0x04,0x1e,0xf0,0x20,0xff,0x68,0xa4,0x23,0x22,0xfc,0x48,0x48,0x9e,0x82,0x02,0x14,0x08 -+// 32484 绤 ; -+,0x08,0x0c,0x08,0x12,0x3d,0x04,0x08,0x10,0x3c,0x03,0x00,0x0c,0x70,0x00,0x00,0x00,0x00,0x48,0x66,0x82,0x10,0x10,0x28,0x44,0x83,0xfe,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 32485 绥 ; -+,0x00,0x09,0x08,0x11,0x24,0x7c,0x08,0x13,0x20,0x78,0x01,0x00,0x0c,0x70,0x01,0x06,0x1e,0xf0,0x02,0x23,0xd2,0x94,0x20,0xff,0x44,0x84,0x88,0x50,0x30,0x48,0x86,0x02 -+// 32486 绦 ; -+,0x10,0x18,0x10,0x10,0x25,0x24,0x78,0x13,0x20,0x7d,0x00,0x00,0x1d,0x62,0x04,0x00,0x40,0x40,0xfc,0x88,0x50,0x20,0xd8,0x27,0x20,0xfe,0x20,0xa4,0x22,0x22,0xa0,0x40 -+// 32487 继 ; -+,0x10,0x19,0x11,0x21,0x25,0x7d,0x09,0x11,0x21,0x7d,0x01,0x01,0x0d,0x71,0x01,0x00,0x10,0x10,0x12,0x92,0x54,0x10,0xff,0x38,0x34,0x52,0x52,0x90,0x10,0x00,0xff,0x00 -+// 32488 绨 ; -+,0x01,0x10,0x19,0x10,0x24,0x7d,0x09,0x11,0x21,0x7c,0x00,0x00,0x1d,0x62,0x04,0x00,0x04,0x88,0xfe,0x22,0x22,0xfe,0x20,0x20,0xfe,0x62,0xa2,0xa2,0x2a,0x24,0x20,0x20 -+// 32489 绩 ; -+,0x08,0x0b,0x10,0x11,0x24,0x7b,0x08,0x11,0x21,0x7d,0x01,0x01,0x0c,0x70,0x00,0x01,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0x24,0x24,0x24,0x50,0x48,0x84,0x04 -+// 32490 绪 ; -+,0x08,0x08,0x10,0x10,0x24,0x7d,0x08,0x10,0x20,0x7d,0x02,0x00,0x1c,0x60,0x00,0x00,0x20,0x20,0xfa,0x22,0x24,0xff,0x10,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 32491 绫 ; -+,0x08,0x0c,0x09,0x10,0x24,0x7f,0x08,0x11,0x22,0x78,0x01,0x00,0x0c,0x70,0x01,0x06,0x20,0x20,0xfe,0x20,0x20,0xff,0x88,0x44,0x7f,0x8a,0x48,0x50,0x30,0x48,0x86,0x02 -+// 32492 绬 ; -+,0x08,0x0c,0x0b,0x10,0x24,0x78,0x09,0x11,0x21,0x7b,0x00,0x00,0x0c,0x70,0x01,0x02,0x88,0x88,0xff,0x88,0xa8,0x20,0xfc,0x24,0x24,0xff,0x20,0x50,0x48,0x84,0x07,0x02 -+// 32493 续 ; -+,0x08,0x0c,0x08,0x10,0x25,0x78,0x08,0x11,0x20,0x7b,0x00,0x00,0x0c,0x70,0x00,0x00,0x20,0x20,0xfe,0x20,0xff,0x92,0x54,0x50,0x90,0xff,0x10,0x28,0x24,0x42,0x82,0x00 -+// 32494 绮 ; -+,0x08,0x0c,0x09,0x10,0x22,0x7e,0x04,0x09,0x10,0x3e,0x00,0x00,0x0e,0x70,0x00,0x00,0x10,0x10,0xff,0x10,0x28,0x44,0x82,0xff,0x02,0xf2,0x92,0x92,0xf2,0x02,0x0a,0x04 -+// 32495 绯 ; -+,0x10,0x18,0x10,0x11,0x24,0x7c,0x09,0x10,0x20,0x7c,0x03,0x00,0x18,0x60,0x00,0x00,0x48,0x48,0x48,0xcf,0x48,0x48,0xce,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 32496 绰 ; -+,0x08,0x0c,0x08,0x10,0x25,0x7d,0x09,0x11,0x21,0x7d,0x00,0x03,0x0c,0x70,0x00,0x00,0x20,0x20,0x3e,0x20,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x20,0xff,0x20,0x20,0x20,0x20 -+// 32497 绱 ; -+,0x08,0x0d,0x08,0x14,0x26,0x7d,0x09,0x11,0x21,0x7d,0x01,0x0d,0x71,0x01,0x01,0x00,0x10,0x12,0xd3,0x94,0x10,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04,0x00 -+// 32498 绲 ; -+,0x10,0x19,0x11,0x21,0x45,0x7d,0x08,0x11,0x21,0x7d,0x01,0x0d,0x71,0x23,0x01,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x10,0x12,0xd4,0x18,0x10,0x52,0x93,0x0e,0x00 -+// 32499 绳 ; -+,0x10,0x18,0x10,0x20,0x24,0x7c,0x09,0x11,0x21,0x7d,0x01,0x00,0x0c,0x70,0x00,0x00,0x00,0xfc,0x84,0x84,0xfc,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0x21,0x21,0x1f,0x00 -+// 32500 维 ; -+,0x10,0x18,0x10,0x21,0x25,0x7a,0x08,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x80,0xd0,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80,0x80 -+// 32501 绵 ; -+,0x08,0x08,0x10,0x10,0x22,0x7e,0x04,0x08,0x10,0x3e,0x00,0x06,0x78,0x20,0x00,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xfe,0x92,0x92,0x92,0x92,0x96,0x10,0x10 -+// 32502 绶 ; -+,0x10,0x19,0x11,0x20,0x24,0x7d,0x09,0x10,0x21,0x7c,0x00,0x0e,0x70,0x00,0x01,0x06,0x0e,0xf0,0x22,0x92,0x94,0xff,0x02,0x00,0xfc,0x88,0x88,0x50,0x20,0x58,0x87,0x02 -+// 32503 绷 ; -+,0x08,0x09,0x11,0x11,0x25,0x7d,0x09,0x11,0x21,0x7d,0x02,0x1a,0x65,0x08,0x10,0x00,0x00,0xde,0x52,0x52,0xde,0x52,0x52,0x52,0xde,0x52,0x52,0x52,0x52,0xaa,0x44,0x00 -+// 32504 绸 ; -+,0x08,0x0d,0x11,0x25,0x7d,0x09,0x11,0x21,0x7d,0x01,0x01,0x1d,0x62,0x02,0x04,0x08,0x00,0xfe,0x22,0x22,0xfa,0x22,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 32505 绹 ; -+,0x10,0x18,0x10,0x24,0x25,0x78,0x08,0x11,0x21,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x40,0x40,0x7f,0x81,0x41,0x7d,0xa1,0x21,0xfd,0x21,0xa5,0xa5,0xfd,0x01,0x05,0x02 -+// 32506 绺 ; -+,0x11,0x19,0x11,0x25,0x7e,0x08,0x10,0x20,0x7d,0x03,0x01,0x0d,0x71,0x01,0x01,0x00,0x08,0x08,0xec,0x2a,0xaa,0x48,0x48,0xb0,0x0f,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 32507 绻 ; -+,0x00,0x0a,0x09,0x10,0x27,0x7c,0x0b,0x10,0x21,0x7a,0x04,0x00,0x0c,0x70,0x00,0x00,0x20,0x24,0x28,0x20,0xfe,0x40,0xff,0x90,0x08,0xf7,0x92,0x90,0xb0,0x84,0x84,0x7c -+// 32508 综 ; -+,0x08,0x0c,0x09,0x11,0x24,0x7c,0x08,0x10,0x21,0x7c,0x00,0x00,0x0d,0x72,0x00,0x00,0x20,0x10,0xff,0x01,0x00,0xfe,0x00,0x00,0xff,0x10,0x94,0x92,0x11,0x11,0x50,0x20 -+// 32509 绽 ; -+,0x10,0x18,0x11,0x21,0x48,0x79,0x10,0x20,0x41,0x79,0x01,0x1d,0x62,0x02,0x04,0x00,0x20,0x10,0xff,0x02,0x00,0xfe,0x20,0x20,0x20,0x3e,0x20,0x20,0xa0,0x60,0x1f,0x00 -+// 32510 绾 ; -+,0x08,0x0c,0x09,0x11,0x22,0x7c,0x04,0x08,0x10,0x3c,0x00,0x00,0x0c,0x70,0x00,0x00,0x20,0x10,0xff,0x01,0x02,0xfc,0x84,0x84,0xfc,0x80,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 32511 绿 ; -+,0x10,0x19,0x10,0x10,0x24,0x7f,0x08,0x11,0x20,0x78,0x00,0x01,0x1a,0x60,0x00,0x00,0x00,0xfc,0x04,0xfc,0x04,0xff,0x20,0x24,0xa8,0x70,0xa8,0x27,0x22,0x20,0xa0,0x40 -+// 32512 缀 ; -+,0x00,0x13,0x18,0x11,0x20,0x25,0x7a,0x13,0x20,0x7a,0x01,0x01,0x1a,0x64,0x08,0x00,0x00,0xde,0x42,0x54,0x88,0x54,0x22,0xde,0x42,0x54,0x94,0x88,0x54,0x23,0x42,0x00 -+// 32513 缁 ; -+,0x10,0x18,0x10,0x21,0x25,0x7c,0x08,0x11,0x21,0x7d,0x01,0x01,0x0d,0x71,0x01,0x00,0x92,0xdb,0x94,0x28,0x24,0x93,0x4a,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0xff,0x00 -+// 32514 缂 ; -+,0x08,0x0c,0x13,0x10,0x24,0x7c,0x09,0x09,0x11,0x3d,0x00,0x03,0x0c,0x70,0x00,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfc,0x24,0x24,0xfc,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 32515 缃 ; -+,0x10,0x18,0x10,0x10,0x27,0x7c,0x09,0x11,0x22,0x7a,0x04,0x00,0x0c,0x70,0x00,0x00,0x80,0x80,0x9e,0x92,0xf2,0x9e,0xd2,0xb2,0xb2,0x9e,0x92,0x92,0x92,0x9e,0x92,0x80 -+// 32516 缄 ; -+,0x10,0x18,0x10,0x11,0x25,0x7d,0x09,0x11,0x21,0x7d,0x01,0x1a,0x62,0x04,0x00,0x00,0x14,0x12,0x12,0xff,0x10,0xf2,0x13,0x12,0xea,0xac,0xa4,0xed,0x15,0x23,0x41,0x00 -+// 32517 缅 ; -+,0x10,0x1b,0x10,0x20,0x25,0x79,0x09,0x11,0x21,0x7d,0x01,0x01,0x0d,0x71,0x01,0x00,0x00,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0xfe,0x02,0x00 -+// 32518 缆 ; -+,0x00,0x11,0x19,0x11,0x25,0x78,0x09,0x11,0x21,0x7d,0x01,0x00,0x1c,0x70,0x01,0x02,0x48,0x48,0x4f,0x50,0x64,0x42,0xfc,0x04,0x24,0x24,0x24,0x50,0x51,0x91,0x0f,0x00 -+// 32519 缇 ; -+,0x08,0x0c,0x08,0x10,0x24,0x7c,0x08,0x13,0x20,0x7c,0x00,0x00,0x0c,0x71,0x02,0x04,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xff,0x10,0x90,0x9e,0x90,0x90,0x50,0x30,0x0f -+// 32520 缈 ; -+,0x10,0x1b,0x12,0x22,0x4b,0x72,0x12,0x23,0x7a,0x02,0x02,0x1b,0x60,0x00,0x01,0x00,0x08,0xc8,0x48,0x48,0xca,0x69,0x69,0xea,0x4b,0x4a,0x44,0xc8,0x10,0x60,0x80,0x00 -+// 32521 缉 ; -+,0x00,0x10,0x10,0x20,0x24,0x7d,0x08,0x08,0x10,0x3e,0x00,0x00,0x0d,0x70,0x00,0x00,0x00,0xfc,0x84,0xfc,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0x9f,0xe4,0x04,0x04,0x04 -+// 32522 缊 ; -+,0x08,0x08,0x10,0x10,0x24,0x7c,0x08,0x10,0x21,0x7d,0x01,0x01,0x19,0x67,0x00,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00,0x00 -+// 32523 缋 ; -+,0x10,0x19,0x11,0x21,0x24,0x7b,0x08,0x11,0x21,0x7d,0x01,0x01,0x0d,0x70,0x00,0x01,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0x24,0x24,0x24,0x54,0x48,0x8c,0x04 -+// 32524 缌 ; -+,0x00,0x11,0x19,0x11,0x25,0x7d,0x09,0x11,0x20,0x7c,0x02,0x02,0x1a,0x64,0x00,0x00,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x00,0x90,0x8a,0x89,0x81,0x84,0x7c,0x00 -+// 32525 缍 ; -+,0x00,0x10,0x19,0x10,0x27,0x7d,0x09,0x13,0x21,0x79,0x03,0x00,0x0c,0x70,0x01,0x00,0x00,0x1e,0xe0,0x20,0xff,0x24,0x24,0xff,0x24,0x24,0xff,0x20,0x20,0x20,0xfe,0x00 -+// 32526 缎 ; -+,0x10,0x13,0x22,0x22,0x4b,0x7a,0x12,0x22,0x7b,0x02,0x02,0x1b,0x66,0x02,0x02,0x02,0x00,0xbc,0x24,0x24,0xa4,0x23,0x40,0x3e,0xa2,0x12,0x14,0x88,0x14,0x22,0x42,0x00 -+// 32527 缏 ; -+,0x11,0x19,0x11,0x23,0x25,0x79,0x09,0x11,0x21,0x79,0x01,0x01,0x0d,0x71,0x01,0x01,0x00,0xbf,0x08,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x08,0x48,0x30,0x10,0x28,0x47,0x82 -+// 32528 缐 ; -+,0x08,0x0c,0x08,0x10,0x12,0x3e,0x04,0x08,0x11,0x3e,0x00,0x00,0x1c,0x71,0x02,0x00,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xd2,0x54,0x58,0x94,0x93,0x12,0x50,0x20 -+// 32529 缑 ; -+,0x00,0x11,0x19,0x11,0x25,0x25,0x79,0x09,0x11,0x3d,0x01,0x01,0x0d,0x71,0x01,0x01,0x00,0x3c,0x84,0x04,0x7f,0x20,0x3e,0x28,0x48,0x7f,0x08,0x08,0x14,0x12,0x23,0x41 -+// 32530 缒 ; -+,0x00,0x12,0x19,0x11,0x24,0x24,0x7b,0x09,0x11,0x3d,0x01,0x01,0x0d,0x72,0x04,0x00,0x10,0x20,0x7c,0x44,0x44,0x7c,0x40,0x40,0x7c,0x44,0x44,0x44,0x7c,0x80,0x7f,0x00 -+// 32531 缓 ; -+,0x10,0x19,0x10,0x21,0x24,0x7d,0x08,0x0b,0x10,0x3c,0x00,0x0c,0x71,0x01,0x02,0x04,0x1c,0xe0,0x44,0x26,0xa8,0xfe,0x40,0xff,0x40,0x7c,0xc4,0xa8,0x10,0x2c,0x47,0x82 -+// 32532 缔 ; -+,0x00,0x10,0x13,0x21,0x24,0x7b,0x0a,0x10,0x21,0x79,0x01,0x01,0x0d,0x71,0x00,0x00,0x40,0x20,0xfe,0x04,0x88,0xff,0x22,0x20,0xfc,0x24,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 32533 缕 ; -+,0x00,0x11,0x18,0x10,0x25,0x7c,0x08,0x11,0x20,0x7b,0x00,0x00,0x1c,0x60,0x01,0x06,0x20,0x24,0xa8,0x20,0xfe,0x70,0xa8,0x26,0x40,0xff,0x88,0xc8,0x30,0x4c,0x86,0x04 -+// 32534 编 ; -+,0x08,0x0c,0x11,0x11,0x25,0x7d,0x09,0x11,0x3d,0x01,0x02,0x1a,0x62,0x04,0x08,0x00,0x40,0x20,0xfe,0x02,0x02,0xfe,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 32535 缗 ; -+,0x00,0x11,0x19,0x11,0x21,0x25,0x7d,0x09,0x11,0x3d,0x00,0x00,0x0e,0x70,0x00,0x00,0x00,0xfc,0x04,0xfc,0x10,0xfe,0x10,0x4a,0x8a,0x06,0xfc,0x84,0xfc,0x84,0x84,0xfc -+// 32536 缘 ; -+,0x10,0x18,0x10,0x20,0x24,0x7b,0x08,0x11,0x26,0x79,0x02,0x0c,0x71,0x06,0x00,0x00,0x40,0x7c,0x84,0xf8,0x08,0xff,0xc0,0x22,0x74,0x98,0x34,0x57,0x92,0x10,0x50,0x20 -+// 32537 缙 ; -+,0x10,0x19,0x10,0x21,0x24,0x78,0x0b,0x10,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x00,0xfe,0x48,0x4a,0xcc,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 32538 缚 ; -+,0x10,0x18,0x13,0x20,0x25,0x79,0x11,0x21,0x7d,0x01,0x00,0x0d,0x70,0x00,0x00,0x00,0x28,0x24,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x08,0xff,0x48,0x48,0x28,0x10 -+// 32539 缛 ; -+,0x10,0x19,0x11,0x25,0x25,0x79,0x09,0x11,0x3d,0x01,0x01,0x1a,0x62,0x04,0x08,0x00,0x00,0xfe,0x00,0xfe,0x00,0xff,0x54,0x48,0x67,0x48,0xff,0x48,0x28,0x08,0x28,0x10 -+// 32540 缜 ; -+,0x10,0x1b,0x10,0x21,0x25,0x79,0x09,0x11,0x21,0x7d,0x01,0x03,0x0c,0x70,0x01,0x02,0x20,0xfe,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfe,0x88,0x84,0x06,0x02 -+// 32541 缝 ; -+,0x10,0x18,0x12,0x21,0x29,0x70,0x13,0x21,0x7d,0x01,0x01,0x1d,0x71,0x02,0x04,0x00,0x20,0x3e,0x44,0x24,0x18,0x24,0x53,0x7c,0x10,0x7c,0x10,0xfe,0x10,0x90,0x7f,0x00 -+// 32542 缞 ; -+,0x10,0x18,0x11,0x20,0x24,0x78,0x09,0x10,0x3c,0x00,0x00,0x0c,0x71,0x02,0x00,0x00,0x20,0x10,0xff,0x00,0xfe,0x82,0xff,0x82,0xfe,0x52,0x94,0xc8,0x44,0x57,0x62,0x40 -+// 32543 缟 ; -+,0x00,0x10,0x1b,0x10,0x24,0x7c,0x08,0x10,0x21,0x7d,0x01,0x01,0x0d,0x71,0x01,0x01,0x40,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x01,0x79,0x49,0x79,0x01,0x05,0x02 -+// 32544 缠 ; -+,0x10,0x10,0x11,0x21,0x25,0x7d,0x09,0x11,0x3d,0x01,0x01,0x1a,0x62,0x04,0x09,0x00,0x20,0x10,0xff,0x00,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 32545 缡 ; -+,0x10,0x10,0x13,0x20,0x25,0x7d,0x09,0x11,0x20,0x7b,0x02,0x02,0x1b,0x62,0x02,0x02,0x40,0x20,0xfe,0x00,0x54,0x24,0x54,0xfc,0x20,0xfe,0x52,0x8a,0xfe,0x0a,0x02,0x06 -+// 32546 缢 ; -+,0x00,0x11,0x18,0x10,0x25,0x7c,0x08,0x11,0x23,0x79,0x01,0x01,0x0d,0x71,0x07,0x00,0x04,0x06,0xc4,0x48,0xfe,0x88,0xc4,0x03,0xfe,0x54,0x54,0x54,0x54,0x54,0xff,0x00 -+// 32547 缣 ; -+,0x10,0x18,0x13,0x20,0x25,0x7c,0x0b,0x10,0x21,0x7c,0x00,0x0d,0x72,0x04,0x00,0x00,0x84,0x48,0xff,0x50,0xfe,0x52,0xff,0x52,0xfe,0x50,0xd8,0x54,0x57,0x52,0x50,0x50 -+// 32548 缤 ; -+,0x00,0x10,0x19,0x11,0x24,0x7c,0x08,0x10,0x20,0x7c,0x01,0x00,0x0c,0x70,0x01,0x02,0x20,0x10,0xff,0x02,0x1c,0xe0,0x80,0xfe,0x88,0x88,0xff,0x00,0x88,0x84,0x02,0x02 -+// 32549 缥 ; -+,0x10,0x1b,0x10,0x11,0x25,0x79,0x11,0x20,0x7d,0x00,0x03,0x0c,0x71,0x02,0x04,0x00,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0xfc,0x00,0xff,0x20,0x24,0x22,0xa2,0x40 -+// 32550 缦 ; -+,0x11,0x19,0x11,0x21,0x25,0x7c,0x0b,0x12,0x23,0x78,0x01,0x00,0x0c,0x70,0x00,0x07,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x52,0xfe,0x00,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 32551 缧 ; -+,0x08,0x0c,0x10,0x12,0x22,0x7c,0x04,0x08,0x10,0x3e,0x00,0x00,0x0e,0x71,0x02,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x24,0xf8,0x14,0x62,0xff,0x12,0x94,0x13,0x52,0x20 -+// 32552 缨 ; -+,0x00,0x13,0x1a,0x12,0x23,0x49,0x7a,0x14,0x20,0x7b,0x00,0x01,0x0c,0x70,0x00,0x03,0x00,0xdf,0x51,0x55,0x55,0x04,0x8a,0x11,0x40,0xff,0x88,0x08,0xd0,0x20,0xd8,0x06 -+// 32553 缩 ; -+,0x08,0x0c,0x19,0x11,0x22,0x7c,0x08,0x11,0x23,0x7d,0x01,0x01,0x1d,0x71,0x01,0x00,0x20,0x10,0xff,0x02,0x00,0xbe,0x88,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00 -+// 32554 缪 ; -+,0x10,0x19,0x10,0x25,0x24,0x79,0x08,0x10,0x39,0x06,0x01,0x0c,0x71,0x00,0x00,0x03,0x00,0xde,0x52,0x4a,0xca,0x52,0x22,0x50,0xac,0x43,0x90,0x64,0x88,0x30,0xc0,0x00 -+// 32555 缫 ; -+,0x01,0x11,0x1a,0x11,0x25,0x7d,0x09,0x11,0x21,0x7c,0x03,0x0c,0x70,0x01,0x02,0x00,0x24,0x24,0x48,0x24,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x70,0xac,0x27,0x22,0x20 -+// 32556 缬 ; -+,0x11,0x11,0x11,0x27,0x29,0x79,0x17,0x10,0x23,0x7a,0x02,0x1b,0x62,0x00,0x00,0x00,0x00,0x3f,0x08,0xd0,0x3e,0x22,0xaa,0x2a,0xaa,0xaa,0xaa,0x88,0x94,0x23,0x41,0x00 -+// 32557 缭 ; -+,0x10,0x18,0x11,0x25,0x24,0x78,0x0b,0x08,0x10,0x3c,0x00,0x0c,0x70,0x01,0x02,0x00,0x20,0x20,0xff,0x29,0xc6,0xfe,0x85,0xfc,0x84,0xfc,0x10,0x94,0x93,0x12,0x50,0x20 -+// 32558 缮 ; -+,0x10,0x18,0x13,0x20,0x25,0x7c,0x0b,0x11,0x20,0x7b,0x00,0x01,0x0d,0x71,0x01,0x01,0x84,0x48,0xff,0x20,0xfc,0x20,0xff,0x24,0xa8,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04 -+// 32559 缯 ; -+,0x10,0x18,0x10,0x21,0x25,0x79,0x09,0x11,0x20,0x7c,0x00,0x00,0x0c,0x70,0x00,0x00,0x82,0x42,0x44,0xff,0x11,0x55,0x39,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 32560 缰 ; -+,0x13,0x18,0x11,0x21,0x25,0x7d,0x09,0x10,0x23,0x78,0x01,0x01,0x0d,0x71,0x07,0x00,0xff,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xfe,0x00,0xfc,0x24,0xfc,0x24,0xff,0x00 -+// 32561 缱 ; -+,0x00,0x10,0x1a,0x11,0x24,0x24,0x78,0x0b,0x11,0x21,0x79,0x01,0x0d,0x71,0x02,0x04,0x10,0x7e,0x52,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x40,0x7e,0x42,0x7e,0x80,0x7f -+// 32562 缲 ; -+,0x10,0x18,0x10,0x24,0x24,0x7b,0x0a,0x13,0x20,0x7b,0x00,0x00,0x0c,0x71,0x02,0x00,0x00,0xf8,0x88,0xf8,0x00,0xde,0x52,0xde,0x20,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 32563 缳 ; -+,0x09,0x0d,0x09,0x10,0x25,0x7c,0x08,0x10,0x3c,0x00,0x00,0x0e,0x71,0x02,0x00,0x00,0xfe,0x4a,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0x22,0x54,0xc8,0x44,0x57,0x62,0x40 -+// 32564 缴 ; -+,0x10,0x19,0x13,0x22,0x2b,0x7a,0x0b,0x10,0x23,0x79,0x01,0x0d,0x72,0x02,0x05,0x08,0x84,0x04,0xe4,0x28,0xef,0x3a,0xea,0x8a,0xea,0x0a,0xc4,0x44,0x4a,0x4a,0x53,0xa2 -+// 32565 缵 ; -+,0x12,0x1a,0x13,0x24,0x2b,0x79,0x09,0x12,0x21,0x79,0x01,0x01,0x19,0x60,0x00,0x03,0x94,0x94,0xdf,0xa4,0xdf,0x4a,0x6a,0x51,0xfc,0x04,0x24,0x24,0x24,0x50,0x8c,0x04 -+// 32566 缶 ; -+,0x04,0x06,0x04,0x0f,0x08,0x10,0x20,0x3f,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0xfc,0x80,0x80,0x80,0xff,0x80,0x84,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 32567 缷 ; -+,0x10,0x10,0x1f,0x24,0x24,0x44,0x3f,0x04,0x24,0x24,0x24,0x24,0x27,0x3c,0x00,0x00,0x00,0x3e,0xa2,0x22,0x22,0x22,0xa2,0x22,0xa2,0xa2,0xaa,0xa4,0xa0,0xa0,0x20,0x20 -+// 32568 缸 ; -+,0x10,0x18,0x10,0x1f,0x24,0x44,0x3f,0x04,0x24,0x24,0x24,0x24,0x27,0x3c,0x00,0x00,0x00,0x00,0x7f,0x88,0x08,0x08,0x88,0x08,0x88,0x88,0x88,0x88,0x88,0x7f,0x00,0x00 -+// 32569 缹 ; -+,0x04,0x04,0x07,0x08,0x10,0x7f,0x00,0x10,0x10,0x10,0x1f,0x00,0x12,0x11,0x21,0x21,0x00,0x00,0xfc,0x80,0x80,0xff,0x80,0x84,0x84,0x84,0xfc,0x00,0x44,0x22,0xb3,0x22 -+// 32570 缺 ; -+,0x10,0x18,0x10,0x3e,0x28,0x48,0x7f,0x08,0x2a,0x2a,0x2a,0x2a,0x2e,0x30,0x01,0x02,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x50,0x48,0x8c,0x87,0x02,0x00 -+// 32571 缻 ; -+,0x10,0x10,0x1f,0x28,0x28,0x48,0x7f,0x08,0x08,0x29,0x29,0x29,0x2f,0x39,0x00,0x00,0x00,0xff,0x20,0x20,0x3c,0x24,0x24,0x24,0x54,0x5c,0x54,0x45,0x55,0x65,0x43,0x00 -+// 32572 缼 ; -+,0x10,0x10,0x1f,0x14,0x24,0x04,0x7f,0x04,0x25,0x25,0x25,0x25,0x27,0x38,0x00,0x01,0x20,0x30,0x20,0x3f,0x41,0x52,0x90,0x10,0x10,0x28,0x28,0x24,0x44,0x43,0x82,0x00 -+// 32573 缽 ; -+,0x00,0x10,0x10,0x1e,0x29,0x48,0x7f,0x08,0x0a,0x2a,0x2a,0x2b,0x3e,0x22,0x00,0x00,0x10,0x10,0x10,0x10,0xff,0x38,0x34,0x54,0x52,0x92,0xfd,0x11,0x10,0x10,0x10,0x10 -+// 32574 缾 ; -+,0x10,0x10,0x1f,0x28,0x29,0x48,0x7f,0x08,0x2b,0x2a,0x2a,0x2a,0x2e,0x38,0x00,0x01,0x00,0x84,0x66,0x48,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 32575 缿 ; -+,0x10,0x10,0x1f,0x28,0x28,0x48,0x7f,0x08,0x2a,0x2a,0x2a,0x2a,0x2e,0x39,0x02,0x00,0x00,0x0e,0x70,0x40,0x40,0x7f,0x40,0x40,0x7e,0x62,0xa2,0xa2,0xa2,0x3e,0x22,0x00 -+// 32576 罀 ; -+,0x10,0x10,0x1e,0x28,0x48,0x08,0x7f,0x08,0x2a,0x2a,0x2a,0x2e,0x3a,0x20,0x01,0x02,0x28,0x28,0x28,0x2a,0xab,0x6c,0x28,0x2c,0x6a,0xab,0x2a,0x48,0x49,0x89,0x07,0x00 -+// 32577 罁 ; -+,0x20,0x21,0x3d,0x51,0x51,0x11,0x7d,0x11,0x55,0x55,0x55,0x5d,0x65,0x01,0x01,0x01,0x00,0xff,0x85,0x45,0x29,0xff,0x11,0x11,0x55,0x55,0x55,0x7d,0x01,0x01,0x05,0x02 -+// 32578 罂 ; -+,0x1f,0x15,0x15,0x15,0x15,0x0a,0x11,0x28,0x0f,0x10,0x00,0x3f,0x00,0x08,0x08,0x0f,0x7e,0x52,0x52,0x52,0x52,0x28,0x26,0x42,0xfc,0x80,0x80,0xff,0x80,0x84,0x84,0xfc -+// 32579 罃 ; -+,0x04,0x15,0x15,0x04,0x0a,0x11,0x3f,0x28,0x0f,0x08,0x10,0x3f,0x00,0x10,0x10,0x1f,0x10,0x54,0x54,0x10,0x28,0x44,0xff,0x02,0xf8,0x80,0x80,0xfe,0x80,0x84,0x84,0xfc -+// 32580 罄 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x24,0x3f,0x20,0x28,0x4f,0x10,0x7f,0x00,0x10,0x1f,0x00,0xbc,0x24,0x24,0x43,0xbc,0xa4,0x98,0x24,0x42,0xfc,0x80,0xff,0x80,0x84,0xfc -+// 32581 罅 ; -+,0x20,0x20,0x3e,0x28,0x48,0x7e,0x08,0x08,0x2a,0x2a,0x2a,0x2e,0x39,0x01,0x02,0x04,0x10,0x1c,0x10,0xff,0x92,0xfc,0x90,0x8e,0xf8,0xc9,0xaa,0xff,0x08,0x08,0x28,0x10 -+// 32582 罆 ; -+,0x20,0x20,0x3d,0x28,0x48,0x08,0x7e,0x08,0x2a,0x2a,0x2a,0x2a,0x2e,0x38,0x00,0x01,0xfe,0x92,0xff,0x92,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x48,0x86,0x02 -+// 32583 罇 ; -+,0x20,0x20,0x3d,0x50,0x11,0x7d,0x11,0x11,0x55,0x55,0x54,0x57,0x5c,0x60,0x00,0x00,0x88,0x50,0xfe,0x50,0xfe,0x52,0x8e,0x72,0x02,0xfe,0x08,0xff,0x88,0x88,0x28,0x10 -+// 32584 罈 ; -+,0x10,0x10,0x1f,0x28,0x48,0x08,0x7e,0x08,0x2a,0x2a,0x2a,0x2a,0x2f,0x38,0x00,0x00,0xff,0x28,0xfe,0xaa,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 32585 罉 ; -+,0x10,0x10,0x20,0x3f,0x29,0x48,0x7f,0x08,0x2a,0x2a,0x2a,0x2a,0x2e,0x3b,0x00,0x00,0x10,0x92,0x54,0xff,0x01,0x7c,0x44,0x7c,0x00,0xfe,0x10,0xfe,0x10,0xff,0x10,0x30 -+// 32586 罊 ; -+,0x04,0x3f,0x15,0x1f,0x15,0x1f,0x04,0x3f,0x04,0x10,0x1f,0x20,0x3f,0x00,0x08,0x0f,0x3c,0xa4,0x24,0x43,0xbc,0x24,0x24,0x98,0x24,0x42,0xfc,0x80,0xfe,0x80,0x88,0xf8 -+// 32587 罋 ; -+,0x00,0x3f,0x08,0x08,0x12,0x3d,0x12,0x3e,0x04,0x18,0x6f,0x10,0x0f,0x00,0x10,0x1f,0x80,0xff,0x50,0x48,0xff,0x48,0x7e,0x48,0x7f,0x40,0xf8,0x80,0xf8,0x80,0x84,0xfc -+// 32588 罌 ; -+,0x1f,0x11,0x1d,0x13,0x11,0x1f,0x0a,0x11,0x28,0x0f,0x10,0x3f,0x00,0x10,0x10,0x1f,0x3e,0x22,0x32,0x2e,0x22,0x3e,0x14,0x22,0x42,0xfc,0x80,0xfe,0x80,0x84,0x84,0xfc -+// 32589 罍 ; -+,0x0f,0x08,0x0f,0x08,0x3f,0x25,0x3f,0x25,0x3f,0x08,0x0f,0x10,0x2f,0x00,0x10,0x1f,0xf8,0x88,0xf8,0x88,0xfe,0x4a,0x7e,0x4a,0x7e,0x00,0xf8,0x80,0xfc,0x80,0x84,0xfc -+// 32590 罎 ; -+,0x20,0x20,0x3e,0x28,0x48,0x08,0x7f,0x09,0x2a,0x2a,0x2a,0x2a,0x2e,0x38,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x11,0x54,0x00,0xfe,0x00,0xfe,0x24,0x4e,0xf2 -+// 32591 罏 ; -+,0x20,0x20,0x3c,0x51,0x11,0x11,0x7d,0x11,0x55,0x55,0x55,0x55,0x5d,0x72,0x05,0x08,0x20,0x3c,0x20,0xff,0x22,0x78,0x24,0x7c,0x54,0x7c,0x54,0xfe,0xaa,0xaa,0xff,0x00 -+// 32592 罐 ; -+,0x20,0x23,0x3e,0x29,0x49,0x09,0x7e,0x08,0x09,0x2a,0x2a,0x2a,0x2a,0x2e,0x38,0x00,0x48,0xff,0x48,0xce,0x4a,0xee,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 32593 网 ; -+,0x00,0x3f,0x20,0x20,0x28,0x25,0x22,0x22,0x25,0x25,0x28,0x30,0x20,0x20,0x20,0x00,0x00,0xfe,0x02,0x82,0x8a,0x4e,0x2a,0x12,0x12,0x2a,0xca,0x82,0x02,0x0e,0x04,0x00 -+// 32594 罒 ; -+,0x00,0x3f,0x22,0x22,0x22,0x3f,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0xfe,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 32595 罓 ; -+,0x00,0x1f,0x10,0x13,0x10,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x32,0xc2,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 32596 罔 ; -+,0x3f,0x20,0x24,0x22,0x21,0x2f,0x21,0x20,0x2f,0x24,0x24,0x27,0x20,0x20,0x20,0x00,0xfe,0x02,0x12,0x22,0x42,0xfa,0x02,0x82,0xfa,0x02,0x02,0xfa,0x02,0x0a,0x04,0x00 -+// 32597 罕 ; -+,0x00,0x1f,0x12,0x23,0x04,0x08,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x22,0x18,0x0c,0x04,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80 -+// 32598 罖 ; -+,0x00,0x1f,0x12,0x12,0x12,0x1f,0x10,0x01,0x02,0x04,0x19,0x60,0x00,0x00,0x00,0x00,0x00,0xfc,0x24,0x24,0x24,0xfc,0x84,0x40,0x20,0x18,0x07,0xc2,0x60,0x40,0x00,0x00 -+// 32599 罗 ; -+,0x00,0x1f,0x11,0x11,0x11,0x1f,0x11,0x01,0x03,0x06,0x09,0x30,0x00,0x01,0x06,0x78,0x00,0xfe,0x22,0x22,0x22,0xfe,0x00,0xfe,0x04,0x04,0x08,0x90,0x60,0x80,0x00,0x00 -+// 32600 罘 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x00,0x3f,0x00,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x00,0x00,0xfe,0x22,0x22,0xfe,0x00,0xff,0x40,0x80,0xa0,0x98,0x8c,0x84,0x80,0x80,0x80 -+// 32601 罙 ; -+,0x00,0x3f,0x22,0x04,0x08,0x30,0x00,0x3f,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0xff,0x22,0x18,0x8c,0x84,0x80,0xfe,0xc0,0xa0,0x90,0x88,0x8e,0x84,0x80,0x80 -+// 32602 罚 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x10,0x0c,0x04,0x3c,0x04,0x04,0x04,0x04,0x05,0x06,0x04,0xfe,0x22,0x22,0xfe,0x00,0x02,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x0a,0x04 -+// 32603 罛 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x0f,0x09,0x09,0x09,0x09,0x09,0x09,0x11,0x13,0x21,0x40,0xfc,0x24,0x24,0xfc,0x00,0xfc,0x10,0x10,0x10,0x10,0x08,0x48,0x24,0xf7,0x22,0x00 -+// 32604 罜 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x01,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0xfc,0x24,0x24,0xfc,0x00,0x80,0xfe,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 32605 罝 ; -+,0x00,0x3f,0x22,0x22,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x7f,0x00,0x00,0xfe,0x22,0x22,0xfe,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x00 -+// 32606 罞 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x0f,0x00,0x01,0x00,0x3f,0x00,0x03,0x0c,0x70,0x01,0x00,0xfc,0x24,0x24,0xfc,0x00,0xf8,0x10,0xa0,0x40,0xfe,0xc4,0x40,0x40,0x40,0x40,0x80 -+// 32607 罟 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x00,0x00,0x7f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0xfc,0x24,0x24,0xfc,0x80,0x80,0xff,0x80,0x80,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 32608 罠 ; -+,0x3f,0x22,0x22,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x12,0x14,0x18,0x10,0xfc,0x44,0x44,0xfc,0x00,0xf8,0x08,0xf8,0x40,0x40,0xfc,0x40,0x20,0x24,0x14,0x0c -+// 32609 罡 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x00,0x00,0x3f,0x00,0x08,0x08,0x08,0x08,0x08,0x3f,0x00,0x00,0xfe,0x22,0x22,0xfe,0x00,0x00,0xfe,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 32610 罢 ; -+,0x1f,0x12,0x12,0x1f,0x10,0x00,0x1f,0x00,0x00,0x7f,0x01,0x02,0x04,0x1f,0x08,0x00,0xfe,0x22,0x22,0xfe,0x82,0x80,0xfc,0x80,0x80,0xff,0x00,0x10,0x08,0xfc,0x08,0x00 -+// 32611 罣 ; -+,0x00,0x1f,0x12,0x12,0x1f,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0xfc,0x24,0x24,0xfc,0x80,0xfc,0x80,0x80,0xfe,0x80,0x80,0xfc,0x80,0x80,0xff -+// 32612 罤 ; -+,0x1f,0x12,0x12,0x1f,0x04,0x02,0x1f,0x00,0x1f,0x10,0x1f,0x01,0x02,0x0c,0x70,0x00,0xfc,0x24,0x24,0xfc,0x10,0x20,0xfc,0x84,0xfc,0x80,0xfe,0x82,0x8a,0x84,0x80,0x80 -+// 32613 罥 ; -+,0x3f,0x22,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x10,0xfe,0x22,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 32614 罦 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x00,0x1f,0x09,0x04,0x0f,0x00,0x3f,0x00,0x00,0x01,0x00,0xfe,0x22,0x22,0xfe,0x00,0xfc,0x90,0x18,0xa0,0xf0,0x20,0xff,0x40,0x40,0x40,0x80 -+// 32615 罧 ; -+,0x1f,0x12,0x12,0x1f,0x04,0x04,0x3f,0x04,0x0c,0x0e,0x15,0x24,0x45,0x04,0x04,0x04,0xfc,0x24,0x24,0xfc,0x10,0x10,0xfe,0x10,0x38,0x38,0x54,0x97,0x12,0x10,0x10,0x10 -+// 32616 罨 ; -+,0x1f,0x12,0x12,0x1f,0x02,0x7f,0x04,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x00,0xfc,0x24,0x24,0xfc,0x00,0xff,0x18,0x87,0xfa,0x88,0xf8,0x88,0xf8,0x81,0x81,0x7f -+// 32617 罩 ; -+,0x1f,0x12,0x1f,0x00,0x00,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x00,0x00,0xfc,0x24,0xfc,0x80,0xfc,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xfe,0x80,0x80,0x80 -+// 32618 罪 ; -+,0x1f,0x11,0x11,0x1f,0x02,0x02,0x3e,0x02,0x1e,0x02,0x02,0x7e,0x02,0x02,0x02,0x02,0xfe,0x22,0x22,0xfe,0x20,0x20,0x3e,0x20,0x3c,0x20,0x20,0x3f,0x20,0x20,0x20,0x20 -+// 32619 罫 ; -+,0x3f,0x22,0x22,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x04,0x3f,0x04,0x04,0x07,0x7c,0x00,0xfc,0x44,0x44,0xfc,0x10,0x90,0x18,0xd4,0x12,0x12,0x90,0x10,0x10,0x90,0x10,0x10 -+// 32620 罬 ; -+,0x1f,0x11,0x1f,0x00,0x1f,0x11,0x0a,0x04,0x0a,0x1f,0x11,0x0a,0x04,0x0a,0x11,0x20,0xfe,0x22,0xfe,0x00,0x7e,0x24,0x18,0x24,0x42,0x3c,0x44,0x28,0x10,0x28,0x46,0x82 -+// 32621 罭 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x3f,0x00,0x1f,0x11,0x11,0x1f,0x00,0x07,0x38,0x00,0x00,0xfe,0x22,0x22,0xfe,0x24,0xff,0x20,0x24,0x26,0x24,0x18,0x10,0x29,0x45,0x83,0x01 -+// 32622 置 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x3f,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x7f,0xfc,0x24,0x24,0xfc,0x80,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff -+// 32623 罯 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x1f,0x02,0x01,0x3f,0x00,0x07,0x04,0x07,0x04,0x04,0x07,0xfc,0x24,0x24,0xfc,0x80,0xfe,0x10,0x20,0xff,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8 -+// 32624 罰 ; -+,0x1f,0x12,0x12,0x1f,0x08,0x04,0x3f,0x00,0x1f,0x00,0x1f,0x00,0x1f,0x11,0x1f,0x00,0xfe,0x22,0x22,0xfe,0x00,0x02,0x82,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x0a,0x04 -+// 32625 罱 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x7f,0x00,0x1f,0x12,0x17,0x10,0x1f,0x10,0x10,0x10,0x10,0xfe,0x22,0x22,0xfe,0x80,0xff,0x80,0xfe,0x22,0xfa,0x82,0xfa,0x82,0x82,0x8a,0x04 -+// 32626 署 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x0f,0x00,0x7f,0x01,0x07,0x1c,0x67,0x04,0x04,0x07,0x04,0xfe,0x22,0x22,0xfe,0x88,0xfc,0x90,0xff,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 32627 罳 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x04,0x14,0x14,0x23,0x00,0xfc,0x24,0x24,0xfc,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x00,0x82,0x69,0x4d,0xf8,0x00 -+// 32628 罴 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x0f,0x00,0x3f,0x01,0x06,0x0f,0x00,0x14,0x13,0x22,0x00,0xfc,0x24,0x24,0xfc,0x80,0xfc,0x80,0xfe,0x20,0x10,0xf8,0x10,0x44,0x32,0x22,0x00 -+// 32629 罵 ; -+,0x1f,0x12,0x12,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x12,0x22,0x00,0xfc,0x24,0x24,0xfc,0x00,0xfc,0x80,0xf8,0x80,0xf8,0x80,0xfe,0x02,0x52,0x52,0x06 -+// 32630 罶 ; -+,0x1f,0x11,0x1f,0x00,0x03,0x1c,0x12,0x1f,0x01,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x00,0xfe,0x22,0xfe,0x00,0x7e,0x12,0x12,0x2a,0x44,0xfc,0x84,0xfc,0x84,0xfc,0x04,0x00 -+// 32631 罷 ; -+,0x3f,0x22,0x22,0x3f,0x08,0x12,0x3f,0x01,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x25,0x22,0xfe,0x22,0x22,0xfe,0x48,0x70,0x44,0x3c,0x00,0x40,0x4c,0x70,0x42,0x43,0x3e,0x00 -+// 32632 罸 ; -+,0x1f,0x12,0x12,0x1f,0x04,0x3f,0x00,0x1f,0x00,0x1f,0x00,0x1f,0x10,0x10,0x1f,0x10,0xfc,0x24,0x24,0xfc,0x04,0xc4,0x3f,0x84,0x24,0x94,0x14,0x84,0x84,0x84,0x94,0x88 -+// 32633 罹 ; -+,0x1f,0x11,0x11,0x1f,0x10,0x10,0x19,0x55,0x53,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0xfe,0x22,0x22,0xfe,0xa0,0x90,0xff,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 32634 罺 ; -+,0x1f,0x11,0x1f,0x04,0x09,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x03,0x0c,0x30,0xfe,0x22,0xfe,0x88,0x10,0x88,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0xe0,0x98,0x86 -+// 32635 罻 ; -+,0x1f,0x12,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x17,0x10,0x1f,0x12,0x2a,0x32,0x4a,0x04,0xfc,0x24,0xfc,0x00,0x84,0x84,0xbf,0x04,0xa4,0x14,0xd4,0x04,0x84,0x54,0x48,0x00 -+// 32636 罼 ; -+,0x3f,0x22,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x08,0x3f,0x08,0x7f,0x00,0x00,0x00,0xfe,0x22,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x88,0xfe,0x88,0xff,0x80,0x80,0x80 -+// 32637 罽 ; -+,0x1f,0x11,0x1f,0x00,0x1f,0x11,0x15,0x15,0x12,0x15,0x11,0x15,0x15,0x22,0x24,0x48,0xfe,0x22,0xfe,0x00,0xff,0x02,0x42,0x12,0x92,0x52,0x12,0x52,0x52,0x82,0x6a,0x44 -+// 32638 罾 ; -+,0x1f,0x11,0x11,0x1f,0x04,0x3f,0x28,0x24,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0xfe,0x22,0x22,0xfe,0x10,0xfe,0x8a,0x92,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 32639 罿 ; -+,0x1f,0x12,0x1f,0x00,0x1f,0x04,0x02,0x3f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x3f,0xfc,0x24,0xfc,0x80,0xfc,0x10,0x20,0xfe,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xfe -+// 32640 羀 ; -+,0x1f,0x15,0x12,0x15,0x7f,0x01,0x1f,0x11,0x1e,0x02,0x0c,0x1f,0x10,0x1f,0x10,0x1f,0xfc,0x54,0x24,0x54,0xff,0x20,0x3c,0x24,0x3c,0x20,0x20,0xfc,0x84,0xfc,0x84,0xfc -+// 32641 羁 ; -+,0x1f,0x11,0x11,0x1f,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x04,0xfe,0x22,0x22,0xfe,0x00,0xbc,0x24,0x24,0x24,0x3e,0x02,0x7a,0x02,0x82,0x0a,0x04 -+// 32642 羂 ; -+,0x1f,0x11,0x11,0x1f,0x08,0x08,0x12,0x3c,0x08,0x12,0x3f,0x00,0x2a,0x2a,0x4a,0x00,0xfe,0x22,0x22,0xfe,0x00,0xfe,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x8a,0x84 -+// 32643 羃 ; -+,0x1f,0x12,0x1f,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x03,0x7f,0x18,0x6f,0x08,0x08,0x00,0xfc,0x24,0xfc,0x20,0xff,0x20,0xf8,0x88,0xf8,0x00,0xff,0x88,0xff,0x8a,0x98,0x80 -+// 32644 羄 ; -+,0x1f,0x12,0x12,0x1f,0x08,0x08,0x12,0x3c,0x08,0x12,0x3f,0x02,0x28,0x2b,0x4a,0x00,0xfc,0x24,0x24,0xfc,0x10,0x1e,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10 -+// 32645 羅 ; -+,0x00,0x3f,0x22,0x3f,0x08,0x08,0x12,0x3e,0x05,0x0a,0x1f,0x01,0x2a,0x2a,0x4a,0x00,0x00,0xfe,0x22,0xfe,0x10,0x48,0x7f,0xc8,0x7e,0x48,0x48,0x7e,0x48,0x48,0x7f,0x40 -+// 32646 羆 ; -+,0x1f,0x11,0x1f,0x04,0x09,0x1f,0x01,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x00,0x12,0x21,0xfe,0x22,0xfe,0x20,0x2c,0xb2,0x22,0x1e,0x20,0x24,0x38,0x22,0x1e,0x04,0x23,0x12 -+// 32647 羇 ; -+,0x3f,0x22,0x3f,0x22,0x7f,0x22,0x3e,0x08,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0x08,0xfe,0x22,0xfe,0x10,0x7e,0x10,0x28,0x44,0xff,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 32648 羈 ; -+,0x3f,0x22,0x3f,0x22,0x7f,0x22,0x3e,0x08,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x09,0x08,0xfe,0x22,0xfe,0x00,0x7f,0x48,0x7e,0x48,0x7e,0x48,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 32649 羉 ; -+,0x3f,0x22,0x3f,0x01,0x10,0x2b,0x78,0x11,0x28,0x7d,0x08,0x01,0x29,0x29,0x49,0x00,0xfe,0x22,0xfe,0x00,0x84,0xe5,0x0f,0xe2,0x05,0xef,0x05,0xc4,0x56,0xe5,0x54,0x08 -+// 32650 羊 ; -+,0x04,0x02,0x01,0x1f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x20,0xfe,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80 -+// 32651 羋 ; -+,0x04,0x04,0x7c,0x04,0x04,0x04,0x00,0x00,0x3f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x90,0x90,0x9f,0x90,0x90,0x90,0x00,0x80,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80 -+// 32652 羌 ; -+,0x08,0x04,0x02,0x3f,0x00,0x0f,0x00,0x00,0x3f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x10,0x18,0x20,0xfe,0x80,0xfc,0x80,0x80,0xff,0x20,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 32653 羍 ; -+,0x01,0x01,0x3f,0x02,0x04,0x0a,0x11,0x6f,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0xff,0x20,0x10,0x2c,0x47,0xfa,0x80,0xf8,0x80,0x80,0xfe,0x80,0x80,0x80 -+// 32654 美 ; -+,0x04,0x02,0x3f,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x1f,0x01,0x02,0x04,0x18,0x60,0x10,0x20,0xfe,0x80,0xfc,0x80,0x80,0xff,0x80,0x80,0xfe,0x40,0x20,0x18,0x0e,0x04 -+// 32655 羏 ; -+,0x20,0x11,0x0a,0x3f,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0x84,0x06,0x04,0x88,0x14,0x26,0x84,0x08,0x12,0xa3,0x06,0x04,0x08,0x10,0x20,0x00 -+// 32656 羐 ; -+,0x04,0x04,0x3c,0x04,0x1f,0x00,0x3f,0x02,0x03,0x04,0x08,0x10,0x20,0x01,0x06,0x38,0x10,0x10,0x9e,0x90,0xfc,0x80,0xff,0x00,0xf0,0x10,0x20,0x40,0xa0,0x18,0x07,0x02 -+// 32657 羑 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x00,0x3f,0x01,0x02,0x07,0x08,0x30,0x00,0x03,0x0c,0x70,0x10,0x20,0xfe,0x80,0xfc,0x80,0xff,0x00,0x00,0xf8,0x10,0x60,0xa0,0x18,0x07,0x02 -+// 32658 羒 ; -+,0x00,0x22,0x14,0x3f,0x08,0x08,0x3e,0x09,0x08,0x7f,0x08,0x10,0x10,0x20,0x41,0x02,0x08,0x08,0x48,0x64,0x44,0x82,0x83,0x7e,0x24,0x24,0x24,0x44,0x44,0x84,0x14,0x08 -+// 32659 羓 ; -+,0x00,0x22,0x14,0x7f,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x00,0x7e,0x52,0x52,0x52,0x52,0x7e,0x40,0x40,0x40,0x42,0x42,0x43,0x3e,0x00 -+// 32660 羔 ; -+,0x04,0x02,0x01,0x3f,0x00,0x00,0x0f,0x00,0x00,0x7f,0x00,0x14,0x12,0x23,0x22,0x00,0x10,0x18,0x20,0xfe,0x80,0x80,0xfc,0x80,0x80,0xff,0x00,0x48,0x24,0x33,0x22,0x00 -+// 32661 羕 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x00,0x3f,0x01,0x0f,0x00,0x3e,0x04,0x04,0x08,0x12,0x21,0x10,0x20,0xfe,0x80,0xfc,0x80,0xff,0x00,0x88,0x8c,0xd0,0xa0,0x90,0x8e,0x84,0x00 -+// 32662 羖 ; -+,0x22,0x12,0x14,0x3f,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x7c,0x44,0x44,0x44,0x43,0x80,0x7c,0x44,0x28,0x28,0x10,0x18,0x24,0x47,0x82 -+// 32663 羗 ; -+,0x04,0x02,0x1f,0x00,0x0f,0x00,0x00,0x3f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x10,0x20,0xfe,0x80,0xfc,0x80,0x80,0xff,0x48,0x48,0x52,0x5f,0x42,0x41,0x3f,0x00 -+// 32664 羘 ; -+,0x00,0x3e,0x22,0x23,0x3e,0x22,0x22,0x22,0x3e,0x23,0x22,0x22,0x22,0x22,0x4a,0x44,0x82,0x44,0x28,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32665 羙 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x08,0x08,0x10,0x01,0x01,0x02,0x04,0x08,0x10,0x20,0xfe,0x80,0xfc,0x80,0xff,0x80,0x88,0x98,0xa0,0x40,0x20,0x18,0x0e,0x04 -+// 32666 羚 ; -+,0x00,0x22,0x14,0x7e,0x08,0x08,0x3d,0x08,0x08,0x7e,0x08,0x10,0x10,0x20,0x40,0x00,0x10,0x10,0x28,0x28,0x44,0xa3,0x12,0x10,0xfe,0x02,0x04,0x48,0x30,0x18,0x10,0x00 -+// 32667 羛 ; -+,0x04,0x1f,0x00,0x0f,0x00,0x3f,0x02,0x1f,0x02,0x1f,0x12,0x1f,0x04,0x04,0x08,0x10,0x10,0xfc,0x80,0xfc,0x80,0xff,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x2a,0x24,0x20 -+// 32668 羜 ; -+,0x00,0x22,0x14,0x3e,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x08,0x10,0x10,0x20,0x40,0x20,0x18,0x10,0xff,0x82,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 32669 羝 ; -+,0x00,0x22,0x14,0x7f,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x0f,0xf8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x85,0xa5,0xd3,0x91,0x00 -+// 32670 羞 ; -+,0x04,0x02,0x1f,0x00,0x0f,0x00,0x3f,0x01,0x02,0x03,0x04,0x0b,0x10,0x20,0x0f,0x00,0x08,0x10,0xfe,0x80,0xfc,0x80,0xff,0x00,0x00,0xf8,0x88,0xf8,0x88,0x88,0xff,0x00 -+// 32671 羟 ; -+,0x00,0x22,0x14,0x7f,0x08,0x08,0x3f,0x08,0x08,0x7f,0x08,0x08,0x10,0x10,0x21,0x40,0x00,0xfe,0x02,0x04,0x08,0x14,0x22,0xc1,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 32672 羠 ; -+,0x00,0x22,0x15,0x7e,0x08,0x08,0x3e,0x08,0x08,0x7e,0x08,0x08,0x10,0x10,0x21,0x42,0x10,0x10,0xff,0x10,0xfe,0x12,0xfe,0x90,0xfe,0x12,0x32,0x2e,0x48,0x86,0x03,0x02 -+// 32673 羡 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x00,0x3f,0x00,0x10,0x09,0x02,0x08,0x30,0x11,0x12,0x14,0x10,0x20,0xfe,0x80,0xfc,0x80,0xff,0x80,0xfe,0x04,0x48,0x40,0xa0,0x18,0x0e,0x04 -+// 32674 羢 ; -+,0x42,0x22,0x14,0x7e,0x08,0x08,0x3e,0x09,0x08,0x7e,0x08,0x11,0x11,0x22,0x44,0x00,0x10,0x14,0x12,0xff,0x10,0x90,0x92,0xea,0x8c,0x88,0x88,0x15,0x15,0x23,0x41,0x00 -+// 32675 羣 ; -+,0x0f,0x02,0x7f,0x02,0x1f,0x04,0x0f,0x14,0x27,0x02,0x1f,0x00,0x0f,0x00,0x3f,0x00,0xfc,0x04,0xff,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x08,0xfe,0x40,0xfc,0x40,0xff,0x40 -+// 32676 群 ; -+,0x00,0x3f,0x09,0x7f,0x09,0x09,0x3f,0x08,0x10,0x1f,0x31,0x51,0x11,0x1f,0x11,0x00,0x42,0x23,0x14,0x7f,0x08,0x08,0x3e,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08 -+// 32677 羥 ; -+,0x00,0x22,0x14,0x7e,0x08,0x09,0x3e,0x08,0x08,0x7e,0x08,0x08,0x10,0x10,0x21,0x40,0x00,0xff,0x00,0x49,0x92,0x24,0x92,0x49,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 32678 羦 ; -+,0x00,0x22,0x14,0x7e,0x08,0x08,0x3e,0x08,0x09,0x7e,0x08,0x08,0x10,0x10,0x20,0x41,0x20,0x10,0xff,0x82,0x00,0xfc,0x00,0x00,0xfe,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 32679 羧 ; -+,0x00,0x22,0x14,0x7e,0x08,0x08,0x3e,0x09,0x08,0x7e,0x09,0x0a,0x10,0x10,0x20,0x43,0x20,0x30,0x44,0xfe,0x02,0x44,0x82,0x42,0x7c,0x84,0x48,0x28,0x10,0x28,0xc7,0x02 -+// 32680 羨 ; -+,0x04,0x02,0x1f,0x00,0x0f,0x00,0x3f,0x08,0x24,0x15,0x12,0x08,0x08,0x70,0x11,0x12,0x10,0x20,0xfc,0x80,0xf8,0x80,0xfe,0x80,0xfc,0x08,0x20,0x20,0x50,0x88,0x0e,0x04 -+// 32681 義 ; -+,0x02,0x3f,0x00,0x0f,0x00,0x3f,0x00,0x1f,0x04,0x3f,0x04,0x06,0x3c,0x04,0x14,0x08,0x10,0xfe,0x80,0xf8,0x80,0xfe,0x00,0x28,0x24,0xfe,0x24,0x28,0x30,0x52,0x8a,0x04 -+// 32682 羪 ; -+,0x02,0x22,0x14,0x7f,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x08,0x10,0x10,0x20,0x40,0x20,0x10,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x90,0x96,0x98,0x90,0x88,0xac,0xc7,0x82 -+// 32683 羫 ; -+,0x22,0x12,0x14,0x7e,0x09,0x08,0x3e,0x08,0x08,0x7e,0x08,0x08,0x10,0x10,0x21,0x40,0x20,0x10,0xff,0x81,0x00,0x24,0x43,0x82,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 32684 羬 ; -+,0x00,0x42,0x24,0x7f,0x09,0x3d,0x09,0x09,0x7f,0x09,0x09,0x09,0x11,0x12,0x22,0x44,0x08,0x0a,0x09,0xff,0x08,0xfa,0x0b,0xea,0x2a,0x2c,0xe4,0x0d,0x15,0x23,0x41,0x00 -+// 32685 羭 ; -+,0x02,0x23,0x14,0x7e,0x08,0x09,0x3e,0x09,0x09,0x7f,0x09,0x09,0x11,0x11,0x21,0x41,0x10,0x10,0x28,0x44,0xff,0x00,0x02,0xea,0x2a,0xea,0x2a,0xea,0x2a,0x22,0x2a,0x64 -+// 32686 羮 ; -+,0x04,0x3f,0x00,0x1f,0x00,0x3f,0x12,0x04,0x3f,0x00,0x1f,0x00,0x3f,0x01,0x06,0x38,0x10,0xfe,0x80,0xfc,0x80,0xff,0x44,0x10,0xfc,0x80,0xf8,0x80,0xfe,0x40,0x30,0x0e -+// 32687 羯 ; -+,0x00,0x22,0x14,0x7f,0x08,0x08,0x3e,0x08,0x08,0x7f,0x0a,0x08,0x10,0x10,0x20,0x40,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7f,0x91,0x91,0xa9,0xc5,0xfd,0x01,0x05,0x02 -+// 32688 羰 ; -+,0x00,0x22,0x14,0x7e,0x08,0x09,0x3e,0x08,0x08,0x7e,0x08,0x11,0x11,0x22,0x44,0x00,0x10,0x92,0x92,0xfe,0x40,0xff,0x40,0x50,0x54,0xb8,0x90,0x28,0x24,0x47,0x82,0x00 -+// 32689 羱 ; -+,0x00,0x22,0x14,0x3f,0x08,0x08,0x3e,0x08,0x08,0x7e,0x08,0x11,0x11,0x22,0x44,0x00,0x00,0xff,0x88,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0x88,0x88,0x2a,0x49,0xa9,0x10,0x00 -+// 32690 羲 ; -+,0x04,0x3f,0x00,0x1f,0x00,0x3f,0x1e,0x04,0x3f,0x0e,0x15,0x3f,0x10,0x1f,0x01,0x03,0x10,0xfe,0x80,0xfc,0x80,0xfe,0x14,0x12,0xff,0x10,0x12,0x92,0x0c,0x19,0x25,0x42 -+// 32691 羳 ; -+,0x00,0x22,0x14,0x7e,0x09,0x08,0x3e,0x08,0x09,0x7e,0x08,0x08,0x10,0x10,0x20,0x40,0x1e,0xf0,0x92,0x54,0xff,0x38,0x54,0x93,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 32692 羴 ; -+,0x02,0x1f,0x00,0x0f,0x00,0x3f,0x22,0x14,0x7f,0x08,0x3e,0x08,0x7f,0x08,0x08,0x08,0x20,0xfc,0x80,0xf8,0x80,0xfc,0xa2,0x94,0x7f,0x08,0x3e,0x08,0x7f,0x08,0x08,0x08 -+// 32693 羵 ; -+,0x00,0x23,0x14,0x7e,0x0b,0x08,0x3d,0x09,0x09,0x7f,0x09,0x09,0x11,0x10,0x21,0x42,0x20,0xfe,0x20,0xa8,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x0c,0x04 -+// 32694 羶 ; -+,0x00,0x45,0x28,0x7d,0x11,0x11,0x7d,0x11,0x10,0x7e,0x10,0x10,0x10,0x20,0x20,0x43,0x10,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 32695 羷 ; -+,0x00,0x22,0x14,0x7e,0x09,0x08,0x3f,0x09,0x09,0x7f,0x08,0x08,0x11,0x11,0x22,0x44,0x10,0x10,0x28,0x44,0xfb,0x00,0xef,0x29,0x29,0xef,0x84,0x84,0x44,0x4a,0x29,0x11 -+// 32696 羸 ; -+,0x00,0x7f,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x01,0x3f,0x24,0x3d,0x24,0x3f,0x24,0x4c,0x80,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x40,0xfe,0x92,0xda,0x96,0xf2,0x93,0xa1 -+// 32697 羹 ; -+,0x02,0x3f,0x00,0x0f,0x00,0x7f,0x22,0x1f,0x00,0x1f,0x00,0x7f,0x01,0x02,0x0c,0x30,0x10,0xfe,0x80,0xfc,0x80,0xff,0x11,0xfe,0x80,0xfe,0x80,0xff,0x40,0x30,0x0e,0x04 -+// 32698 羺 ; -+,0x00,0x22,0x14,0x7f,0x09,0x08,0x3e,0x08,0x09,0x7e,0x09,0x09,0x11,0x11,0x21,0x41,0x00,0xfe,0x10,0xff,0x11,0x94,0x52,0x00,0xff,0x40,0xfe,0x4a,0x4a,0x4a,0x4a,0x06 -+// 32699 羻 ; -+,0x44,0x27,0x29,0x7d,0x11,0x11,0x7d,0x11,0x11,0x7d,0x11,0x11,0x22,0x22,0x45,0x08,0x10,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xff,0x52,0xa8,0x3e,0x40,0x7c,0xa8,0x10,0xee -+// 32700 羼 ; -+,0x1f,0x10,0x1f,0x11,0x17,0x10,0x13,0x10,0x1f,0x15,0x1f,0x12,0x2f,0x22,0x5f,0x02,0xfe,0x02,0xfe,0x10,0xfe,0x40,0xf8,0x40,0xfe,0x54,0xbf,0x08,0xbf,0x08,0xbf,0x08 -+// 32701 羽 ; -+,0x00,0x3f,0x01,0x01,0x11,0x09,0x09,0x03,0x05,0x09,0x31,0x01,0x01,0x01,0x05,0x02,0x00,0x7e,0x02,0x02,0x22,0x12,0x12,0x02,0x0a,0x12,0x62,0x02,0x02,0x02,0x0a,0x04 -+// 32702 羾 ; -+,0x00,0x7b,0x08,0x0c,0x4a,0x2a,0x28,0x08,0x19,0x2a,0x4c,0x08,0x08,0x3b,0x11,0x00,0x00,0xbf,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xff,0x00,0x00 -+// 32703 羿 ; -+,0x1f,0x01,0x09,0x05,0x39,0x11,0x05,0x02,0x02,0x3f,0x02,0x02,0x04,0x04,0x08,0x10,0x7c,0x04,0x14,0x0c,0x14,0x64,0x14,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32704 翀 ; -+,0x00,0x3b,0x08,0x08,0x4c,0x2a,0x28,0x09,0x1a,0x6c,0x08,0x08,0x08,0x2a,0x11,0x00,0x08,0x88,0x88,0xbf,0xa9,0xa9,0xa9,0xa9,0xbf,0x88,0x88,0x88,0x88,0x88,0x08,0x00 -+// 32705 翁 ; -+,0x04,0x04,0x09,0x11,0x22,0x07,0x00,0x3e,0x02,0x12,0x0a,0x0a,0x12,0x22,0x0a,0x04,0x20,0x10,0x18,0x0e,0x24,0xf0,0x10,0xfc,0x04,0x24,0x14,0x24,0x44,0x04,0x14,0x08 -+// 32706 翂 ; -+,0x00,0x7f,0x09,0x09,0x4d,0x2b,0x09,0x09,0x1b,0x2d,0x49,0x09,0x09,0x2d,0x12,0x00,0x04,0x14,0x14,0x12,0x22,0x21,0x41,0xbe,0x12,0x12,0x12,0x22,0x22,0x4a,0x84,0x00 -+// 32707 翃 ; -+,0x08,0x09,0x08,0x3f,0x08,0x11,0x10,0x10,0x28,0x28,0x51,0x14,0x22,0x3e,0x02,0x00,0x00,0xee,0x22,0x22,0x22,0x32,0xaa,0x26,0x6a,0xb2,0x22,0x22,0x22,0xaa,0x44,0x00 -+// 32708 翄 ; -+,0x00,0x7f,0x08,0x08,0x4c,0x2a,0x2a,0x08,0x19,0x2e,0x48,0x08,0x08,0x08,0x2a,0x11,0x08,0x88,0x88,0xff,0x88,0x88,0xbe,0xa2,0xa2,0x94,0x94,0x88,0x94,0x94,0xa3,0x42 -+// 32709 翅 ; -+,0x08,0x09,0x7e,0x09,0x08,0x3e,0x22,0x22,0x22,0x15,0x14,0x08,0x14,0x23,0x40,0x00,0x00,0xee,0x22,0x32,0xaa,0xaa,0x22,0x66,0xaa,0x32,0x22,0xaa,0x44,0x00,0xff,0x00 -+// 32710 翆 ; -+,0x3f,0x11,0x09,0x05,0x09,0x12,0x0f,0x02,0x02,0x04,0x08,0x3f,0x00,0x00,0x00,0x00,0x7c,0x04,0x24,0x14,0x24,0x44,0xe0,0x22,0x22,0x9e,0x80,0xff,0x80,0x80,0x80,0x80 -+// 32711 翇 ; -+,0x3f,0x11,0x09,0x05,0x09,0x35,0x02,0x01,0x3f,0x02,0x03,0x05,0x08,0x10,0x23,0x0c,0x7c,0x44,0x24,0x14,0x24,0x44,0x10,0x08,0xff,0x00,0xf0,0x10,0xa0,0xc0,0x30,0x0e -+// 32712 翈 ; -+,0x00,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x7f,0x11,0x11,0x99,0x55,0x55,0x11,0x31,0x53,0x95,0x11,0x11,0x11,0x55,0x22 -+// 32713 翉 ; -+,0x08,0x09,0x08,0x7e,0x19,0x1c,0x2a,0x2b,0x4a,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x00,0xef,0x21,0x21,0x29,0xa5,0x63,0x21,0x63,0xbd,0x29,0x21,0x21,0xa5,0x42,0x00 -+// 32714 翊 ; -+,0x20,0x11,0x08,0x7e,0x00,0x42,0x22,0x24,0x14,0x14,0x09,0x0e,0x70,0x00,0x00,0x00,0x00,0xee,0x22,0x22,0x22,0xaa,0x66,0x22,0x66,0xaa,0x32,0x22,0x22,0xaa,0x44,0x00 -+// 32715 翋 ; -+,0x00,0x3b,0x08,0x08,0x48,0x2a,0x29,0x08,0x19,0x2a,0x48,0x08,0x08,0x2a,0x11,0x00,0x00,0x90,0x88,0xff,0x80,0x82,0x83,0xa2,0xa2,0xa4,0x94,0x94,0x80,0xff,0x00,0x00 -+// 32716 翌 ; -+,0x00,0x3f,0x09,0x09,0x03,0x0d,0x31,0x00,0x1f,0x00,0x04,0x02,0x02,0x00,0x7f,0x00,0x00,0x7c,0x24,0x14,0x0c,0x14,0xa4,0x40,0xfe,0x10,0x18,0x30,0x20,0x40,0xff,0x00 -+// 32717 翍 ; -+,0x00,0x77,0x11,0x11,0x55,0x33,0x11,0x31,0x53,0x15,0x19,0x11,0x11,0x55,0x22,0x01,0x08,0x08,0x7f,0x49,0x48,0x48,0x7e,0x62,0x62,0x54,0x54,0x48,0x48,0x54,0xa3,0x42 -+// 32718 翎 ; -+,0x08,0x08,0x14,0x12,0x22,0x28,0x46,0x04,0x3f,0x02,0x15,0x08,0x04,0x04,0x00,0x00,0x00,0xef,0x21,0x21,0xa9,0x65,0x25,0x23,0x65,0xa9,0x21,0x21,0x21,0xa5,0x42,0x00 -+// 32719 翏 ; -+,0x00,0x3f,0x11,0x09,0x05,0x09,0x10,0x03,0x0c,0x71,0x06,0x18,0x03,0x1c,0x03,0x1c,0x00,0x7c,0x24,0x14,0x0c,0x14,0xa4,0x60,0xd8,0x87,0x20,0xcc,0x30,0xc0,0x00,0x00 -+// 32720 翐 ; -+,0x00,0x77,0x11,0x11,0x59,0x35,0x13,0x11,0x33,0x55,0x19,0x11,0x11,0x55,0x22,0x01,0x10,0x10,0x50,0x7f,0x50,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 32721 翑 ; -+,0x00,0x7b,0x08,0x08,0x4c,0x2a,0x19,0x08,0x19,0x2a,0x4c,0x08,0x08,0x08,0x2a,0x11,0x10,0x98,0x90,0xbf,0xc1,0xbd,0xa5,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x02 -+// 32722 習 ; -+,0x00,0x3f,0x11,0x09,0x05,0x09,0x30,0x01,0x07,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x00,0x7e,0x22,0x12,0x0a,0x12,0xa2,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 32723 翓 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0x11,0x11,0x99,0x55,0x55,0x11,0x33,0xd5,0x19,0x11,0x11,0x55,0x22,0x00 -+// 32724 翔 ; -+,0x22,0x13,0x14,0x3e,0x09,0x08,0x3e,0x08,0x08,0x3e,0x09,0x08,0x10,0x10,0x20,0x40,0x00,0xee,0x22,0x22,0x32,0xaa,0xaa,0x22,0x66,0xaa,0x32,0x22,0x22,0xaa,0x44,0x00 -+// 32725 翕 ; -+,0x00,0x01,0x06,0x1b,0x60,0x07,0x04,0x07,0x00,0x3f,0x11,0x09,0x05,0x09,0x15,0x02,0x80,0x60,0x18,0xf7,0x02,0xf8,0x08,0xf8,0x00,0x7c,0x24,0x14,0x24,0x44,0x14,0x08 -+// 32726 翖 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x40,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x00,0xee,0x22,0x22,0xaa,0x66,0x22,0x66,0xaa,0x22,0x22,0x22,0x22,0xaa,0x44,0x00 -+// 32727 翗 ; -+,0x10,0x1e,0x12,0x32,0x4c,0x04,0x18,0x68,0x0f,0x11,0x2a,0x4a,0x04,0x18,0x60,0x00,0x00,0xff,0x11,0x11,0x99,0x75,0x55,0x11,0x33,0x55,0x99,0x11,0x11,0x55,0x22,0x00 -+// 32728 翘 ; -+,0x10,0x10,0x1e,0x70,0x15,0x0a,0x15,0x20,0x7e,0x15,0x14,0x14,0x14,0x24,0x43,0x00,0x00,0xee,0x22,0x32,0x2a,0xaa,0x62,0x66,0xaa,0x32,0x22,0xaa,0x45,0x01,0xff,0x00 -+// 32729 翙 ; -+,0x08,0x08,0x49,0x49,0x49,0x7f,0x08,0x1f,0x11,0x32,0x4a,0x05,0x08,0x10,0x60,0x00,0x00,0xff,0x11,0x11,0x99,0x55,0x53,0x15,0x39,0x51,0x91,0x11,0x11,0x11,0x55,0x22 -+// 32730 翚 ; -+,0x1f,0x09,0x05,0x07,0x09,0x01,0x3f,0x22,0x1f,0x04,0x0f,0x00,0x3f,0x00,0x00,0x00,0x7c,0x24,0x1c,0x14,0x24,0x04,0xfe,0x02,0xfc,0x40,0xf8,0x40,0xff,0x40,0x40,0x40 -+// 32731 翛 ; -+,0x08,0x0c,0x08,0x09,0x14,0x14,0x35,0x54,0x17,0x16,0x15,0x14,0x15,0x14,0x11,0x10,0x40,0x7e,0x84,0x48,0x30,0x4c,0x83,0x00,0xde,0x42,0x52,0xca,0x52,0x42,0x4a,0x84 -+// 32732 翜 ; -+,0x3f,0x11,0x09,0x05,0x09,0x31,0x00,0x3f,0x08,0x08,0x15,0x25,0x02,0x04,0x08,0x10,0x7c,0x44,0x24,0x14,0x24,0x44,0x80,0xff,0x88,0x88,0x54,0x44,0x20,0x18,0x0e,0x04 -+// 32733 翝 ; -+,0x08,0x04,0x7f,0x49,0x08,0x08,0x3e,0x08,0x14,0x14,0x28,0x48,0x12,0x3f,0x01,0x00,0x00,0xf7,0x11,0x11,0x99,0x55,0x51,0x33,0x55,0x99,0x11,0x11,0x11,0x55,0x22,0x00 -+// 32734 翞 ; -+,0x00,0x7f,0x08,0x48,0x2c,0x2a,0x08,0x09,0x1a,0x2c,0x48,0x08,0x08,0x08,0x2a,0x11,0x10,0x88,0xff,0x80,0xbe,0xa2,0xa2,0xbe,0x88,0x88,0xaa,0xa9,0xc9,0x88,0xa8,0x10 -+// 32735 翟 ; -+,0x3f,0x11,0x09,0x05,0x09,0x14,0x06,0x0f,0x08,0x1f,0x28,0x0f,0x08,0x08,0x0f,0x08,0x7e,0x22,0x12,0x0a,0x12,0xa2,0x40,0xfe,0x40,0xfe,0x40,0xfe,0x40,0x40,0xff,0x00 -+// 32736 翠 ; -+,0x3f,0x11,0x09,0x05,0x09,0x10,0x3f,0x02,0x02,0x05,0x08,0x3f,0x00,0x00,0x00,0x00,0x7c,0x24,0x14,0x14,0xa4,0x40,0xfe,0x10,0x10,0x28,0x84,0xff,0x80,0x80,0x80,0x80 -+// 32737 翡 ; -+,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x00,0x3f,0x11,0x09,0x05,0x09,0x31,0x05,0x02,0x20,0x3f,0x20,0x3e,0x20,0x3f,0x20,0x00,0x7e,0x02,0x22,0x12,0x22,0x42,0x0a,0x04 -+// 32738 翢 ; -+,0x00,0x3f,0x24,0x24,0x2e,0x24,0x3f,0x20,0x2e,0x2a,0x2a,0x2e,0x2a,0x20,0x22,0x41,0x00,0xff,0x91,0x91,0x91,0xd9,0xb5,0x93,0xb5,0xd9,0x91,0x91,0x91,0x91,0xd5,0x22 -+// 32739 翣 ; -+,0x1f,0x09,0x05,0x09,0x11,0x1f,0x04,0x02,0x3f,0x02,0x3f,0x04,0x0e,0x01,0x06,0x38,0x7e,0x12,0x0a,0x0a,0x52,0xfc,0x10,0x20,0xff,0x00,0xfe,0x20,0x40,0x80,0x70,0x0e -+// 32740 翤 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x7f,0x55,0x7f,0x55,0x55,0x55,0x55,0x43,0x00,0x00,0xff,0x11,0x11,0x99,0x77,0x55,0x11,0x33,0x55,0x99,0x11,0x11,0x55,0x22,0x00 -+// 32741 翥 ; -+,0x00,0x0f,0x00,0x3f,0x01,0x07,0x1c,0x67,0x04,0x07,0x1f,0x09,0x05,0x09,0x15,0x02,0x88,0xfc,0xa0,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x3e,0x12,0x0a,0x12,0x2a,0x04 -+// 32742 翦 ; -+,0x04,0x3f,0x00,0x0f,0x09,0x0f,0x09,0x0f,0x09,0x3f,0x09,0x05,0x09,0x11,0x05,0x02,0x10,0xfe,0x04,0x24,0x24,0x24,0x24,0x14,0x08,0x7e,0x22,0x12,0x0a,0x12,0x2a,0x04 -+// 32743 翧 ; -+,0x10,0x08,0x7f,0x41,0x3e,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x00,0x00,0x7f,0x00,0x00,0x00,0xff,0x11,0x11,0x99,0x55,0x55,0x11,0x33,0x55,0x99,0x11,0x11,0x55,0x22,0x00 -+// 32744 翨 ; -+,0x3f,0x11,0x09,0x09,0x11,0x27,0x04,0x07,0x04,0x07,0x00,0x1f,0x04,0x04,0x0a,0x11,0x7e,0x12,0x0a,0x12,0x22,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x80,0xfc,0x80,0xfe -+// 32745 翩 ; -+,0x04,0x02,0x3f,0x20,0x20,0x3f,0x20,0x3f,0x35,0x35,0x3f,0x35,0x55,0x55,0x10,0x00,0x00,0x3f,0xc9,0x49,0x6d,0xdb,0x09,0xc9,0x5b,0x6d,0xc9,0x49,0x49,0x49,0x2d,0x12 -+// 32746 翪 ; -+,0x00,0x77,0x11,0x11,0x11,0x55,0x33,0x11,0x33,0x55,0x11,0x11,0x11,0x11,0x55,0x22,0x00,0x24,0x5a,0x5a,0x66,0x7e,0x24,0x42,0xa1,0x3e,0x64,0xa4,0x18,0x14,0x27,0xc2 -+// 32747 翫 ; -+,0x00,0x7b,0x4c,0x2a,0x19,0x6a,0x08,0x08,0x10,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0xbe,0x80,0x80,0x80,0xff,0x94,0x94,0x14,0x14,0x14,0x24,0x25,0x45,0x83,0x00 -+// 32748 翬 ; -+,0x1f,0x09,0x05,0x09,0x3f,0x20,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x7c,0x24,0x14,0x24,0xfe,0x82,0xf8,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0x80 -+// 32749 翭 ; -+,0x00,0x7e,0x12,0x12,0x5b,0x36,0x12,0x36,0x5a,0x12,0x12,0x12,0x12,0x5a,0x24,0x00,0x40,0x5c,0x44,0x84,0xff,0xa0,0xbe,0xc8,0x88,0xff,0x88,0x94,0x94,0xa3,0xc2,0x80 -+// 32750 翮 ; -+,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x55,0x49,0x7f,0x49,0x49,0x49,0x43,0x00,0x00,0x77,0x11,0x11,0x99,0x55,0x55,0x11,0x33,0x55,0x99,0x11,0x11,0x55,0x22,0x00 -+// 32751 翯 ; -+,0x3f,0x11,0x09,0x05,0x09,0x10,0x3f,0x04,0x07,0x00,0x1f,0x10,0x13,0x12,0x13,0x10,0x7c,0x44,0x24,0x14,0xa4,0x40,0xff,0x08,0xf8,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x06 -+// 32752 翰 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x23,0x3e,0x23,0x3e,0x08,0x7f,0x08,0x09,0x08,0x08,0x08,0x10,0x10,0x28,0x44,0x83,0xfe,0x22,0x32,0xaa,0xa6,0x6a,0xb2,0x22,0xaa,0x44,0x00 -+// 32753 翱 ; -+,0x08,0x3e,0x22,0x3e,0x23,0x3e,0x08,0x7f,0x14,0x22,0x49,0x7f,0x08,0x08,0x08,0x08,0x00,0xee,0x22,0x22,0x32,0xaa,0xaa,0x22,0x66,0xaa,0x32,0x22,0x22,0x22,0xaa,0x44 -+// 32754 翲 ; -+,0x00,0x7f,0x0a,0x3f,0x2a,0x3f,0x00,0x3f,0x00,0x7f,0x04,0x16,0x25,0x45,0x14,0x08,0x00,0xf7,0x11,0x99,0x95,0xd7,0x35,0x11,0x13,0xb5,0x59,0x91,0x11,0x11,0x55,0x22 -+// 32755 翳 ; -+,0x3f,0x28,0x3f,0x24,0x3f,0x24,0x2a,0x3f,0x00,0x3f,0x11,0x09,0x11,0x21,0x05,0x02,0x3c,0x24,0x24,0x43,0x3c,0x24,0x18,0x24,0x43,0x7c,0x24,0x14,0x24,0x44,0x14,0x08 -+// 32756 翴 ; -+,0x00,0x7e,0x12,0x13,0x5a,0x36,0x13,0x12,0x36,0x5a,0x12,0x12,0x12,0x5a,0x25,0x00,0x08,0x08,0x7f,0x08,0xbe,0x2a,0xbe,0xaa,0xbe,0x88,0xff,0x88,0x88,0x88,0x7f,0x00 -+// 32757 翵 ; -+,0x00,0x7f,0x09,0x49,0x2d,0x2b,0x09,0x09,0x1b,0x2d,0x49,0x09,0x09,0x09,0x2d,0x12,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 32758 翶 ; -+,0x08,0x10,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x04,0x25,0x16,0x25,0x7f,0x04,0x04,0x04,0x00,0x7f,0x11,0x99,0x55,0x33,0x11,0x11,0x33,0x55,0x99,0x11,0x91,0x11,0x55,0x22 -+// 32759 翷 ; -+,0x08,0x49,0x2a,0x7f,0x1c,0x2b,0x4a,0x11,0x1f,0x29,0x2d,0x5f,0x11,0x11,0x21,0x41,0x00,0x7f,0x11,0x11,0x59,0x35,0x15,0x11,0xb3,0x55,0x11,0xd1,0x11,0x11,0x55,0x22 -+// 32760 翸 ; -+,0x08,0x08,0x7f,0x2a,0x7f,0x22,0x7f,0x41,0x7f,0x41,0x7f,0x41,0x7f,0x24,0x22,0x42,0x00,0x7f,0x11,0x11,0x11,0x55,0x33,0x11,0x33,0x55,0x99,0x11,0x11,0x11,0x55,0x22 -+// 32761 翹 ; -+,0x08,0x08,0x3e,0x08,0x7f,0x22,0x77,0x22,0x77,0x00,0x7f,0x14,0x14,0x24,0x23,0x40,0x00,0x00,0x7e,0x12,0x12,0x5a,0x36,0x12,0x36,0x5a,0x12,0x5a,0x25,0x01,0xff,0x00 -+// 32762 翺 ; -+,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x49,0x2a,0x1c,0x2a,0x7f,0x08,0x08,0x08,0x00,0xff,0x11,0x11,0x99,0x55,0x55,0x11,0x33,0x55,0x99,0x11,0x11,0x11,0x55,0x22 -+// 32763 翻 ; -+,0x07,0x78,0x29,0x1a,0x7f,0x1c,0x2a,0x49,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x00,0x00,0xff,0x11,0x11,0x99,0x55,0x53,0x11,0x33,0x55,0x99,0x11,0x11,0x11,0x55,0x22 -+// 32764 翼 ; -+,0x3f,0x09,0x05,0x09,0x11,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x3f,0x04,0x7f,0x0c,0x30,0x7c,0x24,0x14,0x0c,0x14,0xf8,0x88,0xf8,0x88,0xf8,0x10,0xfe,0x10,0xff,0x18,0x06 -+// 32765 翽 ; -+,0x04,0x17,0x14,0x3f,0x02,0x3f,0x22,0x3e,0x2a,0x29,0x3b,0x25,0x25,0x29,0x50,0x00,0x00,0x7f,0x11,0x51,0x39,0x95,0x11,0x11,0xb3,0x55,0x19,0x11,0x51,0x51,0x95,0x22 -+// 32766 翾 ; -+,0x00,0x7f,0x52,0x7f,0x00,0x7f,0x00,0x3f,0x21,0x3f,0x08,0x15,0x32,0x55,0x19,0x10,0x00,0xf7,0x91,0x91,0x59,0xb5,0x11,0x11,0x13,0x35,0x59,0x11,0x11,0x11,0x55,0x22 -+// 32767 翿 ; -+,0x08,0x7f,0x08,0x3f,0x00,0x7f,0x00,0x3e,0x08,0x7f,0x01,0x7f,0x55,0x55,0x71,0x03,0x00,0x77,0x11,0x11,0x59,0xb5,0x93,0x11,0x33,0x55,0x19,0xd1,0x11,0x11,0x55,0x22 -+// 32768 耀 ; -+,0x09,0x09,0x4a,0x2a,0x08,0x7f,0x14,0x14,0x15,0x16,0x14,0x15,0x2e,0x24,0x40,0x00,0xee,0x22,0xaa,0x66,0xaa,0x62,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 32769 老 ; -+,0x01,0x01,0x3f,0x01,0x01,0x01,0x7f,0x00,0x01,0x06,0x1a,0x63,0x02,0x02,0x01,0x00,0x00,0x04,0xfe,0x04,0x08,0x10,0xff,0xc0,0x00,0x18,0x60,0x80,0x02,0x02,0xfe,0x00 -+// 32770 耂 ; -+,0x01,0x01,0x01,0x1f,0x01,0x01,0x01,0x7f,0x00,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0x04,0xf6,0x04,0x08,0x10,0xff,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 32771 考 ; -+,0x01,0x01,0x1f,0x01,0x01,0x3f,0x00,0x01,0x03,0x0d,0x73,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0xec,0x10,0x20,0xff,0x80,0x00,0xfe,0x00,0xfc,0x04,0x04,0x04,0x28,0x10 -+// 32772 耄 ; -+,0x01,0x0f,0x01,0x7f,0x01,0x02,0x0f,0x32,0x03,0x3d,0x01,0x1f,0x01,0x7f,0x01,0x00,0x00,0xe8,0x10,0xff,0x40,0x80,0xe4,0x04,0xfc,0x00,0x38,0xc0,0x00,0xfc,0x01,0xff -+// 32773 者 ; -+,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x01,0x03,0x0e,0x72,0x03,0x02,0x02,0x03,0x02,0x80,0x84,0xf6,0x88,0x90,0xff,0x40,0x80,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 32774 耆 ; -+,0x00,0x0f,0x00,0x3f,0x00,0x01,0x0f,0x72,0x03,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x80,0xf4,0x88,0xff,0x60,0x80,0xf4,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 32775 耇 ; -+,0x00,0x0f,0x00,0x00,0x7f,0x01,0x0e,0x77,0x08,0x17,0x64,0x04,0x07,0x00,0x00,0x00,0x80,0xf4,0x88,0xb0,0xff,0x80,0x00,0xfc,0x04,0xc4,0x44,0x44,0xc4,0x04,0x28,0x10 -+// 32776 耈 ; -+,0x00,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x73,0x04,0x07,0x08,0x17,0x24,0x07,0x00,0x00,0x80,0x84,0xf4,0x88,0xff,0xe0,0x04,0xfc,0x00,0xfc,0x04,0xe4,0x24,0xe4,0x14,0x08 -+// 32777 耉 ; -+,0x00,0x00,0x0f,0x00,0x7f,0x01,0x07,0x19,0x61,0x01,0x00,0x07,0x04,0x07,0x00,0x00,0x88,0x8c,0xe8,0x90,0xff,0x80,0x18,0xe0,0x00,0xfc,0x04,0xe4,0x24,0xe4,0x14,0x08 -+// 32778 耊 ; -+,0x01,0x01,0x0f,0x01,0x7f,0x01,0x06,0x1f,0x61,0x02,0x07,0x00,0x1f,0x00,0x00,0x3f,0x00,0x08,0xfc,0x10,0xff,0x80,0x00,0xfc,0x10,0x08,0xfc,0x48,0xfe,0x40,0x40,0xff -+// 32779 耋 ; -+,0x00,0x0f,0x00,0x3f,0x01,0x0f,0x74,0x03,0x00,0x0f,0x04,0x0f,0x00,0x1f,0x00,0x3f,0x80,0xf6,0x98,0xff,0x00,0xf4,0x04,0xfc,0x00,0xfc,0x08,0xfe,0x44,0xfc,0x40,0xff -+// 32780 而 ; -+,0x00,0x3f,0x01,0x02,0x1f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x00,0x00,0xff,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x2a,0x04,0x00 -+// 32781 耍 ; -+,0x3f,0x01,0x02,0x1f,0x11,0x11,0x11,0x11,0x02,0x7f,0x04,0x03,0x00,0x03,0x0c,0x30,0xff,0x80,0x00,0xfe,0x22,0x22,0x2e,0x04,0x00,0xff,0x08,0x10,0xe0,0x18,0x06,0x02 -+// 32782 耎 ; -+,0x00,0x3f,0x01,0x1f,0x12,0x12,0x12,0x12,0x10,0x00,0x3f,0x00,0x01,0x06,0x18,0x60,0x00,0xfe,0x00,0xfc,0x24,0x24,0x24,0x34,0x88,0x80,0xfe,0x80,0x60,0x18,0x07,0x02 -+// 32783 耏 ; -+,0x00,0x7f,0x04,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x23,0x21,0x00,0x04,0xc6,0x08,0x08,0x92,0xa3,0xc4,0x88,0x90,0xa2,0xc3,0x84,0x88,0x90,0x20,0x00 -+// 32784 耐 ; -+,0x00,0x7f,0x04,0x04,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x28,0x2b,0x21,0x00,0x04,0x84,0x04,0x04,0xff,0x84,0x84,0xa4,0x94,0x94,0x94,0x84,0x84,0x94,0x08,0x00 -+// 32785 耑 ; -+,0x00,0x10,0x10,0x1f,0x00,0x7f,0x01,0x02,0x1f,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x80,0x84,0x84,0xfc,0x00,0xff,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0x1c,0x08 -+// 32786 耒 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x00,0x00,0x3f,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x80,0x80,0xfe,0x80,0xf8,0x80,0x80,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 32787 耓 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x04,0x04,0x3f,0x0c,0x0e,0x15,0x25,0x45,0x04,0x04,0x04,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x88,0x08,0x08,0x28,0x10 -+// 32788 耔 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x08,0x7f,0x08,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x08,0x00,0xfe,0x04,0x28,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 32789 耕 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x2b,0x4a,0x08,0x08,0x09,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x84,0x84,0x04 -+// 32790 耖 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2b,0x4a,0x08,0x08,0x0b,0x10,0x10,0x10,0x54,0x52,0x91,0x91,0x12,0x13,0x12,0x04,0x08,0x10,0x20,0xc0,0x00 -+// 32791 耗 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x08,0x08,0x7f,0x08,0x1d,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x04,0x0e,0xf0,0x10,0x1e,0xf0,0x10,0x10,0x1f,0xf0,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 32792 耘 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x04,0x04,0x7f,0x0c,0x0e,0x15,0x15,0x24,0x44,0x04,0x04,0x00,0x00,0x7e,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x20,0x22,0x41,0xff,0x01,0x00 -+// 32793 耙 ; -+,0x08,0x08,0x3e,0x08,0x3e,0x08,0x08,0x7e,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x08,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 32794 耚 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x28,0x48,0x09,0x09,0x0a,0x10,0x10,0x10,0xff,0x92,0x90,0xfc,0xa4,0xa4,0xa4,0xa8,0x90,0x90,0x2c,0x47,0x82 -+// 32795 耛 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x48,0x08,0x08,0x08,0x10,0x18,0x20,0x24,0x42,0x8f,0xf2,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32796 耜 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x04,0x04,0x7f,0x04,0x0e,0x15,0x25,0x44,0x04,0x04,0x04,0x00,0x7e,0xc2,0x42,0x42,0x7e,0x40,0xc0,0x7f,0x41,0x41,0x41,0x41,0x41,0x7f,0x41 -+// 32797 耝 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x08,0x1c,0x1a,0x29,0x29,0x48,0x08,0x09,0x08,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0xff,0x00 -+// 32798 耞 ; -+,0x08,0x08,0x7e,0x09,0x3e,0x08,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x49,0x0a,0x0c,0x08,0x80,0x80,0x80,0xef,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x29,0x2f,0xa9,0x40,0x00 -+// 32799 耟 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x08,0x7f,0x08,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x08,0x00,0x00,0x7f,0x40,0x40,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x40,0x7f,0x00 -+// 32800 耠 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x09,0x08,0x7f,0x08,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x10,0x10,0x28,0x44,0x83,0x02,0xfc,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 32801 耡 ; -+,0x08,0x09,0x7f,0x09,0x3d,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x29,0x2f,0x48,0x08,0x08,0x08,0xe8,0x28,0x3f,0xe9,0x29,0x29,0xe9,0x29,0x29,0x39,0xe9,0x09,0x11,0x17,0x22 -+// 32802 耢 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x09,0x7f,0x08,0x1c,0x1b,0x2a,0x28,0x48,0x08,0x09,0x48,0x48,0xff,0x48,0x48,0xff,0x02,0x20,0x20,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04 -+// 32803 耣 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x09,0x08,0x7f,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x08,0x10,0x10,0x2c,0x43,0x81,0x7e,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xaa,0x86 -+// 32804 耤 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x08,0x7f,0x08,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x08,0x44,0x44,0xfe,0x44,0x44,0x44,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 32805 耥 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2b,0x4a,0x08,0x08,0x08,0x10,0x10,0x92,0x53,0x54,0x10,0xff,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x85,0x82 -+// 32806 耦 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x08,0x08,0x7e,0x09,0x1d,0x1b,0x2b,0x49,0x09,0x09,0x09,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x1f,0xf5,0x01,0x05,0x02 -+// 32807 耧 ; -+,0x08,0x09,0x7e,0x09,0x08,0x3e,0x09,0x7e,0x08,0x1d,0x1a,0x2a,0x48,0x08,0x08,0x09,0x20,0x24,0xa8,0xfe,0x70,0xac,0x27,0x42,0x40,0xff,0x84,0xc8,0x30,0x48,0x86,0x02 -+// 32808 耨 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x08,0x08,0x7f,0x08,0x1c,0x2a,0x29,0x49,0x0a,0x08,0x08,0xff,0x80,0xfe,0x80,0xff,0xaa,0xac,0xb7,0xa2,0x84,0xff,0x04,0x44,0x44,0x14,0x08 -+// 32809 耩 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x09,0x7f,0x08,0x1c,0x2a,0x2a,0x49,0x08,0x08,0x08,0x48,0x48,0xff,0x48,0xfe,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xff,0x82,0x8a,0x84 -+// 32810 耪 ; -+,0x08,0x08,0x7f,0x08,0x7e,0x08,0x08,0x7e,0x09,0x1c,0x1a,0x28,0x48,0x08,0x08,0x09,0x20,0x10,0xff,0x42,0x24,0xff,0xa1,0x12,0xff,0x20,0x3e,0x22,0x42,0x42,0x8a,0x04 -+// 32811 耫 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x09,0x7f,0x08,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x09,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 32812 耬 ; -+,0x08,0x08,0x7e,0x09,0x3e,0x08,0x08,0x7e,0x18,0x1c,0x2a,0x2b,0x48,0x08,0x08,0x09,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x20,0xff,0x44,0x44,0x38,0xc6 -+// 32813 耭 ; -+,0x10,0x10,0x7c,0x11,0x7f,0x10,0x13,0x7d,0x13,0x39,0x35,0x55,0x51,0x12,0x12,0x14,0x20,0xa4,0xa4,0x6a,0xfe,0xa4,0xef,0x50,0xff,0x10,0x52,0x4a,0x0c,0x15,0x63,0x00 -+// 32814 耮 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x08,0x7f,0x19,0x1d,0x2a,0x2a,0x48,0x08,0x08,0x09,0x0a,0x44,0x55,0xee,0x44,0xaa,0x93,0xff,0x22,0x20,0xfc,0x24,0x44,0x44,0x84,0x14,0x08 -+// 32815 耯 ; -+,0x08,0x09,0x7e,0x08,0x7e,0x09,0x08,0x7e,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x08,0x09,0x44,0xff,0x44,0x40,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfe,0x44,0x38,0xc7 -+// 32816 耰 ; -+,0x09,0x08,0x7e,0x08,0x3e,0x08,0x7f,0x19,0x1d,0x1b,0x2a,0x28,0x49,0x0a,0x08,0x09,0xff,0x20,0xfe,0x82,0xfe,0x82,0xff,0x12,0x49,0x7f,0x80,0xfc,0x48,0x30,0x4c,0x83 -+// 32817 耱 ; -+,0x10,0x10,0x7d,0x11,0x3d,0x11,0x11,0x7d,0x11,0x39,0x35,0x55,0x52,0x13,0x12,0x14,0x20,0x10,0xff,0x44,0xff,0x6c,0xd6,0x45,0x44,0xff,0x20,0x7e,0xc2,0x42,0x7e,0x42 -+// 32818 耲 ; -+,0x08,0x0b,0x08,0x7d,0x09,0x3d,0x09,0x7e,0x18,0x1d,0x2a,0x28,0x48,0x09,0x0a,0x08,0x20,0xff,0x00,0xfe,0x4a,0xfe,0x12,0x94,0x58,0xb6,0x20,0x52,0xcc,0x47,0x62,0x40 -+// 32819 耳 ; -+,0x00,0x3f,0x04,0x04,0x07,0x04,0x04,0x07,0x04,0x04,0x04,0x7f,0x00,0x00,0x00,0x00,0x00,0xff,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0x7f,0xc8,0x08,0x08,0x08,0x08 -+// 32820 耴 ; -+,0x00,0x7f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x1f,0x71,0x01,0x01,0x01,0x10,0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x11,0x11,0x0f,0x00 -+// 32821 耵 ; -+,0x00,0x7f,0x11,0x11,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x17,0x79,0x01,0x01,0x01,0x00,0x80,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0x28,0x10 -+// 32822 耶 ; -+,0x00,0x3f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x17,0x79,0x01,0x01,0x01,0x01,0x00,0xbf,0x22,0x22,0x24,0x28,0x24,0x22,0x22,0x21,0xa1,0x2a,0x24,0x20,0x20,0x20 -+// 32823 耷 ; -+,0x01,0x01,0x3f,0x02,0x04,0x1f,0x64,0x07,0x04,0x07,0x04,0x04,0x7f,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x0c,0xff,0x12,0xf0,0x10,0xf0,0x10,0x1f,0xf0,0x10,0x10,0x10 -+// 32824 耸 ; -+,0x04,0x04,0x04,0x0a,0x11,0x21,0x5f,0x04,0x07,0x04,0x07,0x04,0x04,0x7f,0x00,0x00,0x20,0x20,0x20,0x50,0x48,0x84,0xfc,0x10,0xf0,0x10,0xf0,0x10,0x1f,0xf0,0x10,0x10 -+// 32825 耹 ; -+,0x00,0x7f,0x12,0x12,0x1e,0x12,0x13,0x1e,0x12,0x12,0x1f,0x72,0x02,0x02,0x02,0x02,0x10,0x90,0x10,0x28,0x44,0xa3,0x12,0x10,0x00,0xfe,0x04,0x04,0x08,0x08,0x10,0x10 -+// 32826 耺 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x2f,0x72,0x02,0x03,0x02,0x02,0x00,0x00,0x7e,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x48,0x44,0x82,0xff,0x82,0x00 -+// 32827 耻 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x23,0x3e,0x62,0x03,0x02,0x02,0x08,0x08,0x08,0x08,0x48,0x4f,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0xff,0x00,0x00 -+// 32828 耼 ; -+,0x00,0x7e,0x24,0x24,0x3c,0x25,0x24,0x3c,0x25,0x24,0x26,0x7c,0x04,0x04,0x04,0x04,0x00,0xfc,0x84,0x84,0x84,0xff,0x84,0x84,0xff,0x84,0x84,0x84,0x84,0x84,0x94,0x88 -+// 32829 耽 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x23,0x22,0x22,0x3e,0x22,0x23,0x2e,0x72,0x02,0x02,0x03,0x10,0x10,0x10,0xff,0x91,0x12,0x10,0x10,0x28,0x28,0x28,0x48,0x49,0x89,0x87,0x00 -+// 32830 耾 ; -+,0x00,0x7f,0x22,0x23,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3f,0x62,0x02,0x02,0x02,0x20,0x20,0x20,0xff,0x20,0x20,0x28,0x28,0x48,0x50,0x90,0x24,0x42,0xff,0x42,0x00 -+// 32831 耿 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x27,0x7a,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0x12,0x53,0x52,0x54,0x90,0x10,0x10,0x28,0x24,0x24,0x43,0x42,0x80 -+// 32832 聀 ; -+,0x00,0x3f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x1f,0x71,0x01,0x01,0x01,0x20,0xa8,0x26,0x24,0x3f,0xe0,0x24,0x16,0x14,0x14,0xc8,0x19,0x25,0x45,0x82,0x00 -+// 32833 聁 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x23,0x3e,0x22,0x22,0x23,0x2e,0x72,0x02,0x02,0x02,0x08,0x48,0x68,0x44,0x84,0x82,0x01,0xfc,0x24,0x24,0x24,0x24,0x24,0x44,0x54,0x88 -+// 32834 聂 ; -+,0x3f,0x04,0x07,0x04,0x07,0x04,0x3f,0x00,0x3f,0x22,0x12,0x0c,0x12,0x13,0x22,0x41,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xfe,0x10,0xfe,0x44,0x48,0x30,0x30,0x48,0x87,0x02 -+// 32835 聃 ; -+,0x00,0x7e,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x25,0x2e,0x74,0x04,0x04,0x04,0x04,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xff,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 32836 聄 ; -+,0x00,0x7f,0x12,0x12,0x1e,0x12,0x13,0x1e,0x12,0x12,0x1f,0x72,0x02,0x02,0x03,0x02,0x10,0x90,0x10,0x28,0x44,0x97,0x1a,0x20,0x48,0x0c,0x30,0xc6,0x18,0x60,0x80,0x00 -+// 32837 聅 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x23,0x22,0x23,0x3e,0x22,0x23,0x2e,0x72,0x22,0x02,0x02,0x40,0x60,0x40,0x7e,0x90,0x10,0x10,0xff,0x10,0x10,0xa8,0x24,0x26,0x43,0x42,0x80 -+// 32838 聆 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x23,0x3e,0x22,0x22,0x27,0x7a,0x02,0x02,0x02,0x02,0x20,0x20,0x20,0x50,0x4c,0xa7,0x12,0x00,0xfe,0x04,0x08,0x50,0x30,0x18,0x10,0x00 -+// 32839 聇 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x27,0x7a,0x02,0x03,0x02,0x02,0x00,0xff,0x08,0x08,0x08,0x48,0x48,0x4f,0x48,0x48,0x48,0x48,0x48,0xff,0x00,0x00 -+// 32840 聈 ; -+,0x00,0x7e,0x24,0x24,0x3d,0x27,0x24,0x3c,0x25,0x25,0x26,0x7f,0x04,0x04,0x04,0x04,0x88,0xc8,0x88,0x88,0x7f,0xc9,0x89,0x89,0x09,0x09,0x49,0xe9,0x51,0x11,0x25,0x42 -+// 32841 聉 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x2f,0x7a,0x22,0x02,0x02,0x02,0x10,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 32842 聊 ; -+,0x00,0x7f,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x27,0x7c,0x04,0x04,0x04,0x05,0x30,0xc0,0x0f,0x29,0x29,0x29,0x29,0x29,0x29,0x6d,0xaa,0x28,0x48,0x48,0x88,0x08 -+// 32843 聋 ; -+,0x01,0x01,0x7f,0x01,0x02,0x0c,0x11,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x00,0x00,0x20,0x12,0xff,0x50,0x62,0x7e,0x80,0xfe,0x10,0xf0,0x10,0xf0,0x12,0xff,0x10,0x10 -+// 32844 职 ; -+,0x00,0x7f,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x62,0x02,0x02,0x02,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00,0xa4,0x32,0x21,0x41,0x80,0x00 -+// 32845 聍 ; -+,0x00,0x7f,0x22,0x22,0x3f,0x22,0x22,0x3e,0x22,0x22,0x27,0x7a,0x22,0x02,0x02,0x02,0x10,0x08,0xff,0x81,0x02,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 32846 聎 ; -+,0x00,0x7e,0x24,0x24,0x3d,0x24,0x24,0x3c,0x24,0x25,0x24,0x3e,0x64,0x04,0x04,0x05,0x48,0x48,0x48,0x4a,0x4b,0xcc,0x48,0x4c,0xcb,0x4a,0x48,0x48,0x49,0x89,0x87,0x00 -+// 32847 聏 ; -+,0x00,0x7e,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x2e,0x74,0x04,0x04,0x04,0x00,0xff,0x10,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x86,0x00 -+// 32848 聐 ; -+,0x00,0x7f,0x22,0x23,0x3e,0x22,0x22,0x3e,0x22,0x22,0x27,0x7a,0x02,0x02,0x02,0x02,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x00 -+// 32849 聑 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x27,0x7a,0x02,0x02,0x02,0x02,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0x5f,0xe4,0x04,0x04,0x04,0x04 -+// 32850 聒 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x22,0x27,0x3a,0x62,0x02,0x02,0x02,0x00,0x0e,0xf0,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32851 聓 ; -+,0x3e,0x08,0x08,0x0e,0x79,0x02,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x00,0x00,0x00,0xf8,0x88,0xa8,0xa9,0x07,0x00,0xff,0x10,0xf0,0x10,0xf0,0x1f,0xf0,0x10,0x10,0x10 -+// 32852 联 ; -+,0x00,0x7f,0x22,0x22,0x3f,0x22,0x22,0x3e,0x23,0x22,0x27,0x7a,0x22,0x02,0x02,0x02,0x84,0x46,0x24,0x28,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x28,0x24,0x43,0x82 -+// 32853 聕 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x22,0x2f,0x7a,0x02,0x02,0x02,0x02,0x10,0x10,0x50,0x7e,0x90,0x10,0x10,0xff,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 32854 聖 ; -+,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x71,0x01,0x1f,0x00,0x00,0x1f,0x00,0x00,0x3f,0xbe,0x22,0x22,0x22,0x22,0x22,0xbe,0x22,0x00,0xfe,0x80,0x80,0xfc,0x80,0x80,0xff -+// 32855 聗 ; -+,0x00,0x7f,0x22,0x23,0x3e,0x22,0x22,0x3f,0x22,0x22,0x2f,0x72,0x22,0x02,0x02,0x03,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x55,0x19,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 32856 聘 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x23,0x22,0x22,0x3f,0x62,0x02,0x02,0x02,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x20,0x7e,0x22,0x02,0x02,0x0a,0x04 -+// 32857 聙 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x27,0x7a,0x22,0x02,0x02,0x02,0x10,0x10,0xff,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x4a,0x44 -+// 32858 聚 ; -+,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x61,0x1f,0x00,0x0c,0x30,0x02,0x0c,0x30,0x00,0x80,0x7e,0x04,0x64,0x18,0x24,0xc3,0x1c,0xe0,0x8c,0xd0,0xa0,0x98,0x87,0x82,0x80 -+// 32859 聛 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3f,0x62,0x02,0x02,0x02,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x28,0x48,0xff,0x08,0x08,0x08,0x08 -+// 32860 聜 ; -+,0x00,0x7f,0x22,0x22,0x3f,0x22,0x22,0x3e,0x22,0x22,0x22,0x3f,0x62,0x02,0x02,0x02,0x10,0x08,0xff,0x81,0x24,0x22,0x43,0x82,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 32861 聝 ; -+,0x00,0x7f,0x22,0x23,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x3f,0x62,0x02,0x02,0x02,0x10,0x14,0x12,0xff,0x10,0x10,0xea,0xaa,0xaa,0xe4,0x08,0x29,0xd5,0x23,0xc1,0x00 -+// 32862 聞 ; -+,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x2f,0x22,0x23,0x22,0x23,0x22,0x2f,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xfa,0x22,0xe2,0x22,0xe2,0x22,0xfa,0x22,0x2a,0x24 -+// 32863 聟 ; -+,0x10,0x1f,0x24,0x7f,0x04,0x0a,0x11,0x2f,0x04,0x07,0x04,0x07,0x04,0x3f,0x00,0x00,0x00,0xbe,0x22,0xa2,0x22,0x3e,0x00,0xfe,0x08,0xf8,0x08,0xf8,0x08,0xff,0x08,0x08 -+// 32864 聠 ; -+,0x00,0x7f,0x22,0x23,0x3e,0x22,0x22,0x3e,0x23,0x22,0x27,0x7a,0x22,0x02,0x02,0x03,0x84,0x66,0x48,0xff,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 32865 聡 ; -+,0x00,0x7f,0x24,0x24,0x3c,0x25,0x24,0x3c,0x24,0x24,0x2f,0x75,0x05,0x06,0x04,0x04,0x50,0x50,0x48,0x84,0xa3,0x2a,0x44,0xfe,0x04,0x24,0x52,0x51,0x45,0x44,0x3c,0x00 -+// 32866 聢 ; -+,0x00,0x7e,0x25,0x25,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x7e,0x04,0x05,0x05,0x06,0x20,0x10,0xff,0x01,0x00,0xfe,0x10,0x10,0x90,0x9e,0x90,0x90,0x90,0x50,0x3f,0x00 -+// 32867 聣 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x27,0x7a,0x02,0x02,0x02,0x02,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x28,0x49,0x49,0x87 -+// 32868 聤 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x23,0x22,0x2f,0x72,0x02,0x02,0x02,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xff,0x01,0x7c,0x10,0x10,0x10,0x50,0x20 -+// 32869 聥 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x2f,0x72,0x22,0x02,0x02,0x02,0x00,0x0e,0xf0,0x10,0xfe,0x92,0xfe,0x10,0xff,0x91,0x95,0x9f,0xf5,0x81,0x85,0x82 -+// 32870 聦 ; -+,0x00,0x7e,0x24,0x25,0x3e,0x24,0x24,0x3d,0x24,0x25,0x24,0x3e,0x65,0x05,0x06,0x04,0x40,0x40,0xfe,0x2a,0xca,0x72,0x9a,0x22,0x4a,0x84,0x20,0x5a,0x51,0x45,0x3c,0x00 -+// 32871 聧 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x23,0x3e,0x22,0x22,0x2f,0x72,0x02,0x02,0x02,0x02,0x00,0xea,0x2c,0xa9,0x46,0x84,0x7b,0x12,0x10,0xfe,0x10,0x28,0x24,0x42,0x43,0x82 -+// 32872 聨 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x22,0x23,0x3e,0x22,0x22,0x2f,0x72,0x02,0x02,0x02,0x02,0x44,0x54,0xf9,0x2f,0x42,0xa5,0xff,0x21,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84 -+// 32873 聩 ; -+,0x00,0x7e,0x24,0x24,0x3c,0x25,0x24,0x3c,0x24,0x24,0x2e,0x74,0x04,0x04,0x04,0x04,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0x92,0x92,0x92,0x28,0x24,0x43,0x82 -+// 32874 聪 ; -+,0x00,0x7e,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x26,0x3d,0x65,0x05,0x04,0x04,0x00,0x84,0x66,0x48,0xfe,0x82,0x82,0xfe,0x00,0x10,0x4a,0x41,0x45,0x44,0x3c,0x00 -+// 32875 聫 ; -+,0x00,0x7f,0x22,0x22,0x3f,0x22,0x22,0x3f,0x22,0x23,0x2e,0x72,0x02,0x02,0x02,0x02,0x44,0x44,0x88,0xaa,0xde,0x44,0xa9,0xff,0x21,0x10,0xff,0x10,0x20,0x28,0x46,0x82 -+// 32876 聬 ; -+,0x00,0x7f,0x24,0x25,0x3e,0x25,0x24,0x3c,0x25,0x24,0x25,0x3e,0x65,0x06,0x05,0x04,0x48,0x48,0xa4,0x23,0x48,0xfc,0x84,0x00,0xde,0x52,0x4a,0xc6,0x4a,0x52,0x4a,0x84 -+// 32877 聭 ; -+,0x00,0x7f,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x27,0x3c,0x64,0x04,0x04,0x05,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x34,0x3a,0x5f,0x51,0x91,0x8f,0x00 -+// 32878 聮 ; -+,0x00,0x7f,0x24,0x24,0x3d,0x24,0x24,0x3c,0x25,0x24,0x26,0x3c,0x64,0x05,0x05,0x04,0x44,0x44,0x88,0xa9,0xfe,0x42,0x44,0xa9,0xff,0x29,0x00,0xaa,0xaa,0x15,0x15,0x00 -+// 32879 聯 ; -+,0x00,0x7e,0x25,0x27,0x3c,0x24,0x27,0x3c,0x24,0x25,0x27,0x3d,0x64,0x04,0x04,0x05,0x84,0x84,0x29,0xff,0x42,0xa5,0xff,0x21,0x00,0x29,0x29,0xef,0x48,0x48,0x88,0x08 -+// 32880 聰 ; -+,0x00,0x7e,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x2f,0x74,0x05,0x05,0x04,0x04,0x10,0x20,0xfe,0x92,0xbe,0xea,0x92,0xaa,0xc2,0xfe,0x20,0x52,0x55,0x45,0x3c,0x00 -+// 32881 聱 ; -+,0x04,0x3f,0x04,0x3f,0x08,0x0f,0x11,0x22,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x00,0x10,0x90,0x3f,0xa2,0x54,0x08,0x14,0x22,0xff,0x10,0xf0,0x10,0xf0,0x10,0xff,0x10 -+// 32882 聲 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x1f,0x16,0x1f,0x10,0x20,0x7f,0x06,0x05,0x04,0x3f,0x00,0x3c,0xa4,0x27,0x40,0x7e,0xa4,0x98,0x94,0x23,0x42,0xff,0x50,0x30,0x10,0xff,0x10 -+// 32883 聳 ; -+,0x08,0x18,0x65,0x0d,0x1a,0x29,0x09,0x0a,0x0a,0x3f,0x04,0x07,0x04,0x07,0x3e,0x00,0x88,0x88,0x54,0x22,0x20,0x3c,0x20,0xff,0x00,0xfe,0x10,0xf0,0x10,0xfe,0x10,0x10 -+// 32884 聴 ; -+,0x00,0x7e,0x25,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x2e,0x75,0x05,0x05,0x04,0x04,0x10,0x10,0xff,0x10,0xfe,0xaa,0xaa,0xaa,0xfe,0x00,0x12,0x51,0x45,0x46,0x3c,0x00 -+// 32885 聵 ; -+,0x00,0x7f,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x22,0x22,0x2f,0x7a,0x02,0x02,0x02,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 32886 聶 ; -+,0x3f,0x04,0x07,0x04,0x04,0x3f,0x00,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x01,0x01,0xfe,0x10,0x90,0x70,0x10,0xff,0x10,0xff,0x24,0x3c,0x24,0x3c,0xa4,0x7f,0x04,0x04 -+// 32887 職 ; -+,0x00,0x7e,0x25,0x25,0x3c,0x27,0x24,0x25,0x3d,0x25,0x25,0x3f,0x65,0x05,0x04,0x00,0x88,0x48,0xea,0x2a,0xc8,0xff,0x08,0xea,0x2b,0xea,0x24,0x2c,0xf5,0x23,0x41,0x00 -+// 32888 聸 ; -+,0x00,0x7f,0x24,0x27,0x3d,0x25,0x25,0x3d,0x25,0x25,0x2f,0x75,0x05,0x05,0x05,0x06,0x40,0x7c,0x88,0xff,0x24,0x52,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x00 -+// 32889 聹 ; -+,0x00,0x7e,0x25,0x26,0x3d,0x25,0x26,0x3c,0x24,0x25,0x26,0x3d,0x64,0x04,0x04,0x04,0x20,0x10,0xff,0x11,0x4a,0x7d,0x01,0xfe,0xaa,0xff,0x00,0xfe,0x10,0x10,0x50,0x20 -+// 32890 聺 ; -+,0x00,0x7e,0x25,0x26,0x3c,0x25,0x26,0x3d,0x25,0x26,0x24,0x3e,0x64,0x04,0x05,0x04,0x20,0x10,0xff,0x81,0xee,0x2a,0xcc,0x84,0x7a,0x01,0xfe,0x10,0x94,0x92,0x52,0x20 -+// 32891 聻 ; -+,0x21,0x17,0x41,0x27,0x15,0x17,0x25,0x27,0x01,0x7f,0x0a,0x09,0x08,0x7f,0x00,0x00,0x03,0xdc,0x10,0xd0,0x5f,0xd4,0x54,0xd4,0x24,0xff,0x48,0x28,0x08,0xff,0x08,0x08 -+// 32892 聼 ; -+,0x00,0x3c,0x09,0x7e,0x24,0x3c,0x24,0x24,0x3c,0x25,0x24,0x2e,0x75,0x05,0x05,0x04,0x10,0x10,0xff,0x20,0xfe,0xaa,0xaa,0xfe,0x00,0xff,0x00,0x22,0x55,0x45,0x3c,0x00 -+// 32893 聽 ; -+,0x00,0x7f,0x12,0x1e,0x12,0x1e,0x12,0x7f,0x02,0x7b,0x12,0x7a,0x12,0x1a,0x63,0x02,0x10,0x10,0xfe,0x10,0xfe,0xaa,0xaa,0xfe,0x00,0xff,0x10,0xaa,0xa1,0xa2,0x3e,0x00 -+// 32894 聾 ; -+,0x08,0x3f,0x12,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x7f,0x04,0x07,0x04,0x04,0x7f,0x00,0x40,0x7e,0x40,0x7e,0x02,0x7e,0x40,0x7d,0x41,0xff,0x10,0x90,0x70,0x10,0xff,0x10 -+// 32895 聿 ; -+,0x00,0x00,0x0f,0x00,0x3f,0x00,0x00,0x0f,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x80,0x80,0xfc,0x84,0xff,0x84,0x84,0xfc,0x80,0xfc,0x80,0x80,0xff,0x80,0x80,0x80 -+// 32896 肀 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0xf8,0x88,0x88,0xff,0x88,0x88,0xf8,0x80,0x80,0x80,0x80,0x80,0x80 -+// 32897 肁 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x10,0x17,0x20,0x2f,0x40,0x80,0x40,0xfc,0x44,0xfc,0x40,0xfc,0x44,0xff,0x44,0xfc,0x40,0xfc,0x40,0xfe,0x40 -+// 32898 肂 ; -+,0x00,0x3e,0x08,0x08,0x11,0x1e,0x12,0x22,0x25,0x54,0x0b,0x08,0x10,0x10,0x20,0x40,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfe,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 32899 肃 ; -+,0x00,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x10,0x12,0x12,0x12,0x14,0x24,0x28,0x40,0x80,0x80,0xfc,0x84,0xff,0x84,0xfc,0x80,0x84,0xa4,0x94,0x94,0x94,0x84,0x84,0x84 -+// 32900 肄 ; -+,0x10,0x12,0x1c,0x12,0x1f,0x00,0x10,0x1f,0x24,0x04,0x3f,0x05,0x0a,0x11,0x21,0x40,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32901 肅 ; -+,0x00,0x1f,0x00,0x3f,0x00,0x1f,0x22,0x3e,0x20,0x3f,0x20,0x3e,0x22,0x22,0x22,0x40,0x80,0xfc,0x84,0xff,0x84,0xfc,0xa2,0xbe,0x82,0xfe,0x82,0xbe,0xa2,0xa2,0xa2,0x82 -+// 32902 肆 ; -+,0x00,0x1f,0x10,0x1e,0x10,0x10,0x1e,0x10,0x7f,0x10,0x14,0x13,0x2f,0x72,0x20,0x00,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x10,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 32903 肇 ; -+,0x08,0x04,0x1f,0x11,0x1f,0x20,0x20,0x4f,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x00,0x20,0x20,0x7f,0xa4,0x18,0x64,0x83,0xf8,0x88,0xfe,0x88,0xf8,0x80,0xff,0x80,0x80 -+// 32904 肈 ; -+,0x04,0x1f,0x11,0x1f,0x10,0x20,0x4f,0x00,0x1f,0x00,0x1f,0x00,0x1f,0x00,0x3f,0x00,0x22,0xff,0x24,0x19,0x6d,0x83,0xf8,0x88,0xfe,0x88,0xf8,0x80,0xfc,0x80,0xfe,0x80 -+// 32905 肉 ; -+,0x00,0x00,0x00,0x1f,0x10,0x11,0x12,0x14,0x18,0x11,0x11,0x12,0x14,0x10,0x10,0x10,0x80,0x80,0x80,0xfe,0x82,0x42,0x32,0x92,0x82,0x42,0x22,0x1a,0x12,0x02,0x0a,0x04 -+// 32906 肊 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0xfc,0x04,0x08,0x08,0x10,0x20,0x20,0x40,0x40,0x80,0x81,0x81,0x7f,0x00,0x00 -+// 32907 肋 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x42,0x8a,0x04 -+// 32908 肌 ; -+,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 32909 肍 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2e,0x45,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x45,0x85,0x87,0x00 -+// 32910 肎 ; -+,0x00,0x3f,0x20,0x40,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x02,0x04,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0x28,0x10,0x00 -+// 32911 肏 ; -+,0x01,0x00,0x01,0x02,0x04,0x18,0x7f,0x10,0x11,0x12,0x14,0x10,0x11,0x12,0x14,0x10,0x00,0x80,0x40,0x20,0x98,0x87,0xfe,0x84,0x44,0x24,0x94,0x84,0x44,0x24,0x14,0x08 -+// 32912 肐 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x44,0x00,0x40,0x60,0x40,0xff,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x42,0x82,0x83,0x7e,0x00 -+// 32913 肑 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x20,0x30,0x20,0x7e,0x42,0x82,0x02,0x22,0x12,0x12,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 32914 肒 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x20,0x20,0x20,0x20,0xfc,0x24,0xa4,0x64,0x34,0x2c,0x24,0x45,0x45,0x83,0x81,0x00 -+// 32915 肓 ; -+,0x00,0x00,0x7f,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x80,0x40,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 32916 肔 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0x90,0x90,0x96,0xba,0xd2,0x92,0x92,0x9a,0x94,0x90,0x81,0x81,0x7f,0x00 -+// 32917 肕 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x00,0xfe,0x12,0x12,0x52,0x52,0x52,0x92,0x12,0x22,0x22,0x42,0x4e,0x84,0x00 -+// 32918 肖 ; -+,0x00,0x10,0x08,0x04,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x80,0x84,0x88,0x90,0x80,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x04,0x14,0x08 -+// 32919 肗 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x20,0x30,0x20,0x20,0x40,0xff,0x44,0x44,0x84,0x88,0x68,0x10,0x28,0x44,0x83,0x02 -+// 32920 肘 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x08,0x08,0x08,0x08,0xff,0x08,0x88,0x48,0x68,0x48,0x08,0x08,0x08,0x08,0x28,0x10 -+// 32921 肙 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 32922 肚 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2b,0x44,0x00,0x10,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 32923 肛 ; -+,0x00,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2b,0x44,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 32924 肜 ; -+,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x21,0x27,0x42,0x00,0x00,0x04,0x06,0x08,0x12,0x23,0x06,0x08,0x12,0x23,0x06,0x04,0x08,0x10,0x20,0x00 -+// 32925 肝 ; -+,0x00,0x1e,0x12,0x12,0x12,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x22,0x22,0x2a,0x44,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32926 肞 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x40,0x20,0x94,0x94,0x84,0x44,0x48,0x48,0x48,0x30,0x30,0x30,0x48,0x86,0x04,0x00 -+// 32927 肟 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0xfe,0x00,0x00,0x00,0xff,0x40,0x40,0xfe,0x42,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 32928 肠 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x13,0x22,0x2a,0x45,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0xfe,0x2a,0x2a,0x4a,0x92,0x22,0x42,0x8e,0x04,0x00 -+// 32929 股 ; -+,0x1e,0x12,0x12,0x12,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x78,0x48,0x48,0x48,0x88,0x07,0x00,0xfe,0x44,0x44,0x28,0x28,0x10,0x28,0x47,0x82 -+// 32930 肢 ; -+,0x00,0x3e,0x22,0x23,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x22,0x2a,0x45,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x84,0x44,0x48,0x28,0x10,0x28,0x47,0x82,0x00 -+// 32931 肣 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x20,0x20,0x50,0x48,0x84,0xa3,0x12,0x10,0x00,0xfe,0x04,0x08,0x08,0x10,0x10,0x00 -+// 32932 肤 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x02,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x50,0x88,0x84,0x03,0x02 -+// 32933 肥 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x80,0x80,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 32934 肦 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3d,0x26,0x25,0x24,0x3c,0x24,0x24,0x24,0x55,0x4a,0x00,0x00,0x90,0x90,0x88,0x04,0x03,0x02,0xfc,0x44,0x44,0x44,0x84,0x84,0x38,0x10,0x00 -+// 32935 肧 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x24,0x24,0x24,0x54,0x48,0x00,0xff,0x10,0x10,0x10,0x30,0x38,0x54,0x52,0x93,0x12,0x10,0x10,0x10,0x10,0x10 -+// 32936 肨 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x13,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 32937 肩 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x0b,0x0a,0x0b,0x12,0x13,0x12,0x22,0x42,0x00,0x80,0x40,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08,0x00 -+// 32938 肪 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x44,0x01,0x20,0x10,0x08,0xff,0x20,0x20,0x3e,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x8a,0x04 -+// 32939 肫 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x22,0x2a,0x44,0x10,0x10,0x10,0xff,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 32940 肬 ; -+,0x00,0x1e,0x12,0x12,0x1f,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x20,0x28,0x26,0x24,0xff,0x28,0x28,0x28,0x28,0x28,0x48,0x48,0x49,0x89,0x87,0x00 -+// 32941 肭 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x54,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xaa,0xa6,0xc6,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 32942 肮 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x20,0x10,0x10,0xff,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x49,0x87,0x00 -+// 32943 肯 ; -+,0x00,0x08,0x08,0x08,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x80,0x80,0xfc,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 32944 肰 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x02,0x20,0x28,0x26,0x24,0x20,0xff,0x20,0x20,0x20,0x50,0x50,0x48,0x84,0x86,0x03,0x02 -+// 32945 肱 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x13,0x22,0x2a,0x44,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0x48,0x48,0x48,0x90,0x94,0x22,0x5f,0xf3,0x42,0x00 -+// 32946 育 ; -+,0x01,0x00,0x7f,0x02,0x04,0x1f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x08,0x00,0x80,0xff,0x10,0x08,0xfc,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 32947 肳 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x13,0x12,0x12,0x22,0x2a,0x44,0x40,0x60,0x40,0x7e,0xaa,0xaa,0x2a,0x4a,0x4a,0x8a,0x12,0x12,0x22,0x42,0x8a,0x04 -+// 32948 肴 ; -+,0x04,0x03,0x00,0x03,0x0c,0x3f,0x01,0x03,0x06,0x0b,0x12,0x23,0x02,0x02,0x02,0x02,0x08,0x10,0xe0,0x18,0x84,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 32949 肵 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x02,0x06,0xf8,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08 -+// 32950 肶 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x88,0x88,0x88,0x88,0x89,0x8a,0xec,0x88,0x88,0x88,0x88,0x88,0x89,0xa9,0xc7,0x80 -+// 32951 肷 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x40,0x60,0x40,0x7f,0x82,0x14,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 32952 肸 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1f,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x08,0x48,0x68,0x44,0x84,0x83,0x12,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 32953 肹 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x44,0x00,0x00,0x48,0x48,0x84,0x83,0x02,0xfc,0x40,0x40,0x7c,0x04,0x04,0x04,0x14,0x08,0x00 -+// 32954 肺 ; -+,0x00,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10,0x10 -+// 32955 肻 ; -+,0x00,0x00,0x00,0x00,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x80,0x80,0xfc,0x80,0xff,0x02,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 32956 肼 ; -+,0x00,0x1e,0x12,0x12,0x1f,0x12,0x12,0x12,0x1f,0x12,0x12,0x22,0x22,0x2a,0x44,0x01,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 32957 肽 ; -+,0x00,0x1e,0x12,0x12,0x1f,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x20,0x20,0x20,0x20,0xfe,0x20,0x50,0x50,0x50,0x48,0x48,0x84,0xa6,0x93,0x92,0x00 -+// 32958 肾 ; -+,0x02,0x12,0x12,0x12,0x12,0x12,0x02,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x7c,0x84,0x48,0x30,0x28,0x44,0x82,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x28,0x10 -+// 32959 肿 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x22,0x2a,0x44,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32960 胀 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x40,0x40,0x44,0x4e,0x58,0x60,0x40,0xff,0x50,0x50,0x48,0x48,0x44,0x53,0xe2,0x40 -+// 32961 胁 ; -+,0x00,0x3c,0x24,0x25,0x24,0x3c,0x25,0x25,0x3d,0x26,0x24,0x24,0x24,0x24,0x55,0x4a,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x26,0x25,0x45,0x44,0x44,0x84,0x84,0x14,0x08 -+// 32962 胂 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10 -+// 32963 胃 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x08,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x04,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 32964 胄 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x08,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 32965 胅 ; -+,0x00,0x1e,0x12,0x12,0x12,0x1f,0x12,0x13,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x10,0x10,0x90,0xfe,0x90,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 32966 胆 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x25,0x4c,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xfc,0x00,0x00,0x00,0xff,0x00 -+// 32967 胇 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x25,0x25,0x25,0x3d,0x25,0x24,0x24,0x24,0x24,0x54,0x49,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x48,0xff,0x49,0x49,0x4d,0x4a,0x88,0x88,0x08 -+// 32968 胈 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x23,0x2a,0x44,0x40,0x48,0x44,0xff,0x40,0x40,0x7c,0x64,0xa4,0xa4,0xa4,0x94,0x88,0x14,0x23,0x42 -+// 32969 胉 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x10,0x10,0x20,0x7f,0x41,0x41,0x41,0x41,0x7f,0x41,0x41,0x41,0x41,0x7f,0x41,0x00 -+// 32970 胊 ; -+,0x00,0x1e,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x40,0x60,0x40,0xfe,0x82,0x02,0xf2,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x0a,0x04 -+// 32971 胋 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32972 背 ; -+,0x02,0x02,0x3e,0x02,0x0e,0x72,0x20,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x40,0x4c,0x70,0x42,0x42,0x3e,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x28,0x10 -+// 32973 胍 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x25,0x25,0x25,0x4a,0x00,0x1e,0xe8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa4,0xa4,0xa4,0xa2,0x2a,0x7b,0x2a,0x00 -+// 32974 胎 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x20,0x30,0x20,0x44,0x82,0xff,0x82,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 32975 胏 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x23,0x2a,0x44,0x10,0x10,0x16,0xf8,0x90,0x90,0x90,0xff,0x31,0x51,0x51,0x95,0x92,0x10,0x10,0x10 -+// 32976 胐 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0x92,0x92,0x92,0x92,0xfe,0x92,0x10,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 32977 胑 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x02,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00,0x44,0x62,0x42,0x81,0x01,0x00 -+// 32978 胒 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x55,0x49,0x02,0x00,0xfe,0x82,0x82,0xfe,0x80,0xa0,0xa0,0xa6,0xb8,0xa0,0xa0,0xa1,0x21,0x1f,0x00 -+// 32979 胓 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x22,0x2a,0x44,0x00,0xff,0x10,0x92,0x93,0x52,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32980 胔 ; -+,0x04,0x04,0x17,0x14,0x14,0x1f,0x70,0x0f,0x08,0x09,0x0a,0x0c,0x09,0x0a,0x0c,0x08,0x20,0x24,0xb8,0x21,0x21,0x1f,0x80,0xfc,0x84,0x44,0xb4,0x84,0x44,0x34,0x24,0x0c -+// 32981 胕 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x26,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x44,0x54,0x08,0x44,0x64,0x44,0x84,0x84,0xff,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x84,0x94,0x88 -+// 32982 胖 ; -+,0x00,0x1e,0x13,0x12,0x12,0x1e,0x13,0x12,0x1e,0x12,0x13,0x12,0x22,0x22,0x2a,0x44,0x20,0x20,0x24,0xa6,0xa8,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 32983 胗 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x20,0x20,0x50,0x48,0x8c,0x27,0x32,0x48,0x90,0x24,0x46,0x8c,0x10,0x20,0x40,0x80 -+// 32984 胘 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x20,0x10,0x10,0xff,0x20,0x30,0x24,0x46,0xfc,0x48,0x10,0x24,0x42,0xff,0x42,0x00 -+// 32985 胙 ; -+,0x00,0x1e,0x12,0x12,0x1f,0x12,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x44,0x00,0x40,0x40,0x80,0xff,0x20,0x20,0x3e,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x00 -+// 32986 胚 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x12,0x22,0x2b,0x44,0x00,0x00,0xff,0x08,0x10,0x10,0x20,0x64,0xa2,0x23,0x22,0x20,0x20,0x20,0xff,0x00,0x00 -+// 32987 胛 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10,0x10 -+// 32988 胜 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2b,0x44,0x00,0x10,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 32989 胝 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x55,0x48,0x00,0x04,0xfe,0x90,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0xa9,0xc5,0x95,0x93,0x00 -+// 32990 胞 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x4c,0x40,0x60,0x80,0xfe,0x02,0x02,0xf2,0x92,0x92,0xf2,0x82,0x8e,0x85,0x81,0x7f,0x00 -+// 32991 胟 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0xfc,0x84,0xa4,0x94,0x84,0xff,0xa4,0x94,0x94,0x84,0xff,0x04,0x1c,0x08,0x00 -+// 32992 胠 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x22,0x2b,0x44,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x20,0x20,0x44,0x42,0x9f,0xf2,0x80 -+// 32993 胡 ; -+,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x01,0x00,0x00,0x3e,0x22,0xa2,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x22,0x4a,0x84 -+// 32994 胢 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x22,0x2a,0x44,0x00,0xff,0x02,0x02,0xf2,0x92,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x02,0x0a,0x04 -+// 32995 胣 ; -+,0x00,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x40,0x40,0xff,0x80,0x10,0x90,0x96,0xfa,0x92,0x92,0x9a,0x94,0x91,0x81,0x7f,0x00 -+// 32996 胤 ; -+,0x11,0x12,0x17,0x10,0x11,0x17,0x10,0x17,0x14,0x17,0x14,0x17,0x24,0x24,0x44,0x00,0x08,0x48,0xc8,0x88,0x08,0xe8,0x08,0xe8,0x28,0xe8,0x28,0xe9,0x29,0xa9,0x47,0x00 -+// 32997 胥 ; -+,0x00,0x3f,0x00,0x08,0x08,0x14,0x23,0x40,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x00,0xff,0x82,0xfc,0x80,0x80,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 32998 胦 ; -+,0x00,0x3c,0x24,0x25,0x3d,0x25,0x25,0x25,0x3f,0x24,0x24,0x24,0x24,0x24,0x55,0x4a,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x20,0x50,0x48,0x8c,0x87,0x02,0x00 -+// 32999 胧 ; -+,0x00,0x1e,0x12,0x12,0x1f,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x40,0x50,0x4c,0x48,0xff,0x50,0x50,0x52,0x53,0x52,0x54,0x58,0xb1,0x91,0x8f,0x00 -+// 33000 胨 ; -+,0x00,0x1e,0x13,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x23,0x2a,0x44,0x00,0x20,0x20,0xff,0x20,0x40,0x50,0x90,0xff,0x90,0x10,0x94,0xd2,0x13,0x12,0x50,0x20 -+// 33001 胩 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x20,0x20,0x3e,0x20,0x20,0x20,0xff,0x20,0x30,0x28,0x26,0x22,0x20,0x20,0x20,0x20 -+// 33002 胪 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2e,0x45,0x02,0x10,0x10,0x1f,0x10,0x7f,0x41,0x41,0x41,0x7f,0x40,0x40,0x40,0x80,0x80,0x00,0x00 -+// 33003 胫 ; -+,0x00,0x3d,0x24,0x24,0x24,0x3c,0x24,0x25,0x3c,0x24,0x24,0x24,0x24,0x55,0x48,0x00,0x00,0xfe,0x04,0x08,0x10,0x2c,0x42,0x81,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33004 胬 ; -+,0x08,0x08,0x7f,0x11,0x0a,0x04,0x0a,0x30,0x1f,0x11,0x12,0x14,0x11,0x12,0x14,0x10,0x00,0x7e,0x44,0x28,0x10,0x28,0x47,0x82,0xfc,0x44,0xb4,0x84,0x64,0x24,0x14,0x08 -+// 33005 胭 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x54,0x48,0x00,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xaa,0xc6,0x82,0x82,0xfe,0x82,0x00 -+// 33006 胮 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x13,0x22,0x2a,0x44,0x00,0x40,0x7c,0x84,0x48,0x30,0x48,0x96,0x10,0xff,0x50,0x50,0xff,0x10,0x10,0x10,0x10 -+// 33007 胯 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x25,0x26,0x24,0x3d,0x24,0x24,0x24,0x24,0x54,0x48,0x00,0x20,0x20,0xff,0x50,0x8c,0xfb,0x02,0x00,0xff,0x40,0xfc,0x44,0x04,0x04,0x28,0x10 -+// 33008 胰 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x10,0x10,0xff,0x10,0xff,0x11,0xff,0x90,0x90,0xff,0x11,0x2b,0x28,0x44,0x87,0x02 -+// 33009 胱 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x20,0x20,0x24,0x26,0xa4,0x28,0xff,0x50,0x50,0x50,0x50,0x50,0x51,0x91,0x8f,0x00 -+// 33010 胲 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x13,0x22,0x2a,0x44,0x00,0x20,0x10,0xff,0x20,0x24,0x46,0xfc,0x48,0x12,0x24,0x48,0x9c,0x22,0x43,0x82,0x00 -+// 33011 胳 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x24,0x24,0x24,0x3c,0x25,0x26,0x24,0x24,0x24,0x54,0x48,0x40,0x40,0x7c,0xc4,0x44,0x28,0x10,0x28,0x47,0x82,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 33012 胴 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0xfe,0x82,0xfe,0x82,0x82,0xba,0xaa,0xaa,0xaa,0xba,0xaa,0x82,0x8a,0x84,0x00 -+// 33013 胵 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x25,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x55,0x48,0x00,0x00,0xfe,0x20,0x48,0x84,0xfe,0x84,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33014 胶 ; -+,0x00,0x1e,0x13,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x45,0x00,0x20,0x10,0xff,0x40,0x68,0x86,0x02,0x84,0x44,0x28,0x10,0x28,0x44,0x83,0x02,0x00 -+// 33015 胷 ; -+,0x08,0x0f,0x12,0x21,0x0a,0x0f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x04,0x04,0x04,0x00,0xfe,0x42,0x92,0x52,0xf2,0x06,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 33016 胸 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x24,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x24,0x54,0x48,0x80,0x80,0xff,0x81,0x11,0x99,0x55,0x25,0x55,0x8d,0x05,0xfd,0x05,0x01,0x0a,0x04 -+// 33017 胹 ; -+,0x00,0x3f,0x24,0x24,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4d,0x00,0xff,0x20,0x20,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x06 -+// 33018 胺 ; -+,0x00,0x3c,0x25,0x25,0x26,0x3c,0x24,0x25,0x3c,0x24,0x24,0x24,0x24,0x24,0x34,0x49,0x20,0x10,0xff,0x02,0x44,0x60,0x40,0xfe,0x44,0x84,0x48,0x30,0x28,0x46,0x83,0x02 -+// 33019 胻 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x24,0x24,0x54,0x48,0x80,0xdf,0x80,0x00,0x40,0x60,0x9f,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x94,0x88 -+// 33020 胼 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x24,0x24,0x35,0x4a,0x84,0x66,0x48,0x00,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 33021 能 ; -+,0x10,0x18,0x12,0x21,0x7f,0x21,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x25,0x22,0x20,0x20,0x26,0x38,0xa2,0x23,0x3e,0x00,0x20,0x26,0x38,0x20,0x22,0x23,0x1e,0x00 -+// 33022 胾 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x04,0x04,0x3f,0x24,0x2a,0x35,0x24,0x2a,0x31,0x20,0x21,0x28,0x26,0xa4,0x20,0xff,0x20,0x24,0x96,0x94,0x88,0x88,0x99,0x99,0xa5,0xc3,0x80 -+// 33023 胿 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x22,0x2b,0x44,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33024 脀 ; -+,0x0f,0x00,0x1e,0x02,0x05,0x18,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0xf0,0x26,0x48,0x50,0xcc,0x86,0xf8,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 33025 脁 ; -+,0x00,0x3c,0x24,0x24,0x3e,0x25,0x25,0x24,0x24,0x3d,0x26,0x24,0x24,0x25,0x26,0x4c,0x50,0x50,0x52,0x53,0x54,0xd8,0x50,0x58,0xd4,0x53,0x52,0x90,0x91,0x11,0x0f,0x00 -+// 33026 脂 ; -+,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x22,0x2a,0x44,0x00,0x40,0x44,0x4e,0x70,0x42,0x42,0x7e,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 33027 脃 ; -+,0x00,0x3e,0x22,0x22,0x3f,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x22,0x2a,0x44,0x40,0x40,0xfe,0x84,0x08,0xfe,0x92,0x92,0xfe,0x80,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 33028 脄 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x20,0x20,0x20,0xff,0x40,0x40,0x50,0x92,0x52,0x54,0xa8,0x28,0x44,0x46,0x83,0x02 -+// 33029 脅 ; -+,0x00,0x1f,0x01,0x0a,0x3f,0x09,0x11,0x25,0x42,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x80,0xf8,0x08,0x10,0x7e,0x12,0x12,0x2a,0x44,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x18 -+// 33030 脆 ; -+,0x3c,0x24,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x25,0x55,0x4a,0x40,0x40,0x7e,0x82,0x04,0xff,0x80,0xbe,0xa2,0xa2,0xaa,0xa4,0xa1,0x21,0x3f,0x00 -+// 33031 脇 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x25,0x24,0x3c,0x27,0x24,0x24,0x25,0x25,0x56,0x48,0x20,0x20,0xfe,0x22,0x42,0x8e,0x04,0x88,0x88,0xff,0xa9,0xa9,0x29,0x29,0xd5,0x22 -+// 33032 脈 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x55,0x4a,0x44,0x1e,0xf0,0x00,0x0e,0x78,0x50,0x52,0x53,0x54,0x48,0x48,0x44,0x56,0x63,0x42,0x00 -+// 33033 脉 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x25,0x24,0x3c,0x24,0x24,0x25,0x26,0x44,0x54,0x08,0x40,0x30,0x20,0xe4,0x26,0x24,0xa8,0xb0,0xa8,0xa4,0xa6,0x23,0x22,0x20,0xa0,0x40 -+// 33034 脊 ; -+,0x00,0x10,0x08,0x05,0x39,0x12,0x0c,0x37,0x04,0x07,0x04,0x07,0x04,0x04,0x04,0x04,0x80,0x84,0x98,0x4c,0x24,0x18,0x07,0xfa,0x08,0xf8,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 33035 脋 ; -+,0x0f,0x00,0x01,0x02,0x3f,0x08,0x0a,0x11,0x27,0x04,0x07,0x04,0x07,0x04,0x04,0x04,0xfc,0x84,0x14,0x08,0xbf,0x89,0x89,0x13,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x14,0x08 -+// 33036 脌 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x13,0x12,0x12,0x22,0x2a,0x44,0x40,0x40,0x7f,0x90,0x90,0x10,0xfe,0x90,0x90,0x90,0xff,0x10,0x10,0x10,0x10,0x10 -+// 33037 脍 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x25,0x26,0x24,0x3c,0x25,0x24,0x24,0x24,0x25,0x54,0x48,0x20,0x20,0x50,0x48,0x84,0x03,0xfc,0x00,0x00,0xfe,0x40,0x44,0x82,0xff,0x82,0x00 -+// 33038 脎 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x25,0x27,0x3c,0x24,0x24,0x25,0x26,0x24,0x54,0x48,0x04,0x86,0x48,0x30,0x48,0xa4,0x22,0xff,0x20,0xa8,0xa4,0x26,0x24,0x20,0xa0,0x40 -+// 33039 脏 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x22,0x2b,0x25,0x42,0x10,0x08,0xff,0x80,0x88,0x88,0x88,0xbe,0x88,0x88,0x88,0x88,0x88,0x7f,0x00,0x00 -+// 33040 脐 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x24,0x5c,0x49,0x20,0x10,0xff,0x84,0x48,0x30,0x48,0x87,0x4a,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 33041 脑 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x55,0x49,0x00,0x40,0x20,0x10,0xff,0x00,0x08,0x4a,0x32,0x32,0x32,0x4a,0x4a,0x82,0xfe,0x02,0x00 -+// 33042 脒 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x27,0x24,0x3c,0x24,0x25,0x25,0x26,0x24,0x54,0x48,0x20,0x22,0x23,0xa2,0xa4,0x20,0xff,0x70,0xa8,0xa8,0x24,0x23,0x22,0x20,0x20,0x20 -+// 33043 脓 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3e,0x24,0x24,0x3c,0x25,0x26,0x24,0x24,0x24,0x55,0x08,0x20,0x20,0x20,0xff,0x22,0x24,0x52,0x93,0x94,0x88,0x88,0x84,0x84,0xa3,0xc2,0x80 -+// 33044 脔 ; -+,0x00,0x00,0x3f,0x02,0x0a,0x12,0x22,0x42,0x1f,0x11,0x12,0x14,0x11,0x12,0x14,0x10,0x80,0x40,0xff,0x20,0x28,0x26,0x22,0xa0,0xfc,0x44,0xa4,0x84,0x44,0x34,0x24,0x0c -+// 33045 脕 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x54,0x09,0x40,0x7e,0x44,0x88,0xfe,0x92,0x92,0x92,0xfe,0xa8,0x28,0x28,0x49,0x49,0x87,0x00 -+// 33046 脖 ; -+,0x00,0x3c,0x25,0x24,0x3d,0x25,0x26,0x24,0x3c,0x24,0x25,0x24,0x24,0x24,0x54,0x48,0x10,0x10,0xff,0x10,0xff,0x02,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 33047 脗 ; -+,0x3e,0x22,0x22,0x23,0x3e,0x22,0x23,0x22,0x3e,0x23,0x22,0x22,0x22,0x2a,0x44,0x00,0x80,0x80,0xfe,0x2a,0x4a,0x92,0x22,0x4a,0x84,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 33048 脘 ; -+,0x00,0x3c,0x25,0x25,0x3e,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x24,0x54,0x48,0x01,0x20,0x10,0xff,0x02,0x00,0xfc,0x00,0x00,0xfe,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 33049 脙 ; -+,0x00,0x3e,0x22,0x23,0x3e,0x23,0x22,0x22,0x3e,0x22,0x22,0x23,0x22,0x4a,0x44,0x00,0x10,0x14,0x12,0xff,0x10,0x12,0x93,0x54,0x38,0x58,0x94,0x13,0x12,0x50,0x20,0x00 -+// 33050 脚 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x27,0x24,0x3c,0x25,0x25,0x27,0x24,0x24,0x54,0x48,0x80,0x8f,0x89,0xe9,0x89,0x89,0xe9,0x89,0x89,0x09,0x29,0xfb,0x28,0x08,0x08,0x08 -+// 33051 脛 ; -+,0x00,0x3f,0x24,0x24,0x3c,0x25,0x24,0x24,0x3c,0x25,0x24,0x24,0x24,0x54,0x49,0x00,0x00,0xff,0xa4,0xb6,0xa4,0x48,0xa4,0x56,0x54,0xff,0x10,0x10,0x10,0x10,0xff,0x00 -+// 33052 脜 ; -+,0x00,0x1f,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2e,0x44,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 33053 脝 ; -+,0x00,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xfe,0x04,0x08,0x08,0x08,0x48,0x28,0x10 -+// 33054 脞 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x13,0x13,0x1e,0x12,0x12,0x12,0x22,0x2b,0x44,0x00,0x10,0x10,0x94,0x94,0x94,0x94,0x5a,0x59,0x10,0xff,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33055 脟 ; -+,0x00,0x3e,0x22,0x23,0x3e,0x22,0x22,0x22,0x3f,0x22,0x22,0x22,0x22,0x22,0x2a,0x44,0x06,0xf8,0x02,0x23,0xd4,0x90,0x04,0x04,0xff,0x44,0x24,0x24,0x04,0x04,0x14,0x08 -+// 33056 脠 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x25,0x26,0x27,0x3c,0x24,0x26,0x26,0x25,0x25,0x26,0x4c,0x00,0x07,0xb8,0x88,0x08,0x28,0x2e,0xa8,0xa8,0xa8,0xa8,0xbf,0x80,0x40,0x3f,0x00 -+// 33057 脡 ; -+,0x00,0x3f,0x24,0x24,0x3d,0x25,0x27,0x24,0x3c,0x24,0x26,0x25,0x24,0x55,0x49,0x02,0x00,0x8e,0xb8,0x88,0x08,0x3f,0xc8,0x48,0x48,0x48,0x7e,0x40,0x80,0x40,0x3f,0x00 -+// 33058 脢 ; -+,0x00,0x3c,0x24,0x25,0x3e,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x24,0x54,0x48,0x80,0x80,0xff,0x00,0xfc,0xa4,0x94,0x84,0xff,0xa4,0x94,0x84,0xff,0x04,0x14,0x08 -+// 33059 脣 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x14,0x14,0x16,0x14,0x1f,0x28,0x2f,0x28,0x2f,0x48,0x08,0xfe,0x00,0xf8,0x00,0xfe,0x48,0x30,0x18,0x07,0xfa,0x08,0xf8,0x08,0xf8,0x08,0x18 -+// 33060 脤 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4a,0x00,0xfe,0x00,0x00,0x7e,0x00,0x00,0xff,0x52,0x54,0x48,0x48,0x44,0x53,0x62,0x40 -+// 33061 脥 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1f,0x12,0x12,0x22,0x22,0x2a,0x44,0x01,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x92,0x55,0x19,0x10,0x28,0x24,0x42,0x83,0x02 -+// 33062 脦 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3c,0x24,0x24,0x3c,0x24,0x26,0x26,0x24,0x54,0x48,0x00,0x08,0x0c,0x0a,0x08,0xff,0x08,0x48,0x28,0xa8,0x88,0x95,0x95,0x8b,0x7b,0x01,0x00 -+// 33063 脧 ; -+,0x00,0x1e,0x12,0x12,0x13,0x1a,0x16,0x13,0x16,0x1a,0x13,0x12,0x12,0x22,0x2a,0x45,0x20,0x28,0x44,0xfe,0x49,0x64,0x86,0x44,0x7e,0x84,0x44,0x48,0x30,0x48,0x87,0x02 -+// 33064 脨 ; -+,0x00,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x23,0x2a,0x44,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x38,0x34,0x52,0x93,0x12,0x10,0x10 -+// 33065 脩 ; -+,0x04,0x06,0x0c,0x08,0x12,0x33,0x52,0x13,0x12,0x12,0x12,0x12,0x10,0x10,0x10,0x10,0x40,0x40,0x7e,0x44,0xa8,0x18,0x64,0x83,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 33066 脪 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x27,0x24,0x24,0x3c,0x25,0x26,0x24,0x24,0x24,0x54,0x48,0x84,0x48,0x30,0x4e,0xa4,0xff,0x20,0x50,0xfe,0x92,0x92,0x92,0x9e,0x94,0x10,0x10 -+// 33067 脫 ; -+,0x00,0x3c,0x24,0x25,0x3e,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x5d,0x4a,0x88,0xc8,0x84,0x03,0xfe,0x84,0x84,0xfc,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 33068 脬 ; -+,0x00,0x3d,0x25,0x24,0x3c,0x25,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x24,0x24,0x4c,0x0e,0xf0,0x22,0xda,0x94,0xfe,0x04,0x28,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 33069 脭 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x22,0x2a,0x45,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 33070 脮 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x12,0x22,0x2e,0x44,0x00,0x1f,0xf2,0x23,0x92,0x54,0x20,0xff,0x24,0x44,0xc4,0x28,0x18,0x24,0x43,0x82 -+// 33071 脯 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x9a,0x94 -+// 33072 脰 ; -+,0x00,0x1f,0x12,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x45,0x00,0x00,0xfe,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0x08,0x8c,0x68,0x50,0xff,0x00 -+// 33073 脱 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x44,0x01,0x84,0x66,0x48,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 33074 脲 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x5d,0x4a,0x04,0x00,0xfe,0x02,0x02,0xfe,0x10,0x12,0xd4,0x58,0x58,0x54,0x53,0x92,0x10,0x50,0x20 -+// 33075 脳 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x55,0x48,0x00,0x02,0x23,0x92,0x54,0x54,0x02,0x86,0x4a,0x32,0x4a,0x86,0x02,0xfe,0x02,0x00,0x00 -+// 33076 脴 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0xff,0x08,0x10,0x3c,0x52,0x91,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 33077 脵 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x25,0x25,0x25,0x3c,0x24,0x27,0x24,0x24,0x24,0x55,0x4a,0x00,0xfc,0x84,0x84,0xfc,0x00,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 33078 脶 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x22,0x22,0x2a,0x44,0x00,0x00,0x7c,0x44,0x44,0x7c,0x54,0x10,0xfe,0x92,0x92,0xaa,0xc6,0x82,0x82,0x8a,0x84 -+// 33079 脷 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x27,0x24,0x3c,0x24,0x25,0x26,0x24,0x24,0x24,0x24,0x4c,0x01,0xf1,0x41,0x49,0x49,0xf9,0x49,0xe9,0xd9,0x49,0x49,0x49,0x41,0x41,0x45,0x42 -+// 33080 脸 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x13,0x12,0x12,0x12,0x22,0x2b,0x44,0x10,0x10,0x28,0x44,0x83,0x02,0xfc,0x02,0x43,0x22,0xb4,0xa4,0x88,0x00,0xff,0x00 -+// 33081 脹 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x7e,0x40,0x7e,0x40,0x7e,0x40,0xff,0xa4,0xa6,0xa8,0x90,0x88,0xa7,0xc2,0x80 -+// 33082 脺 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x24,0x25,0x3e,0x24,0x25,0x24,0x24,0x24,0x34,0x48,0x20,0x10,0xff,0x44,0x44,0x44,0xaa,0x11,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 33083 脻 ; -+,0x3c,0x24,0x25,0x24,0x3c,0x24,0x25,0x24,0x3c,0x24,0x25,0x25,0x25,0x25,0x35,0x4a,0x20,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x20,0x3e,0x20,0x20,0xa0,0x7f -+// 33084 脼 ; -+,0x00,0x3f,0x24,0x24,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4d,0x00,0xff,0x10,0x10,0xff,0x11,0x99,0x55,0x55,0xbb,0xbb,0x11,0x11,0x11,0x15,0x12 -+// 33085 脽 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x40,0x50,0x48,0xff,0x90,0x90,0xfe,0x90,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80 -+// 33086 脾 ; -+,0x00,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x13,0x12,0x22,0x2a,0x44,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x30,0x50,0xff,0x10,0x10,0x10,0x10 -+// 33087 脿 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x24,0x24,0x27,0x3c,0x24,0x25,0x26,0x24,0x24,0x55,0x48,0x20,0x20,0xfe,0x20,0xfc,0x20,0x20,0xff,0x40,0xa2,0x94,0x88,0x8c,0xa7,0xc2,0x80 -+// 33088 腀 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x27,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x54,0x48,0x00,0x10,0x10,0x28,0x44,0x83,0x7a,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 33089 腁 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x24,0x25,0x25,0x4a,0x42,0x42,0x84,0xef,0x84,0x84,0x84,0x84,0xef,0x84,0x84,0x84,0x84,0x04,0x04,0x04 -+// 33090 腂 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x24,0x24,0x55,0x48,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x30,0x38,0x56,0x53,0x92,0x10,0x10 -+// 33091 腃 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x25,0x24,0x24,0x3c,0x25,0x26,0x24,0x24,0x24,0x54,0x48,0x20,0x24,0xa8,0xfe,0x20,0xff,0x50,0x4c,0x87,0x7a,0x48,0x68,0x52,0x42,0x3e,0x00 -+// 33092 腄 ; -+,0x00,0x3c,0x25,0x24,0x3f,0x24,0x24,0x27,0x3c,0x24,0x27,0x24,0x24,0x24,0x25,0x4c,0x00,0x1e,0xf0,0x10,0xff,0x92,0x92,0xff,0x92,0x92,0xff,0x10,0x10,0x10,0xff,0x00 -+// 33093 腅 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x1e,0x12,0x13,0x22,0x22,0x2a,0x44,0x01,0x20,0x24,0xa6,0xa8,0x30,0x48,0x86,0x22,0x24,0xa6,0x28,0x20,0x50,0x48,0x87,0x02 -+// 33094 腆 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x27,0x24,0x24,0x24,0x24,0x55,0x4a,0x50,0x50,0xfc,0x54,0x54,0x54,0xfc,0x54,0x54,0xff,0x00,0x90,0xc8,0x84,0x04,0x00 -+// 33095 腇 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x25,0x26,0x3c,0x25,0x24,0x24,0x24,0x24,0x54,0x4b,0x00,0xfc,0x20,0xfe,0x70,0xa8,0x27,0x22,0x40,0xff,0x84,0xe8,0x18,0x26,0xc2,0x00 -+// 33096 腈 ; -+,0x00,0x1f,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x8a,0x84 -+// 33097 腉 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2a,0x44,0x01,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 33098 腊 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x25,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x54,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 33099 腋 ; -+,0x00,0x3c,0x27,0x24,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x24,0x24,0x54,0x48,0x20,0x10,0xff,0x50,0x50,0x9f,0x92,0xba,0xd6,0x92,0x92,0x8c,0x92,0x92,0xa1,0xa1 -+// 33100 腌 ; -+,0x00,0x3c,0x27,0x24,0x3c,0x24,0x27,0x25,0x3d,0x25,0x25,0x25,0x24,0x24,0x54,0x48,0x20,0x20,0xff,0x48,0x44,0xa3,0xfe,0x24,0xfc,0x24,0x24,0xfc,0x21,0x21,0x1f,0x00 -+// 33101 腍 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3e,0x24,0x24,0x3c,0x24,0x24,0x25,0x25,0x26,0x54,0x48,0x20,0x20,0x50,0x8c,0x27,0x12,0xfc,0x04,0x08,0x10,0x22,0x59,0x49,0x42,0x3e,0x00 -+// 33102 腎 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x20,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x7c,0x44,0x44,0x28,0x10,0x28,0x47,0x82,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 33103 腏 ; -+,0x00,0x3f,0x26,0x25,0x3c,0x25,0x26,0x24,0x3f,0x26,0x25,0x24,0x25,0x26,0x54,0x48,0x00,0xfe,0x52,0x4a,0x84,0x4a,0x32,0x20,0xde,0x52,0x52,0x8c,0x4c,0x52,0x63,0x42 -+// 33104 腐 ; -+,0x00,0x00,0x1f,0x12,0x13,0x16,0x1a,0x12,0x12,0x17,0x14,0x15,0x14,0x24,0x25,0x44,0x80,0x40,0xff,0x08,0xff,0x48,0x48,0x28,0x50,0xfe,0xa2,0x52,0x42,0xa2,0x1a,0x04 -+// 33105 腑 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x55,0x4a,0x20,0x10,0xff,0x22,0x32,0x22,0x7f,0xa2,0x32,0x2a,0x2a,0x22,0x22,0x22,0x2a,0x24 -+// 33106 腒 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x25,0x25,0x55,0x4a,0x00,0xfe,0x82,0x82,0xfe,0x88,0x88,0xff,0x88,0x88,0xbe,0xa2,0x22,0x3e,0x22,0x00 -+// 33107 腓 ; -+,0x00,0x3c,0x24,0x27,0x3c,0x24,0x25,0x24,0x3c,0x24,0x27,0x24,0x24,0x24,0x5c,0x48,0x48,0x48,0x48,0xcf,0x48,0x48,0xcf,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 33108 腔 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x22,0x2b,0x44,0x20,0x10,0xff,0x02,0x48,0x64,0x43,0x82,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 33109 腕 ; -+,0x00,0x3c,0x25,0x25,0x3e,0x24,0x24,0x24,0x3d,0x26,0x24,0x24,0x24,0x24,0x35,0x4a,0x20,0x10,0xff,0x02,0x04,0x80,0xee,0xaa,0x2a,0xaa,0x4e,0x48,0x89,0x89,0x0f,0x00 -+// 33110 腖 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x25,0x25,0x25,0x3d,0x24,0x24,0x24,0x25,0x26,0x54,0x48,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x70,0x68,0xa4,0x23,0x22,0x20,0x20 -+// 33111 腗 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x25,0x24,0x24,0x24,0x24,0x54,0x49,0x10,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x44,0x44,0x44,0x84,0x84,0x04 -+// 33112 腘 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x22,0x2e,0x44,0x00,0x00,0xff,0x81,0xff,0x91,0x91,0xff,0x91,0x99,0x95,0x95,0xff,0x81,0xff,0x81,0x00 -+// 33113 腙 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x23,0x2a,0x44,0x20,0x10,0xff,0x01,0x00,0x7e,0x00,0x00,0xff,0x10,0x54,0x52,0x93,0x12,0x50,0x20 -+// 33114 腚 ; -+,0x00,0x3c,0x25,0x25,0x3e,0x25,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x25,0x56,0x48,0x20,0x10,0xff,0x02,0x00,0xfe,0x10,0x90,0x90,0x9e,0x90,0x90,0x90,0x50,0x3f,0x00 -+// 33115 腛 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x35,0x4a,0x00,0xfe,0x02,0xfe,0x00,0xfe,0x20,0x42,0xff,0x12,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 33116 腜 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x24,0x24,0x24,0x5d,0x48,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x10,0xff,0x30,0x38,0x54,0x53,0x92,0x10,0x10 -+// 33117 腝 ; -+,0x00,0x3d,0x24,0x25,0x3d,0x25,0x25,0x25,0x3c,0x27,0x24,0x24,0x24,0x24,0x55,0x4a,0x00,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0x46,0x20,0xff,0x20,0x50,0x48,0x84,0x03,0x02 -+// 33118 腞 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x3f,0x24,0x24,0x27,0x24,0x27,0x24,0x4c,0x40,0x7c,0x44,0xfc,0x04,0xff,0x40,0xc4,0x28,0x50,0xb8,0x54,0x93,0x12,0x50,0x20 -+// 33119 腟 ; -+,0x00,0x1e,0x12,0x12,0x1f,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2b,0x44,0x20,0x10,0xff,0x82,0x04,0xff,0x28,0x44,0xfe,0x14,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 33120 腠 ; -+,0x3c,0x24,0x27,0x24,0x3d,0x24,0x27,0x3c,0x25,0x26,0x25,0x24,0x24,0x24,0x55,0x4a,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x84,0x7b,0x22,0xfc,0x20,0x50,0x8c,0x06,0x04 -+// 33121 腡 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x4d,0x00,0xfc,0x84,0xf4,0x94,0x94,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 33122 腢 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4d,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x1f,0xe5,0x01,0x05,0x02 -+// 33123 腣 ; -+,0x00,0x1e,0x13,0x12,0x1e,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x20,0x10,0xff,0x44,0x28,0xff,0x12,0x10,0xfe,0x92,0x92,0x92,0x9e,0x94,0x10,0x10 -+// 33124 腤 ; -+,0x00,0x1e,0x13,0x12,0x12,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x20,0x10,0xff,0x84,0x66,0x48,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 33125 腥 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x24,0x24,0x24,0x25,0x4c,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x90,0xfe,0x90,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 33126 腦 ; -+,0x3c,0x24,0x25,0x26,0x3d,0x24,0x24,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x48,0x92,0x92,0x24,0x48,0x24,0x92,0x40,0xfe,0x86,0x4a,0x32,0x4a,0x86,0xfe,0x02,0x00 -+// 33127 腧 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x26,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4d,0x20,0x20,0x50,0x8c,0xfb,0x02,0xea,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0x2a,0x24 -+// 33128 腨 ; -+,0x00,0x1e,0x12,0x12,0x12,0x1e,0x13,0x12,0x1e,0x12,0x12,0x12,0x22,0x22,0x4a,0x04,0x10,0x10,0x92,0x92,0xfe,0x00,0xff,0x10,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0x86,0x00 -+// 33129 腩 ; -+,0x00,0x3c,0x27,0x24,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4d,0x20,0x20,0xff,0x20,0xfe,0x8a,0x52,0x22,0xfa,0x22,0xfe,0x22,0x22,0x22,0x2a,0x04 -+// 33130 腪 ; -+,0x00,0x3d,0x25,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x25,0x24,0x24,0x54,0x48,0x00,0xff,0x11,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 33131 腫 ; -+,0x3c,0x25,0x24,0x25,0x3c,0x25,0x25,0x25,0x3d,0x25,0x24,0x25,0x24,0x24,0x5f,0x48,0x0e,0xf0,0x20,0xfe,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 33132 腬 ; -+,0x3c,0x24,0x24,0x24,0x3d,0x24,0x24,0x25,0x3c,0x25,0x24,0x24,0x24,0x24,0x5d,0x48,0xfe,0x04,0x28,0x10,0xff,0x52,0x90,0x30,0x10,0xff,0x38,0x54,0x52,0x93,0x12,0x10 -+// 33133 腭 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0xee,0xaa,0xaa,0xee,0x00,0xfe,0x00,0xff,0x40,0xfc,0x44,0x04,0x04,0x14,0x08 -+// 33134 腮 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3c,0x24,0x25,0x25,0x25,0x26,0x54,0x48,0x00,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x00,0x54,0x4a,0x49,0x41,0x44,0x3c,0x00 -+// 33135 腯 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x5d,0x4a,0x0e,0xf0,0x10,0x10,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 33136 腰 ; -+,0x00,0x3d,0x24,0x25,0x3d,0x25,0x25,0x24,0x3d,0x24,0x24,0x24,0x24,0x24,0x54,0x49,0x00,0xff,0x28,0xff,0x29,0x29,0xff,0x40,0xff,0x44,0x84,0xe8,0x10,0x28,0x46,0x82 -+// 33137 腱 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x25,0x25,0x3c,0x24,0x26,0x25,0x25,0x25,0x26,0x54,0x48,0x10,0x10,0xbe,0x92,0x7f,0x12,0xfe,0x90,0xfe,0x90,0x7f,0x10,0x10,0x90,0x7f,0x00 -+// 33138 腲 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x24,0x27,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x49,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xfe,0x24,0x26,0x14,0x18,0x0c,0x47,0x82,0x00 -+// 33139 腳 ; -+,0x00,0x3c,0x25,0x26,0x3c,0x24,0x25,0x26,0x3c,0x25,0x25,0x25,0x25,0x25,0x54,0x48,0xa0,0xaf,0x19,0x49,0x49,0xa9,0x19,0x19,0x09,0xed,0x2a,0x28,0x28,0xe8,0x08,0x08 -+// 33140 腴 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x24,0x24,0x24,0x24,0x34,0x49,0x10,0x50,0x97,0x11,0x11,0xd7,0x11,0x11,0xff,0x10,0x10,0x28,0x24,0x46,0x83,0x02 -+// 33141 腵 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x35,0x49,0x00,0xee,0x22,0x22,0xe2,0x2e,0x00,0xfe,0x12,0x12,0xec,0x0c,0x0c,0x12,0x23,0x42 -+// 33142 腶 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x27,0x25,0x55,0x49,0x60,0x9e,0x12,0x12,0xd2,0x13,0x20,0x1e,0xe2,0x12,0x14,0x68,0x88,0x14,0x23,0x42 -+// 33143 腷 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x24,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4c,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x00 -+// 33144 腸 ; -+,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x24,0x3c,0x25,0x26,0x24,0x25,0x24,0x54,0x49,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x2a,0x4a,0x92,0x22,0x42,0x94,0x08 -+// 33145 腹 ; -+,0x00,0x1e,0x12,0x13,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x13,0x22,0x2a,0x45,0x80,0xff,0x80,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7e,0x44,0xa8,0x10,0x28,0x47,0x82 -+// 33146 腺 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1f,0x12,0x12,0x12,0x12,0x23,0x2a,0x44,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x12,0xd3,0x54,0x58,0x94,0x93,0x12,0x50,0x20 -+// 33147 腻 ; -+,0x00,0x3c,0x24,0x27,0x3c,0x25,0x24,0x25,0x3d,0x25,0x25,0x25,0x24,0x24,0x35,0x4a,0x08,0x0a,0x0a,0xff,0x08,0xe8,0x08,0xf4,0x14,0x54,0x54,0x54,0x45,0xa5,0x12,0x10 -+// 33148 腼 ; -+,0x00,0x3d,0x24,0x24,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x48,0x00,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x7a,0x4a,0x7a,0x4a,0x4a,0x4a,0xfe,0x02,0x00 -+// 33149 腽 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x12,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x23,0x2a,0x44,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 33150 腾 ; -+,0x02,0x3d,0x25,0x27,0x3c,0x27,0x24,0x25,0x3e,0x24,0x24,0x24,0x25,0x24,0x54,0x48,0x24,0xa6,0x28,0xfe,0x40,0xff,0x88,0xf6,0x93,0x92,0xfc,0x04,0xf4,0x04,0x14,0x08 -+// 33151 腿 ; -+,0x00,0x3e,0x25,0x25,0x3c,0x24,0x27,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x56,0x48,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x51,0x4a,0x4c,0x54,0xe6,0x44,0x00,0xff,0x00 -+// 33152 膀 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x25,0x25,0x24,0x3d,0x24,0x24,0x24,0x24,0x24,0x54,0x49,0x20,0x10,0xff,0x44,0x28,0xff,0x22,0x10,0xfe,0x40,0x7c,0x44,0x44,0x84,0x94,0x08 -+// 33153 膁 ; -+,0x01,0x3c,0x27,0x24,0x3d,0x24,0x27,0x24,0x3d,0x24,0x24,0x25,0x26,0x24,0x54,0x48,0x04,0x88,0xfe,0x50,0xfc,0x54,0xff,0x54,0xfc,0x50,0xd8,0x54,0x53,0x52,0x50,0x50 -+// 33154 膂 ; -+,0x08,0x7e,0x10,0x1f,0x12,0x12,0x2a,0x44,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x40,0x7f,0x80,0x18,0xe2,0x94,0xe8,0x83,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 33155 膃 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x24,0x24,0x3c,0x25,0x25,0x25,0x25,0x25,0x55,0x4b,0x00,0x00,0xfe,0x92,0x92,0xaa,0xc6,0xfe,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 33156 膄 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x4d,0x50,0x97,0x11,0x11,0xd7,0x11,0x11,0xff,0x10,0xff,0x42,0x24,0x18,0x24,0x43,0x82 -+// 33157 膅 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x5d,0x4a,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x42,0x42,0x42,0x7e,0x00 -+// 33158 膆 ; -+,0x00,0x3f,0x24,0x25,0x3c,0x27,0x24,0x24,0x3d,0x24,0x24,0x25,0x25,0x26,0x54,0x48,0x20,0xfe,0x20,0xfe,0x20,0xff,0x40,0x88,0xf0,0x44,0xfe,0x24,0xa8,0x26,0xa4,0x40 -+// 33159 膇 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x27,0x24,0x3c,0x24,0x24,0x24,0x24,0x25,0x56,0x48,0x10,0x10,0x3c,0xa4,0xa4,0x3c,0xa0,0xa0,0xbe,0xa2,0xa2,0xbe,0xa0,0x40,0x3f,0x00 -+// 33160 膈 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x35,0x49,0x00,0xfe,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x8a,0x52,0xfa,0x22,0x22,0x22,0x26 -+// 33161 膉 ; -+,0x01,0x3c,0x24,0x25,0x3c,0x24,0x24,0x25,0x3c,0x24,0x24,0x24,0x24,0x24,0x57,0x48,0x04,0x86,0x48,0xff,0x48,0x64,0xc3,0x02,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 33162 膊 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x24,0x24,0x54,0x48,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x08,0xff,0x88,0x88,0x28,0x10 -+// 33163 膋 ; -+,0x04,0x15,0x15,0x24,0x0a,0x11,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x10,0x52,0x54,0x10,0x28,0x44,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 33164 膌 ; -+,0x00,0x1e,0x12,0x12,0x1f,0x12,0x13,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x24,0xa6,0x68,0xa4,0x52,0x88,0x06,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 33165 膍 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x25,0x3c,0x24,0x24,0x24,0x24,0x24,0x55,0x48,0x20,0x40,0xfe,0x4a,0x32,0x4a,0xfe,0x02,0x90,0x92,0xfc,0x90,0x91,0x91,0xcf,0x80 -+// 33166 膎 ; -+,0x00,0x3d,0x25,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x24,0x24,0x24,0x54,0x49,0x0e,0xf4,0x26,0x94,0xa0,0x48,0xf8,0x24,0xfe,0x12,0xff,0x10,0x28,0x44,0x83,0x02 -+// 33167 膏 ; -+,0x00,0x7f,0x08,0x0f,0x00,0x3f,0x28,0x2f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x80,0xff,0x08,0xf8,0x00,0xfe,0x0a,0xfa,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x18 -+// 33168 膐 ; -+,0x10,0x08,0x7e,0x10,0x1e,0x12,0x2a,0x24,0x5f,0x11,0x12,0x14,0x11,0x12,0x14,0x10,0x40,0x7f,0x80,0x3e,0x2a,0x2c,0xb7,0xa2,0xfc,0x44,0xb4,0xa4,0x44,0x34,0x24,0x0c -+// 33169 膑 ; -+,0x00,0x3c,0x25,0x25,0x24,0x3c,0x24,0x24,0x3c,0x24,0x25,0x24,0x24,0x24,0x54,0x49,0x20,0x10,0xff,0x01,0x0c,0xf0,0x80,0xfe,0x88,0x88,0xff,0x00,0x48,0x64,0x86,0x04 -+// 33170 膒 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x48,0x00,0xff,0x00,0x3e,0x22,0x3e,0x00,0x77,0x55,0x55,0x55,0x77,0x00,0x00,0xff,0x00 -+// 33171 膓 ; -+,0x00,0x3c,0x25,0x26,0x3c,0x24,0x24,0x24,0x3c,0x24,0x25,0x26,0x24,0x25,0x54,0x48,0x80,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x2a,0x4a,0x92,0x22,0x4a,0x84 -+// 33172 膔 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x4a,0x20,0x10,0xfe,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x4a,0x6c,0x48,0x49,0x49,0x67,0x40 -+// 33173 膕 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x48,0x00,0xff,0x15,0x15,0xff,0x11,0xf3,0xab,0xed,0x09,0xe9,0x15,0x25,0x03,0xff,0x00 -+// 33174 膖 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3c,0x27,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x55,0x4a,0x20,0x3f,0x22,0x5c,0x22,0x49,0xbe,0x88,0xbe,0x88,0x88,0xff,0x88,0x88,0x7f,0x00 -+// 33175 膗 ; -+,0x00,0x3d,0x25,0x25,0x3c,0x24,0x25,0x27,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x49,0x10,0x11,0x11,0xff,0xa0,0x90,0xfe,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 33176 膘 ; -+,0x00,0x3d,0x24,0x25,0x3d,0x25,0x24,0x24,0x3c,0x25,0x24,0x24,0x24,0x25,0x56,0x48,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x10,0x94,0xd2,0x13,0x52,0x20 -+// 33177 膙 ; -+,0x00,0x3d,0x24,0x24,0x3d,0x25,0x25,0x25,0x3d,0x24,0x24,0x24,0x24,0x24,0x55,0x48,0x00,0xde,0x52,0x52,0xde,0x08,0x3e,0x2a,0xea,0x6a,0x7e,0x48,0x4a,0x4f,0x79,0x80 -+// 33178 膚 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x27,0x24,0x44,0x80,0xfc,0x80,0xff,0x82,0xf8,0x82,0xfc,0x44,0xfc,0x44,0xfc,0x04,0xfc,0x04,0x0c -+// 33179 膛 ; -+,0x00,0x3c,0x24,0x25,0x3d,0x26,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x55,0x48,0x10,0x92,0x54,0xff,0x02,0xfc,0x84,0x84,0xfc,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 33180 膜 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x25,0x25,0x25,0x3d,0x24,0x27,0x24,0x24,0x24,0x55,0x4a,0x88,0x88,0xfe,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 33181 膝 ; -+,0x3c,0x24,0x25,0x24,0x3c,0x25,0x26,0x24,0x3c,0x27,0x24,0x24,0x24,0x25,0x56,0x48,0x20,0x20,0xff,0x68,0xa6,0x22,0x20,0x50,0xac,0x23,0xaa,0x70,0xa8,0x26,0x22,0x60 -+// 33182 膞 ; -+,0x00,0x3d,0x24,0x25,0x25,0x3d,0x25,0x25,0x3c,0x27,0x24,0x25,0x24,0x24,0x54,0x48,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xfe,0x0a,0xff,0x88,0x88,0x28,0x10 -+// 33183 膟 ; -+,0x00,0x3c,0x25,0x26,0x25,0x3c,0x25,0x26,0x24,0x3c,0x24,0x25,0x24,0x24,0x54,0x48,0x20,0x10,0xff,0x22,0x4a,0xf4,0x2a,0x45,0xfe,0x14,0x10,0xff,0x10,0x10,0x10,0x10 -+// 33184 膠 ; -+,0x3d,0x24,0x25,0x24,0x3d,0x24,0x24,0x3c,0x27,0x24,0x25,0x24,0x25,0x24,0x54,0x49,0xde,0x52,0x4a,0xca,0x52,0x22,0x50,0x8c,0x23,0x48,0x90,0x64,0x86,0x18,0x60,0x80 -+// 33185 膡 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x27,0x24,0x24,0x3d,0x26,0x24,0x24,0x24,0x24,0x24,0x4c,0x24,0x26,0xa8,0xfe,0x20,0xff,0x48,0x84,0xff,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 33186 膢 ; -+,0x00,0x3c,0x24,0x27,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x27,0x24,0x24,0x54,0x4b,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x40,0xff,0x84,0xc8,0x30,0xcf -+// 33187 膣 ; -+,0x00,0x3c,0x25,0x25,0x3e,0x24,0x25,0x24,0x3c,0x24,0x24,0x25,0x24,0x24,0x27,0x4c,0x20,0x10,0xff,0x49,0x64,0x82,0xfe,0x44,0xfe,0x22,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 33188 膤 ; -+,0x00,0x3d,0x24,0x25,0x3d,0x24,0x24,0x24,0x3c,0x25,0x24,0x24,0x24,0x24,0x55,0x48,0x00,0xff,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 33189 膥 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x1c,0x2a,0x49,0x1f,0x10,0x11,0x16,0x10,0x11,0x16,0x10,0x08,0x08,0xff,0x88,0xea,0xa4,0xad,0x52,0xfc,0x84,0x44,0xb4,0x84,0x44,0x34,0x0c -+// 33190 膦 ; -+,0x01,0x3c,0x25,0x24,0x3c,0x25,0x26,0x25,0x3d,0x26,0x25,0x25,0x24,0x24,0x35,0x4a,0x24,0xa8,0xfe,0x70,0xa8,0x27,0x22,0x24,0xdf,0x54,0x54,0x7f,0x84,0x84,0x04,0x04 -+// 33191 膧 ; -+,0x00,0x3c,0x25,0x24,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x25,0x24,0x57,0x48,0x20,0x10,0xff,0x44,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 33192 膨 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x24,0x25,0x3d,0x25,0x24,0x25,0x24,0x24,0x27,0x54,0x48,0x40,0x42,0xfb,0x44,0xf8,0x02,0xf3,0x14,0xf8,0x02,0x13,0xa2,0x74,0x88,0x10,0x20 -+// 33193 膩 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x24,0x25,0x3c,0x25,0x25,0x25,0x25,0x25,0x24,0x55,0x4a,0x0a,0x0a,0xff,0x08,0xe8,0x08,0xe8,0x04,0xf4,0x14,0xf4,0x14,0xf4,0xa5,0x15,0x12 -+// 33194 膪 ; -+,0x00,0x3f,0x24,0x24,0x3d,0x26,0x25,0x25,0x3d,0x25,0x24,0x25,0x25,0x25,0x55,0x48,0x20,0xfe,0x84,0x48,0xff,0x22,0xfc,0x24,0x24,0x2c,0x20,0xfc,0x04,0x04,0xfc,0x00 -+// 33195 膫 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x25,0x26,0x3c,0x24,0x24,0x24,0x24,0x24,0x55,0x48,0x10,0x10,0xff,0xa9,0x46,0x82,0xfd,0x84,0xfc,0x84,0xfc,0x10,0x94,0x93,0x52,0x20 -+// 33196 膬 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x25,0x24,0x27,0x3c,0x27,0x24,0x27,0x24,0x24,0x35,0x48,0x0e,0xf0,0x20,0xfc,0x20,0xfc,0x21,0xdf,0x88,0xfe,0x88,0xfe,0x88,0xa9,0xc7,0x80 -+// 33197 膭 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x13,0x12,0x12,0x1e,0x12,0x12,0x12,0x12,0x22,0x2a,0x45,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0xf2,0x8e,0x82,0xfe,0x48,0x86,0x04 -+// 33198 膮 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x27,0x24,0x24,0x3f,0x24,0x25,0x24,0x24,0x24,0x54,0x49,0x20,0xfc,0x20,0xfe,0x88,0xde,0x88,0x88,0xff,0x00,0xfe,0x48,0x49,0x89,0x87,0x00 -+// 33199 膯 ; -+,0x00,0x3f,0x26,0x25,0x24,0x3d,0x26,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x25,0x4c,0x12,0xd4,0x49,0x4a,0x84,0xfb,0x00,0xfc,0x84,0x84,0xfc,0x00,0x44,0x28,0xff,0x00 -+// 33200 膰 ; -+,0x00,0x3d,0x24,0x24,0x3d,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x24,0x54,0x48,0x0e,0xf0,0x92,0x54,0xff,0x38,0x54,0x93,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 33201 膱 ; -+,0x01,0x3c,0x27,0x26,0x3d,0x27,0x24,0x25,0x3d,0x25,0x25,0x25,0x25,0x24,0x5c,0x48,0x08,0x88,0xfa,0x2a,0x48,0xff,0x08,0xea,0x2b,0xea,0x24,0x24,0xed,0x15,0x23,0x41 -+// 33202 膲 ; -+,0x00,0x3e,0x24,0x24,0x25,0x3e,0x24,0x24,0x3c,0x24,0x24,0x24,0x25,0x25,0x55,0x48,0x80,0xd0,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0x52,0x29,0x2d,0x29,0x00 -+// 33203 膳 ; -+,0x3c,0x24,0x27,0x24,0x3d,0x24,0x25,0x25,0x3c,0x27,0x24,0x25,0x25,0x25,0x55,0x48,0x84,0x48,0xff,0x20,0xfe,0x20,0xff,0x24,0xa8,0xff,0x00,0xfe,0x02,0x02,0xfe,0x00 -+// 33204 膴 ; -+,0x00,0x3e,0x24,0x25,0x26,0x3c,0x27,0x24,0x3c,0x24,0x27,0x24,0x25,0x25,0x55,0x4a,0x80,0x80,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0x00,0x52,0x49,0x25,0x25 -+// 33205 膵 ; -+,0x00,0x3c,0x27,0x24,0x3c,0x25,0x24,0x24,0x3d,0x26,0x27,0x24,0x24,0x24,0x54,0x48,0x48,0x48,0xff,0x48,0x10,0xff,0x84,0x84,0x4a,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 33206 膶 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x49,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0xfd,0x11,0x7d,0x11,0xff,0x01,0x01,0x05,0x02 -+// 33207 膷 ; -+,0x00,0x38,0x2a,0x2a,0x2d,0x3f,0x2a,0x2a,0x3d,0x2f,0x29,0x29,0x2a,0x4a,0x5a,0x04,0x40,0x27,0xf5,0x95,0xf5,0x95,0xf6,0x85,0x85,0x85,0xa5,0x97,0xf4,0x94,0x04,0x04 -+// 33208 膸 ; -+,0x00,0x3c,0x26,0x25,0x3d,0x24,0x27,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x55,0x4a,0x10,0x10,0x7f,0x20,0x3f,0x44,0xbf,0x80,0xbe,0xa2,0xbe,0xa2,0xbe,0xa2,0x64,0x3f -+// 33209 膹 ; -+,0x00,0x3d,0x24,0x24,0x3d,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x54,0x49,0x10,0xff,0x10,0x54,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83,0x02 -+// 33210 膺 ; -+,0x00,0x1f,0x12,0x15,0x1e,0x14,0x14,0x14,0x14,0x13,0x12,0x13,0x12,0x23,0x22,0x42,0x40,0xff,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x06 -+// 33211 膻 ; -+,0x00,0x3f,0x24,0x25,0x3d,0x25,0x25,0x25,0x3c,0x24,0x24,0x24,0x24,0x24,0x54,0x49,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 33212 膼 ; -+,0x3c,0x25,0x25,0x3c,0x24,0x27,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x26,0x4c,0x00,0x3e,0x22,0x3a,0x2a,0x2a,0x7f,0x41,0x5d,0x55,0x55,0x5d,0x45,0x42,0x80,0x7f,0x00 -+// 33213 膽 ; -+,0x00,0x3c,0x24,0x25,0x3f,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x4a,0x40,0x7c,0x88,0xff,0x24,0x52,0x89,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e -+// 33214 膾 ; -+,0x3c,0x24,0x24,0x25,0x3e,0x25,0x25,0x25,0x3d,0x24,0x25,0x25,0x25,0x25,0x55,0x49,0x20,0x50,0x8c,0xfb,0x02,0xfc,0xac,0x74,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 33215 膿 ; -+,0x3c,0x25,0x25,0x25,0x3d,0x25,0x24,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x4a,0x48,0xfe,0x4a,0xfe,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x00,0xff,0x49,0x4a,0x67,0x42 -+// 33216 臀 ; -+,0x1f,0x10,0x1f,0x15,0x1f,0x15,0x2f,0x45,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0xbc,0xa4,0xa4,0x43,0xbe,0x24,0x98,0x24,0xc3,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x18 -+// 33217 臁 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x55,0x4a,0x04,0x10,0xff,0x44,0x28,0xff,0x28,0xfe,0x2a,0xff,0x2a,0xfe,0x28,0x6c,0x6b,0xaa,0x28 -+// 33218 臂 ; -+,0x1e,0x12,0x1e,0x10,0x3e,0x52,0x1e,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x10,0xff,0x44,0xff,0x10,0xff,0x10,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 33219 臃 ; -+,0x00,0x3c,0x27,0x25,0x25,0x3e,0x27,0x25,0x3d,0x27,0x24,0x24,0x25,0x35,0x4a,0x00,0x20,0x10,0xff,0x28,0x24,0x7f,0xa4,0x3f,0x64,0xe4,0xbf,0xa4,0x24,0x3f,0x20,0x00 -+// 33220 臄 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x55,0x4a,0x20,0x3c,0x20,0xff,0x22,0xfc,0x22,0x1e,0x00,0xff,0x22,0x52,0x9c,0x2a,0x49,0x98 -+// 33221 臅 ; -+,0x00,0x3d,0x25,0x25,0x3c,0x24,0x25,0x26,0x3c,0x24,0x24,0x24,0x24,0x25,0x54,0x48,0x00,0xfe,0x4a,0xfe,0x80,0xfe,0x22,0xfa,0xaa,0xaa,0xfa,0x2a,0x3e,0xea,0x0a,0x04 -+// 33222 臆 ; -+,0x00,0x3c,0x25,0x24,0x3f,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x25,0x25,0x56,0x48,0x40,0x20,0xfe,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x22,0x51,0x45,0x45,0x38 -+// 33223 臇 ; -+,0x00,0x3c,0x25,0x25,0x26,0x3c,0x24,0x24,0x3c,0x24,0x25,0x25,0x25,0x25,0x55,0x49,0xa0,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xce,0x4a,0x7a,0x02,0x0a,0x04 -+// 33224 臈 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x25,0x26,0x24,0x24,0x54,0x48,0x44,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x80,0xff,0x91,0xa9,0xc5,0xfd,0x01,0x03 -+// 33225 臉 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x26,0x25,0x25,0x3d,0x25,0x24,0x24,0x24,0x25,0x55,0x4a,0x20,0x20,0x50,0x8c,0xfb,0x02,0xdc,0x54,0x54,0xdc,0x88,0x88,0x88,0x48,0x54,0x22 -+// 33226 臊 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x25,0x25,0x3d,0x24,0x27,0x24,0x24,0x24,0x25,0x56,0x48,0xfc,0x84,0xfc,0x00,0xce,0x4a,0x4a,0xce,0x20,0xff,0x70,0x68,0xac,0x27,0x22,0x20 -+// 33227 臋 ; -+,0x1f,0x10,0x1f,0x15,0x1f,0x15,0x2f,0x44,0x0f,0x09,0x0a,0x0c,0x09,0x0a,0x0c,0x08,0xbc,0xa4,0xa4,0x43,0xbc,0x14,0x88,0x97,0xfc,0x44,0xa4,0x94,0x64,0x34,0x14,0x08 -+// 33228 臌 ; -+,0x00,0x3c,0x27,0x24,0x3f,0x24,0x25,0x25,0x3d,0x24,0x26,0x25,0x24,0x27,0x54,0x48,0x84,0x84,0xe4,0x9f,0xe4,0x04,0xde,0x52,0xd2,0x12,0x2c,0x4c,0xec,0x12,0x13,0x22 -+// 33229 臍 ; -+,0x00,0x3c,0x27,0x24,0x3f,0x25,0x25,0x25,0x3e,0x25,0x25,0x25,0x25,0x25,0x55,0x4a,0x40,0x20,0xff,0x29,0xd6,0x55,0x55,0x55,0xd5,0x05,0xfc,0x04,0xfc,0x04,0x04,0x04 -+// 33230 臎 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x25,0x27,0x24,0x3c,0x25,0x26,0x27,0x24,0x24,0x54,0x48,0x00,0xfe,0xaa,0x66,0xaa,0x22,0xff,0x88,0x88,0x54,0x22,0xff,0x20,0x20,0x20,0x20 -+// 33231 臏 ; -+,0x00,0x3c,0x25,0x25,0x3c,0x24,0x24,0x25,0x3c,0x27,0x24,0x24,0x24,0x24,0x54,0x49,0x20,0x10,0xff,0x02,0xfc,0x24,0xa8,0x30,0xfe,0x82,0xe2,0x9e,0x82,0xfe,0x6c,0x83 -+// 33232 臐 ; -+,0x00,0x3d,0x24,0x25,0x3c,0x25,0x25,0x25,0x3d,0x25,0x24,0x25,0x24,0x27,0x55,0x4a,0x1c,0xe0,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x2a,0x2a -+// 33233 臑 ; -+,0x3d,0x24,0x25,0x25,0x3c,0x24,0x24,0x27,0x3c,0x25,0x25,0x25,0x25,0x25,0x55,0x49,0xfe,0x10,0xff,0x11,0xd6,0x10,0x00,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x06 -+// 33234 臒 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x25,0x26,0x24,0x3c,0x24,0x25,0x24,0x24,0x24,0x54,0x4b,0x48,0xff,0x48,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 33235 臓 ; -+,0x00,0x3d,0x24,0x24,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x4a,0x44,0xff,0x44,0x0a,0xff,0x08,0xf8,0x49,0xf5,0x15,0xf6,0x44,0xfd,0x0b,0x11,0x20 -+// 33236 臔 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x54,0x49,0x00,0xff,0x52,0xea,0x24,0xea,0x51,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 33237 臕 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x55,0x4a,0x10,0xff,0x48,0xfe,0x4a,0xfe,0x48,0x7b,0x4c,0x49,0x6f,0x00,0x55,0x55,0x95,0x00 -+// 33238 臖 ; -+,0x1b,0x12,0x1b,0x13,0x1b,0x12,0x7f,0x04,0x0f,0x14,0x27,0x04,0x07,0x04,0x04,0x04,0xec,0x24,0xec,0x64,0xec,0x24,0xff,0x08,0xfc,0x0b,0xfa,0x08,0xf8,0x08,0x28,0x10 -+// 33239 臗 ; -+,0x00,0x3d,0x25,0x25,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x4d,0x10,0xff,0x49,0xfe,0x48,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x48,0x4d,0x89,0x0f -+// 33240 臘 ; -+,0x00,0x3c,0x25,0x24,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x4d,0x92,0xa4,0x48,0xa4,0xfe,0x52,0x22,0x52,0xfe,0x24,0xb4,0x24,0xb4,0x25,0xb5,0x22 -+// 33241 臙 ; -+,0x00,0x3f,0x24,0x24,0x3d,0x27,0x25,0x25,0x3d,0x27,0x25,0x24,0x25,0x25,0x55,0x4a,0x88,0xff,0x88,0xf8,0x04,0x75,0x56,0x54,0x55,0x77,0x00,0x00,0x52,0x29,0x29,0x00 -+// 33242 臚 ; -+,0x00,0x38,0x28,0x2b,0x3a,0x2a,0x2a,0x3a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x4b,0x54,0x20,0x3e,0x20,0xff,0x20,0xfc,0x22,0xfe,0x92,0xfe,0x92,0xfe,0xaa,0xaa,0xff,0x00 -+// 33243 臛 ; -+,0x00,0x3d,0x24,0x25,0x3d,0x24,0x25,0x25,0x3f,0x25,0x25,0x25,0x25,0x25,0x55,0x48,0x00,0xff,0x10,0xff,0x11,0x94,0x62,0x10,0xff,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 33244 臜 ; -+,0x00,0x3e,0x27,0x24,0x3f,0x25,0x25,0x26,0x3c,0x24,0x24,0x24,0x24,0x24,0x54,0x49,0x84,0x94,0xdf,0xa4,0xff,0x54,0x55,0x63,0xfe,0x82,0x92,0x92,0x92,0x28,0x46,0x84 -+// 33245 臝 ; -+,0x00,0x7f,0x10,0x1f,0x08,0x0f,0x00,0x3b,0x2a,0x3b,0x2a,0x3b,0x28,0x2b,0x29,0x5a,0x80,0xff,0x00,0xfc,0x08,0xf8,0x00,0xee,0xaa,0xea,0xae,0xea,0x8a,0xea,0xca,0xb3 -+// 33246 臞 ; -+,0x3d,0x25,0x25,0x25,0x3d,0x25,0x25,0x24,0x3c,0x25,0x26,0x24,0x24,0x24,0x54,0x48,0xef,0x29,0xef,0x29,0xef,0x29,0xef,0x50,0x90,0xff,0x90,0xfe,0x90,0xff,0x90,0xff -+// 33247 臟 ; -+,0x38,0x2b,0x28,0x28,0x39,0x2d,0x2d,0x2f,0x39,0x29,0x2f,0x29,0x29,0x29,0x29,0x5a,0x84,0xff,0x84,0x84,0xff,0x04,0xf4,0x45,0xf5,0x15,0x16,0xf4,0x4a,0xfa,0x13,0x21 -+// 33248 臠 ; -+,0x10,0x17,0x38,0x15,0x3c,0x03,0x2a,0x2b,0x40,0x1f,0x11,0x12,0x10,0x11,0x12,0x10,0x84,0xe9,0x1e,0xc4,0x1f,0xc0,0x55,0xd5,0x80,0xfc,0x44,0xa4,0x84,0x44,0x24,0x0c -+// 33249 臡 ; -+,0x11,0x3f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x0a,0x11,0x6f,0x08,0x0b,0x08,0x0b,0x08,0x28,0xa4,0x3f,0x64,0x3f,0xa4,0xbf,0xa4,0x3f,0x40,0xfc,0xa4,0x54,0xa4,0x14,0x0c -+// 33250 臢 ; -+,0x00,0x3e,0x27,0x24,0x3f,0x25,0x25,0x27,0x3d,0x25,0x25,0x25,0x25,0x25,0x54,0x4b,0x88,0xa8,0xfe,0xa8,0xfe,0x55,0x27,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 33251 臣 ; -+,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0xfe,0x80,0x80,0x80,0xfc,0x04,0x04,0x04,0xfc,0x80,0x80,0x80,0x80,0xff,0x00 -+// 33252 臤 ; -+,0x00,0x3f,0x24,0x24,0x24,0x3f,0x21,0x21,0x3f,0x24,0x24,0x24,0x24,0x3f,0x00,0x00,0x00,0xbe,0x22,0x22,0x22,0x22,0x14,0x14,0x14,0x08,0x08,0x14,0x16,0xa3,0x42,0x80 -+// 33253 臥 ; -+,0x00,0x3f,0x24,0x24,0x3f,0x21,0x21,0x21,0x3f,0x24,0x24,0x24,0x3f,0x00,0x01,0x02,0x10,0x90,0x10,0x10,0x10,0x10,0x10,0x28,0x28,0x28,0x44,0x44,0x86,0x82,0x03,0x02 -+// 33254 臦 ; -+,0x00,0x7f,0x09,0x09,0x09,0x3f,0x21,0x21,0x3f,0x09,0x09,0x09,0x09,0x7f,0x01,0x00,0x00,0x7f,0x48,0x48,0x48,0x7e,0x42,0x42,0x7e,0x48,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 33255 臧 ; -+,0x00,0x00,0x0f,0x28,0x2b,0x2a,0x3a,0x0b,0x7a,0x2b,0x2a,0x2a,0x4b,0x10,0x10,0x20,0x14,0x12,0xff,0x10,0xd0,0x92,0x93,0xd2,0x54,0xc8,0x88,0x99,0xe5,0x43,0x81,0x00 -+// 33256 臨 ; -+,0x00,0x00,0x3f,0x28,0x29,0x3e,0x22,0x22,0x22,0x3e,0x28,0x28,0x28,0x28,0x3e,0x00,0x40,0x40,0xff,0x80,0x7c,0x44,0x44,0x7c,0x00,0xef,0xa9,0xa9,0xa9,0xef,0xa9,0x00 -+// 33257 臩 ; -+,0x3f,0x09,0x3f,0x21,0x3f,0x09,0x3f,0x00,0x3f,0x03,0x0c,0x32,0x02,0x04,0x04,0x08,0x7f,0x48,0x7e,0x42,0x7e,0x48,0x7f,0x80,0xff,0x20,0x18,0x17,0x10,0x10,0x10,0x10 -+// 33258 自 ; -+,0x00,0x00,0x01,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x80,0xc0,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 33259 臫 ; -+,0x08,0x0c,0x10,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 33260 臬 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xff,0xc0,0xa0,0x98,0x8f,0x82,0x80 -+// 33261 臭 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x7f,0x01,0x02,0x04,0x08,0x30,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x90,0x88,0xff,0x40,0x20,0x18,0x0e,0x04 -+// 33262 臮 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x01,0x1e,0x04,0x04,0x0a,0x11,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x40,0x48,0x48,0x54,0x62,0x40 -+// 33263 臯 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x04,0x03,0x1c,0x7f,0x00,0x00,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x88,0x9c,0xe0,0x9c,0xff,0x80,0x80,0x80 -+// 33264 臰 ; -+,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x08,0x0f,0x11,0x2a,0x04,0x38,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x20,0xa6,0x38,0x21,0x21,0x1f -+// 33265 臱 ; -+,0x00,0x0f,0x0a,0x09,0x08,0x0f,0x00,0x3f,0x24,0x48,0x3f,0x02,0x03,0x04,0x04,0x08,0x80,0xf8,0x48,0x28,0x08,0xf8,0x80,0xff,0x0a,0x44,0xfe,0x00,0xf8,0x08,0x28,0x10 -+// 33266 臲 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x1c,0x2a,0x48,0x09,0x0a,0x40,0x40,0x7e,0x44,0x88,0xff,0x80,0xbc,0xa4,0xa4,0xb4,0xa8,0xa1,0xa1,0x1f,0x00 -+// 33267 至 ; -+,0x00,0x3f,0x01,0x02,0x04,0x09,0x1e,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0xfe,0x00,0x10,0x08,0xfc,0x88,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00,0x00 -+// 33268 致 ; -+,0x00,0x3f,0x08,0x0a,0x11,0x3f,0x05,0x04,0x3f,0x04,0x04,0x04,0x07,0x3c,0x00,0x01,0x20,0xb0,0x20,0x20,0x7f,0xc4,0x24,0x24,0xa4,0x28,0x10,0x10,0xa8,0x44,0x83,0x02 -+// 33269 臵 ; -+,0x00,0x7f,0x08,0x10,0x22,0x7f,0x22,0x08,0x08,0x3e,0x08,0x08,0x0f,0x78,0x20,0x00,0x40,0x40,0x7e,0x44,0xa8,0x10,0x28,0x47,0x82,0x7c,0x44,0x44,0x44,0x7c,0x44,0x40 -+// 33270 臶 ; -+,0x00,0x7f,0x09,0x10,0x22,0x7f,0x22,0x09,0x08,0x3e,0x08,0x08,0x0f,0x78,0x00,0x00,0x20,0x20,0xff,0x40,0x40,0xbe,0x84,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0xa8,0x90 -+// 33271 臷 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x00,0x3f,0x0a,0x11,0x3f,0x05,0x3f,0x04,0x07,0x3c,0x00,0x20,0x28,0xa6,0x24,0xff,0x20,0xa4,0x26,0x24,0xa8,0x10,0x90,0x29,0xa5,0x43,0x80 -+// 33272 臸 ; -+,0x00,0x7f,0x10,0x10,0x22,0x27,0x79,0x08,0x08,0x7f,0x08,0x08,0x0f,0x78,0x00,0x00,0x00,0x7f,0x10,0x14,0x22,0x7f,0x22,0x08,0x08,0x7f,0x08,0x08,0x08,0xff,0x00,0x00 -+// 33273 臹 ; -+,0x00,0x7f,0x08,0x11,0x25,0x7f,0x0b,0x09,0x7f,0x09,0x09,0x09,0x0f,0x71,0x02,0x04,0x10,0x14,0x12,0xff,0x10,0x12,0xeb,0x2a,0x2a,0x2c,0x24,0xed,0x55,0x23,0x41,0x00 -+// 33274 臺 ; -+,0x00,0x3f,0x00,0x07,0x00,0x0f,0x08,0x3f,0x20,0x4f,0x02,0x07,0x00,0x0f,0x00,0x3f,0x80,0xfe,0x80,0xf0,0x00,0xf8,0x08,0xff,0x02,0xf8,0x10,0xf8,0x88,0xfc,0x80,0xff -+// 33275 臻 ; -+,0x00,0x7e,0x11,0x10,0x25,0x7e,0x05,0x10,0x7d,0x12,0x15,0x10,0x1c,0x71,0x02,0x00,0x20,0x20,0xfe,0x20,0xfc,0x40,0xfe,0x88,0x74,0x23,0xfd,0x70,0xa8,0x26,0x24,0x20 -+// 33276 臼 ; -+,0x01,0x03,0x1c,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x80,0x3e,0x02,0x02,0x02,0x02,0x3e,0x02,0x02,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 33277 臽 ; -+,0x02,0x02,0x07,0x08,0x10,0x21,0x1e,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0xfc,0x08,0x10,0x80,0x3e,0x02,0x02,0x3e,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 33278 臾 ; -+,0x00,0x06,0x18,0x10,0x10,0x1e,0x10,0x10,0x1f,0x10,0x01,0x01,0x02,0x04,0x08,0x10,0x80,0x80,0xbc,0x84,0x84,0xbc,0x84,0x84,0xfc,0x84,0x40,0x20,0x10,0x08,0x0e,0x04 -+// 33279 臿 ; -+,0x00,0x1f,0x00,0x00,0x3f,0x00,0x02,0x1c,0x10,0x10,0x1e,0x10,0x10,0x10,0x1f,0x10,0x7c,0x80,0x80,0x80,0xff,0x80,0x80,0x9e,0x82,0x82,0x9e,0x82,0x82,0x82,0xfe,0x02 -+// 33280 舀 ; -+,0x00,0x3f,0x08,0x04,0x04,0x03,0x1c,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x3e,0xc4,0x86,0x64,0x48,0x00,0x7c,0x04,0x04,0x7c,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 33281 舁 ; -+,0x03,0x1c,0x10,0x1f,0x10,0x10,0x1f,0x12,0x02,0x7f,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x7c,0x04,0x7c,0x04,0x04,0xfc,0x24,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20 -+// 33282 舂 ; -+,0x00,0x3f,0x00,0x1f,0x01,0x7f,0x02,0x04,0x09,0x1e,0x68,0x0f,0x08,0x08,0x0f,0x08,0x80,0xfe,0x80,0xfc,0x00,0xff,0x20,0x10,0x7c,0x0b,0x08,0x78,0x08,0x08,0xf8,0x08 -+// 33283 舃 ; -+,0x01,0x0e,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x11,0x24,0x12,0x12,0x20,0x00,0x00,0x7c,0x04,0x7c,0x04,0xfc,0x00,0xfc,0x00,0xfe,0x22,0x92,0xda,0x92,0x0a,0x04 -+// 33284 舄 ; -+,0x01,0x0e,0x08,0x0f,0x08,0x0f,0x04,0x04,0x0f,0x10,0x24,0x12,0x13,0x12,0x20,0x00,0x80,0x3c,0x04,0x3c,0x04,0xfc,0x00,0x00,0xfe,0x92,0x4a,0x6a,0x4a,0x02,0x0a,0x04 -+// 33285 舅 ; -+,0x03,0x1c,0x10,0x1e,0x10,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x01,0x1f,0x02,0x1c,0x00,0x7c,0x04,0x7c,0x04,0xfc,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfc,0x04,0x0c -+// 33286 舆 ; -+,0x05,0x19,0x13,0x1d,0x12,0x13,0x10,0x1f,0x10,0x10,0x7f,0x00,0x08,0x0c,0x10,0x20,0x00,0x1c,0xe4,0x04,0x9c,0xe4,0x84,0xfc,0x84,0x84,0xff,0x00,0x10,0x08,0x0c,0x08 -+// 33287 與 ; -+,0x05,0x19,0x11,0x11,0x1d,0x10,0x11,0x1d,0x11,0x7f,0x04,0x06,0x0c,0x08,0x10,0x20,0x00,0x1c,0xc4,0x04,0xdc,0x44,0x44,0x5c,0x44,0xff,0x00,0x10,0x0c,0x06,0x03,0x02 -+// 33288 興 ; -+,0x04,0x1b,0x12,0x1b,0x12,0x13,0x1b,0x13,0x12,0x7f,0x00,0x04,0x06,0x0c,0x10,0x20,0x00,0xec,0x24,0xe4,0x2c,0xe4,0x6c,0xe4,0x24,0xff,0x00,0x10,0x08,0x0c,0x06,0x04 -+// 33289 舉 ; -+,0x01,0x1d,0x11,0x1d,0x10,0x1d,0x11,0x7f,0x04,0x08,0x17,0x60,0x0f,0x00,0x00,0x00,0x00,0xdc,0x04,0xdc,0x44,0x5c,0x44,0xff,0x90,0x8c,0xf7,0x82,0xf8,0x80,0x80,0x80 -+// 33290 舊 ; -+,0x02,0x3f,0x06,0x04,0x0f,0x18,0x2f,0x48,0x0f,0x03,0x1c,0x10,0x1f,0x10,0x1f,0x10,0x10,0xff,0x90,0x50,0xfe,0x40,0xfc,0x40,0xfe,0x00,0x7c,0x04,0x3c,0x04,0xfc,0x04 -+// 33291 舋 ; -+,0x07,0x1a,0x13,0x1a,0x13,0x1b,0x12,0x3f,0x20,0x47,0x04,0x07,0x04,0x07,0x04,0x7f,0xec,0x24,0xec,0x24,0xec,0x64,0x24,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff -+// 33292 舌 ; -+,0x00,0x3f,0x00,0x00,0x00,0x7f,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x7c,0x80,0x80,0x80,0x80,0xff,0x80,0x80,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 33293 舍 ; -+,0x00,0x01,0x02,0x04,0x1f,0x60,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x80,0x40,0x20,0x18,0xf7,0x82,0x80,0xfe,0x80,0x80,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 33294 舎 ; -+,0x00,0x01,0x02,0x04,0x18,0x6f,0x00,0x00,0x3f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x80,0x40,0x20,0x98,0x87,0xfa,0x80,0x80,0xff,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 33295 舏 ; -+,0x00,0x07,0x3c,0x04,0x04,0x7f,0x04,0x04,0x1f,0x11,0x11,0x11,0x11,0x1f,0x11,0x00,0x02,0x82,0x22,0x22,0x22,0xa2,0x22,0x22,0x26,0x3a,0x22,0x02,0x02,0x02,0x02,0x02 -+// 33296 舐 ; -+,0x06,0x78,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x00,0x0e,0x78,0x48,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x48,0x48,0x55,0x65,0x42,0x00 -+// 33297 舑 ; -+,0x00,0x07,0x78,0x08,0x08,0x7f,0x08,0x08,0x3e,0x23,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xff,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 33298 舒 ; -+,0x08,0x08,0x14,0x12,0x21,0x7f,0x08,0x7f,0x08,0x08,0x3f,0x21,0x21,0x3f,0x21,0x00,0x00,0xfe,0x02,0x24,0x98,0x08,0xff,0x0a,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00 -+// 33299 舓 ; -+,0x03,0x3c,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x23,0x22,0x22,0x22,0x3e,0x20,0x00,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x40,0x7f,0xa5,0x25,0x49,0x49,0x91,0x21,0x4a,0x04 -+// 33300 舔 ; -+,0x06,0x79,0x08,0x08,0x7f,0x08,0x08,0x08,0x3f,0x22,0x22,0x22,0x23,0x3e,0x22,0x00,0x00,0xfe,0x20,0x20,0xff,0x48,0x44,0xa7,0x22,0xb4,0xaa,0xa9,0x29,0xa0,0x40,0x00 -+// 33301 舕 ; -+,0x07,0x78,0x08,0x08,0x7e,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x22,0x01,0x10,0x10,0x52,0x54,0x90,0x28,0x46,0x94,0x10,0x52,0x54,0x90,0x28,0x44,0x83,0x02 -+// 33302 舖 ; -+,0x08,0x08,0x14,0x13,0x22,0x5c,0x08,0x7e,0x08,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x96,0x00 -+// 33303 舗 ; -+,0x04,0x04,0x0a,0x11,0x25,0x44,0x3f,0x04,0x3f,0x00,0x3f,0x21,0x21,0x3f,0x21,0x00,0x08,0x0a,0x0a,0x7f,0x88,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0x43 -+// 33304 舘 ; -+,0x08,0x08,0x16,0x21,0x7f,0x08,0x08,0x7f,0x08,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x08,0xff,0x81,0x00,0x7c,0x44,0x7c,0x40,0x40,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 33305 舙 ; -+,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x3f,0x04,0x3f,0x04,0x3f,0x21,0x3f,0x21,0xf8,0x80,0xff,0x80,0xf8,0x08,0xf8,0x06,0x38,0x08,0x7f,0x08,0x7e,0x42,0x7e,0x42 -+// 33306 舚 ; -+,0x00,0x0e,0x78,0x09,0x08,0x7e,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x01,0x40,0x7e,0x84,0xff,0xa4,0xd2,0xff,0x80,0xbe,0x80,0xbe,0x80,0xbe,0xa2,0xbe,0x22 -+// 33307 舛 ; -+,0x08,0x0c,0x08,0x0f,0x11,0x11,0x31,0x4a,0x0a,0x04,0x04,0x08,0x10,0x20,0x40,0x00,0x08,0x08,0x08,0x7f,0x08,0x48,0x48,0x48,0x48,0xff,0x08,0x08,0x08,0x08,0x08,0x00 -+// 33308 舜 ; -+,0x00,0x1f,0x09,0x04,0x1f,0x10,0x28,0x0f,0x11,0x11,0x2a,0x44,0x08,0x10,0x20,0x40,0x1c,0xe8,0x0c,0x90,0xff,0x02,0x10,0x7e,0x10,0x50,0xff,0x10,0x10,0x10,0x10,0x10 -+// 33309 舝 ; -+,0x01,0x0f,0x02,0x7f,0x08,0x11,0x08,0x3f,0x24,0x4f,0x00,0x1f,0x08,0x3f,0x00,0x00,0x00,0xf0,0x10,0xff,0x88,0x10,0x88,0xff,0x12,0xf8,0x90,0xf8,0x80,0xfe,0x80,0x80 -+// 33310 舞 ; -+,0x08,0x0f,0x15,0x25,0x5f,0x05,0x3f,0x08,0x08,0x1f,0x11,0x2a,0x04,0x08,0x10,0x20,0x00,0xfe,0x28,0x28,0xff,0x28,0xff,0x08,0x08,0x7f,0x28,0x48,0x7f,0x08,0x08,0x08 -+// 33311 舟 ; -+,0x00,0x01,0x07,0x04,0x04,0x04,0x04,0x7f,0x04,0x05,0x04,0x04,0x08,0x08,0x10,0x20,0x80,0x00,0xf8,0x08,0x88,0x48,0x08,0xff,0x08,0x08,0xc8,0x48,0x08,0x08,0x28,0x10 -+// 33312 舠 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x7f,0x11,0x19,0x15,0x11,0x11,0x11,0x21,0x25,0x42,0x00,0x7e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x2a,0x44 -+// 33313 舡 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x11,0x7f,0x11,0x19,0x15,0x11,0x11,0x21,0x25,0x42,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33314 舢 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2e,0x44,0x08,0x08,0x08,0x08,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x7f,0x00,0x00 -+// 33315 舣 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x00,0x20,0x92,0x92,0x82,0x44,0x44,0x44,0x28,0x28,0x10,0x10,0x28,0x44,0x83,0x02 -+// 33316 舤 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x00,0x7c,0x44,0x44,0x44,0x64,0x54,0x5c,0x54,0x44,0x44,0x44,0x45,0x85,0x83,0x00 -+// 33317 舥 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x7e,0x22,0x32,0x2a,0x2a,0x22,0x22,0x22,0x2a,0x44,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x80,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 33318 舦 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x17,0x7e,0x12,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x24,0x54,0x52,0x8b,0x8a,0x00 -+// 33319 舧 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x10,0x18,0x20,0x7c,0x44,0x44,0x64,0x54,0x5c,0x54,0x44,0x44,0x45,0x45,0x83,0x00 -+// 33320 舨 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x32,0x2a,0x2a,0x22,0x22,0x22,0x2a,0x45,0x0f,0xf8,0x80,0x80,0xbe,0xa2,0xa2,0xa2,0x94,0x94,0x88,0x88,0x94,0x94,0xa3,0x42 -+// 33321 舩 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x2a,0x7e,0x23,0x32,0x2a,0x2a,0x22,0x23,0x2a,0x44,0x00,0x08,0x48,0x68,0x44,0x44,0x82,0xa3,0x32,0x20,0x48,0x44,0x82,0xff,0x82,0x00 -+// 33322 航 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x20,0x10,0x00,0xfe,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 33323 舫 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x20,0x10,0x08,0xff,0x20,0x20,0x20,0x3e,0x22,0x22,0x22,0x22,0x42,0x42,0x8a,0x04 -+// 33324 般 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7f,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x00,0x7c,0x44,0x44,0x44,0x44,0x83,0x00,0xfe,0x44,0x48,0x30,0x30,0x48,0x87,0x02 -+// 33325 舭 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x48,0x48,0x48,0x48,0x4a,0x7c,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0xe9,0x47,0x00 -+// 33326 舮 ; -+,0x08,0x08,0x1e,0x12,0x1a,0x16,0x7e,0x12,0x1a,0x16,0x12,0x12,0x12,0x22,0x2a,0x45,0x20,0x18,0x08,0x7e,0x42,0x42,0x42,0x7e,0x42,0x40,0x40,0x40,0x40,0x80,0x80,0x00 -+// 33327 舯 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x11,0x7f,0x11,0x19,0x15,0x11,0x11,0x21,0x25,0x42,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x49,0x7f,0x49,0x08,0x08,0x08,0x08,0x08 -+// 33328 舰 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x11,0x7f,0x11,0x19,0x15,0x11,0x11,0x21,0x25,0x42,0x00,0x7e,0x42,0x42,0x52,0x52,0x52,0x52,0x52,0x10,0x28,0x28,0x29,0x49,0x47,0x80 -+// 33329 舱 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x17,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0x28,0x44,0x83,0x02,0x7c,0x44,0x44,0x44,0x5c,0x48,0x42,0x42,0x3e,0x00 -+// 33330 舲 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x7f,0x22,0x32,0x2a,0x2a,0x22,0x22,0x22,0x2a,0x44,0x20,0x20,0x50,0x48,0x84,0xa7,0x12,0x10,0xfe,0x04,0x08,0x50,0x30,0x18,0x08,0x00 -+// 33331 舳 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0x7f,0x41,0x00 -+// 33332 舴 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x11,0x7f,0x11,0x19,0x17,0x15,0x11,0x21,0x25,0x42,0x10,0x10,0x20,0x3f,0x50,0x90,0x1e,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10 -+// 33333 舵 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x17,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x20,0x10,0x10,0xff,0x82,0x24,0x20,0x24,0x2e,0x30,0x20,0x20,0x22,0x23,0x1e,0x00 -+// 33334 舶 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x7f,0x11,0x19,0x17,0x15,0x11,0x11,0x21,0x25,0x42,0x10,0x10,0x20,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 33335 舷 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x20,0x10,0xff,0x20,0x30,0x24,0x46,0xfc,0x08,0x10,0x14,0x22,0x4f,0xfb,0x02,0x00 -+// 33336 舸 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x7f,0x11,0x19,0x15,0x15,0x11,0x11,0x21,0x25,0x42,0x00,0x00,0x7f,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x02,0x0a,0x04 -+// 33337 船 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7f,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x00,0x7c,0x44,0x44,0x44,0x44,0x87,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 33338 舺 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10 -+// 33339 舻 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x10,0x10,0x1f,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42,0x40,0x40,0x40,0x80,0x80,0x00 -+// 33340 舼 ; -+,0x08,0x10,0x3e,0x32,0x2b,0x2a,0x22,0x7e,0x23,0x32,0x2a,0x2a,0x22,0x22,0x2a,0x45,0x00,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x00,0x48,0x64,0x46,0x83,0x82,0x00 -+// 33341 舽 ; -+,0x08,0x10,0x3e,0x22,0x33,0x2a,0x32,0x7f,0x22,0x32,0x2a,0x2b,0x22,0x22,0x2a,0x44,0x20,0x3e,0x44,0xa8,0x10,0x28,0xd7,0x12,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 33342 舾 ; -+,0x08,0x11,0x3e,0x32,0x2a,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x2a,0x44,0x00,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xce,0x82,0xfe,0x82,0x82,0x00 -+// 33343 舿 ; -+,0x08,0x10,0x3f,0x22,0x32,0x2a,0x23,0x7e,0x23,0x32,0x2a,0x2a,0x22,0x22,0x4a,0x44,0x20,0x20,0xff,0x50,0x48,0x87,0x7a,0x00,0xff,0x40,0x7c,0x04,0x04,0x04,0x14,0x08 -+// 33344 艀 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x22,0x33,0x2a,0x22,0x22,0x22,0x2a,0x44,0x00,0x1e,0xf2,0xa3,0x52,0x54,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 33345 艁 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2b,0x22,0x7f,0x22,0x32,0x2a,0x2a,0x22,0x22,0x4a,0x44,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 33346 艂 ; -+,0x08,0x10,0x3e,0x22,0x33,0x2a,0x22,0x7f,0x22,0x32,0x2a,0x2a,0x23,0x22,0x2a,0x44,0x40,0x7c,0x44,0xa8,0x10,0x28,0xd7,0x12,0xfc,0x10,0xfc,0x10,0xff,0x10,0x10,0x10 -+// 33347 艃 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x1a,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2b,0x44,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 33348 艄 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x11,0x7f,0x11,0x19,0x15,0x11,0x11,0x21,0x25,0x42,0x10,0x92,0x54,0x10,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 33349 艅 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x17,0x12,0x7e,0x13,0x1a,0x16,0x12,0x12,0x23,0x2a,0x44,0x10,0x10,0x28,0x44,0x83,0x7e,0x10,0x10,0xff,0x10,0x94,0xd2,0x93,0x12,0x50,0x20 -+// 33350 艆 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x20,0x10,0x7c,0x44,0x44,0x7c,0x44,0x44,0x7c,0x52,0x53,0x4c,0x44,0x57,0xe2,0x40 -+// 33351 艇 ; -+,0x04,0x09,0x1e,0x12,0x1a,0x16,0x13,0x7e,0x12,0x1a,0x17,0x12,0x12,0x22,0x2a,0x45,0x00,0x86,0xb8,0x88,0x88,0x88,0xff,0x48,0x48,0x48,0x5e,0x80,0x40,0xa0,0x9f,0x00 -+// 33352 艈 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x20,0x10,0xff,0x20,0x22,0x4f,0xfa,0x00,0x54,0x54,0x54,0x54,0x55,0x95,0x97,0x00 -+// 33353 艉 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x45,0x00,0xfe,0x82,0xfe,0x80,0x9e,0xf0,0x90,0xfe,0x90,0xfe,0x90,0x91,0x91,0x8f,0x00 -+// 33354 艊 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x7e,0x12,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x91,0x91,0x91,0x95,0x92,0x10,0x10 -+// 33355 艋 ; -+,0x08,0x10,0x3c,0x24,0x35,0x2c,0x24,0x7c,0x24,0x35,0x2d,0x25,0x25,0x25,0x37,0x48,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x50,0x20,0xfc,0x54,0x54,0x54,0x54,0xff,0x00 -+// 33356 艌 ; -+,0x08,0x10,0x3c,0x24,0x34,0x2d,0x24,0x7c,0x24,0x34,0x2c,0x25,0x25,0x26,0x54,0x48,0x10,0x10,0x30,0x48,0xa6,0x13,0xfc,0x04,0x08,0x10,0x04,0x52,0x55,0x45,0x3c,0x00 -+// 33357 艍 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x2a,0x45,0x00,0xfe,0x82,0x82,0xfe,0x88,0x88,0xff,0x88,0x88,0xbe,0xa2,0xa2,0xbe,0xa2,0x00 -+// 33358 艎 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x2a,0x44,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 33359 艏 ; -+,0x04,0x08,0x1e,0x13,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x84,0x46,0x28,0xff,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 33360 艐 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x23,0x32,0x2a,0x23,0x22,0x22,0x2a,0x45,0x44,0x28,0x92,0xaa,0xc6,0xfe,0x44,0x82,0x41,0x7e,0xc4,0x28,0x10,0x2c,0x43,0x82 -+// 33361 艑 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x22,0x32,0x2b,0x23,0x22,0x22,0x2a,0x44,0x20,0x10,0xfe,0x82,0x82,0xfe,0x80,0xff,0xd5,0xd5,0x7f,0x55,0x55,0x55,0x43,0x00 -+// 33362 艒 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x2a,0x7e,0x22,0x32,0x2a,0x2a,0x22,0x22,0x2a,0x44,0x00,0xfe,0x82,0xba,0x82,0xba,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00 -+// 33363 艓 ; -+,0x08,0x10,0x3f,0x22,0x32,0x2a,0x22,0x7e,0x22,0x33,0x2a,0x22,0x22,0x22,0x2a,0x44,0x54,0x54,0xff,0x54,0x5c,0x40,0x7f,0x10,0x10,0xff,0x38,0x34,0x52,0x53,0x92,0x10 -+// 33364 艔 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x4a,0x45,0x20,0x10,0xff,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xfe,0xa4,0x94,0x88,0x94,0xa3,0x42 -+// 33365 艕 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x2a,0x45,0x20,0x10,0xfe,0x44,0x28,0xff,0xa1,0x10,0xfe,0x20,0x3c,0x24,0x44,0x44,0x94,0x08 -+// 33366 艖 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7f,0x12,0x1a,0x16,0x12,0x13,0x22,0x2a,0x44,0x00,0x42,0x24,0xff,0x10,0xfe,0x10,0xff,0x20,0x40,0x7e,0x88,0x08,0x08,0x7f,0x00 -+// 33367 艗 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2b,0x44,0x00,0x42,0x24,0xff,0x00,0x24,0x42,0x81,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 33368 艘 ; -+,0x08,0x10,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x12,0x22,0x2a,0x44,0x50,0x96,0x92,0xd6,0x92,0x92,0xfe,0x00,0xfe,0x44,0x44,0x28,0x10,0x2c,0x47,0x82 -+// 33369 艙 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2b,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x2a,0x45,0x10,0x10,0x28,0x44,0x93,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7e,0xa2,0xa2,0xbe,0x00 -+// 33370 艚 ; -+,0x08,0x10,0x3e,0x22,0x32,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x2a,0x22,0x22,0x4a,0x44,0x24,0x24,0xff,0x24,0xff,0xa5,0xff,0xa5,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42 -+// 33371 艛 ; -+,0x08,0x10,0x3e,0x23,0x32,0x2a,0x7e,0x22,0x32,0x2a,0x2a,0x23,0x22,0x22,0x4a,0x45,0x10,0xfe,0x92,0xff,0x92,0xfe,0x12,0xfe,0x92,0xfe,0x40,0xff,0x84,0x48,0x30,0xce -+// 33372 艜 ; -+,0x09,0x11,0x3f,0x25,0x35,0x2e,0x24,0x7d,0x25,0x34,0x2c,0x24,0x24,0x24,0x54,0x48,0x54,0x54,0xff,0x54,0x55,0x77,0x00,0xff,0x11,0xfe,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 33373 艝 ; -+,0x08,0x10,0x3e,0x22,0x33,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x2a,0x44,0x00,0xfe,0x10,0xff,0x11,0xd6,0x10,0xc6,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 33374 艞 ; -+,0x09,0x11,0x3d,0x26,0x36,0x2c,0x7c,0x26,0x25,0x34,0x2d,0x26,0x24,0x24,0x54,0x49,0x08,0x08,0xef,0x94,0x82,0x50,0x52,0x54,0x58,0xd0,0x58,0x56,0x50,0x91,0x8f,0x00 -+// 33375 艟 ; -+,0x08,0x08,0x1e,0x12,0x1b,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x22,0x2a,0x45,0x00,0x20,0x10,0xfe,0x44,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 33376 艠 ; -+,0x08,0x11,0x3e,0x25,0x35,0x2d,0x26,0x7c,0x25,0x35,0x2d,0x24,0x24,0x24,0x57,0x48,0x00,0xd2,0x54,0x49,0x8a,0x04,0xfb,0x00,0xfc,0x04,0xfc,0x88,0x88,0x50,0xff,0x00 -+// 33377 艡 ; -+,0x08,0x10,0x3e,0x33,0x2b,0x2a,0x7e,0x22,0x32,0x2a,0x2a,0x22,0x22,0x22,0x4a,0x44,0x10,0x92,0x54,0xff,0x02,0x7c,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x82,0x00 -+// 33378 艢 ; -+,0x08,0x10,0x3f,0x22,0x32,0x2b,0x23,0x7e,0x22,0x32,0x2a,0x2a,0x22,0x22,0x4a,0x44,0x10,0x10,0xff,0x94,0x94,0x5a,0xff,0x00,0xfe,0x82,0xba,0xaa,0xba,0x82,0xfe,0x00 -+// 33379 艣 ; -+,0x08,0x10,0x3c,0x25,0x35,0x2d,0x25,0x7d,0x25,0x35,0x2d,0x25,0x25,0x25,0x55,0x4a,0x10,0x1e,0x10,0xff,0x12,0x7c,0x12,0x7c,0x54,0x7c,0x54,0x7c,0x20,0xfe,0x22,0x46 -+// 33380 艤 ; -+,0x08,0x10,0x3d,0x24,0x34,0x2c,0x25,0x7c,0x25,0x34,0x2d,0x24,0x24,0x24,0x55,0x48,0x84,0x48,0xfe,0x20,0xfe,0x20,0xff,0x48,0xca,0x48,0xff,0x4a,0x6c,0xc9,0x55,0xc2 -+// 33381 艥 ; -+,0x08,0x11,0x3d,0x25,0x34,0x2f,0x25,0x7d,0x25,0x35,0x2d,0x25,0x27,0x25,0x54,0x48,0x08,0xe8,0x2a,0xe9,0x08,0xff,0x28,0xea,0x2b,0xea,0x2c,0x34,0xed,0x35,0x23,0x21 -+// 33382 艦 ; -+,0x08,0x11,0x3d,0x25,0x35,0x2d,0x25,0x7d,0x25,0x35,0x2c,0x25,0x25,0x25,0x57,0x48,0x04,0xf6,0x44,0x44,0xe7,0x2a,0xea,0x51,0x41,0xf0,0x00,0xfe,0x4a,0x4a,0xff,0x00 -+// 33383 艧 ; -+,0x08,0x11,0x3e,0x24,0x34,0x2d,0x26,0x7c,0x24,0x34,0x2d,0x24,0x24,0x24,0x54,0x49,0x84,0xff,0x84,0x50,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x84,0x48,0x30,0x48,0x86 -+// 33384 艨 ; -+,0x08,0x11,0x3c,0x25,0x35,0x2c,0x24,0x7d,0x24,0x34,0x2d,0x24,0x25,0x24,0x45,0x4c,0x48,0xff,0x48,0xff,0x01,0x7c,0x00,0xfe,0x40,0xa2,0x54,0x98,0x34,0x52,0x91,0x30 -+// 33385 艩 ; -+,0x08,0x10,0x3d,0x24,0x35,0x2d,0x25,0x7d,0x26,0x34,0x2c,0x24,0x24,0x24,0x55,0x4a,0x20,0x10,0xff,0x29,0xd6,0x56,0x55,0x55,0xd5,0x82,0xfe,0x82,0xfe,0x82,0x02,0x02 -+// 33386 艪 ; -+,0x08,0x10,0x3c,0x25,0x34,0x2c,0x24,0x7c,0x24,0x35,0x2c,0x24,0x24,0x24,0x54,0x48,0x40,0x7e,0x84,0xfe,0x92,0xfe,0x92,0xfe,0xaa,0x29,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 33387 艫 ; -+,0x08,0x10,0x3c,0x25,0x35,0x2d,0x25,0x7d,0x25,0x35,0x2d,0x25,0x25,0x25,0x45,0x4a,0x10,0x1e,0x10,0xff,0x11,0x7a,0x12,0x7e,0x52,0x7e,0x52,0x7e,0x52,0x52,0xff,0x00 -+// 33388 艬 ; -+,0x08,0x10,0x3f,0x22,0x32,0x2a,0x22,0x7e,0x22,0x32,0x2a,0x22,0x22,0x22,0x2a,0x45,0x7e,0x82,0xff,0x81,0xff,0x4a,0x7c,0x49,0xe7,0x3c,0x48,0xfe,0x92,0xfe,0x69,0x8f -+// 33389 艭 ; -+,0x09,0x11,0x3d,0x27,0x35,0x2d,0x25,0x7d,0x25,0x34,0x2c,0x24,0x24,0x24,0x54,0x49,0x48,0x54,0xff,0x54,0xfe,0x54,0xfe,0x54,0xff,0x00,0xfe,0x44,0x28,0x10,0x6c,0x83 -+// 33390 艮 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x09,0x08,0x08,0x08,0x09,0x0a,0x1c,0x08,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x04,0x8e,0x50,0x20,0x10,0x0c,0x07,0x02 -+// 33391 良 ; -+,0x01,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x09,0x09,0x08,0x08,0x08,0x0a,0x1c,0x08,0x00,0x80,0xf0,0x10,0xf0,0x10,0x10,0xf0,0x08,0x18,0xa0,0x40,0x20,0x18,0x07,0x02 -+// 33392 艰 ; -+,0x00,0x7d,0x05,0x05,0x25,0x15,0x09,0x09,0x09,0x15,0x17,0x25,0x41,0x01,0x03,0x01,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x23,0x2c,0x10,0x08,0x2c,0x47,0x82,0x00 -+// 33393 艱 ; -+,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x25,0x3f,0x04,0x7f,0x04,0x0a,0x11,0x21,0x41,0x00,0xfe,0x42,0x7e,0x42,0x42,0x7e,0x50,0x52,0x54,0xc8,0x48,0x44,0x54,0xe3,0x42 -+// 33394 色 ; -+,0x02,0x02,0x03,0x04,0x08,0x1f,0x28,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0xf8,0x10,0x20,0xf8,0x88,0x88,0x88,0xf8,0x00,0x02,0x02,0x02,0xfe,0x00 -+// 33395 艳 ; -+,0x08,0x08,0x08,0x7f,0x08,0x09,0x3e,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x7e,0x44,0x84,0xfe,0x92,0x92,0x92,0xfe,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 33396 艴 ; -+,0x14,0x14,0x7f,0x15,0x15,0x7f,0x54,0x54,0x7f,0x15,0x15,0x15,0x27,0x24,0x24,0x44,0x20,0x20,0x3f,0x42,0x84,0x7f,0x49,0x49,0x49,0x7f,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 33397 艵 ; -+,0x21,0x11,0x12,0x7f,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x20,0x20,0x3f,0x42,0x84,0x7f,0x49,0xc9,0x7f,0x41,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 33398 艶 ; -+,0x0a,0x3f,0x2a,0x3f,0x2a,0x3f,0x00,0x7f,0x00,0x3f,0x21,0x3f,0x22,0x14,0x0f,0x78,0x10,0x90,0x9f,0xa2,0xc4,0xff,0x49,0xc9,0x49,0x7f,0x40,0x40,0x41,0x41,0xbf,0x00 -+// 33399 艷 ; -+,0x14,0x55,0x7f,0x55,0x7f,0x55,0x7f,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x17,0x78,0x20,0x20,0x3e,0x44,0x88,0x7f,0x49,0x49,0x49,0x7f,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 33400 艸 ; -+,0x04,0x04,0x04,0x24,0x24,0x24,0x24,0x24,0x3f,0x24,0x04,0x04,0x08,0x08,0x10,0x20,0x08,0x08,0x08,0xa9,0xa9,0xa9,0xa9,0xa9,0xbf,0xa9,0x08,0x08,0x08,0x08,0x08,0x08 -+// 33401 艹 ; -+,0x02,0x02,0x02,0x7f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 33402 艺 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x00,0x00,0x00,0x03,0x04,0x08,0x10,0x10,0x0f,0x00,0x20,0x20,0xff,0x20,0x20,0xf8,0x30,0x40,0x80,0x00,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 33403 艻 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x1f,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x90,0x80,0xfc,0x84,0x84,0x04,0x04,0x04,0x04,0x04,0x14,0x08 -+// 33404 艼 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x10,0x10,0xff,0x10,0x10,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80 -+// 33405 艽 ; -+,0x02,0x02,0x3f,0x02,0x02,0x01,0x01,0x1f,0x01,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x10,0x10,0xff,0x10,0x10,0x00,0x00,0xf0,0x10,0x10,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 33406 艾 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x04,0x02,0x02,0x01,0x00,0x01,0x02,0x04,0x18,0x60,0x20,0x20,0xff,0x20,0x20,0x10,0x18,0x10,0x20,0x40,0x80,0x40,0x20,0x18,0x07,0x02 -+// 33407 艿 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x02,0x02,0x02,0x02,0x04,0x04,0x04,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x00,0xf8,0x08,0x10,0x10,0x3e,0x02,0x02,0x02,0x22,0x14,0x08 -+// 33408 芀 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x10,0xff,0x10,0x10,0xfc,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x28,0x10 -+// 33409 芁 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x00,0xf0,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 33410 节 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x10,0x10,0xff,0x10,0x10,0x00,0xfc,0x04,0x04,0x04,0x04,0x14,0x08,0x00,0x00,0x00 -+// 33411 芃 ; -+,0x02,0x02,0x7f,0x02,0x02,0x07,0x04,0x05,0x04,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x20,0x20,0xff,0x20,0x20,0xf0,0x10,0x10,0x90,0xd0,0x90,0x10,0x11,0x11,0x0f,0x00 -+// 33412 芄 ; -+,0x02,0x02,0x7f,0x02,0x02,0x01,0x3f,0x01,0x09,0x06,0x03,0x02,0x04,0x18,0x60,0x00,0x10,0x10,0xff,0x10,0x10,0x00,0xf0,0x10,0x10,0x10,0x90,0xd0,0x91,0x11,0x0f,0x00 -+// 33413 芅 ; -+,0x02,0x02,0x7f,0x02,0x00,0x01,0x01,0x01,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x40,0x30,0x10,0x3e,0xc0,0x80,0x80,0x40,0x41,0x21,0x19,0x06 -+// 33414 芆 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x04,0x05,0x02,0x02,0x01,0x00,0x01,0x06,0x18,0x60,0x20,0x20,0xff,0x20,0x00,0xf0,0x10,0x10,0xa0,0x20,0x40,0x80,0x60,0x18,0x0e,0x04 -+// 33415 芇 ; -+,0x04,0x04,0x7f,0x04,0x04,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x10,0x10,0xff,0x10,0x90,0x80,0xfc,0x84,0x84,0x84,0x84,0x84,0x94,0x88,0x80,0x80 -+// 33416 芈 ; -+,0x04,0x04,0x04,0x3c,0x04,0x04,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x90,0x90,0x90,0x9e,0x90,0x90,0x80,0xfe,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80 -+// 33417 芉 ; -+,0x04,0x04,0x7f,0x04,0x04,0x1f,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x10,0xfc,0x80,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80 -+// 33418 芊 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0x20,0x1c,0xe0,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80 -+// 33419 芋 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x20,0x20,0xff,0x20,0x00,0xfc,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 33420 芌 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x00,0x7f,0x02,0x02,0x07,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x00,0xfc,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0x50,0x20 -+// 33421 芍 ; -+,0x02,0x02,0x7f,0x02,0x08,0x0f,0x08,0x10,0x22,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x00,0xfc,0x04,0x04,0x04,0x04,0xc4,0x84,0x04,0x04,0x28,0x10 -+// 33422 芎 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x20,0xff,0x20,0x20,0xfc,0x04,0x04,0xfc,0x00,0x00,0xfe,0x02,0x02,0x02,0x14,0x08 -+// 33423 芏 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x10,0x10,0xff,0x10,0x10,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0xff,0x00,0x00 -+// 33424 芐 ; -+,0x02,0x02,0x7f,0x02,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x00,0xff,0x80,0x80,0xc0,0xb0,0x98,0x90,0x80,0x80,0x80,0x80 -+// 33425 芑 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x20,0x20,0xff,0x20,0x20,0xf8,0x08,0x08,0xf8,0x00,0x00,0x02,0x02,0x02,0xfe,0x00 -+// 33426 芒 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x10,0x10,0xff,0x10,0x90,0x40,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 33427 芓 ; -+,0x02,0x02,0x3f,0x02,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x01,0x00,0x10,0x10,0xff,0x10,0x00,0xf8,0x10,0x20,0x40,0xff,0x40,0x40,0x40,0x40,0x40,0x80 -+// 33428 芔 ; -+,0x00,0x10,0x10,0x1f,0x10,0x00,0x08,0x49,0x49,0x49,0x7f,0x49,0x08,0x10,0x20,0x40,0x80,0x84,0x84,0xfc,0x04,0x00,0x08,0x49,0x49,0x49,0x7f,0x49,0x08,0x08,0x08,0x08 -+// 33429 芕 ; -+,0x04,0x04,0x7f,0x04,0x02,0x02,0x03,0x04,0x05,0x08,0x10,0x00,0x00,0x03,0x0c,0x30,0x10,0x10,0xff,0x10,0x00,0x00,0xfc,0x08,0x08,0x90,0xa0,0x40,0x80,0x00,0x00,0x00 -+// 33430 芖 ; -+,0x04,0x04,0x7f,0x04,0x04,0x04,0x00,0x3f,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x60,0x10,0x10,0xff,0x10,0x90,0x90,0x80,0xff,0x80,0x40,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 33431 芗 ; -+,0x04,0x04,0x7f,0x04,0x02,0x04,0x0f,0x00,0x01,0x0f,0x04,0x00,0x00,0x01,0x06,0x38,0x10,0x10,0xff,0x10,0x00,0x10,0xe0,0x44,0x86,0xf8,0x10,0x20,0x40,0x80,0x00,0x00 -+// 33432 芘 ; -+,0x04,0x04,0x7f,0x04,0x08,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x09,0x0a,0x1c,0x08,0x10,0x10,0xff,0x10,0x20,0x20,0x20,0x26,0x38,0x20,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 33433 芙 ; -+,0x04,0x04,0x7f,0x04,0x04,0x00,0x1f,0x00,0x00,0x7f,0x01,0x01,0x02,0x04,0x08,0x30,0x20,0x20,0xff,0x20,0xa0,0x80,0xfe,0x80,0x80,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 33434 芚 ; -+,0x04,0x04,0x7f,0x04,0x04,0x7f,0x00,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xfe,0x20,0xa0,0xfe,0x80,0x84,0x84,0x84,0xfc,0x80,0x82,0x83,0x7e,0x00 -+// 33435 芛 ; -+,0x04,0x04,0x7f,0x04,0x1f,0x01,0x01,0x7f,0x01,0x01,0x1f,0x02,0x04,0x08,0x10,0x60,0x20,0x20,0xff,0x20,0xf8,0x08,0x08,0xff,0x08,0x08,0xf8,0x08,0x00,0x00,0x00,0x00 -+// 33436 芜 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x01,0x01,0x3f,0x01,0x02,0x02,0x04,0x08,0x10,0x20,0x20,0x20,0xff,0x20,0x00,0xfc,0x00,0x00,0xfe,0x40,0x40,0x42,0x42,0x43,0x3e,0x00 -+// 33437 芝 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x1f,0x00,0x00,0x00,0x01,0x06,0x18,0x26,0x41,0x00,0x10,0x10,0xff,0x10,0x90,0x40,0xfc,0x08,0x10,0x60,0x80,0x00,0x00,0x00,0xff,0x00 -+// 33438 芞 ; -+,0x02,0x02,0x7f,0x02,0x08,0x0f,0x08,0x0f,0x10,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x00,0xfc,0x00,0xf8,0x00,0xf8,0x08,0x08,0x08,0x09,0x05,0x02 -+// 33439 芟 ; -+,0x02,0x7f,0x02,0x00,0x07,0x04,0x04,0x08,0x17,0x02,0x02,0x01,0x00,0x03,0x0c,0x30,0x20,0xff,0x20,0x00,0xf0,0x10,0x10,0x0e,0xf0,0x10,0x10,0x20,0xc0,0x30,0x0f,0x02 -+// 33440 芠 ; -+,0x02,0x7f,0x02,0x02,0x00,0x3f,0x04,0x04,0x02,0x02,0x01,0x00,0x01,0x02,0x0c,0x30,0x10,0xff,0x10,0x90,0x40,0xff,0x10,0x10,0x10,0x20,0x20,0xc0,0x20,0x18,0x07,0x02 -+// 33441 芡 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0f,0x08,0x10,0x20,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x10,0x10,0xff,0x10,0x00,0xfe,0x04,0x88,0x80,0x80,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 33442 芢 ; -+,0x02,0x02,0x7f,0x02,0x04,0x06,0x0c,0x09,0x18,0x28,0x48,0x08,0x08,0x08,0x0b,0x08,0x10,0x10,0xff,0x10,0x10,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00 -+// 33443 芣 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x00,0x00,0x01,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x10,0xff,0x80,0x80,0xa0,0x90,0x8c,0x84,0x80,0x80,0x80,0x80 -+// 33444 芤 ; -+,0x02,0x02,0x3f,0x02,0x3f,0x01,0x02,0x04,0x05,0x06,0x1c,0x64,0x04,0x04,0x14,0x08,0x20,0x20,0xff,0x20,0x80,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 33445 芥 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x01,0x02,0x0c,0x72,0x02,0x02,0x04,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x90,0x80,0x60,0x18,0x07,0x12,0x10,0x10,0x10,0x10,0x10,0x10 -+// 33446 芦 ; -+,0x02,0x02,0x7f,0x02,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x10,0x10,0xff,0x90,0x40,0xfc,0x04,0x04,0xfc,0x04,0x00,0x00,0x00,0x00,0x00,0x00 -+// 33447 芧 ; -+,0x02,0x02,0x3f,0x02,0x1f,0x00,0x01,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x20,0x20,0xff,0x20,0xfc,0x08,0x10,0xa0,0xff,0x42,0x44,0x40,0x40,0x40,0x40,0x80 -+// 33448 芨 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x02,0x02,0x02,0x02,0x05,0x05,0x08,0x08,0x10,0x23,0x4c,0x20,0xff,0x20,0x20,0xf0,0x20,0x20,0x40,0x7c,0x08,0x10,0xa0,0x60,0x98,0x07,0x02 -+// 33449 芩 ; -+,0x02,0x7f,0x02,0x02,0x00,0x01,0x02,0x05,0x18,0x60,0x0f,0x00,0x00,0x00,0x00,0x00,0x10,0xff,0x10,0x90,0x80,0x40,0x20,0x18,0xc7,0x82,0xf8,0x10,0x10,0x20,0x20,0x40 -+// 33450 芪 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x16,0x38,0x10,0x20,0x20,0xff,0x20,0x3c,0xe0,0x80,0x80,0xfe,0x40,0x40,0x40,0x24,0x24,0x14,0x08 -+// 33451 芫 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x00,0x00,0x7f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x20,0xff,0x20,0x20,0xfc,0x00,0x00,0xff,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 33452 芬 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x06,0x04,0x0b,0x11,0x21,0x02,0x02,0x04,0x08,0x10,0x20,0x20,0xff,0x20,0x20,0x10,0x08,0x04,0xf3,0x12,0x10,0x10,0x10,0x10,0x50,0x20 -+// 33453 芭 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x07,0x00,0x20,0x20,0xff,0x20,0x20,0xf8,0x88,0x88,0x88,0xf8,0x00,0x02,0x02,0x03,0xfe,0x00 -+// 33454 芮 ; -+,0x04,0x04,0x7f,0x04,0x04,0x1f,0x10,0x10,0x10,0x11,0x12,0x14,0x18,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x90,0xfc,0x84,0x84,0x84,0x44,0x34,0x24,0x04,0x04,0x14,0x08 -+// 33455 芯 ; -+,0x02,0x02,0x3f,0x02,0x02,0x01,0x00,0x04,0x04,0x24,0x24,0x24,0x44,0x04,0x03,0x00,0x10,0x10,0xff,0x10,0x10,0x00,0x80,0xc8,0x44,0x42,0x03,0x0a,0x08,0x0c,0xf8,0x00 -+// 33456 芰 ; -+,0x04,0x04,0x7f,0x04,0x00,0x3f,0x00,0x00,0x0f,0x04,0x02,0x01,0x00,0x03,0x0c,0x70,0x10,0x10,0xff,0x90,0x80,0xfe,0x80,0x80,0xf8,0x10,0x20,0x20,0xc0,0x30,0x0f,0x02 -+// 33457 花 ; -+,0x02,0x02,0x7f,0x02,0x04,0x06,0x04,0x0c,0x14,0x24,0x04,0x05,0x04,0x04,0x04,0x04,0x20,0x20,0xff,0x20,0x00,0x40,0x48,0x4c,0x50,0x60,0xc0,0x42,0x42,0x43,0x3e,0x00 -+// 33458 芲 ; -+,0x04,0x04,0x7f,0x04,0x04,0x01,0x02,0x04,0x1a,0x62,0x02,0x03,0x0e,0x02,0x02,0x01,0x10,0x10,0xff,0x90,0x90,0x40,0x20,0x18,0x07,0x32,0xc0,0x00,0x04,0x04,0x06,0xfc -+// 33459 芳 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x7f,0x02,0x02,0x03,0x02,0x04,0x04,0x08,0x10,0x20,0x10,0x10,0xff,0x10,0x90,0x40,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x50,0x20 -+// 33460 芴 ; -+,0x02,0x02,0x3f,0x02,0x04,0x07,0x09,0x11,0x62,0x04,0x08,0x30,0x01,0x02,0x0c,0x30,0x10,0x10,0xff,0x10,0x00,0xff,0x22,0x22,0x22,0x42,0x42,0x82,0x02,0x02,0x14,0x08 -+// 33461 芵 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x1f,0x00,0x00,0x7f,0x00,0x01,0x02,0x04,0x08,0x30,0x10,0x10,0xff,0x10,0x90,0x80,0xf8,0x88,0x88,0xff,0x80,0x40,0x20,0x18,0x07,0x02 -+// 33462 芶 ; -+,0x02,0x02,0x7f,0x02,0x04,0x07,0x09,0x11,0x21,0x42,0x04,0x0f,0x04,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x00,0xfc,0x04,0x84,0x04,0x44,0x24,0xf4,0x24,0x04,0x14,0x08 -+// 33463 芷 ; -+,0x04,0x04,0x7f,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x7f,0x00,0x10,0x10,0xff,0x10,0x10,0x80,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0x80,0xff,0x00 -+// 33464 芸 ; -+,0x02,0x02,0x3f,0x02,0x02,0x0f,0x00,0x00,0x7f,0x01,0x01,0x02,0x04,0x08,0x1f,0x00,0x10,0x10,0xff,0x10,0x10,0xfc,0x00,0x00,0xff,0x00,0x90,0x08,0x04,0xfe,0x84,0x00 -+// 33465 芹 ; -+,0x02,0x02,0x7f,0x02,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x20,0x20,0xff,0x20,0x7c,0x80,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 33466 芺 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x00,0x00,0x3f,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x10,0x10,0xff,0x10,0x10,0xfc,0x80,0x80,0xff,0x40,0x40,0x20,0x10,0x08,0x07,0x02 -+// 33467 芻 ; -+,0x04,0x0f,0x10,0x28,0x4f,0x01,0x02,0x04,0x0f,0x30,0x08,0x0f,0x00,0x01,0x06,0x18,0x00,0xfe,0x82,0x8a,0xfa,0x02,0x0e,0x00,0xfe,0x82,0x92,0xf2,0x92,0x02,0x0a,0x04 -+// 33468 芼 ; -+,0x04,0x02,0x7f,0x02,0x04,0x02,0x3d,0x01,0x1f,0x01,0x03,0x3d,0x01,0x01,0x00,0x00,0x30,0x20,0xff,0x20,0x10,0xf8,0x00,0x38,0xc0,0x04,0xfc,0x02,0x02,0x01,0xfe,0x00 -+// 33469 芽 ; -+,0x05,0x02,0x3f,0x02,0x1f,0x08,0x06,0x04,0x0f,0x08,0x00,0x01,0x06,0x38,0x40,0x00,0x20,0x12,0xff,0x30,0xee,0x10,0x10,0x10,0xbf,0x50,0x90,0x10,0x10,0x90,0x70,0x00 -+// 33470 芾 ; -+,0x04,0x04,0x7f,0x04,0x00,0x7f,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x20,0x20,0xff,0x20,0x80,0xff,0x80,0x80,0xf8,0x88,0x88,0x88,0xa8,0x90,0x80,0x00 -+// 33471 芿 ; -+,0x02,0x3f,0x02,0x06,0x04,0x0d,0x08,0x18,0x28,0x48,0x08,0x08,0x09,0x09,0x0a,0x00,0x10,0xff,0x10,0x10,0x00,0xfe,0x44,0x48,0x5e,0xc2,0x82,0x82,0x02,0x12,0x0c,0x00 -+// 33472 苀 ; -+,0x04,0x7f,0x04,0x05,0x00,0x00,0x3f,0x00,0x03,0x02,0x02,0x04,0x04,0x08,0x30,0x00,0x30,0xff,0x20,0x20,0x80,0x80,0xff,0x00,0xe0,0x20,0x20,0x20,0x21,0x21,0x1e,0x00 -+// 33473 苁 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x04,0x04,0x04,0x0c,0x0a,0x11,0x11,0x20,0x43,0x00,0x10,0x10,0xff,0x10,0x10,0x00,0x10,0x10,0x10,0x28,0x28,0x24,0x44,0x83,0x02,0x00 -+// 33474 苂 ; -+,0x04,0x04,0x3f,0x04,0x04,0x00,0x00,0x08,0x09,0x19,0x01,0x02,0x04,0x18,0x60,0x00,0x10,0x10,0xff,0x10,0x10,0x80,0x80,0x8c,0xc8,0x50,0x20,0x20,0x18,0x0f,0x02,0x00 -+// 33475 苃 ; -+,0x04,0x04,0x7f,0x04,0x01,0x7f,0x01,0x02,0x03,0x05,0x05,0x08,0x10,0x61,0x0e,0x00,0x10,0x10,0xff,0x90,0x08,0xff,0x00,0x00,0xf8,0x08,0x10,0xa0,0x60,0x98,0x06,0x00 -+// 33476 苄 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0x90,0x40,0xfe,0x80,0xc0,0xb0,0x98,0x90,0x80,0x80,0x80,0x00 -+// 33477 苅 ; -+,0x04,0x04,0x7f,0x04,0x00,0x00,0x21,0x11,0x0a,0x04,0x0a,0x0b,0x11,0x21,0x00,0x00,0x20,0x20,0xff,0x20,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x14,0x08,0x00 -+// 33478 苆 ; -+,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x0f,0x78,0x08,0x09,0x09,0x06,0x00,0x01,0x00,0x20,0x20,0xff,0x20,0x20,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x52,0x8c,0x00,0x00 -+// 33479 苇 ; -+,0x04,0x04,0x7f,0x04,0x00,0x3f,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x80,0xfe,0x80,0xfc,0x80,0x80,0xfe,0x82,0x82,0x8a,0x84,0x00 -+// 33480 苈 ; -+,0x02,0x7f,0x02,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x11,0x11,0x22,0x24,0x48,0x00,0x10,0xff,0x10,0x00,0xff,0x80,0x80,0xfc,0x84,0x84,0x04,0x04,0x04,0x24,0x18,0x00 -+// 33481 苉 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x11,0x11,0x11,0x12,0x12,0x14,0x18,0x10,0x1f,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x20,0x20,0x20,0x20,0x20,0x1e,0x00,0x00,0xff,0x00 -+// 33482 苊 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x10,0x10,0x13,0x12,0x12,0x12,0x12,0x22,0x22,0x41,0x00,0x10,0x10,0xff,0x10,0xfe,0x00,0x00,0xf8,0x08,0x08,0x08,0x28,0x12,0x02,0xfc,0x00 -+// 33483 苋 ; -+,0x02,0x02,0x7f,0x02,0x00,0x0f,0x08,0x08,0x08,0x09,0x09,0x0b,0x02,0x0c,0x30,0x00,0x20,0x20,0xff,0x20,0x00,0xf8,0x88,0x88,0x88,0xc8,0x48,0x48,0x42,0x42,0x3c,0x00 -+// 33484 苌 ; -+,0x02,0x7f,0x02,0x02,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x05,0x0e,0x04,0x10,0xff,0x10,0x10,0x00,0x30,0x40,0x80,0xff,0x80,0x40,0x20,0x18,0x8e,0x04,0x00 -+// 33485 苍 ; -+,0x04,0x7f,0x04,0x05,0x01,0x03,0x06,0x08,0x77,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x10,0xff,0x10,0x10,0x80,0x40,0x30,0x0c,0xf7,0x10,0x10,0x50,0x24,0x04,0xf8,0x00 -+// 33486 苎 ; -+,0x04,0x04,0x7f,0x04,0x04,0x00,0x1f,0x10,0x20,0x00,0x00,0x00,0x00,0x7f,0x00,0x00,0x10,0x10,0xff,0x10,0x90,0x40,0xff,0x02,0x04,0x00,0x00,0x00,0x02,0xff,0x00,0x00 -+// 33487 苏 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x1f,0x00,0x09,0x09,0x1b,0x12,0x04,0x08,0x30,0x00,0x20,0x20,0xff,0x20,0xa0,0x80,0xf8,0x88,0x88,0x0a,0x09,0x09,0x08,0x48,0x30,0x00 -+// 33488 苐 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x00,0x00,0x0f,0x08,0x08,0x0f,0x02,0x04,0x18,0x60,0x00,0x20,0x20,0xff,0x20,0xfc,0x84,0x84,0xfc,0x80,0x80,0xfe,0x82,0x82,0x9c,0x88,0x80 -+// 33489 苑 ; -+,0x02,0x02,0x3f,0x02,0x12,0x10,0x1f,0x11,0x21,0x29,0x45,0x02,0x04,0x08,0x10,0x20,0x10,0x10,0xff,0x10,0x10,0x7c,0x44,0x44,0x44,0x44,0x5c,0x48,0x41,0x41,0x3f,0x00 -+// 33490 苒 ; -+,0x04,0x04,0x7f,0x04,0x04,0x1f,0x10,0x10,0x1f,0x10,0x10,0x7f,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x90,0x90,0xfc,0x84,0x84,0xfc,0x84,0x84,0xff,0x04,0x24,0x14,0x08 -+// 33491 苓 ; -+,0x02,0x02,0x7f,0x02,0x00,0x01,0x02,0x0c,0x70,0x2f,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x10,0xff,0x90,0x80,0x40,0x30,0x8c,0x43,0xfc,0x08,0x10,0x20,0xc0,0x60,0x40 -+// 33492 苔 ; -+,0x02,0x02,0x3f,0x02,0x01,0x02,0x04,0x08,0x1f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x20,0x20,0xff,0x20,0x00,0x08,0x04,0x7e,0xc4,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 33493 苕 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x02,0x02,0x04,0x08,0x17,0x04,0x04,0x04,0x07,0x04,0x10,0x10,0xff,0x10,0x10,0xfc,0x04,0x04,0x14,0x08,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 33494 苖 ; -+,0x04,0x04,0x7f,0x04,0x04,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x10,0x10,0xff,0x10,0x90,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 33495 苗 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x04,0x00 -+// 33496 苘 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x10,0x13,0x12,0x12,0x12,0x13,0x12,0x10,0x10,0x10,0x20,0x20,0xff,0x20,0x00,0xfc,0x04,0xe4,0x24,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 33497 苙 ; -+,0x04,0x04,0x7f,0x04,0x00,0x00,0x3f,0x08,0x04,0x04,0x02,0x02,0x02,0x7f,0x00,0x00,0x20,0x20,0xff,0x20,0x80,0x40,0xfe,0x10,0x18,0x10,0x10,0x20,0x20,0xff,0x00,0x00 -+// 33498 苚 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0x20,0x40,0x10,0x10,0xff,0x10,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x84,0x94,0x08 -+// 33499 苛 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x00,0xfe,0x08,0xc8,0x48,0x48,0xc8,0x48,0x08,0x48,0x28,0x10 -+// 33500 苜 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x20,0x20,0xff,0x20,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04 -+// 33501 苝 ; -+,0x02,0x02,0x7f,0x02,0x02,0x02,0x02,0x3e,0x02,0x02,0x02,0x0e,0x72,0x22,0x02,0x02,0x10,0x10,0xff,0x10,0x10,0x20,0x24,0x2e,0x30,0x20,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 33502 苞 ; -+,0x02,0x02,0x7f,0x0a,0x08,0x0f,0x10,0x10,0x2f,0x08,0x0f,0x08,0x08,0x08,0x07,0x00,0x20,0x20,0xff,0x20,0x00,0xfc,0x04,0x04,0xc4,0x44,0xc4,0x14,0x09,0x01,0xff,0x00 -+// 33503 苟 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x0f,0x08,0x10,0x27,0x44,0x04,0x04,0x07,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x02,0x02,0xe2,0x22,0x22,0x22,0xe2,0x02,0x0a,0x04 -+// 33504 苠 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x08,0x08,0x09,0x0a,0x1c,0x08,0x10,0x10,0xff,0x10,0xfc,0x04,0x04,0xfc,0x40,0xfe,0x40,0x20,0x22,0x12,0x0a,0x04 -+// 33505 苡 ; -+,0x02,0x02,0x7f,0x02,0x00,0x12,0x11,0x11,0x11,0x10,0x10,0x12,0x14,0x18,0x10,0x01,0x20,0x20,0xff,0x20,0x04,0x04,0x04,0x84,0x04,0x08,0x08,0x08,0x14,0x22,0x43,0x82 -+// 33506 苢 ; -+,0x02,0x7f,0x02,0x02,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x10,0xff,0x10,0x10,0xfc,0x04,0x04,0xfc,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00 -+// 33507 苣 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x00,0x10,0x10,0xff,0x10,0xfe,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08,0x00,0x00,0xff,0x00 -+// 33508 苤 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x00,0x00,0x00,0x01,0x02,0x0c,0x30,0x00,0x00,0x7f,0x00,0x20,0x20,0xff,0x20,0xfe,0x40,0x80,0x80,0x90,0x8c,0x86,0x84,0x80,0x80,0xff,0x00 -+// 33509 若 ; -+,0x02,0x02,0x3f,0x02,0x02,0x01,0x7f,0x02,0x04,0x0f,0x14,0x24,0x44,0x07,0x04,0x00,0x10,0x10,0xff,0x10,0x90,0x00,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 33510 苦 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x7f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x10,0x10,0xff,0x10,0x90,0x80,0xff,0x80,0x80,0xf8,0x08,0x08,0x08,0xf8,0x08,0x00 -+// 33511 苧 ; -+,0x04,0x04,0x7f,0x04,0x00,0x1f,0x20,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x10,0x10,0xff,0x90,0x80,0xff,0x02,0x00,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 33512 苨 ; -+,0x02,0x7f,0x02,0x00,0x0f,0x08,0x08,0x0f,0x09,0x09,0x09,0x09,0x11,0x11,0x20,0x40,0x10,0xff,0x10,0x00,0xfc,0x04,0x04,0xfc,0x00,0x0c,0x30,0xc2,0x02,0x03,0xfe,0x00 -+// 33513 苩 ; -+,0x04,0x04,0x7f,0x04,0x04,0x01,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x10,0x10,0xff,0x10,0x90,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 33514 苪 ; -+,0x02,0x7f,0x02,0x02,0x7f,0x00,0x00,0x1f,0x10,0x11,0x11,0x12,0x14,0x18,0x10,0x10,0x20,0xff,0x20,0x20,0xff,0x80,0x80,0xfc,0x84,0x44,0x34,0x14,0x04,0x04,0x14,0x08 -+// 33515 苫 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x10,0x10,0xff,0x10,0x90,0x80,0xfe,0x80,0x80,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 33516 苬 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x10,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x1f,0x10,0x00,0x20,0xff,0x20,0x20,0xfe,0x82,0x82,0x82,0x42,0x22,0x12,0x0a,0x02,0xfe,0x02,0x00 -+// 33517 苭 ; -+,0x02,0x02,0x7f,0x02,0x08,0x0c,0x12,0x23,0x7e,0x04,0x09,0x17,0x3d,0x10,0x00,0x01,0x20,0x20,0xff,0x20,0x00,0x20,0x20,0x7e,0x22,0x22,0x22,0xa2,0x42,0x42,0x8a,0x04 -+// 33518 苮 ; -+,0x04,0x04,0x7f,0x04,0x08,0x0c,0x08,0x1a,0x2a,0x4a,0x0a,0x0a,0x0a,0x0b,0x0a,0x08,0x10,0x10,0xff,0x10,0x10,0x20,0x20,0x22,0x22,0x22,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 33519 苯 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x01,0x02,0x02,0x04,0x08,0x17,0x20,0x40,0x00,0x00,0x10,0x10,0xff,0x10,0x80,0xfe,0xc0,0xa0,0x90,0x88,0x84,0xfb,0x82,0x80,0x80,0x80 -+// 33520 苰 ; -+,0x02,0x7f,0x02,0x00,0x1f,0x01,0x01,0x1f,0x10,0x10,0x1f,0x01,0x01,0x09,0x05,0x02,0x10,0xff,0x10,0x00,0x08,0x08,0x08,0x10,0x10,0x10,0x24,0x22,0x5f,0xf3,0x42,0x00 -+// 33521 英 ; -+,0x02,0x02,0x7f,0x02,0x00,0x0f,0x08,0x08,0x08,0x7f,0x00,0x01,0x02,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x80,0xf8,0x88,0x88,0x88,0xff,0x80,0x40,0x20,0x18,0x0e,0x04 -+// 33522 苲 ; -+,0x02,0x02,0x3f,0x02,0x0a,0x08,0x0f,0x12,0x23,0x42,0x02,0x03,0x02,0x02,0x02,0x02,0x10,0x10,0xff,0x10,0x10,0x00,0xff,0x00,0xfe,0x00,0x00,0xff,0x00,0x00,0x00,0x00 -+// 33523 苳 ; -+,0x04,0x04,0x7f,0x04,0x02,0x07,0x0a,0x31,0x00,0x03,0x0c,0x70,0x00,0x01,0x00,0x00,0x10,0x10,0xff,0x30,0x00,0xfc,0x10,0x20,0xc0,0x30,0x8f,0x42,0x20,0x00,0xc0,0x40 -+// 33524 苴 ; -+,0x02,0x02,0x7f,0x02,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x7f,0x00,0x10,0x10,0xff,0x10,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xff,0x00 -+// 33525 苵 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x0f,0x10,0x20,0x7f,0x01,0x01,0x02,0x04,0x18,0x60,0x20,0x20,0xff,0x20,0x80,0x80,0xfc,0x80,0x80,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 33526 苶 ; -+,0x02,0x02,0x3f,0x02,0x00,0x01,0x02,0x04,0x18,0x64,0x06,0x08,0x10,0x20,0x02,0x01,0x10,0x10,0xff,0x90,0x80,0x40,0x30,0x8c,0x83,0x90,0x88,0x84,0x86,0x84,0x80,0x00 -+// 33527 苷 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x04,0x7f,0x04,0x04,0x07,0x04,0x04,0x04,0x07,0x04,0x20,0x20,0xff,0x20,0x20,0x10,0x10,0xff,0x10,0x10,0xf0,0x10,0x10,0x10,0xf0,0x10 -+// 33528 苸 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x08,0x06,0x04,0x7f,0x00,0x00,0x00,0x00,0x02,0x01,0x10,0x10,0xff,0x10,0x3c,0xc0,0x88,0x8c,0x90,0xff,0x80,0x80,0x80,0x80,0x80,0x00 -+// 33529 苹 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x08,0x04,0x06,0x04,0x7f,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x88,0x8c,0x90,0xa0,0xff,0x80,0x80,0x80,0x80,0x80 -+// 33530 苺 ; -+,0x02,0x02,0x3f,0x02,0x07,0x05,0x04,0x04,0x7f,0x08,0x08,0x1f,0x08,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0xf8,0x08,0x88,0x88,0xff,0x88,0x48,0xff,0x08,0x08,0x28,0x10 -+// 33531 苻 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x0c,0x08,0x1b,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x20,0x28,0x08,0x08,0xff,0x08,0x88,0x48,0x68,0x48,0x08,0x28,0x10 -+// 33532 苼 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0c,0x08,0x0f,0x10,0x20,0x4f,0x00,0x00,0x00,0x3f,0x00,0x10,0x10,0xff,0x10,0x80,0x80,0x80,0xfc,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 33533 苽 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x21,0x23,0x41,0x20,0x20,0xff,0x20,0x7c,0xa0,0x20,0x20,0x10,0x10,0x08,0x48,0x24,0x53,0x92,0x00 -+// 33534 苾 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x02,0x02,0x12,0x12,0x12,0x22,0x03,0x0e,0x73,0x00,0x10,0x10,0xff,0x10,0x00,0x88,0x4c,0x08,0x12,0x21,0x41,0x89,0x08,0x0c,0xf8,0x00 -+// 33535 苿 ; -+,0x04,0x7f,0x04,0x04,0x00,0x1f,0x00,0x00,0x3f,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x10,0xff,0x10,0x90,0x80,0xfc,0x80,0x80,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 33536 茀 ; -+,0x04,0x3f,0x04,0x01,0x3f,0x01,0x01,0x1f,0x11,0x1f,0x02,0x02,0x04,0x04,0x08,0x10,0x10,0xff,0x10,0x20,0xfc,0x24,0x24,0xfc,0x20,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20 -+// 33537 茁 ; -+,0x04,0x04,0x7f,0x04,0x00,0x10,0x10,0x10,0x1f,0x00,0x20,0x20,0x20,0x3f,0x20,0x00,0x20,0x20,0xff,0x20,0x80,0x84,0x84,0x84,0xfc,0x80,0x82,0x82,0x82,0xfe,0x02,0x00 -+// 33538 茂 ; -+,0x02,0x02,0x7f,0x02,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x21,0x26,0x40,0x20,0x20,0xff,0x20,0x50,0x48,0xff,0x40,0x42,0x24,0x28,0x30,0x50,0x89,0x05,0x02 -+// 33539 范 ; -+,0x02,0x02,0x7f,0x02,0x20,0x18,0x48,0x30,0x24,0x04,0x08,0x70,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x30,0x00,0xfc,0x84,0x84,0x84,0x9c,0x88,0x80,0x82,0x82,0x7e,0x00 -+// 33540 茄 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x04,0x3f,0x04,0x04,0x08,0x08,0x10,0x23,0x41,0x00,0x10,0x10,0xff,0x10,0x10,0x00,0x3e,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xbe,0x22,0x00 -+// 33541 茅 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x01,0x00,0x3f,0x00,0x01,0x02,0x04,0x18,0x61,0x00,0x20,0x20,0xff,0x20,0x00,0xfc,0x18,0xa0,0xff,0xc2,0x44,0x40,0x40,0x40,0x40,0x80 -+// 33542 茆 ; -+,0x02,0x3f,0x02,0x00,0x03,0x1c,0x11,0x11,0x11,0x17,0x39,0x12,0x02,0x04,0x08,0x10,0x10,0xff,0x10,0x10,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x4e,0x44,0x40,0x40,0x40 -+// 33543 茇 ; -+,0x02,0x02,0x7f,0x02,0x01,0x01,0x3f,0x02,0x03,0x05,0x05,0x08,0x08,0x10,0x21,0x46,0x20,0x20,0xff,0x20,0x10,0x08,0xfe,0x00,0xf8,0x10,0x10,0xa0,0x40,0xb0,0x0e,0x04 -+// 33544 茈 ; -+,0x02,0x02,0x7f,0x02,0x00,0x02,0x02,0x12,0x13,0x12,0x12,0x12,0x13,0x1e,0x70,0x00,0x10,0x10,0xff,0x10,0x20,0x22,0x23,0x26,0xac,0x30,0x20,0x20,0xa1,0x21,0x1f,0x00 -+// 33545 茉 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x00,0x00,0x1f,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x10,0x10,0xff,0x10,0x80,0xff,0x80,0x80,0xfc,0xa0,0x90,0x98,0x8e,0x84,0x80,0x80 -+// 33546 茊 ; -+,0x02,0x02,0x7f,0x02,0x00,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x7f,0x00,0x00,0x20,0x20,0xff,0x20,0x00,0x7c,0xc0,0x00,0x00,0xfc,0x20,0x20,0x20,0xff,0x00,0x00 -+// 33547 茋 ; -+,0x02,0x7f,0x02,0x02,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x11,0x10,0x14,0x38,0x10,0x20,0xff,0x20,0x00,0x78,0x80,0x40,0x40,0xfe,0x40,0x20,0x22,0x92,0xca,0x84,0x00 -+// 33548 茌 ; -+,0x02,0x7f,0x02,0x04,0x06,0x04,0x08,0x18,0x2b,0x48,0x08,0x08,0x08,0x0b,0x08,0x00,0x10,0xff,0x10,0x10,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0xff,0x00,0x00 -+// 33549 茍 ; -+,0x02,0x02,0x3e,0x02,0x08,0x0f,0x10,0x2f,0x48,0x08,0x08,0x0f,0x08,0x00,0x00,0x00,0x20,0x20,0x3f,0x20,0x00,0xfc,0x04,0xc4,0x44,0x44,0x44,0xc4,0x44,0x04,0x28,0x10 -+// 33550 茎 ; -+,0x02,0x02,0x3f,0x02,0x0f,0x00,0x00,0x01,0x06,0x18,0x6f,0x00,0x00,0x00,0x00,0x3f,0x10,0x10,0xff,0x10,0xf0,0x20,0x40,0xa0,0x18,0x07,0xfa,0x80,0x80,0x80,0x80,0xfe -+// 33551 茏 ; -+,0x02,0x02,0x7f,0x02,0x00,0x00,0x3f,0x01,0x01,0x02,0x02,0x04,0x08,0x11,0x20,0x00,0x10,0x10,0xff,0x10,0x84,0x84,0xff,0x40,0x44,0x48,0x50,0x62,0xc2,0x43,0x3e,0x00 -+// 33552 茐 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x07,0x09,0x15,0x23,0x04,0x08,0x11,0x62,0x04,0x18,0x10,0x10,0xff,0x10,0x10,0x00,0xfc,0x24,0x24,0x44,0xc4,0xa4,0x24,0x04,0x28,0x10 -+// 33553 茑 ; -+,0x02,0x7f,0x02,0x01,0x07,0x04,0x05,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x00,0x10,0xff,0x10,0x00,0xf8,0x08,0x08,0xa8,0x10,0xfe,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 33554 茒 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0f,0x09,0x11,0x29,0x45,0x02,0x04,0x08,0x10,0x20,0x00,0x10,0x10,0xff,0x10,0x3e,0x22,0x24,0x28,0x28,0x24,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 33555 茓 ; -+,0x04,0x04,0x7f,0x05,0x00,0x1f,0x10,0x20,0x02,0x03,0x02,0x04,0x08,0x10,0x60,0x00,0x20,0x20,0xff,0x20,0x80,0xff,0x02,0x24,0x20,0x20,0x10,0x10,0x08,0x07,0x02,0x00 -+// 33556 茔 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x3f,0x20,0x40,0x00,0x1f,0x00,0x00,0x00,0x3f,0x00,0x10,0x10,0xff,0x10,0x10,0x00,0xff,0x82,0x84,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 33557 茕 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x20,0x40,0x1f,0x02,0x02,0x3f,0x02,0x02,0x02,0x02,0x02,0x20,0xff,0x20,0x20,0xff,0x02,0x04,0xf0,0x10,0x10,0xd0,0x10,0x12,0x0a,0x04,0x00 -+// 33558 茖 ; -+,0x02,0x02,0x7f,0x02,0x04,0x07,0x06,0x09,0x10,0x01,0x02,0x0f,0x34,0x04,0x07,0x00,0x20,0x20,0xff,0x20,0x00,0xf8,0x10,0x20,0xc0,0x30,0x0f,0xfa,0x08,0x08,0xf8,0x00 -+// 33559 茗 ; -+,0x02,0x7f,0x02,0x04,0x07,0x04,0x0a,0x11,0x00,0x03,0x1f,0x64,0x04,0x04,0x07,0x04,0x10,0xff,0x10,0x00,0xf8,0x10,0x10,0x20,0xc0,0x38,0xff,0x08,0x08,0x08,0xf8,0x08 -+// 33560 茘 ; -+,0x02,0x7f,0x02,0x00,0x0f,0x02,0x02,0x02,0x04,0x3f,0x09,0x09,0x09,0x11,0x25,0x42,0x10,0xff,0x10,0x00,0xf8,0x08,0x08,0x38,0x10,0x7e,0x12,0x12,0x12,0x22,0x2a,0x44 -+// 33561 茙 ; -+,0x02,0x7f,0x02,0x02,0x00,0x3f,0x00,0x04,0x04,0x3f,0x04,0x04,0x08,0x08,0x11,0x20,0x20,0xff,0x20,0x28,0x24,0xff,0x20,0x24,0x24,0xa8,0x10,0x11,0x29,0x45,0x82,0x00 -+// 33562 茚 ; -+,0x02,0x7f,0x02,0x02,0x03,0x1c,0x10,0x10,0x1f,0x10,0x10,0x13,0x1c,0x10,0x00,0x00,0x10,0xff,0x10,0x10,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 33563 茛 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x09,0x08,0x08,0x09,0x0a,0x1c,0x08,0x20,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x04,0x86,0x48,0x30,0x18,0x07,0x02 -+// 33564 茜 ; -+,0x02,0x02,0x7f,0x02,0x02,0x7f,0x02,0x02,0x1f,0x12,0x12,0x12,0x14,0x18,0x1f,0x10,0x20,0x20,0xff,0x20,0x20,0xff,0x20,0x20,0xfc,0x24,0x24,0x1c,0x04,0x04,0xfc,0x04 -+// 33565 茝 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x10,0x17,0x14,0x14,0x17,0x10,0x10,0x10,0x1f,0x10,0x10,0xff,0x10,0x10,0xfe,0x40,0x40,0xfc,0x04,0x04,0xfc,0x40,0x40,0x40,0xff -+// 33566 茞 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x1f,0x20,0x20,0xff,0x20,0x00,0xfe,0x80,0x80,0xf8,0x08,0x08,0xf8,0x80,0x80,0x80,0xff -+// 33567 茟 ; -+,0x02,0x7f,0x02,0x02,0x0f,0x00,0x7f,0x00,0x0f,0x00,0x1f,0x00,0x7f,0x00,0x00,0x00,0x20,0xff,0x20,0xa0,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 33568 茠 ; -+,0x02,0x02,0x3f,0x02,0x04,0x06,0x0c,0x1b,0x28,0x48,0x08,0x08,0x09,0x0a,0x0c,0x08,0x20,0x20,0xff,0x20,0x00,0x20,0x20,0xff,0x70,0x68,0xa8,0xa4,0x23,0x22,0x20,0x20 -+// 33569 茡 ; -+,0x02,0x3f,0x02,0x02,0x1f,0x10,0x27,0x00,0x00,0x00,0x7f,0x00,0x00,0x00,0x02,0x01,0x10,0xff,0x10,0x90,0xff,0x02,0xf4,0x20,0x40,0x80,0xff,0x80,0x80,0x80,0x80,0x00 -+// 33570 茢 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x04,0x04,0x0f,0x08,0x18,0x25,0x03,0x02,0x04,0x08,0x30,0x10,0xff,0x10,0x12,0xc2,0x12,0x12,0xd2,0x92,0x92,0x12,0x12,0x12,0x02,0x0a,0x04 -+// 33571 茣 ; -+,0x02,0x3f,0x02,0x02,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x00,0x3f,0x01,0x06,0x18,0x60,0x10,0xff,0x10,0x10,0xfc,0x04,0xfc,0x00,0xfc,0x80,0x80,0xfe,0x40,0x30,0x0f,0x02 -+// 33572 茤 ; -+,0x02,0x7f,0x02,0x02,0x03,0x04,0x0b,0x30,0x07,0x38,0x03,0x0c,0x30,0x00,0x07,0x38,0x10,0xff,0x10,0x00,0xfc,0x08,0x30,0xc0,0x80,0xfe,0x04,0x88,0x70,0xc0,0x00,0x00 -+// 33573 茥 ; -+,0x02,0x02,0x7f,0x02,0x00,0x0f,0x00,0x00,0x3f,0x00,0x00,0x0f,0x00,0x00,0x3f,0x00,0x10,0x10,0xff,0x10,0x80,0xfc,0x80,0x80,0xff,0x80,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 33574 茦 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x00,0x0f,0x08,0x08,0x09,0x0a,0x04,0x08,0x10,0x60,0x00,0x20,0xff,0x20,0xa0,0xfe,0x80,0xf8,0x88,0x88,0xc8,0xa8,0x90,0x8c,0x87,0x82,0x80 -+// 33575 茧 ; -+,0x04,0x04,0x7f,0x04,0x04,0x00,0x1f,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x3f,0x00,0x10,0x10,0xff,0x10,0x90,0x80,0xfc,0x84,0x84,0xfc,0x80,0x84,0x82,0xff,0x82,0x00 -+// 33576 茨 ; -+,0x02,0x02,0x7f,0x02,0x20,0x18,0x14,0x05,0x0a,0x08,0x70,0x10,0x10,0x11,0x12,0x14,0x20,0x20,0xff,0x20,0x80,0xfe,0x84,0x28,0x20,0x20,0x50,0x50,0x88,0x0c,0x07,0x02 -+// 33577 茩 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x10,0x10,0x1f,0x10,0x13,0x12,0x12,0x22,0x23,0x42,0x20,0x20,0xff,0x20,0x7e,0xc0,0x00,0x00,0xff,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 33578 茪 ; -+,0x02,0x02,0x3f,0x02,0x00,0x08,0x06,0x04,0x3f,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x80,0x88,0x8c,0x90,0xff,0x20,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 33579 茫 ; -+,0x02,0x02,0x7f,0x02,0x12,0x08,0x4b,0x24,0x24,0x08,0x08,0x70,0x10,0x11,0x10,0x10,0x10,0x10,0xff,0x10,0x20,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x80,0x00 -+// 33580 茬 ; -+,0x02,0x02,0x7f,0x02,0x01,0x01,0x3f,0x02,0x04,0x08,0x1b,0x28,0x08,0x08,0x0b,0x08,0x20,0x20,0xff,0x20,0x20,0x00,0xff,0x00,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 33581 茭 ; -+,0x02,0x02,0x3f,0x02,0x00,0x3f,0x04,0x06,0x08,0x12,0x22,0x01,0x00,0x03,0x0c,0x70,0x20,0x20,0xff,0x20,0x80,0xff,0x10,0x08,0x16,0x14,0x20,0x20,0xc0,0x30,0x0f,0x02 -+// 33582 茮 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x00,0x00,0x7f,0x00,0x04,0x06,0x08,0x10,0x22,0x01,0x10,0x10,0xff,0x10,0x80,0xfc,0x80,0x80,0xff,0x80,0x90,0x88,0x84,0x86,0x84,0x00 -+// 33583 茯 ; -+,0x02,0x3f,0x02,0x04,0x06,0x0c,0x08,0x1b,0x28,0x48,0x08,0x08,0x08,0x08,0x09,0x0a,0x10,0xff,0x10,0x20,0x28,0x24,0x20,0xff,0x20,0x50,0x50,0x48,0x88,0x84,0x03,0x02 -+// 33584 茰 ; -+,0x02,0x3f,0x02,0x02,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x02,0x01,0x02,0x0c,0x30,0x10,0xff,0x10,0x90,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x80,0x80,0x80,0x70,0x0f,0x00 -+// 33585 茱 ; -+,0x02,0x7f,0x02,0x0a,0x08,0x0f,0x08,0x10,0x7f,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x10,0xff,0x10,0x90,0x80,0xfc,0x80,0x80,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 33586 茲 ; -+,0x02,0x02,0x7f,0x02,0x04,0x06,0x08,0x11,0x3e,0x04,0x04,0x0a,0x17,0x39,0x01,0x00,0x10,0x10,0xff,0x10,0x00,0x20,0x34,0x46,0x7c,0x08,0x10,0x24,0x42,0x7f,0x02,0x00 -+// 33587 茳 ; -+,0x02,0x02,0x7f,0x02,0x10,0x0b,0x44,0x30,0x28,0x08,0x08,0x70,0x10,0x10,0x17,0x10,0x10,0x10,0xff,0x10,0x00,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 33588 茴 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x10,0x13,0x12,0x12,0x13,0x10,0x10,0x1f,0x10,0x20,0x20,0xff,0x20,0x20,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x02,0x02,0xfe,0x02 -+// 33589 茵 ; -+,0x04,0x04,0x7f,0x04,0x1f,0x10,0x10,0x17,0x10,0x10,0x11,0x12,0x14,0x10,0x1f,0x10,0x10,0x10,0xff,0x10,0xfc,0x84,0x84,0xf4,0x84,0x84,0x44,0x34,0x24,0x04,0xfc,0x04 -+// 33590 茶 ; -+,0x02,0x02,0x3f,0x02,0x02,0x01,0x02,0x0c,0x17,0x60,0x04,0x06,0x08,0x10,0x22,0x01,0x10,0x10,0xff,0x10,0x90,0x40,0x30,0x8c,0xfb,0x80,0xa0,0x90,0x88,0x8c,0x88,0x00 -+// 33591 茷 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0c,0x08,0x1f,0x18,0x28,0x48,0x08,0x08,0x0b,0x08,0x08,0x20,0x20,0xff,0x20,0x50,0x48,0x5f,0xf0,0x40,0x24,0x28,0x30,0xd0,0x09,0x05,0x02 -+// 33592 茸 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x04,0x07,0x04,0x04,0x07,0x04,0x04,0x7f,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0xfe,0x10,0xf0,0x10,0x10,0xf0,0x10,0x10,0xff,0x10,0x10,0x10 -+// 33593 茹 ; -+,0x02,0x02,0x7f,0x02,0x08,0x08,0x7f,0x09,0x09,0x11,0x1a,0x06,0x09,0x10,0x20,0x40,0x20,0x20,0xff,0x20,0x00,0x00,0xbe,0x22,0x22,0x22,0x22,0x22,0x3e,0xa2,0xc0,0x80 -+// 33594 茺 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x01,0x02,0x04,0x0f,0x02,0x02,0x02,0x04,0x04,0x08,0x20,0x20,0xff,0x20,0xa0,0xfe,0x10,0x08,0x7c,0x88,0x20,0x20,0x22,0x22,0x1e,0x00 -+// 33595 茻 ; -+,0x04,0x04,0x15,0x15,0x1f,0x09,0x10,0x64,0x15,0x15,0x15,0x1f,0x04,0x08,0x10,0x20,0x08,0x08,0x2a,0x2a,0x3e,0x2a,0x08,0x00,0x08,0x2a,0x2a,0x2a,0x3e,0x08,0x08,0x08 -+// 33596 茼 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x17,0x10,0x13,0x12,0x12,0x13,0x12,0x10,0x10,0x20,0x20,0xff,0x20,0x20,0xfc,0x04,0xf4,0x04,0xe4,0x24,0x24,0xe4,0x24,0x14,0x08 -+// 33597 茽 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x0c,0x09,0x19,0x29,0x49,0x09,0x09,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0xff,0x10,0x10,0x10,0x10,0x10 -+// 33598 茾 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x02,0x02,0x02,0x3f,0x02,0x04,0x04,0x08,0x10,0x20,0x10,0x10,0xff,0x10,0x00,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 33599 茿 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x21,0x01,0x02,0x20,0x20,0xff,0x20,0x00,0xf8,0x88,0x88,0xc8,0xa8,0xb8,0xa9,0x89,0x09,0x07,0x00 -+// 33600 荀 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x0f,0x08,0x10,0x27,0x04,0x07,0x04,0x04,0x07,0x04,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x02,0x02,0xe2,0x22,0xe2,0x22,0x22,0xe2,0x2a,0x04 -+// 33601 荁 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x7f,0x00,0x20,0x20,0xff,0x20,0x00,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x00,0xff,0x00 -+// 33602 荂 ; -+,0x02,0x3f,0x02,0x02,0x3f,0x01,0x06,0x1b,0x00,0x3f,0x02,0x03,0x02,0x00,0x00,0x00,0x10,0xff,0x10,0x90,0xfe,0x20,0x18,0xf7,0x00,0xfe,0x00,0xf8,0x08,0x08,0x50,0x20 -+// 33603 荃 ; -+,0x02,0x02,0x3f,0x02,0x02,0x01,0x02,0x04,0x1f,0x60,0x00,0x0f,0x00,0x00,0x3f,0x00,0x10,0x10,0xff,0x10,0x80,0x40,0x30,0x0c,0xf7,0x82,0x80,0xf8,0x80,0x80,0xff,0x00 -+// 33604 荄 ; -+,0x02,0x02,0x7f,0x02,0x02,0x7f,0x01,0x03,0x04,0x0f,0x00,0x03,0x0c,0x30,0x07,0x38,0x20,0x20,0xff,0x20,0xa0,0xff,0x00,0x10,0x18,0xe0,0xcc,0x18,0x20,0xd0,0x0c,0x08 -+// 33605 荅 ; -+,0x02,0x02,0x7f,0x02,0x02,0x01,0x02,0x04,0x0f,0x30,0x00,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0xff,0x10,0x90,0x40,0x20,0x18,0xf7,0x02,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 33606 荆 ; -+,0x04,0x04,0x3f,0x04,0x00,0x1f,0x04,0x04,0x3f,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x81,0x81,0xf1,0x89,0x09,0xe9,0x89,0x89,0xe9,0x89,0x89,0x81,0x81,0x89,0x85,0x82 -+// 33607 荇 ; -+,0x02,0x3f,0x02,0x04,0x06,0x08,0x14,0x26,0x0c,0x14,0x24,0x44,0x04,0x04,0x04,0x04,0x10,0xff,0x10,0x00,0x7e,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 33608 荈 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x0f,0x11,0x11,0x2a,0x46,0x04,0x08,0x10,0x60,0x00,0x20,0x20,0xff,0x20,0x28,0x08,0xff,0x08,0x48,0x48,0xff,0x08,0x08,0x08,0x08,0x08 -+// 33609 草 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x80,0x80,0x80,0x80 -+// 33610 荊 ; -+,0x04,0x04,0x7f,0x04,0x00,0x3f,0x09,0x09,0x3f,0x09,0x09,0x09,0x11,0x11,0x21,0x40,0x20,0x20,0xff,0x20,0x02,0xd2,0x12,0x12,0xd2,0x12,0x12,0x12,0x12,0x02,0x0a,0x04 -+// 33611 荋 ; -+,0x02,0x02,0x7f,0x02,0x00,0x7f,0x01,0x02,0x1f,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x20,0x20,0xff,0x20,0x00,0xff,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0x24,0x0c -+// 33612 荌 ; -+,0x04,0x04,0x7f,0x04,0x00,0x3f,0x22,0x02,0x7f,0x02,0x04,0x07,0x00,0x03,0x0c,0x30,0x10,0x10,0xff,0x10,0x80,0xff,0x02,0x00,0xff,0x10,0x10,0x20,0xe0,0x18,0x06,0x04 -+// 33613 荍 ; -+,0x02,0x02,0x7f,0x02,0x04,0x24,0x24,0x24,0x25,0x26,0x2c,0x34,0x24,0x04,0x04,0x05,0x10,0x10,0xff,0x10,0x80,0x80,0xfe,0x84,0x44,0x48,0x28,0x10,0x28,0x44,0x83,0x02 -+// 33614 荎 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x02,0x02,0x04,0x0f,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x20,0x20,0xff,0x20,0xfe,0x00,0x04,0x7e,0xc4,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 33615 荏 ; -+,0x02,0x3f,0x02,0x02,0x04,0x06,0x09,0x18,0x28,0x4f,0x08,0x08,0x08,0x08,0x0b,0x08,0x10,0xff,0x10,0x10,0x00,0x0e,0xf0,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0xff,0x00 -+// 33616 荐 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x01,0x02,0x05,0x0c,0x14,0x27,0x04,0x04,0x04,0x04,0x04,0x20,0xff,0x20,0xa0,0xff,0x00,0x00,0xfc,0x08,0x10,0xff,0x20,0x20,0x20,0xa0,0x40 -+// 33617 荑 ; -+,0x02,0x02,0x3f,0x02,0x3f,0x00,0x1f,0x00,0x0f,0x08,0x0f,0x01,0x02,0x04,0x08,0x30,0x20,0x20,0xff,0xa0,0xfe,0x80,0xf8,0x88,0xf8,0x80,0xfe,0x42,0x26,0x10,0x0e,0x04 -+// 33618 荒 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x04,0x04,0x07,0x00,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x20,0xff,0x20,0x80,0xfe,0x00,0x00,0xfc,0x00,0x90,0x90,0x91,0x91,0x8f,0x80 -+// 33619 荓 ; -+,0x02,0x02,0x7f,0x02,0x04,0x02,0x3f,0x02,0x02,0x02,0x7f,0x02,0x04,0x04,0x08,0x10,0x10,0x10,0xff,0x10,0x08,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 33620 荔 ; -+,0x02,0x3f,0x02,0x01,0x1f,0x01,0x06,0x18,0x08,0x3f,0x09,0x09,0x11,0x11,0x25,0x42,0x10,0xff,0x10,0x00,0xfc,0x08,0x28,0x10,0x10,0x7e,0x12,0x12,0x22,0x22,0x4a,0x84 -+// 33621 荕 ; -+,0x04,0x04,0x7f,0x04,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x21,0x25,0x42,0x10,0x10,0xff,0x10,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x42,0x4a,0x84 -+// 33622 荖 ; -+,0x02,0x02,0x3f,0x02,0x02,0x00,0x0f,0x00,0x7f,0x00,0x01,0x06,0x1b,0x62,0x02,0x01,0x20,0x20,0xff,0x20,0x20,0x88,0xfc,0x90,0xff,0xc0,0x00,0x38,0xc0,0x02,0x02,0xfe -+// 33623 荗 ; -+,0x02,0x02,0x3f,0x02,0x00,0x00,0x1f,0x10,0x14,0x13,0x12,0x10,0x10,0x21,0x26,0x40,0x10,0x10,0xff,0x10,0x48,0x44,0xff,0x40,0x48,0x4c,0x30,0x20,0x51,0x89,0x05,0x02 -+// 33624 荘 ; -+,0x02,0x7f,0x02,0x02,0x00,0x22,0x12,0x1b,0x12,0x06,0x0a,0x72,0x22,0x02,0x02,0x02,0x10,0xff,0x10,0x10,0x00,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33625 荙 ; -+,0x02,0x02,0x7f,0x02,0x22,0x10,0x10,0x7b,0x08,0x08,0x08,0x08,0x09,0x16,0x21,0x40,0x10,0x10,0xff,0x10,0x10,0x20,0x20,0xfe,0x20,0x50,0x48,0x86,0x04,0x00,0xff,0x00 -+// 33626 荚 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x08,0x06,0x04,0x3f,0x01,0x01,0x02,0x04,0x18,0x60,0x20,0x20,0xff,0x20,0x80,0xfc,0x90,0x98,0xa0,0xff,0x40,0x20,0x10,0x0c,0x07,0x02 -+// 33627 荛 ; -+,0x02,0x02,0x7f,0x02,0x01,0x1f,0x01,0x00,0x0f,0x00,0x3f,0x02,0x02,0x04,0x08,0x10,0x20,0x20,0xff,0x20,0x1e,0xe0,0x0c,0xb2,0x62,0x1c,0xfc,0x20,0x21,0x21,0x1f,0x00 -+// 33628 荜 ; -+,0x02,0x7f,0x02,0x02,0x10,0x1f,0x10,0x10,0x16,0x18,0x00,0x7f,0x00,0x00,0x00,0x00,0x10,0xff,0x10,0x10,0x40,0x4e,0x70,0x41,0x3f,0x80,0x80,0xff,0x80,0x80,0x80,0x80 -+// 33629 荝 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x20,0x24,0x24,0x24,0x24,0x24,0x24,0x0a,0x11,0x21,0x41,0x20,0x20,0xff,0x20,0x84,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0x04,0x04,0x94,0x08 -+// 33630 荞 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x01,0x3f,0x02,0x04,0x18,0x62,0x02,0x02,0x04,0x08,0x10,0x20,0xff,0x20,0x78,0x80,0x00,0xff,0x20,0x10,0x0c,0x13,0x10,0x10,0x10,0x10,0x10 -+// 33631 荟 ; -+,0x02,0x02,0x7f,0x02,0x01,0x02,0x04,0x1f,0x60,0x00,0x3f,0x02,0x04,0x08,0x1f,0x00,0x10,0x10,0xff,0x90,0x40,0x20,0x18,0xf7,0x02,0x04,0xfe,0x10,0x08,0xfc,0x88,0x00 -+// 33632 荠 ; -+,0x02,0x3f,0x02,0x02,0x3f,0x04,0x03,0x00,0x03,0x0c,0x72,0x02,0x02,0x04,0x08,0x10,0x10,0xff,0x90,0x50,0xfe,0x10,0x20,0xc0,0x30,0x0f,0x12,0x10,0x10,0x10,0x10,0x10 -+// 33633 荡 ; -+,0x02,0x3f,0x02,0x10,0x0d,0x08,0x44,0x34,0x24,0x08,0x08,0x71,0x12,0x14,0x10,0x11,0x20,0xff,0x20,0x00,0xfc,0x10,0x20,0xfe,0x52,0x52,0x92,0x22,0x22,0x42,0x94,0x08 -+// 33634 荢 ; -+,0x04,0x04,0x3f,0x05,0x00,0x3f,0x20,0x4f,0x00,0x00,0x7f,0x00,0x00,0x00,0x02,0x01,0x10,0x10,0xff,0x10,0x80,0xff,0x02,0xf8,0x80,0x80,0xff,0x80,0x80,0x80,0x80,0x00 -+// 33635 荣 ; -+,0x02,0x02,0x3f,0x02,0x02,0x3f,0x20,0x40,0x1f,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x20,0x20,0xff,0x20,0x20,0xff,0x82,0x80,0xfe,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 33636 荤 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x21,0x5f,0x02,0x04,0x0f,0x00,0x00,0x7f,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0xff,0x02,0xfc,0x80,0x80,0xf8,0x80,0x80,0xff,0x80,0x80,0x80 -+// 33637 荥 ; -+,0x02,0x02,0x3f,0x02,0x3f,0x20,0x40,0x00,0x3e,0x02,0x04,0x08,0x10,0x20,0x42,0x01,0x10,0x10,0xff,0x10,0xff,0x82,0x80,0x86,0xd8,0xa0,0x90,0x8c,0x87,0x82,0x80,0x00 -+// 33638 荦 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x20,0x44,0x04,0x0f,0x10,0x00,0x7f,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x20,0xff,0x82,0x84,0x80,0xfc,0x80,0x80,0xff,0x80,0x80,0x80 -+// 33639 荧 ; -+,0x02,0x02,0x3f,0x02,0x02,0x3f,0x20,0x40,0x04,0x04,0x08,0x01,0x02,0x04,0x18,0x60,0x10,0x10,0xff,0x10,0x10,0xff,0x02,0x84,0x90,0x98,0xa0,0x40,0x20,0x10,0x0e,0x04 -+// 33640 荨 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x00,0x0f,0x00,0x1f,0x00,0x7f,0x04,0x03,0x02,0x00,0x00,0x10,0x10,0xff,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 33641 荩 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x08,0x0f,0x08,0x09,0x10,0x12,0x21,0x40,0x00,0x00,0x20,0x20,0xff,0x20,0xf8,0x08,0x08,0xf8,0x40,0x20,0xd8,0x47,0x02,0xc0,0x60,0x40 -+// 33642 荪 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x02,0x04,0x05,0x06,0x1c,0x64,0x05,0x06,0x04,0x14,0x08,0x20,0x20,0xff,0x20,0x10,0x10,0x10,0x50,0x54,0x92,0x91,0x11,0x10,0x10,0x50,0x20 -+// 33643 荫 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1e,0x12,0x14,0x14,0x12,0x1a,0x14,0x10,0x10,0x11,0x12,0x20,0x20,0xff,0x20,0x20,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x44,0x84,0x84,0x14,0x08 -+// 33644 荬 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x04,0x03,0x0a,0x04,0x3f,0x00,0x00,0x01,0x06,0x18,0x10,0x10,0xff,0x10,0x10,0xfe,0x44,0x48,0x40,0x40,0xff,0x40,0xa0,0x18,0x0c,0x08 -+// 33645 荭 ; -+,0x02,0x02,0x7f,0x02,0x08,0x08,0x11,0x3e,0x04,0x0b,0x3e,0x10,0x03,0x3c,0x11,0x00,0x20,0x20,0xff,0x20,0x00,0xfe,0x10,0x10,0x10,0x90,0x10,0x10,0x90,0x10,0xff,0x00 -+// 33646 荮 ; -+,0x02,0x02,0x7f,0x02,0x08,0x09,0x12,0x3c,0x08,0x17,0x38,0x00,0x07,0x78,0x20,0x00,0x20,0x20,0xff,0x20,0x08,0x08,0xff,0x08,0x08,0x48,0x68,0x48,0x08,0x08,0x28,0x10 -+// 33647 药 ; -+,0x02,0x02,0x3f,0x02,0x0a,0x08,0x12,0x3e,0x04,0x08,0x3f,0x10,0x03,0x3c,0x10,0x00,0x20,0x20,0xff,0x20,0x20,0x20,0x3e,0x42,0x82,0x22,0x12,0x12,0x02,0x02,0x14,0x08 -+// 33648 荰 ; -+,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x7f,0x1c,0x1a,0x2b,0x2a,0x48,0x09,0x08,0x00,0x10,0x10,0xff,0x10,0x10,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33649 荱 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x10,0x1f,0x10,0x17,0x10,0x17,0x10,0x17,0x20,0x20,0x40,0x10,0x10,0xff,0x10,0xfc,0x04,0xfc,0x00,0xf8,0x40,0xfc,0x40,0xfc,0x41,0x3f,0x00 -+// 33650 荲 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x3f,0x00,0x00,0x7f,0x00,0x20,0x20,0xff,0x20,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 33651 荳 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x04,0x03,0x02,0x7f,0x00,0x10,0x10,0xff,0x10,0xfe,0x00,0xfc,0x04,0x04,0xfc,0x10,0x18,0x10,0x20,0xff,0x00 -+// 33652 荴 ; -+,0x04,0x04,0x7f,0x04,0x08,0x09,0x7e,0x08,0x0d,0x18,0x68,0x08,0x08,0x08,0x29,0x12,0x20,0x20,0xff,0x20,0x20,0xfc,0x20,0x20,0xfe,0x20,0x50,0x50,0x88,0x84,0x03,0x02 -+// 33653 荵 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x01,0x09,0x12,0x04,0x19,0x64,0x14,0x14,0x24,0x03,0x00,0x10,0x10,0xff,0x10,0xf8,0x08,0x08,0x08,0x28,0x10,0x84,0x82,0x0b,0x0a,0xf8,0x00 -+// 33654 荶 ; -+,0x04,0x04,0x7f,0x04,0x00,0x3c,0x24,0x24,0x25,0x26,0x25,0x3c,0x24,0x20,0x00,0x00,0x10,0x10,0xff,0x10,0x20,0x20,0x50,0x8c,0x23,0x12,0xfe,0x04,0x08,0x08,0x10,0x10 -+// 33655 荷 ; -+,0x02,0x02,0x7f,0x0a,0x0c,0x0b,0x18,0x19,0x29,0x49,0x09,0x09,0x09,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x00,0xff,0x04,0xe4,0x24,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 33656 荸 ; -+,0x02,0x02,0x3f,0x02,0x0f,0x00,0x3f,0x20,0x4f,0x00,0x00,0x3f,0x00,0x00,0x02,0x01,0x20,0x20,0xff,0xa0,0xfc,0x80,0xff,0x02,0xf4,0x20,0x40,0xfe,0x80,0x80,0x80,0x00 -+// 33657 荹 ; -+,0x02,0x02,0x7f,0x02,0x02,0x08,0x08,0x08,0x7f,0x08,0x0c,0x08,0x10,0x20,0x03,0x3c,0x10,0x10,0xff,0x10,0x90,0xfc,0x80,0x80,0xff,0x80,0x84,0x86,0x98,0xe0,0x80,0x00 -+// 33658 荺 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x08,0x7e,0x08,0x09,0x08,0x08,0x0e,0x71,0x20,0x00,0x20,0x20,0xff,0x20,0x40,0x40,0x7e,0x82,0xc2,0x32,0x22,0x0e,0x32,0xc2,0x8a,0x04 -+// 33659 荻 ; -+,0x02,0x02,0x7f,0x02,0x22,0x14,0x08,0x14,0x64,0x0a,0x13,0x22,0x42,0x02,0x15,0x0a,0x20,0x20,0xff,0x20,0x00,0x20,0x24,0xa6,0xa8,0xb0,0x20,0x50,0x48,0x8c,0x07,0x02 -+// 33660 荼 ; -+,0x02,0x02,0x3f,0x02,0x01,0x02,0x04,0x1f,0x60,0x1f,0x04,0x06,0x0c,0x10,0x22,0x01,0x10,0x10,0xff,0x90,0x40,0x20,0x18,0xf7,0x82,0xfc,0x80,0x90,0x88,0x8c,0x88,0x00 -+// 33661 荽 ; -+,0x02,0x7f,0x02,0x02,0x00,0x1f,0x09,0x04,0x05,0x7f,0x02,0x02,0x01,0x00,0x03,0x1c,0x10,0xff,0x10,0x10,0x7c,0x88,0x0c,0x88,0x10,0xff,0x10,0x10,0x20,0xc0,0x30,0x0e -+// 33662 荾 ; -+,0x02,0x3f,0x02,0x01,0x02,0x07,0x04,0x06,0x09,0x33,0x06,0x19,0x00,0x03,0x0c,0x30,0x20,0xff,0x20,0x20,0x08,0xfc,0x14,0x08,0x06,0xf4,0x20,0x20,0xc0,0x30,0x0e,0x04 -+// 33663 荿 ; -+,0x02,0x7f,0x02,0x02,0x00,0x1f,0x10,0x10,0x1f,0x11,0x11,0x11,0x15,0x22,0x20,0x41,0x20,0xff,0x20,0x50,0x48,0xfe,0x40,0x44,0x26,0x24,0x28,0x12,0x2a,0x46,0x82,0x00 -+// 33664 莀 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x10,0x13,0x10,0x1f,0x12,0x12,0x12,0x12,0x22,0x27,0x42,0x20,0x20,0xff,0x20,0xfe,0x00,0xfc,0x00,0xff,0x40,0x44,0x28,0x10,0x8c,0x07,0x02 -+// 33665 莁 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x08,0x08,0x08,0x08,0x14,0x22,0x40,0x00,0x7f,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x88,0x88,0x88,0x88,0x94,0xa2,0xc1,0x80,0xff,0x00 -+// 33666 莂 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x10,0x1f,0x04,0x3f,0x04,0x08,0x08,0x12,0x21,0x20,0x20,0xff,0x20,0x22,0x82,0x92,0x92,0x92,0x12,0x92,0x92,0x92,0x82,0x8a,0x04 -+// 33667 莃 ; -+,0x02,0x7f,0x02,0x04,0x03,0x00,0x03,0x0d,0x3f,0x04,0x0f,0x14,0x64,0x04,0x04,0x00,0x10,0xff,0x10,0x08,0x30,0xc0,0x30,0x0c,0xff,0x40,0xfc,0x44,0x44,0x54,0x48,0x40 -+// 33668 莄 ; -+,0x02,0x02,0x3f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x01,0x06,0x18,0x60,0x10,0x10,0xff,0x10,0xfe,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x80,0x80,0x70,0x0f,0x02 -+// 33669 莅 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0c,0x0b,0x18,0x28,0x49,0x08,0x08,0x08,0x08,0x0f,0x08,0x10,0x10,0xff,0x90,0x60,0x40,0xfe,0x00,0x08,0x0c,0x88,0xd0,0x90,0x00,0xff,0x00 -+// 33670 莆 ; -+,0x04,0x04,0x7f,0x04,0x04,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x10,0x10,0xff,0x14,0x92,0xff,0x80,0xf8,0x88,0xf8,0x88,0x88,0xf8,0x88,0xa8,0x90 -+// 33671 莇 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x70,0x00,0x01,0x10,0x10,0xff,0x10,0x00,0x10,0x10,0xfe,0x12,0x12,0x12,0x22,0xa2,0x4a,0x84,0x00 -+// 33672 莈 ; -+,0x02,0x3f,0x02,0x12,0x08,0x4a,0x22,0x14,0x05,0x08,0x08,0x70,0x10,0x10,0x10,0x13,0x10,0xff,0x10,0x78,0x48,0x48,0x48,0x87,0xfc,0x84,0x88,0x50,0x20,0x58,0x87,0x02 -+// 33673 莉 ; -+,0x02,0x3f,0x02,0x02,0x1f,0x02,0x02,0x3f,0x06,0x07,0x0a,0x12,0x22,0x42,0x02,0x02,0x10,0xff,0x10,0x12,0x82,0x12,0x12,0xd2,0x12,0x12,0x92,0xd2,0x92,0x02,0x0a,0x04 -+// 33674 莊 ; -+,0x02,0x02,0x7f,0x02,0x02,0x22,0x22,0x3f,0x02,0x3e,0x22,0x22,0x22,0x22,0x42,0x00,0x20,0x20,0xff,0x20,0x20,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33675 莋 ; -+,0x02,0x02,0x3f,0x02,0x04,0x06,0x0c,0x19,0x2a,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x50,0x60,0x40,0xff,0x40,0x40,0x7e,0x40,0x40,0x7f,0x40,0x40,0x40 -+// 33676 莌 ; -+,0x02,0x02,0x7f,0x02,0x04,0x02,0x0f,0x08,0x08,0x0f,0x0a,0x02,0x04,0x04,0x08,0x10,0x20,0x20,0xff,0x20,0x10,0x20,0xf8,0x08,0x08,0xf8,0x28,0x20,0x21,0x21,0x1f,0x00 -+// 33677 莍 ; -+,0x02,0x02,0x7f,0x02,0x00,0x00,0x3f,0x10,0x08,0x04,0x02,0x04,0x18,0x60,0x02,0x01,0x20,0x20,0xff,0x20,0x88,0x84,0xfe,0x88,0x8c,0xd0,0xa0,0x98,0x87,0x82,0x80,0x00 -+// 33678 莎 ; -+,0x02,0x02,0x3f,0x02,0x10,0x08,0x05,0x25,0x15,0x0a,0x08,0x78,0x10,0x10,0x11,0x16,0x10,0x10,0xff,0x10,0x20,0x28,0x24,0xa3,0x22,0x24,0x24,0x28,0x10,0x60,0x80,0x00 -+// 33679 莏 ; -+,0x02,0x02,0x7f,0x0a,0x08,0x3e,0x08,0x08,0x0e,0x19,0x6a,0x08,0x08,0x08,0x28,0x13,0x20,0x20,0xff,0x20,0x10,0x10,0x94,0xd2,0x91,0x12,0x14,0x08,0x10,0x20,0xc0,0x00 -+// 33680 莐 ; -+,0x02,0x02,0x3f,0x02,0x08,0x05,0x25,0x11,0x14,0x04,0x08,0x38,0x08,0x08,0x09,0x0a,0x10,0x10,0xff,0x10,0x20,0xff,0x22,0x24,0x20,0x50,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 33681 莑 ; -+,0x02,0x02,0x7f,0x03,0x07,0x39,0x00,0x0f,0x70,0x0f,0x00,0x0f,0x00,0x1f,0x00,0x00,0x20,0x20,0xff,0x20,0xf8,0x20,0xc0,0x38,0x87,0xf8,0x80,0xf8,0x80,0xfe,0x80,0x80 -+// 33682 莒 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xff,0x10,0x10,0xfc,0x04,0x04,0xfc,0x00,0xfe,0x02,0x02,0x02,0xfe,0x02 -+// 33683 莓 ; -+,0x02,0x02,0x3f,0x04,0x07,0x08,0x17,0x24,0x04,0x7f,0x04,0x04,0x07,0x00,0x00,0x00,0x10,0x10,0xff,0x10,0xfe,0x00,0xf8,0x88,0x48,0xff,0x88,0x48,0xff,0x08,0x28,0x10 -+// 33684 莔 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x12,0x13,0x14,0x18,0x13,0x12,0x12,0x12,0x1f,0x10,0x20,0x20,0xff,0x20,0x20,0xfe,0x44,0x24,0x1c,0x14,0xe4,0x24,0x24,0x24,0xfc,0x04 -+// 33685 莕 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x01,0x02,0x04,0x18,0x67,0x04,0x04,0x04,0x07,0x04,0x20,0x20,0xff,0xa0,0xa0,0xfe,0xc0,0xa0,0x98,0x87,0xfa,0x08,0x08,0x08,0xf8,0x08 -+// 33686 莖 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x04,0x08,0x11,0x08,0x04,0x1f,0x00,0x00,0x00,0x7f,0x20,0x20,0xff,0x20,0x20,0xfe,0x44,0x88,0x10,0x88,0x44,0xfe,0x80,0x80,0x80,0xff -+// 33687 莗 ; -+,0x04,0x7f,0x04,0x04,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0x10,0xff,0x10,0x90,0xfe,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80,0x80,0x80 -+// 33688 莘 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x04,0x03,0x02,0x7f,0x00,0x00,0x3f,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0xa0,0xfc,0x10,0x18,0x20,0xff,0x80,0x80,0xfe,0x80,0x80,0x80 -+// 33689 莙 ; -+,0x02,0x3f,0x02,0x02,0x0f,0x02,0x3f,0x02,0x0f,0x04,0x07,0x0c,0x14,0x24,0x07,0x04,0x20,0xff,0x20,0x20,0xf8,0x08,0xff,0x08,0xf8,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 33690 莚 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3d,0x08,0x10,0x3d,0x05,0x15,0x0d,0x04,0x0a,0x11,0x60,0x20,0x20,0xff,0x20,0x0e,0xf0,0x20,0x3e,0x20,0x20,0x20,0xfe,0x00,0x00,0xff,0x00 -+// 33691 莛 ; -+,0x02,0x02,0x3f,0x02,0x3c,0x04,0x08,0x10,0x3f,0x02,0x14,0x08,0x14,0x23,0x40,0x00,0x20,0x20,0xff,0x20,0x0e,0xf0,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x00,0xff,0x00 -+// 33692 莜 ; -+,0x02,0x02,0x7f,0x02,0x04,0x04,0x0a,0x1a,0x2b,0x4a,0x0a,0x0a,0x0a,0x08,0x08,0x0b,0x20,0x20,0xff,0x20,0x20,0x40,0x7f,0x84,0x44,0x48,0x28,0x10,0x28,0x44,0x83,0x02 -+// 33693 莝 ; -+,0x02,0x02,0x7f,0x02,0x08,0x08,0x08,0x14,0x22,0x40,0x1f,0x00,0x00,0x00,0x7f,0x00,0x20,0x20,0xff,0x20,0x88,0x88,0x88,0x94,0xa2,0xc1,0xfe,0x80,0x80,0x80,0xff,0x00 -+// 33694 莞 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x10,0x20,0x07,0x00,0x3f,0x02,0x02,0x04,0x08,0x30,0x20,0x22,0xff,0x20,0x82,0xff,0x02,0x04,0xf0,0x00,0xfe,0x40,0x40,0x41,0x41,0x3f -+// 33695 莟 ; -+,0x04,0x7f,0x04,0x04,0x01,0x02,0x05,0x18,0x67,0x00,0x00,0x00,0x0f,0x08,0x08,0x0f,0x10,0xff,0x90,0x90,0x40,0x20,0x18,0x87,0xf2,0x20,0x40,0x80,0xf8,0x08,0x08,0xf8 -+// 33696 莠 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x00,0x3f,0x02,0x04,0x18,0x3f,0x02,0x02,0x04,0x04,0x08,0x10,0xff,0x10,0x7c,0xc0,0x80,0xfe,0x90,0x8c,0x87,0xfa,0x10,0x1c,0x04,0x14,0x08 -+// 33697 莡 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x08,0x0f,0x00,0x08,0x08,0x14,0x12,0x21,0x40,0x20,0x20,0xff,0x20,0x20,0xf8,0x08,0x08,0xf8,0x80,0xfe,0x80,0x80,0x80,0xff,0x00 -+// 33698 莢 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x3f,0x08,0x08,0x08,0x15,0x21,0x02,0x04,0x08,0x30,0x20,0x20,0xff,0x20,0xa0,0x80,0xfe,0x88,0x88,0x94,0x63,0x42,0x20,0x18,0x07,0x02 -+// 33699 莣 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x04,0x04,0x0f,0x04,0x00,0x04,0x14,0x14,0x23,0x00,0x20,0x20,0xff,0x20,0xa0,0xfe,0x00,0x00,0xfc,0x00,0x84,0x62,0x4b,0x0a,0xf8,0x00 -+// 33700 莤 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x02,0x1f,0x12,0x12,0x14,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0xff,0x10,0xff,0x20,0xfc,0x24,0x24,0x1c,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 33701 莥 ; -+,0x02,0x02,0x7f,0x02,0x22,0x15,0x08,0x14,0x24,0x0b,0x12,0x22,0x42,0x03,0x0a,0x04,0x10,0x10,0xff,0x10,0x00,0xfc,0x24,0x24,0x24,0xfc,0x44,0x44,0x44,0xff,0x00,0x00 -+// 33702 莦 ; -+,0x04,0x04,0x7f,0x04,0x04,0x10,0x0c,0x04,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x90,0x88,0x8c,0x90,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 33703 莧 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x04,0x18,0x20,0x20,0xff,0x20,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x40,0x42,0x42,0x3e -+// 33704 莨 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x0a,0x1c,0x08,0x20,0x20,0xff,0x20,0xa0,0xf8,0x08,0xf8,0x08,0xf8,0x84,0x4c,0x30,0x18,0x0e,0x04 -+// 33705 莩 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x09,0x04,0x0f,0x00,0x00,0x7f,0x00,0x00,0x02,0x01,0x20,0x20,0xff,0x20,0x1c,0xe8,0x0c,0x90,0xf8,0x20,0x40,0xff,0x80,0x80,0x80,0x00 -+// 33706 莪 ; -+,0x02,0x02,0x7f,0x02,0x07,0x3a,0x02,0x7f,0x02,0x03,0x0e,0x32,0x02,0x02,0x0a,0x04,0x10,0x10,0xff,0x10,0xa8,0x24,0x24,0xff,0x22,0xa4,0x28,0x11,0x29,0x45,0x83,0x00 -+// 33707 莫 ; -+,0x02,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x02,0x04,0x08,0x30,0x10,0x10,0xff,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x40,0x20,0x10,0x0e,0x04 -+// 33708 莬 ; -+,0x02,0x02,0x3f,0x02,0x03,0x04,0x08,0x1f,0x08,0x08,0x0f,0x01,0x01,0x02,0x0c,0x30,0x20,0x20,0xff,0x20,0xf8,0x10,0x20,0xfc,0x84,0x84,0xfc,0x40,0x42,0x42,0x3e,0x00 -+// 33709 莭 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x12,0x11,0x13,0x3d,0x10,0x20,0x20,0xff,0x20,0x20,0x3e,0x22,0x22,0x22,0x22,0x22,0x2a,0x24,0xa0,0x20,0x20 -+// 33710 莮 ; -+,0x02,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x10,0xff,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfc,0x04,0x04,0x04,0x14,0x08 -+// 33711 莯 ; -+,0x02,0x02,0x7f,0x02,0x12,0x08,0x08,0x21,0x14,0x14,0x08,0x08,0x70,0x11,0x12,0x10,0x10,0x10,0xff,0x10,0x00,0x10,0x10,0xff,0x38,0x38,0x54,0x56,0x93,0x12,0x10,0x10 -+// 33712 莰 ; -+,0x02,0x02,0x7f,0x02,0x02,0x08,0x08,0x3e,0x09,0x08,0x08,0x08,0x0e,0x70,0x00,0x01,0x20,0x20,0xff,0x20,0x40,0x40,0x7f,0x82,0x14,0x10,0x10,0x28,0x28,0x44,0x83,0x02 -+// 33713 莱 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x08,0x04,0x04,0x7f,0x02,0x04,0x08,0x10,0x20,0x00,0x10,0x10,0xff,0x10,0x90,0xfe,0x88,0x88,0x90,0xff,0xa0,0x90,0x8c,0x87,0x82,0x80 -+// 33714 莲 ; -+,0x02,0x02,0x7f,0x02,0x20,0x1b,0x10,0x01,0x73,0x10,0x17,0x10,0x10,0x28,0x47,0x00,0x20,0x20,0xff,0x20,0x80,0xfe,0xa0,0x20,0xfc,0x20,0xff,0x20,0x20,0x20,0xff,0x00 -+// 33715 莳 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3e,0x23,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0xff,0x20,0x24,0x04,0xff,0x04,0x44,0x24,0x34,0x24,0x04,0x04,0x14,0x08 -+// 33716 莴 ; -+,0x02,0x02,0x7f,0x02,0x07,0x04,0x04,0x07,0x00,0x1f,0x10,0x11,0x12,0x14,0x10,0x10,0x10,0x10,0xff,0x10,0xf8,0x08,0x08,0xf8,0x80,0xfe,0x82,0x42,0x32,0x12,0x0a,0x04 -+// 33717 莵 ; -+,0x02,0x02,0x7f,0x02,0x02,0x01,0x0f,0x08,0x08,0x0f,0x09,0x01,0x02,0x04,0x18,0x60,0x20,0x20,0xff,0x20,0xa0,0x00,0xfc,0x84,0x84,0xfc,0x50,0x4a,0x4a,0x43,0x3e,0x00 -+// 33718 莶 ; -+,0x02,0x02,0x3f,0x02,0x02,0x01,0x02,0x04,0x1f,0x60,0x09,0x06,0x04,0x00,0x3f,0x00,0x20,0x20,0xff,0x20,0xa0,0x40,0x30,0x0c,0xf3,0x02,0x10,0xd8,0x90,0x20,0xfe,0x00 -+// 33719 获 ; -+,0x02,0x7f,0x02,0x02,0x22,0x14,0x08,0x17,0x24,0x4c,0x14,0x24,0x44,0x04,0x15,0x0a,0x20,0xff,0x20,0x20,0x00,0x28,0x24,0xff,0x20,0x20,0x50,0x48,0x8c,0x87,0x02,0x00 -+// 33720 莸 ; -+,0x02,0x7f,0x02,0x02,0x22,0x14,0x0b,0x14,0x64,0x0c,0x14,0x24,0x44,0x04,0x15,0x0a,0x20,0xff,0x20,0x20,0x48,0x44,0xff,0x50,0x50,0x50,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 33721 莹 ; -+,0x02,0x02,0x3f,0x02,0x02,0x3f,0x20,0x4f,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x20,0x20,0xff,0x20,0x20,0xff,0x02,0xfc,0x80,0x80,0xfc,0xa0,0x98,0x90,0xff,0x00 -+// 33722 莺 ; -+,0x02,0x02,0x3f,0x02,0x3f,0x21,0x47,0x05,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0xff,0x02,0xf8,0x08,0xa8,0x10,0xfe,0x02,0xfe,0x02,0x0a,0x04 -+// 33723 莻 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x02,0x02,0x04,0x04,0x08,0x1f,0x11,0x11,0x11,0x1f,0x00,0x20,0x20,0xff,0x20,0xf8,0x10,0x1c,0x04,0x14,0x48,0x4c,0x70,0x42,0x42,0x3e,0x00 -+// 33724 莼 ; -+,0x02,0x02,0x7f,0x02,0x08,0x0c,0x13,0x3e,0x04,0x08,0x16,0x38,0x00,0x0e,0x70,0x00,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x20,0xa4,0xa4,0xa4,0xfc,0x21,0x21,0x1f,0x00 -+// 33725 莽 ; -+,0x02,0x3f,0x02,0x01,0x01,0x3f,0x02,0x04,0x1a,0x62,0x1f,0x02,0x04,0x04,0x08,0x10,0x10,0xff,0x10,0x20,0x10,0xfe,0x10,0x08,0x27,0x22,0xff,0x20,0x20,0x20,0x20,0x20 -+// 33726 莾 ; -+,0x04,0x7f,0x04,0x05,0x3f,0x02,0x04,0x18,0x6f,0x00,0x04,0x7f,0x04,0x08,0x10,0x20,0x10,0xff,0x10,0x10,0xfe,0x20,0x98,0x87,0xfa,0x80,0x90,0xff,0x10,0x10,0x10,0x10 -+// 33727 莿 ; -+,0x02,0x02,0x3f,0x02,0x02,0x3f,0x02,0x1f,0x12,0x12,0x12,0x17,0x0a,0x12,0x22,0x02,0x10,0x10,0xff,0x10,0x12,0xc2,0x12,0xd2,0x52,0x52,0x52,0x52,0x82,0x02,0x0a,0x04 -+// 33728 菀 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x20,0x48,0x0f,0x11,0x21,0x52,0x0a,0x04,0x08,0x10,0x60,0x20,0xff,0x20,0xa0,0xff,0x02,0x04,0x78,0x48,0x48,0x48,0x58,0x42,0x42,0x3e,0x00 -+// 33729 菁 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x20,0xff,0xa0,0xfc,0x80,0xf8,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x18 -+// 33730 菂 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x10,0x3f,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x3f,0x21,0x20,0x20,0xff,0x20,0x30,0x20,0x3e,0x42,0x92,0x0a,0x0a,0x02,0x02,0x22,0x14,0x08 -+// 33731 菃 ; -+,0x02,0x02,0x3f,0x02,0x22,0x11,0x11,0x25,0x15,0x15,0x05,0x39,0x09,0x09,0x09,0x09,0x10,0x10,0xff,0x10,0x00,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x00,0x00,0xff,0x00 -+// 33732 菄 ; -+,0x04,0x7f,0x04,0x04,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x02,0x04,0x18,0x60,0x10,0xff,0x10,0x90,0xfe,0x80,0xf8,0x88,0xf8,0x88,0xf8,0xa0,0x90,0x88,0x87,0x82 -+// 33733 菅 ; -+,0x04,0x3f,0x05,0x04,0x3f,0x20,0x4f,0x08,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0xff,0x10,0x90,0xff,0x02,0xfc,0x08,0x08,0xf8,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 33734 菆 ; -+,0x04,0x7f,0x04,0x04,0x3f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x17,0x39,0x01,0x01,0x20,0xff,0x20,0x20,0xfe,0x00,0x7e,0x44,0x44,0x28,0x28,0x10,0xa8,0x47,0x82,0x00 -+// 33735 菇 ; -+,0x02,0x02,0x7f,0x12,0x18,0x10,0x7e,0x12,0x12,0x24,0x24,0x18,0x08,0x14,0x22,0x42,0x20,0x20,0xff,0x20,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 33736 菈 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x7e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x29,0x10,0x20,0x20,0xff,0x20,0x10,0x08,0xff,0x00,0x84,0x46,0x44,0x28,0x28,0x00,0xff,0x00 -+// 33737 菉 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x00,0x0f,0x00,0x7f,0x08,0x04,0x02,0x04,0x18,0x62,0x01,0x20,0x20,0xff,0x20,0xf0,0x10,0xf0,0x10,0xff,0x84,0xc8,0xb0,0x90,0x8c,0x87,0x02 -+// 33738 菊 ; -+,0x02,0x02,0x7f,0x0a,0x08,0x0f,0x10,0x14,0x22,0x4f,0x01,0x02,0x04,0x08,0x10,0x00,0x10,0x10,0xff,0x10,0x00,0xfe,0x82,0x92,0xa2,0xfa,0xc2,0xa2,0x9a,0x92,0x8a,0x84 -+// 33739 菋 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3c,0x25,0x24,0x24,0x27,0x24,0x3c,0x21,0x02,0x04,0x00,0x20,0x20,0xff,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x70,0xa8,0x24,0x23,0x22,0x20 -+// 33740 菌 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x17,0x10,0x1f,0x11,0x12,0x14,0x18,0x1f,0x10,0x20,0x20,0xff,0x20,0x20,0xfc,0x34,0xc4,0x84,0xfc,0xc4,0xa4,0x94,0x84,0xfc,0x04 -+// 33741 菍 ; -+,0x02,0x02,0x7f,0x02,0x01,0x02,0x04,0x0b,0x30,0x02,0x01,0x15,0x14,0x24,0x03,0x00,0x10,0x10,0xff,0x90,0x40,0x20,0x98,0xf7,0x12,0x20,0xa8,0x04,0x12,0x1a,0xf0,0x00 -+// 33742 菎 ; -+,0x02,0x02,0x3f,0x02,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0a,0x0c,0x08,0x20,0x20,0xfe,0x20,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x40,0x58,0x62,0x42,0x3e,0x00 -+// 33743 菏 ; -+,0x02,0x02,0x7f,0x02,0x22,0x1b,0x50,0x28,0x29,0x09,0x09,0x71,0x11,0x10,0x10,0x10,0x20,0x20,0xff,0x20,0x20,0xff,0x04,0x04,0xe4,0x24,0x24,0xe4,0x24,0x04,0x14,0x08 -+// 33744 菐 ; -+,0x01,0x09,0x05,0x01,0x3f,0x02,0x1f,0x00,0x1f,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x20,0x24,0x28,0x20,0xff,0x10,0xfe,0x80,0xfc,0x80,0xff,0x40,0x20,0x18,0x07,0x02 -+// 33745 菑 ; -+,0x02,0x02,0x7f,0x02,0x04,0x04,0x08,0x11,0x08,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x20,0x20,0xff,0x20,0x44,0x44,0x88,0x10,0x88,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 33746 菒 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x10,0x10,0xff,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82 -+// 33747 菓 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x06,0x18,0x60,0x00,0x20,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 33748 菔 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x21,0x25,0x42,0x20,0x20,0xff,0x20,0x7e,0x42,0x4a,0x44,0x7e,0x62,0x54,0x48,0x54,0x63,0x42,0x40 -+// 33749 菕 ; -+,0x04,0x04,0x7f,0x04,0x05,0x02,0x04,0x1f,0x60,0x1f,0x12,0x1f,0x12,0x12,0x12,0x10,0x10,0x10,0xff,0x90,0x50,0x20,0x18,0xf7,0x00,0xfc,0x24,0xfc,0x24,0x24,0x24,0x0c -+// 33750 菖 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x20,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02 -+// 33751 菗 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x7e,0x08,0x08,0x0e,0x78,0x28,0x08,0x08,0x28,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 33752 菘 ; -+,0x02,0x02,0x7f,0x0a,0x08,0x3f,0x08,0x1c,0x1a,0x1b,0x2a,0x28,0x48,0x09,0x08,0x08,0x20,0x20,0xff,0x20,0x48,0x68,0x44,0x84,0xa3,0x32,0x20,0x48,0x84,0xfe,0x84,0x00 -+// 33753 菙 ; -+,0x04,0x04,0x7f,0x04,0x1f,0x00,0x3f,0x04,0x7f,0x04,0x04,0x3f,0x00,0x00,0x3f,0x00,0x10,0x10,0xff,0x10,0xfc,0x80,0xfe,0x90,0xff,0x90,0x90,0xfe,0x80,0x80,0xfe,0x00 -+// 33754 菚 ; -+,0x02,0x7f,0x02,0x02,0x01,0x3f,0x00,0x03,0x3c,0x02,0x3f,0x01,0x00,0x03,0x1c,0x00,0x10,0xff,0x10,0x04,0x3e,0xd0,0xa2,0xc2,0x3c,0x00,0xfe,0x10,0xa2,0x42,0x32,0x0c -+// 33755 菛 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 33756 菜 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x11,0x08,0x04,0x00,0x3f,0x01,0x02,0x04,0x08,0x30,0x00,0x20,0xff,0x20,0x20,0xfc,0x04,0x88,0x10,0x80,0xff,0xc0,0xa0,0x98,0x8e,0x84,0x80 -+// 33757 菝 ; -+,0x02,0x02,0x3f,0x0a,0x08,0x08,0x7f,0x08,0x0a,0x0c,0x78,0x29,0x0a,0x0c,0x28,0x13,0x20,0x20,0xff,0x20,0x48,0x44,0xff,0x40,0x7c,0xc4,0xa8,0x28,0x10,0x28,0xc7,0x02 -+// 33758 菞 ; -+,0x02,0x02,0x3f,0x02,0x07,0x3c,0x04,0x3f,0x0c,0x16,0x15,0x25,0x44,0x04,0x05,0x04,0x10,0x10,0xff,0x10,0x20,0x20,0x3e,0x52,0x92,0x12,0x22,0x22,0x42,0x8a,0x04,0x00 -+// 33759 菟 ; -+,0x02,0x02,0x7f,0x02,0x03,0x04,0x08,0x1f,0x28,0x08,0x0f,0x01,0x01,0x02,0x0c,0x30,0x10,0x10,0xff,0x10,0xf8,0x10,0x20,0xfc,0x84,0x84,0xfc,0x50,0x4d,0x49,0x3f,0x00 -+// 33760 菠 ; -+,0x02,0x02,0x7f,0x02,0x10,0x0b,0x22,0x1a,0x13,0x0a,0x0a,0x72,0x12,0x14,0x14,0x19,0x20,0x20,0xff,0x20,0x20,0xff,0x22,0x24,0xfc,0x88,0x88,0x50,0x20,0x58,0x87,0x02 -+// 33761 菡 ; -+,0x02,0x02,0x3f,0x02,0x0f,0x00,0x00,0x24,0x22,0x21,0x22,0x2c,0x22,0x21,0x3f,0x20,0x10,0x10,0xff,0x10,0xf0,0x20,0x40,0x92,0xa2,0xc2,0xa2,0x9a,0x92,0x02,0xfe,0x02 -+// 33762 菢 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x7e,0x09,0x0a,0x0c,0x78,0x28,0x08,0x08,0x28,0x10,0x20,0x20,0xff,0x20,0x40,0x7e,0x82,0xf2,0x92,0x92,0xf2,0x8a,0x85,0x81,0x7f,0x00 -+// 33763 菣 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x24,0x24,0x3f,0x21,0x21,0x3f,0x24,0x24,0x3f,0x00,0x20,0x20,0xff,0x20,0x00,0x7e,0x42,0x42,0x24,0x24,0x28,0x10,0x10,0x2c,0x47,0x82 -+// 33764 菤 ; -+,0x02,0x02,0x7f,0x02,0x04,0x02,0x1f,0x01,0x7f,0x04,0x0f,0x14,0x64,0x04,0x04,0x03,0x20,0x20,0xff,0x20,0x90,0xa0,0xfc,0x00,0xff,0x10,0xe8,0x27,0xea,0x48,0x08,0xf8 -+// 33765 菥 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x0a,0x20,0x20,0xff,0x20,0x20,0x7e,0x40,0x40,0x7f,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 33766 菦 ; -+,0x02,0x02,0x3f,0x02,0x12,0x08,0x08,0x00,0x38,0x08,0x09,0x09,0x0a,0x14,0x23,0x40,0x20,0x20,0xff,0x20,0x0c,0xf0,0x80,0x80,0xff,0x90,0x10,0x10,0x10,0x00,0xff,0x00 -+// 33767 菧 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x17,0x14,0x14,0x17,0x14,0x14,0x25,0x26,0x44,0x10,0x10,0xff,0x90,0x50,0xfe,0x00,0xf8,0x40,0x40,0xfe,0x20,0x90,0x52,0x2a,0x04 -+// 33768 菨 ; -+,0x04,0x04,0x7f,0x04,0x1f,0x04,0x02,0x3f,0x02,0x7f,0x02,0x06,0x01,0x02,0x0c,0x30,0x10,0x10,0xff,0x90,0xfe,0x10,0x20,0xfe,0x00,0xff,0x10,0x20,0xc0,0x30,0x0c,0x08 -+// 33769 菩 ; -+,0x04,0x04,0x7f,0x05,0x00,0x3f,0x04,0x02,0x7f,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x20,0x20,0xff,0x20,0x80,0xfe,0x10,0x20,0xff,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 33770 菪 ; -+,0x02,0x02,0x3f,0x02,0x00,0x3f,0x20,0x4f,0x01,0x02,0x07,0x0c,0x14,0x24,0x07,0x04,0x10,0x10,0xff,0x90,0x40,0xff,0x02,0xfc,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 33771 菫 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x0f,0x00,0x7f,0x00,0x20,0x20,0xfe,0x20,0xff,0x80,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xf8,0x80,0xff,0x00 -+// 33772 菬 ; -+,0x02,0x02,0x7f,0x02,0x02,0x11,0x08,0x48,0x30,0x25,0x05,0x09,0x71,0x11,0x11,0x11,0x20,0x20,0xff,0x20,0x20,0xfc,0x44,0x44,0x94,0x08,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 33773 菭 ; -+,0x02,0x02,0x7f,0x02,0x12,0x0c,0x08,0x40,0x35,0x24,0x08,0x09,0x71,0x11,0x11,0x11,0x10,0x10,0xff,0x10,0x20,0x20,0x44,0x82,0xff,0x82,0x00,0xfe,0x02,0x02,0xfe,0x02 -+// 33774 菮 ; -+,0x04,0x7f,0x05,0x04,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x10,0x21,0x22,0x44,0x18,0x10,0xff,0x10,0x90,0xfe,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0x40,0x30,0x0e,0x04 -+// 33775 華 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x04,0x7f,0x04,0x04,0x3f,0x00,0x7f,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x90,0xff,0x90,0x90,0xfe,0x80,0xff,0x80,0x80,0x80 -+// 33776 菰 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x02,0x04,0x08,0x0a,0x1c,0x69,0x09,0x09,0x2a,0x14,0x20,0x20,0xff,0x20,0x20,0xfe,0xa8,0xa8,0xa8,0xa8,0xa4,0x24,0x34,0x2a,0x7b,0x22 -+// 33777 菱 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x00,0x7f,0x04,0x0a,0x13,0x66,0x09,0x30,0x03,0x0c,0x30,0x20,0xff,0x20,0xa0,0xfc,0x80,0xff,0x10,0x08,0xf6,0x10,0x20,0xc0,0x30,0x0f,0x02 -+// 33778 菲 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3e,0x02,0x02,0x3e,0x02,0x02,0x7e,0x02,0x02,0x02,0x02,0x20,0x20,0xff,0x20,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x3f,0x20,0x20,0x20,0x20 -+// 33779 菳 ; -+,0x04,0x04,0x7f,0x04,0x04,0x01,0x02,0x07,0x18,0x60,0x1f,0x00,0x08,0x04,0x02,0x7f,0x10,0x10,0xff,0x90,0x90,0x60,0x10,0xfc,0x83,0x80,0xfc,0x80,0x88,0x90,0xa0,0xff -+// 33780 菴 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x02,0x04,0x1f,0x68,0x0f,0x08,0x0f,0x08,0x00,0x00,0x20,0x20,0xff,0x20,0xa0,0xfe,0x20,0x90,0xff,0x8a,0xf8,0x88,0xf8,0x8a,0x82,0x7e -+// 33781 菵 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x12,0x11,0x17,0x10,0x17,0x12,0x12,0x13,0x10,0x10,0x20,0x20,0xff,0x20,0x20,0xfc,0x24,0x44,0xf4,0x04,0xf4,0x04,0x04,0xe4,0x14,0x08 -+// 33782 菶 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x00,0x0f,0x01,0x3f,0x02,0x04,0x1f,0x60,0x1f,0x00,0x00,0x20,0xfe,0x20,0xa0,0xfe,0x80,0xfc,0x00,0xff,0x90,0x8c,0xf3,0x80,0xfc,0x80,0x80 -+// 33783 菷 ; -+,0x02,0x7f,0x02,0x0f,0x00,0x07,0x00,0x0f,0x00,0x3f,0x20,0x4f,0x08,0x08,0x08,0x00,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x82,0xf8,0x88,0xa8,0x90,0x80 -+// 33784 菸 ; -+,0x02,0x02,0x7f,0x02,0x08,0x04,0x3f,0x08,0x0f,0x09,0x09,0x09,0x11,0x11,0x25,0x42,0x20,0x20,0xff,0x20,0x10,0x10,0xa8,0x24,0x53,0x88,0x08,0x20,0x10,0x0c,0x08,0x00 -+// 33785 菹 ; -+,0x02,0x02,0x7f,0x02,0x11,0x0d,0x49,0x21,0x35,0x25,0x09,0x31,0x11,0x11,0x17,0x10,0x20,0x20,0xff,0x20,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04,0x04,0x04,0xff,0x00 -+// 33786 菺 ; -+,0x02,0x02,0x7f,0x02,0x00,0x0f,0x08,0x0f,0x08,0x0b,0x0a,0x0b,0x12,0x13,0x22,0x42,0x10,0x10,0xff,0x90,0x40,0xfc,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x0c -+// 33787 菻 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x3f,0x04,0x0e,0x0d,0x15,0x14,0x24,0x45,0x04,0x04,0x20,0x20,0xff,0x20,0x10,0x10,0x7f,0x18,0x38,0x34,0x54,0x53,0x92,0x10,0x10,0x10 -+// 33788 菼 ; -+,0x02,0x7f,0x02,0x02,0x08,0x09,0x11,0x06,0x38,0x04,0x04,0x05,0x09,0x02,0x0c,0x30,0x20,0xff,0x20,0xa0,0x84,0x48,0x30,0x8e,0x90,0x98,0xa0,0x40,0x20,0x10,0x0c,0x03 -+// 33789 菽 ; -+,0x02,0x02,0x7f,0x02,0x08,0x08,0x0f,0x08,0x7f,0x04,0x25,0x34,0x24,0x44,0x14,0x09,0x20,0x20,0xff,0x20,0x00,0xfe,0x44,0x44,0xc4,0x28,0x28,0x90,0xa8,0x47,0x82,0x00 -+// 33790 菾 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x01,0x3f,0x02,0x04,0x08,0x14,0x66,0x04,0x08,0x02,0x01,0x20,0x20,0xff,0x20,0xfc,0x00,0xff,0x20,0x90,0x8c,0x93,0xca,0xac,0xa8,0x80,0x00 -+// 33791 菿 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x08,0x11,0x3f,0x14,0x04,0x3f,0x04,0x04,0x07,0x3c,0x20,0x20,0xff,0x20,0x22,0x82,0x12,0x12,0x92,0x92,0x12,0x92,0x12,0x02,0x8a,0x04 -+// 33792 萀 ; -+,0x02,0x7f,0x02,0x02,0x00,0x1f,0x10,0x17,0x10,0x10,0x10,0x13,0x12,0x12,0x24,0x48,0x10,0xff,0x90,0xf8,0x80,0xfe,0x84,0xf0,0x84,0x7c,0x00,0xf0,0x10,0x12,0x12,0x0e -+// 33793 萁 ; -+,0x02,0x02,0x7f,0x02,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x04,0x06,0x08,0x10,0x20,0x20,0xff,0x20,0x10,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xff,0x10,0x08,0x0c,0x08 -+// 33794 萂 ; -+,0x02,0x02,0x7f,0x02,0x01,0x3e,0x04,0x04,0x3f,0x0e,0x0d,0x15,0x25,0x44,0x04,0x04,0x20,0x20,0xff,0x20,0x80,0x00,0x3e,0x22,0xa2,0x22,0x22,0xa2,0x3e,0x22,0x20,0x00 -+// 33795 萃 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x04,0x04,0x04,0x0a,0x11,0x00,0x7f,0x00,0x00,0x00,0x10,0x10,0xff,0x90,0x50,0xfe,0x10,0x10,0x28,0x44,0x82,0x80,0xff,0x80,0x80,0x80 -+// 33796 萄 ; -+,0x02,0x7f,0x02,0x0a,0x0f,0x14,0x27,0x44,0x08,0x3f,0x00,0x08,0x08,0x0f,0x00,0x00,0x10,0xff,0x10,0x10,0xfe,0x02,0xf2,0x82,0x82,0xfa,0x82,0x8a,0x8a,0xfa,0x0a,0x04 -+// 33797 萅 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x00,0x10,0x1f,0x00,0x00,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x20,0xff,0x20,0x80,0xfe,0x80,0x88,0xf8,0x81,0x7f,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 33798 萆 ; -+,0x04,0x3f,0x04,0x04,0x0f,0x08,0x0f,0x08,0x09,0x0f,0x02,0x04,0x7f,0x00,0x00,0x00,0x10,0xff,0x50,0x90,0xf8,0x88,0xf8,0x88,0x08,0xf8,0x80,0x80,0xff,0x80,0x80,0x80 -+// 33799 萇 ; -+,0x02,0x02,0x7f,0x02,0x07,0x04,0x07,0x04,0x07,0x04,0x7f,0x09,0x08,0x08,0x0c,0x08,0x20,0x20,0xff,0x20,0xfc,0x00,0xfc,0x00,0xf8,0x00,0xff,0x08,0x90,0x60,0x1e,0x04 -+// 33800 萈 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x02,0x04,0x08,0x10,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x40,0x52,0x4a,0x43,0x3e,0x00 -+// 33801 萉 ; -+,0x02,0x02,0x3f,0x02,0x1e,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0xff,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 33802 萊 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x00,0x08,0x08,0x14,0x23,0x42,0x04,0x08,0x10,0x20,0x10,0x10,0xff,0x10,0x90,0xff,0x88,0x88,0x94,0xa2,0xc2,0xa0,0x98,0x8c,0x87,0x82 -+// 33803 萋 ; -+,0x04,0x7f,0x04,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x02,0x7f,0x04,0x07,0x00,0x1f,0x10,0xff,0x90,0xfe,0x80,0xf8,0x88,0xff,0x88,0xf8,0x00,0xff,0x10,0x20,0xf0,0x0e -+// 33804 萌 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x21,0x02,0x10,0x10,0xff,0x10,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x44,0x84,0x84,0x14,0x08 -+// 33805 萍 ; -+,0x02,0x02,0x7f,0x02,0x20,0x1b,0x10,0x42,0x31,0x28,0x08,0x13,0x70,0x10,0x10,0x10,0x20,0x20,0xff,0x20,0x20,0xfe,0x24,0x26,0x24,0xa8,0x20,0xff,0x20,0x20,0x20,0x20 -+// 33806 萎 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x02,0x04,0x0a,0x7f,0x02,0x06,0x01,0x06,0x38,0x20,0x20,0xff,0x20,0xf8,0x80,0xfe,0xb0,0x8e,0x84,0xff,0x10,0x20,0xc0,0x38,0x06 -+// 33807 萏 ; -+,0x02,0x02,0x7f,0x02,0x02,0x03,0x04,0x08,0x03,0x0c,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0xff,0x10,0x10,0xf8,0x10,0x20,0x40,0x3c,0x04,0x3c,0x04,0x04,0xfc,0x04 -+// 33808 萐 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x0f,0x00,0x08,0x08,0x14,0x23,0x10,0xff,0x10,0x80,0xfe,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xfc,0x80,0x80,0xff -+// 33809 萑 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x0f,0x18,0x2f,0x48,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0xff,0x10,0x90,0x40,0xfe,0x40,0xfe,0x40,0x40,0xfe,0x40,0x40,0xff,0x00 -+// 33810 萒 ; -+,0x02,0x02,0x3f,0x02,0x00,0x7f,0x02,0x0d,0x32,0x07,0x01,0x01,0x01,0x02,0x0c,0x30,0x20,0x20,0xff,0xa0,0x80,0xff,0x10,0x0c,0x16,0xf8,0x28,0x22,0x22,0x23,0x1e,0x00 -+// 33811 萓 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x10,0x27,0x04,0x07,0x04,0x07,0x04,0x04,0x7f,0x00,0x10,0x10,0xff,0x90,0x40,0xff,0x02,0xf0,0x10,0xf0,0x10,0xf0,0x10,0x10,0xff,0x00 -+// 33812 萔 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x3e,0x08,0x0a,0x0c,0x18,0x68,0x08,0x08,0x28,0x10,0x20,0x20,0xff,0x20,0x20,0xfe,0x24,0x24,0x54,0x88,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 33813 萕 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x02,0x01,0x00,0x0f,0x74,0x07,0x04,0x07,0x08,0x10,0x10,0x10,0xff,0x90,0x50,0xff,0x08,0x10,0xe0,0x1f,0x0a,0xf8,0x08,0xf8,0x08,0x08 -+// 33814 萖 ; -+,0x02,0x7f,0x02,0x03,0x1c,0x10,0x1f,0x10,0x10,0x1f,0x12,0x02,0x04,0x04,0x08,0x10,0x20,0xff,0x20,0x20,0x7c,0x04,0x3c,0x04,0x04,0xfc,0x24,0x20,0x21,0x21,0x1f,0x00 -+// 33815 萗 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x10,0x2f,0x00,0x3f,0x00,0x08,0x0c,0x10,0x22,0x01,0x10,0x10,0xff,0x90,0x50,0xff,0x02,0xfc,0x00,0xfe,0x80,0x90,0x88,0x86,0x84,0x00 -+// 33816 萘 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x01,0x06,0x1b,0x60,0x3f,0x00,0x10,0x18,0x22,0x41,0x20,0x20,0xff,0xa0,0xa0,0xfe,0x20,0x18,0xf7,0x02,0xfc,0x80,0x90,0x8c,0x84,0x00 -+// 33817 萙 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x08,0x7e,0x19,0x1c,0x2a,0x2a,0x48,0x08,0x09,0x0a,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0xff,0x22,0x24,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 33818 萚 ; -+,0x02,0x3f,0x02,0x0a,0x08,0x7f,0x08,0x0a,0x0c,0x19,0x68,0x08,0x0b,0x08,0x28,0x10,0x20,0xff,0x20,0x20,0xfc,0x48,0x30,0x4c,0x93,0x10,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 33819 萛 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x7f,0x04,0x08,0x10,0x20,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0xff,0x20,0x20,0x20 -+// 33820 萜 ; -+,0x02,0x02,0x7f,0x02,0x04,0x04,0x3f,0x25,0x25,0x25,0x25,0x25,0x25,0x27,0x04,0x04,0x20,0x20,0xff,0x20,0x10,0x10,0x1f,0x10,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 33821 萝 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x12,0x1f,0x01,0x03,0x04,0x1a,0x61,0x00,0x03,0x3c,0x20,0x20,0xff,0x20,0x20,0xfc,0x24,0xfc,0x00,0xfc,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 33822 萞 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x10,0x11,0x12,0x00,0x10,0x1f,0x10,0x10,0x14,0x18,0x10,0x20,0xff,0x20,0x20,0xfc,0x84,0x44,0x24,0x04,0x40,0x4c,0x70,0x41,0x41,0x3f,0x00 -+// 33823 萟 ; -+,0x02,0x02,0x7f,0x02,0x07,0x38,0x08,0x7f,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x09,0x0a,0x20,0x20,0xff,0x20,0x00,0x20,0xfc,0x24,0x24,0x64,0x34,0x2d,0x45,0x83,0x01,0x00 -+// 33824 萠 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x21,0x25,0x42,0x20,0x20,0xff,0x20,0x20,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x42,0x4e,0x84 -+// 33825 萡 ; -+,0x02,0x02,0x7f,0x22,0x1a,0x10,0x40,0x34,0x14,0x04,0x08,0x38,0x08,0x08,0x08,0x00,0x20,0x20,0xff,0x20,0x20,0x40,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 33826 萢 ; -+,0x02,0x02,0x3f,0x12,0x0a,0x08,0x20,0x10,0x11,0x04,0x04,0x08,0x30,0x10,0x10,0x00,0x10,0x10,0xff,0x10,0x50,0x40,0xff,0x81,0x79,0x49,0x79,0x45,0x42,0x40,0x3f,0x00 -+// 33827 萣 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x10,0x2f,0x00,0x04,0x04,0x04,0x0a,0x09,0x10,0x20,0x10,0x10,0xff,0x90,0x50,0xff,0x02,0xf8,0x80,0x80,0xf8,0x80,0x80,0x80,0xfe,0x00 -+// 33828 萤 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x20,0x40,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x1f,0x20,0x20,0xff,0x20,0x20,0xff,0x82,0x80,0xfc,0x84,0x84,0xfc,0x88,0x84,0xfe,0x84 -+// 33829 营 ; -+,0x02,0x02,0x3f,0x02,0x3f,0x20,0x47,0x04,0x04,0x07,0x00,0x0f,0x08,0x08,0x0f,0x08,0x20,0x20,0xff,0x20,0xff,0x02,0xf4,0x10,0x10,0xf0,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 33830 萦 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x21,0x42,0x04,0x0f,0x01,0x1f,0x08,0x0c,0x10,0x22,0x01,0x20,0x20,0xff,0x20,0xff,0x02,0x10,0x20,0xc4,0x3e,0xc2,0x90,0x88,0x8c,0x88,0x00 -+// 33831 萧 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x00,0x7f,0x00,0x1f,0x00,0x12,0x12,0x14,0x14,0x28,0x40,0x20,0x20,0xff,0xa0,0xf8,0x88,0xff,0x88,0xf8,0x80,0x84,0xa4,0x94,0x94,0x84,0x84 -+// 33832 萨 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3c,0x25,0x28,0x30,0x29,0x25,0x35,0x29,0x22,0x22,0x24,0x20,0x20,0xff,0x20,0x20,0x10,0xff,0x44,0x28,0xff,0x00,0x00,0x00,0x00,0x00,0x00 -+// 33833 萩 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x04,0x04,0x7f,0x0c,0x0e,0x15,0x15,0x24,0x44,0x04,0x20,0x20,0xff,0x20,0x20,0x10,0x12,0x53,0x54,0x90,0x28,0xa8,0x24,0x44,0x43,0x82 -+// 33834 萪 ; -+,0x02,0x02,0x7f,0x02,0x02,0x07,0x3c,0x04,0x3f,0x0c,0x0e,0x15,0x25,0x44,0x04,0x04,0x10,0x10,0xff,0x10,0x14,0x44,0x34,0x24,0x44,0x34,0x27,0xfc,0x04,0x04,0x04,0x04 -+// 33835 萫 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x00,0x3f,0x01,0x06,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x20,0x20,0xff,0x20,0xf8,0x80,0xfe,0xc0,0xb0,0x8f,0xfa,0x08,0xf8,0x08,0xf8,0x08 -+// 33836 萬 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x20,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0x92,0xfa,0x92,0x0a,0x04 -+// 33837 萭 ; -+,0x02,0x7f,0x02,0x0f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x20,0xff,0x20,0xf8,0x80,0xf8,0x88,0x88,0xf8,0x80,0xfe,0x92,0xfa,0x92,0x0a,0x04 -+// 33838 萮 ; -+,0x02,0x02,0x7f,0x02,0x01,0x06,0x1f,0x60,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x12,0x11,0x10,0x10,0xff,0x90,0x60,0x18,0xf7,0x02,0x84,0xa4,0xa4,0xa4,0xa4,0x84,0x94,0x08 -+// 33839 萯 ; -+,0x02,0x02,0x7f,0x02,0x02,0x07,0x08,0x1f,0x28,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x10,0x10,0xff,0x10,0x00,0xf8,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x06 -+// 33840 萰 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x00,0x0f,0x0c,0x0a,0x09,0x0f,0x01,0x06,0x18,0x60,0x00,0x10,0x10,0xff,0x90,0xfe,0x80,0xfc,0x8c,0x94,0xa4,0xfc,0xa0,0x98,0x87,0x82,0x80 -+// 33841 萱 ; -+,0x02,0x02,0x3f,0x02,0x1f,0x10,0x2f,0x00,0x07,0x04,0x07,0x04,0x07,0x00,0x3f,0x00,0x10,0x10,0xff,0x90,0xff,0x02,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x00 -+// 33842 萲 ; -+,0x02,0x7f,0x02,0x00,0x1f,0x04,0x1f,0x01,0x7f,0x02,0x03,0x05,0x04,0x08,0x11,0x2e,0x10,0xff,0x10,0xfc,0x88,0x50,0xfe,0x00,0xff,0x00,0xf8,0x10,0x90,0x60,0x98,0x07 -+// 33843 萳 ; -+,0x04,0x04,0x7f,0x04,0x04,0x7f,0x01,0x1f,0x12,0x11,0x17,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0xff,0x90,0x90,0xff,0x00,0xfc,0x24,0x44,0xf4,0x84,0xf4,0x84,0x94,0x88 -+// 33844 萴 ; -+,0x02,0x02,0x3f,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x09,0x0c,0x10,0x20,0x10,0x10,0xff,0x10,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x02,0x82,0xca,0x84 -+// 33845 萵 ; -+,0x02,0x7f,0x02,0x07,0x04,0x07,0x04,0x04,0x1f,0x10,0x13,0x12,0x13,0x12,0x10,0x10,0x10,0xff,0x10,0xf8,0x08,0xc8,0x48,0x48,0xfe,0x02,0xf2,0x12,0xf2,0x12,0x0a,0x04 -+// 33846 萶 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x00,0x1f,0x01,0x3f,0x04,0x1f,0x64,0x07,0x04,0x07,0x04,0x10,0x10,0xff,0x90,0xfe,0x80,0xfc,0x00,0xff,0x10,0xfc,0x13,0xf0,0x10,0xf0,0x10 -+// 33847 萷 ; -+,0x02,0x02,0x7f,0x02,0x04,0x24,0x15,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x20,0x22,0x21,0x10,0x10,0xff,0x10,0x12,0x82,0x12,0x92,0x92,0x92,0x92,0x92,0x92,0x82,0x8a,0x04 -+// 33848 萸 ; -+,0x02,0x02,0x7f,0x02,0x06,0x18,0x10,0x1e,0x10,0x10,0x1f,0x01,0x02,0x04,0x18,0x60,0x20,0x20,0xff,0x20,0x9c,0x84,0x84,0xbc,0x84,0x84,0xfc,0x40,0x20,0x18,0x07,0x02 -+// 33849 萹 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x0c,0x17,0x14,0x24,0x44,0x04,0x10,0x10,0xff,0x90,0x50,0xfe,0x02,0xfe,0x00,0xfe,0x92,0xfe,0x92,0x92,0x8a,0x04 -+// 33850 萺 ; -+,0x02,0x7f,0x02,0x1f,0x10,0x17,0x10,0x17,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0xff,0x10,0xfc,0x04,0xf4,0x04,0xf4,0x04,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 33851 萻 ; -+,0x02,0x02,0x3f,0x03,0x02,0x1f,0x02,0x01,0x3f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x20,0x20,0xff,0x20,0xa0,0xfe,0x10,0x20,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 33852 萼 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x00,0x1f,0x00,0x7f,0x02,0x07,0x02,0x00,0x00,0x20,0x20,0xff,0x20,0x7c,0x44,0x7c,0x00,0xfe,0x00,0xff,0x00,0xf8,0x08,0x48,0x30 -+// 33853 落 ; -+,0x02,0x02,0x7f,0x02,0x22,0x10,0x50,0x25,0x24,0x08,0x09,0x77,0x11,0x11,0x11,0x11,0x20,0x20,0xff,0x20,0x80,0xfc,0x88,0x50,0x20,0x50,0x8c,0xfb,0x08,0x08,0xf8,0x08 -+// 33854 萾 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x04,0x07,0x05,0x08,0x11,0x22,0x0f,0x09,0x09,0x7f,0x00,0x20,0x20,0xff,0x20,0xf8,0x08,0xee,0x22,0xc2,0x2a,0x14,0xfc,0x24,0x24,0xff,0x00 -+// 33855 萿 ; -+,0x02,0x02,0x7f,0x02,0x02,0x11,0x0c,0x48,0x33,0x20,0x09,0x09,0x31,0x11,0x11,0x11,0x20,0x20,0xff,0x20,0x20,0xfc,0x20,0x20,0xfe,0x20,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 33856 葀 ; -+,0x02,0x02,0x3f,0x02,0x0a,0x08,0x7e,0x08,0x0b,0x0c,0x78,0x28,0x08,0x08,0x28,0x10,0x20,0x20,0xff,0x20,0x20,0xfe,0x10,0x10,0xff,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 33857 葁 ; -+,0x02,0x7f,0x02,0x04,0x02,0x3f,0x00,0x0f,0x00,0x1f,0x02,0x7f,0x02,0x07,0x00,0x1f,0x10,0xff,0x10,0x08,0x10,0xff,0x80,0xf8,0x80,0xfe,0x00,0xff,0x10,0x20,0xc0,0x3c -+// 33858 葂 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0f,0x11,0x3f,0x52,0x1f,0x15,0x05,0x09,0x09,0x10,0x20,0x10,0x10,0xff,0x10,0x08,0x88,0x3e,0xca,0x52,0xd2,0x22,0x2a,0x45,0x01,0xff,0x00 -+// 33859 葃 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x3e,0x22,0x22,0x3f,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0xff,0x20,0x40,0x40,0x7f,0xa0,0xa0,0x3e,0x20,0x20,0x3e,0x20,0x20,0x20 -+// 33860 葄 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x11,0x25,0x42,0x10,0x10,0xff,0x10,0x20,0x20,0x7f,0xa0,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x20 -+// 33861 葅 ; -+,0x02,0x02,0x3f,0x02,0x0a,0x08,0x08,0x14,0x22,0x48,0x08,0x08,0x14,0x23,0x42,0x00,0x10,0x10,0xff,0x10,0x10,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xff,0x00,0x00 -+// 33862 葆 ; -+,0x02,0x02,0x7f,0x02,0x09,0x0d,0x19,0x29,0x48,0x0f,0x08,0x08,0x09,0x0a,0x0c,0x08,0x20,0x20,0xff,0x20,0xfc,0x04,0x04,0xfc,0x20,0xff,0x70,0xa8,0x27,0x22,0x20,0x20 -+// 33863 葇 ; -+,0x02,0x7f,0x02,0x1f,0x01,0x00,0x3f,0x02,0x0c,0x31,0x7f,0x01,0x06,0x18,0x60,0x00,0x20,0xff,0x20,0xfc,0x30,0xc0,0xfe,0x84,0x80,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 33864 葈 ; -+,0x04,0x04,0x7f,0x06,0x04,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x06,0x18,0x60,0x20,0x20,0xff,0x20,0x08,0xfc,0x04,0xf8,0x08,0xf8,0x80,0xff,0xc0,0xb0,0x8e,0x84 -+// 33865 葉 ; -+,0x02,0x02,0x3f,0x02,0x09,0x7f,0x09,0x09,0x08,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x20,0x20,0xff,0x20,0x10,0xff,0x10,0xf0,0x00,0xfc,0x40,0xff,0x50,0x48,0x47,0x42 -+// 33866 葊 ; -+,0x02,0x3f,0x02,0x01,0x02,0x07,0x18,0x67,0x04,0x07,0x02,0x3f,0x02,0x02,0x04,0x08,0x10,0xff,0x90,0x40,0x30,0xfc,0x03,0xfa,0x08,0xf8,0x10,0xff,0x10,0x10,0x10,0x10 -+// 33867 葋 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1e,0x12,0x12,0x1f,0x12,0x1e,0x12,0x12,0x22,0x2a,0x44,0x20,0x20,0xff,0x20,0x40,0x40,0x7e,0x82,0x72,0x52,0x52,0x52,0x72,0x02,0x0a,0x04 -+// 33868 葌 ; -+,0x02,0x3f,0x02,0x01,0x1f,0x02,0x01,0x07,0x08,0x3f,0x09,0x12,0x0c,0x12,0x21,0x40,0x20,0xff,0x20,0x20,0xfe,0x20,0xc0,0x3c,0x10,0x7f,0x24,0x64,0x18,0x26,0x43,0x82 -+// 33869 葍 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x20,0x20,0xff,0x20,0xff,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x04 -+// 33870 葎 ; -+,0x02,0x7f,0x02,0x04,0x0c,0x19,0x63,0x0c,0x09,0x18,0x6b,0x08,0x0b,0x08,0x18,0x00,0x30,0xff,0x20,0x40,0x20,0xfc,0xff,0x24,0xfc,0x20,0xfe,0x20,0xff,0x20,0x60,0x00 -+// 33871 葏 ; -+,0x04,0x3f,0x02,0x06,0x11,0x08,0x23,0x14,0x15,0x08,0x2b,0x10,0x13,0x10,0x10,0x00,0x30,0xff,0x20,0x40,0xf8,0x24,0xff,0x24,0xf8,0x24,0xfc,0x22,0xff,0x20,0x60,0x00 -+// 33872 葐 ; -+,0x02,0x02,0x7f,0x02,0x04,0x06,0x0b,0x10,0x21,0x02,0x04,0x0f,0x09,0x09,0x7f,0x00,0x20,0x20,0xff,0x20,0x10,0x08,0xf6,0x14,0x10,0x50,0x20,0xfc,0x24,0x24,0xff,0x00 -+// 33873 葑 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x3f,0x04,0x7f,0x04,0x04,0x3f,0x04,0x07,0x7c,0x20,0x20,0x20,0xff,0x20,0x24,0x04,0x04,0x7f,0x84,0x44,0x24,0xb4,0x24,0x84,0x14,0x08 -+// 33874 葒 ; -+,0x02,0x02,0x7f,0x02,0x08,0x08,0x12,0x3f,0x04,0x08,0x3f,0x00,0x2a,0x25,0x45,0x00,0x20,0x20,0xff,0x20,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 33875 葓 ; -+,0x02,0x02,0x3f,0x02,0x10,0x08,0x43,0x30,0x28,0x08,0x17,0x70,0x11,0x11,0x12,0x14,0x20,0x20,0xff,0x20,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x00,0x08,0x84,0x06,0x04 -+// 33876 葔 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x0d,0x08,0x1b,0x29,0x49,0x0a,0x0f,0x08,0x08,0x09,0x0a,0x20,0x20,0xff,0x20,0x20,0xf8,0x08,0xff,0x00,0xfe,0x20,0xfe,0x50,0x88,0x07,0x02 -+// 33877 葕 ; -+,0x02,0x02,0x7f,0x02,0x08,0x0d,0x10,0x26,0x09,0x19,0x28,0x4b,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x20,0x20,0x1f,0xc0,0x80,0x1f,0x44,0x44,0x84,0x84,0x84,0x94,0x88 -+// 33878 葖 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x14,0x26,0x04,0x08,0x3f,0x01,0x01,0x02,0x0c,0x30,0x10,0x10,0xff,0x90,0x50,0xff,0x12,0x88,0xa6,0x94,0xfe,0x40,0x20,0x18,0x0e,0x04 -+// 33879 著 ; -+,0x02,0x02,0x3f,0x02,0x02,0x0f,0x00,0x00,0x7f,0x01,0x07,0x1a,0x63,0x02,0x03,0x02,0x20,0x20,0xff,0x20,0x88,0xfc,0x90,0xa0,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 33880 葘 ; -+,0x02,0x02,0x3f,0x02,0x02,0x04,0x3f,0x09,0x04,0x04,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x10,0xff,0x10,0x44,0x88,0xff,0x10,0x88,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x04 -+// 33881 葙 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x04,0x3f,0x0c,0x0e,0x15,0x25,0x44,0x04,0x04,0x04,0x10,0x10,0xff,0x10,0x10,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 33882 葚 ; -+,0x02,0x02,0x7f,0x02,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x09,0x09,0x0a,0x0f,0x20,0x20,0xff,0x20,0x10,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xff,0x10,0x8c,0x08,0xfe -+// 33883 葛 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x07,0x08,0x19,0x6a,0x0f,0x08,0x00,0x20,0xff,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x82,0x42,0x22,0xf2,0x0a,0x04 -+// 33884 葜 ; -+,0x02,0x7f,0x02,0x04,0x3f,0x04,0x1f,0x04,0x3f,0x04,0x7f,0x00,0x01,0x06,0x18,0x60,0x10,0xff,0x10,0x00,0x7e,0x12,0x22,0x22,0x4e,0x84,0xff,0x80,0x60,0x18,0x07,0x02 -+// 33885 葝 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3f,0x12,0x15,0x2a,0x15,0x3f,0x04,0x04,0x07,0x7c,0x20,0x20,0x20,0xff,0x20,0x20,0xd0,0x90,0x7e,0x12,0x12,0x92,0x12,0x22,0xa2,0x4a,0x84 -+// 33886 葞 ; -+,0x02,0x02,0x7f,0x02,0x02,0x3e,0x02,0x1e,0x10,0x10,0x3e,0x12,0x02,0x03,0x0a,0x04,0x20,0x20,0xff,0x20,0x20,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0x7f,0xc4,0x04,0x04 -+// 33887 葟 ; -+,0x04,0x04,0x7f,0x04,0x05,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x0f,0x00,0x7f,0x10,0x10,0xff,0x90,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x80,0xfc,0x80,0xff -+// 33888 葠 ; -+,0x02,0x7f,0x02,0x0b,0x0c,0x09,0x10,0x33,0x50,0x17,0x14,0x19,0x10,0x10,0x11,0x16,0x20,0xff,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x02,0xf8,0x90,0x60,0x98,0x07 -+// 33889 葡 ; -+,0x02,0x02,0x3f,0x0a,0x0f,0x08,0x17,0x20,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0xfe,0x92,0xfa,0x82,0xfa,0x8a,0xfa,0x8a,0xfa,0x8a,0xaa,0x96 -+// 33890 葢 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x1f,0x01,0x02,0x0c,0x3f,0x09,0x09,0x09,0x7f,0x00,0x20,0x20,0xff,0x20,0xa0,0x80,0xfe,0x20,0x98,0x47,0xfa,0x48,0x48,0x48,0xff,0x00 -+// 33891 董 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x7f,0x20,0xff,0x20,0xfc,0x80,0xff,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xff -+// 33892 葤 ; -+,0x02,0x02,0x3f,0x02,0x04,0x09,0x12,0x3c,0x09,0x3f,0x11,0x02,0x29,0x25,0x25,0x40,0x20,0x20,0xff,0x20,0x04,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x04,0x84,0x14,0x08 -+// 33893 葥 ; -+,0x02,0x02,0x7f,0x02,0x04,0x02,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x15,0x12,0x20,0x20,0xff,0x20,0x08,0x10,0xff,0x04,0x04,0x24,0x24,0x24,0x24,0x24,0x14,0x08 -+// 33894 葦 ; -+,0x02,0x7f,0x02,0x0f,0x00,0x7f,0x00,0x07,0x04,0x07,0x00,0x1f,0x08,0x3f,0x00,0x00,0x20,0xff,0xa0,0xf8,0x88,0xff,0x00,0xf8,0x08,0xf8,0x80,0xfe,0x80,0xff,0x80,0x80 -+// 33895 葧 ; -+,0x02,0x7f,0x02,0x04,0x3f,0x04,0x3f,0x20,0x5f,0x02,0x04,0x0f,0x34,0x04,0x14,0x08,0x10,0xff,0x10,0x00,0xd0,0x10,0xbe,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x4a,0x84 -+// 33896 葨 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x09,0x08,0x08,0x0a,0x1c,0x08,0x10,0xff,0x10,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xff,0x08,0x9c,0x60,0x18,0x07,0x02 -+// 33897 葩 ; -+,0x02,0x02,0x7f,0x0a,0x10,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x20,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0x92,0x92,0xfe,0x82,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 33898 葪 ; -+,0x02,0x02,0x7f,0x0a,0x0f,0x08,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x12,0x22,0x21,0x40,0x20,0x20,0xff,0x20,0xc2,0x92,0xd2,0x52,0xd2,0x52,0xd2,0x52,0x52,0x42,0x4a,0x84 -+// 33899 葫 ; -+,0x02,0x02,0x7f,0x02,0x04,0x04,0x04,0x3f,0x04,0x04,0x1f,0x11,0x11,0x1f,0x10,0x01,0x20,0x20,0xff,0x20,0x00,0x7e,0x42,0xfe,0x42,0x42,0x7e,0x42,0x42,0x42,0x8a,0x04 -+// 33900 葬 ; -+,0x02,0x7f,0x02,0x3f,0x04,0x0f,0x11,0x6a,0x04,0x1a,0x7f,0x02,0x02,0x04,0x08,0x10,0x20,0xff,0x20,0xfe,0x20,0xac,0x31,0x21,0x1f,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 33901 葭 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x11,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x11,0x20,0x20,0xff,0x20,0x00,0x7c,0x04,0x7c,0x04,0x00,0x7e,0x44,0x28,0x10,0x6c,0x83 -+// 33902 葮 ; -+,0x02,0x02,0x7f,0x02,0x06,0x18,0x10,0x1e,0x10,0x1e,0x10,0x17,0x78,0x10,0x10,0x13,0x10,0x10,0xff,0x10,0x78,0x48,0x48,0x47,0x80,0xfe,0x44,0x28,0x10,0x28,0xc7,0x02 -+// 33903 葯 ; -+,0x02,0x02,0x7f,0x02,0x02,0x08,0x09,0x12,0x3c,0x0a,0x3f,0x01,0x2a,0x25,0x25,0x40,0x20,0x20,0xff,0x20,0x40,0x40,0x7e,0x42,0x82,0x22,0x1a,0x12,0x02,0x02,0x0a,0x04 -+// 33904 葰 ; -+,0x02,0x02,0x3f,0x02,0x04,0x06,0x0d,0x18,0x28,0x49,0x0a,0x08,0x09,0x0a,0x08,0x0b,0x10,0x10,0xff,0x10,0x48,0x84,0xfe,0x8a,0x84,0x43,0x7c,0x84,0x48,0x30,0xcc,0x03 -+// 33905 葱 ; -+,0x02,0x02,0x3f,0x0a,0x0f,0x09,0x13,0x26,0x18,0x03,0x1d,0x00,0x14,0x14,0x23,0x00,0x20,0x20,0xff,0x20,0xfc,0x24,0x24,0xc4,0xa4,0x14,0x08,0xc4,0x4a,0x0b,0xfa,0x00 -+// 33906 葲 ; -+,0x02,0x7f,0x02,0x03,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3e,0x02,0x04,0x08,0x12,0x21,0x20,0xff,0xa0,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x84,0xce,0xb0,0x90,0x88,0x87,0x02 -+// 33907 葳 ; -+,0x02,0x3f,0x02,0x02,0x1f,0x10,0x1f,0x12,0x12,0x1f,0x14,0x14,0x13,0x24,0x28,0x50,0x20,0xff,0x24,0x22,0xff,0x20,0xe0,0x24,0x26,0xa4,0x94,0x98,0x10,0xa9,0xa5,0x42 -+// 33908 葴 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x10,0x1f,0x10,0x17,0x14,0x14,0x17,0x20,0x20,0x41,0x10,0x10,0xff,0x10,0x24,0xff,0x20,0xa4,0x26,0xa4,0xa8,0x91,0xa9,0x45,0x82,0x00 -+// 33909 葵 ; -+,0x02,0x02,0x7f,0x02,0x3e,0x02,0x12,0x0c,0x0b,0x10,0x20,0x1f,0x00,0x01,0x06,0x18,0x20,0x20,0xff,0x20,0x48,0x32,0x14,0x0c,0xf7,0x82,0x80,0xfc,0x80,0x60,0x18,0x08 -+// 33910 葶 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x3f,0x20,0x5f,0x00,0x00,0x02,0x01,0x20,0xff,0xa0,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xff,0x02,0xfc,0x80,0x80,0x80,0x00 -+// 33911 葷 ; -+,0x02,0x3f,0x02,0x3f,0x20,0x5f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x10,0xff,0x10,0xff,0x82,0xfc,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80,0x80 -+// 33912 葸 ; -+,0x02,0x02,0x7f,0x02,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x14,0x14,0x14,0x23,0x00,0x20,0x20,0xff,0x20,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x80,0x54,0x12,0x1b,0xf2,0x00 -+// 33913 葹 ; -+,0x02,0x02,0x7f,0x12,0x08,0x7f,0x10,0x11,0x1e,0x13,0x12,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0xff,0x10,0x40,0x7f,0x90,0x10,0x5e,0xf2,0x52,0x4a,0x45,0x41,0x3f,0x00 -+// 33914 葺 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x00,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x7f,0x00,0x00,0x20,0xff,0x20,0xf8,0x08,0xf8,0x00,0xff,0x08,0xf8,0x08,0xf8,0x08,0xff,0x08,0x08 -+// 33915 葻 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x10,0x10,0x17,0x10,0x17,0x14,0x17,0x10,0x20,0x2f,0x40,0x10,0xff,0x10,0x10,0xfc,0x04,0x74,0x84,0x84,0xf4,0x94,0xf4,0x94,0xfd,0x93,0x01 -+// 33916 葼 ; -+,0x02,0x3f,0x02,0x06,0x11,0x12,0x14,0x1f,0x08,0x14,0x27,0x0a,0x11,0x00,0x07,0x38,0x10,0xff,0x10,0x20,0xc4,0x24,0x14,0xfc,0x08,0x06,0xfa,0x10,0x20,0xc0,0x38,0x07 -+// 33917 葽 ; -+,0x02,0x7f,0x02,0x3f,0x02,0x1f,0x12,0x12,0x1f,0x02,0x7f,0x04,0x02,0x01,0x06,0x38,0x20,0xff,0x20,0xfe,0x20,0xfc,0x24,0x24,0xfc,0x00,0xff,0x10,0x20,0xc0,0x30,0x0e -+// 33918 葾 ; -+,0x02,0x7f,0x02,0x0a,0x0f,0x11,0x19,0x26,0x44,0x08,0x31,0x04,0x14,0x14,0x23,0x00,0x20,0xff,0x20,0x20,0x7c,0x44,0x44,0x5a,0x42,0x3e,0x00,0xc2,0x49,0x09,0xf8,0x00 -+// 33919 葿 ; -+,0x02,0x3f,0x02,0x0f,0x08,0x08,0x0f,0x08,0x0b,0x0a,0x0b,0x0a,0x13,0x12,0x23,0x42,0x10,0xff,0x10,0xfc,0x84,0x84,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 33920 蒀 ; -+,0x02,0x02,0x7f,0x02,0x07,0x04,0x07,0x04,0x07,0x00,0x0f,0x09,0x09,0x09,0x7f,0x00,0x10,0x10,0xff,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 33921 蒁 ; -+,0x04,0x7f,0x04,0x44,0x30,0x10,0x07,0x70,0x10,0x11,0x12,0x14,0x10,0x28,0x47,0x00,0x20,0xfe,0x20,0x20,0x50,0x48,0xfe,0xe0,0xd0,0x58,0x4c,0x48,0x40,0x40,0xff,0x00 -+// 33922 蒂 ; -+,0x02,0x02,0x3f,0x02,0x1f,0x02,0x01,0x1f,0x10,0x2f,0x08,0x08,0x08,0x08,0x08,0x00,0x20,0x20,0xff,0xa0,0xfe,0x10,0x20,0xff,0x82,0xfc,0x88,0x88,0x88,0xb8,0x90,0x80 -+// 33923 蒃 ; -+,0x02,0x02,0x7f,0x02,0x04,0x07,0x08,0x3f,0x03,0x1c,0x03,0x0c,0x33,0x0c,0x31,0x00,0x10,0x10,0xff,0x10,0x00,0xf0,0x20,0xff,0x08,0x90,0x60,0xd0,0x4c,0x47,0x42,0x80 -+// 33924 蒄 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x20,0x5f,0x00,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x10,0x10,0xff,0x10,0xff,0x02,0x08,0x7e,0x88,0x28,0x28,0x08,0x2a,0x13,0xfe,0x00 -+// 33925 蒅 ; -+,0x02,0x7f,0x02,0x08,0x25,0x10,0x04,0x38,0x09,0x08,0x3f,0x01,0x02,0x04,0x18,0x60,0x10,0xff,0x10,0x40,0xf8,0x48,0x49,0x89,0x07,0x80,0xfe,0xc0,0xa0,0x98,0x87,0x82 -+// 33926 蒆 ; -+,0x02,0x3f,0x02,0x00,0x3f,0x04,0x07,0x3c,0x01,0x7f,0x02,0x03,0x00,0x03,0x0c,0x30,0x10,0xff,0x10,0x00,0x7c,0x64,0x55,0x57,0x80,0xff,0x08,0x10,0xe0,0x18,0x06,0x04 -+// 33927 蒇 ; -+,0x02,0x3f,0x02,0x02,0x1f,0x10,0x17,0x15,0x15,0x15,0x15,0x11,0x12,0x24,0x28,0x50,0x10,0xff,0x14,0x12,0xff,0x10,0xd0,0x52,0x52,0x54,0x48,0x08,0x88,0xd5,0x65,0x42 -+// 33928 蒈 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0f,0x08,0x0a,0x1d,0x0a,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x10,0x10,0xff,0x10,0x40,0x48,0x72,0x42,0x3e,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08 -+// 33929 蒉 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x09,0x09,0x02,0x0c,0x20,0xff,0xa0,0xf8,0x88,0xf8,0x80,0xff,0x00,0xf8,0x88,0x88,0x48,0x20,0x18,0x10 -+// 33930 蒊 ; -+,0x02,0x3f,0x02,0x08,0x0c,0x18,0x2b,0x48,0x08,0x00,0x1f,0x11,0x11,0x1f,0x10,0x00,0x20,0xfe,0x20,0x40,0x4c,0x70,0xc2,0x43,0x3e,0x00,0x24,0x28,0x32,0x23,0x1e,0x00 -+// 33931 蒋 ; -+,0x02,0x02,0x7f,0x02,0x04,0x44,0x24,0x37,0x24,0x0c,0x17,0x64,0x24,0x04,0x04,0x04,0x20,0x20,0xff,0x20,0x40,0x7c,0x84,0x48,0x30,0xc8,0xff,0x08,0x88,0x88,0x28,0x10 -+// 33932 蒌 ; -+,0x02,0x02,0x7f,0x02,0x08,0x04,0x3f,0x02,0x1c,0x01,0x7f,0x02,0x06,0x01,0x03,0x1c,0x20,0x22,0xff,0x20,0x88,0x90,0xfe,0xa0,0x9c,0x00,0xff,0x20,0x20,0xc0,0x38,0x04 -+// 33933 蒍 ; -+,0x02,0x02,0x7f,0x0a,0x05,0x1f,0x02,0x03,0x04,0x07,0x08,0x0a,0x15,0x25,0x48,0x00,0x20,0x20,0xff,0x20,0x00,0xf0,0x10,0xf8,0x08,0xfe,0x02,0x52,0x2a,0x2a,0x0a,0x04 -+// 33934 蒎 ; -+,0x02,0x02,0x7f,0x02,0x12,0x09,0x21,0x11,0x15,0x05,0x09,0x79,0x11,0x12,0x12,0x14,0x20,0x20,0xff,0x20,0x1e,0xe0,0x0e,0x70,0x52,0x56,0x48,0x48,0x44,0x53,0xe2,0x40 -+// 33935 蒏 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3f,0x20,0x4f,0x01,0x0f,0x09,0x0a,0x0f,0x08,0x0f,0x08,0x20,0x20,0xff,0x20,0x00,0xff,0x02,0xfc,0x20,0xfc,0x24,0x1c,0xfc,0x04,0xfc,0x0c -+// 33936 蒐 ; -+,0x02,0x7f,0x02,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x09,0x01,0x02,0x02,0x04,0x08,0x10,0x10,0xff,0x90,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x50,0x54,0x7e,0x55,0x41,0x3f,0x00 -+// 33937 蒑 ; -+,0x02,0x7f,0x02,0x1f,0x10,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x1f,0x11,0x21,0x25,0x42,0x10,0xff,0x10,0x80,0x3c,0x24,0x24,0x43,0xbc,0x44,0x24,0x28,0x10,0x28,0x46,0x84 -+// 33938 蒒 ; -+,0x02,0x3f,0x02,0x08,0x1e,0x12,0x12,0x1e,0x12,0x10,0x1f,0x11,0x11,0x1f,0x10,0x00,0x10,0xff,0x10,0x00,0xff,0x10,0x10,0x7e,0x52,0x52,0x52,0x52,0x52,0x56,0x10,0x10 -+// 33939 蒓 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0c,0x12,0x3c,0x08,0x12,0x3f,0x01,0x2a,0x25,0x45,0x00,0x20,0x20,0xff,0x20,0x10,0xfe,0x10,0x54,0x54,0x54,0x7c,0x10,0x11,0x11,0x0f,0x00 -+// 33940 蒔 ; -+,0x02,0x02,0x3f,0x02,0x02,0x3c,0x24,0x25,0x3c,0x25,0x24,0x24,0x3c,0x24,0x20,0x00,0x20,0x20,0xff,0x20,0x10,0xfe,0x10,0xff,0x08,0xff,0x88,0x68,0x48,0x08,0x28,0x10 -+// 33941 蒕 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x09,0x0a,0x0f,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0x10,0x10,0xff,0x10,0xf8,0x88,0x48,0x28,0xf8,0x00,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 33942 蒖 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x04,0x7f,0x06,0x38,0x10,0xff,0x90,0xfe,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff,0x30,0x0e -+// 33943 蒗 ; -+,0x02,0x02,0x7f,0x02,0x20,0x1b,0x52,0x2b,0x2a,0x0b,0x0a,0x72,0x12,0x12,0x17,0x12,0x20,0x20,0xff,0xa0,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x44,0x28,0x10,0x8c,0x03,0x02 -+// 33944 蒘 ; -+,0x02,0x7f,0x02,0x08,0x3f,0x11,0x0e,0x11,0x2f,0x00,0x0f,0x00,0x3f,0x00,0x02,0x01,0x20,0xff,0x20,0x00,0xbe,0x22,0x3e,0x00,0xfc,0x80,0xfc,0x80,0xfe,0x80,0x80,0x00 -+// 33945 蒙 ; -+,0x02,0x7f,0x02,0x3f,0x20,0x07,0x00,0x3f,0x03,0x0c,0x31,0x06,0x39,0x06,0x39,0x00,0x10,0xff,0x10,0xff,0x02,0xf8,0x00,0xfe,0x08,0x8c,0x58,0x60,0xd0,0x4c,0x47,0x82 -+// 33946 蒚 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x07,0x04,0x07,0x00,0x1f,0x12,0x11,0x1f,0x10,0x10,0x10,0x20,0xff,0x20,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xfe,0x12,0x22,0xfe,0x82,0x8a,0x84 -+// 33947 蒛 ; -+,0x02,0x02,0x7f,0x12,0x10,0x1f,0x24,0x04,0x7f,0x04,0x25,0x25,0x27,0x3c,0x00,0x01,0x20,0x20,0xff,0x20,0x10,0x7c,0x14,0x14,0xff,0x10,0x10,0x28,0x24,0x47,0x82,0x00 -+// 33948 蒜 ; -+,0x04,0x04,0x7f,0x04,0x00,0x3f,0x00,0x7f,0x04,0x26,0x35,0x25,0x44,0x45,0x14,0x08,0x20,0x20,0xff,0x20,0x00,0x7e,0x00,0x7f,0x08,0x4c,0x6a,0x4b,0x8a,0x08,0x28,0x10 -+// 33949 蒝 ; -+,0x02,0x7f,0x02,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x11,0x11,0x12,0x24,0x28,0x40,0x20,0xff,0x20,0xfe,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xa8,0x26,0x23,0xa2,0x40 -+// 33950 蒞 ; -+,0x02,0x02,0x3f,0x02,0x11,0x09,0x25,0x13,0x15,0x05,0x09,0x39,0x09,0x09,0x09,0x09,0x10,0x10,0xff,0x10,0x10,0x88,0x7e,0x00,0x44,0x26,0x24,0x24,0x28,0x08,0x7f,0x00 -+// 33951 蒟 ; -+,0x02,0x02,0x7f,0x02,0x08,0x04,0x7e,0x01,0x22,0x13,0x12,0x14,0x07,0x78,0x00,0x00,0x20,0x20,0xff,0x20,0x40,0x7e,0x82,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 33952 蒠 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x14,0x14,0x23,0x00,0x10,0x10,0xff,0x90,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x02,0x89,0x4d,0xf8,0x00 -+// 33953 蒡 ; -+,0x02,0x3f,0x02,0x00,0x1f,0x02,0x3f,0x21,0x40,0x1f,0x02,0x03,0x04,0x04,0x08,0x10,0x10,0xff,0x90,0x40,0xfe,0x10,0xff,0x02,0x80,0xfe,0x00,0xf8,0x08,0x08,0x28,0x10 -+// 33954 蒢 ; -+,0x02,0x02,0x7f,0x02,0x3c,0x24,0x28,0x33,0x28,0x25,0x24,0x3d,0x29,0x22,0x24,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x8c,0xfb,0x20,0xfe,0x20,0x28,0xa4,0x26,0xa4,0x40 -+// 33955 蒣 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0c,0x18,0x24,0x4d,0x1a,0x2b,0x48,0x08,0x09,0x0a,0x08,0x10,0x10,0xff,0x10,0x20,0x20,0x50,0x8c,0xfb,0x20,0xfe,0x20,0xa8,0x26,0xa2,0x40 -+// 33956 蒤 ; -+,0x02,0x02,0x7f,0x02,0x10,0x08,0x40,0x25,0x24,0x0b,0x08,0x71,0x11,0x12,0x14,0x10,0x10,0x10,0xff,0x10,0x20,0x58,0x84,0x7b,0x20,0xfe,0x20,0x24,0xa3,0x22,0xa0,0x40 -+// 33957 蒥 ; -+,0x02,0x02,0x7f,0x02,0x03,0x1c,0x11,0x13,0x1d,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x10,0xff,0x10,0x00,0x7e,0x22,0xa2,0x2a,0x44,0xfc,0x84,0xfc,0x84,0xfc,0x04 -+// 33958 蒦 ; -+,0x02,0x7f,0x0a,0x0c,0x1f,0x28,0x4f,0x08,0x0f,0x08,0x07,0x02,0x01,0x00,0x07,0x38,0x10,0xff,0x90,0x40,0xfe,0x40,0xfc,0x40,0xfe,0x00,0xf8,0x10,0x20,0xc0,0x38,0x07 -+// 33959 蒧 ; -+,0x02,0x7f,0x02,0x02,0x00,0x3f,0x22,0x23,0x22,0x2f,0x28,0x2f,0x28,0x28,0x40,0x00,0x20,0xff,0x20,0x24,0x12,0xff,0x10,0xd4,0x16,0x94,0x98,0x99,0xa9,0x25,0x43,0x80 -+// 33960 蒨 ; -+,0x02,0x7f,0x02,0x02,0x09,0x0c,0x19,0x18,0x2b,0x48,0x09,0x09,0x09,0x09,0x09,0x09,0x20,0xff,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 33961 蒩 ; -+,0x02,0x3f,0x02,0x02,0x07,0x3c,0x04,0x3f,0x04,0x0e,0x0d,0x15,0x24,0x04,0x05,0x04,0x10,0xff,0x10,0x10,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0x44,0xff,0x00 -+// 33962 蒪 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x3f,0x02,0x02,0x00,0x10,0xff,0x14,0x92,0xfe,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x94,0xff,0x10,0x50,0x20 -+// 33963 蒫 ; -+,0x02,0x7f,0x02,0x04,0x02,0x1f,0x00,0x0f,0x00,0x3f,0x02,0x07,0x18,0x60,0x1f,0x00,0x20,0xff,0x20,0x10,0x20,0xfe,0x80,0xfc,0x80,0xff,0x00,0xfc,0x40,0x40,0xff,0x00 -+// 33964 蒬 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x22,0x47,0x08,0x1f,0x28,0x0f,0x09,0x01,0x02,0x04,0x08,0x10,0xff,0x10,0x10,0xff,0x02,0xf4,0x20,0xf8,0x88,0xf8,0x50,0x4d,0x49,0x3f,0x00 -+// 33965 蒭 ; -+,0x02,0x3f,0x0a,0x0f,0x08,0x14,0x27,0x04,0x01,0x07,0x18,0x68,0x0f,0x01,0x06,0x18,0x10,0xff,0x10,0xfe,0x82,0x92,0xf2,0x8a,0x04,0xfe,0x82,0x8a,0xfa,0x02,0x0a,0x04 -+// 33966 蒮 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x14,0x24,0x0f,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x10,0x10,0xff,0x90,0x40,0xff,0x82,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xff,0x00 -+// 33967 蒯 ; -+,0x08,0x08,0x7f,0x08,0x3d,0x25,0x25,0x3d,0x25,0x3d,0x25,0x25,0x25,0x25,0x26,0x4c,0x81,0x81,0xf1,0x89,0xe9,0x29,0x29,0xe9,0x29,0xe9,0x29,0x29,0x29,0x21,0xa5,0x42 -+// 33968 蒰 ; -+,0x02,0x7f,0x02,0x0a,0x1f,0x11,0x19,0x15,0x7f,0x11,0x19,0x15,0x11,0x21,0x25,0x42,0x20,0xff,0x20,0x20,0x3c,0x24,0x24,0x43,0x80,0x7e,0x24,0x24,0x18,0x24,0x43,0x82 -+// 33969 蒱 ; -+,0x02,0x02,0x7f,0x0a,0x08,0x7f,0x08,0x0a,0x0c,0x18,0x68,0x28,0x08,0x08,0x28,0x10,0x20,0x20,0xff,0x24,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x92,0x9a,0x84 -+// 33970 蒲 ; -+,0x02,0x7f,0x02,0x42,0x2f,0x10,0x4b,0x2a,0x2b,0x0a,0x12,0x73,0x12,0x12,0x12,0x12,0x20,0xff,0x28,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x2a,0x24 -+// 33971 蒳 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x12,0x3c,0x08,0x12,0x3f,0x01,0x2a,0x2a,0x4a,0x00,0x20,0x20,0xff,0x20,0x10,0x10,0xfe,0x92,0x92,0xaa,0xa6,0xc6,0x82,0x82,0x8a,0x84 -+// 33972 蒴 ; -+,0x02,0x02,0x7f,0x02,0x11,0x0a,0x3f,0x04,0x15,0x15,0x1f,0x15,0x04,0x08,0x10,0x21,0x10,0x10,0xff,0x10,0x00,0x3e,0xa2,0x22,0x3e,0x22,0x3e,0x22,0x42,0x42,0x8a,0x04 -+// 33973 蒵 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x0a,0x04,0x0f,0x03,0x0f,0x00,0x7f,0x01,0x02,0x0c,0x30,0x20,0xff,0x20,0xf8,0x10,0x98,0x20,0xd0,0x08,0xfc,0x88,0xff,0x40,0x30,0x0c,0x03 -+// 33974 蒶 ; -+,0x02,0x02,0x7f,0x02,0x08,0x12,0x3c,0x08,0x15,0x3e,0x02,0x14,0x2b,0x2a,0x40,0x01,0x20,0x20,0xff,0x20,0x48,0x48,0x84,0x87,0x02,0xfc,0x24,0x24,0x44,0x44,0x94,0x08 -+// 33975 蒷 ; -+,0x02,0x7f,0x02,0x07,0x04,0x07,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x10,0xff,0x10,0xf8,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x06 -+// 33976 蒸 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x00,0x3e,0x02,0x02,0x04,0x1a,0x61,0x1f,0x0a,0x09,0x11,0x20,0xff,0x20,0x20,0xf8,0x30,0x46,0xd8,0xa0,0x90,0x8e,0x04,0xf8,0x44,0x33,0x22 -+// 33977 蒹 ; -+,0x02,0x7f,0x02,0x04,0x1f,0x02,0x1f,0x02,0x7f,0x02,0x1f,0x06,0x0a,0x12,0x22,0x02,0x10,0xff,0x10,0x20,0xfe,0x40,0xfc,0x44,0xff,0x44,0xfc,0x60,0x50,0x4e,0x44,0x40 -+// 33978 蒺 ; -+,0x02,0x3f,0x02,0x02,0x0f,0x48,0x3a,0x2b,0x0a,0x1c,0x6f,0x08,0x10,0x11,0x22,0x44,0x10,0xff,0x90,0x50,0xff,0x00,0x00,0xfc,0x40,0x40,0xff,0xa0,0x90,0x0c,0x07,0x02 -+// 33979 蒻 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x01,0x01,0x1f,0x10,0x1f,0x09,0x05,0x09,0x11,0x25,0x02,0x20,0x20,0xff,0x20,0x3e,0x02,0x02,0x3e,0x20,0x3e,0x22,0x12,0x0a,0x12,0x2a,0x44 -+// 33980 蒼 ; -+,0x04,0x7f,0x04,0x04,0x01,0x06,0x1f,0x64,0x07,0x04,0x07,0x08,0x0f,0x14,0x27,0x44,0x20,0xff,0x20,0x80,0x60,0x18,0xf7,0x12,0xf0,0x10,0xf0,0x00,0xf8,0x08,0xf8,0x08 -+// 33981 蒽 ; -+,0x02,0x7f,0x02,0x00,0x0f,0x08,0x0f,0x09,0x0a,0x0f,0x01,0x04,0x14,0x14,0x23,0x00,0x20,0xff,0x20,0x00,0xf8,0x88,0xf8,0x48,0x28,0xf8,0x00,0xc4,0x92,0x1b,0xf2,0x00 -+// 33982 蒾 ; -+,0x02,0x02,0x3f,0x02,0x22,0x19,0x10,0x03,0x78,0x08,0x09,0x0a,0x08,0x14,0x23,0x40,0x20,0x20,0xff,0x20,0x24,0x26,0xa8,0xff,0x70,0xa8,0x26,0x24,0x20,0x20,0xff,0x00 -+// 33983 蒿 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x00,0x07,0x04,0x07,0x00,0x1f,0x10,0x13,0x12,0x13,0x10,0x20,0xff,0x20,0xa0,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xfe,0x02,0xf2,0x12,0xfa,0x04 -+// 33984 蓀 ; -+,0x02,0x7f,0x02,0x00,0x3e,0x04,0x08,0x08,0x0e,0x18,0x68,0x08,0x08,0x09,0x2a,0x10,0x20,0xff,0x20,0x0e,0xf8,0x20,0x44,0xf8,0x24,0x7e,0x12,0x94,0xd2,0x13,0x52,0x20 -+// 33985 蓁 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x0f,0x01,0x3f,0x04,0x0b,0x10,0x2f,0x02,0x04,0x08,0x00,0x20,0xff,0xa0,0xfe,0x80,0xfc,0x00,0xff,0x10,0xe8,0x87,0xfa,0xa0,0x98,0x90,0x80 -+// 33986 蓂 ; -+,0x02,0x7f,0x02,0x1f,0x10,0x2f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x04,0x06,0x08,0x10,0x20,0xff,0x20,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x10,0x0c,0x06,0x04 -+// 33987 蓃 ; -+,0x02,0x02,0x7f,0x02,0x06,0x18,0x10,0x1e,0x10,0x1f,0x00,0x0f,0x02,0x01,0x06,0x38,0x10,0x10,0xff,0x10,0x80,0xbc,0x84,0xbc,0x84,0xfc,0x80,0xf8,0x20,0xc0,0x30,0x0e -+// 33988 蓄 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x04,0x0f,0x01,0x0e,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x20,0xff,0x20,0x80,0xfe,0x30,0xe0,0x88,0x04,0xfe,0x04,0xfc,0x84,0xfc,0x84,0xfc -+// 33989 蓅 ; -+,0x02,0x7f,0x02,0x10,0x08,0x09,0x24,0x14,0x15,0x08,0x09,0x79,0x11,0x13,0x12,0x14,0x10,0xff,0x10,0x20,0x10,0xff,0x48,0x84,0xfe,0x04,0x28,0x28,0x29,0x29,0x27,0x00 -+// 33990 蓆 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x11,0x1f,0x11,0x11,0x10,0x17,0x14,0x14,0x24,0x24,0x40,0x10,0xff,0x90,0x50,0xff,0x10,0xff,0x10,0xf0,0x40,0xfc,0x44,0x44,0x54,0x48,0x40 -+// 33991 蓇 ; -+,0x02,0x7f,0x02,0x07,0x04,0x07,0x04,0x3f,0x20,0x47,0x04,0x07,0x04,0x07,0x04,0x04,0x10,0xff,0x10,0xf8,0x08,0xc8,0x48,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x18 -+// 33992 蓈 ; -+,0x02,0x02,0x7f,0x0a,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x14,0x13,0x15,0x19,0x10,0x20,0x20,0xff,0x20,0x20,0x3e,0x22,0x24,0x28,0x24,0x22,0x22,0x2a,0xa4,0x20,0x20 -+// 33993 蓉 ; -+,0x02,0x7f,0x03,0x02,0x1f,0x22,0x24,0x09,0x12,0x04,0x0f,0x34,0x04,0x04,0x07,0x04,0x20,0xff,0x20,0xa0,0xff,0x12,0x88,0x46,0x24,0x18,0xf7,0x12,0x10,0x10,0xf0,0x10 -+// 33994 蓊 ; -+,0x02,0x7f,0x02,0x04,0x06,0x09,0x12,0x27,0x00,0x1f,0x09,0x05,0x09,0x11,0x05,0x02,0x20,0xff,0x20,0x20,0x90,0x0c,0x27,0xf2,0x10,0x3e,0x12,0x0a,0x12,0x22,0x0a,0x04 -+// 33995 蓋 ; -+,0x02,0x02,0x7f,0x02,0x0f,0x00,0x3f,0x01,0x02,0x07,0x00,0x0f,0x09,0x09,0x7f,0x00,0x20,0x20,0xff,0xa0,0xfc,0x80,0xfe,0x20,0x10,0xf8,0x10,0xf8,0x48,0x48,0xff,0x00 -+// 33996 蓌 ; -+,0x02,0x3f,0x02,0x04,0x04,0x0a,0x17,0x00,0x3f,0x02,0x07,0x0a,0x11,0x00,0x07,0x38,0x20,0xff,0x28,0x88,0x94,0xa2,0xfc,0x80,0xff,0x00,0xf8,0x10,0x20,0xc0,0x38,0x07 -+// 33997 蓍 ; -+,0x02,0x3f,0x02,0x0f,0x00,0x3f,0x01,0x07,0x3a,0x01,0x00,0x07,0x04,0x07,0x04,0x07,0x10,0xff,0x94,0xfe,0xa0,0xff,0x30,0xc4,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 33998 蓎 ; -+,0x04,0x7f,0x05,0x00,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x10,0x17,0x24,0x27,0x44,0x20,0xff,0x20,0x80,0xfe,0x80,0xf8,0x88,0xfe,0x88,0xf8,0x80,0xf8,0x08,0xf8,0x08 -+// 33999 蓏 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x14,0x14,0x16,0x15,0x15,0x14,0x16,0x25,0x2f,0x45,0x00,0x20,0x20,0xff,0x20,0x7e,0x54,0x54,0x54,0x54,0x54,0x54,0x52,0x52,0x5b,0x52,0x80 -+// 34000 蓐 ; -+,0x02,0x3f,0x02,0x1f,0x10,0x17,0x10,0x1f,0x12,0x12,0x17,0x12,0x1f,0x21,0x21,0x40,0x20,0xff,0x20,0xfe,0x00,0xfc,0x00,0xff,0x24,0x98,0x07,0x12,0xfe,0x10,0x50,0x20 -+// 34001 蓑 ; -+,0x02,0x3f,0x02,0x00,0x3f,0x00,0x07,0x04,0x7f,0x04,0x07,0x02,0x06,0x0a,0x33,0x02,0x10,0xff,0x90,0x40,0xfe,0x00,0xf8,0x08,0xff,0x08,0xf8,0x20,0x10,0x88,0x07,0x02 -+// 34002 蓒 ; -+,0x02,0x7f,0x02,0x04,0x3f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x20,0xff,0x20,0x00,0xbe,0x08,0x88,0x88,0x88,0xff,0x88,0x08,0xc8,0x08,0x08,0x08 -+// 34003 蓓 ; -+,0x02,0x02,0x7f,0x02,0x08,0x0f,0x19,0x30,0x57,0x10,0x11,0x11,0x11,0x11,0x11,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x08,0x90,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00 -+// 34004 蓔 ; -+,0x02,0x02,0x7f,0x02,0x04,0x02,0x3f,0x00,0x1f,0x00,0x3f,0x00,0x12,0x11,0x11,0x21,0x20,0x20,0xff,0x20,0x10,0x20,0xfe,0x80,0xfc,0x80,0xfe,0x00,0x44,0x22,0xb3,0x22 -+// 34005 蓕 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x08,0x7e,0x18,0x1d,0x2a,0x2a,0x48,0x08,0x09,0x08,0x20,0x20,0xff,0x20,0x20,0x10,0xfe,0x10,0x10,0xff,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 34006 蓖 ; -+,0x02,0x7f,0x02,0x04,0x1f,0x12,0x11,0x12,0x1f,0x10,0x10,0x1f,0x10,0x13,0x1c,0x10,0x20,0xff,0x20,0x00,0xfc,0x24,0xc4,0x24,0xfc,0x40,0x4c,0x70,0x40,0x41,0x3f,0x00 -+// 34007 蓗 ; -+,0x02,0x7f,0x02,0x08,0x0c,0x15,0x26,0x4c,0x1b,0x28,0x49,0x09,0x09,0x09,0x0a,0x0c,0x10,0xff,0x10,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x3e,0x20,0x20,0xe0,0x3f -+// 34008 蓘 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x02,0x05,0x09,0x32,0x07,0x01,0x06,0x1a,0x62,0x07,0x02,0x20,0xff,0x20,0x80,0xfe,0x10,0x0c,0x24,0x10,0xf8,0x52,0x24,0x18,0x8c,0x07,0x02 -+// 34009 蓙 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x10,0x12,0x12,0x12,0x15,0x18,0x17,0x10,0x20,0x2f,0x40,0x20,0xff,0x20,0xa0,0xfe,0x00,0x48,0x48,0x48,0x54,0x62,0xfc,0x40,0x40,0xfe,0x00 -+// 34010 蓚 ; -+,0x02,0x02,0x3f,0x02,0x04,0x06,0x09,0x1a,0x2b,0x4a,0x0b,0x0a,0x0a,0x08,0x08,0x09,0x10,0x10,0xff,0x50,0x7e,0xa8,0x10,0x6c,0x9b,0x60,0x8c,0x30,0xc6,0x18,0x60,0x80 -+// 34011 蓛 ; -+,0x02,0x02,0x7f,0x02,0x04,0x7f,0x04,0x3f,0x24,0x24,0x3f,0x0e,0x15,0x25,0x44,0x04,0x20,0x20,0xff,0x20,0x10,0xff,0x22,0xd2,0x92,0x94,0x94,0x08,0x88,0x14,0x23,0x42 -+// 34012 蓜 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x0a,0x3f,0x2a,0x2a,0x2b,0x30,0x3f,0x20,0x20,0x3f,0x20,0x20,0x20,0xff,0x20,0xbe,0x02,0x82,0x82,0xbe,0xa0,0xa0,0xa0,0xa1,0xa1,0xbf,0x80 -+// 34013 蓝 ; -+,0x04,0x04,0x7f,0x04,0x02,0x12,0x12,0x12,0x13,0x02,0x0f,0x09,0x09,0x09,0x7f,0x00,0x20,0x20,0xff,0x20,0x40,0x7e,0x50,0x88,0x08,0x00,0xf8,0x48,0x48,0x48,0xff,0x00 -+// 34014 蓞 ; -+,0x02,0x02,0x3f,0x02,0x02,0x0f,0x08,0x05,0x0e,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0xff,0x10,0x7c,0xc8,0x8c,0x90,0x3c,0x04,0x04,0xbc,0x04,0x04,0xfc,0x04 -+// 34015 蓟 ; -+,0x02,0x7f,0x02,0x12,0x1f,0x22,0x3f,0x64,0x3f,0x24,0x3f,0x20,0x00,0x07,0x3c,0x00,0x20,0xff,0x20,0x22,0x02,0x12,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x82,0x0a,0x04 -+// 34016 蓠 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x01,0x08,0x09,0x0f,0x00,0x1f,0x11,0x12,0x17,0x10,0x10,0x20,0xff,0x20,0xa0,0xff,0x20,0xc8,0x28,0xf8,0x80,0xfc,0x44,0x24,0xf4,0x24,0x0c -+// 34017 蓡 ; -+,0x02,0x7f,0x02,0x22,0x18,0x08,0x40,0x35,0x24,0x0b,0x0a,0x74,0x10,0x10,0x11,0x16,0x20,0xff,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x02,0xf8,0x88,0x70,0x8c,0x03 -+// 34018 蓢 ; -+,0x02,0x02,0x7f,0x02,0x08,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x12,0x15,0x39,0x10,0x20,0x20,0xff,0x20,0x00,0x3e,0x22,0x22,0x3e,0x22,0x3e,0x22,0x22,0x22,0x4a,0x44 -+// 34019 蓣 ; -+,0x02,0x02,0x3f,0x02,0x7f,0x02,0x14,0x08,0x7f,0x0a,0x0c,0x08,0x08,0x08,0x28,0x11,0x20,0x20,0xff,0x20,0xff,0x08,0x10,0x7e,0x42,0x52,0x52,0x52,0x52,0x28,0x47,0x82 -+// 34020 蓤 ; -+,0x02,0x02,0x3f,0x02,0x20,0x19,0x50,0x23,0x28,0x09,0x0a,0x79,0x12,0x10,0x10,0x13,0x20,0x20,0xff,0x20,0x10,0xfe,0x10,0xff,0x84,0x43,0xfe,0x48,0x48,0x30,0xcc,0x03 -+// 34021 蓥 ; -+,0x02,0x02,0x3f,0x02,0x3f,0x20,0x41,0x06,0x1f,0x60,0x0f,0x08,0x04,0x04,0x3f,0x00,0x20,0x20,0xff,0x20,0xff,0x82,0x64,0x18,0xf7,0x82,0xfc,0x90,0x98,0xa0,0xfe,0x00 -+// 34022 蓦 ; -+,0x02,0x7f,0x02,0x0f,0x09,0x08,0x0f,0x02,0x7f,0x04,0x1b,0x62,0x03,0x00,0x1f,0x00,0x20,0xff,0x20,0xf8,0x08,0x88,0xf8,0x00,0xff,0x18,0xe7,0x22,0xfc,0x04,0xe4,0x0c -+// 34023 蓧 ; -+,0x02,0x7f,0x02,0x08,0x0c,0x08,0x11,0x32,0x52,0x13,0x12,0x12,0x12,0x11,0x12,0x10,0x10,0xff,0x10,0x40,0x7e,0xc8,0x30,0x4c,0x83,0x12,0xfe,0x10,0x94,0x13,0x52,0x20 -+// 34024 蓨 ; -+,0x02,0x02,0x3f,0x02,0x08,0x0c,0x18,0x15,0x34,0x54,0x17,0x14,0x14,0x14,0x10,0x10,0x10,0x10,0xff,0x50,0x7c,0x44,0xa8,0x10,0x6c,0xff,0x44,0x7c,0x44,0x7c,0x44,0x4c -+// 34025 蓩 ; -+,0x02,0x3f,0x02,0x00,0x3f,0x12,0x0c,0x7f,0x0d,0x16,0x15,0x24,0x44,0x04,0x14,0x09,0x10,0xff,0x10,0x20,0x3e,0x64,0xa4,0x98,0x67,0xa2,0xfc,0x24,0x24,0x44,0x94,0x08 -+// 34026 蓪 ; -+,0x02,0x3f,0x02,0x23,0x18,0x10,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x15,0x63,0x20,0x20,0xff,0x20,0xfc,0x48,0x30,0xfc,0x24,0xfc,0x24,0xfc,0x24,0x34,0x08,0xff,0x00 -+// 34027 蓫 ; -+,0x02,0x7f,0x02,0x20,0x13,0x18,0x11,0x06,0x71,0x16,0x11,0x16,0x10,0x2c,0x43,0x00,0x20,0xff,0x20,0x00,0xfe,0x40,0xa2,0x54,0x98,0x74,0x92,0x12,0x50,0x20,0xff,0x00 -+// 34028 蓬 ; -+,0x02,0x7f,0x02,0x22,0x18,0x11,0x02,0x79,0x0e,0x09,0x08,0x09,0x08,0x0b,0x14,0x23,0x10,0xff,0x10,0x80,0xf8,0x90,0x60,0x9c,0x23,0xfc,0x20,0xfc,0x20,0xff,0x20,0xff -+// 34029 蓭 ; -+,0x02,0x7f,0x02,0x00,0x1f,0x10,0x1f,0x11,0x13,0x1e,0x13,0x12,0x13,0x20,0x20,0x40,0x20,0xff,0x20,0x80,0xfe,0x80,0xfe,0x48,0xff,0x4a,0xf8,0x48,0xfa,0x43,0x7e,0x00 -+// 34030 蓮 ; -+,0x02,0x7f,0x02,0x22,0x1b,0x10,0x01,0x71,0x11,0x11,0x11,0x10,0x13,0x10,0x28,0x47,0x20,0xff,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff -+// 34031 蓯 ; -+,0x02,0x7f,0x02,0x10,0x18,0x11,0x2a,0x08,0x10,0x31,0x51,0x11,0x11,0x12,0x14,0x10,0x10,0xff,0x10,0x88,0x88,0x48,0x54,0x02,0x20,0x20,0x3e,0x20,0x20,0xa0,0x7f,0x00 -+// 34032 蓰 ; -+,0x02,0x02,0x7f,0x0a,0x0c,0x18,0x24,0x44,0x0b,0x18,0x69,0x09,0x09,0x0a,0x0a,0x0c,0x20,0x20,0xff,0x20,0x10,0x1e,0x90,0x90,0xff,0x10,0x1e,0x10,0x10,0x90,0x7f,0x00 -+// 34033 蓱 ; -+,0x02,0x02,0x3f,0x02,0x12,0x08,0x09,0x24,0x14,0x14,0x07,0x78,0x08,0x08,0x08,0x09,0x20,0x20,0xff,0x20,0x84,0x48,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x88,0x88,0x08 -+// 34034 蓲 ; -+,0x02,0x02,0x7f,0x02,0x02,0x1f,0x10,0x13,0x12,0x13,0x10,0x17,0x14,0x17,0x10,0x1f,0x20,0x20,0xff,0x20,0x20,0xfe,0x00,0xf0,0x10,0xf0,0x00,0xbc,0xa4,0xbc,0x00,0xff -+// 34035 蓳 ; -+,0x02,0x7f,0x02,0x04,0x3f,0x04,0x07,0x00,0x1f,0x10,0x1f,0x00,0x1f,0x00,0x7f,0x00,0x20,0xff,0x20,0x10,0xfe,0x10,0xf0,0x80,0xfc,0x84,0xfc,0x80,0xfc,0x80,0xff,0x00 -+// 34036 蓴 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x04,0x04,0x00,0x00,0x10,0xff,0x90,0xff,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x94,0xff,0x12,0x10,0x50,0x20 -+// 34037 蓵 ; -+,0x02,0x7f,0x02,0x08,0x09,0x3e,0x08,0x0a,0x0d,0x18,0x68,0x28,0x09,0x09,0x2a,0x14,0x10,0xff,0x10,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x3e,0x20,0xff,0x00 -+// 34038 蓶 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x3d,0x26,0x24,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0x20,0x20,0xff,0x20,0xa0,0x90,0xff,0x90,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 34039 蓷 ; -+,0x02,0x02,0x7f,0x02,0x0a,0x08,0x09,0x3e,0x08,0x0a,0x0c,0x78,0x28,0x08,0x28,0x10,0x20,0x20,0xff,0x20,0x90,0xc8,0xff,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 34040 蓸 ; -+,0x04,0x3f,0x06,0x7f,0x02,0x1f,0x12,0x1f,0x12,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x20,0xff,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 34041 蓹 ; -+,0x02,0x02,0x7f,0x02,0x09,0x0d,0x12,0x2e,0x4b,0x18,0x28,0x4a,0x0a,0x0b,0x0e,0x08,0x20,0x20,0xff,0x20,0x00,0xfe,0x92,0x92,0xf2,0x92,0xf2,0x92,0x96,0xf0,0x10,0x10 -+// 34042 蓺 ; -+,0x02,0x02,0x7f,0x02,0x04,0x3f,0x04,0x3f,0x11,0x24,0x5f,0x04,0x04,0x07,0x38,0x01,0x20,0x20,0xff,0x20,0x10,0x90,0x7c,0x94,0x54,0xa4,0x34,0x2c,0x45,0x45,0x82,0x00 -+// 34043 蓻 ; -+,0x02,0x02,0x7f,0x02,0x04,0x3f,0x04,0x7f,0x11,0x0a,0x3f,0x04,0x7f,0x04,0x04,0x05,0x10,0x10,0xff,0x10,0x00,0x90,0x7c,0x94,0x54,0x24,0xb4,0x2d,0xc5,0x43,0x81,0x00 -+// 34044 蓼 ; -+,0x02,0x7f,0x02,0x1f,0x09,0x05,0x09,0x31,0x06,0x18,0x63,0x1c,0x03,0x1c,0x03,0x3c,0x20,0xff,0x20,0x3c,0x24,0x1c,0xa4,0x44,0x20,0xd8,0x07,0x70,0x8c,0x70,0x80,0x00 -+// 34045 蓽 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x00,0x00,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x90,0xfe,0x90,0xfe,0x80,0xff,0x80,0x80 -+// 34046 蓾 ; -+,0x02,0x02,0x7f,0x02,0x02,0x00,0x00,0x1f,0x12,0x11,0x18,0x15,0x12,0x14,0x1f,0x10,0x10,0x10,0xff,0x10,0x80,0xfe,0x80,0xfe,0x8a,0x52,0xea,0x16,0x8a,0x4a,0xfe,0x02 -+// 34047 蓿 ; -+,0x02,0x02,0x3f,0x02,0x02,0x3f,0x20,0x49,0x0c,0x18,0x29,0x49,0x09,0x09,0x09,0x09,0x10,0x10,0xff,0x90,0x50,0xff,0x02,0xfc,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04 -+// 34048 蔀 ; -+,0x02,0x02,0x7f,0x02,0x08,0x04,0x3f,0x11,0x0a,0x7f,0x00,0x1f,0x11,0x11,0x1f,0x11,0x20,0x20,0xfe,0x20,0x00,0x3e,0xa2,0x24,0x28,0xa4,0x22,0x22,0x22,0x2a,0x24,0x20 -+// 34049 蔁 ; -+,0x02,0x3f,0x02,0x00,0x1f,0x02,0x7f,0x00,0x07,0x04,0x04,0x07,0x00,0x7f,0x00,0x00,0x10,0xff,0x90,0x40,0xfc,0x20,0xff,0x00,0xf8,0x88,0x48,0xf8,0x80,0xff,0x80,0x80 -+// 34050 蔂 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x0f,0x01,0x0f,0x04,0x08,0x11,0x10,0xff,0x10,0xf8,0x88,0xf8,0x88,0xf8,0x00,0x20,0xc8,0x3c,0xc4,0x90,0x8c,0x88 -+// 34051 蔃 ; -+,0x02,0x02,0x7f,0x02,0x3e,0x02,0x02,0x3e,0x20,0x20,0x3e,0x02,0x02,0x02,0x14,0x08,0x20,0x20,0xff,0x20,0x7c,0x44,0x7c,0x10,0xfe,0x92,0x92,0xfe,0x12,0x1f,0xf2,0x00 -+// 34052 蔄 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x10,0x10,0xff,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x0a,0x04 -+// 34053 蔅 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x10,0x17,0x11,0x11,0x10,0x11,0x12,0x20,0xff,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0x82,0xfa,0x22,0x22,0xc2,0x22,0x16 -+// 34054 蔆 ; -+,0x02,0x7f,0x02,0x22,0x18,0x11,0x40,0x2b,0x28,0x09,0x12,0x71,0x12,0x10,0x10,0x13,0x10,0xff,0x10,0x00,0x20,0xfe,0x20,0xff,0x84,0x43,0xfd,0x48,0x48,0x30,0xcc,0x03 -+// 34055 蔇 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x24,0x22,0x27,0x2a,0x30,0x21,0x20,0xff,0x20,0x20,0xfe,0x90,0x50,0x50,0xff,0x10,0x28,0x2a,0x4a,0x4b,0x8e,0x00 -+// 34056 蔈 ; -+,0x02,0x3f,0x02,0x1f,0x01,0x0f,0x09,0x0f,0x00,0x0f,0x00,0x3f,0x04,0x0c,0x10,0x01,0x10,0xff,0x10,0xfe,0x20,0xfc,0x24,0xfc,0x00,0xf8,0x00,0xfe,0x90,0x8c,0x88,0x80 -+// 34057 蔉 ; -+,0x04,0x7f,0x05,0x00,0x3f,0x04,0x08,0x37,0x04,0x07,0x01,0x02,0x0c,0x35,0x06,0x04,0x10,0xff,0x10,0x80,0xff,0x10,0x0c,0xfa,0x08,0xf8,0x84,0x48,0x30,0x18,0x0e,0x04 -+// 34058 蔊 ; -+,0x02,0x7f,0x02,0x0a,0x08,0x0a,0x2a,0x2c,0x48,0x08,0x08,0x15,0x12,0x23,0x22,0x40,0x10,0xff,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 34059 蔋 ; -+,0x02,0x7f,0x02,0x22,0x11,0x09,0x21,0x17,0x09,0x0b,0x73,0x15,0x11,0x11,0x13,0x10,0x20,0xff,0x20,0x20,0x1e,0xd2,0x12,0xf2,0x14,0x94,0x68,0x48,0x14,0x23,0x42,0x00 -+// 34060 蔌 ; -+,0x02,0x7f,0x02,0x04,0x3f,0x04,0x1f,0x15,0x15,0x1f,0x0e,0x15,0x25,0x44,0x04,0x05,0x20,0xff,0x20,0x00,0x90,0x1f,0x21,0x52,0x10,0x10,0x28,0x28,0x44,0x43,0x82,0x00 -+// 34061 蔍 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x14,0x17,0x14,0x25,0x26,0x44,0x10,0xff,0x90,0x50,0xfe,0x20,0xfe,0x22,0xfe,0x10,0x16,0x98,0x10,0x91,0x0f,0x00 -+// 34062 蔎 ; -+,0x02,0x7f,0x02,0x12,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x3e,0x00,0x10,0xff,0x10,0x10,0x7c,0x44,0x44,0x83,0x7c,0x44,0x44,0x28,0x10,0x28,0x47,0x82 -+// 34063 蔏 ; -+,0x02,0x3f,0x02,0x02,0x3f,0x02,0x01,0x1f,0x12,0x17,0x1a,0x12,0x12,0x13,0x10,0x10,0x20,0xff,0x20,0xa0,0xff,0x10,0x20,0xfc,0x24,0xf4,0x2c,0x24,0x24,0xe4,0x14,0x08 -+// 34064 蔐 ; -+,0x04,0x7f,0x05,0x00,0x3f,0x04,0x02,0x1f,0x10,0x1f,0x10,0x17,0x14,0x17,0x14,0x10,0x10,0xff,0x10,0x80,0xff,0x10,0x20,0xfc,0x84,0xfc,0x84,0xf4,0x14,0xf4,0x14,0x0c -+// 34065 蔑 ; -+,0x04,0x7f,0x04,0x1f,0x12,0x12,0x1f,0x00,0x1f,0x10,0x14,0x13,0x12,0x20,0x27,0x40,0x10,0xff,0x10,0xfc,0x24,0x24,0xfc,0x40,0xfe,0x44,0x46,0x28,0x30,0xd2,0x0a,0x04 -+// 34066 蔒 ; -+,0x04,0x3f,0x04,0x1f,0x02,0x7f,0x02,0x1f,0x04,0x0b,0x12,0x23,0x40,0x0a,0x11,0x21,0x10,0xff,0x10,0xf8,0x08,0xff,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x00,0x44,0xb3,0x22 -+// 34067 蔓 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x00,0x1f,0x12,0x1f,0x00,0x07,0x02,0x01,0x0e,0x70,0x20,0xfe,0x20,0xf8,0x88,0xf8,0x00,0xfc,0x24,0xfc,0x00,0xf0,0x20,0xc0,0x38,0x07 -+// 34068 蔔 ; -+,0x02,0x7f,0x12,0x1f,0x10,0x2f,0x40,0x0f,0x08,0x0f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x20,0xff,0x20,0xfe,0x02,0xf2,0x02,0xe2,0x22,0xe2,0x02,0xf2,0x12,0xf2,0x12,0xf6 -+// 34069 蔕 ; -+,0x02,0x3f,0x02,0x05,0x3f,0x05,0x09,0x10,0x3f,0x20,0x0f,0x08,0x08,0x08,0x08,0x00,0x10,0xff,0x10,0x50,0xff,0x50,0xce,0x80,0xff,0x82,0xfc,0x84,0x84,0x9c,0x88,0x80 -+// 34070 蔖 ; -+,0x04,0x7f,0x04,0x04,0x00,0x1f,0x10,0x17,0x10,0x13,0x12,0x13,0x12,0x23,0x22,0x4f,0x10,0xff,0x90,0xfc,0x80,0xff,0x82,0xf0,0x84,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xff -+// 34071 蔗 ; -+,0x02,0x3f,0x02,0x02,0x1f,0x10,0x11,0x11,0x1f,0x11,0x11,0x10,0x25,0x24,0x48,0x00,0x10,0xff,0x10,0x90,0xfe,0x00,0x10,0x10,0xff,0x10,0xf0,0x04,0x22,0x93,0x91,0x00 -+// 34072 蔘 ; -+,0x04,0x7f,0x05,0x02,0x0f,0x08,0x1e,0x01,0x06,0x19,0x66,0x18,0x07,0x00,0x07,0x38,0x10,0xff,0x10,0x20,0xf0,0x10,0xbc,0x44,0x30,0xcc,0x23,0xd0,0x38,0xc0,0x00,0x00 -+// 34073 蔙 ; -+,0x02,0x02,0x7f,0x02,0x12,0x08,0x7e,0x11,0x1e,0x12,0x12,0x12,0x12,0x2a,0x45,0x02,0x20,0x20,0xff,0x20,0x40,0x7f,0x80,0x7f,0x12,0x50,0x5e,0x50,0x50,0xb0,0x1f,0x00 -+// 34074 蔚 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x10,0x10,0x1f,0x10,0x1f,0x10,0x2f,0x22,0x2a,0x32,0x46,0x20,0x20,0xff,0x20,0xa4,0x84,0x84,0xff,0x04,0x24,0x14,0x94,0x04,0x84,0x54,0x08 -+// 34075 蔛 ; -+,0x02,0x02,0x3f,0x02,0x12,0x1f,0x11,0x3f,0x54,0x1f,0x14,0x1f,0x14,0x24,0x24,0x41,0x20,0x20,0xff,0x20,0x24,0x84,0x24,0x94,0xc4,0xa4,0xa4,0xff,0x84,0x84,0x84,0x84 -+// 34076 蔜 ; -+,0x02,0x02,0x3f,0x02,0x04,0x3f,0x04,0x1f,0x04,0x7f,0x08,0x0f,0x09,0x11,0x17,0x22,0x10,0x10,0xff,0x10,0x20,0xa0,0x3f,0xa4,0x24,0xc4,0x24,0x14,0x08,0x14,0x23,0x42 -+// 34077 蔝 ; -+,0x02,0x02,0x7f,0x02,0x00,0x3e,0x22,0x3e,0x22,0x23,0x3e,0x22,0x22,0x3f,0x22,0x00,0x10,0x10,0xff,0x10,0x00,0x10,0x92,0x54,0x10,0xff,0x38,0x54,0x93,0x12,0x10,0x10 -+// 34078 蔞 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x7f,0x08,0x1f,0x10,0x1f,0x02,0x7f,0x04,0x06,0x01,0x1e,0x20,0xff,0xa0,0xf8,0x88,0xff,0x88,0xfc,0x84,0xfc,0x00,0xff,0x10,0x20,0xc0,0x3c -+// 34079 蔟 ; -+,0x02,0x02,0x7f,0x12,0x0a,0x00,0x7e,0x11,0x1e,0x12,0x13,0x12,0x12,0x22,0x2a,0x45,0x10,0x10,0xff,0x10,0x40,0x7f,0x80,0x40,0x7e,0x90,0xff,0x10,0x28,0x44,0x83,0x02 -+// 34080 蔠 ; -+,0x02,0x02,0x7f,0x02,0x02,0x08,0x08,0x12,0x3c,0x09,0x3f,0x01,0x2a,0x2a,0x49,0x41,0x20,0x20,0xff,0x20,0x40,0x7c,0x44,0x44,0xa8,0x10,0x2c,0x53,0x88,0x20,0x18,0x08 -+// 34081 蔡 ; -+,0x02,0x7f,0x02,0x08,0x0f,0x11,0x2a,0x54,0x0b,0x10,0x6f,0x00,0x08,0x0c,0x12,0x21,0x20,0xff,0x20,0x00,0x7c,0x44,0x28,0x10,0xec,0x03,0xfc,0x80,0x90,0x8c,0x84,0x00 -+// 34082 蔢 ; -+,0x02,0x7f,0x22,0x12,0x53,0x22,0x2a,0x0a,0x72,0x14,0x12,0x7f,0x02,0x02,0x01,0x3e,0x20,0xff,0x20,0x20,0xfe,0x22,0xf8,0x50,0x20,0x50,0x8c,0xff,0x20,0x20,0xc0,0x1e -+// 34083 蔣 ; -+,0x04,0x04,0x7f,0x04,0x02,0x12,0x12,0x1f,0x02,0x1e,0x13,0x12,0x22,0x22,0x42,0x02,0x20,0x20,0xff,0x20,0x40,0x7c,0xa8,0x50,0x28,0xc8,0xff,0x08,0x88,0x88,0x28,0x10 -+// 34084 蔤 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x11,0x2a,0x0a,0x11,0x0e,0x00,0x08,0x08,0x0f,0x08,0x10,0x10,0xff,0x90,0x40,0xff,0x12,0xa4,0x4b,0xfa,0x00,0x40,0x44,0x44,0xfc,0x04 -+// 34085 蔥 ; -+,0x02,0x02,0x3f,0x02,0x01,0x0f,0x09,0x0b,0x0d,0x08,0x0b,0x0f,0x01,0x14,0x14,0x23,0x20,0x20,0xff,0xa0,0x20,0xfc,0x04,0xf4,0x24,0xc4,0x24,0xfc,0x00,0x94,0x1b,0xf2 -+// 34086 蔦 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x14,0x12,0x22,0x20,0xff,0xa0,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfc,0x00,0xfe,0x22,0x9a,0x52,0x46 -+// 34087 蔧 ; -+,0x02,0x7f,0x02,0x08,0x3f,0x08,0x3f,0x08,0x3f,0x08,0x1f,0x00,0x0f,0x00,0x1f,0x00,0x20,0xff,0x20,0x10,0x7e,0x10,0x7e,0x10,0x7f,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00 -+// 34088 蔨 ; -+,0x02,0x7f,0x02,0x1f,0x14,0x12,0x17,0x11,0x1f,0x12,0x17,0x1a,0x12,0x11,0x10,0x1f,0x10,0xff,0x10,0xfe,0x92,0xa2,0xfa,0x02,0xfa,0x12,0xea,0xa6,0x4a,0xfa,0x02,0xfe -+// 34089 蔩 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x20,0x4f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x1c,0x08,0x20,0xff,0x20,0x80,0xff,0x02,0xfc,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x20,0x18,0x10 -+// 34090 蔪 ; -+,0x02,0x02,0x7f,0x02,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x20,0x20,0xff,0x20,0x27,0xb8,0x20,0xa0,0xbf,0xa4,0xa4,0xa4,0x24,0xc4,0x44,0x84 -+// 34091 蔫 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x04,0x04,0x7f,0x08,0x0f,0x08,0x0f,0x14,0x12,0x22,0x00,0x20,0xff,0x20,0xfe,0x80,0xf8,0x80,0xff,0x00,0xfc,0x00,0xfe,0x92,0x4a,0x4a,0x04 -+// 34092 蔬 ; -+,0x02,0x7f,0x02,0x00,0x3e,0x04,0x08,0x08,0x28,0x2e,0x28,0x28,0x2e,0x79,0x01,0x02,0x20,0xff,0x20,0x10,0xfe,0x20,0x44,0xfe,0x02,0xa8,0xa8,0xa8,0xa9,0x29,0x27,0x00 -+// 34093 蔭 ; -+,0x02,0x02,0x3f,0x02,0x3c,0x24,0x29,0x37,0x28,0x25,0x34,0x2b,0x20,0x20,0x21,0x20,0x20,0x20,0xff,0x20,0x50,0x88,0x27,0xfa,0x10,0xfc,0x00,0xfe,0x40,0x88,0xfc,0x04 -+// 34094 蔮 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x10,0x1f,0x10,0x17,0x14,0x17,0x10,0x1f,0x10,0x1f,0x00,0x10,0xff,0x10,0x10,0xfe,0x22,0xfe,0x22,0xaa,0xb2,0xa2,0x52,0x96,0x0a,0xfe,0x00 -+// 34095 蔯 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x24,0x29,0x29,0x29,0x25,0x25,0x3c,0x28,0x21,0x22,0x20,0x20,0x20,0xff,0x20,0xfc,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x70,0xa8,0x27,0x22,0x20 -+// 34096 蔰 ; -+,0x02,0x7f,0x02,0x1f,0x10,0x1f,0x10,0x13,0x12,0x17,0x14,0x17,0x24,0x24,0x43,0x00,0x10,0xff,0x90,0xfc,0x04,0xfc,0x00,0xf8,0x08,0xfc,0x44,0xfc,0x02,0x02,0xfe,0x00 -+// 34097 蔱 ; -+,0x02,0x7f,0x02,0x21,0x12,0x0c,0x12,0x25,0x04,0x3f,0x16,0x15,0x25,0x44,0x14,0x08,0x10,0xff,0x10,0x10,0x3c,0x24,0x24,0x43,0x00,0x7e,0x44,0xa8,0x10,0x2d,0x42,0x80 -+// 34098 蔲 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x20,0x5f,0x00,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x10,0xff,0x90,0x50,0xff,0x12,0x90,0x7e,0xa4,0xa4,0x24,0x18,0x25,0x43,0xff,0x00 -+// 34099 蔳 ; -+,0x02,0x02,0x7f,0x02,0x12,0x08,0x08,0x24,0x15,0x04,0x08,0x78,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x30,0xfe,0x20,0xfc,0x20,0xff,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 34100 蔴 ; -+,0x02,0x02,0x3f,0x02,0x02,0x1f,0x12,0x12,0x1f,0x12,0x17,0x16,0x2a,0x32,0x23,0x42,0x10,0x10,0xff,0x90,0x50,0xff,0x10,0x10,0xfe,0x10,0x38,0xb4,0x53,0x92,0x10,0x10 -+// 34101 蔵 ; -+,0x02,0x3f,0x02,0x02,0x1f,0x10,0x17,0x15,0x17,0x14,0x17,0x15,0x17,0x20,0x20,0x40,0x10,0xff,0x14,0x12,0xff,0x10,0xd2,0x13,0xd2,0x54,0xc8,0x08,0xd5,0x25,0x42,0x00 -+// 34102 蔶 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x0f,0x00,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x10,0xff,0x90,0xfe,0x80,0xfc,0x80,0xff,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 34103 蔷 ; -+,0x04,0x7f,0x04,0x00,0x1f,0x04,0x02,0x7f,0x00,0x1f,0x10,0x13,0x12,0x13,0x10,0x1f,0x20,0xff,0x20,0x80,0xfc,0x90,0xa0,0xff,0x00,0xfc,0x04,0xe4,0x24,0xe4,0x04,0xfc -+// 34104 蔸 ; -+,0x04,0x7f,0x04,0x04,0x1b,0x12,0x13,0x12,0x16,0x3b,0x10,0x04,0x04,0x04,0x08,0x10,0x20,0xff,0x20,0x80,0xee,0x22,0xe2,0x22,0x22,0xee,0x00,0x20,0x20,0x22,0x1e,0x00 -+// 34105 蔹 ; -+,0x02,0x02,0x7f,0x02,0x04,0x0a,0x11,0x2e,0x40,0x09,0x25,0x15,0x12,0x07,0x3c,0x00,0x10,0x10,0xff,0x10,0x20,0x20,0x3f,0xa4,0x44,0x24,0x94,0x08,0x14,0xa3,0x42,0x80 -+// 34106 蔺 ; -+,0x02,0x7f,0x02,0x0a,0x04,0x12,0x12,0x17,0x1a,0x13,0x12,0x13,0x12,0x13,0x12,0x10,0x20,0xff,0x20,0x00,0xfe,0x82,0x42,0xf2,0x42,0xf2,0x42,0xf2,0x42,0xfa,0x0a,0x04 -+// 34107 蔻 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x20,0x5f,0x00,0x00,0x3f,0x0a,0x0a,0x0a,0x12,0x11,0x20,0x20,0xff,0x20,0xa0,0xff,0x11,0x1e,0x10,0x7e,0xa4,0x24,0x18,0x25,0x43,0xff,0x00 -+// 34108 蔼 ; -+,0x02,0x7f,0x02,0x11,0x09,0x09,0x01,0x71,0x12,0x13,0x16,0x1a,0x16,0x1b,0x10,0x00,0x10,0xff,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x22,0x52,0x8a,0xf2,0x0a,0x04 -+// 34109 蔽 ; -+,0x02,0x7f,0x02,0x04,0x24,0x15,0x3f,0x24,0x2e,0x2d,0x35,0x34,0x24,0x26,0x25,0x00,0x20,0xff,0x20,0x30,0x98,0x10,0xbf,0xa2,0xe2,0x94,0x94,0x88,0x88,0x94,0x23,0x42 -+// 34110 蔾 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x04,0x3f,0x0e,0x15,0x24,0x3f,0x01,0x02,0x0c,0x30,0x00,0x20,0x20,0xff,0x20,0x3e,0x52,0x92,0x12,0x2a,0x84,0xff,0xa0,0x98,0x8e,0x84,0x80 -+// 34111 蔿 ; -+,0x02,0x7f,0x02,0x00,0x1f,0x05,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x15,0x69,0x00,0x20,0xff,0x20,0xfc,0x90,0x48,0xa8,0xf8,0x08,0xf8,0x08,0xfe,0x52,0x4a,0x4a,0x04 -+// 34112 蕀 ; -+,0x02,0x02,0x7f,0x02,0x04,0x3f,0x04,0x1f,0x15,0x15,0x15,0x04,0x0e,0x15,0x25,0x44,0x10,0x10,0xff,0x10,0x08,0x7e,0x08,0x3e,0x2a,0x2a,0x2a,0x1c,0x1a,0x2b,0x4a,0x88 -+// 34113 蕁 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x0f,0x00,0x1f,0x00,0x1f,0x04,0x3f,0x00,0x3f,0x04,0x04,0x20,0xff,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xbc,0x24,0xbc,0x08,0xff,0x08,0x18 -+// 34114 蕂 ; -+,0x02,0x7f,0x02,0x3d,0x24,0x25,0x3c,0x27,0x24,0x3c,0x27,0x24,0x24,0x24,0x54,0x49,0x10,0xff,0x10,0x24,0xa8,0xfe,0x20,0xff,0x48,0xa4,0x7f,0x24,0x44,0x44,0x94,0x08 -+// 34115 蕃 ; -+,0x02,0x02,0x7f,0x02,0x00,0x1f,0x02,0x7f,0x02,0x0c,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x20,0x20,0xff,0x20,0x7c,0x88,0x90,0xff,0xa0,0x98,0xff,0x8a,0xf8,0x88,0xf8,0x08 -+// 34116 蕄 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x25,0x25,0x29,0x20,0x20,0x20,0xff,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x92,0x4a,0x0a,0x12,0xf2,0x06 -+// 34117 蕅 ; -+,0x02,0x02,0x7f,0x22,0x19,0x09,0x45,0x35,0x25,0x08,0x0b,0x72,0x12,0x13,0x12,0x12,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x2a,0x3e,0xea,0x02,0x06 -+// 34118 蕆 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x17,0x22,0x24,0x48,0x20,0xff,0x28,0x14,0xff,0x10,0xd2,0x52,0xd4,0x54,0xc8,0x48,0xd5,0xa5,0x42,0x20 -+// 34119 蕇 ; -+,0x02,0x7f,0x02,0x0f,0x09,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x10,0xff,0x10,0x3c,0x24,0x3c,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80,0x80 -+// 34120 蕈 ; -+,0x02,0x7f,0x02,0x3f,0x02,0x1f,0x12,0x1f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x00,0x20,0xff,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x08,0xf8,0x08,0xf8,0x80,0xfe,0x80,0x80 -+// 34121 蕉 ; -+,0x02,0x02,0x7f,0x02,0x08,0x0f,0x18,0x2f,0x48,0x0f,0x08,0x0f,0x00,0x14,0x13,0x22,0x10,0x10,0xff,0x90,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x00,0x44,0x33,0x22 -+// 34122 蕊 ; -+,0x02,0x02,0x3f,0x02,0x00,0x14,0x14,0x23,0x08,0x06,0x14,0x51,0x52,0x52,0x1e,0x00,0x20,0x20,0xff,0x20,0x88,0xc4,0x14,0xf0,0x00,0x0a,0x05,0x55,0xd2,0x52,0x8e,0x00 -+// 34123 蕋 ; -+,0x02,0x02,0x7f,0x02,0x02,0x04,0x04,0x04,0x3f,0x04,0x04,0x07,0x24,0x24,0x7f,0x00,0x10,0x10,0xff,0x10,0x90,0xfc,0x80,0x80,0xfe,0x08,0x08,0x4e,0x48,0x48,0xff,0x00 -+// 34124 蕌 ; -+,0x02,0x02,0x3f,0x02,0x07,0x04,0x07,0x04,0x07,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x10,0x10,0xff,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42 -+// 34125 蕍 ; -+,0x02,0x02,0x7f,0x12,0x0a,0x08,0x41,0x36,0x2b,0x0a,0x0b,0x32,0x13,0x12,0x12,0x12,0x20,0x20,0xff,0x20,0x50,0x8c,0xfb,0x02,0xca,0x4a,0xca,0x4a,0xca,0x42,0x4a,0xc4 -+// 34126 蕎 ; -+,0x02,0x7f,0x02,0x0f,0x01,0x7f,0x02,0x07,0x1a,0x63,0x00,0x0f,0x0a,0x0b,0x08,0x08,0x20,0xff,0x20,0xf8,0x00,0xff,0x18,0xf4,0x13,0xf2,0x00,0xfc,0x24,0xe4,0x14,0x08 -+// 34127 蕏 ; -+,0x02,0x7f,0x02,0x44,0x2b,0x10,0x28,0x47,0x0c,0x14,0x25,0x46,0x04,0x24,0x14,0x08,0x20,0xff,0x20,0x20,0xfe,0x24,0x28,0xff,0x40,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 34128 蕐 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x08,0x14,0x2a,0x14,0x22,0x7f,0x00,0x3f,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0xfc,0x90,0xa8,0xd4,0xa8,0xc4,0xff,0x80,0xfe,0x80,0x80,0x80 -+// 34129 蕑 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x13,0x12,0x13,0x12,0x13,0x14,0x14,0x18,0x20,0xff,0x20,0x3e,0x22,0x3e,0x22,0x3e,0xe2,0x22,0xe2,0x22,0xe2,0x22,0xaa,0x44 -+// 34130 蕒 ; -+,0x01,0x3f,0x01,0x1f,0x12,0x1f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x03,0x0c,0x10,0xff,0x10,0xfe,0x22,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x06 -+// 34131 蕓 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x28,0x44,0x00,0x0f,0x00,0x3f,0x02,0x04,0x0f,0x00,0x10,0xff,0x10,0xfe,0x80,0xff,0xa2,0x90,0x80,0xfc,0x00,0xff,0x10,0xf8,0x8c,0x08 -+// 34132 蕔 ; -+,0x04,0x04,0x7f,0x04,0x08,0x08,0x3e,0x08,0x7f,0x22,0x14,0x7f,0x08,0x7f,0x08,0x08,0x20,0x20,0xff,0x20,0x00,0x7e,0x42,0x4a,0x44,0x7e,0x62,0x52,0x54,0x48,0x57,0x62 -+// 34133 蕕 ; -+,0x02,0x02,0x7f,0x02,0x28,0x13,0x28,0x49,0x0d,0x15,0x25,0x45,0x05,0x05,0x15,0x09,0x20,0x20,0xff,0xa4,0x48,0xff,0x50,0xfe,0x52,0x52,0x8e,0x02,0xfe,0x02,0xfe,0x02 -+// 34134 蕖 ; -+,0x02,0x7f,0x12,0x09,0x25,0x15,0x09,0x09,0x31,0x11,0x10,0x3f,0x02,0x04,0x18,0x60,0x10,0xff,0x10,0xfe,0x00,0xfc,0x04,0xfc,0x00,0xff,0x80,0xfe,0xa0,0x98,0x87,0x82 -+// 34135 蕗 ; -+,0x02,0x02,0x7f,0x02,0x3e,0x22,0x22,0x3e,0x08,0x28,0x2e,0x29,0x28,0x2f,0x78,0x00,0x20,0x20,0xff,0x20,0x40,0x7e,0x44,0xa8,0x10,0x28,0x47,0xfe,0x44,0x44,0x7c,0x44 -+// 34136 蕘 ; -+,0x02,0x7f,0x02,0x07,0x00,0x1f,0x08,0x3f,0x08,0x3f,0x00,0x1f,0x04,0x04,0x08,0x10,0x20,0xff,0xa0,0xf8,0x80,0xfe,0x10,0x7e,0x10,0x7f,0x00,0xfc,0x20,0x22,0x1e,0x00 -+// 34137 蕙 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x01,0x14,0x14,0x23,0x10,0xff,0x90,0xfc,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x84,0xfe,0x04,0xd2,0x9b,0xf2 -+// 34138 蕚 ; -+,0x02,0x7f,0x02,0x07,0x04,0x1f,0x11,0x1f,0x00,0x0f,0x00,0x7f,0x02,0x07,0x02,0x00,0x10,0xff,0x10,0xf8,0x08,0xfe,0x22,0x3e,0x00,0xf8,0x00,0xff,0x00,0xf8,0x08,0x18 -+// 34139 蕛 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x04,0x04,0x3f,0x04,0x0e,0x15,0x25,0x44,0x04,0x05,0x04,0x20,0xff,0x20,0x44,0x28,0xfe,0x12,0xfe,0x90,0xfe,0x32,0x32,0x5a,0x94,0x10,0x10 -+// 34140 蕜 ; -+,0x02,0x02,0x7f,0x02,0x01,0x3f,0x01,0x1f,0x01,0x3f,0x01,0x14,0x14,0x24,0x43,0x00,0x10,0x10,0xff,0x10,0x20,0x3e,0x20,0x3e,0x20,0x3f,0x20,0x82,0xc9,0x89,0xf8,0x00 -+// 34141 蕝 ; -+,0x02,0x7f,0x02,0x02,0x08,0x09,0x12,0x3f,0x08,0x12,0x3f,0x02,0x2a,0x25,0x45,0x00,0x20,0xff,0x20,0x40,0x7e,0x44,0x88,0xfe,0x92,0x92,0xfe,0x80,0x81,0x81,0x7f,0x00 -+// 34142 蕞 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x11,0x1f,0x11,0x3f,0x01,0x01,0x10,0xff,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x44,0x28,0x10,0xa8,0x47,0x82 -+// 34143 蕟 ; -+,0x02,0x3f,0x02,0x3f,0x11,0x0a,0x04,0x1f,0x61,0x0f,0x08,0x0f,0x01,0x01,0x0a,0x04,0x20,0xff,0x20,0x48,0x32,0x14,0x0d,0x7a,0x48,0x46,0x80,0x7e,0x24,0x18,0x24,0xc3 -+// 34144 蕠 ; -+,0x02,0x7f,0x02,0x08,0x3f,0x09,0x06,0x09,0x12,0x07,0x01,0x07,0x00,0x04,0x09,0x10,0x10,0xff,0x10,0x3e,0xa2,0x22,0x3e,0x00,0x20,0xc8,0x04,0xfe,0x44,0x48,0x44,0x84 -+// 34145 蕡 ; -+,0x04,0x7f,0x04,0x1f,0x04,0x7f,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x10,0xff,0x90,0xfe,0x90,0xff,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x07 -+// 34146 蕢 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x20,0xff,0xa0,0xf8,0x88,0xf8,0x80,0xff,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x07 -+// 34147 蕣 ; -+,0x02,0x7f,0x02,0x00,0x1f,0x04,0x3f,0x28,0x48,0x0f,0x11,0x2a,0x45,0x08,0x10,0x60,0x20,0xff,0x20,0xfe,0x04,0x88,0xff,0x12,0x10,0x7e,0x50,0x50,0xff,0x10,0x10,0x10 -+// 34148 蕤 ; -+,0x02,0x7f,0x02,0x02,0x3f,0x08,0x19,0x66,0x0d,0x15,0x66,0x1a,0x62,0x02,0x14,0x08,0x10,0xff,0x10,0x08,0xa8,0x3f,0x28,0x48,0x3e,0x08,0x88,0xff,0x40,0x38,0x07,0x00 -+// 34149 蕥 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x14,0x14,0x25,0x7f,0x0c,0x14,0x14,0x24,0x44,0x14,0x08,0x20,0xff,0x20,0x50,0x48,0x7f,0xc8,0x7e,0x48,0x48,0x7e,0x48,0x48,0x7f,0x40,0x40 -+// 34150 蕦 ; -+,0x02,0x3f,0x02,0x05,0x08,0x14,0x66,0x04,0x08,0x10,0x24,0x06,0x08,0x10,0x20,0x41,0x20,0xff,0x20,0xfe,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x48,0x66,0x83,0x02 -+// 34151 蕧 ; -+,0x02,0x7f,0x02,0x0a,0x0c,0x11,0x2a,0x4c,0x08,0x18,0x28,0x48,0x08,0x09,0x08,0x09,0x20,0xff,0x20,0xa0,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfc,0x48,0x30,0xce -+// 34152 蕨 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x28,0x25,0x3f,0x22,0x2a,0x2a,0x2f,0x22,0x22,0x44,0x48,0x10,0x10,0xff,0x10,0xfe,0x90,0x10,0xbf,0x4a,0x88,0x88,0x94,0x14,0x22,0x23,0x42 -+// 34153 蕩 ; -+,0x02,0x3f,0x02,0x10,0x0c,0x08,0x20,0x1b,0x10,0x08,0x09,0x76,0x11,0x12,0x10,0x10,0x10,0xff,0x10,0xfc,0x84,0xfc,0x84,0xff,0x80,0xfe,0x4a,0x8a,0x12,0x22,0x4a,0x04 -+// 34154 蕪 ; -+,0x02,0x02,0x7f,0x0a,0x0f,0x19,0x69,0x3f,0x09,0x09,0x7f,0x00,0x12,0x19,0x11,0x21,0x10,0x10,0xff,0x10,0xfe,0x48,0x48,0xfe,0x48,0x48,0xff,0x00,0x48,0x24,0xb6,0x24 -+// 34155 蕫 ; -+,0x02,0x7f,0x02,0x1f,0x02,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x7f,0x10,0xff,0x90,0xfc,0x10,0xff,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0x80,0xff -+// 34156 蕬 ; -+,0x02,0x02,0x3f,0x0a,0x09,0x12,0x3c,0x08,0x12,0x3f,0x01,0x2a,0x29,0x25,0x44,0x00,0x10,0x10,0xff,0x10,0x10,0x22,0x7c,0x10,0x20,0x7f,0x12,0x54,0x52,0x53,0x92,0x20 -+// 34157 蕭 ; -+,0x02,0x3f,0x02,0x0f,0x00,0x1f,0x00,0x0f,0x12,0x1e,0x10,0x1f,0x10,0x1e,0x22,0x42,0x10,0xff,0x90,0xfc,0x84,0xff,0x84,0xfc,0x92,0x9e,0x82,0xfe,0x82,0x9e,0x92,0xa2 -+// 34158 蕮 ; -+,0x02,0x7f,0x02,0x01,0x0e,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x29,0x09,0x10,0x00,0x10,0xff,0x10,0x80,0x3e,0x04,0x3c,0x04,0xfc,0x00,0xfe,0x52,0x2a,0x2a,0x0a,0x04 -+// 34159 蕯 ; -+,0x02,0x7f,0x02,0x02,0x3e,0x24,0x29,0x28,0x25,0x22,0x23,0x35,0x2a,0x20,0x23,0x20,0x10,0xff,0x10,0x50,0x7e,0xa4,0x18,0x64,0xff,0x90,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 34160 蕰 ; -+,0x02,0x3f,0x02,0x22,0x19,0x09,0x41,0x31,0x29,0x08,0x0b,0x72,0x12,0x12,0x1f,0x10,0x10,0xff,0x10,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfc,0x94,0x94,0x94,0xff,0x00 -+// 34161 蕱 ; -+,0x02,0x02,0x7f,0x02,0x06,0x38,0x08,0x08,0x7f,0x1c,0x1a,0x2b,0x2a,0x48,0x08,0x08,0x20,0x20,0xff,0x20,0x12,0x92,0x54,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4e,0x44 -+// 34162 蕲 ; -+,0x02,0x02,0x7f,0x02,0x11,0x0a,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x10,0x10,0xff,0x10,0x07,0x38,0xa0,0xa0,0xbf,0xa4,0xa4,0x24,0xa4,0x44,0x44,0x84 -+// 34163 蕳 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x10,0x10,0x20,0xff,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x0a,0x04 -+// 34164 蕴 ; -+,0x02,0x02,0x7f,0x02,0x08,0x10,0x22,0x7c,0x08,0x16,0x39,0x01,0x0f,0x71,0x07,0x00,0x20,0x20,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0x4a,0x4a,0xff,0x00 -+// 34165 蕵 ; -+,0x02,0x3f,0x02,0x0a,0x08,0x0e,0x12,0x13,0x2a,0x44,0x04,0x08,0x08,0x10,0x20,0x40,0x10,0xff,0x10,0x20,0x30,0x48,0x84,0xff,0x84,0xfc,0x84,0xfd,0x8a,0xa4,0xc3,0x82 -+// 34166 蕶 ; -+,0x02,0x7f,0x02,0x0f,0x00,0x1f,0x20,0x0e,0x01,0x06,0x18,0x67,0x00,0x02,0x01,0x00,0x10,0xff,0x10,0xfc,0x80,0xff,0x82,0x9c,0x40,0x30,0x8c,0xf7,0x22,0x40,0x80,0x80 -+// 34167 蕷 ; -+,0x02,0x7f,0x02,0x02,0x3e,0x14,0x08,0x7f,0x0a,0x08,0x08,0x08,0x08,0x08,0x28,0x13,0x10,0xff,0x10,0x10,0xff,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x4c,0xc3,0x02 -+// 34168 蕸 ; -+,0x02,0x7f,0x02,0x20,0x1b,0x12,0x03,0x72,0x13,0x12,0x13,0x12,0x12,0x2a,0x47,0x00,0x10,0xff,0x10,0x00,0xde,0x42,0xde,0x00,0xde,0x12,0xd2,0x0c,0x12,0x21,0xfe,0x00 -+// 34169 蕹 ; -+,0x02,0x7f,0x02,0x02,0x7f,0x04,0x08,0x12,0x3c,0x0b,0x12,0x3c,0x04,0x08,0x10,0x20,0x20,0xff,0x20,0xa0,0xff,0x50,0x48,0x7e,0xc8,0x7e,0x48,0x7e,0x48,0x48,0x7e,0x40 -+// 34170 蕺 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x00,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x01,0x01,0x20,0xff,0x20,0x00,0x28,0x24,0x20,0xfe,0x20,0x12,0x14,0x08,0xd9,0x25,0x42,0x00 -+// 34171 蕻 ; -+,0x02,0x3f,0x02,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x7f,0x08,0x09,0x17,0x3d,0x10,0x10,0xff,0x10,0x10,0x24,0x24,0xff,0x24,0x24,0x24,0xff,0x00,0x24,0xa2,0x42,0x80 -+// 34172 蕼 ; -+,0x02,0x7f,0x02,0x02,0x1f,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x08,0x12,0x3f,0x11,0x00,0x20,0xff,0x20,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x7e,0x10,0xff,0x10,0x10,0x10 -+// 34173 蕽 ; -+,0x02,0x3f,0x02,0x01,0x0f,0x09,0x0f,0x09,0x1f,0x10,0x17,0x10,0x1f,0x22,0x23,0x42,0x20,0xff,0x20,0x20,0xfc,0x24,0xfc,0x24,0xfe,0x00,0xfc,0x00,0xfe,0x34,0x0c,0x03 -+// 34174 蕾 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x20,0x54,0x0a,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x20,0xff,0x20,0xfc,0x80,0xff,0x82,0xa8,0x94,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x04 -+// 34175 蕿 ; -+,0x02,0x7f,0x02,0x0a,0x08,0x0a,0x2d,0x28,0x2b,0x08,0x08,0x15,0x12,0x22,0x40,0x03,0x20,0xff,0x20,0xfe,0xa2,0x54,0xfe,0x40,0xfe,0x80,0xfc,0x44,0x48,0x30,0xcc,0x03 -+// 34176 薀 ; -+,0x02,0x02,0x7f,0x02,0x21,0x11,0x45,0x35,0x29,0x08,0x73,0x12,0x12,0x12,0x17,0x10,0x10,0x10,0xff,0x10,0xfc,0x24,0x24,0x54,0xfc,0x00,0xfe,0x52,0x52,0x52,0xff,0x00 -+// 34177 薁 ; -+,0x02,0x7f,0x02,0x01,0x0f,0x0a,0x09,0x0f,0x09,0x0a,0x04,0x3f,0x01,0x02,0x0c,0x30,0x10,0xff,0xa0,0x00,0xf8,0x98,0xa8,0xf8,0xc8,0xa8,0x90,0xff,0x40,0x30,0x0e,0x04 -+// 34178 薂 ; -+,0x02,0x7f,0x02,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x3f,0x08,0x0f,0x11,0x15,0x22,0x10,0xff,0x10,0x10,0x18,0x10,0x3f,0x22,0x62,0x94,0x14,0x08,0x14,0x26,0x43,0x82 -+// 34179 薃 ; -+,0x02,0x3f,0x02,0x00,0x13,0x0c,0x28,0x14,0x14,0x08,0x09,0x71,0x11,0x11,0x11,0x11,0x10,0xff,0x50,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x06 -+// 34180 薄 ; -+,0x02,0x7f,0x02,0x22,0x1b,0x10,0x41,0x39,0x29,0x09,0x11,0x71,0x1f,0x10,0x10,0x10,0x20,0xff,0x28,0x24,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xff,0x88,0x88,0x18 -+// 34181 薅 ; -+,0x02,0x7f,0x02,0x11,0x11,0x7d,0x15,0x15,0x25,0x25,0x25,0x19,0x15,0x22,0x42,0x04,0x20,0xff,0x20,0xfe,0x00,0x7c,0x00,0xff,0x4a,0x64,0x4a,0xff,0x08,0x48,0x48,0x18 -+// 34182 薆 ; -+,0x02,0x7f,0x02,0x1f,0x09,0x3f,0x25,0x54,0x13,0x04,0x07,0x0a,0x11,0x00,0x07,0x38,0x20,0xff,0x20,0xfe,0x10,0xff,0x12,0x98,0xf4,0x00,0xf8,0x10,0x20,0xc0,0x30,0x0e -+// 34183 薇 ; -+,0x02,0x3f,0x02,0x0a,0x18,0x22,0x4b,0x08,0x13,0x30,0x53,0x12,0x12,0x14,0x14,0x18,0x10,0xff,0x10,0x10,0x88,0xa8,0xef,0x12,0xf2,0x12,0xd2,0x4c,0x4c,0x52,0x63,0x42 -+// 34184 薈 ; -+,0x02,0x7f,0x02,0x01,0x06,0x1b,0x60,0x0f,0x0a,0x09,0x0f,0x04,0x07,0x04,0x07,0x04,0x10,0xff,0x90,0x40,0x30,0xee,0x04,0xf8,0xa8,0xc8,0xf8,0x10,0xf0,0x10,0xf0,0x10 -+// 34185 薉 ; -+,0x02,0x7f,0x02,0x08,0x08,0x7f,0x00,0x1f,0x11,0x15,0x15,0x19,0x11,0x12,0x24,0x58,0x20,0xff,0xa0,0xf8,0x80,0xff,0x20,0xfe,0x20,0x28,0x68,0x90,0x10,0x29,0x45,0x82 -+// 34186 薊 ; -+,0x02,0x02,0x7f,0x0a,0x0f,0x10,0x3f,0x52,0x1f,0x12,0x1f,0x00,0x15,0x15,0x25,0x00,0x10,0x10,0xff,0x12,0xc2,0x92,0xd2,0x52,0xd2,0x52,0xd2,0x12,0x52,0x22,0x2a,0x04 -+// 34187 薋 ; -+,0x02,0x7f,0x02,0x20,0x15,0x08,0x30,0x10,0x0f,0x0a,0x0b,0x09,0x0f,0x03,0x06,0x18,0x20,0xff,0xa0,0xfc,0x24,0x20,0x58,0x86,0xf8,0x48,0x68,0x28,0xf8,0x30,0x0e,0x04 -+// 34188 薌 ; -+,0x02,0x02,0x3f,0x02,0x02,0x08,0x09,0x13,0x3d,0x09,0x15,0x3d,0x05,0x09,0x13,0x21,0x10,0x10,0xff,0x10,0x90,0x40,0xef,0x29,0xea,0x2c,0xea,0x09,0x4d,0x6a,0xa8,0x08 -+// 34189 薍 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x14,0x3f,0x01,0x3f,0x25,0x2f,0x21,0x2f,0x29,0x26,0x29,0x20,0x20,0xff,0x20,0x90,0x90,0x90,0x10,0xd0,0x50,0xd0,0x51,0x51,0x51,0x4f,0xc0 -+// 34190 薎 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x00,0x3f,0x24,0x46,0x09,0x18,0x28,0x08,0x08,0x09,0x20,0xff,0x20,0xfc,0x24,0xfc,0x00,0xff,0x42,0x40,0xf8,0x50,0x22,0x52,0x8a,0x04 -+// 34191 薏 ; -+,0x02,0x7f,0x02,0x1f,0x04,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x14,0x14,0x23,0x20,0xff,0xa0,0xfc,0x10,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x04,0x83,0x49,0xf8 -+// 34192 薐 ; -+,0x02,0x7f,0x02,0x00,0x3e,0x08,0x08,0x7f,0x18,0x1d,0x2a,0x28,0x49,0x08,0x08,0x08,0x20,0xff,0x20,0x10,0x7e,0x10,0xff,0x44,0xc2,0x7d,0x44,0xa8,0x10,0x28,0x47,0x82 -+// 34193 薑 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x3f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x20,0xff,0x20,0xfe,0x00,0xf8,0x88,0xf8,0x88,0xfe,0x88,0xf8,0x88,0xf8,0x00,0xfe -+// 34194 薒 ; -+,0x01,0x3f,0x09,0x0f,0x08,0x1f,0x31,0x4a,0x0c,0x74,0x02,0x3f,0x02,0x04,0x18,0x60,0x10,0xff,0x10,0x7e,0x44,0x28,0x10,0x2c,0xc3,0x90,0xa0,0xfe,0xa0,0x98,0x86,0x84 -+// 34195 薓 ; -+,0x02,0x7f,0x02,0x21,0x18,0x09,0x40,0x2b,0x2c,0x09,0x09,0x71,0x13,0x10,0x10,0x13,0x20,0xff,0x20,0xfc,0x04,0xfc,0x04,0xff,0x22,0xfc,0x24,0x24,0xfc,0x88,0x70,0x8e -+// 34196 薔 ; -+,0x02,0x3f,0x02,0x02,0x3f,0x04,0x0a,0x7f,0x00,0x0f,0x08,0x0b,0x0a,0x0b,0x08,0x0f,0x20,0xfe,0x20,0xa0,0xfe,0x90,0xa8,0xff,0x00,0xf8,0x08,0xe8,0x28,0xe8,0x08,0xf8 -+// 34197 薕 ; -+,0x02,0x3f,0x02,0x1f,0x12,0x1f,0x11,0x17,0x11,0x17,0x11,0x17,0x13,0x25,0x29,0x51,0x10,0xff,0x90,0xff,0x10,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x30,0x2c,0x27,0x22 -+// 34198 薖 ; -+,0x02,0x7f,0x02,0x41,0x31,0x21,0x01,0x73,0x12,0x12,0x12,0x12,0x12,0x12,0x2f,0x40,0x20,0xff,0x20,0xf8,0x08,0xe8,0x28,0xfe,0x02,0xfa,0x8a,0xfa,0x0a,0x04,0xff,0x00 -+// 34199 薗 ; -+,0x02,0x7f,0x02,0x1f,0x10,0x17,0x10,0x17,0x12,0x13,0x11,0x12,0x16,0x1b,0x12,0x1f,0x20,0xff,0x20,0xfe,0x82,0xf2,0x82,0xfa,0x22,0xe2,0x42,0x52,0x22,0x1a,0x12,0xfe -+// 34200 薘 ; -+,0x02,0x7f,0x02,0x20,0x1b,0x10,0x07,0x01,0x77,0x10,0x13,0x10,0x17,0x28,0x47,0x00,0x10,0xff,0x10,0x40,0xfc,0x40,0xfe,0x10,0xfe,0x40,0xfc,0x40,0xfe,0x40,0xff,0x00 -+// 34201 薙 ; -+,0x02,0x02,0x7f,0x02,0x10,0x1f,0x14,0x25,0x04,0x7f,0x04,0x0a,0x09,0x11,0x21,0x40,0x20,0x20,0xff,0x20,0x40,0x7f,0xc8,0x48,0x7e,0x48,0x48,0x7f,0x48,0xc8,0x7f,0x40 -+// 34202 薚 ; -+,0x02,0x3f,0x02,0x02,0x3f,0x08,0x0e,0x12,0x12,0x2a,0x44,0x09,0x0a,0x10,0x21,0x40,0x10,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x80,0xfe,0xaa,0x2a,0x4a,0x92,0x2a,0x44 -+// 34203 薛 ; -+,0x04,0x04,0x7f,0x04,0x10,0x3e,0x22,0x22,0x3e,0x21,0x3e,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0xff,0x20,0x10,0xfe,0x84,0x44,0x28,0xff,0x10,0xfe,0x10,0x10,0x10,0x10 -+// 34204 薜 ; -+,0x02,0x02,0x3f,0x02,0x00,0x1f,0x11,0x11,0x1f,0x10,0x1f,0x29,0x29,0x2f,0x49,0x00,0x10,0x10,0xff,0x10,0x20,0x10,0xff,0x42,0x24,0xff,0x10,0x10,0x7f,0x10,0x10,0x10 -+// 34205 薝 ; -+,0x02,0x7f,0x02,0x03,0x04,0x1f,0x11,0x12,0x17,0x10,0x13,0x10,0x13,0x22,0x23,0x42,0x10,0xff,0x10,0xf8,0x10,0xff,0x48,0x24,0xff,0x00,0xf8,0x00,0xfc,0x04,0xfc,0x04 -+// 34206 薞 ; -+,0x02,0x3f,0x02,0x02,0x3f,0x10,0x1e,0x13,0x22,0x64,0x14,0x08,0x08,0x10,0x21,0x40,0x10,0xff,0x10,0x10,0x28,0x44,0xa3,0xfa,0x88,0xf8,0x88,0xfa,0x94,0x88,0xc6,0x84 -+// 34207 薟 ; -+,0x02,0x3f,0x02,0x03,0x02,0x04,0x1b,0x60,0x0f,0x09,0x0f,0x04,0x04,0x0a,0x11,0x21,0x10,0xff,0x90,0x40,0x20,0x18,0xf7,0x02,0x3c,0x24,0x3c,0x08,0x08,0x14,0xa3,0x42 -+// 34208 薠 ; -+,0x02,0x7f,0x02,0x09,0x08,0x2a,0x2a,0x2c,0x48,0x08,0x08,0x14,0x14,0x22,0x22,0x41,0x10,0xff,0x10,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x64,0x86,0x04 -+// 34209 薡 ; -+,0x02,0x7f,0x02,0x03,0x12,0x13,0x12,0x13,0x12,0x13,0x1f,0x01,0x3f,0x11,0x21,0x41,0x20,0xff,0x20,0xf0,0x12,0xf2,0x12,0xf2,0x12,0xf2,0x3e,0x20,0x3e,0x22,0x22,0x22 -+// 34210 薢 ; -+,0x02,0x7f,0x02,0x08,0x0f,0x11,0x3f,0x54,0x1f,0x14,0x1f,0x14,0x14,0x24,0x22,0x41,0x20,0xff,0x20,0x20,0xbe,0x12,0xa2,0xc8,0xa8,0xbf,0xc8,0xff,0x88,0x88,0x88,0x08 -+// 34211 薣 ; -+,0x02,0x7f,0x02,0x0a,0x7f,0x08,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x12,0x0f,0x78,0x00,0x20,0xff,0x20,0x30,0x10,0xff,0x10,0x10,0x7e,0x42,0x24,0x24,0x18,0x24,0x43,0x82 -+// 34212 薤 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x10,0x11,0x1e,0x23,0x22,0x54,0x0d,0x08,0x10,0x23,0x40,0x20,0x20,0xff,0x20,0x48,0x48,0xcf,0x48,0xcf,0x48,0x48,0xcf,0x48,0x48,0xff,0x00 -+// 34213 薥 ; -+,0x02,0x3f,0x02,0x1f,0x11,0x1f,0x08,0x0f,0x11,0x2f,0x49,0x0f,0x01,0x01,0x1f,0x00,0x10,0xff,0x10,0xfc,0x24,0xfc,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x22,0xf2,0x2a,0x04 -+// 34214 薦 ; -+,0x02,0x7f,0x03,0x02,0x1f,0x11,0x17,0x11,0x1f,0x14,0x17,0x14,0x17,0x25,0x24,0x48,0x20,0xff,0x20,0xa0,0xfe,0x20,0xfc,0x24,0xfc,0x00,0xfe,0x00,0xfe,0x22,0x92,0x96 -+// 34215 薧 ; -+,0x02,0x7f,0x02,0x1f,0x04,0x07,0x00,0x3f,0x20,0x5f,0x08,0x1f,0x31,0x4a,0x0c,0x30,0x20,0xfe,0xa0,0xfe,0x10,0xf0,0x00,0xff,0x02,0xfc,0x20,0xa4,0x38,0x21,0x1f,0x00 -+// 34216 薨 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x00,0x3f,0x20,0x5f,0x08,0x1f,0x22,0x54,0x08,0x30,0x20,0xff,0x20,0xfc,0x24,0xfc,0x00,0xff,0x02,0xfc,0x20,0x24,0x38,0x21,0x1f,0x00 -+// 34217 薩 ; -+,0x02,0x7f,0x02,0x02,0x3d,0x24,0x28,0x2b,0x32,0x2a,0x2b,0x2a,0x3a,0x24,0x25,0x28,0x10,0xff,0x10,0x20,0xfe,0x84,0x48,0xff,0x90,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 34218 薪 ; -+,0x02,0x02,0x7f,0x0a,0x04,0x3f,0x11,0x0a,0x3f,0x04,0x3f,0x04,0x16,0x25,0x54,0x09,0x20,0x20,0xff,0x20,0x06,0xb8,0x20,0x20,0xbf,0x24,0xa4,0x24,0x44,0x44,0x84,0x04 -+// 34219 薫 ; -+,0x02,0x3f,0x02,0x1f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x3f,0x12,0x22,0x20,0xff,0x20,0xfc,0x80,0xff,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xfe,0x48,0x44 -+// 34220 薬 ; -+,0x04,0x7f,0x04,0x01,0x23,0x12,0x0b,0x12,0x63,0x20,0x7f,0x01,0x02,0x04,0x18,0x60,0x10,0xff,0x90,0x00,0xe4,0x28,0xf0,0x28,0xe4,0x80,0xff,0xc0,0xb0,0x8c,0x87,0x82 -+// 34221 薭 ; -+,0x02,0x02,0x7f,0x02,0x07,0x78,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x49,0x08,0x08,0x08,0x20,0x20,0xff,0x20,0x40,0xfe,0x92,0xfe,0x92,0xfe,0x50,0x90,0xff,0x10,0x10,0x10 -+// 34222 薮 ; -+,0x02,0x02,0x7f,0x0a,0x49,0x2a,0x7f,0x1c,0x2b,0x49,0x10,0x7f,0x14,0x24,0x18,0x67,0x20,0x20,0xff,0x20,0x20,0x22,0xbf,0x44,0x44,0xa4,0x14,0x08,0x14,0x12,0x23,0x42 -+// 34223 薯 ; -+,0x02,0x7f,0x02,0x0f,0x09,0x0f,0x00,0x1f,0x00,0x3f,0x01,0x0f,0x34,0x07,0x04,0x07,0x10,0xff,0x10,0xfc,0x24,0xfc,0x90,0xfc,0xa0,0xff,0x80,0xf8,0x08,0xf8,0x08,0xf8 -+// 34224 薰 ; -+,0x02,0x3f,0x02,0x1f,0x00,0x7f,0x0c,0x0a,0x0f,0x00,0x1f,0x00,0x3f,0x12,0x11,0x21,0x20,0xff,0x20,0xf8,0x80,0xff,0x98,0xa8,0xf8,0x80,0xfc,0x80,0xff,0x24,0x13,0x12 -+// 34225 薱 ; -+,0x02,0x02,0x7f,0x0a,0x2a,0x1b,0x7f,0x11,0x0a,0x3f,0x04,0x3f,0x04,0x07,0x3c,0x00,0x20,0x20,0xff,0x20,0x84,0x04,0xff,0x04,0x24,0x14,0x14,0x04,0x04,0x94,0x08,0x00 -+// 34226 薲 ; -+,0x02,0x7f,0x02,0x3f,0x20,0x44,0x08,0x00,0x07,0x3c,0x05,0x04,0x04,0x07,0x03,0x1c,0x20,0xff,0x20,0xff,0x82,0x88,0xb0,0xc0,0xf8,0x08,0x28,0x98,0x08,0xf8,0x30,0x0e -+// 34227 薳 ; -+,0x02,0x02,0x7f,0x02,0x21,0x18,0x13,0x00,0x79,0x09,0x09,0x08,0x09,0x0a,0x14,0x23,0x10,0x10,0xff,0x50,0xf0,0x40,0xfc,0x00,0xf8,0x08,0xf8,0xa4,0x18,0xce,0x84,0xfe -+// 34228 薴 ; -+,0x02,0x3f,0x02,0x1f,0x10,0x2a,0x0b,0x10,0x0f,0x09,0x7f,0x00,0x1f,0x00,0x01,0x00,0x20,0xff,0x20,0xff,0x82,0x4a,0xf9,0x00,0xfc,0x24,0xff,0x00,0xfc,0x40,0x40,0x80 -+// 34229 薵 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x00,0x20,0xff,0xa0,0xfc,0x80,0xff,0x02,0xfc,0x80,0xff,0x08,0xfe,0x48,0x48,0x28,0x10 -+// 34230 薶 ; -+,0x02,0x7f,0x02,0x10,0x12,0x2a,0x64,0x1c,0x12,0x26,0x4a,0x32,0x0e,0x12,0x6b,0x04,0x10,0xff,0x10,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 34231 薷 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x20,0x4e,0x00,0x7f,0x04,0x1f,0x12,0x12,0x12,0x10,0x20,0xff,0x20,0xfc,0x80,0xff,0x82,0xb8,0x00,0xff,0x00,0xfc,0x24,0x24,0x24,0x08 -+// 34232 薸 ; -+,0x02,0x7f,0x02,0x27,0x10,0x13,0x42,0x2b,0x2a,0x09,0x70,0x17,0x11,0x12,0x14,0x10,0x20,0xfe,0x20,0xfe,0x90,0xfe,0x92,0xfe,0x02,0xfc,0x00,0xff,0x28,0x26,0xa4,0x40 -+// 34233 薹 ; -+,0x02,0x3f,0x02,0x1f,0x00,0x07,0x00,0x3f,0x20,0x4f,0x04,0x0f,0x00,0x1f,0x00,0x3f,0x20,0xff,0xa0,0xfc,0x80,0xf8,0x00,0xff,0x02,0xf8,0x10,0xf8,0x88,0xfc,0x80,0xff -+// 34234 薺 ; -+,0x02,0x7f,0x02,0x3f,0x02,0x3f,0x0a,0x0a,0x12,0x24,0x04,0x07,0x04,0x07,0x08,0x10,0x10,0xff,0x90,0xff,0x20,0x4e,0x94,0x94,0x92,0x95,0x04,0xfc,0x04,0xfc,0x04,0x04 -+// 34235 薻 ; -+,0x02,0x7f,0x02,0x11,0x0a,0x09,0x41,0x31,0x29,0x09,0x11,0x70,0x17,0x10,0x11,0x12,0x20,0xff,0x20,0x24,0x48,0x24,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0xa8,0x27,0x22 -+// 34236 薼 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x14,0x17,0x10,0x27,0x20,0x5f,0x10,0xff,0x90,0xfe,0x20,0xfc,0x24,0xfc,0x20,0x38,0x22,0x1e,0x40,0xfc,0x40,0xff -+// 34237 薽 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x0a,0x3f,0x2a,0x3f,0x24,0x04,0x3f,0x04,0x07,0x3c,0x00,0x10,0xff,0x10,0x00,0xfe,0x20,0xa0,0xbc,0xa4,0xb4,0x2c,0xa4,0x25,0xad,0x77,0x20 -+// 34238 薾 ; -+,0x02,0x7f,0x02,0x3f,0x06,0x18,0x7f,0x19,0x16,0x19,0x10,0x19,0x16,0x19,0x10,0x10,0x20,0xff,0x20,0xfe,0x98,0x86,0xfd,0xcc,0xb4,0xcc,0x84,0xcc,0xb4,0xcc,0x94,0x88 -+// 34239 薿 ; -+,0x02,0x3f,0x02,0x10,0x1e,0x11,0x0f,0x10,0x1f,0x24,0x3f,0x04,0x0a,0x11,0x20,0x41,0x10,0xff,0x10,0x7e,0x24,0x18,0x10,0x7f,0x92,0x50,0xde,0x50,0x50,0x50,0xbf,0x00 -+// 34240 藀 ; -+,0x02,0x3f,0x02,0x0a,0x0b,0x02,0x05,0x08,0x3f,0x20,0x44,0x04,0x09,0x02,0x0c,0x30,0x10,0xff,0x10,0x92,0x54,0x10,0x28,0xc4,0xff,0x82,0x90,0xa0,0x40,0x30,0x0e,0x04 -+// 34241 藁 ; -+,0x02,0x3f,0x02,0x1f,0x02,0x03,0x00,0x1f,0x12,0x13,0x10,0x3f,0x01,0x02,0x0c,0x30,0x10,0xff,0x90,0xfe,0x10,0xf0,0x00,0xfc,0x24,0xe4,0x84,0xff,0xa0,0x98,0x8e,0x84 -+// 34242 藂 ; -+,0x02,0x7f,0x02,0x3f,0x11,0x1f,0x11,0x1f,0x31,0x00,0x1f,0x04,0x09,0x32,0x0c,0x30,0x10,0xff,0x10,0xbe,0x24,0x24,0x18,0xa4,0x42,0xfc,0x84,0xc8,0xb0,0x9c,0x87,0x82 -+// 34243 藃 ; -+,0x04,0x7f,0x04,0x08,0x3f,0x00,0x1f,0x11,0x11,0x3f,0x20,0x2e,0x2a,0x2e,0x20,0x21,0x20,0xff,0x20,0x10,0x90,0x3f,0x22,0x48,0x08,0x88,0x88,0x94,0x94,0xa2,0xa3,0xc2 -+// 34244 藄 ; -+,0x02,0x3f,0x02,0x04,0x1f,0x06,0x05,0x7f,0x05,0x1a,0x67,0x01,0x07,0x02,0x04,0x09,0x10,0xff,0x10,0x08,0xfe,0x48,0x28,0xff,0x08,0x24,0xc3,0x10,0xf8,0xa8,0x90,0x88 -+// 34245 藅 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x02,0x3f,0x00,0x1f,0x00,0x1f,0x00,0x1f,0x10,0x1f,0x20,0xff,0x20,0xfc,0x24,0xfc,0x02,0xc2,0x12,0x92,0x12,0x92,0x12,0x82,0x8a,0x84 -+// 34246 藆 ; -+,0x02,0x3f,0x02,0x3f,0x22,0x5f,0x02,0x3f,0x04,0x0b,0x10,0x6f,0x00,0x1f,0x00,0x01,0x10,0xff,0x10,0xff,0x22,0xfc,0x20,0xff,0x10,0xec,0x83,0xfc,0x80,0xfe,0x80,0x80 -+// 34247 藇 ; -+,0x02,0x7f,0x02,0x01,0x1d,0x11,0x1d,0x11,0x10,0x1d,0x11,0x7f,0x02,0x04,0x08,0x10,0x20,0xff,0x20,0x00,0xdc,0x04,0x1c,0xe4,0x24,0x3c,0x24,0xff,0x10,0x08,0x06,0x04 -+// 34248 藈 ; -+,0x02,0x02,0x7f,0x02,0x3d,0x26,0x25,0x3d,0x26,0x24,0x3c,0x25,0x24,0x3c,0x24,0x01,0x20,0x20,0xff,0x20,0xe8,0x52,0x8c,0x07,0xfa,0x20,0x20,0xfe,0x20,0x50,0x8c,0x04 -+// 34249 藉 ; -+,0x02,0x02,0x7f,0x0a,0x08,0x7e,0x08,0x3e,0x08,0x7f,0x1c,0x1a,0x29,0x48,0x08,0x08,0x10,0x10,0xff,0x10,0x24,0xff,0x24,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 34250 藊 ; -+,0x02,0x02,0x7f,0x02,0x0e,0x78,0x08,0x7f,0x08,0x1d,0x1b,0x29,0x2a,0x4a,0x0c,0x08,0x20,0x20,0xff,0x20,0x10,0xfe,0x82,0xfe,0x80,0xfe,0xaa,0xfe,0xaa,0xaa,0xaa,0x86 -+// 34251 藋 ; -+,0x02,0x3f,0x02,0x1f,0x09,0x05,0x09,0x15,0x07,0x0c,0x17,0x24,0x07,0x04,0x07,0x04,0x10,0xff,0x10,0x7c,0x24,0x14,0x24,0x44,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x00 -+// 34252 藌 ; -+,0x02,0x7f,0x02,0x00,0x3f,0x25,0x54,0x13,0x03,0x1f,0x68,0x0f,0x00,0x00,0x1f,0x00,0x10,0xff,0x90,0x40,0xff,0x22,0x54,0xf2,0x00,0xf8,0x88,0xf8,0x88,0xfc,0x84,0x00 -+// 34253 藍 ; -+,0x02,0x02,0x3f,0x02,0x1f,0x12,0x1f,0x10,0x1f,0x12,0x1f,0x00,0x0f,0x09,0x09,0x7f,0x20,0x20,0xff,0x20,0x90,0x1f,0x94,0x92,0xa2,0x20,0x80,0x00,0xfc,0x24,0x24,0xff -+// 34254 藎 ; -+,0x04,0x7f,0x04,0x0f,0x00,0x7f,0x00,0x0f,0x00,0x3f,0x12,0x11,0x2f,0x09,0x09,0x7f,0x10,0xff,0x90,0xf8,0x88,0xff,0x88,0xf8,0x80,0xff,0x44,0x22,0xfc,0x24,0x24,0xff -+// 34255 藏 ; -+,0x02,0x7f,0x02,0x02,0x0f,0x28,0x2b,0x3a,0x0b,0x3a,0x2b,0x2a,0x4b,0x10,0x10,0x20,0x20,0xff,0x28,0x14,0xff,0x10,0xd4,0x96,0xd4,0x54,0xc8,0x88,0xd5,0x25,0x42,0x00 -+// 34256 藐 ; -+,0x02,0x7f,0x02,0x04,0x18,0x6a,0x2c,0x34,0x4c,0x12,0x66,0x0a,0x12,0x62,0x0a,0x05,0x20,0xff,0x20,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0xaa,0x28,0x29,0x49,0x87,0x00 -+// 34257 藑 ; -+,0x04,0x7f,0x04,0x0f,0x10,0x3f,0x51,0x12,0x1f,0x0a,0x09,0x0f,0x10,0x2c,0x03,0x3c,0x20,0xff,0x20,0xf8,0x10,0xf8,0x08,0x88,0xf8,0x50,0x30,0xf0,0x10,0x60,0x80,0x7c -+// 34258 藒 ; -+,0x02,0x7f,0x02,0x02,0x3e,0x08,0x08,0x7e,0x18,0x1d,0x2b,0x2b,0x49,0x09,0x08,0x08,0x10,0xff,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x12,0x2a,0x46,0xfa,0x0a,0x04 -+// 34259 藓 ; -+,0x02,0x02,0x7f,0x02,0x10,0x1f,0x12,0x3f,0x55,0x1f,0x15,0x1f,0x00,0x07,0x38,0x00,0x20,0x20,0xff,0x20,0x44,0x28,0xff,0x10,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 34260 藔 ; -+,0x02,0x7f,0x02,0x3f,0x20,0x5f,0x12,0x0f,0x14,0x67,0x04,0x07,0x04,0x08,0x12,0x01,0x10,0xff,0x90,0xff,0x82,0xfc,0x12,0xfc,0x0b,0xf8,0x08,0xf8,0x90,0x8c,0x88,0x00 -+// 34261 藕 ; -+,0x02,0x3f,0x02,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x18,0x1c,0x2a,0x28,0x48,0x08,0x08,0x10,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x91,0x95,0x9f,0xf5,0x85,0x82 -+// 34262 藖 ; -+,0x02,0x3f,0x02,0x1f,0x14,0x1f,0x11,0x1f,0x14,0x1f,0x0a,0x09,0x08,0x0f,0x06,0x18,0x10,0xff,0x10,0x7e,0x24,0x24,0x18,0x24,0x43,0xfc,0x44,0x24,0x94,0xfc,0x18,0x06 -+// 34263 藗 ; -+,0x02,0x7f,0x02,0x41,0x2f,0x21,0x07,0x75,0x17,0x15,0x13,0x15,0x19,0x11,0x2f,0x40,0x20,0xff,0x20,0x10,0xd0,0x1f,0xe2,0x48,0xc8,0x08,0x94,0x54,0x23,0x42,0xfe,0x00 -+// 34264 藘 ; -+,0x02,0x7f,0x02,0x02,0x02,0x1f,0x10,0x17,0x10,0x13,0x12,0x13,0x12,0x13,0x25,0x49,0x10,0xff,0x90,0xfc,0x80,0xfe,0x82,0xf4,0x84,0xf8,0x48,0xf8,0x48,0xf8,0x0a,0xf9 -+// 34265 藙 ; -+,0x02,0x02,0x7f,0x0a,0x04,0x3f,0x11,0x7f,0x08,0x15,0x6a,0x15,0x6a,0x12,0x6a,0x04,0x10,0x10,0xff,0x10,0x3c,0xa4,0x24,0xa7,0xc0,0x7e,0x24,0x14,0x88,0x14,0x23,0x42 -+// 34266 藚 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x00,0x1f,0x12,0x1f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x20,0xff,0xa0,0xf8,0x80,0xfe,0x00,0xfc,0x24,0xfc,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 34267 藛 ; -+,0x02,0x7f,0x02,0x1f,0x10,0x2f,0x08,0x0f,0x08,0x0f,0x10,0x1f,0x20,0x0a,0x09,0x10,0x20,0xff,0xa0,0xff,0x02,0x78,0x08,0x78,0x08,0xf8,0x00,0xfe,0x22,0x92,0x4a,0x04 -+// 34268 藜 ; -+,0x02,0x7f,0x02,0x1f,0x04,0x3f,0x0e,0x15,0x24,0x03,0x0c,0x72,0x01,0x06,0x18,0x01,0x20,0xff,0x20,0x40,0x7e,0x52,0x92,0x2a,0xc4,0x20,0x98,0xa3,0xc0,0xb0,0x8c,0x80 -+// 34269 藝 ; -+,0x02,0x7f,0x06,0x1f,0x04,0x3f,0x11,0x24,0x5f,0x04,0x3f,0x0f,0x00,0x3f,0x04,0x0f,0x20,0xff,0x20,0x10,0x7c,0x94,0x34,0xdc,0x25,0xc2,0x00,0xf8,0x00,0xfe,0x08,0xfc -+// 34270 藞 ; -+,0x02,0x3f,0x02,0x1f,0x04,0x0f,0x14,0x27,0x00,0x3f,0x10,0x3f,0x51,0x11,0x1f,0x11,0x10,0xff,0x10,0xfe,0x00,0xf8,0x08,0xf8,0x00,0x7f,0x10,0x3e,0x62,0xa2,0x3e,0x22 -+// 34271 藟 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x41,0x20,0x20,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x41 -+// 34272 藠 ; -+,0x02,0x3f,0x02,0x01,0x07,0x04,0x07,0x04,0x0f,0x10,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x20,0xff,0xa0,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x21 -+// 34273 藡 ; -+,0x02,0x02,0x7f,0x02,0x47,0x30,0x23,0x02,0x73,0x12,0x12,0x12,0x12,0x12,0x28,0x47,0x10,0x10,0xff,0x50,0xff,0x88,0xfe,0x22,0xfa,0x22,0xfa,0x8a,0xfa,0x06,0x00,0xff -+// 34274 藢 ; -+,0x02,0x02,0x7f,0x12,0x1a,0x12,0x2b,0x48,0x17,0x30,0x57,0x11,0x17,0x11,0x17,0x10,0x10,0x10,0xff,0x10,0xa8,0xb0,0xff,0x32,0xd2,0x12,0xd2,0x0c,0xcc,0x0a,0xd1,0x21 -+// 34275 藣 ; -+,0x02,0x7f,0x02,0x3f,0x22,0x3f,0x04,0x09,0x1f,0x01,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x20,0xff,0x20,0xfe,0x22,0xfe,0x24,0x38,0xa2,0x1e,0x20,0x24,0x38,0x22,0x22,0x1e -+// 34276 藤 ; -+,0x02,0x02,0x7f,0x02,0x3d,0x24,0x25,0x3c,0x25,0x24,0x3d,0x26,0x24,0x24,0x45,0x4c,0x20,0x20,0xff,0x20,0x24,0xa8,0xfe,0x40,0xfe,0x88,0x26,0xa2,0x68,0xa4,0x24,0x60 -+// 34277 藥 ; -+,0x02,0x3f,0x02,0x09,0x13,0x3e,0x0b,0x12,0x3f,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x20,0xff,0xa0,0x04,0xe9,0x3e,0xe4,0x2a,0xef,0x80,0xff,0xa0,0x90,0x8c,0x87,0x82 -+// 34278 藦 ; -+,0x02,0x3f,0x02,0x1f,0x12,0x1f,0x17,0x16,0x1a,0x17,0x10,0x17,0x10,0x2f,0x20,0x40,0x10,0xff,0x90,0xfe,0x08,0xbf,0x1c,0xab,0x4a,0xf8,0x40,0xfc,0x40,0xfe,0x40,0xc0 -+// 34279 藧 ; -+,0x02,0x7f,0x02,0x02,0x08,0x08,0x12,0x3c,0x08,0x15,0x3e,0x02,0x28,0x29,0x4a,0x01,0x20,0xff,0x20,0x1e,0xf0,0xa2,0x54,0xfe,0x20,0xff,0x40,0x7c,0xa4,0x18,0x64,0x83 -+// 34280 藨 ; -+,0x02,0x7f,0x02,0x3f,0x22,0x3f,0x22,0x3f,0x24,0x27,0x24,0x2f,0x24,0x29,0x49,0x51,0x20,0xff,0xa0,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xbe,0x21,0x1f,0x00,0x44,0x33,0x22 -+// 34281 藩 ; -+,0x02,0x7f,0x02,0x22,0x19,0x12,0x47,0x28,0x29,0x0e,0x73,0x12,0x13,0x12,0x13,0x12,0x20,0xff,0x20,0x00,0xfc,0x48,0xff,0xe0,0x58,0x47,0xfe,0x44,0xfc,0x44,0xfc,0x04 -+// 34282 藪 ; -+,0x02,0x7f,0x04,0x1f,0x15,0x7f,0x15,0x3f,0x24,0x3f,0x08,0x7f,0x11,0x12,0x0c,0x73,0x20,0xff,0x20,0x10,0x10,0xbf,0x32,0xd2,0x92,0x92,0x0a,0xc4,0x0a,0x09,0x11,0xa1 -+// 34283 藫 ; -+,0x04,0x7f,0x04,0x23,0x10,0x13,0x4a,0x2b,0x29,0x09,0x11,0x71,0x10,0x17,0x10,0x10,0x20,0xfe,0x20,0xfe,0x50,0xfe,0x52,0xfe,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20 -+// 34284 藬 ; -+,0x02,0x7f,0x02,0x3c,0x25,0x29,0x31,0x28,0x2b,0x24,0x24,0x34,0x28,0x20,0x20,0x23,0x20,0xff,0x20,0x20,0xfe,0x22,0xfe,0x20,0xff,0x84,0xe4,0x9c,0x84,0xfc,0xc8,0x06 -+// 34285 藭 ; -+,0x02,0x3f,0x02,0x1f,0x12,0x24,0x0f,0x08,0x0e,0x09,0x08,0x3f,0x02,0x04,0x0a,0x11,0x10,0xff,0x10,0xff,0x02,0x3c,0x84,0x84,0xbc,0xa0,0xbe,0x82,0x82,0x82,0x8a,0x04 -+// 34286 藮 ; -+,0x02,0x02,0x3f,0x02,0x08,0x08,0x7f,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x09,0x09,0x0a,0x10,0x10,0xff,0x50,0x48,0xff,0x88,0xfe,0x88,0xfe,0x88,0xff,0x04,0x52,0x2b,0x2a -+// 34287 藯 ; -+,0x02,0x3f,0x02,0x1f,0x10,0x1f,0x10,0x1f,0x12,0x2a,0x34,0x41,0x14,0x14,0x23,0x00,0x10,0xff,0x10,0x84,0xbf,0x84,0x14,0x94,0x04,0x94,0x48,0x04,0xd2,0x9a,0xf0,0x00 -+// 34288 藰 ; -+,0x02,0x7f,0x02,0x3d,0x21,0x25,0x2d,0x36,0x09,0x1f,0x62,0x1f,0x02,0x13,0x0b,0x3c,0x10,0xff,0x10,0xc2,0x42,0x52,0x52,0x52,0x92,0xf2,0x52,0x92,0x92,0x02,0xca,0x04 -+// 34289 藱 ; -+,0x02,0x7f,0x02,0x00,0x0f,0x48,0x2b,0x3a,0x2b,0x1a,0x2b,0x48,0x11,0x12,0x24,0x48,0x10,0xff,0x90,0x40,0xfe,0x80,0xfc,0x44,0xfc,0x44,0xfc,0xa8,0x32,0x3e,0x21,0x1f -+// 34290 藲 ; -+,0x02,0x7f,0x02,0x0a,0x09,0x09,0x7f,0x09,0x1d,0x1b,0x2b,0x49,0x09,0x09,0x09,0x08,0x20,0xff,0x20,0x00,0xff,0x00,0x3c,0x24,0x3c,0x00,0x77,0x55,0x77,0x00,0xff,0x00 -+// 34291 藳 ; -+,0x02,0x3f,0x02,0x3f,0x02,0x03,0x1f,0x12,0x13,0x10,0x0f,0x00,0x3f,0x03,0x0c,0x30,0x10,0xff,0x90,0xfe,0x10,0xf0,0xfe,0x12,0xf2,0x0e,0xf4,0x80,0xff,0xe0,0x98,0x86 -+// 34292 藴 ; -+,0x04,0x7f,0x04,0x08,0x0a,0x12,0x3c,0x08,0x12,0x3f,0x12,0x00,0x2a,0x2a,0x4b,0x00,0x20,0xff,0x20,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 34293 藵 ; -+,0x02,0x7f,0x02,0x08,0x0c,0x18,0x28,0x09,0x08,0x09,0x08,0x3f,0x06,0x0a,0x37,0x02,0x20,0xff,0x20,0xfc,0x84,0xfc,0x20,0xfe,0x70,0xac,0xa0,0xff,0x24,0x98,0x0e,0x04 -+// 34294 藶 ; -+,0x02,0x7f,0x02,0x3f,0x20,0x2f,0x22,0x2f,0x27,0x2a,0x32,0x20,0x22,0x22,0x3f,0x40,0x20,0xff,0x20,0xfe,0x06,0x38,0x08,0xbf,0x1c,0xaa,0x4a,0x40,0x7c,0x40,0xff,0x00 -+// 34295 藷 ; -+,0x02,0x7f,0x02,0x12,0x08,0x3f,0x00,0x1e,0x00,0x1e,0x00,0x1e,0x13,0x12,0x1e,0x00,0x20,0xff,0x20,0x20,0x14,0x7e,0x14,0xff,0x18,0x3e,0x42,0xfe,0x42,0x42,0x7e,0x42 -+// 34296 藸 ; -+,0x02,0x02,0x7f,0x02,0x3f,0x08,0x11,0x2a,0x4c,0x16,0x6d,0x15,0x24,0x44,0x14,0x08,0x20,0x20,0xff,0x20,0x22,0xfe,0x24,0xff,0x10,0x7c,0xc4,0x7c,0x44,0x44,0x7c,0x44 -+// 34297 藹 ; -+,0x02,0x7f,0x02,0x12,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x01,0x3e,0x22,0x22,0x3e,0x00,0x10,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0xff,0x91,0xa9,0xc5,0xf9,0x05,0x02 -+// 34298 藺 ; -+,0x02,0x3f,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x12,0x17,0x1a,0x13,0x12,0x13,0x12,0x13,0x10,0xff,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x42,0xf2,0x42,0xf2,0x42,0xf2,0x4a,0xf4 -+// 34299 藻 ; -+,0x02,0x7f,0x02,0x21,0x11,0x51,0x28,0x2b,0x0a,0x13,0x70,0x17,0x10,0x10,0x11,0x16,0x20,0xff,0x20,0xf8,0x08,0xf8,0x00,0xde,0x52,0xde,0x20,0xff,0x70,0xa8,0x27,0x22 -+// 34300 藼 ; -+,0x02,0x7f,0x02,0x3f,0x20,0x4f,0x00,0x0f,0x00,0x0f,0x09,0x0f,0x01,0x14,0x14,0x23,0x20,0xff,0x20,0xff,0x82,0xf8,0x80,0xf8,0x80,0xfc,0x24,0xfc,0x00,0x94,0x92,0xe2 -+// 34301 藽 ; -+,0x02,0x3f,0x02,0x0a,0x3f,0x11,0x0a,0x3f,0x04,0x04,0x3f,0x04,0x16,0x25,0x55,0x08,0x10,0xff,0x10,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x25,0xa5,0x43,0x80 -+// 34302 藾 ; -+,0x02,0x7f,0x02,0x04,0x3f,0x04,0x1f,0x15,0x15,0x1f,0x04,0x0e,0x15,0x25,0x44,0x04,0x10,0xff,0x10,0x10,0x9f,0x22,0x7e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x14,0x23,0x42 -+// 34303 藿 ; -+,0x02,0x3f,0x02,0x1f,0x00,0x3f,0x28,0x44,0x08,0x1f,0x28,0x4f,0x08,0x0f,0x08,0x0f,0x20,0xff,0x20,0xfe,0x80,0xff,0xa2,0x90,0x40,0xfc,0x40,0xf8,0x40,0xf8,0x40,0xfe -+// 34304 蘀 ; -+,0x02,0x3f,0x02,0x09,0x09,0x7d,0x08,0x09,0x0c,0x1b,0x68,0x09,0x08,0x0b,0x28,0x10,0x20,0xff,0x20,0xfe,0x4a,0xfe,0x20,0xfe,0x20,0xff,0x88,0xfe,0x20,0xff,0x20,0x20 -+// 34305 蘁 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x1e,0x12,0x1e,0x00,0x3f,0x00,0x1e,0x12,0x1e,0x00,0x7f,0x20,0xff,0x20,0xfe,0x80,0xbc,0xa4,0xbc,0x80,0xfe,0x80,0xbc,0xa4,0xbc,0x80,0xff -+// 34306 蘂 ; -+,0x02,0x3f,0x02,0x08,0x0a,0x13,0x08,0x14,0x51,0x5f,0x00,0x7f,0x01,0x02,0x0c,0x30,0x20,0xff,0x20,0x8a,0x49,0xf8,0x00,0x48,0x55,0x1f,0x80,0xff,0xa0,0x98,0x87,0x82 -+// 34307 蘃 ; -+,0x02,0x3f,0x02,0x0a,0x08,0x3f,0x04,0x17,0x14,0x3f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x20,0xff,0xa0,0xf8,0x80,0xff,0x08,0xaf,0x28,0xff,0x80,0xff,0xc0,0xb0,0x8c,0x83 -+// 34308 蘄 ; -+,0x02,0x7f,0x02,0x3b,0x2a,0x3b,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x20,0xff,0x20,0x87,0xb8,0xa0,0x20,0xbf,0xa4,0xa4,0xa4,0xa4,0x24,0xa4,0x44,0x84 -+// 34309 蘅 ; -+,0x02,0x7f,0x12,0x1b,0x12,0x2b,0x0e,0x1b,0x32,0x53,0x10,0x17,0x10,0x11,0x12,0x14,0x20,0xff,0x20,0xe0,0x4f,0xe0,0xa0,0xff,0xa4,0xe4,0x84,0xf4,0x84,0x44,0x24,0x2c -+// 34310 蘆 ; -+,0x04,0x7f,0x05,0x01,0x01,0x1f,0x10,0x17,0x10,0x17,0x14,0x17,0x14,0x2f,0x2a,0x5f,0x20,0xff,0x20,0xfc,0x00,0xfe,0x84,0xf0,0x88,0xf0,0x90,0xf0,0x90,0xf8,0x28,0xff -+// 34311 蘇 ; -+,0x02,0x7f,0x02,0x12,0x1f,0x12,0x3f,0x55,0x1f,0x15,0x1f,0x00,0x2a,0x2a,0x4a,0x00,0x20,0xff,0x20,0x20,0x0e,0x70,0x10,0x7e,0x10,0x38,0x34,0x53,0x52,0x90,0x10,0x10 -+// 34312 蘈 ; -+,0x02,0x3f,0x02,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x64,0x1e,0x12,0x12,0x23,0x22,0x40,0x20,0xff,0x20,0x7f,0x08,0x3e,0xa2,0x3e,0x22,0xbe,0x22,0x3e,0x94,0x22,0x23,0x42 -+// 34313 蘉 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x3f,0x28,0x4d,0x08,0x17,0x34,0x51,0x10,0x10,0x11,0x16,0x20,0xff,0x20,0xf8,0x48,0xff,0x0a,0xf8,0x08,0xff,0x02,0xfc,0x88,0x70,0x8c,0x03 -+// 34314 蘊 ; -+,0x02,0x7f,0x02,0x12,0x18,0x10,0x22,0x7c,0x08,0x12,0x3e,0x00,0x2a,0x2a,0x4b,0x00,0x20,0xff,0x20,0x20,0xfe,0x92,0xaa,0xc6,0xfe,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 34315 蘋 ; -+,0x02,0x7f,0x02,0x02,0x04,0x17,0x14,0x7f,0x04,0x25,0x35,0x25,0x46,0x04,0x18,0x60,0x20,0xff,0x20,0x00,0x7e,0x90,0x7e,0xc2,0x7e,0x42,0xfe,0x42,0x7e,0x24,0x43,0x82 -+// 34316 蘌 ; -+,0x04,0x7f,0x0d,0x11,0x26,0x0b,0x18,0x2a,0x0a,0x0b,0x1f,0x00,0x7f,0x04,0x08,0x11,0x10,0xff,0x10,0xc0,0x9e,0xf2,0x92,0x92,0xf6,0x10,0xfc,0x00,0xff,0x90,0x88,0x84 -+// 34317 蘍 ; -+,0x02,0x3f,0x02,0x3f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x7f,0x2a,0x4a,0x20,0xff,0x20,0x90,0x10,0x90,0x3e,0x92,0x92,0x92,0x12,0x92,0x12,0xd2,0x9a,0xa4 -+// 34318 蘎 ; -+,0x02,0x3f,0x02,0x1f,0x00,0x3f,0x20,0x4e,0x00,0x1e,0x12,0x1e,0x12,0x1e,0x22,0x44,0x20,0xff,0x20,0xfe,0x80,0xff,0x82,0xb8,0x00,0x7c,0x54,0x54,0x7c,0x42,0x42,0x3c -+// 34319 蘏 ; -+,0x02,0x7f,0x02,0x10,0x12,0x1d,0x11,0x0f,0x00,0x3f,0x00,0x3f,0x16,0x25,0x55,0x08,0x20,0xff,0x20,0xfe,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x43,0x82 -+// 34320 蘐 ; -+,0x02,0x7f,0x02,0x10,0x7d,0x00,0x3c,0x01,0x3c,0x03,0x3c,0x24,0x24,0x3c,0x25,0x02,0x20,0xff,0x20,0x1e,0xf2,0xa2,0x54,0xfe,0x40,0xff,0x40,0x7c,0xa4,0x98,0x24,0x42 -+// 34321 蘑 ; -+,0x02,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x17,0x1a,0x12,0x1f,0x11,0x13,0x26,0x2b,0x52,0x20,0x20,0xff,0xa0,0xfe,0x10,0xfe,0x38,0xd6,0x52,0xff,0x00,0xfc,0x04,0xfc,0x04 -+// 34322 蘒 ; -+,0x04,0x7f,0x04,0x04,0x3e,0x09,0x0b,0x7f,0x19,0x1d,0x2b,0x29,0x49,0x09,0x08,0x08,0x20,0xff,0xa0,0xfc,0x88,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xfc,0x24,0xfd,0x21,0x1f -+// 34323 蘓 ; -+,0x02,0x7f,0x02,0x06,0x38,0x08,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x20,0xff,0x20,0x40,0x7c,0x88,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x52,0x29,0x29 -+// 34324 蘔 ; -+,0x02,0x3f,0x02,0x22,0x25,0x38,0x22,0x1e,0x00,0x3e,0x08,0x7f,0x1c,0x2a,0x49,0x08,0x20,0xff,0x20,0x20,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x43,0x82 -+// 34325 蘕 ; -+,0x02,0x7f,0x02,0x08,0x0d,0x08,0x12,0x3d,0x08,0x12,0x3f,0x01,0x2a,0x2a,0x49,0x02,0x20,0xff,0x20,0x20,0x3e,0xa2,0x5c,0xab,0xfd,0x88,0xbe,0x88,0xff,0x88,0x48,0x3f -+// 34326 蘖 ; -+,0x02,0x7f,0x0a,0x3e,0x22,0x3e,0x20,0x3e,0x22,0x3e,0x00,0x7f,0x01,0x06,0x18,0x60,0x20,0xff,0x20,0xfe,0x48,0xfe,0x10,0xfe,0x10,0x90,0x90,0xff,0xe0,0x98,0x87,0x82 -+// 34327 蘗 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x10,0x1f,0x29,0x4f,0x00,0x7f,0x03,0x04,0x18,0x60,0x20,0xff,0x30,0x08,0x7e,0x24,0xff,0x10,0x7e,0x10,0x90,0xff,0xa0,0x98,0x87,0x82 -+// 34328 蘘 ; -+,0x02,0x7f,0x02,0x7f,0x09,0x0f,0x02,0x1f,0x02,0x1f,0x02,0x3f,0x06,0x1a,0x63,0x02,0x20,0xff,0xa0,0xff,0x48,0x78,0x10,0xfc,0x10,0xfc,0x10,0xfe,0x24,0x98,0x0e,0x04 -+// 34329 蘙 ; -+,0x02,0x7f,0x02,0x3f,0x28,0x3f,0x24,0x3f,0x2a,0x3f,0x11,0x09,0x05,0x09,0x15,0x02,0x20,0xff,0x20,0xfc,0x44,0x7f,0xa8,0x10,0x6e,0xfc,0x44,0x24,0x14,0x64,0x14,0x08 -+// 34330 蘚 ; -+,0x02,0x02,0x7f,0x02,0x12,0x1f,0x22,0x7f,0x25,0x3f,0x25,0x3f,0x00,0x2a,0x2a,0x4a,0x20,0x20,0xff,0x20,0x42,0x24,0xff,0x10,0x7e,0x10,0x10,0xff,0x10,0x90,0x90,0x90 -+// 34331 蘛 ; -+,0x02,0x3f,0x02,0x12,0x7f,0x12,0x1e,0x12,0x1e,0x12,0x7f,0x2a,0x29,0x31,0x3f,0x00,0x20,0xff,0x20,0x08,0xff,0x24,0x7e,0x02,0x7c,0x44,0xfc,0x44,0x7c,0x44,0x54,0x48 -+// 34332 蘜 ; -+,0x02,0x02,0x7f,0x12,0x3f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x04,0x04,0x20,0x20,0xff,0x20,0x40,0x7f,0x91,0x55,0x39,0xfd,0x39,0x55,0x55,0x91,0x05,0x02 -+// 34333 蘝 ; -+,0x02,0x7f,0x02,0x04,0x0a,0x11,0x3f,0x40,0x3b,0x2a,0x3b,0x11,0x11,0x12,0x2c,0x44,0x20,0xff,0x20,0x10,0x10,0x1f,0xa2,0x28,0xc8,0x88,0x88,0x14,0x14,0xa2,0xc3,0x82 -+// 34334 蘞 ; -+,0x02,0x7f,0x02,0x04,0x0a,0x11,0x60,0x3b,0x2a,0x2a,0x3b,0x11,0x11,0x2a,0x2c,0x48,0x20,0xff,0x20,0x10,0x10,0x9f,0xb2,0x92,0x92,0x94,0x94,0x08,0x14,0x96,0xa3,0x42 -+// 34335 蘟 ; -+,0x02,0x7f,0x02,0x01,0x3e,0x25,0x25,0x28,0x25,0x22,0x23,0x3c,0x2a,0x22,0x24,0x20,0x20,0xff,0x20,0xfe,0xa4,0x28,0xfc,0x04,0xfc,0x04,0xfc,0x20,0x92,0x85,0x7d,0x00 -+// 34336 蘠 ; -+,0x02,0x7f,0x02,0x04,0x25,0x25,0x24,0x3f,0x04,0x7d,0x25,0x25,0x25,0x25,0x25,0x45,0x20,0xff,0x20,0x20,0xfe,0x24,0xa8,0xff,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0xfe -+// 34337 蘡 ; -+,0x02,0x7f,0x02,0x1f,0x11,0x1f,0x11,0x1f,0x0a,0x11,0x7f,0x04,0x06,0x01,0x06,0x38,0x20,0xff,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x28,0x44,0xfe,0x10,0x60,0x80,0x70,0x0e -+// 34338 蘢 ; -+,0x02,0x7f,0x02,0x08,0x7f,0x22,0x14,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x26,0x20,0xff,0x20,0x40,0x7e,0x40,0x7c,0x04,0x7c,0x40,0x7c,0x40,0x7e,0x40,0x41,0x3f -+// 34339 蘣 ; -+,0x02,0x7f,0x02,0x12,0x7f,0x12,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x12,0x31,0x41,0x20,0xff,0x20,0x10,0x88,0x7f,0x88,0x08,0x88,0xbe,0x88,0x88,0x88,0x08,0xff,0x00 -+// 34340 蘤 ; -+,0x02,0x7f,0x02,0x0b,0x10,0x3f,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x01,0x02,0x04,0x20,0xff,0x20,0x40,0xc0,0xfc,0x44,0x7e,0x42,0x42,0x7f,0x81,0xd5,0x55,0x95,0x02 -+// 34341 蘥 ; -+,0x02,0x7f,0x02,0x01,0x06,0x18,0x7d,0x15,0x1d,0x00,0x1f,0x12,0x1f,0x12,0x12,0x10,0x20,0xff,0xa0,0x40,0x30,0x0e,0xdc,0x54,0xdc,0x00,0xfc,0x24,0xfc,0x24,0x24,0x0c -+// 34342 蘦 ; -+,0x02,0x7f,0x02,0x1f,0x00,0x3f,0x20,0x4e,0x00,0x00,0x3d,0x25,0x25,0x3d,0x25,0x00,0x20,0xff,0x20,0xfc,0x80,0xff,0x82,0xb8,0x80,0x00,0xde,0x52,0x52,0xde,0x52,0x00 -+// 34343 蘧 ; -+,0x02,0x3f,0x02,0x20,0x10,0x07,0x74,0x15,0x14,0x17,0x14,0x15,0x16,0x10,0x2b,0x47,0x10,0xff,0x50,0x78,0x40,0xff,0x42,0xf0,0x44,0xf8,0x84,0x68,0x70,0xa8,0x24,0xff -+// 34344 蘨 ; -+,0x02,0x7f,0x02,0x07,0x78,0x29,0x4a,0x20,0x3f,0x24,0x7f,0x04,0x25,0x25,0x3f,0x00,0x20,0xff,0x20,0x2e,0xf0,0x10,0x24,0x78,0x12,0x7f,0x0a,0x28,0x2a,0x49,0xa8,0x10 -+// 34345 蘩 ; -+,0x02,0x7f,0x12,0x1f,0x35,0x5f,0x15,0x1f,0x01,0x07,0x02,0x0f,0x04,0x06,0x18,0x01,0x20,0xff,0x28,0x90,0x3e,0xd4,0x08,0xaf,0x32,0xc0,0x08,0xfc,0xa4,0x90,0x88,0x00 -+// 34346 蘪 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x14,0x16,0x1f,0x21,0x22,0x4c,0x20,0xff,0xa0,0xfe,0x20,0xfc,0x24,0xfc,0x20,0x38,0xa4,0x98,0xfc,0xe0,0x98,0x86 -+// 34347 蘫 ; -+,0x02,0x7f,0x02,0x20,0x1b,0x12,0x43,0x32,0x23,0x0a,0x0b,0x70,0x11,0x11,0x17,0x10,0x20,0xff,0x20,0x08,0xe8,0x8f,0xc8,0x4a,0xd1,0x80,0xe0,0x00,0xfe,0x4a,0xff,0x00 -+// 34348 蘬 ; -+,0x02,0x7f,0x12,0x3e,0x22,0x3e,0x20,0x3e,0x22,0x3f,0x08,0x2f,0x28,0x2f,0x78,0x00,0x20,0xff,0x20,0xfe,0x02,0x7e,0x02,0xfe,0x10,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10 -+// 34349 蘭 ; -+,0x02,0x7f,0x02,0x3e,0x22,0x3e,0x22,0x3e,0x2f,0x20,0x2f,0x2a,0x2f,0x21,0x22,0x2c,0x20,0xff,0x20,0x3e,0x22,0x3e,0x22,0xbe,0xfa,0x82,0xfa,0xaa,0xfa,0xc2,0xba,0x96 -+// 34350 蘮 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x3f,0x2a,0x2a,0x25,0x28,0x32,0x2a,0x2a,0x25,0x48,0x50,0x20,0xff,0x20,0xfc,0x24,0xff,0x82,0x82,0x0a,0xca,0x8a,0x4a,0x8a,0x02,0xca,0x84 -+// 34351 蘯 ; -+,0x02,0x7f,0x02,0x23,0x19,0x49,0x21,0x2b,0x0a,0x74,0x13,0x10,0x0f,0x09,0x09,0x3f,0x20,0xfe,0x20,0xf8,0x48,0x28,0xfe,0x2a,0x4a,0x92,0x2a,0xc4,0xfc,0x24,0x24,0xff -+// 34352 蘰 ; -+,0x02,0x7f,0x02,0x0a,0x08,0x12,0x3c,0x08,0x15,0x3f,0x05,0x2a,0x2a,0x2a,0x40,0x03,0x20,0xff,0x20,0xfc,0xa4,0x94,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfc,0x48,0x30,0xcf -+// 34353 蘱 ; -+,0x02,0x7f,0x02,0x08,0x49,0x2a,0x7f,0x1c,0x2b,0x4a,0x08,0x7f,0x08,0x14,0x23,0x41,0x20,0xff,0x20,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x14,0x22,0x43,0x82 -+// 34354 蘲 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x00,0x1f,0x00,0x7f,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xff,0x49,0x7f,0x49,0x7f,0x80,0xfc,0x80,0xff -+// 34355 蘳 ; -+,0x02,0x7f,0x02,0x12,0x12,0x7f,0x12,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x22,0x41,0x20,0xff,0x20,0x08,0x08,0xff,0x08,0x88,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x7f -+// 34356 蘴 ; -+,0x02,0x7f,0x02,0x04,0x2e,0x24,0x2e,0x24,0x3f,0x00,0x0f,0x08,0x0f,0x04,0x02,0x7f,0x20,0xff,0x20,0x90,0xba,0x92,0xba,0x92,0xfe,0x00,0xf8,0x08,0xf8,0x10,0x20,0xff -+// 34357 蘵 ; -+,0x02,0x7f,0x02,0x01,0x7f,0x26,0x3d,0x27,0x24,0x3d,0x25,0x27,0x7d,0x05,0x04,0x04,0x20,0xff,0x20,0x08,0xec,0x2a,0x48,0xff,0x08,0xea,0x2a,0xec,0x2d,0xf5,0x25,0x42 -+// 34358 蘶 ; -+,0x02,0x7f,0x02,0x07,0x38,0x08,0x7e,0x1c,0x2a,0x50,0x7e,0x24,0x24,0x18,0x25,0x42,0x20,0xff,0x20,0x10,0x20,0xfe,0x92,0xfe,0x92,0xfe,0x54,0x5a,0xdf,0x91,0x1f,0x00 -+// 34359 蘷 ; -+,0x02,0x7f,0x02,0x7f,0x09,0x2f,0x2b,0x2a,0x2f,0x72,0x03,0x06,0x09,0x00,0x07,0x38,0x20,0xff,0x20,0xff,0x12,0xde,0x50,0xd1,0xcf,0x00,0xf8,0x10,0x20,0xc0,0x38,0x07 -+// 34360 蘸 ; -+,0x02,0x7f,0x02,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x00,0x20,0xff,0x20,0x50,0x48,0x7f,0xc8,0x7f,0x48,0x7e,0x48,0x7f,0x00,0x55,0x55,0x95 -+// 34361 蘹 ; -+,0x02,0x7f,0x02,0x13,0x10,0x19,0x55,0x55,0x50,0x10,0x11,0x10,0x10,0x13,0x10,0x10,0x10,0xff,0x50,0xfe,0x00,0xfe,0x4a,0xfe,0xa8,0x70,0xac,0x44,0xa8,0x98,0xc7,0x82 -+// 34362 蘺 ; -+,0x02,0x7f,0x0a,0x3f,0x09,0x26,0x29,0x3f,0x04,0x3f,0x24,0x2a,0x3f,0x22,0x21,0x00,0x10,0xff,0x10,0xa8,0x3f,0xa8,0xe8,0xbf,0x28,0xa8,0xbf,0xa8,0xa8,0xbf,0x20,0x00 -+// 34363 蘻 ; -+,0x02,0x7f,0x0a,0x7f,0x08,0x3f,0x29,0x3f,0x29,0x3f,0x09,0x0b,0x0f,0x04,0x08,0x11,0x20,0xff,0x20,0xbc,0x24,0x43,0xbc,0x28,0x90,0x2c,0xc2,0x08,0xfc,0x94,0x88,0x88 -+// 34364 蘼 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x17,0x1a,0x11,0x1f,0x11,0x17,0x11,0x2f,0x21,0x41,0x10,0xff,0x90,0xfe,0x10,0x7e,0x38,0xd4,0x22,0x3e,0x20,0x3c,0x20,0x3e,0x20,0x20 -+// 34365 蘽 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x3f,0x2a,0x3e,0x2a,0x3f,0x01,0x02,0x0c,0x30,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xfe,0x2a,0x3e,0xaa,0xff,0xa0,0x90,0x8c,0x83 -+// 34366 蘾 ; -+,0x02,0x7f,0x02,0x00,0x13,0x10,0x7d,0x11,0x11,0x10,0x11,0x1c,0x71,0x22,0x0c,0x00,0x10,0xff,0x10,0x20,0xff,0x00,0xfe,0x4a,0xfe,0x68,0xa2,0x54,0x88,0xa4,0xc3,0x80 -+// 34367 蘿 ; -+,0x02,0x7f,0x02,0x1f,0x12,0x1f,0x08,0x12,0x3c,0x09,0x3f,0x02,0x28,0x2a,0x4a,0x00,0x20,0xff,0x20,0xfc,0x24,0xfc,0x50,0x48,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00 -+// 34368 虀 ; -+,0x02,0x3f,0x02,0x7f,0x01,0x7e,0x12,0x12,0x25,0x5f,0x01,0x1f,0x01,0x1f,0x01,0x7f,0x20,0xff,0xa0,0xff,0x46,0x9c,0x94,0x93,0x20,0x3e,0x20,0x3c,0x20,0x3e,0x20,0xff -+// 34369 虁 ; -+,0x02,0x7f,0x02,0x7f,0x08,0x09,0x2f,0x29,0x2f,0x75,0x0d,0x33,0x05,0x00,0x07,0x38,0x10,0xff,0x90,0xff,0x8e,0xea,0x2e,0xe9,0x2f,0xe4,0x03,0xfa,0x20,0xc0,0x38,0x07 -+// 34370 虂 ; -+,0x02,0x7f,0x02,0x3f,0x00,0x7f,0x50,0x08,0x3e,0x22,0x3e,0x08,0x2e,0x29,0x2f,0x78,0x20,0xff,0x20,0xfe,0x80,0xff,0xa2,0x90,0x40,0x7e,0xa4,0x18,0x24,0xfe,0x45,0x7c -+// 34371 虃 ; -+,0x04,0x7f,0x04,0x22,0x12,0x05,0x4f,0x22,0x2e,0x12,0x1e,0x62,0x22,0x2f,0x20,0x20,0x20,0xff,0x20,0x90,0x94,0x52,0xff,0x90,0xf2,0x8a,0xe4,0x88,0xe9,0x15,0x23,0x40 -+// 34372 虄 ; -+,0x02,0x7f,0x02,0x0a,0x08,0x3e,0x2b,0x2a,0x2a,0x3f,0x08,0x0a,0x0f,0x7a,0x01,0x00,0x20,0xff,0x20,0x40,0x7c,0xc4,0x38,0x44,0xbb,0x50,0x7e,0x90,0x7c,0x10,0xff,0x00 -+// 34373 虅 ; -+,0x02,0x3f,0x02,0x00,0x3c,0x25,0x3c,0x27,0x24,0x3f,0x24,0x24,0x24,0x24,0x24,0x4d,0x20,0xff,0x20,0x92,0x54,0xfe,0x20,0xfe,0x84,0xfb,0xa2,0xf8,0xa0,0xfe,0xa2,0x26 -+// 34374 虆 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x3f,0x29,0x3f,0x01,0x07,0x01,0x0f,0x02,0x0c,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xfe,0x4a,0x7e,0x20,0xf0,0x08,0xfc,0xa8,0x90 -+// 34375 虇 ; -+,0x02,0x7f,0x02,0x3d,0x04,0x05,0x3d,0x21,0x21,0x39,0x0b,0x0d,0x09,0x09,0x29,0x11,0x10,0xff,0x54,0xfe,0x44,0xde,0x52,0xde,0x20,0xfe,0x10,0xfe,0x10,0xff,0x10,0xff -+// 34376 虈 ; -+,0x02,0x7f,0x02,0x07,0x78,0x4b,0x4a,0x7b,0x02,0x7b,0x4a,0x4b,0x49,0x79,0x4a,0x04,0x20,0xff,0x20,0xf0,0x8f,0xe9,0x29,0xef,0x20,0xef,0x29,0xe9,0x49,0x2f,0x39,0x20 -+// 34377 虉 ; -+,0x02,0x7f,0x02,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x63,0x55,0x7f,0x49,0x49,0x43,0x20,0xff,0x20,0x10,0x7c,0x44,0x44,0x7c,0x40,0x7f,0x40,0x7e,0x02,0x52,0x92,0x06 -+// 34378 虊 ; -+,0x02,0x7f,0x02,0x0f,0x10,0x25,0x78,0x15,0x3f,0x2b,0x48,0x3f,0x02,0x04,0x08,0x30,0x20,0xff,0xa0,0xf8,0x0a,0xee,0x05,0xef,0x21,0xea,0x0a,0xff,0xa0,0x90,0x8e,0x84 -+// 34379 虋 ; -+,0x04,0x7f,0x04,0x1b,0x12,0x1e,0x12,0x3f,0x42,0x0f,0x0a,0x0c,0x0f,0x12,0x62,0x0c,0x20,0xfe,0x20,0xdc,0x44,0x5c,0x44,0xff,0x42,0xf8,0x48,0x38,0xf8,0x17,0x12,0x70 -+// 34380 虌 ; -+,0x02,0x7f,0x4a,0x2a,0x7f,0x49,0x5d,0x6b,0x49,0x5f,0x11,0x1f,0x11,0x1f,0x01,0x01,0x20,0xff,0x20,0x3e,0x24,0x54,0x88,0x17,0x22,0xfc,0x44,0x7c,0x44,0x7d,0x41,0xff -+// 34381 虍 ; -+,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x11,0x16,0x10,0x20,0x20,0x40,0x80,0x80,0xf8,0x80,0xff,0x82,0x80,0x90,0xa0,0xc0,0x80,0x84,0x84,0x86,0x7c,0x00 -+// 34382 虎 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x13,0x12,0x12,0x12,0x22,0x24,0x48,0x80,0xf8,0x80,0xfe,0x84,0xf0,0x84,0xfc,0x00,0xe0,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 34383 虏 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x10,0x10,0x17,0x10,0x10,0x11,0x21,0x22,0x44,0x80,0xfc,0x80,0xff,0x82,0xf8,0x82,0x7e,0x80,0xfc,0x84,0x84,0x04,0x04,0x14,0x08 -+// 34384 虐 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x13,0x12,0x1f,0x12,0x22,0x23,0x40,0x80,0xfc,0x80,0xff,0x82,0xf0,0x88,0xf8,0x00,0xfe,0x00,0xff,0x00,0x00,0xfe,0x00 -+// 34385 虑 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x10,0x11,0x15,0x15,0x29,0x20,0x40,0x80,0xfc,0x80,0xff,0x82,0xf8,0x80,0x84,0x7c,0x00,0x44,0x2a,0x29,0x0d,0xf8,0x00 -+// 34386 虒 ; -+,0x00,0x1f,0x10,0x10,0x17,0x14,0x14,0x15,0x14,0x14,0x14,0x14,0x14,0x29,0x29,0x52,0x7e,0xc0,0x7c,0x40,0xff,0x42,0x70,0xc4,0x7c,0x00,0xf0,0x92,0x92,0x13,0x0e,0x00 -+// 34387 虓 ; -+,0x10,0x10,0x10,0x11,0x7d,0x15,0x15,0x15,0x15,0x15,0x17,0x25,0x22,0x42,0x04,0x09,0x20,0x3e,0x20,0xff,0x22,0xf8,0x22,0x1e,0x00,0x78,0x48,0x48,0x49,0x49,0x87,0x00 -+// 34388 虔 ; -+,0x00,0x00,0x00,0x1f,0x10,0x1f,0x10,0x10,0x10,0x1f,0x11,0x11,0x10,0x20,0x21,0x4e,0x80,0xfc,0x80,0xff,0x82,0xf8,0x84,0x7c,0x40,0xff,0x10,0x10,0xa0,0x40,0xb0,0x0e -+// 34389 處 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x14,0x14,0x17,0x14,0x1a,0x11,0x22,0x24,0x48,0x80,0xfc,0x80,0xff,0x82,0xf4,0x86,0x7c,0x00,0xbc,0xa4,0xa5,0x27,0xc0,0x7f,0x00 -+// 34390 虖 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x17,0x12,0x11,0x1f,0x20,0x21,0x40,0x80,0xfc,0x80,0xff,0x82,0xf0,0x84,0xfc,0x38,0xc0,0x48,0x50,0xfe,0x40,0x40,0x80 -+// 34391 虗 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x17,0x10,0x10,0x13,0x12,0x13,0x22,0x22,0x4f,0x00,0x80,0xfc,0x80,0xff,0x82,0xf0,0x84,0xfc,0x00,0xfc,0x00,0xfc,0x20,0x20,0xfe,0x00 -+// 34392 虘 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x10,0x10,0x17,0x14,0x17,0x14,0x27,0x24,0x5f,0x80,0xfc,0x80,0xff,0x82,0xf0,0x84,0x7c,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xff -+// 34393 虙 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x12,0x2a,0x2a,0x2b,0x55,0x00,0x80,0xfc,0x80,0xff,0x82,0xf8,0x82,0x7e,0x00,0x88,0x54,0x22,0xc5,0x04,0xfc,0x00 -+// 34394 虚 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x11,0x19,0x15,0x25,0x21,0x5f,0x00,0x80,0xfc,0x80,0xff,0x82,0xf8,0x82,0xfe,0x00,0x20,0x24,0x26,0x28,0x20,0xff,0x00 -+// 34395 虛 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x11,0x15,0x15,0x27,0x21,0x5f,0x00,0x80,0xf8,0x80,0xff,0x82,0xf0,0x84,0xfc,0x00,0x20,0x24,0x24,0x3c,0x20,0xff,0x00 -+// 34396 虜 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x10,0x13,0x12,0x13,0x12,0x17,0x20,0x21,0x46,0x80,0xfc,0x80,0xff,0x82,0xf0,0x84,0x7c,0xf8,0x48,0xf8,0x48,0xfc,0x84,0x14,0x08 -+// 34397 虝 ; -+,0x04,0x07,0x04,0x3f,0x24,0x27,0x3c,0x27,0x20,0x2f,0x29,0x29,0x29,0x29,0x50,0x50,0x20,0xb0,0x20,0xbf,0xb5,0x55,0x15,0xa5,0x29,0x49,0x91,0x61,0x0a,0x05,0xff,0x00 -+// 34398 虞 ; -+,0x01,0x01,0x01,0x1f,0x11,0x17,0x11,0x10,0x17,0x14,0x17,0x10,0x1f,0x20,0x21,0x46,0x00,0xf8,0x00,0xff,0x02,0xe0,0x08,0xf0,0xf8,0x08,0xf8,0x80,0xfc,0xa0,0x18,0x06 -+// 34399 號 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x01,0x7d,0x11,0x21,0x3d,0x05,0x05,0x05,0x15,0x0a,0x20,0x3e,0x20,0xff,0x22,0x38,0xe2,0x3e,0x00,0x78,0x48,0x48,0x49,0x49,0x87,0x00 -+// 34400 虠 ; -+,0x00,0x10,0x08,0x7f,0x14,0x1a,0x23,0x52,0x14,0x08,0x08,0x14,0x16,0x25,0x41,0x02,0x10,0x1e,0x10,0xff,0x92,0xfc,0x92,0x8e,0x80,0xbc,0xa4,0xa4,0xa4,0x25,0x47,0x80 -+// 34401 虡 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x10,0x11,0x19,0x15,0x1f,0x11,0x23,0x24,0x48,0x80,0xfc,0x80,0xff,0x82,0xf8,0x84,0x7c,0x20,0x24,0x28,0xff,0x10,0x0c,0x06,0x04 -+// 34402 虢 ; -+,0x00,0x07,0x78,0x01,0x52,0x2a,0x28,0x04,0x7f,0x04,0x24,0x14,0x14,0x05,0x15,0x0a,0x10,0x1f,0x10,0xff,0x92,0x9c,0xf2,0x9e,0x80,0xbc,0xa4,0xa4,0xa5,0x45,0x47,0x80 -+// 34403 虣 ; -+,0x04,0x06,0x35,0x04,0x7f,0x04,0x14,0x54,0x5c,0x54,0x52,0x5a,0x61,0x02,0x04,0x01,0x10,0x1c,0x10,0xff,0x92,0xfc,0x90,0x8e,0x80,0xb8,0xa8,0xa8,0x28,0x49,0x87,0x00 -+// 34404 虤 ; -+,0x08,0x0f,0x08,0x3f,0x29,0x3e,0x29,0x27,0x20,0x2e,0x2a,0x2a,0x2a,0x2b,0x32,0x41,0x10,0x1e,0x10,0xff,0x52,0x7c,0x52,0x4e,0x40,0x5c,0x54,0x54,0x54,0x55,0xa7,0x40 -+// 34405 虥 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x20,0x2e,0x2a,0x2a,0x2a,0x2a,0x29,0x50,0x14,0x92,0x1f,0xf0,0x90,0x09,0x46,0x94,0x12,0x7f,0x10,0x14,0x89,0xb5,0x82,0x00 -+// 34406 虦 ; -+,0x14,0x12,0x1f,0x72,0x0d,0x15,0x63,0x08,0x0a,0x7f,0x0a,0x0c,0x19,0x65,0x02,0x01,0x10,0x1e,0x90,0x7f,0x52,0x5c,0x70,0x52,0x5e,0x40,0x5c,0x54,0x55,0x55,0xa7,0x40 -+// 34407 虧 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x29,0x2f,0x39,0x2f,0x29,0x2f,0x29,0x4f,0x00,0x9e,0x00,0xc0,0x3f,0x08,0x88,0x90,0x1e,0xc2,0x02,0xc2,0x02,0xc2,0x0a,0xc4 -+// 34408 虨 ; -+,0x04,0x07,0x04,0x3f,0x24,0x2f,0x24,0x23,0x24,0x3f,0x2e,0x2d,0x35,0x36,0x24,0x44,0x00,0xc4,0x06,0xe8,0x54,0xa6,0x44,0xc8,0x92,0xe3,0xc6,0xa4,0xa8,0x90,0xa0,0xc0 -+// 34409 虩 ; -+,0x08,0x0c,0x2b,0x2a,0x48,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x2c,0x2a,0x4a,0x09,0x1a,0x10,0x1e,0x10,0xff,0x92,0x9c,0xf2,0x93,0x8e,0x80,0xbc,0xa4,0xa4,0xa5,0x47,0x80 -+// 34410 虪 ; -+,0x08,0x0e,0x08,0x3f,0x29,0x3f,0x29,0x2f,0x21,0x39,0x29,0x2b,0x2d,0x29,0x41,0x00,0x90,0xde,0xb4,0x88,0x57,0x62,0x40,0x5f,0x55,0x5f,0x44,0x1f,0x04,0x3f,0x15,0x15 -+// 34411 虫 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x00,0x3f,0x00,0x80,0x80,0x80,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x80,0x88,0x84,0xfe,0x84,0x00 -+// 34412 虬 ; -+,0x04,0x04,0x04,0x04,0x3f,0x24,0x24,0x24,0x3f,0x24,0x04,0x05,0x07,0x79,0x00,0x00,0x20,0x20,0x20,0x20,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x20,0x22,0xa2,0x23,0x1e,0x00 -+// 34413 虭 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x48,0x0a,0x09,0x0f,0x71,0x20,0x01,0x00,0x00,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xc2,0x42,0x8a,0x04 -+// 34414 虮 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0a,0x0f,0x7a,0x21,0x02,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00,0x00 -+// 34415 虯 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x49,0x08,0x0a,0x09,0x0f,0x79,0x00,0x02,0x02,0x02,0x22,0x22,0x22,0x22,0x22,0x26,0x3a,0x22,0x02,0x02,0x82,0x02,0x02 -+// 34416 虰 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x48,0x0a,0x09,0x0f,0x79,0x20,0x00,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x28,0x10 -+// 34417 虱 ; -+,0x00,0x3f,0x00,0x01,0x3e,0x02,0x1f,0x12,0x12,0x1f,0x12,0x02,0x03,0x3e,0x10,0x00,0x00,0xf8,0x08,0xe8,0x08,0x08,0xc8,0x48,0x48,0xc8,0x08,0x45,0xe5,0x33,0x21,0x00 -+// 34418 虲 ; -+,0x04,0x04,0x04,0x3f,0x24,0x24,0x24,0x24,0x3f,0x24,0x05,0x04,0x07,0x7c,0x00,0x00,0x10,0x10,0x10,0x90,0x90,0x98,0x94,0x92,0x93,0x12,0x10,0x90,0xd0,0x90,0x10,0x10 -+// 34419 虳 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0a,0x09,0x0f,0x79,0x00,0x00,0x20,0x30,0x20,0x3e,0x22,0x42,0x42,0xa2,0x12,0x1a,0x12,0x02,0x82,0x12,0x0a,0x04 -+// 34420 虴 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2b,0x3e,0x08,0x0a,0x09,0x0f,0x79,0x00,0x00,0x00,0x1c,0xe0,0x20,0x20,0x20,0x2f,0xf0,0x20,0x20,0x20,0x22,0xa2,0x23,0x1e,0x00 -+// 34421 虵 ; -+,0x10,0x10,0x10,0x10,0x7e,0x52,0x53,0x52,0x7e,0x52,0x14,0x12,0x1f,0x72,0x00,0x00,0x10,0x10,0x90,0x90,0x9e,0xf2,0x92,0x92,0x92,0x92,0x8a,0x84,0x81,0x81,0x7e,0x00 -+// 34422 虶 ; -+,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x08,0x0a,0x09,0x0f,0x71,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x50,0x20 -+// 34423 虷 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x49,0x08,0x0a,0x09,0x0f,0x79,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x10 -+// 34424 虸 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x48,0x08,0x0a,0x0f,0x79,0x20,0x00,0x00,0xfe,0x04,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 34425 虹 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x49,0x08,0x0a,0x09,0x0f,0x71,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 34426 虺 ; -+,0x00,0x7f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x41,0x00,0x10,0x90,0x10,0xfe,0x92,0x92,0x92,0xfe,0x14,0x12,0x1f,0xe2,0x00,0x01,0xff,0x00 -+// 34427 虻 ; -+,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x08,0x0a,0x09,0x0f,0x79,0x20,0x00,0x20,0x10,0x08,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x7f,0x40,0x00 -+// 34428 虼 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x7a,0x00,0x00,0x40,0x60,0x40,0xff,0x80,0x00,0xfc,0x04,0x08,0x10,0x20,0x40,0x82,0x82,0x7e,0x00 -+// 34429 虽 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x00,0x1f,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x3f,0x00,0xf8,0x08,0x08,0xf8,0x88,0x80,0xfc,0x84,0x84,0xfc,0x80,0x84,0x82,0xff,0x82,0x00 -+// 34430 虾 ; -+,0x08,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0a,0x09,0x0f,0x71,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x18,0x14,0x16,0x13,0x12,0x10,0x10,0x90,0x10,0x10,0x10 -+// 34431 虿 ; -+,0x00,0x3f,0x02,0x03,0x04,0x08,0x10,0x2f,0x08,0x08,0x0f,0x08,0x00,0x00,0x3f,0x00,0x00,0xff,0x00,0xf8,0x08,0x28,0x90,0xf8,0x88,0x88,0xf8,0x88,0x84,0xfe,0x84,0x00 -+// 34432 蚀 ; -+,0x00,0x10,0x10,0x10,0x1e,0x22,0x24,0x50,0x10,0x10,0x10,0x12,0x14,0x18,0x11,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x10,0x14,0x12,0x1f,0xe2,0x00 -+// 34433 蚁 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x40,0x24,0xb4,0xa4,0x84,0x84,0x88,0x48,0x48,0x50,0x20,0x20,0x50,0x8c,0x07,0x02 -+// 34434 蚂 ; -+,0x08,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0d,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfc,0x04,0x44,0x44,0x48,0x88,0xfe,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04,0x00 -+// 34435 蚃 ; -+,0x02,0x04,0x0f,0x00,0x03,0x07,0x00,0x07,0x78,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x00,0x00,0x10,0xe0,0x88,0x10,0xe0,0x40,0x80,0x80,0xf8,0x88,0xf8,0x80,0x88,0xfe,0x04 -+// 34436 蚄 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x48,0x0c,0x0a,0x0f,0x7a,0x01,0x02,0x40,0x30,0x20,0xff,0x20,0x20,0x20,0x3e,0x22,0x42,0x42,0x42,0x82,0x82,0x0a,0x04 -+// 34437 蚅 ; -+,0x08,0x08,0x08,0x7e,0x4a,0x4a,0x4a,0x4a,0x7e,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x00,0xff,0x80,0x80,0xbe,0xa2,0xa2,0xa2,0xae,0xa4,0xa0,0xa0,0xa1,0xa1,0x1f,0x00 -+// 34438 蚆 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 34439 蚇 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x49,0x08,0x0a,0x0f,0x7a,0x21,0x02,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x50,0x50,0x48,0x48,0x84,0x84,0x03,0x02,0x00 -+// 34440 蚈 ; -+,0x08,0x09,0x08,0x08,0x7e,0x4a,0x4b,0x4a,0x7e,0x48,0x0c,0x0a,0x0f,0x72,0x02,0x01,0x00,0xff,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 34441 蚉 ; -+,0x00,0x7f,0x04,0x02,0x01,0x02,0x0c,0x70,0x0f,0x08,0x0f,0x08,0x00,0x00,0x3f,0x00,0x80,0xfe,0x10,0x60,0x80,0x70,0x8f,0x82,0xf8,0x88,0xf8,0x88,0x84,0xfe,0x04,0x00 -+// 34442 蚊 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0a,0x09,0x0f,0x71,0x00,0x01,0x20,0x18,0x12,0xff,0x84,0x84,0x44,0x48,0x28,0x10,0x10,0x28,0xac,0x47,0x82,0x00 -+// 34443 蚋 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x08,0x0a,0x0f,0x72,0x00,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xaa,0xa6,0xc2,0x82,0x82,0x82,0x8a,0x84 -+// 34444 蚌 ; -+,0x08,0x08,0x08,0x3f,0x29,0x29,0x29,0x3f,0x29,0x29,0x0a,0x09,0x0f,0x79,0x20,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x90,0x10,0x10,0x10 -+// 34445 蚍 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x00,0x00,0x88,0x88,0x88,0x88,0x8a,0xec,0x88,0x88,0x88,0x88,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 34446 蚎 ; -+,0x04,0x04,0x04,0x04,0x3f,0x25,0x25,0x25,0x3f,0x24,0x06,0x05,0x07,0x79,0x20,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0xc2,0x7e,0x42,0x00 -+// 34447 蚏 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x48,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x82,0x8a,0x04 -+// 34448 蚐 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0a,0x09,0x0f,0x79,0x00,0x00,0x20,0x30,0x20,0x3e,0x42,0xa2,0x12,0x12,0x02,0x1a,0xe2,0x02,0x82,0x02,0x14,0x08 -+// 34449 蚑 ; -+,0x08,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x1f,0x62,0x01,0x02,0x20,0x20,0x20,0xfe,0x20,0x20,0xfc,0x84,0x48,0x48,0x30,0x30,0x48,0x86,0x03,0x02 -+// 34450 蚒 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x00,0x7c,0x44,0x64,0x54,0x5c,0x54,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x14,0x08 -+// 34451 蚓 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xf2,0x12,0x12,0xf2,0x82,0x82,0x82,0xf2,0x12,0x12,0x12,0x12,0x12,0x52,0x22 -+// 34452 蚔 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x04,0xfe,0x90,0x90,0x90,0x90,0xff,0x90,0x90,0x90,0x88,0x89,0x85,0xa3,0xc1,0x80 -+// 34453 蚕 ; -+,0x1f,0x00,0x00,0x7f,0x01,0x02,0x04,0x18,0x6f,0x08,0x0f,0x08,0x00,0x00,0x3f,0x00,0xfe,0x80,0x80,0xff,0x20,0x10,0x88,0x87,0xfa,0x88,0xf8,0x88,0x84,0xfe,0x04,0x00 -+// 34454 蚖 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x08,0x08,0x0a,0x09,0x0f,0x71,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x24,0x24,0x24,0x24,0x24,0x24,0x25,0xa5,0x43,0x80 -+// 34455 蚗 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x08,0x0c,0x0a,0x0f,0x7a,0x00,0x01,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0xff,0x20,0x20,0x50,0x48,0x84,0x86,0x04 -+// 34456 蚘 ; -+,0x08,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x20,0x20,0x28,0x24,0xff,0x50,0x50,0x50,0x50,0x50,0x50,0x52,0x92,0x93,0x0e,0x00 -+// 34457 蚙 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x20,0x00,0x10,0x10,0x28,0x28,0x44,0x63,0x92,0x10,0xfe,0x04,0x04,0x08,0x08,0x08,0x10,0x10 -+// 34458 蚚 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x04,0x7e,0x40,0x40,0x40,0x7f,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x08,0x08 -+// 34459 蚛 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0a,0x09,0x0f,0x79,0x20,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x90,0x10,0x10,0x10 -+// 34460 蚜 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0a,0x0f,0x1a,0x60,0x01,0x02,0x00,0xff,0x04,0x44,0x44,0x44,0xff,0x4c,0x14,0x14,0x24,0x24,0x44,0x84,0x14,0x08 -+// 34461 蚝 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x09,0x0a,0x09,0x0f,0x79,0x00,0x00,0x00,0x1c,0xe0,0x20,0x20,0x3c,0xe0,0x20,0x3e,0xe0,0x20,0x22,0xa2,0x23,0x1e,0x00 -+// 34462 蚞 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x09,0x0d,0x0a,0x0f,0x72,0x20,0x00,0x20,0x20,0x20,0xfe,0x20,0x70,0x70,0xa8,0xa8,0x24,0x26,0x23,0x22,0x20,0x20,0x20 -+// 34463 蚟 ; -+,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x7f,0x49,0x0a,0x09,0x0f,0x79,0x20,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x90,0x10,0xff,0x00 -+// 34464 蚠 ; -+,0x04,0x06,0x08,0x17,0x61,0x02,0x04,0x18,0x0f,0x08,0x08,0x0f,0x08,0x00,0x3f,0x00,0x20,0x20,0x18,0xf7,0x12,0x10,0x50,0xa0,0xf8,0x88,0x88,0xf8,0x88,0xfc,0x06,0x04 -+// 34465 蚡 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x00,0x48,0x68,0x48,0x44,0x87,0x82,0x7c,0x24,0x24,0x24,0x24,0x44,0x54,0x88,0x00 -+// 34466 蚢 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x40,0x30,0x20,0xff,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x87,0x00,0x00 -+// 34467 蚣 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x29,0x08,0x0c,0x0a,0x0f,0x72,0x20,0x00,0x00,0x48,0x48,0x48,0x44,0x84,0x86,0xa3,0x22,0x20,0x20,0x48,0x44,0xfe,0x44,0x00 -+// 34468 蚤 ; -+,0x1f,0x05,0x04,0x02,0x01,0x0e,0x70,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x3f,0x00,0xf8,0x08,0x90,0x20,0xc0,0x30,0x8f,0xfa,0x88,0x88,0xf8,0x90,0x88,0xfc,0x88,0x00 -+// 34469 蚥 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x28,0x0a,0x09,0x0f,0x71,0x00,0x01,0x48,0x64,0x42,0x41,0x85,0x46,0x44,0x44,0x28,0x28,0x10,0x28,0xa8,0x44,0x83,0x02 -+// 34470 蚦 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x09,0x08,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0xff,0x84,0x84,0x84,0x84,0x94,0x88 -+// 34471 蚧 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x20,0x20,0x50,0x48,0x84,0x03,0x4a,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08 -+// 34472 蚨 ; -+,0x10,0x10,0x10,0x7d,0x54,0x54,0x54,0x55,0x7c,0x50,0x14,0x12,0x1f,0x62,0x20,0x01,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x50,0x48,0x8c,0x87,0x02 -+// 34473 蚩 ; -+,0x00,0x08,0x08,0x0f,0x00,0x7f,0x00,0x00,0x0f,0x08,0x0f,0x08,0x00,0x00,0x3f,0x00,0x80,0x84,0x84,0xfc,0x80,0xff,0x80,0x80,0xfc,0x84,0xfc,0x88,0x84,0xfe,0x04,0x00 -+// 34474 蚪 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x29,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x08,0x88,0x48,0x28,0x08,0x88,0x48,0x28,0x0f,0xf8,0x08,0x08,0x08,0x08,0x08,0x00 -+// 34475 蚫 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x40,0x40,0x7e,0x82,0x02,0xfa,0x8a,0x8a,0xfa,0x82,0x8a,0x84,0x81,0x81,0x7f,0x00 -+// 34476 蚬 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x00,0xfe,0x82,0x82,0x92,0x92,0x92,0x92,0x92,0xaa,0x28,0x48,0x49,0x89,0x0f,0x00 -+// 34477 蚭 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x00,0xfe,0x82,0x82,0xfe,0x80,0xa0,0xa2,0xa4,0xa8,0xb0,0xa0,0xa1,0xa1,0x1e,0x00 -+// 34478 蚮 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x28,0x08,0x0a,0x0f,0x72,0x00,0x00,0x48,0x68,0x4c,0x4a,0x88,0x8f,0xf8,0x88,0x88,0x88,0x88,0x89,0x85,0x85,0x82,0x80 -+// 34479 蚯 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x00,0x0e,0xf0,0x80,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0xff,0x00 -+// 34480 蚰 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 34481 蚱 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x20,0x20,0x40,0x7f,0xa0,0x20,0x3e,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x00 -+// 34482 蚲 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0a,0x09,0x0f,0x71,0x00,0x00,0x00,0xff,0x10,0x94,0x56,0x54,0x58,0x10,0xff,0x10,0x10,0x10,0x90,0x10,0x10,0x10 -+// 34483 蚳 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x04,0x1e,0xf0,0x90,0x90,0x90,0xfe,0x90,0x90,0x88,0x88,0x85,0xa5,0xd3,0x89,0x80 -+// 34484 蚴 ; -+,0x10,0x10,0x10,0x10,0x7d,0x56,0x57,0x54,0x7c,0x11,0x11,0x17,0x1d,0x64,0x00,0x00,0x88,0xc8,0x88,0x88,0x3e,0x4a,0xca,0x8a,0x8a,0x52,0x52,0xd2,0x22,0x22,0x4a,0x84 -+// 34485 蚵 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0x04,0x14,0x08 -+// 34486 蚶 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x00 -+// 34487 蚷 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x82,0x80,0x80,0x80,0xff,0x00 -+// 34488 蚸 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x20,0x01,0x00,0x0e,0x70,0x40,0x40,0x7f,0x48,0x48,0x58,0x4c,0x4b,0x49,0x48,0x88,0x88,0x08 -+// 34489 蚹 ; -+,0x10,0x10,0x10,0x10,0x7d,0x55,0x56,0x54,0x7c,0x10,0x10,0x14,0x1e,0x72,0x20,0x00,0x84,0xc4,0x84,0x84,0x84,0xff,0x84,0xc4,0xa4,0xb4,0xa4,0x84,0x84,0x84,0x94,0x88 -+// 34490 蚺 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2b,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0xff,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 34491 蚻 ; -+,0x04,0x04,0x3f,0x0e,0x0d,0x15,0x24,0x44,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x10,0x20,0x20,0xa0,0x20,0x22,0x22,0x9e,0x80,0xf8,0x88,0x88,0xf8,0x88,0xfc,0x06,0x04 -+// 34492 蚼 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x20,0x00,0x40,0x60,0x40,0x7e,0x82,0x82,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 34493 蚽 ; -+,0x08,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x29,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x00,0xff,0x10,0x10,0x10,0x38,0x34,0x52,0x93,0x12,0x10,0x10,0x10,0x00,0xff,0x00 -+// 34494 蚾 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x01,0x02,0x10,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0xc2,0xa4,0xa4,0x98,0x98,0xa4,0x43,0x82 -+// 34495 蚿 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x40,0x30,0x20,0xff,0x20,0x20,0x44,0x44,0xf8,0x10,0x10,0x24,0x42,0xff,0x02,0x00 -+// 34496 蛀 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x7a,0x01,0x00,0x20,0x10,0x18,0x10,0xfe,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 34497 蛁 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x28,0x0a,0x09,0x0f,0x71,0x00,0x00,0x00,0xfe,0x22,0x22,0x22,0x42,0x4a,0x84,0x7e,0x42,0x42,0x42,0xc2,0x7e,0x42,0x00 -+// 34498 蛂 ; -+,0x08,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x40,0x50,0x4c,0x44,0xff,0x40,0x7c,0x44,0x44,0x68,0xa8,0x90,0xa8,0xa6,0x43,0x82 -+// 34499 蛃 ; -+,0x08,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0xaa,0xc6,0x82,0x82,0x82,0x8a,0x84 -+// 34500 蛄 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 34501 蛅 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0a,0x09,0x0f,0x71,0x20,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0xc2,0x7e,0x42,0x00 -+// 34502 蛆 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 34503 蛇 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x00,0x00,0x20,0x18,0x10,0xff,0x82,0x44,0x40,0x44,0x58,0x60,0x40,0x42,0x42,0x42,0x3c,0x00 -+// 34504 蛈 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2b,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x10,0x90,0xd0,0x90,0xfe,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 34505 蛉 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x08,0x0a,0x0f,0x71,0x00,0x00,0x20,0x20,0x20,0x50,0x48,0xa7,0x12,0x10,0xfe,0x04,0x08,0x50,0x20,0x10,0x10,0x00 -+// 34506 蛊 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x00,0x1f,0x00,0x1f,0x12,0x12,0x12,0x7f,0x00,0x80,0x80,0xfc,0x84,0x84,0xfc,0x84,0xfe,0x84,0x00,0xfc,0x24,0x24,0x24,0xff,0x00 -+// 34507 蛋 ; -+,0x00,0x3f,0x00,0x08,0x08,0x08,0x14,0x23,0x40,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0xfe,0x84,0x80,0xfc,0x80,0x80,0xff,0x80,0xf8,0x88,0x88,0xf8,0x84,0xff,0x02 -+// 34508 蛌 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x08,0x0a,0x0f,0x72,0x01,0x02,0x00,0x0f,0xf4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xb2,0xaa,0xbf,0x2a,0x00 -+// 34509 蛍 ; -+,0x09,0x04,0x06,0x04,0x3f,0x20,0x40,0x0f,0x08,0x08,0x0f,0x08,0x00,0x00,0x3f,0x00,0x08,0x8c,0xc8,0x90,0xff,0x82,0x84,0xf8,0x88,0x88,0xf8,0x90,0x88,0xfc,0x06,0x04 -+// 34510 蛎 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x00,0xff,0x80,0x80,0xff,0x90,0x90,0x9e,0x92,0x92,0x92,0xa2,0xa2,0xc2,0x4a,0x84 -+// 34511 蛏 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x28,0x09,0x0c,0x0a,0x0e,0x73,0x00,0x00,0xfe,0x84,0x44,0x48,0x30,0x48,0x87,0x22,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 34512 蛐 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x7f,0x22,0x00,0x24,0x24,0x24,0x24,0xff,0xa5,0xa5,0xa5,0xff,0xa5,0xa5,0xa5,0xa5,0xff,0x81,0x00 -+// 34513 蛑 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x09,0x0d,0x0a,0x0f,0x72,0x00,0x00,0x20,0x34,0x42,0xff,0x42,0x90,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 34514 蛒 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x09,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x40,0x40,0x7c,0x44,0xc4,0x28,0x10,0x28,0x47,0xfe,0x44,0x44,0x44,0x44,0x7c,0x44 -+// 34515 蛓 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x04,0x04,0x3f,0x24,0x3f,0x25,0x04,0x07,0x3c,0x10,0x00,0x20,0x28,0xa4,0x24,0xff,0x20,0x20,0xa4,0xa4,0x94,0x18,0x92,0xea,0xa6,0x42,0x80 -+// 34516 蛔 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfe,0x82,0x82,0xba,0xaa,0xaa,0xaa,0xaa,0xba,0xaa,0x82,0x82,0xfe,0x82,0x00 -+// 34517 蛕 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3f,0x2a,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x20,0x20,0xff,0x20,0x40,0x7e,0xc2,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 34518 蛖 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x20,0x28,0x24,0xff,0x50,0x52,0x5c,0x52,0x5c,0x52,0x53,0x5c,0xb1,0x91,0x0f,0x00 -+// 34519 蛗 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x00,0x1f,0x00,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x04,0xfc,0x40,0xfc,0x44,0xfc,0x44,0x7e,0x83,0x02 -+// 34520 蛘 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x28,0x0d,0x0a,0x0f,0x72,0x00,0x00,0x84,0x46,0x28,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 34521 蛙 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x28,0x0a,0x0f,0x7a,0x20,0x01,0x00,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 34522 蛚 ; -+,0x08,0x0b,0x08,0x08,0x3e,0x2b,0x2b,0x2b,0x3f,0x29,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x01,0xf1,0x81,0x89,0xe9,0x29,0x29,0x29,0xa9,0x49,0x49,0x49,0x81,0x81,0x05,0x02 -+// 34523 蛛 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x3f,0x2a,0x08,0x08,0x0e,0x71,0x02,0x04,0x00,0x20,0xa0,0xa0,0xfe,0xa0,0x20,0x20,0xff,0x70,0x68,0xa8,0xa4,0x23,0x22,0x20,0x20 -+// 34524 蛜 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x40,0x40,0x7e,0x92,0x92,0xff,0x92,0x92,0xfe,0x92,0x90,0x90,0xa0,0xa0,0xc0,0x80 -+// 34525 蛝 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa2,0xa3,0x94,0x88,0x8c,0xa7,0xc2,0x80 -+// 34526 蛞 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0x0e,0xf0,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 34527 蛟 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2b,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x06,0x40,0x20,0x00,0xff,0x48,0x84,0x0a,0x88,0x88,0x50,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 34528 蛠 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x3e,0x2b,0x28,0x0a,0x0f,0x7a,0x01,0x02,0x04,0x20,0x20,0xfe,0x22,0x22,0x4e,0x84,0x84,0xef,0xa5,0xa5,0xa5,0xa5,0x29,0xad,0x52 -+// 34529 蛡 ; -+,0x08,0x09,0x08,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x28,0x0d,0x0a,0x0f,0x72,0x00,0x00,0x00,0xee,0x22,0x22,0x32,0xea,0xaa,0x22,0x62,0xa6,0x2a,0x32,0x22,0x22,0xaa,0x44 -+// 34530 蛢 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x7a,0x20,0x00,0x01,0x84,0x46,0x28,0xff,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 34531 蛣 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x08,0x0a,0x0f,0x72,0x00,0x00,0x08,0x08,0x08,0xff,0x08,0x08,0x7f,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 34532 蛤 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x10,0x28,0x28,0x44,0x83,0x7d,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 34533 蛥 ; -+,0x08,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2b,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x03,0x20,0x3e,0x44,0xc4,0x28,0x10,0x70,0x9f,0x21,0x42,0xa4,0x28,0x10,0x20,0xc0,0x00 -+// 34534 蛦 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x08,0x0a,0x0f,0x72,0x21,0x02,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0xa0,0xfe,0x22,0x2a,0x54,0x48,0x84,0x03,0x02 -+// 34535 蛧 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x1f,0x75,0x01,0x01,0x00,0xff,0x01,0x15,0xa9,0x49,0x49,0x49,0x49,0x55,0xa3,0x01,0x01,0x01,0x05,0x02 -+// 34536 蛨 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x71,0x20,0x00,0x00,0xff,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 34537 蛩 ; -+,0x00,0x3f,0x08,0x08,0x08,0x0f,0x32,0x00,0x0f,0x08,0x0f,0x08,0x00,0x00,0x1f,0x00,0x7c,0x44,0x64,0x54,0x95,0x05,0x83,0x80,0xfc,0x84,0xfc,0x80,0x84,0xfe,0x02,0x00 -+// 34538 蛪 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x04,0x00,0x1f,0x10,0x1f,0x10,0x00,0x00,0x1f,0x00,0x7e,0x12,0x12,0x22,0xa2,0x54,0x88,0x80,0xfc,0x84,0xfc,0x88,0x84,0xfe,0x84 -+// 34539 蛫 ; -+,0x08,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x20,0x3e,0x44,0x88,0xff,0x80,0x80,0xbc,0xa4,0xa4,0xb4,0xa8,0xa2,0xa3,0x1e,0x00 -+// 34540 蛬 ; -+,0x02,0x02,0x1f,0x02,0x02,0x7f,0x04,0x08,0x17,0x64,0x07,0x04,0x00,0x00,0x1f,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x90,0x88,0xf7,0x92,0xf0,0x90,0x88,0xfc,0x08,0x00 -+// 34541 蛭 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x09,0x0f,0x71,0x00,0x00,0xff,0x10,0x20,0x24,0x42,0xff,0x12,0x10,0xfe,0x10,0x10,0x10,0x90,0xff,0x00 -+// 34542 蛮 ; -+,0x01,0x00,0x3f,0x0a,0x0a,0x12,0x22,0x02,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x00,0x80,0xff,0x28,0x24,0x22,0x22,0xa0,0xf8,0x88,0x88,0xf8,0x84,0xfc,0x06,0x04 -+// 34543 蛯 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x3e,0x08,0x0d,0x0a,0x0f,0x72,0x00,0x00,0x20,0x20,0x22,0xff,0x22,0x24,0xff,0x10,0x20,0xc6,0x78,0x42,0x42,0x43,0x3e,0x00 -+// 34544 蛰 ; -+,0x08,0x08,0x3e,0x09,0x1c,0x68,0x09,0x32,0x1f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x20,0x20,0xf8,0x28,0xc8,0xe4,0x25,0x82,0xfc,0x84,0x84,0xfc,0x88,0xfc,0x06,0x04 -+// 34545 蛱 ; -+,0x08,0x08,0x08,0x3f,0x2b,0x2a,0x2a,0x2a,0x3f,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x20,0x20,0x20,0xfe,0x24,0xa4,0xa8,0x28,0xff,0x20,0x20,0x50,0x4c,0x87,0x02,0x00 -+// 34546 蛲 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3e,0x2b,0x08,0x08,0x0a,0x0f,0x72,0x21,0x02,0x20,0x20,0xfe,0x20,0x2c,0x12,0x2a,0xc4,0xfe,0x50,0x50,0x52,0x92,0x93,0x0e,0x00 -+// 34547 蛳 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x51,0x11,0x14,0x1e,0x74,0x01,0x02,0x40,0x5f,0x44,0x44,0x5f,0x55,0x55,0x55,0x55,0x55,0x55,0x57,0x84,0x84,0x04,0x04 -+// 34548 蛴 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3e,0x29,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x20,0x10,0xff,0x48,0x48,0x30,0x48,0x87,0x4a,0x48,0x48,0x48,0x48,0x88,0x08,0x08 -+// 34549 蛵 ; -+,0x08,0x09,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x2a,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0xff,0x94,0xd6,0x94,0x28,0xa4,0x5b,0x52,0xff,0x10,0x10,0x10,0x10,0xff,0x00 -+// 34550 蛶 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0x1f,0xf2,0x03,0xa2,0x54,0x50,0x04,0xff,0x04,0x44,0x34,0x24,0x04,0x14,0x08 -+// 34551 蛷 ; -+,0x08,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x18,0x16,0x14,0xff,0x14,0x96,0x58,0x50,0x38,0x54,0x97,0x12,0x10,0x50,0x20 -+// 34552 蛸 ; -+,0x08,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x12,0x93,0x54,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 34553 蛹 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfe,0x04,0x28,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x8a,0x84 -+// 34554 蛺 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x3e,0x29,0x0a,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x10,0x10,0x10,0xff,0x10,0x94,0x94,0x94,0x5a,0x31,0x10,0x28,0x24,0x46,0x83,0x02 -+// 34555 蛻 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x2a,0x28,0x0a,0x0f,0x72,0x00,0x01,0x02,0x48,0x68,0x44,0x83,0xfe,0x84,0x84,0xfc,0xa8,0x28,0x28,0x2a,0x4a,0x8b,0x06,0x00 -+// 34556 蛼 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0b,0x0f,0x72,0x00,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 34557 蛽 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x00,0x01,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x00,0x24,0x42,0x83,0x02 -+// 34558 蛾 ; -+,0x10,0x10,0x13,0x7c,0x54,0x57,0x54,0x54,0x7c,0x51,0x14,0x12,0x1e,0x62,0x01,0x00,0x08,0x68,0x8c,0x8a,0x88,0xff,0x88,0xaa,0xca,0x8c,0x88,0x99,0xa9,0xc5,0x02,0x00 -+// 34559 蛿 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x20,0x20,0x50,0x48,0xa7,0x12,0xfc,0x04,0x08,0x10,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 34560 蜀 ; -+,0x00,0x0f,0x09,0x0f,0x08,0x0f,0x08,0x10,0x2f,0x08,0x0f,0x08,0x00,0x3f,0x00,0x00,0x00,0xfc,0x24,0xfc,0x00,0xfe,0x82,0x82,0xfa,0x8a,0xfa,0x92,0xfa,0x12,0x0a,0x04 -+// 34561 蜁 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x21,0x02,0x40,0x40,0x7f,0x40,0x80,0x7f,0x0a,0x08,0x4f,0x48,0x48,0x48,0x48,0xa8,0x1f,0x00 -+// 34562 蜂 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x2b,0x3e,0x08,0x0a,0x0f,0x7b,0x20,0x00,0x00,0x40,0x7c,0x44,0xa8,0x10,0x28,0xc7,0x12,0xfe,0x10,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 34563 蜃 ; -+,0x1f,0x10,0x17,0x10,0x1f,0x12,0x12,0x13,0x12,0x17,0x24,0x27,0x40,0x00,0x1f,0x00,0xfe,0x00,0xfc,0x00,0xff,0x48,0x2c,0x10,0x8f,0xfa,0x88,0xf8,0x84,0xfe,0x84,0x00 -+// 34564 蜄 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x00,0xff,0x80,0x80,0xfe,0x80,0x80,0xff,0xa8,0xa9,0xaa,0xa4,0xa4,0xb3,0x22,0x00 -+// 34565 蜅 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x9a,0x94 -+// 34566 蜆 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x49,0x49,0x87,0x00 -+// 34567 蜇 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x29,0x12,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x06,0x78,0x40,0x7f,0x48,0x88,0x08,0x80,0xfc,0x84,0x84,0xfc,0x88,0xfc,0x86,0x04 -+// 34568 蜈 ; -+,0x10,0x10,0x10,0x7c,0x54,0x54,0x55,0x54,0x7c,0x53,0x18,0x14,0x1e,0x74,0x00,0x01,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x28,0x28,0x44,0x44,0x83,0x02 -+// 34569 蜉 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2b,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x1f,0xf0,0x92,0x4b,0x4a,0xfe,0x04,0x28,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 34570 蜊 ; -+,0x08,0x09,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x3e,0x29,0x0d,0x0a,0x0f,0x7a,0x00,0x00,0x00,0xf1,0x41,0x45,0xfd,0x45,0x65,0xd5,0xd5,0x45,0x45,0x45,0x45,0x41,0x45,0x42 -+// 34571 蜋 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x7a,0x01,0x00,0x40,0x30,0x20,0xfc,0x84,0xfc,0x84,0x84,0xfc,0xa2,0xac,0x90,0x8c,0xa7,0xc2,0x80 -+// 34572 蜌 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3f,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x88,0x88,0x8a,0xec,0x88,0x89,0xc9,0x87,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 34573 蜍 ; -+,0x10,0x10,0x10,0x7c,0x54,0x55,0x56,0x54,0x7d,0x10,0x18,0x14,0x1f,0x75,0x02,0x00,0x20,0x20,0x50,0x48,0x84,0xfb,0x22,0x20,0xfc,0x20,0xa8,0xa4,0x22,0x22,0xa0,0x40 -+// 34574 蜎 ; -+,0x10,0x10,0x10,0x7c,0x54,0x54,0x55,0x7d,0x55,0x51,0x15,0x1f,0x75,0x21,0x01,0x00,0x00,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0x02,0x0a,0x04,0x00 -+// 34575 蜏 ; -+,0x10,0x11,0x10,0x11,0x7c,0x54,0x54,0x55,0x7c,0x50,0x14,0x12,0x1f,0x62,0x01,0x02,0x06,0xf8,0x10,0xff,0x30,0x58,0x97,0xfa,0x48,0x48,0x5e,0x82,0x82,0x92,0x0a,0x04 -+// 34576 蜐 ; -+,0x10,0x10,0x10,0x7d,0x54,0x54,0x57,0x54,0x7c,0x11,0x11,0x15,0x1e,0x74,0x00,0x00,0x88,0x88,0x88,0xc8,0x9e,0x8a,0xea,0x8a,0x8a,0x0a,0x4a,0xea,0x52,0x12,0x2a,0x44 -+// 34577 蜑 ; -+,0x00,0x3f,0x04,0x08,0x2e,0x14,0x08,0x17,0x20,0x07,0x04,0x07,0x04,0x00,0x3f,0x00,0x0e,0xf0,0x10,0x9e,0x90,0xff,0x00,0xff,0x40,0xfc,0x44,0xfc,0x42,0x7f,0x82,0x00 -+// 34578 蜒 ; -+,0x10,0x13,0x10,0x7c,0x54,0x55,0x57,0x54,0x7c,0x11,0x18,0x14,0x1f,0x75,0x02,0x04,0x00,0xc7,0xbc,0x84,0x84,0x04,0xd7,0x54,0x54,0x54,0x9f,0x80,0x40,0x30,0x0f,0x00 -+// 34579 蜓 ; -+,0x10,0x13,0x10,0x7c,0x54,0x55,0x57,0x7c,0x54,0x19,0x14,0x1e,0x75,0x22,0x04,0x00,0x00,0xc7,0x78,0x88,0x88,0x08,0xff,0x48,0x48,0x48,0xbe,0x80,0x40,0x20,0x1f,0x00 -+// 34580 蜔 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x40,0x60,0x40,0xfe,0x02,0xfa,0xaa,0xaa,0xfa,0xaa,0xaa,0xfa,0x8a,0x02,0x0a,0x04 -+// 34581 蜕 ; -+,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x04,0xc6,0x48,0xfc,0x84,0x84,0x84,0x84,0xfc,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 34582 蜖 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfe,0xaa,0xaa,0xaa,0xba,0xaa,0xaa,0xba,0xaa,0xaa,0xaa,0xfe,0x82,0x82,0x00 -+// 34583 蜗 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x3f,0x29,0x09,0x09,0x0f,0x71,0x01,0x01,0x00,0xfc,0x84,0x84,0xfc,0xa4,0x20,0xfe,0x22,0x22,0x52,0x8a,0x02,0x02,0x0a,0x04 -+// 34584 蜘 ; -+,0x10,0x10,0x10,0x7d,0x55,0x56,0x54,0x55,0x7c,0x50,0x18,0x14,0x1e,0x75,0x01,0x02,0x80,0xc0,0x80,0xff,0x49,0x49,0x49,0xe9,0x49,0x49,0xa9,0xb9,0xaf,0x09,0x08,0x00 -+// 34585 蜙 ; -+,0x10,0x10,0x10,0x10,0x7f,0x54,0x55,0x55,0x7e,0x52,0x58,0x14,0x1e,0x64,0x00,0x00,0x84,0x84,0x94,0x94,0xd2,0xa2,0xa3,0xc8,0xcc,0x88,0x90,0x94,0xa2,0xff,0xa2,0x80 -+// 34586 蜚 ; -+,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x00,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x20,0x3f,0x20,0x3e,0x20,0x3f,0xa0,0x80,0xf8,0x88,0x88,0xf8,0x84,0xfe,0x02,0x00 -+// 34587 蜛 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x00,0xfe,0x82,0x82,0xfe,0x88,0x88,0xff,0x88,0x88,0xbe,0xa2,0xa2,0xbe,0x22,0x00 -+// 34588 蜜 ; -+,0x00,0x1f,0x11,0x2a,0x0a,0x13,0x01,0x06,0x18,0x07,0x04,0x07,0x04,0x00,0x1f,0x00,0x80,0xff,0x12,0xa4,0x4a,0xfb,0x82,0x40,0x40,0xfc,0x44,0xfc,0x48,0x44,0xfe,0x04 -+// 34589 蜝 ; -+,0x04,0x3f,0x04,0x07,0x04,0x07,0x04,0x7f,0x08,0x1f,0x68,0x0f,0x08,0x00,0x3f,0x00,0x10,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xff,0x88,0xfc,0x8b,0xf8,0x84,0xfe,0x82,0x00 -+// 34590 蜞 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x01,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x48,0x64,0x42,0x83,0x02 -+// 34591 蜟 ; -+,0x10,0x10,0x13,0x7c,0x54,0x55,0x54,0x54,0x7c,0x50,0x14,0x12,0x1f,0x72,0x00,0x00,0x40,0x20,0xff,0x44,0x82,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 34592 蜠 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x01,0x00,0x00,0xfe,0x02,0x7e,0x12,0x12,0x7e,0x3a,0x36,0x56,0x52,0x92,0x12,0xfe,0x02,0x00 -+// 34593 蜡 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2b,0x3e,0x2a,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 34594 蜢 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x03,0x00,0x00,0xfe,0x2c,0x10,0xff,0x10,0x10,0x50,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 34595 蜣 ; -+,0x09,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3f,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x08,0xcc,0x50,0xff,0x20,0xfe,0x20,0x20,0xff,0x50,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 34596 蜤 ; -+,0x04,0x04,0x3f,0x0e,0x15,0x14,0x25,0x44,0x00,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x00,0x06,0x78,0x40,0x7f,0x48,0x88,0x08,0x88,0x80,0xf8,0x88,0xf8,0x84,0xff,0x02,0x00 -+// 34597 蜥 ; -+,0x10,0x10,0x10,0x7f,0x54,0x54,0x54,0x55,0x7d,0x52,0x1a,0x14,0x1e,0x64,0x00,0x00,0x40,0x43,0x4c,0xf8,0x48,0xef,0xea,0x5a,0x5a,0x4a,0x4a,0x4a,0x4a,0x52,0x52,0x60 -+// 34598 蜦 ; -+,0x10,0x10,0x10,0x7c,0x55,0x56,0x54,0x55,0x7d,0x51,0x19,0x15,0x1f,0x65,0x01,0x01,0x20,0x20,0x50,0x88,0x07,0xfe,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x0a,0x04 -+// 34599 蜧 ; -+,0x10,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1d,0x66,0x02,0x05,0x20,0x10,0xfe,0x02,0x02,0xfe,0x10,0x10,0xff,0x10,0x28,0x28,0x44,0x43,0x82,0x00 -+// 34600 蜨 ; -+,0x10,0x10,0x13,0x10,0x7d,0x54,0x57,0x54,0x7d,0x50,0x19,0x15,0x1f,0x75,0x02,0x04,0x20,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x3e,0x20,0x20,0x20,0xff,0x00 -+// 34601 蜩 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x01,0x01,0x02,0x00,0xff,0x91,0x91,0xbd,0x91,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0xa5,0x01,0x05,0x02 -+// 34602 蜪 ; -+,0x10,0x10,0x10,0x7d,0x55,0x56,0x54,0x54,0x7d,0x50,0x19,0x15,0x1d,0x64,0x00,0x00,0x80,0x80,0xff,0x02,0x82,0xfa,0xa2,0x22,0xfa,0x22,0x2a,0xfa,0x0a,0x02,0x14,0x08 -+// 34603 蜫 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0x88,0x89,0xee,0x88,0x89,0xe9,0x87,0x00 -+// 34604 蜬 ; -+,0x10,0x11,0x10,0x7c,0x54,0x55,0x55,0x7d,0x51,0x11,0x19,0x15,0x1f,0x75,0x01,0x00,0x00,0xfe,0x0c,0x10,0x94,0x57,0x79,0x51,0x39,0xd5,0x53,0x11,0x51,0x21,0xff,0x00 -+// 34605 蜭 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x40,0x40,0x7e,0x42,0x84,0x08,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x82,0x00 -+// 34606 蜮 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x08,0x0a,0x0a,0xff,0x08,0xe8,0xaa,0xab,0xea,0xaa,0x04,0xec,0x15,0x63,0x81,0x00 -+// 34607 蜯 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x29,0x0e,0x0a,0x0f,0x72,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x48,0xa4,0xff,0x21,0x20,0xfe,0x20,0x20,0x20 -+// 34608 蜰 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x25,0x22,0x40,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x00,0x7e,0x52,0x52,0x7e,0x42,0x40,0x41,0x3f,0x80,0xf8,0x88,0xf8,0x84,0xfe,0x04,0x00 -+// 34609 蜱 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0d,0x0a,0x0f,0x72,0x00,0x00,0x10,0x20,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x30,0x50,0xff,0x10,0x10,0x10,0x10,0x10 -+// 34610 蜲 ; -+,0x10,0x11,0x10,0x7d,0x54,0x54,0x54,0x55,0x7c,0x13,0x18,0x14,0x1e,0x64,0x00,0x03,0x00,0xfe,0x10,0xff,0x38,0x54,0x93,0x52,0x40,0xff,0x44,0xc8,0x30,0x48,0x86,0x02 -+// 34611 蜳 ; -+,0x08,0x08,0x0b,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0b,0x0e,0x72,0x00,0x00,0x40,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x28,0x10,0xff,0x10,0x10,0x50,0x20 -+// 34612 蜴 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x29,0x0c,0x0a,0x0e,0x73,0x02,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0x7e,0xaa,0x2a,0x4a,0x52,0x92,0x22,0x4a,0x84 -+// 34613 蜵 ; -+,0x10,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x02,0x04,0x48,0x4a,0x4a,0x4a,0xce,0x02,0xfe,0x02,0x02,0xde,0x52,0x52,0x52,0x52,0x52,0x02 -+// 34614 蜶 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2b,0x3e,0x08,0x0d,0x0a,0x0f,0x72,0x00,0x00,0x20,0x10,0xff,0x44,0x44,0x44,0xaa,0x11,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 34615 蜷 ; -+,0x10,0x11,0x10,0x10,0x7d,0x54,0x57,0x54,0x7d,0x12,0x18,0x14,0x1e,0x64,0x00,0x00,0x20,0x24,0xa8,0x20,0xfe,0x40,0xff,0x90,0x0c,0xfb,0x8a,0xa8,0x90,0x82,0xfe,0x00 -+// 34616 蜸 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x80,0x7e,0x24,0x24,0x18,0x08,0x97,0xa2,0xf8,0x88,0x88,0xf8,0x84,0xfe,0x84,0x00 -+// 34617 蜹 ; -+,0x10,0x10,0x13,0x10,0x7c,0x54,0x55,0x55,0x7d,0x51,0x15,0x13,0x1f,0x63,0x01,0x01,0x88,0x88,0xff,0x88,0xa8,0x20,0xfc,0x24,0x24,0x54,0x4c,0x84,0x04,0x04,0x14,0x08 -+// 34618 蜺 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x02,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0xa8,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 34619 蜻 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 34620 蜼 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x40,0x50,0x48,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x80,0x00 -+// 34621 蜽 ; -+,0x10,0x11,0x10,0x10,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x75,0x01,0x01,0x00,0xff,0x10,0x10,0xff,0x11,0x99,0x55,0x55,0xb5,0xbb,0x11,0x11,0x11,0x15,0x12 -+// 34622 蜾 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x38,0x38,0x54,0x54,0x93,0x12,0x10 -+// 34623 蜿 ; -+,0x10,0x10,0x11,0x7d,0x56,0x54,0x54,0x55,0x7d,0x53,0x18,0x14,0x1e,0x65,0x02,0x04,0x20,0x10,0xff,0x02,0x84,0x80,0xef,0x29,0x29,0x2d,0xca,0x48,0x89,0x09,0x0f,0x00 -+// 34624 蝀 ; -+,0x10,0x10,0x13,0x7c,0x55,0x55,0x55,0x55,0x7d,0x11,0x14,0x1e,0x74,0x01,0x02,0x00,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x74,0x70,0xa8,0xa7,0x22,0x20,0x20 -+// 34625 蝁 ; -+,0x3f,0x01,0x1f,0x10,0x1f,0x01,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x00,0x00,0x3f,0x00,0xfe,0x40,0x7c,0x04,0x7c,0x40,0xff,0x80,0xfc,0x84,0x84,0xfc,0x88,0x84,0xfe,0x04 -+// 34626 蝂 ; -+,0x10,0x12,0x12,0x7e,0x53,0x52,0x52,0x53,0x7e,0x52,0x1a,0x16,0x1e,0x66,0x02,0x04,0x80,0x83,0x9c,0x90,0xf0,0x1f,0x12,0xd2,0x9a,0x9a,0xa4,0xa4,0xaa,0x4b,0x92,0x20 -+// 34627 蝃 ; -+,0x10,0x13,0x10,0x7d,0x54,0x55,0x56,0x57,0x7c,0x13,0x18,0x14,0x1f,0x75,0x02,0x04,0x00,0xde,0x42,0x94,0x8c,0x52,0x21,0xde,0x42,0x54,0x94,0x88,0x48,0x14,0x23,0x42 -+// 34628 蝄 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xff,0x80,0xc2,0xa4,0xff,0x90,0x88,0xff,0xa0,0xa0,0xbe,0x80,0x80,0x82,0x81 -+// 34629 蝅 ; -+,0x00,0x3f,0x04,0x3f,0x04,0x0a,0x11,0x20,0x4f,0x08,0x08,0x0f,0x00,0x00,0x3f,0x00,0x00,0x7e,0x08,0x7f,0x08,0x14,0x23,0x82,0xf8,0x88,0x88,0xf8,0x88,0xfc,0x06,0x04 -+// 34630 蝆 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2b,0x3e,0x28,0x09,0x0a,0x0f,0x79,0x21,0x00,0x10,0x54,0x54,0xd7,0x54,0x54,0x54,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 34631 蝇 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfe,0x82,0x82,0xfe,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x11,0x11,0x0f,0x00 -+// 34632 蝈 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xff,0x81,0xfd,0x91,0x91,0xfd,0x91,0x99,0x97,0x95,0xff,0x81,0xff,0x81,0x00 -+// 34633 蝉 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x7a,0x20,0x00,0x00,0x84,0x66,0x28,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 34634 蝊 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x21,0x02,0x04,0x20,0x10,0xff,0x82,0x00,0xff,0x10,0x10,0x90,0x9f,0x90,0x90,0x90,0x50,0x3f,0x00 -+// 34635 蝋 ; -+,0x10,0x12,0x11,0x10,0x7d,0x55,0x55,0x55,0x7d,0x51,0x15,0x15,0x1d,0x62,0x0c,0x00,0x02,0x43,0xb2,0x94,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x24,0x25,0x25,0x23,0x21,0x00 -+// 34636 蝌 ; -+,0x10,0x13,0x10,0x7c,0x57,0x54,0x55,0x55,0x7e,0x54,0x10,0x14,0x1e,0x64,0x00,0x00,0x64,0x84,0xa4,0x94,0xe4,0xa4,0x94,0xd4,0xa7,0xbc,0x84,0x84,0x84,0x84,0x84,0x00 -+// 34637 蝍 ; -+,0x10,0x11,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x1f,0x65,0x00,0x00,0x00,0xef,0x29,0x29,0xe9,0x29,0x29,0xe9,0x29,0x89,0x4d,0x6a,0xa8,0x08,0x08,0x08 -+// 34638 蝎 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x2a,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x92,0x92,0xaa,0xc6,0xfa,0x02,0x0a,0x04 -+// 34639 蝏 ; -+,0x08,0x08,0x0b,0x08,0x3e,0x2a,0x2a,0x2a,0x3f,0x29,0x0c,0x0a,0x0f,0x7a,0x00,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xff,0x01,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 34640 蝐 ; -+,0x10,0x11,0x11,0x11,0x7d,0x55,0x55,0x54,0x7c,0x50,0x18,0x14,0x1e,0x72,0x00,0x00,0x00,0xfe,0x02,0x7a,0x02,0x7a,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 34641 蝑 ; -+,0x10,0x11,0x10,0x10,0x7c,0x55,0x55,0x56,0x7c,0x54,0x18,0x14,0x1e,0x64,0x00,0x00,0x00,0xff,0x12,0x9c,0x90,0x50,0x3f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 34642 蝒 ; -+,0x10,0x13,0x10,0x7c,0x55,0x55,0x55,0x7d,0x55,0x11,0x19,0x15,0x1f,0x75,0x01,0x00,0x00,0xff,0x20,0x20,0xfe,0x4a,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0xfe,0x02,0x02,0x00 -+// 34643 蝓 ; -+,0x10,0x10,0x10,0x10,0x7d,0x56,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x02,0x02,0x20,0x20,0x50,0x8c,0x7b,0x00,0xe2,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0xaa,0x44 -+// 34644 蝔 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x88,0x88,0xeb,0x8c,0x89,0xc9,0xa7,0x40,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 34645 蝕 ; -+,0x08,0x04,0x0a,0x09,0x15,0x3f,0x51,0x1f,0x11,0x1f,0x10,0x14,0x12,0x17,0x3a,0x10,0x10,0x10,0x10,0x90,0x7e,0x52,0x52,0x52,0x7e,0x52,0x10,0x14,0x12,0x1f,0xf2,0x00 -+// 34646 蝖 ; -+,0x10,0x10,0x11,0x11,0x7e,0x54,0x54,0x54,0x7c,0x10,0x18,0x14,0x1e,0x74,0x01,0x00,0x20,0x10,0xff,0x02,0x00,0xfc,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 34647 蝗 ; -+,0x10,0x10,0x10,0x7c,0x54,0x54,0x54,0x54,0x7d,0x50,0x18,0x14,0x1e,0x74,0x01,0x00,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 34648 蝘 ; -+,0x10,0x11,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x75,0x01,0x00,0x00,0xff,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x10,0xff,0x24,0x18,0x26,0x44,0xff,0x00 -+// 34649 蝙 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x51,0x15,0x1f,0x76,0x02,0x04,0x08,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xa2,0x8a,0x84 -+// 34650 蝚 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2b,0x3e,0x09,0x0c,0x0a,0x0f,0x72,0x01,0x00,0xfe,0x44,0x28,0xff,0x32,0x54,0x90,0x50,0x30,0xff,0x38,0x54,0x56,0x93,0x12,0x10 -+// 34651 蝛 ; -+,0x10,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x02,0x04,0x08,0x0c,0x0a,0xff,0x08,0xf8,0x4a,0x4b,0xea,0xa6,0xa4,0x4c,0xad,0x13,0x61,0x00 -+// 34652 蝜 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x20,0x20,0x3e,0x44,0xfe,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x83,0x02 -+// 34653 蝝 ; -+,0x10,0x10,0x10,0x7c,0x54,0x55,0x54,0x7c,0x57,0x50,0x15,0x12,0x1e,0x62,0x01,0x00,0x40,0x7e,0x44,0xfc,0x88,0xff,0x42,0xa3,0x34,0x58,0x94,0x2a,0x4b,0x8a,0x28,0x10 -+// 34654 蝞 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x01,0x02,0x04,0x00,0xfe,0x92,0x92,0xfe,0x80,0xbe,0xa2,0xbe,0xa2,0xbe,0xa2,0xa2,0x3e,0x22,0x00 -+// 34655 蝟 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84,0x00 -+// 34656 蝠 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xff,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82,0x00 -+// 34657 蝡 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0d,0x0a,0x0f,0x72,0x00,0x01,0x00,0xff,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0x94,0x10,0xff,0x10,0x28,0x44,0x83,0x02 -+// 34658 蝢 ; -+,0x08,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x00,0xff,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x44,0x62,0x83,0x02 -+// 34659 蝣 ; -+,0x12,0x11,0x11,0x13,0x7d,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x1e,0x62,0x05,0x08,0x10,0x10,0x10,0xdf,0x20,0x1f,0xc2,0x44,0x44,0x7f,0x44,0x44,0x44,0x44,0x54,0x88 -+// 34660 蝤 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x84,0x46,0x48,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xce,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 34661 蝥 ; -+,0x3f,0x0a,0x04,0x7f,0x0d,0x14,0x64,0x14,0x08,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x00,0x20,0x30,0x20,0xff,0x64,0xa4,0x18,0xa4,0xc3,0xfc,0x84,0xfc,0x88,0xfc,0x86,0x04 -+// 34662 蝦 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x1f,0x65,0x01,0x01,0x00,0xee,0x22,0x22,0xe2,0x2e,0x00,0xfe,0x12,0x12,0xec,0x0c,0x0c,0x12,0x23,0x42 -+// 34663 蝧 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x09,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x44,0x44,0xff,0x44,0x10,0xfe,0x92,0x92,0x92,0xff,0x10,0x28,0x24,0x43,0x82,0x00 -+// 34664 蝨 ; -+,0x1f,0x02,0x02,0x3f,0x02,0x02,0x0a,0x08,0x3f,0x29,0x3f,0x08,0x0a,0x0f,0x71,0x00,0xf0,0x10,0x10,0xd0,0x12,0x0a,0x06,0x10,0x7e,0x52,0x7e,0x14,0x12,0x1f,0x72,0x00 -+// 34665 蝩 ; -+,0x08,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x0c,0x0a,0x0f,0x72,0x01,0x00,0x0e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 34666 蝪 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x08,0x0d,0x0e,0x7b,0x02,0x01,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x40,0xfe,0xaa,0x4a,0x92,0x22,0x4a,0x84 -+// 34667 蝫 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x29,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x20,0x24,0xff,0x24,0x28,0xff,0x10,0x20,0x7e,0xc2,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 34668 蝬 ; -+,0x10,0x10,0x10,0x7c,0x54,0x54,0x54,0x54,0x7d,0x50,0x18,0x15,0x1e,0x64,0x00,0x01,0x00,0xaa,0x92,0xaa,0x82,0xfe,0x44,0xa2,0x7d,0x44,0xa8,0x28,0x10,0x28,0x47,0x82 -+// 34669 蝭 ; -+,0x10,0x10,0x10,0x10,0x7c,0x54,0x54,0x55,0x7c,0x50,0x18,0x14,0x1e,0x65,0x02,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x90,0x9e,0x90,0x90,0x50,0x3f,0x00 -+// 34670 蝮 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x1f,0x62,0x00,0x03,0x80,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7e,0x42,0xa4,0x18,0x24,0xc3,0x02 -+// 34671 蝯 ; -+,0x10,0x13,0x12,0x7d,0x54,0x55,0x54,0x55,0x7c,0x50,0x14,0x1e,0x75,0x02,0x0c,0x01,0x0e,0xf0,0x42,0x24,0xa8,0xfe,0x40,0xff,0x40,0x7c,0xc4,0xa8,0x10,0x28,0x47,0x82 -+// 34672 蝰 ; -+,0x08,0x08,0x09,0x08,0x3e,0x2a,0x2b,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x03,0x00,0x20,0x20,0xfe,0x50,0x4c,0xa7,0x7a,0x20,0xfc,0x00,0x20,0xfc,0x20,0x20,0xfe,0x00 -+// 34673 蝱 ; -+,0x00,0x00,0x3f,0x08,0x0f,0x00,0x04,0x3f,0x25,0x25,0x3f,0x26,0x05,0x07,0x79,0x00,0x80,0x40,0xff,0x00,0xfc,0x08,0x08,0x7f,0x49,0x49,0x7f,0x48,0x0a,0x8f,0x71,0x00 -+// 34674 蝲 ; -+,0x10,0x10,0x11,0x7c,0x55,0x55,0x55,0x7d,0x55,0x10,0x18,0x14,0x1f,0x75,0x02,0x00,0x41,0x41,0xf1,0x41,0xf5,0x55,0x55,0x55,0xf5,0xc5,0xe5,0xd9,0x51,0x41,0x45,0x42 -+// 34675 蝳 ; -+,0x10,0x11,0x10,0x7c,0x54,0x55,0x54,0x54,0x7c,0x13,0x18,0x14,0x1e,0x64,0x00,0x00,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0xa4,0xff,0xa4,0x94,0xff,0x04,0x14,0x08 -+// 34676 蝴 ; -+,0x10,0x10,0x10,0x13,0x7c,0x54,0x54,0x55,0x55,0x7d,0x11,0x19,0x14,0x1e,0x64,0x00,0x80,0x8f,0x89,0xe9,0x8f,0x89,0x89,0xc9,0x4f,0x49,0x49,0xd1,0x11,0x21,0x45,0x82 -+// 34677 蝵 ; -+,0x03,0x3c,0x04,0x3f,0x0e,0x15,0x25,0x44,0x00,0x0f,0x08,0x0f,0x08,0x00,0x3f,0x00,0x10,0x10,0x52,0x53,0x14,0x28,0x44,0x83,0x80,0xf8,0x88,0xf8,0x88,0xfc,0x86,0x04 -+// 34678 蝶 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x09,0x0a,0x0f,0x72,0x00,0x01,0x02,0x24,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0xfe,0x10,0xff,0x38,0x54,0x52,0x93,0x12,0x10 -+// 34679 蝷 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x1f,0x75,0x01,0x02,0x04,0x20,0x10,0xff,0x44,0x28,0xff,0x10,0x52,0x52,0x52,0x7e,0x52,0x10,0x20,0x40,0x80 -+// 34680 蝸 ; -+,0x10,0x10,0x10,0x10,0x7c,0x54,0x54,0x55,0x7d,0x51,0x19,0x15,0x1f,0x75,0x01,0x01,0x00,0xfc,0x84,0xf4,0x94,0x94,0x94,0xfe,0x02,0x7a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 34681 蝹 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x09,0x0d,0x0b,0x0f,0x71,0x07,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 34682 蝺 ; -+,0x10,0x11,0x10,0x7c,0x54,0x54,0x54,0x7c,0x55,0x11,0x19,0x15,0x1f,0x65,0x01,0x01,0x0e,0xf0,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x11,0x15,0x1f,0xe5,0x01,0x05,0x02 -+// 34683 蝻 ; -+,0x10,0x10,0x13,0x7c,0x54,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x01,0x01,0x20,0x20,0xff,0x20,0x20,0xfe,0x4a,0x4a,0xfe,0x22,0xfe,0x22,0x22,0x22,0x2a,0x04 -+// 34684 蝼 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x09,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x92,0x54,0xfe,0x38,0x57,0x92,0x20,0x20,0xff,0x44,0x68,0x18,0x24,0x42,0x80 -+// 34685 蝽 ; -+,0x10,0x10,0x11,0x7c,0x54,0x54,0x57,0x54,0x7c,0x51,0x1a,0x14,0x1e,0x64,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x48,0x84,0xff,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 34686 蝾 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x01,0x00,0x24,0x24,0xff,0x24,0x00,0xff,0x91,0x10,0xff,0x30,0x38,0x54,0x53,0x92,0x10,0x10 -+// 34687 蝿 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x11,0x11,0x0f -+// 34688 螀 ; -+,0x04,0x04,0x44,0x35,0x26,0x0c,0x77,0x24,0x04,0x04,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x80,0xfc,0x84,0x48,0x30,0xc8,0xff,0x88,0x28,0x90,0xf8,0x88,0xf8,0x84,0xfe,0x82 -+// 34689 螁 ; -+,0x10,0x12,0x11,0x11,0x7d,0x54,0x57,0x54,0x7c,0x10,0x18,0x14,0x1e,0x65,0x02,0x00,0x00,0x3e,0x22,0xbe,0x22,0x22,0xbe,0xa1,0xba,0xa4,0xa2,0xb2,0xa0,0x40,0x3f,0x00 -+// 34690 螂 ; -+,0x11,0x10,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x01,0x00,0x00,0x8f,0xe9,0x29,0x2a,0xea,0x2c,0x2a,0xea,0x09,0x49,0x2d,0x7a,0xa8,0x08,0x08 -+// 34691 螃 ; -+,0x10,0x10,0x11,0x7c,0x54,0x55,0x55,0x54,0x7c,0x50,0x14,0x12,0x1f,0x62,0x01,0x02,0x20,0x10,0xff,0x44,0x28,0xff,0x21,0x10,0xfe,0x20,0x3c,0x44,0x44,0x84,0x14,0x08 -+// 34692 螄 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x7d,0x55,0x51,0x19,0x15,0x1f,0x65,0x01,0x00,0x80,0x9f,0xc4,0x44,0x44,0xdf,0x15,0x15,0x15,0xd5,0x55,0x55,0x57,0xc4,0x04,0x04 -+// 34693 螅 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0d,0x0b,0x0f,0x72,0x00,0x20,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x20,0x18,0x52,0x45,0x45,0x7c,0x00 -+// 34694 螆 ; -+,0x08,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x84,0x46,0x28,0xff,0x44,0x66,0x44,0x99,0xee,0x22,0x44,0x44,0xa9,0xff,0x21,0x00 -+// 34695 螇 ; -+,0x08,0x09,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0d,0x0a,0x0f,0x72,0x01,0x02,0x0e,0xf0,0x22,0x94,0xa0,0x44,0xf8,0x44,0xfe,0x22,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 34696 螈 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0e,0x73,0x01,0x02,0x04,0x00,0xff,0x88,0x90,0xbe,0xa2,0xbe,0xa2,0xa2,0xbe,0x88,0xaa,0x2a,0x49,0xa9,0x10 -+// 34697 螉 ; -+,0x10,0x10,0x10,0x7c,0x55,0x54,0x54,0x55,0x7d,0x10,0x10,0x18,0x15,0x1e,0x64,0x00,0x48,0x48,0x84,0xa4,0x4b,0xfc,0x04,0xfe,0x32,0xaa,0x66,0xaa,0x32,0x22,0xaa,0x44 -+// 34698 螊 ; -+,0x11,0x10,0x13,0x10,0x7d,0x54,0x57,0x54,0x7c,0x11,0x18,0x14,0x1d,0x66,0x04,0x00,0x04,0x88,0xfe,0x50,0xfc,0x54,0xff,0x54,0x54,0xfc,0x50,0xd8,0x56,0x53,0x52,0x50 -+// 34699 螋 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x01,0x06,0x10,0x50,0x96,0x92,0xd6,0x92,0xfe,0x10,0xfe,0x84,0x44,0x28,0x10,0x68,0x87,0x02 -+// 34700 螌 ; -+,0x08,0x1f,0x19,0x15,0x3f,0x15,0x11,0x25,0x42,0x00,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x3c,0x24,0x24,0x43,0xbc,0x24,0x24,0x18,0xa7,0xc2,0xf8,0x88,0xf8,0x84,0xfe,0x04 -+// 34701 融 ; -+,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x55,0x49,0x7f,0x49,0x49,0x49,0x4b,0x00,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x49,0x08,0x0a,0x09,0x0f,0x71,0x00 -+// 34702 螎 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xff,0x00,0x7c,0x44,0x7c,0x00,0xfe,0xc6,0xaa,0xfe,0x92,0x92,0x92,0x9a,0x84 -+// 34703 螏 ; -+,0x10,0x10,0x10,0x7c,0x56,0x55,0x54,0x7c,0x55,0x1a,0x14,0x1e,0x75,0x01,0x02,0x04,0x10,0x08,0xff,0x90,0x98,0x90,0xbe,0xa8,0xc8,0xbf,0x88,0x94,0x14,0x22,0x43,0x82 -+// 34704 螐 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x20,0xfe,0x82,0x82,0xfe,0x80,0xff,0x80,0xff,0x09,0xa5,0x95,0x91,0x05,0x02 -+// 34705 螑 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x08,0x0d,0x0a,0x0f,0x72,0x01,0x02,0x20,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 34706 螒 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x23,0x3e,0x22,0x22,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x10,0x10,0x28,0x44,0x93,0x12,0x10,0x7c,0x54,0x54,0x7c,0x14,0x12,0x1f,0xe2,0x00 -+// 34707 螓 ; -+,0x10,0x10,0x11,0x7c,0x54,0x54,0x55,0x54,0x7c,0x51,0x1a,0x14,0x1e,0x64,0x01,0x00,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x44,0xfe,0x11,0xfe,0x38,0x54,0x93,0x12,0x10 -+// 34708 螔 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x55,0x11,0x15,0x1f,0x73,0x21,0x02,0x05,0x0e,0xf0,0x1c,0x10,0x7f,0x52,0x7c,0x52,0x4e,0x40,0x5c,0x54,0x55,0x55,0xa7,0x40 -+// 34709 螕 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x54,0x7d,0x11,0x19,0x15,0x1f,0x65,0x01,0x00,0x20,0x40,0xfe,0x4a,0x32,0x4a,0xfe,0x00,0x10,0x12,0xdc,0x10,0x51,0x91,0x0f,0x00 -+// 34710 螖 ; -+,0x10,0x10,0x10,0x7c,0x54,0x55,0x55,0x56,0x7c,0x10,0x14,0x12,0x1e,0x62,0x00,0x00,0x00,0x7c,0x44,0x74,0x54,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 34711 螗 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x11,0x15,0x1f,0x75,0x02,0x02,0x04,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x42,0x42,0x42,0x7e,0x00 -+// 34712 螘 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2b,0x2a,0x3e,0x28,0x0a,0x0f,0x72,0x00,0x03,0x00,0x10,0x10,0x92,0x92,0xfe,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x44,0x28,0xff,0x00 -+// 34713 螙 ; -+,0x00,0x00,0x1f,0x01,0x02,0x0c,0x34,0x04,0x3f,0x25,0x3f,0x04,0x05,0x07,0x79,0x00,0x80,0x80,0xfe,0xa0,0x98,0x87,0x8a,0x08,0x7e,0x4a,0x7e,0x48,0x0a,0x8f,0x71,0x00 -+// 34714 螚 ; -+,0x08,0x11,0x3f,0x01,0x1f,0x11,0x1f,0x11,0x15,0x12,0x0f,0x08,0x0f,0x08,0x00,0x3f,0x20,0x2c,0xb0,0x22,0x1e,0x24,0x38,0x22,0x3e,0x80,0xfc,0x84,0xfc,0x88,0xfe,0x84 -+// 34715 螛 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3f,0x08,0x08,0x0a,0x0f,0x7a,0x00,0x00,0x20,0x10,0xff,0x11,0xfe,0x10,0xfe,0x10,0xff,0x10,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 34716 螜 ; -+,0x04,0x3f,0x04,0x1e,0x00,0x3f,0x21,0x5e,0x00,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x00,0x3c,0xa4,0x24,0x43,0x7e,0xa4,0x18,0x64,0x83,0xf8,0x88,0xf8,0x84,0xfe,0x04,0x00 -+// 34717 螝 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x01,0x20,0x40,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x2a,0x2a,0x2f,0x48,0x49,0x8f,0x00 -+// 34718 螞 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xfe,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x01,0xa9,0xa9,0xa9,0x01,0x0a,0x04 -+// 34719 螟 ; -+,0x10,0x11,0x11,0x7e,0x54,0x54,0x54,0x54,0x7c,0x50,0x19,0x14,0x1e,0x64,0x01,0x02,0x00,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x20,0x10,0xff,0x48,0x44,0x86,0x03,0x02 -+// 34720 螠 ; -+,0x11,0x10,0x10,0x10,0x7d,0x54,0x54,0x55,0x7e,0x10,0x10,0x14,0x1e,0x75,0x00,0x00,0x04,0x86,0x48,0x00,0xff,0x48,0x84,0x03,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 34721 螡 ; -+,0x00,0x00,0x1f,0x03,0x00,0x07,0x38,0x04,0x1f,0x15,0x1f,0x04,0x05,0x07,0x39,0x00,0x80,0x40,0xfe,0x30,0xc0,0x30,0x0e,0x08,0x3e,0x2a,0x3e,0x08,0x0a,0x8f,0x71,0x00 -+// 34722 螢 ; -+,0x04,0x15,0x16,0x04,0x0a,0x11,0x3f,0x20,0x00,0x0f,0x08,0x0f,0x08,0x00,0x00,0x1f,0x10,0x52,0x54,0x10,0x28,0x44,0xfe,0x82,0x80,0xf8,0x88,0xf8,0x88,0x84,0xfe,0x04 -+// 34723 螣 ; -+,0x01,0x3c,0x25,0x24,0x3f,0x24,0x24,0x25,0x3e,0x24,0x24,0x24,0x24,0x54,0x49,0x00,0x24,0xa8,0xfc,0x20,0xff,0x50,0xac,0x23,0xfc,0xa4,0xfc,0xa8,0x24,0x3e,0xc4,0x00 -+// 34724 螤 ; -+,0x10,0x08,0x7f,0x32,0x0c,0x12,0x69,0x3e,0x2a,0x2a,0x3e,0x2a,0x09,0x0f,0x79,0x00,0x08,0x08,0x08,0x7f,0x49,0x49,0xff,0x49,0x49,0x7f,0x08,0x14,0x14,0xa2,0x23,0x42 -+// 34725 螥 ; -+,0x10,0x10,0x10,0x10,0x7d,0x56,0x54,0x54,0x7c,0x10,0x18,0x14,0x1f,0x65,0x02,0x04,0x20,0x20,0x50,0xac,0x13,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfc,0x44,0x44,0x7c,0x44 -+// 34726 螦 ; -+,0x10,0x11,0x10,0x7c,0x54,0x55,0x54,0x7c,0x54,0x10,0x18,0x14,0x1e,0x64,0x01,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x20,0x44,0xf8,0x22,0xff,0x12,0x94,0x93,0x52,0x20 -+// 34727 螧 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x2b,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x20,0x24,0xfc,0x28,0xff,0x60,0xf8,0x42,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42 -+// 34728 螨 ; -+,0x10,0x10,0x11,0x7c,0x54,0x57,0x54,0x55,0x7d,0x11,0x19,0x15,0x1f,0x75,0x01,0x00,0x48,0x48,0xfe,0x48,0x00,0xff,0x48,0xfe,0x4a,0x4a,0x4a,0xb6,0x16,0x22,0x06,0x00 -+// 34729 螩 ; -+,0x10,0x10,0x10,0x11,0x7f,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x75,0x01,0x01,0x90,0xd0,0x9f,0x11,0x2a,0x04,0x4a,0x75,0x44,0x5f,0x44,0x56,0x65,0x45,0x14,0x08 -+// 34730 螪 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x20,0x10,0xff,0x44,0x28,0xfe,0xaa,0xa6,0xc6,0xba,0xaa,0xaa,0xba,0x82,0x8a,0x84 -+// 34731 螫 ; -+,0x04,0x1f,0x04,0x7f,0x0a,0x2b,0x52,0x12,0x24,0x0f,0x08,0x0f,0x08,0x00,0x3f,0x00,0x20,0x20,0x3f,0xa4,0x64,0x18,0x98,0x67,0x82,0xfc,0x84,0xfc,0x88,0xfe,0x04,0x00 -+// 34732 螬 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x28,0x28,0xff,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 34733 螭 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x09,0x0d,0x0b,0x0f,0x73,0x01,0x01,0x20,0x10,0xff,0x00,0xaa,0x92,0xaa,0xfe,0x10,0xff,0x21,0x49,0xfd,0x09,0x05,0x02 -+// 34734 螮 ; -+,0x11,0x11,0x13,0x7d,0x55,0x56,0x55,0x55,0x7e,0x10,0x18,0x14,0x1e,0x64,0x00,0x00,0x54,0x54,0xff,0x54,0x73,0x00,0xff,0x11,0x11,0xfe,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 34735 螯 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x3f,0x0f,0x09,0x15,0x62,0x0f,0x08,0x0f,0x08,0x00,0x1f,0x20,0x20,0x3e,0x44,0xa4,0x24,0x18,0x24,0x42,0x81,0xf8,0x88,0xf8,0x88,0xfc,0x04 -+// 34736 螰 ; -+,0x10,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x02,0x04,0x20,0x10,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x48,0x4a,0x7c,0x48,0x49,0x69,0x47,0x00 -+// 34737 螱 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x20,0x3f,0x44,0x15,0x25,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x84,0x84,0x84,0x3f,0x04,0x24,0x94,0x04,0x14,0x48,0xfc,0x44,0xfc,0x48,0x7e,0x84 -+// 34738 螲 ; -+,0x10,0x10,0x11,0x7d,0x56,0x54,0x54,0x54,0x7c,0x10,0x18,0x14,0x1e,0x64,0x01,0x00,0x20,0x10,0xff,0x45,0x82,0xfd,0x20,0x44,0xfe,0x12,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 34739 螳 ; -+,0x10,0x10,0x10,0x7c,0x55,0x55,0x56,0x54,0x7c,0x10,0x18,0x15,0x1e,0x64,0x03,0x00,0x10,0x92,0x54,0x10,0xff,0x02,0xfc,0x84,0xfc,0xa4,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 34740 螴 ; -+,0x00,0x3f,0x24,0x29,0x29,0x25,0x35,0x29,0x20,0x21,0x2f,0x08,0x0f,0x00,0x00,0x3f,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x70,0xac,0xf8,0x88,0xf8,0x84,0xfe,0x04 -+// 34741 螵 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x09,0x0c,0x0a,0x0e,0x72,0x01,0x00,0x00,0xff,0x28,0xfe,0xaa,0xfe,0x00,0xfe,0x00,0xff,0x10,0x94,0xd2,0x93,0x52,0x20 -+// 34742 螶 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x04,0x3f,0x25,0x25,0x3f,0x05,0x07,0x7d,0x00,0xfe,0x00,0xf8,0x08,0xf8,0x00,0xfe,0x08,0x7e,0x4a,0x4a,0x7e,0x08,0x8a,0x0f,0xf2 -+// 34743 螷 ; -+,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x11,0x17,0x14,0x27,0x20,0x40,0x0f,0x00,0x40,0xff,0x80,0xfc,0x44,0xfc,0x84,0xfc,0x40,0xfc,0x44,0xfc,0x44,0x7f,0x82,0x00 -+// 34744 螸 ; -+,0x14,0x2a,0x49,0x14,0x22,0x5f,0x12,0x1e,0x00,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x00,0x20,0x20,0x3f,0x42,0x54,0x90,0x28,0x47,0x82,0xfc,0x84,0xfc,0x88,0x84,0xfe,0x04 -+// 34745 螹 ; -+,0x10,0x10,0x13,0x10,0x7f,0x56,0x57,0x56,0x7e,0x13,0x18,0x17,0x1e,0x64,0x00,0x00,0x80,0x83,0xec,0x88,0xe8,0xaf,0xea,0xaa,0xaa,0xea,0x8a,0xf2,0x92,0x92,0xa2,0xa2 -+// 34746 螺 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0c,0x0b,0x0e,0x72,0x01,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x24,0x78,0x14,0x22,0xff,0x12,0x54,0x92,0x51,0x20 -+// 34747 螻 ; -+,0x10,0x11,0x11,0x7f,0x55,0x55,0x54,0x55,0x7d,0x11,0x18,0x15,0x1e,0x64,0x00,0x03,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x40,0xfe,0x88,0x70,0x88,0x06 -+// 34748 螼 ; -+,0x08,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x08,0x0d,0x0a,0x0e,0x72,0x03,0x00,0x44,0x44,0xff,0x44,0x7c,0x10,0xfe,0x92,0xfe,0x10,0xff,0x10,0xfe,0x10,0xff,0x00 -+// 34749 螽 ; -+,0x02,0x03,0x06,0x39,0x00,0x07,0x78,0x04,0x04,0x3f,0x25,0x3f,0x04,0x05,0x07,0x39,0x00,0xf8,0x10,0x20,0xc0,0x38,0x87,0x68,0x08,0x7e,0x4a,0x7e,0x08,0x0a,0x8f,0x72 -+// 34750 螾 ; -+,0x10,0x10,0x11,0x7d,0x54,0x54,0x54,0x7c,0x54,0x10,0x18,0x14,0x1e,0x64,0x00,0x01,0x20,0x10,0xff,0x01,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x82,0x48,0x44,0x83,0x02 -+// 34751 螿 ; -+,0x04,0x24,0x25,0x3c,0x04,0x7d,0x24,0x24,0x24,0x4f,0x08,0x0f,0x00,0x00,0x1f,0x00,0x80,0xfe,0x44,0x38,0xe4,0xff,0x44,0x54,0x88,0xfc,0x84,0xfc,0x84,0xfe,0x84,0x00 -+// 34752 蟀 ; -+,0x08,0x08,0x0b,0x08,0x3f,0x2a,0x2a,0x2b,0x3e,0x2a,0x08,0x0d,0x0a,0x7f,0x02,0x00,0x40,0x20,0xfe,0x21,0x4a,0xf4,0xa2,0x49,0xfc,0x24,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 34753 蟁 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x11,0x16,0x18,0x04,0x3f,0x25,0x3f,0x05,0x07,0x39,0x00,0xfc,0x04,0xfc,0x40,0xfc,0x20,0x11,0x0d,0x12,0x7e,0x52,0x7e,0x54,0x9f,0x72,0x00 -+// 34754 蟂 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x09,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x22,0xfa,0x76,0x70,0xa8,0x26,0x24,0x20 -+// 34755 蟃 ; -+,0x10,0x10,0x10,0x7c,0x54,0x54,0x55,0x7d,0x11,0x10,0x14,0x1e,0x72,0x00,0x01,0x06,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfc,0x48,0x30,0x48,0x87,0x02 -+// 34756 蟄 ; -+,0x08,0x7f,0x08,0x3e,0x12,0x7f,0x08,0x7f,0x08,0x0f,0x08,0x0f,0x08,0x00,0x1f,0x00,0x10,0x10,0x7c,0x14,0x94,0x64,0x35,0x55,0x83,0xf8,0x88,0xf8,0x88,0xfc,0x06,0x04 -+// 34757 蟅 ; -+,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x1f,0x65,0x02,0x02,0x20,0x10,0xff,0x00,0x24,0x24,0xff,0x24,0x24,0x3c,0x00,0x55,0x55,0x55,0x95,0x00 -+// 34758 蟆 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x08,0x0d,0x0a,0x0f,0x72,0x01,0x02,0x48,0x48,0xff,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x50,0x88,0x07,0x02 -+// 34759 蟇 ; -+,0x02,0x3f,0x02,0x0f,0x09,0x08,0x0f,0x02,0x7f,0x04,0x1f,0x64,0x07,0x00,0x00,0x1f,0x20,0xff,0x20,0xf8,0x08,0x88,0xf8,0x00,0xff,0x88,0xf7,0x92,0xf0,0x90,0xfc,0x88 -+// 34760 蟈 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x7f,0x25,0x01,0x00,0x00,0xff,0x09,0x09,0xff,0x09,0x79,0x55,0x75,0x07,0x35,0xc1,0x01,0xff,0x01,0x00 -+// 34761 蟉 ; -+,0x10,0x13,0x12,0x11,0x7c,0x55,0x56,0x54,0x7c,0x17,0x18,0x14,0x1e,0x64,0x00,0x03,0x00,0xde,0x52,0x4a,0xc6,0x5a,0x24,0x50,0xac,0x33,0xc8,0x32,0xcc,0x30,0xc0,0x00 -+// 34762 蟊 ; -+,0x1f,0x01,0x00,0x3f,0x03,0x0c,0x71,0x04,0x3f,0x25,0x25,0x3f,0x06,0x05,0x7f,0x01,0xf8,0x10,0xa0,0xfe,0x44,0x40,0xc8,0x88,0x7e,0x4a,0x4a,0x7e,0x08,0x0a,0xff,0x02 -+// 34763 蟋 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3f,0x2a,0x08,0x0a,0x0f,0x71,0x01,0x00,0x0e,0xf0,0x10,0x92,0x54,0xff,0x38,0x54,0x93,0x20,0x10,0x52,0x45,0x45,0x7c,0x00 -+// 34764 蟌 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x71,0x01,0x00,0x10,0x20,0xfe,0xa2,0xba,0xea,0x92,0xaa,0xfe,0x22,0x90,0x5a,0x55,0x45,0x7c,0x00 -+// 34765 蟍 ; -+,0x10,0x13,0x10,0x7f,0x54,0x55,0x56,0x54,0x7c,0x10,0x19,0x14,0x1e,0x64,0x01,0x00,0x02,0xf2,0x8a,0xea,0x8a,0xca,0xa2,0x8a,0x94,0x10,0xff,0x38,0x54,0x93,0x12,0x10 -+// 34766 蟎 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2b,0x2a,0x3f,0x29,0x0d,0x0b,0x0f,0x73,0x01,0x01,0x44,0x44,0xff,0x44,0x7c,0x00,0xff,0x10,0xff,0x11,0x99,0x55,0x55,0xbb,0x11,0x13 -+// 34767 蟏 ; -+,0x10,0x10,0x13,0x7c,0x54,0x55,0x54,0x57,0x7c,0x11,0x18,0x15,0x1d,0x66,0x03,0x04,0x88,0x88,0xff,0x88,0x20,0xfc,0x24,0xff,0x24,0xfc,0x22,0x2a,0xaa,0xa6,0x26,0x22 -+// 34768 蟐 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2a,0x3e,0x08,0x08,0x0a,0x0f,0x72,0x00,0x00,0x10,0x92,0x54,0xff,0x81,0x7c,0x44,0x7c,0x10,0xfe,0x92,0x92,0x92,0x96,0x10,0x10 -+// 34769 蟑 ; -+,0x10,0x11,0x10,0x7c,0x57,0x54,0x54,0x54,0x7c,0x10,0x10,0x14,0x1f,0x72,0x00,0x00,0x20,0xfe,0x84,0x48,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 34770 蟒 ; -+,0x10,0x10,0x13,0x7c,0x54,0x55,0x54,0x54,0x7d,0x12,0x11,0x14,0x1e,0x74,0x00,0x01,0x48,0x48,0xff,0x48,0x20,0xff,0x48,0x84,0x4b,0x48,0xfe,0x48,0x48,0x88,0x88,0x08 -+// 34771 蟓 ; -+,0x10,0x10,0x10,0x7d,0x56,0x54,0x54,0x54,0x7d,0x12,0x18,0x15,0x1e,0x64,0x03,0x00,0x40,0x7c,0x88,0xfe,0x92,0xa2,0xfe,0x40,0xa2,0x54,0x98,0x2c,0x4b,0x8a,0x28,0x10 -+// 34772 蟔 ; -+,0x10,0x11,0x11,0x11,0x7d,0x55,0x54,0x55,0x7c,0x10,0x1b,0x14,0x1e,0x64,0x01,0x00,0x00,0xfe,0x22,0xa6,0x6a,0xfe,0x20,0xfe,0x20,0x20,0xff,0x00,0xaa,0xa9,0x29,0x00 -+// 34773 蟕 ; -+,0x10,0x11,0x11,0x7d,0x55,0x57,0x54,0x54,0x7c,0x10,0x18,0x14,0x1e,0x75,0x01,0x02,0x48,0x49,0x7e,0x48,0x49,0xf7,0x3c,0x48,0xfe,0x92,0xfe,0x92,0xfe,0x12,0x12,0x06 -+// 34774 蟖 ; -+,0x11,0x11,0x11,0x7f,0x55,0x55,0x55,0x55,0x7d,0x17,0x10,0x15,0x1d,0x66,0x02,0x00,0x20,0x23,0x2c,0xf8,0x28,0xe8,0x2f,0xea,0x2a,0xfa,0x0a,0x4a,0x2a,0x32,0x12,0x22 -+// 34775 蟗 ; -+,0x00,0x3f,0x08,0x0f,0x00,0x3f,0x24,0x07,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x3f,0x80,0xfe,0x88,0xf8,0x80,0xff,0x92,0xf0,0x88,0xf8,0x80,0xf8,0x88,0xf8,0x84,0xfe -+// 34776 蟘 ; -+,0x08,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x3e,0x2a,0x08,0x0a,0x0f,0x72,0x00,0x01,0x48,0x48,0xbf,0x88,0x85,0x85,0xfe,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86,0x04 -+// 34777 蟙 ; -+,0x11,0x10,0x13,0x7d,0x54,0x57,0x54,0x55,0x7d,0x11,0x19,0x15,0x1e,0x64,0x00,0x00,0x08,0x88,0xfa,0x29,0xc9,0xff,0x08,0xea,0x2b,0xea,0x2c,0xe8,0x15,0x23,0xc1,0x00 -+// 34778 蟚 ; -+,0x04,0x7f,0x04,0x3f,0x11,0x1f,0x11,0x0a,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x00,0xc2,0x0c,0xb1,0x02,0x0c,0x31,0x06,0x58,0x40,0xfe,0x42,0xfe,0x42,0x7f,0x82 -+// 34779 蟛 ; -+,0x10,0x10,0x13,0x7c,0x55,0x54,0x55,0x55,0x7d,0x10,0x19,0x15,0x1e,0x74,0x03,0x00,0x80,0x81,0xf2,0x84,0xe8,0x01,0xe2,0x24,0xe8,0x00,0x11,0x11,0xa2,0x74,0x88,0x00 -+// 34780 蟜 ; -+,0x10,0x11,0x10,0x13,0x7c,0x55,0x56,0x54,0x7c,0x11,0x19,0x15,0x1f,0x65,0x01,0x01,0x0c,0xf0,0x40,0xff,0x88,0xfc,0x8a,0xf9,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x0a,0x04 -+// 34781 蟝 ; -+,0x11,0x10,0x12,0x7d,0x54,0x55,0x54,0x7c,0x54,0x11,0x14,0x12,0x1f,0x62,0x01,0x00,0x00,0x9f,0x10,0x5e,0x52,0xde,0x90,0x9f,0x10,0xff,0x38,0x34,0x52,0x93,0x12,0x10 -+// 34782 蟞 ; -+,0x04,0x24,0x15,0x3f,0x2e,0x2d,0x35,0x24,0x00,0x1f,0x10,0x1f,0x10,0x00,0x3f,0x00,0x10,0x90,0x3f,0xa2,0xd4,0x88,0x94,0xa3,0x80,0xfc,0x84,0xfc,0x88,0xfc,0x86,0x04 -+// 34783 蟟 ; -+,0x08,0x08,0x09,0x09,0x3e,0x2a,0x2b,0x2a,0x3e,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0x10,0xff,0x29,0xc6,0xfe,0x45,0x7c,0x44,0x7c,0x10,0x54,0x52,0x93,0x52,0x20 -+// 34784 蟠 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x08,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x0e,0xf0,0x92,0x54,0xff,0x38,0x54,0x92,0xff,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 34785 蟡 ; -+,0x08,0x09,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x01,0x02,0x07,0xf8,0xa2,0x54,0x00,0xfc,0x84,0xfe,0x82,0xff,0x81,0xab,0xab,0xcb,0x05,0x02 -+// 34786 蟢 ; -+,0x08,0x09,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x09,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x10,0xfe,0x10,0xfe,0x00,0xfc,0x84,0xfc,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x00 -+// 34787 蟣 ; -+,0x10,0x10,0x11,0x13,0x7c,0x55,0x57,0x54,0x55,0x7c,0x10,0x14,0x1e,0x65,0x01,0x02,0x10,0x92,0x55,0xff,0x92,0x54,0xf7,0x50,0xff,0x52,0x52,0x8c,0x99,0x29,0x45,0x02 -+// 34788 蟤 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x54,0x54,0x7d,0x50,0x18,0x15,0x1e,0x64,0x00,0x01,0x00,0xef,0x29,0xef,0x08,0x29,0xe7,0x44,0xff,0x44,0x44,0xff,0x44,0x42,0x83,0x02 -+// 34789 蟥 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x08,0x0a,0x0f,0x7a,0x00,0x00,0x01,0x48,0x48,0xfe,0x48,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x42,0x83,0x02 -+// 34790 蟦 ; -+,0x10,0x11,0x10,0x7c,0x55,0x54,0x54,0x54,0x7c,0x10,0x14,0x12,0x1f,0x72,0x00,0x01,0x10,0xff,0x10,0x44,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x83,0x02 -+// 34791 蟧 ; -+,0x10,0x10,0x11,0x7d,0x54,0x55,0x55,0x55,0x7c,0x11,0x10,0x14,0x1e,0x74,0x01,0x02,0x44,0x55,0x55,0x44,0xaa,0x11,0xfe,0x02,0x20,0xfc,0x24,0x44,0x44,0x84,0x14,0x08 -+// 34792 蟨 ; -+,0x3f,0x28,0x25,0x3f,0x22,0x2a,0x2f,0x22,0x24,0x3f,0x24,0x27,0x20,0x40,0x5f,0x00,0xff,0x90,0x1f,0xd5,0x24,0x84,0xca,0x12,0x61,0xfc,0x44,0xfc,0x48,0x7e,0x84,0x00 -+// 34793 蟩 ; -+,0x10,0x11,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1f,0x65,0x02,0x05,0x00,0xff,0x04,0x94,0x67,0xf9,0x40,0x54,0x54,0x54,0xf4,0x44,0x4a,0x4a,0x91,0x21 -+// 34794 蟪 ; -+,0x10,0x11,0x10,0x7c,0x54,0x54,0x54,0x54,0x7c,0x11,0x18,0x15,0x1f,0x75,0x02,0x00,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x14,0xff,0x02,0x51,0x49,0x42,0x3e,0x00 -+// 34795 蟫 ; -+,0x10,0x13,0x10,0x11,0x7d,0x55,0x54,0x54,0x54,0x7c,0x10,0x10,0x14,0x1f,0x74,0x00,0x00,0xff,0x48,0xff,0x49,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10 -+// 34796 蟬 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x00,0xee,0xaa,0xee,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 34797 蟭 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x28,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x50,0x48,0x40,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x48,0x7f,0x00,0x55,0x55,0x95,0x00 -+// 34798 蟮 ; -+,0x08,0x08,0x09,0x3e,0x2a,0x2a,0x2a,0x2a,0x3e,0x09,0x0c,0x0a,0x0f,0x72,0x00,0x00,0x82,0x44,0xff,0x10,0xfe,0x10,0xff,0x92,0x54,0xff,0x00,0x7e,0x42,0x42,0x7e,0x42 -+// 34799 蟯 ; -+,0x08,0x08,0x08,0x3e,0x2b,0x2a,0x2b,0x3e,0x2b,0x08,0x0d,0x0a,0x0f,0x72,0x00,0x01,0x20,0x20,0xfc,0x20,0xfe,0x84,0xce,0x84,0xdf,0x00,0xfe,0x48,0x48,0x89,0x87,0x00 -+// 34800 蟰 ; -+,0x10,0x10,0x10,0x7d,0x54,0x54,0x55,0x7d,0x55,0x11,0x19,0x15,0x1f,0x65,0x02,0x04,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x55,0x55,0xd7,0x11,0xd7,0x55,0x55,0x59,0x10 -+// 34801 蟱 ; -+,0x10,0x10,0x10,0x7d,0x56,0x54,0x55,0x54,0x7c,0x54,0x1b,0x14,0x1e,0x74,0x01,0x00,0x40,0x40,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xff,0x00,0xaa,0xa5,0x25,0x00 -+// 34802 蟲 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x00,0x3f,0x08,0x3e,0x2a,0x2a,0x3e,0x09,0x0f,0x71,0x00,0x80,0xf8,0x88,0xf8,0x84,0xfe,0x04,0x08,0x3e,0x2a,0x2a,0x3e,0x0a,0x8f,0x72,0x00 -+// 34803 蟳 ; -+,0x11,0x10,0x10,0x7c,0x55,0x54,0x55,0x54,0x7d,0x10,0x19,0x14,0x1e,0x74,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x00,0xde,0x92,0xde,0x04,0xff,0x84,0x64,0x44,0x14,0x08 -+// 34804 蟴 ; -+,0x12,0x7f,0x12,0x1e,0x12,0x7f,0x12,0x11,0x20,0x0f,0x08,0x0f,0x08,0x00,0x3f,0x00,0x06,0xb8,0x20,0x3f,0x24,0xa4,0x44,0x44,0x84,0xf8,0x88,0xf8,0x88,0xfc,0x84,0x00 -+// 34805 蟵 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x11,0x19,0x15,0x1f,0x65,0x02,0x04,0x00,0xff,0x02,0x02,0xf2,0x0f,0x72,0x5a,0x76,0x02,0x8a,0x52,0x3a,0xc2,0x0a,0x04 -+// 34806 蟶 ; -+,0x10,0x13,0x11,0x11,0x7d,0x55,0x55,0x57,0x7c,0x11,0x10,0x14,0x1e,0x74,0x03,0x00,0x00,0xf0,0x2f,0xe9,0x29,0xe9,0x2f,0xf9,0x20,0xff,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 34807 蟷 ; -+,0x10,0x11,0x10,0x7d,0x55,0x54,0x54,0x7c,0x54,0x11,0x19,0x15,0x1f,0x75,0x01,0x01,0x10,0x12,0x94,0xff,0x01,0xfe,0x82,0xfe,0x00,0xff,0x11,0xff,0x11,0x11,0xff,0x01 -+// 34808 蟸 ; -+,0x3f,0x03,0x04,0x39,0x06,0x39,0x06,0x38,0x04,0x1f,0x15,0x1f,0x06,0x05,0x3f,0x01,0xff,0x00,0x88,0xd0,0x70,0xa8,0x27,0xc8,0x08,0x7f,0x49,0x7f,0x0c,0x0a,0xff,0x02 -+// 34809 蟹 ; -+,0x10,0x1f,0x22,0x5f,0x15,0x1f,0x15,0x1f,0x25,0x4f,0x08,0x0f,0x08,0x00,0x3f,0x00,0x00,0x7e,0x22,0x46,0xa8,0x3e,0x48,0x3f,0x88,0xf8,0x88,0xf8,0x84,0xfe,0x04,0x00 -+// 34810 蟺 ; -+,0x10,0x13,0x10,0x11,0x7d,0x55,0x55,0x55,0x7c,0x10,0x18,0x14,0x1e,0x74,0x00,0x03,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 34811 蟻 ; -+,0x08,0x08,0x09,0x08,0x3e,0x2a,0x2b,0x2a,0x2b,0x3e,0x09,0x0c,0x0a,0x0f,0x72,0x00,0x84,0x48,0xfe,0x10,0xfe,0x10,0xff,0x20,0xca,0x49,0xff,0x69,0xc6,0x4d,0x55,0xc2 -+// 34812 蟼 ; -+,0x0a,0x7f,0x2a,0x3f,0x21,0x5d,0x15,0x1d,0x02,0x0f,0x08,0x08,0x0f,0x00,0x00,0x1f,0x20,0xa0,0x3f,0x22,0x52,0x94,0x08,0x17,0xa2,0xf8,0x88,0x88,0xf8,0x84,0xfe,0x04 -+// 34813 蟽 ; -+,0x10,0x12,0x11,0x11,0x7c,0x54,0x57,0x55,0x7d,0x11,0x11,0x15,0x1d,0x66,0x04,0x00,0x08,0x08,0x7e,0x08,0xff,0x14,0x7f,0x08,0x3f,0x08,0x7f,0x08,0x08,0x88,0x7f,0x00 -+// 34814 蟾 ; -+,0x10,0x10,0x10,0x7d,0x57,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x1f,0x65,0x02,0x02,0x40,0x7c,0x88,0xff,0x24,0x52,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x00 -+// 34815 蟿 ; -+,0x04,0x3f,0x04,0x3f,0x24,0x24,0x3f,0x04,0x7f,0x04,0x0f,0x08,0x0f,0x00,0x00,0x3f,0x3c,0xa4,0x24,0xc3,0xbe,0xa2,0x94,0x08,0x94,0xa3,0xf8,0x88,0xf8,0x84,0xfe,0x02 -+// 34816 蠀 ; -+,0x12,0x11,0x11,0x7c,0x54,0x57,0x54,0x54,0x7c,0x10,0x14,0x12,0x1f,0x62,0x00,0x01,0x10,0x9f,0x21,0xa8,0x88,0x94,0xa2,0xfe,0x82,0xca,0xa6,0x82,0xfe,0x44,0x83,0x02 -+// 34817 蠁 ; -+,0x08,0x13,0x3d,0x09,0x15,0x3d,0x05,0x09,0x11,0x20,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x80,0xef,0x2a,0xec,0x2c,0xea,0x49,0x6e,0xa8,0x80,0xfc,0x84,0xfc,0x84,0xfe,0x84 -+// 34818 蠂 ; -+,0x10,0x11,0x10,0x10,0x7f,0x54,0x54,0x54,0x7c,0x50,0x19,0x14,0x1e,0x74,0x01,0x00,0x44,0xff,0x44,0xa4,0xff,0xa4,0xbc,0x80,0xfe,0x10,0xff,0x38,0x54,0x93,0x12,0x10 -+// 34819 蠃 ; -+,0x00,0x3f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x00,0x38,0x2b,0x3a,0x2b,0x38,0x28,0x5b,0x80,0xfe,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x80,0x8e,0xea,0xae,0xea,0x8a,0xea,0x13 -+// 34820 蠄 ; -+,0x10,0x10,0x10,0x10,0x7f,0x54,0x54,0x54,0x7c,0x10,0x19,0x15,0x1f,0x75,0x01,0x01,0x10,0x28,0x44,0x93,0xfe,0x48,0xb4,0xcc,0xfc,0x20,0xfe,0x52,0x8a,0xfe,0x0a,0x06 -+// 34821 蠅 ; -+,0x10,0x11,0x11,0x7d,0x54,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1e,0x64,0x00,0x00,0x00,0xfe,0x52,0xde,0x50,0xde,0x52,0x52,0xde,0x52,0x52,0xde,0x51,0x51,0x3f,0x00 -+// 34822 蠆 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x3f,0x23,0x27,0x20,0x0f,0x08,0x0f,0x00,0x3f,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xfe,0x22,0xfa,0x92,0xf8,0x88,0xf8,0x84,0xfe -+// 34823 蠇 ; -+,0x10,0x13,0x10,0x7d,0x55,0x55,0x55,0x55,0x7c,0x11,0x19,0x15,0x1f,0x75,0x01,0x01,0x88,0xfe,0x88,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x4a,0xfe,0x0a,0x02,0x06 -+// 34824 蠈 ; -+,0x00,0x3e,0x23,0x3e,0x22,0x3e,0x22,0x3f,0x14,0x22,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x08,0x08,0xff,0x48,0xea,0x4c,0x89,0x15,0x93,0xa0,0xfc,0x84,0xfc,0x88,0xfe,0x84 -+// 34825 蠉 ; -+,0x10,0x10,0x10,0x7c,0x54,0x55,0x54,0x54,0x7c,0x50,0x18,0x14,0x1e,0x65,0x02,0x00,0x00,0xfe,0xaa,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0x52,0x4c,0x84,0xa3,0xc2,0x80 -+// 34826 蠊 ; -+,0x10,0x11,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x51,0x19,0x15,0x7f,0x05,0x02,0x04,0x10,0xff,0x44,0x28,0xff,0x28,0xfe,0x2a,0xff,0x2a,0xfe,0x6c,0x6c,0xab,0xaa,0x28 -+// 34827 蠋 ; -+,0x11,0x11,0x11,0x7d,0x54,0x54,0x55,0x56,0x7d,0x11,0x19,0x14,0x1e,0x75,0x00,0x00,0xfe,0x4a,0x4a,0xfe,0x80,0x80,0xfe,0x22,0xfa,0x2a,0xfa,0x32,0x2a,0xfe,0x0a,0x04 -+// 34828 蠌 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x2a,0x2b,0x3e,0x08,0x0c,0x0a,0x0f,0x7a,0x00,0x00,0xfe,0xaa,0xaa,0xfe,0x10,0xfe,0x10,0xff,0x44,0x28,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 34829 蠍 ; -+,0x10,0x11,0x11,0x7d,0x55,0x55,0x55,0x55,0x7f,0x55,0x11,0x15,0x1e,0x74,0x00,0x00,0x08,0xec,0x28,0xff,0x31,0xe4,0x04,0xf4,0x54,0x54,0xb4,0xd4,0x14,0x6a,0x11,0x21 -+// 34830 蠎 ; -+,0x08,0x09,0x08,0x08,0x3f,0x2a,0x2a,0x2a,0x3f,0x08,0x0d,0x0a,0x0f,0x72,0x00,0x01,0x48,0xff,0x48,0x20,0xff,0x48,0x54,0xbb,0x52,0x54,0xff,0x44,0x44,0x84,0x84,0x04 -+// 34831 蠏 ; -+,0x11,0x11,0x11,0x7e,0x54,0x57,0x56,0x57,0x7e,0x52,0x13,0x1a,0x1e,0x6a,0x04,0x08,0x00,0x1e,0xea,0x4a,0x92,0xe6,0xa4,0xf4,0xbf,0xb4,0xe4,0xbf,0xa4,0x24,0xa4,0x44 -+// 34832 蠐 ; -+,0x10,0x13,0x10,0x7f,0x55,0x55,0x56,0x56,0x7d,0x51,0x19,0x15,0x1f,0x65,0x02,0x04,0x20,0xff,0x51,0xae,0xaa,0xaa,0xad,0xa9,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04,0x04 -+// 34833 蠑 ; -+,0x10,0x12,0x12,0x7c,0x55,0x56,0x55,0x55,0x7c,0x11,0x14,0x1e,0x74,0x01,0x02,0x00,0x88,0xaa,0xda,0x88,0x54,0x22,0xff,0x22,0x20,0xfe,0x70,0xa8,0xa4,0x23,0x22,0x20 -+// 34834 蠒 ; -+,0x3f,0x06,0x18,0x7f,0x1a,0x14,0x14,0x1a,0x10,0x0f,0x08,0x08,0x0f,0x00,0x00,0x3f,0xff,0x88,0x86,0xfd,0xac,0x94,0x94,0xac,0x84,0xf8,0x88,0x88,0xf8,0x88,0xfe,0x04 -+// 34835 蠓 ; -+,0x10,0x13,0x10,0x7d,0x55,0x54,0x54,0x55,0x7c,0x10,0x19,0x14,0x1f,0x74,0x03,0x00,0x48,0xff,0x48,0xff,0x01,0xfc,0x00,0xff,0x42,0xa4,0x38,0xd8,0x36,0xd3,0x12,0x30 -+// 34836 蠔 ; -+,0x10,0x13,0x10,0x7c,0x54,0x55,0x56,0x55,0x7c,0x50,0x1b,0x14,0x1f,0x64,0x03,0x00,0x20,0xfe,0x88,0xf8,0x00,0xff,0x02,0xfc,0x60,0xac,0x70,0x98,0x34,0xd3,0x10,0x30 -+// 34837 蠕 ; -+,0x10,0x11,0x10,0x7d,0x55,0x56,0x54,0x7f,0x50,0x51,0x19,0x15,0x1f,0x65,0x01,0x00,0x00,0xff,0x20,0xff,0x22,0xa8,0x44,0xff,0x20,0xfe,0x52,0x52,0x52,0x52,0x56,0x00 -+// 34838 蠖 ; -+,0x10,0x13,0x10,0x7c,0x56,0x55,0x56,0x54,0x7c,0x50,0x18,0x14,0x1e,0x74,0x00,0x01,0x48,0xff,0x68,0x90,0xfe,0x90,0xfc,0x90,0xfe,0x90,0xfe,0x44,0x28,0x10,0x6c,0x83 -+// 34839 蠗 ; -+,0x10,0x13,0x12,0x7d,0x54,0x55,0x56,0x54,0x7c,0x11,0x12,0x18,0x14,0x1e,0x74,0x00,0x00,0xde,0x52,0x4a,0xc6,0x4a,0x72,0x92,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 34840 蠘 ; -+,0x10,0x10,0x11,0x7c,0x57,0x54,0x55,0x55,0x7f,0x11,0x19,0x15,0x1f,0x75,0x01,0x00,0x48,0x4c,0xea,0x48,0xff,0x08,0x49,0xe9,0x4a,0xea,0x44,0xec,0x55,0xe5,0x02,0x00 -+// 34841 蠙 ; -+,0x10,0x13,0x12,0x7c,0x55,0x55,0x54,0x57,0x7c,0x10,0x18,0x14,0x1e,0x74,0x00,0x01,0x20,0xff,0x01,0xfc,0x20,0x2c,0x70,0xfe,0x82,0xe2,0x9e,0x82,0xfe,0x48,0x86,0x02 -+// 34842 蠚 ; -+,0x02,0x3f,0x02,0x3f,0x02,0x0f,0x34,0x07,0x04,0x1f,0x15,0x1f,0x05,0x07,0x38,0x00,0x10,0xff,0x90,0xff,0x00,0xf8,0x08,0xf8,0x08,0x3e,0x2a,0x3e,0x0a,0x8f,0xb9,0x00 -+// 34843 蠛 ; -+,0x10,0x13,0x10,0x7c,0x55,0x55,0x55,0x54,0x7c,0x11,0x19,0x15,0x1f,0x65,0x02,0x04,0x48,0xff,0x48,0x00,0xfe,0x4a,0xfe,0x14,0x12,0xff,0x12,0x94,0x48,0x19,0x25,0x42 -+// 34844 蠜 ; -+,0x08,0x09,0x7e,0x09,0x1d,0x2a,0x09,0x7f,0x04,0x1f,0x68,0x0f,0x00,0x00,0x1f,0x00,0x08,0x48,0xbf,0x5c,0x5b,0xaa,0x48,0xff,0x88,0xfc,0x8b,0xf8,0x88,0xfe,0x04,0x00 -+// 34845 蠝 ; -+,0x10,0x10,0x10,0x7c,0x54,0x54,0x54,0x54,0x7d,0x11,0x11,0x19,0x15,0x1f,0x75,0x00,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x55,0x55,0xff,0x55,0x55,0xff,0x00 -+// 34846 蠞 ; -+,0x10,0x1f,0x24,0x5f,0x11,0x1f,0x11,0x1f,0x14,0x18,0x0f,0x08,0x0f,0x00,0x00,0x1f,0x20,0xbf,0x48,0x3e,0x22,0x22,0x22,0x2e,0x24,0xa0,0xf8,0x88,0xf8,0x88,0xfe,0x04 -+// 34847 蠟 ; -+,0x10,0x11,0x10,0x11,0x7d,0x55,0x55,0x55,0x7d,0x55,0x19,0x15,0x1f,0x75,0x01,0x00,0x92,0x24,0x92,0xfe,0x4a,0x32,0x4a,0xfe,0x24,0xb4,0x24,0xb4,0x25,0xb3,0x21,0x00 -+// 34848 蠠 ; -+,0x3f,0x01,0x1f,0x12,0x13,0x12,0x1f,0x04,0x04,0x3f,0x25,0x3f,0x04,0x05,0x3f,0x01,0xfe,0x00,0xfc,0x24,0xe4,0x24,0xfc,0x10,0x10,0x7e,0x52,0x7e,0x14,0x1f,0xf2,0x00 -+// 34849 蠡 ; -+,0x04,0x07,0x08,0x3f,0x01,0x06,0x38,0x03,0x1c,0x64,0x1f,0x15,0x1f,0x15,0x07,0x39,0x00,0xf0,0x10,0xff,0x08,0x9c,0xe0,0x70,0x4e,0xd0,0x7e,0x52,0x7e,0x12,0x9f,0x72 -+// 34850 蠢 ; -+,0x00,0x3f,0x00,0x1f,0x01,0x3f,0x06,0x1b,0x62,0x0b,0x3e,0x2a,0x3e,0x0a,0x0f,0x31,0x80,0xfe,0x80,0xfc,0x00,0xff,0x14,0xf3,0x12,0xf8,0x3e,0x2a,0x3e,0x0a,0x0f,0x71 -+// 34851 蠣 ; -+,0x11,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x55,0x11,0x19,0x15,0x1f,0x65,0x02,0x04,0xff,0x24,0xfe,0x24,0x7c,0x54,0x7c,0x54,0x7c,0x10,0xfe,0xaa,0xfe,0x8a,0x82,0x86 -+// 34852 蠤 ; -+,0x04,0x3f,0x02,0x1f,0x12,0x14,0x10,0x1f,0x04,0x3f,0x25,0x25,0x3f,0x05,0x07,0x39,0x20,0xfe,0x40,0xfc,0x44,0x3c,0x04,0xfc,0x08,0x7f,0x49,0x49,0x7f,0x0a,0x8f,0x71 -+// 34853 蠥 ; -+,0x08,0x2a,0x3e,0x10,0x3e,0x22,0x3e,0x20,0x3e,0x22,0x3f,0x08,0x0f,0x00,0x00,0x1f,0x10,0xfe,0x44,0x28,0xff,0x10,0x7e,0x10,0x90,0x90,0xfc,0x84,0xfc,0x84,0xfe,0x04 -+// 34854 蠦 ; -+,0x10,0x10,0x10,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x19,0x15,0x1d,0x76,0x02,0x05,0x20,0x3c,0x20,0xff,0x22,0xfc,0x22,0x1e,0x00,0x7c,0x54,0x7c,0x54,0xfe,0xaa,0xff -+// 34855 蠧 ; -+,0x00,0x3f,0x00,0x0f,0x00,0x3f,0x22,0x07,0x0c,0x07,0x04,0x3f,0x25,0x3f,0x04,0x3f,0x80,0xff,0x80,0xf8,0x00,0xff,0x02,0xf8,0x08,0xf8,0x08,0x7e,0x4a,0x7e,0x09,0xff -+// 34856 蠨 ; -+,0x10,0x17,0x10,0x7d,0x54,0x57,0x54,0x55,0x7e,0x52,0x1b,0x16,0x1f,0x76,0x02,0x04,0x88,0xff,0xa8,0xfc,0x24,0xff,0x24,0xfc,0x22,0xaa,0xae,0x22,0xae,0xaa,0xaa,0x12 -+// 34857 蠩 ; -+,0x11,0x10,0x13,0x10,0x7d,0x54,0x54,0x55,0x7c,0x51,0x19,0x15,0x1f,0x75,0x01,0x00,0x08,0x88,0xde,0x09,0xca,0x3f,0x04,0xc8,0x3e,0xd2,0x5e,0x52,0x52,0xde,0x52,0x00 -+// 34858 蠪 ; -+,0x08,0x3e,0x14,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x26,0x1f,0x10,0x1f,0x00,0x3f,0x00,0x40,0x7e,0x40,0x7e,0x02,0x7e,0x40,0x7e,0x41,0xbf,0xfc,0x84,0xfc,0x88,0xfe,0x04 -+// 34859 蠫 ; -+,0x03,0x3c,0x19,0x0e,0x32,0x0d,0x72,0x1c,0x69,0x3f,0x29,0x3f,0x29,0x0a,0x0f,0x39,0x02,0x12,0x92,0x12,0x12,0x12,0x8a,0x84,0x08,0x7f,0x49,0x7f,0x49,0x0a,0x0f,0x71 -+// 34860 蠬 ; -+,0x10,0x10,0x13,0x7e,0x55,0x57,0x54,0x55,0x7d,0x11,0x19,0x15,0x1f,0x75,0x01,0x00,0x88,0x8f,0xe8,0x2f,0x41,0xff,0x08,0xef,0x28,0xef,0x28,0xef,0x28,0x29,0x6f,0x00 -+// 34861 蠭 ; -+,0x20,0x10,0x71,0x12,0x14,0x13,0x10,0x2c,0x43,0x04,0x3f,0x25,0x3f,0x05,0x07,0x39,0x80,0xfc,0x48,0x30,0xcc,0x23,0xfc,0x20,0xff,0x90,0x7e,0x52,0x7e,0x14,0x9f,0x72 -+// 34862 蠮 ; -+,0x10,0x17,0x16,0x7f,0x55,0x57,0x55,0x56,0x7f,0x10,0x1b,0x16,0x1d,0x75,0x02,0x00,0x00,0xde,0x12,0xd1,0x2e,0xd2,0x0c,0x92,0xe1,0x1e,0xc2,0x4a,0x46,0x4a,0x52,0xc6 -+// 34863 蠯 ; -+,0x00,0x3f,0x21,0x27,0x24,0x27,0x24,0x27,0x21,0x2f,0x22,0x2f,0x2a,0x2f,0x22,0x5f,0x80,0xff,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x40,0xfe,0x48,0xbe,0xaa,0xbe,0x09,0xff -+// 34864 蠰 ; -+,0x10,0x13,0x10,0x11,0x7d,0x55,0x54,0x55,0x7c,0x11,0x10,0x1b,0x14,0x7d,0x02,0x00,0x20,0xff,0x00,0xde,0x52,0xde,0x88,0xfe,0x88,0xfe,0x88,0xff,0x8a,0xac,0xc7,0x82 -+// 34865 蠱 ; -+,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x08,0x3f,0x29,0x3f,0x09,0x7f,0x01,0x0f,0x09,0x3f,0x80,0xf8,0x88,0xf8,0x84,0xfe,0x12,0x7e,0x52,0x7e,0x12,0xff,0x02,0xfc,0x24,0xff -+// 34866 蠲 ; -+,0x21,0x12,0x14,0x7f,0x00,0x12,0x21,0x40,0x3e,0x2a,0x2a,0x2a,0x2e,0x78,0x00,0x00,0x7f,0x55,0x55,0x7f,0x40,0x7f,0x51,0xfd,0x55,0x7d,0x11,0x1d,0xe5,0x01,0x0a,0x04 -+// 34867 蠳 ; -+,0x11,0x11,0x11,0x7d,0x55,0x55,0x55,0x7d,0x11,0x12,0x13,0x1c,0x62,0x00,0x00,0x07,0xde,0x52,0xde,0x52,0xde,0x52,0xde,0x54,0x22,0x40,0xff,0x88,0xd0,0x38,0xc6,0x02 -+// 34868 蠴 ; -+,0x10,0x13,0x10,0x11,0x7d,0x55,0x55,0x54,0x7c,0x13,0x14,0x1c,0x65,0x06,0x00,0x00,0x88,0xff,0x88,0xfe,0x4a,0xfe,0x20,0xfa,0x24,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc -+// 34869 蠵 ; -+,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x2a,0x3e,0x08,0x0c,0x0a,0x0e,0x72,0x00,0x00,0x10,0x91,0xff,0x50,0xff,0x90,0xfe,0x90,0xff,0x80,0xff,0xa9,0xfd,0xa9,0xbd,0x82 -+// 34870 蠶 ; -+,0x3f,0x24,0x3f,0x0c,0x17,0x2f,0x08,0x0f,0x08,0x0f,0x04,0x3f,0x25,0x3f,0x04,0x7f,0x3e,0x48,0x7e,0x19,0x67,0xfc,0x04,0xfc,0x04,0xfc,0x08,0x7f,0x49,0x7f,0x89,0xbf -+// 34871 蠷 ; -+,0x11,0x11,0x11,0x11,0x7d,0x55,0x55,0x54,0x7c,0x55,0x12,0x12,0x1e,0x62,0x00,0x00,0xef,0x29,0xef,0x29,0xef,0x29,0xef,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 34872 蠸 ; -+,0x10,0x13,0x10,0x7d,0x55,0x55,0x55,0x54,0x7c,0x11,0x12,0x12,0x1e,0x70,0x00,0x00,0x48,0xff,0x48,0xef,0x29,0x29,0xff,0x90,0xff,0x88,0xff,0x88,0xff,0x88,0xff,0x80 -+// 34873 蠹 ; -+,0x00,0x1f,0x00,0x3f,0x20,0x5f,0x08,0x17,0x24,0x07,0x04,0x3f,0x25,0x3f,0x05,0x7f,0x80,0xfc,0x80,0xff,0x01,0xfc,0x00,0xf8,0x08,0xf8,0x08,0x7e,0x4a,0x7e,0x09,0xff -+// 34874 蠺 ; -+,0x3f,0x04,0x7f,0x0a,0x11,0x27,0x04,0x07,0x04,0x07,0x08,0x3f,0x29,0x3f,0x09,0x7f,0x7f,0x08,0x7f,0x14,0x22,0xf9,0x08,0xf8,0x08,0xf8,0x08,0x7e,0x4a,0x7e,0x09,0x7f -+// 34875 蠻 ; -+,0x08,0x13,0x3c,0x09,0x14,0x3d,0x01,0x2b,0x2a,0x40,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x84,0xf4,0x09,0xee,0x05,0xef,0x20,0xea,0x52,0x40,0xfe,0x42,0xfe,0x44,0xff,0x02 -+// 34876 蠼 ; -+,0x11,0x11,0x11,0x7d,0x55,0x54,0x55,0x57,0x7d,0x11,0x15,0x12,0x1f,0x72,0x00,0x03,0xef,0x29,0xef,0x29,0xef,0x90,0xff,0x10,0xfe,0x10,0xff,0x84,0x48,0x30,0xcc,0x03 -+// 34877 蠽 ; -+,0x05,0x15,0x25,0x47,0x3a,0x1f,0x12,0x1f,0x12,0x1f,0x04,0x3f,0x25,0x3f,0x04,0x7f,0x14,0x92,0x7f,0x92,0x14,0x99,0x69,0x86,0x00,0xd0,0x10,0x7e,0x52,0x7e,0x12,0xff -+// 34878 蠾 ; -+,0x13,0x12,0x13,0x7e,0x52,0x52,0x52,0x7e,0x52,0x1b,0x16,0x1e,0x76,0x02,0x05,0x08,0xff,0x01,0xff,0x54,0x38,0xd4,0xfe,0xaa,0xfe,0x21,0xf9,0xa9,0xf9,0x29,0xfd,0x0a -+// 34879 蠿 ; -+,0x04,0x09,0x1e,0x04,0x3f,0x0a,0x1e,0x04,0x08,0x3f,0x08,0x3f,0x29,0x3f,0x08,0x7f,0x12,0x2a,0x7a,0x12,0xfe,0x2a,0x7a,0x12,0x22,0xfe,0x08,0x7e,0x4a,0x7e,0x09,0x7f -+// 34880 血 ; -+,0x01,0x01,0x01,0x02,0x1f,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x7f,0x00,0x00,0x00,0x80,0x00,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0xff,0x00,0x00 -+// 34881 衁 ; -+,0x01,0x00,0x7f,0x08,0x08,0x08,0x0f,0x01,0x02,0x1f,0x12,0x12,0x12,0x12,0x7f,0x00,0x00,0x80,0xfe,0x00,0x00,0x00,0xfc,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0xff,0x00 -+// 34882 衂 ; -+,0x08,0x0c,0x10,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x2e,0x70,0x00,0x00,0x01,0x00,0xff,0x11,0x91,0x91,0xb1,0xb1,0xd1,0x91,0x91,0xe1,0x21,0x41,0x45,0x82,0x00 -+// 34883 衃 ; -+,0x00,0x08,0x10,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x7c,0x00,0x00,0x00,0x00,0x00,0x7f,0x88,0x88,0x90,0x90,0xb8,0xb4,0xd3,0x92,0x90,0x10,0x10,0x10,0x10 -+// 34884 衄 ; -+,0x00,0x04,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x7c,0x00,0x00,0x00,0x00,0x7e,0x92,0x92,0x92,0x92,0xfe,0xa2,0xa2,0xa2,0xa2,0xe2,0x22,0xff,0x00 -+// 34885 衅 ; -+,0x08,0x10,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x78,0x00,0x00,0x00,0x08,0x08,0xc9,0xa9,0xaa,0xff,0x88,0x88,0x88,0xff,0x88,0xc8,0x08,0x08,0x08,0x08 -+// 34886 衆 ; -+,0x00,0x01,0x0f,0x09,0x09,0x7f,0x00,0x1f,0x04,0x0c,0x12,0x24,0x08,0x10,0x60,0x00,0x80,0x00,0xfc,0x24,0x24,0xff,0x38,0xc0,0x8c,0xd0,0xa0,0x90,0x88,0x87,0x82,0x80 -+// 34887 衇 ; -+,0x10,0x10,0x7e,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x53,0x5c,0x71,0x01,0x02,0x04,0x00,0x1e,0xe0,0x86,0xb8,0xa0,0xa1,0xb6,0xa8,0xa8,0xa4,0xa4,0x23,0x32,0x20,0x00 -+// 34888 衈 ; -+,0x08,0x08,0x10,0x7f,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5f,0x70,0x00,0x00,0x00,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x47,0xfc,0x04,0x04,0x04,0x04 -+// 34889 衉 ; -+,0x08,0x0c,0x10,0x7f,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x5f,0x70,0x00,0x00,0x00,0x20,0x20,0x3e,0x44,0xa4,0x18,0x18,0x24,0xc3,0x7e,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 34890 衊 ; -+,0x08,0x09,0x10,0x3e,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0x70,0x00,0x01,0x02,0x44,0xff,0x44,0xfe,0xaa,0xaa,0xfe,0x14,0xff,0x90,0xd2,0xac,0xa9,0x95,0x23,0x01 -+// 34891 衋 ; -+,0x00,0x1f,0x00,0x3f,0x00,0x1f,0x00,0x3e,0x08,0x3e,0x2a,0x3e,0x01,0x0f,0x09,0x7f,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xbe,0x90,0xbe,0xaa,0xbe,0x00,0xfc,0x24,0xff -+// 34892 行 ; -+,0x04,0x0e,0x18,0x20,0x44,0x06,0x0d,0x18,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 34893 衍 ; -+,0x0a,0x0d,0x11,0x20,0x48,0x0c,0x10,0x30,0x51,0x17,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xbe,0x00,0x00,0x80,0xbf,0x84,0x84,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x08 -+// 34894 衎 ; -+,0x08,0x0c,0x0b,0x10,0x24,0x46,0x08,0x1b,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xef,0x80,0x80,0x80,0x9f,0xe2,0x82,0x82,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 34895 衏 ; -+,0x00,0x10,0x1b,0x20,0x48,0x08,0x17,0x32,0x52,0x12,0x12,0x14,0x14,0x18,0x10,0x00,0x00,0x00,0xcf,0x00,0x00,0x00,0xef,0x44,0x44,0x44,0x54,0x64,0x44,0x14,0x08,0x00 -+// 34896 衐 ; -+,0x10,0x1b,0x22,0x52,0x1a,0x13,0x32,0x52,0x12,0x13,0x12,0x12,0x12,0x13,0x10,0x10,0x00,0xef,0x00,0x00,0x00,0xdf,0x44,0x44,0x44,0xc4,0x04,0x04,0x04,0xe4,0x14,0x08 -+// 34897 衑 ; -+,0x11,0x19,0x21,0x52,0x1a,0x14,0x39,0x50,0x17,0x10,0x10,0x12,0x11,0x10,0x10,0x10,0x00,0x1e,0x00,0x80,0x40,0x1f,0x04,0x84,0xe4,0x24,0x44,0x84,0x04,0x84,0x94,0x08 -+// 34898 衒 ; -+,0x08,0x0d,0x10,0x2b,0x4d,0x09,0x12,0x37,0x50,0x11,0x12,0x17,0x12,0x10,0x10,0x00,0x00,0x00,0x8f,0xe0,0x00,0x5f,0x64,0xc4,0x84,0x04,0x44,0xe4,0x44,0x14,0x08,0x00 -+// 34899 術 ; -+,0x08,0x0c,0x10,0x28,0x4f,0x08,0x19,0x29,0x4a,0x0a,0x0c,0x08,0x08,0x08,0x08,0x00,0x80,0x80,0xaf,0x90,0xe0,0x8f,0x82,0xc2,0xa2,0x92,0x82,0x82,0x82,0x8a,0x84,0x00 -+// 34900 衔 ; -+,0x11,0x19,0x11,0x2a,0x4c,0x0b,0x10,0x30,0x57,0x10,0x10,0x10,0x10,0x11,0x10,0x00,0x00,0x0f,0xe0,0x00,0x00,0xef,0x84,0x84,0xf4,0x84,0x84,0x84,0xa4,0xd4,0x88,0x00 -+// 34901 衕 ; -+,0x00,0x17,0x1c,0x25,0x4c,0x0c,0x15,0x35,0x55,0x15,0x15,0x15,0x14,0x14,0x14,0x10,0x00,0xf7,0x10,0xd0,0x10,0x1f,0xd2,0x52,0x52,0xd2,0x52,0x12,0x12,0x5a,0x24,0x00 -+// 34902 衖 ; -+,0x08,0x0d,0x11,0x21,0x4b,0x09,0x11,0x31,0x57,0x10,0x11,0x11,0x12,0x14,0x10,0x10,0x00,0x2f,0x20,0x20,0xf0,0x2f,0x22,0x22,0xfa,0x02,0x42,0x22,0x32,0x22,0x0a,0x04 -+// 34903 街 ; -+,0x08,0x0c,0x10,0x23,0x4c,0x08,0x17,0x30,0x50,0x13,0x10,0x10,0x10,0x13,0x10,0x00,0x80,0x8f,0x80,0xe0,0x80,0x8f,0xf4,0x04,0x84,0xe4,0x84,0x84,0xe4,0x94,0x08,0x00 -+// 34904 衘 ; -+,0x09,0x0d,0x11,0x22,0x4a,0x0c,0x1b,0x30,0x51,0x11,0x11,0x11,0x17,0x10,0x10,0x00,0x00,0x0f,0xf0,0x40,0x40,0x4f,0xf4,0x44,0x74,0x44,0x44,0x74,0x84,0x14,0x08,0x00 -+// 34905 衙 ; -+,0x10,0x1b,0x21,0x41,0x13,0x19,0x31,0x57,0x10,0x13,0x12,0x12,0x12,0x13,0x12,0x10,0x00,0xef,0x00,0x00,0xe0,0x2f,0x22,0xf2,0x02,0xe2,0x22,0x22,0x22,0xe2,0x2a,0x04 -+// 34906 衚 ; -+,0x12,0x1a,0x22,0x4a,0x0f,0x12,0x12,0x32,0x57,0x15,0x15,0x17,0x15,0x14,0x10,0x11,0x00,0x77,0x50,0x50,0x50,0x7f,0x52,0x52,0x72,0x52,0x52,0x52,0x52,0x92,0x9a,0x34 -+// 34907 衛 ; -+,0x11,0x19,0x27,0x42,0x17,0x10,0x27,0x64,0x27,0x21,0x2f,0x25,0x25,0x2f,0x21,0x21,0x00,0x1f,0xc0,0x40,0xe0,0x1f,0xc4,0x44,0xc4,0x04,0xe4,0x04,0x04,0xe4,0x14,0x08 -+// 34908 衜 ; -+,0x10,0x1a,0x11,0x2b,0x4c,0x11,0x33,0x52,0x13,0x12,0x13,0x12,0x12,0x13,0x12,0x10,0x00,0x20,0x5f,0xe0,0x80,0x1f,0xe4,0x24,0xe4,0x24,0xe4,0x24,0x24,0xe4,0x34,0x08 -+// 34909 衝 ; -+,0x08,0x1f,0x10,0x27,0x48,0x17,0x34,0x57,0x14,0x17,0x10,0x17,0x10,0x10,0x17,0x10,0x00,0xef,0x80,0xe0,0x80,0xff,0x94,0xf4,0x94,0xf4,0x84,0xf4,0x84,0x84,0xf4,0x08 -+// 34910 衞 ; -+,0x01,0x17,0x19,0x27,0x48,0x0f,0x14,0x37,0x50,0x1f,0x11,0x17,0x15,0x15,0x11,0x11,0x00,0xdf,0x40,0xe0,0x00,0xdf,0x44,0xc4,0x04,0xe4,0x04,0xc4,0x44,0x44,0x14,0x08 -+// 34911 衟 ; -+,0x11,0x1a,0x14,0x22,0x49,0x08,0x17,0x31,0x57,0x14,0x17,0x14,0x14,0x17,0x14,0x10,0x20,0x5f,0x80,0x40,0x20,0x00,0xff,0x04,0xe4,0x24,0xe4,0x24,0x24,0xe4,0x34,0x08 -+// 34912 衠 ; -+,0x08,0x0c,0x13,0x28,0x4f,0x1a,0x33,0x52,0x13,0x12,0x13,0x12,0x17,0x11,0x12,0x14,0x80,0x80,0xef,0x80,0xe0,0x20,0xef,0x22,0xe2,0x22,0xe2,0x22,0xf2,0x42,0x2a,0x14 -+// 34913 衡 ; -+,0x11,0x19,0x22,0x2c,0x4b,0x12,0x33,0x52,0x13,0x10,0x17,0x10,0x11,0x12,0x14,0x10,0x00,0xef,0x20,0x40,0xe0,0xaf,0xe2,0xa2,0xe2,0x82,0xf2,0x82,0x42,0x2a,0x14,0x00 -+// 34914 衢 ; -+,0x17,0x1d,0x27,0x45,0x17,0x1d,0x17,0x32,0x52,0x17,0x1a,0x13,0x12,0x13,0x12,0x13,0x70,0x5f,0x70,0x50,0x70,0x5f,0x72,0x82,0x42,0xf2,0x42,0xf2,0x42,0xf2,0x4a,0xf4 -+// 34915 衣 ; -+,0x01,0x00,0x7f,0x00,0x00,0x01,0x02,0x04,0x0c,0x14,0x24,0x44,0x04,0x05,0x0e,0x04,0x00,0x80,0xff,0x80,0x80,0x84,0x46,0x48,0x30,0x20,0x10,0x10,0x08,0x07,0x02,0x00 -+// 34916 衤 ; -+,0x02,0x01,0x01,0x1f,0x00,0x00,0x01,0x03,0x05,0x09,0x31,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xc0,0x40,0x80,0x00,0x20,0x40,0x80,0x60,0x20,0x00,0x00,0x00,0x00 -+// 34917 补 ; -+,0x10,0x0c,0x08,0x7f,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0x10,0x18,0x14,0x12,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10 -+// 34918 衦 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 34919 衧 ; -+,0x08,0x04,0x04,0x7f,0x02,0x04,0x0a,0x1c,0x2a,0x4b,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 34920 表 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x01,0x03,0x06,0x1c,0x64,0x04,0x05,0x06,0x04,0x80,0x80,0xfe,0x80,0xfc,0x80,0xff,0x80,0x44,0x46,0x28,0x10,0x88,0x07,0x02,0x00 -+// 34921 衩 ; -+,0x20,0x18,0x09,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0xfe,0x84,0xa4,0x94,0x88,0x48,0x50,0x50,0x20,0x50,0x4c,0x87,0x02,0x00 -+// 34922 衪 ; -+,0x00,0x10,0x08,0x7e,0x02,0x05,0x0a,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x90,0x90,0x9e,0xf2,0x92,0x92,0x9a,0x94,0x90,0x91,0x81,0x81,0x7f,0x00 -+// 34923 衫 ; -+,0x10,0x08,0x08,0x7f,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x09,0x08,0x08,0x0b,0x08,0x04,0x06,0x08,0x10,0x24,0x46,0x08,0x10,0x20,0x42,0x83,0x06,0x18,0x60,0x80,0x00 -+// 34924 衬 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x0a,0x0b,0x1c,0x2a,0x4b,0x0a,0x08,0x08,0x08,0x08,0x04,0x04,0x04,0x04,0xff,0x04,0x44,0x24,0x34,0x24,0x04,0x04,0x04,0x04,0x14,0x08 -+// 34925 衭 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x09,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 34926 衮 ; -+,0x00,0x00,0x3f,0x02,0x04,0x09,0x12,0x07,0x01,0x02,0x04,0x1c,0x64,0x05,0x06,0x04,0x80,0x40,0xff,0x10,0x8c,0x27,0x12,0xf8,0x10,0x86,0x58,0x20,0x18,0x07,0x02,0x00 -+// 34927 衯 ; -+,0x20,0x18,0x10,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x09,0x00,0x48,0x68,0x48,0x84,0x83,0x02,0xfc,0x24,0x24,0x24,0x44,0x44,0x84,0x9c,0x08 -+// 34928 衰 ; -+,0x00,0x3f,0x00,0x07,0x04,0x3f,0x04,0x07,0x00,0x01,0x06,0x1c,0x64,0x05,0x06,0x04,0x80,0xff,0x00,0xf8,0x08,0xff,0x08,0xf8,0x80,0x44,0x28,0x10,0x0c,0x07,0x02,0x00 -+// 34929 衱 ; -+,0x10,0x0b,0x08,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x09,0x09,0x0a,0x0c,0x08,0x09,0x00,0xfe,0x44,0x44,0x48,0x48,0x4f,0x42,0xa2,0xa4,0x24,0x18,0x24,0x46,0x83,0x02 -+// 34930 衲 ; -+,0x20,0x18,0x10,0x7d,0x05,0x09,0x11,0x35,0x55,0x19,0x15,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x52,0x4e,0x8a,0x02,0x02,0x02,0x0a,0x04 -+// 34931 衳 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x0a,0x1a,0x2d,0x4a,0x0a,0x08,0x08,0x09,0x08,0x08,0x00,0x28,0x28,0x28,0x44,0x44,0x82,0xa3,0x32,0x20,0x44,0x42,0x9f,0xf3,0x02,0x00 -+// 34932 衴 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x09,0x1a,0x2c,0x4a,0x0b,0x0a,0x08,0x08,0x09,0x0a,0x10,0x10,0x10,0xff,0x91,0x12,0x10,0x28,0x28,0x28,0x48,0x49,0x89,0x89,0x07,0x00 -+// 34933 衵 ; -+,0x10,0x0c,0x08,0x7f,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 34934 衶 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x0a,0x1a,0x2c,0x4a,0x0b,0x0a,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10,0x10 -+// 34935 衷 ; -+,0x01,0x00,0x3f,0x00,0x1f,0x10,0x10,0x1f,0x00,0x01,0x06,0x1c,0x64,0x05,0x06,0x04,0x00,0x80,0xfe,0x80,0xfc,0x84,0x84,0xfc,0x80,0x86,0x58,0x20,0x10,0x0c,0x07,0x02 -+// 34936 衸 ; -+,0x20,0x18,0x08,0x7e,0x02,0x05,0x08,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x09,0x0a,0x20,0x20,0x50,0x48,0x84,0x03,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x00 -+// 34937 衹 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x0e,0xf0,0x90,0x90,0x90,0xfe,0x90,0x90,0x90,0x88,0x88,0x88,0xa5,0xc5,0x82 -+// 34938 衺 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x1f,0x00,0x03,0x0c,0x31,0x01,0x06,0x1a,0x62,0x07,0x02,0x80,0xff,0x00,0xfe,0x40,0xfe,0xc0,0x40,0x40,0x44,0x86,0x48,0x30,0x8c,0x07,0x02 -+// 34939 衻 ; -+,0x20,0x18,0x08,0x7e,0x04,0x09,0x0a,0x1c,0x2d,0x4a,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0x82,0x82,0xff,0x82,0x82,0xff,0x82,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 34940 衼 ; -+,0x10,0x0c,0x08,0x7f,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x08,0x0b,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x84,0x44,0x48,0x28,0x10,0x28,0x44,0x83,0x02 -+// 34941 衽 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x09,0x08,0x08,0x00,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 34942 衾 ; -+,0x00,0x01,0x03,0x04,0x18,0x6f,0x01,0x00,0x7f,0x00,0x01,0x06,0x1a,0x62,0x07,0x02,0x80,0x40,0x20,0x98,0x47,0xfa,0x08,0x90,0xff,0x84,0x46,0x28,0x10,0x8c,0x07,0x02 -+// 34943 衿 ; -+,0x20,0x18,0x08,0x7e,0x04,0x09,0x12,0x34,0x59,0x16,0x14,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x50,0x48,0x84,0x23,0x12,0x10,0xfe,0x04,0x04,0x08,0x08,0x10,0x10,0x20 -+// 34944 袀 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4b,0x0a,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x40,0x7e,0x82,0xa2,0x1a,0x12,0x02,0x1a,0xe2,0x42,0x02,0x02,0x0a,0x04 -+// 34945 袁 ; -+,0x00,0x00,0x1f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x01,0x02,0x04,0x1c,0x65,0x06,0x04,0x80,0x80,0xfc,0x80,0xff,0x00,0xf8,0x08,0xf8,0x82,0x44,0x28,0x10,0x0c,0x07,0x02 -+// 34946 袂 ; -+,0x10,0x08,0x08,0x7d,0x04,0x08,0x0a,0x1d,0x2c,0x4a,0x08,0x08,0x08,0x09,0x09,0x0a,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x50,0x88,0x88,0x04,0x03,0x02 -+// 34947 袃 ; -+,0x08,0x08,0x3f,0x08,0x0a,0x0c,0x09,0x00,0x7f,0x01,0x02,0x0c,0x34,0x45,0x06,0x04,0x00,0xfe,0x22,0x22,0x42,0x94,0x08,0x80,0xff,0x80,0x48,0x2c,0x30,0x18,0x0e,0x04 -+// 34948 袄 ; -+,0x20,0x18,0x11,0x00,0x7c,0x04,0x09,0x0a,0x1c,0x2b,0x4a,0x08,0x08,0x09,0x09,0x0a,0x00,0x3c,0xe0,0x20,0x20,0x20,0xfe,0x20,0x50,0x50,0x48,0x88,0x84,0x03,0x02,0x00 -+// 34949 袅 ; -+,0x02,0x0f,0x0a,0x09,0x09,0x0f,0x00,0x01,0x00,0x7f,0x02,0x06,0x1a,0x62,0x03,0x02,0x00,0xf0,0x10,0x90,0x10,0xfc,0x04,0x14,0x88,0xff,0x44,0x48,0x30,0x98,0x07,0x02 -+// 34950 袆 ; -+,0x10,0x08,0x04,0x7f,0x02,0x04,0x0a,0x1a,0x2d,0x4a,0x0a,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0xfe,0x10,0x10,0xff,0x11,0x11,0x11,0x15,0x12,0x10,0x10 -+// 34951 袇 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x0a,0x1d,0x2c,0x4a,0x08,0x08,0x08,0x09,0x09,0x0a,0x00,0xfc,0x84,0xa4,0x94,0x94,0x84,0xff,0x84,0x84,0x84,0x84,0x84,0x04,0x14,0x08 -+// 34952 袈 ; -+,0x04,0x7f,0x04,0x08,0x08,0x12,0x21,0x00,0x7f,0x01,0x02,0x04,0x1c,0x65,0x06,0x04,0x00,0xbe,0xa2,0xa2,0xa2,0xbe,0x22,0x80,0xff,0x80,0x4c,0x30,0x10,0x08,0x0e,0x04 -+// 34953 袉 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x09,0x08,0x08,0x08,0x08,0x20,0x18,0x10,0xff,0x82,0x20,0x24,0x26,0x28,0x30,0xa0,0x20,0x22,0x23,0x1e,0x00 -+// 34954 袊 ; -+,0x20,0x18,0x10,0x7e,0x04,0x09,0x0a,0x1c,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x48,0x84,0x23,0x1a,0x10,0xfe,0x02,0x04,0x48,0x30,0x18,0x08,0x00 -+// 34955 袋 ; -+,0x04,0x06,0x08,0x1b,0x28,0x48,0x09,0x08,0x3f,0x01,0x02,0x04,0x1c,0x65,0x06,0x04,0x48,0x44,0x5f,0xe0,0x20,0x12,0x0a,0x84,0xff,0x48,0x4c,0x30,0x10,0x0c,0x07,0x02 -+// 34956 袌 ; -+,0x00,0x7f,0x08,0x0f,0x10,0x2f,0x48,0x0f,0x08,0x07,0x02,0x0c,0x34,0x05,0x0e,0x04,0x80,0xff,0x00,0xf8,0x08,0xe8,0x28,0xe8,0x02,0xfe,0x84,0x48,0x30,0x0e,0x04,0x00 -+// 34957 袍 ; -+,0x20,0x18,0x08,0x7e,0x03,0x05,0x08,0x1a,0x2c,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x40,0xfe,0x02,0x02,0xf2,0x92,0x92,0xfa,0x84,0x80,0x81,0x81,0x7f,0x00 -+// 34958 袎 ; -+,0x10,0x08,0x08,0x7e,0x05,0x05,0x0b,0x1c,0x2c,0x4b,0x0a,0x0b,0x08,0x08,0x08,0x08,0x00,0x88,0x88,0x88,0x1f,0x29,0xc9,0x49,0x89,0x09,0x49,0xf1,0x51,0x21,0x45,0x82 -+// 34959 袏 ; -+,0x10,0x0c,0x08,0x3f,0x02,0x04,0x08,0x1a,0x2c,0x4c,0x0a,0x09,0x0a,0x0c,0x08,0x08,0x20,0x20,0x20,0xff,0x20,0x20,0x40,0x7f,0x48,0x88,0x88,0x08,0x08,0x08,0xff,0x00 -+// 34960 袐 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x0a,0x09,0x08,0x09,0x0a,0x08,0x20,0x30,0x2a,0x2a,0x24,0xa4,0xa8,0xa8,0xb2,0xb1,0x21,0x60,0xa2,0x23,0x1e,0x00 -+// 34961 袑 ; -+,0x20,0x19,0x10,0x7e,0x02,0x04,0x08,0x1b,0x2c,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x42,0x42,0x42,0x42,0x8a,0x04,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 34962 袒 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x0b,0x08,0x08,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00,0x00,0xff,0x00,0x00 -+// 34963 袓 ; -+,0x20,0x10,0x08,0x7e,0x04,0x04,0x0a,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x0b,0x08,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 34964 袔 ; -+,0x10,0x0c,0x09,0x7e,0x02,0x04,0x04,0x0a,0x1c,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0x14,0x08 -+// 34965 袕 ; -+,0x20,0x10,0x09,0x7d,0x05,0x08,0x0a,0x1a,0x2c,0x4a,0x0a,0x08,0x09,0x09,0x0a,0x08,0x20,0x10,0xff,0x01,0x0a,0x48,0x48,0x48,0x48,0x44,0x84,0x84,0x02,0x03,0x02,0x00 -+// 34966 袖 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 34967 袗 ; -+,0x10,0x0c,0x08,0x7e,0x05,0x04,0x0a,0x1a,0x2d,0x4c,0x0a,0x09,0x08,0x08,0x0b,0x08,0x20,0x20,0x50,0x88,0x07,0x12,0x28,0x4c,0x90,0x22,0xc7,0x0c,0x30,0xc0,0x00,0x00 -+// 34968 袘 ; -+,0x20,0x18,0x10,0x7e,0x05,0x05,0x0a,0x1d,0x28,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x80,0xc0,0x80,0xff,0x00,0x10,0x9e,0xf2,0x92,0x92,0x92,0x8a,0x85,0x81,0x7f,0x00 -+// 34969 袙 ; -+,0x20,0x10,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x20,0x30,0x40,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 34970 袚 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x08,0x19,0x2a,0x4c,0x0a,0x08,0x08,0x09,0x0a,0x08,0x20,0x28,0x26,0x24,0xff,0x20,0x3e,0x22,0x22,0x54,0x54,0x88,0x94,0x23,0x42,0x80 -+// 34971 袛 ; -+,0x20,0x18,0x11,0x7d,0x05,0x09,0x19,0x2b,0x4d,0x0b,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x08,0x29,0x55,0x9b,0x11,0x00 -+// 34972 袜 ; -+,0x10,0x08,0x08,0x7f,0x02,0x04,0x0b,0x18,0x2a,0x4c,0x0a,0x09,0x0a,0x08,0x08,0x08,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x70,0x70,0xa8,0x24,0x23,0x22,0x20,0x20 -+// 34973 袝 ; -+,0x20,0x18,0x10,0x7e,0x04,0x05,0x0a,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x44,0x64,0x44,0x44,0x84,0xbf,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x84,0x94,0x88 -+// 34974 袞 ; -+,0x00,0x3f,0x01,0x02,0x0c,0x37,0x04,0x04,0x07,0x01,0x03,0x06,0x1a,0x62,0x07,0x02,0x80,0xff,0x20,0x18,0x07,0xfa,0x08,0x08,0xf8,0x84,0x48,0x30,0x18,0x87,0x02,0x00 -+// 34975 袟 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4b,0x0a,0x08,0x08,0x08,0x09,0x0a,0x10,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x10,0x28,0x28,0x44,0x84,0x03,0x02 -+// 34976 袠 ; -+,0x00,0x7f,0x00,0x08,0x0f,0x10,0x3f,0x01,0x06,0x38,0x0f,0x06,0x1a,0x62,0x07,0x02,0x80,0xff,0x00,0x80,0xfc,0x80,0xfe,0x60,0x9c,0x43,0xfc,0x20,0x10,0x8c,0x07,0x02 -+// 34977 袡 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4d,0x0a,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xff,0x82,0x82,0x82,0x82,0x8a,0x84 -+// 34978 袢 ; -+,0x10,0x08,0x09,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4d,0x0a,0x08,0x08,0x08,0x08,0x08,0x10,0x12,0x13,0xd2,0x54,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 34979 袣 ; -+,0x10,0x08,0x08,0x7e,0x02,0x07,0x08,0x1a,0x2c,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0xbc,0x80,0x80,0x80,0xff,0x00 -+// 34980 袤 ; -+,0x00,0x3f,0x00,0x0f,0x00,0x3f,0x01,0x06,0x19,0x60,0x01,0x06,0x1c,0x65,0x06,0x04,0x80,0xfe,0x00,0xf8,0x10,0xfe,0x44,0x48,0x40,0x80,0x84,0x48,0x30,0x08,0x07,0x02 -+// 34981 袥 ; -+,0x10,0x0d,0x08,0x7e,0x02,0x04,0x08,0x19,0x2a,0x4d,0x0a,0x09,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x10,0x20,0x20,0x40,0x7e,0xc2,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 34982 袦 ; -+,0x20,0x18,0x10,0x7e,0x04,0x08,0x19,0x2a,0x4c,0x0b,0x09,0x09,0x09,0x09,0x09,0x08,0x10,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0xff,0x00 -+// 34983 袧 ; -+,0x10,0x0c,0x08,0x7e,0x05,0x0a,0x1c,0x2a,0x4c,0x0c,0x0a,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x40,0xfe,0x02,0x02,0xf2,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x0a,0x04 -+// 34984 袨 ; -+,0x20,0x18,0x08,0x7f,0x04,0x08,0x19,0x2a,0x4d,0x0a,0x09,0x08,0x08,0x09,0x08,0x08,0x40,0x30,0x10,0xff,0x20,0x30,0x44,0x84,0xf8,0x10,0x24,0x42,0x9f,0xf2,0x00,0x00 -+// 34985 袩 ; -+,0x10,0x0c,0x08,0x7f,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 34986 袪 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x09,0x08,0x08,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x20,0x20,0x40,0x48,0x84,0xfe,0x04,0x00 -+// 34987 被 ; -+,0x10,0x08,0x08,0x7f,0x05,0x05,0x09,0x1b,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x0a,0x10,0x10,0x10,0xff,0x12,0x10,0x7c,0x44,0x44,0x28,0x28,0x10,0x28,0x24,0x43,0x82 -+// 34988 袬 ; -+,0x01,0x00,0x3f,0x02,0x07,0x00,0x07,0x04,0x07,0x01,0x06,0x1c,0x64,0x05,0x06,0x04,0x00,0x80,0xff,0x08,0xfc,0x04,0xf8,0x08,0xf8,0x80,0x46,0x38,0x10,0x08,0x07,0x02 -+// 34989 袭 ; -+,0x01,0x01,0x3f,0x02,0x02,0x04,0x1b,0x60,0x3f,0x01,0x02,0x0c,0x74,0x05,0x06,0x04,0x20,0x10,0xfe,0x48,0x72,0xc2,0x7c,0x80,0xff,0x84,0x58,0x20,0x18,0x07,0x02,0x00 -+// 34990 袮 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x0a,0x1a,0x2c,0x4a,0x0a,0x09,0x0a,0x08,0x08,0x08,0x40,0x60,0x40,0x7f,0x82,0x10,0x10,0x50,0x54,0x92,0x92,0x11,0x11,0x10,0x50,0x20 -+// 34991 袯 ; -+,0x10,0x0c,0x08,0x7e,0x05,0x05,0x0a,0x1a,0x2c,0x4a,0x0a,0x08,0x09,0x0a,0x0c,0x08,0x10,0x14,0x92,0x90,0x10,0xff,0x20,0x3e,0x42,0x64,0x94,0x88,0x14,0x26,0x43,0x82 -+// 34992 袰 ; -+,0x0f,0x09,0x08,0x7f,0x08,0x08,0x0f,0x01,0x00,0x3f,0x02,0x04,0x1c,0x65,0x06,0x04,0xfc,0x04,0x84,0xff,0x84,0x44,0xff,0x14,0x88,0xff,0x44,0x28,0x10,0x08,0x07,0x02 -+// 34993 袱 ; -+,0x20,0x18,0x10,0x7e,0x05,0x06,0x08,0x1a,0x6a,0x0c,0x0a,0x09,0x08,0x08,0x08,0x08,0x48,0x68,0x4a,0x8a,0xbf,0x88,0x88,0x88,0x88,0x94,0x94,0x94,0xa2,0xa3,0xc2,0x80 -+// 34994 袲 ; -+,0x00,0x7f,0x02,0x07,0x08,0x36,0x03,0x1c,0x01,0x0f,0x00,0x1f,0x00,0x03,0x1d,0x01,0x80,0xff,0x00,0xfc,0x18,0x60,0x80,0xfe,0x84,0x18,0xe0,0xa2,0x93,0x0c,0x44,0x83 -+// 34995 袳 ; -+,0x20,0x18,0x08,0x7e,0x05,0x04,0x0a,0x1d,0x2c,0x4a,0x0a,0x09,0x08,0x08,0x0b,0x08,0x20,0x20,0x7e,0x84,0x48,0x30,0x50,0x9f,0x21,0x42,0xa2,0x14,0x18,0x60,0x80,0x00 -+// 34996 袴 ; -+,0x20,0x18,0x09,0x7e,0x04,0x08,0x0b,0x1c,0x2d,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x50,0x4c,0x83,0x7e,0x00,0xff,0x40,0xfc,0x44,0x04,0x04,0x3c,0x08 -+// 34997 袵 ; -+,0x10,0x0c,0x08,0x7e,0x04,0x09,0x0a,0x1c,0x2a,0x49,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x60,0x47,0xb8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88,0xbf,0x80,0x80 -+// 34998 袶 ; -+,0x20,0x18,0x10,0x7e,0x03,0x04,0x0a,0x1d,0x2c,0x4a,0x0a,0x08,0x09,0x08,0x08,0x08,0x40,0x40,0x7e,0xc4,0x28,0x10,0x6c,0x93,0x10,0xfe,0x90,0x90,0xff,0x10,0x10,0x10 -+// 34999 袷 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x08,0x1a,0x2c,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0x48,0x84,0x03,0xfc,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35000 袸 ; -+,0x20,0x18,0x13,0x7c,0x04,0x09,0x12,0x34,0x58,0x14,0x12,0x10,0x10,0x10,0x10,0x10,0x40,0x40,0xff,0x40,0x80,0xbe,0x84,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0xa8,0x90 -+// 35001 袹 ; -+,0x10,0x0d,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x20,0x20,0x40,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 35002 袺 ; -+,0x10,0x08,0x09,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35003 袻 ; -+,0x20,0x1b,0x10,0x7e,0x05,0x05,0x09,0x1b,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x06,0x00 -+// 35004 袼 ; -+,0x20,0x18,0x10,0x7e,0x05,0x08,0x18,0x2a,0x4d,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x7e,0xc2,0x44,0x28,0x10,0x6c,0x83,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35005 袽 ; -+,0x20,0x18,0x10,0x7c,0x07,0x09,0x11,0x35,0x5a,0x15,0x11,0x10,0x11,0x11,0x12,0x14,0x80,0x80,0x80,0x8f,0xe9,0x29,0x29,0x29,0x29,0x49,0x49,0x89,0x4f,0x29,0x28,0x00 -+// 35006 袾 ; -+,0x10,0x08,0x08,0x7e,0x03,0x05,0x0a,0x19,0x2c,0x4a,0x08,0x08,0x09,0x0a,0x08,0x08,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xff,0x38,0x58,0x54,0x92,0x13,0x12,0x10,0x10 -+// 35007 袿 ; -+,0x20,0x18,0x10,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 35008 裀 ; -+,0x20,0x18,0x10,0x7e,0x02,0x04,0x05,0x0a,0x1c,0x2a,0x49,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xa9,0xa5,0xc5,0x81,0x81,0xff,0x81 -+// 35009 裁 ; -+,0x04,0x04,0x1f,0x04,0x7f,0x08,0x04,0x3f,0x04,0x0a,0x19,0x69,0x08,0x0c,0x08,0x00,0x20,0x28,0xa4,0x20,0xfe,0x20,0x24,0xa6,0x14,0x98,0x18,0x11,0xa9,0x45,0x82,0x00 -+// 35010 裂 ; -+,0x3f,0x04,0x0f,0x10,0x6c,0x03,0x0c,0x30,0x3f,0x01,0x02,0x06,0x1a,0x62,0x07,0x02,0xe2,0x12,0xd2,0x52,0x92,0x12,0x8a,0x44,0xff,0x44,0x46,0x28,0x10,0x88,0x07,0x02 -+// 35011 裃 ; -+,0x10,0x08,0x08,0x7e,0x02,0x05,0x0a,0x1c,0x2d,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0x00,0xff,0x20,0x28,0x26,0x24,0x20,0x20,0x20 -+// 35012 裄 ; -+,0x10,0x08,0x08,0x7e,0x03,0x04,0x0a,0x1b,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x08,0x08,0x40,0x5f,0x80,0x80,0x40,0x7f,0xc4,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x54,0x48 -+// 35013 装 ; -+,0x02,0x22,0x1b,0x12,0x06,0x1a,0x22,0x02,0x3f,0x01,0x02,0x04,0x1c,0x65,0x06,0x04,0x10,0x10,0xff,0x10,0x10,0xfe,0x80,0x40,0xff,0x80,0x44,0x28,0x10,0x08,0x07,0x02 -+// 35014 裆 ; -+,0x20,0x19,0x10,0x7e,0x04,0x08,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x09,0x08,0x08,0x10,0x12,0x93,0xd2,0x94,0x10,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 35015 裇 ; -+,0x20,0x18,0x08,0x7e,0x04,0x08,0x0a,0x1c,0x2a,0x48,0x08,0x08,0x08,0x0b,0x08,0x08,0x10,0x10,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 35016 裈 ; -+,0x10,0x09,0x09,0x7e,0x05,0x04,0x0a,0x18,0x2d,0x4a,0x0a,0x09,0x08,0x08,0x08,0x08,0x00,0xff,0x02,0x20,0xfe,0x40,0x50,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35017 裉 ; -+,0x10,0x08,0x08,0x7e,0x04,0x08,0x0a,0x1c,0x2c,0x4a,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x80,0xc4,0xa6,0x98,0x88,0xa4,0xc3,0x82,0x00 -+// 35018 裊 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x7f,0x02,0x06,0x0a,0x12,0x67,0x02,0x00,0xf8,0x08,0xf8,0x08,0xfe,0x00,0xfc,0x04,0xfe,0x88,0x50,0x30,0x8f,0x02,0x00 -+// 35019 裋 ; -+,0x20,0x19,0x08,0x00,0x7e,0x04,0x08,0x1a,0x2c,0x4c,0x0a,0x08,0x08,0x08,0x0b,0x08,0x00,0xfe,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0x84,0x44,0x48,0x00,0xff,0x00 -+// 35020 裌 ; -+,0x20,0x18,0x08,0x7d,0x04,0x04,0x0a,0x1d,0x2d,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x55,0x59,0x10,0x28,0x28,0x44,0x83,0x02,0x00 -+// 35021 裍 ; -+,0x20,0x18,0x08,0x7e,0x04,0x04,0x08,0x1a,0x2c,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0xb9,0xb5,0xd7,0xd5,0x91,0x91,0x91,0xff,0x81 -+// 35022 裎 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x04,0x0b,0x1c,0x2a,0x49,0x08,0x08,0x08,0x0b,0x08,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 35023 裏 ; -+,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x3f,0x02,0x04,0x1c,0x65,0x06,0x04,0x80,0xff,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xff,0x44,0x48,0x30,0x10,0x0c,0x03 -+// 35024 裐 ; -+,0x10,0x0c,0x08,0x7f,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 35025 裑 ; -+,0x20,0x18,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2d,0x4a,0x0b,0x0a,0x08,0x08,0x09,0x08,0x20,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x85,0xfe,0x04,0x0c,0x14,0x24,0x44,0x94,0x08 -+// 35026 裒 ; -+,0x01,0x00,0x7f,0x01,0x0e,0x08,0x0f,0x08,0x0f,0x01,0x06,0x1c,0x64,0x05,0x06,0x04,0x00,0x80,0xff,0x00,0x78,0x08,0x78,0x08,0xf8,0x86,0x58,0x20,0x10,0x0c,0x07,0x02 -+// 35027 裓 ; -+,0x20,0x18,0x08,0x7f,0x04,0x09,0x15,0x37,0x59,0x15,0x15,0x12,0x12,0x14,0x10,0x10,0x10,0x14,0x12,0xff,0x10,0x52,0x53,0xf2,0x54,0x4c,0x48,0x49,0x55,0x23,0x41,0x00 -+// 35028 裔 ; -+,0x00,0x3f,0x00,0x01,0x06,0x3a,0x03,0x1f,0x11,0x12,0x17,0x1a,0x13,0x12,0x10,0x10,0x80,0xff,0x84,0x48,0x30,0x8e,0x04,0xfe,0x22,0x1a,0xfa,0x12,0xf2,0x12,0x0a,0x04 -+// 35029 裕 ; -+,0x10,0x08,0x00,0x7d,0x06,0x04,0x08,0x1a,0x2d,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x88,0xc4,0x86,0x22,0x20,0x50,0x48,0x84,0x03,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35030 裖 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x09,0x09,0x0a,0x00,0xff,0x80,0x80,0xbe,0x80,0xff,0xa8,0xaa,0xac,0xa8,0xa4,0xa6,0x33,0x22,0x00 -+// 35031 裗 ; -+,0x20,0x18,0x09,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x08,0x08,0x09,0x09,0x0a,0x08,0x20,0x10,0xff,0x20,0x48,0x84,0xfe,0x02,0xa4,0xa4,0xa4,0xa4,0x25,0x25,0x23,0x00 -+// 35032 裘 ; -+,0x00,0x00,0x3f,0x08,0x04,0x08,0x12,0x01,0x7f,0x01,0x02,0x0c,0x74,0x05,0x06,0x04,0x90,0x88,0xfe,0x90,0xe0,0x98,0x86,0x00,0xff,0x80,0x44,0x28,0x18,0x0c,0x07,0x02 -+// 35033 裙 ; -+,0x10,0x09,0x08,0x7c,0x07,0x08,0x0b,0x14,0x38,0x54,0x11,0x12,0x14,0x10,0x10,0x10,0x00,0xfc,0x44,0x44,0xff,0x44,0xfc,0x44,0x80,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35034 裚 ; -+,0x08,0x08,0x3e,0x08,0x0e,0x38,0x08,0x29,0x10,0x3f,0x02,0x0c,0x34,0x05,0x06,0x04,0x0c,0xf0,0x80,0x80,0xfe,0x88,0x88,0x08,0x80,0xff,0x48,0x2c,0x30,0x18,0x0e,0x04 -+// 35035 裛 ; -+,0x00,0x7f,0x00,0x0f,0x08,0x1f,0x10,0x1f,0x10,0x0f,0x01,0x02,0x0c,0x35,0x06,0x04,0x80,0xff,0x00,0xf8,0x08,0xfc,0x84,0xfc,0x02,0xfe,0x08,0x8c,0x50,0x30,0x0c,0x03 -+// 35036 補 ; -+,0x20,0x18,0x08,0x7e,0x04,0x08,0x0a,0x1c,0x28,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x9a,0x94 -+// 35037 裝 ; -+,0x02,0x12,0x1e,0x02,0x1e,0x12,0x13,0x20,0x7f,0x01,0x03,0x06,0x1a,0x62,0x03,0x02,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x80,0xff,0x84,0x4c,0x30,0x10,0x8c,0x07,0x02 -+// 35038 裞 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x08,0x09,0x0a,0x84,0x44,0x48,0xfe,0x82,0x82,0x82,0xfe,0xaa,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 35039 裟 ; -+,0x10,0x48,0x34,0x21,0x09,0x30,0x10,0x17,0x00,0x7f,0x02,0x06,0x1a,0x62,0x07,0x02,0x20,0xa4,0xa3,0x21,0x26,0x18,0xe0,0x00,0x80,0xff,0x88,0x5c,0x20,0x98,0x07,0x02 -+// 35040 裠 ; -+,0x1f,0x01,0x1f,0x02,0x1f,0x04,0x0f,0x14,0x67,0x00,0x7f,0x02,0x04,0x1d,0x66,0x04,0xf8,0x08,0xff,0x08,0xf8,0x00,0xf8,0x08,0xf8,0x80,0xff,0x84,0x48,0x30,0x0f,0x02 -+// 35041 裡 ; -+,0x20,0x18,0x08,0x7e,0x04,0x04,0x0a,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x0b,0x08,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 35042 裢 ; -+,0x22,0x19,0x11,0x7c,0x04,0x08,0x13,0x35,0x59,0x19,0x15,0x11,0x11,0x12,0x14,0x10,0x10,0x10,0x7e,0x10,0x10,0x28,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x88,0x7f,0x00 -+// 35043 裣 ; -+,0x20,0x18,0x08,0x00,0x7d,0x06,0x08,0x0a,0x1a,0x2d,0x4a,0x08,0x08,0x0b,0x08,0x08,0x20,0x20,0x60,0x90,0x0c,0xfb,0x00,0x04,0x46,0x24,0xa8,0xa8,0x90,0xff,0x00,0x00 -+// 35044 裤 ; -+,0x20,0x18,0x11,0x7d,0x05,0x09,0x0b,0x1d,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x0a,0x20,0x10,0xff,0x10,0x10,0x7e,0x20,0x28,0x48,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08 -+// 35045 裥 ; -+,0x11,0x0c,0x08,0x7f,0x05,0x05,0x09,0x1b,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x80,0x5e,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 35046 裦 ; -+,0x00,0x7f,0x00,0x06,0x18,0x10,0x1c,0x10,0x1e,0x01,0x02,0x04,0x1c,0x65,0x06,0x04,0x80,0xff,0x00,0x7e,0x04,0xfe,0x32,0x54,0x90,0x30,0x84,0x48,0x30,0x08,0x07,0x02 -+// 35047 裧 ; -+,0x20,0x18,0x10,0x7e,0x05,0x08,0x0a,0x1c,0x2c,0x4a,0x08,0x09,0x08,0x08,0x08,0x09,0x10,0x10,0x92,0x94,0x28,0x24,0x42,0x91,0x10,0x92,0x94,0x28,0x28,0x44,0x83,0x02 -+// 35048 裨 ; -+,0x10,0x08,0x00,0x7e,0x04,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x10,0x20,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x20,0x50,0xff,0x10,0x10,0x10,0x10,0x10 -+// 35049 裩 ; -+,0x20,0x18,0x08,0x7e,0x02,0x04,0x0a,0x1c,0x2c,0x4a,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x88,0x89,0xea,0x8c,0x88,0xa9,0xc9,0x87,0x00 -+// 35050 裪 ; -+,0x10,0x08,0x08,0x7e,0x05,0x04,0x0a,0x1c,0x2d,0x4a,0x09,0x09,0x09,0x08,0x08,0x08,0x80,0x80,0xff,0x81,0x41,0x79,0xa1,0x21,0xfd,0x21,0x25,0x25,0xfd,0x01,0x05,0x02 -+// 35051 裫 ; -+,0x20,0x18,0x08,0x7e,0x04,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x09,0x09,0x0a,0x00,0xa5,0xa5,0xa5,0xe7,0x81,0x81,0xff,0x81,0xe7,0xa5,0xa5,0xa5,0x25,0x25,0x01 -+// 35052 裬 ; -+,0x10,0x0c,0x08,0x7e,0x03,0x04,0x0a,0x1b,0x2c,0x4a,0x0a,0x09,0x08,0x08,0x08,0x0b,0x10,0x10,0xfe,0x10,0xff,0x64,0x82,0x41,0x7e,0x44,0xa4,0x28,0x10,0x2c,0xc3,0x02 -+// 35053 裭 ; -+,0x10,0x08,0x08,0x7e,0x04,0x04,0x09,0x1a,0x2c,0x4a,0x08,0x09,0x09,0x0a,0x0c,0x08,0x10,0x1e,0x10,0xff,0x92,0xfc,0x91,0x8f,0x80,0xbc,0xa4,0x24,0x25,0x45,0x83,0x00 -+// 35054 裮 ; -+,0x10,0x08,0x08,0x7e,0x04,0x04,0x08,0x1a,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xff,0x01,0x01,0xff,0x01,0x01,0xff,0x00 -+// 35055 裯 ; -+,0x20,0x19,0x09,0x7f,0x05,0x05,0x09,0x1b,0x2d,0x4d,0x0b,0x09,0x09,0x09,0x09,0x0a,0x00,0xff,0x11,0x11,0x7d,0x11,0xff,0x01,0x7d,0x45,0x45,0x7d,0x45,0x01,0x05,0x02 -+// 35056 裰 ; -+,0x20,0x1b,0x12,0x7d,0x04,0x05,0x0a,0x0a,0x1d,0x2a,0x49,0x08,0x09,0x0a,0x0c,0x08,0x00,0xde,0x42,0x94,0x88,0x54,0x22,0x00,0xff,0x52,0x94,0x88,0x54,0x23,0x41,0x80 -+// 35057 裱 ; -+,0x20,0x18,0x09,0x7c,0x04,0x04,0x08,0x1b,0x2c,0x4a,0x08,0x09,0x0a,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0xfe,0x10,0x10,0xff,0x20,0x62,0x94,0x88,0x8c,0xa7,0xc2,0x80 -+// 35058 裲 ; -+,0x20,0x1b,0x08,0x7c,0x05,0x05,0x09,0x1b,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xff,0x10,0x10,0xff,0x11,0x99,0x55,0x55,0x55,0xbb,0x11,0x11,0x11,0x15,0x12 -+// 35059 裳 ; -+,0x08,0x04,0x02,0x3f,0x20,0x47,0x04,0x07,0x00,0x7f,0x03,0x06,0x1a,0x62,0x07,0x02,0x88,0x8c,0x90,0xff,0x02,0xf0,0x10,0xf0,0x80,0xff,0x44,0x28,0x18,0x87,0x02,0x00 -+// 35060 裴 ; -+,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x03,0x00,0x3f,0x01,0x02,0x04,0x1c,0x65,0x06,0x04,0x20,0x3e,0x20,0x3e,0x20,0x3f,0x20,0x80,0xff,0x80,0x44,0x28,0x10,0x08,0x07,0x02 -+// 35061 裵 ; -+,0x01,0x00,0x7f,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x03,0x06,0x1a,0x62,0x07,0x02,0x00,0x80,0xff,0x20,0x3e,0x20,0x3e,0x20,0x3e,0xa0,0x46,0x28,0x10,0x8c,0x07,0x02 -+// 35062 裶 ; -+,0x20,0x18,0x08,0x7f,0x04,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0x48,0xcf,0x48,0x48,0xce,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 35063 裷 ; -+,0x20,0x11,0x10,0x7d,0x04,0x08,0x1b,0x1a,0x2d,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x24,0xa8,0xfe,0x20,0x40,0xff,0x88,0x04,0xfb,0x88,0xa8,0x90,0x82,0x7e,0x00 -+// 35064 裸 ; -+,0x10,0x08,0x08,0x7e,0x04,0x08,0x1a,0x2c,0x4d,0x0a,0x08,0x08,0x08,0x09,0x0a,0x08,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x38,0x58,0x54,0x92,0x11,0x10,0x10 -+// 35065 裹 ; -+,0x00,0x3f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x03,0x0c,0x31,0x02,0x0c,0x35,0x06,0x04,0x80,0xff,0x88,0xf8,0x88,0xf8,0x80,0xff,0xe0,0x98,0x47,0x28,0x10,0x0c,0x03,0x00 -+// 35066 裺 ; -+,0x20,0x10,0x0b,0x7c,0x04,0x09,0x0a,0x1d,0x2b,0x49,0x09,0x09,0x08,0x08,0x08,0x08,0x20,0x20,0xff,0x50,0x88,0x24,0x23,0xfc,0x24,0xfc,0x24,0xfc,0x21,0x21,0x1f,0x00 -+// 35067 裻 ; -+,0x04,0x07,0x04,0x7f,0x04,0x16,0x25,0x54,0x08,0x3f,0x01,0x06,0x1a,0x62,0x03,0x02,0x00,0xbe,0x44,0xa4,0x28,0x10,0x2c,0xc3,0x40,0xff,0x44,0x28,0x10,0x88,0x07,0x02 -+// 35068 裼 ; -+,0x20,0x18,0x10,0x7e,0x02,0x04,0x0a,0x1c,0x2c,0x4b,0x0a,0x08,0x0b,0x08,0x09,0x08,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x80,0xff,0x49,0x49,0x89,0x11,0x61,0x8a,0x04 -+// 35069 製 ; -+,0x12,0x1f,0x22,0x7f,0x02,0x1f,0x12,0x12,0x00,0x7f,0x01,0x02,0x0c,0x15,0x66,0x04,0x02,0xc2,0x12,0xd2,0x12,0xd2,0x42,0x4a,0x84,0xff,0x44,0x28,0x10,0x0c,0x07,0x02 -+// 35070 裾 ; -+,0x20,0x18,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x09,0x09,0x09,0x0a,0x0a,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0xfe,0x90,0x90,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 35071 裿 ; -+,0x20,0x18,0x09,0x7e,0x04,0x04,0x09,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0xfe,0x20,0x50,0x88,0xff,0x04,0xf4,0x94,0x94,0xf4,0x94,0x04,0x14,0x08 -+// 35072 褀 ; -+,0x10,0x0c,0x08,0x7f,0x04,0x04,0x09,0x1a,0x2c,0x4a,0x0b,0x08,0x08,0x08,0x09,0x0a,0x44,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x48,0x64,0x82,0x03,0x02 -+// 35073 褁 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x01,0x0e,0x70,0x01,0x02,0x1c,0x64,0x05,0x06,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0xe0,0x9c,0x83,0x84,0x4e,0x30,0x58,0x87,0x02 -+// 35074 褂 ; -+,0x20,0x10,0x10,0x7d,0x04,0x08,0x17,0x34,0x58,0x15,0x14,0x10,0x10,0x17,0x10,0x10,0x84,0x84,0x84,0xf4,0x84,0x84,0xf4,0x86,0x85,0xf5,0x84,0x84,0xf4,0x84,0x04,0x04 -+// 35075 褃 ; -+,0x10,0x08,0x08,0x7e,0x04,0x07,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x90,0x9e,0x90,0x90,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 35076 褄 ; -+,0x10,0x09,0x08,0x7e,0x04,0x05,0x0a,0x1c,0x2c,0x4b,0x08,0x08,0x08,0x08,0x08,0x09,0x20,0xff,0x20,0xfc,0x24,0xff,0x24,0xfc,0x40,0xff,0x44,0xc8,0x30,0x48,0x86,0x04 -+// 35077 褅 ; -+,0x10,0x08,0x09,0x7e,0x04,0x0d,0x09,0x1a,0x2c,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x40,0x20,0xff,0x44,0x28,0xff,0x11,0x10,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 35078 褆 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x09,0x1a,0x2c,0x4a,0x0a,0x08,0x09,0x0a,0x0c,0x08,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xff,0x10,0x90,0x9e,0x90,0x50,0x30,0x0f,0x00 -+// 35079 複 ; -+,0x10,0x08,0x08,0x7d,0x04,0x08,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x09,0x08,0x08,0x0b,0x80,0x80,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0x7e,0x84,0x48,0x30,0xcc,0x03 -+// 35080 褈 ; -+,0x20,0x19,0x10,0x7d,0x04,0x04,0x08,0x1a,0x2c,0x4a,0x08,0x09,0x08,0x08,0x0b,0x08,0x0e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 35081 褉 ; -+,0x20,0x18,0x11,0x7c,0x05,0x08,0x09,0x1a,0x2c,0x4a,0x09,0x08,0x08,0x08,0x09,0x0a,0x80,0x80,0xfe,0x8a,0xea,0x8a,0xea,0x96,0xa0,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 35082 褊 ; -+,0x10,0x0c,0x08,0x7f,0x05,0x05,0x09,0x1b,0x2d,0x4b,0x09,0x0a,0x0c,0x08,0x08,0x08,0x40,0x30,0x10,0xfe,0x02,0xfe,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 35083 褋 ; -+,0x20,0x19,0x13,0x7d,0x05,0x09,0x0b,0x15,0x38,0x57,0x14,0x10,0x10,0x11,0x12,0x10,0x48,0x48,0xff,0x48,0x48,0x78,0x00,0xfe,0x20,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 35084 褌 ; -+,0x11,0x0d,0x08,0x7e,0x02,0x04,0x0a,0x1c,0x2a,0x48,0x08,0x09,0x08,0x08,0x08,0x08,0xff,0x12,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35085 褍 ; -+,0x20,0x18,0x08,0x7e,0x02,0x04,0x0b,0x18,0x2a,0x4d,0x0b,0x09,0x09,0x09,0x09,0x09,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x06 -+// 35086 褎 ; -+,0x01,0x00,0x7f,0x03,0x1c,0x10,0x1e,0x10,0x1f,0x10,0x01,0x06,0x1c,0x65,0x06,0x04,0x00,0x80,0xff,0x0c,0x70,0x10,0xfe,0x38,0x54,0x92,0x84,0x48,0x30,0x18,0x07,0x02 -+// 35087 褏 ; -+,0x01,0x00,0x7f,0x02,0x1c,0x10,0x1e,0x10,0x1e,0x11,0x01,0x06,0x1c,0x65,0x06,0x04,0x00,0x80,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x88,0x50,0x20,0x18,0x07,0x02 -+// 35088 褐 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x0a,0x1c,0x2b,0x4b,0x0d,0x09,0x09,0x09,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x80,0xff,0x11,0x11,0x29,0x45,0xfd,0x01,0x05,0x02 -+// 35089 褑 ; -+,0x20,0x19,0x10,0x7e,0x04,0x05,0x08,0x19,0x2a,0x4c,0x0a,0x08,0x09,0x0a,0x08,0x0b,0x1e,0xf2,0xa3,0x52,0x54,0xff,0x40,0xff,0x40,0x7e,0xc4,0xa8,0x10,0x2c,0xc7,0x02 -+// 35090 褒 ; -+,0x00,0x3f,0x08,0x0d,0x19,0x31,0x50,0x17,0x10,0x11,0x16,0x01,0x06,0x3c,0x06,0x04,0x80,0xff,0x00,0xf8,0x08,0xf8,0x20,0xff,0x70,0xa8,0xa6,0x88,0x50,0x30,0x0e,0x04 -+// 35091 褓 ; -+,0x20,0x18,0x08,0x7d,0x05,0x0b,0x09,0x15,0x39,0x55,0x15,0x11,0x11,0x11,0x11,0x11,0x80,0xfe,0xa2,0x22,0x22,0x3e,0x2a,0x08,0x7f,0x18,0x2c,0x2a,0x4b,0x8a,0x08,0x08 -+// 35092 褔 ; -+,0x20,0x19,0x08,0x7e,0x02,0x04,0x0a,0x1c,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x08,0x00,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00,0xff,0x11,0xff,0x11,0x11,0xff,0x01,0x00 -+// 35093 褕 ; -+,0x20,0x10,0x18,0x10,0x7f,0x04,0x09,0x15,0x39,0x55,0x15,0x11,0x11,0x11,0x11,0x11,0x20,0x20,0x50,0x8c,0x7b,0x00,0xe2,0x2a,0x2a,0xea,0x2a,0xea,0x2a,0x22,0x2a,0x64 -+// 35094 褖 ; -+,0x20,0x18,0x08,0x7d,0x04,0x07,0x08,0x1a,0x2d,0x4a,0x09,0x08,0x08,0x0b,0x08,0x08,0x80,0xfc,0x88,0xf8,0x08,0xff,0x40,0xa2,0x24,0x58,0xb4,0x56,0x93,0x12,0x50,0x20 -+// 35095 褗 ; -+,0x20,0x19,0x11,0x7d,0x05,0x09,0x13,0x35,0x59,0x15,0x11,0x11,0x11,0x11,0x11,0x10,0x00,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x24,0x18,0x24,0x42,0xff,0x00 -+// 35096 褘 ; -+,0x10,0x0c,0x08,0x7e,0x03,0x04,0x08,0x1a,0x2c,0x4a,0x08,0x08,0x09,0x08,0x08,0x08,0x20,0xfc,0x24,0x44,0xff,0x00,0xfe,0x82,0xfe,0x10,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 35097 褙 ; -+,0x20,0x18,0x09,0x7e,0x04,0x09,0x08,0x14,0x38,0x54,0x12,0x10,0x10,0x10,0x10,0x10,0x44,0x44,0xc7,0x44,0xc4,0x45,0x43,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 35098 褚 ; -+,0x20,0x18,0x08,0x7e,0x02,0x05,0x08,0x1a,0x2c,0x4b,0x0a,0x08,0x08,0x08,0x08,0x08,0x20,0x22,0xfe,0x24,0x28,0xff,0x20,0x40,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 35099 褛 ; -+,0x20,0x18,0x08,0x7f,0x04,0x04,0x08,0x19,0x2a,0x4d,0x0a,0x08,0x08,0x08,0x08,0x0b,0x10,0x92,0x54,0xff,0x38,0x54,0x93,0x20,0x20,0xff,0x44,0xe8,0x18,0x26,0xc3,0x00 -+// 35100 褜 ; -+,0x1e,0x12,0x1f,0x12,0x1e,0x12,0x22,0x4d,0x00,0x3f,0x01,0x06,0x1c,0x65,0x06,0x04,0x40,0x7c,0x84,0xf4,0x94,0xf4,0x81,0x7f,0x80,0xff,0x42,0x44,0x28,0x18,0x07,0x02 -+// 35101 褝 ; -+,0x21,0x18,0x08,0x7e,0x04,0x04,0x09,0x1a,0x2c,0x4a,0x09,0x0b,0x08,0x08,0x08,0x08,0x22,0xb2,0x94,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35102 褞 ; -+,0x10,0x08,0x08,0x7e,0x02,0x04,0x05,0x0a,0x1d,0x2b,0x49,0x09,0x09,0x09,0x0b,0x08,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 35103 褟 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x0a,0x1d,0x2d,0x4a,0x08,0x08,0x09,0x08,0x08,0x08,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xee,0x32,0xaa,0x66,0xaa,0x32,0x22,0xaa,0x44 -+// 35104 褠 ; -+,0x20,0x13,0x00,0x7d,0x04,0x0b,0x0a,0x15,0x39,0x55,0x11,0x13,0x11,0x11,0x11,0x11,0x48,0xff,0x48,0xfe,0x48,0xff,0x20,0xfc,0x24,0xfc,0x24,0xff,0x04,0x04,0x14,0x08 -+// 35105 褡 ; -+,0x10,0x08,0x03,0x7c,0x04,0x08,0x12,0x35,0x5a,0x14,0x12,0x10,0x10,0x10,0x10,0x10,0x88,0x88,0xff,0x88,0x20,0x50,0x8c,0x07,0xfa,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 35106 褢 ; -+,0x00,0x3f,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x0d,0x31,0x06,0x1c,0x75,0x06,0x04,0x80,0xff,0x00,0xf8,0x88,0xf8,0x88,0xf8,0x49,0x55,0xbf,0x48,0x30,0x18,0x07,0x02 -+// 35107 褣 ; -+,0x20,0x18,0x09,0x7f,0x04,0x04,0x08,0x1a,0x2c,0x4a,0x0b,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x01,0x48,0x46,0x94,0x28,0x44,0x83,0xfe,0x84,0x84,0x84,0xfc,0x84 -+// 35108 褤 ; -+,0x20,0x18,0x09,0x7e,0x03,0x04,0x08,0x1a,0x2c,0x4c,0x0a,0x08,0x09,0x0e,0x08,0x08,0x20,0x20,0xfe,0x20,0xff,0x00,0xfc,0x84,0xfc,0xa4,0x56,0xc8,0x4c,0x57,0x62,0x40 -+// 35109 褥 ; -+,0x10,0x09,0x09,0x7d,0x05,0x09,0x09,0x1b,0x2d,0x4b,0x09,0x0a,0x0a,0x0c,0x08,0x08,0x00,0xfe,0x00,0xfc,0x00,0xfc,0x66,0x58,0x67,0x44,0xff,0x04,0x44,0x44,0x14,0x08 -+// 35110 褦 ; -+,0x10,0x09,0x01,0x7e,0x0b,0x08,0x13,0x36,0x5b,0x16,0x12,0x13,0x12,0x12,0x12,0x12,0x08,0x08,0x49,0x2e,0xf8,0x29,0xe7,0x20,0xe8,0x29,0x2a,0xec,0x28,0x29,0xa9,0x47 -+// 35111 褧 ; -+,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x17,0x39,0x00,0x3f,0x01,0x02,0x0e,0x32,0x03,0x02,0x90,0x10,0x52,0x54,0x10,0x28,0xa6,0x42,0x80,0xff,0x44,0x28,0x10,0x88,0x07,0x02 -+// 35112 褨 ; -+,0x10,0x08,0x08,0x7f,0x04,0x04,0x0a,0x1d,0x2c,0x4a,0x08,0x08,0x08,0x09,0x0a,0x08,0x82,0x44,0x28,0xff,0x10,0xfe,0x10,0xff,0x20,0x20,0x7e,0x48,0x88,0x08,0xff,0x00 -+// 35113 褩 ; -+,0x04,0x1f,0x19,0x15,0x7f,0x19,0x15,0x11,0x22,0x7f,0x01,0x06,0x1a,0x62,0x03,0x02,0x3c,0x24,0x24,0x43,0x3e,0x24,0x18,0xa4,0x42,0xff,0x44,0x28,0x18,0x87,0x02,0x00 -+// 35114 褪 ; -+,0x20,0x1a,0x11,0x7d,0x05,0x08,0x14,0x3b,0x59,0x15,0x11,0x11,0x11,0x12,0x14,0x10,0x00,0x3c,0x24,0xbc,0x24,0x24,0x3c,0x29,0x2a,0x24,0x2a,0x31,0x20,0xc0,0x3f,0x00 -+// 35115 褫 ; -+,0x20,0x13,0x12,0x7e,0x0a,0x0a,0x12,0x36,0x5a,0x16,0x12,0x12,0x12,0x15,0x15,0x14,0x0f,0xf0,0x1e,0x10,0xff,0x90,0xfc,0x91,0x8f,0x80,0xbc,0xa4,0xa5,0x25,0x43,0x80 -+// 35116 褬 ; -+,0x10,0x08,0x00,0x7c,0x07,0x0a,0x09,0x1a,0x2c,0x4b,0x0a,0x08,0x08,0x09,0x0a,0x08,0xfc,0x44,0x38,0xc6,0xdc,0x52,0x8c,0x52,0x21,0xff,0x70,0x68,0xa4,0x23,0x22,0x20 -+// 35117 褭 ; -+,0x01,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x12,0x21,0x02,0x0c,0x75,0x06,0x04,0x00,0xff,0x80,0xf8,0x80,0xf8,0x80,0xff,0x49,0x49,0x83,0x48,0x30,0x18,0x07,0x02 -+// 35118 褮 ; -+,0x04,0x15,0x15,0x24,0x0a,0x11,0x3f,0x21,0x00,0x3f,0x01,0x02,0x0e,0x32,0x03,0x02,0x10,0x12,0x54,0x50,0x28,0x44,0xff,0x02,0x80,0xff,0x42,0x24,0x18,0x88,0x07,0x02 -+// 35119 褯 ; -+,0x20,0x18,0x11,0x7d,0x05,0x09,0x1b,0x2d,0x4b,0x09,0x09,0x09,0x09,0x0a,0x0a,0x08,0x10,0x08,0xff,0x22,0x22,0x7f,0x22,0x3e,0x08,0x7f,0x49,0x49,0x49,0x4b,0x08,0x08 -+// 35120 褰 ; -+,0x00,0x3f,0x22,0x5f,0x02,0x1f,0x02,0x7f,0x04,0x1f,0x61,0x06,0x1a,0x62,0x03,0x02,0x80,0xff,0x22,0xfc,0x20,0xfe,0x20,0xff,0x88,0xf7,0x82,0x48,0x30,0x90,0x0e,0x04 -+// 35121 褱 ; -+,0x00,0x3f,0x00,0x0f,0x09,0x0f,0x08,0x04,0x02,0x04,0x19,0x02,0x0c,0x35,0x06,0x04,0x80,0xff,0x00,0xfc,0x24,0xfc,0x80,0xa4,0x98,0x8e,0x84,0x48,0x30,0x18,0x07,0x02 -+// 35122 褲 ; -+,0x20,0x18,0x09,0x7d,0x05,0x05,0x09,0x1b,0x2d,0x4b,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x10,0x08,0xff,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0xff,0x08,0x08,0x08 -+// 35123 褳 ; -+,0x20,0x1a,0x11,0x7d,0x05,0x08,0x13,0x35,0x59,0x15,0x13,0x11,0x11,0x12,0x14,0x10,0x10,0x10,0x7e,0x90,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x10,0x10,0x90,0x7f,0x00 -+// 35124 褴 ; -+,0x20,0x18,0x11,0x7d,0x05,0x09,0x13,0x34,0x58,0x15,0x13,0x11,0x11,0x11,0x17,0x10,0x48,0x48,0x48,0x5f,0x50,0x68,0x44,0x44,0x00,0xfc,0x54,0x54,0x54,0x54,0xff,0x00 -+// 35125 褵 ; -+,0x10,0x08,0x0b,0x7c,0x05,0x05,0x09,0x19,0x2a,0x4d,0x0b,0x09,0x09,0x09,0x09,0x09,0x20,0x10,0xff,0x00,0x4a,0x32,0x4a,0xfe,0x20,0xff,0x21,0x49,0xfd,0x09,0x05,0x02 -+// 35126 褶 ; -+,0x10,0x0b,0x09,0x7c,0x04,0x05,0x0a,0x1c,0x2a,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0xee,0x32,0xaa,0xa6,0x2a,0x22,0x10,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 35127 褷 ; -+,0x21,0x19,0x11,0x7e,0x04,0x09,0x13,0x35,0x59,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x10,0x90,0x10,0x9e,0xd0,0x50,0xff,0x10,0x10,0x5e,0x50,0x50,0x50,0xb0,0x0f,0x00 -+// 35128 褸 ; -+,0x20,0x19,0x09,0x7f,0x05,0x09,0x10,0x35,0x59,0x15,0x10,0x13,0x10,0x10,0x10,0x13,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xfc,0x24,0xfc,0x40,0xff,0x84,0xc8,0x30,0xcf -+// 35129 褹 ; -+,0x21,0x19,0x13,0x7d,0x05,0x09,0x17,0x34,0x59,0x17,0x11,0x11,0x11,0x16,0x10,0x10,0x10,0x10,0x90,0x3c,0x14,0x14,0xd4,0x94,0x54,0xb4,0x1c,0x15,0xe5,0x23,0x41,0x80 -+// 35130 褺 ; -+,0x08,0x3e,0x08,0x7e,0x24,0x7e,0x08,0x7e,0x08,0x3f,0x02,0x04,0x1c,0x65,0x06,0x04,0x20,0x20,0xfc,0x24,0x64,0x25,0x55,0x83,0x81,0xfe,0x88,0x5c,0x20,0x18,0x07,0x02 -+// 35131 褻 ; -+,0x00,0x7f,0x08,0x3e,0x08,0x7f,0x14,0x3e,0x08,0x7f,0x08,0x3f,0x02,0x0c,0x75,0x06,0x80,0xff,0x20,0x20,0x7c,0x24,0x24,0x24,0x25,0x43,0x80,0xff,0x44,0x28,0x18,0x07 -+// 35132 褼 ; -+,0x00,0x23,0x10,0x7d,0x09,0x09,0x10,0x37,0x58,0x15,0x12,0x14,0x10,0x10,0x10,0x10,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x40,0xff,0x88,0xfc,0x8b,0x8a,0xf8,0x82,0x82,0x7e -+// 35133 褽 ; -+,0x1f,0x11,0x1f,0x10,0x1f,0x12,0x2a,0x32,0x44,0x7f,0x01,0x02,0x0c,0x75,0x06,0x04,0x04,0x04,0x7f,0x04,0xa4,0x14,0x84,0x54,0x48,0xff,0x80,0x44,0x28,0x18,0x07,0x02 -+// 35134 褾 ; -+,0x20,0x1b,0x10,0x7d,0x05,0x05,0x08,0x19,0x2a,0x4d,0x0a,0x08,0x09,0x0a,0x08,0x08,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xfe,0x00,0xff,0x20,0xa8,0x24,0x26,0xa4,0x40 -+// 35135 褿 ; -+,0x10,0x08,0x0b,0x7c,0x05,0x09,0x09,0x1b,0x2d,0x4a,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0xff,0x48,0xfe,0x4a,0xfe,0x4a,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 35136 襀 ; -+,0x20,0x19,0x08,0x7e,0x02,0x07,0x08,0x1a,0x2c,0x4a,0x0a,0x08,0x08,0x08,0x08,0x09,0x10,0xff,0x10,0xfc,0x10,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x48,0x66,0x83,0x02 -+// 35137 襁 ; -+,0x20,0x13,0x00,0x7c,0x07,0x0a,0x12,0x36,0x5b,0x16,0x10,0x10,0x10,0x12,0x11,0x10,0x00,0xbe,0xa2,0xa2,0xbe,0x08,0x3e,0x2a,0xaa,0xaa,0xbe,0x88,0x8a,0x8f,0x72,0x00 -+// 35138 襂 ; -+,0x20,0x18,0x10,0x7c,0x04,0x09,0x0b,0x14,0x38,0x5b,0x15,0x10,0x11,0x16,0x10,0x17,0x20,0x48,0xfc,0x04,0x88,0x52,0xef,0x52,0x8c,0x73,0x98,0x66,0x8c,0x30,0xc0,0x00 -+// 35139 襃 ; -+,0x00,0x7f,0x02,0x1c,0x10,0x1e,0x10,0x10,0x1e,0x00,0x03,0x0c,0x34,0x45,0x06,0x04,0x80,0xff,0x00,0x7c,0x44,0x7c,0x10,0xfe,0x38,0xd4,0x52,0x24,0x28,0x10,0x0e,0x04 -+// 35140 襄 ; -+,0x00,0x3f,0x09,0x0f,0x02,0x1f,0x02,0x1f,0x02,0x7f,0x02,0x06,0x1a,0x62,0x03,0x02,0x80,0xff,0x24,0x3c,0x20,0xfe,0x20,0xfc,0x20,0xff,0x44,0x28,0x10,0x8c,0x07,0x02 -+// 35141 襅 ; -+,0x11,0x09,0x09,0x7d,0x05,0x08,0x0a,0x1d,0x2c,0x4b,0x08,0x08,0x0b,0x08,0x08,0x08,0xff,0x11,0xff,0x11,0xff,0x92,0x92,0xff,0x92,0xff,0x10,0x10,0xff,0x10,0x10,0x10 -+// 35142 襆 ; -+,0x20,0x19,0x08,0x7e,0x03,0x04,0x09,0x1a,0x2d,0x4a,0x0b,0x08,0x08,0x08,0x09,0x0a,0x48,0x4a,0xcc,0x48,0xff,0x88,0xfe,0x20,0xfe,0x20,0xff,0x20,0x50,0x88,0x07,0x02 -+// 35143 襇 ; -+,0x20,0x11,0x09,0x7d,0x05,0x09,0x09,0x13,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x49,0x79,0x01,0x05,0x02 -+// 35144 襈 ; -+,0x20,0x19,0x09,0x7d,0x05,0x09,0x0b,0x1c,0x2d,0x4a,0x08,0x0b,0x08,0x08,0x09,0x0a,0x00,0xde,0x52,0xde,0x10,0x51,0xdf,0x48,0xff,0x48,0x48,0xff,0x48,0x86,0x03,0x02 -+// 35145 襉 ; -+,0x20,0x19,0x11,0x7d,0x05,0x09,0x09,0x15,0x39,0x55,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0x49,0x99,0x03 -+// 35146 襊 ; -+,0x21,0x19,0x11,0x7d,0x05,0x08,0x13,0x35,0x59,0x19,0x15,0x11,0x11,0x17,0x10,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x20,0xfe,0x32,0xea,0x24,0xf4,0x2a,0x31,0x20 -+// 35147 襋 ; -+,0x21,0x11,0x17,0x79,0x0f,0x15,0x15,0x3d,0x55,0x13,0x13,0x15,0x15,0x19,0x11,0x10,0x04,0x04,0xdf,0x04,0xdf,0x55,0x55,0x55,0x55,0x94,0x4e,0x2e,0x15,0x15,0x24,0x04 -+// 35148 襌 ; -+,0x20,0x19,0x11,0x7d,0x04,0x08,0x0a,0x14,0x38,0x54,0x12,0x11,0x10,0x10,0x10,0x10,0x00,0xef,0x29,0xef,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35149 襍 ; -+,0x10,0x0c,0x08,0x7d,0x06,0x08,0x0a,0x1c,0x2c,0x4a,0x09,0x08,0x08,0x08,0x09,0x08,0x90,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x10,0xff,0x38,0x54,0x97,0x12,0x10 -+// 35150 襎 ; -+,0x20,0x19,0x11,0x7e,0x05,0x04,0x08,0x1b,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x09,0x0e,0xf0,0x24,0xa8,0xfe,0x70,0xa8,0x24,0xff,0x24,0x24,0xfc,0x24,0x24,0xfc,0x04 -+// 35151 襏 ; -+,0x27,0x1a,0x09,0x7d,0x06,0x09,0x0a,0x1c,0x2b,0x4a,0x0b,0x08,0x08,0x08,0x0a,0x09,0xa4,0xa9,0x92,0x0c,0x07,0xba,0xa8,0xa8,0xa6,0x40,0xbe,0xa4,0x98,0x94,0xa2,0x41 -+// 35152 襐 ; -+,0x20,0x18,0x10,0x7d,0x05,0x09,0x11,0x34,0x59,0x14,0x10,0x13,0x10,0x13,0x10,0x10,0x40,0x7c,0x88,0xfe,0x12,0xfe,0x20,0x42,0xa4,0x58,0xb8,0x54,0x93,0x12,0x50,0x20 -+// 35153 襑 ; -+,0x11,0x08,0x08,0x7e,0x05,0x08,0x1b,0x1c,0x2d,0x4a,0x0f,0x08,0x08,0x08,0x08,0x08,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x92,0xde,0x04,0xff,0x84,0x64,0x44,0x14,0x08 -+// 35154 襒 ; -+,0x20,0x18,0x12,0x7d,0x04,0x0b,0x1a,0x32,0x56,0x1b,0x16,0x12,0x12,0x12,0x12,0x12,0x88,0x8c,0xa8,0xcf,0x9a,0xea,0xaa,0xaa,0xaa,0xea,0xa4,0xa4,0xaa,0xa9,0xb1,0x60 -+// 35155 襓 ; -+,0x20,0x18,0x08,0x7e,0x05,0x04,0x09,0x1a,0x2d,0x4a,0x09,0x08,0x08,0x08,0x08,0x09,0x20,0x20,0xfc,0x20,0xfe,0x88,0xde,0x88,0xdf,0x00,0xfe,0x48,0x48,0x49,0x89,0x07 -+// 35156 襔 ; -+,0x20,0x18,0x11,0x7e,0x04,0x04,0x09,0x19,0x2b,0x4d,0x0b,0x09,0x09,0x09,0x09,0x09,0x44,0x44,0xff,0x44,0x7c,0x00,0xff,0x11,0x99,0x55,0x5b,0xbb,0xb1,0x11,0x15,0x12 -+// 35157 襕 ; -+,0x20,0x18,0x11,0x7d,0x05,0x09,0x09,0x1b,0x2d,0x4b,0x09,0x09,0x09,0x09,0x09,0x09,0x80,0x5f,0x11,0xfd,0x11,0x7d,0x55,0x7d,0x55,0x7d,0x39,0x55,0x55,0x95,0x15,0x12 -+// 35158 襖 ; -+,0x20,0x18,0x09,0x7d,0x05,0x09,0x09,0x15,0x39,0x55,0x17,0x10,0x10,0x10,0x11,0x12,0x20,0x40,0xfe,0x96,0x5a,0xfe,0x3a,0x56,0x92,0x22,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 35159 襗 ; -+,0x20,0x19,0x09,0x7d,0x04,0x09,0x0a,0x1b,0x2c,0x4a,0x0b,0x08,0x0b,0x08,0x08,0x08,0x00,0xfe,0x4a,0xfe,0x20,0xfc,0x20,0xff,0x88,0x50,0xfe,0x20,0xff,0x20,0x20,0x20 -+// 35160 襘 ; -+,0x20,0x10,0x10,0x7c,0x07,0x05,0x09,0x1b,0x2d,0x4a,0x0a,0x08,0x08,0x08,0x08,0x08,0x20,0x20,0x50,0xfc,0x03,0xfe,0xa6,0x6a,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84 -+// 35161 襙 ; -+,0x20,0x18,0x08,0x7e,0x02,0x05,0x09,0x19,0x2a,0x4d,0x0a,0x08,0x08,0x09,0x0a,0x08,0x00,0x7c,0x44,0x7c,0x00,0xef,0x29,0xef,0x10,0xff,0x30,0x58,0x94,0x13,0x12,0x10 -+// 35162 襚 ; -+,0x20,0x12,0x01,0x7d,0x04,0x08,0x10,0x37,0x59,0x15,0x11,0x11,0x11,0x12,0x14,0x10,0x42,0x22,0xa4,0x7f,0x10,0x21,0x52,0x1c,0x2c,0xda,0x2b,0xc9,0x28,0x90,0x7f,0x00 -+// 35163 襛 ; -+,0x20,0x19,0x09,0x7d,0x05,0x09,0x12,0x35,0x59,0x15,0x13,0x11,0x11,0x12,0x12,0x14,0x48,0xfe,0x4a,0xfe,0x4a,0xfe,0x00,0xff,0x00,0x7e,0x00,0xff,0x4a,0x4c,0xe7,0x42 -+// 35164 襜 ; -+,0x20,0x18,0x08,0x7d,0x05,0x09,0x09,0x15,0x39,0x55,0x11,0x11,0x11,0x12,0x12,0x14,0x40,0x7c,0x88,0xff,0x44,0x92,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x00 -+// 35165 襝 ; -+,0x20,0x18,0x08,0x7c,0x05,0x0a,0x09,0x1b,0x2d,0x4b,0x08,0x08,0x08,0x09,0x09,0x0a,0x20,0x30,0x48,0x84,0xfb,0x00,0xde,0x52,0x52,0xde,0x84,0x84,0x84,0x4a,0x29,0x11 -+// 35166 襞 ; -+,0x00,0x1f,0x11,0x1f,0x10,0x3f,0x31,0x5f,0x00,0x3f,0x01,0x02,0x0c,0x75,0x06,0x04,0x10,0x7e,0x44,0x28,0xff,0x10,0x7e,0x90,0x50,0xff,0x44,0x2e,0x10,0x0c,0x07,0x02 -+// 35167 襟 ; -+,0x20,0x18,0x13,0x7c,0x05,0x0a,0x10,0x34,0x59,0x14,0x13,0x10,0x10,0x11,0x12,0x10,0x88,0x88,0xde,0x8c,0xdb,0xaa,0x88,0x00,0xfe,0x00,0xff,0x10,0x94,0x13,0x52,0x20 -+// 35168 襠 ; -+,0x21,0x18,0x08,0x7d,0x05,0x0a,0x10,0x34,0x58,0x15,0x15,0x11,0x11,0x11,0x11,0x10,0x11,0xd2,0x94,0xff,0x01,0xfe,0x82,0xfe,0x00,0xff,0x11,0xff,0x11,0x11,0xff,0x00 -+// 35169 襡 ; -+,0x20,0x19,0x11,0x7d,0x05,0x08,0x1a,0x2d,0x4a,0x0a,0x08,0x08,0x08,0x09,0x08,0x08,0x00,0xfe,0x4a,0x4a,0xfe,0x80,0xff,0x21,0xf9,0xa9,0xf9,0x29,0x3d,0xc5,0x05,0x02 -+// 35170 襢 ; -+,0x20,0x1b,0x10,0x7d,0x05,0x09,0x19,0x2b,0x4c,0x0a,0x08,0x08,0x08,0x08,0x08,0x0b,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 35171 襣 ; -+,0x20,0x18,0x10,0x7c,0x04,0x08,0x10,0x35,0x59,0x15,0x11,0x13,0x10,0x10,0x11,0x12,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfe,0x22,0xfe,0x22,0xff,0x88,0x88,0x08,0x08 -+// 35172 襤 ; -+,0x21,0x19,0x09,0x7d,0x05,0x09,0x09,0x1b,0x2d,0x4a,0x09,0x09,0x09,0x09,0x0f,0x08,0xe8,0x48,0x48,0xef,0x28,0xea,0x52,0x42,0xe0,0x00,0xfc,0x54,0x54,0x54,0xff,0x00 -+// 35173 襥 ; -+,0x20,0x18,0x11,0x7d,0x06,0x0b,0x11,0x35,0x59,0x15,0x13,0x11,0x11,0x11,0x11,0x11,0xa8,0xa9,0x6a,0x28,0xff,0x44,0xfe,0x10,0x7e,0x10,0xff,0x10,0x28,0x24,0x43,0x82 -+// 35174 襦 ; -+,0x20,0x1b,0x10,0x7d,0x05,0x0a,0x10,0x34,0x5b,0x14,0x13,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x20,0xff,0x21,0xae,0x20,0x00,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0x4a,0x06 -+// 35175 襧 ; -+,0x20,0x19,0x10,0x7c,0x05,0x09,0x11,0x35,0x59,0x15,0x11,0x11,0x11,0x11,0x11,0x11,0x00,0xff,0x54,0x92,0x11,0xff,0x11,0xbb,0x55,0xbb,0x55,0x55,0xbb,0x11,0x15,0x02 -+// 35176 襨 ; -+,0x21,0x15,0x13,0x7d,0x0b,0x0a,0x15,0x3b,0x54,0x10,0x13,0x10,0x10,0x10,0x17,0x10,0x42,0x52,0x62,0x42,0xf2,0x2f,0x42,0xf2,0x8a,0x8a,0xf2,0x82,0x82,0xf2,0x0a,0x04 -+// 35177 襩 ; -+,0x20,0x1b,0x10,0x7c,0x04,0x09,0x13,0x35,0x58,0x14,0x12,0x10,0x10,0x10,0x10,0x11,0x10,0xff,0x10,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 35178 襪 ; -+,0x20,0x18,0x13,0x7c,0x05,0x09,0x0b,0x1c,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x0a,0x48,0x48,0xff,0x48,0xfe,0x4a,0xfe,0x14,0xff,0x10,0x92,0x54,0x09,0x15,0x22,0x00 -+// 35179 襫 ; -+,0x20,0x18,0x13,0x7c,0x07,0x05,0x0b,0x1a,0x2f,0x4a,0x0b,0x08,0x08,0x08,0x09,0x0a,0x20,0x20,0xff,0x20,0xee,0x24,0xae,0xaa,0xae,0xaa,0xae,0x50,0x48,0x84,0x03,0x02 -+// 35180 襬 ; -+,0x20,0x19,0x11,0x7d,0x04,0x09,0x13,0x34,0x59,0x15,0x13,0x11,0x11,0x11,0x11,0x11,0x00,0xfe,0x4a,0xfe,0x88,0x2a,0xfc,0x29,0xe7,0x28,0xe9,0x2e,0xe8,0x29,0x2f,0x60 -+// 35181 襭 ; -+,0x20,0x10,0x18,0x13,0x7c,0x04,0x0b,0x10,0x37,0x5a,0x16,0x13,0x12,0x12,0x10,0x10,0x80,0x9f,0x84,0xe8,0x9f,0x91,0xff,0x11,0xdf,0x51,0x5f,0xc0,0x52,0x12,0x21,0x41 -+// 35182 襮 ; -+,0x20,0x18,0x10,0x7c,0x04,0x08,0x09,0x12,0x35,0x58,0x14,0x11,0x12,0x10,0x13,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x48,0xfe,0x48,0xff,0x48,0xa4,0xab,0x72,0xa8,0x26,0x64 -+// 35183 襯 ; -+,0x22,0x19,0x11,0x7f,0x06,0x09,0x13,0x35,0x5b,0x15,0x13,0x15,0x19,0x11,0x15,0x12,0x00,0xbe,0x22,0xfe,0x62,0xa2,0xfe,0x22,0xe2,0x3e,0x94,0x54,0x55,0x25,0x27,0x40 -+// 35184 襰 ; -+,0x21,0x11,0x07,0x79,0x0f,0x15,0x15,0x35,0x5f,0x11,0x13,0x13,0x15,0x19,0x11,0x11,0x10,0x10,0xdf,0x22,0xde,0x52,0x5e,0x52,0xde,0x92,0x5e,0x60,0x54,0x12,0x23,0x42 -+// 35185 襱 ; -+,0x21,0x18,0x13,0x7e,0x09,0x0f,0x10,0x37,0x5a,0x17,0x12,0x13,0x12,0x12,0x12,0x12,0x10,0x90,0xdf,0x50,0x9e,0xe2,0x1e,0xd0,0x50,0xde,0x50,0xde,0x51,0x51,0x5f,0xc0 -+// 35186 襲 ; -+,0x08,0x3f,0x12,0x3f,0x00,0x3e,0x22,0x3e,0x22,0x26,0x00,0x3f,0x02,0x0c,0x35,0x06,0x20,0x3e,0x20,0x3e,0x02,0x3e,0x20,0x3e,0x21,0xbf,0x80,0xff,0x44,0x28,0x18,0x06 -+// 35187 襳 ; -+,0x21,0x19,0x0a,0x7c,0x07,0x08,0x0b,0x1c,0x2b,0x4c,0x0b,0x08,0x08,0x0b,0x08,0x08,0x50,0x54,0xb2,0x10,0xff,0xa8,0xba,0xab,0xba,0xa6,0xbc,0xa5,0xfd,0x13,0x21,0x00 -+// 35188 襴 ; -+,0x23,0x12,0x13,0x7e,0x0b,0x0a,0x13,0x36,0x5b,0x16,0x13,0x12,0x12,0x12,0x13,0x12,0xcf,0x49,0xcf,0x49,0xcf,0x21,0xfd,0x21,0xfd,0xa5,0xfd,0x71,0x69,0xad,0x29,0x23 -+// 35189 襵 ; -+,0x21,0x18,0x10,0x7e,0x02,0x05,0x08,0x1b,0x2d,0x4d,0x0b,0x09,0x09,0x0f,0x08,0x08,0xff,0x84,0xe4,0x9c,0x84,0xff,0x04,0xff,0x52,0xde,0x52,0xde,0x52,0xff,0x42,0x42 -+// 35190 襶 ; -+,0x20,0x1b,0x10,0x7f,0x04,0x0b,0x0a,0x17,0x39,0x57,0x11,0x17,0x11,0x11,0x12,0x14,0x88,0xea,0x8a,0xff,0x08,0xe8,0xaa,0xeb,0x4a,0xf4,0x44,0xf5,0x4d,0x53,0x31,0x20 -+// 35191 襷 ; -+,0x10,0x09,0x09,0x7d,0x05,0x05,0x09,0x1b,0x2c,0x49,0x0a,0x09,0x08,0x09,0x08,0x08,0x20,0xbe,0x22,0xbe,0x0a,0xae,0x2a,0xff,0x84,0x7b,0x22,0xfe,0x20,0xfe,0x20,0x60 -+// 35192 襸 ; -+,0x22,0x1b,0x12,0x7f,0x09,0x09,0x12,0x15,0x39,0x55,0x11,0x11,0x11,0x11,0x10,0x13,0x94,0xdf,0x94,0xff,0x4a,0x6b,0x52,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0xd8,0x06 -+// 35193 襹 ; -+,0x23,0x18,0x13,0x7f,0x0a,0x0a,0x13,0x36,0x5b,0x16,0x13,0x12,0x12,0x12,0x12,0x14,0xde,0x00,0xde,0x5a,0xd6,0x52,0xff,0x50,0xfe,0x52,0xfe,0x90,0xd4,0x99,0xd1,0x8f -+// 35194 襺 ; -+,0x20,0x18,0x13,0x7c,0x0b,0x0a,0x12,0x37,0x5b,0x16,0x13,0x12,0x12,0x12,0x12,0x12,0x48,0x48,0xff,0x48,0xff,0xa9,0xa9,0x3f,0xe9,0xbf,0xe9,0x2b,0xbf,0xa3,0x21,0x23 -+// 35195 襻 ; -+,0x21,0x19,0x0b,0x7d,0x07,0x09,0x09,0x17,0x38,0x55,0x12,0x15,0x10,0x13,0x10,0x10,0x54,0x24,0xdf,0x2e,0xad,0x54,0x44,0xff,0x88,0x77,0x22,0xfc,0x20,0xfe,0x20,0x60 -+// 35196 襼 ; -+,0x20,0x1b,0x11,0x7b,0x09,0x0f,0x11,0x37,0x59,0x17,0x10,0x13,0x10,0x17,0x10,0x13,0x48,0xff,0x48,0x88,0x1e,0x8a,0x2a,0xd2,0x1a,0xd1,0x20,0xfe,0x00,0xff,0x84,0xfe -+// 35197 襽 ; -+,0x20,0x1b,0x10,0x7d,0x05,0x09,0x0b,0x1d,0x2b,0x49,0x09,0x09,0x09,0x09,0x09,0x09,0x48,0xff,0x48,0xef,0x29,0xef,0x29,0xef,0x11,0x7d,0x11,0x7d,0x55,0x7d,0x39,0x55 -+// 35198 襾 ; -+,0x00,0x7f,0x02,0x02,0x02,0x3f,0x22,0x22,0x22,0x22,0x23,0x22,0x20,0x20,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0xe2,0x22,0x02,0x02,0x00,0x00 -+// 35199 西 ; -+,0x00,0x7f,0x02,0x02,0x3f,0x22,0x22,0x22,0x22,0x24,0x28,0x30,0x20,0x3f,0x20,0x00,0x00,0xff,0x20,0x20,0xfe,0x22,0x22,0x22,0x22,0x1e,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 35200 覀 ; -+,0x00,0x7f,0x02,0x1f,0x12,0x12,0x1f,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x20,0xfc,0x24,0x24,0xfc,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 35201 要 ; -+,0x00,0x7f,0x02,0x1f,0x12,0x12,0x1f,0x12,0x02,0x7f,0x04,0x07,0x00,0x03,0x0c,0x30,0x00,0xff,0x20,0xfc,0x24,0x24,0xfc,0x04,0x00,0xff,0x08,0x10,0xe0,0x18,0x06,0x04 -+// 35202 覂 ; -+,0x3f,0x02,0x1f,0x12,0x1f,0x10,0x01,0x3e,0x00,0x1f,0x00,0x00,0x01,0x06,0x39,0x00,0xfe,0x20,0xfc,0x24,0xfc,0x00,0xfc,0x80,0x40,0xfc,0x18,0x60,0x80,0x00,0xff,0x00 -+// 35203 覃 ; -+,0x3f,0x02,0x1f,0x12,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0xff,0x20,0xfc,0x24,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x80,0xff,0x80,0x80,0x80 -+// 35204 覄 ; -+,0x3f,0x02,0x02,0x1f,0x12,0x1f,0x04,0x06,0x04,0x0b,0x18,0x28,0x08,0x09,0x0a,0x0c,0xfe,0x20,0x20,0xfc,0x24,0xfc,0x50,0x4c,0x48,0xfe,0x40,0xa0,0x90,0x0c,0x07,0x02 -+// 35205 覅 ; -+,0x00,0x7f,0x0a,0x3f,0x2a,0x2a,0x3f,0x08,0x7f,0x12,0x22,0x1a,0x04,0x0b,0x11,0x20,0x20,0xa0,0x20,0xbf,0xb5,0xd5,0x95,0x15,0xa5,0x29,0x49,0x91,0x11,0x21,0x45,0x02 -+// 35206 覆 ; -+,0x7f,0x02,0x3f,0x22,0x3f,0x09,0x15,0x26,0x4d,0x19,0x29,0x48,0x09,0x0a,0x08,0x0b,0xff,0x20,0xfe,0x22,0xfe,0x00,0xfe,0x00,0xfc,0x24,0xfc,0x80,0xfe,0x84,0x78,0x87 -+// 35207 覇 ; -+,0x7f,0x01,0x1f,0x11,0x1f,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x7f,0x04,0xff,0x20,0xfe,0x22,0xfe,0x00,0xbe,0x22,0x3e,0x22,0xbe,0xa2,0xa2,0x22,0xca,0x44 -+// 35208 覈 ; -+,0x7f,0x01,0x1f,0x11,0x1f,0x08,0x3e,0x32,0x2a,0x3e,0x08,0x7f,0x10,0x1e,0x22,0x46,0xff,0x20,0xfe,0x22,0xfe,0x20,0x20,0x3f,0x62,0xa2,0x14,0x14,0x08,0x14,0x22,0x41 -+// 35209 覉 ; -+,0x7f,0x01,0x1f,0x11,0x1f,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x7f,0x04,0xff,0x20,0xfe,0x22,0xfe,0x08,0xbe,0x08,0x14,0x7f,0x02,0x7a,0x4a,0x7a,0x82,0x06 -+// 35210 覊 ; -+,0x3f,0x01,0x1f,0x11,0x1f,0x12,0x3f,0x12,0x1e,0x04,0x1f,0x15,0x1f,0x04,0x3f,0x04,0xff,0x20,0xfe,0x22,0xfe,0x00,0x7e,0x48,0x7e,0x48,0x7f,0x29,0x29,0x45,0x85,0x02 -+// 35211 見 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x20,0x20,0x22,0x23,0x1e,0x00 -+// 35212 覌 ; -+,0x00,0x3e,0x02,0x42,0x24,0x14,0x08,0x08,0x14,0x12,0x23,0x22,0x40,0x00,0x01,0x02,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0xaa,0x28,0x48,0x49,0x89,0x07,0x00 -+// 35213 覍 ; -+,0x00,0x04,0x06,0x08,0x17,0x24,0x07,0x04,0x07,0x04,0x07,0x01,0x01,0x02,0x04,0x08,0x80,0x90,0x8c,0x86,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x20,0x22,0x22,0x1e -+// 35214 覎 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x12,0x12,0x12,0x22,0x21,0x40,0x00,0x7f,0x02,0x04,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x29,0x11,0x01,0xfe,0x00 -+// 35215 規 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x7f,0x08,0x08,0x14,0x13,0x22,0x20,0x40,0x01,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35216 覐 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x12,0x12,0x12,0x22,0x21,0x40,0x22,0x14,0x08,0x08,0x14,0x22,0x42,0x24,0x14,0x08,0x14,0x12,0x21,0x01,0xff,0x00 -+// 35217 覑 ; -+,0x12,0x12,0x12,0x12,0x1f,0x10,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x01,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35218 覒 ; -+,0x00,0x0e,0x78,0x08,0x0e,0x78,0x08,0x0e,0x78,0x08,0x08,0x08,0x0a,0x0c,0x08,0x01,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35219 覓 ; -+,0x00,0x1f,0x08,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x02,0x04,0x08,0x7c,0x88,0x8c,0x50,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x20,0x22,0x22,0x1e -+// 35220 覔 ; -+,0x3f,0x00,0x01,0x06,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x04,0x18,0xff,0xc0,0xa0,0x98,0x87,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x21,0x21,0x1f -+// 35221 覕 ; -+,0x10,0x08,0x05,0x05,0x11,0x12,0x12,0x52,0x54,0x54,0x59,0x11,0x2f,0x40,0x00,0x01,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x28,0x28,0x29,0x49,0x49,0x87,0x00 -+// 35222 視 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x08,0x14,0x2a,0x4b,0x0a,0x08,0x08,0x08,0x08,0x09,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35223 覗 ; -+,0x00,0x7e,0x02,0x02,0x7a,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x02,0x0a,0x05,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35224 覘 ; -+,0x10,0x10,0x10,0x1e,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00,0x01,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0x48,0x48,0x48,0x49,0x87,0x00 -+// 35225 覙 ; -+,0x10,0x10,0x1f,0x21,0x22,0x48,0x08,0x2a,0x2a,0x29,0x49,0x08,0x08,0x28,0x10,0x01,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35226 覚 ; -+,0x11,0x0c,0x08,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x02,0x04,0x08,0x04,0xc4,0x88,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x21,0x21,0x1f -+// 35227 覛 ; -+,0x00,0x07,0x38,0x23,0x2c,0x28,0x2a,0x2b,0x2a,0x2a,0x29,0x2b,0x2c,0x48,0x00,0x01,0x00,0x7e,0x42,0x7e,0x42,0x42,0xfe,0x42,0x42,0x7e,0x28,0x28,0xa9,0x49,0x87,0x00 -+// 35228 覜 ; -+,0x0a,0x0a,0x0a,0x4a,0x2b,0x2a,0x0a,0x1b,0x2a,0x4a,0x0a,0x0a,0x12,0x12,0x21,0x40,0x00,0x3e,0x22,0xbe,0x22,0x22,0x3e,0x22,0xbe,0x94,0x14,0x14,0x94,0xa5,0xa5,0x43 -+// 35229 覝 ; -+,0x00,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x29,0x29,0x4a,0x08,0x14,0x12,0x23,0x42,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x24,0x24,0x45,0x45,0x83 -+// 35230 覞 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x14,0x14,0x14,0x15,0x26,0x24,0x41,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x28,0x28,0x28,0x48,0x49,0x89,0x07 -+// 35231 覟 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x08,0x04,0x15,0x52,0x52,0x52,0x0e,0x00,0x01,0x00,0x7e,0x42,0x7e,0x42,0x7e,0xc2,0x42,0x7e,0x28,0xa8,0xa8,0xa9,0x49,0x87,0x00 -+// 35232 覠 ; -+,0x00,0x3f,0x09,0x7f,0x09,0x09,0x3f,0x10,0x1f,0x31,0x31,0x51,0x1f,0x11,0x00,0x01,0x00,0x7e,0x42,0xfe,0x42,0x7e,0x42,0x42,0x7e,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35233 覡 ; -+,0x00,0x7f,0x08,0x2a,0x2a,0x2a,0x2a,0x5d,0x5d,0x08,0x08,0x0f,0x78,0x00,0x00,0x01,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35234 覢 ; -+,0x08,0x08,0x29,0x2a,0x08,0x14,0x23,0x4a,0x09,0x2a,0x28,0x14,0x13,0x21,0x40,0x00,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x28,0x28,0x29,0x49,0x47,0x80 -+// 35235 覣 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x25,0x08,0x08,0x7f,0x11,0x3a,0x04,0x0a,0x11,0x20,0x80,0x7e,0x42,0xfe,0x42,0x42,0x7e,0x42,0x42,0xfe,0x28,0x28,0x29,0x29,0x47,0x80 -+// 35236 覤 ; -+,0x04,0x07,0x04,0x3f,0x24,0x2f,0x24,0x23,0x20,0x2f,0x29,0x29,0x29,0x29,0x30,0x40,0x00,0xfe,0x22,0xfe,0xa2,0x22,0xbe,0xa2,0x3e,0x14,0x14,0x55,0xa5,0x45,0x83,0x00 -+// 35237 覥 ; -+,0x0a,0x0a,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x7f,0x00,0x12,0x19,0x21,0x21,0x40,0x3e,0x22,0xa2,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xfe,0x14,0x14,0x25,0xa5,0x43,0x80 -+// 35238 覦 ; -+,0x04,0x04,0x0a,0x11,0x3e,0x40,0x38,0x2a,0x3a,0x2a,0x3a,0x2a,0x28,0x2a,0x29,0x00,0x00,0x3e,0x22,0x3e,0xe2,0xa2,0xbe,0xa2,0xa2,0xbe,0x94,0x94,0x95,0xa5,0x47,0x80 -+// 35239 覧 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x18,0x90,0x10,0x1f,0x34,0x22,0x42,0x80,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x22,0x22,0x1e -+// 35240 覨 ; -+,0x3b,0x2a,0x2a,0x3b,0x00,0x3f,0x00,0x7f,0x08,0x1f,0x09,0x01,0x01,0x0a,0x04,0x00,0xbe,0xa2,0xbe,0xa2,0x22,0x3e,0x22,0xa2,0x3e,0x14,0x14,0x15,0x25,0x25,0x43,0x80 -+// 35241 覩 ; -+,0x08,0x09,0x3f,0x09,0x0a,0x7f,0x04,0x08,0x3f,0x51,0x11,0x1f,0x11,0x11,0x1f,0x11,0x00,0x7e,0xc2,0x7e,0x42,0xc2,0x7e,0x42,0x7e,0x28,0x28,0x29,0x29,0x49,0x87,0x00 -+// 35242 親 ; -+,0x10,0x08,0x3f,0x00,0x22,0x14,0x3f,0x04,0x3f,0x04,0x16,0x15,0x25,0x45,0x14,0x08,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x24,0x24,0x24,0xa5,0x45,0x43,0x80 -+// 35243 覫 ; -+,0x08,0x04,0x3f,0x11,0x0a,0x3f,0x49,0x04,0x3f,0x08,0x0f,0x09,0x11,0x11,0x2a,0x44,0x00,0x7e,0xc2,0x7e,0x42,0xc2,0x7e,0x42,0x42,0x7e,0x28,0x28,0x29,0x49,0x47,0x80 -+// 35244 覬 ; -+,0x04,0x25,0x25,0x3f,0x00,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x12,0x17,0x78,0x00,0x01,0x00,0x7e,0x42,0x7e,0x42,0xc2,0x7e,0x42,0x7e,0x28,0x28,0x28,0xa9,0x49,0x87,0x00 -+// 35245 覭 ; -+,0x00,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x04,0x7f,0x00,0x14,0x12,0x23,0x42,0x00,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x24,0x25,0x45,0x43,0x80 -+// 35246 覮 ; -+,0x04,0x15,0x15,0x24,0x0a,0x11,0x3f,0x20,0x4f,0x0a,0x09,0x08,0x0f,0x02,0x0c,0x30,0x10,0x52,0x54,0x10,0x28,0x44,0xff,0x02,0xf8,0x48,0x28,0x08,0xf8,0x42,0x43,0x3e -+// 35247 覯 ; -+,0x0a,0x3f,0x0a,0x3f,0x0a,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x7f,0x20,0x20,0x22,0x21,0x00,0xbe,0x22,0xbe,0x22,0xbe,0x22,0xa2,0xbe,0x94,0x94,0xd5,0x95,0xa5,0xa3,0x40 -+// 35248 覰 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x2f,0x29,0x2f,0x29,0x2f,0x29,0x5f,0x00,0x00,0x3e,0x22,0xfe,0x22,0x3e,0xa2,0xa2,0x3e,0x14,0x14,0x14,0x25,0x25,0xc3,0x80 -+// 35249 覱 ; -+,0x04,0x3f,0x04,0x1f,0x15,0x1f,0x15,0x1f,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x03,0x1c,0x00,0x9e,0x20,0x3f,0x24,0x24,0x44,0x44,0x00,0xfc,0x04,0xfc,0x04,0xfd,0x11,0x1f -+// 35250 覲 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x07,0x78,0x00,0x7e,0xc2,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x24,0x24,0x25,0xc5,0x83 -+// 35251 観 ; -+,0x10,0x10,0x1f,0x24,0x7f,0x08,0x14,0x3f,0x52,0x1f,0x12,0x1f,0x12,0x1f,0x10,0x00,0x00,0x3e,0xa2,0x3e,0xe2,0x22,0x3e,0xa2,0x22,0xbe,0x14,0x94,0x24,0xa5,0x45,0x83 -+// 35252 覴 ; -+,0x00,0x7a,0x4b,0x31,0x2e,0x40,0x1f,0x11,0x1f,0x00,0x21,0x12,0x17,0x78,0x00,0x01,0x00,0x7e,0xc2,0x7e,0xc2,0x42,0x7e,0x42,0x42,0x7e,0x28,0x28,0xa9,0x49,0x87,0x00 -+// 35253 覵 ; -+,0x3b,0x2a,0x3b,0x2a,0x3b,0x20,0x2e,0x2a,0x2e,0x2a,0x2e,0x2a,0x36,0x30,0x22,0x21,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xbe,0xa2,0xbe,0x94,0x94,0x94,0x95,0x95,0xa3,0x40 -+// 35254 覶 ; -+,0x06,0x78,0x15,0x15,0x7f,0x02,0x04,0x7f,0x55,0x7f,0x45,0x7f,0x55,0x49,0x55,0x62,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x28,0x28,0x28,0x29,0x49,0x4f,0x80 -+// 35255 覷 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x25,0x35,0x2d,0x25,0x25,0x3e,0x40,0x40,0x00,0xbe,0x22,0xe2,0xbe,0x22,0xbe,0xa2,0x3e,0x54,0x94,0x14,0xd5,0x25,0x43,0x80 -+// 35256 覸 ; -+,0x00,0x3b,0x2a,0x3b,0x2a,0x3b,0x20,0x2e,0x2a,0x2e,0x2a,0x2a,0x2e,0x20,0x22,0x21,0x00,0xbe,0xa2,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xbe,0x94,0x94,0x95,0xa5,0xa3,0x40 -+// 35257 覹 ; -+,0x01,0x79,0x4a,0x7f,0x4b,0x4b,0x7a,0x4b,0x7a,0x2a,0x2a,0x2a,0x2e,0x2a,0x23,0x42,0x04,0x46,0x54,0x58,0x5f,0xfa,0x0a,0xfa,0x0a,0xe4,0xa4,0xa4,0xaa,0xaa,0x31,0x21 -+// 35258 覺 ; -+,0x1c,0x11,0x1c,0x11,0x3f,0x20,0x4f,0x0c,0x0a,0x09,0x08,0x0f,0x02,0x02,0x04,0x18,0x1c,0x44,0x9c,0x44,0xff,0x02,0xf8,0x88,0x48,0x28,0x08,0xf8,0x22,0x22,0x23,0x1e -+// 35259 覻 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x20,0x2f,0x29,0x2f,0x29,0x26,0x43,0x5c,0x00,0xbe,0x22,0xfe,0xa2,0x3e,0xa2,0xa2,0x3e,0x14,0x14,0x14,0x25,0x25,0xc7,0x80 -+// 35260 覼 ; -+,0x00,0x7f,0x15,0x64,0x3f,0x35,0x2e,0x35,0x24,0x35,0x2e,0x35,0x24,0x24,0x26,0x25,0x00,0xfe,0x22,0xfe,0xa2,0xa2,0xbe,0xa2,0xa2,0xbe,0x94,0x94,0x95,0xa5,0xa7,0x40 -+// 35261 覽 ; -+,0x3f,0x24,0x3e,0x22,0x3e,0x20,0x3f,0x00,0x0f,0x0a,0x09,0x08,0x0f,0x01,0x02,0x0c,0x40,0x7f,0x48,0xfe,0x4a,0x7e,0x42,0x00,0xf8,0x48,0x28,0x08,0xf8,0x21,0x21,0x1f -+// 35262 覾 ; -+,0x10,0x08,0x7f,0x40,0x3f,0x15,0x7f,0x0e,0x35,0x44,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x00,0x3e,0xa2,0xbe,0x22,0x22,0xbe,0x22,0xa2,0xbe,0x94,0x94,0x95,0xa5,0xa7,0x40 -+// 35263 覿 ; -+,0x04,0x3f,0x04,0x3f,0x00,0x3f,0x2a,0x3f,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x11,0x20,0x00,0xbe,0x22,0xbe,0x22,0xa2,0xbe,0xa2,0x22,0xbe,0x94,0x94,0x94,0x95,0x15,0xa3 -+// 35264 觀 ; -+,0x11,0x7f,0x11,0x3b,0x2a,0x3b,0x04,0x12,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x1f,0x10,0x00,0xbe,0x22,0xbe,0xa2,0xa2,0x3e,0x22,0xbe,0x14,0x94,0x14,0x95,0x25,0xa3,0x40 -+// 35265 见 ; -+,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x01,0x02,0x02,0x04,0x18,0x60,0x00,0xf8,0x08,0x08,0x88,0x88,0x88,0x88,0x88,0x48,0x40,0x40,0x42,0x42,0x43,0x3e,0x00 -+// 35266 观 ; -+,0x00,0x00,0x3e,0x02,0x22,0x22,0x14,0x08,0x14,0x12,0x23,0x22,0x40,0x00,0x01,0x02,0x00,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0xaa,0x28,0x48,0x49,0x89,0x07,0x00 -+// 35267 觃 ; -+,0x00,0x3f,0x21,0x21,0x25,0x25,0x25,0x25,0x25,0x0a,0x0a,0x12,0x12,0x22,0x41,0x00,0x00,0x7f,0x02,0x04,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x78,0x11,0x01,0xff,0x00 -+// 35268 规 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x7f,0x08,0x14,0x12,0x13,0x22,0x20,0x41,0x02,0x00,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 35269 觅 ; -+,0x00,0x1f,0x09,0x04,0x04,0x0f,0x08,0x08,0x08,0x08,0x08,0x09,0x01,0x02,0x04,0x08,0x3c,0xc8,0x0c,0xc8,0x90,0xf8,0x08,0x88,0x88,0x88,0x88,0x4a,0x42,0x43,0x7e,0x00 -+// 35270 视 ; -+,0x10,0x0c,0x08,0x7e,0x02,0x04,0x08,0x14,0x2a,0x4b,0x0a,0x08,0x08,0x08,0x09,0x0a,0x00,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x2a,0x28,0x48,0x49,0x89,0x07,0x00 -+// 35271 觇 ; -+,0x08,0x08,0x08,0x0f,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x01,0x02,0x00,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 35272 览 ; -+,0x02,0x12,0x12,0x12,0x12,0x03,0x0f,0x08,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x40,0x40,0x7f,0x50,0x8c,0x08,0xf8,0x08,0x88,0x88,0x88,0x88,0x42,0x42,0x43,0x3e -+// 35273 觉 ; -+,0x11,0x08,0x04,0x3f,0x20,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x01,0x02,0x04,0x18,0x04,0xc6,0x48,0xfe,0x02,0x00,0xf8,0x08,0x88,0x88,0x88,0x88,0x40,0x42,0x43,0x3e -+// 35274 觊 ; -+,0x08,0x49,0x49,0x49,0x7f,0x00,0x3e,0x02,0x02,0x3e,0x20,0x20,0x24,0x28,0x31,0x22,0x00,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x10,0x28,0x28,0x49,0x89,0x07,0x00 -+// 35275 觋 ; -+,0x03,0x7c,0x04,0x25,0x25,0x25,0x25,0x25,0x56,0x5c,0x54,0x04,0x07,0x78,0x01,0x02,0x80,0x7e,0x42,0x42,0x52,0x52,0x52,0x52,0xd2,0x10,0x28,0x29,0x49,0x89,0x07,0x00 -+// 35276 觌 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x29,0x18,0x48,0x28,0x7f,0x08,0x08,0x14,0x23,0x42,0x01,0x00,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x10,0x10,0x28,0x29,0x49,0x87,0x00 -+// 35277 觍 ; -+,0x0a,0x0a,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x7f,0x00,0x12,0x19,0x21,0x41,0x00,0x00,0x3e,0xa2,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xc8,0x14,0x15,0x25,0xa5,0x47,0x80 -+// 35278 觎 ; -+,0x04,0x04,0x0a,0x11,0x3f,0x40,0x38,0x2a,0x3a,0x2a,0x3a,0x2a,0x28,0x2a,0x29,0x28,0x00,0x3e,0x22,0xa2,0x2a,0x2a,0xaa,0xaa,0xaa,0x88,0x94,0x95,0x95,0xa5,0x23,0x40 -+// 35279 觏 ; -+,0x12,0x7f,0x12,0x3f,0x12,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x7f,0x20,0x20,0x22,0x21,0x00,0xbe,0x22,0xaa,0x2a,0xaa,0x2a,0xaa,0xaa,0x88,0x94,0xd4,0x95,0xa5,0xa7,0x40 -+// 35280 觐 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x00,0x00,0x7e,0xc2,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x90,0x28,0xa9,0x29,0xc7,0x80 -+// 35281 觑 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x23,0x20,0x25,0x35,0x2d,0x25,0x27,0x58,0x40,0x00,0xbe,0x22,0xe2,0xaa,0x2a,0x2a,0xaa,0x2a,0x08,0x54,0x94,0x25,0xa5,0x47,0x80 -+// 35282 角 ; -+,0x02,0x03,0x02,0x04,0x0f,0x18,0x28,0x0f,0x08,0x08,0x0f,0x08,0x08,0x10,0x10,0x20,0x00,0xfc,0x08,0x10,0xfe,0x42,0x42,0xfe,0x42,0x42,0xfe,0x42,0x42,0x42,0x4a,0x44 -+// 35283 觓 ; -+,0x08,0x08,0x0f,0x11,0x3f,0x52,0x12,0x1f,0x12,0x1f,0x12,0x12,0x12,0x22,0x21,0x40,0x02,0x02,0x92,0x12,0xd2,0x52,0x52,0xd2,0x56,0xda,0x52,0x42,0x42,0x42,0x42,0x82 -+// 35284 觔 ; -+,0x08,0x08,0x1f,0x11,0x3f,0x64,0x24,0x3f,0x24,0x24,0x3f,0x24,0x24,0x24,0x22,0x41,0x10,0x10,0x90,0x10,0xff,0x91,0x91,0x91,0x91,0x91,0x91,0x91,0x91,0xa1,0xa5,0x42 -+// 35285 觕 ; -+,0x08,0x08,0x28,0x28,0x3f,0x28,0x48,0x4a,0x0c,0x18,0x68,0x08,0x08,0x09,0x09,0x0a,0x40,0x40,0x7e,0x84,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x12,0x0a,0x04 -+// 35286 觖 ; -+,0x00,0x1f,0x22,0x44,0x3f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x25,0x25,0x21,0x25,0x42,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0xff,0x10,0x10,0x28,0x24,0x46,0x43,0x82 -+// 35287 觗 ; -+,0x10,0x1f,0x11,0x22,0x7f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x25,0x25,0x21,0x25,0x42,0x00,0x07,0x78,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x48,0x45,0x55,0x63,0x41,0x00 -+// 35288 觘 ; -+,0x10,0x1f,0x11,0x22,0x7f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x25,0x25,0x21,0x25,0x42,0x10,0x90,0x10,0x14,0x52,0x53,0x51,0x90,0x12,0x12,0x04,0x08,0x10,0x20,0x40,0x80 -+// 35289 觙 ; -+,0x10,0x10,0x1f,0x22,0x7f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x25,0x24,0x24,0x41,0x02,0x00,0xfc,0x44,0x44,0x64,0x68,0x6e,0x62,0x52,0x54,0x54,0x48,0x94,0xa4,0x43,0x82 -+// 35290 觚 ; -+,0x10,0x10,0x1f,0x22,0x7f,0x29,0x29,0x3f,0x29,0x3f,0x29,0x29,0x29,0x25,0x42,0x01,0x00,0x0e,0x74,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5a,0x56,0xbd,0x95,0x00 -+// 35291 觛 ; -+,0x10,0x1f,0x11,0x22,0x7f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x25,0x25,0x21,0x25,0x42,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0x00,0xff,0x00,0x00 -+// 35292 觜 ; -+,0x04,0x04,0x17,0x14,0x17,0x7a,0x03,0x04,0x1f,0x64,0x07,0x04,0x07,0x04,0x08,0x10,0x20,0x26,0xb8,0x21,0xa1,0x1f,0xf0,0x20,0xfc,0x44,0xfc,0x44,0xfc,0x44,0x54,0x48 -+// 35293 觝 ; -+,0x10,0x1f,0x11,0x22,0x7f,0x25,0x25,0x3f,0x25,0x3f,0x25,0x25,0x25,0x21,0x45,0x42,0x07,0x78,0x48,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x44,0x45,0x55,0x6b,0x49,0x08 -+// 35294 觞 ; -+,0x10,0x1e,0x22,0x44,0x3f,0x2a,0x2a,0x3e,0x2a,0x3e,0x2a,0x2a,0x2a,0x22,0x2a,0x44,0x40,0x40,0x7f,0x40,0xbe,0x04,0x18,0x7e,0x2a,0x2a,0x4a,0x92,0x22,0x52,0x8a,0x04 -+// 35295 觟 ; -+,0x10,0x10,0x1f,0x22,0x7f,0x25,0x25,0x3f,0x25,0x3f,0x25,0x25,0x25,0x21,0x45,0x42,0x08,0x08,0x08,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x7f,0x00 -+// 35296 觠 ; -+,0x08,0x04,0x1f,0x01,0x3f,0x06,0x0b,0x14,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x10,0x20,0x88,0x90,0xfc,0x00,0xfe,0x10,0xf8,0x27,0xfa,0x88,0xf8,0x88,0xf8,0x88,0xa8,0x90 -+// 35297 觡 ; -+,0x10,0x10,0x1f,0x22,0x7f,0x25,0x25,0x3f,0x25,0x3f,0x25,0x25,0x25,0x21,0x25,0x42,0x20,0x20,0x3e,0x44,0x68,0x90,0x28,0x47,0x82,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35298 觢 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x0f,0x10,0x2f,0x08,0x0f,0x08,0x0f,0x10,0x20,0x00,0x7e,0x12,0x12,0x22,0x4e,0x84,0xf8,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x94,0x88 -+// 35299 解 ; -+,0x10,0x10,0x3e,0x44,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x25,0x25,0x25,0x21,0x25,0x42,0x00,0xfe,0x22,0x22,0x22,0x4e,0x84,0x48,0x7f,0x88,0x08,0xff,0x08,0x08,0x08,0x08 -+// 35300 觤 ; -+,0x10,0x10,0x1f,0x22,0x7e,0x2b,0x2a,0x3e,0x2a,0x3e,0x2a,0x2a,0x2a,0x22,0x4a,0x45,0x20,0x3e,0x22,0x44,0xff,0x40,0x5e,0x52,0x52,0x5e,0x54,0x50,0x51,0x91,0x8f,0x00 -+// 35301 觥 ; -+,0x10,0x10,0x1f,0x21,0x3f,0x65,0x3f,0x25,0x25,0x3f,0x25,0x25,0x25,0x25,0x42,0x00,0x10,0x92,0x93,0x52,0x54,0x10,0xff,0x28,0x28,0x28,0x28,0x28,0x29,0x49,0x47,0x80 -+// 35302 触 ; -+,0x10,0x1f,0x10,0x21,0x3f,0x64,0x3f,0x24,0x24,0x3f,0x24,0x24,0x24,0x24,0x42,0x01,0x08,0x88,0x88,0x08,0xbe,0xaa,0xaa,0xaa,0xaa,0xbe,0x88,0x8a,0x89,0x8f,0xf9,0x00 -+// 35303 觧 ; -+,0x10,0x10,0x1f,0x21,0x3f,0x64,0x24,0x3f,0x24,0x24,0x3f,0x24,0x24,0x24,0x22,0x41,0x42,0x33,0xa4,0x7f,0x88,0x88,0xbe,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x08 -+// 35304 觨 ; -+,0x10,0x10,0x1f,0x22,0x7f,0x25,0x25,0x3f,0x25,0x3f,0x25,0x25,0x25,0x21,0x45,0x02,0x00,0xfe,0x10,0x10,0xff,0x20,0x10,0x78,0x09,0x7a,0x2c,0x2a,0x49,0x89,0x28,0x10 -+// 35305 觩 ; -+,0x10,0x10,0x1f,0x22,0x7f,0x29,0x29,0x3f,0x29,0x3f,0x29,0x29,0x29,0x21,0x45,0x42,0x10,0x14,0x12,0xff,0x10,0x92,0x53,0x54,0x38,0x34,0x54,0x93,0x12,0x10,0x50,0x20 -+// 35306 觪 ; -+,0x10,0x1f,0x11,0x22,0x7f,0x25,0x25,0x3f,0x25,0x3f,0x25,0x25,0x25,0x21,0x45,0x42,0x20,0x18,0xff,0x04,0x44,0x28,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35307 觫 ; -+,0x10,0x1f,0x11,0x22,0x7f,0x29,0x29,0x3f,0x29,0x3f,0x29,0x29,0x29,0x21,0x25,0x42,0x10,0x10,0xff,0x10,0x7e,0x52,0x52,0x52,0x7e,0x10,0x38,0x34,0x53,0x92,0x10,0x10 -+// 35308 觬 ; -+,0x10,0x1f,0x11,0x22,0x3f,0x65,0x25,0x3f,0x25,0x3f,0x25,0x25,0x25,0x21,0x25,0x42,0x10,0x67,0x41,0x41,0x77,0x41,0x41,0x41,0x7f,0x14,0x14,0x14,0x24,0x25,0x45,0x83 -+// 35309 觭 ; -+,0x10,0x10,0x1e,0x24,0x7f,0x29,0x3f,0x29,0x29,0x3f,0x29,0x29,0x29,0x21,0x45,0x42,0x10,0x10,0xff,0x10,0x2c,0x44,0xff,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 35310 觮 ; -+,0x10,0x10,0x1e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x2a,0x2b,0x22,0x2a,0x44,0x00,0xfc,0x04,0x7c,0x04,0xff,0x10,0x92,0x53,0x34,0x58,0x94,0x13,0x12,0x50,0x20 -+// 35311 觯 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x1f,0x15,0x15,0x1f,0x15,0x15,0x15,0x21,0x25,0x42,0x82,0x42,0x24,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x08,0x08,0xff,0x08,0x08,0x08,0x08 -+// 35312 觰 ; -+,0x10,0x10,0x1f,0x22,0x7e,0x2a,0x2a,0x3e,0x2a,0x3e,0x2b,0x2a,0x2a,0x22,0x4a,0x44,0x10,0x12,0x7f,0x12,0x14,0xff,0x10,0x20,0x7e,0xa2,0x22,0x3e,0x22,0x22,0x3e,0x22 -+// 35313 觱 ; -+,0x00,0x1f,0x10,0x17,0x10,0x17,0x24,0x27,0x42,0x0f,0x08,0x0f,0x08,0x0f,0x10,0x20,0x14,0xff,0x10,0xd2,0x0c,0xc8,0x55,0xf3,0x20,0xfc,0x44,0xfc,0x44,0xfc,0x54,0x48 -+// 35314 觲 ; -+,0x10,0x10,0x1f,0x22,0x7f,0x25,0x25,0x3f,0x25,0x3f,0x25,0x25,0x25,0x21,0x25,0x42,0x44,0x28,0xff,0x10,0x7e,0x10,0xff,0x10,0x50,0x7e,0x90,0x10,0xff,0x10,0x10,0x10 -+// 35315 觳 ; -+,0x04,0x3f,0x04,0x3f,0x00,0x7f,0x48,0x1f,0x22,0x7f,0x24,0x3f,0x24,0x3f,0x24,0x45,0x00,0xbc,0x24,0x24,0x24,0xa4,0x43,0x3c,0x24,0xa4,0xa4,0x98,0x98,0xa4,0xa3,0xc2 -+// 35316 觴 ; -+,0x10,0x1f,0x22,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x2a,0x2b,0x2a,0x22,0x2a,0x44,0x40,0x7f,0x80,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x95,0x25,0x49,0x91,0x25,0x42 -+// 35317 觵 ; -+,0x10,0x10,0x1f,0x22,0x3f,0x6a,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x22,0x4a,0x45,0x44,0x44,0xff,0x44,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x40,0x64,0x83,0x02 -+// 35318 觶 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x2a,0x2b,0x2a,0x22,0x2a,0x44,0x00,0xe7,0xa5,0xe7,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35319 觷 ; -+,0x1d,0x10,0x1d,0x10,0x1f,0x00,0x3f,0x24,0x4f,0x10,0x2f,0x08,0x0f,0x08,0x10,0x20,0x5c,0x84,0x5c,0x04,0xfc,0x00,0xff,0x02,0xf8,0x10,0xf8,0x88,0xf8,0x88,0xa8,0x10 -+// 35320 觸 ; -+,0x10,0x1e,0x22,0x44,0x3e,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x2a,0x2a,0x23,0x2a,0x44,0x00,0xff,0xa5,0xff,0x40,0x7f,0x81,0x21,0xfd,0xa5,0xfd,0x21,0x3d,0xc9,0x05,0x02 -+// 35321 觹 ; -+,0x10,0x10,0x1e,0x24,0x7f,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x22,0x2a,0x44,0x50,0x48,0x7f,0x88,0xfe,0x88,0xfe,0x88,0xff,0x00,0xee,0xaa,0xba,0x82,0x8a,0x84 -+// 35322 觺 ; -+,0x10,0x1e,0x11,0x1f,0x20,0x3f,0x48,0x3f,0x12,0x2f,0x10,0x2f,0x08,0x0f,0x10,0x20,0x7f,0x12,0x0c,0x7f,0x09,0x2e,0x28,0x58,0x8f,0xfc,0x08,0xfc,0x84,0xfc,0x94,0x88 -+// 35323 觻 ; -+,0x10,0x10,0x1e,0x23,0x7f,0x2a,0x2b,0x3f,0x2a,0x3f,0x2a,0x2a,0x2a,0x22,0x4b,0x44,0x10,0xa2,0xba,0x2f,0xfa,0xaa,0x2c,0xff,0x10,0xff,0x38,0x54,0x56,0x93,0x12,0x10 -+// 35324 觼 ; -+,0x10,0x10,0x1e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x3e,0x2a,0x2a,0x2b,0x22,0x2a,0x44,0x20,0x3e,0x42,0xff,0x91,0xa9,0x7e,0x42,0x7e,0x42,0x7e,0x42,0xa4,0x18,0x26,0xc1 -+// 35325 觽 ; -+,0x10,0x10,0x1e,0x24,0x7e,0x2a,0x2b,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x22,0x2a,0x44,0x08,0x89,0xff,0x48,0x7f,0xc8,0x7f,0x48,0x7f,0x40,0xe7,0xa5,0xbd,0x81,0x85,0x82 -+// 35326 觾 ; -+,0x10,0x11,0x1e,0x24,0x7e,0x2a,0x2a,0x3f,0x2a,0x2b,0x3e,0x2a,0x2a,0x22,0x4b,0x44,0x48,0xff,0x48,0x78,0x00,0x84,0xb5,0xa6,0xa5,0xb5,0x87,0x00,0xaa,0xa9,0x29,0x00 -+// 35327 觿 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2b,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x22,0x2a,0x44,0x10,0x92,0xfe,0x50,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfe,0xaa,0xfe,0xaa,0xba,0x86 -+// 35328 言 ; -+,0x01,0x00,0x3f,0x00,0x00,0x0f,0x00,0x0f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0xff,0x00,0x00,0xf8,0x00,0xf8,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 35329 訁 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 35330 訂 ; -+,0x10,0x08,0x04,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 35331 訃 ; -+,0x08,0x06,0x04,0x3f,0x00,0x1f,0x00,0x1f,0x00,0x00,0x1f,0x11,0x11,0x11,0x1f,0x00,0x10,0x10,0x10,0x90,0x10,0x18,0x14,0x12,0x11,0x11,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35332 訄 ; -+,0x10,0x10,0x10,0x11,0x7e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x41,0x00,0x40,0x30,0x10,0xfe,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x84,0xfc,0x85,0x01,0xff,0x00 -+// 35333 訅 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x45,0x45,0x83,0x00 -+// 35334 訆 ; -+,0x08,0x06,0x04,0x3f,0x00,0x1f,0x00,0x00,0x1f,0x00,0x1f,0x11,0x11,0x11,0x1f,0x11,0x02,0x02,0x02,0xa2,0x22,0x22,0x22,0x22,0x22,0x2e,0x3a,0x02,0x02,0x02,0x02,0x02 -+// 35335 訇 ; -+,0x08,0x08,0x0f,0x10,0x1f,0x20,0x4f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x00,0x00,0x00,0x00,0xfe,0x82,0xfa,0x02,0xf2,0x02,0xf2,0x02,0xf2,0x12,0xf2,0x02,0x0a,0x04 -+// 35336 計 ; -+,0x10,0x0c,0x04,0x3f,0x00,0x1f,0x00,0x1f,0x00,0x1f,0x11,0x11,0x11,0x1f,0x11,0x00,0x08,0x08,0x08,0x88,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 35337 訉 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x3e,0x22,0x20,0x01,0x00,0x7c,0x44,0x44,0x44,0x44,0x64,0x5c,0x54,0x44,0x44,0x44,0x45,0x85,0x83,0x00 -+// 35338 訊 ; -+,0x10,0x0d,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0xfc,0x24,0x24,0x24,0x24,0x25,0x25,0x23,0x21,0x20 -+// 35339 訋 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x30,0x20,0x7e,0x42,0x82,0x02,0x42,0x22,0x32,0x1a,0x12,0x02,0x02,0x0a,0x04 -+// 35340 訌 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x3f,0x22,0x00,0x00,0x00,0x7e,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 35341 訍 ; -+,0x10,0x08,0x00,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x00,0xfe,0x02,0x42,0x62,0x52,0x54,0x44,0x28,0x28,0x10,0x28,0x24,0x44,0x83,0x02 -+// 35342 討 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x04,0x04,0x04,0x04,0xff,0x04,0x04,0x84,0x44,0x64,0x44,0x04,0x04,0x04,0x14,0x08 -+// 35343 訏 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 35344 訐 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x7e,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35345 訑 ; -+,0x10,0x08,0x00,0x7e,0x00,0x3d,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x10,0x10,0x90,0x90,0x9e,0xf2,0x92,0x92,0x92,0x9a,0x94,0x81,0x81,0x81,0x7f,0x00 -+// 35346 訒 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x20,0x01,0x00,0x00,0x7e,0x12,0x12,0x52,0x52,0x92,0x92,0x22,0x22,0x22,0x42,0x54,0x88,0x00 -+// 35347 訓 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x3e,0x22,0x20,0x01,0x41,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x81,0x81,0x00 -+// 35348 訔 ; -+,0x00,0x08,0x08,0x0f,0x08,0x00,0x7f,0x00,0x0f,0x00,0x0f,0x00,0x0f,0x08,0x08,0x0f,0x40,0x42,0x42,0xfe,0x82,0x40,0xff,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x04,0x04,0xfc -+// 35349 訕 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0xfe,0x00,0x00 -+// 35350 訖 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0x40,0x7f,0x80,0x00,0xfc,0x04,0x08,0x10,0x20,0x42,0x82,0x83,0x7e,0x00 -+// 35351 託 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x1c,0xe0,0x20,0x20,0x20,0x2e,0xf0,0x20,0x20,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 35352 記 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x7e,0x02,0x02,0x02,0x02,0x7e,0x40,0x40,0x40,0x40,0x42,0x42,0x43,0x3e,0x00 -+// 35353 訙 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x20,0x20,0x20,0x7c,0x24,0x24,0x24,0x64,0x34,0x2c,0x25,0x25,0x45,0x43,0x81,0x00 -+// 35354 訚 ; -+,0x10,0x0d,0x29,0x20,0x2f,0x20,0x27,0x20,0x27,0x20,0x27,0x24,0x27,0x24,0x20,0x20,0x00,0xfe,0x02,0x82,0xfa,0x02,0xf2,0x02,0xf2,0x02,0xf2,0x12,0xf2,0x02,0x0a,0x04 -+// 35355 訛 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x00,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x48,0x68,0x48,0x4a,0x8b,0x8c,0x88,0x98,0xa8,0x88,0x88,0x89,0x89,0x89,0x87,0x00 -+// 35356 訜 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x01,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x08,0x48,0x48,0x44,0x84,0x83,0x02,0xfc,0x24,0x24,0x24,0x24,0x44,0x44,0x54,0x88 -+// 35357 訝 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0x04,0x44,0x44,0x44,0xff,0x0c,0x14,0x14,0x24,0x44,0x84,0x04,0x14,0x08 -+// 35358 訞 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x00,0x1e,0xe0,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x50,0x48,0x44,0x87,0x82,0x00 -+// 35359 訟 ; -+,0x20,0x18,0x10,0x7f,0x00,0x3e,0x00,0x3f,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x08,0x48,0x68,0x44,0x44,0x44,0x82,0x23,0x22,0x20,0x44,0x42,0x9f,0xf2,0x02,0x00 -+// 35360 訠 ; -+,0x10,0x08,0x00,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x02,0xf2,0x12,0x12,0x12,0xf2,0x82,0x82,0xf2,0x12,0x12,0x12,0x12,0x12,0x52,0x22 -+// 35361 訡 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3f,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x28,0x28,0x44,0x63,0x9a,0x10,0x00,0xfe,0x04,0x04,0x08,0x08,0x10,0x10 -+// 35362 訢 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3d,0x25,0x02,0x0e,0xf8,0x80,0x80,0x80,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08 -+// 35363 訣 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3c,0x00,0x3d,0x00,0x00,0x3c,0x24,0x24,0x3c,0x25,0x02,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x50,0x50,0x48,0x84,0x86,0x03,0x02 -+// 35364 訤 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x02,0x42,0x24,0x18,0x24,0x42,0x81,0x04,0x44,0x48,0x28,0x10,0x28,0x46,0x83,0x02 -+// 35365 訥 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0xff,0x91,0x91,0x91,0xa9,0xa5,0xc7,0xc5,0x81,0x81,0x81,0x85,0x82 -+// 35366 訦 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x01,0x10,0x10,0x10,0xff,0x92,0x14,0x10,0x28,0x28,0x28,0x28,0x48,0x49,0x89,0x87,0x00 -+// 35367 訧 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x20,0x28,0x26,0x24,0xff,0x28,0x28,0x28,0x28,0x28,0x28,0x48,0x49,0x89,0x87,0x00 -+// 35368 訨 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x08,0x08,0x08,0x08,0x08,0x4f,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0xff,0x00,0x00 -+// 35369 訩 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0x04,0x84,0x48,0xaa,0x92,0x92,0x92,0xaa,0xae,0xca,0x82,0x82,0xfe,0x82,0x00 -+// 35370 訪 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x01,0x20,0x18,0x10,0xff,0x20,0x20,0x20,0x3e,0x22,0x22,0x42,0x42,0x42,0x82,0x8a,0x04 -+// 35371 訫 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3f,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0x18,0x08,0x20,0x20,0x24,0xa2,0xa3,0xa2,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 35372 訬 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0x14,0x52,0x53,0x52,0x90,0x12,0x13,0x04,0x08,0x10,0x20,0x40,0x80 -+// 35373 設 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x00,0x7c,0x44,0x44,0x44,0x83,0x00,0x7c,0x44,0x44,0x28,0x10,0x28,0x44,0x83,0x02 -+// 35374 訮 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0xff,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0x24,0x44,0x44,0x84 -+// 35375 訯 ; -+,0x10,0x09,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x21,0x01,0x00,0xfc,0x44,0x44,0x48,0x48,0x4c,0x44,0x44,0xa4,0x98,0x88,0x94,0x93,0x22,0x40 -+// 35376 訰 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x12,0x12,0x13,0x0e,0x00 -+// 35377 許 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3f,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x40,0x60,0x40,0x7e,0x90,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35378 訲 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35379 訳 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x48,0x48,0x48,0x44,0x44,0x44,0x83,0x82,0x00 -+// 35380 訴 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x21,0x02,0x00,0x0e,0x78,0x40,0x40,0x7f,0x48,0x48,0x58,0x4c,0x4a,0x48,0x88,0x88,0x08,0x08 -+// 35381 訵 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa5,0xa3,0xc1,0x81,0x81,0xff,0x81,0x00 -+// 35382 訶 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0x14,0x08 -+// 35383 訷 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x08,0x08,0x08,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x49,0x08,0x08,0x08,0x08,0x08 -+// 35384 訸 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x23,0x3e,0x22,0x00,0x04,0x0e,0xf0,0x10,0x10,0xff,0x38,0x38,0x54,0x54,0x92,0x93,0x12,0x10,0x10,0x10 -+// 35385 訹 ; -+,0x10,0x08,0x7f,0x00,0x01,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x00,0x10,0x14,0x12,0x10,0xff,0x38,0x38,0x54,0x54,0x94,0x92,0x13,0x12,0x10,0x10,0x10 -+// 35386 診 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3d,0x02,0x3c,0x00,0x3d,0x24,0x25,0x24,0x3c,0x24,0x03,0x20,0x20,0x50,0x48,0x84,0x23,0x32,0x48,0x8c,0x18,0x64,0x86,0x08,0x30,0xc0,0x00 -+// 35387 註 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x00,0x20,0x18,0x10,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 35388 証 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x4f,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0xff,0x00 -+// 35389 訽 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3f,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x40,0x60,0x40,0xff,0x81,0x01,0x79,0x49,0x49,0x49,0x79,0x49,0x01,0x01,0x05,0x02 -+// 35390 訾 ; -+,0x04,0x04,0x17,0x14,0x17,0x7c,0x00,0x3f,0x00,0x0f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x20,0x26,0xb8,0x22,0x23,0xde,0x80,0xff,0x00,0xf8,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35391 訿 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x27,0x00,0x08,0x48,0x48,0x48,0x49,0x4a,0x7c,0x48,0x48,0x48,0x48,0x49,0x49,0x79,0x87,0x00 -+// 35392 詀 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35393 詁 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35394 詂 ; -+,0x10,0x0c,0x08,0x7e,0x01,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x44,0x64,0x44,0x84,0x84,0xbf,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x84,0x94,0x88 -+// 35395 詃 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x40,0x30,0x10,0xff,0x10,0x24,0x46,0xfc,0x48,0x08,0x10,0x24,0x42,0xff,0x02,0x00 -+// 35396 詄 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3e,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x10,0x90,0x90,0xfe,0x90,0x90,0x10,0xff,0x10,0x28,0x28,0x28,0x44,0x44,0x83,0x02 -+// 35397 詅 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3d,0x02,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x20,0x20,0x50,0x48,0x84,0x23,0x1a,0x10,0xfe,0x04,0x08,0x50,0x20,0x10,0x10,0x00 -+// 35398 詆 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0x0f,0xf8,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x84,0xa5,0x95,0xdb,0x91,0x00 -+// 35399 詇 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x01,0x00,0x3c,0x24,0x24,0x3c,0x24,0x01,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 35400 詈 ; -+,0x1f,0x12,0x12,0x1f,0x11,0x00,0x7f,0x00,0x0f,0x00,0x0f,0x00,0x0f,0x08,0x08,0x0f,0xfc,0x24,0x24,0xfc,0x04,0x80,0xff,0x00,0xf8,0x00,0xf8,0x00,0xf8,0x08,0x08,0xf8 -+// 35401 詉 ; -+,0x21,0x19,0x11,0x7d,0x03,0x3d,0x01,0x3e,0x02,0x3d,0x24,0x25,0x26,0x3c,0x24,0x00,0x00,0x80,0x1e,0x12,0xd2,0x52,0x52,0x52,0x54,0x94,0x88,0x54,0x14,0x22,0x43,0x82 -+// 35402 詊 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3f,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x92,0x53,0x54,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35403 詋 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35404 詌 ; -+,0x10,0x0c,0x08,0x7e,0x01,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 35405 詍 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3d,0x00,0x3c,0x00,0x00,0x3c,0x24,0x24,0x3c,0x24,0x00,0x24,0xa4,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xa4,0xbc,0x80,0x80,0x80,0xff,0x00 -+// 35406 詎 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0xff,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0xff,0x00 -+// 35407 詏 ; -+,0x10,0x08,0x7e,0x00,0x3d,0x01,0x03,0x3c,0x00,0x3d,0x25,0x27,0x24,0x3c,0x24,0x00,0x08,0x88,0x88,0x88,0x3f,0x49,0xc9,0x89,0x89,0x09,0x49,0xe9,0x51,0x11,0x27,0x42 -+// 35408 詐 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3f,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x20,0x30,0x40,0x7f,0xa0,0x20,0x3f,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20 -+// 35409 詑 ; -+,0x10,0x0c,0x08,0x7e,0x01,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0xff,0x82,0x00,0x40,0x44,0x4e,0x58,0x60,0x40,0x42,0x42,0x43,0x3e,0x00 -+// 35410 詒 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x20,0x24,0x42,0xff,0x42,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35411 詓 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x20,0x20,0x48,0x44,0x86,0xff,0x82,0x00 -+// 35412 詔 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x01,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0xfe,0x22,0x22,0x22,0x42,0x4a,0x84,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 35413 評 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x01,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0x10,0x12,0x93,0x52,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35414 詖 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3c,0x24,0x25,0x3d,0x25,0x02,0x10,0x10,0x10,0xff,0x92,0x90,0x90,0xfe,0xc4,0xa4,0xa4,0x98,0x14,0x22,0x43,0x82 -+// 35415 詗 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0x81,0x81,0xbd,0xa5,0xa5,0xa5,0xa5,0xbd,0xa5,0x81,0x81,0x81,0x85,0x82 -+// 35416 詘 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0xfe,0x92,0x10,0x91,0x91,0x91,0x91,0xff,0x81,0x00 -+// 35417 詙 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x23,0x3e,0x22,0x00,0x20,0x28,0x26,0x24,0xff,0x20,0x3e,0x42,0x42,0x64,0x94,0x88,0x14,0x24,0x43,0x82 -+// 35418 詚 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00,0x00,0xff,0x00 -+// 35419 詛 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0xff,0x00 -+// 35420 詜 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x01,0x10,0x10,0x92,0x92,0xfe,0x10,0x10,0xfe,0x44,0x44,0x28,0x10,0x28,0x44,0x87,0x02 -+// 35421 詝 ; -+,0x10,0x08,0x7e,0x00,0x01,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0xff,0x81,0x02,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 35422 詞 ; -+,0x10,0x0d,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xfe,0x02,0x02,0xfa,0x02,0xfa,0x8a,0x8a,0x8a,0xfa,0x8a,0x02,0x02,0x0a,0x04 -+// 35423 詟 ; -+,0x01,0x01,0x3f,0x01,0x02,0x04,0x19,0x00,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x08,0x0f,0x20,0x10,0xfe,0x50,0x60,0xc2,0x7e,0x80,0xff,0x00,0xf8,0x00,0xf8,0x08,0x08,0xf8 -+// 35424 詠 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x01,0x00,0x3e,0x00,0x3e,0x22,0x23,0x3e,0x22,0x00,0x40,0x30,0x20,0xf0,0x12,0x13,0xd4,0x58,0x58,0x54,0x94,0x92,0x13,0x12,0x50,0x20 -+// 35425 詡 ; -+,0x20,0x19,0x10,0x7e,0x01,0x3c,0x00,0x3c,0x00,0x3d,0x26,0x24,0x3c,0x25,0x20,0x00,0x00,0xde,0x42,0x42,0x52,0xca,0x4a,0x42,0xc6,0x4a,0x52,0x42,0x42,0x4a,0x84,0x00 -+// 35426 詢 ; -+,0x20,0x18,0x08,0x7e,0x01,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x00,0x40,0x40,0x40,0xfe,0x02,0xfa,0x8a,0x8a,0xfa,0x8a,0x8a,0xfa,0x8a,0x02,0x0a,0x04 -+// 35427 詣 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x80,0x88,0x9c,0xe0,0x82,0x83,0x7e,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 35428 詤 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x00,0x90,0x90,0x90,0xac,0xc4,0xfe,0x00,0x54,0x54,0x54,0x54,0x55,0x95,0x93,0x00 -+// 35429 詥 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3d,0x02,0x3c,0x00,0x00,0x3c,0x24,0x24,0x3c,0x24,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfe,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35430 試 ; -+,0x10,0x0c,0x08,0x7e,0x01,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x25,0x3c,0x24,0x00,0x08,0x0c,0x0a,0x08,0xff,0x08,0x08,0xe8,0x48,0x48,0x44,0x75,0xc5,0x03,0x01,0x00 -+// 35431 詧 ; -+,0x08,0x0f,0x11,0x19,0x25,0x52,0x0c,0x1f,0x60,0x0f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x40,0x7c,0x44,0x48,0x28,0x10,0x8c,0xfb,0x00,0xf8,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35432 詨 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3f,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x20,0x18,0x12,0xff,0x44,0x62,0x83,0x02,0x44,0x44,0x28,0x10,0x10,0x2c,0x47,0x82 -+// 35433 詩 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3d,0x00,0x3c,0x01,0x00,0x3c,0x24,0x24,0x3c,0x24,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x04,0x04,0xff,0x44,0x24,0x24,0x04,0x24,0x14,0x08 -+// 35434 詪 ; -+,0x20,0x19,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x25,0x00,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x20,0x22,0x14,0x18,0x08,0x4c,0x87,0x02,0x00 -+// 35435 詫 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x01,0x3e,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0xff,0x02,0x00,0x1c,0xe0,0x20,0x26,0xf8,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 35436 詬 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3c,0x24,0x24,0x25,0x3d,0x25,0x02,0x0e,0xf0,0x80,0x80,0x80,0xff,0x80,0x80,0xfe,0xc2,0xc2,0xc2,0x42,0x7e,0x42,0x00 -+// 35437 詭 ; -+,0x20,0x18,0x08,0x7e,0x01,0x3c,0x00,0x3c,0x00,0x00,0x3c,0x24,0x25,0x3d,0x22,0x04,0x40,0x7e,0x44,0x88,0xff,0x80,0x80,0xbe,0xa2,0xa2,0xaa,0xa4,0x21,0x21,0x1f,0x00 -+// 35438 詮 ; -+,0x20,0x18,0x10,0x7f,0x00,0x3f,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x23,0x00,0x10,0x10,0x28,0x44,0x82,0x03,0xfd,0x20,0x20,0xfc,0x20,0x20,0x20,0x20,0xfe,0x00 -+// 35439 詯 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x18,0x20,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35440 詰 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35441 話 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x1e,0xf0,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35442 該 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0xff,0x10,0x20,0x24,0x46,0xf8,0x14,0x26,0x4c,0x88,0x14,0x22,0x43,0x82 -+// 35443 詳 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x84,0x46,0x28,0xff,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 35444 詴 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x01,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x10,0xff,0x20,0x7e,0x42,0xc2,0x7e,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 35445 詵 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x10,0x50,0x50,0x7e,0x90,0x10,0x10,0xff,0x48,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 35446 詶 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3d,0x01,0x3d,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x01,0x49,0x49,0x49,0x49,0x49,0x6d,0x5b,0x49,0x49,0x49,0x49,0x49,0x89,0x89,0x01 -+// 35447 詷 ; -+,0x20,0x19,0x11,0x7f,0x01,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x25,0x00,0x00,0xfe,0x02,0x02,0x7a,0x02,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04,0x00 -+// 35448 詸 ; -+,0x10,0x08,0x7e,0x00,0x3e,0x00,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x10,0x12,0x93,0x52,0x54,0x10,0xff,0x38,0x38,0x54,0x54,0x92,0x93,0x12,0x10,0x10 -+// 35449 詹 ; -+,0x04,0x07,0x08,0x1f,0x31,0x52,0x1c,0x17,0x10,0x13,0x10,0x13,0x10,0x27,0x24,0x47,0x00,0xf0,0x20,0xfe,0x10,0x8c,0x48,0xfe,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x04,0xfc -+// 35450 詺 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x01,0x00,0x3e,0x00,0x3e,0x23,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0x3e,0x42,0xa2,0x14,0x14,0x08,0x30,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35451 詻 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3f,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0x7e,0x44,0xa4,0x28,0x10,0x28,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 35452 詼 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3d,0x26,0x24,0x24,0x3c,0x25,0x02,0x20,0x20,0x20,0xff,0x40,0x50,0x52,0x93,0xd4,0x50,0x28,0x24,0x46,0x83,0x02,0x00 -+// 35453 詽 ; -+,0x20,0x19,0x08,0x7f,0x00,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x3c,0x25,0x26,0x00,0x00,0xef,0x44,0x44,0x44,0x44,0x44,0xef,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x00 -+// 35454 詾 ; -+,0x20,0x18,0x10,0x7e,0x01,0x3c,0x00,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3c,0x24,0x00,0x80,0xc0,0x80,0xff,0x09,0x91,0x55,0x25,0x55,0x8d,0x05,0xfd,0x01,0x01,0x05,0x02 -+// 35455 詿 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x01,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x23,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 35456 誀 ; -+,0x10,0x09,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x00,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0x5f,0xe4,0x04,0x04,0x04,0x04 -+// 35457 誁 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x20,0x01,0x82,0x42,0x24,0xff,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 35458 誂 ; -+,0x10,0x08,0x00,0x7e,0x01,0x3c,0x00,0x3c,0x00,0x3d,0x26,0x24,0x3c,0x24,0x21,0x02,0x48,0x48,0x48,0x48,0x4b,0xcc,0x48,0x48,0xcc,0x4a,0x48,0x49,0x89,0x89,0x07,0x00 -+// 35459 誃 ; -+,0x20,0x18,0x10,0x7e,0x01,0x3c,0x00,0x3d,0x00,0x00,0x3c,0x24,0x24,0x3c,0x24,0x01,0x20,0x3e,0x42,0xc4,0x28,0x10,0x70,0x9f,0x21,0x62,0x94,0x08,0x10,0x20,0x40,0x80 -+// 35460 誄 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3c,0x00,0x3d,0x00,0x00,0x3c,0x24,0x24,0x3d,0x24,0x00,0x10,0x10,0xff,0x10,0xfe,0x10,0x10,0xff,0x38,0x38,0x54,0x56,0x93,0x12,0x10,0x10 -+// 35461 誅 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3f,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x10,0x10,0x90,0xfe,0x90,0x10,0xff,0x38,0x38,0x54,0x56,0x93,0x92,0x10,0x10,0x10 -+// 35462 誆 ; -+,0x20,0x19,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x25,0x00,0x00,0xff,0x00,0x00,0xfe,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x00,0x00,0xff,0x00 -+// 35463 誇 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3d,0x02,0x3c,0x01,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x20,0x20,0xff,0x50,0x8c,0xfb,0x00,0x00,0xfe,0x40,0x7c,0x04,0x04,0x24,0x14,0x08 -+// 35464 誈 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x00,0xfe,0x10,0x24,0x22,0x4f,0xf2,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 35465 誉 ; -+,0x11,0x08,0x00,0x7f,0x05,0x08,0x1f,0x20,0x47,0x00,0x07,0x00,0x0f,0x08,0x0f,0x08,0x04,0x88,0x10,0xff,0x10,0x88,0xff,0x02,0xf0,0x00,0xf0,0x00,0xf8,0x08,0xf8,0x08 -+// 35466 誊 ; -+,0x08,0x04,0x1f,0x01,0x7f,0x02,0x04,0x1f,0x60,0x07,0x00,0x07,0x00,0x0f,0x08,0x0f,0x88,0x90,0xfe,0x00,0xff,0x90,0x48,0xf7,0x02,0xf0,0x00,0xf0,0x00,0xf8,0x08,0xf8 -+// 35467 誋 ; -+,0x20,0x18,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x23,0x23,0x3f,0x22,0x00,0x00,0xfc,0x04,0x04,0xfc,0x80,0x82,0x7e,0x00,0x10,0x4a,0x49,0x42,0x43,0x3e,0x00 -+// 35468 誌 ; -+,0x10,0x08,0x00,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3c,0x25,0x25,0x25,0x3e,0x24,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x20,0x14,0x52,0x41,0x45,0x46,0x3c,0x00 -+// 35469 認 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3c,0x25,0x25,0x25,0x3e,0x24,0x00,0x00,0xfe,0x12,0x12,0x92,0xa2,0x2a,0x44,0xa0,0x14,0x5a,0x51,0x45,0x44,0x3c,0x00 -+// 35470 誎 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x38,0x58,0x54,0x93,0x12,0x10,0x10 -+// 35471 誏 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x92,0x93,0x94,0x88,0xac,0xc7,0x82,0x00 -+// 35472 誐 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3d,0x00,0x3c,0x00,0x3c,0x25,0x24,0x24,0x3c,0x25,0x00,0x08,0x2c,0xcb,0x4a,0x48,0xff,0x48,0x4a,0x6a,0xcc,0x58,0x68,0x48,0x45,0x45,0x82 -+// 35473 誑 ; -+,0x20,0x1a,0x11,0x7e,0x01,0x3e,0x00,0x3c,0x01,0x02,0x3c,0x24,0x24,0x3c,0x25,0x00,0x00,0x20,0x5f,0xc8,0x88,0x88,0x48,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x7f,0x80 -+// 35474 誒 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x01,0x3f,0x22,0x22,0x22,0x3e,0x22,0x01,0x20,0x28,0x44,0xfe,0x04,0x40,0x7e,0x90,0x10,0xff,0x10,0x28,0x24,0x43,0x82,0x00 -+// 35475 誓 ; -+,0x08,0x7f,0x08,0x3e,0x08,0x29,0x12,0x7f,0x00,0x0f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x06,0x78,0x40,0x7f,0x88,0x08,0x48,0xff,0x00,0xf8,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35476 誔 ; -+,0x10,0x0b,0x00,0x7e,0x00,0x3d,0x01,0x3c,0x00,0x3e,0x25,0x24,0x24,0x3d,0x25,0x02,0x00,0xc7,0x78,0x88,0x88,0x3f,0xc8,0x48,0x48,0x48,0xbf,0x80,0x80,0x60,0x1f,0x00 -+// 35477 誕 ; -+,0x10,0x0b,0x7e,0x00,0x3c,0x00,0x01,0x3c,0x00,0x3e,0x25,0x24,0x3d,0x26,0x24,0x00,0x00,0x86,0xb8,0x88,0x88,0xaf,0x28,0xa8,0xa8,0xa8,0x3f,0x80,0x40,0x20,0x1f,0x00 -+// 35478 誖 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3d,0x01,0x3e,0x00,0x3e,0x23,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x01,0xfc,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 35479 誗 ; -+,0x10,0x0d,0x08,0x7e,0x01,0x3e,0x00,0x3e,0x01,0x3f,0x22,0x22,0x22,0x3e,0x22,0x00,0x71,0xc1,0x49,0x49,0xe9,0x49,0xe9,0xe9,0x59,0x49,0x49,0x49,0x41,0x41,0x45,0x42 -+// 35480 誘 ; -+,0x20,0x18,0x10,0x7f,0x00,0x3c,0x00,0x3c,0x01,0x3c,0x24,0x24,0x24,0x3c,0x25,0x02,0x0e,0xf0,0x10,0xff,0x38,0x56,0x92,0x10,0xfe,0x44,0x4e,0x42,0x82,0x82,0x14,0x08 -+// 35481 誙 ; -+,0x20,0x19,0x08,0x7e,0x00,0x3d,0x00,0x3c,0x00,0x3e,0x22,0x22,0x22,0x3e,0x23,0x00,0x00,0xff,0x00,0x49,0x92,0x24,0x92,0x49,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 35482 誚 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x12,0x93,0x54,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 35483 誛 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0xfe,0x02,0x7e,0x02,0xfe,0x00,0xff,0x81,0x7c,0x44,0x44,0x28,0x10,0x28,0x47,0x82 -+// 35484 誜 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x00,0x10,0x14,0x22,0x7f,0x02,0x24,0x43,0xa1,0x3e,0x44,0xa4,0x24,0x18,0x24,0x43,0x82 -+// 35485 誝 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0x50,0x48,0xa4,0x93,0x7c,0x08,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35486 語 ; -+,0x20,0x19,0x10,0x7e,0x00,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0xfe,0x20,0x20,0xfc,0x44,0x44,0xff,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35487 誟 ; -+,0x20,0x18,0x10,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3f,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x12,0x7f,0x12,0x14,0xff,0x10,0x3e,0xc4,0x08,0xff,0x10,0x10,0x10,0x50,0x20 -+// 35488 誠 ; -+,0x20,0x18,0x10,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x26,0x22,0x04,0x08,0x0a,0x0a,0xff,0x08,0x08,0xea,0x2b,0x2a,0x2c,0xa8,0x55,0x15,0x23,0x41,0x00 -+// 35489 誡 ; -+,0x20,0x18,0x10,0x7d,0x00,0x3c,0x00,0x3d,0x00,0x00,0x3c,0x25,0x25,0x3e,0x24,0x00,0x08,0x0a,0x0a,0xff,0x08,0xa8,0xaa,0xfb,0xaa,0xaa,0xa4,0x2c,0x15,0x23,0x41,0x00 -+// 35490 誢 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x2a,0x28,0x29,0x49,0x49,0x87,0x00 -+// 35491 誣 ; -+,0x20,0x19,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x01,0x3d,0x26,0x24,0x24,0x3d,0x24,0x00,0x00,0xff,0x10,0x10,0x94,0x94,0x94,0x94,0x5a,0x31,0x10,0x10,0x10,0xff,0x00,0x00 -+// 35492 誤 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3c,0x01,0x3c,0x00,0x3f,0x24,0x24,0x24,0x3c,0x25,0x02,0x00,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x48,0x86,0x03,0x02 -+// 35493 誥 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3f,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x90,0xfe,0x90,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35494 誦 ; -+,0x10,0x08,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0xfe,0x44,0x28,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x8a,0x84 -+// 35495 誧 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x8a,0x84 -+// 35496 誨 ; -+,0x20,0x18,0x10,0x7d,0x00,0x3c,0x00,0x3c,0x03,0x00,0x3c,0x24,0x25,0x3c,0x24,0x00,0x80,0x80,0xfe,0x00,0xfc,0x84,0xa4,0x94,0xff,0xa4,0x94,0x84,0xff,0x84,0x14,0x08 -+// 35497 誩 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x20,0x18,0x10,0xff,0x00,0x7e,0x00,0x7e,0x00,0x00,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 35498 說 ; -+,0x10,0x08,0x7e,0x01,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x48,0x48,0x84,0x03,0xfe,0x84,0x84,0x84,0xfc,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 35499 誫 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x00,0x3c,0x24,0x24,0x3d,0x25,0x02,0x00,0xfe,0x80,0x80,0xfe,0x80,0x80,0xff,0xa8,0xa9,0xaa,0xa4,0xa4,0x24,0x33,0x22 -+// 35500 説 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x02,0x84,0x66,0x48,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 35501 読 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3c,0x00,0x3c,0x01,0x3c,0x24,0x24,0x24,0x3c,0x24,0x01,0x10,0x10,0xfe,0x10,0x7c,0x00,0xff,0x82,0x48,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 35502 誮 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3d,0x24,0x24,0x24,0x3c,0x24,0x00,0x48,0x48,0xff,0x48,0x00,0x40,0x6a,0xcb,0xcc,0x48,0x58,0x68,0x49,0x49,0x47,0x00 -+// 35503 誯 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x00,0xff,0x81,0xff,0x81,0x81,0xff,0x81,0x00 -+// 35504 誰 ; -+,0x10,0x08,0x7e,0x00,0x01,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0xa0,0x98,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80,0x00 -+// 35505 誱 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3c,0x03,0x3c,0x01,0x00,0x3d,0x25,0x25,0x3d,0x22,0x04,0x20,0x20,0xfe,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x20,0x3e,0x20,0x20,0xa0,0x7f -+// 35506 課 ; -+,0x20,0x10,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x01,0x3c,0x24,0x24,0x3c,0x25,0x22,0x00,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x30,0x58,0x54,0x93,0x12,0x10,0x10 -+// 35507 誳 ; -+,0x20,0x19,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3e,0x22,0x04,0x00,0xfe,0x02,0xfe,0x02,0x10,0x52,0x52,0x7e,0x10,0x10,0x92,0x92,0xfe,0x82,0x00 -+// 35508 誴 ; -+,0x10,0x08,0x7e,0x00,0x3d,0x00,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3d,0x24,0x00,0x20,0x10,0xff,0x81,0x02,0x7c,0x00,0x00,0xff,0x10,0x94,0xd2,0x93,0x12,0x50,0x20 -+// 35509 誵 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x01,0x3e,0x22,0x22,0x22,0x3e,0x22,0x42,0x24,0x18,0x24,0x52,0xff,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 35510 誶 ; -+,0x10,0x08,0x01,0x7e,0x00,0x3c,0x01,0x3e,0x00,0x3c,0x25,0x24,0x24,0x3c,0x24,0x00,0x20,0x10,0xff,0x84,0x84,0x84,0x4a,0x51,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 35511 誷 ; -+,0x20,0x19,0x11,0x7f,0x01,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x25,0x01,0x00,0xff,0x85,0x65,0x49,0xff,0x21,0x11,0xfd,0x41,0x41,0x7d,0x01,0x01,0x05,0x02 -+// 35512 誸 ; -+,0x20,0x1b,0x10,0x7e,0x00,0x3d,0x01,0x3d,0x01,0x3c,0x24,0x24,0x24,0x3c,0x25,0x00,0x10,0xcc,0x48,0x7f,0x48,0xca,0x13,0x3e,0xc4,0x44,0x48,0x4a,0x51,0x7f,0x41,0x80 -+// 35513 誹 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3c,0x01,0x3c,0x00,0x3c,0x25,0x24,0x24,0x3c,0x24,0x00,0x48,0x48,0xcf,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0xcf,0x48,0x48,0x48,0x48,0x48 -+// 35514 誺 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3c,0x00,0x3d,0x02,0x3c,0x24,0x24,0x3d,0x22,0x04,0x00,0x20,0x20,0xfe,0x20,0xa4,0xa4,0xaa,0x73,0x22,0x70,0x68,0xa4,0x26,0x23,0x22,0x20 -+// 35515 誻 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3e,0x01,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0x12,0xd4,0x58,0x54,0x92,0x11,0x50,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 35516 誼 ; -+,0x10,0x08,0x7f,0x01,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x40,0x20,0xff,0x01,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xff,0x00 -+// 35517 誽 ; -+,0x20,0x19,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x00,0x3c,0x24,0x24,0x3c,0x25,0x02,0x40,0x9c,0x04,0x04,0xdc,0x04,0x04,0x04,0xfc,0x50,0x50,0x52,0x92,0x93,0x0e,0x00 -+// 35518 誾 ; -+,0x3e,0x22,0x3e,0x22,0x3f,0x20,0x2f,0x20,0x27,0x20,0x27,0x20,0x27,0x24,0x27,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xfa,0x02,0xf2,0x02,0xf2,0x02,0xf2,0x12,0xfa,0x04 -+// 35519 調 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3d,0x25,0x02,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82,0xba,0xaa,0xaa,0xba,0xaa,0x02,0x0a,0x04 -+// 35520 諀 ; -+,0x10,0x08,0x7e,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x00,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x30,0x50,0xff,0x10,0x10,0x10,0x10 -+// 35521 諁 ; -+,0x20,0x13,0x02,0x7d,0x01,0x7a,0x04,0x7f,0x00,0x7a,0x49,0x48,0x49,0x79,0x4a,0x04,0x00,0xde,0x42,0x94,0x88,0x56,0x21,0xde,0x52,0x52,0x4a,0x84,0x4a,0x4a,0x53,0x22 -+// 35522 諂 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x20,0x3f,0x42,0x84,0x00,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x82,0x00 -+// 35523 諃 ; -+,0x20,0x18,0x10,0x7c,0x03,0x3c,0x01,0x01,0x3d,0x02,0x3e,0x24,0x24,0x3c,0x20,0x00,0x88,0x88,0x88,0x88,0xdf,0x88,0x9c,0xdc,0xda,0xaa,0xab,0xca,0x88,0x88,0x88,0x88 -+// 35524 諄 ; -+,0x10,0x08,0x7d,0x00,0x00,0x3c,0x00,0x00,0x3c,0x00,0x3c,0x25,0x24,0x24,0x3c,0x24,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x04,0x28,0xff,0x10,0x10,0x50,0x20 -+// 35525 諅 ; -+,0x04,0x3f,0x04,0x07,0x04,0x7f,0x05,0x08,0x1f,0x20,0x07,0x00,0x07,0x04,0x07,0x04,0x10,0xfe,0x10,0xf0,0x10,0xff,0x10,0x8c,0xfb,0x00,0xf8,0x00,0xf8,0x08,0xf8,0x08 -+// 35526 諆 ; -+,0x10,0x08,0x05,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x25,0x24,0x24,0x3c,0x25,0x02,0x48,0x48,0xff,0x48,0x48,0x78,0x48,0x78,0x48,0x48,0xff,0x00,0x48,0x84,0x06,0x04 -+// 35527 談 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3d,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x10,0x12,0x94,0x90,0x28,0x44,0x92,0x10,0x92,0x94,0x10,0x28,0x24,0x46,0x83,0x02 -+// 35528 諈 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3c,0x00,0x01,0x3c,0x00,0x3d,0x24,0x24,0x24,0x3d,0x24,0x00,0x1e,0xf0,0x10,0xff,0x92,0x92,0xff,0x92,0x92,0xff,0x10,0x10,0x10,0xff,0x00 -+// 35529 諉 ; -+,0x10,0x08,0x7e,0x01,0x3c,0x00,0x3c,0x01,0x00,0x3f,0x24,0x24,0x3c,0x24,0x20,0x01,0x0e,0xf0,0x10,0xff,0x38,0x54,0x93,0x50,0x40,0xff,0x48,0xc8,0x30,0x4c,0x86,0x04 -+// 35530 諊 ; -+,0x10,0x0c,0x08,0x7f,0x01,0x3e,0x00,0x3f,0x00,0x3e,0x22,0x22,0x23,0x3e,0x22,0x00,0x40,0x40,0x7f,0x81,0x21,0xa9,0x71,0xfd,0x21,0x71,0x69,0xa5,0x21,0x21,0x25,0x02 -+// 35531 請 ; -+,0x10,0x09,0x7e,0x00,0x3c,0x01,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 35532 諌 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x3e,0x22,0x21,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x38,0x34,0x53,0x92,0x10,0x10 -+// 35533 諍 ; -+,0x20,0x19,0x10,0x7e,0x00,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x0e,0xf2,0x23,0x94,0xfe,0x12,0x12,0xff,0x12,0x12,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 35534 諎 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x01,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x24,0x24,0x24,0xff,0x24,0x24,0xff,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 35535 諏 ; -+,0x20,0x1b,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x27,0x3c,0x24,0x20,0x00,0x00,0xf0,0x40,0x5e,0xd2,0x52,0x52,0xd2,0x4a,0x4a,0x64,0xc4,0x4a,0x49,0x51,0x20 -+// 35536 諐 ; -+,0x08,0x0f,0x1a,0x33,0x51,0x11,0x11,0x12,0x14,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x00,0xfe,0x02,0xfe,0x28,0x28,0x2a,0xae,0x40,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc -+// 35537 諑 ; -+,0x10,0x0d,0x08,0x7f,0x00,0x3f,0x01,0x3e,0x00,0x3f,0x22,0x22,0x23,0x3e,0x22,0x00,0x00,0xff,0x10,0x20,0x44,0xa6,0x28,0xd8,0xd4,0x34,0x52,0x93,0x12,0x10,0x50,0x20 -+// 35538 諒 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x20,0x10,0xff,0x00,0x00,0x7e,0x42,0x42,0x7e,0x10,0x54,0x52,0x93,0x12,0x50,0x20 -+// 35539 諓 ; -+,0x10,0x08,0x7e,0x01,0x00,0x3e,0x01,0x3e,0x00,0x3f,0x22,0x22,0x22,0x3e,0x23,0x00,0x50,0x48,0x5e,0xe4,0x2a,0x32,0xce,0x20,0x2f,0xf2,0x24,0x19,0x29,0x45,0x82,0x00 -+// 35540 諔 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3f,0x00,0x01,0x3d,0x26,0x26,0x3c,0x24,0x01,0x80,0x80,0x8e,0xf2,0x92,0x92,0x92,0xea,0x8a,0xc4,0xaa,0xaa,0x91,0x91,0xa1,0x80 -+// 35541 諕 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3e,0x00,0x3c,0x24,0x24,0x25,0x3d,0x26,0x00,0x10,0x1e,0x10,0xff,0x92,0xfc,0x92,0x8e,0x80,0xbc,0xa4,0xa4,0x25,0x45,0x43,0x80 -+// 35542 論 ; -+,0x20,0x18,0x10,0x7e,0x01,0x3b,0x00,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x20,0x20,0x50,0x88,0x04,0xfb,0x00,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x42,0x0a,0x04 -+// 35543 諗 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3d,0x00,0x00,0x3c,0x00,0x3c,0x25,0x25,0x3e,0x24,0x00,0x20,0x20,0x50,0x48,0xa7,0x12,0xfc,0x04,0x08,0x20,0x18,0x52,0x45,0x45,0x3c,0x00 -+// 35544 諘 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x27,0x24,0x3c,0x24,0x00,0x10,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x20,0x52,0xd4,0x48,0x44,0x53,0xe2,0x40 -+// 35545 諙 ; -+,0x20,0x18,0x10,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x0e,0xf0,0x90,0x90,0xff,0x88,0xa9,0xc5,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 35546 諚 ; -+,0x10,0x08,0x7e,0x00,0x01,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x25,0x3d,0x26,0x00,0x20,0x10,0xff,0x82,0x04,0xfe,0x10,0x90,0x90,0x9e,0x90,0x90,0x50,0x30,0x1f,0x00 -+// 35547 諛 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x10,0x30,0xd6,0x92,0x92,0xd6,0x92,0x92,0xfe,0x92,0x28,0x28,0x44,0x46,0x83,0x02 -+// 35548 諜 ; -+,0x20,0x18,0x10,0x7f,0x00,0x3c,0x00,0x3c,0x00,0x3d,0x24,0x24,0x24,0x3c,0x25,0x00,0x00,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xff,0x10,0xff,0x38,0x58,0x54,0x93,0x12,0x10 -+// 35549 諝 ; -+,0x20,0x19,0x10,0x7e,0x00,0x3d,0x02,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0xff,0x12,0x9c,0x90,0x50,0x3f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 35550 諞 ; -+,0x20,0x18,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x26,0x02,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 35551 諟 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x24,0x3d,0x25,0x02,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x90,0x9e,0x90,0x90,0x50,0x3f,0x00 -+// 35552 諠 ; -+,0x10,0x08,0x7f,0x01,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x3c,0x24,0x23,0x00,0x20,0x10,0xff,0x01,0xfc,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0x00,0xff,0x00 -+// 35553 諡 ; -+,0x20,0x18,0x10,0x7e,0x01,0x3c,0x00,0x3c,0x00,0x00,0x3c,0x24,0x24,0x3c,0x27,0x00,0x48,0x48,0x88,0x84,0x7b,0x40,0x7c,0x04,0x28,0x10,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 35554 諢 ; -+,0x11,0x09,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x25,0x3c,0x24,0x20,0x00,0xff,0x12,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35555 諣 ; -+,0x10,0x08,0x7e,0x00,0x3c,0x00,0x00,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x00,0xfe,0x82,0xf2,0x92,0x92,0x92,0xff,0x01,0x7d,0x45,0x45,0x7d,0x01,0x05,0x02 -+// 35556 諤 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x01,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0xee,0xaa,0xaa,0xee,0x00,0xfe,0x00,0xff,0x40,0xfc,0x44,0x04,0x04,0x14,0x08 -+// 35557 諥 ; -+,0x20,0x18,0x11,0x7c,0x03,0x00,0x7d,0x01,0x7d,0x01,0x7d,0x44,0x45,0x7c,0x47,0x00,0x00,0x1e,0xe0,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xff,0x00 -+// 35558 諦 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3d,0x01,0x3c,0x00,0x3c,0x24,0x24,0x3c,0x24,0x20,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0x12,0x10,0xfe,0x92,0x92,0x92,0x9a,0x14,0x10,0x10 -+// 35559 諧 ; -+,0x10,0x0c,0x08,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x88,0x88,0x8b,0xec,0x89,0xa9,0xc7,0x90,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 35560 諨 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xfe,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 35561 諩 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3f,0x00,0x3e,0x22,0x22,0x22,0x3f,0x22,0x00,0x84,0x46,0x28,0xff,0x28,0x28,0x2a,0x2b,0xaa,0xac,0x28,0x28,0x28,0xff,0x00,0x00 -+// 35562 諪 ; -+,0x10,0x08,0x00,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x08,0xff,0x00,0x7e,0x42,0x7e,0x00,0xff,0x81,0x00,0xff,0x08,0x08,0x28,0x10 -+// 35563 諫 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3d,0x01,0x3d,0x01,0x3c,0x24,0x24,0x24,0x3d,0x22,0x00,0x10,0x10,0xff,0x10,0xff,0x95,0x57,0x59,0xff,0x38,0x58,0x54,0x96,0x13,0x12,0x10 -+// 35564 諬 ; -+,0x03,0x3c,0x04,0x3f,0x0e,0x15,0x25,0x04,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x94,0x12,0x7f,0xa8,0x29,0x29,0x47,0x80,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x04 -+// 35565 諭 ; -+,0x20,0x18,0x10,0x7e,0x01,0x3e,0x00,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x25,0x01,0x20,0x30,0x48,0x84,0xff,0x00,0x02,0xea,0x2a,0xea,0x2a,0xea,0x22,0x22,0x2a,0x64 -+// 35566 諮 ; -+,0x10,0x09,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x10,0x10,0xdf,0xaa,0x4a,0x48,0x94,0x92,0x23,0xfd,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35567 諯 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x01,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x92,0x92,0xfe,0x00,0x00,0xff,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0x86,0x00 -+// 35568 諰 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3c,0x25,0x25,0x25,0x3e,0x24,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0x14,0x52,0x51,0x42,0x43,0x3e,0x00 -+// 35569 諱 ; -+,0x10,0x08,0x7e,0x00,0x01,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x23,0x3e,0x22,0x00,0x20,0xfc,0x24,0x24,0xff,0x00,0xfc,0x84,0xfc,0x10,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 35570 諲 ; -+,0x10,0x09,0x7e,0x00,0x01,0x3d,0x01,0x3d,0x01,0x3c,0x25,0x24,0x24,0x3c,0x27,0x00,0x00,0xff,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x12,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 35571 諳 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0xfe,0x44,0x44,0x28,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 35572 諴 ; -+,0x20,0x18,0x10,0x7f,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3e,0x02,0x04,0x08,0x0a,0x0a,0xff,0x08,0xf8,0x09,0x09,0x76,0x56,0x54,0x6d,0x15,0x25,0x42,0x00 -+// 35573 諵 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x10,0x10,0xff,0x10,0x10,0xff,0x45,0x29,0x7d,0x11,0xff,0x11,0x11,0x11,0x15,0x02 -+// 35574 諶 ; -+,0x10,0x08,0x7e,0x00,0x3c,0x00,0x00,0x3c,0x00,0x3f,0x24,0x24,0x24,0x3c,0x24,0x00,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0xa8,0xa4,0xc2,0x80,0xff,0x00 -+// 35575 諷 ; -+,0x20,0x1b,0x12,0x7f,0x02,0x7a,0x02,0x7a,0x02,0x7a,0x4a,0x4a,0x4b,0x7a,0x44,0x08,0x00,0xfe,0x1a,0xe2,0x22,0xfa,0xaa,0xaa,0xfa,0x22,0x2a,0x3e,0xcb,0x03,0x02,0x00 -+// 35576 諸 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3d,0x00,0x3c,0x00,0x3d,0x26,0x24,0x3c,0x24,0x20,0x00,0x20,0x24,0xfe,0x24,0x28,0xff,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 35577 諹 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x01,0x3c,0x00,0x01,0x3e,0x24,0x25,0x3c,0x25,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x80,0xfe,0x2a,0x4a,0x92,0x22,0x52,0x8a,0x04 -+// 35578 諺 ; -+,0x10,0x08,0x7f,0x00,0x3c,0x01,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x26,0x02,0x04,0x20,0x10,0xff,0x84,0x48,0xff,0x00,0x06,0x18,0x66,0x0c,0x32,0xc3,0x0c,0x30,0xc0 -+// 35579 諻 ; -+,0x20,0x18,0x10,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x23,0x00,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 35580 諼 ; -+,0x20,0x19,0x11,0x7e,0x01,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x3d,0x22,0x04,0x03,0x1e,0xe4,0x26,0x94,0xfe,0x20,0x20,0xff,0x40,0x7c,0xc4,0xa8,0x10,0x2c,0xc7,0x02 -+// 35581 諽 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x00,0x44,0x44,0xff,0x44,0x7c,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35582 諾 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3c,0x01,0x3c,0x00,0x3c,0x24,0x25,0x26,0x3c,0x24,0x00,0x44,0x44,0xff,0x44,0x20,0x20,0xff,0x20,0x40,0x7e,0xc2,0x42,0x42,0x7e,0x42,0x00 -+// 35583 諿 ; -+,0x20,0x18,0x10,0x7e,0x00,0x01,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x3d,0x24,0x20,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x84,0xfc,0x84,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04 -+// 35584 謀 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3f,0x24,0x24,0x24,0x3d,0x26,0x00,0x84,0x84,0xff,0x84,0xfc,0x84,0x84,0xfc,0x20,0xff,0x70,0xa8,0xa4,0x23,0x20,0x20 -+// 35585 謁 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x01,0x3f,0x25,0x25,0x25,0x3c,0x24,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x12,0x12,0x2a,0x46,0xfa,0x02,0x14,0x08 -+// 35586 謂 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x3c,0x24,0x20,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x8a,0x84,0x00 -+// 35587 謃 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x25,0x24,0x24,0x3c,0x21,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x90,0xfe,0x90,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 35588 謄 ; -+,0x01,0x3c,0x27,0x24,0x3f,0x24,0x25,0x27,0x3c,0x25,0x24,0x25,0x24,0x25,0x55,0x49,0x24,0xa8,0xfe,0x20,0xff,0x88,0x24,0xff,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x04,0xfc -+// 35589 謅 ; -+,0x20,0x18,0x11,0x7c,0x00,0x3c,0x00,0x3d,0x00,0x3d,0x26,0x24,0x3c,0x24,0x20,0x01,0x80,0xfe,0x22,0xaa,0xfa,0x22,0x4a,0x84,0xfe,0x02,0xaa,0xfa,0x2a,0x42,0x8a,0x04 -+// 35590 謆 ; -+,0x20,0x10,0x7f,0x01,0x3d,0x01,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x22,0x04,0x20,0x10,0xff,0x01,0xff,0x00,0xff,0x11,0x99,0x55,0x33,0x55,0x99,0x11,0x55,0x22 -+// 35591 謇 ; -+,0x00,0x3f,0x22,0x4f,0x02,0x1f,0x02,0x3f,0x04,0x1f,0x60,0x07,0x00,0x07,0x04,0x07,0x80,0xff,0x22,0xfc,0x20,0xfe,0x20,0xfe,0x84,0xfb,0x02,0xf8,0x00,0xf8,0x08,0xf8 -+// 35592 謈 ; -+,0x1f,0x11,0x10,0x1f,0x04,0x1f,0x04,0x7f,0x18,0x6f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0xfc,0x04,0x84,0xfc,0x10,0xfc,0x10,0xff,0x8c,0xfb,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35593 謉 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x21,0x02,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x14,0x35,0x3f,0x51,0x91,0x0f,0x00 -+// 35594 謊 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3d,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3d,0x26,0x00,0x44,0x44,0xff,0x44,0x10,0xff,0x80,0xfe,0x00,0xa4,0xa4,0xa4,0xa5,0x25,0x23,0x00 -+// 35595 謋 ; -+,0x21,0x11,0x7d,0x01,0x3a,0x01,0x00,0x3d,0x02,0x3f,0x24,0x24,0x3c,0x25,0x22,0x00,0x04,0x04,0xff,0x54,0x54,0x5f,0x84,0x24,0x20,0xff,0x70,0xa8,0xa4,0x23,0x22,0x20 -+// 35596 謌 ; -+,0x21,0x18,0x10,0x7e,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x20,0x00,0xff,0x02,0xf2,0x92,0x92,0xf2,0x00,0xff,0x02,0xf2,0x92,0x92,0xf2,0x02,0x0a,0x04 -+// 35597 謍 ; -+,0x04,0x15,0x15,0x04,0x0a,0x11,0x3f,0x21,0x40,0x1f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x20,0x24,0x28,0x30,0x48,0x84,0xff,0x02,0x84,0xf8,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35598 謎 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3c,0x03,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x22,0x24,0x00,0x10,0x92,0x52,0x54,0x10,0x7f,0x10,0x38,0x34,0x52,0x92,0x10,0x10,0xc0,0x3f,0x00 -+// 35599 謏 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x01,0x10,0xd6,0x92,0xd6,0x92,0x92,0xfe,0x10,0xfe,0x44,0x44,0x28,0x10,0x2c,0x47,0x82 -+// 35600 謐 ; -+,0x10,0x08,0x7e,0x01,0x01,0x3d,0x00,0x3c,0x01,0x3c,0x24,0x24,0x3c,0x27,0x20,0x00,0x20,0x14,0x46,0x48,0x52,0x65,0x44,0xbc,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 35601 謑 ; -+,0x20,0x19,0x11,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x00,0x3d,0x24,0x24,0x3c,0x25,0x02,0x0e,0xf0,0x22,0x94,0x20,0x44,0xf8,0x24,0xfe,0x22,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 35602 謒 ; -+,0x20,0x18,0x08,0x7e,0x01,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3d,0x25,0x02,0x10,0x10,0x28,0x56,0x83,0xfe,0x84,0xfc,0x84,0xfc,0x80,0xfe,0xc2,0x42,0x7e,0x00 -+// 35603 謓 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x25,0x3c,0x24,0x01,0x10,0x10,0xfe,0x10,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0x86,0x04 -+// 35604 謔 ; -+,0x10,0x08,0x7e,0x01,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x22,0x04,0x10,0x1e,0x10,0xff,0x12,0x10,0x7e,0x10,0x0f,0x00,0x7e,0x40,0xff,0x40,0x7e,0x00 -+// 35605 謕 ; -+,0x20,0x11,0x7f,0x01,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x25,0x02,0x1f,0xf0,0x1c,0x10,0x7f,0x52,0x5c,0x72,0x5e,0x40,0x5c,0x54,0x54,0x55,0x57,0xa0 -+// 35606 謖 ; -+,0x10,0x08,0x08,0x7e,0x00,0x3c,0x00,0x3c,0x01,0x00,0x3c,0x25,0x26,0x3c,0x24,0x01,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x48,0x86,0x42,0x7c,0xc8,0x48,0x30,0x4c,0x87,0x02 -+// 35607 謗 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3f,0x01,0x3c,0x01,0x3e,0x24,0x24,0x3c,0x24,0x20,0x01,0x20,0x10,0xfe,0x44,0x28,0xff,0x22,0x10,0xff,0x40,0x7e,0x44,0x44,0x84,0x94,0x08 -+// 35608 謘 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x3f,0x21,0x02,0x00,0xff,0x81,0xff,0x90,0x88,0xff,0xa2,0x94,0xff,0x88,0xff,0x88,0x08,0x08,0x08 -+// 35609 謙 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3c,0x03,0x3c,0x01,0x3c,0x24,0x24,0x25,0x3e,0x24,0x00,0x84,0x48,0xff,0x50,0xfe,0x52,0xff,0x52,0xfe,0x52,0xd8,0xd4,0x53,0x52,0x50,0x50 -+// 35610 謚 ; -+,0x21,0x18,0x10,0x7d,0x00,0x3c,0x00,0x3d,0x00,0x01,0x3d,0x25,0x25,0x3d,0x23,0x00,0x04,0xc6,0x48,0xfe,0x00,0x48,0xc6,0x04,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 35611 講 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3c,0x01,0x00,0x3c,0x00,0x3c,0x24,0x27,0x24,0x3c,0x24,0x44,0x44,0xff,0x44,0xfe,0x44,0xff,0x10,0xfe,0x92,0xfe,0x92,0xff,0x82,0x8a,0x84 -+// 35612 謜 ; -+,0x20,0x19,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x22,0x04,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x08,0x4c,0x6a,0x4b,0x8a,0x28,0x10 -+// 35613 謝 ; -+,0x20,0x10,0x7d,0x01,0x01,0x3d,0x01,0x3d,0x03,0x3c,0x24,0x25,0x26,0x3c,0x24,0x00,0x42,0x82,0xe2,0x22,0xff,0x22,0xe2,0x32,0xea,0x6a,0xa2,0x22,0x22,0x22,0xaa,0x44 -+// 35614 謞 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3c,0x00,0x3c,0x01,0x3d,0x25,0x25,0x3d,0x25,0x21,0x01,0x20,0x10,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 35615 謟 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3e,0x00,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x3e,0xe2,0x23,0x94,0x40,0xee,0x82,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x82 -+// 35616 謠 ; -+,0x10,0x08,0x7f,0x00,0x00,0x3f,0x00,0x3e,0x01,0x3e,0x22,0x22,0x3e,0x22,0x20,0x00,0x10,0x3e,0x62,0xd4,0x38,0xc0,0xfe,0x90,0x10,0xff,0x10,0x92,0x92,0x92,0xfe,0x00 -+// 35617 謡 ; -+,0x10,0x09,0x08,0x7e,0x01,0x3e,0x00,0x3e,0x01,0x00,0x3e,0x22,0x22,0x3e,0x22,0x00,0x1e,0xe0,0xa2,0x93,0x14,0x80,0xfe,0x90,0x10,0xfe,0x10,0x92,0x92,0x92,0xfe,0x00 -+// 35618 謢 ; -+,0x10,0x08,0x7e,0x01,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0xa0,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfe,0x44,0x28,0x10,0x6c,0x83 -+// 35619 謣 ; -+,0x20,0x19,0x10,0x7d,0x01,0x3c,0x00,0x3d,0x00,0x03,0x3c,0x24,0x24,0x3c,0x24,0x00,0x00,0xfe,0x10,0xff,0x11,0x94,0x42,0xfe,0x00,0xff,0x40,0xfc,0x44,0x04,0x28,0x10 -+// 35620 謤 ; -+,0x10,0x0b,0x7e,0x01,0x3d,0x01,0x00,0x3c,0x00,0x3d,0x24,0x24,0x24,0x3d,0x22,0x00,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xfc,0x00,0xff,0x10,0x94,0x92,0x13,0x52,0x20 -+// 35621 謥 ; -+,0x20,0x18,0x11,0x7f,0x01,0x3d,0x01,0x3d,0x01,0x3c,0x24,0x25,0x25,0x3e,0x24,0x00,0x20,0x40,0xfe,0x22,0x7a,0xca,0x32,0x52,0xfe,0x00,0x24,0x5a,0x51,0x45,0x3c,0x00 -+// 35622 謦 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x24,0x3f,0x20,0x2f,0x40,0x07,0x00,0x07,0x04,0x07,0x3c,0xa4,0x24,0x43,0x3c,0xa4,0x98,0xa4,0x42,0xfc,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35623 謧 ; -+,0x20,0x10,0x7f,0x00,0x01,0x3d,0x01,0x3d,0x00,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x20,0x10,0xff,0x00,0x4a,0x32,0x4a,0xfe,0x10,0xff,0x21,0x49,0xfd,0x05,0x01,0x02 -+// 35624 謨 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x27,0x24,0x24,0x3c,0x25,0x02,0x48,0x48,0xff,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 35625 謩 ; -+,0x02,0x3f,0x02,0x0f,0x08,0x0f,0x02,0x7f,0x04,0x1f,0x60,0x07,0x00,0x07,0x04,0x07,0x20,0xff,0x20,0xf8,0x88,0xf8,0x00,0xff,0x84,0xfb,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35626 謪 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x21,0x01,0x20,0x10,0xff,0x44,0x28,0xfe,0x2a,0x46,0x86,0x7a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 35627 謫 ; -+,0x20,0x18,0x09,0x7e,0x00,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x01,0x20,0x10,0xff,0x44,0x28,0xff,0x11,0x11,0x7d,0x11,0x7d,0x45,0x7d,0x01,0x05,0x02 -+// 35628 謬 ; -+,0x21,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x01,0x00,0x3c,0x25,0x24,0x3c,0x24,0x01,0xfe,0x22,0xaa,0x66,0xaa,0x32,0x48,0x94,0x33,0x48,0x8c,0x30,0xc6,0x18,0x60,0x80 -+// 35629 謭 ; -+,0x20,0x10,0x7f,0x00,0x01,0x3d,0x01,0x3d,0x01,0x00,0x3d,0x24,0x24,0x3c,0x24,0x01,0x84,0x48,0xff,0x02,0xea,0x2a,0xea,0x22,0x6a,0x04,0xfe,0x42,0x42,0x42,0x8a,0x04 -+// 35630 謮 ; -+,0x20,0x19,0x10,0x7d,0x00,0x3d,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x01,0x20,0xfe,0x20,0xfe,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 35631 謯 ; -+,0x20,0x18,0x10,0x7f,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x22,0x02,0x04,0x20,0x3e,0x20,0xff,0x22,0xf8,0x22,0x1e,0x7c,0x44,0x7c,0x44,0x7c,0x44,0xff,0x00 -+// 35632 謰 ; -+,0x20,0x1a,0x11,0x7d,0x00,0x3c,0x03,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x22,0x04,0x10,0x10,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x10,0x10,0x10,0xff,0x00 -+// 35633 謱 ; -+,0x10,0x08,0x7e,0x01,0x3c,0x00,0x00,0x3c,0x00,0x3c,0x24,0x27,0x24,0x3c,0x24,0x01,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x20,0xff,0xc8,0x30,0x4c,0x82 -+// 35634 謲 ; -+,0x20,0x18,0x10,0x7d,0x00,0x3c,0x01,0x3c,0x00,0x3c,0x27,0x24,0x25,0x3c,0x24,0x01,0x20,0x44,0x9e,0xe2,0x44,0x8a,0xff,0x11,0x28,0xc6,0x1b,0x60,0x86,0x18,0x60,0x80 -+// 35635 謳 ; -+,0x20,0x19,0x11,0x7f,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x00,0x00,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00,0x77,0x55,0x55,0x77,0x00,0x00,0xff,0x00 -+// 35636 謴 ; -+,0x10,0x08,0x7e,0x01,0x00,0x3c,0x00,0x00,0x3c,0x00,0x3c,0x24,0x24,0x3c,0x24,0x01,0x00,0xfe,0x92,0xff,0x92,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 35637 謵 ; -+,0x10,0x09,0x7e,0x01,0x00,0x3c,0x00,0x01,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0xee,0x22,0x2a,0xa6,0x6a,0xa2,0x12,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 35638 謶 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x25,0x3d,0x25,0x02,0x20,0x10,0xff,0x80,0xa4,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0x80,0x55,0x55,0x55,0x00 -+// 35639 謷 ; -+,0x04,0x3f,0x04,0x3f,0x08,0x0e,0x12,0x26,0x3f,0x00,0x0f,0x00,0x07,0x04,0x07,0x04,0x10,0x10,0x3f,0xa4,0x54,0x08,0xb7,0x42,0xff,0x00,0xfc,0x00,0xf8,0x08,0xf8,0x08 -+// 35640 謸 ; -+,0x20,0x10,0x7f,0x00,0x03,0x38,0x00,0x3b,0x01,0x39,0x29,0x29,0x29,0x3a,0x2b,0x04,0x88,0x8c,0xe8,0x90,0xff,0x92,0x92,0xf2,0x14,0xd4,0x48,0x48,0x54,0x63,0x42,0x80 -+// 35641 謹 ; -+,0x20,0x18,0x11,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x3c,0x25,0x24,0x24,0x3c,0x25,0x00,0x44,0x44,0xff,0x44,0x7c,0x10,0xfe,0x92,0xfe,0x10,0xff,0x10,0xfe,0x10,0xff,0x00 -+// 35642 謺 ; -+,0x04,0x3f,0x04,0x7f,0x11,0x3f,0x04,0x7f,0x04,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x10,0x10,0x7c,0x94,0x54,0xa4,0x35,0x53,0x81,0xfe,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35643 謻 ; -+,0x20,0x18,0x13,0x7c,0x00,0x3f,0x01,0x3d,0x02,0x02,0x3c,0x24,0x24,0x3c,0x24,0x00,0x10,0xdf,0x91,0xa2,0x92,0xf4,0xc8,0xaf,0x91,0xa1,0xd2,0x94,0x88,0x90,0xe0,0x80 -+// 35644 謼 ; -+,0x20,0x18,0x10,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3d,0x25,0x02,0x20,0x3c,0x20,0xff,0x22,0xf8,0x22,0x1e,0x00,0x7f,0x4a,0x2c,0x7f,0x08,0x28,0x10 -+// 35645 謽 ; -+,0x00,0x3c,0x04,0x3c,0x20,0x3c,0x04,0x14,0x09,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x7c,0x44,0x7c,0x10,0xfe,0x92,0xfe,0x12,0xff,0x02,0xf8,0x00,0xf8,0x08,0xf8 -+// 35646 謾 ; -+,0x20,0x18,0x10,0x7e,0x00,0x3c,0x01,0x3d,0x01,0x3c,0x24,0x24,0x24,0x3c,0x24,0x01,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x29,0xff,0x00,0xfe,0x44,0x28,0x10,0x6c,0x83 -+// 35647 謿 ; -+,0x20,0x18,0x13,0x7c,0x03,0x3a,0x03,0x3a,0x03,0x00,0x3c,0x27,0x24,0x3c,0x24,0x00,0x80,0x8f,0xe9,0x89,0xef,0x29,0xe9,0x29,0xef,0x89,0x89,0xe9,0x89,0x91,0x95,0xa2 -+// 35648 譀 ; -+,0x10,0x0b,0x7c,0x03,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x26,0x20,0x00,0x08,0xec,0x48,0xe8,0x4f,0x52,0xea,0x4a,0x4a,0xc4,0x44,0x64,0xca,0x53,0x62,0x40 -+// 35649 譁 ; -+,0x10,0x08,0x7f,0x00,0x01,0x3c,0x01,0x3c,0x00,0x3d,0x24,0x25,0x24,0x3c,0x24,0x00,0x44,0x44,0xff,0x44,0xff,0x92,0xff,0x92,0x92,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35650 譂 ; -+,0x20,0x19,0x11,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x3c,0x24,0x25,0x24,0x3c,0x24,0x00,0x00,0xef,0x29,0xef,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35651 譃 ; -+,0x20,0x18,0x08,0x7e,0x00,0x3c,0x00,0x00,0x3c,0x00,0x3c,0x25,0x25,0x3d,0x25,0x02,0x10,0x1e,0x10,0xff,0x92,0xfc,0x92,0x8e,0xa8,0xa8,0xaa,0x6c,0x28,0x28,0xff,0x00 -+// 35652 譄 ; -+,0x10,0x0c,0x08,0x7f,0x00,0x3e,0x00,0x3e,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x82,0x44,0xfe,0x92,0xd6,0xba,0x92,0xfe,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44 -+// 35653 譅 ; -+,0x40,0x33,0x20,0x7a,0x01,0x79,0x02,0x78,0x00,0x78,0x4a,0x4a,0x7a,0x4a,0x47,0x00,0x00,0xff,0xa9,0xb9,0x29,0x29,0xb5,0x42,0x84,0x94,0xf7,0x94,0x94,0xd4,0x3f,0x00 -+// 35654 譆 ; -+,0x20,0x19,0x10,0x7f,0x00,0x3c,0x00,0x3c,0x00,0x00,0x3d,0x24,0x24,0x3c,0x24,0x00,0x20,0xfe,0x20,0xfe,0x00,0xfc,0x84,0xfc,0x84,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84 -+// 35655 譇 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x01,0x00,0x3f,0x00,0x3e,0x22,0x23,0x22,0x3e,0x22,0x00,0x20,0x20,0xff,0x48,0xa4,0x7b,0x24,0xff,0x20,0x7c,0xc4,0x7c,0x44,0x7c,0x44,0x00 -+// 35656 譈 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3d,0x01,0x3c,0x03,0x00,0x3c,0x27,0x3c,0x24,0x02,0x01,0x88,0x4c,0xe8,0x08,0xdf,0x52,0xd2,0x12,0xea,0x4a,0x84,0xe4,0x8a,0x93,0xa2,0x00 -+// 35657 證 ; -+,0x20,0x19,0x10,0x7f,0x00,0x3d,0x02,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x25,0x00,0x09,0xea,0x24,0x44,0x82,0xfd,0x00,0xfc,0x84,0x84,0xfc,0x00,0x44,0x28,0xff,0x00 -+// 35658 譊 ; -+,0x10,0x08,0x7f,0x00,0x01,0x3c,0x01,0x3c,0x01,0x3c,0x25,0x24,0x3c,0x24,0x25,0x02,0x20,0x20,0xfc,0x20,0xfe,0x88,0xde,0x88,0xdf,0x00,0xfe,0x50,0x51,0x91,0x0f,0x00 -+// 35659 譋 ; -+,0x20,0x19,0x11,0x7d,0x01,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x25,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x79,0x49,0xa9,0x15,0x02 -+// 35660 譌 ; -+,0x20,0x10,0x7f,0x00,0x00,0x3e,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x07,0xf8,0x52,0x52,0x94,0xff,0x81,0xfe,0x82,0xff,0x81,0xa9,0xa9,0xc9,0x85,0x02 -+// 35661 譍 ; -+,0x00,0x1f,0x12,0x13,0x16,0x1b,0x12,0x12,0x12,0x1f,0x10,0x13,0x10,0x23,0x22,0x43,0x40,0xff,0x48,0x7f,0xc8,0x7f,0x48,0x7f,0x40,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc -+// 35662 譎 ; -+,0x10,0x08,0x7e,0x01,0x00,0x3c,0x00,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x21,0x01,0xff,0x22,0x14,0xff,0x1a,0x28,0xd8,0xff,0x29,0x45,0xbb,0x29,0x39,0x29,0x05,0x02 -+// 35663 譏 ; -+,0x20,0x18,0x11,0x7f,0x00,0x3d,0x03,0x3c,0x03,0x00,0x3c,0x24,0x25,0x3e,0x24,0x00,0x10,0x94,0x35,0xde,0x95,0x5f,0xd1,0x88,0xff,0x88,0x8a,0x8a,0x4d,0x53,0x21,0x00 -+// 35664 譐 ; -+,0x10,0x08,0x7f,0x00,0x3c,0x00,0x00,0x3c,0x00,0x3c,0x25,0x24,0x3c,0x24,0x20,0x00,0x42,0x24,0xff,0x28,0xfe,0xaa,0xae,0xc2,0xfe,0x04,0xff,0x44,0x24,0x24,0x14,0x08 -+// 35665 譑 ; -+,0x20,0x11,0x7e,0x01,0x00,0x3d,0x02,0x3c,0x00,0x01,0x3d,0x25,0x25,0x3d,0x25,0x01,0x1c,0xe0,0x40,0xff,0x84,0x7b,0x4a,0x78,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x06 -+// 35666 譒 ; -+,0x20,0x11,0x7e,0x00,0x03,0x3c,0x00,0x3d,0x03,0x3d,0x25,0x25,0x3d,0x25,0x21,0x00,0x0c,0xf0,0x24,0xa8,0xff,0x70,0xac,0x23,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x04,0x00 -+// 35667 譓 ; -+,0x10,0x09,0x7e,0x00,0x00,0x3c,0x00,0x3c,0x00,0x3d,0x24,0x25,0x25,0x3e,0x24,0x00,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x14,0xff,0x22,0x58,0x55,0x45,0x7c,0x00 -+// 35668 譔 ; -+,0x10,0x09,0x7f,0x01,0x01,0x3d,0x00,0x3c,0x01,0x3c,0x24,0x27,0x3c,0x24,0x24,0x01,0x00,0xef,0x29,0xef,0x08,0x29,0xe7,0x48,0xff,0x48,0x48,0xff,0x48,0x64,0x86,0x04 -+// 35669 譕 ; -+,0x10,0x08,0x7e,0x01,0x00,0x3c,0x03,0x3c,0x00,0x3f,0x24,0x25,0x25,0x3d,0x26,0x00,0x80,0x80,0xff,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xff,0x00,0x52,0x49,0x2d,0x29,0x00 -+// 35670 譖 ; -+,0x20,0x13,0x7c,0x02,0x03,0x3d,0x01,0x3d,0x02,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x00,0xdf,0x94,0x94,0xff,0x4a,0x6a,0x53,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 35671 譗 ; -+,0x10,0x08,0x7e,0x01,0x01,0x3c,0x00,0x3c,0x01,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x88,0x88,0xff,0x52,0x11,0x28,0x44,0x82,0x7d,0x00,0x7c,0x44,0x44,0x7c,0x44,0x00 -+// 35672 識 ; -+,0x20,0x10,0x7f,0x01,0x00,0x3f,0x00,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x20,0x00,0x88,0x48,0xfa,0x29,0xa8,0xff,0x08,0xea,0x2b,0xea,0x24,0x2d,0xed,0x15,0x22,0x40 -+// 35673 譙 ; -+,0x10,0x08,0x00,0x7e,0x01,0x3c,0x00,0x3c,0x00,0x00,0x3c,0x24,0x25,0x3d,0x22,0x00,0x40,0x50,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x00,0x52,0x29,0x29,0x00 -+// 35674 譚 ; -+,0x23,0x18,0x11,0x7d,0x01,0x3c,0x01,0x3d,0x01,0x3d,0x25,0x24,0x27,0x3c,0x24,0x00,0xff,0x48,0xfe,0x4a,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 35675 譛 ; -+,0x20,0x18,0x10,0x7f,0x01,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x44,0x44,0xef,0x44,0xff,0x44,0xaa,0x11,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 35676 譜 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x3c,0x24,0x20,0x00,0x82,0x44,0xfe,0x48,0x4a,0xcc,0x48,0xff,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 35677 譝 ; -+,0x20,0x11,0x01,0x7d,0x00,0x3d,0x01,0x3d,0x01,0x01,0x3d,0x24,0x24,0x3c,0x24,0x00,0x00,0xfe,0x4a,0xce,0x48,0xce,0x4a,0xce,0x4a,0x4a,0xce,0x48,0x49,0x49,0x3f,0x00 -+// 35678 譞 ; -+,0x20,0x19,0x11,0x7f,0x00,0x3d,0x00,0x3d,0x01,0x3d,0x24,0x24,0x25,0x3e,0x24,0x00,0x00,0xfe,0x4a,0xfe,0x00,0xff,0x00,0xfe,0x02,0xfe,0x52,0x94,0x88,0xa4,0xc3,0x82 -+// 35679 譟 ; -+,0x10,0x08,0x7e,0x00,0x00,0x3d,0x01,0x3d,0x00,0x3d,0x24,0x24,0x24,0x3c,0x25,0x00,0x00,0xfc,0x84,0xfc,0x00,0xce,0x4a,0xce,0x10,0xff,0x38,0x54,0x54,0x93,0x12,0x10 -+// 35680 譠 ; -+,0x20,0x1b,0x10,0x7d,0x01,0x3d,0x01,0x01,0x3c,0x00,0x3c,0x24,0x24,0x3c,0x24,0x03,0x20,0xff,0x00,0xfe,0x4a,0x7a,0x02,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff -+// 35681 譡 ; -+,0x10,0x08,0x00,0x7e,0x00,0x3d,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x10,0x92,0x54,0xff,0x82,0x7c,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 35682 譢 ; -+,0x20,0x12,0x7d,0x01,0x3c,0x03,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x02,0x04,0x42,0x24,0x7f,0x10,0x22,0x53,0xac,0x58,0xec,0x5a,0x29,0xd8,0x28,0x10,0xff,0x00 -+// 35683 譣 ; -+,0x10,0x0c,0x08,0x7e,0x01,0x3c,0x01,0x3d,0x01,0x3d,0x24,0x24,0x24,0x3d,0x25,0x02,0x20,0x20,0x50,0x8c,0x7b,0x00,0xde,0x52,0x52,0xde,0x88,0x88,0x88,0x54,0x22,0x21 -+// 35684 譤 ; -+,0x20,0x18,0x11,0x7f,0x01,0x3d,0x01,0x3c,0x03,0x3d,0x25,0x25,0x3d,0x25,0x22,0x04,0x48,0x8c,0xe8,0x28,0xef,0x32,0xf2,0x92,0xea,0x04,0xe4,0x24,0x2a,0x2a,0xb1,0x51 -+// 35685 譥 ; -+,0x08,0x3f,0x2d,0x3f,0x08,0x3f,0x10,0x1e,0x22,0x5f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x20,0x20,0x7f,0x64,0xa4,0x18,0x24,0x43,0x82,0xfe,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35686 警 ; -+,0x0a,0x3f,0x0a,0x3f,0x30,0x5e,0x12,0x1e,0x01,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x20,0xa0,0x3f,0xa4,0xd4,0x88,0x94,0xa2,0x41,0xff,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35687 譧 ; -+,0x10,0x09,0x7f,0x01,0x3d,0x01,0x01,0x3d,0x01,0x3d,0x25,0x25,0x25,0x3e,0x23,0x04,0x10,0xff,0x44,0x28,0xff,0x28,0xfe,0x28,0xfe,0x2a,0xfe,0x68,0x6c,0xab,0x2a,0x28 -+// 35688 譨 ; -+,0x20,0x18,0x10,0x7c,0x00,0x3c,0x00,0x3d,0x01,0x01,0x3d,0x25,0x25,0x3d,0x25,0x02,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xff,0x00,0x7e,0x00,0xff,0x4a,0x44,0x63,0x42 -+// 35689 譩 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3c,0x00,0x00,0x3c,0x00,0x3c,0x24,0x25,0x3d,0x26,0x00,0x20,0x10,0xff,0x44,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x22,0x59,0x55,0x7c,0x00 -+// 35690 譪 ; -+,0x10,0x09,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x00,0x3c,0x25,0x26,0x24,0x3c,0x24,0x00,0x48,0xff,0x48,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xff,0x91,0xa9,0xc5,0xfd,0x05,0x02 -+// 35691 譫 ; -+,0x10,0x08,0x7c,0x01,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x22,0x04,0x40,0x7c,0x88,0xff,0x28,0x56,0x94,0xff,0x00,0x7e,0x00,0x7e,0x00,0x7e,0x42,0x7e -+// 35692 譬 ; -+,0x1e,0x12,0x1e,0x10,0x3e,0x52,0x1f,0x12,0x3f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x20,0xfe,0x44,0x28,0xfe,0x10,0xff,0x10,0xff,0x00,0xf8,0x00,0xf8,0x08,0xf8,0x08 -+// 35693 譭 ; -+,0x21,0x12,0x7e,0x03,0x02,0x7a,0x03,0x78,0x03,0x78,0x48,0x48,0x48,0x7f,0x48,0x00,0x00,0x6e,0x2a,0x6a,0x2a,0x33,0xe0,0x1f,0xd1,0x91,0x8a,0x8a,0xe4,0x0a,0x11,0x21 -+// 35694 譮 ; -+,0x20,0x18,0x00,0x7e,0x01,0x3c,0x00,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x00,0x10,0x28,0x44,0xfa,0x01,0xfe,0xd6,0xba,0xfe,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44 -+// 35695 譯 ; -+,0x20,0x19,0x11,0x7f,0x00,0x3c,0x00,0x3d,0x00,0x3c,0x24,0x24,0x3d,0x24,0x20,0x00,0x00,0xfe,0x4a,0xfe,0x10,0xfe,0x10,0xff,0x44,0x28,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 35696 議 ; -+,0x20,0x18,0x11,0x7e,0x01,0x3c,0x03,0x3c,0x01,0x00,0x3f,0x24,0x24,0x3d,0x24,0x01,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x54,0x92,0x90,0xff,0x8a,0xcc,0x95,0xa5,0x82 -+// 35697 譱 ; -+,0x04,0x02,0x3f,0x00,0x1f,0x00,0x7f,0x08,0x7e,0x00,0x3e,0x00,0x3e,0x22,0x3e,0x22,0x10,0x20,0xff,0x80,0xfe,0x80,0xff,0x88,0xff,0x80,0xbe,0x80,0xbe,0xa2,0xbe,0xa2 -+// 35698 譲 ; -+,0x10,0x09,0x7e,0x00,0x3d,0x01,0x00,0x3c,0x00,0x3d,0x24,0x24,0x25,0x3e,0x24,0x00,0x10,0xff,0x44,0x82,0x49,0xfe,0x48,0xfe,0x48,0xff,0x52,0x94,0x88,0xa7,0xc2,0x80 -+// 35699 譳 ; -+,0x20,0x19,0x10,0x7f,0x03,0x3c,0x00,0x03,0x3c,0x00,0x3d,0x25,0x25,0x3d,0x25,0x01,0x00,0xfc,0x20,0xff,0x2a,0xa4,0x20,0xff,0x20,0x40,0xfe,0x4a,0x4a,0x4a,0x42,0x06 -+// 35700 譴 ; -+,0x20,0x18,0x7e,0x01,0x01,0x3c,0x03,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x22,0x04,0x10,0x7c,0x54,0x7c,0x10,0xff,0x00,0x7c,0x44,0x7c,0x40,0x7c,0x44,0x7c,0x80,0x7f -+// 35701 譵 ; -+,0x21,0x15,0x7f,0x01,0x07,0x78,0x02,0x79,0x03,0x78,0x4b,0x48,0x48,0x7b,0x48,0x00,0x42,0x42,0x52,0x62,0xf2,0x0f,0x22,0x4a,0xea,0x8a,0xe2,0x82,0xf2,0x82,0x0a,0x04 -+// 35702 譶 ; -+,0x00,0x3f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x10,0x7f,0x00,0x3f,0x00,0x3f,0x21,0x3f,0x80,0xfe,0x00,0xf8,0x00,0xf8,0x08,0xf8,0x10,0x7f,0x00,0x7e,0x00,0x7e,0x42,0x7e -+// 35703 護 ; -+,0x10,0x09,0x7f,0x00,0x00,0x3f,0x00,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x01,0x44,0xff,0x44,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0xfe,0x42,0x24,0x18,0x64,0x83 -+// 35704 譸 ; -+,0x10,0x09,0x7e,0x00,0x00,0x3d,0x00,0x3d,0x00,0x3f,0x24,0x25,0x25,0x3d,0x25,0x00,0x20,0xfe,0x20,0xfc,0x00,0xff,0x02,0xfc,0x20,0xff,0x04,0xff,0x54,0x44,0xd4,0x08 -+// 35705 譹 ; -+,0x10,0x09,0x7e,0x00,0x00,0x3c,0x00,0x3d,0x01,0x3c,0x24,0x24,0x27,0x3c,0x24,0x03,0x10,0xff,0x00,0x7e,0x42,0x7e,0x00,0xff,0x01,0xfe,0x22,0xd4,0x38,0x54,0x93,0x32 -+// 35706 譺 ; -+,0x21,0x11,0x7d,0x01,0x01,0x78,0x01,0x79,0x02,0x00,0x7b,0x48,0x49,0x7a,0x4c,0x00,0x00,0x5f,0x81,0x02,0x24,0xdf,0x05,0xe4,0x94,0x97,0xf4,0x94,0x54,0x2c,0x43,0x80 -+// 35707 譻 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x0a,0x11,0x20,0x7f,0x00,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x14,0x23,0xc2,0xff,0x00,0xfc,0x00,0xf8,0x08,0xf8,0x08 -+// 35708 譼 ; -+,0x3f,0x24,0x3e,0x22,0x3e,0x24,0x3f,0x00,0x7f,0x00,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x20,0x3e,0x28,0x44,0xfe,0xaa,0xfe,0x80,0xff,0x00,0xf8,0x00,0xf8,0x08,0xf8,0x08 -+// 35709 譽 ; -+,0x06,0x19,0x11,0x1d,0x11,0x1d,0x11,0x7f,0x08,0x1f,0x60,0x07,0x00,0x07,0x04,0x07,0x00,0x1c,0xc4,0x1c,0xc4,0x5c,0x44,0xff,0x88,0xfc,0x03,0xf0,0x00,0xf0,0x10,0xf0 -+// 35710 譾 ; -+,0x10,0x08,0x7f,0x01,0x01,0x3d,0x01,0x3d,0x01,0x3f,0x25,0x24,0x25,0x3e,0x24,0x00,0x84,0x48,0xff,0x22,0xea,0x2a,0xea,0x22,0x26,0xfe,0x2a,0xa6,0x2a,0x32,0xaa,0x44 -+// 35711 譿 ; -+,0x20,0x1b,0x10,0x7f,0x00,0x3f,0x00,0x01,0x3c,0x00,0x3c,0x25,0x24,0x25,0x3d,0x26,0x84,0xdf,0x84,0xdf,0x84,0xdf,0x84,0xfe,0x02,0xfe,0x02,0xfe,0x12,0x49,0x4a,0x3e -+// 35712 讀 ; -+,0x20,0x19,0x10,0x7e,0x00,0x3d,0x01,0x3d,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x01,0x10,0xff,0x10,0xfe,0x00,0xff,0x29,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 35713 讁 ; -+,0x20,0x10,0x7d,0x02,0x01,0x3c,0x03,0x3d,0x01,0x3d,0x25,0x25,0x3d,0x25,0x22,0x04,0x20,0x10,0xff,0x44,0x28,0x7f,0x49,0x7f,0x49,0x5d,0x55,0x5d,0x45,0x42,0xff,0x00 -+// 35714 讂 ; -+,0x00,0x20,0x18,0x11,0x7d,0x01,0x3d,0x00,0x3c,0x00,0x3c,0x24,0x24,0x3d,0x24,0x21,0x40,0x7e,0x84,0xfe,0x22,0x52,0xfe,0xa4,0x94,0x84,0xfc,0x40,0xfe,0x44,0x38,0xc7 -+// 35715 讃 ; -+,0x10,0x0b,0x7c,0x03,0x00,0x3d,0x02,0x3c,0x00,0x3c,0x24,0x24,0x24,0x3c,0x24,0x01,0x84,0xdf,0x84,0xff,0x84,0x4a,0xfd,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86,0x02 -+// 35716 讄 ; -+,0x20,0x10,0x7c,0x00,0x00,0x78,0x00,0x7b,0x02,0x7a,0x4b,0x4a,0x4a,0x7b,0x4a,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x95,0x95,0xff,0x95,0x95,0xff,0x11,0x00 -+// 35717 讅 ; -+,0x20,0x19,0x11,0x7d,0x00,0x3c,0x01,0x3c,0x01,0x3e,0x24,0x24,0x24,0x3c,0x24,0x00,0x10,0xff,0x01,0xfe,0x94,0x58,0xff,0x74,0x93,0xfe,0x92,0xfe,0x92,0xfe,0x82,0x00 -+// 35718 讆 ; -+,0x0a,0x0b,0x14,0x3d,0x54,0x15,0x15,0x15,0x00,0x3f,0x00,0x07,0x00,0x07,0x04,0x07,0x80,0xff,0xa0,0xff,0x04,0xe4,0x24,0xec,0x40,0xff,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35719 讇 ; -+,0x23,0x1a,0x13,0x7e,0x03,0x3a,0x02,0x3a,0x03,0x3a,0x2a,0x2a,0x2a,0x3a,0x2a,0x02,0xdf,0x51,0xdf,0x51,0xdf,0x41,0x7d,0x89,0x41,0xdd,0x85,0xcd,0x85,0xfd,0x05,0x02 -+// 35720 讈 ; -+,0x10,0x09,0x7d,0x01,0x01,0x3d,0x01,0x3d,0x01,0x3d,0x25,0x25,0x3e,0x22,0x05,0x08,0x00,0xff,0x10,0xef,0x24,0xff,0x6e,0x76,0xa5,0x24,0x28,0x4e,0x48,0x48,0xff,0x00 -+// 35721 讉 ; -+,0x10,0x0a,0x7d,0x01,0x3c,0x00,0x00,0x3b,0x01,0x39,0x29,0x29,0x29,0x39,0x2a,0x04,0x10,0x7c,0x54,0x7c,0x10,0xff,0x00,0x7c,0x44,0x7c,0x40,0x7c,0x44,0x7c,0x80,0x7f -+// 35722 變 ; -+,0x10,0x13,0x24,0x79,0x14,0x3f,0x05,0x29,0x29,0x42,0x03,0x0d,0x30,0x00,0x03,0x3c,0x84,0xe9,0x1e,0xe4,0x0a,0xff,0x20,0x2a,0xea,0x00,0xfc,0x08,0x90,0x60,0x98,0x07 -+// 35723 讋 ; -+,0x08,0x3f,0x14,0x7f,0x22,0x3e,0x22,0x2a,0x24,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x20,0x3c,0x20,0xbc,0x04,0x3c,0x20,0x3a,0xa2,0xff,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35724 讌 ; -+,0x20,0x18,0x13,0x7c,0x00,0x3d,0x01,0x3f,0x01,0x01,0x3f,0x24,0x25,0x3d,0x26,0x00,0x48,0x48,0xff,0x48,0x78,0x04,0x75,0x56,0x54,0x75,0x57,0x00,0x52,0x29,0x29,0x00 -+// 35725 讍 ; -+,0x20,0x1b,0x12,0x7d,0x01,0x3d,0x00,0x3d,0x00,0x3d,0x25,0x25,0x25,0x3c,0x27,0x00,0x00,0xff,0x10,0xd7,0x55,0xd7,0x10,0xff,0x10,0xd7,0x55,0xd7,0x55,0x10,0xff,0x00 -+// 35726 讎 ; -+,0x10,0x14,0x14,0x3f,0x68,0x29,0x3e,0x29,0x28,0x3f,0x29,0x29,0x29,0x3f,0x21,0x00,0x10,0x94,0x92,0xff,0x14,0xd4,0x1f,0xd4,0x14,0xdf,0x54,0x54,0xd4,0x5f,0x10,0x00 -+// 35727 讏 ; -+,0x11,0x23,0x49,0x17,0x30,0x53,0x12,0x13,0x00,0x7f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x00,0xef,0x20,0xff,0x02,0xe2,0x2a,0xe4,0x80,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc -+// 35728 讐 ; -+,0x14,0x1f,0x34,0x5e,0x14,0x1f,0x14,0x1f,0x00,0x3f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x48,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x7f,0x80,0xfe,0x00,0xf8,0x00,0xf8,0x08,0xf8 -+// 35729 讑 ; -+,0x20,0x18,0x10,0x7e,0x01,0x3e,0x01,0x3d,0x01,0x00,0x3d,0x25,0x25,0x3d,0x25,0x01,0x20,0x20,0x50,0x8c,0xfb,0x01,0xce,0x4a,0xce,0x00,0xfe,0x4a,0xfe,0x4a,0x4a,0x06 -+// 35730 讒 ; -+,0x10,0x08,0x7f,0x01,0x01,0x3d,0x00,0x3c,0x00,0x00,0x3d,0x25,0x25,0x3c,0x24,0x01,0x80,0xfe,0x04,0xfe,0x02,0xfe,0x88,0xef,0x88,0xc7,0xfe,0x22,0xfe,0x48,0x89,0x07 -+// 35731 讓 ; -+,0x20,0x13,0x7d,0x01,0x01,0x3c,0x01,0x00,0x3d,0x00,0x3f,0x24,0x24,0x3d,0x24,0x00,0x20,0xff,0x4a,0x4a,0xce,0x48,0xff,0x48,0xfe,0x48,0xff,0x52,0x8c,0xa4,0xc3,0x82 -+// 35732 讔 ; -+,0x20,0x13,0x12,0x7e,0x03,0x3a,0x03,0x3a,0x02,0x3a,0x2b,0x2a,0x2a,0x3a,0x2a,0x02,0x0e,0xf0,0xa9,0xca,0x7e,0x88,0x7f,0x82,0xbe,0x82,0xfe,0x00,0x12,0xa9,0xa2,0xbe -+// 35733 讕 ; -+,0x23,0x12,0x7b,0x02,0x03,0x7a,0x03,0x7a,0x03,0x03,0x7a,0x4b,0x4a,0x7a,0x4b,0x02,0xcf,0x49,0xcf,0x49,0xcf,0x21,0xff,0x21,0xfd,0x2d,0xb5,0xfd,0x71,0xa9,0x25,0x22 -+// 35734 讖 ; -+,0x20,0x10,0x7c,0x01,0x03,0x78,0x03,0x78,0x03,0x78,0x4b,0x48,0x7b,0x49,0x40,0x00,0xa8,0xaa,0xaa,0x58,0xff,0xa8,0xba,0xab,0xba,0xaa,0xb4,0xb4,0xcd,0x15,0x25,0x42 -+// 35735 讗 ; -+,0x10,0x08,0x7f,0x00,0x3c,0x01,0x02,0x3c,0x00,0x00,0x3d,0x25,0x25,0x3d,0x25,0x01,0x10,0x92,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x06 -+// 35736 讘 ; -+,0x23,0x18,0x10,0x7e,0x00,0x3c,0x01,0x3c,0x03,0x3d,0x25,0x25,0x25,0x3d,0x27,0x00,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xff,0x08,0xff,0x52,0xde,0x52,0xde,0x52,0xff,0x42 -+// 35737 讙 ; -+,0x10,0x09,0x7f,0x00,0x3c,0x00,0x00,0x3c,0x00,0x3d,0x26,0x24,0x24,0x3c,0x24,0x00,0x44,0xff,0x44,0xee,0xaa,0xaa,0xee,0x90,0xff,0x88,0xfe,0x88,0xff,0x88,0xff,0x80 -+// 35738 讚 ; -+,0x22,0x13,0x7e,0x07,0x01,0x3d,0x02,0x3c,0x00,0x00,0x3c,0x24,0x24,0x3c,0x24,0x01,0x94,0xde,0x94,0xff,0x4a,0x6b,0x52,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x68,0x86 -+// 35739 讛 ; -+,0x20,0x13,0x7c,0x00,0x03,0x3c,0x03,0x39,0x02,0x38,0x29,0x28,0x2b,0x38,0x28,0x01,0x88,0xff,0x88,0x88,0xde,0x8a,0xea,0x5b,0x2b,0x15,0xfc,0x20,0xfe,0x48,0x9e,0xe4 -+// 35740 讜 ; -+,0x11,0x08,0x09,0x7f,0x00,0x3c,0x01,0x01,0x3d,0x01,0x3c,0x25,0x24,0x3f,0x21,0x02,0x24,0xa8,0xff,0x02,0xfc,0x84,0xfe,0xa6,0x6a,0xfe,0x20,0xfe,0x20,0xff,0x4a,0x4a -+// 35741 讝 ; -+,0x21,0x19,0x11,0x7c,0x03,0x3a,0x02,0x3b,0x02,0x02,0x3a,0x2a,0x2a,0x3b,0x2a,0x04,0xce,0x4a,0xce,0x00,0xff,0xa8,0x48,0xff,0xaa,0xfa,0xaa,0xf4,0xa4,0xfc,0x2a,0x31 -+// 35742 讞 ; -+,0x20,0x10,0x78,0x07,0x05,0x77,0x05,0x04,0x75,0x05,0x74,0x57,0x57,0x76,0x56,0x0a,0x84,0xe4,0x86,0xf4,0x1f,0xc4,0x04,0xe4,0x44,0xc4,0x04,0xe4,0x6a,0xaa,0xb1,0xa1 -+// 35743 讟 ; -+,0x40,0x27,0x78,0x03,0x70,0x07,0x05,0x77,0x00,0x07,0x74,0x57,0x54,0x77,0x52,0x04,0x88,0xe4,0x9f,0xe0,0x0f,0xe0,0x20,0xef,0x00,0xe0,0x2f,0xe9,0x29,0xef,0x49,0x20 -+// 35744 讠 ; -+,0x00,0x08,0x06,0x04,0x00,0x3c,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 35745 计 ; -+,0x20,0x10,0x18,0x10,0x00,0x79,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35746 订 ; -+,0x20,0x10,0x09,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00 -+// 35747 讣 ; -+,0x00,0x20,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x20,0x20,0x20,0x20,0x20,0x30,0x28,0x26,0x24,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 35748 认 ; -+,0x20,0x10,0x0c,0x08,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0d,0x09,0x02,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50,0x50,0x50,0x48,0x88,0x84,0x04,0x03,0x02 -+// 35749 讥 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0d,0x09,0x02,0x00,0xf8,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x89,0x89,0x09,0x07,0x00 -+// 35750 讦 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x78,0x09,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35751 讧 ; -+,0x20,0x10,0x19,0x10,0x00,0x00,0x70,0x10,0x10,0x10,0x10,0x12,0x14,0x1b,0x10,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 35752 讨 ; -+,0x20,0x10,0x18,0x10,0x03,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x04,0x04,0x04,0x04,0xff,0x04,0x04,0x84,0x44,0x64,0x44,0x04,0x04,0x24,0x14,0x08 -+// 35753 让 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x70,0x10,0x10,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x20,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 35754 讪 ; -+,0x20,0x10,0x18,0x10,0x01,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x10,0x00,0x10,0x10,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0xff,0x01,0x00,0x00 -+// 35755 讫 ; -+,0x20,0x10,0x18,0x10,0x01,0x01,0x72,0x10,0x10,0x10,0x10,0x10,0x15,0x19,0x10,0x00,0x80,0xc0,0x80,0xff,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0x81,0x01,0x01,0xfe,0x00 -+// 35756 讬 ; -+,0x10,0x08,0x0d,0x08,0x00,0x00,0x78,0x09,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x1c,0xe0,0x20,0x20,0x20,0x2f,0xf0,0x20,0x20,0x20,0x21,0x21,0x21,0x1f,0x00 -+// 35757 训 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0d,0x09,0x02,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x12,0x12,0x02 -+// 35758 议 ; -+,0x20,0x10,0x19,0x11,0x01,0x71,0x10,0x10,0x10,0x10,0x10,0x12,0x14,0x19,0x12,0x04,0x80,0x40,0x24,0x24,0x04,0x04,0x88,0x88,0x50,0x50,0x20,0x50,0x88,0x07,0x02,0x00 -+// 35759 讯 ; -+,0x20,0x13,0x18,0x10,0x00,0x78,0x0b,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xf4,0x84,0x84,0x84,0x84,0x85,0x85,0x85,0x82,0x00 -+// 35760 记 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfe,0x02,0x02,0x02,0x02,0xfe,0x80,0x80,0x80,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 35761 讱 ; -+,0x20,0x10,0x19,0x10,0x00,0x00,0x78,0x08,0x08,0x09,0x08,0x08,0x0a,0x0c,0x09,0x02,0x00,0x00,0xfe,0x22,0x22,0x22,0xa2,0xa2,0xa2,0x22,0x22,0x42,0x42,0x82,0x14,0x08 -+// 35762 讲 ; -+,0x20,0x10,0x18,0x10,0x03,0x00,0x70,0x10,0x17,0x10,0x10,0x10,0x15,0x19,0x12,0x04,0x88,0x88,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 35763 讳 ; -+,0x20,0x18,0x13,0x00,0x00,0x71,0x10,0x10,0x13,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0x20,0xff,0x20,0x20,0xfe,0x20,0x20,0xfe,0x22,0x22,0x22,0x2a,0x24,0x20,0x20 -+// 35764 讴 ; -+,0x20,0x11,0x19,0x11,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x00,0xff,0x00,0x82,0x42,0x24,0x14,0x08,0x14,0x14,0x22,0x43,0x82,0x00,0xff,0x00 -+// 35765 讵 ; -+,0x20,0x11,0x19,0x11,0x01,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x00,0xfe,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0x00,0x00,0xff,0x00 -+// 35766 讶 ; -+,0x00,0x21,0x18,0x10,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x02,0x00,0x00,0xfe,0x08,0x88,0x88,0x88,0xff,0x18,0x28,0x28,0x48,0x48,0x88,0x08,0x28,0x10 -+// 35767 讷 ; -+,0x20,0x10,0x18,0x11,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x01,0x10,0x10,0x10,0xff,0x11,0x11,0x11,0x29,0x25,0x47,0x85,0x01,0x01,0x01,0x05,0x02 -+// 35768 许 ; -+,0x20,0x10,0x18,0x10,0x01,0x01,0x7a,0x08,0x0b,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x80,0x80,0x80,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35769 讹 ; -+,0x20,0x10,0x18,0x11,0x01,0x03,0x75,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x90,0x90,0x90,0x12,0x13,0x14,0x18,0x30,0x50,0x10,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 35770 论 ; -+,0x20,0x10,0x18,0x10,0x00,0x01,0x72,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0x82,0x88,0x9c,0xe0,0x80,0x80,0x82,0x82,0x7e,0x00 -+// 35771 讻 ; -+,0x20,0x10,0x18,0x10,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x10,0x00,0x00,0x04,0x84,0x48,0x29,0x11,0x11,0x11,0x29,0x29,0x45,0x85,0x01,0xff,0x01,0x00 -+// 35772 讼 ; -+,0x20,0x10,0x18,0x10,0x00,0x70,0x11,0x12,0x10,0x10,0x10,0x10,0x15,0x1b,0x10,0x00,0x10,0x50,0x50,0x48,0x88,0x84,0x04,0x43,0x42,0x40,0x80,0x88,0x04,0xfe,0x04,0x00 -+// 35773 讽 ; -+,0x40,0x21,0x31,0x21,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x1a,0x12,0x04,0x00,0x00,0xfc,0x04,0x04,0x94,0x54,0x24,0x24,0x54,0x54,0x85,0x05,0x05,0x03,0x01,0x00 -+// 35774 设 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x71,0x12,0x10,0x10,0x10,0x10,0x14,0x18,0x11,0x06,0x00,0xf8,0x88,0x88,0x88,0x88,0x07,0xfc,0x84,0x84,0x48,0x48,0x30,0x48,0x87,0x02 -+// 35775 访 ; -+,0x20,0x10,0x18,0x13,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x02,0x00,0x40,0x30,0x20,0xff,0x20,0x20,0x3e,0x22,0x42,0x42,0x42,0x82,0x82,0x1c,0x08,0x00 -+// 35776 诀 ; -+,0x20,0x10,0x18,0x13,0x00,0x70,0x10,0x17,0x10,0x10,0x10,0x10,0x15,0x19,0x12,0x04,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0xff,0x40,0xa0,0xa0,0x90,0x10,0x08,0x06,0x04 -+// 35777 证 ; -+,0x00,0x20,0x13,0x18,0x10,0x00,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x17,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x1e,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 35778 诂 ; -+,0x20,0x10,0x18,0x11,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35779 诃 ; -+,0x20,0x13,0x18,0x10,0x00,0x71,0x11,0x11,0x11,0x11,0x11,0x10,0x14,0x18,0x10,0x00,0x00,0xff,0x04,0x04,0x04,0xe4,0x24,0x24,0x24,0xe4,0x24,0x04,0x04,0x24,0x14,0x08 -+// 35780 评 ; -+,0x00,0x20,0x1b,0x10,0x01,0x00,0x78,0x08,0x0b,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x00,0xff,0x20,0x24,0xa6,0xa8,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 35781 诅 ; -+,0x20,0x10,0x18,0x10,0x00,0x70,0x10,0x10,0x10,0x10,0x10,0x10,0x14,0x1b,0x10,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00,0x00 -+// 35782 识 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x02,0x00,0xfc,0x84,0x84,0x84,0x84,0x84,0xfc,0x00,0x48,0x44,0x44,0x82,0x83,0x02,0x00 -+// 35783 诇 ; -+,0x40,0x21,0x31,0x21,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0x00,0x00,0xfe,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x42,0x02,0x0a,0x04,0x00 -+// 35784 诈 ; -+,0x20,0x10,0x18,0x10,0x00,0x01,0x7a,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x40,0x60,0x40,0x80,0xfe,0x40,0x40,0x7e,0x40,0x40,0x7e,0x40,0x40,0x40,0x40,0x40 -+// 35785 诉 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x70,0x10,0x10,0x10,0x10,0x14,0x19,0x11,0x02,0x00,0x00,0x0e,0xf0,0x80,0x80,0xff,0x88,0xa8,0x98,0x8c,0x8b,0x8a,0x08,0x08,0x08,0x00 -+// 35786 诊 ; -+,0x20,0x10,0x18,0x10,0x01,0x02,0x74,0x10,0x13,0x10,0x10,0x11,0x14,0x18,0x10,0x03,0x40,0x40,0xa0,0x90,0x0c,0x13,0x3a,0xc0,0x10,0x38,0x64,0x86,0x0c,0x30,0xc0,0x00 -+// 35787 诋 ; -+,0x20,0x11,0x19,0x11,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x00,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x08,0x09,0x55,0x95,0x12,0x00 -+// 35788 诌 ; -+,0x00,0x20,0x18,0x10,0x00,0x01,0x7f,0x08,0x08,0x08,0x08,0x08,0x0a,0x0d,0x08,0x00,0x20,0x30,0x40,0x7e,0x84,0x08,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 35789 词 ; -+,0x20,0x11,0x18,0x10,0x01,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0xf2,0x92,0x92,0x92,0xf2,0x92,0x0a,0x04,0x00 -+// 35790 诎 ; -+,0x20,0x10,0x18,0x10,0x00,0x78,0x08,0x08,0x08,0x09,0x09,0x0b,0x0d,0x09,0x01,0x00,0x10,0x10,0x10,0x92,0x92,0x92,0xfe,0x92,0x10,0x11,0x11,0x11,0x11,0xff,0x01,0x00 -+// 35791 诏 ; -+,0x20,0x11,0x18,0x10,0x00,0x78,0x09,0x0a,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfe,0x42,0x42,0x82,0x82,0x14,0x08,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35792 诐 ; -+,0x20,0x10,0x18,0x11,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x0b,0x0d,0x0a,0x04,0x09,0x10,0x10,0x10,0xff,0x12,0x10,0x10,0xfe,0x44,0x24,0x28,0x10,0x28,0x44,0x87,0x02 -+// 35793 译 ; -+,0x00,0x21,0x10,0x18,0x10,0x00,0x71,0x16,0x11,0x10,0x10,0x17,0x14,0x18,0x10,0x00,0x00,0xfc,0x84,0x48,0x30,0x48,0xa7,0x22,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 35794 诒 ; -+,0x00,0x20,0x18,0x08,0x01,0x03,0x78,0x08,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x01,0x20,0x20,0x40,0x88,0x04,0xfe,0x02,0x00,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 35795 诓 ; -+,0x20,0x11,0x19,0x11,0x01,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x00,0xff,0x00,0x00,0x7e,0x10,0x10,0x7e,0x10,0x10,0xff,0x00,0x00,0xff,0x00,0x00 -+// 35796 诔 ; -+,0x20,0x10,0x1b,0x10,0x00,0x01,0x70,0x17,0x10,0x10,0x10,0x10,0x15,0x19,0x12,0x00,0x20,0x20,0xfe,0x20,0x20,0xfe,0x20,0xff,0x70,0x70,0xa8,0xa4,0x23,0x22,0x20,0x20 -+// 35797 试 ; -+,0x00,0x20,0x10,0x18,0x13,0x00,0x70,0x13,0x10,0x10,0x10,0x10,0x14,0x1b,0x10,0x00,0x10,0x14,0x12,0x12,0xff,0x10,0x10,0xf0,0x90,0x88,0x88,0x85,0xe5,0x03,0x01,0x00 -+// 35798 诖 ; -+,0x20,0x10,0x18,0x11,0x00,0x00,0x73,0x10,0x10,0x11,0x10,0x10,0x14,0x1b,0x10,0x00,0x20,0x20,0x20,0xfc,0x20,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 35799 诗 ; -+,0x20,0x10,0x19,0x10,0x00,0x03,0x78,0x08,0x0b,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x20,0x20,0xfe,0x20,0x20,0xff,0x04,0x04,0xff,0x84,0x44,0x44,0x04,0x04,0x14,0x08 -+// 35800 诘 ; -+,0x20,0x10,0x1b,0x10,0x00,0x00,0x79,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35801 诙 ; -+,0x20,0x10,0x18,0x17,0x00,0x70,0x10,0x11,0x11,0x12,0x12,0x14,0x18,0x10,0x01,0x02,0x40,0x40,0x40,0xff,0x80,0x90,0x92,0x52,0x54,0x10,0x28,0x28,0x44,0x84,0x03,0x02 -+// 35802 诚 ; -+,0x20,0x18,0x10,0x07,0x02,0x72,0x12,0x13,0x12,0x12,0x12,0x16,0x1a,0x15,0x04,0x08,0x10,0x14,0x12,0xff,0x10,0x10,0x12,0xd3,0x4a,0x4a,0x4c,0x49,0x55,0x63,0x81,0x00 -+// 35803 诛 ; -+,0x20,0x11,0x09,0x01,0x01,0x02,0x78,0x13,0x10,0x10,0x12,0x15,0x19,0x12,0x04,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x70,0xa8,0xa4,0x26,0x23,0x22,0x20,0x20 -+// 35804 诜 ; -+,0x20,0x11,0x09,0x09,0x01,0x02,0x7b,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x02,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x50,0x50,0x50,0x50,0x52,0x92,0x92,0x0e,0x00 -+// 35805 话 ; -+,0x20,0x10,0x19,0x10,0x00,0x03,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x0e,0xf0,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35806 诞 ; -+,0x20,0x17,0x19,0x11,0x02,0x72,0x17,0x10,0x10,0x14,0x12,0x15,0x1a,0x14,0x08,0x00,0x00,0x06,0x38,0x08,0x08,0x28,0xaf,0xa8,0xa8,0xa8,0xbf,0x00,0x80,0x40,0x3f,0x00 -+// 35807 诟 ; -+,0x20,0x10,0x19,0x11,0x01,0x01,0x71,0x11,0x11,0x11,0x11,0x15,0x1a,0x12,0x04,0x08,0x02,0x1f,0xe0,0x00,0x00,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35808 诠 ; -+,0x20,0x10,0x18,0x10,0x01,0x02,0x71,0x10,0x10,0x11,0x10,0x10,0x14,0x1b,0x10,0x00,0x20,0x20,0x50,0x88,0x07,0x02,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0x00 -+// 35809 诡 ; -+,0x20,0x10,0x18,0x10,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x12,0x04,0x08,0x40,0x7f,0x42,0x84,0xff,0x00,0x00,0x3e,0x22,0x22,0x22,0x2e,0x24,0x21,0x1f,0x00 -+// 35810 询 ; -+,0x00,0x20,0x18,0x11,0x02,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x18,0x10,0x00,0x80,0x80,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x12,0x12,0xf2,0x12,0x02,0x0a,0x04 -+// 35811 诣 ; -+,0x20,0x10,0x18,0x10,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x80,0x80,0x8e,0xf0,0x82,0x83,0x7e,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 35812 诤 ; -+,0x20,0x10,0x19,0x12,0x01,0x00,0x70,0x17,0x10,0x10,0x11,0x10,0x14,0x18,0x10,0x00,0x80,0xfc,0x08,0x10,0xfc,0x24,0x24,0xff,0x24,0x24,0xfc,0x20,0x20,0x20,0xa0,0x40 -+// 35813 该 ; -+,0x20,0x18,0x13,0x00,0x00,0x78,0x08,0x09,0x08,0x08,0x08,0x0b,0x0c,0x08,0x03,0x00,0x40,0x20,0xff,0x20,0x24,0x44,0x88,0xf8,0x12,0x24,0xc8,0x18,0x64,0x83,0x02,0x00 -+// 35814 详 ; -+,0x21,0x10,0x18,0x13,0x00,0x70,0x11,0x10,0x10,0x13,0x10,0x14,0x18,0x10,0x00,0x00,0x04,0x88,0x50,0xff,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x00 -+// 35815 诧 ; -+,0x00,0x10,0x0c,0x09,0x02,0x00,0x79,0x08,0x08,0x0b,0x08,0x0a,0x0c,0x08,0x00,0x00,0x40,0x30,0x00,0xff,0x02,0x1c,0xe0,0x20,0x2f,0xf0,0x20,0x21,0x21,0x21,0x1e,0x00 -+// 35816 诨 ; -+,0x20,0x11,0x19,0x12,0x01,0x70,0x10,0x10,0x11,0x10,0x10,0x15,0x18,0x10,0x00,0x00,0x00,0xff,0x02,0x20,0xfe,0x20,0x50,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35817 诩 ; -+,0x20,0x1b,0x10,0x00,0x02,0x79,0x09,0x08,0x08,0x09,0x0a,0x08,0x0a,0x0d,0x08,0x00,0x00,0xdf,0x41,0x51,0x49,0x49,0x41,0x41,0xc5,0x49,0x51,0x41,0x41,0xc7,0x82,0x00 -+// 35818 诪 ; -+,0x20,0x10,0x1b,0x10,0x01,0x70,0x13,0x10,0x10,0x10,0x10,0x15,0x1a,0x14,0x00,0x00,0x20,0x20,0xff,0x20,0xfe,0x40,0xff,0x44,0x44,0xff,0x84,0x24,0x24,0x04,0x14,0x08 -+// 35819 诫 ; -+,0x20,0x10,0x18,0x17,0x00,0x02,0x72,0x17,0x12,0x12,0x12,0x12,0x16,0x1a,0x14,0x00,0x10,0x14,0x12,0xff,0x10,0x50,0x54,0xf6,0x54,0x54,0x48,0x48,0x55,0x25,0x43,0x80 -+// 35820 诬 ; -+,0x20,0x13,0x18,0x11,0x01,0x01,0x71,0x11,0x12,0x14,0x10,0x14,0x18,0x17,0x00,0x00,0x00,0xfe,0x20,0x24,0x24,0x24,0x24,0x2a,0xab,0xb2,0x20,0x20,0x20,0xff,0x00,0x00 -+// 35821 语 ; -+,0x20,0x11,0x18,0x10,0x01,0x70,0x10,0x13,0x10,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0xfe,0x20,0x20,0xfc,0x44,0x44,0xff,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35822 诮 ; -+,0x00,0x11,0x08,0x0c,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x12,0xd3,0x94,0x10,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 35823 误 ; -+,0x21,0x11,0x19,0x11,0x01,0x00,0x73,0x10,0x10,0x13,0x10,0x14,0x18,0x11,0x02,0x04,0xfc,0x04,0x04,0x04,0xfc,0x00,0xfe,0x20,0x20,0xff,0x20,0x50,0x88,0x06,0x03,0x02 -+// 35824 诰 ; -+,0x20,0x11,0x19,0x11,0x02,0x78,0x08,0x0b,0x08,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0xfc,0x04,0x04,0x04,0x04,0xfc,0x04 -+// 35825 诱 ; -+,0x20,0x11,0x18,0x13,0x00,0x00,0x71,0x13,0x10,0x10,0x10,0x14,0x18,0x11,0x02,0x04,0x1c,0xe0,0x20,0xff,0x70,0xa8,0x24,0xfe,0x44,0x48,0x4e,0x82,0x82,0x02,0x0a,0x04 -+// 35826 诲 ; -+,0x01,0x21,0x19,0x0a,0x01,0x01,0x71,0x11,0x17,0x11,0x11,0x15,0x19,0x10,0x00,0x00,0x00,0x00,0xff,0x00,0xfc,0x44,0x24,0x04,0xff,0x44,0x24,0x04,0xff,0x04,0x14,0x08 -+// 35827 诳 ; -+,0x00,0x20,0x14,0x12,0x01,0x02,0x74,0x11,0x11,0x12,0x14,0x10,0x14,0x1a,0x11,0x00,0x00,0x40,0x7f,0x48,0x88,0x88,0x88,0xbf,0x48,0x48,0x48,0x48,0x48,0x88,0x7f,0x00 -+// 35828 说 ; -+,0x21,0x10,0x18,0x11,0x01,0x71,0x11,0x11,0x11,0x10,0x10,0x14,0x18,0x11,0x02,0x04,0x04,0xc4,0x88,0xfc,0x04,0x04,0x04,0xfc,0x54,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 35829 诵 ; -+,0x20,0x11,0x18,0x10,0x01,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x01,0x00,0xfe,0x24,0x18,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x11,0x11,0x11,0x15,0x02 -+// 35830 诶 ; -+,0x20,0x10,0x18,0x11,0x00,0x01,0x71,0x12,0x14,0x17,0x10,0x10,0x14,0x19,0x12,0x04,0x40,0x68,0x84,0xfe,0x04,0x00,0xfc,0x20,0x20,0xff,0x20,0x50,0x88,0x04,0x07,0x02 -+// 35831 请 ; -+,0x00,0x23,0x18,0x11,0x00,0x03,0x78,0x09,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x01,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08 -+// 35832 诸 ; -+,0x20,0x10,0x1b,0x10,0x00,0x77,0x10,0x10,0x11,0x16,0x18,0x12,0x14,0x18,0x10,0x00,0x40,0x40,0xf4,0x46,0x48,0xff,0x20,0x40,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 35833 诹 ; -+,0x00,0x4f,0x32,0x12,0x02,0x73,0x12,0x12,0x13,0x12,0x12,0x16,0x1b,0x14,0x00,0x00,0x00,0xf0,0x40,0x5f,0x52,0xd2,0x52,0x52,0xd2,0x4c,0x6c,0xcc,0x52,0x53,0x62,0x40 -+// 35834 诺 ; -+,0x40,0x30,0x23,0x00,0x00,0x70,0x13,0x10,0x10,0x10,0x10,0x15,0x1a,0x10,0x00,0x00,0x84,0x84,0xff,0x84,0x84,0x20,0xff,0x40,0x40,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35835 读 ; -+,0x00,0x20,0x19,0x10,0x03,0x00,0x72,0x11,0x11,0x13,0x10,0x10,0x14,0x18,0x11,0x02,0x20,0x20,0xfe,0x20,0xff,0x82,0x54,0x50,0x10,0xff,0x10,0x28,0x44,0x82,0x03,0x02 -+// 35836 诼 ; -+,0x20,0x17,0x08,0x00,0x00,0x71,0x16,0x19,0x11,0x16,0x10,0x14,0x19,0x16,0x00,0x00,0x00,0xff,0x30,0x60,0x84,0x46,0x48,0x70,0x90,0xb8,0x54,0x92,0x13,0x12,0x50,0x20 -+// 35837 诽 ; -+,0x20,0x10,0x18,0x17,0x00,0x00,0x7b,0x10,0x10,0x10,0x17,0x10,0x14,0x18,0x10,0x00,0x90,0x90,0x90,0x9f,0x90,0x90,0x9f,0x90,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x90 -+// 35838 课 ; -+,0x20,0x10,0x18,0x10,0x00,0x70,0x10,0x10,0x13,0x10,0x10,0x14,0x19,0x12,0x00,0x00,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x30,0x58,0x94,0x13,0x12,0x10,0x10 -+// 35839 诿 ; -+,0x20,0x13,0x18,0x17,0x00,0x00,0x71,0x12,0x10,0x13,0x10,0x15,0x18,0x10,0x01,0x06,0x1c,0xe0,0x20,0xff,0x60,0xb0,0x2c,0x23,0x40,0xff,0x88,0xc8,0x30,0x4c,0x86,0x02 -+// 35840 谀 ; -+,0x20,0x10,0x1b,0x12,0x02,0x73,0x12,0x12,0x13,0x10,0x10,0x14,0x18,0x11,0x02,0x04,0x20,0xe0,0x2e,0x22,0x22,0xae,0x22,0x22,0xfe,0x20,0x50,0x50,0x88,0x04,0x03,0x02 -+// 35841 谁 ; -+,0x20,0x10,0x18,0x11,0x01,0x73,0x15,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0x00,0xa0,0x98,0x90,0xff,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 35842 谂 ; -+,0x20,0x10,0x18,0x10,0x01,0x72,0x15,0x10,0x10,0x10,0x10,0x12,0x16,0x1a,0x14,0x00,0x20,0x20,0x50,0x88,0x47,0x22,0xfc,0x08,0x10,0x40,0x34,0xa2,0x85,0x85,0x7c,0x00 -+// 35843 调 ; -+,0x21,0x11,0x19,0x11,0x01,0x71,0x11,0x11,0x11,0x11,0x15,0x19,0x12,0x02,0x04,0x08,0xfe,0x22,0x22,0xfa,0x22,0xfa,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 35844 谄 ; -+,0x20,0x10,0x18,0x11,0x01,0x02,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x80,0x80,0xfe,0x04,0x08,0x40,0x9e,0x02,0x02,0xde,0x02,0x02,0x02,0xfe,0x02,0x00 -+// 35845 谅 ; -+,0x20,0x10,0x18,0x11,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x02,0x00,0x40,0x30,0x10,0xff,0x00,0xfe,0x82,0x82,0xfe,0x92,0x10,0x94,0x92,0x13,0x52,0x20 -+// 35846 谆 ; -+,0x20,0x10,0x1b,0x10,0x00,0x00,0x70,0x10,0x10,0x10,0x13,0x14,0x18,0x10,0x00,0x00,0x40,0x20,0xff,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x08,0xff,0x10,0x10,0x10,0x50,0x20 -+// 35847 谇 ; -+,0x20,0x18,0x13,0x00,0x00,0x70,0x19,0x12,0x14,0x10,0x13,0x14,0x18,0x10,0x00,0x00,0x40,0x20,0xff,0x88,0x88,0x88,0x54,0x22,0x01,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 35848 谈 ; -+,0x20,0x10,0x19,0x11,0x02,0x00,0x71,0x12,0x10,0x10,0x11,0x10,0x14,0x18,0x11,0x02,0x20,0x24,0x26,0x28,0x50,0x88,0x06,0x20,0xa4,0xa4,0x28,0x50,0x48,0x84,0x07,0x02 -+// 35849 谉 ; -+,0x20,0x10,0x1b,0x12,0x00,0x39,0x09,0x09,0x09,0x09,0x09,0x09,0x0a,0x0c,0x08,0x00,0x20,0x10,0xff,0x22,0x20,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0x20,0x20,0x20 -+// 35850 谊 ; -+,0x00,0x20,0x1b,0x12,0x00,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x17,0x00,0x40,0x20,0xfe,0x04,0x00,0xf8,0x08,0x08,0xf8,0x08,0xf8,0x08,0x08,0x08,0xff,0x00 -+// 35851 谋 ; -+,0x20,0x10,0x1b,0x10,0x00,0x70,0x10,0x10,0x10,0x13,0x10,0x14,0x19,0x12,0x04,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0x20,0xff,0x70,0xa8,0x24,0x23,0x22,0x20 -+// 35852 谌 ; -+,0x20,0x10,0x1b,0x10,0x00,0x70,0x10,0x10,0x17,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x88,0x88,0xff,0x88,0xf8,0x88,0xf8,0x88,0xff,0x00,0x48,0x44,0x84,0x00,0xff,0x00 -+// 35853 谍 ; -+,0x01,0x41,0x37,0x21,0x01,0x71,0x11,0x11,0x10,0x13,0x10,0x14,0x19,0x12,0x04,0x00,0x24,0x24,0xff,0x24,0x24,0x3c,0x00,0xff,0x20,0xff,0x70,0xa8,0x24,0x23,0x22,0x20 -+// 35854 谎 ; -+,0x40,0x20,0x33,0x20,0x00,0x03,0x70,0x10,0x10,0x10,0x11,0x15,0x19,0x11,0x02,0x04,0x84,0x84,0xff,0xa4,0x10,0xff,0x80,0x80,0xfe,0x00,0x24,0x24,0x24,0x25,0x25,0x03 -+// 35855 谏 ; -+,0x20,0x10,0x1f,0x10,0x03,0x02,0x72,0x12,0x13,0x10,0x12,0x14,0x19,0x12,0x04,0x00,0x20,0x20,0xff,0x20,0xfe,0x22,0xaa,0x72,0xfe,0x74,0xb0,0xa8,0x24,0x23,0x22,0x20 -+// 35856 谐 ; -+,0x22,0x12,0x1a,0x13,0x02,0x02,0x73,0x12,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x10,0x10,0x16,0xd8,0x11,0x91,0x2f,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 35857 谑 ; -+,0x20,0x10,0x18,0x11,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x1a,0x12,0x04,0x08,0x20,0x3e,0x20,0xff,0x22,0xf8,0x22,0x1e,0x00,0x7e,0x40,0xff,0x40,0x40,0x7e,0x00 -+// 35858 谒 ; -+,0x20,0x19,0x11,0x01,0x01,0x71,0x10,0x11,0x13,0x15,0x11,0x11,0x15,0x18,0x10,0x00,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x80,0xfe,0x22,0x22,0x52,0x8a,0xfa,0x02,0x0a,0x04 -+// 35859 谓 ; -+,0x20,0x11,0x19,0x11,0x01,0x01,0x38,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xff,0x11,0xff,0x11,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 35860 谔 ; -+,0x20,0x13,0x1a,0x13,0x00,0x71,0x10,0x10,0x17,0x10,0x11,0x10,0x14,0x18,0x10,0x00,0x00,0xde,0x52,0xde,0x00,0xfc,0x00,0x00,0xff,0x80,0xfc,0x84,0x04,0x04,0x28,0x10 -+// 35861 谕 ; -+,0x20,0x10,0x18,0x10,0x03,0x74,0x13,0x12,0x13,0x12,0x12,0x13,0x16,0x1a,0x12,0x02,0x20,0x20,0x50,0x8c,0xfb,0x00,0xc2,0x42,0xd2,0x52,0x52,0xd2,0x52,0x42,0x4a,0xc4 -+// 35862 谖 ; -+,0x20,0x11,0x19,0x10,0x01,0x70,0x10,0x13,0x10,0x10,0x10,0x14,0x19,0x12,0x0c,0x01,0x0e,0xf2,0x23,0x94,0xfe,0x40,0x40,0xff,0x40,0x7c,0xc4,0xa8,0x10,0x28,0x47,0x82 -+// 35863 谗 ; -+,0x20,0x10,0x19,0x13,0x05,0x01,0x79,0x10,0x10,0x11,0x12,0x10,0x14,0x18,0x10,0x00,0x80,0xfc,0x08,0xfe,0x22,0x22,0xfe,0x50,0x91,0x1f,0x60,0x10,0xc0,0x30,0x08,0x00 -+// 35864 谘 ; -+,0x20,0x14,0x1a,0x11,0x01,0x07,0x72,0x12,0x12,0x11,0x10,0x10,0x14,0x18,0x10,0x00,0x20,0x20,0x3e,0x42,0x54,0x90,0x28,0x44,0x83,0xfe,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35865 谙 ; -+,0x20,0x10,0x1b,0x11,0x00,0x78,0x0b,0x08,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x01,0x40,0x20,0xfe,0x04,0x88,0x50,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 35866 谚 ; -+,0x20,0x10,0x19,0x10,0x00,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x0e,0x0a,0x05,0x08,0x20,0x10,0xff,0x84,0x48,0xff,0x00,0x06,0x38,0xc6,0x38,0xc3,0x0c,0x30,0xc0,0x00 -+// 35867 谛 ; -+,0x20,0x10,0x1b,0x11,0x00,0x03,0x72,0x10,0x11,0x11,0x11,0x11,0x15,0x19,0x10,0x00,0x40,0x20,0xff,0x04,0x88,0xff,0x22,0x20,0xfc,0x24,0x24,0x24,0x24,0x2c,0x20,0x20 -+// 35868 谜 ; -+,0x20,0x14,0x1a,0x13,0x02,0x00,0x70,0x16,0x12,0x12,0x12,0x13,0x16,0x1a,0x15,0x00,0x10,0x12,0x93,0x52,0x54,0xff,0x30,0x38,0x54,0x52,0x93,0x12,0x10,0x10,0xff,0x00 -+// 35869 谝 ; -+,0x20,0x10,0x19,0x11,0x01,0x01,0x71,0x11,0x11,0x11,0x12,0x16,0x1a,0x14,0x08,0x00,0x20,0x10,0xfe,0x02,0xfe,0x00,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 35870 谞 ; -+,0x20,0x11,0x18,0x10,0x00,0x71,0x12,0x14,0x10,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0xff,0x11,0x9e,0x90,0x50,0x3f,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 35871 谟 ; -+,0x20,0x10,0x1b,0x10,0x01,0x01,0x71,0x11,0x11,0x10,0x13,0x10,0x14,0x18,0x11,0x02,0x88,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x50,0x88,0x07,0x02 -+// 35872 谠 ; -+,0x20,0x11,0x18,0x13,0x02,0x74,0x11,0x11,0x11,0x11,0x10,0x10,0x15,0x19,0x12,0x04,0x20,0x24,0xa8,0xff,0x02,0x00,0xfc,0x04,0x04,0xfc,0x90,0x90,0x12,0x12,0x0e,0x00 -+// 35873 谡 ; -+,0x23,0x1a,0x13,0x02,0x03,0x70,0x11,0x12,0x14,0x10,0x11,0x12,0x14,0x18,0x11,0x06,0xfe,0x22,0xfe,0x22,0xfe,0x88,0x04,0x43,0x7e,0xc4,0x44,0x28,0x10,0x68,0x87,0x02 -+// 35874 谢 ; -+,0x00,0x21,0x1b,0x12,0x03,0x02,0x73,0x12,0x17,0x10,0x11,0x15,0x1a,0x14,0x09,0x00,0x84,0x04,0xc4,0x44,0xff,0x44,0xe4,0x54,0xd4,0xc4,0x44,0x44,0x44,0x44,0x54,0x88 -+// 35875 谣 ; -+,0x20,0x13,0x1a,0x11,0x00,0x01,0x71,0x11,0x12,0x11,0x10,0x11,0x15,0x19,0x11,0x00,0x0e,0xf0,0x44,0x26,0xa4,0x08,0xfe,0x10,0x10,0xfe,0x10,0x11,0x11,0xff,0x01,0x00 -+// 35876 谤 ; -+,0x20,0x10,0x1b,0x10,0x00,0x03,0x74,0x10,0x13,0x10,0x10,0x10,0x14,0x19,0x12,0x04,0x40,0x20,0xfe,0x84,0x48,0xff,0x42,0x20,0xfe,0x40,0x7c,0x84,0x84,0x04,0x14,0x08 -+// 35877 谥 ; -+,0x21,0x10,0x18,0x10,0x03,0x00,0x71,0x12,0x15,0x11,0x11,0x11,0x15,0x19,0x17,0x00,0x04,0xc6,0x88,0x10,0xff,0x88,0x04,0x02,0xff,0x54,0x54,0x54,0x54,0x54,0xff,0x00 -+// 35878 谦 ; -+,0x41,0x20,0x37,0x20,0x03,0x00,0x77,0x10,0x10,0x13,0x10,0x15,0x1a,0x14,0x08,0x00,0x04,0x88,0xff,0x90,0xfc,0x94,0xff,0x94,0x94,0xfc,0x90,0x98,0x96,0x93,0x92,0x90 -+// 35879 谧 ; -+,0x20,0x10,0x18,0x12,0x02,0x04,0x70,0x11,0x16,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x04,0x46,0xb4,0xa8,0x92,0xa5,0xc4,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 35880 谨 ; -+,0x00,0x40,0x27,0x30,0x20,0x00,0x71,0x11,0x11,0x10,0x13,0x10,0x15,0x18,0x17,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfc,0x24,0xfc,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00 -+// 35881 谩 ; -+,0x21,0x11,0x19,0x11,0x01,0x70,0x13,0x12,0x13,0x10,0x11,0x10,0x14,0x18,0x10,0x07,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x52,0xfe,0x00,0xfc,0x88,0x50,0x20,0xd8,0x07 -+// 35882 谪 ; -+,0x20,0x10,0x1b,0x10,0x00,0x71,0x11,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0x01,0x20,0x10,0xff,0x82,0x44,0xff,0x11,0xff,0x11,0x7d,0x45,0x7d,0x45,0x01,0x05,0x02 -+// 35883 谫 ; -+,0x21,0x18,0x13,0x00,0x01,0x71,0x11,0x11,0x11,0x11,0x13,0x14,0x18,0x10,0x01,0x02,0x04,0x88,0xff,0x02,0xe2,0x2a,0xea,0x2a,0xaa,0x44,0xfe,0x42,0x42,0x82,0x14,0x08 -+// 35884 谬 ; -+,0x27,0x14,0x1a,0x11,0x01,0x02,0x74,0x10,0x11,0x16,0x11,0x14,0x1b,0x10,0x00,0x07,0xfe,0x42,0x52,0x56,0x4a,0x52,0x20,0x50,0x8c,0x63,0x98,0x66,0x8c,0x30,0xc0,0x00 -+// 35885 谭 ; -+,0x03,0x20,0x1b,0x12,0x03,0x70,0x11,0x11,0x11,0x11,0x11,0x14,0x1b,0x10,0x00,0x00,0xfe,0x50,0xfe,0x52,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 35886 谮 ; -+,0x00,0x47,0x35,0x25,0x0f,0x02,0x72,0x14,0x18,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0x00,0xff,0x28,0x28,0xff,0x88,0x95,0xe6,0x80,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 35887 谯 ; -+,0x21,0x11,0x19,0x13,0x03,0x05,0x71,0x11,0x11,0x11,0x11,0x10,0x15,0x19,0x12,0x00,0x20,0x10,0xff,0x10,0x10,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00,0x52,0x29,0x29,0x00 -+// 35888 谰 ; -+,0x21,0x18,0x12,0x02,0x03,0x72,0x12,0x12,0x12,0x12,0x12,0x16,0x1a,0x12,0x02,0x02,0x00,0xbf,0x81,0x11,0xff,0x11,0xff,0xd5,0xb9,0xff,0x39,0x55,0x53,0x91,0x15,0x02 -+// 35889 谱 ; -+,0x01,0x20,0x17,0x18,0x12,0x01,0x77,0x10,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0x04,0x88,0xff,0x88,0x8a,0x8c,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 35890 谲 ; -+,0x21,0x10,0x18,0x13,0x00,0x00,0x73,0x15,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0xfe,0x44,0x30,0xff,0x52,0x94,0x30,0xfe,0x4a,0x86,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 35891 谳 ; -+,0x01,0x21,0x17,0x11,0x07,0x74,0x16,0x15,0x17,0x15,0x15,0x15,0x14,0x1d,0x14,0x00,0x04,0x04,0xe6,0x05,0xdf,0x44,0xc4,0x44,0xc4,0x44,0x44,0x4a,0x4a,0x51,0xa1,0x00 -+// 35892 谴 ; -+,0x20,0x14,0x1a,0x12,0x00,0x01,0x70,0x16,0x12,0x12,0x12,0x12,0x12,0x1a,0x15,0x08,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0x7c,0x44,0x7c,0x40,0x7c,0x44,0x7c,0x00,0xff -+// 35893 谵 ; -+,0x20,0x10,0x19,0x13,0x05,0x01,0x71,0x11,0x11,0x11,0x11,0x15,0x1a,0x12,0x04,0x08,0x80,0xfe,0x04,0xff,0x48,0x94,0xff,0x00,0x7c,0x00,0x7c,0x00,0xfe,0x82,0xfe,0x00 -+// 35894 谶 ; -+,0x21,0x11,0x19,0x12,0x00,0x77,0x12,0x16,0x12,0x16,0x12,0x16,0x1a,0x12,0x0f,0x00,0x28,0x2c,0x5a,0x8a,0x08,0xff,0x88,0xea,0x8b,0xea,0x8a,0xec,0x8d,0xeb,0x11,0x20 -+// 35895 谷 ; -+,0x04,0x06,0x0c,0x10,0x20,0x01,0x02,0x04,0x08,0x17,0x64,0x04,0x04,0x07,0x04,0x00,0x20,0x10,0x8c,0x84,0x80,0x40,0x20,0x10,0x0c,0xfb,0x0a,0x08,0x08,0xf8,0x08,0x00 -+// 35896 谸 ; -+,0x00,0x07,0x78,0x08,0x09,0x08,0x7f,0x08,0x08,0x09,0x0a,0x10,0x10,0x20,0x40,0x00,0x08,0x44,0x62,0x83,0x12,0x10,0x28,0x44,0xfe,0x85,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35897 谹 ; -+,0x00,0x12,0x11,0x21,0x44,0x04,0x0a,0x11,0x20,0x5e,0x12,0x12,0x12,0x1f,0x12,0x00,0x10,0x10,0x10,0x10,0xff,0x20,0x28,0x28,0xa8,0x48,0x50,0x54,0xa2,0x7f,0x22,0x00 -+// 35898 谺 ; -+,0x14,0x12,0x23,0x41,0x08,0x08,0x14,0x22,0x5f,0x12,0x12,0x12,0x1e,0x12,0x11,0x00,0x00,0x7f,0x04,0x24,0x24,0x44,0xff,0x0c,0x14,0x14,0x24,0x24,0x44,0x84,0x14,0x08 -+// 35899 谻 ; -+,0x14,0x1a,0x11,0x21,0x48,0x08,0x14,0x12,0x3f,0x52,0x12,0x12,0x12,0x1e,0x12,0x00,0x00,0xfc,0x24,0x24,0xf4,0x24,0x24,0xfc,0x24,0x24,0x24,0x24,0x45,0x45,0x83,0x00 -+// 35900 谼 ; -+,0x14,0x14,0x12,0x23,0x4a,0x08,0x14,0x12,0x3f,0x52,0x12,0x12,0x12,0x1e,0x12,0x01,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x24,0xff,0x00,0x24,0x24,0x42,0x83,0x02 -+// 35901 谽 ; -+,0x04,0x12,0x13,0x22,0x48,0x09,0x14,0x22,0x7f,0x23,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x28,0x44,0xa3,0x12,0x7c,0x04,0x88,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35902 谾 ; -+,0x14,0x1a,0x11,0x21,0x48,0x08,0x14,0x12,0x21,0x7e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x08,0x7f,0x41,0xa4,0x32,0x23,0x41,0x7f,0x08,0x08,0x08,0x08,0xff,0x00,0x00 -+// 35903 谿 ; -+,0x03,0x7c,0x29,0x15,0x12,0x24,0x3c,0x12,0x3f,0x09,0x7f,0x08,0x14,0x13,0x21,0x40,0xa8,0x34,0x23,0x42,0x90,0x10,0x28,0x44,0x83,0x7e,0xc2,0x42,0x42,0x7e,0x42,0x00 -+// 35904 豀 ; -+,0x14,0x14,0x22,0x22,0x49,0x08,0x14,0x23,0x7f,0x22,0x23,0x22,0x22,0x3e,0x22,0x01,0x07,0xf8,0x51,0x2a,0x10,0x24,0x78,0x24,0x7e,0x12,0xff,0x10,0x28,0x44,0x83,0x02 -+// 35905 豁 ; -+,0x08,0x04,0x7f,0x49,0x3f,0x08,0x3e,0x08,0x7f,0x08,0x3f,0x22,0x22,0x3e,0x22,0x00,0x28,0x24,0x42,0x53,0x92,0x28,0x28,0x44,0x43,0xbe,0x24,0x24,0x24,0x3c,0x24,0x00 -+// 35906 豂 ; -+,0x15,0x13,0x22,0x48,0x08,0x15,0x12,0x21,0x7c,0x27,0x24,0x25,0x3c,0x27,0x00,0x07,0xee,0x22,0xb2,0x6a,0xa6,0x2a,0x12,0x28,0xc4,0x33,0xcc,0x30,0xc6,0x18,0xe0,0x00 -+// 35907 豃 ; -+,0x00,0x29,0x24,0x40,0x53,0x11,0x29,0x25,0x43,0x3d,0x25,0x25,0x27,0x3c,0x24,0x00,0x08,0xec,0x48,0x9f,0xf2,0x52,0xd2,0x52,0x52,0xd2,0x4c,0xec,0x4c,0x52,0x53,0x62 -+// 35908 豄 ; -+,0x14,0x14,0x22,0x49,0x08,0x14,0x13,0x22,0x7e,0x22,0x22,0x22,0x22,0x3e,0x22,0x01,0x10,0xfe,0x10,0x7c,0x00,0xfe,0xaa,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 35909 豅 ; -+,0x01,0x28,0x24,0x47,0x15,0x10,0x2b,0x26,0x45,0x3d,0x25,0x25,0x3d,0x25,0x21,0x01,0x08,0xc8,0x8f,0xe8,0x2e,0xc2,0xfe,0x08,0xee,0x28,0xee,0x28,0xee,0x28,0xa9,0x4f -+// 35910 豆 ; -+,0x00,0x3f,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x08,0x04,0x02,0x7f,0x00,0x00,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0x08,0xf8,0x10,0x18,0x10,0x20,0xff,0x00,0x00 -+// 35911 豇 ; -+,0x00,0x7f,0x00,0x00,0x3f,0x21,0x21,0x3f,0x21,0x02,0x23,0x14,0x07,0x78,0x00,0x00,0x00,0x80,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xff,0x00,0x00 -+// 35912 豈 ; -+,0x00,0x10,0x10,0x1f,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x04,0x02,0x01,0x3f,0x00,0x80,0x84,0x84,0xfc,0x00,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x10,0x20,0x40,0xff,0x00 -+// 35913 豉 ; -+,0x00,0x7f,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x04,0x26,0x14,0x07,0x78,0x00,0x03,0x10,0x10,0x10,0xfe,0x10,0x10,0x7c,0x44,0x44,0x28,0x28,0x10,0x28,0x44,0x83,0x02 -+// 35914 豊 ; -+,0x02,0x02,0x1f,0x12,0x1f,0x12,0x1f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x04,0x02,0x7f,0x20,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xfe,0x00,0xf8,0x08,0xf8,0x10,0x20,0xff -+// 35915 豋 ; -+,0x08,0x0f,0x11,0x19,0x26,0x57,0x08,0x17,0x64,0x04,0x07,0x00,0x02,0x01,0x3f,0x00,0x00,0x7f,0x22,0x14,0x08,0xf4,0x03,0xfc,0x08,0x08,0xf8,0x00,0x10,0x20,0xff,0x00 -+// 35916 豌 ; -+,0x00,0x7e,0x01,0x01,0x3c,0x24,0x24,0x3d,0x01,0x46,0x24,0x28,0x1e,0x71,0x02,0x04,0x20,0x10,0xff,0x02,0x80,0x9e,0xd2,0x52,0x52,0xda,0x54,0x90,0x91,0x11,0x0f,0x00 -+// 35917 豍 ; -+,0x00,0x7f,0x00,0x00,0x3e,0x22,0x22,0x3e,0x02,0x23,0x14,0x14,0x0f,0x70,0x00,0x00,0x20,0x40,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x30,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 35918 豎 ; -+,0x1f,0x14,0x1f,0x11,0x1f,0x14,0x1f,0x00,0x1f,0x00,0x0f,0x08,0x0f,0x04,0x02,0x3f,0x7e,0x42,0x24,0x24,0x18,0x18,0x24,0x43,0xfc,0x00,0xf8,0x08,0xf8,0x10,0x20,0xfe -+// 35919 豏 ; -+,0x00,0x7e,0x01,0x00,0x3d,0x24,0x25,0x3c,0x25,0x00,0x44,0x28,0x1d,0x62,0x04,0x00,0x84,0x48,0xff,0x48,0xfe,0x4a,0xff,0x4a,0xfe,0x48,0xcc,0xca,0x4b,0x4a,0x48,0x48 -+// 35920 豐 ; -+,0x04,0x2e,0x24,0x2e,0x24,0x2e,0x24,0x3f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x02,0x7f,0x90,0xba,0x92,0xba,0x92,0xba,0x92,0xfe,0x00,0xff,0x00,0xf8,0x08,0xf8,0x20,0xff -+// 35921 豑 ; -+,0x14,0x14,0x7f,0x55,0x7f,0x55,0x7f,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x14,0x7f,0x42,0x24,0xff,0x09,0x09,0x7f,0x48,0x48,0x7f,0x19,0x29,0x29,0x4d,0x8a,0x08,0x08 -+// 35922 豒 ; -+,0x12,0x52,0x7f,0x52,0x7f,0x52,0x7f,0x00,0x7f,0x00,0x7f,0x41,0x7f,0x22,0x14,0x7f,0x42,0xa4,0xff,0x89,0x89,0xbf,0xa8,0x28,0xff,0x19,0x19,0x29,0x29,0x4b,0x88,0x08 -+// 35923 豓 ; -+,0x14,0x55,0x7f,0x55,0x7f,0x55,0x7f,0x00,0x3e,0x00,0x3e,0x22,0x3e,0x22,0x15,0x7f,0x10,0x10,0x10,0x7f,0x10,0x28,0x24,0x53,0x88,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 35924 豔 ; -+,0x14,0x55,0x7f,0x55,0x7f,0x55,0x7f,0x00,0x7f,0x00,0x7f,0x41,0x7f,0x22,0x14,0x7f,0x08,0x08,0x7e,0x08,0x08,0xff,0x14,0x22,0x7f,0x02,0x7f,0x55,0x55,0x55,0xff,0x00 -+// 35925 豕 ; -+,0x00,0x3f,0x01,0x02,0x05,0x18,0x61,0x02,0x0c,0x31,0x42,0x04,0x18,0x60,0x01,0x00,0x00,0xfe,0x00,0x08,0x0c,0x90,0x60,0xd0,0xd0,0x28,0x24,0x23,0x22,0x20,0x40,0x80 -+// 35926 豖 ; -+,0x00,0x3f,0x01,0x02,0x0d,0x71,0x12,0x0c,0x14,0x65,0x02,0x04,0x18,0x60,0x02,0x01,0x00,0xff,0x80,0x08,0x0c,0x90,0xe0,0x50,0xd0,0x48,0x44,0x46,0x43,0x42,0x80,0x00 -+// 35927 豗 ; -+,0x00,0x7f,0x14,0x14,0x14,0x15,0x14,0x14,0x15,0x14,0x14,0x15,0x14,0x24,0x23,0x40,0x00,0xfe,0x10,0x20,0x62,0x94,0x38,0xd8,0x2c,0x4a,0x89,0x08,0x29,0x11,0xff,0x00 -+// 35928 豘 ; -+,0x00,0x7f,0x08,0x08,0x19,0x6a,0x04,0x1e,0x63,0x06,0x1a,0x62,0x02,0x02,0x14,0x08,0x10,0x90,0x10,0xff,0x10,0x10,0x52,0x52,0x52,0xfe,0x90,0x91,0x11,0x11,0x0f,0x00 -+// 35929 豙 ; -+,0x01,0x00,0x1f,0x02,0x01,0x3f,0x01,0x03,0x0c,0x33,0x0c,0x31,0x06,0x38,0x02,0x01,0x00,0x80,0xfe,0x10,0x20,0xff,0x00,0x08,0x90,0xe0,0x50,0xcc,0x47,0x42,0x80,0x00 -+// 35930 豚 ; -+,0x00,0x3f,0x24,0x24,0x3c,0x27,0x24,0x24,0x3d,0x26,0x24,0x25,0x26,0x24,0x54,0x48,0x00,0xff,0x20,0x44,0xc6,0x28,0x50,0x98,0x38,0x54,0x94,0x13,0x12,0x10,0x50,0x20 -+// 35931 豛 ; -+,0x00,0x7f,0x08,0x11,0x29,0x46,0x0c,0x16,0x65,0x0a,0x12,0x62,0x02,0x02,0x14,0x09,0x00,0xbc,0x24,0x24,0xa4,0x47,0x80,0x7e,0x44,0xc4,0x28,0x10,0x28,0x44,0x87,0x02 -+// 35932 豜 ; -+,0x00,0x7f,0x08,0x11,0x31,0x4a,0x15,0x26,0x4d,0x15,0x24,0x44,0x04,0x24,0x15,0x0a,0x00,0xff,0x24,0x24,0xa4,0x24,0xff,0x24,0x24,0xa4,0x44,0x44,0x84,0x84,0x04,0x04 -+// 35933 豝 ; -+,0x00,0x7f,0x08,0x08,0x14,0x2a,0x4b,0x16,0x27,0x4a,0x12,0x22,0x42,0x02,0x14,0x08,0x00,0xfe,0x52,0x52,0x52,0xd2,0x7e,0x42,0x40,0xc0,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 35934 豞 ; -+,0x00,0x7f,0x08,0x08,0x15,0x66,0x0d,0x15,0x66,0x0b,0x12,0x62,0x02,0x02,0x14,0x08,0x20,0x20,0x40,0x7f,0x41,0x81,0x79,0x49,0x49,0x49,0xf9,0x49,0x01,0x01,0x0a,0x04 -+// 35935 豟 ; -+,0x00,0x7f,0x08,0x10,0x28,0x48,0x35,0x26,0x5d,0x14,0x3c,0x54,0x04,0x05,0x29,0x12,0x20,0x10,0xfe,0x82,0x82,0xfe,0x80,0xbe,0x82,0x84,0x88,0x90,0xa1,0x21,0x1f,0x00 -+// 35936 豠 ; -+,0x00,0x7f,0x08,0x10,0x31,0x4a,0x14,0x24,0x4e,0x15,0x24,0x44,0x04,0x15,0x08,0x00,0x00,0x7c,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0xc4,0x44,0x44,0xff,0x00,0x00 -+// 35937 象 ; -+,0x04,0x07,0x08,0x1f,0x28,0x0f,0x09,0x02,0x0c,0x73,0x0c,0x33,0x0c,0x30,0x01,0x00,0x00,0xf0,0x20,0xfc,0x84,0xfc,0x08,0x8c,0xd0,0x60,0xd0,0x48,0x47,0x42,0x40,0x80 -+// 35938 豢 ; -+,0x08,0x04,0x1f,0x00,0x3f,0x02,0x07,0x18,0x63,0x0c,0x33,0x0c,0x33,0x0c,0x31,0x00,0x88,0x90,0xfc,0x80,0xff,0x10,0xf8,0x87,0x0a,0x90,0x60,0xd0,0x4c,0x46,0x44,0x80 -+// 35939 豣 ; -+,0x00,0x7e,0x10,0x10,0x30,0x49,0x1e,0x24,0x4e,0x15,0x24,0x44,0x04,0x04,0x39,0x12,0x00,0xef,0x44,0x44,0x44,0x44,0x44,0xef,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 35940 豤 ; -+,0x00,0x7e,0x08,0x08,0x10,0x68,0x0d,0x16,0x25,0x4c,0x14,0x24,0x44,0x04,0x14,0x08,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa0,0xa3,0xac,0x90,0x88,0xa7,0xc2,0x80 -+// 35941 豥 ; -+,0x00,0x7f,0x09,0x08,0x10,0x29,0x4a,0x14,0x2e,0x4e,0x15,0x25,0x44,0x04,0x15,0x08,0x20,0x10,0xff,0x10,0x20,0x24,0x44,0xf8,0x12,0x22,0x44,0x88,0x14,0x62,0x82,0x00 -+// 35942 豦 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x10,0x10,0x1f,0x11,0x16,0x1a,0x21,0x26,0x58,0x80,0xfc,0x80,0xff,0x82,0xf8,0x84,0x7c,0x00,0xfe,0x84,0x48,0xf0,0x28,0xa7,0x42 -+// 35943 豧 ; -+,0x00,0x7f,0x08,0x09,0x11,0x6a,0x0c,0x34,0x4a,0x0d,0x14,0x64,0x04,0x04,0x28,0x10,0x10,0x94,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x9a,0x94 -+// 35944 豨 ; -+,0x00,0x7f,0x08,0x10,0x2a,0x4d,0x14,0x26,0x4d,0x14,0x24,0x44,0x04,0x04,0x1c,0x08,0x42,0x24,0x18,0x24,0x52,0xff,0x20,0x50,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 35945 豩 ; -+,0x00,0x7f,0x08,0x10,0x11,0x6a,0x05,0x14,0x66,0x0d,0x14,0x64,0x05,0x1c,0x08,0x00,0x00,0xff,0x10,0x20,0x42,0xa3,0x34,0x48,0x98,0x2c,0x4b,0x8a,0x08,0x50,0x20,0x00 -+// 35946 豪 ; -+,0x01,0x00,0x3f,0x04,0x07,0x00,0x3f,0x20,0x5f,0x03,0x04,0x39,0x06,0x39,0x06,0x39,0x00,0x80,0xfe,0x10,0xf0,0x00,0xff,0x02,0xfc,0x00,0x88,0x90,0x60,0xd8,0x47,0x82 -+// 35947 豫 ; -+,0x00,0x7e,0x04,0x29,0x12,0x7e,0x14,0x10,0x11,0x16,0x11,0x16,0x10,0x51,0x26,0x00,0x40,0x7c,0x88,0xfe,0x92,0xfe,0x24,0x46,0xa8,0x50,0x98,0x34,0x53,0x92,0x50,0x20 -+// 35948 豬 ; -+,0x00,0x7f,0x08,0x10,0x32,0x4b,0x1c,0x26,0x4d,0x16,0x24,0x44,0x04,0x3c,0x08,0x00,0x20,0x24,0xfe,0x24,0x28,0xff,0x10,0x60,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 35949 豭 ; -+,0x00,0x7d,0x11,0x11,0x31,0x4b,0x0d,0x09,0x3d,0x4b,0x19,0x29,0x49,0x09,0x29,0x11,0x00,0xee,0x22,0x22,0xee,0x20,0x0e,0xea,0x0a,0x0a,0xea,0x04,0x04,0x0a,0x11,0x21 -+// 35950 豮 ; -+,0x00,0x7e,0x08,0x10,0x30,0x49,0x16,0x24,0x4e,0x15,0x24,0x44,0x04,0x04,0x14,0x08,0x10,0xff,0x10,0x54,0xff,0x44,0x00,0xfe,0x82,0x92,0x92,0x92,0x28,0x26,0x43,0x82 -+// 35951 豯 ; -+,0x00,0x7e,0x08,0x10,0x29,0x4a,0x14,0x26,0x4d,0x0c,0x15,0x24,0x44,0x04,0x14,0x09,0x0e,0xf0,0x54,0x94,0x20,0x44,0xf8,0x22,0x7f,0x10,0xff,0x10,0x28,0x44,0x83,0x02 -+// 35952 豰 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x7f,0x40,0x3f,0x00,0x3f,0x10,0x29,0x4e,0x15,0x64,0x0c,0x00,0xbc,0x24,0x24,0x24,0xa7,0xc0,0x1e,0x22,0x24,0x14,0x08,0x08,0x14,0xa3,0x42 -+// 35953 豱 ; -+,0x00,0x7f,0x08,0x08,0x10,0x29,0x4a,0x14,0x2e,0x4d,0x14,0x64,0x04,0x04,0x2b,0x10,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 35954 豲 ; -+,0x00,0x7f,0x08,0x10,0x28,0x49,0x16,0x24,0x4e,0x15,0x24,0x45,0x05,0x3a,0x14,0x00,0x00,0xff,0x88,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0x88,0xa8,0x2a,0x49,0x89,0x28,0x10 -+// 35955 豳 ; -+,0x00,0x00,0x20,0x3f,0x24,0x2a,0x33,0x26,0x2b,0x36,0x2a,0x32,0x24,0x3f,0x20,0x00,0x80,0x80,0x81,0xfd,0x91,0xb1,0xd3,0x9d,0xa9,0xad,0xcb,0xa9,0x91,0xff,0x01,0x00 -+// 35956 豴 ; -+,0x00,0x7f,0x08,0x08,0x10,0x28,0x5d,0x16,0x2c,0x4e,0x15,0x24,0x44,0x04,0x14,0x08,0x10,0x08,0xff,0x42,0x24,0xff,0x91,0xfd,0x91,0xbd,0xa5,0xa5,0xbd,0xa5,0x85,0x82 -+// 35957 豵 ; -+,0x00,0x7e,0x11,0x12,0x30,0x4d,0x1b,0x2d,0x49,0x1d,0x29,0x49,0x09,0x09,0x29,0x11,0x94,0xd4,0x14,0x94,0xaa,0x41,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x58,0x8f,0x00 -+// 35958 豶 ; -+,0x00,0x7f,0x08,0x08,0x10,0x69,0x0a,0x14,0x24,0x4a,0x15,0x24,0x44,0x04,0x14,0x0b,0x10,0x10,0xfe,0x54,0xff,0x44,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0xc3,0x02 -+// 35959 豷 ; -+,0x00,0x7f,0x10,0x10,0x28,0x45,0x0d,0x16,0x25,0x4c,0x14,0x24,0x44,0x04,0x2b,0x10,0x10,0xff,0x10,0xfe,0x00,0xff,0x01,0x7c,0x00,0xfe,0x82,0xfe,0x44,0x28,0xff,0x00 -+// 35960 豸 ; -+,0x00,0x03,0x1c,0x04,0x02,0x01,0x3e,0x00,0x01,0x06,0x18,0x01,0x06,0x38,0x00,0x00,0x38,0xc0,0x80,0x46,0x38,0xc0,0x20,0x50,0x88,0x14,0x64,0x84,0x04,0x88,0x50,0x20 -+// 35961 豹 ; -+,0x04,0x06,0x08,0x11,0x6a,0x0c,0x14,0x66,0x09,0x13,0x65,0x09,0x11,0x61,0x0a,0x04,0x20,0x30,0x20,0xbf,0x41,0x41,0xa1,0x11,0x19,0x11,0x01,0x01,0x01,0x01,0x0a,0x04 -+// 35962 豺 ; -+,0x03,0x1c,0x68,0x25,0x15,0x0a,0x34,0x04,0x0a,0x72,0x06,0x1a,0x62,0x02,0x14,0x08,0x04,0x04,0x04,0x04,0xff,0x0c,0x0c,0x14,0x14,0x24,0x44,0x84,0x04,0x04,0x14,0x08 -+// 35963 豻 ; -+,0x00,0x0f,0x70,0x24,0x13,0x0e,0x74,0x05,0x0a,0x72,0x05,0x19,0x61,0x02,0x0a,0x04,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 35964 豼 ; -+,0x00,0x0f,0x74,0x23,0x16,0x18,0x64,0x0c,0x12,0x26,0x4a,0x12,0x62,0x02,0x14,0x08,0x08,0x48,0x48,0x48,0x48,0x4b,0x7c,0x48,0x48,0x48,0x48,0x48,0x59,0x69,0x47,0x00 -+// 35965 豽 ; -+,0x06,0x78,0x08,0x25,0x16,0x18,0x64,0x0c,0x12,0x66,0x0a,0x12,0x22,0x42,0x0a,0x04,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xaa,0xa6,0xc2,0x82,0x82,0x82,0x8a,0x84 -+// 35966 豾 ; -+,0x00,0x0e,0x74,0x26,0x14,0x08,0x14,0x66,0x0a,0x12,0x67,0x1a,0x62,0x02,0x14,0x08,0x00,0x00,0xff,0x08,0x08,0x10,0x18,0x34,0x52,0x91,0x10,0x10,0x10,0x10,0xff,0x00 -+// 35967 豿 ; -+,0x00,0x06,0x78,0x2b,0x14,0x19,0x66,0x0c,0x12,0x66,0x0a,0x12,0x62,0x02,0x0a,0x04,0x20,0x20,0x40,0x7f,0x81,0x01,0x79,0x49,0x49,0x49,0x79,0x49,0x01,0x01,0x0a,0x04 -+// 35968 貀 ; -+,0x03,0x0c,0x74,0x23,0x12,0x0c,0x74,0x06,0x0a,0x13,0x65,0x19,0x61,0x11,0x0a,0x04,0x08,0x08,0x88,0x49,0x49,0x49,0x49,0x7f,0x08,0x49,0x49,0x49,0x49,0x49,0x7f,0x00 -+// 35969 貁 ; -+,0x00,0x06,0x78,0x24,0x13,0x0c,0x34,0x46,0x0a,0x32,0x46,0x1a,0x62,0x15,0x0a,0x00,0x20,0x10,0xff,0x82,0x00,0x28,0x28,0x28,0x28,0x28,0x44,0x44,0x84,0x03,0x02,0x00 -+// 35970 貂 ; -+,0x00,0x0e,0x78,0x24,0x17,0x18,0x64,0x0a,0x12,0x65,0x09,0x11,0x61,0x01,0x0a,0x04,0x00,0xff,0x11,0x11,0x21,0x21,0x4e,0x84,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35971 貃 ; -+,0x07,0x78,0x09,0x25,0x12,0x08,0x14,0x66,0x1a,0x62,0x06,0x1a,0x62,0x02,0x1e,0x04,0x10,0x10,0x20,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 35972 貄 ; -+,0x00,0x0e,0x78,0x24,0x15,0x08,0x74,0x04,0x1a,0x62,0x06,0x1a,0x63,0x02,0x0a,0x04,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10 -+// 35973 貅 ; -+,0x0c,0x70,0x0a,0x45,0x2b,0x11,0x29,0x49,0x15,0x25,0x4d,0x15,0x65,0x05,0x15,0x09,0x90,0xd0,0x90,0x10,0xff,0x10,0x38,0x38,0x34,0x54,0x53,0x92,0x10,0x10,0x10,0x10 -+// 35974 貆 ; -+,0x00,0x0e,0x78,0x29,0x16,0x1c,0x68,0x04,0x1a,0x62,0x06,0x1a,0x62,0x03,0x14,0x08,0x00,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00,0xff,0x00,0x00 -+// 35975 貇 ; -+,0x06,0x78,0x08,0x25,0x16,0x18,0x64,0x0a,0x32,0x46,0x0a,0x12,0x62,0x02,0x14,0x08,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x52,0x53,0x4c,0x48,0x44,0x53,0x62,0x40 -+// 35976 貈 ; -+,0x00,0x07,0x78,0x25,0x16,0x08,0x34,0x07,0x0a,0x16,0x6a,0x12,0x62,0x14,0x09,0x02,0x10,0xa0,0x7c,0x64,0x54,0x54,0x44,0xff,0x44,0x64,0x54,0x54,0x84,0x84,0x14,0x08 -+// 35977 貉 ; -+,0x06,0x18,0x68,0x2a,0x14,0x29,0x44,0x0a,0x13,0x66,0x0a,0x12,0x62,0x02,0x0a,0x04,0x40,0x40,0x7e,0x44,0xa4,0x28,0x10,0x68,0x87,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 35978 貊 ; -+,0x02,0x0d,0x74,0x22,0x14,0x18,0x64,0x04,0x1a,0x62,0x06,0x1a,0x62,0x02,0x14,0x08,0x00,0xff,0x10,0x20,0x40,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 35979 貋 ; -+,0x00,0x0e,0x72,0x2a,0x14,0x28,0x44,0x0c,0x12,0x66,0x0b,0x12,0x62,0x02,0x14,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 35980 貌 ; -+,0x06,0x78,0x08,0x25,0x16,0x18,0x64,0x0c,0x12,0x66,0x0a,0x12,0x62,0x02,0x14,0x09,0x10,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 35981 貍 ; -+,0x00,0x0e,0x70,0x22,0x14,0x18,0x64,0x0a,0x12,0x66,0x0a,0x12,0x62,0x02,0x15,0x08,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0xff,0x00 -+// 35982 貎 ; -+,0x0e,0x70,0x08,0x2a,0x24,0x18,0x68,0x14,0x24,0x4a,0x12,0x22,0x42,0x02,0x15,0x0a,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0xaa,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 35983 貏 ; -+,0x00,0x0e,0x71,0x2a,0x24,0x18,0x64,0x0c,0x12,0x66,0x0b,0x12,0x62,0x02,0x0a,0x04,0x10,0x20,0xfe,0x92,0xfe,0x92,0x92,0xfe,0xb2,0x50,0xff,0x10,0x10,0x10,0x10,0x10 -+// 35984 貐 ; -+,0x00,0x0e,0x70,0x0a,0x25,0x1a,0x65,0x0d,0x15,0x65,0x0d,0x15,0x65,0x05,0x15,0x09,0x20,0x20,0x50,0x8c,0xfb,0x02,0xe0,0x22,0xea,0x2a,0x2a,0xea,0x2a,0x2a,0x22,0x66 -+// 35985 貑 ; -+,0x00,0x0f,0x75,0x27,0x15,0x09,0x15,0x65,0x0d,0x15,0x65,0x1d,0x65,0x05,0x15,0x09,0x00,0xee,0x22,0x22,0xe2,0x2e,0x00,0xfe,0x12,0x12,0xf2,0x0c,0x0c,0x12,0x21,0x41 -+// 35986 貒 ; -+,0x00,0x0e,0x70,0x0a,0x26,0x18,0x6b,0x0c,0x15,0x65,0x0d,0x15,0x65,0x05,0x29,0x10,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x20,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x06,0x00 -+// 35987 貓 ; -+,0x0e,0x70,0x4a,0x25,0x26,0x18,0x64,0x0a,0x12,0x62,0x06,0x1a,0x62,0x02,0x0a,0x04,0x44,0x44,0x44,0xff,0x44,0x44,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 35988 貔 ; -+,0x00,0x0e,0x74,0x22,0x14,0x08,0x14,0x64,0x0a,0x12,0x66,0x0a,0x12,0x62,0x0a,0x04,0x20,0x40,0xfe,0xaa,0x92,0xaa,0xfe,0x00,0x88,0x89,0x8a,0xec,0x89,0xa9,0xc7,0x80 -+// 35989 貕 ; -+,0x00,0x0e,0x70,0x24,0x26,0x14,0x18,0x64,0x0a,0x12,0x67,0x0a,0x32,0x42,0x14,0x0b,0x0e,0xf0,0x91,0x4a,0x20,0x48,0xfc,0x22,0xff,0x12,0xff,0x10,0x28,0x44,0x87,0x02 -+// 35990 貖 ; -+,0x0e,0x70,0x09,0x26,0x15,0x18,0x68,0x0c,0x15,0x62,0x06,0x1a,0x62,0x02,0x15,0x08,0x04,0x86,0x44,0x28,0xff,0x48,0x64,0x82,0xff,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 35991 貗 ; -+,0x00,0x0e,0x70,0x2b,0x14,0x18,0x64,0x0c,0x12,0x66,0x0a,0x13,0x62,0x02,0x14,0x09,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x20,0xff,0x44,0x38,0x44,0x83 -+// 35992 貘 ; -+,0x00,0x0f,0x72,0x29,0x16,0x18,0x64,0x0c,0x12,0x66,0x0b,0x12,0x62,0x02,0x14,0x09,0x48,0x48,0xff,0x48,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x28,0x44,0x83,0x02 -+// 35993 貙 ; -+,0x06,0x19,0x61,0x0b,0x25,0x19,0x69,0x05,0x1d,0x65,0x0d,0x15,0x65,0x05,0x15,0x08,0x00,0xff,0x00,0x3c,0x24,0x3c,0x24,0x00,0x77,0x55,0x55,0x77,0x00,0x00,0xff,0x00 -+// 35994 貚 ; -+,0x06,0x18,0x6a,0x2a,0x15,0x18,0x64,0x0c,0x12,0x26,0x4a,0x13,0x62,0x02,0x14,0x08,0xee,0xaa,0xaa,0xee,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 35995 貛 ; -+,0x06,0x19,0x70,0x08,0x24,0x18,0x64,0x0c,0x34,0x4d,0x16,0x24,0x44,0x04,0x14,0x08,0x48,0xff,0x48,0xee,0xaa,0xee,0xa0,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 35996 貜 ; -+,0x01,0x0f,0x71,0x2b,0x25,0x18,0x69,0x0f,0x15,0x65,0x0d,0x14,0x64,0x04,0x14,0x0b,0xef,0x29,0xef,0x29,0xef,0x90,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfc,0x48,0x30,0xcf -+// 35997 貝 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x02,0x03,0x04,0x08,0x10,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x00,0x20,0x10,0x18,0x0c,0x08 -+// 35998 貞 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x04,0x06,0x0c,0x10,0x80,0x80,0xfe,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x20,0x18,0x0c,0x08 -+// 35999 貟 ; -+,0x01,0x02,0x04,0x0f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x02,0x03,0x04,0x08,0x00,0x10,0x08,0xfe,0x04,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x08,0x0c,0x08 -+// 36000 負 ; -+,0x02,0x03,0x04,0x08,0x1f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x02,0x04,0x08,0x00,0xf8,0x10,0x20,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x20,0x18,0x08 -+// 36001 財 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x15,0x12,0x23,0x42,0x00,0x08,0x08,0x08,0x08,0xff,0x18,0x18,0x28,0x28,0x48,0x88,0x08,0x08,0x08,0x28,0x10 -+// 36002 貢 ; -+,0x1f,0x00,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x06,0x08,0x10,0xfc,0x80,0x80,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x08,0x06,0x04 -+// 36003 貣 ; -+,0x01,0x01,0x01,0x3e,0x00,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x03,0x0c,0x30,0x20,0x10,0x7e,0x81,0x61,0x1e,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x08,0x06,0x04 -+// 36004 貤 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x22,0x3e,0x00,0x24,0x32,0x42,0x00,0x10,0x10,0x90,0x96,0xba,0xd2,0x92,0x92,0x92,0x9a,0x94,0x90,0x81,0x81,0x7f,0x00 -+// 36005 貥 ; -+,0x00,0x3e,0x22,0x23,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x12,0x22,0x41,0x20,0x10,0x10,0xff,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x87,0x00 -+// 36006 貦 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x23,0x3e,0x22,0x22,0x3e,0x00,0x14,0x13,0x22,0x40,0x01,0x00,0xfe,0x00,0x00,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x49,0x49,0x89,0x87,0x00 -+// 36007 貧 ; -+,0x04,0x06,0x0c,0x17,0x22,0x04,0x1f,0x28,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x18,0x20,0x10,0x08,0xf7,0x12,0x20,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x18,0x08 -+// 36008 貨 ; -+,0x08,0x0c,0x1b,0x28,0x48,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x03,0x0c,0x30,0x40,0x4e,0xf0,0x42,0x22,0x1c,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x18,0x08 -+// 36009 販 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x27,0x45,0x02,0x00,0x0e,0xf0,0x80,0x80,0xfc,0xc4,0xc4,0xa8,0xa8,0xa8,0x90,0xa8,0x24,0x47,0x82 -+// 36010 貪 ; -+,0x00,0x01,0x02,0x04,0x1f,0x60,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x18,0x80,0x40,0xb0,0x4c,0xfb,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x18,0x08 -+// 36011 貫 ; -+,0x07,0x04,0x3f,0x04,0x07,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x03,0x0c,0x30,0xf8,0x48,0xff,0x88,0xf8,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x0c,0x08 -+// 36012 責 ; -+,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x80,0xfc,0x80,0xf8,0x80,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x60,0x1c -+// 36013 貭 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x13,0x12,0x13,0x12,0x13,0x12,0x13,0x11,0x21,0x22,0x44,0x3e,0xc0,0x40,0xff,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x10,0x88,0x04,0x04 -+// 36014 貮 ; -+,0x00,0x1f,0x00,0x00,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x09,0x10,0x20,0x20,0xa8,0x26,0x24,0xff,0x20,0xa0,0xa0,0x90,0x90,0x90,0x88,0x89,0x09,0xc5,0x82 -+// 36015 貯 ; -+,0x00,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x24,0x33,0x42,0x00,0x20,0x10,0xff,0x81,0x02,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 36016 貰 ; -+,0x09,0x7f,0x09,0x09,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x08,0xff,0x08,0xf8,0x00,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x06 -+// 36017 貱 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x13,0x21,0x42,0x08,0x08,0xff,0x89,0x8a,0x88,0xbe,0xa2,0xa2,0x94,0x94,0x88,0x94,0x12,0x23,0x42 -+// 36018 貲 ; -+,0x04,0x04,0x17,0x14,0x17,0x7c,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x20,0x26,0xb8,0x22,0xa2,0x1e,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36019 貳 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x09,0x10,0x20,0x28,0x24,0xff,0x20,0xa0,0x20,0xa0,0x90,0x90,0x90,0x88,0x89,0x85,0x05,0xc2,0x80 -+// 36020 貴 ; -+,0x00,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x80,0xf8,0x88,0xf8,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36021 貵 ; -+,0x01,0x02,0x07,0x01,0x3f,0x04,0x0f,0x14,0x67,0x04,0x07,0x04,0x07,0x03,0x0c,0x30,0x00,0x08,0xfc,0x08,0xff,0x10,0xf8,0x0f,0xfa,0x08,0xf8,0x08,0xf8,0x10,0x0e,0x04 -+// 36022 貶 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x3c,0x00,0x28,0x25,0x42,0x00,0x06,0xf8,0x40,0x30,0x20,0xfe,0x04,0x08,0x08,0x10,0x20,0x40,0x80,0x60,0x1f,0x00 -+// 36023 買 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x07,0x04,0x07,0x04,0x07,0x04,0x07,0x00,0x02,0x06,0x08,0xfe,0x22,0x22,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x00,0x10,0x0c,0x08 -+// 36024 貸 ; -+,0x04,0x06,0x08,0x1f,0x28,0x48,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x03,0x0c,0x30,0x50,0x48,0x5f,0xe0,0x21,0x19,0xfe,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x1c,0x08 -+// 36025 貹 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x22,0x3e,0x00,0x24,0x35,0x22,0x42,0x10,0x90,0xd0,0x90,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 36026 貺 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x14,0x16,0x24,0x40,0x01,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0xaa,0x28,0x28,0x28,0x49,0x49,0x89,0x87,0x00 -+// 36027 費 ; -+,0x02,0x3f,0x02,0x1f,0x12,0x1f,0x04,0x7f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x20,0xfe,0x22,0xfe,0x20,0xfe,0x22,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x06 -+// 36028 貼 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x14,0x12,0x23,0x42,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x00 -+// 36029 貽 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x3f,0x22,0x22,0x3e,0x00,0x24,0x34,0x22,0x42,0x00,0x00,0x20,0x30,0x44,0x42,0x9f,0xf2,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36030 貾 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x22,0x42,0x00,0x0f,0xf8,0x90,0x90,0x90,0x90,0xff,0x88,0x88,0x88,0x88,0xa4,0xa5,0xd3,0x89,0x08 -+// 36031 貿 ; -+,0x07,0x18,0x14,0x12,0x1f,0x12,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x0c,0x30,0x00,0xfe,0x12,0x12,0x2a,0x44,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c,0x04 -+// 36032 賀 ; -+,0x08,0x7f,0x09,0x09,0x15,0x22,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x03,0x0c,0x30,0x00,0x3e,0x22,0x22,0x3e,0x22,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0e,0x04 -+// 36033 賁 ; -+,0x00,0x1f,0x04,0x3f,0x04,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x08,0x30,0x80,0xfc,0x90,0xff,0x10,0x10,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x20,0x18,0x08 -+// 36034 賂 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x23,0x3e,0x00,0x14,0x23,0x42,0x00,0x40,0x40,0x7e,0x84,0xc4,0x28,0x10,0x2c,0xc3,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 36035 賃 ; -+,0x08,0x0b,0x18,0x2f,0x48,0x0b,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x1e,0xe0,0x20,0xff,0x20,0xfe,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c -+// 36036 賄 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x14,0x1a,0x23,0x42,0x00,0x20,0x30,0x20,0xff,0x20,0x7e,0xc2,0x42,0x7e,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 36037 賅 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x3d,0x24,0x24,0x3c,0x00,0x14,0x12,0x22,0x41,0x00,0x20,0x10,0xff,0x20,0x24,0x46,0xfc,0x88,0x12,0x24,0x4c,0x98,0x34,0x42,0x83,0x02 -+// 36038 賆 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x14,0x22,0x42,0x01,0x82,0x42,0x24,0xff,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 36039 資 ; -+,0x10,0x08,0x0a,0x04,0x38,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x0c,0x30,0x40,0x7f,0x92,0x10,0x28,0x47,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0e,0x04 -+// 36040 賈 ; -+,0x3f,0x02,0x1f,0x12,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x0c,0x30,0xff,0x20,0xfc,0x24,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0e,0x04 -+// 36041 賉 ; -+,0x00,0x3c,0x24,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x3d,0x01,0x29,0x27,0x44,0x00,0x20,0x30,0x40,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0xff,0x00,0x00 -+// 36042 賊 ; -+,0x00,0x3e,0x22,0x23,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x00,0x29,0x25,0x42,0x04,0x10,0x14,0x12,0xff,0x10,0x92,0x92,0x92,0xd4,0x94,0x88,0x8d,0x15,0x23,0x41,0x00 -+// 36043 賋 ; -+,0x00,0x3e,0x22,0x23,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x00,0x14,0x23,0x42,0x01,0x20,0x18,0x10,0xff,0x24,0x42,0x83,0x45,0x44,0x28,0x28,0x10,0x28,0x44,0x83,0x02 -+// 36044 賌 ; -+,0x00,0x3f,0x02,0x04,0x0f,0x01,0x02,0x0f,0x34,0x07,0x04,0x07,0x04,0x07,0x03,0x1c,0x80,0xff,0x50,0x50,0xa8,0x24,0x46,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36045 賍 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x14,0x16,0x25,0x41,0x02,0x20,0x10,0xff,0x88,0x88,0x88,0x88,0xbe,0x88,0x88,0x88,0x88,0x88,0x7f,0x00,0x00 -+// 36046 賎 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x24,0x25,0x3c,0x27,0x24,0x3c,0x00,0x28,0x25,0x44,0x00,0x20,0x28,0x24,0x3e,0xe0,0x3e,0xe0,0x3f,0xe0,0x12,0x14,0x18,0x68,0x89,0x05,0x02 -+// 36047 賏 ; -+,0x00,0x3f,0x21,0x21,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x00,0x12,0x1a,0x21,0x41,0x00,0x00,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0x24,0x32,0x23,0x42,0x80 -+// 36048 賐 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x01,0x14,0x22,0x42,0x00,0x10,0x24,0x42,0xff,0x22,0x44,0x83,0x42,0x7c,0x44,0xa4,0x28,0x10,0x28,0x46,0x82 -+// 36049 賑 ; -+,0x00,0x7d,0x45,0x45,0x7d,0x45,0x45,0x7d,0x45,0x7d,0x01,0x29,0x25,0x45,0x42,0x04,0x00,0xfe,0x00,0x00,0xfe,0x00,0xff,0x50,0x52,0x54,0x48,0x48,0x54,0x63,0x42,0x00 -+// 36050 賒 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x23,0x22,0x3e,0x14,0x12,0x23,0x42,0x00,0x10,0x10,0x28,0x44,0x83,0x02,0xfc,0x00,0xff,0x10,0x94,0xd2,0x93,0x12,0x50,0x20 -+// 36051 賓 ; -+,0x00,0x1f,0x20,0x2f,0x02,0x0c,0x31,0x0f,0x74,0x07,0x04,0x07,0x04,0x07,0x03,0x1c,0x80,0xff,0x02,0xfc,0x80,0x9c,0xe0,0xfc,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36052 賔 ; -+,0x00,0x00,0x3f,0x20,0x0f,0x08,0x0f,0x08,0x0b,0x0a,0x0a,0x1a,0x13,0x10,0x21,0x42,0x80,0x40,0xff,0x01,0xfe,0x42,0xfe,0x00,0xfc,0x04,0x94,0x4c,0xfc,0x90,0x08,0x04 -+// 36053 賕 ; -+,0x00,0x3e,0x22,0x22,0x3f,0x22,0x23,0x3e,0x22,0x22,0x3e,0x01,0x14,0x22,0x42,0x00,0x20,0x28,0x26,0x24,0xff,0x20,0x24,0xa8,0x70,0x68,0xa8,0x24,0x23,0x22,0xa0,0x40 -+// 36054 賖 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x23,0x22,0x3e,0x00,0x24,0x33,0x42,0x00,0x10,0x10,0x28,0x44,0x83,0xfe,0x10,0x10,0xff,0x10,0x94,0xd2,0x92,0x10,0x50,0x20 -+// 36055 賗 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x23,0x42,0x00,0x10,0x10,0xfe,0x92,0x92,0xfe,0x10,0xfe,0x92,0x92,0xfe,0x92,0x10,0x10,0x10,0x10 -+// 36056 賘 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x25,0x3d,0x25,0x25,0x3d,0x01,0x29,0x26,0x42,0x04,0x20,0x10,0xff,0x00,0x10,0x10,0x10,0x7e,0x10,0x18,0x14,0x16,0x14,0xff,0x00,0x00 -+// 36057 賙 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x25,0x3d,0x25,0x25,0x3d,0x01,0x09,0x25,0x26,0x42,0x04,0x00,0xfe,0x02,0x22,0xfa,0x22,0xfe,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 36058 賚 ; -+,0x00,0x3f,0x08,0x08,0x15,0x26,0x18,0x6f,0x08,0x0a,0x09,0x08,0x0f,0x02,0x0c,0x30,0x80,0xfe,0x88,0x94,0xe2,0x98,0x87,0xfa,0x08,0x48,0x28,0x08,0xf8,0x10,0x0e,0x04 -+// 36059 賛 ; -+,0x04,0x3f,0x04,0x3f,0x0c,0x12,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x60,0x10,0x7e,0x10,0x7e,0x28,0x44,0xfb,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0e,0x04 -+// 36060 賜 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x14,0x16,0x25,0x42,0x00,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7f,0xa5,0x25,0x49,0x89,0x11,0x21,0xca,0x04 -+// 36061 賝 ; -+,0x00,0x3e,0x23,0x22,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x00,0x28,0x25,0x44,0x00,0x00,0xff,0x42,0x68,0x46,0x92,0x10,0xff,0x30,0x38,0x54,0x56,0x93,0x12,0x10,0x10 -+// 36062 賞 ; -+,0x08,0x04,0x3f,0x20,0x47,0x04,0x07,0x00,0x0f,0x08,0x0a,0x09,0x08,0x0f,0x06,0x18,0x88,0x90,0xff,0x02,0xf4,0x10,0xf0,0x00,0xf8,0x08,0x48,0x28,0x08,0xf8,0x30,0x0c -+// 36063 賟 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x00,0x14,0x26,0x44,0x01,0x28,0x28,0x28,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xff,0x00,0x44,0x62,0x83,0x02 -+// 36064 賠 ; -+,0x00,0x3e,0x23,0x22,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x00,0x24,0x33,0x42,0x00,0x20,0x10,0xff,0x04,0x86,0x64,0x48,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36065 賡 ; -+,0x00,0x3f,0x20,0x2f,0x20,0x3f,0x20,0x2f,0x24,0x3f,0x24,0x27,0x24,0x27,0x43,0x4c,0x80,0xfe,0x80,0xf8,0x88,0xfe,0x88,0xf8,0x0c,0xfb,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36066 賢 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x7e,0x22,0x24,0x18,0x18,0x24,0x43,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0e -+// 36067 賣 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x3f,0x22,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0x80,0xff,0x80,0xfc,0x00,0xfe,0x22,0xfe,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0e -+// 36068 賤 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x25,0x3c,0x24,0x25,0x3c,0x00,0x28,0x24,0x26,0x44,0x50,0x48,0x7e,0xa4,0x28,0x72,0x8e,0x40,0x4f,0xf0,0x24,0x28,0x31,0x49,0x86,0x00 -+// 36069 賥 ; -+,0x00,0x3e,0x23,0x22,0x3e,0x22,0x3e,0x23,0x22,0x3e,0x01,0x14,0x12,0x23,0x42,0x00,0x20,0x10,0xff,0x44,0x44,0x44,0xaa,0x11,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 36070 賦 ; -+,0x00,0x3c,0x24,0x24,0x3f,0x24,0x24,0x3c,0x25,0x25,0x3d,0x01,0x29,0x27,0x44,0x00,0x08,0x0c,0xeb,0x0a,0xff,0x48,0x48,0x48,0x78,0x48,0x44,0x44,0x75,0x83,0x01,0x00 -+// 36071 賧 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x3c,0x25,0x24,0x3c,0x24,0x01,0x28,0x24,0x45,0x02,0x20,0xa4,0xa6,0x28,0x20,0x50,0x88,0x24,0x20,0xa4,0xa8,0x20,0x50,0x88,0x0e,0x04 -+// 36072 賨 ; -+,0x00,0x3f,0x20,0x07,0x00,0x3f,0x08,0x10,0x2f,0x08,0x0a,0x09,0x08,0x0f,0x06,0x18,0x80,0xff,0x02,0xf0,0x00,0xfe,0x88,0x86,0xfc,0x08,0x48,0x28,0x08,0xf8,0x30,0x0c -+// 36073 賩 ; -+,0x00,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x24,0x23,0x42,0x00,0x10,0x08,0xff,0x82,0x00,0x7e,0x00,0xff,0x10,0x10,0x54,0x52,0x93,0x12,0x50,0x20 -+// 36074 質 ; -+,0x03,0x1c,0x10,0x1f,0x14,0x24,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x08,0x30,0x0e,0x70,0x40,0x7f,0x44,0x84,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c,0x04 -+// 36075 賫 ; -+,0x00,0x1f,0x04,0x04,0x0a,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x80,0xfe,0x88,0x88,0x94,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36076 賬 ; -+,0x00,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x00,0x14,0x22,0x42,0x00,0x00,0x00,0x7e,0x40,0x7c,0x40,0x7c,0x40,0xff,0x90,0x92,0x8c,0x88,0x84,0xa6,0xc3,0x82 -+// 36077 賭 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x27,0x3c,0x24,0x25,0x3e,0x00,0x28,0x26,0x44,0x00,0x20,0x20,0x22,0xfe,0x24,0x28,0xff,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 36078 賮 ; -+,0x00,0x0f,0x00,0x3f,0x00,0x1f,0x00,0x3f,0x12,0x2f,0x0a,0x09,0x08,0x0f,0x06,0x38,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0xff,0x24,0xfa,0x48,0x28,0x08,0xf8,0x30,0x0c -+// 36079 賯 ; -+,0x00,0x3c,0x25,0x3e,0x24,0x24,0x3c,0x24,0x24,0x3c,0x00,0x29,0x34,0x26,0x44,0x00,0x80,0xfe,0x02,0xfa,0x8a,0xfa,0x8a,0xfa,0x06,0xfc,0x08,0xff,0x10,0x10,0x50,0x20 -+// 36080 賰 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x24,0x27,0x3c,0x25,0x26,0x3c,0x00,0x28,0x36,0x24,0x40,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x84,0xfe,0x85,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 36081 賱 ; -+,0x00,0x3d,0x25,0x26,0x3c,0x24,0x24,0x3c,0x24,0x24,0x3c,0x00,0x15,0x22,0x42,0x00,0x00,0xff,0x12,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 36082 賲 ; -+,0x09,0x0d,0x19,0x30,0x57,0x11,0x16,0x1f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x38,0xfc,0x04,0xfc,0x20,0xff,0xa8,0x27,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0e -+// 36083 賳 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x27,0x24,0x3d,0x25,0x25,0x3d,0x01,0x29,0x24,0x44,0x00,0x88,0x88,0xea,0x8a,0x88,0xff,0x08,0xea,0x2b,0x2a,0x2c,0xe8,0x28,0x15,0x25,0x42 -+// 36084 賴 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x25,0x25,0x3f,0x0e,0x15,0x15,0x25,0x44,0x04,0x04,0x20,0x20,0xbe,0x44,0xfe,0x42,0x7e,0x42,0x7e,0x42,0x42,0xfe,0x24,0x32,0x43,0x82 -+// 36085 賵 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x12,0x22,0x40,0x00,0xff,0x81,0xbd,0x81,0xbd,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x00 -+// 36086 賶 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x22,0x41,0x02,0x10,0x10,0x28,0x54,0x83,0xfe,0x92,0x8a,0xfe,0x80,0xbe,0xa2,0xa2,0xa2,0x3e,0x00 -+// 36087 賷 ; -+,0x00,0x3f,0x12,0x1e,0x00,0x3f,0x20,0x4f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x80,0xff,0xa4,0xbc,0x80,0xff,0x01,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36088 賸 ; -+,0x00,0x3c,0x24,0x24,0x3c,0x25,0x24,0x25,0x3e,0x24,0x24,0x24,0x24,0x24,0x54,0x49,0x10,0x92,0x54,0xfe,0x20,0xff,0x84,0xff,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x86 -+// 36089 賹 ; -+,0x00,0x3c,0x24,0x25,0x3c,0x24,0x3c,0x25,0x26,0x3c,0x00,0x08,0x26,0x24,0x43,0x00,0x84,0x46,0x48,0xff,0x48,0x64,0x82,0x01,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 36090 賺 ; -+,0x00,0x3e,0x23,0x3e,0x22,0x22,0x3f,0x22,0x22,0x3e,0x00,0x14,0x15,0x22,0x42,0x00,0x82,0x44,0xff,0x28,0xfe,0x2a,0xff,0x2a,0xfe,0x28,0x6c,0xaa,0x2b,0x2a,0x28,0x28 -+// 36091 賻 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x25,0x25,0x3d,0x25,0x25,0x3f,0x00,0x14,0x22,0x42,0x00,0x28,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x2a,0xff,0x88,0x88,0x88,0x28,0x10 -+// 36092 購 ; -+,0x00,0x3f,0x24,0x25,0x3c,0x27,0x3c,0x24,0x24,0x3c,0x00,0x2b,0x24,0x44,0x40,0x00,0x44,0xff,0x44,0xfe,0x44,0xff,0x10,0xfe,0x92,0xfe,0x92,0xff,0x82,0x82,0x8a,0x84 -+// 36093 賽 ; -+,0x00,0x3f,0x22,0x1f,0x02,0x0f,0x02,0x3f,0x0c,0x77,0x04,0x07,0x04,0x07,0x03,0x1c,0x80,0xff,0x22,0xfc,0x20,0xfc,0x20,0xff,0x04,0xfb,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36094 賾 ; -+,0x00,0x7e,0x48,0x48,0x7e,0x42,0x42,0x42,0x7e,0x48,0x48,0x48,0x7f,0x00,0x00,0x00,0x10,0xfe,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0xc3 -+// 36095 賿 ; -+,0x00,0x3d,0x25,0x24,0x3c,0x24,0x25,0x3c,0x24,0x27,0x3c,0x01,0x08,0x29,0x24,0x45,0x00,0xfe,0x32,0xaa,0x66,0xaa,0x12,0x28,0xc4,0x13,0x64,0x9a,0x63,0x8c,0x30,0xc0 -+// 36096 贀 ; -+,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x00,0x0f,0x08,0x0a,0x09,0x0f,0x03,0x04,0x18,0x3c,0x24,0x24,0x43,0xbc,0x24,0x98,0x67,0xfa,0x08,0x48,0x28,0xf8,0x30,0x1c,0x08 -+// 36097 贁 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x12,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x12,0x61,0x10,0x18,0x10,0x10,0x3f,0x22,0x62,0x22,0x14,0x14,0x14,0x08,0x14,0x22,0x43,0x82 -+// 36098 贂 ; -+,0x00,0x3c,0x24,0x24,0x3d,0x27,0x3d,0x24,0x25,0x3c,0x01,0x28,0x2c,0x2b,0x40,0x03,0x20,0x44,0xfe,0x84,0x4a,0xef,0x32,0x48,0x94,0x63,0x8c,0x30,0xc6,0x18,0xe0,0x00 -+// 36099 贃 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x25,0x35,0x42,0x00,0x10,0x10,0xfe,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x10,0x02,0x51,0x55,0x46,0x3c,0x00 -+// 36100 贄 ; -+,0x04,0x3f,0x04,0x7f,0x11,0x7f,0x04,0x04,0x0f,0x0a,0x09,0x08,0x0f,0x03,0x06,0x18,0x10,0x10,0x7c,0x94,0x24,0xb5,0x23,0x41,0xfc,0x44,0x24,0x94,0xfc,0x18,0x06,0x04 -+// 36101 贅 ; -+,0x04,0x3f,0x04,0x3f,0x08,0x0f,0x11,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x06,0x18,0x20,0x20,0x3f,0x64,0x98,0x18,0x67,0xfa,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x30,0x0c -+// 36102 贆 ; -+,0x00,0x3c,0x25,0x24,0x3c,0x27,0x3c,0x24,0x27,0x3c,0x00,0x29,0x25,0x42,0x04,0x00,0x28,0x24,0xfe,0x50,0x8c,0x04,0xaa,0xaa,0xff,0x88,0x88,0x54,0x52,0x23,0x22,0x40 -+// 36103 贇 ; -+,0x08,0x7e,0x24,0x15,0x08,0x15,0x25,0x43,0x00,0x0f,0x0a,0x09,0x0f,0x06,0x0c,0x30,0x08,0xea,0x0a,0xff,0x48,0x79,0x45,0xfa,0x00,0xf8,0x48,0x28,0xf8,0x30,0x0e,0x04 -+// 36104 贈 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x25,0x3d,0x24,0x24,0x3c,0x00,0x08,0x24,0x36,0x44,0x00,0x82,0x44,0xff,0x93,0x55,0x59,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 36105 贉 ; -+,0x00,0x7d,0x44,0x45,0x7d,0x45,0x44,0x7c,0x44,0x44,0x7c,0x00,0x28,0x25,0x26,0x44,0x00,0xff,0x48,0xff,0x49,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10 -+// 36106 贊 ; -+,0x14,0x1f,0x24,0x3f,0x0a,0x13,0x2f,0x48,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x18,0x50,0x7e,0xd0,0x7e,0xa9,0x49,0xf7,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x10,0x0c,0x08 -+// 36107 贋 ; -+,0x1f,0x14,0x16,0x15,0x1e,0x14,0x14,0x14,0x13,0x12,0x13,0x12,0x23,0x21,0x43,0x04,0xff,0x50,0xff,0x90,0xfe,0x90,0xff,0x80,0xfc,0x04,0x24,0x94,0xfc,0x10,0x0c,0x08 -+// 36108 贌 ; -+,0x00,0x3f,0x22,0x22,0x3f,0x22,0x3f,0x22,0x22,0x22,0x3f,0x00,0x14,0x22,0x42,0x00,0x28,0x29,0xaa,0x28,0xff,0x44,0xfe,0x10,0xfe,0x10,0xff,0x10,0x28,0x24,0x43,0x82 -+// 36109 贍 ; -+,0x00,0x7c,0x44,0x7d,0x45,0x45,0x7d,0x45,0x45,0x7d,0x01,0x29,0x2d,0x4a,0x42,0x04,0x40,0x7c,0x88,0xff,0x52,0x89,0x7e,0x00,0x3c,0x00,0x3c,0x00,0x7e,0x42,0x7e,0x00 -+// 36110 贎 ; -+,0x00,0x3d,0x24,0x3c,0x24,0x24,0x3c,0x24,0x24,0x3d,0x01,0x29,0x25,0x25,0x41,0x01,0x44,0xff,0x44,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x11,0x15,0x1f,0xe5,0x01,0x03 -+// 36111 贏 ; -+,0x00,0x7f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x00,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x4e,0x80,0xff,0x00,0xfc,0x00,0xfc,0x04,0xfc,0x00,0xde,0x52,0xda,0x56,0xd3,0x53,0x23 -+// 36112 贐 ; -+,0x00,0x3d,0x24,0x27,0x3c,0x25,0x24,0x3f,0x25,0x26,0x3d,0x01,0x29,0x25,0x43,0x00,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0xff,0x52,0x49,0xfe,0x4a,0x4a,0x4a,0xff,0x00 -+// 36113 贑 ; -+,0x08,0x04,0x7f,0x22,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x08,0x08,0x08,0x00,0x7f,0x08,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x14,0x23,0x42 -+// 36114 贒 ; -+,0x3e,0x28,0x3e,0x22,0x3e,0x28,0x28,0x3f,0x00,0x0f,0x0a,0x09,0x09,0x0f,0x06,0x18,0x10,0xfe,0x92,0xfe,0x10,0xa9,0xa5,0x3e,0x00,0xf8,0x48,0x28,0x28,0xf8,0x30,0x0c -+// 36115 贓 ; -+,0x00,0x70,0x51,0x55,0x75,0x55,0x57,0x71,0x51,0x57,0x75,0x05,0x55,0x55,0x4a,0x04,0x0c,0x0a,0xff,0x08,0xe8,0x48,0x4a,0xeb,0x2a,0xec,0x44,0x45,0xeb,0x13,0x61,0x00 -+// 36116 贔 ; -+,0x0f,0x0a,0x09,0x08,0x0f,0x03,0x0c,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x12,0x21,0xfc,0x44,0x24,0x04,0xfc,0x30,0x0c,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x43 -+// 36117 贕 ; -+,0x00,0x77,0x45,0x55,0x55,0x75,0x57,0x55,0x55,0x55,0x77,0x14,0x14,0x24,0x24,0x44,0x08,0xff,0x08,0x7f,0x00,0x7f,0x55,0x7f,0x00,0x7f,0x41,0x7f,0x41,0x7f,0x34,0xc3 -+// 36118 贖 ; -+,0x00,0x3d,0x24,0x24,0x3c,0x25,0x3d,0x25,0x24,0x3c,0x00,0x28,0x34,0x26,0x44,0x01,0x10,0xff,0x10,0xfe,0x00,0xfe,0x4a,0xfe,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x68,0x86 -+// 36119 贗 ; -+,0x1f,0x12,0x12,0x15,0x1c,0x14,0x14,0x14,0x10,0x17,0x14,0x17,0x24,0x27,0x43,0x0c,0xff,0x50,0xfe,0x90,0xfe,0x90,0x90,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x18,0x06 -+// 36120 贘 ; -+,0x00,0x3e,0x23,0x23,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x22,0x42,0x01,0x92,0x54,0xff,0x01,0x7c,0x44,0x7c,0x00,0xfe,0x82,0xe2,0x9e,0x82,0xfe,0x6c,0x83 -+// 36121 贙 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3e,0x24,0x2e,0x2a,0x53,0x0f,0x0a,0x09,0x0f,0x06,0x38,0x10,0x9e,0x10,0xff,0x92,0xbc,0x92,0xbc,0xa4,0x46,0xfc,0x48,0x28,0xf8,0x30,0x0e -+// 36122 贚 ; -+,0x02,0x39,0x2b,0x2a,0x39,0x2f,0x28,0x3b,0x2a,0x2b,0x3a,0x03,0x2a,0x2a,0x43,0x02,0x10,0x10,0xdf,0x50,0x9e,0xe2,0x1e,0xd0,0x50,0xde,0x50,0xde,0x50,0x51,0x51,0x8f -+// 36123 贛 ; -+,0x10,0x08,0x7e,0x24,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x08,0x08,0x08,0x20,0x3e,0x64,0x98,0x27,0xc2,0xfe,0x10,0xff,0x42,0x72,0x4e,0x42,0x7e,0x34,0xc3 -+// 36124 贜 ; -+,0x00,0x77,0x50,0x50,0x71,0x55,0x55,0x77,0x51,0x57,0x75,0x05,0x55,0x49,0x4a,0x04,0x88,0xff,0x88,0x88,0xff,0x08,0xe8,0x4a,0xeb,0x2a,0xe4,0x45,0xeb,0x13,0x21,0x00 -+// 36125 贝 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x01,0x02,0x0c,0x30,0x00,0x00,0xf8,0x08,0x08,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x40,0x30,0x0c,0x04,0x00 -+// 36126 贞 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x01,0x02,0x0c,0x30,0x80,0x80,0xfe,0x80,0x80,0xf8,0x08,0x88,0x88,0x88,0x88,0x88,0x60,0x18,0x06,0x04 -+// 36127 负 ; -+,0x02,0x03,0x04,0x08,0x1f,0x28,0x08,0x08,0x08,0x08,0x08,0x09,0x01,0x02,0x0c,0x30,0x00,0xf0,0x10,0x20,0xf8,0x08,0x08,0x88,0x88,0x88,0x88,0x48,0x20,0x18,0x0c,0x08 -+// 36128 贠 ; -+,0x02,0x03,0x04,0x08,0x1f,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x01,0x02,0x04,0x18,0x00,0x00,0x10,0x08,0xfc,0x08,0xf8,0x08,0x88,0x88,0x88,0x88,0x40,0x30,0x18,0x08 -+// 36129 贡 ; -+,0x1f,0x00,0x00,0x3f,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x08,0x10,0xfc,0x80,0x80,0xff,0x00,0xf8,0x08,0x88,0x88,0x88,0x88,0x40,0x20,0x18,0x0c,0x08 -+// 36130 财 ; -+,0x00,0x3f,0x21,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x04,0x0a,0x09,0x11,0x21,0x40,0x04,0x04,0x04,0x04,0x7f,0x0c,0x0c,0x14,0x14,0x24,0x24,0x44,0x04,0x84,0x14,0x08 -+// 36131 责 ; -+,0x00,0x3f,0x00,0x1f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x80,0xfe,0x80,0xfc,0x80,0xff,0x00,0xf8,0x88,0x88,0x88,0x88,0x60,0x18,0x0c,0x08 -+// 36132 贤 ; -+,0x04,0x24,0x24,0x24,0x24,0x24,0x05,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0xfe,0x84,0x44,0x28,0x10,0x6c,0x83,0xf8,0x08,0x88,0x88,0x88,0x48,0x30,0x18,0x08 -+// 36133 败 ; -+,0x00,0x1f,0x11,0x11,0x15,0x15,0x15,0x15,0x15,0x04,0x0a,0x09,0x11,0x11,0x20,0x01,0x20,0x30,0x20,0x40,0x7f,0xc4,0x44,0x44,0x28,0x28,0x10,0x10,0xa8,0x44,0x87,0x02 -+// 36134 账 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x23,0x42,0x00,0x40,0x44,0x46,0x48,0x50,0x60,0xff,0x50,0x50,0x50,0x48,0x48,0x54,0x63,0x42,0x00 -+// 36135 货 ; -+,0x04,0x06,0x0c,0x19,0x28,0x08,0x00,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x18,0x40,0x46,0x78,0xc0,0x42,0x3e,0x00,0xf8,0x08,0x88,0x88,0x88,0x40,0x30,0x1c,0x08 -+// 36136 质 ; -+,0x00,0x1f,0x10,0x17,0x10,0x10,0x13,0x12,0x12,0x12,0x12,0x12,0x10,0x21,0x22,0x44,0x3e,0xc0,0x40,0xfc,0x40,0x80,0xf8,0x08,0x48,0x48,0x48,0x48,0xa0,0x18,0x0c,0x08 -+// 36137 贩 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x15,0x15,0x22,0x44,0x09,0x00,0x1e,0xf0,0x80,0x80,0xfe,0xc4,0xa4,0xa4,0xa8,0x90,0x10,0x28,0x44,0x83,0x02 -+// 36138 贪 ; -+,0x00,0x01,0x02,0x05,0x18,0x67,0x00,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x18,0x80,0x40,0x20,0x18,0x87,0xf2,0x20,0xf8,0x08,0x88,0x88,0x88,0x48,0x30,0x18,0x08 -+// 36139 贫 ; -+,0x04,0x06,0x08,0x17,0x22,0x02,0x04,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x18,0x20,0x10,0x08,0xf7,0x12,0x90,0x60,0xf8,0x08,0x88,0x88,0x88,0x48,0x30,0x18,0x10 -+// 36140 贬 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x14,0x12,0x23,0x42,0x00,0x00,0x1e,0xe0,0x20,0x18,0x10,0xfe,0x04,0x08,0x10,0x20,0x40,0xc0,0x20,0x1f,0x00 -+// 36141 购 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x08,0x14,0x12,0x22,0x40,0x00,0x40,0x60,0x40,0x7f,0x81,0x81,0x21,0x21,0x51,0x89,0xfd,0x09,0x01,0x01,0x0a,0x04 -+// 36142 贮 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x08,0x14,0x12,0x23,0x42,0x00,0x40,0x20,0x10,0x10,0xff,0x82,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00 -+// 36143 贯 ; -+,0x00,0x0f,0x08,0x7f,0x08,0x0f,0x00,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x00,0xf8,0x88,0xff,0x88,0xf8,0x00,0xf8,0x08,0x88,0x88,0x88,0x48,0x30,0x0e,0x04 -+// 36144 贰 ; -+,0x00,0x00,0x7f,0x00,0x1f,0x00,0x3f,0x00,0x1f,0x10,0x12,0x12,0x12,0x05,0x08,0x30,0x14,0x12,0xff,0x10,0xd0,0x10,0xf0,0x10,0xd0,0x50,0x50,0x50,0x49,0x09,0xc5,0x43 -+// 36145 贱 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x08,0x14,0x12,0x23,0x42,0x00,0x30,0x2c,0x28,0x3c,0xe0,0x20,0x3e,0xe0,0x24,0x28,0x10,0x28,0x49,0x85,0x02,0x00 -+// 36146 贲 ; -+,0x00,0x00,0x3f,0x04,0x04,0x7f,0x04,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x80,0x80,0xfe,0x90,0x90,0xff,0x10,0xf8,0x08,0x88,0x88,0x88,0x40,0x20,0x18,0x06 -+// 36147 贳 ; -+,0x09,0x09,0x7f,0x09,0x09,0x08,0x0f,0x00,0x0f,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x10,0x10,0xff,0x10,0xf0,0x00,0xfe,0x00,0xf8,0x88,0x88,0x88,0x48,0x30,0x18,0x08 -+// 36148 贴 ; -+,0x00,0x3e,0x22,0x22,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x12,0x22,0x40,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36149 贵 ; -+,0x00,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x80,0xf8,0x88,0xf8,0x80,0xff,0x00,0xf8,0x08,0x88,0x88,0x88,0x48,0x20,0x1c,0x08 -+// 36150 贶 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x12,0x23,0x42,0x01,0x00,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 36151 贷 ; -+,0x04,0x06,0x08,0x1b,0x28,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x08,0x50,0x48,0x7e,0xa0,0x11,0x09,0x06,0xf8,0x08,0x88,0x88,0x88,0x48,0x30,0x0c,0x08 -+// 36152 贸 ; -+,0x03,0x1c,0x12,0x11,0x17,0x39,0x10,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x00,0x7e,0x12,0x12,0xa2,0x2a,0x44,0xf8,0x08,0x88,0x88,0x88,0x48,0x20,0x18,0x10 -+// 36153 费 ; -+,0x01,0x1f,0x01,0x1f,0x11,0x1f,0x02,0x04,0x0f,0x34,0x04,0x04,0x04,0x01,0x06,0x18,0x20,0xfc,0x24,0xfc,0x20,0xff,0x21,0x25,0xfa,0x08,0x88,0x88,0x88,0x60,0x1c,0x08 -+// 36154 贺 ; -+,0x04,0x3f,0x04,0x04,0x08,0x12,0x21,0x07,0x04,0x04,0x04,0x04,0x04,0x01,0x06,0x18,0x00,0xbe,0xa2,0xa2,0xbe,0xa2,0x00,0xf8,0x08,0x48,0x48,0x48,0xa0,0x18,0x0e,0x04 -+// 36155 贻 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x12,0x21,0x41,0x00,0x20,0x30,0x20,0x44,0x42,0xff,0x42,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x00 -+// 36156 贼 ; -+,0x00,0x3e,0x22,0x2b,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x08,0x14,0x16,0x25,0x42,0x00,0x10,0x14,0x12,0xff,0x10,0x92,0x92,0x92,0xf4,0x94,0x88,0x8d,0x95,0x23,0x41,0x00 -+// 36157 贽 ; -+,0x04,0x04,0x3e,0x04,0x1e,0x04,0x14,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x08,0x20,0x20,0xf8,0x28,0xc9,0x65,0x92,0xf8,0x08,0x88,0x88,0x88,0x48,0x20,0x18,0x08 -+// 36158 贾 ; -+,0x00,0x7f,0x02,0x1f,0x12,0x1f,0x00,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x00,0xff,0x20,0xfc,0x24,0xfc,0x00,0xf8,0x08,0x88,0x88,0x88,0x48,0x30,0x1c,0x08 -+// 36159 贿 ; -+,0x00,0x3e,0x22,0x2b,0x2a,0x2a,0x2a,0x2b,0x2a,0x28,0x28,0x14,0x12,0x23,0x42,0x00,0x10,0x10,0x10,0xff,0x20,0x7e,0xc2,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 36160 赀 ; -+,0x04,0x04,0x17,0x14,0x14,0x1f,0x70,0x00,0x0f,0x08,0x08,0x08,0x09,0x02,0x04,0x18,0x20,0x20,0xa6,0x38,0x21,0xa1,0x1f,0x00,0xf8,0x88,0x88,0x88,0x48,0x30,0x18,0x10 -+// 36161 赁 ; -+,0x04,0x05,0x08,0x1b,0x28,0x48,0x09,0x08,0x07,0x04,0x04,0x04,0x04,0x00,0x03,0x1c,0x1e,0xe0,0x20,0xff,0x20,0x20,0xfe,0x00,0xf8,0x08,0x48,0x48,0x48,0xb0,0x0c,0x03 -+// 36162 赂 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x29,0x08,0x14,0x23,0x42,0x00,0x40,0x40,0x7e,0x44,0xa4,0x28,0x10,0x28,0x47,0xfe,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 36163 赃 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x15,0x21,0x42,0x04,0x10,0x08,0xff,0x80,0x88,0x88,0x88,0xfe,0x88,0x88,0x88,0x88,0x08,0x7f,0x00,0x00 -+// 36164 资 ; -+,0x20,0x10,0x11,0x0a,0x74,0x20,0x23,0x2f,0x08,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x80,0x80,0xfe,0x2c,0x20,0xd0,0x0c,0xfb,0x08,0x88,0x88,0x88,0x60,0x18,0x0e,0x04 -+// 36165 赅 ; -+,0x00,0x3e,0x23,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x09,0x14,0x16,0x24,0x43,0x00,0x40,0x20,0xff,0x20,0x40,0x88,0xfc,0x90,0x24,0x46,0x88,0x18,0x26,0xc3,0x01,0x00 -+// 36166 赆 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x15,0x12,0x22,0x40,0x00,0x00,0xfe,0x82,0x82,0xfe,0x92,0x90,0x88,0xc4,0xa3,0x9a,0x08,0x20,0x18,0x08,0x00 -+// 36167 赇 ; -+,0x00,0x3e,0x22,0x2b,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x08,0x15,0x12,0x22,0x40,0x00,0x14,0x12,0x12,0xff,0x10,0x12,0xd3,0x54,0x38,0x58,0x94,0x12,0x13,0x12,0x50,0x20 -+// 36168 赈 ; -+,0x00,0x7c,0x44,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x11,0x11,0x2d,0x2a,0x44,0x00,0x00,0xff,0x80,0xfe,0x80,0x80,0xff,0xa8,0xaa,0xac,0x28,0x24,0x24,0x33,0x22,0x00 -+// 36169 赉 ; -+,0x00,0x1f,0x08,0x04,0x7f,0x01,0x06,0x18,0x6f,0x08,0x08,0x08,0x08,0x01,0x06,0x38,0x80,0xfe,0x88,0x90,0xff,0xa0,0x98,0x87,0xfa,0x08,0x88,0x88,0x88,0x60,0x1c,0x08 -+// 36170 赊 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x23,0x42,0x00,0x10,0x10,0x28,0x44,0x83,0x02,0x7c,0x00,0xff,0x10,0x54,0x52,0x93,0x12,0x50,0x20 -+// 36171 赋 ; -+,0x00,0x7c,0x45,0x44,0x57,0x54,0x54,0x55,0x55,0x55,0x55,0x11,0x29,0x27,0x44,0x00,0x08,0x08,0xfa,0x0a,0xff,0x48,0x48,0x48,0x78,0x48,0x44,0x45,0xf5,0x03,0x01,0x00 -+// 36172 赌 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2b,0x2a,0x2a,0x2a,0x2a,0x2b,0x08,0x14,0x12,0x23,0x42,0x10,0x12,0xff,0x12,0x14,0xff,0x10,0x20,0x7e,0xc2,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 36173 赍 ; -+,0x00,0x3f,0x04,0x04,0x0a,0x3f,0x20,0x0f,0x08,0x08,0x08,0x08,0x09,0x02,0x04,0x18,0x80,0xfe,0x90,0x90,0xa8,0xfe,0x02,0xf8,0x08,0x88,0x88,0x88,0x40,0x30,0x0e,0x04 -+// 36174 赎 ; -+,0x00,0x7c,0x45,0x54,0x55,0x54,0x54,0x56,0x55,0x55,0x53,0x10,0x10,0x28,0x24,0x45,0x10,0x10,0xfe,0x10,0xff,0x12,0x94,0x70,0x50,0x10,0xff,0x10,0x28,0x44,0x83,0x02 -+// 36175 赏 ; -+,0x08,0x04,0x3f,0x20,0x07,0x04,0x07,0x00,0x0f,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x88,0x90,0xff,0x02,0xf0,0x10,0xf0,0x00,0xf8,0x88,0x88,0x88,0x48,0x30,0x0e,0x04 -+// 36176 赐 ; -+,0x00,0x7c,0x44,0x54,0x54,0x54,0x54,0x54,0x55,0x56,0x10,0x10,0x29,0x24,0x44,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x2a,0x2a,0x4a,0x92,0x22,0x42,0x8a,0x04 -+// 36177 赑 ; -+,0x0f,0x08,0x08,0x08,0x09,0x02,0x04,0x1f,0x11,0x15,0x15,0x15,0x04,0x0a,0x11,0x21,0xf8,0x08,0x88,0x88,0x60,0x18,0x08,0x3e,0x22,0x2a,0x2a,0x2a,0x08,0x14,0x23,0x42 -+// 36178 赒 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x17,0x25,0x42,0x04,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82,0xba,0xaa,0xba,0xaa,0x02,0x02,0x0e,0x04 -+// 36179 赓 ; -+,0x00,0x1f,0x10,0x17,0x10,0x1f,0x10,0x17,0x12,0x1f,0x12,0x12,0x12,0x20,0x23,0x4c,0x80,0xff,0x40,0xfc,0x44,0xff,0x84,0xfc,0x0c,0xfb,0x48,0x48,0x48,0xa0,0x18,0x08 -+// 36180 赔 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x08,0x14,0x12,0x22,0x40,0x00,0x20,0x10,0xff,0x00,0x84,0x66,0x28,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36181 赕 ; -+,0x00,0x3e,0x22,0x22,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x28,0x15,0x12,0x23,0x42,0x01,0x10,0x52,0x52,0x90,0x28,0x44,0x83,0x10,0x12,0x94,0x90,0x28,0x24,0x46,0x83,0x02 -+// 36182 赖 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x15,0x15,0x1f,0x04,0x0e,0x0d,0x15,0x24,0x44,0x04,0x04,0x10,0x10,0x9e,0x24,0x7e,0xa2,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x14,0x23,0x41,0x80 -+// 36183 赗 ; -+,0x00,0x3e,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x08,0x14,0x12,0x23,0x42,0x00,0x00,0xff,0x81,0xbd,0x81,0xbd,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x00 -+// 36184 赘 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x3f,0x09,0x11,0x23,0x4f,0x08,0x08,0x08,0x01,0x06,0x18,0x20,0xa0,0x3f,0x64,0x24,0x98,0x14,0x23,0x42,0xf8,0x88,0x88,0x88,0x60,0x18,0x08 -+// 36185 赙 ; -+,0x00,0x3e,0x23,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x09,0x14,0x12,0x22,0x40,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x84,0x44,0x54,0x08 -+// 36186 赚 ; -+,0x01,0x7c,0x44,0x55,0x54,0x55,0x54,0x57,0x54,0x55,0x54,0x10,0x29,0x26,0x44,0x00,0x04,0x86,0x48,0xff,0x48,0xfe,0x4a,0xff,0x4a,0xfe,0xc8,0xcc,0x4a,0x4b,0x4a,0x48 -+// 36187 赛 ; -+,0x00,0x3f,0x22,0x5f,0x02,0x1f,0x02,0x3f,0x04,0x1f,0x64,0x04,0x04,0x01,0x06,0x18,0x80,0xff,0x22,0xf8,0x20,0xfc,0x20,0xfe,0x18,0xf7,0x92,0x90,0x90,0x60,0x1c,0x08 -+// 36188 赜 ; -+,0x00,0x7f,0x44,0x44,0x44,0x5f,0x52,0x52,0x52,0x5e,0x44,0x44,0x44,0x7f,0x00,0x00,0x10,0xff,0x10,0xfe,0x10,0xff,0x00,0xfe,0x92,0x92,0x92,0x92,0x28,0x24,0x43,0x82 -+// 36189 赝 ; -+,0x1f,0x12,0x16,0x15,0x1e,0x14,0x14,0x14,0x17,0x14,0x14,0x14,0x24,0x21,0x42,0x04,0xff,0x90,0xfc,0x90,0xfc,0x90,0xfe,0x80,0xfc,0x44,0x44,0x44,0xa4,0x10,0x0c,0x08 -+// 36190 赞 ; -+,0x04,0x14,0x1f,0x24,0x3f,0x0a,0x13,0x62,0x0f,0x08,0x08,0x08,0x09,0x02,0x0c,0x30,0x10,0x50,0x7e,0x90,0x7e,0x28,0x49,0x87,0xf8,0x88,0x88,0x88,0x60,0x18,0x0c,0x08 -+// 36191 赟 ; -+,0x10,0x08,0x7e,0x25,0x14,0x09,0x15,0x23,0x40,0x0f,0x08,0x08,0x08,0x03,0x0c,0x30,0x08,0xea,0x0a,0xff,0x48,0x75,0x45,0xf3,0x00,0xf8,0x88,0x88,0x88,0x40,0x30,0x0c -+// 36192 赠 ; -+,0x00,0x7c,0x44,0x55,0x55,0x55,0x55,0x55,0x54,0x54,0x54,0x10,0x10,0x28,0x26,0x44,0x84,0x46,0x28,0xff,0x93,0x55,0x55,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 36193 赡 ; -+,0x00,0x3e,0x22,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x09,0x11,0x25,0x42,0x02,0x20,0x7e,0x84,0xff,0xa2,0xc9,0xbe,0x80,0xbe,0x80,0xbe,0x00,0x3e,0x22,0x3e,0x22 -+// 36194 赢 ; -+,0x00,0x7f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x00,0x3b,0x2a,0x3a,0x2a,0x38,0x29,0x5a,0x80,0xff,0x00,0xf8,0x00,0xfc,0x04,0xfc,0x00,0xee,0xaa,0xaa,0xae,0x8a,0x4a,0x33 -+// 36195 赣 ; -+,0x08,0x00,0x3f,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7e,0x08,0x08,0x09,0x20,0x3e,0x64,0x98,0x24,0xc3,0x7c,0x10,0xfe,0x00,0xfe,0x92,0x92,0xaa,0x44,0x83 -+// 36196 赤 ; -+,0x00,0x00,0x1f,0x00,0x00,0x7f,0x01,0x09,0x0d,0x09,0x12,0x22,0x44,0x04,0x08,0x10,0x80,0x80,0xfe,0x80,0x80,0xff,0x20,0x28,0x24,0x22,0x23,0x21,0x20,0x20,0xa0,0x40 -+// 36197 赥 ; -+,0x04,0x04,0x3f,0x04,0x04,0x3f,0x09,0x09,0x29,0x29,0x49,0x09,0x11,0x15,0x22,0x00,0x00,0x10,0x90,0x1f,0x21,0xa2,0x48,0x08,0x88,0x48,0x54,0x14,0x22,0x22,0x43,0x82 -+// 36198 赦 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x12,0x12,0x53,0x52,0x52,0x12,0x12,0x22,0x2a,0x44,0x20,0x20,0x20,0x20,0x3f,0xe2,0x42,0x24,0x14,0x88,0x88,0x14,0x14,0x22,0x43,0x82 -+// 36199 赧 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x0a,0x0a,0x2b,0x2a,0x4a,0x4a,0x12,0x12,0x2a,0x44,0x00,0x7e,0x42,0x42,0x4a,0xc4,0x40,0x5e,0x52,0xd2,0x52,0x4c,0x4a,0x53,0x62,0x40 -+// 36200 赨 ; -+,0x04,0x04,0x04,0x3f,0x04,0x7f,0x0a,0x0a,0x2b,0x2a,0x4a,0x12,0x12,0x22,0x2a,0x44,0x08,0x08,0x08,0x08,0x7f,0xc9,0x49,0x49,0x7f,0x88,0x88,0x0c,0x0a,0x0f,0xf1,0x00 -+// 36201 赩 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x12,0x12,0x33,0x52,0x52,0x12,0x22,0x2a,0x44,0x00,0x10,0x10,0x1f,0x22,0x24,0xfe,0x2a,0x2a,0x2a,0xbe,0xa0,0x20,0x21,0x21,0x1f,0x00 -+// 36202 赪 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x0a,0x0a,0x2b,0x2a,0x2a,0x4a,0x12,0x12,0x2e,0x44,0x08,0x08,0x0f,0x08,0x08,0xff,0x49,0x49,0x49,0xc9,0xc9,0x49,0x14,0x22,0x43,0x82 -+// 36203 赫 ; -+,0x08,0x08,0x3f,0x08,0x08,0x7f,0x14,0x14,0x56,0x55,0x55,0x15,0x24,0x24,0x54,0x08,0x08,0x08,0x7e,0x08,0x08,0x7f,0x24,0x24,0x66,0x65,0xa5,0x25,0x24,0x44,0x54,0x88 -+// 36204 赬 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x0a,0x0a,0x2b,0x2a,0x4a,0x12,0x12,0x22,0x2a,0x44,0x10,0x10,0x1e,0x10,0x7e,0xc2,0x7e,0x42,0x7e,0xc2,0x42,0x7e,0x00,0x24,0x26,0x42 -+// 36205 赭 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x12,0x12,0x52,0x53,0x52,0x12,0x12,0x2a,0x44,0x00,0x10,0x10,0x7f,0x12,0x14,0xff,0x08,0x10,0x3e,0x62,0xa2,0x3e,0x22,0x22,0x3e,0x22 -+// 36206 赮 ; -+,0x08,0x08,0x3e,0x08,0x08,0x7f,0x14,0x14,0x36,0x35,0x54,0x14,0x24,0x24,0x54,0x08,0x00,0xee,0xa2,0xa2,0xee,0xa0,0x80,0xee,0x92,0x92,0xec,0x8c,0x8c,0x92,0x93,0xa2 -+// 36207 赯 ; -+,0x08,0x08,0x3e,0x08,0x08,0x7f,0x14,0x14,0x36,0x35,0x54,0x54,0x14,0x25,0x4d,0x02,0x20,0x10,0xff,0x90,0xfe,0x92,0xff,0x92,0xfe,0x90,0xfe,0xc2,0xc2,0x7e,0x42,0x00 -+// 36208 走 ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0x08,0x08,0x08,0x08,0x14,0x22,0x41,0x00,0x80,0x80,0xfe,0x80,0x80,0x80,0xff,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0xff,0x00 -+// 36209 赱 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x3f,0x08,0x04,0x02,0x00,0x03,0x0c,0x73,0x20,0x00,0x80,0x80,0x80,0xfe,0x80,0x80,0xff,0x00,0x0c,0x30,0x60,0x80,0x00,0x00,0xff,0x00 -+// 36210 赲 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x2c,0x24,0x43,0x00,0x10,0x10,0x10,0x90,0x7e,0x12,0x92,0x12,0x12,0xa2,0x22,0x4a,0x84,0x00,0xff,0x00 -+// 36211 赳 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x17,0x14,0x14,0x2c,0x26,0x41,0x00,0x00,0x02,0x02,0x22,0x22,0x22,0xa2,0x22,0x2e,0xb2,0x22,0x02,0x02,0x00,0xff,0x00 -+// 36212 赴 ; -+,0x02,0x02,0x02,0x3f,0x02,0x02,0x7f,0x02,0x12,0x13,0x12,0x12,0x2a,0x26,0x43,0x00,0x10,0x10,0x10,0xd0,0x10,0x18,0xd6,0x13,0x12,0xd0,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36213 赵 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x2c,0x24,0x43,0x00,0x00,0x00,0x02,0x42,0x24,0x14,0x88,0x08,0x14,0x94,0x22,0x42,0x00,0x00,0xff,0x00 -+// 36214 赶 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x5c,0x47,0x00,0x00,0x00,0x7f,0x08,0x08,0x08,0x88,0x7f,0x08,0x88,0x08,0x08,0x08,0x00,0xff,0x00 -+// 36215 起 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x54,0x4f,0x00,0x00,0x00,0x7c,0x04,0x04,0x04,0x7c,0x40,0x40,0x42,0x42,0x3e,0x00,0x00,0xff,0x00 -+// 36216 赸 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x28,0x2e,0x28,0x28,0x28,0x58,0x4f,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x00,0x00,0xff,0x00 -+// 36217 赹 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x54,0x4f,0x00,0x20,0x20,0x20,0x3e,0x42,0x52,0x8a,0x06,0x0a,0xb2,0x02,0x02,0x14,0x08,0xff,0x00 -+// 36218 赺 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x54,0x4f,0x00,0x10,0x10,0x10,0x28,0x24,0x53,0x9a,0x08,0x7e,0x04,0x08,0x08,0x10,0x00,0xff,0x00 -+// 36219 赻 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x14,0x17,0x14,0x14,0x2c,0x26,0x41,0x00,0x08,0x08,0x08,0x2a,0x29,0xc9,0x48,0x8a,0x04,0x88,0x10,0x20,0x40,0x00,0xff,0x00 -+// 36220 赼 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x24,0x5f,0x00,0x20,0x30,0x20,0x3f,0x42,0x10,0x90,0x10,0x10,0xa8,0x24,0x43,0x82,0x00,0xff,0x00 -+// 36221 赽 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x55,0x4f,0x00,0x10,0x10,0x10,0x7c,0x14,0x14,0x94,0xff,0x10,0x28,0x28,0x44,0x86,0x04,0xff,0x00 -+// 36222 赾 ; -+,0x04,0x04,0x3f,0x04,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2d,0x43,0x00,0x00,0x0e,0x70,0x40,0x40,0x7f,0xc4,0x44,0x44,0x44,0x44,0x44,0x84,0x00,0xff,0x00 -+// 36223 赿 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2e,0x41,0x00,0x00,0x07,0x78,0x48,0x48,0x7f,0xc8,0x48,0x48,0x44,0x55,0x65,0x43,0x01,0xfe,0x00 -+// 36224 趀 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x27,0x24,0x24,0x25,0x54,0x4f,0x00,0x10,0x10,0x16,0x78,0x50,0x50,0xfe,0x32,0x32,0x52,0x5e,0x94,0x10,0x00,0xff,0x00 -+// 36225 趁 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x08,0x2e,0x28,0x28,0x29,0x58,0x47,0x00,0x10,0x10,0x28,0x44,0x8b,0x12,0x60,0x8c,0x30,0xc6,0x0c,0x30,0xc0,0x00,0xff,0x00 -+// 36226 趂 ; -+,0x04,0x04,0x1f,0x04,0x04,0x3f,0x04,0x14,0x14,0x17,0x14,0x14,0x14,0x2c,0x23,0x40,0x20,0x20,0xbf,0x22,0x40,0x88,0x08,0x2c,0x2a,0x4b,0x4a,0xa8,0x10,0x00,0xff,0x00 -+// 36227 趃 ; -+,0x04,0x04,0x3f,0x04,0x04,0x3e,0x05,0x04,0x24,0x27,0x24,0x24,0x24,0x55,0x4f,0x00,0x00,0x10,0x10,0x50,0x7e,0x90,0x10,0xff,0x10,0x28,0x24,0x43,0x82,0x00,0xff,0x00 -+// 36228 趄 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x25,0x24,0x5c,0x47,0x00,0x00,0x7c,0x44,0x44,0x7c,0x44,0xc4,0x7c,0x44,0x44,0x44,0xff,0x00,0x00,0xff,0x00 -+// 36229 超 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x54,0x4f,0x00,0x00,0xfe,0x22,0x22,0x22,0x2a,0x44,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00,0xff,0x00 -+// 36230 趆 ; -+,0x04,0x04,0x3f,0x04,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2c,0x47,0x00,0x00,0x0e,0x78,0x48,0x48,0x7f,0x48,0x48,0x48,0x48,0x49,0x65,0x53,0x08,0xff,0x00 -+// 36231 趇 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2c,0x26,0x41,0x00,0x10,0x0c,0x08,0x7f,0x00,0x42,0x22,0x32,0xa4,0x04,0xff,0x00,0x00,0x00,0xff,0x00 -+// 36232 趈 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x27,0x24,0x24,0x24,0x24,0x5c,0x47,0x00,0x10,0x10,0x10,0x1e,0x10,0x90,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00,0xff,0x00 -+// 36233 趉 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x34,0x4c,0x47,0x00,0x10,0x10,0x92,0x92,0x92,0xfe,0x92,0x10,0x92,0x92,0x92,0xfe,0x82,0x00,0xff,0x00 -+// 36234 越 ; -+,0x04,0x04,0x04,0x3e,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x54,0x4f,0x00,0x14,0x12,0x10,0xff,0x90,0x92,0x93,0x8a,0x8c,0xa9,0xd5,0xa3,0x01,0x00,0xfe,0x00 -+// 36235 趋 ; -+,0x04,0x04,0x3f,0x04,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2c,0x47,0x00,0x20,0x20,0x3e,0x44,0x88,0x7e,0x82,0x02,0x7e,0x82,0x02,0xfe,0x02,0x00,0xff,0x00 -+// 36236 趌 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x2c,0x26,0x41,0x00,0x08,0x08,0x08,0x7f,0x08,0x08,0xbf,0x00,0x3e,0xa2,0x22,0x3e,0x22,0x00,0xff,0x00 -+// 36237 趍 ; -+,0x04,0x04,0x04,0x3e,0x05,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x25,0x24,0x5f,0x00,0x20,0x3e,0x44,0xa8,0x10,0x30,0x50,0x9f,0x22,0x54,0x08,0x30,0xc0,0x00,0xff,0x00 -+// 36238 趎 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x25,0x24,0x34,0x4f,0x00,0x10,0x10,0x50,0x7e,0x90,0x10,0xfe,0x10,0x38,0x54,0x92,0x12,0x10,0x10,0xff,0x00 -+// 36239 趏 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2c,0x47,0x00,0x1e,0xf0,0x10,0x10,0xff,0x10,0x90,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00,0xff,0x00 -+// 36240 趐 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x54,0x4f,0x00,0x00,0xee,0x22,0x32,0xae,0x6a,0x22,0x66,0xaa,0x32,0x22,0x22,0xaa,0x44,0xfe,0x00 -+// 36241 趑 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x25,0x26,0x24,0x24,0x24,0x54,0x4f,0x00,0x08,0x88,0x4f,0x51,0x22,0x48,0x48,0x48,0x94,0x92,0xa1,0x21,0x40,0x00,0xff,0x00 -+// 36242 趒 ; -+,0x08,0x08,0x3e,0x09,0x08,0x7f,0x0c,0x09,0x28,0x2f,0x28,0x28,0x29,0x58,0x47,0x00,0x50,0x50,0x52,0x54,0xd8,0x50,0xd8,0x56,0x54,0x50,0x51,0x8f,0x00,0x00,0xff,0x00 -+// 36243 趓 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x25,0x54,0x4f,0x00,0x00,0x7c,0x44,0x44,0x44,0x83,0x10,0xfe,0x38,0x54,0x53,0x92,0x10,0x10,0xff,0x00 -+// 36244 趔 ; -+,0x08,0x09,0x3e,0x08,0x08,0x7e,0x09,0x2b,0x28,0x2e,0x28,0x28,0x29,0x58,0x47,0x00,0x02,0xf2,0x8a,0x8a,0xea,0xaa,0x2a,0x2a,0xaa,0x4a,0x42,0x8a,0x04,0x00,0xff,0x00 -+// 36245 趕 ; -+,0x04,0x04,0x04,0x3e,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2c,0x43,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 36246 趖 ; -+,0x08,0x08,0x3e,0x08,0x09,0x3e,0x08,0x09,0x28,0x2f,0x28,0x2b,0x28,0x58,0x47,0x00,0x20,0x24,0xa4,0xa4,0x6a,0x31,0x20,0xfe,0x20,0x20,0x20,0xff,0x00,0x00,0xff,0x00 -+// 36247 趗 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x2d,0x26,0x41,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x88,0x48,0x4e,0xc8,0x48,0xa8,0x1f,0x00,0xff,0x00 -+// 36248 趘 ; -+,0x04,0x04,0x3e,0x04,0x04,0x7f,0x04,0x04,0x14,0x17,0x14,0x14,0x15,0x2e,0x43,0x00,0x00,0xfe,0x82,0xfe,0x80,0x8e,0xb8,0x8e,0xb8,0x8f,0xf8,0x89,0x07,0x00,0xff,0x00 -+// 36249 趙 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x28,0x2e,0x28,0x28,0x28,0x28,0x5f,0x00,0x10,0x92,0xd3,0x54,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x8a,0x84,0x00,0xff,0x00 -+// 36250 趚 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x27,0x24,0x24,0x24,0x25,0x5c,0x47,0x00,0x10,0x10,0xff,0x10,0x7e,0xd2,0x52,0x7e,0x38,0x34,0x53,0x91,0x10,0x10,0xff,0x00 -+// 36251 趛 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x25,0x24,0x54,0x4f,0x00,0x10,0x10,0x28,0x44,0xff,0x10,0x10,0x7e,0x10,0x54,0x38,0xff,0x00,0x00,0xff,0x00 -+// 36252 趜 ; -+,0x08,0x08,0x08,0x3e,0x09,0x08,0x7f,0x08,0x28,0x2e,0x29,0x28,0x28,0x58,0x47,0x00,0x40,0x40,0x7e,0xa2,0x26,0xaa,0xfe,0x22,0x72,0xaa,0x22,0x22,0x2a,0x04,0xff,0x00 -+// 36253 趝 ; -+,0x08,0x08,0x3e,0x08,0x09,0x08,0x7f,0x08,0x28,0x2e,0x29,0x29,0x38,0x4c,0x43,0x00,0x10,0x10,0x28,0x44,0x93,0xfc,0x08,0x10,0x24,0x53,0x4a,0x44,0x3c,0x00,0xff,0x00 -+// 36254 趞 ; -+,0x04,0x04,0x04,0x3e,0x04,0x04,0x7f,0x04,0x14,0x17,0x14,0x14,0x14,0x2c,0x27,0x40,0x24,0x24,0x24,0xff,0x24,0x24,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xff,0x00 -+// 36255 趟 ; -+,0x08,0x09,0x08,0x3e,0x08,0x09,0x7f,0x09,0x29,0x2f,0x29,0x29,0x29,0x5d,0x43,0x00,0x20,0x24,0xa6,0xa8,0x20,0xfc,0x04,0x74,0x54,0x54,0x74,0x04,0x14,0x08,0xff,0x00 -+// 36256 趠 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x17,0x14,0x14,0x14,0x2c,0x47,0x00,0x10,0x10,0x1e,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x10,0x10,0x10,0xff,0x00 -+// 36257 趡 ; -+,0x08,0x08,0x08,0x3e,0x09,0x08,0x7f,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x5f,0x00,0x50,0x68,0x48,0xfe,0x90,0xfc,0x90,0x90,0xfc,0x90,0x90,0xfe,0x80,0x00,0xff,0x00 -+// 36258 趢 ; -+,0x08,0x08,0x08,0x3f,0x08,0x08,0x7f,0x08,0x28,0x2e,0x28,0x29,0x28,0x38,0x47,0x00,0x00,0xfc,0x04,0x7c,0x04,0xff,0x10,0x92,0x54,0x38,0x56,0x92,0x50,0x20,0xff,0x00 -+// 36259 趣 ; -+,0x08,0x09,0x08,0x3e,0x08,0x08,0x7f,0x08,0x28,0x2e,0x28,0x2b,0x58,0x46,0x01,0x00,0x00,0xf8,0xa0,0xaf,0xf2,0xaa,0xa4,0xe4,0xa4,0xaa,0xe9,0x31,0x20,0x00,0xfe,0x00 -+// 36260 趤 ; -+,0x04,0x04,0x04,0x3e,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x54,0x4f,0x00,0x20,0x10,0xff,0x81,0x00,0xff,0x10,0x20,0x7e,0xa2,0x22,0x3e,0x22,0x00,0xff,0x00 -+// 36261 趥 ; -+,0x04,0x04,0x3e,0x04,0x04,0x7f,0x04,0x04,0x27,0x24,0x24,0x24,0x24,0x5c,0x47,0x00,0x42,0x24,0xff,0x28,0xfe,0xaa,0xaa,0xae,0xc2,0xfe,0x82,0xfe,0x82,0x00,0xff,0x00 -+// 36262 趦 ; -+,0x08,0x09,0x08,0x3e,0x08,0x08,0x7f,0x09,0x28,0x2e,0x28,0x28,0x28,0x58,0x47,0x00,0x10,0x10,0x9e,0x2a,0x88,0x88,0x14,0x23,0xfc,0x84,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 36263 趧 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x24,0x27,0x24,0x24,0x24,0x5d,0x47,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x08,0x4e,0x48,0x48,0xbf,0x00,0xff,0x00 -+// 36264 趨 ; -+,0x08,0x08,0x3e,0x09,0x08,0x7e,0x08,0x08,0x29,0x2e,0x28,0x28,0x28,0x58,0x4f,0x00,0x40,0x7e,0x82,0xaa,0xfa,0x42,0x8c,0xfe,0x22,0xaa,0xfa,0x22,0x4a,0x84,0xff,0x00 -+// 36265 趩 ; -+,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x09,0x28,0x2e,0x29,0x28,0x28,0x58,0x4f,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x44,0xff,0x44,0x44,0xff,0x44,0x43,0x82,0xff,0x00 -+// 36266 趪 ; -+,0x08,0x08,0x09,0x3e,0x09,0x08,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x59,0x4f,0x00,0x44,0x44,0xfe,0x44,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x44,0x82,0x01,0xff,0x00 -+// 36267 趫 ; -+,0x08,0x08,0x3e,0x09,0x08,0x7e,0x09,0x2a,0x2e,0x28,0x28,0x28,0x28,0x4c,0x43,0x00,0x04,0xfe,0x20,0xff,0x44,0xfc,0x4a,0x79,0x00,0xfe,0xaa,0xba,0x82,0x86,0xff,0x00 -+// 36268 趬 ; -+,0x08,0x08,0x3e,0x09,0x08,0x7e,0x08,0x29,0x2e,0x29,0x28,0x28,0x28,0x59,0x47,0x00,0x10,0xfc,0x10,0xff,0x44,0xee,0x44,0xef,0x00,0xfe,0x48,0x49,0x87,0x00,0xff,0x00 -+// 36269 趭 ; -+,0x08,0x08,0x3e,0x09,0x08,0x7e,0x08,0x08,0x28,0x2e,0x29,0x29,0x2a,0x58,0x47,0x00,0x50,0x48,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0x54,0x2a,0x2a,0x00,0xff,0x00 -+// 36270 趮 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x7e,0x08,0x29,0x2e,0x28,0x28,0x29,0x58,0x47,0x00,0x7c,0x44,0x7c,0x00,0xee,0xaa,0xee,0x10,0xff,0x38,0x54,0x93,0x12,0x10,0xff,0x00 -+// 36271 趯 ; -+,0x09,0x09,0x08,0x7e,0x09,0x08,0x7e,0x09,0x2a,0x2e,0x28,0x28,0x28,0x58,0x47,0x00,0xee,0x22,0xaa,0x66,0xaa,0x50,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0xff,0x00 -+// 36272 趰 ; -+,0x08,0x09,0x3e,0x09,0x0a,0x08,0x7e,0x08,0x28,0x2e,0x28,0x28,0x28,0x58,0x47,0x00,0x00,0xff,0x94,0x12,0xff,0x92,0xb6,0xda,0xb6,0xda,0xb6,0x92,0x96,0x00,0xff,0x00 -+// 36273 趱 ; -+,0x08,0x0a,0x0b,0x3e,0x09,0x09,0x7e,0x09,0x29,0x2f,0x29,0x28,0x28,0x59,0x4f,0x00,0x94,0x9e,0xd4,0xbf,0xe8,0x55,0x67,0xfc,0x24,0x24,0x24,0x50,0x8c,0x08,0xff,0x00 -+// 36274 趲 ; -+,0x0a,0x0b,0x3e,0x0b,0x09,0x09,0x7e,0x08,0x28,0x2e,0x28,0x28,0x28,0x58,0x47,0x00,0x88,0xfe,0xa8,0xfe,0x49,0x57,0xfe,0x82,0xaa,0xaa,0x82,0xfe,0x44,0x82,0xfe,0x00 -+// 36275 足 ; -+,0x00,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x04,0x04,0x04,0x04,0x0a,0x11,0x20,0x40,0x00,0xf8,0x08,0x08,0x08,0xf8,0x88,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0x7f,0x00 -+// 36276 趴 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x2a,0x2d,0x32,0x44,0x00,0x08,0x08,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x84,0x84,0x84,0x02,0x03,0x02,0x00 -+// 36277 趵 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x2f,0x28,0x28,0x28,0x2f,0x78,0x00,0x00,0x40,0x60,0x40,0x7e,0x82,0x82,0x42,0x22,0x12,0x12,0x02,0x02,0x02,0x22,0x14,0x08 -+// 36278 趶 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x2f,0x28,0x28,0x28,0x2f,0x70,0x00,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 36279 趷 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x38,0x60,0x00,0x40,0x60,0x40,0x7f,0x80,0x00,0xfe,0x04,0x08,0x10,0x20,0x42,0x82,0x82,0x7e,0x00 -+// 36280 趸 ; -+,0x00,0x7f,0x02,0x03,0x04,0x08,0x10,0x0f,0x08,0x0f,0x00,0x08,0x08,0x14,0x23,0x40,0x00,0xff,0x00,0xf8,0x08,0x28,0x10,0xf8,0x08,0xf8,0x80,0xfe,0x80,0x80,0xff,0x00 -+// 36281 趹 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2f,0x70,0x01,0x02,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0xff,0x10,0x28,0x28,0x44,0x86,0x03,0x02 -+// 36282 趺 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x28,0x2e,0x30,0x41,0x02,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x83,0x02,0x00 -+// 36283 趻 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x20,0x20,0x20,0x50,0x48,0xa4,0x93,0x10,0x00,0xfe,0x02,0x04,0x04,0x08,0x08,0x10 -+// 36284 趼 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x2a,0x09,0x28,0x2f,0x28,0x28,0x2b,0x3c,0x60,0x01,0x02,0x00,0xff,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x84,0x84,0x04,0x04 -+// 36285 趽 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x2b,0x2c,0x70,0x01,0x02,0x20,0x10,0x18,0x10,0xff,0x20,0x20,0x3c,0x24,0x44,0x44,0x44,0x84,0x84,0x14,0x08 -+// 36286 趾 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x2a,0x08,0x28,0x2f,0x28,0x28,0x2b,0x3c,0x63,0x00,0x08,0x08,0x08,0x08,0x08,0x48,0x4f,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0xff,0x00 -+// 36287 趿 ; -+,0x00,0x3f,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x29,0x2d,0x72,0x04,0x01,0x00,0xfe,0x44,0x44,0x48,0x5e,0x4a,0xc2,0xa4,0xa4,0x98,0x18,0x24,0x43,0x82,0x00 -+// 36288 跀 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2f,0x28,0x28,0x28,0x2e,0x39,0x61,0x02,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x82,0x82,0x12,0x0a,0x04 -+// 36289 跁 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x82,0x82,0x83,0x7e,0x00 -+// 36290 跂 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2f,0x78,0x00,0x01,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x44,0x44,0x28,0x10,0x28,0x44,0x83,0x02 -+// 36291 跃 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x01,0x02,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x28,0x28,0x44,0x44,0x82,0x83,0x02,0x00 -+// 36292 跄 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x28,0x2f,0x28,0x28,0x2f,0x78,0x20,0x00,0x20,0x20,0x50,0x48,0x84,0x83,0x7e,0x44,0x44,0x44,0x5c,0x48,0x42,0x43,0x3e,0x00 -+// 36293 跅 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x2f,0x39,0x62,0x04,0x00,0x04,0xfe,0x80,0x80,0x80,0xff,0x88,0x88,0x98,0x8c,0x8a,0x09,0x08,0x08,0x08,0x00 -+// 36294 跆 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x28,0x08,0x2f,0x28,0x28,0x28,0x2b,0x3c,0x60,0x00,0x10,0x18,0x20,0x24,0x42,0x9f,0xf1,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36295 跇 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x28,0x08,0x2e,0x28,0x28,0x28,0x2e,0x78,0x00,0x00,0x24,0xa4,0xa4,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xbc,0xa4,0x80,0x80,0x80,0xff,0x00 -+// 36296 跈 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x2e,0x28,0x28,0x28,0x2f,0x78,0x23,0x00,0x20,0x20,0x50,0x48,0x84,0x0b,0x32,0xc4,0x0e,0x30,0xc3,0x06,0x18,0x60,0x80,0x00 -+// 36297 跉 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x2e,0x28,0x28,0x28,0x2f,0x38,0x60,0x00,0x10,0x10,0x28,0x28,0x44,0xa3,0x12,0x10,0xfe,0x02,0x84,0x48,0x30,0x18,0x08,0x00 -+// 36298 跊 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x2e,0x38,0x61,0x00,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x10,0x38,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 36299 跋 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x08,0x08,0x2e,0x28,0x28,0x2e,0x39,0x62,0x04,0x01,0x20,0x28,0x24,0x24,0xff,0x20,0x7e,0x42,0x44,0x64,0xa8,0x90,0x28,0x46,0x83,0x02 -+// 36300 跌 ; -+,0x00,0x3e,0x22,0x22,0x22,0x23,0x3e,0x09,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x01,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x46,0x83,0x02 -+// 36301 跍 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36302 跎 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x28,0x08,0x2f,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x20,0x18,0x10,0xff,0x82,0x20,0x20,0x24,0x2c,0x30,0x20,0x22,0x22,0x23,0x1e,0x00 -+// 36303 跏 ; -+,0x00,0x3c,0x24,0x27,0x24,0x3c,0x08,0x28,0x2e,0x28,0x28,0x2f,0x79,0x02,0x04,0x08,0x80,0x80,0x80,0xef,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x29,0x2f,0x29,0xa9,0x40 -+// 36304 跐 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x09,0x09,0x2f,0x29,0x29,0x29,0x2f,0x39,0x63,0x00,0x08,0x48,0x48,0x48,0x48,0x4b,0x7c,0x48,0x48,0x48,0x48,0x48,0x79,0xc9,0x07,0x00 -+// 36305 跑 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x29,0x08,0x2f,0x28,0x28,0x28,0x28,0x2f,0x70,0x00,0x40,0x60,0x40,0x7e,0x82,0xfa,0x4a,0x4a,0x4a,0x7a,0x4a,0x44,0x41,0x41,0x3f,0x00 -+// 36306 跒 ; -+,0x00,0x3f,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x2f,0x70,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0x04,0x14,0x08 -+// 36307 跓 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x71,0x00,0x00,0x40,0x30,0x10,0xfe,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 36308 跔 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x40,0x60,0x40,0xfe,0x82,0x02,0xf2,0x92,0x92,0x92,0xf2,0x92,0x02,0x02,0x0a,0x04 -+// 36309 跕 ; -+,0x00,0x1f,0x11,0x11,0x11,0x1f,0x04,0x24,0x27,0x24,0x24,0x27,0x2c,0x70,0x00,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36310 跖 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x28,0x2f,0x28,0x28,0x28,0x2f,0x70,0x00,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x40,0xfe,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36311 跗 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x0a,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x44,0x64,0x44,0x84,0xff,0x84,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x84,0x94,0x88 -+// 36312 跘 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x28,0x2e,0x29,0x28,0x28,0x2e,0x70,0x00,0x00,0x10,0x10,0x92,0x52,0x54,0xff,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 36313 跙 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x38,0x63,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0x84,0xff,0x00 -+// 36314 跚 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x09,0x0b,0x29,0x2f,0x29,0x29,0x2f,0x39,0x61,0x02,0x04,0x00,0xde,0x52,0x52,0x52,0x52,0xff,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0xe6 -+// 36315 跛 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x28,0x08,0x2e,0x28,0x28,0x28,0x3f,0x61,0x02,0x05,0x10,0x10,0xff,0x92,0x94,0x90,0xbc,0xc4,0xc4,0xa8,0xa8,0x90,0x28,0x44,0x83,0x02 -+// 36316 跜 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x2e,0x39,0x61,0x02,0x04,0x00,0xfe,0x82,0x82,0x82,0xfe,0x80,0xa0,0xa4,0xac,0xb0,0xa0,0x21,0x21,0x1f,0x00 -+// 36317 距 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x38,0x60,0x00,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0xff,0x00 -+// 36318 跞 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x71,0x00,0x00,0x00,0x7e,0x40,0x48,0x48,0x88,0xff,0x08,0x08,0x4a,0x6a,0x49,0x89,0x08,0x28,0x10 -+// 36319 跟 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x90,0x92,0x8c,0x88,0x84,0xa4,0xc3,0x82 -+// 36320 跠 ; -+,0x00,0x3e,0x23,0x22,0x3e,0x28,0x08,0x0e,0x29,0x28,0x28,0x2f,0x38,0x60,0x01,0x02,0x10,0x10,0xff,0x10,0xfe,0x12,0xfe,0x90,0xff,0x91,0x11,0x2b,0x48,0x84,0x03,0x02 -+// 36321 跡 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x09,0x09,0x2d,0x2a,0x28,0x28,0x2e,0x71,0x02,0x04,0x40,0x30,0x10,0xff,0x48,0x48,0x48,0xcc,0x4a,0x4b,0x4a,0x88,0x88,0x08,0x28,0x10 -+// 36322 跢 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x03,0x00,0x20,0x20,0x3e,0x44,0xa8,0x10,0x20,0x50,0x9f,0x22,0xc4,0x28,0x10,0x60,0x80,0x00 -+// 36323 跣 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3d,0x0a,0x09,0x2e,0x28,0x28,0x28,0x2e,0x71,0x02,0x04,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xff,0x48,0x48,0x48,0x88,0x89,0x09,0x07,0x00 -+// 36324 跤 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x08,0x2f,0x28,0x28,0x28,0x28,0x2e,0x70,0x01,0x20,0x18,0x10,0xff,0x00,0x44,0x63,0x82,0x44,0x44,0x28,0x10,0x28,0x44,0x83,0x02 -+// 36325 跥 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x09,0x2e,0x29,0x28,0x2e,0x38,0x61,0x02,0x00,0x00,0xf8,0x48,0x4e,0x42,0x82,0x8a,0x24,0x20,0xfe,0x70,0x68,0xa4,0x23,0x22,0x20 -+// 36326 跦 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3d,0x28,0x09,0x2e,0x28,0x28,0x2e,0x38,0x61,0x02,0x00,0x10,0x90,0x90,0xfe,0x10,0x10,0x10,0xff,0x38,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 36327 跧 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x0a,0x08,0x28,0x2e,0x28,0x28,0x2e,0x38,0x63,0x00,0x10,0x10,0x28,0x44,0x82,0x01,0xfc,0x20,0x20,0x20,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 36328 跨 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3d,0x0a,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x20,0x20,0xff,0x48,0x84,0xff,0x02,0x00,0xff,0x40,0x40,0x7c,0x04,0x04,0x14,0x08 -+// 36329 跩 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x29,0x09,0x08,0x2c,0x28,0x28,0x2e,0x38,0x61,0x00,0x20,0x20,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0x28,0x2c,0x10,0x29,0x45,0x82,0x00 -+// 36330 跪 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x09,0x09,0x2d,0x29,0x29,0x29,0x2d,0x72,0x04,0x08,0x40,0x7e,0x84,0x08,0xff,0x00,0x00,0x7c,0x44,0x44,0x54,0x48,0x41,0x41,0x3f,0x00 -+// 36331 跫 ; -+,0x1e,0x04,0x04,0x04,0x1e,0x01,0x0f,0x08,0x08,0x0f,0x00,0x04,0x04,0x0a,0x11,0x20,0x78,0x48,0x68,0x58,0x89,0x07,0xf8,0x08,0x08,0xf8,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 36332 跬 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x2a,0x08,0x28,0x2e,0x28,0x28,0x2e,0x38,0x61,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 36333 跭 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x09,0x08,0x2e,0x28,0x28,0x29,0x2e,0x70,0x00,0x00,0x40,0x7c,0xc4,0x48,0x30,0x4c,0x93,0x10,0xfe,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 36334 跮 ; -+,0x00,0x3d,0x24,0x24,0x24,0x3c,0x09,0x08,0x2e,0x29,0x28,0x28,0x2e,0x70,0x03,0x00,0x00,0xfe,0x20,0x24,0x42,0x9f,0xf2,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 36335 路 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3e,0x28,0x08,0x2e,0x29,0x28,0x28,0x2e,0x70,0x00,0x00,0x40,0x40,0x7e,0xc4,0x24,0x28,0x10,0x2c,0xc3,0xfe,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 36336 跰 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x28,0x2e,0x70,0x01,0x02,0x84,0x46,0x48,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 36337 跱 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x2b,0x2c,0x70,0x00,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x04,0x04,0xff,0x04,0x44,0x24,0x04,0x04,0x14,0x08 -+// 36338 跲 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x10,0x10,0x28,0x24,0x42,0x83,0xfe,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 36339 跳 ; -+,0x00,0x3c,0x24,0x26,0x25,0x3c,0x08,0x28,0x2f,0x2a,0x28,0x28,0x2e,0x71,0x02,0x04,0x50,0x50,0x50,0x52,0x57,0xd8,0x50,0xd0,0x58,0x54,0x52,0x90,0x92,0x13,0x1e,0x00 -+// 36340 跴 ; -+,0x00,0x3f,0x24,0x24,0x24,0x3d,0x09,0x09,0x2f,0x29,0x29,0x29,0x2f,0x71,0x01,0x00,0x00,0xff,0x48,0x48,0x48,0xfe,0x4a,0x4a,0x4a,0x4a,0x8e,0x02,0x02,0xfe,0x02,0x00 -+// 36341 践 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2f,0x78,0x00,0x00,0x20,0x28,0x26,0x24,0x3f,0xe0,0x20,0x3f,0xe0,0x12,0x14,0x18,0x28,0x49,0x85,0x02 -+// 36342 跶 ; -+,0x00,0x3f,0x22,0x22,0x22,0x3e,0x09,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x01,0x02,0x08,0x08,0x88,0xc8,0xbf,0x08,0x88,0x88,0x94,0x92,0xa3,0xa2,0x80,0x80,0x7f,0x00 -+// 36343 跷 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x28,0x2e,0x29,0x28,0x2b,0x2c,0x70,0x01,0x02,0x20,0x20,0x3f,0xe0,0x26,0x18,0x69,0x85,0x02,0xfe,0x50,0x50,0x51,0x91,0x0f,0x00 -+// 36344 跸 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x29,0x28,0x2e,0x70,0x00,0x00,0x88,0x88,0x8a,0xec,0x88,0xa9,0xc9,0x87,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 36345 跹 ; -+,0x00,0x3c,0x26,0x25,0x25,0x3c,0x0b,0x08,0x2e,0x28,0x28,0x28,0x2e,0x31,0x42,0x00,0x00,0x06,0x78,0x88,0x08,0x08,0xff,0x88,0x88,0x88,0x88,0x88,0x88,0x40,0x3f,0x00 -+// 36346 跺 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x09,0x2c,0x2b,0x28,0x2a,0x2d,0x72,0x04,0x00,0x00,0x78,0x48,0x48,0x48,0x88,0x87,0x20,0x20,0xff,0x70,0xa8,0x27,0x22,0x20,0x20 -+// 36347 跻 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x08,0x09,0x2e,0x28,0x28,0x2a,0x2c,0x70,0x01,0x02,0x20,0x10,0xff,0x84,0x48,0x30,0x48,0x87,0x4a,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 36348 跼 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x29,0x3f,0x61,0x02,0x04,0x00,0xfe,0x82,0x82,0xfe,0x80,0xff,0x81,0xbd,0xa5,0xa5,0x3d,0x25,0x01,0x05,0x02 -+// 36349 跽 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x29,0x29,0x3d,0x62,0x00,0x00,0x00,0xfc,0x04,0x04,0xfc,0x81,0x81,0x7f,0x00,0x20,0x5a,0x51,0x45,0x44,0x3c,0x00 -+// 36350 跾 ; -+,0x08,0x0c,0x1a,0x32,0x52,0x12,0x12,0x10,0x0f,0x08,0x0f,0x00,0x08,0x08,0x16,0x21,0x20,0x20,0x7f,0x44,0xa8,0x10,0x2c,0x43,0xf8,0x08,0xf8,0x80,0xf8,0x80,0x80,0xff -+// 36351 跿 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x29,0x08,0x28,0x2e,0x28,0x28,0x2e,0x71,0x02,0x04,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x90,0x9e,0x90,0x90,0x90,0x50,0x3f,0x00 -+// 36352 踀 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x71,0x02,0x04,0x00,0x7e,0x42,0x42,0x42,0x7e,0x08,0x48,0x4f,0x48,0x48,0x48,0xa8,0x18,0x0f,0x02 -+// 36353 踁 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x2e,0x29,0x28,0x28,0x2e,0x70,0x03,0x00,0x00,0xff,0x00,0x92,0x92,0xa4,0x22,0x91,0x49,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36354 踂 ; -+,0x00,0x3f,0x25,0x25,0x25,0x3d,0x09,0x29,0x2f,0x29,0x29,0x29,0x2f,0x70,0x00,0x00,0x00,0xff,0x24,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x24,0xf4,0x25,0x25,0x27,0x20 -+// 36355 踃 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x10,0x12,0x93,0x52,0x54,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 36356 踄 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x08,0x2e,0x28,0x28,0x29,0x2e,0x70,0x00,0x03,0x10,0x10,0x1e,0x90,0x90,0x90,0xff,0x10,0x92,0xd3,0x96,0x0c,0x18,0x30,0xc0,0x00 -+// 36357 踅 ; -+,0x08,0x7f,0x08,0x0e,0x38,0x08,0x19,0x0f,0x08,0x0f,0x08,0x00,0x04,0x04,0x0a,0x11,0x06,0x78,0x40,0x7f,0x48,0x88,0x08,0xf8,0x08,0xf8,0x80,0x80,0xfc,0x80,0x80,0xff -+// 36358 踆 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x29,0x28,0x2e,0x78,0x20,0x03,0x20,0x30,0x44,0xfe,0x02,0x44,0xc3,0x21,0x7e,0xc2,0x24,0x28,0x10,0x28,0xc7,0x02 -+// 36359 踇 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x08,0x28,0x2f,0x28,0x28,0x2e,0x38,0x60,0x00,0x00,0x40,0x40,0xfe,0x80,0xfc,0x84,0xb4,0x94,0xff,0x84,0xb4,0x94,0xff,0x04,0x1c,0x08 -+// 36360 踈 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x79,0x02,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x38,0x38,0x54,0x94,0x13,0x12,0x10 -+// 36361 踉 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x78,0x20,0x00,0x20,0x10,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0xa2,0x96,0x88,0xac,0xc7,0x82,0x00 -+// 36362 踊 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0xfe,0x02,0x24,0x18,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x96 -+// 36363 踋 ; -+,0x00,0x3c,0x24,0x27,0x3c,0x08,0x0b,0x28,0x2e,0x28,0x29,0x2e,0x73,0x20,0x00,0x00,0x80,0x8f,0x89,0xe9,0x89,0x89,0xe9,0x89,0x89,0x8d,0x4a,0x68,0xa8,0x08,0x08,0x08 -+// 36364 踌 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x28,0x2f,0x71,0x02,0x00,0x20,0x20,0xff,0x20,0xfc,0x20,0x20,0xff,0x44,0x44,0xbf,0xa4,0x24,0x04,0x14,0x08 -+// 36365 踍 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x2e,0x29,0x28,0x28,0x2e,0x70,0x00,0x00,0x20,0x24,0xfe,0x24,0x28,0xff,0x20,0x7e,0x84,0x08,0xff,0x08,0x08,0x08,0x28,0x10 -+// 36366 踎 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0xff,0x08,0x10,0x34,0x53,0x91,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36367 踏 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x28,0x2e,0x78,0x00,0x00,0x10,0x12,0xf3,0x34,0x58,0x54,0x93,0x32,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x00 -+// 36368 踐 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x09,0x08,0x2e,0x2b,0x28,0x28,0x2e,0x70,0x03,0x00,0x40,0x48,0xfc,0x20,0x2a,0x72,0x92,0x4c,0x4f,0xf0,0x24,0x28,0x31,0xc9,0x06,0x00 -+// 36369 踑 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x29,0x28,0x2f,0x70,0x01,0x02,0x44,0x44,0xff,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0xff,0x48,0x64,0x82,0x03,0x02 -+// 36370 踒 ; -+,0x00,0x3c,0x24,0x25,0x24,0x3c,0x08,0x29,0x2e,0x29,0x28,0x28,0x2e,0x38,0x61,0x06,0x0c,0xf0,0x10,0xff,0x38,0x54,0x93,0x12,0x40,0xff,0x44,0xc8,0x30,0x48,0x86,0x02 -+// 36371 踓 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x2e,0x28,0x28,0x28,0x2f,0x78,0x00,0x00,0x50,0x4c,0x48,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x80,0x00 -+// 36372 踔 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x29,0x28,0x2e,0x70,0x00,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 36373 踕 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x09,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x01,0x02,0x10,0x10,0xff,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x9e,0x90,0x90,0x90,0x7f,0x00 -+// 36374 踖 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x09,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x48,0x48,0x48,0xfe,0x48,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 36375 踗 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x2a,0x08,0x2e,0x28,0x28,0x2e,0x1a,0x62,0x00,0x00,0x10,0x10,0x28,0x44,0xa3,0x12,0xfc,0x04,0x08,0x20,0x94,0x93,0x85,0x84,0x7c,0x00 -+// 36376 踘 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x08,0x09,0x2e,0x28,0x28,0x29,0x2e,0x70,0x00,0x00,0x40,0x40,0x7e,0x82,0x22,0xaa,0x72,0xfe,0x62,0x72,0xaa,0x2a,0x22,0x22,0x2a,0x04 -+// 36377 踙 ; -+,0x00,0x3f,0x25,0x25,0x25,0x3d,0x09,0x09,0x2f,0x29,0x29,0x29,0x2f,0x70,0x00,0x00,0x00,0xf0,0x2f,0x2a,0xea,0x2a,0x2a,0xea,0x24,0x24,0x24,0xf4,0x2a,0x33,0x22,0x20 -+// 36378 踚 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x0a,0x09,0x2f,0x29,0x29,0x2f,0x39,0x61,0x01,0x00,0x10,0x10,0x28,0x44,0x82,0xfd,0x00,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0x06,0x00 -+// 36379 踛 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x2e,0x29,0x28,0x28,0x2f,0x78,0x01,0x00,0x10,0x10,0x7e,0x10,0x10,0xff,0x28,0x46,0x92,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 36380 踜 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x08,0x08,0x2f,0x28,0x28,0x28,0x2e,0x70,0x00,0x03,0x10,0x10,0xfe,0x10,0xff,0x48,0x44,0xa2,0x3c,0x44,0x44,0xa8,0x10,0x2c,0xc3,0x02 -+// 36381 踝 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2f,0x28,0x28,0x28,0x3e,0x61,0x02,0x00,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x30,0x58,0x54,0x96,0x13,0x12,0x10 -+// 36382 踞 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x2a,0x08,0x28,0x2e,0x28,0x28,0x29,0x2f,0x71,0x02,0x04,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0xff,0x90,0x90,0xfe,0x42,0x42,0x42,0x7e,0x42 -+// 36383 踟 ; -+,0x01,0x3d,0x25,0x25,0x26,0x3c,0x28,0x09,0x2e,0x28,0x28,0x29,0x3d,0x62,0x04,0x00,0x00,0x80,0x1e,0xf2,0x92,0x92,0x92,0xf2,0x92,0x92,0x92,0x5e,0x32,0x32,0x10,0x00 -+// 36384 踠 ; -+,0x00,0x3c,0x25,0x25,0x26,0x3c,0x08,0x08,0x29,0x2a,0x28,0x28,0x3c,0x61,0x06,0x00,0x20,0x10,0xff,0x02,0x80,0x80,0xee,0xaa,0x2a,0xaa,0x4e,0x48,0x89,0x09,0x07,0x00 -+// 36385 踡 ; -+,0x00,0x3d,0x24,0x24,0x25,0x3c,0x0b,0x08,0x2e,0x29,0x2a,0x28,0x2e,0x78,0x00,0x00,0x20,0x24,0xa8,0x20,0xfe,0x40,0xff,0x48,0x84,0xfb,0x8a,0xa8,0x92,0x82,0x7e,0x00 -+// 36386 踢 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x29,0x2a,0x28,0x29,0x2c,0x71,0x00,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x80,0xff,0x29,0x49,0x91,0x21,0x41,0x8a,0x04 -+// 36387 踣 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x28,0x2f,0x70,0x00,0x00,0x20,0x10,0xff,0x00,0x84,0x48,0x00,0xff,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36388 踤 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x09,0x09,0x2e,0x28,0x29,0x28,0x2e,0x70,0x00,0x00,0x40,0x20,0xfe,0x88,0x88,0x88,0x54,0x22,0x52,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 36389 踥 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x29,0x08,0x2e,0x29,0x28,0x28,0x2e,0x70,0x00,0x01,0x40,0x20,0xfe,0x00,0x44,0x28,0xff,0x20,0x20,0xfe,0x48,0x48,0x30,0x48,0x86,0x04 -+// 36390 踦 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x0b,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x20,0x20,0xfe,0x20,0x50,0x88,0xff,0x04,0xf4,0x94,0x94,0xf4,0x94,0x04,0x14,0x08 -+// 36391 踧 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3c,0x0b,0x08,0x28,0x2a,0x2a,0x2a,0x2c,0x70,0x22,0x01,0x80,0x80,0x9e,0xf2,0x92,0x92,0xf2,0x92,0x92,0xcc,0xac,0xac,0x8c,0x92,0x93,0x22 -+// 36392 踨 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x08,0x09,0x28,0x2e,0x28,0x28,0x28,0x3e,0x60,0x01,0x02,0x44,0x44,0x44,0x44,0xaa,0x91,0x00,0x10,0x50,0x5e,0x50,0x50,0x50,0xb0,0x1f,0x00 -+// 36393 踩 ; -+,0x00,0x3f,0x22,0x23,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x2e,0x39,0x62,0x00,0x00,0x0e,0xf0,0x42,0x22,0xb4,0x94,0x20,0xfe,0x70,0x70,0xa8,0xa4,0x23,0x22,0x20,0x20 -+// 36394 踪 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x28,0x08,0x0e,0x29,0x28,0x28,0x2e,0x39,0x62,0x00,0x00,0x20,0x10,0xff,0x01,0x02,0xfc,0x00,0x00,0xff,0x10,0x94,0xd2,0x13,0x12,0x50,0x20 -+// 36395 踫 ; -+,0x01,0x3c,0x24,0x25,0x24,0x3c,0x0a,0x09,0x2d,0x29,0x28,0x28,0x2c,0x73,0x00,0x00,0x04,0x84,0x48,0xff,0x48,0x48,0x4a,0x4b,0x4a,0x4c,0x48,0x48,0x48,0xff,0x00,0x00 -+// 36396 踬 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x2e,0x39,0x61,0x02,0x04,0x0e,0xf0,0x88,0x88,0xff,0x88,0xbe,0xa2,0xaa,0xaa,0xaa,0xaa,0x14,0x24,0x43,0x82 -+// 36397 踭 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x2b,0x2c,0x70,0x00,0x00,0x0e,0xf0,0x22,0x92,0x54,0xfe,0x12,0xfe,0x12,0x12,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 36398 踮 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x29,0x29,0x2d,0x72,0x04,0x00,0x20,0x10,0xff,0x90,0x90,0x9e,0x90,0x90,0x90,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36399 踯 ; -+,0x00,0x3e,0x25,0x24,0x27,0x3c,0x08,0x2b,0x2c,0x28,0x29,0x2d,0x32,0x64,0x08,0x00,0x00,0x4f,0x69,0x8a,0xea,0x8c,0x8c,0xea,0x89,0x89,0x49,0x2f,0x2a,0x08,0x08,0x08 -+// 36400 踰 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3e,0x09,0x09,0x2f,0x29,0x29,0x29,0x2f,0x71,0x01,0x01,0x20,0x20,0x50,0x8c,0x7b,0x00,0xe2,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x2a,0x22,0x66 -+// 36401 踱 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x09,0x09,0x2f,0x29,0x29,0x29,0x2d,0x72,0x04,0x08,0x20,0x10,0xff,0x24,0x24,0xff,0x24,0x3c,0x00,0x7e,0x44,0x28,0x10,0x2c,0x47,0x82 -+// 36402 踲 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x71,0x21,0x02,0x0e,0xf0,0x88,0x88,0xff,0x88,0xbe,0xa2,0xbe,0xa2,0xa2,0xbe,0xa2,0x22,0x3e,0x00 -+// 36403 踳 ; -+,0x00,0x7c,0x45,0x44,0x45,0x7c,0x13,0x10,0x1d,0x52,0x54,0x50,0x5e,0x70,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x88,0x04,0xff,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 36404 踴 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0xfe,0x24,0x18,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x20,0xfe,0x22,0x22,0x42,0x4a,0x84 -+// 36405 踵 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x28,0x2e,0x71,0x00,0x0e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 36406 踶 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x28,0x09,0x2e,0x28,0x28,0x28,0x2e,0x79,0x02,0x04,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x90,0x9e,0x90,0x90,0x50,0x3f,0x00 -+// 36407 踷 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x28,0x2e,0x29,0x28,0x28,0x28,0x2e,0x70,0x00,0x20,0x22,0xfb,0x24,0x28,0xff,0x10,0x60,0xfe,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 36408 踸 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x08,0x0c,0x2b,0x29,0x29,0x2f,0x39,0x61,0x01,0x00,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0xff,0x48,0x64,0x46,0x84,0x00,0xff,0x00 -+// 36409 踹 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3c,0x0b,0x28,0x2f,0x29,0x29,0x2f,0x39,0x61,0x01,0x00,0x20,0x24,0x24,0x24,0xfc,0x00,0xfe,0x20,0xfe,0x4a,0x4a,0x4a,0x4a,0x4a,0x46,0x00 -+// 36410 踺 ; -+,0x00,0x3c,0x27,0x24,0x24,0x3d,0x2b,0x08,0x2e,0x28,0x2a,0x29,0x3d,0x62,0x0c,0x00,0x08,0x08,0xbe,0x8a,0xff,0x0a,0xfe,0x88,0xbe,0x88,0xff,0x08,0x88,0x48,0x3f,0x00 -+// 36411 踻 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x3e,0x60,0x00,0x00,0x00,0x7e,0x42,0x7a,0x4a,0x4a,0x4a,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x81,0x85,0x82 -+// 36412 踼 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x09,0x28,0x2e,0x28,0x29,0x2e,0x38,0x61,0x00,0x01,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x40,0x7e,0xaa,0x2a,0x52,0xa2,0x42,0x94,0x08 -+// 36413 踽 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2f,0x29,0x29,0x29,0x2f,0x79,0x01,0x01,0x0e,0xf0,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x19,0x15,0x1f,0x75,0x01,0x05,0x02 -+// 36414 踾 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x00,0xfe,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82,0x00 -+// 36415 踿 ; -+,0x00,0x3c,0x27,0x24,0x3d,0x28,0x09,0x0d,0x2a,0x2c,0x28,0x28,0x3c,0x60,0x00,0x00,0x04,0x64,0x84,0x95,0xf5,0x96,0xd4,0xa4,0xa4,0x84,0x8a,0x8a,0x8a,0x91,0x91,0xa1 -+// 36416 蹀 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x08,0x2e,0x29,0x28,0x28,0x2e,0x71,0x02,0x00,0x24,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xff,0x10,0xff,0x38,0x54,0x94,0x13,0x12,0x10 -+// 36417 蹁 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x29,0x09,0x2d,0x29,0x29,0x2a,0x3e,0x62,0x04,0x00,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 36418 蹂 ; -+,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x29,0x2e,0x2b,0x28,0x2e,0x38,0x61,0x02,0x00,0xfe,0x04,0x68,0x10,0xfe,0x54,0x90,0x50,0x20,0xff,0x70,0xa8,0xa6,0x23,0x22,0x20 -+// 36419 蹃 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x09,0x08,0x2e,0x28,0x29,0x28,0x2e,0x70,0x00,0x00,0x44,0x44,0xff,0x44,0x54,0x10,0xff,0x20,0x40,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36420 蹄 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3f,0x09,0x09,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x20,0x10,0xff,0x84,0x48,0xff,0x11,0x12,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 36421 蹅 ; -+,0x00,0x3c,0x27,0x24,0x24,0x3c,0x29,0x0a,0x28,0x2e,0x28,0x28,0x28,0x3c,0x63,0x00,0x20,0x20,0xff,0x70,0xa8,0xa4,0x23,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00 -+// 36422 蹆 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x09,0x08,0x2e,0x28,0x28,0x2e,0x38,0x61,0x02,0x00,0x00,0x3e,0x22,0xbe,0xa2,0x22,0xbe,0xa9,0xaa,0xa4,0xa2,0xb2,0xa0,0x40,0x3f,0x00 -+// 36423 蹇 ; -+,0x00,0x3f,0x22,0x0f,0x02,0x0f,0x02,0x3f,0x08,0x17,0x24,0x47,0x00,0x04,0x04,0x1b,0x80,0xff,0x22,0xf8,0x20,0xfc,0x20,0xfe,0x08,0xf4,0x13,0xf0,0x80,0xfc,0x80,0xff -+// 36424 蹈 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x2a,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x0e,0xf0,0x02,0x23,0x92,0x54,0x20,0xc7,0x81,0x81,0xef,0x81,0x81,0xff,0x81,0x00 -+// 36425 蹉 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x09,0x2e,0x28,0x28,0x29,0x2a,0x2c,0x71,0x00,0x84,0x48,0xff,0x20,0xfe,0x20,0x20,0xff,0x40,0x80,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 36426 蹊 ; -+,0x00,0x3f,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x29,0x28,0x2e,0x70,0x00,0x01,0x1e,0xe0,0x26,0x94,0xa8,0x44,0xf8,0x24,0xfe,0x12,0xff,0x10,0x28,0x44,0x83,0x02 -+// 36427 蹋 ; -+,0x3e,0x22,0x22,0x22,0x3e,0x2a,0x08,0x09,0x2e,0x28,0x28,0x28,0x2f,0x70,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x00,0xef,0x21,0xa5,0x63,0xa5,0x29,0x21,0xa5,0x42 -+// 36428 蹌 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2f,0x79,0x02,0x04,0x10,0x28,0x44,0xa3,0x12,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x42,0x42,0x7e,0x42 -+// 36429 蹍 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x09,0x29,0x2d,0x29,0x29,0x2d,0x3a,0x62,0x04,0x08,0x00,0xfe,0x02,0x02,0xfe,0x28,0xff,0x28,0x28,0xff,0x4a,0x4b,0x4c,0x44,0x63,0x42 -+// 36430 蹎 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x28,0x2f,0x70,0x01,0x06,0x20,0x20,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x44,0x83,0x02 -+// 36431 蹏 ; -+,0x00,0x7b,0x4a,0x4a,0x4a,0x7a,0x12,0x52,0x5e,0x52,0x52,0x52,0x5a,0x65,0x05,0x0a,0x1e,0xf0,0x1e,0x10,0xff,0x92,0xfc,0x91,0x8f,0x80,0xbc,0xa4,0xa4,0x25,0x46,0x84 -+// 36432 蹐 ; -+,0x00,0x3d,0x24,0x24,0x25,0x3e,0x08,0x0b,0x2c,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x20,0x24,0xa8,0x24,0xb2,0x48,0x87,0xfe,0x84,0xfc,0x84,0xfc,0x84,0x84,0x94,0x88 -+// 36433 蹑 ; -+,0x3d,0x24,0x24,0x24,0x24,0x3c,0x09,0x0c,0x2b,0x2a,0x29,0x2e,0x39,0x62,0x0c,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0xff,0x04,0xde,0x52,0x54,0x88,0x54,0x24,0x43,0x82 -+// 36434 蹒 ; -+,0x00,0x3c,0x27,0x24,0x24,0x3f,0x08,0x29,0x2f,0x29,0x29,0x29,0x2f,0x71,0x01,0x01,0x48,0x48,0xff,0x48,0x00,0xff,0x48,0xfe,0x4a,0x4a,0x4a,0xb6,0x22,0x02,0x0a,0x04 -+// 36435 蹓 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x30,0xef,0x85,0xa5,0xa5,0xd9,0x93,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 36436 蹔 ; -+,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x0f,0x08,0x0f,0x04,0x04,0x0a,0x31,0x06,0xb8,0x20,0x3f,0x24,0x24,0x24,0x44,0x00,0xf8,0x08,0xf8,0x80,0xf8,0x80,0xff -+// 36437 蹕 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x3e,0x08,0x09,0x2e,0x29,0x28,0x29,0x2e,0x70,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x92,0xff,0x92,0xff,0x10,0xff,0x10,0x10,0x10 -+// 36438 蹖 ; -+,0x00,0x3c,0x25,0x24,0x24,0x3c,0x09,0x0e,0x28,0x29,0x2a,0x28,0x3e,0x60,0x00,0x00,0x20,0x20,0xfc,0x20,0xfc,0x20,0xff,0x48,0xa7,0xde,0x84,0xdc,0x84,0x84,0xfc,0x84 -+// 36439 蹗 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x09,0x29,0x2f,0x29,0x29,0x2f,0x39,0x62,0x02,0x04,0x20,0x10,0xff,0x28,0xfe,0x2a,0x2a,0xfe,0x48,0x48,0x7a,0x4c,0x49,0x69,0x47,0x00 -+// 36440 蹘 ; -+,0x00,0x3d,0x26,0x25,0x24,0x3d,0x0a,0x08,0x2e,0x2b,0x28,0x2b,0x2c,0x73,0x00,0x03,0x00,0xde,0x52,0x4a,0xc6,0x4a,0x22,0x50,0x8c,0x23,0xd8,0x36,0xcc,0x30,0xc0,0x00 -+// 36441 蹙 ; -+,0x00,0x1f,0x12,0x13,0x12,0x1f,0x2a,0x32,0x4f,0x08,0x0f,0x00,0x08,0x08,0x14,0x23,0x14,0xff,0x10,0x92,0x14,0xc8,0x99,0xa5,0xfa,0x08,0xf8,0x80,0xfc,0x80,0x80,0xff -+// 36442 蹚 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3f,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x2e,0x79,0x00,0x10,0x92,0x52,0x54,0xff,0x02,0x7c,0x44,0x44,0x7c,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 36443 蹛 ; -+,0x01,0x3d,0x27,0x25,0x25,0x3e,0x09,0x09,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x54,0x54,0xff,0x54,0x75,0x02,0xff,0x12,0x10,0xfe,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 36444 蹜 ; -+,0x00,0x3c,0x25,0x25,0x26,0x3c,0x09,0x09,0x2f,0x29,0x29,0x29,0x2f,0x71,0x01,0x00,0x20,0x10,0xff,0x02,0x80,0xff,0x08,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00 -+// 36445 蹝 ; -+,0x01,0x7d,0x45,0x46,0x44,0x7d,0x13,0x11,0x5d,0x51,0x51,0x51,0x5d,0x71,0x01,0x01,0x08,0x88,0x08,0xae,0xa8,0x28,0xff,0x08,0x28,0x2f,0x28,0x28,0x28,0x58,0x8f,0x00 -+// 36446 蹞 ; -+,0x00,0x3c,0x25,0x25,0x3d,0x29,0x09,0x09,0x2d,0x29,0x29,0x29,0x3c,0x60,0x00,0x00,0x00,0x7f,0x08,0x3e,0xe2,0x3e,0x22,0x22,0x3e,0x62,0xbe,0x00,0x24,0x32,0x41,0x80 -+// 36447 蹟 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x01,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 36448 蹠 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x28,0x2e,0x28,0x28,0x29,0x2d,0x72,0x05,0x08,0x20,0x10,0xff,0x80,0xa4,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0x00,0xaa,0x95,0x15,0x00 -+// 36449 蹡 ; -+,0x00,0x3c,0x25,0x25,0x25,0x3d,0x10,0x50,0x5d,0x51,0x51,0x51,0x5d,0x62,0x02,0x04,0x50,0x5e,0x52,0x6a,0x54,0xc8,0x54,0x64,0xff,0x64,0x54,0x54,0x44,0x44,0x54,0x48 -+// 36450 蹢 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3f,0x29,0x09,0x2f,0x29,0x29,0x29,0x2f,0x71,0x01,0x01,0x20,0x10,0xff,0x44,0x28,0xff,0x11,0xff,0x11,0x7d,0x45,0x45,0x7d,0x01,0x05,0x02 -+// 36451 蹣 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x09,0x09,0x2f,0x29,0x29,0x29,0x2f,0x71,0x01,0x01,0x44,0x44,0xff,0x44,0x7c,0x10,0xff,0x11,0x99,0x55,0x55,0xbb,0x11,0x11,0x15,0x12 -+// 36452 蹤 ; -+,0x01,0x7d,0x45,0x46,0x44,0x7d,0x11,0x13,0x5d,0x51,0x51,0x51,0x5d,0x71,0x01,0x01,0x24,0xa4,0x24,0x54,0x9a,0x8b,0x00,0x08,0x28,0x2f,0x28,0x28,0x28,0x58,0x87,0x00 -+// 36453 蹥 ; -+,0x00,0x3c,0x25,0x25,0x24,0x3c,0x0b,0x09,0x29,0x2d,0x29,0x29,0x2d,0x72,0x04,0x00,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x88,0x7f,0x00 -+// 36454 蹦 ; -+,0x00,0x3d,0x25,0x25,0x24,0x3d,0x09,0x09,0x2f,0x29,0x29,0x29,0x3e,0x62,0x05,0x08,0x10,0x11,0x11,0xff,0x00,0xcf,0x49,0xcf,0x49,0x49,0xcf,0x49,0x49,0x51,0x55,0xa2 -+// 36455 蹧 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x24,0x24,0xff,0x24,0xff,0xa5,0xff,0xa5,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e -+// 36456 蹨 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3d,0x0a,0x08,0x2e,0x28,0x2b,0x28,0x2d,0x71,0x02,0x00,0x88,0x8c,0xea,0xbf,0x28,0xa8,0x68,0xb4,0x54,0xa2,0x41,0x04,0x52,0x29,0x29,0x00 -+// 36457 蹩 ; -+,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x2f,0x08,0x08,0x0f,0x00,0x08,0x08,0x16,0x21,0x90,0x10,0xbf,0xa4,0xd4,0x88,0xb7,0xfa,0x08,0x08,0xf8,0x80,0xfc,0x80,0x80,0xff -+// 36458 蹪 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3f,0x08,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x01,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 36459 蹫 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x09,0x08,0x28,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0xfe,0x24,0x18,0xff,0x2a,0xc8,0x18,0xff,0xa5,0xc3,0xbd,0xa5,0xbd,0xa5,0x81,0x83 -+// 36460 蹬 ; -+,0x00,0x3d,0x26,0x25,0x25,0x3d,0x0a,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x03,0x00,0x00,0xd2,0x54,0x49,0x8a,0x06,0xfb,0x02,0xfc,0x84,0x84,0xfc,0x84,0x48,0xff,0x00 -+// 36461 蹭 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x09,0x29,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x84,0x46,0x28,0xff,0x95,0x57,0x39,0xff,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 36462 蹮 ; -+,0x00,0x3d,0x24,0x25,0x25,0x3d,0x08,0x29,0x2e,0x29,0x2a,0x28,0x2e,0x70,0x00,0x00,0x00,0xfe,0x48,0xfe,0x4a,0xfe,0x20,0xff,0x84,0xfb,0x8a,0xf8,0x82,0x82,0x7e,0x00 -+// 36463 蹯 ; -+,0x00,0x3d,0x25,0x24,0x25,0x3c,0x08,0x09,0x2f,0x29,0x29,0x29,0x3f,0x61,0x01,0x00,0x0e,0xf0,0x24,0xa8,0xff,0x68,0xa4,0x23,0xfe,0x24,0xfc,0x24,0x24,0xfc,0x04,0x00 -+// 36464 蹰 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3d,0x11,0x11,0x1d,0x11,0x51,0x52,0x5a,0x65,0x08,0x10,0x00,0xff,0x21,0x71,0x21,0xf7,0x01,0xf5,0x97,0xf3,0x01,0xa1,0x41,0xf1,0x05,0x02 -+// 36465 蹱 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x08,0x08,0x28,0x2e,0x28,0x28,0x2e,0x70,0x20,0x01,0x20,0x10,0xff,0x42,0x24,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff -+// 36466 蹲 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x08,0x2e,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x84,0x48,0xff,0x28,0xfe,0xaa,0xce,0xba,0x82,0xfe,0x04,0xff,0x44,0x44,0x14,0x08 -+// 36467 蹳 ; -+,0x00,0x3d,0x24,0x25,0x25,0x3d,0x10,0x13,0x1e,0x52,0x53,0x50,0x5c,0x70,0x02,0x01,0x74,0x95,0xd6,0xa4,0x42,0xbd,0xa4,0xa4,0x27,0x40,0x9c,0xa4,0x98,0x94,0xa2,0x42 -+// 36468 蹴 ; -+,0x01,0x78,0x4f,0x48,0x4b,0x7a,0x12,0x1b,0x51,0x51,0x55,0x5d,0x65,0x09,0x05,0x02,0x08,0x8a,0xea,0x0a,0xff,0x48,0x48,0xc8,0x14,0x14,0x94,0x54,0x25,0x25,0x43,0x80 -+// 36469 蹵 ; -+,0x08,0x7f,0x00,0x1f,0x11,0x1f,0x15,0x24,0x0f,0x08,0x0f,0x00,0x04,0x04,0x0a,0x31,0x14,0x92,0x7f,0x10,0x28,0x29,0x49,0x87,0xf8,0x08,0xf8,0x80,0xfc,0x80,0x80,0xff -+// 36470 蹶 ; -+,0x00,0x7b,0x4a,0x4b,0x4a,0x7b,0x12,0x12,0x5e,0x53,0x52,0x52,0x5a,0x65,0x05,0x0a,0x00,0xff,0x08,0x48,0x8f,0xe9,0x90,0xa4,0xa4,0xe4,0xa4,0x8a,0x8a,0x11,0x21,0x41 -+// 36471 蹷 ; -+,0x3f,0x25,0x3f,0x22,0x2a,0x2f,0x22,0x24,0x2b,0x22,0x23,0x20,0x22,0x22,0x45,0x48,0xff,0x10,0x90,0x1f,0xaa,0x88,0x14,0x22,0xf8,0x08,0xf8,0x40,0x7c,0x40,0x40,0xff -+// 36472 蹸 ; -+,0x00,0x3d,0x24,0x27,0x24,0x3c,0x09,0x0b,0x29,0x29,0x2a,0x2d,0x38,0x61,0x02,0x04,0x20,0x24,0xa8,0xff,0x70,0xac,0x23,0x24,0xff,0x44,0x54,0x7f,0x84,0x04,0x04,0x04 -+// 36473 蹹 ; -+,0x00,0x3c,0x24,0x25,0x26,0x3c,0x08,0x0e,0x28,0x2b,0x2a,0x29,0x3d,0x62,0x01,0x00,0x20,0x50,0x8c,0x7b,0x02,0xfc,0x84,0xfc,0x00,0xde,0x4a,0x46,0x4a,0x52,0x4a,0x84 -+// 36474 蹺 ; -+,0x00,0x3c,0x24,0x24,0x25,0x3c,0x0b,0x28,0x2f,0x28,0x29,0x28,0x3c,0x60,0x01,0x02,0x10,0x10,0xfe,0x10,0xff,0x84,0xdf,0x84,0xdf,0x00,0xfe,0x50,0x51,0x91,0x0f,0x00 -+// 36475 蹻 ; -+,0x00,0x7d,0x44,0x45,0x44,0x7d,0x12,0x14,0x5c,0x51,0x51,0x51,0x5d,0x71,0x01,0x01,0x1c,0xe0,0x40,0xff,0x88,0xfc,0x8b,0xfa,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x0a,0x04 -+// 36476 蹼 ; -+,0x00,0x3d,0x24,0x24,0x27,0x3c,0x09,0x28,0x2e,0x28,0x2b,0x28,0x2e,0x70,0x03,0x0c,0x48,0x4a,0xcc,0x48,0xff,0x48,0xfe,0x20,0xfe,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 36477 蹽 ; -+,0x00,0x3c,0x25,0x24,0x25,0x3c,0x0b,0x08,0x28,0x2e,0x28,0x28,0x2e,0x39,0x62,0x00,0x20,0x20,0xff,0x52,0x4a,0x84,0xff,0x84,0xfc,0x84,0xfc,0x10,0x94,0x13,0x52,0x20 -+// 36478 蹾 ; -+,0x01,0x78,0x4f,0x48,0x4b,0x7a,0x13,0x10,0x1b,0x50,0x50,0x53,0x5c,0x60,0x02,0x01,0x08,0x8c,0xe8,0x08,0xdf,0x52,0xf2,0x12,0xea,0x44,0x84,0xe4,0x8a,0x8a,0x91,0x21 -+// 36479 蹿 ; -+,0x00,0x3c,0x25,0x25,0x24,0x3d,0x08,0x28,0x2e,0x28,0x29,0x29,0x2f,0x70,0x00,0x00,0x20,0x10,0xff,0x4a,0x94,0x12,0xfe,0x92,0xfe,0x10,0xff,0x11,0xff,0x10,0x10,0x10 -+// 36480 躀 ; -+,0x00,0x3e,0x22,0x23,0x22,0x3e,0x08,0x08,0x2f,0x28,0x28,0x28,0x28,0x2e,0x70,0x01,0x00,0xfe,0x92,0xff,0x92,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x64,0x83 -+// 36481 躁 ; -+,0x00,0x3c,0x24,0x24,0x24,0x3d,0x09,0x0f,0x28,0x29,0x28,0x28,0x2e,0x71,0x02,0x00,0xfe,0x82,0x82,0xfe,0x00,0xef,0x29,0xef,0x10,0xff,0x38,0x54,0x94,0x13,0x12,0x10 -+// 36482 躂 ; -+,0x00,0x3c,0x24,0x26,0x25,0x3d,0x08,0x0b,0x2d,0x29,0x29,0x29,0x2d,0x71,0x02,0x00,0x10,0x10,0x7e,0x10,0xff,0x44,0x28,0x7e,0x10,0x7e,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 36483 躃 ; -+,0x00,0x7b,0x4a,0x4a,0x4a,0x7b,0x12,0x12,0x5f,0x53,0x53,0x5b,0x75,0x45,0x08,0x00,0x10,0xc8,0x7f,0x62,0x54,0xc0,0x3f,0x08,0xe8,0x3f,0x28,0x28,0xe8,0x28,0x08,0x00 -+// 36484 躄 ; -+,0x00,0x3f,0x22,0x3e,0x21,0x3e,0x52,0x5e,0x0f,0x08,0x0f,0x00,0x08,0x08,0x14,0x63,0x10,0xfe,0x44,0x28,0xff,0x10,0xfe,0x10,0xf8,0x08,0xf8,0x80,0xfc,0x80,0x80,0xfe -+// 36485 躅 ; -+,0x00,0x3d,0x25,0x25,0x25,0x3c,0x08,0x29,0x2e,0x28,0x28,0x28,0x2e,0x71,0x00,0x00,0x00,0xfe,0x4a,0x4a,0xfe,0x80,0xff,0x21,0xfd,0xa5,0xfd,0x25,0x3f,0xe5,0x05,0x02 -+// 36486 躆 ; -+,0x00,0x3c,0x24,0x25,0x25,0x3d,0x09,0x29,0x2f,0x29,0x29,0x2d,0x3a,0x62,0x04,0x08,0x20,0x3c,0x20,0xff,0x21,0xfa,0x24,0xfc,0x22,0x54,0x98,0x34,0x53,0x92,0x50,0x20 -+// 36487 躇 ; -+,0x00,0x3e,0x23,0x22,0x22,0x3e,0x08,0x29,0x2e,0x28,0x28,0x2b,0x2c,0x70,0x00,0x00,0x44,0x44,0xff,0x44,0x12,0xff,0x14,0xff,0x10,0x7e,0xc2,0x7e,0x42,0x42,0x7e,0x42 -+// 36488 躈 ; -+,0x00,0x79,0x4b,0x4a,0x4b,0x7a,0x13,0x10,0x13,0x5d,0x51,0x51,0x5a,0x62,0x05,0x08,0x88,0x08,0xc8,0x50,0xdf,0x72,0xd2,0x92,0xea,0x0a,0xc4,0x44,0x4a,0x4a,0x53,0xa2 -+// 36489 躉 ; -+,0x02,0x7f,0x02,0x0f,0x08,0x0f,0x08,0x1f,0x10,0x17,0x14,0x07,0x00,0x08,0x08,0x17,0x20,0xff,0x20,0xf8,0x88,0xf8,0x88,0xfe,0x92,0xfa,0x14,0xf0,0x80,0xf8,0x80,0xfe -+// 36490 躊 ; -+,0x00,0x7f,0x44,0x45,0x44,0x7c,0x10,0x11,0x1c,0x53,0x50,0x53,0x5e,0x63,0x02,0x00,0x20,0xfe,0x20,0xff,0x02,0xfc,0x20,0xfe,0x04,0xff,0x04,0xa4,0xb4,0x84,0x94,0x08 -+// 36491 躋 ; -+,0x00,0x7c,0x47,0x44,0x47,0x7e,0x12,0x12,0x5d,0x51,0x51,0x51,0x5d,0x62,0x0c,0x00,0x40,0x20,0xff,0x52,0xdc,0xaa,0xad,0xa9,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04,0x00 -+// 36492 躌 ; -+,0x00,0x3c,0x25,0x26,0x25,0x3c,0x08,0x09,0x2e,0x28,0x29,0x28,0x2e,0x70,0x01,0x02,0x80,0xff,0xaa,0xaa,0xff,0xaa,0xaa,0xff,0x84,0xff,0x34,0xd4,0x7f,0x84,0x04,0x04 -+// 36493 躍 ; -+,0x3d,0x25,0x24,0x24,0x24,0x3d,0x08,0x0e,0x29,0x2a,0x2c,0x28,0x2e,0x70,0x00,0x00,0xfe,0x32,0xaa,0x6a,0xb2,0x22,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 36494 躎 ; -+,0x7f,0x44,0x45,0x46,0x45,0x7d,0x11,0x11,0x5d,0x51,0x51,0x51,0x51,0x5d,0x61,0x01,0xff,0x94,0x13,0x12,0xff,0x11,0xbb,0x55,0xbb,0x11,0xbb,0x55,0xbb,0x11,0x15,0x12 -+// 36495 躏 ; -+,0x00,0x7f,0x44,0x44,0x45,0x7d,0x11,0x11,0x5d,0x51,0x51,0x51,0x5d,0x71,0x01,0x01,0x44,0xff,0x44,0x8f,0x41,0x29,0x7f,0xc9,0x7f,0x49,0x7f,0x49,0x7f,0x41,0x05,0x02 -+// 36496 躐 ; -+,0x00,0x3d,0x26,0x25,0x3d,0x09,0x09,0x29,0x2f,0x29,0x29,0x29,0x3d,0x61,0x03,0x01,0x94,0x24,0x48,0x24,0xfe,0x4a,0x32,0x4a,0xfe,0x24,0xb4,0x25,0xb5,0x2b,0xb1,0x20 -+// 36497 躑 ; -+,0x02,0x79,0x4f,0x49,0x4f,0x7d,0x15,0x16,0x57,0x50,0x57,0x50,0x5c,0x71,0x02,0x04,0x20,0x4f,0xf9,0x49,0xf9,0x4a,0x6c,0x0a,0xf9,0x89,0xf9,0x8d,0x8a,0x48,0x28,0x28 -+// 36498 躒 ; -+,0x01,0x7d,0x46,0x47,0x45,0x7d,0x12,0x13,0x5c,0x53,0x50,0x50,0x5d,0x72,0x04,0x00,0x24,0x44,0x74,0xd9,0x7e,0x52,0x55,0xff,0x21,0xfe,0x70,0xa8,0x24,0x23,0x22,0x20 -+// 36499 躓 ; -+,0x00,0x7d,0x45,0x45,0x45,0x7d,0x12,0x10,0x5e,0x50,0x50,0x50,0x5e,0x70,0x00,0x01,0x33,0xcc,0x08,0xef,0x4a,0x4a,0x52,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x6c,0x83 -+// 36500 躔 ; -+,0x00,0x3d,0x25,0x25,0x3d,0x29,0x09,0x2f,0x29,0x29,0x29,0x29,0x3d,0x62,0x02,0x05,0x10,0xff,0x00,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x24,0x52,0x91,0xfe,0x10,0xff -+// 36501 躕 ; -+,0x00,0x7d,0x45,0x45,0x45,0x7d,0x11,0x51,0x5d,0x51,0x52,0x53,0x5a,0x65,0x08,0x00,0x10,0xff,0x42,0xe2,0x42,0xef,0x02,0xea,0xaa,0xea,0x02,0x22,0xb2,0xc2,0x8a,0x04 -+// 36502 躖 ; -+,0x00,0x3c,0x25,0x24,0x3d,0x08,0x09,0x2e,0x28,0x29,0x28,0x2d,0x3b,0x60,0x03,0x00,0x49,0xb3,0xdd,0x89,0xff,0x01,0xff,0x89,0xa9,0xdf,0x89,0x55,0xff,0x45,0xff,0x00 -+// 36503 躗 ; -+,0x11,0x1b,0x29,0x0f,0x11,0x37,0x55,0x1f,0x11,0x0f,0x08,0x0f,0x04,0x04,0x1a,0x61,0x00,0xee,0x20,0xff,0x04,0xc4,0x14,0xe8,0x00,0xf8,0x08,0xf8,0x80,0xf8,0x80,0xff -+// 36504 躘 ; -+,0x01,0x3c,0x27,0x26,0x25,0x3f,0x08,0x09,0x2f,0x29,0x29,0x29,0x29,0x2f,0x71,0x01,0x08,0x88,0xef,0x28,0x4f,0xe1,0x0f,0xe8,0x2e,0xe8,0x28,0xee,0x28,0x29,0xa9,0x47 -+// 36505 躙 ; -+,0x01,0x3d,0x25,0x25,0x25,0x3d,0x09,0x09,0x2f,0x29,0x29,0x2f,0x39,0x61,0x01,0x01,0xef,0x29,0xef,0x29,0xef,0x21,0x29,0x7d,0x51,0xfd,0x51,0x7d,0x51,0x7d,0x45,0x02 -+// 36506 躚 ; -+,0x00,0x7c,0x44,0x46,0x45,0x7c,0x13,0x11,0x5d,0x51,0x51,0x51,0x5d,0x72,0x04,0x00,0xff,0x24,0xff,0xa5,0xff,0x10,0xff,0x44,0xfb,0x48,0x78,0x42,0x3e,0x80,0x7f,0x00 -+// 36507 躛 ; -+,0x11,0x1b,0x21,0x4b,0x10,0x33,0x52,0x13,0x10,0x0f,0x08,0x0f,0x08,0x08,0x14,0x63,0x00,0xde,0x40,0xff,0x04,0xc4,0x44,0xd4,0x08,0xf8,0x08,0xf8,0x80,0xf8,0x80,0xff -+// 36508 躜 ; -+,0x00,0x7a,0x4b,0x4c,0x4b,0x79,0x52,0x14,0x51,0x5d,0x51,0x51,0x5d,0x70,0x40,0x03,0x84,0x94,0xde,0xa4,0xdf,0x8c,0xd5,0xa7,0xfc,0x04,0x24,0x24,0x24,0x58,0x86,0x02 -+// 36509 躝 ; -+,0x7d,0x45,0x45,0x45,0x7d,0x11,0x11,0x11,0x5d,0x51,0x51,0x51,0x5f,0x71,0x01,0x01,0xef,0x29,0xef,0x29,0xef,0x11,0xff,0x11,0x7d,0x55,0x7d,0x39,0x55,0x93,0x15,0x12 -+// 36510 躞 ; -+,0x01,0x7d,0x45,0x47,0x45,0x7d,0x11,0x1d,0x52,0x54,0x51,0x50,0x5c,0x60,0x00,0x07,0x44,0x24,0x75,0x0e,0x74,0x04,0x74,0x5a,0xf1,0x00,0xfc,0x88,0x50,0x20,0xd8,0x07 -+// 36511 躟 ; -+,0x00,0x7b,0x48,0x49,0x49,0x79,0x10,0x13,0x1c,0x51,0x50,0x53,0x5d,0x62,0x0c,0x00,0x20,0xff,0x00,0xce,0x4a,0xce,0x88,0xfe,0x88,0xfc,0x88,0xfe,0x88,0x84,0xc7,0x82 -+// 36512 躠 ; -+,0x02,0x7f,0x0a,0x3e,0x22,0x3e,0x20,0x3e,0x22,0x3f,0x08,0x0f,0x08,0x08,0x14,0x23,0x20,0xff,0x20,0xfe,0x44,0xff,0x10,0x7e,0x10,0xf8,0x08,0xf8,0x80,0xfc,0x80,0xfe -+// 36513 躡 ; -+,0x03,0x7c,0x44,0x44,0x44,0x7c,0x13,0x10,0x5d,0x51,0x51,0x51,0x5d,0x71,0x03,0x00,0xfe,0x88,0xf8,0x88,0xf8,0x88,0xff,0x08,0xff,0x52,0xde,0x52,0xde,0x52,0xff,0x42 -+// 36514 躢 ; -+,0x03,0x7a,0x4b,0x4a,0x7b,0x12,0x12,0x1e,0x52,0x52,0x53,0x52,0x5f,0x72,0x03,0x02,0xcf,0x49,0xcf,0x49,0xff,0x49,0x79,0x49,0x79,0x01,0xdd,0x45,0x55,0xcd,0x55,0x47 -+// 36515 躣 ; -+,0x3d,0x25,0x25,0x25,0x25,0x3d,0x09,0x08,0x2e,0x29,0x28,0x28,0x28,0x2e,0x70,0x00,0xef,0x29,0xef,0x29,0xef,0x29,0xef,0x50,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 36516 躤 ; -+,0x00,0x7f,0x48,0x49,0x4b,0x49,0x7b,0x11,0x13,0x5d,0x53,0x55,0x51,0x5d,0x71,0x01,0x88,0xff,0x88,0x12,0xff,0x12,0xd2,0x3f,0xc0,0x1e,0x92,0x5e,0x12,0x12,0x1e,0x12 -+// 36517 躥 ; -+,0x00,0x7b,0x4a,0x4d,0x4a,0x79,0x11,0x11,0x5d,0x51,0x51,0x51,0x5d,0x71,0x01,0x01,0x20,0xff,0x92,0x08,0x64,0x9c,0x04,0xdc,0x04,0xfc,0x24,0xb4,0x6d,0x25,0xb3,0x21 -+// 36518 躦 ; -+,0x01,0x3d,0x25,0x26,0x25,0x3c,0x08,0x29,0x2e,0x28,0x28,0x28,0x3e,0x60,0x00,0x03,0x04,0x54,0xff,0x44,0xff,0xaa,0xab,0x32,0xfe,0x82,0xfe,0x82,0xfe,0x44,0xc3,0x02 -+// 36519 躧 ; -+,0x03,0x78,0x4b,0x4b,0x4a,0x7a,0x11,0x11,0x5d,0x51,0x51,0x51,0x5d,0x72,0x02,0x04,0xdf,0x00,0xde,0x5a,0xd6,0x52,0xff,0x48,0xfe,0x4a,0xfe,0x88,0xea,0x8c,0xc9,0x87 -+// 36520 躨 ; -+,0x01,0x78,0x4f,0x49,0x49,0x7d,0x15,0x15,0x5f,0x51,0x52,0x54,0x51,0x5c,0x70,0x03,0x04,0x88,0xff,0x20,0x77,0xd5,0x77,0x54,0xf5,0x47,0xfa,0x89,0x50,0x20,0xd8,0x06 -+// 36521 躩 ; -+,0x7b,0x4a,0x4b,0x4a,0x4b,0x79,0x11,0x13,0x15,0x5d,0x51,0x50,0x50,0x5c,0x70,0x03,0xde,0x52,0xde,0x52,0xde,0x20,0xfe,0x20,0xfc,0x20,0xfe,0x84,0x48,0x30,0xcc,0x03 -+// 36522 躪 ; -+,0x00,0x7d,0x44,0x45,0x45,0x7d,0x11,0x11,0x11,0x5d,0x51,0x51,0x51,0x5d,0x71,0x01,0x48,0xff,0x48,0xef,0x29,0xef,0x29,0xef,0x29,0x7f,0xc9,0x7f,0x49,0x7f,0x49,0x7f -+// 36523 身 ; -+,0x01,0x02,0x07,0x04,0x07,0x04,0x07,0x04,0x04,0x3f,0x00,0x00,0x03,0x0c,0x30,0x00,0x00,0x00,0xf8,0x08,0xf8,0x0a,0xfb,0x0a,0x0c,0xff,0x38,0xc8,0x08,0x08,0x28,0x10 -+// 36524 躬 ; -+,0x04,0x08,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x3f,0x03,0x05,0x09,0x11,0x61,0x05,0x02,0x00,0x7e,0x02,0x02,0x02,0x3e,0x20,0x20,0x3e,0x02,0x02,0x02,0x02,0x02,0x14,0x08 -+// 36525 躭 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x23,0x3e,0x22,0x7e,0x06,0x0a,0x0a,0x12,0x62,0x0b,0x04,0x20,0x20,0x20,0xff,0xa2,0x24,0x20,0x20,0x50,0x50,0x50,0x52,0x92,0x93,0x0e,0x00 -+// 36526 躮 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3f,0x22,0x7e,0x06,0x0a,0x12,0x22,0x42,0x0a,0x04,0x08,0x28,0x28,0x44,0x44,0x82,0x01,0xfc,0x24,0x24,0x24,0x24,0x24,0x44,0x54,0x88 -+// 36527 躯 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x7e,0x06,0x0a,0x12,0x22,0x4a,0x04,0x00,0x7f,0x40,0x42,0x42,0x64,0x54,0x48,0x48,0x54,0x54,0x62,0x42,0x40,0x7f,0x00 -+// 36528 躰 ; -+,0x08,0x10,0x3e,0x22,0x3f,0x22,0x3e,0x22,0x7e,0x06,0x0a,0x13,0x22,0x42,0x0a,0x04,0x10,0x10,0x10,0x10,0xff,0x38,0x38,0x54,0x54,0x92,0xff,0x12,0x10,0x10,0x10,0x10 -+// 36529 躱 ; -+,0x08,0x11,0x3c,0x24,0x3c,0x24,0x3c,0x25,0x7e,0x05,0x0c,0x14,0x24,0x45,0x16,0x08,0x00,0xfc,0x44,0x4e,0x42,0x82,0x8a,0x24,0x20,0xff,0x70,0xa8,0xa4,0x23,0x22,0x20 -+// 36530 躲 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3f,0x22,0x7e,0x06,0x0a,0x0a,0x12,0x23,0x4a,0x04,0x00,0x7c,0x44,0x44,0x44,0x83,0x10,0x10,0xff,0x38,0x38,0x54,0x93,0x12,0x10,0x10 -+// 36531 躳 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7e,0x06,0x0a,0x0a,0x12,0x22,0x4a,0x04,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00,0xff,0x81,0x81,0x81,0x81,0xff,0x81,0x00 -+// 36532 躴 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7e,0x02,0x06,0x0a,0x12,0x22,0x4a,0x04,0x20,0x10,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x92,0x94,0x88,0x8c,0xa7,0xc2,0x80 -+// 36533 躵 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7e,0x06,0x0a,0x13,0x23,0x42,0x0a,0x04,0x00,0xfe,0x12,0x52,0x52,0xa2,0x2a,0x44,0x80,0x20,0x52,0x59,0x55,0x44,0x38,0x00 -+// 36534 躶 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7e,0x07,0x06,0x0a,0x12,0x23,0x4a,0x04,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x38,0x54,0x93,0x12,0x10,0x10 -+// 36535 躷 ; -+,0x08,0x10,0x3e,0x23,0x3e,0x22,0x3e,0x23,0x7e,0x07,0x0a,0x0a,0x12,0x22,0x4a,0x04,0x04,0xfe,0x10,0xff,0x38,0x54,0x93,0x22,0x20,0xff,0x44,0x68,0x10,0x2c,0x46,0x82 -+// 36536 躸 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x23,0x7e,0x06,0x06,0x0a,0x12,0x22,0x4a,0x04,0x10,0x10,0xff,0x10,0x28,0x44,0x82,0xff,0x04,0xf4,0x94,0x94,0xf4,0x04,0x14,0x08 -+// 36537 躹 ; -+,0x04,0x08,0x3e,0x22,0x3f,0x22,0x3e,0x22,0x7e,0x06,0x0a,0x0a,0x12,0x23,0x4a,0x04,0x40,0x40,0x7f,0x81,0x11,0x93,0x55,0x11,0xff,0x31,0x39,0x57,0x95,0x11,0x15,0x12 -+// 36538 躺 ; -+,0x08,0x10,0x3d,0x24,0x3c,0x25,0x3d,0x25,0x7d,0x05,0x0d,0x15,0x25,0x45,0x15,0x09,0x20,0x24,0x26,0xa8,0x20,0xfe,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 36539 躻 ; -+,0x08,0x10,0x3e,0x22,0x3f,0x22,0x3e,0x22,0x22,0x7e,0x06,0x0a,0x12,0x62,0x0b,0x04,0x20,0x10,0xff,0x82,0x28,0x24,0x46,0x84,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36540 躼 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7f,0x06,0x0a,0x12,0x22,0x42,0x0a,0x04,0x00,0x7e,0x40,0x7e,0x40,0x7e,0x40,0x40,0xff,0x90,0x96,0x88,0x84,0xa7,0xc2,0x80 -+// 36541 躽 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7e,0x06,0x0a,0x0a,0x12,0x22,0x4a,0x04,0x00,0xff,0x80,0xbe,0xa2,0xbe,0xa2,0xbe,0x90,0xff,0xa2,0xb4,0x88,0x94,0xa2,0xff -+// 36542 躾 ; -+,0x08,0x10,0x3e,0x23,0x3e,0x22,0x3e,0x23,0x7e,0x06,0x0b,0x12,0x22,0x42,0x0a,0x05,0x84,0x46,0x28,0xff,0x10,0xfe,0x10,0xff,0x10,0x10,0xff,0x10,0x28,0x44,0x83,0x02 -+// 36543 躿 ; -+,0x08,0x10,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x7d,0x0d,0x0d,0x15,0x25,0x55,0x0a,0x04,0x20,0x10,0xff,0x10,0x7c,0x14,0xff,0x14,0x7c,0x12,0x5b,0x34,0x56,0x93,0x52,0x20 -+// 36544 軀 ; -+,0x08,0x11,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x25,0x7d,0x0d,0x15,0x25,0x45,0x15,0x08,0x00,0xff,0x00,0x3e,0x22,0x22,0x3e,0x00,0x77,0x55,0x55,0x77,0x55,0x00,0xff,0x00 -+// 36545 軁 ; -+,0x08,0x10,0x3c,0x25,0x3c,0x24,0x3c,0x24,0x7c,0x0c,0x14,0x15,0x24,0x44,0x14,0x09,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x20,0xff,0x48,0x30,0x4c,0x84 -+// 36546 軂 ; -+,0x08,0x12,0x3d,0x24,0x3c,0x25,0x3e,0x25,0x7d,0x0c,0x0c,0x14,0x24,0x44,0x14,0x09,0x84,0xa4,0xd5,0x95,0x84,0x4a,0x31,0xff,0x21,0xfc,0x24,0x24,0x44,0x44,0x94,0x08 -+// 36547 軃 ; -+,0x08,0x11,0x3d,0x25,0x3c,0x24,0x3c,0x24,0x7c,0x0c,0x0c,0x15,0x24,0x44,0x14,0x08,0x00,0xef,0x29,0xef,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 36548 軄 ; -+,0x08,0x10,0x3d,0x25,0x3c,0x27,0x3c,0x25,0x7d,0x0d,0x15,0x15,0x25,0x45,0x14,0x08,0x88,0x48,0xfa,0x1a,0xa8,0xff,0x0a,0xeb,0x2a,0xea,0x2c,0x2d,0xf5,0x23,0x41,0x00 -+// 36549 軅 ; -+,0x08,0x11,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x7d,0x0d,0x15,0x15,0x25,0x5d,0x0a,0x00,0x00,0xff,0x50,0x74,0x54,0x5f,0xf4,0x5f,0x54,0x54,0x5f,0x54,0x54,0x5f,0x50,0x00 -+// 36550 軆 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7f,0x06,0x0a,0x12,0x22,0x42,0x0a,0x05,0x28,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xff,0x00,0xfe,0x82,0xfe,0x44,0x28,0xff -+// 36551 軇 ; -+,0x08,0x11,0x3c,0x24,0x3c,0x25,0x3c,0x24,0x7c,0x0d,0x14,0x15,0x25,0x45,0x14,0x08,0x10,0xff,0x10,0xfe,0x00,0xff,0x02,0xfc,0x20,0xff,0x04,0xfe,0x54,0xc4,0x14,0x08 -+// 36552 軈 ; -+,0x08,0x10,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x25,0x7d,0x0d,0x15,0x25,0x45,0x15,0x0a,0x20,0x10,0xff,0x54,0x54,0xff,0x54,0x5f,0x54,0x5f,0x54,0x5f,0x10,0xa9,0xa5,0xbd -+// 36553 軉 ; -+,0x08,0x11,0x3d,0x24,0x3c,0x24,0x3c,0x25,0x7c,0x0c,0x0c,0x14,0x24,0x44,0x14,0x09,0x20,0xff,0x09,0xee,0x54,0xef,0x55,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x64,0x83 -+// 36554 車 ; -+,0x00,0x00,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0x80,0x80,0xff,0x80,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x80,0x80,0xff,0x80,0x80,0x80 -+// 36555 軋 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x04,0x7f,0x04,0x04,0x04,0x04,0x10,0x10,0xd0,0x10,0x90,0x90,0x90,0x90,0x90,0x90,0x10,0xd1,0x11,0x11,0x0f,0x00 -+// 36556 軌 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x09,0x0a,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x45,0x85,0x85,0x03,0x00 -+// 36557 軍 ; -+,0x3f,0x20,0x40,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0x00,0xff,0x82,0x80,0xfc,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80,0x80,0x80,0x80 -+// 36558 軎 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x80,0xfe,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80,0xf8,0x08,0x08,0xf8,0x08 -+// 36559 軏 ; -+,0x08,0x09,0x7e,0x08,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x08,0x7f,0x08,0x08,0x09,0x0a,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 36560 軐 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xfc,0x24,0x24,0x24,0x25,0x25,0x43,0x41,0x80 -+// 36561 軑 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x08,0x7f,0x08,0x08,0x09,0x0a,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x82,0x03,0x02 -+// 36562 軒 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x10 -+// 36563 軓 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0x08,0x09,0x0a,0x00,0x00,0x7c,0x44,0x44,0x44,0x64,0x54,0x54,0x44,0xc4,0x44,0x85,0x85,0x03,0x00 -+// 36564 軔 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x09,0x00,0x00,0x7e,0x12,0x12,0x52,0x52,0x52,0x92,0x12,0x22,0x22,0x42,0x42,0x8a,0x04 -+// 36565 軕 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x04,0x08,0x08,0x88,0x08,0x49,0x49,0x49,0x49,0x49,0x49,0xc9,0x49,0x7f,0x41,0x00,0x00 -+// 36566 軖 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 36567 軗 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x09,0x00,0x3c,0xa4,0x24,0x24,0x47,0x80,0x7c,0x44,0x44,0x28,0x90,0x28,0x44,0x83,0x02 -+// 36568 軘 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xfe,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 36569 軙 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x04,0x7f,0x04,0x04,0x04,0x04,0x08,0x08,0xcf,0x08,0x88,0x88,0xfe,0xa2,0xa2,0xa4,0x14,0xc8,0x14,0x24,0x43,0x82 -+// 36570 軚 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x05,0x10,0x10,0x90,0x10,0xff,0x90,0xa8,0xa8,0xa8,0x28,0xa4,0x54,0x4a,0x8b,0x82,0x00 -+// 36571 軛 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7e,0x08,0x08,0x09,0x0a,0x00,0x7f,0x40,0x40,0x5e,0x52,0x52,0x52,0x52,0x5e,0x54,0x50,0x91,0x91,0x0f,0x00 -+// 36572 軜 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xaa,0xa6,0xc6,0x82,0x82,0x82,0x8a,0x84 -+// 36573 軝 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x06,0x78,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x48,0x45,0x45,0x53,0xe1,0x40 -+// 36574 軞 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x0e,0xf0,0x10,0x10,0x1f,0xf0,0x10,0x1f,0xf0,0x10,0x90,0x11,0x11,0x0f,0x00 -+// 36575 軟 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x09,0x0a,0x20,0x30,0x20,0x7f,0x41,0x92,0x10,0x10,0x10,0x28,0x28,0x48,0x44,0x86,0x03,0x02 -+// 36576 軠 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x07,0x78,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x90,0x10,0xff,0x00,0x00 -+// 36577 軡 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x90,0x28,0x24,0x53,0x8a,0x08,0x7e,0x02,0x04,0x84,0x08,0x08,0x10,0x10 -+// 36578 転 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x00,0x7e,0x00,0x00,0x00,0xff,0x10,0x10,0x20,0x24,0x42,0x9f,0xf3,0x02,0x00 -+// 36579 軣 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x08,0x04,0x02,0x0c,0x30,0x00,0x80,0xfe,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0x88,0x90,0x20,0x18,0x04,0x00 -+// 36580 軤 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x07,0xf8,0x12,0x93,0x52,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 36581 軥 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x08,0x7f,0x08,0x08,0x08,0x08,0x20,0x20,0x20,0x3f,0x41,0x41,0xbd,0x25,0x25,0x25,0x3d,0xa5,0x01,0x01,0x05,0x02 -+// 36582 軦 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x09,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x24,0x24,0x24,0x24,0x45,0x45,0x83,0x00 -+// 36583 軧 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x08,0x7f,0x08,0x08,0x08,0x08,0x04,0x0e,0x78,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x48,0x45,0x55,0x6b,0x49,0x00 -+// 36584 軨 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3f,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x24,0x42,0xa3,0x1a,0x10,0xfe,0x02,0x04,0x48,0x30,0x18,0x08,0x00 -+// 36585 軩 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x18,0x10,0x24,0x22,0x4f,0xf1,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36586 軪 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x44,0x64,0x44,0x84,0xaf,0xe5,0x45,0x45,0x85,0xa9,0xf9,0xa9,0x11,0x11,0x25,0x42 -+// 36587 軫 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x0b,0x08,0x20,0x20,0x50,0x4c,0x97,0x1a,0x20,0x48,0x9c,0x32,0xc7,0x0c,0x30,0xc0,0x00,0x00 -+// 36588 軬 ; -+,0x02,0x04,0x0f,0x01,0x3f,0x02,0x0f,0x10,0x6f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x00,0x08,0xfc,0x04,0xff,0x90,0xfc,0x87,0xfa,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80 -+// 36589 軭 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xff,0x80,0x80,0xbe,0x88,0x88,0xbe,0x88,0x88,0x88,0xbf,0x80,0x80,0xff,0x00 -+// 36590 軮 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x09,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 36591 軯 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xfe,0x10,0x12,0x93,0x52,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 36592 軰 ; -+,0x02,0x3e,0x02,0x0e,0x32,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x20,0x28,0x32,0x23,0x9e,0x80,0xfe,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80 -+// 36593 軱 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x09,0x09,0x0a,0x08,0x00,0x1e,0xe8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa4,0xa4,0xa4,0xb2,0x2a,0x3f,0x2a,0x00 -+// 36594 軲 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36595 軳 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x40,0x40,0x7e,0x42,0x82,0x7a,0x4a,0x4a,0x7a,0x42,0x4a,0x44,0x41,0x41,0x3e,0x00 -+// 36596 軴 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x20,0x18,0x10,0xff,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x90,0x10,0xff,0x00,0x00 -+// 36597 軵 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3f,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x22,0x32,0x22,0x42,0x42,0xdf,0x42,0x52,0x4a,0x4e,0x4a,0x42,0x42,0x42,0x4a,0x44 -+// 36598 軶 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0x09,0x09,0x0a,0x10,0x08,0x7f,0x41,0x41,0x7f,0x40,0x7e,0x42,0x44,0x48,0x90,0xa1,0x21,0x1e,0x00 -+// 36599 軷 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7e,0x08,0x09,0x09,0x0a,0x20,0x28,0x26,0x24,0xff,0x20,0x20,0x3c,0x64,0x64,0x54,0x88,0x94,0x22,0x43,0x82 -+// 36600 軸 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x7f,0x41,0x41,0x00 -+// 36601 軹 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00,0x24,0x34,0x42,0x83,0x02,0x00 -+// 36602 軺 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xfe,0x12,0x12,0x22,0x22,0x4a,0x84,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36603 軻 ; -+,0x08,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xff,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x02,0x0a,0x04 -+// 36604 軼 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2b,0x3e,0x08,0x7f,0x08,0x08,0x08,0x09,0x10,0x10,0x50,0x50,0x7e,0x90,0x10,0x10,0xff,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 36605 軽 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0xfe,0x44,0x24,0x28,0x10,0x2c,0xc3,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 36606 軾 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7e,0x09,0x08,0x08,0x08,0x10,0x18,0x16,0x14,0xff,0x08,0x08,0xe8,0x48,0x48,0x44,0x74,0xc5,0x83,0x01,0x00 -+// 36607 軿 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x2a,0x3e,0x2a,0x3f,0x2a,0x08,0x7f,0x08,0x08,0x09,0x0a,0x04,0x86,0x44,0x28,0xff,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 36608 輀 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x86,0x00 -+// 36609 輁 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x2a,0x3e,0x2a,0x2b,0x3e,0x08,0x7f,0x08,0x09,0x0a,0x08,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0xff,0x00,0x68,0x44,0x82,0x01,0x01,0x00 -+// 36610 輂 ; -+,0x02,0x1f,0x02,0x7f,0x04,0x0f,0x30,0x4f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x00,0x20,0xfe,0x20,0xff,0x90,0xe8,0x87,0xfa,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80,0x80 -+// 36611 較 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2b,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x0b,0x20,0x10,0x02,0xff,0x48,0x64,0x82,0x44,0x44,0x28,0x28,0x10,0x28,0x44,0x83,0x02 -+// 36612 輄 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x0a,0x10,0x10,0x13,0x92,0x54,0x10,0xff,0x28,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 36613 輅 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x09,0x7f,0x08,0x08,0x08,0x08,0x08,0x40,0x40,0x7e,0x44,0xa8,0x10,0x28,0x47,0x82,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36614 輆 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x09,0x08,0x20,0x10,0xff,0x10,0x18,0x22,0xfe,0x44,0x0a,0x13,0x24,0xcc,0x14,0x62,0x83,0x02 -+// 36615 輇 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x09,0x08,0x08,0x10,0x10,0x28,0x44,0x83,0x02,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 36616 輈 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x0a,0x10,0x20,0x7e,0x42,0x52,0x4a,0x4a,0xff,0x42,0x52,0x4a,0x4a,0x82,0x82,0x0a,0x04 -+// 36617 載 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x04,0x3f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x10,0x18,0x94,0x10,0xff,0x10,0x92,0x13,0x92,0x94,0x8c,0x88,0x94,0x15,0xa5,0x42 -+// 36618 輊 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x09,0x08,0x08,0x00,0xff,0x10,0x10,0x24,0x42,0xff,0x12,0x10,0xfe,0x10,0x10,0x10,0xff,0x00,0x00 -+// 36619 輋 ; -+,0x00,0x10,0x1f,0x02,0x7f,0x04,0x1f,0x60,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x80,0x84,0xfc,0x00,0xff,0x88,0xf7,0x82,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xff,0x80 -+// 36620 輌 ; -+,0x10,0x11,0x7e,0x10,0x7d,0x55,0x7d,0x55,0x7d,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x00,0xff,0x10,0x10,0xff,0x11,0x55,0x55,0x55,0x55,0x7d,0x01,0x01,0x09,0x05,0x02 -+// 36621 輍 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x2a,0x3e,0x2a,0x3f,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x48,0x64,0x46,0x93,0x12,0x28,0x44,0x83,0x02,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44 -+// 36622 輎 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x89,0x49,0x2a,0x7f,0x41,0x41,0x7f,0x41,0x41,0x7f,0x41,0x41,0x41,0x45,0x42 -+// 36623 輏 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xff,0x24,0x24,0xff,0xa5,0xa5,0xa5,0xc7,0x81,0xff,0x81,0x81,0xff,0x81,0x00 -+// 36624 輐 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3f,0x2a,0x08,0x7f,0x08,0x08,0x09,0x0a,0x20,0x18,0x08,0xff,0x82,0x7c,0x00,0x00,0xff,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 36625 輑 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x09,0x0a,0x08,0x00,0xfc,0x24,0xff,0x24,0x24,0xfc,0x24,0x40,0x7e,0xa2,0xa2,0xa2,0x3e,0x22,0x00 -+// 36626 輒 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7e,0x08,0x0b,0x08,0x08,0x08,0x00,0xff,0xa4,0xa4,0xe4,0xa4,0xa4,0xe4,0xa4,0xa4,0xa4,0xf5,0x25,0x27,0x20,0x20 -+// 36627 輓 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x09,0x0a,0x20,0x20,0x7e,0x44,0x88,0xfe,0x92,0x92,0xfe,0x92,0x28,0x28,0x49,0x89,0x07,0x00 -+// 36628 輔 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7e,0x08,0x08,0x08,0x08,0x14,0x12,0xff,0x10,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x9a,0x94 -+// 36629 輕 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x09,0x08,0x00,0xff,0x4a,0x53,0x92,0x24,0x92,0x49,0x00,0xff,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36630 輖 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x09,0x09,0x0a,0x00,0xff,0x91,0x91,0xbd,0x91,0xfd,0x81,0xbd,0xa5,0xa5,0xbd,0xa5,0x01,0x05,0x02 -+// 36631 輗 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x09,0x0a,0x00,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x28,0x28,0x48,0x49,0x89,0x0f,0x00 -+// 36632 輘 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x2a,0x3e,0x2a,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x09,0x10,0x10,0xfe,0x10,0xff,0x48,0x64,0x83,0x42,0x7c,0xc4,0x28,0x10,0x2c,0x47,0x82 -+// 36633 輙 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7e,0x09,0x08,0x08,0x08,0x00,0xf0,0xa0,0xbf,0xf1,0xb2,0xaa,0xea,0xa4,0xa4,0xa4,0xea,0x31,0x20,0x20,0x20 -+// 36634 輚 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x48,0x44,0x4e,0xf0,0x24,0x16,0x49,0x55,0x52,0xfc,0x22,0x14,0x19,0x65,0x83,0x00 -+// 36635 輛 ; -+,0x10,0x11,0x7c,0x10,0x7d,0x55,0x7d,0x55,0x55,0x7d,0x11,0x7d,0x11,0x11,0x11,0x10,0x00,0xff,0x10,0x10,0xff,0x11,0x11,0x99,0x55,0x55,0xbb,0x11,0x11,0x15,0x12,0x00 -+// 36636 輜 ; -+,0x08,0x08,0x7e,0x08,0x3f,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x92,0xdb,0x92,0xa4,0x22,0x91,0x48,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82,0x00 -+// 36637 輝 ; -+,0x09,0x09,0x4a,0x2a,0x08,0x7f,0x14,0x14,0x14,0x14,0x24,0x25,0x2e,0x44,0x00,0x00,0xff,0x11,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 36638 輞 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xff,0x81,0xc3,0xa5,0xff,0x91,0x89,0xff,0xa1,0xa1,0xff,0xa1,0x81,0x85,0x82 -+// 36639 輟 ; -+,0x08,0x09,0x7f,0x08,0x3e,0x2b,0x3e,0x2b,0x3e,0x09,0x7f,0x08,0x08,0x09,0x0a,0x08,0x00,0xef,0x22,0xd4,0xac,0x12,0x20,0xff,0x52,0x4a,0x44,0x84,0x8a,0x51,0x61,0x40 -+// 36640 輠 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3f,0x2a,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x38,0x38,0x54,0x53,0x92,0x10,0x10 -+// 36641 輡 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x00,0x20,0x20,0x3f,0x42,0x44,0x88,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x82,0x00 -+// 36642 輢 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3f,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x20,0x20,0xfe,0x20,0x50,0x88,0xff,0x04,0xf4,0x94,0x94,0xf4,0x94,0x04,0x14,0x08 -+// 36643 輣 ; -+,0x10,0x11,0x7d,0x11,0x7d,0x55,0x7d,0x55,0x55,0x7d,0x11,0x7d,0x11,0x12,0x14,0x10,0x00,0xef,0x29,0x29,0x29,0xef,0x29,0x29,0xef,0x29,0x29,0x29,0x29,0xa9,0x55,0x22 -+// 36644 輤 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x4a,0x44 -+// 36645 輥 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x88,0x8a,0xeb,0x8c,0x88,0xa9,0xc9,0x87,0x00 -+// 36646 輦 ; -+,0x08,0x3f,0x08,0x3f,0x14,0x22,0x4f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x08,0x3e,0x08,0x7f,0x14,0xa3,0xfa,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfe,0x80 -+// 36647 輧 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x09,0x0a,0x22,0x33,0x44,0x00,0xef,0x44,0x44,0x44,0xef,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 36648 輨 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x82,0x00,0x7c,0x44,0x7c,0x44,0x40,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 36649 輩 ; -+,0x01,0x3f,0x01,0x1f,0x01,0x3f,0x01,0x7f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x7f,0x00,0x20,0x3e,0x20,0x3e,0x20,0x3f,0xa0,0xff,0x88,0xf8,0x88,0x88,0xf8,0x80,0xff,0x80 -+// 36650 輪 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2b,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x44,0x83,0x7c,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 36651 輫 ; -+,0x08,0x08,0x7f,0x09,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x00,0x28,0x28,0x28,0xef,0x28,0x28,0xee,0x28,0x28,0x28,0xef,0x28,0x28,0x28,0x28,0x00 -+// 36652 輬 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x09,0x0a,0x08,0x08,0x20,0x10,0xff,0x00,0x00,0x7c,0x44,0x44,0x7c,0x10,0x94,0xd2,0x13,0x12,0x50,0x20 -+// 36653 輭 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x09,0x00,0xff,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0x86,0x10,0xff,0x10,0x28,0x46,0x83,0x02 -+// 36654 輮 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x09,0x08,0x00,0xfe,0x2c,0x10,0xff,0x32,0x54,0x90,0x50,0x30,0xff,0x38,0x54,0x93,0x12,0x10 -+// 36655 輯 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x7c,0x44,0x7c,0x00,0xff,0x44,0x7c,0x44,0x7c,0x44,0x5f,0xe4,0x04,0x04,0x04 -+// 36656 輰 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3f,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x08,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x40,0x7e,0xaa,0x2a,0x52,0x92,0x22,0xd4,0x08 -+// 36657 輱 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x09,0x0a,0x08,0x0a,0x0a,0xff,0x88,0xf9,0x89,0xe9,0xaa,0xa4,0xe4,0x85,0x8b,0x13,0x21,0x40 -+// 36658 輲 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3f,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0x86,0x00 -+// 36659 輳 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3f,0x2a,0x3e,0x09,0x7e,0x08,0x08,0x08,0x08,0x09,0x10,0x10,0xfe,0x10,0xfe,0x20,0xff,0x48,0xfc,0x13,0x10,0xfe,0x28,0x44,0x83,0x02 -+// 36660 輴 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x09,0x09,0x0a,0x0e,0xf0,0x88,0x88,0xff,0x90,0xbe,0xa2,0xbe,0xa2,0xa2,0xbe,0xa2,0x3e,0x22,0x00 -+// 36661 輵 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x09,0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0xc9,0x49,0x55,0x67,0xfd,0x41,0x0a,0x04 -+// 36662 輶 ; -+,0x08,0x08,0x7e,0x09,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x84,0x46,0x28,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xce,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 36663 輷 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x40,0x40,0x7f,0x81,0x91,0xfd,0x01,0x79,0x01,0x79,0x01,0x79,0x49,0x79,0x05,0x02 -+// 36664 輸 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x44,0xfb,0x00,0xe2,0xaa,0xea,0xaa,0xaa,0xea,0xaa,0xa2,0xaa,0xa4 -+// 36665 輹 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x0b,0x40,0x7e,0x40,0xfe,0x42,0x7e,0x42,0x7e,0x40,0x7e,0xc4,0xa8,0x10,0x2c,0xc7,0x02 -+// 36666 輺 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x08,0x2a,0x2b,0x52,0x94,0xff,0x94,0x4a,0x49,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 36667 輻 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0xff,0x00,0x3e,0x22,0x22,0x3e,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x00 -+// 36668 輼 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 36669 輽 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x2b,0x08,0x7f,0x08,0x08,0x08,0x08,0x20,0x24,0x42,0xff,0x12,0xff,0x28,0x44,0x82,0xff,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 36670 輾 ; -+,0x10,0x11,0x7f,0x11,0x7d,0x55,0x7d,0x55,0x7d,0x11,0x7f,0x11,0x11,0x12,0x12,0x14,0x00,0xfe,0x02,0xfe,0x28,0x28,0xff,0x28,0x28,0xff,0x49,0x4a,0x44,0x56,0x63,0x42 -+// 36671 輿 ; -+,0x04,0x1b,0x10,0x1b,0x12,0x13,0x12,0x1b,0x10,0x17,0x10,0x7f,0x08,0x0c,0x10,0x20,0x80,0xec,0x84,0xec,0xa4,0xe4,0xa4,0xec,0x84,0xf4,0x84,0xff,0x10,0x0c,0x06,0x04 -+// 36672 轀 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0xfe,0x92,0x92,0xaa,0xc6,0xfe,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 36673 轁 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x1f,0xf0,0x91,0x49,0x4a,0x20,0xc6,0x82,0x82,0xee,0x82,0x82,0xfe,0x82,0x00 -+// 36674 轂 ; -+,0x08,0x7f,0x08,0x3e,0x00,0x7f,0x49,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x00,0x3c,0x24,0x24,0x24,0x24,0x43,0xbc,0x24,0x24,0x24,0x18,0x14,0x27,0x42,0x80 -+// 36675 轃 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3f,0x2a,0x2a,0x3f,0x08,0x7f,0x08,0x08,0x09,0x08,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x48,0xf6,0x13,0xfc,0x38,0x54,0x92,0x10,0x10 -+// 36676 轄 ; -+,0x08,0x08,0x7f,0x09,0x3e,0x2a,0x3e,0x2a,0x3f,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x11,0xfe,0x10,0xfc,0x10,0xff,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 36677 轅 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x09,0x0a,0x08,0x08,0x10,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x21,0x52,0xcc,0x44,0x43,0x62,0x40 -+// 36678 轆 ; -+,0x10,0x10,0x7d,0x11,0x7d,0x55,0x7d,0x55,0x7d,0x11,0x7d,0x11,0x11,0x12,0x12,0x14,0x20,0x10,0xff,0x28,0xfe,0x2a,0x2a,0xfe,0x48,0x4a,0x7c,0x48,0x49,0x69,0x47,0x00 -+// 36679 轇 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x2b,0x3e,0x2a,0x3e,0x09,0x08,0x7f,0x08,0x08,0x08,0x0b,0x00,0xee,0xa2,0x6a,0xa6,0x2a,0x56,0x28,0x44,0xb3,0xc8,0x32,0xc7,0x18,0x60,0x80 -+// 36680 轈 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x09,0x7e,0x08,0x08,0x09,0x08,0x49,0x92,0x24,0x92,0xff,0x92,0xfe,0x92,0xfe,0x10,0xff,0x38,0x54,0x93,0x12,0x10 -+// 36681 轉 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x2a,0x3f,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x12,0xff,0x0a,0xff,0x88,0x48,0x48,0x18 -+// 36682 轊 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3f,0x2a,0x3e,0x2a,0x08,0x7e,0x08,0x08,0x08,0x08,0x44,0x44,0xef,0x44,0xef,0x44,0xef,0x44,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 36683 轋 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2b,0x3e,0x08,0x7e,0x08,0x08,0x08,0x09,0x0a,0x08,0x08,0x7f,0x08,0xbe,0xaa,0x3e,0xaa,0xbe,0x88,0xff,0x88,0x88,0x88,0x7f,0x00 -+// 36684 轌 ; -+,0x08,0x7f,0x08,0x3e,0x2a,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0xff,0x91,0x56,0x10,0x56,0x00,0xfe,0x02,0x7e,0x02,0x02,0xfe,0x00 -+// 36685 轍 ; -+,0x11,0x10,0x7f,0x11,0x7f,0x54,0x7d,0x55,0x7d,0x55,0x11,0x7d,0x11,0x11,0x11,0x11,0x08,0x8c,0xe8,0x4f,0xf2,0x2a,0xea,0x2a,0xea,0x2a,0x24,0xe4,0x2a,0x29,0x31,0x60 -+// 36686 轎 ; -+,0x08,0x09,0x7e,0x09,0x3e,0x2a,0x3f,0x2a,0x3e,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x0e,0xf0,0x20,0xff,0x44,0xfa,0x4b,0x7a,0x00,0xff,0x01,0x7d,0x45,0x7d,0x05,0x02 -+// 36687 轏 ; -+,0x11,0x11,0x7d,0x11,0x7d,0x55,0x7d,0x55,0x7d,0x11,0x11,0x7d,0x11,0x12,0x12,0x14,0xfe,0x02,0xfe,0x00,0x7c,0x28,0xfe,0x10,0x10,0xef,0x42,0x5f,0xe4,0x44,0x54,0x88 -+// 36688 轐 ; -+,0x08,0x09,0x7e,0x09,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x08,0x7f,0x08,0x08,0x08,0x09,0x28,0x29,0xaa,0xff,0x44,0x28,0xfe,0x10,0xfe,0x10,0xff,0x28,0x44,0x46,0x83,0x02 -+// 36689 轑 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3f,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x09,0x0a,0x08,0x10,0x10,0xff,0x29,0x46,0xfe,0x45,0x7c,0x44,0x7c,0x90,0xd4,0x93,0x12,0x50,0x20 -+// 36690 轒 ; -+,0x08,0x08,0x7e,0x08,0x3f,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x0b,0x10,0x10,0xfe,0x54,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0xc3,0x02 -+// 36691 轓 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2b,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x0e,0xf0,0x14,0x96,0x58,0xff,0x38,0x54,0x93,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 36692 轔 ; -+,0x08,0x08,0x7e,0x09,0x3e,0x2a,0x3e,0x2b,0x3e,0x09,0x0b,0x7e,0x08,0x09,0x09,0x0a,0x10,0x92,0x54,0xff,0x38,0x54,0x93,0x84,0xff,0x54,0x54,0xff,0x84,0x04,0x04,0x04 -+// 36693 轕 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x2a,0x09,0x7f,0x08,0x08,0x08,0x08,0x24,0xff,0x24,0x7e,0x42,0x7e,0x42,0x7e,0x40,0xff,0x91,0x91,0xa9,0xfd,0x05,0x02 -+// 36694 轖 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3f,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0xfe,0x54,0x54,0xba,0xff,0x00,0xfe,0x82,0xba,0xaa,0xba,0x82,0xfe,0x82 -+// 36695 轗 ; -+,0x10,0x10,0x7d,0x11,0x7d,0x55,0x7d,0x55,0x7d,0x12,0x10,0x7d,0x11,0x12,0x14,0x10,0x0a,0x0a,0xff,0x08,0xfa,0x0b,0x7a,0x54,0x75,0x0b,0x21,0x52,0x55,0x45,0x3c,0x00 -+// 36696 轘 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2b,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x09,0x0a,0x08,0x08,0x00,0xfe,0xaa,0xfe,0x00,0xff,0x00,0xfe,0x82,0xfe,0x54,0xd6,0x48,0x54,0xe3,0x42 -+// 36697 轙 ; -+,0x08,0x09,0x7e,0x08,0x3e,0x2b,0x3e,0x2b,0x3e,0x09,0x7e,0x08,0x0b,0x08,0x09,0x08,0x44,0xff,0x10,0xfe,0x10,0xff,0x28,0xca,0x48,0xff,0x68,0xca,0x4c,0x49,0x55,0x82 -+// 36698 轚 ; -+,0x08,0x7f,0x08,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x0f,0x08,0x0f,0x08,0x7f,0x00,0x00,0x00,0x3c,0x24,0x24,0x43,0xbe,0x24,0x18,0xa7,0xfa,0x88,0xf8,0x88,0xff,0x80,0x80 -+// 36699 轛 ; -+,0x10,0x12,0x7d,0x10,0x7f,0x56,0x7d,0x57,0x7c,0x10,0x13,0x7c,0x10,0x10,0x17,0x10,0xa2,0xaa,0xb2,0xa2,0xf2,0x2f,0x42,0xf2,0x8a,0x8a,0xe2,0x82,0x82,0xf2,0x0a,0x04 -+// 36700 轜 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x2a,0x2b,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0xfe,0x10,0xff,0x91,0x56,0x10,0x56,0x00,0xff,0x10,0xff,0xa5,0xa5,0xa5,0xa1,0x83 -+// 36701 轝 ; -+,0x1d,0x11,0x1d,0x11,0x1c,0x7f,0x04,0x0f,0x10,0x6f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x1c,0xc4,0x1c,0xc4,0x5c,0xff,0x90,0xf8,0x87,0xfa,0x88,0xf8,0x88,0xf8,0x80,0x80 -+// 36702 轞 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x09,0x08,0x04,0xf4,0xa4,0xf7,0x94,0xfa,0xab,0xa2,0xf0,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 36703 轟 ; -+,0x00,0x1f,0x00,0x0f,0x08,0x3f,0x00,0x08,0x7f,0x08,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x80,0xfc,0x80,0xf8,0x88,0xff,0x80,0x90,0x7e,0x10,0x7c,0x54,0x7c,0x10,0x7e,0x10 -+// 36704 轠 ; -+,0x10,0x10,0x7c,0x10,0x7c,0x54,0x7c,0x54,0x7d,0x55,0x11,0x7d,0x11,0x11,0x11,0x10,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x55,0xff,0x55,0x55,0xff,0x11,0x00 -+// 36705 轡 ; -+,0x00,0x23,0x28,0x2b,0x52,0x7b,0x22,0x7a,0x03,0x50,0x5f,0x08,0x08,0x08,0x0f,0x08,0x84,0xe4,0x8f,0xe2,0xa5,0xef,0xa1,0xaa,0xe9,0x91,0xf8,0x08,0x08,0x08,0xf8,0x08 -+// 36706 轢 ; -+,0x11,0x11,0x7e,0x13,0x7d,0x55,0x7e,0x57,0x7c,0x13,0x10,0x7c,0x11,0x12,0x14,0x10,0x22,0x22,0x74,0xdf,0x72,0x54,0xd9,0xff,0x20,0xff,0x70,0xa8,0xa4,0x23,0x22,0x20 -+// 36707 轣 ; -+,0x10,0x11,0x7d,0x11,0x7d,0x55,0x7d,0x55,0x55,0x7d,0x11,0x7d,0x11,0x12,0x12,0x14,0x00,0xff,0x26,0xdc,0x44,0xff,0x6e,0xd5,0x45,0x04,0x10,0x5e,0x50,0x50,0xff,0x00 -+// 36708 轤 ; -+,0x10,0x10,0x7c,0x11,0x7d,0x55,0x7d,0x55,0x7d,0x11,0x7d,0x11,0x11,0x12,0x14,0x11,0x10,0x1c,0x10,0xff,0x12,0x7c,0x11,0x7f,0x52,0x7e,0x52,0x7e,0x00,0xfe,0xaa,0xff -+// 36709 轥 ; -+,0x10,0x13,0x7c,0x11,0x7d,0x55,0x7d,0x55,0x55,0x7d,0x11,0x7d,0x11,0x11,0x11,0x11,0x84,0xff,0x84,0xef,0x29,0xef,0x29,0xef,0x29,0x7f,0xc9,0x7f,0x49,0x7f,0x41,0x03 -+// 36710 车 ; -+,0x01,0x01,0x3f,0x02,0x02,0x04,0x08,0x1f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x40,0x40,0x40,0xfe,0x40,0x40,0xff,0x40,0x40,0x40,0x40,0x40 -+// 36711 轧 ; -+,0x04,0x04,0x08,0x7f,0x08,0x12,0x12,0x3f,0x12,0x02,0x0f,0x72,0x22,0x02,0x02,0x02,0x10,0x10,0x10,0xd0,0x10,0x10,0x10,0x90,0x10,0xd0,0x10,0x12,0x12,0x13,0x0e,0x00 -+// 36712 轨 ; -+,0x08,0x08,0x7f,0x10,0x14,0x24,0x24,0x7f,0x04,0x04,0x0f,0x74,0x04,0x04,0x04,0x05,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0x24,0x44,0x45,0x45,0x85,0x87,0x00 -+// 36713 轩 ; -+,0x08,0x08,0x7f,0x08,0x10,0x14,0x24,0x7e,0x04,0x07,0x1c,0x64,0x04,0x04,0x04,0x04,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 36714 轪 ; -+,0x08,0x08,0x7f,0x10,0x11,0x28,0x28,0x7f,0x08,0x08,0x0f,0x78,0x08,0x08,0x09,0x0a,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x50,0x50,0x48,0x84,0x87,0x02,0x00 -+// 36715 轫 ; -+,0x08,0x08,0x3f,0x08,0x14,0x14,0x24,0x7f,0x24,0x04,0x0f,0x74,0x04,0x04,0x04,0x05,0x00,0x00,0xfe,0x12,0x12,0x52,0x52,0x52,0x52,0x92,0x22,0x22,0x42,0x42,0x8a,0x04 -+// 36716 转 ; -+,0x08,0x08,0x10,0x7f,0x10,0x28,0x48,0x7f,0x08,0x08,0x1e,0x68,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x7e,0x20,0x20,0xff,0x20,0x40,0xfe,0x04,0x44,0x28,0x10,0x08,0x08 -+// 36717 轭 ; -+,0x08,0x08,0x7e,0x10,0x10,0x28,0x48,0x7e,0x08,0x08,0x0e,0x78,0x29,0x09,0x0a,0x08,0x00,0x00,0xff,0x80,0xbe,0xa2,0xa2,0xa2,0xa2,0xaa,0xa4,0xa0,0x21,0x21,0x1f,0x00 -+// 36718 轮 ; -+,0x08,0x08,0x7f,0x10,0x10,0x28,0x49,0x7e,0x08,0x0b,0x1c,0x68,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x28,0x44,0x83,0x42,0x44,0x4e,0x70,0x40,0x42,0x42,0x43,0x3e,0x00 -+// 36719 软 ; -+,0x08,0x08,0x08,0x7f,0x10,0x14,0x24,0x7f,0x04,0x04,0x07,0x7c,0x04,0x04,0x04,0x05,0x20,0x20,0x40,0x7f,0x42,0x90,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x82,0x83,0x02 -+// 36720 轰 ; -+,0x01,0x3f,0x02,0x04,0x0f,0x00,0x7f,0x00,0x1f,0x01,0x1a,0x04,0x0a,0x11,0x21,0x00,0x00,0xfe,0x00,0x80,0xf8,0x80,0xff,0x80,0xbe,0x44,0x44,0x28,0x10,0x2c,0x43,0x82 -+// 36721 轱 ; -+,0x08,0x08,0x7f,0x10,0x15,0x24,0x24,0x7f,0x04,0x04,0x0e,0x74,0x04,0x04,0x04,0x04,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 36722 轲 ; -+,0x10,0x18,0x10,0x7f,0x10,0x28,0x28,0x7e,0x08,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0x04,0x14,0x08 -+// 36723 轳 ; -+,0x08,0x08,0x7f,0x10,0x14,0x14,0x24,0x7f,0x04,0x07,0x1c,0x64,0x04,0x04,0x04,0x05,0x10,0x10,0x1f,0x10,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x40,0x80,0x80,0x00 -+// 36724 轴 ; -+,0x10,0x18,0x10,0x7e,0x20,0x28,0x48,0x7e,0x08,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82,0x82,0x00 -+// 36725 轵 ; -+,0x08,0x08,0x7f,0x10,0x28,0x28,0x48,0x7f,0x08,0x0f,0x78,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x00,0x24,0x22,0x42,0x41,0x81,0x00 -+// 36726 轶 ; -+,0x08,0x08,0x7e,0x10,0x28,0x29,0x48,0x7e,0x08,0x08,0x0f,0x78,0x08,0x08,0x09,0x0a,0x10,0x10,0x90,0x90,0xfe,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x86,0x03,0x02 -+// 36727 轷 ; -+,0x08,0x08,0x7f,0x08,0x10,0x14,0x24,0x7f,0x24,0x04,0x0f,0x74,0x04,0x04,0x04,0x04,0x00,0x0f,0xf0,0x12,0x93,0x52,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 36728 轸 ; -+,0x10,0x18,0x10,0x7f,0x10,0x11,0x24,0x7f,0x24,0x04,0x07,0x7c,0x04,0x04,0x05,0x04,0x10,0x10,0x28,0x44,0x93,0x1a,0x20,0x48,0x8c,0x12,0x63,0x84,0x18,0x60,0x80,0x00 -+// 36729 轹 ; -+,0x10,0x10,0x7e,0x10,0x10,0x28,0x28,0x7e,0x08,0x08,0x0e,0x78,0x09,0x0a,0x08,0x08,0x00,0x1e,0xe0,0x80,0x90,0x90,0x90,0xff,0x10,0x14,0x92,0xd1,0x11,0x10,0x50,0x20 -+// 36730 轺 ; -+,0x08,0x08,0x7f,0x08,0x10,0x14,0x24,0x7e,0x05,0x04,0x0f,0x74,0x04,0x04,0x04,0x04,0x00,0xfe,0x22,0x22,0x22,0x42,0x4a,0x84,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 36731 轻 ; -+,0x10,0x10,0x7f,0x10,0x28,0x28,0x48,0x7e,0x09,0x08,0x0e,0x78,0x08,0x08,0x0b,0x08,0x00,0xfe,0x04,0x08,0x10,0x28,0x46,0x82,0xff,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36732 轼 ; -+,0x10,0x10,0x10,0x7c,0x13,0x28,0x28,0x7d,0x08,0x08,0x0e,0x78,0x08,0x0b,0x09,0x08,0x10,0x14,0x12,0x10,0xff,0x10,0x10,0xe8,0x48,0x48,0x48,0x45,0x75,0x83,0x01,0x00 -+// 36733 载 ; -+,0x02,0x02,0x1f,0x02,0x7f,0x04,0x3f,0x08,0x12,0x3f,0x02,0x03,0x3e,0x02,0x02,0x02,0x20,0x28,0xa4,0x20,0xff,0x20,0xa2,0x22,0x14,0x94,0x18,0x98,0x29,0x45,0x82,0x00 -+// 36734 轾 ; -+,0x08,0x09,0x7e,0x10,0x10,0x28,0x28,0x7e,0x08,0x08,0x0e,0x78,0x28,0x08,0x09,0x08,0x00,0xfe,0x20,0x28,0x44,0x4e,0xf3,0x12,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36735 轿 ; -+,0x10,0x11,0x10,0x7e,0x11,0x28,0x28,0x7d,0x0a,0x08,0x0e,0x78,0x08,0x08,0x09,0x0a,0x1e,0xe0,0x20,0x20,0xff,0x50,0x88,0x07,0x4a,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 36736 辀 ; -+,0x08,0x08,0x7f,0x10,0x10,0x28,0x28,0x7f,0x08,0x08,0x1e,0x68,0x08,0x09,0x09,0x0a,0x10,0x20,0x7c,0x44,0x64,0x54,0x54,0xff,0x44,0x64,0x54,0x94,0x84,0x04,0x14,0x08 -+// 36737 辁 ; -+,0x08,0x08,0x7f,0x10,0x10,0x29,0x48,0x7e,0x08,0x08,0x0e,0x78,0x08,0x08,0x09,0x08,0x10,0x10,0x28,0x44,0x82,0x01,0xfc,0x10,0x10,0xfc,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36738 辂 ; -+,0x10,0x10,0x7e,0x10,0x20,0x29,0x48,0x7e,0x09,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x40,0x40,0x7e,0x44,0xc4,0x28,0x10,0x68,0x87,0xfe,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 36739 较 ; -+,0x08,0x08,0x7e,0x10,0x28,0x28,0x48,0x7d,0x08,0x08,0x1e,0x68,0x08,0x08,0x09,0x0a,0x20,0x10,0xff,0x00,0x48,0x44,0x82,0x4a,0x48,0x48,0x30,0x30,0x48,0x84,0x07,0x02 -+// 36740 辄 ; -+,0x10,0x19,0x10,0x7e,0x10,0x28,0x48,0x7e,0x08,0x08,0x1e,0x68,0x0b,0x08,0x08,0x08,0x00,0xff,0xa4,0xa4,0xe4,0xa4,0xa4,0xa4,0xe4,0xa4,0xa4,0xbd,0xe5,0x25,0x23,0x20 -+// 36741 辅 ; -+,0x08,0x08,0x08,0x7f,0x10,0x14,0x24,0x7e,0x04,0x04,0x1e,0x64,0x04,0x04,0x04,0x04,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x96 -+// 36742 辆 ; -+,0x08,0x09,0x7e,0x10,0x11,0x29,0x29,0x7f,0x09,0x09,0x0f,0x79,0x09,0x09,0x09,0x09,0x00,0xff,0x48,0x48,0xff,0x49,0x49,0x49,0x49,0x69,0x95,0xa3,0x01,0x01,0x05,0x02 -+// 36743 辇 ; -+,0x04,0x1f,0x04,0x3f,0x0a,0x11,0x21,0x1f,0x02,0x04,0x0f,0x00,0x7f,0x00,0x00,0x00,0x10,0x7e,0x10,0x7f,0x10,0x28,0x44,0xfc,0x00,0x80,0xfc,0x80,0xff,0x80,0x80,0x80 -+// 36744 辈 ; -+,0x02,0x3e,0x02,0x1e,0x02,0x3e,0x02,0x01,0x3f,0x02,0x07,0x00,0x3f,0x00,0x00,0x00,0x20,0x3e,0x20,0x3c,0x20,0x3f,0xa0,0x00,0xfe,0x40,0xfc,0x40,0xff,0x40,0x40,0x40 -+// 36745 辉 ; -+,0x08,0x09,0x4b,0x2c,0x28,0x7f,0x14,0x14,0x14,0x14,0x14,0x15,0x26,0x24,0x40,0x00,0x00,0xff,0x22,0x20,0xfe,0x20,0x50,0x50,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 36746 辊 ; -+,0x10,0x10,0x7e,0x10,0x10,0x28,0x28,0x7e,0x08,0x08,0x0e,0x78,0x08,0x09,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0x88,0xe9,0x8e,0x88,0xa9,0xc9,0x8f,0x00 -+// 36747 辋 ; -+,0x10,0x10,0x7e,0x10,0x10,0x28,0x7e,0x08,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x08,0x00,0xff,0x81,0xc3,0xa5,0xff,0xa1,0x91,0xff,0xa1,0xa1,0xbd,0x81,0x81,0x85,0x82 -+// 36748 辌 ; -+,0x08,0x08,0x7f,0x08,0x10,0x10,0x28,0x7e,0x08,0x08,0x1e,0x68,0x08,0x09,0x0a,0x08,0x20,0x10,0xff,0x00,0x00,0xfe,0x82,0x82,0xfe,0x92,0x10,0x94,0x93,0x11,0x50,0x20 -+// 36749 辍 ; -+,0x10,0x11,0x7e,0x11,0x20,0x29,0x48,0x7f,0x0a,0x09,0x1e,0x69,0x09,0x0a,0x0c,0x08,0x00,0xfe,0x42,0x54,0x88,0x54,0x22,0xde,0x52,0x52,0x94,0x48,0x54,0x53,0x22,0x00 -+// 36750 辎 ; -+,0x10,0x10,0x7e,0x10,0x11,0x28,0x28,0x7e,0x08,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x52,0x5b,0x92,0xa4,0x22,0x99,0x91,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82 -+// 36751 辏 ; -+,0x10,0x10,0x7d,0x20,0x29,0x28,0x49,0x7e,0x09,0x0a,0x7d,0x08,0x08,0x08,0x09,0x0a,0x20,0x20,0xfe,0x20,0xfc,0x40,0xff,0x84,0x7a,0x21,0xfe,0x20,0x50,0x88,0x06,0x04 -+// 36752 辐 ; -+,0x08,0x08,0x7f,0x10,0x10,0x28,0x28,0x7f,0x08,0x08,0x0e,0x78,0x08,0x08,0x08,0x08,0x00,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00,0xff,0x91,0xff,0x91,0x91,0xff,0x81,0x00 -+// 36753 辑 ; -+,0x10,0x10,0x7e,0x10,0x10,0x29,0x28,0x7e,0x08,0x08,0x1e,0x68,0x0b,0x08,0x08,0x08,0x00,0xfc,0x84,0xfc,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0xff,0x84,0x04,0x04,0x04 -+// 36754 辒 ; -+,0x10,0x10,0x7f,0x10,0x20,0x28,0x7e,0x28,0x08,0x0e,0x78,0x28,0x08,0x09,0x08,0x08,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 36755 输 ; -+,0x10,0x10,0x7e,0x10,0x21,0x2a,0x7e,0x29,0x09,0x0f,0x79,0x09,0x09,0x09,0x09,0x09,0x20,0x20,0x50,0x8c,0xfb,0x00,0x02,0xea,0x2a,0xea,0x2a,0xea,0x2a,0x2a,0xa2,0x46 -+// 36756 辔 ; -+,0x10,0x18,0x13,0x25,0x7a,0x13,0x38,0x03,0x18,0x60,0x0f,0x08,0x08,0x0f,0x08,0x00,0x84,0x86,0xe8,0x11,0x9e,0xc4,0x8f,0xc0,0x87,0x98,0xf8,0x08,0x08,0xf8,0x08,0x00 -+// 36757 辕 ; -+,0x08,0x08,0x7e,0x10,0x11,0x28,0x7e,0x28,0x08,0x0e,0x18,0x68,0x0b,0x08,0x08,0x08,0x10,0x10,0xfe,0x10,0xff,0x00,0xfc,0x84,0xfc,0x31,0x52,0xcc,0x48,0x57,0x62,0x40 -+// 36758 辖 ; -+,0x08,0x08,0x7e,0x11,0x28,0x28,0x48,0x7e,0x09,0x08,0x1e,0x68,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x12,0xfe,0x10,0x7e,0x10,0xff,0x10,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 36759 辗 ; -+,0x08,0x08,0x7e,0x10,0x10,0x28,0x28,0x7e,0x08,0x0e,0x78,0x28,0x09,0x09,0x09,0x0a,0x00,0xfe,0x82,0x82,0xfe,0xa4,0xff,0xa4,0xff,0xa8,0xab,0xac,0x24,0x27,0x32,0x20 -+// 36760 辘 ; -+,0x10,0x10,0x11,0x7d,0x11,0x29,0x49,0x7f,0x09,0x0f,0x79,0x29,0x09,0x0a,0x0a,0x0c,0x20,0x10,0xfe,0x48,0x48,0xfe,0x4a,0xfe,0x48,0x4a,0x4b,0x6c,0x48,0x69,0x47,0x00 -+// 36761 辙 ; -+,0x11,0x10,0x7f,0x10,0x21,0x2b,0x48,0x7f,0x0a,0x0b,0x1e,0x6b,0x0a,0x0a,0x0a,0x0a,0x0c,0x88,0xe8,0x8f,0x52,0xf2,0x52,0xf2,0x2a,0xea,0x24,0xe4,0x24,0x2a,0xa9,0x51 -+// 36762 辚 ; -+,0x08,0x08,0x7e,0x11,0x10,0x28,0x48,0x7e,0x08,0x0d,0x1b,0x6c,0x08,0x08,0x09,0x0a,0x10,0x92,0x54,0xff,0x38,0x54,0x93,0x84,0xff,0x24,0x34,0xdf,0xd4,0x84,0x04,0x04 -+// 36763 辛 ; -+,0x01,0x00,0x3f,0x00,0x08,0x04,0x02,0x7f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xfe,0x00,0x08,0x10,0x20,0xff,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0x80 -+// 36764 辜 ; -+,0x00,0x3f,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x04,0x02,0x7f,0x00,0x1f,0x00,0x00,0x00,0x80,0xfe,0x80,0xf8,0x08,0xf8,0x80,0xfe,0x10,0x20,0xff,0x80,0xfe,0x80,0x80,0x80 -+// 36765 辝 ; -+,0x08,0x0c,0x08,0x12,0x21,0x7f,0x21,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x00,0x00,0x10,0x08,0xff,0x00,0x22,0x94,0x00,0xff,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08 -+// 36766 辞 ; -+,0x00,0x06,0x78,0x08,0x08,0x7f,0x08,0x09,0x08,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x20,0x10,0xff,0x00,0x42,0x24,0x00,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 36767 辟 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x20,0x20,0x3e,0x32,0x52,0x52,0x5e,0x52,0x00,0x00,0x20,0x10,0xff,0x00,0x42,0x24,0x00,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 36768 辠 ; -+,0x01,0x0f,0x0a,0x09,0x08,0x0f,0x00,0x1f,0x04,0x02,0x7f,0x00,0x1f,0x00,0x00,0x00,0x00,0xf8,0x48,0x28,0x08,0xf8,0x80,0xfe,0x10,0x20,0xff,0x80,0xfe,0x80,0x80,0x80 -+// 36769 辡 ; -+,0x10,0x08,0x08,0x7f,0x22,0x14,0x00,0x3f,0x08,0x08,0x3f,0x08,0x08,0x10,0x20,0x40,0x10,0x08,0x7f,0x42,0x22,0x24,0x00,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08 -+// 36770 辢 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x25,0x25,0x3f,0x0c,0x16,0x15,0x25,0x44,0x04,0x04,0x10,0x08,0x7f,0x02,0x22,0x14,0x08,0xff,0x08,0x08,0x7f,0x88,0x08,0x08,0x08,0x08 -+// 36771 辣 ; -+,0x10,0x08,0x7f,0x00,0x22,0x14,0x7e,0x08,0x08,0x7e,0x08,0x08,0x10,0x11,0x22,0x40,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x30,0x58,0x54,0x97,0x12,0x10,0x10 -+// 36772 辤 ; -+,0x07,0x78,0x01,0x29,0x15,0x3f,0x40,0x40,0x3f,0x01,0x1a,0x04,0x0a,0x11,0x21,0x00,0x90,0x08,0x7f,0x80,0x22,0x92,0x94,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08 -+// 36773 辥 ; -+,0x08,0x49,0x49,0x7f,0x14,0x28,0x7f,0x21,0x21,0x3f,0x20,0x3f,0x21,0x21,0x3f,0x20,0x10,0x08,0x7f,0x00,0x42,0x22,0x14,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08 -+// 36774 辦 ; -+,0x21,0x11,0x7d,0x01,0x4b,0x29,0x7d,0x11,0x11,0x7d,0x11,0x12,0x22,0x25,0x48,0x00,0x10,0x08,0x3f,0x00,0xd1,0x4a,0x5f,0x44,0x44,0x5f,0x44,0x44,0x44,0x44,0x84,0x00 -+// 36775 辧 ; -+,0x10,0x08,0x7f,0x01,0x23,0x15,0x7f,0x09,0x09,0x7f,0x09,0x0a,0x12,0x25,0x48,0x00,0x08,0x04,0xdf,0x40,0x51,0x4a,0x5f,0x44,0x44,0x5f,0x44,0x44,0x44,0x44,0x84,0x04 -+// 36776 辨 ; -+,0x10,0x08,0x7f,0x00,0x23,0x15,0x7f,0x09,0x08,0x3e,0x08,0x10,0x11,0x21,0x42,0x04,0x48,0x44,0x7f,0x42,0x63,0x54,0x40,0x7f,0x48,0x48,0xbf,0x88,0x08,0x08,0x08,0x08 -+// 36777 辩 ; -+,0x11,0x08,0x7e,0x20,0x15,0x14,0x7e,0x08,0x08,0x3e,0x08,0x08,0x10,0x10,0x20,0x00,0x08,0xc4,0xbf,0x02,0xa3,0x9a,0x94,0xbf,0x84,0x84,0xdf,0x84,0x04,0x04,0x04,0x00 -+// 36778 辪 ; -+,0x04,0x04,0x27,0x24,0x7f,0x08,0x3f,0x21,0x21,0x3f,0x20,0x3f,0x21,0x21,0x3f,0x00,0x20,0x10,0x7f,0x04,0xc6,0x24,0x08,0xff,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10 -+// 36779 辫 ; -+,0x10,0x08,0x3e,0x04,0x25,0x15,0x7e,0x09,0x0b,0x7e,0x08,0x08,0x13,0x11,0x20,0x40,0x08,0x04,0xbf,0x82,0x53,0xca,0x9f,0x04,0xc4,0x1f,0x04,0xe4,0x84,0x04,0x04,0x04 -+// 36780 辬 ; -+,0x11,0x08,0x7e,0x00,0x47,0x2a,0x01,0x7f,0x08,0x08,0x3f,0x09,0x0a,0x14,0x28,0x40,0x10,0x88,0xbf,0x00,0xf1,0x4a,0x40,0x5f,0x84,0x84,0x5f,0x44,0x64,0x44,0x04,0x04 -+// 36781 辭 ; -+,0x07,0x78,0x25,0x12,0x3f,0x11,0x0a,0x04,0x3f,0x2a,0x3f,0x21,0x3f,0x2a,0x24,0x2a,0x10,0x08,0x7f,0x41,0xa2,0x14,0x7f,0x08,0x88,0x88,0xff,0x88,0x88,0x88,0x88,0x88 -+// 36782 辮 ; -+,0x10,0x08,0x7e,0x01,0x25,0x1b,0x7c,0x11,0x13,0x7c,0x10,0x12,0x24,0x28,0x42,0x01,0x88,0xc4,0xbf,0x00,0x51,0xca,0xbf,0x04,0xe4,0xbf,0xc4,0xa4,0xb4,0xa4,0x84,0x00 -+// 36783 辯 ; -+,0x21,0x10,0x7c,0x03,0x44,0x29,0x7c,0x11,0x10,0x7d,0x11,0x11,0x11,0x21,0x21,0x40,0x08,0x84,0x1f,0xe0,0x11,0xca,0x3f,0xc4,0x04,0xdf,0x44,0x44,0x44,0xc4,0x44,0x00 -+// 36784 辰 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x1f,0x12,0x12,0x12,0x12,0x12,0x22,0x23,0x42,0x00,0x00,0xfe,0x00,0x00,0xfc,0x00,0xff,0x80,0x84,0x4e,0x50,0x20,0x90,0x0c,0x03,0x00 -+// 36785 辱 ; -+,0x1f,0x10,0x17,0x10,0x1f,0x12,0x12,0x22,0x23,0x42,0x3f,0x00,0x02,0x02,0x00,0x00,0xfe,0x00,0xfc,0x00,0xff,0x84,0x48,0x30,0x0f,0x14,0xff,0x10,0x10,0x10,0x50,0x20 -+// 36786 農 ; -+,0x01,0x0f,0x09,0x0f,0x09,0x0f,0x00,0x1f,0x10,0x17,0x10,0x1f,0x14,0x25,0x26,0x44,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x00,0xfe,0x00,0xfc,0x00,0xff,0x24,0x18,0x0c,0x03 -+// 36787 辳 ; -+,0x04,0x04,0x3f,0x0e,0x15,0x34,0x4f,0x08,0x0b,0x08,0x0f,0x0a,0x12,0x12,0x23,0x42,0x10,0x10,0x7f,0x38,0x57,0x92,0xfe,0x00,0xf8,0x00,0xfe,0x44,0x28,0x90,0x0f,0x02 -+// 36788 辴 ; -+,0x00,0x77,0x55,0x77,0x00,0x7f,0x49,0x7f,0x49,0x7f,0x08,0x7f,0x08,0x08,0x09,0x0a,0x00,0x7f,0x40,0x40,0x5e,0x40,0x7f,0x54,0x55,0x56,0x54,0x94,0x92,0x9b,0x12,0x00 -+// 36789 辵 ; -+,0x00,0x03,0x3c,0x00,0x01,0x1e,0x00,0x3f,0x00,0x08,0x08,0x08,0x08,0x16,0x21,0x40,0x3c,0xc0,0x00,0x38,0xc0,0x0e,0x70,0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0xff,0x00 -+// 36790 辶 ; -+,0x20,0x10,0x0c,0x08,0x00,0x38,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x16,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00 -+// 36791 辷 ; -+,0x00,0x20,0x18,0x10,0x00,0x00,0x79,0x08,0x08,0x08,0x08,0x08,0x08,0x16,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00 -+// 36792 辸 ; -+,0x20,0x13,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x09,0x09,0x0a,0x08,0x16,0x21,0x40,0x00,0xfc,0x84,0x88,0x88,0x9e,0x8a,0x82,0x82,0x02,0x02,0x14,0x08,0x00,0xff,0x00 -+// 36793 边 ; -+,0x20,0x10,0x18,0x10,0x03,0x00,0x78,0x08,0x08,0x08,0x09,0x0a,0x08,0x14,0x23,0x00,0x40,0x40,0x40,0x40,0xfc,0x44,0x44,0x44,0x84,0x84,0x04,0x38,0x10,0x00,0xff,0x00 -+// 36794 辺 ; -+,0x20,0x10,0x19,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x09,0x0a,0x14,0x23,0x40,0x00,0x00,0xfe,0x42,0x42,0x42,0x42,0x42,0x42,0x82,0x82,0x3c,0x08,0x00,0xff,0x00 -+// 36795 辻 ; -+,0x20,0x10,0x18,0x10,0x00,0x03,0x38,0x08,0x08,0x08,0x08,0x08,0x08,0x14,0x23,0x00,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0xff,0x00 -+// 36796 込 ; -+,0x00,0x20,0x18,0x10,0x00,0x00,0x70,0x10,0x10,0x11,0x12,0x14,0x10,0x2c,0x43,0x00,0x80,0x60,0x30,0x20,0x20,0x50,0x50,0x88,0x88,0x04,0x03,0x02,0x00,0x00,0xff,0x00 -+// 36797 辽 ; -+,0x20,0x13,0x18,0x10,0x00,0x00,0x70,0x10,0x10,0x10,0x10,0x11,0x10,0x2c,0x43,0x00,0x00,0xfe,0x04,0x08,0x50,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x40,0x00,0xff,0x00 -+// 36798 达 ; -+,0x00,0x20,0x18,0x08,0x07,0x00,0x00,0x70,0x10,0x10,0x11,0x12,0x14,0x28,0x47,0x00,0x00,0x40,0x40,0x40,0xfe,0x40,0x40,0x40,0xa0,0x90,0x0c,0x06,0x04,0x01,0xfe,0x00 -+// 36799 辿 ; -+,0x00,0x20,0x10,0x0d,0x09,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x08,0x14,0x23,0x40,0x10,0x10,0x10,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0xff,0x01,0x00,0x00,0xff,0x00 -+// 36800 迀 ; -+,0x20,0x13,0x18,0x10,0x00,0x00,0x7b,0x08,0x08,0x08,0x08,0x08,0x08,0x14,0x23,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0xff,0x00 -+// 36801 迁 ; -+,0x00,0x20,0x1b,0x10,0x00,0x00,0x77,0x10,0x10,0x10,0x10,0x10,0x10,0x28,0x47,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0xff,0x00 -+// 36802 迂 ; -+,0x20,0x13,0x18,0x10,0x00,0x07,0x70,0x10,0x10,0x10,0x10,0x10,0x10,0x2c,0x43,0x00,0x00,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20,0xa0,0x40,0x00,0xff,0x00 -+// 36803 迃 ; -+,0x00,0x21,0x18,0x10,0x03,0x00,0x78,0x09,0x08,0x08,0x08,0x08,0x08,0x16,0x21,0x40,0x00,0xfe,0x00,0x00,0xff,0x80,0x80,0xfc,0x84,0x04,0x04,0x14,0x08,0x00,0xff,0x00 -+// 36804 迄 ; -+,0x01,0x21,0x19,0x12,0x04,0x0b,0x70,0x10,0x10,0x11,0x12,0x13,0x10,0x2c,0x43,0x00,0x00,0x00,0xfc,0x00,0x00,0xf0,0x20,0x40,0x84,0x04,0x04,0xf8,0x00,0x00,0xff,0x00 -+// 36805 迅 ; -+,0x20,0x13,0x18,0x10,0x00,0x07,0x70,0x10,0x10,0x10,0x10,0x10,0x10,0x28,0x47,0x00,0x00,0xf8,0x88,0x88,0x88,0xe8,0x88,0x88,0x88,0x8a,0x86,0x82,0x80,0x00,0xff,0x00 -+// 36806 迆 ; -+,0x20,0x10,0x18,0x11,0x01,0x07,0x79,0x09,0x09,0x09,0x09,0x09,0x08,0x16,0x21,0x00,0x20,0x20,0x20,0x2c,0x74,0xa4,0x24,0x24,0x34,0x2a,0x03,0xfe,0x00,0x00,0xff,0x00 -+// 36807 过 ; -+,0x20,0x10,0x18,0x10,0x03,0x00,0x01,0x70,0x10,0x10,0x10,0x10,0x10,0x2c,0x43,0x00,0x08,0x08,0x08,0x08,0xff,0x08,0x08,0x88,0xc8,0x88,0x08,0x28,0x10,0x00,0xff,0x00 -+// 36808 迈 ; -+,0x20,0x13,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x09,0x09,0x0a,0x14,0x23,0x40,0x00,0xff,0x40,0x40,0x40,0x7c,0x84,0x84,0x84,0x84,0x04,0x14,0x08,0x00,0xff,0x00 -+// 36809 迉 ; -+,0x00,0x21,0x11,0x19,0x11,0x01,0x01,0x79,0x09,0x09,0x09,0x0a,0x0a,0x14,0x23,0x40,0x00,0xfe,0x02,0x02,0x02,0xfe,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00 -+// 36810 迊 ; -+,0x20,0x13,0x18,0x10,0x01,0x01,0x79,0x09,0x09,0x09,0x09,0x08,0x08,0x16,0x21,0x00,0x00,0xfe,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0x34,0x28,0x20,0x20,0x20,0xff,0x00 -+// 36811 迋 ; -+,0x20,0x13,0x18,0x10,0x00,0x00,0x73,0x10,0x10,0x10,0x10,0x17,0x10,0x2c,0x43,0x00,0x00,0xfe,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xff,0x00,0x00,0xff,0x00 -+// 36812 迌 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x78,0x08,0x08,0x08,0x09,0x09,0x0a,0x14,0x23,0x00,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x04,0x14,0x08,0x00,0xff,0x00 -+// 36813 迍 ; -+,0x00,0x20,0x17,0x18,0x10,0x02,0x72,0x12,0x13,0x10,0x10,0x10,0x10,0x28,0x47,0x00,0x40,0x40,0xfc,0x40,0x40,0x48,0x48,0x48,0xf8,0x40,0x42,0x42,0x3e,0x00,0xff,0x00 -+// 36814 迎 ; -+,0x20,0x10,0x1b,0x12,0x02,0x02,0x72,0x12,0x12,0x13,0x12,0x10,0x10,0x28,0x47,0x00,0x00,0xc0,0x3e,0x22,0x22,0x22,0x22,0x22,0xa2,0x2a,0x24,0x20,0x20,0x00,0xff,0x00 -+// 36815 迏 ; -+,0x00,0x20,0x18,0x10,0x03,0x00,0x78,0x08,0x08,0x08,0x08,0x09,0x0a,0x14,0x23,0x40,0x20,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x48,0xa4,0x92,0x12,0x00,0x00,0xff,0x00 -+// 36816 运 ; -+,0x20,0x11,0x18,0x10,0x00,0x03,0x70,0x10,0x10,0x11,0x12,0x17,0x10,0x2c,0x43,0x00,0x00,0xfe,0x00,0x00,0x00,0xff,0x40,0x90,0x88,0x04,0x3e,0xe6,0x04,0x00,0xff,0x00 -+// 36817 近 ; -+,0x20,0x10,0x19,0x11,0x01,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x12,0x28,0x47,0x00,0x00,0x1e,0xe0,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xff,0x00 -+// 36818 迒 ; -+,0x00,0x20,0x18,0x13,0x00,0x00,0x70,0x10,0x10,0x10,0x11,0x11,0x12,0x28,0x47,0x00,0x80,0x60,0x20,0xfe,0x00,0xf0,0x90,0x90,0x90,0x92,0x12,0x0e,0x00,0x00,0xff,0x00 -+// 36819 迓 ; -+,0x20,0x13,0x18,0x11,0x01,0x03,0x78,0x08,0x08,0x08,0x09,0x0a,0x08,0x16,0x21,0x00,0x00,0xfe,0x10,0x10,0x10,0xfe,0x30,0x30,0x50,0x90,0x10,0x70,0x20,0x00,0xff,0x00 -+// 36820 返 ; -+,0x00,0x21,0x11,0x19,0x11,0x01,0x71,0x11,0x11,0x12,0x12,0x14,0x11,0x28,0x47,0x00,0x04,0xfe,0x00,0x00,0xfc,0x04,0x84,0x48,0x28,0x10,0x28,0x44,0x82,0x00,0xfe,0x00 -+// 36821 迕 ; -+,0x21,0x11,0x19,0x11,0x02,0x00,0x70,0x13,0x10,0x10,0x10,0x10,0x10,0x28,0x47,0x00,0x00,0x00,0xfc,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 36822 迖 ; -+,0x00,0x10,0x0c,0x08,0x03,0x00,0x78,0x08,0x08,0x08,0x08,0x09,0x0a,0x14,0x23,0x00,0x20,0x28,0x26,0x24,0xff,0x20,0x20,0x20,0x50,0x48,0x84,0x06,0x04,0x00,0xff,0x00 -+// 36823 迗 ; -+,0x00,0x21,0x18,0x10,0x00,0x03,0x78,0x08,0x08,0x08,0x08,0x09,0x0a,0x14,0x23,0x00,0x00,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x4c,0x86,0x02,0x00,0x00,0xff,0x00 -+// 36824 还 ; -+,0x20,0x13,0x18,0x10,0x00,0x00,0x70,0x11,0x12,0x14,0x10,0x10,0x10,0x28,0x47,0x00,0x00,0xfe,0x20,0x20,0x40,0x40,0xd0,0x48,0x44,0x46,0x44,0x40,0x40,0x00,0xff,0x00 -+// 36825 这 ; -+,0x00,0x20,0x18,0x0b,0x00,0x01,0x78,0x08,0x08,0x08,0x08,0x08,0x09,0x14,0x23,0x40,0x40,0x30,0x20,0xfe,0x08,0x08,0x90,0x50,0x20,0x20,0x50,0x88,0x04,0x00,0xff,0x00 -+// 36826 迚 ; -+,0x00,0x20,0x10,0x1b,0x12,0x02,0x7a,0x0b,0x0a,0x08,0x08,0x08,0x08,0x08,0x17,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0xfe,0x22,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 36827 进 ; -+,0x00,0x20,0x10,0x1b,0x10,0x00,0x00,0x7b,0x08,0x08,0x09,0x09,0x0a,0x14,0x23,0x00,0x88,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x88,0x88,0x08,0x08,0x08,0x00,0xff,0x00 -+// 36828 远 ; -+,0x00,0x23,0x18,0x10,0x00,0x07,0x78,0x08,0x08,0x08,0x09,0x0a,0x08,0x14,0x23,0x00,0x00,0xfc,0x00,0x00,0x00,0xff,0x90,0x90,0x90,0x91,0x11,0x0f,0x00,0x00,0xff,0x00 -+// 36829 违 ; -+,0x20,0x10,0x1b,0x10,0x01,0x00,0x78,0x0b,0x08,0x08,0x08,0x08,0x08,0x14,0x23,0x40,0x20,0x20,0xfe,0x20,0xfc,0x20,0x20,0xfe,0x22,0x22,0x2a,0x24,0x20,0x20,0xff,0x00 -+// 36830 连 ; -+,0x20,0x10,0x1b,0x10,0x00,0x01,0x7b,0x09,0x08,0x0f,0x08,0x08,0x08,0x14,0x23,0x00,0x40,0x40,0xfe,0x80,0xa0,0x20,0xfc,0x20,0x20,0xff,0x20,0x20,0x20,0x00,0xff,0x00 -+// 36831 迟 ; -+,0x20,0x11,0x19,0x11,0x01,0x01,0x71,0x11,0x11,0x12,0x12,0x14,0x10,0x2c,0x43,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x20,0x10,0x08,0x06,0x04,0x00,0x00,0xff,0x00 -+// 36832 迠 ; -+,0x20,0x10,0x18,0x10,0x00,0x00,0x79,0x09,0x09,0x09,0x09,0x09,0x09,0x14,0x23,0x00,0x20,0x20,0x3f,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0x00,0xff,0x00 -+// 36833 迡 ; -+,0x20,0x11,0x19,0x11,0x01,0x01,0x79,0x09,0x09,0x0a,0x0a,0x0c,0x08,0x14,0x23,0x00,0x00,0xfc,0x04,0x04,0xfc,0x00,0x40,0x48,0x5c,0x60,0x42,0x42,0x3e,0x00,0xff,0x00 -+// 36834 迢 ; -+,0x20,0x13,0x18,0x10,0x00,0x01,0x3a,0x09,0x09,0x09,0x09,0x09,0x09,0x08,0x17,0x20,0x00,0xfe,0x42,0x42,0x82,0x1c,0x08,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36835 迣 ; -+,0x00,0x21,0x11,0x19,0x17,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x10,0x2c,0x43,0x00,0x40,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x00,0xff,0x00,0x00,0xff,0x00 -+// 36836 迤 ; -+,0x01,0x21,0x19,0x0a,0x04,0x01,0x01,0x77,0x11,0x11,0x11,0x11,0x10,0x28,0x47,0x00,0x00,0x00,0xfe,0x00,0x20,0x2c,0x74,0xa4,0x24,0x34,0x2a,0x02,0xfe,0x00,0xff,0x00 -+// 36837 迥 ; -+,0x20,0x10,0x1b,0x12,0x02,0x02,0x72,0x12,0x12,0x12,0x12,0x12,0x12,0x28,0x47,0x00,0x00,0x00,0xfc,0x04,0xf4,0x94,0x94,0x94,0xf4,0x94,0x84,0x14,0x08,0x00,0xff,0x00 -+// 36838 迦 ; -+,0x02,0x22,0x12,0x17,0x02,0x02,0x72,0x12,0x12,0x12,0x12,0x15,0x10,0x28,0x47,0x00,0x00,0x00,0x00,0xde,0x52,0x52,0x52,0x52,0x52,0x52,0x5e,0x52,0x90,0x00,0xff,0x00 -+// 36839 迧 ; -+,0x20,0x10,0x18,0x11,0x01,0x01,0x79,0x09,0x09,0x09,0x08,0x08,0x08,0x14,0x23,0x40,0x20,0x20,0x20,0xfc,0x24,0x24,0xfc,0x24,0x24,0xfc,0x20,0x20,0x20,0x20,0xff,0x00 -+// 36840 迨 ; -+,0x20,0x10,0x18,0x10,0x01,0x03,0x70,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x40,0x60,0x48,0x84,0x3e,0xe4,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36841 迩 ; -+,0x20,0x10,0x18,0x11,0x01,0x02,0x78,0x09,0x09,0x09,0x0a,0x08,0x08,0x14,0x23,0x40,0x80,0x80,0xff,0x02,0x04,0x20,0x20,0x28,0xa4,0x24,0x22,0x22,0xa0,0x40,0xff,0x00 -+// 36842 迪 ; -+,0x20,0x10,0x18,0x10,0x03,0x02,0x72,0x13,0x12,0x12,0x12,0x13,0x12,0x28,0x47,0x00,0x20,0x20,0x20,0x20,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0xfe,0x02,0x00,0xff,0x00 -+// 36843 迫 ; -+,0x20,0x10,0x18,0x11,0x01,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x09,0x14,0x23,0x40,0x20,0x20,0x40,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36844 迬 ; -+,0x20,0x10,0x18,0x13,0x00,0x00,0x79,0x08,0x08,0x08,0x08,0x0b,0x08,0x14,0x23,0x40,0x40,0x30,0x20,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0xff,0x00,0x00,0xfe,0x00 -+// 36845 迭 ; -+,0x20,0x11,0x19,0x11,0x02,0x02,0x74,0x13,0x10,0x10,0x10,0x11,0x12,0x28,0x47,0x00,0x20,0x20,0x20,0xfc,0x20,0x20,0x20,0xfe,0x20,0x50,0x88,0x06,0x04,0x00,0xff,0x00 -+// 36846 迮 ; -+,0x00,0x20,0x18,0x08,0x01,0x01,0x7a,0x08,0x08,0x08,0x08,0x08,0x08,0x14,0x23,0x40,0x80,0x80,0xff,0xa0,0x20,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x00,0xfe -+// 36847 迯 ; -+,0x00,0x10,0x08,0x0d,0x09,0x01,0x7a,0x0d,0x08,0x08,0x09,0x0a,0x08,0x14,0x23,0x40,0x88,0xc8,0x88,0x08,0xe8,0x2c,0x2a,0x4b,0xca,0x88,0x08,0x08,0x08,0x00,0xff,0x00 -+// 36848 述 ; -+,0x20,0x10,0x18,0x10,0x03,0x00,0x70,0x10,0x11,0x12,0x14,0x10,0x10,0x2c,0x43,0x00,0x20,0x28,0x24,0x20,0xfe,0x60,0xb0,0xa8,0x24,0x22,0x22,0x20,0x20,0x00,0xff,0x00 -+// 36849 迱 ; -+,0x00,0x20,0x1b,0x0a,0x04,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x14,0x23,0x40,0x40,0x20,0xfe,0x04,0x80,0x88,0x9c,0xe0,0x80,0x82,0x82,0x82,0x7e,0x00,0xff,0x00 -+// 36850 迲 ; -+,0x00,0x10,0x08,0x0d,0x08,0x00,0x3b,0x08,0x08,0x08,0x08,0x09,0x08,0x14,0x23,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x40,0x48,0x84,0xfe,0x04,0x00,0xff,0x00 -+// 36851 迳 ; -+,0x20,0x13,0x18,0x10,0x00,0x01,0x76,0x11,0x10,0x10,0x10,0x10,0x13,0x28,0x47,0x00,0x00,0xfc,0x08,0x10,0x6c,0x83,0x02,0xfc,0x20,0x20,0x20,0x20,0xfe,0x00,0xff,0x00 -+// 36852 迴 ; -+,0x20,0x13,0x1a,0x12,0x02,0x02,0x72,0x12,0x12,0x12,0x12,0x13,0x12,0x28,0x47,0x00,0x00,0xfc,0x04,0xf4,0x94,0x94,0x94,0xf4,0x94,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36853 迵 ; -+,0x20,0x13,0x1a,0x12,0x02,0x02,0x72,0x12,0x12,0x12,0x12,0x12,0x12,0x2c,0x43,0x00,0x00,0xfc,0x04,0xf4,0x04,0xf4,0x94,0x94,0xf4,0x94,0x04,0x14,0x08,0x00,0xfe,0x00 -+// 36854 迶 ; -+,0x20,0x10,0x1b,0x10,0x00,0x00,0x79,0x0a,0x08,0x08,0x08,0x08,0x08,0x14,0x23,0x00,0x20,0x20,0xff,0x40,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x94,0x88,0x00,0xff,0x00 -+// 36855 迷 ; -+,0x20,0x10,0x1a,0x19,0x01,0x07,0x70,0x10,0x10,0x11,0x12,0x14,0x10,0x28,0x47,0x00,0x20,0x24,0x26,0xa4,0x28,0xff,0x60,0x70,0xa8,0x24,0x26,0x24,0x20,0x00,0xff,0x00 -+// 36856 迸 ; -+,0x21,0x10,0x18,0x13,0x00,0x00,0x78,0x0f,0x08,0x08,0x09,0x09,0x0a,0x14,0x23,0x40,0x04,0xc4,0x88,0xfe,0x88,0x88,0x88,0xfe,0x88,0x88,0x08,0x08,0x08,0x08,0xff,0x00 -+// 36857 迹 ; -+,0x20,0x10,0x18,0x17,0x00,0x00,0x72,0x12,0x14,0x18,0x11,0x11,0x12,0x28,0x47,0x00,0x80,0x60,0x20,0xff,0x90,0x90,0x94,0x92,0x93,0x92,0x10,0x50,0x20,0x00,0xff,0x00 -+// 36858 迺 ; -+,0x20,0x17,0x18,0x10,0x03,0x02,0x72,0x12,0x13,0x12,0x13,0x12,0x10,0x2c,0x43,0x00,0x00,0xff,0x50,0x50,0xfe,0x52,0x52,0x92,0x0e,0x02,0xfe,0x02,0x00,0x00,0xff,0x00 -+// 36859 迻 ; -+,0x00,0x20,0x18,0x10,0x01,0x00,0x38,0x0b,0x08,0x0b,0x08,0x08,0x09,0x14,0x23,0x40,0x40,0x40,0x7e,0x84,0x48,0x30,0xd0,0x3f,0xc2,0x44,0x28,0x30,0xc0,0x00,0xff,0x00 -+// 36860 迼 ; -+,0x20,0x10,0x18,0x17,0x00,0x78,0x0b,0x08,0x09,0x09,0x09,0x09,0x09,0x14,0x23,0x00,0x20,0x20,0x20,0xff,0x20,0x20,0xfe,0x00,0xfc,0x04,0x04,0x04,0xfc,0x00,0xff,0x00 -+// 36861 追 ; -+,0x20,0x10,0x19,0x11,0x01,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x20,0x40,0xfc,0x04,0x04,0xfc,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36862 迾 ; -+,0x00,0x27,0x19,0x11,0x03,0x02,0x74,0x16,0x19,0x10,0x11,0x12,0x14,0x28,0x47,0x00,0x02,0xc2,0x02,0x12,0xd2,0x52,0x52,0x52,0x92,0x92,0x02,0x0a,0x04,0x00,0xff,0x00 -+// 36863 迿 ; -+,0x01,0x21,0x11,0x19,0x12,0x05,0x71,0x11,0x11,0x11,0x11,0x10,0x10,0x28,0x47,0x00,0x00,0x00,0xfc,0x04,0x04,0xf4,0x14,0xf4,0x14,0x14,0xf4,0x04,0x14,0x08,0xfe,0x00 -+// 36864 退 ; -+,0x20,0x13,0x12,0x03,0x02,0x02,0x73,0x12,0x12,0x12,0x12,0x13,0x12,0x28,0x47,0x00,0x00,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x44,0x28,0x10,0x88,0x0c,0x04,0x00,0xff,0x00 -+// 36865 送 ; -+,0x21,0x10,0x10,0x03,0x00,0x00,0x77,0x10,0x10,0x10,0x11,0x12,0x10,0x28,0x47,0x00,0x10,0x90,0xa0,0xfc,0x40,0x40,0xfe,0x40,0xa0,0x90,0x08,0x08,0x00,0x00,0xff,0x00 -+// 36866 适 ; -+,0x20,0x11,0x10,0x00,0x07,0x00,0x70,0x11,0x11,0x11,0x11,0x11,0x10,0x28,0x47,0x00,0x1c,0xe0,0x20,0x20,0xff,0x20,0x20,0xfc,0x04,0x04,0x04,0xfc,0x00,0x00,0xff,0x00 -+// 36867 逃 ; -+,0x00,0x20,0x14,0x12,0x02,0x00,0x71,0x12,0x14,0x11,0x11,0x12,0x10,0x28,0x47,0x00,0xa0,0xa0,0xa4,0xa8,0xb0,0xa0,0xb0,0xa8,0xa4,0x22,0x22,0x1e,0x00,0x00,0xff,0x00 -+// 36868 逄 ; -+,0x20,0x10,0x10,0x01,0x02,0x00,0x77,0x11,0x10,0x11,0x11,0x10,0x10,0x28,0x47,0x00,0x80,0xfc,0x88,0x50,0x30,0xc8,0x27,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 36869 逅 ; -+,0x00,0x23,0x12,0x12,0x03,0x02,0x72,0x12,0x12,0x14,0x14,0x18,0x10,0x28,0x47,0x00,0x1e,0xe0,0x00,0x00,0xff,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x00,0x00,0xff,0x00 -+// 36870 逆 ; -+,0x01,0x20,0x10,0x13,0x00,0x00,0x71,0x11,0x11,0x10,0x10,0x10,0x11,0x28,0x47,0x00,0x08,0x88,0x90,0xfe,0x20,0x20,0x24,0x24,0xfc,0x40,0x40,0x80,0x00,0x00,0xff,0x00 -+// 36871 逇 ; -+,0x02,0x22,0x12,0x12,0x07,0x02,0x72,0x12,0x12,0x13,0x14,0x10,0x10,0x28,0x47,0x00,0x08,0x08,0x0a,0x4e,0x5a,0x6a,0xca,0x4a,0x42,0x46,0x41,0x3f,0x00,0x00,0xff,0x00 -+// 36872 逈 ; -+,0x00,0x20,0x10,0x13,0x02,0x02,0x72,0x12,0x12,0x12,0x12,0x12,0x10,0x28,0x47,0x00,0x40,0x40,0x80,0xfe,0x02,0xf2,0x92,0x92,0x92,0xf2,0x02,0x0a,0x04,0x00,0xff,0x00 -+// 36873 选 ; -+,0x00,0x11,0x09,0x09,0x02,0x00,0x7b,0x08,0x08,0x09,0x09,0x0a,0x08,0x14,0x23,0x00,0x20,0x20,0x20,0xfc,0x20,0x20,0xfe,0x90,0x90,0x12,0x12,0x0e,0x00,0x00,0xff,0x00 -+// 36874 逊 ; -+,0x00,0x27,0x10,0x10,0x01,0x01,0x71,0x13,0x15,0x11,0x11,0x15,0x12,0x28,0x47,0x00,0x08,0xc8,0x48,0x88,0x08,0x2c,0xaa,0x4a,0x49,0x89,0x09,0x28,0x10,0x00,0xff,0x00 -+// 36875 逋 ; -+,0x00,0x20,0x17,0x10,0x03,0x02,0x73,0x12,0x12,0x13,0x12,0x12,0x12,0x28,0x47,0x00,0x28,0x24,0xff,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x2a,0x24,0x00,0xff,0x00 -+// 36876 逌 ; -+,0x00,0x20,0x10,0x10,0x03,0x02,0x73,0x12,0x12,0x13,0x12,0x13,0x12,0x28,0x47,0x00,0x40,0x40,0x7e,0x40,0xfc,0x04,0xe4,0x24,0x24,0xe4,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36877 逍 ; -+,0x00,0x22,0x11,0x10,0x01,0x01,0x79,0x09,0x09,0x09,0x09,0x09,0x09,0x14,0x23,0x00,0x20,0x24,0x28,0xb0,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x04,0x14,0x08,0x00,0xff,0x00 -+// 36878 逎 ; -+,0x00,0x27,0x10,0x10,0x03,0x02,0x72,0x13,0x13,0x12,0x12,0x13,0x10,0x28,0x47,0x00,0x00,0xfe,0xa0,0xa0,0xfc,0xa4,0xbc,0x04,0xfc,0x04,0x04,0xfc,0x00,0x00,0xff,0x00 -+// 36879 透 ; -+,0x00,0x23,0x10,0x17,0x00,0x01,0x77,0x11,0x11,0x12,0x12,0x14,0x10,0x28,0x47,0x00,0x3c,0xc0,0x40,0xfe,0xf0,0x48,0xf6,0x20,0x3c,0x04,0x04,0x14,0x08,0x00,0xfe,0x00 -+// 36880 逐 ; -+,0x00,0x27,0x10,0x10,0x01,0x06,0x71,0x16,0x10,0x11,0x16,0x10,0x10,0x28,0x47,0x00,0x00,0xfe,0x40,0x80,0x86,0x48,0xb0,0x28,0x66,0xa2,0x20,0xa0,0x40,0x00,0xff,0x00 -+// 36881 逑 ; -+,0x00,0x20,0x10,0x17,0x00,0x02,0x71,0x10,0x10,0x11,0x16,0x10,0x10,0x28,0x47,0x00,0x20,0x28,0x24,0xff,0x20,0x24,0x28,0x70,0xa8,0x26,0x22,0xa0,0x40,0x00,0xff,0x00 -+// 36882 递 ; -+,0x01,0x20,0x10,0x13,0x00,0x03,0x72,0x13,0x10,0x10,0x11,0x16,0x10,0x28,0x47,0x00,0x08,0x88,0x90,0xfc,0x24,0xfc,0x20,0xfe,0x62,0xa2,0x22,0x2a,0x24,0x00,0xff,0x00 -+// 36883 逓 ; -+,0x00,0x23,0x12,0x12,0x02,0x03,0x72,0x12,0x12,0x12,0x14,0x14,0x18,0x28,0x47,0x00,0x0f,0xf0,0x10,0xfe,0x10,0xff,0x10,0xfe,0x92,0x92,0x9a,0x94,0x10,0x00,0xff,0x00 -+// 36884 途 ; -+,0x00,0x20,0x10,0x11,0x06,0x00,0x70,0x13,0x10,0x10,0x11,0x16,0x10,0x28,0x47,0x00,0x40,0x60,0x90,0x08,0xf6,0x20,0x20,0xfc,0x20,0xa8,0x24,0x24,0xa0,0x40,0xff,0x00 -+// 36885 逕 ; -+,0x00,0x47,0x22,0x22,0x04,0x02,0x71,0x13,0x10,0x10,0x10,0x17,0x10,0x28,0x47,0x00,0x00,0xfe,0x44,0x44,0x88,0x44,0x22,0xfc,0x40,0x40,0x40,0xfe,0x00,0x00,0xff,0x00 -+// 36886 逖 ; -+,0x00,0x24,0x12,0x13,0x0d,0x00,0x71,0x12,0x1c,0x10,0x10,0x12,0x11,0x28,0x47,0x00,0x10,0x90,0x90,0x12,0x52,0xb4,0x98,0x90,0x90,0xa8,0xa8,0xc6,0x04,0x00,0xff,0x00 -+// 36887 逗 ; -+,0x00,0x23,0x10,0x11,0x01,0x01,0x71,0x10,0x11,0x10,0x10,0x13,0x10,0x28,0x47,0x00,0x00,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x00,0x08,0x88,0x90,0xfe,0x00,0x00,0xff,0x00 -+// 36888 逘 ; -+,0x00,0x20,0x10,0x11,0x00,0x00,0x79,0x08,0x0b,0x08,0x08,0x08,0x08,0x15,0x23,0x00,0x40,0x40,0x84,0xfe,0x82,0xfc,0x20,0x20,0xff,0x20,0x50,0x48,0x84,0x04,0xff,0x00 -+// 36889 這 ; -+,0x00,0x20,0x13,0x10,0x01,0x00,0x79,0x08,0x09,0x09,0x09,0x09,0x09,0x14,0x23,0x00,0x40,0x20,0xfe,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36890 通 ; -+,0x20,0x13,0x10,0x00,0x03,0x02,0x73,0x12,0x12,0x13,0x12,0x12,0x12,0x28,0x47,0x00,0x00,0xfc,0x48,0x30,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x24,0x34,0x28,0x00,0xff,0x00 -+// 36891 逛 ; -+,0x00,0x24,0x13,0x13,0x0c,0x00,0x71,0x12,0x14,0x10,0x10,0x12,0x11,0x28,0x47,0x00,0x00,0x80,0x7e,0x10,0x90,0x90,0xfe,0x90,0x90,0x90,0x90,0xff,0x00,0x00,0xff,0x00 -+// 36892 逜 ; -+,0x00,0x23,0x10,0x11,0x00,0x00,0x77,0x10,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x00,0xfe,0x40,0xf8,0x48,0x48,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36893 逝 ; -+,0x00,0x21,0x11,0x11,0x07,0x01,0x71,0x13,0x15,0x11,0x11,0x15,0x12,0x28,0x47,0x00,0x00,0x06,0x38,0x20,0xe0,0x3f,0xa8,0x28,0x28,0x48,0x48,0x88,0x08,0x00,0xff,0x00 -+// 36894 逞 ; -+,0x00,0x23,0x12,0x12,0x03,0x00,0x73,0x10,0x13,0x10,0x10,0x17,0x10,0x28,0x47,0x00,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x40,0xf8,0x40,0x40,0xfe,0x00,0x00,0xff,0x00 -+// 36895 速 ; -+,0x00,0x20,0x17,0x10,0x00,0x03,0x72,0x12,0x13,0x10,0x11,0x16,0x10,0x28,0x47,0x00,0x40,0x40,0xfe,0x40,0x40,0xfc,0x44,0x44,0xfc,0xd0,0x4c,0x44,0x40,0x40,0xff,0x00 -+// 36896 造 ; -+,0x20,0x11,0x11,0x01,0x02,0x00,0x77,0x10,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x00,0xfc,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36897 逡 ; -+,0x00,0x20,0x10,0x11,0x00,0x01,0x72,0x10,0x11,0x12,0x10,0x10,0x13,0x28,0x47,0x00,0x40,0x40,0x88,0xfc,0x90,0x0c,0x84,0xf8,0x90,0x60,0x60,0x98,0x08,0x00,0xff,0x00 -+// 36898 逢 ; -+,0x01,0x21,0x12,0x10,0x00,0x03,0x70,0x13,0x10,0x13,0x10,0x17,0x10,0x28,0x47,0x00,0x00,0xf8,0x90,0x60,0x90,0x4e,0x40,0xf8,0x40,0xf8,0x40,0xfc,0x40,0x40,0xfe,0x00 -+// 36899 連 ; -+,0x00,0x20,0x13,0x10,0x01,0x01,0x71,0x11,0x11,0x10,0x13,0x10,0x10,0x28,0x47,0x00,0x20,0x20,0xfe,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0x20,0x00,0xff,0x00 -+// 36900 逤 ; -+,0x02,0x21,0x11,0x14,0x02,0x00,0x71,0x11,0x16,0x12,0x12,0x12,0x12,0x28,0x47,0x00,0x08,0x08,0x08,0x08,0xaa,0xa9,0x29,0x4a,0x0a,0x04,0x08,0x30,0xc0,0x00,0xff,0x00 -+// 36901 逥 ; -+,0x20,0x13,0x12,0x02,0x02,0x02,0x72,0x12,0x12,0x12,0x13,0x12,0x10,0x28,0x47,0x00,0x00,0xfe,0x92,0x92,0xf2,0x92,0x92,0xf2,0x92,0x92,0xfe,0x02,0x00,0x00,0xff,0x00 -+// 36902 逦 ; -+,0x00,0x27,0x10,0x17,0x04,0x04,0x76,0x15,0x14,0x14,0x14,0x15,0x10,0x28,0x47,0x00,0x00,0xfe,0x00,0xbc,0xa4,0xa4,0xb4,0xac,0xa4,0xa4,0xa4,0xac,0x00,0x00,0xff,0x00 -+// 36903 逧 ; -+,0x00,0x20,0x10,0x11,0x02,0x00,0x71,0x16,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x10,0x88,0x86,0x22,0x20,0x50,0x8c,0x03,0xfc,0x04,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36904 逨 ; -+,0x00,0x20,0x13,0x10,0x01,0x01,0x72,0x12,0x14,0x10,0x10,0x13,0x10,0x28,0x47,0x00,0x20,0x20,0xfe,0x20,0x28,0x28,0xb4,0x62,0x30,0x68,0xa6,0x22,0x20,0x00,0xff,0x00 -+// 36905 逩 ; -+,0x00,0x20,0x17,0x10,0x01,0x06,0x03,0x70,0x11,0x17,0x11,0x11,0x12,0x28,0x47,0x00,0x40,0x40,0xfc,0xa0,0x10,0x4c,0xf8,0x40,0x50,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 36906 逪 ; -+,0x00,0x20,0x13,0x10,0x00,0x07,0x70,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x90,0x90,0xfe,0x90,0x90,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36907 逫 ; -+,0x00,0x27,0x14,0x13,0x01,0x06,0x70,0x17,0x14,0x13,0x11,0x12,0x14,0x28,0x47,0x00,0x00,0xbe,0xa2,0x14,0x08,0xb6,0x00,0xbe,0xa2,0x14,0x08,0x94,0xa2,0x00,0xff,0x00 -+// 36908 逬 ; -+,0x20,0x10,0x10,0x03,0x00,0x00,0x70,0x17,0x10,0x10,0x11,0x11,0x12,0x2c,0x47,0x00,0x44,0x44,0x88,0xdf,0x88,0x88,0x88,0xdf,0x88,0x88,0x08,0x08,0x08,0x08,0xff,0x00 -+// 36909 逭 ; -+,0x20,0x10,0x13,0x02,0x00,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x40,0x20,0xfe,0x04,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x04,0x00,0xff,0x00 -+// 36910 逮 ; -+,0x00,0x20,0x11,0x10,0x07,0x00,0x71,0x10,0x11,0x10,0x10,0x13,0x10,0x28,0x47,0x00,0x20,0x20,0xfc,0x24,0xff,0x24,0xfc,0x20,0x28,0xf0,0xa8,0x26,0xa2,0x40,0xff,0x00 -+// 36911 逯 ; -+,0x00,0x23,0x10,0x13,0x00,0x07,0x70,0x12,0x11,0x10,0x11,0x16,0x11,0x28,0x47,0x00,0x00,0xf8,0x08,0xf8,0x08,0xff,0x40,0x4c,0x70,0x50,0x4c,0x44,0x40,0x80,0xff,0x00 -+// 36912 逰 ; -+,0x01,0x21,0x11,0x17,0x01,0x01,0x71,0x13,0x15,0x11,0x11,0x15,0x12,0x28,0x47,0x00,0x10,0x10,0x1f,0xe0,0x3e,0x44,0x88,0x08,0x7f,0x08,0x08,0x28,0x10,0x00,0xff,0x00 -+// 36913 週 ; -+,0x00,0x23,0x12,0x12,0x02,0x03,0x72,0x12,0x12,0x12,0x12,0x14,0x10,0x28,0x47,0x00,0x00,0xfc,0x24,0xf4,0x24,0xfc,0x04,0xf4,0x94,0x94,0xf4,0x04,0x0c,0x00,0xff,0x00 -+// 36914 進 ; -+,0x01,0x21,0x12,0x13,0x06,0x0b,0x72,0x12,0x13,0x12,0x12,0x13,0x12,0x28,0x47,0x00,0x40,0x20,0x20,0xfe,0x20,0xfc,0x20,0x20,0xfc,0x20,0x20,0xfe,0x00,0x00,0xff,0x00 -+// 36915 逳 ; -+,0x00,0x20,0x13,0x10,0x01,0x00,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x40,0x20,0xfe,0x88,0xfc,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x0c,0x00,0xff,0x00 -+// 36916 逴 ; -+,0x20,0x10,0x10,0x00,0x01,0x71,0x11,0x11,0x11,0x10,0x17,0x10,0x10,0x28,0x47,0x00,0x20,0x3e,0x20,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20,0xff,0x00 -+// 36917 逵 ; -+,0x00,0x20,0x13,0x10,0x07,0x01,0x71,0x12,0x15,0x10,0x10,0x17,0x10,0x28,0x47,0x00,0x40,0x40,0xfc,0x40,0xfe,0x10,0x48,0x46,0xf8,0x40,0x40,0xfe,0x00,0x00,0xff,0x00 -+// 36918 逶 ; -+,0x00,0x21,0x10,0x13,0x00,0x03,0x70,0x10,0x17,0x10,0x11,0x10,0x13,0x28,0x47,0x00,0x1c,0xe0,0x20,0xfe,0xa8,0x26,0x20,0x40,0xff,0x88,0x90,0x70,0x8c,0x00,0xff,0x00 -+// 36919 逷 ; -+,0x00,0x21,0x11,0x11,0x01,0x01,0x70,0x10,0x11,0x12,0x10,0x13,0x10,0x28,0x47,0x00,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x80,0xfe,0x4a,0x4a,0x92,0x22,0xca,0x04,0xff,0x00 -+// 36920 逸 ; -+,0x01,0x21,0x12,0x12,0x07,0x0a,0x02,0x73,0x10,0x10,0x11,0x11,0x12,0x28,0x47,0x00,0x00,0xf8,0x10,0x20,0xfc,0x44,0x44,0xfc,0xa0,0xb0,0x2a,0x22,0x1e,0x00,0xff,0x00 -+// 36921 逹 ; -+,0x00,0x20,0x11,0x10,0x03,0x00,0x70,0x13,0x10,0x13,0x10,0x10,0x10,0x28,0x47,0x00,0x20,0x20,0xfc,0x20,0xff,0x88,0x50,0xfe,0x20,0xfe,0x20,0x20,0x20,0x00,0xff,0x00 -+// 36922 逺 ; -+,0x00,0x20,0x11,0x10,0x03,0x00,0x70,0x11,0x10,0x11,0x16,0x10,0x10,0x28,0x47,0x00,0x20,0x20,0xfc,0x20,0xfe,0x40,0x88,0xd0,0x64,0xa8,0x90,0xa8,0xc6,0x80,0xff,0x00 -+// 36923 逻 ; -+,0x00,0x23,0x12,0x12,0x03,0x00,0x70,0x11,0x12,0x10,0x10,0x10,0x10,0x29,0x47,0x00,0x00,0xfe,0x92,0x92,0xfe,0x80,0xfc,0x04,0x88,0x48,0x10,0x20,0x40,0x80,0xff,0x00 -+// 36924 逼 ; -+,0x00,0x13,0x08,0x09,0x01,0x01,0x38,0x0b,0x0a,0x0b,0x0a,0x0b,0x08,0x14,0x23,0x00,0x00,0xfe,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0x00,0xff,0x00 -+// 36925 逽 ; -+,0x20,0x10,0x13,0x00,0x00,0x03,0x70,0x10,0x11,0x16,0x10,0x10,0x10,0x28,0x47,0x00,0x88,0x88,0xff,0x88,0x20,0xff,0x40,0x80,0xfc,0x84,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 36926 逾 ; -+,0x20,0x10,0x10,0x01,0x06,0x00,0x73,0x12,0x13,0x12,0x13,0x12,0x12,0x28,0x47,0x00,0x40,0x40,0xa0,0x18,0xf7,0x00,0xc4,0x54,0xd4,0x54,0xd4,0x44,0xcc,0x00,0xff,0x00 -+// 36927 逿 ; -+,0x21,0x11,0x11,0x01,0x01,0x70,0x13,0x10,0x11,0x12,0x10,0x13,0x10,0x28,0x47,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x80,0xfc,0x54,0x94,0x24,0xd4,0x08,0xff,0x00 -+// 36928 遀 ; -+,0x00,0x23,0x10,0x10,0x01,0x06,0x70,0x11,0x11,0x11,0x11,0x11,0x11,0x29,0x47,0x00,0x40,0xfe,0x80,0xfc,0x20,0xfe,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x14,0x08,0xff,0x00 -+// 36929 遁 ; -+,0x20,0x13,0x12,0x03,0x02,0x02,0x72,0x12,0x12,0x12,0x14,0x14,0x18,0x28,0x47,0x00,0x1e,0xe0,0x20,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x00,0xff,0x00 -+// 36930 遂 ; -+,0x02,0x21,0x10,0x17,0x00,0x01,0x76,0x11,0x16,0x10,0x17,0x10,0x10,0x28,0x47,0x00,0x10,0x10,0xa0,0xfe,0x80,0x48,0x50,0xa0,0x70,0xac,0x24,0x20,0xa0,0x40,0xff,0x00 -+// 36931 遃 ; -+,0x00,0x20,0x11,0x10,0x00,0x01,0x71,0x11,0x11,0x12,0x12,0x14,0x11,0x28,0x47,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0x08,0x34,0xc8,0x32,0xcc,0x30,0xc0,0x00,0xff,0x00 -+// 36932 遄 ; -+,0x00,0x22,0x12,0x13,0x00,0x03,0x70,0x13,0x12,0x12,0x12,0x12,0x12,0x28,0x47,0x00,0x20,0x22,0x22,0xfe,0x00,0xfe,0x40,0xfe,0x92,0x92,0x92,0x9a,0x04,0x00,0xff,0x00 -+// 36933 遅 ; -+,0x00,0x23,0x12,0x13,0x02,0x02,0x73,0x12,0x12,0x14,0x15,0x18,0x10,0x28,0x47,0x00,0x00,0xfe,0x02,0xfe,0x44,0x28,0xff,0x10,0xfe,0x10,0xff,0x10,0x10,0x10,0xff,0x00 -+// 36934 遆 ; -+,0x00,0x20,0x13,0x10,0x00,0x03,0x72,0x11,0x11,0x11,0x11,0x11,0x10,0x28,0x47,0x00,0x40,0x20,0xfe,0x88,0x50,0xff,0x22,0xfc,0x24,0x24,0x24,0x2c,0x20,0x20,0xff,0x00 -+// 36935 遇 ; -+,0x00,0x21,0x11,0x11,0x01,0x01,0x70,0x13,0x12,0x12,0x12,0x12,0x12,0x28,0x47,0x00,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x22,0x2a,0xfa,0x02,0x0a,0x04,0xff,0x00 -+// 36936 遈 ; -+,0x01,0x21,0x11,0x11,0x01,0x00,0x73,0x10,0x11,0x11,0x11,0x12,0x14,0x28,0x47,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x20,0x3c,0x20,0x20,0xa0,0x7e,0x00,0xff,0x00 -+// 36937 遉 ; -+,0x00,0x20,0x10,0x10,0x03,0x02,0x73,0x12,0x13,0x12,0x13,0x10,0x11,0x2a,0x47,0x00,0x40,0x40,0x7e,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x90,0x0c,0x04,0xff,0x00 -+// 36938 遊 ; -+,0x44,0x22,0x20,0x0f,0x02,0x03,0x72,0x12,0x12,0x14,0x14,0x1a,0x11,0x28,0x47,0x00,0x20,0x20,0x20,0xbf,0x40,0xbe,0x84,0x88,0xff,0x88,0x88,0xa8,0x10,0x00,0xff,0x00 -+// 36939 運 ; -+,0x00,0x23,0x12,0x11,0x00,0x01,0x71,0x11,0x11,0x11,0x10,0x13,0x10,0x28,0x47,0x00,0x00,0xff,0x22,0xfc,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 36940 遌 ; -+,0x00,0x23,0x12,0x13,0x00,0x01,0x70,0x17,0x10,0x10,0x10,0x10,0x10,0x28,0x47,0x00,0x00,0xde,0x52,0xde,0x00,0xfc,0x00,0xff,0x80,0xf8,0x08,0x28,0x10,0x00,0xff,0x00 -+// 36941 遍 ; -+,0x00,0x20,0x13,0x12,0x03,0x02,0x73,0x13,0x13,0x15,0x15,0x19,0x11,0x28,0x47,0x00,0x40,0x20,0xfc,0x04,0xfc,0x00,0xfc,0x54,0xfc,0x54,0x54,0x54,0x0c,0x00,0xff,0x00 -+// 36942 過 ; -+,0x00,0x21,0x11,0x11,0x01,0x03,0x72,0x12,0x12,0x12,0x12,0x12,0x12,0x28,0x47,0x00,0x00,0xf8,0x08,0xe8,0x28,0xfe,0x02,0xf2,0x92,0xf2,0x02,0x0a,0x04,0x00,0xff,0x00 -+// 36943 遏 ; -+,0x23,0x12,0x13,0x02,0x03,0x01,0x71,0x12,0x16,0x12,0x13,0x10,0x10,0x28,0x47,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x42,0x62,0x92,0xfa,0x02,0x06,0x00,0xff,0x00 -+// 36944 遐 ; -+,0x20,0x13,0x12,0x02,0x03,0x02,0x73,0x12,0x12,0x13,0x12,0x12,0x12,0x28,0x47,0x00,0x00,0xde,0x42,0x42,0xde,0x00,0xdf,0x12,0x0a,0xc4,0x0a,0x13,0x21,0x00,0xff,0x00 -+// 36945 遑 ; -+,0x00,0x20,0x13,0x12,0x03,0x02,0x73,0x10,0x13,0x10,0x13,0x10,0x17,0x28,0x47,0x00,0x40,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfc,0x40,0xfc,0x40,0xfe,0x00,0xff,0x00 -+// 36946 遒 ; -+,0x21,0x10,0x10,0x07,0x00,0x03,0x72,0x12,0x13,0x12,0x13,0x12,0x13,0x28,0x47,0x00,0x10,0x90,0xa0,0xfe,0xa0,0xfc,0xa4,0xa4,0x1c,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00 -+// 36947 道 ; -+,0x01,0x20,0x17,0x10,0x00,0x01,0x71,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0x08,0x90,0xfe,0x40,0x80,0xf8,0x08,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x00,0xff,0x00 -+// 36948 達 ; -+,0x20,0x10,0x13,0x00,0x07,0x01,0x73,0x10,0x13,0x10,0x17,0x10,0x10,0x28,0x47,0x00,0x40,0x40,0xfc,0x40,0xfe,0x10,0xfc,0x40,0xfc,0x40,0xfe,0x40,0x40,0x40,0xff,0x00 -+// 36949 違 ; -+,0x00,0x23,0x10,0x17,0x00,0x01,0x71,0x11,0x10,0x13,0x12,0x17,0x10,0x28,0x47,0x00,0x40,0xfc,0x88,0xff,0x00,0xf8,0x08,0xf8,0x20,0xfe,0x20,0xff,0x20,0x20,0xff,0x00 -+// 36950 遖 ; -+,0x00,0x20,0x17,0x10,0x03,0x02,0x72,0x13,0x12,0x13,0x12,0x12,0x12,0x28,0x47,0x00,0x20,0x20,0xff,0x40,0xfe,0x8a,0x52,0xfe,0x22,0xfe,0x22,0x2a,0x04,0x00,0xff,0x00 -+// 36951 遗 ; -+,0x20,0x11,0x11,0x01,0x00,0x07,0x70,0x11,0x11,0x11,0x11,0x10,0x11,0x28,0x47,0x00,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x24,0x24,0x24,0x50,0x8c,0x04,0xff,0x00 -+// 36952 遘 ; -+,0x00,0x23,0x10,0x13,0x00,0x07,0x00,0x71,0x11,0x11,0x11,0x17,0x11,0x29,0x47,0x00,0x90,0xfe,0x90,0xfe,0x90,0xff,0x20,0xfc,0x24,0xfc,0x24,0xff,0x04,0x04,0xff,0x00 -+// 36953 遙 ; -+,0x00,0x20,0x11,0x12,0x00,0x07,0x71,0x12,0x17,0x10,0x11,0x11,0x11,0x28,0x47,0x00,0x80,0xfe,0x84,0x58,0xe0,0x00,0xfe,0x20,0xff,0x20,0x22,0x22,0xfe,0x00,0xff,0x00 -+// 36954 遚 ; -+,0x00,0x20,0x13,0x12,0x03,0x02,0x73,0x10,0x11,0x10,0x10,0x10,0x10,0x29,0x47,0x00,0x20,0xa0,0x2e,0x22,0xae,0x22,0xfe,0x20,0xfc,0x88,0x50,0x30,0x4c,0x84,0xff,0x00 -+// 36955 遛 ; -+,0x00,0x23,0x12,0x12,0x03,0x02,0x70,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x00,0xc0,0x1e,0x0a,0x8a,0x52,0x2a,0x04,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00,0xff,0x00 -+// 36956 遜 ; -+,0x00,0x27,0x11,0x11,0x02,0x02,0x73,0x1e,0x12,0x12,0x12,0x16,0x12,0x28,0x47,0x00,0x0e,0x70,0x10,0x10,0x28,0x70,0x24,0x7e,0x10,0x54,0x52,0x92,0x30,0x00,0xff,0x00 -+// 36957 遝 ; -+,0x00,0x23,0x12,0x12,0x03,0x00,0x71,0x11,0x12,0x11,0x11,0x12,0x10,0x28,0x47,0x00,0x00,0xfc,0x94,0x94,0xfc,0x40,0x50,0x4c,0x44,0x50,0x4c,0x44,0x40,0x00,0xff,0x00 -+// 36958 遞 ; -+,0x40,0x23,0x22,0x02,0x02,0x02,0x72,0x12,0x12,0x12,0x15,0x15,0x12,0x28,0x47,0x00,0x1e,0xe0,0x3c,0x20,0xfe,0xa4,0xf8,0xa4,0xbc,0xa8,0x2a,0x4a,0x8e,0x00,0xff,0x00 -+// 36959 遟 ; -+,0x00,0x23,0x12,0x13,0x02,0x73,0x12,0x12,0x13,0x12,0x15,0x14,0x18,0x28,0x47,0x00,0x00,0xfe,0x02,0xfe,0x20,0xfe,0x88,0x50,0xfe,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 36960 遠 ; -+,0x00,0x20,0x11,0x10,0x03,0x00,0x71,0x11,0x11,0x10,0x11,0x16,0x10,0x28,0x47,0x00,0x20,0x20,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0xe2,0x54,0x48,0x66,0x42,0xff,0x00 -+// 36961 遡 ; -+,0x00,0x44,0x22,0x2f,0x01,0x05,0x75,0x15,0x17,0x11,0x12,0x12,0x14,0x28,0x47,0x00,0x00,0x5e,0x92,0xf2,0x1e,0x52,0x52,0x5e,0xd2,0x12,0x22,0x2a,0x44,0x00,0xff,0x00 -+// 36962 遢 ; -+,0x21,0x11,0x11,0x01,0x01,0x00,0x77,0x12,0x11,0x11,0x12,0x14,0x10,0x28,0x47,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xde,0x52,0x4a,0x4a,0x52,0x42,0xc6,0x00,0xff,0x00 -+// 36963 遣 ; -+,0x00,0x11,0x09,0x09,0x00,0x03,0x70,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x28,0x47,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x04,0xfc,0x00,0xff -+// 36964 遤 ; -+,0x00,0x11,0x09,0x09,0x01,0x01,0x79,0x09,0x08,0x09,0x0a,0x08,0x08,0x14,0x23,0x00,0x00,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x01,0x55,0x2b,0x01,0x05,0x02,0xff,0x00 -+// 36965 遥 ; -+,0x00,0x23,0x10,0x12,0x01,0x01,0x72,0x10,0x13,0x10,0x11,0x11,0x11,0x28,0x47,0x00,0x3c,0xc0,0x84,0x48,0x10,0xfc,0x20,0x20,0xfe,0x20,0x24,0x24,0xfc,0x00,0xff,0x00 -+// 36966 遦 ; -+,0x00,0x21,0x11,0x17,0x01,0x01,0x70,0x11,0x11,0x11,0x11,0x11,0x10,0x29,0x47,0x00,0x00,0xfc,0x24,0xff,0x24,0xfc,0x00,0xfc,0x94,0x4c,0x24,0xfc,0x88,0x04,0xff,0x00 -+// 36967 遧 ; -+,0x00,0x21,0x10,0x13,0x00,0x01,0x71,0x11,0x11,0x11,0x10,0x13,0x10,0x28,0x47,0x00,0x20,0xfc,0x88,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 36968 遨 ; -+,0x41,0x21,0x27,0x01,0x07,0x01,0x77,0x12,0x13,0x12,0x14,0x15,0x18,0x28,0x47,0x00,0x08,0x08,0xc8,0x1f,0xd2,0x32,0xca,0x04,0xc4,0x4a,0x53,0x61,0x80,0x00,0xff,0x00 -+// 36969 適 ; -+,0x20,0x13,0x10,0x00,0x03,0x02,0x73,0x12,0x12,0x12,0x12,0x12,0x12,0x28,0x47,0x00,0x20,0xff,0x84,0x48,0xfe,0x22,0xfe,0x22,0xfa,0x8a,0xfa,0x02,0x06,0x00,0xff,0x00 -+// 36970 遪 ; -+,0x00,0x20,0x10,0x11,0x02,0x07,0x70,0x11,0x16,0x11,0x10,0x11,0x10,0x29,0x47,0x00,0x20,0x48,0xfc,0x08,0x52,0xff,0x50,0xa8,0x47,0x90,0x68,0x90,0x60,0x80,0xff,0x00 -+// 36971 遫 ; -+,0x01,0x21,0x11,0x17,0x01,0x07,0x75,0x17,0x11,0x13,0x15,0x11,0x11,0x28,0x47,0x00,0x08,0x08,0x08,0xc8,0x1f,0xd2,0x72,0xca,0x04,0x84,0x4b,0x12,0x00,0x00,0xff,0x00 -+// 36972 遬 ; -+,0x01,0x21,0x17,0x11,0x07,0x05,0x75,0x17,0x11,0x13,0x15,0x11,0x11,0x28,0x47,0x00,0x10,0x10,0xd0,0x1f,0xd2,0x64,0x48,0xc8,0x08,0x94,0x54,0x23,0x42,0x00,0xff,0x00 -+// 36973 遭 ; -+,0x00,0x27,0x10,0x17,0x04,0x07,0x74,0x17,0x10,0x13,0x12,0x13,0x12,0x13,0x28,0x47,0x90,0xfe,0x90,0xfc,0x94,0xfc,0x94,0xfc,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff -+// 36974 遮 ; -+,0x00,0x20,0x13,0x12,0x02,0x03,0x72,0x12,0x12,0x14,0x15,0x19,0x12,0x28,0x47,0x00,0x40,0x20,0xff,0x48,0x48,0xff,0x48,0x48,0x78,0x00,0x54,0x2a,0x2a,0x00,0xff,0x00 -+// 36975 遯 ; -+,0x40,0x23,0x22,0x02,0x03,0x72,0x12,0x13,0x12,0x12,0x12,0x15,0x10,0x28,0x47,0x00,0x00,0xbf,0x88,0x90,0xe2,0x94,0xa8,0xcc,0x9b,0xe8,0x88,0xa8,0x10,0x00,0xff,0x00 -+// 36976 遰 ; -+,0x02,0x22,0x17,0x12,0x04,0x00,0x77,0x14,0x11,0x11,0x11,0x11,0x10,0x28,0x47,0x00,0xa8,0xa8,0xff,0xaa,0xee,0x00,0xff,0x42,0xf8,0x48,0x48,0x58,0x40,0x40,0xff,0x00 -+// 36977 遱 ; -+,0x40,0x23,0x22,0x0f,0x02,0x03,0x72,0x13,0x10,0x17,0x11,0x10,0x13,0x28,0x47,0x00,0x40,0xfc,0x44,0xff,0x44,0xfc,0x44,0xfc,0x80,0xfe,0x10,0xe0,0x9c,0x00,0xff,0x00 -+// 36978 遲 ; -+,0x00,0x23,0x12,0x13,0x02,0x02,0x73,0x12,0x12,0x15,0x17,0x18,0x10,0x28,0x47,0x00,0x00,0xfe,0x02,0xfe,0xa8,0x78,0xa6,0xa0,0xfe,0x20,0xff,0x20,0x20,0x20,0xff,0x00 -+// 36979 遳 ; -+,0x01,0x21,0x17,0x11,0x00,0x01,0x71,0x12,0x14,0x13,0x10,0x17,0x10,0x28,0x47,0x00,0x08,0x08,0xff,0x08,0x20,0x28,0x28,0xb4,0x22,0xfe,0x20,0xff,0x00,0x00,0xff,0x00 -+// 36980 遴 ; -+,0x00,0x21,0x10,0x17,0x01,0x06,0x72,0x13,0x14,0x1a,0x11,0x16,0x10,0x28,0x47,0x00,0x40,0x48,0xd0,0xfe,0x50,0x4c,0x08,0xbe,0x88,0xa8,0x7f,0x08,0x08,0x00,0xff,0x00 -+// 36981 遵 ; -+,0x01,0x20,0x17,0x10,0x03,0x02,0x73,0x13,0x12,0x13,0x10,0x17,0x10,0x28,0x47,0x00,0x08,0x90,0xfe,0xa0,0xfc,0xbc,0x04,0xfc,0x04,0xfc,0x10,0xfe,0x90,0x50,0xff,0x00 -+// 36982 遶 ; -+,0x40,0x23,0x20,0x07,0x02,0x0f,0x72,0x13,0x1c,0x17,0x10,0x10,0x13,0x28,0x47,0x00,0x40,0xfc,0x40,0xfe,0x08,0x9e,0x08,0xbf,0x00,0xff,0x90,0x92,0x0e,0x00,0xff,0x00 -+// 36983 遷 ; -+,0x07,0x20,0x13,0x12,0x03,0x00,0x77,0x10,0x11,0x16,0x10,0x10,0x10,0x28,0x47,0x00,0xfe,0x90,0xfc,0x94,0xfc,0x40,0xff,0x88,0xf4,0x93,0xf0,0x84,0x7c,0x00,0xff,0x00 -+// 36984 選 ; -+,0x00,0x27,0x14,0x17,0x04,0x07,0x70,0x13,0x10,0x17,0x10,0x10,0x13,0x28,0x47,0x00,0x00,0xbe,0xa2,0xbe,0x61,0xff,0x90,0xfe,0x90,0xff,0x00,0x88,0x04,0x00,0xff,0x00 -+// 36985 遹 ; -+,0x00,0x23,0x10,0x17,0x00,0x07,0x73,0x12,0x13,0x12,0x12,0x12,0x12,0x28,0x47,0x00,0x00,0xfc,0x50,0xfe,0xa4,0x20,0xfc,0x94,0x0c,0xf4,0x94,0xf4,0x0c,0x00,0xff,0x00 -+// 36986 遺 ; -+,0x20,0x13,0x12,0x03,0x00,0x07,0x70,0x13,0x13,0x12,0x12,0x13,0x10,0x29,0x47,0x00,0x40,0xf8,0x48,0xf8,0x40,0xfe,0x00,0xf8,0x28,0x98,0x48,0xf8,0x90,0x08,0xff,0x00 -+// 36987 遻 ; -+,0x47,0x24,0x24,0x07,0x01,0x00,0x77,0x10,0x12,0x13,0x10,0x10,0x10,0x29,0x47,0x00,0xbc,0xa4,0xa4,0xbc,0x10,0xa0,0xfe,0x40,0x44,0xfc,0x40,0x80,0x80,0x00,0xff,0x00 -+// 36988 遼 ; -+,0x00,0x20,0x17,0x12,0x01,0x07,0x71,0x11,0x11,0x11,0x10,0x11,0x12,0x28,0x47,0x00,0x40,0x40,0xfe,0x94,0x0c,0xfb,0x08,0xf8,0x08,0xf8,0x20,0x28,0xa4,0x40,0xff,0x00 -+// 36989 遽 ; -+,0x00,0x20,0x10,0x13,0x02,0x03,0x02,0x73,0x12,0x13,0x14,0x17,0x18,0x13,0x28,0x47,0x40,0x7c,0x40,0xff,0x42,0xf8,0x44,0xfe,0x40,0xa4,0xd8,0x38,0xd4,0x53,0x20,0xff -+// 36990 遾 ; -+,0x22,0x12,0x13,0x05,0x00,0x73,0x10,0x11,0x11,0x12,0x14,0x17,0x10,0x28,0x47,0x00,0x10,0x10,0xdf,0x28,0x84,0xfe,0x20,0x28,0x28,0xb4,0x62,0xff,0x00,0x00,0xff,0x00 -+// 36991 避 ; -+,0x00,0x27,0x14,0x14,0x07,0x04,0x74,0x17,0x16,0x16,0x1a,0x13,0x10,0x28,0x47,0x00,0x10,0x88,0xbe,0xa4,0x94,0x08,0x7f,0x88,0x88,0xbe,0x88,0x88,0x08,0x00,0xff,0x00 -+// 36992 邀 ; -+,0x01,0x22,0x17,0x16,0x05,0x07,0x71,0x1f,0x12,0x13,0x12,0x14,0x19,0x28,0x47,0x00,0x10,0x10,0xd0,0x5f,0x52,0xd2,0x32,0xea,0x04,0xc4,0x4a,0x53,0x61,0x80,0xff,0x00 -+// 36993 邁 ; -+,0x20,0x13,0x10,0x01,0x01,0x71,0x11,0x11,0x10,0x13,0x12,0x12,0x12,0x2a,0x47,0x00,0x88,0xff,0x88,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xfe,0x22,0xfa,0x0a,0x06,0xff,0x00 -+// 36994 邂 ; -+,0x02,0x22,0x13,0x14,0x0f,0x05,0x77,0x15,0x17,0x15,0x15,0x15,0x18,0x28,0x47,0x00,0x00,0x3e,0xd2,0x92,0xe6,0x48,0xe8,0x7e,0xc8,0x7f,0x48,0x48,0xc8,0x08,0xff,0x00 -+// 36995 邃 ; -+,0x00,0x20,0x17,0x14,0x03,0x00,0x77,0x10,0x13,0x10,0x17,0x10,0x13,0x28,0x47,0x00,0x40,0x20,0xff,0x92,0x0c,0x90,0xfc,0x80,0xc8,0xf0,0x68,0xa4,0x20,0x40,0xff,0x00 -+// 36996 還 ; -+,0x03,0x22,0x13,0x10,0x07,0x00,0x73,0x12,0x13,0x10,0x11,0x16,0x10,0x28,0x47,0x00,0xfc,0x94,0xfc,0x00,0xff,0x00,0xfc,0x04,0xfc,0x48,0xb0,0x88,0xc6,0x82,0xff,0x00 -+// 36997 邅 ; -+,0x00,0x27,0x10,0x17,0x05,0x05,0x74,0x17,0x12,0x13,0x12,0x13,0x10,0x17,0x28,0x47,0x40,0xfe,0x00,0xfc,0x14,0xf4,0x04,0xfc,0x08,0xf8,0x08,0xf8,0x00,0xfc,0x00,0xff -+// 36998 邆 ; -+,0x00,0x23,0x14,0x13,0x02,0x0c,0x71,0x11,0x11,0x11,0x10,0x17,0x10,0x28,0x47,0x00,0x08,0xd2,0xa4,0x18,0xf4,0x03,0xf8,0x08,0xf8,0x08,0x90,0xfe,0x00,0x00,0xff,0x00 -+// 36999 邇 ; -+,0x20,0x17,0x12,0x07,0x0e,0x05,0x76,0x14,0x16,0x15,0x16,0x14,0x14,0x28,0x47,0x00,0x00,0xff,0x44,0xfe,0xed,0x54,0xec,0x44,0xec,0x54,0xec,0x44,0x4c,0x00,0xff,0x00 -+// 37000 邈 ; -+,0x01,0x4e,0x2a,0x25,0x02,0x0d,0x73,0x15,0x1b,0x15,0x19,0x15,0x12,0x28,0x47,0x00,0x90,0x20,0xfc,0x44,0x7c,0x44,0x44,0x7c,0x28,0x28,0x2a,0x2a,0x46,0x00,0xff,0x00 -+// 37001 邉 ; -+,0x00,0x21,0x11,0x11,0x01,0x01,0x38,0x0b,0x0a,0x08,0x0b,0x08,0x08,0x14,0x23,0x00,0x20,0xfc,0x94,0x4c,0x24,0xfc,0x20,0xff,0x4a,0x84,0xfa,0x88,0xf8,0x00,0xff,0x00 -+// 37002 邊 ; -+,0x00,0x21,0x11,0x11,0x01,0x01,0x70,0x17,0x15,0x13,0x10,0x10,0x11,0x2a,0x47,0x00,0x40,0xf8,0x28,0x98,0x48,0xf8,0x40,0xff,0x4a,0xfc,0x80,0xf8,0x08,0x18,0xff,0x00 -+// 37003 邋 ; -+,0x01,0x22,0x11,0x13,0x02,0x02,0x73,0x13,0x12,0x13,0x12,0x12,0x13,0x28,0x47,0x00,0x24,0x48,0x24,0xfc,0xa4,0x44,0xfc,0x64,0xd4,0x64,0xd5,0x43,0x61,0x00,0xff,0x00 -+// 37004 邌 ; -+,0x07,0x21,0x17,0x13,0x05,0x01,0x70,0x11,0x16,0x11,0x10,0x13,0x10,0x28,0x47,0x00,0xd0,0x10,0xde,0xaa,0x4a,0x12,0x66,0x98,0x4e,0x70,0xd0,0x4c,0xc0,0x00,0xff,0x00 -+// 37005 邍 ; -+,0x01,0x41,0x21,0x22,0x03,0x0e,0x73,0x12,0x13,0x12,0x17,0x12,0x11,0x12,0x2c,0x47,0x00,0xfc,0x18,0x90,0xf8,0x4f,0xf8,0x48,0xf8,0x04,0xfe,0x50,0x60,0x50,0x48,0xfe -+// 37006 邎 ; -+,0x42,0x23,0x25,0x0a,0x03,0x07,0x71,0x14,0x12,0x17,0x14,0x17,0x10,0x28,0x47,0x00,0x07,0xd8,0x44,0x8a,0x1c,0xc8,0x12,0x9f,0x04,0x96,0x95,0xa5,0x0c,0x00,0xff,0x00 -+// 37007 邏 ; -+,0x40,0x27,0x24,0x07,0x01,0x02,0x77,0x11,0x12,0x17,0x10,0x15,0x15,0x28,0x47,0x00,0x00,0xfe,0x92,0xfe,0x28,0x7e,0xc8,0x7e,0x48,0x7e,0x48,0x7f,0x40,0x00,0xff,0x00 -+// 37008 邐 ; -+,0x27,0x10,0x17,0x06,0x04,0x77,0x14,0x17,0x14,0x17,0x15,0x15,0x19,0x11,0x28,0x47,0x9e,0x00,0x9e,0x9a,0xd2,0xff,0x90,0xfe,0x92,0xfe,0x10,0xde,0x11,0x9f,0x00,0xff -+// 37009 邑 ; -+,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x0f,0x00,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfc,0x84,0x84,0xfc,0x00,0x01,0x01,0x01,0xff,0x00 -+// 37010 邒 ; -+,0x00,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x08,0x00,0xbf,0x21,0x22,0x24,0x28,0x28,0x24,0x22,0x21,0x21,0x3a,0x24,0x20,0x20,0x20 -+// 37011 邓 ; -+,0x00,0x7f,0x01,0x21,0x12,0x0a,0x04,0x06,0x0a,0x09,0x11,0x20,0x40,0x00,0x00,0x00,0x7f,0x22,0x22,0x24,0x24,0x28,0x24,0x22,0x21,0x21,0x21,0x2a,0x24,0x20,0x20,0x20 -+// 37012 邔 ; -+,0x00,0x3f,0x01,0x01,0x01,0x3f,0x20,0x20,0x20,0x20,0x22,0x24,0x28,0x30,0x00,0x00,0x00,0x3f,0x22,0x24,0x28,0x28,0x24,0x22,0x21,0x21,0x39,0x26,0x20,0x20,0x20,0x20 -+// 37013 邕 ; -+,0x04,0x08,0x11,0x08,0x00,0x0f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x0f,0x00,0x44,0x88,0x10,0x88,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x84,0xfc,0x01,0x01,0xff,0x00 -+// 37014 邖 ; -+,0x04,0x04,0x04,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x27,0x38,0x00,0x00,0x00,0x00,0x3f,0x22,0x24,0xa4,0xa8,0xa8,0xa4,0xa2,0xa1,0xa1,0xa9,0xa6,0x20,0x20,0x20 -+// 37015 邗 ; -+,0x00,0x3f,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0xbf,0x22,0x24,0x24,0x28,0xe4,0x22,0x21,0x21,0x29,0x26,0x20,0x20,0x20,0x20 -+// 37016 邘 ; -+,0x00,0x3f,0x04,0x04,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x04,0x04,0x14,0x08,0x00,0x00,0xbf,0x22,0x24,0x24,0x28,0xe4,0x22,0x21,0x21,0x29,0x26,0x20,0x20,0x20,0x20 -+// 37017 邙 ; -+,0x08,0x04,0x04,0x7f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0x00,0x00,0x3f,0x22,0xa4,0x24,0x28,0x24,0x22,0x21,0x21,0x21,0x2a,0x24,0x20,0x20,0x20 -+// 37018 邚 ; -+,0x04,0x04,0x04,0x04,0x7f,0x09,0x09,0x11,0x31,0x0a,0x06,0x02,0x05,0x19,0x60,0x00,0x00,0x3f,0x21,0x22,0xa4,0x28,0x24,0x22,0x22,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37019 邛 ; -+,0x00,0x3f,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0xbf,0x21,0x22,0x24,0x28,0x24,0x22,0x22,0xa1,0x21,0x2a,0x24,0x20,0x20,0x20 -+// 37020 邜 ; -+,0x08,0x08,0x08,0x0f,0x10,0x10,0x29,0x25,0x45,0x02,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x3f,0x22,0xa4,0xa4,0xa8,0x24,0x22,0x21,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37021 邝 ; -+,0x04,0x02,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0x00,0x3f,0xa1,0x22,0x22,0x24,0x28,0x24,0x22,0x21,0x21,0x29,0x26,0x20,0x20,0x20 -+// 37022 邞 ; -+,0x04,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x0a,0x09,0x10,0x20,0x40,0x00,0x00,0x00,0x3f,0x22,0xa4,0x24,0x28,0xe8,0x24,0x22,0x21,0x21,0xa9,0xa6,0x20,0x20,0x20 -+// 37023 邟 ; -+,0x08,0x04,0x7f,0x00,0x00,0x1f,0x11,0x11,0x11,0x11,0x11,0x11,0x21,0x20,0x40,0x00,0x00,0x3f,0xa2,0x24,0x24,0x28,0x24,0x22,0x21,0x21,0x69,0xa6,0x20,0x20,0x20,0x20 -+// 37024 邠 ; -+,0x04,0x02,0x09,0x08,0x10,0x20,0x5f,0x09,0x09,0x09,0x11,0x11,0x25,0x42,0x00,0x00,0x00,0x3f,0x22,0xa2,0xa4,0x28,0x24,0x22,0x21,0x21,0x21,0x29,0x26,0x20,0x20,0x20 -+// 37025 邡 ; -+,0x08,0x04,0x04,0x7f,0x08,0x08,0x0f,0x08,0x08,0x08,0x10,0x10,0x10,0x22,0x41,0x00,0x00,0x3f,0x21,0xe2,0x24,0x28,0xa4,0xa2,0xa1,0xa1,0xa1,0xa9,0xa6,0xa0,0x20,0x20 -+// 37026 邢 ; -+,0x00,0x3f,0x09,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x09,0x11,0x11,0x21,0x41,0x01,0x00,0x9f,0x12,0x12,0x14,0x18,0xd4,0x12,0x11,0x11,0x11,0x1d,0x12,0x10,0x10,0x10 -+// 37027 那 ; -+,0x00,0x3f,0x09,0x09,0x3f,0x09,0x09,0x3f,0x09,0x09,0x11,0x11,0x21,0x45,0x02,0x00,0x00,0x3f,0x22,0x24,0x24,0x28,0x24,0x22,0x21,0x21,0x29,0x26,0x20,0x20,0x20,0x20 -+// 37028 邤 ; -+,0x03,0x1c,0x10,0x10,0x10,0x1f,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x00,0x00,0x3f,0x22,0x24,0x24,0xa8,0x24,0x22,0x21,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37029 邥 ; -+,0x04,0x04,0x04,0x3f,0x25,0x04,0x04,0x0a,0x0a,0x0a,0x12,0x12,0x23,0x42,0x00,0x00,0x00,0x3f,0x22,0xa4,0x24,0x28,0x24,0x22,0x21,0x21,0x21,0xad,0x22,0x20,0x20,0x20 -+// 37030 邦 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0x00,0x3f,0xa2,0x24,0x24,0x28,0x24,0x22,0xa1,0x21,0x21,0x29,0x26,0x20,0x20,0x20 -+// 37031 邧 ; -+,0x00,0x3f,0x00,0x00,0x00,0x7f,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x23,0x42,0x00,0x00,0x00,0xbf,0x22,0x24,0x24,0xa8,0x24,0x22,0x21,0x21,0x21,0xa9,0x26,0x20,0x20,0x20 -+// 37032 邨 ; -+,0x04,0x04,0x04,0x7f,0x04,0x24,0x24,0x24,0x3f,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x00,0x3f,0x22,0xe2,0x24,0xa8,0xa4,0xa2,0xa1,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37033 邩 ; -+,0x04,0x04,0x04,0x04,0x44,0x25,0x26,0x04,0x04,0x0a,0x09,0x10,0x10,0x60,0x00,0x00,0x00,0x3f,0x22,0xa4,0xa4,0x28,0x24,0x22,0x21,0x21,0x21,0xad,0xa2,0x20,0x20,0x20 -+// 37034 邪 ; -+,0x00,0x3f,0x11,0x11,0x11,0x3f,0x01,0x03,0x05,0x05,0x09,0x11,0x61,0x05,0x02,0x00,0x00,0xbf,0x22,0x24,0x24,0xa8,0x24,0x22,0x21,0x21,0x29,0x26,0x20,0x20,0x20,0x20 -+// 37035 邫 ; -+,0x08,0x08,0x08,0x7e,0x08,0x3e,0x08,0x08,0x7e,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0x00,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x92,0x92,0xfe,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 37036 邬 ; -+,0x04,0x08,0x1f,0x11,0x11,0x15,0x12,0x1f,0x00,0x00,0x0e,0x70,0x00,0x0c,0x03,0x00,0x00,0x3e,0x22,0x24,0x24,0x28,0x28,0xa4,0xa2,0xa1,0xa1,0xaa,0xa4,0xa0,0x20,0x20 -+// 37037 邭 ; -+,0x10,0x10,0x1f,0x20,0x20,0x5e,0x12,0x12,0x1e,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x3f,0xa2,0xa4,0xa4,0xa8,0xa4,0xa2,0xa1,0xa1,0xa1,0xaa,0xa4,0x20,0x20,0x20 -+// 37038 邮 ; -+,0x04,0x04,0x04,0x3f,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x3f,0x20,0x00,0x00,0x00,0x00,0x3f,0x22,0xa4,0xa4,0xa8,0xa4,0xa2,0xa1,0xa1,0xa1,0xad,0xa2,0x20,0x20,0x20 -+// 37039 邯 ; -+,0x11,0x11,0x11,0x11,0x7f,0x11,0x11,0x11,0x1f,0x11,0x11,0x11,0x1f,0x11,0x00,0x00,0x00,0x1f,0x11,0x12,0xd4,0x18,0x14,0x12,0x11,0x11,0x11,0x1d,0x12,0x10,0x10,0x10 -+// 37040 邰 ; -+,0x04,0x04,0x08,0x12,0x21,0x7f,0x00,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x00,0x00,0x00,0x3f,0x22,0x24,0x24,0xa8,0xa4,0x22,0x21,0x21,0x21,0x2a,0x24,0x20,0x20,0x20 -+// 37041 邱 ; -+,0x00,0x03,0x1c,0x10,0x10,0x1f,0x12,0x12,0x12,0x12,0x12,0x17,0x78,0x00,0x00,0x00,0x00,0xbf,0x22,0x22,0x24,0xa8,0x24,0x22,0x21,0x21,0x21,0xad,0x22,0x20,0x20,0x20 -+// 37042 邲 ; -+,0x08,0x05,0x05,0x11,0x11,0x12,0x52,0x52,0x54,0x14,0x19,0x11,0x6f,0x00,0x00,0x00,0x00,0x3f,0x22,0x24,0x24,0x28,0xa4,0xa2,0x21,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37043 邳 ; -+,0x00,0x7f,0x04,0x04,0x0c,0x0e,0x15,0x14,0x64,0x04,0x04,0x07,0x38,0x00,0x00,0x00,0x00,0xbf,0x22,0x24,0x24,0x28,0x28,0xa4,0x22,0x21,0x21,0xb9,0x26,0x20,0x20,0x20 -+// 37044 邴 ; -+,0x00,0x7f,0x04,0x04,0x3f,0x24,0x24,0x2a,0x29,0x28,0x30,0x20,0x20,0x22,0x21,0x00,0x00,0xbf,0x22,0x24,0xa4,0xa8,0xa4,0xa2,0xa1,0xa1,0xa1,0xad,0xa2,0xa0,0x20,0x20 -+// 37045 邵 ; -+,0x00,0x3f,0x08,0x08,0x08,0x10,0x12,0x21,0x5f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0xbf,0xa2,0xa4,0xa4,0xa8,0xa4,0x22,0xa1,0xa1,0xa1,0xad,0xa2,0xa0,0x20,0x20 -+// 37046 邶 ; -+,0x00,0x09,0x09,0x09,0x79,0x09,0x09,0x09,0x09,0x09,0x19,0x29,0x49,0x09,0x00,0x00,0x00,0x1f,0x11,0x12,0xd2,0x14,0x14,0x12,0x11,0x11,0x1d,0x52,0x90,0x10,0x10,0x10 -+// 37047 邷 ; -+,0x00,0x7f,0x08,0x08,0x0f,0x11,0x11,0x19,0x15,0x15,0x11,0x15,0x19,0x10,0x00,0x00,0x00,0xbf,0x22,0x24,0x24,0x28,0x24,0x22,0x21,0x21,0x29,0x26,0x60,0xe0,0x20,0x20 -+// 37048 邸 ; -+,0x03,0x3c,0x24,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x22,0x2a,0x35,0x22,0x02,0x00,0x80,0x3f,0x22,0x22,0x24,0x28,0xa4,0x22,0x21,0x21,0xa1,0xad,0xa2,0xa0,0x20,0x20 -+// 37049 邹 ; -+,0x10,0x10,0x3f,0x22,0x44,0x3f,0x00,0x00,0x3f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x3f,0x22,0x22,0x24,0xa8,0xa4,0xa2,0xa1,0xa1,0xa1,0xad,0xa2,0x20,0x20,0x20 -+// 37050 邺 ; -+,0x0a,0x0a,0x0a,0x0a,0x4a,0x2a,0x2b,0x2a,0x0a,0x0a,0x0b,0x0c,0x70,0x00,0x00,0x00,0x00,0x3f,0x22,0xa2,0xa4,0xa4,0x28,0x24,0x22,0xa1,0x21,0x29,0x26,0x20,0x20,0x20 -+// 37051 邻 ; -+,0x04,0x04,0x0a,0x09,0x14,0x22,0x42,0x3f,0x00,0x01,0x0a,0x04,0x06,0x02,0x02,0x00,0x00,0x3f,0x22,0xa2,0xa4,0x28,0x24,0xa2,0xa1,0x21,0x29,0x26,0x20,0x20,0x20,0x20 -+// 37052 邼 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x24,0x3f,0x24,0x24,0x3f,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0xbe,0x22,0xa4,0x24,0x28,0xa4,0x22,0x22,0xa2,0x22,0x2a,0xa4,0x20,0x20,0x20 -+// 37053 邽 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x3f,0x04,0x04,0x05,0x0e,0x70,0x00,0x00,0x00,0x3f,0xa1,0x22,0x22,0xe4,0x28,0x24,0xa2,0x21,0x21,0xad,0x22,0x20,0x20,0x20 -+// 37054 邾 ; -+,0x02,0x12,0x12,0x1f,0x22,0x42,0x3f,0x06,0x0b,0x0a,0x12,0x22,0x42,0x02,0x02,0x02,0x00,0x3f,0x21,0xa2,0x24,0x28,0xe4,0x22,0x21,0xa1,0xa1,0x2d,0x22,0x20,0x20,0x20 -+// 37055 邿 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x01,0x01,0x7f,0x11,0x09,0x09,0x01,0x05,0x02,0x00,0x00,0x3f,0xa1,0x22,0x24,0xe8,0x24,0x22,0xe1,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37056 郀 ; -+,0x04,0x04,0x3f,0x04,0x0b,0x30,0x1f,0x00,0x7f,0x08,0x0f,0x01,0x01,0x05,0x02,0x00,0x00,0x3f,0xa2,0x22,0x24,0xe8,0x24,0x22,0xe1,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37057 郁 ; -+,0x04,0x04,0x7f,0x08,0x08,0x1f,0x30,0x5f,0x10,0x10,0x1f,0x10,0x10,0x10,0x12,0x11,0x00,0x3f,0xe2,0x24,0x24,0xa8,0xa4,0xa2,0xa1,0xa1,0xa1,0xa5,0xa2,0xa0,0xa0,0x20 -+// 37058 郂 ; -+,0x08,0x04,0x7f,0x04,0x08,0x11,0x3f,0x02,0x05,0x19,0x62,0x05,0x18,0x60,0x00,0x00,0x00,0x3f,0xa1,0x22,0x24,0x28,0x24,0x22,0x21,0x21,0x21,0x2d,0xa2,0xa0,0x20,0x20 -+// 37059 郃 ; -+,0x04,0x04,0x0a,0x09,0x10,0x20,0x5f,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0x1f,0x11,0x12,0xd2,0x54,0x94,0x12,0x91,0x91,0x91,0x95,0x92,0x90,0x10,0x10 -+// 37060 郄 ; -+,0x10,0x09,0x06,0x09,0x34,0x04,0x7f,0x08,0x0a,0x12,0x24,0x45,0x08,0x1f,0x00,0x00,0x80,0x1f,0x12,0x12,0x94,0x14,0xd2,0x11,0x11,0x11,0x15,0x12,0x90,0xd0,0x50,0x10 -+// 37061 郅 ; -+,0x00,0x3f,0x08,0x08,0x11,0x3f,0x04,0x04,0x3f,0x04,0x04,0x04,0x07,0x38,0x00,0x00,0x00,0xbf,0x22,0x24,0x24,0xa8,0xa4,0x22,0xa1,0x21,0x2d,0x22,0xa0,0x20,0x20,0x20 -+// 37062 郆 ; -+,0x04,0x04,0x04,0x7f,0x04,0x04,0x3f,0x00,0x3f,0x20,0x20,0x20,0x3f,0x20,0x00,0x00,0x00,0x3f,0x21,0xe2,0x24,0x28,0xa4,0x22,0xa1,0xa1,0xa1,0xad,0xa2,0xa0,0x20,0x20 -+// 37063 郇 ; -+,0x08,0x08,0x1f,0x10,0x20,0x5e,0x12,0x1e,0x12,0x12,0x1e,0x00,0x00,0x02,0x01,0x00,0x00,0x1f,0x91,0x92,0x92,0x94,0x92,0x91,0x91,0x91,0x91,0x95,0x92,0x90,0x10,0x10 -+// 37064 郈 ; -+,0x00,0x07,0x38,0x20,0x20,0x3f,0x20,0x20,0x2f,0x28,0x28,0x28,0x4f,0x40,0x00,0x00,0x00,0xbf,0x22,0x22,0x24,0xa8,0x24,0x22,0xa1,0xa1,0xa5,0xa2,0xa0,0x20,0x20,0x20 -+// 37065 郉 ; -+,0x00,0x7b,0x11,0x11,0x11,0x11,0x7f,0x11,0x11,0x11,0x11,0x11,0x21,0x21,0x41,0x01,0x00,0xdf,0x11,0x12,0x14,0x18,0xd4,0x12,0x11,0x11,0x11,0x1a,0x14,0x10,0x10,0x10 -+// 37066 郊 ; -+,0x04,0x02,0x3f,0x00,0x11,0x10,0x20,0x51,0x09,0x06,0x02,0x05,0x08,0x30,0x00,0x00,0x00,0x1f,0xd2,0x14,0x14,0xd8,0x54,0x12,0x11,0x11,0x19,0x16,0x90,0x90,0x10,0x10 -+// 37067 郋 ; -+,0x04,0x08,0x3f,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x00,0x00,0x00,0x00,0x3f,0xa1,0xa2,0xa4,0xa8,0xa4,0xa2,0xa1,0xa1,0xa1,0xad,0xa2,0x20,0x20,0x20 -+// 37068 郌 ; -+,0x08,0x08,0x08,0x3f,0x08,0x08,0x7f,0x08,0x08,0x3e,0x08,0x08,0x0e,0x70,0x00,0x00,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x92,0x92,0xfe,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 37069 郍 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x11,0x7f,0x19,0x15,0x11,0x11,0x21,0x25,0x42,0x00,0x00,0x3f,0x22,0x24,0x24,0x28,0x24,0xa2,0x21,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37070 郎 ; -+,0x08,0x04,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x20,0x24,0x22,0x25,0x29,0x30,0x20,0x00,0x00,0x3f,0x22,0x22,0x24,0x24,0x28,0x24,0x22,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37071 郏 ; -+,0x04,0x04,0x3f,0x04,0x24,0x14,0x15,0x7f,0x04,0x06,0x09,0x08,0x10,0x20,0x40,0x00,0x00,0x1f,0xd1,0x12,0x92,0x94,0x14,0xd2,0x11,0x11,0x11,0x9d,0xd2,0x90,0x10,0x10 -+// 37072 郐 ; -+,0x04,0x06,0x09,0x10,0x60,0x1f,0x00,0x7f,0x04,0x08,0x09,0x10,0x27,0x38,0x00,0x00,0x00,0x1f,0x12,0xd2,0x14,0x98,0x14,0xd2,0x11,0x11,0x19,0x96,0x90,0x90,0x10,0x10 -+// 37073 郑 ; -+,0x21,0x11,0x12,0x04,0x3f,0x04,0x04,0x7f,0x04,0x06,0x09,0x08,0x10,0x60,0x00,0x00,0x00,0x1f,0x11,0x12,0xd2,0x14,0x14,0xd2,0x11,0x11,0x11,0x9d,0x92,0x10,0x10,0x10 -+// 37074 郒 ; -+,0x08,0x04,0x3f,0x21,0x21,0x3f,0x21,0x3f,0x20,0x28,0x24,0x26,0x2a,0x32,0x20,0x00,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x92,0x92,0xfe,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 37075 郓 ; -+,0x00,0x3f,0x29,0x08,0x3f,0x08,0x14,0x3f,0x04,0x04,0x07,0x7c,0x04,0x04,0x04,0x04,0x00,0xbf,0x22,0x24,0xa4,0x28,0x24,0xa2,0x21,0x21,0xa9,0x26,0x20,0x20,0x20,0x20 -+// 37076 郔 ; -+,0x00,0x78,0x0f,0x11,0x15,0x25,0x7d,0x0d,0x4d,0x2f,0x10,0x10,0x2f,0x40,0x00,0x00,0x00,0xdf,0x12,0x12,0x14,0xd8,0x14,0x12,0x11,0xd1,0x11,0x1d,0xd2,0x10,0x10,0x10 -+// 37077 郕 ; -+,0x02,0x03,0x02,0x3f,0x22,0x22,0x3a,0x2a,0x29,0x29,0x3b,0x25,0x28,0x50,0x00,0x00,0x00,0x1f,0x91,0xd2,0x12,0x54,0x94,0x92,0x11,0x11,0x51,0x5d,0xd2,0x50,0x10,0x10 -+// 37078 郖 ; -+,0x00,0x7f,0x00,0x1f,0x11,0x11,0x11,0x1f,0x21,0x11,0x12,0x07,0x78,0x00,0x00,0x00,0x00,0xbf,0x22,0x22,0x24,0x28,0x24,0x22,0x21,0x21,0x29,0xa6,0x20,0x20,0x20,0x20 -+// 37079 郗 ; -+,0x10,0x09,0x06,0x09,0x32,0x7f,0x04,0x0a,0x1f,0x32,0x52,0x12,0x13,0x12,0x02,0x02,0x80,0x1f,0x11,0x92,0x94,0xd4,0x12,0x11,0xd1,0x51,0x5d,0x52,0x50,0x90,0x10,0x10 -+// 37080 郘 ; -+,0x00,0x1f,0x11,0x11,0x11,0x1f,0x00,0x00,0x3f,0x20,0x20,0x20,0x3f,0x20,0x00,0x00,0x00,0x3f,0x21,0x22,0x24,0x28,0x24,0x22,0xa1,0xa1,0xad,0xa2,0xa0,0xa0,0x20,0x20 -+// 37081 郙 ; -+,0x05,0x04,0x7f,0x04,0x3f,0x24,0x24,0x3f,0x24,0x3f,0x24,0x24,0x24,0x24,0x21,0x00,0x00,0xbe,0xe2,0x24,0xa4,0xa8,0xa8,0xa4,0xa2,0xa2,0xa2,0xaa,0xa4,0xa0,0xa0,0x20 -+// 37082 郚 ; -+,0x00,0x3f,0x04,0x04,0x3f,0x09,0x09,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x10,0x00,0x00,0x00,0xbf,0x22,0x24,0x24,0x28,0x24,0xe2,0x21,0xa1,0xa1,0xad,0xa2,0xa0,0x20,0x20 -+// 37083 郛 ; -+,0x03,0x3c,0x28,0x14,0x15,0x3f,0x01,0x02,0x04,0x07,0x7c,0x04,0x04,0x14,0x08,0x00,0x80,0x3f,0xa2,0xa2,0x24,0xa8,0x24,0x22,0x21,0xa1,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37084 郜 ; -+,0x04,0x14,0x14,0x1f,0x24,0x44,0x7f,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x00,0x00,0x1f,0x11,0x92,0x14,0x18,0xd4,0x12,0x91,0x91,0x91,0x9d,0x92,0x90,0x10,0x10 -+// 37085 郝 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x09,0x09,0x29,0x29,0x49,0x11,0x11,0x25,0x42,0x00,0x00,0x1f,0x91,0x12,0x12,0xd4,0x14,0x12,0x91,0x51,0x51,0x1d,0x12,0x10,0x10,0x10 -+// 37086 郞 ; -+,0x08,0x04,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x20,0x29,0x26,0x22,0x29,0x31,0x20,0x00,0x00,0x3f,0x22,0x24,0x24,0x28,0x24,0x22,0x21,0x21,0x2d,0x22,0x20,0x20,0x20,0x20 -+// 37087 郟 ; -+,0x04,0x04,0x04,0x7f,0x04,0x14,0x14,0x2d,0x46,0x06,0x09,0x08,0x10,0x20,0x40,0x00,0x00,0x1f,0x11,0xd2,0x14,0x98,0x94,0x52,0x52,0x11,0x11,0x9d,0xd2,0x90,0x10,0x10 -+// 37088 郠 ; -+,0x00,0x3f,0x04,0x1f,0x14,0x1f,0x14,0x1f,0x04,0x34,0x0c,0x06,0x09,0x10,0x60,0x00,0x00,0xff,0x21,0xa2,0xa4,0xa8,0xa4,0xa2,0x21,0x21,0x2d,0x22,0xa0,0xa0,0x20,0x20 -+// 37089 郡 ; -+,0x3f,0x08,0x08,0x7f,0x08,0x08,0x3f,0x08,0x10,0x1f,0x30,0x50,0x10,0x1f,0x10,0x00,0x9f,0x91,0x91,0xf2,0x92,0x94,0x94,0x12,0x11,0x91,0x91,0x9d,0x92,0x90,0x90,0x10 -+// 37090 郢 ; -+,0x00,0x1f,0x11,0x11,0x11,0x1f,0x00,0x3f,0x04,0x3f,0x04,0x04,0x07,0x78,0x00,0x00,0x00,0x3f,0x22,0x22,0x24,0x28,0x24,0xa2,0x21,0xa1,0x21,0x2d,0xa2,0x20,0x20,0x20 -+// 37091 郣 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x20,0x1f,0x02,0x04,0x07,0x7c,0x04,0x04,0x14,0x08,0x00,0x00,0x3e,0xa2,0x24,0xa4,0xa8,0x24,0x22,0x21,0xa1,0x2d,0x22,0x20,0x20,0x20,0x20 -+// 37092 郤 ; -+,0x0a,0x09,0x10,0x20,0x44,0x06,0x09,0x10,0x20,0x5f,0x10,0x10,0x1f,0x10,0x10,0x00,0x00,0x3f,0xa2,0xa4,0x24,0x28,0x24,0xa2,0x21,0xa1,0xa1,0xad,0xa2,0xa0,0x20,0x20 -+// 37093 郥 ; -+,0x3f,0x20,0x20,0x3f,0x20,0x20,0x3f,0x20,0x20,0x3f,0x00,0x09,0x10,0x60,0x00,0x00,0x80,0xbf,0xa2,0xa4,0xa4,0xa8,0xa4,0xa2,0xa1,0xa1,0x29,0x26,0xa0,0xa0,0x20,0x20 -+// 37094 郦 ; -+,0x00,0x7f,0x00,0x3d,0x25,0x25,0x35,0x2d,0x25,0x25,0x25,0x25,0x25,0x25,0x00,0x00,0x00,0xef,0x09,0xea,0x2a,0x2c,0xaa,0x69,0x29,0x29,0x29,0x2d,0x2a,0x68,0x08,0x08 -+// 37095 郧 ; -+,0x00,0x3f,0x20,0x3f,0x00,0x3f,0x20,0x24,0x24,0x24,0x24,0x2a,0x0a,0x11,0x61,0x00,0x00,0xbf,0xa2,0xa4,0x24,0xa8,0xa4,0xa2,0xa1,0xa1,0xa1,0xad,0x22,0x20,0xa0,0x20 -+// 37096 部 ; -+,0x08,0x04,0x3f,0x11,0x09,0x0a,0x7f,0x00,0x00,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0x00,0x3f,0xa1,0x22,0x22,0x24,0xec,0x22,0x21,0xa1,0xa1,0xad,0xa2,0xa0,0xa0,0x20 -+// 37097 郩 ; -+,0x10,0x09,0x06,0x19,0x04,0x7f,0x08,0x1f,0x28,0x4f,0x08,0x0f,0x08,0x08,0x0a,0x09,0x80,0x3f,0x21,0xa2,0x24,0xe8,0x24,0xa2,0xa1,0xa1,0xa1,0xad,0xa2,0xa0,0xa0,0x20 -+// 37098 郪 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x7f,0x04,0x1f,0x04,0x7f,0x09,0x1a,0x06,0x19,0x60,0x00,0x00,0xdf,0x11,0x92,0x92,0xf4,0x94,0x92,0x11,0xd1,0x1d,0x12,0x10,0x90,0x90,0x10 -+// 37099 郫 ; -+,0x04,0x08,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x0a,0x12,0x7f,0x02,0x02,0x02,0x02,0x02,0x00,0x3f,0xa1,0xa2,0xa4,0xa8,0xa4,0xa2,0x21,0x21,0xe1,0x2d,0x22,0x20,0x20,0x20 -+// 37100 郬 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x12,0x11,0x00,0xbf,0x22,0xa4,0x24,0xe8,0x24,0xa2,0xa1,0xa1,0xa1,0xad,0xa2,0xa0,0xa0,0x20 -+// 37101 郭 ; -+,0x08,0x04,0x3f,0x00,0x1f,0x11,0x1f,0x00,0x1f,0x01,0x02,0x03,0x3e,0x02,0x0a,0x04,0x00,0x3e,0xa2,0x24,0x24,0x28,0x24,0x22,0xa1,0x21,0x21,0xad,0x22,0x20,0x20,0x20 -+// 37102 郮 ; -+,0x3f,0x24,0x24,0x3f,0x24,0x3f,0x20,0x2f,0x29,0x2f,0x20,0x20,0x21,0x40,0x00,0x00,0xc0,0x5f,0x51,0xd2,0x52,0xd4,0x54,0x52,0x51,0x51,0x51,0x5d,0x52,0x90,0x10,0x10 -+// 37103 郯 ; -+,0x04,0x05,0x15,0x16,0x26,0x09,0x10,0x64,0x15,0x16,0x26,0x09,0x08,0x10,0x20,0x00,0x00,0x3f,0x22,0x24,0x24,0x28,0xa4,0x22,0x21,0x21,0x21,0x2d,0xa2,0xa0,0x20,0x20 -+// 37104 郰 ; -+,0x00,0x7e,0x27,0x24,0x3e,0x25,0x24,0x3c,0x24,0x27,0x3d,0x66,0x04,0x04,0x04,0x00,0x00,0x1f,0xd1,0x52,0x52,0x54,0x94,0x92,0xd1,0x31,0x31,0x1d,0x12,0x10,0x10,0x10 -+// 37105 郱 ; -+,0x11,0x09,0x0a,0x3f,0x09,0x09,0x09,0x7f,0x09,0x09,0x09,0x11,0x11,0x21,0x41,0x01,0x00,0x3f,0x21,0xa2,0x24,0x28,0x24,0xe2,0x21,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37106 郲 ; -+,0x04,0x04,0x7f,0x04,0x14,0x14,0x35,0x2e,0x46,0x0d,0x0c,0x14,0x24,0x44,0x04,0x04,0x00,0x3f,0xe1,0x22,0xa4,0xa8,0xa4,0x62,0x21,0x21,0xa1,0xad,0x22,0x20,0x20,0x20 -+// 37107 郳 ; -+,0x08,0x33,0x20,0x20,0x3b,0x20,0x20,0x3f,0x0a,0x0a,0x0a,0x12,0x12,0x23,0x42,0x00,0x00,0xbf,0xa2,0xa4,0xa4,0xa8,0xa4,0xa2,0x21,0x21,0x2d,0x22,0xa0,0x20,0x20,0x20 -+// 37108 郴 ; -+,0x10,0x10,0x10,0x7b,0x10,0x10,0x39,0x35,0x52,0x54,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x9f,0x91,0xf2,0x92,0x94,0xd4,0xb2,0x91,0x91,0x91,0x9d,0x92,0x90,0x90,0x10 -+// 37109 郵 ; -+,0x00,0x03,0x3c,0x04,0x7f,0x15,0x7f,0x15,0x15,0x7f,0x04,0x04,0x07,0x3c,0x00,0x00,0x00,0xdf,0x11,0x11,0xd2,0x12,0xd4,0x12,0x11,0xd1,0x11,0x15,0x92,0x10,0x10,0x10 -+// 37110 郶 ; -+,0x10,0x08,0x7f,0x22,0x12,0x14,0x7f,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x7e,0x42,0x42,0x7e,0x00,0x7e,0x4a,0x4a,0x7e,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 37111 郷 ; -+,0x10,0x11,0x21,0x25,0x79,0x11,0x11,0x25,0x7d,0x05,0x09,0x09,0x11,0x20,0x40,0x00,0x00,0xef,0x29,0x2a,0xea,0x2c,0x2a,0xe9,0x09,0x49,0x6d,0xaa,0x08,0x08,0x08,0x08 -+// 37112 郸 ; -+,0x11,0x0a,0x3f,0x24,0x24,0x3f,0x24,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x00,0x1f,0x91,0x92,0x94,0x98,0x94,0x92,0x91,0x11,0xd1,0x15,0x12,0x10,0x10,0x10 -+// 37113 郹 ; -+,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x3f,0x06,0x05,0x7f,0x04,0x0a,0x11,0x61,0x00,0x00,0xbf,0xa1,0xa2,0xa4,0xa8,0xa4,0xa2,0x21,0x21,0xa1,0x2d,0x22,0x20,0x20,0x20 -+// 37114 郺 ; -+,0x10,0x10,0x3e,0x24,0x54,0x08,0x10,0x68,0x1e,0x12,0x2a,0x44,0x08,0x10,0x60,0x00,0x52,0x52,0xa4,0x52,0xfe,0x82,0xfe,0x00,0xfe,0x92,0xfe,0x80,0x81,0x81,0x7f,0x00 -+// 37115 郻 ; -+,0x0f,0x29,0x2f,0x29,0x2f,0x29,0x2f,0x20,0x3f,0x14,0x29,0x29,0x14,0x14,0x00,0x00,0x3e,0x22,0x22,0x24,0x28,0x24,0x22,0x21,0xa1,0xa1,0x2d,0x22,0xa0,0xa0,0x20,0x20 -+// 37116 郼 ; -+,0x08,0x08,0x3f,0x11,0x7f,0x00,0x3f,0x20,0x3f,0x04,0x7f,0x24,0x3f,0x04,0x04,0x04,0x00,0x00,0x3f,0x21,0xa2,0x24,0xa8,0xa4,0xa2,0x21,0xa1,0x21,0xad,0x22,0x20,0x20 -+// 37117 都 ; -+,0x04,0x04,0x3f,0x04,0x05,0x7f,0x04,0x08,0x1f,0x30,0x5f,0x10,0x10,0x1f,0x10,0x00,0x00,0x1f,0x51,0x92,0x14,0xd8,0x14,0x12,0x91,0x91,0x91,0x9d,0x92,0x90,0x90,0x10 -+// 37118 郾 ; -+,0x00,0x3f,0x20,0x2f,0x28,0x2f,0x28,0x2f,0x24,0x3f,0x29,0x26,0x25,0x38,0x3f,0x00,0x00,0xc0,0x1f,0x92,0x94,0x94,0x98,0x94,0x12,0xd1,0x11,0x1d,0x12,0x90,0xd0,0x10 -+// 37119 郿 ; -+,0x00,0x3f,0x22,0x22,0x3f,0x20,0x2f,0x28,0x2f,0x28,0x28,0x2f,0x28,0x48,0x0f,0x00,0x00,0xdf,0x52,0x54,0xd4,0x18,0x94,0x92,0x91,0x91,0x91,0x95,0x92,0x90,0x90,0x10 -+// 37120 鄀 ; -+,0x12,0x12,0x7f,0x12,0x04,0x04,0x7f,0x08,0x1f,0x31,0x51,0x11,0x1f,0x11,0x10,0x00,0x00,0x3e,0xa2,0x24,0x24,0x28,0xa4,0x22,0x21,0x21,0x21,0x2d,0x22,0x20,0x20,0x20 -+// 37121 鄁 ; -+,0x0a,0x0a,0x7b,0x0a,0x1a,0x6b,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x10,0x12,0x11,0x00,0x9f,0x11,0x52,0x54,0xd8,0x14,0x92,0x91,0x91,0x91,0x95,0x92,0x90,0x90,0x10 -+// 37122 鄂 ; -+,0x3b,0x2a,0x2a,0x3b,0x00,0x3f,0x00,0x7f,0x08,0x0f,0x00,0x00,0x00,0x02,0x01,0x00,0xc0,0x5f,0x51,0xd2,0x14,0x98,0x14,0xd2,0x11,0x91,0x9d,0x92,0x90,0x90,0x10,0x10 -+// 37123 鄃 ; -+,0x04,0x06,0x09,0x10,0x6f,0x00,0x3c,0x25,0x3d,0x25,0x3d,0x25,0x24,0x25,0x2c,0x00,0x00,0x3f,0x11,0xd2,0x52,0x14,0x54,0x52,0x51,0x51,0x51,0x55,0x52,0x50,0x90,0x10 -+// 37124 鄄 ; -+,0x00,0x7f,0x0a,0x3f,0x2a,0x2a,0x2a,0x3f,0x04,0x3f,0x04,0x04,0x07,0x78,0x00,0x00,0x00,0xdf,0x11,0x92,0x92,0x94,0x92,0x91,0x11,0x91,0x11,0x15,0xd2,0x10,0x10,0x10 -+// 37125 鄅 ; -+,0x07,0x7c,0x04,0x3f,0x24,0x24,0x3f,0x04,0x3f,0x24,0x25,0x3f,0x20,0x22,0x21,0x00,0x80,0x3f,0x22,0xa4,0xa4,0xa8,0xa4,0x22,0xa1,0xa1,0xa9,0xa6,0xa0,0xa0,0x20,0x20 -+// 37126 鄆 ; -+,0x00,0x3f,0x22,0x1f,0x02,0x1f,0x12,0x1f,0x12,0x1f,0x02,0x7f,0x02,0x02,0x02,0x02,0x00,0xff,0x51,0x92,0x14,0xd4,0x52,0xd1,0x51,0xd1,0x15,0xd2,0x10,0x10,0x10,0x10 -+// 37127 鄇 ; -+,0x10,0x17,0x10,0x1f,0x30,0x34,0x57,0x19,0x11,0x1f,0x11,0x12,0x14,0x18,0x10,0x10,0x00,0x9f,0x92,0xf4,0x14,0x18,0xd4,0x12,0x11,0xf1,0x1d,0x92,0x50,0x50,0x10,0x10 -+// 37128 鄈 ; -+,0x00,0x7d,0x4a,0x29,0x10,0x20,0x3f,0x44,0x04,0x7f,0x04,0x0a,0x09,0x10,0x60,0x00,0x00,0x3f,0x62,0xa4,0xa4,0x68,0x24,0x22,0x21,0xa1,0x21,0x2d,0xa2,0xa0,0x20,0x20 -+// 37129 鄉 ; -+,0x11,0x10,0x13,0x22,0x4b,0x7a,0x12,0x13,0x26,0x7a,0x0a,0x13,0x12,0x20,0x40,0x00,0x00,0x9f,0xd1,0x52,0xd4,0x58,0x54,0xd2,0x11,0x91,0xd1,0x5d,0x12,0x10,0x10,0x10 -+// 37130 鄊 ; -+,0x10,0x13,0x21,0x25,0x49,0x79,0x11,0x25,0x25,0x7d,0x09,0x0b,0x10,0x20,0x40,0x00,0x00,0xff,0x29,0x29,0xea,0x2a,0x2c,0xea,0x29,0x39,0xe9,0x2d,0x2a,0x28,0x28,0x28 -+// 37131 鄋 ; -+,0x14,0x25,0x24,0x35,0x24,0x24,0x3f,0x04,0x3f,0x10,0x09,0x06,0x05,0x18,0x60,0x00,0x00,0xdf,0x51,0xd2,0x52,0x54,0xd4,0x12,0xd1,0x91,0x11,0x15,0x92,0x90,0x10,0x10 -+// 37132 鄌 ; -+,0x04,0x02,0x3f,0x22,0x3f,0x22,0x3f,0x22,0x3f,0x20,0x2f,0x28,0x28,0x4f,0x08,0x00,0x00,0x1f,0xf1,0x12,0xd2,0x54,0xf4,0x52,0xd1,0x11,0xd1,0x55,0x52,0xd0,0x50,0x10 -+// 37133 鄍 ; -+,0x00,0x3f,0x20,0x1f,0x10,0x1f,0x10,0x1f,0x04,0x7f,0x00,0x09,0x10,0x60,0x00,0x00,0x00,0xdf,0x51,0x92,0x92,0x94,0x94,0x92,0x11,0xd1,0x19,0x16,0xd0,0x50,0x10,0x10 -+// 37134 鄎 ; -+,0x04,0x08,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x0a,0x29,0x28,0x47,0x00,0x00,0x00,0x1f,0x91,0x92,0x92,0x94,0x94,0x92,0x91,0x11,0x51,0x35,0x52,0xd0,0x10,0x10 -+// 37135 鄏 ; -+,0x00,0x3f,0x20,0x2f,0x20,0x3f,0x2a,0x29,0x2c,0x28,0x3f,0x24,0x22,0x40,0x02,0x01,0x00,0xdf,0x11,0x92,0x12,0xd4,0x94,0x12,0x91,0x91,0xd1,0x95,0x92,0x90,0x90,0x10 -+// 37136 鄐 ; -+,0x08,0x04,0x7f,0x08,0x11,0x3e,0x08,0x3f,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x20,0x00,0x00,0x1f,0xd1,0x12,0x14,0x18,0x94,0xd2,0x51,0x91,0x91,0x9d,0x92,0x90,0x90,0x10 -+// 37137 鄑 ; -+,0x00,0x7f,0x0a,0x2a,0x1b,0x0a,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x00,0x00,0xdf,0x11,0x92,0x14,0x18,0xf4,0x12,0x91,0x91,0x91,0x9d,0x92,0x90,0x90,0x10 -+// 37138 鄒 ; -+,0x10,0x1f,0x24,0x15,0x1f,0x04,0x09,0x10,0x1f,0x24,0x55,0x1f,0x08,0x11,0x20,0x00,0x00,0xdf,0x51,0x52,0x52,0x54,0x54,0x92,0xd1,0x51,0x51,0x5d,0x52,0x50,0x90,0x10 -+// 37139 鄓 ; -+,0x04,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x06,0x05,0x7f,0x0a,0x09,0x11,0x61,0x00,0x00,0xbe,0xa2,0xa4,0xa4,0xa8,0xa4,0xa2,0x22,0x21,0xe1,0x2d,0x22,0xa0,0x20,0x20 -+// 37140 鄔 ; -+,0x08,0x10,0x3f,0x21,0x3f,0x20,0x3f,0x20,0x3f,0x00,0x55,0x4a,0x00,0x02,0x01,0x00,0x00,0x3f,0x21,0x22,0x22,0x24,0xa8,0x24,0xa2,0xa1,0xa1,0xad,0xa2,0xa0,0x20,0x20 -+// 37141 鄕 ; -+,0x10,0x11,0x23,0x22,0x4b,0x7a,0x13,0x10,0x26,0x7e,0x0b,0x0a,0x12,0x11,0x60,0x00,0x80,0x0f,0xe9,0x2a,0xea,0x2c,0xec,0x0a,0x09,0x69,0x89,0x2d,0x2a,0xe8,0x08,0x08 -+// 37142 鄖 ; -+,0x00,0x3f,0x20,0x3f,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x3f,0x00,0x11,0x10,0x20,0x00,0xbf,0xa1,0xa2,0x22,0xa4,0xac,0xa2,0xa1,0xa1,0xa1,0xad,0x22,0x20,0xa0,0xa0 -+// 37143 鄗 ; -+,0x04,0x7f,0x00,0x1f,0x11,0x1f,0x00,0x3f,0x20,0x2f,0x29,0x2f,0x20,0x21,0x20,0x00,0x00,0xdf,0x12,0x14,0x14,0x18,0x14,0xd2,0x51,0x51,0x51,0x55,0x52,0x50,0x90,0x10 -+// 37144 鄘 ; -+,0x02,0x3f,0x22,0x2f,0x22,0x3f,0x22,0x2f,0x22,0x2f,0x2a,0x2f,0x2a,0x2f,0x4a,0x4a,0x00,0xe0,0x1f,0xd1,0x52,0xf2,0x54,0xd4,0x12,0xd1,0x51,0xd1,0x55,0xd2,0x50,0xd0 -+// 37145 鄙 ; -+,0x1f,0x10,0x10,0x1f,0x04,0x7f,0x04,0x3f,0x20,0x2f,0x29,0x2f,0x20,0x3f,0x20,0x00,0x80,0x9f,0x91,0x92,0x12,0xd4,0x12,0xd1,0x51,0x51,0x59,0x56,0x50,0xd0,0x50,0x10 -+// 37146 鄚 ; -+,0x09,0x09,0x7f,0x09,0x1f,0x10,0x1f,0x10,0x1f,0x04,0x7f,0x04,0x0a,0x11,0x60,0x00,0x00,0x1f,0xd1,0x12,0x94,0x98,0x94,0x92,0x91,0x11,0xd1,0x15,0x12,0x90,0x90,0x10 -+// 37147 鄛 ; -+,0x12,0x12,0x24,0x12,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x0d,0x14,0x64,0x04,0x04,0x40,0x5f,0x91,0x52,0x92,0x94,0x94,0x92,0x91,0x11,0xd1,0x15,0x92,0x90,0x10,0x10 -+// 37148 鄜 ; -+,0x04,0x02,0x1f,0x15,0x15,0x1f,0x15,0x1f,0x10,0x19,0x1d,0x19,0x29,0x2d,0x49,0x00,0x00,0x1f,0xd1,0x12,0x12,0xd4,0x54,0xd2,0x11,0x11,0xd1,0x15,0x52,0x90,0x10,0x10 -+// 37149 鄝 ; -+,0x00,0x3d,0x15,0x0c,0x15,0x24,0x02,0x05,0x18,0x66,0x39,0x06,0x39,0x06,0x78,0x00,0x00,0xdf,0x51,0xd2,0x52,0x54,0x14,0x12,0xd1,0x51,0x11,0x55,0x92,0x10,0x10,0x10 -+// 37150 鄞 ; -+,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x3f,0x04,0x07,0x78,0x00,0x00,0xdf,0x11,0x12,0x14,0x98,0x94,0x92,0x11,0x91,0x11,0x95,0x12,0x90,0x10,0x10 -+// 37151 鄟 ; -+,0x04,0x7f,0x04,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x01,0x7f,0x09,0x05,0x01,0x03,0x00,0xbf,0x22,0xa4,0xa4,0xa8,0xa4,0xa2,0xa1,0xe1,0x21,0xed,0x22,0x20,0x20,0x20 -+// 37152 鄠 ; -+,0x3f,0x04,0x7f,0x44,0x35,0x04,0x35,0x00,0x1f,0x00,0x3f,0x08,0x0f,0x00,0x02,0x01,0x80,0x1f,0xf1,0x52,0x92,0x14,0x94,0x12,0x91,0x11,0xd1,0x15,0x92,0x90,0x90,0x10 -+// 37153 鄡 ; -+,0x04,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x04,0x3f,0x0e,0x15,0x24,0x04,0x00,0x9f,0x91,0x92,0x94,0x98,0x14,0xd2,0x11,0xd1,0x55,0x52,0x50,0x50,0xd0,0x10 -+// 37154 鄢 ; -+,0x00,0x3f,0x04,0x17,0x14,0x7f,0x20,0x3f,0x20,0x3f,0x00,0x55,0x55,0x00,0x00,0x00,0x00,0xdf,0x11,0x92,0x14,0xd4,0x12,0x91,0x11,0xd1,0x55,0x52,0x50,0x50,0xd0,0x10 -+// 37155 鄣 ; -+,0x04,0x3f,0x11,0x0a,0x7f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x02,0x7f,0x02,0x02,0x02,0x00,0xdf,0x11,0x12,0xd4,0x18,0x94,0x92,0x91,0x91,0x91,0x15,0xd2,0x10,0x10,0x10 -+// 37156 鄤 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x3f,0x2a,0x3f,0x00,0x1f,0x09,0x06,0x09,0x30,0x00,0x00,0x3f,0x22,0x22,0x24,0x28,0xa4,0xa2,0xa1,0x21,0xa1,0x2d,0x22,0xa0,0xa0,0x20 -+// 37157 鄥 ; -+,0x04,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x3f,0x20,0x3f,0x00,0x55,0x54,0x02,0x01,0x00,0x3f,0x21,0x22,0x24,0x28,0x24,0x22,0xa1,0x21,0xad,0xa2,0xa0,0xa0,0xa0,0x20 -+// 37158 鄦 ; -+,0x10,0x10,0x3f,0x35,0x55,0x7f,0x15,0x15,0x15,0x7f,0x00,0x2a,0x25,0x65,0x00,0x00,0x00,0x1f,0xf1,0x52,0x52,0xf4,0x52,0x51,0x51,0xf1,0x11,0x55,0x32,0x30,0x10,0x10 -+// 37159 鄧 ; -+,0x04,0x3a,0x49,0x30,0x1f,0x20,0x5f,0x10,0x10,0x1f,0x11,0x0a,0x0b,0x3c,0x00,0x00,0x00,0x9f,0x51,0x92,0xf2,0x54,0x94,0x92,0x91,0x91,0x11,0x15,0xd2,0x10,0x10,0x10 -+// 37160 鄨 ; -+,0x15,0x0e,0x3f,0x2e,0x35,0x24,0x25,0x00,0x0f,0x08,0x1f,0x10,0x1f,0x10,0x0f,0x00,0x20,0x20,0xbf,0xc4,0xa8,0x98,0xa7,0x00,0xf8,0x08,0xfc,0x84,0xfc,0x02,0xfe,0x00 -+// 37161 鄩 ; -+,0x1f,0x00,0x1f,0x00,0x1f,0x00,0x3b,0x12,0x1b,0x20,0x7f,0x10,0x08,0x02,0x01,0x00,0xc0,0x5f,0xd1,0x52,0xd4,0x18,0xd4,0x52,0xd1,0x91,0xf1,0x95,0x92,0x90,0x10,0x10 -+// 37162 鄪 ; -+,0x09,0x3f,0x09,0x3f,0x29,0x3f,0x11,0x7f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x09,0x30,0x00,0xdf,0x51,0xd2,0x12,0xd4,0x54,0xd2,0x91,0x91,0x91,0x95,0x92,0x90,0x10,0x90 -+// 37163 鄫 ; -+,0x11,0x09,0x0a,0x3f,0x35,0x2e,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00,0x00,0x1f,0x12,0xd4,0x54,0x58,0xd4,0x12,0x91,0x91,0x91,0x9d,0x92,0x90,0x10,0x10 -+// 37164 鄬 ; -+,0x03,0x3c,0x14,0x0a,0x3f,0x20,0x3f,0x20,0x3f,0x20,0x35,0x55,0x40,0x03,0x00,0x00,0xc0,0x1f,0x51,0x92,0xd2,0x94,0xd4,0x92,0xd1,0x51,0x51,0x55,0x52,0x50,0x90,0x10 -+// 37165 鄭 ; -+,0x11,0x0a,0x7f,0x0a,0x3f,0x2a,0x33,0x20,0x3f,0x20,0x3f,0x04,0x7f,0x04,0x0b,0x31,0x00,0x00,0xdf,0x11,0x92,0x94,0x94,0x92,0x91,0x91,0x91,0x15,0xd2,0x10,0x10,0x10 -+// 37166 鄮 ; -+,0x08,0x33,0x21,0x29,0x32,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x09,0x30,0x00,0x00,0xde,0x52,0x54,0xd4,0x18,0x94,0x92,0x91,0x91,0x95,0x92,0x90,0x10,0x90,0x10 -+// 37167 鄯 ; -+,0x10,0x09,0x3f,0x02,0x3f,0x02,0x3f,0x12,0x0b,0x7f,0x00,0x1f,0x10,0x10,0x1f,0x00,0x80,0x00,0xdf,0x11,0xd2,0x12,0xd4,0x92,0x12,0xf1,0x11,0x95,0x92,0x90,0x90,0x10 -+// 37168 鄰 ; -+,0x04,0x14,0x0d,0x7f,0x0e,0x15,0x64,0x10,0x1f,0x24,0x5a,0x0b,0x10,0x20,0x40,0x00,0x00,0x9f,0x11,0xd2,0x12,0xd4,0x14,0x92,0xd1,0x91,0x91,0xd5,0x92,0x90,0x90,0x90 -+// 37169 鄱 ; -+,0x03,0x7c,0x24,0x15,0x7f,0x0e,0x15,0x64,0x3f,0x24,0x24,0x3f,0x24,0x24,0x3f,0x00,0xc0,0x1f,0x91,0x12,0xd2,0x14,0x14,0xd2,0x91,0x91,0x91,0x95,0x92,0x90,0x90,0x10 -+// 37170 鄲 ; -+,0x00,0x7b,0x4a,0x7b,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0xdf,0x51,0xd2,0x14,0x98,0x94,0x92,0x91,0x91,0x1d,0xd2,0x10,0x10,0x10,0x10 -+// 37171 鄳 ; -+,0x00,0x3f,0x2a,0x3b,0x0a,0x0a,0x3b,0x2a,0x3b,0x2a,0x3b,0x0a,0x0a,0x0a,0x07,0x00,0x00,0xdf,0x51,0xd2,0x12,0x14,0xd2,0x51,0xd1,0x51,0xd5,0x12,0x50,0x50,0xd0,0x10 -+// 37172 鄴 ; -+,0x09,0x29,0x19,0x09,0x7f,0x09,0x3f,0x02,0x3f,0x02,0x7f,0x07,0x0a,0x32,0x02,0x02,0x00,0x5f,0x91,0x12,0xd2,0x14,0xd4,0x12,0xd1,0x11,0xd1,0x15,0x92,0x50,0x10,0x10 -+// 37173 鄵 ; -+,0x00,0x1f,0x11,0x1f,0x00,0x3b,0x2a,0x3b,0x04,0x3f,0x04,0x0e,0x15,0x24,0x04,0x04,0x00,0x1f,0x11,0x12,0x14,0xd8,0x54,0xd2,0x11,0xd1,0x11,0x15,0x92,0x90,0x10,0x10 -+// 37174 鄶 ; -+,0x06,0x09,0x1f,0x60,0x3f,0x32,0x2b,0x3f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x00,0x00,0x1f,0xd1,0x12,0xd2,0xd4,0x54,0xd2,0x11,0x91,0x91,0x95,0x92,0x90,0x90,0x10 -+// 37175 鄷 ; -+,0x0a,0x3f,0x2a,0x3f,0x2a,0x3f,0x00,0x3f,0x00,0x1f,0x10,0x1f,0x09,0x0b,0x7c,0x00,0x00,0xdf,0x51,0xd2,0x52,0xd4,0x12,0xd1,0x11,0x91,0x9d,0x92,0x10,0xd0,0x10,0x10 -+// 37176 鄸 ; -+,0x09,0x3f,0x09,0x00,0x3f,0x2a,0x3f,0x00,0x7f,0x48,0x0f,0x19,0x26,0x04,0x08,0x30,0x00,0xdf,0x11,0x12,0xd2,0x54,0xd4,0x12,0xf1,0x51,0x11,0x15,0x12,0x10,0x10,0x10 -+// 37177 鄹 ; -+,0x3e,0x14,0x1f,0x15,0x1c,0x15,0x3c,0x05,0x3e,0x06,0x1b,0x66,0x1a,0x62,0x02,0x02,0x00,0x1f,0xd1,0x52,0x92,0x54,0x14,0xd2,0x11,0xd1,0x19,0x96,0x50,0x10,0x10,0x10 -+// 37178 鄺 ; -+,0x02,0x3f,0x25,0x2f,0x25,0x3f,0x22,0x2f,0x2a,0x2f,0x2a,0x2f,0x25,0x48,0x50,0x00,0x00,0xdf,0x11,0xd2,0x12,0xd4,0x14,0x92,0x91,0x91,0x9d,0x92,0x10,0x90,0x90,0x10 -+// 37179 鄻 ; -+,0x11,0x7b,0x11,0x7b,0x11,0x2a,0x7f,0x04,0x1f,0x14,0x1f,0x14,0x7f,0x04,0x04,0x04,0x00,0xdf,0x11,0xd2,0x92,0x54,0xd4,0x12,0x91,0x91,0x91,0x95,0xd2,0x10,0x10,0x10 -+// 37180 鄼 ; -+,0x10,0x7b,0x10,0x7b,0x10,0x29,0x5f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x09,0x30,0x00,0x80,0xdf,0x91,0xf2,0x92,0x54,0xb4,0x92,0x91,0x91,0x91,0x95,0x92,0x10,0x90,0x10 -+// 37181 鄽 ; -+,0x02,0x3f,0x29,0x2f,0x29,0x2f,0x21,0x2f,0x21,0x3f,0x29,0x29,0x37,0x21,0x4f,0x00,0x00,0xef,0x49,0xca,0x4a,0xcc,0x0c,0xca,0x09,0xe9,0x49,0x2d,0xca,0x08,0xe8,0x08 -+// 37182 鄾 ; -+,0x7f,0x12,0x19,0x14,0x7f,0x44,0x32,0x50,0x0f,0x10,0x1f,0x28,0x45,0x06,0x39,0x00,0xe0,0x9f,0x91,0x92,0xf2,0x54,0x54,0xb2,0x91,0x11,0x9d,0x92,0x10,0x10,0x90,0x90 -+// 37183 鄿 ; -+,0x11,0x7f,0x11,0x3b,0x2a,0x3b,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x00,0xdf,0x11,0x92,0x94,0x94,0x12,0x91,0x91,0x91,0x9d,0x92,0x10,0xd0,0x10,0x10 -+// 37184 酀 ; -+,0x00,0x09,0x3f,0x09,0x0f,0x10,0x7e,0x1a,0x1a,0x3e,0x50,0x00,0x2a,0x25,0x45,0x00,0x00,0x1f,0xd1,0x12,0x14,0x98,0xd4,0x92,0x91,0x91,0xd1,0x1d,0x92,0x50,0x50,0x10 -+// 37185 酁 ; -+,0x1f,0x11,0x3f,0x10,0x1f,0x39,0x21,0x35,0x0f,0x11,0x7f,0x14,0x1f,0x04,0x0d,0x13,0x80,0x1f,0x91,0x92,0x94,0x98,0x54,0xd2,0x11,0x11,0xd1,0x5d,0xd2,0x10,0x50,0xd0 -+// 37186 酂 ; -+,0x08,0x2a,0x3f,0x4c,0x7f,0x18,0x2d,0x42,0x1f,0x10,0x12,0x12,0x05,0x18,0x60,0x00,0x80,0x9f,0xf1,0x92,0xf2,0xd4,0x74,0x12,0xd1,0x51,0x51,0x55,0x12,0xd0,0x50,0x10 -+// 37187 酃 ; -+,0x1f,0x04,0x7f,0x44,0x35,0x04,0x35,0x04,0x00,0x77,0x55,0x55,0x55,0x77,0x00,0x00,0x00,0x1f,0xd1,0x52,0x92,0x14,0x94,0x12,0x11,0x71,0x51,0x55,0x52,0x70,0x10,0x10 -+// 37188 酄 ; -+,0x09,0x7f,0x09,0x3d,0x25,0x3d,0x0a,0x1f,0x12,0x3f,0x52,0x1f,0x12,0x1f,0x10,0x00,0x00,0xdf,0x11,0xd2,0x52,0xd4,0x14,0xd2,0x11,0xd1,0x15,0xd2,0x10,0xd0,0x10,0x00 -+// 37189 酅 ; -+,0x02,0x22,0x3f,0x12,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x3f,0x29,0x3f,0x29,0x2f,0x20,0x00,0x5f,0xd1,0x12,0xd4,0x18,0x94,0x12,0x91,0x11,0xd1,0x55,0xd2,0x50,0x50,0xd0 -+// 37190 酆 ; -+,0x04,0x55,0x7f,0x55,0x7f,0x55,0x7f,0x00,0x7f,0x00,0x3f,0x20,0x3f,0x11,0x0b,0x7c,0x00,0x40,0xdf,0x51,0xd2,0x54,0xd4,0x12,0xd1,0x11,0x91,0x9a,0x94,0x10,0xd0,0x10 -+// 37191 酇 ; -+,0x08,0x2a,0x3f,0x48,0x7f,0x19,0x2a,0x4c,0x3f,0x32,0x29,0x24,0x3f,0x12,0x11,0x20,0x80,0x9f,0xd1,0x92,0xf2,0x94,0xb4,0xf2,0x91,0x91,0x95,0x92,0x90,0x10,0x10,0x90 -+// 37192 酈 ; -+,0x7f,0x00,0x3d,0x35,0x25,0x02,0x3f,0x25,0x3f,0x25,0x3f,0x29,0x2f,0x29,0x4d,0x09,0xe0,0x1f,0xd1,0xd2,0x52,0x14,0xd4,0x12,0xd1,0x51,0xd1,0x15,0xd2,0x10,0x50,0xd0 -+// 37193 酉 ; -+,0x00,0x7f,0x01,0x01,0x1f,0x11,0x12,0x12,0x14,0x18,0x1f,0x10,0x10,0x10,0x1f,0x10,0x00,0xff,0x40,0x40,0xfc,0x44,0x44,0x44,0x3c,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 37194 酊 ; -+,0x7f,0x0a,0x0a,0x0a,0x3f,0x2a,0x2a,0x2a,0x33,0x20,0x3f,0x20,0x20,0x3f,0x20,0x00,0x80,0x7f,0x08,0x08,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xa8,0x90,0x00 -+// 37195 酋 ; -+,0x04,0x02,0x02,0x7f,0x02,0x1f,0x12,0x12,0x14,0x14,0x18,0x1f,0x10,0x10,0x1f,0x10,0x10,0x10,0x20,0xff,0x40,0xfc,0x44,0x44,0x44,0x3c,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 37196 酌 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x90,0x10,0x3e,0x22,0x42,0x02,0x22,0x12,0x12,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 37197 配 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x63,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7e,0x02,0x02,0x02,0x02,0x7e,0x40,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 37198 酎 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x63,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x04,0x84,0x04,0x04,0x7f,0x04,0x04,0x24,0x14,0x14,0x04,0x04,0x04,0x14,0x08,0x00 -+// 37199 酏 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x08,0x08,0x48,0x4a,0x4f,0x7a,0xca,0x4a,0x4a,0x4a,0x4e,0x48,0x41,0x41,0x3f,0x00 -+// 37200 酐 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7e,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 37201 酑 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x3e,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 37202 酒 ; -+,0x20,0x17,0x10,0x00,0x4b,0x2a,0x0a,0x12,0x12,0x13,0x62,0x23,0x22,0x23,0x22,0x00,0x00,0xff,0x90,0x90,0xfe,0x92,0x92,0x92,0x92,0x1e,0x02,0xfe,0x02,0xfe,0x02,0x00 -+// 37203 酓 ; -+,0x00,0x01,0x07,0x18,0x6f,0x00,0x7f,0x01,0x0f,0x09,0x0a,0x0c,0x0f,0x08,0x0f,0x08,0x80,0x40,0x30,0x8c,0xf3,0x20,0xff,0x40,0xfc,0x44,0x3c,0x04,0xfc,0x04,0xfc,0x04 -+// 37204 酔 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0xfc,0x14,0x25,0x25,0x43,0x88,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08 -+// 37205 酕 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x1e,0xe0,0x20,0x20,0xfc,0x20,0x20,0x20,0xfe,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 37206 酖 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x90,0x10,0x10,0x7f,0x52,0x10,0x18,0x18,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 37207 酗 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x84,0x04,0x24,0x55,0x59,0x49,0x49,0x55,0x55,0x65,0x41,0x41,0x7f,0x41,0x00 -+// 37208 酘 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x7f,0x40,0x03,0x00,0x00,0x3c,0x24,0x24,0x44,0x43,0x80,0x7e,0x44,0x28,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 37209 酙 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x04,0x04,0x24,0x14,0x14,0x44,0x24,0x24,0x07,0x7c,0x04,0x04,0x04,0x04,0x04,0x04 -+// 37210 酚 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x08,0x48,0x44,0x44,0x83,0x02,0x7c,0x24,0x24,0x24,0x44,0x44,0x94,0x08,0x00 -+// 37211 酛 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7e,0x00,0x00,0x00,0xff,0x28,0x28,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 37212 酜 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x7f,0x41,0x7f,0x40,0x03,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 37213 酝 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7e,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x42,0x41,0xff,0x01,0x00 -+// 37214 酞 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x90,0x10,0x10,0x7f,0x10,0x10,0x10,0x28,0x28,0x28,0x64,0x54,0x93,0x02,0x00 -+// 37215 酟 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 37216 酠 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7f,0x02,0x02,0x02,0x3a,0x2a,0x2a,0x2a,0x3a,0x02,0x02,0x02,0x1a,0x04,0x00 -+// 37217 酡 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x00,0x10,0x08,0x08,0x7f,0x42,0x00,0x20,0x22,0x24,0x38,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 37218 酢 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x7f,0x41,0x41,0x7f,0x41,0x00,0x20,0xa0,0x20,0x3f,0x50,0x50,0x9f,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10,0x00 -+// 37219 酣 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x24,0x24,0x24,0x7f,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x3c,0x24,0x00 -+// 37220 酤 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0x10,0x10,0x7f,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 37221 酥 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x41,0x7f,0x41,0x7f,0x41,0x00,0x0e,0x70,0x10,0x10,0x10,0xff,0x10,0x30,0x38,0x54,0x54,0x93,0x12,0x10,0x10,0x10 -+// 37222 酦 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x94,0x52,0x50,0xff,0x20,0x20,0x3e,0x62,0x54,0x54,0x88,0x14,0x27,0xc2,0x00 -+// 37223 酧 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x08,0x7f,0x42,0x08,0x08,0x08,0x7f,0x08,0x48,0x28,0x28,0x08,0x08,0x28,0x10 -+// 37224 酨 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x04,0x3f,0x0a,0x3f,0x2a,0x33,0x20,0x3f,0x20,0x3f,0x20,0x20,0x28,0xa4,0x20,0xff,0x20,0xa2,0x22,0x94,0x94,0x98,0x88,0x99,0xa5,0xc3,0x81 -+// 37225 酩 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x20,0x20,0x3f,0x42,0x64,0x94,0x08,0x10,0x3e,0xe2,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 37226 酪 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x20,0x20,0x7e,0x44,0xa8,0x10,0x28,0x44,0x83,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 37227 酫 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0x30,0x28,0x44,0x83,0x7c,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x7e,0x00 -+// 37228 酬 ; -+,0x7f,0x14,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x81,0x49,0x49,0x49,0x49,0xed,0x5b,0x49,0x49,0x49,0x49,0x49,0x49,0x89,0x09,0x00 -+// 37229 酭 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x10,0x10,0xff,0x10,0x20,0x3e,0x62,0xa2,0x3e,0x22,0x22,0x3e,0x22,0x22,0x2a,0x24 -+// 37230 酮 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7f,0x41,0x41,0x7f,0x41,0x5d,0x55,0x55,0x55,0x5d,0x41,0x41,0x41,0x45,0x42 -+// 37231 酯 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x41,0x00,0x00,0x40,0x4e,0x70,0x40,0x7f,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 37232 酰 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x43,0x00,0x10,0x10,0x50,0x7e,0x50,0x90,0x10,0xff,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 37233 酱 ; -+,0x02,0x12,0x0e,0x0b,0x32,0x03,0x7f,0x02,0x1f,0x12,0x14,0x18,0x1f,0x10,0x1f,0x10,0x40,0x7c,0x84,0x48,0x30,0xc0,0xff,0x40,0xfc,0x44,0x7c,0x04,0xfc,0x04,0xfc,0x04 -+// 37234 酲 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x41,0x40,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x7f,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 37235 酳 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0x24,0x78,0x12,0x7f,0x01,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 37236 酴 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x41,0x40,0x00,0x10,0x10,0x30,0x28,0x44,0xfb,0x10,0x10,0xff,0x10,0x58,0x54,0x92,0x12,0x50,0x20 -+// 37237 酵 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x12,0x7e,0x14,0x18,0xff,0x20,0x7e,0x84,0x08,0xff,0x08,0x08,0x08,0x28,0x10 -+// 37238 酶 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x20,0x20,0x7f,0x40,0xfe,0x62,0x52,0x52,0xff,0x62,0x52,0x52,0x7f,0x02,0x0a,0x04 -+// 37239 酷 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0x50,0x7e,0x50,0x90,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 37240 酸 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x41,0x40,0x00,0x10,0x90,0x22,0x7f,0x01,0x44,0x42,0xa1,0x3e,0x44,0xa4,0x18,0x18,0x24,0xc3,0x00 -+// 37241 酹 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x7f,0x41,0x00,0x06,0x78,0x01,0x91,0x4a,0x48,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x14,0x08,0x00 -+// 37242 酺 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x41,0x7f,0x41,0x00,0x0a,0x09,0x7f,0x08,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x49,0x49,0x49,0x4b,0x00 -+// 37243 酻 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x7f,0x41,0x00,0x07,0x78,0x02,0x92,0x54,0x00,0x7c,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 37244 酼 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x20,0x10,0xff,0x10,0x20,0x24,0x7e,0x02,0x54,0x54,0x54,0x54,0x95,0x95,0x17,0x00 -+// 37245 酽 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7f,0x28,0x6a,0x2c,0x7f,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x00,0x00 -+// 37246 酾 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5e,0x62,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00,0x00,0xff,0x00,0x00,0xef,0xa9,0xa9,0xed,0xab,0xa9,0xa9,0xa9,0xa9,0xe9,0xab,0x00 -+// 37247 酿 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x20,0x10,0x7c,0x44,0x44,0x7c,0x44,0x7c,0x40,0x52,0x4c,0x48,0x54,0x67,0x42,0x00 -+// 37248 醀 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x20,0x28,0x44,0x7f,0xc8,0x48,0x7f,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 37249 醁 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7c,0x04,0x7c,0x04,0xff,0x10,0x92,0x54,0x18,0x38,0xd4,0x13,0x10,0x50,0x20 -+// 37250 醂 ; -+,0x00,0x7f,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x6e,0x43,0x7e,0x42,0x42,0x7e,0x42,0x00,0x48,0x48,0x48,0x48,0xff,0x48,0xc8,0xec,0xdc,0x5a,0x4b,0x4a,0x48,0x48,0x48,0x48 -+// 37251 醃 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0xff,0x10,0x28,0x44,0x93,0x7c,0x54,0x7c,0x54,0x7c,0x11,0x11,0x0f,0x00 -+// 37252 醄 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x40,0x40,0x7f,0x81,0x41,0x7d,0x91,0xff,0x11,0x55,0x55,0x7d,0x01,0x0d,0x02,0x00 -+// 37253 醅 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x20,0x10,0xfe,0x00,0x44,0x24,0x28,0xff,0x00,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44 -+// 37254 醆 ; -+,0x00,0x7f,0x14,0x15,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x50,0x48,0x5e,0xe8,0x32,0x72,0x8e,0x50,0x4f,0xf0,0x22,0x14,0x19,0x65,0x03,0x01 -+// 37255 醇 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x7f,0x41,0x00,0x20,0x10,0xff,0x00,0x7e,0x42,0x7e,0x00,0x7c,0x08,0x10,0xff,0x10,0x10,0x50,0x20 -+// 37256 醈 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0x53,0x54,0x98,0x24,0xd3,0x10,0x52,0x54,0x98,0x28,0x24,0x47,0x82,0x00 -+// 37257 醉 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x08,0xff,0x00,0x44,0x44,0xaa,0x92,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 37258 醊 ; -+,0x00,0x7f,0x19,0x18,0x7e,0x5a,0x5b,0x5b,0x6e,0x43,0x7e,0x42,0x7e,0x43,0x42,0x00,0x00,0xef,0x29,0xc6,0x46,0xa9,0x10,0xef,0x32,0x4a,0xc4,0x64,0xac,0x13,0x22,0x00 -+// 37259 醋 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x24,0xa4,0x24,0x7e,0x24,0x24,0xff,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 37260 醌 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x7f,0x41,0x00,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0x48,0x4b,0x7c,0x48,0x49,0x69,0x47,0x00 -+// 37261 醍 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x10,0x50,0x5e,0x50,0x50,0xb0,0x1f,0x00 -+// 37262 醎 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x40,0x01,0x00,0x08,0x0c,0x0a,0x7f,0x48,0x48,0x78,0x4a,0x7a,0x5a,0x54,0x74,0x8d,0x93,0x61,0x00 -+// 37263 醏 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x10,0x10,0xfd,0x12,0x14,0xff,0x10,0x20,0x7e,0xc2,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 37264 醐 ; -+,0x00,0x7f,0x14,0x15,0x7f,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x40,0x4f,0x49,0xf9,0x4f,0x49,0x49,0xe9,0x2f,0x29,0x29,0xe9,0x11,0x11,0x25,0x02 -+// 37265 醑 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7f,0x12,0x50,0x5f,0xb0,0x0f,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 37266 醒 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x7f,0x41,0x41,0x7f,0x40,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0x50,0x7e,0x90,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 37267 醓 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x6e,0x43,0x42,0x7e,0x42,0x42,0x7e,0x43,0x00,0x20,0x20,0xff,0xa2,0x30,0x50,0x52,0x8e,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 37268 醔 ; -+,0x1f,0x04,0x3f,0x0c,0x16,0x25,0x04,0x7f,0x01,0x1f,0x12,0x12,0x14,0x1f,0x10,0x1f,0x10,0x10,0x56,0x58,0x18,0x24,0x42,0xff,0x20,0xfc,0x24,0x3c,0x04,0xfc,0x04,0xfc -+// 37269 醕 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x7f,0x41,0x00,0x10,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00 -+// 37270 醖 ; -+,0x00,0x7e,0x14,0x14,0x7e,0x56,0x56,0x56,0x66,0x42,0x7e,0x42,0x7e,0x42,0x41,0x00,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 37271 醗 ; -+,0x00,0x7e,0x14,0x14,0x7e,0x56,0x57,0x56,0x62,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00,0x10,0xf4,0x29,0xaa,0x44,0x82,0x7d,0x28,0x28,0xfe,0x28,0x28,0x49,0x49,0x87,0x00 -+// 37272 醘 ; -+,0x00,0x7f,0x14,0x14,0x7e,0x56,0x56,0x56,0x66,0x42,0x7e,0x42,0x42,0x7e,0x43,0x00,0x10,0x10,0x7e,0x10,0x10,0xff,0x20,0x42,0xff,0x01,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 37273 醙 ; -+,0x00,0x7f,0x14,0x14,0x7e,0x56,0x56,0x56,0x56,0x62,0x42,0x7e,0x42,0x7e,0x42,0x00,0x10,0x36,0xd2,0x92,0xd6,0x92,0xfe,0x10,0x10,0xfe,0x44,0x28,0x10,0x28,0xc7,0x00 -+// 37274 醚 ; -+,0x00,0x7e,0x29,0x28,0x7e,0x6a,0x6b,0x6e,0x62,0x42,0x7e,0x42,0x42,0x7e,0x41,0x00,0x08,0x08,0x4a,0xaa,0x2c,0x7f,0x98,0x98,0xac,0xaa,0xca,0x88,0x88,0xc0,0x3f,0x00 -+// 37275 醛 ; -+,0x00,0x7f,0x15,0x14,0x7e,0x56,0x56,0x56,0x57,0x62,0x7e,0x42,0x42,0x7e,0x42,0x00,0x48,0x48,0xff,0x48,0x20,0x30,0x48,0x84,0x7b,0x10,0x10,0xfc,0x10,0x10,0xff,0x00 -+// 37276 醜 ; -+,0x00,0x7f,0x14,0x14,0x7e,0x56,0x56,0x56,0x62,0x42,0x7e,0x42,0x42,0x7e,0x43,0x00,0x10,0x20,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x30,0x34,0x34,0x5e,0x51,0x91,0x0f,0x00 -+// 37277 醝 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x42,0x24,0xff,0x10,0x10,0x7e,0x10,0xff,0x20,0x40,0x7e,0x90,0x10,0x10,0x7f,0x00 -+// 37278 醞 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x41,0x7f,0x41,0x00,0x00,0x7e,0x52,0x52,0x5a,0x66,0x7e,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 37279 醟 ; -+,0x04,0x15,0x16,0x06,0x09,0x3f,0x20,0x1f,0x01,0x1f,0x12,0x1c,0x10,0x1f,0x10,0x1f,0x10,0x54,0x58,0x28,0x44,0xff,0x02,0xfc,0x40,0xfc,0x44,0x7c,0x04,0xfc,0x04,0xfc -+// 37280 醠 ; -+,0x00,0x7f,0x18,0x18,0x7e,0x5b,0x5a,0x5a,0x57,0x62,0x7e,0x42,0x42,0x7e,0x41,0x00,0x10,0x10,0x7c,0x54,0x54,0xff,0x30,0x4c,0x83,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 37281 醡 ; -+,0x00,0x7f,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x5e,0x62,0x42,0x7e,0x42,0x7e,0x42,0x00,0x20,0x10,0xff,0x82,0x48,0xa6,0x20,0x7f,0xa0,0x20,0x3f,0x20,0x3f,0x20,0x20,0x20 -+// 37282 醢 ; -+,0x00,0x7f,0x19,0x18,0x7e,0x5a,0x5b,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7f,0x42,0x00,0x20,0x20,0xff,0x40,0x7c,0xc4,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00,0x00 -+// 37283 醣 ; -+,0x00,0x7e,0x28,0x28,0x7e,0x6a,0x6a,0x6e,0x62,0x42,0x7e,0x42,0x43,0x7f,0x42,0x00,0x20,0x10,0xff,0x90,0xfe,0x92,0xff,0x92,0xfe,0x90,0xfe,0xc2,0x42,0x7e,0x42,0x00 -+// 37284 醤 ; -+,0x04,0x25,0x15,0x14,0x0d,0x14,0x64,0x04,0x3f,0x02,0x1f,0x12,0x1c,0x1f,0x10,0x1f,0x1e,0xe0,0x26,0x98,0xff,0x88,0xa8,0x10,0xff,0x20,0xfc,0x24,0x1c,0xfc,0x04,0xfc -+// 37285 醥 ; -+,0x00,0x7e,0x14,0x7e,0x56,0x56,0x56,0x56,0x62,0x42,0x7e,0x42,0x42,0x7e,0x41,0x00,0x00,0xff,0x28,0xfe,0xaa,0xaa,0xfe,0x00,0x7e,0x00,0xff,0x10,0x92,0x91,0x51,0x20 -+// 37286 醦 ; -+,0x7f,0x18,0x18,0x7e,0x5b,0x5b,0x5a,0x6a,0x67,0x42,0x7f,0x42,0x43,0x7e,0x41,0x00,0x10,0x28,0x7c,0x84,0x4a,0xdf,0x30,0x4c,0x93,0x64,0x98,0x62,0x8c,0x30,0xc0,0x00 -+// 37287 醧 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x66,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00,0x00,0xff,0x80,0xbe,0xa2,0xa2,0xbe,0x80,0xf7,0x95,0x95,0x95,0xf7,0x80,0xff,0x00 -+// 37288 醨 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7e,0x40,0x00,0x10,0xff,0x00,0x6a,0x52,0x6a,0x7e,0x10,0xff,0x91,0xa9,0xfd,0x85,0x81,0x83,0x00 -+// 37289 醩 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x53,0x61,0x41,0x7f,0x41,0x7f,0x41,0x00,0x14,0x14,0x7f,0x14,0x7f,0x55,0x7f,0x55,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x00 -+// 37290 醪 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7e,0x42,0x00,0x00,0xee,0x22,0xaa,0x66,0xaa,0x12,0x28,0xd4,0x23,0xc8,0x32,0xc4,0x18,0xe0,0x00 -+// 37291 醫 ; -+,0x3f,0x28,0x2f,0x32,0x3f,0x25,0x3f,0x00,0x7f,0x02,0x1f,0x14,0x18,0x1f,0x10,0x1f,0xbc,0x24,0x47,0x00,0xbe,0x14,0x98,0x66,0xff,0x20,0xfc,0x3c,0x04,0xfc,0x04,0xfc -+// 37292 醬 ; -+,0x14,0x15,0x1f,0x04,0x3f,0x14,0x24,0x7f,0x02,0x1f,0x12,0x1c,0x10,0x1f,0x10,0x1f,0x80,0xfc,0x50,0xa0,0xff,0x88,0x58,0xff,0x20,0xfc,0x24,0x3c,0x04,0xfc,0x04,0xfc -+// 37293 醭 ; -+,0x00,0x7e,0x19,0x18,0x7f,0x5a,0x5a,0x5e,0x62,0x42,0x7f,0x42,0x42,0x7e,0x43,0x00,0x50,0x50,0x54,0xd8,0xff,0x48,0xfe,0x20,0xfc,0x20,0xff,0x30,0x48,0x84,0x03,0x00 -+// 37294 醮 ; -+,0x00,0x7f,0x18,0x18,0x7f,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7e,0x41,0x00,0x50,0x48,0x80,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0x00,0xaa,0x95,0x15,0x00 -+// 37295 醯 ; -+,0x00,0x7e,0x19,0x18,0x7e,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7e,0x43,0x00,0x20,0x10,0xff,0x20,0x44,0xfe,0x54,0x55,0x97,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 37296 醰 ; -+,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x55,0x57,0x61,0x41,0x7f,0x41,0x7f,0x41,0x00,0x00,0x7f,0x14,0x7f,0x55,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x08,0x08 -+// 37297 醱 ; -+,0x00,0x7d,0x12,0x7d,0x55,0x55,0x56,0x65,0x45,0x45,0x7d,0x44,0x44,0x7d,0x44,0x00,0x14,0xd8,0x4a,0x8c,0x04,0xdf,0x54,0xd4,0x27,0x3e,0xd2,0x54,0x48,0x54,0xa2,0x00 -+// 37298 醲 ; -+,0x00,0x7e,0x18,0x7e,0x5a,0x5a,0x5a,0x5e,0x62,0x42,0x7e,0x42,0x42,0x7e,0x43,0x00,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xfe,0x80,0xfe,0x80,0xff,0xa8,0xb4,0x23,0x00 -+// 37299 醳 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7e,0x42,0x00,0x00,0xfe,0xaa,0xfe,0x10,0xfe,0x10,0xff,0x44,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 37300 醴 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7e,0x40,0x00,0x28,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xff,0x00,0x7e,0x42,0x7e,0x24,0xff,0x00 -+// 37301 醵 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x5e,0x62,0x42,0x7e,0x42,0x7e,0x43,0x00,0x10,0x1e,0x10,0xff,0x92,0xfc,0x91,0xff,0x90,0xf2,0x9c,0xec,0x9b,0xea,0x28,0x10 -+// 37302 醶 ; -+,0x00,0x7f,0x18,0x18,0x7f,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7e,0x43,0x00,0x10,0x10,0x28,0x44,0xbb,0x00,0xee,0xaa,0xaa,0xee,0x00,0x44,0x44,0xaa,0x31,0x00 -+// 37303 醷 ; -+,0x00,0x7e,0x18,0x18,0x7e,0x5a,0x5a,0x5a,0x56,0x62,0x42,0x7e,0x42,0x7f,0x42,0x00,0x20,0xfe,0x44,0x28,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xca,0x45,0x3d,0x00 -+// 37304 醸 ; -+,0x00,0x7e,0x28,0x28,0x7e,0x6a,0x6a,0x6e,0x62,0x43,0x7e,0x42,0x42,0x7f,0x42,0x00,0x10,0xff,0x24,0x43,0xa5,0xff,0x24,0xfe,0x24,0xff,0x28,0x4a,0xc4,0x54,0x63,0x42 -+// 37305 醹 ; -+,0x00,0x7e,0x19,0x7f,0x5a,0x5a,0x5a,0x5e,0x62,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00,0x7e,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0xff,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0x86 -+// 37306 醺 ; -+,0x00,0x7e,0x14,0x15,0x7e,0x56,0x56,0x56,0x62,0x42,0x7e,0x43,0x7e,0x42,0x41,0x00,0x1e,0xf0,0x10,0xff,0x10,0xfe,0xba,0xfe,0x10,0xfe,0x10,0xff,0xd2,0xa9,0x29,0x00 -+// 37307 醻 ; -+,0x00,0x7d,0x28,0x28,0x7e,0x6b,0x6a,0x6a,0x6e,0x43,0x7e,0x43,0x42,0x7e,0x42,0x00,0x20,0xfe,0x20,0xfc,0x00,0xff,0x02,0xfc,0x20,0xff,0x04,0xff,0x44,0x24,0x04,0x0c -+// 37308 醼 ; -+,0x00,0x7e,0x28,0x28,0x7e,0x6a,0x6b,0x6a,0x6e,0x43,0x7e,0x42,0x42,0x7e,0x43,0x00,0x28,0x28,0xff,0x28,0x38,0x84,0xbd,0xa6,0xa5,0xbd,0x87,0x00,0xd2,0xa9,0x29,0x00 -+// 37309 醽 ; -+,0x00,0x7e,0x18,0x19,0x7f,0x5a,0x5a,0x5e,0x52,0x63,0x42,0x7e,0x42,0x7f,0x42,0x00,0x00,0xfe,0x10,0xff,0x12,0xdc,0x10,0xdc,0x00,0xf7,0x55,0x55,0x55,0xf7,0x00,0x00 -+// 37310 醾 ; -+,0x00,0x7f,0x29,0x29,0x7f,0x6b,0x6b,0x6f,0x43,0x7f,0x43,0x43,0x7f,0x42,0x02,0x04,0x10,0xff,0x24,0xff,0x64,0xbe,0x35,0x24,0x4a,0x2c,0xff,0x18,0x2c,0xcb,0x08,0x08 -+// 37311 醿 ; -+,0x00,0x7d,0x29,0x29,0x7f,0x6b,0x6b,0x6f,0x43,0x43,0x7f,0x43,0x43,0x7f,0x02,0x04,0x10,0xff,0x24,0x24,0xff,0x6e,0xb5,0xa4,0x10,0x24,0x78,0x24,0x7e,0x10,0x54,0xb2 -+// 37312 釀 ; -+,0x00,0x7e,0x29,0x28,0x7e,0x6a,0x6a,0x6a,0x6e,0x42,0x7f,0x42,0x43,0x7e,0x42,0x00,0x20,0x10,0xff,0xaa,0xee,0x44,0xff,0x44,0xfe,0x44,0xff,0xd2,0x4c,0x44,0x63,0x40 -+// 37313 釁 ; -+,0x1b,0x12,0x1a,0x1a,0x12,0x3f,0x22,0x0f,0x0a,0x0d,0x08,0x0f,0x04,0x1b,0x01,0x06,0xec,0xe4,0x2c,0xec,0xa4,0xff,0x22,0xfc,0x24,0xdc,0x04,0xfc,0x08,0xf6,0x10,0x30 -+// 37314 釂 ; -+,0x00,0x7e,0x28,0x7e,0x6a,0x6a,0x6a,0x6e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00,0x1e,0xe0,0xa2,0x54,0xfe,0xaa,0xfe,0x00,0xe2,0xaf,0xe2,0xb2,0xea,0x82,0xc2,0xa6 -+// 37315 釃 ; -+,0x01,0x7e,0x15,0x15,0x7f,0x55,0x55,0x55,0x67,0x41,0x7f,0x41,0x7f,0x41,0x41,0x02,0xef,0x00,0xef,0xad,0xe9,0x20,0xff,0x28,0xfe,0x2a,0xfe,0x48,0x6e,0x49,0x69,0x47 -+// 37316 釄 ; -+,0x00,0x7d,0x29,0x29,0x7d,0x6d,0x6d,0x6d,0x65,0x7d,0x45,0x45,0x7d,0x42,0x04,0x00,0x10,0xff,0x24,0x24,0xff,0x6e,0xb5,0x24,0xe7,0x24,0x67,0x24,0xe7,0x24,0x24,0x00 -+// 37317 釅 ; -+,0x00,0x7e,0x28,0x28,0x7d,0x6d,0x6d,0x6d,0x45,0x45,0x7d,0x45,0x7d,0x46,0x02,0x04,0xee,0xaa,0xee,0x00,0xff,0x64,0x24,0xff,0x5a,0x7a,0x56,0x72,0x52,0xf5,0x19,0x10 -+// 37318 釆 ; -+,0x00,0x1f,0x00,0x08,0x04,0x04,0x3f,0x00,0x01,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfc,0x80,0x80,0x88,0x88,0x90,0xff,0x80,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 37319 采 ; -+,0x00,0x00,0x3f,0x00,0x08,0x04,0x00,0x3f,0x00,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0x00,0xfc,0x00,0x08,0x88,0x50,0x80,0xff,0xc0,0xa0,0x90,0x8c,0x87,0x82,0x80,0x80 -+// 37320 釈 ; -+,0x07,0x78,0x0a,0x2a,0x1c,0x7f,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x09,0x09,0x0a,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x50,0x50,0x48,0x48,0x88,0x84,0x04,0x03,0x02,0x00 -+// 37321 釉 ; -+,0x03,0x3c,0x08,0x2a,0x1c,0x7e,0x08,0x1c,0x1a,0x2a,0x28,0x48,0x08,0x08,0x08,0x00,0x10,0x10,0x10,0x10,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0x91,0xff,0x81,0x00 -+// 37322 释 ; -+,0x06,0x38,0x08,0x2a,0x1c,0x7e,0x08,0x1c,0x1a,0x28,0x29,0x48,0x08,0x08,0x08,0x00,0xfe,0x44,0x28,0x10,0x2c,0xc3,0x10,0x10,0xfe,0x10,0xff,0x10,0x10,0x10,0x10,0x00 -+// 37323 釋 ; -+,0x0e,0x78,0x08,0x4a,0x2c,0x7e,0x08,0x19,0x1c,0x2b,0x28,0x49,0x08,0x08,0x08,0x08,0xfe,0xaa,0xaa,0xfe,0x10,0xfe,0x10,0xff,0x44,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 37324 里 ; -+,0x1f,0x10,0x10,0x10,0x1f,0x10,0x10,0x1f,0x00,0x00,0x1f,0x00,0x00,0x00,0x7f,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0xfc,0x80,0x80,0xfc,0x80,0x80,0x80,0xff,0x00 -+// 37325 重 ; -+,0x00,0x1f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x00,0x7f,0x00,0xf8,0x80,0x80,0xff,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0x80,0xff,0x00 -+// 37326 野 ; -+,0x00,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x0f,0x70,0x00,0x00,0x00,0x7e,0x04,0x08,0x30,0x08,0x7f,0x12,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 37327 量 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x0f,0x00,0x7f,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xff,0x00 -+// 37328 釐 ; -+,0x04,0x3f,0x04,0x3f,0x0e,0x15,0x64,0x1f,0x14,0x17,0x14,0x17,0x10,0x27,0x20,0x5f,0x20,0x3f,0x44,0xa8,0x18,0x24,0xc3,0xfe,0x44,0xfc,0x44,0xfc,0x40,0xfc,0x40,0xff -+// 37329 金 ; -+,0x00,0x00,0x01,0x02,0x04,0x18,0x67,0x00,0x00,0x1f,0x00,0x04,0x02,0x02,0x7f,0x00,0x80,0x80,0x40,0x20,0x18,0x07,0xfa,0x80,0x80,0xfc,0x80,0x90,0x90,0xa0,0xff,0x00 -+// 37330 釒 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3f,0x48,0x3f,0x08,0x08,0x2a,0x1c,0x0b,0x0c,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 37331 釓 ; -+,0x02,0x02,0x05,0x04,0x08,0x1f,0x24,0x44,0x3f,0x04,0x25,0x16,0x15,0x0e,0x30,0x00,0x20,0x20,0x20,0xa0,0x20,0xa0,0x20,0x20,0xa0,0x20,0x20,0x21,0xa1,0x21,0x1f,0x00 -+// 37332 釔 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x04,0x3f,0x04,0x25,0x16,0x14,0x06,0x38,0x00,0x00,0x7e,0x02,0x04,0x08,0x10,0x10,0x20,0x20,0x40,0x41,0x81,0x81,0x81,0x7f,0x00 -+// 37333 釕 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x04,0x3f,0x04,0x25,0x16,0x17,0x0c,0x30,0x00,0x00,0xff,0x02,0x04,0x08,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 37334 釖 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x3f,0x04,0x25,0x16,0x14,0x07,0x0c,0x33,0x00,0x00,0x00,0x7e,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 37335 釗 ; -+,0x02,0x02,0x05,0x04,0x0f,0x12,0x22,0x1f,0x02,0x12,0x0a,0x0b,0x02,0x07,0x38,0x00,0x02,0x02,0x02,0xd2,0x92,0x12,0x12,0xd2,0x12,0x92,0x92,0x12,0xc2,0x02,0x0a,0x04 -+// 37336 釘 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x3f,0x04,0x25,0x16,0x14,0x05,0x06,0x38,0x00,0x00,0xff,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x88,0x08,0x28,0x10 -+// 37337 釙 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x3f,0x04,0x25,0x16,0x14,0x05,0x0e,0x30,0x00,0x20,0x20,0x20,0x20,0x20,0x30,0x28,0xa6,0x23,0x22,0x20,0x20,0xa0,0x20,0x20,0x20 -+// 37338 釚 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x3f,0x04,0x25,0x16,0x14,0x06,0x19,0x62,0x00,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x44,0x44,0x44,0x85,0x85,0x05,0x03,0x00 -+// 37339 釛 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x3f,0x04,0x25,0x16,0x14,0x05,0x0e,0x30,0x01,0x10,0x10,0x10,0x10,0x7f,0x11,0x11,0x11,0x11,0x21,0x21,0x21,0x41,0x41,0x85,0x02 -+// 37340 釜 ; -+,0x04,0x06,0x1c,0x62,0x01,0x03,0x0c,0x77,0x00,0x00,0x07,0x08,0x04,0x04,0x7f,0x00,0x10,0x08,0x26,0x44,0x80,0x60,0x18,0xf7,0x80,0x80,0xf0,0x84,0x88,0x90,0xff,0x00 -+// 37341 針 ; -+,0x04,0x04,0x0a,0x09,0x10,0x2f,0x44,0x04,0x1f,0x04,0x25,0x16,0x05,0x0e,0x30,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 37342 釞 ; -+,0x04,0x04,0x0a,0x11,0x60,0x1f,0x04,0x3f,0x04,0x25,0x16,0x14,0x0e,0x31,0x06,0x00,0x60,0x10,0x10,0x10,0x10,0x10,0x10,0xa8,0x28,0x28,0x48,0x44,0x84,0x03,0x02,0x00 -+// 37343 釟 ; -+,0x04,0x04,0x0a,0x09,0x1e,0x24,0x04,0x3f,0x04,0x25,0x16,0x17,0x0c,0x31,0x06,0x00,0x00,0x08,0x28,0x28,0xa8,0x28,0x28,0xa8,0x28,0x24,0x44,0x44,0x82,0x03,0x02,0x00 -+// 37344 釠 ; -+,0x04,0x04,0x0a,0x09,0x10,0x6f,0x04,0x3f,0x04,0x25,0x15,0x16,0x04,0x07,0x39,0x02,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 37345 釡 ; -+,0x04,0x04,0x09,0x30,0x01,0x02,0x0c,0x77,0x00,0x00,0x07,0x00,0x04,0x02,0x3f,0x00,0x20,0x10,0x4c,0x84,0x40,0x20,0x18,0xf7,0x80,0x80,0xf0,0x80,0x90,0xa0,0xff,0x00 -+// 37346 釢 ; -+,0x04,0x04,0x0a,0x11,0x60,0x1e,0x08,0x08,0x3f,0x08,0x2a,0x1c,0x0e,0x31,0x02,0x00,0x00,0xfe,0x22,0x22,0x24,0x24,0x2f,0x21,0x41,0x41,0x41,0x81,0x81,0x05,0x02,0x00 -+// 37347 釣 ; -+,0x04,0x04,0x0a,0x09,0x11,0x6e,0x04,0x1f,0x04,0x25,0x15,0x16,0x07,0x0c,0x70,0x00,0x20,0x20,0x20,0x7e,0x42,0x82,0x42,0x32,0x12,0x12,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 37348 釤 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x3f,0x04,0x24,0x15,0x16,0x05,0x0e,0x71,0x00,0x00,0x02,0x04,0x18,0x60,0x02,0x04,0x88,0x10,0x61,0x02,0x04,0x08,0x30,0xc0,0x00 -+// 37349 釥 ; -+,0x04,0x04,0x0a,0x09,0x10,0x1f,0x24,0x5f,0x04,0x25,0x16,0x14,0x05,0x0e,0x30,0x00,0x08,0x08,0x08,0x08,0x88,0x08,0x2c,0x2a,0x4a,0x49,0x89,0x09,0x08,0x08,0x28,0x10 -+// 37350 釦 ; -+,0x04,0x04,0x0a,0x09,0x10,0x1f,0x24,0x04,0x1f,0x04,0x25,0x16,0x14,0x07,0x38,0x00,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 37351 釧 ; -+,0x04,0x04,0x0a,0x09,0x1f,0x24,0x44,0x3f,0x04,0x25,0x16,0x14,0x06,0x39,0x02,0x00,0x01,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x89,0x89,0x09,0x01,0x00 -+// 37352 釨 ; -+,0x04,0x04,0x0a,0x09,0x10,0x1f,0x24,0x5f,0x04,0x04,0x25,0x16,0x15,0x06,0x38,0x00,0x00,0x7f,0x02,0x04,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 37353 釩 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x09,0x0d,0x72,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0xc8,0xa8,0xa8,0x88,0x88,0x88,0x09,0x09,0x07,0x00 -+// 37354 釪 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x04,0x3f,0x04,0x24,0x15,0x16,0x05,0x0e,0x30,0x00,0x00,0x7e,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 37355 釫 ; -+,0x04,0x04,0x0a,0x09,0x11,0x1e,0x24,0x5f,0x04,0x24,0x15,0x16,0x04,0x07,0x38,0x00,0x00,0x7e,0x00,0x00,0x00,0xff,0x20,0x20,0x3e,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 37356 釬 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x04,0x3f,0x04,0x24,0x15,0x16,0x05,0x06,0x38,0x00,0x00,0x00,0x3e,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 37357 釭 ; -+,0x04,0x04,0x0a,0x09,0x10,0x1f,0x24,0x5f,0x04,0x24,0x15,0x16,0x05,0x06,0x39,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 37358 釮 ; -+,0x04,0x04,0x0a,0x09,0x10,0x1f,0x24,0x5f,0x04,0x24,0x15,0x16,0x05,0x0e,0x30,0x00,0x04,0x04,0x04,0x04,0xbf,0x0c,0x0c,0x14,0x14,0x24,0x44,0x04,0x84,0x04,0x14,0x08 -+// 37359 釯 ; -+,0x04,0x04,0x0a,0x09,0x10,0x1f,0x24,0x5f,0x04,0x24,0x15,0x16,0x05,0x0e,0x30,0x00,0x20,0x10,0x08,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x7f,0x00 -+// 37360 釰 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0a,0x0c,0x33,0x00,0x00,0x7e,0x12,0x12,0x12,0x52,0x52,0x52,0xa2,0x22,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 37361 釱 ; -+,0x08,0x08,0x0c,0x13,0x11,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x0c,0x31,0x00,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 37362 釲 ; -+,0x08,0x08,0x1c,0x13,0x21,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0a,0x0c,0x30,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 37363 釳 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3f,0x08,0x2a,0x1a,0x0c,0x0a,0x1c,0x60,0x00,0x20,0x20,0x20,0x7f,0x40,0x80,0x7e,0x04,0x08,0x10,0x20,0x20,0x41,0x41,0x3f,0x00 -+// 37364 釴 ; -+,0x04,0x04,0x0a,0x09,0x10,0x1e,0x24,0x04,0x3f,0x04,0x25,0x16,0x05,0x0e,0x30,0x00,0x10,0x10,0x14,0x12,0x10,0x7f,0x10,0x10,0x10,0x08,0x08,0x09,0x05,0x05,0x03,0x01 -+// 37365 釵 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0a,0x1c,0x61,0x00,0x00,0x00,0xff,0x41,0x62,0x52,0x54,0x24,0x28,0x28,0x10,0x10,0x28,0x44,0x83,0x00 -+// 37366 釶 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x08,0x3f,0x08,0x2a,0x1c,0x0a,0x1c,0x60,0x00,0x10,0x10,0x50,0x52,0x5e,0x72,0xd2,0x52,0x52,0x52,0x56,0x50,0x41,0x41,0x3f,0x00 -+// 37367 釷 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x04,0x3f,0x04,0x15,0x0e,0x05,0x0e,0x31,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 37368 釸 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x1c,0x63,0x00,0x10,0x10,0x10,0x1f,0x21,0x21,0x62,0x12,0x14,0x04,0x08,0x10,0x20,0xc0,0x00,0x00 -+// 37369 釹 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0a,0x1c,0x63,0x00,0x10,0x10,0x10,0x20,0x20,0xff,0x44,0x44,0x88,0x68,0x10,0x18,0x24,0xc6,0x02,0x00 -+// 37370 釺 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x44,0x3f,0x04,0x25,0x15,0x16,0x04,0x07,0x38,0x00,0x0e,0x70,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 37371 釻 ; -+,0x08,0x08,0x0c,0x13,0x10,0x3f,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0a,0x1c,0x61,0x00,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x64,0x24,0x34,0x54,0x45,0x45,0x85,0x03,0x00 -+// 37372 釼 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x0c,0x71,0x02,0x00,0x00,0xfe,0x22,0x22,0x22,0xa2,0x62,0x22,0x22,0x52,0x4a,0x84,0x87,0x14,0x08 -+// 37373 釽 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0b,0x0d,0x32,0x00,0x00,0x1c,0xe8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa4,0xa4,0xa4,0x22,0x23,0x22,0x20 -+// 37374 釾 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x1d,0x62,0x00,0x00,0xfe,0x08,0x48,0x48,0x88,0xff,0x18,0x28,0x28,0x48,0x48,0x88,0x08,0x28,0x10 -+// 37375 釿 ; -+,0x08,0x08,0x0c,0x12,0x12,0x3f,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0a,0x1c,0x61,0x00,0x0e,0x70,0x40,0x40,0x40,0x7f,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 37376 鈀 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0a,0x1c,0x60,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x81,0x81,0x81,0x7f,0x00 -+// 37377 鈁 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x2a,0x1c,0x08,0x0e,0x71,0x02,0x00,0x20,0x10,0x10,0x7f,0x20,0x20,0x3e,0x22,0x22,0x22,0x42,0x42,0x82,0x0a,0x04,0x00 -+// 37378 鈂 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3f,0x08,0x4a,0x2a,0x0c,0x0e,0x79,0x06,0x00,0x10,0x10,0x10,0x10,0xff,0x92,0x10,0x18,0x28,0x28,0x48,0x49,0x89,0x09,0x07,0x00 -+// 37379 鈃 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x1c,0x61,0x00,0x00,0xff,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x44,0x84,0x04,0x04 -+// 37380 鈄 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x1c,0x60,0x00,0x04,0x04,0x44,0x24,0x24,0x04,0x44,0x24,0x27,0xfc,0x04,0x04,0x04,0x04,0x04,0x04 -+// 37381 鈅 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x1d,0x62,0x00,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x82,0x82,0x02,0x0a,0x04 -+// 37382 鈆 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0a,0x0c,0x31,0x00,0x00,0x08,0x28,0x28,0x44,0x44,0x83,0x12,0x10,0x20,0x20,0x40,0x40,0x84,0xfe,0x02 -+// 37383 鈇 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x08,0x3e,0x08,0x4a,0x2c,0x2a,0x0c,0x70,0x00,0x01,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02 -+// 37384 鈈 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0a,0x1c,0x60,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x38,0x34,0x53,0x91,0x10,0x10,0x10,0x10,0x10,0x10 -+// 37385 鈉 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0a,0x0c,0x30,0x00,0x10,0x10,0x10,0xff,0x91,0x91,0x91,0x91,0xa9,0xa7,0xc3,0x81,0x81,0x81,0x85,0x82 -+// 37386 鈊 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x1a,0x0c,0x30,0x00,0x00,0x10,0x08,0x04,0x04,0x20,0x20,0x22,0xa1,0xa1,0x20,0x22,0x22,0x22,0x1e,0x00 -+// 37387 鈋 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x09,0x3e,0x08,0x2a,0x1c,0x0a,0x1c,0x60,0x00,0x08,0x28,0x28,0x48,0x4a,0x4a,0xcc,0x48,0x58,0x48,0x48,0x49,0x49,0x49,0x47,0x00 -+// 37388 鈌 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0a,0x0c,0x73,0x00,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0xff,0x20,0x20,0x50,0x48,0x84,0x03,0x00 -+// 37389 鈍 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0a,0x1c,0x60,0x00,0x10,0x10,0x10,0xff,0x10,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 37390 鈎 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0e,0x70,0x00,0x00,0x20,0x20,0x20,0x7e,0x42,0x82,0x22,0x22,0x42,0x52,0xfa,0x0a,0x02,0x0a,0x04,0x00 -+// 37391 鈏 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x00,0x72,0x12,0x12,0x12,0x72,0x42,0x42,0x72,0x12,0x12,0x12,0x12,0x52,0x22,0x00 -+// 37392 鈐 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x49,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0x20,0x20,0x30,0x50,0x48,0x84,0x23,0x10,0x10,0xfe,0x04,0x08,0x08,0x10,0x10,0x00 -+// 37393 鈑 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x02,0x00,0x00,0x07,0x78,0x40,0x40,0x7f,0x42,0x62,0x54,0x54,0x48,0x88,0x94,0x23,0xc2,0x00 -+// 37394 鈒 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x08,0x3e,0x08,0x4a,0x2c,0x29,0x0d,0x72,0x04,0x00,0x00,0xfe,0x42,0x44,0x44,0x48,0x5e,0x42,0xa2,0xa4,0x94,0x08,0x18,0x24,0xc3,0x00 -+// 37395 鈓 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x08,0x0f,0x78,0x00,0x00,0x0e,0x70,0x10,0x10,0x10,0x10,0x7f,0x10,0x10,0x10,0x10,0x10,0x10,0x7e,0x00 -+// 37396 鈔 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x08,0x0e,0x71,0x00,0x08,0x08,0x08,0x08,0x2a,0x29,0x49,0x49,0x88,0x09,0x02,0x04,0x08,0x30,0xc0,0x00 -+// 37397 鈕 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x71,0x00,0x00,0xfe,0x12,0x12,0x12,0x12,0x12,0xfe,0x22,0x22,0x22,0x22,0x22,0x22,0xff,0x00 -+// 37398 鈖 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x49,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x33,0x00,0x08,0x28,0x28,0x44,0x44,0x82,0x01,0xfc,0x24,0x24,0x24,0x44,0x44,0x84,0x14,0x08 -+// 37399 鈗 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x39,0x00,0x10,0x10,0x20,0x24,0x42,0xff,0x02,0x28,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 37400 鈘 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x08,0x0e,0x39,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x42,0x44,0x24,0x28,0x10,0x28,0x47,0x82,0x00 -+// 37401 鈙 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x08,0x3f,0x08,0x2a,0x1a,0x0c,0x0e,0x73,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x7e,0x02,0x44,0x24,0x28,0x10,0x28,0xc4,0x07,0x02 -+// 37402 鈚 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x08,0x0e,0x70,0x00,0x88,0x88,0x88,0x88,0x88,0x8b,0xec,0x88,0x88,0x88,0x88,0x89,0xa9,0xc9,0x87,0x00 -+// 37403 鈛 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x73,0x00,0x20,0x28,0x24,0x24,0x20,0xff,0x20,0x24,0x24,0x28,0x18,0x10,0x29,0xc5,0x03,0x01 -+// 37404 鈜 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0a,0x1c,0x60,0x00,0x10,0x10,0x10,0x10,0xff,0x20,0x20,0x28,0x48,0x50,0x90,0x20,0x24,0x42,0xff,0x01 -+// 37405 鈝 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x08,0x0e,0x70,0x00,0x08,0x08,0x48,0x48,0x7f,0x48,0x88,0x08,0xff,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 37406 鈞 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x49,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x38,0x00,0x20,0x20,0x20,0x40,0x7e,0x82,0x42,0x32,0x12,0x0a,0x12,0x22,0xc2,0x02,0x0a,0x04 -+// 37407 鈟 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x08,0x0e,0x70,0x00,0x00,0xfe,0x12,0x12,0x12,0xfe,0x90,0x90,0xff,0x11,0x11,0x15,0x12,0x10,0x10,0x10 -+// 37408 鈠 ; -+,0x08,0x0c,0x0a,0x11,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x78,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x83,0x7c,0x44,0x28,0x28,0x10,0x18,0x24,0x47,0x82 -+// 37409 鈡 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 37410 鈢 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3f,0x08,0x2a,0x1d,0x08,0x0e,0x38,0x00,0x10,0x10,0x10,0x10,0x7f,0x10,0x38,0x38,0x54,0x54,0x92,0x13,0x12,0x10,0x10,0x10 -+// 37411 鈣 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x08,0x0e,0x70,0x00,0x00,0xff,0x10,0x10,0x10,0x9e,0x90,0x90,0xff,0x01,0x01,0x01,0x01,0x01,0x0a,0x04 -+// 37412 鈤 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 37413 鈥 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0e,0x70,0x01,0x00,0x10,0x10,0x10,0x10,0x52,0x54,0x58,0x10,0x28,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 37414 鈦 ; -+,0x04,0x04,0x0a,0x09,0x11,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0e,0x79,0x06,0x00,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x50,0x50,0x48,0xa4,0x23,0x02,0x00 -+// 37415 鈧 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x08,0x0e,0x71,0x00,0x20,0x10,0x10,0xff,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 37416 鈨 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0e,0x70,0x01,0x00,0x00,0xfc,0x00,0x00,0x00,0xfe,0x48,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 37417 鈩 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x2a,0x1a,0x0c,0x0e,0x79,0x01,0x02,0x20,0x10,0x00,0x7f,0x41,0x41,0x7f,0x40,0x40,0x40,0x80,0x80,0x80,0x00,0x00,0x00 -+// 37418 鈪 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0e,0x79,0x02,0x00,0x00,0x7f,0x40,0x40,0x5e,0x52,0x52,0x52,0x52,0x5a,0x94,0x91,0x91,0x11,0x0f,0x00 -+// 37419 鈫 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x08,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x79,0x06,0x00,0x20,0x10,0x10,0xff,0x44,0x44,0x44,0x28,0x28,0x10,0x10,0x28,0x44,0x87,0x02,0x00 -+// 37420 鈬 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0f,0x79,0x02,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x50,0x50,0x50,0x48,0x88,0x88,0x04,0x07,0x02,0x00 -+// 37421 鈭 ; -+,0x04,0x04,0x07,0x14,0x14,0x17,0x3c,0x01,0x06,0x3b,0x00,0x03,0x04,0x02,0x3f,0x00,0x40,0x40,0x4e,0x70,0x42,0x42,0xbe,0x40,0x30,0xee,0x80,0xe0,0x90,0xa0,0xfe,0x00 -+// 37422 鈮 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0f,0x79,0x02,0x00,0x00,0xff,0x81,0x81,0xff,0x80,0xa0,0xa0,0xa6,0xb8,0xa0,0xa0,0x21,0x21,0x1f,0x00 -+// 37423 鈯 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x08,0x08,0x08,0x49,0x49,0x49,0x49,0x7f,0x08,0x89,0x89,0x89,0x89,0xff,0x81,0x00 -+// 37424 鈰 ; -+,0x08,0x08,0x0d,0x12,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x20,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x92,0x96,0x10,0x10,0x10 -+// 37425 鈱 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2a,0x1c,0x0e,0x38,0x00,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0xff,0x90,0x88,0x88,0x88,0x85,0xa5,0xc3,0x81 -+// 37426 鈲 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0f,0x71,0x02,0x00,0x00,0x1e,0xe8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa4,0xa4,0xa4,0x2a,0x3b,0x2a,0x00 -+// 37427 鈳 ; -+,0x04,0x05,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x00,0x00,0xff,0x04,0x04,0x04,0xf4,0x94,0x94,0x94,0xf4,0x04,0x04,0x04,0x04,0x14,0x08 -+// 37428 鈴 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x49,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x00,0x20,0x20,0x20,0x50,0x48,0xa7,0x12,0x10,0xfe,0x04,0x08,0x48,0x30,0x10,0x18,0x08 -+// 37429 鈵 ; -+,0x08,0x09,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x08,0x0e,0x70,0x00,0x00,0xff,0x10,0x10,0xff,0x91,0x91,0x91,0x99,0xa5,0xa3,0xc1,0x81,0x81,0x85,0x82 -+// 37430 鈶 ; -+,0x08,0x0c,0x0a,0x11,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x10,0x10,0x10,0x24,0x22,0x4f,0xf1,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 37431 鈷 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37432 鈸 ; -+,0x08,0x0c,0x0a,0x11,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0e,0x79,0x02,0x00,0x20,0x28,0x24,0x20,0xff,0x20,0x3e,0x42,0x64,0x54,0x58,0x88,0x94,0x27,0xc2,0x00 -+// 37433 鈹 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0f,0x79,0x02,0x00,0x10,0x10,0xff,0x92,0x94,0x90,0x90,0xfe,0xc2,0xa4,0x98,0x88,0x14,0x27,0xc2,0x00 -+// 37434 鈺 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x08,0x0e,0x71,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x7e,0x10,0x14,0x12,0x12,0x10,0x10,0xff,0x00 -+// 37435 鈻 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3f,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x7f,0x41,0x41,0x41,0x41,0x7f,0x41 -+// 37436 鈼 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x20,0x20,0x20,0x7f,0x60,0xa0,0x3e,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20,0x20 -+// 37437 鈽 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x09,0x08,0x2a,0x1c,0x0e,0x70,0x00,0x00,0x10,0x10,0x20,0xff,0x20,0x50,0x7e,0xd2,0x52,0x52,0x52,0x52,0x56,0x10,0x10,0x10 -+// 37438 鈾 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x08,0x0e,0x70,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 37439 鈿 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x00,0x00,0xff,0x91,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0x91,0x91,0xff,0x81,0x00 -+// 37440 鉀 ; -+,0x08,0x0c,0x0a,0x11,0x10,0x3f,0x48,0x08,0x3f,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x7f,0x08,0x08,0x08,0x08,0x08,0x08 -+// 37441 鉁 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3d,0x48,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x03,0x00,0x10,0x10,0x10,0x28,0x44,0x93,0x20,0xc0,0x08,0x30,0xc2,0x04,0x18,0x60,0x80,0x00 -+// 37442 鉂 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0e,0x70,0x07,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x10,0x90,0x50,0x20,0x30,0xc8,0x07,0x02 -+// 37443 鉃 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x01,0x20,0x20,0x20,0x7e,0x50,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02 -+// 37444 鉄 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x08,0x3e,0x08,0x2a,0x1c,0x08,0x0e,0x71,0x00,0x10,0x10,0x50,0x50,0x7e,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x84,0x03,0x02 -+// 37445 鉅 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2a,0x1c,0x0e,0x70,0x00,0x00,0xff,0x80,0x80,0x80,0xfe,0x82,0x82,0x82,0xfe,0x80,0x80,0x80,0x80,0xff,0x80 -+// 37446 鉆 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3f,0x08,0x2a,0x1c,0x08,0x0f,0x78,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37447 鉇 ; -+,0x08,0x08,0x14,0x12,0x21,0x5e,0x08,0x08,0x3e,0x09,0x0a,0x2c,0x18,0x0e,0x78,0x00,0x40,0x40,0xff,0x80,0x10,0x12,0x97,0xba,0xd2,0x92,0x92,0x96,0x91,0x81,0x7f,0x00 -+// 37448 鉈 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3f,0x48,0x08,0x3f,0x08,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x10,0x08,0xff,0x82,0x00,0x40,0x40,0x4e,0x70,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 37449 鉉 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x2a,0x0c,0x70,0x00,0x00,0x20,0x18,0x08,0xff,0x10,0x20,0x24,0x44,0xf8,0x08,0x10,0x24,0x42,0xff,0x01,0x00 -+// 37450 鉊 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x00,0xfe,0x22,0x22,0x42,0x42,0x8a,0x04,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 37451 鉋 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x78,0x00,0x20,0x20,0x40,0x7e,0x82,0x7a,0x4a,0x4a,0x7a,0x42,0x4a,0x44,0x41,0x41,0x3f,0x00 -+// 37452 鉌 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x00,0x0c,0x70,0x10,0x10,0x10,0xff,0x10,0x38,0x38,0x54,0x54,0x93,0x12,0x10,0x10,0x10 -+// 37453 鉍 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x79,0x06,0x00,0x00,0x20,0x14,0x04,0x24,0x24,0x24,0xaa,0xa9,0xa9,0x30,0x22,0x62,0xa2,0x1e,0x00 -+// 37454 鉎 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x71,0x00,0x10,0x10,0x50,0x50,0x7e,0x50,0x90,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0xff,0x00 -+// 37455 鉏 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x7b,0x00,0x00,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0x84,0xff,0x00 -+// 37456 鉐 ; -+,0x04,0x05,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3e,0x09,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x20,0x20,0x7e,0xc2,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37457 鉑 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x10,0x10,0x20,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 37458 鉒 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3f,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0f,0x78,0x01,0x00,0x20,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 37459 鉓 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x20,0x20,0x7f,0x50,0x90,0x10,0x7e,0x52,0x52,0x52,0x52,0x52,0x56,0x10,0x10,0x10 -+// 37460 鉔 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x78,0x00,0x00,0x00,0xff,0x88,0x88,0x88,0xbf,0xa9,0xa9,0xa9,0xa9,0xab,0x88,0x88,0x88,0xff,0x00 -+// 37461 鉕 ; -+,0x08,0x08,0x08,0x14,0x12,0x3e,0x48,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x70,0x00,0x00,0xff,0x80,0x80,0x80,0xbe,0xa2,0xa2,0xa2,0xa2,0xbe,0x80,0x80,0x80,0xff,0x80 -+// 37462 鉖 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x38,0x00,0x20,0x20,0x3e,0x42,0x64,0x98,0x18,0x24,0xc3,0x10,0x08,0x08,0x20,0x10,0x08,0x08 -+// 37463 鉗 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 37464 鉘 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x71,0x00,0x28,0x28,0xfe,0x2a,0x2a,0xfe,0xa8,0xa8,0xff,0x29,0x29,0x4d,0x4a,0x88,0x08,0x08 -+// 37465 鉙 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x01,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x00,0x00,0x24,0x22,0x43,0x81,0x01,0x00 -+// 37466 鉚 ; -+,0x08,0x09,0x0d,0x13,0x11,0x3d,0x49,0x09,0x3d,0x09,0x08,0x2a,0x1c,0x0e,0x71,0x00,0x20,0xcf,0x09,0x29,0x29,0x29,0x29,0x69,0xa9,0x2d,0x2a,0x48,0x48,0x88,0x08,0x08 -+// 37467 鉛 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x43,0x80,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37468 鉜 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3f,0x08,0x0a,0x2a,0x1c,0x0f,0x70,0x00,0x24,0x24,0x44,0x44,0xff,0x44,0x64,0x54,0x54,0x44,0x44,0x44,0x44,0x44,0x54,0x48 -+// 37469 鉝 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0a,0x1c,0x61,0x00,0x00,0x20,0x10,0x10,0xff,0x04,0x44,0x44,0x44,0x24,0x28,0x28,0x08,0x10,0xff,0x00 -+// 37470 鉞 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x10,0x14,0x12,0x12,0xff,0x90,0x92,0x92,0x94,0x8c,0xa8,0xc9,0x95,0x23,0xc1,0x00 -+// 37471 鉟 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x08,0x0e,0x71,0x00,0x00,0xff,0x08,0x08,0x10,0x10,0x38,0x34,0x52,0x93,0x11,0x10,0x10,0x10,0xff,0x00 -+// 37472 鉠 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x09,0x0a,0x4a,0x2c,0x28,0x0e,0x78,0x03,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02 -+// 37473 鉡 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x4a,0x2a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x92,0x52,0x54,0x18,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 37474 鉢 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x08,0x3f,0x08,0x0a,0x2b,0x1c,0x08,0x0e,0x70,0x00,0x10,0x10,0x10,0x10,0xfe,0x30,0x38,0x58,0x54,0x94,0x7b,0x12,0x10,0x10,0x10,0x10 -+// 37475 鉣 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3c,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x71,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x10,0x10,0x20,0x24,0x42,0x8f,0xf1,0x00 -+// 37476 鉤 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3f,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x20,0x20,0x40,0x7e,0x82,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04,0x00 -+// 37477 鉥 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0f,0x72,0x00,0x00,0x20,0x28,0x24,0x20,0xfe,0x20,0x20,0x70,0x68,0x68,0xa4,0xa4,0x23,0x22,0x20,0x20 -+// 37478 鉦 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0e,0x70,0x01,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x50,0x5f,0x50,0x50,0x50,0x50,0x50,0x50,0xff,0x00 -+// 37479 鉧 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x49,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x70,0x00,0x00,0x00,0xfc,0x84,0x84,0xa4,0x94,0xff,0x84,0xa4,0x94,0x94,0xff,0x04,0x04,0x14,0x08 -+// 37480 鉨 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0x20,0x20,0x20,0x7f,0x42,0x94,0x10,0x10,0x54,0x52,0x53,0x91,0x10,0x10,0x50,0x20 -+// 37481 鉩 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x49,0x3e,0x08,0x4a,0x2c,0x2a,0x0d,0x72,0x00,0x00,0x10,0x10,0x30,0x28,0x44,0x93,0x10,0x10,0x54,0x52,0x93,0x91,0x11,0x10,0x50,0x20 -+// 37482 鉪 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x00,0x14,0x54,0x54,0x54,0xff,0x54,0x54,0x54,0x54,0x5c,0x40,0x40,0x40,0x7f,0x00 -+// 37483 鉫 ; -+,0x10,0x10,0x18,0x24,0x21,0x5c,0x10,0x7c,0x10,0x10,0x54,0x39,0x1d,0x62,0x04,0x00,0x00,0x80,0x80,0x8f,0xe9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x29,0x2f,0xa9,0x40,0x00 -+// 37484 鉬 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x08,0x2a,0x1c,0x0f,0x38,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 37485 鉭 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0f,0x78,0x01,0x00,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0x00,0xff,0x00 -+// 37486 鉮 ; -+,0x08,0x0c,0x0a,0x10,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0x10,0x10,0x10,0x10 -+// 37487 鉯 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0e,0x70,0x00,0x00,0x04,0x04,0xa4,0x94,0x94,0x84,0x84,0x84,0x84,0x94,0xa4,0xca,0x89,0x11,0x21,0x00 -+// 37488 鉰 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x70,0x00,0x00,0xfe,0x02,0x02,0x7a,0x02,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x02,0x0a,0x04 -+// 37489 鉱 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x2a,0x0d,0x71,0x02,0x00,0x20,0x18,0x08,0xff,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0xa2,0x21,0x7f,0x01,0x00 -+// 37490 鉲 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x49,0x3e,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x20,0x20,0x20,0x3e,0x20,0x20,0xff,0x20,0x30,0x28,0x24,0x26,0x22,0x20,0x20,0x20 -+// 37491 鉳 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0f,0x70,0x00,0x00,0x28,0x28,0x28,0x28,0x2b,0xec,0x28,0x28,0x28,0x28,0x68,0xa9,0x29,0x27,0x00,0x00 -+// 37492 鉴 ; -+,0x04,0x24,0x24,0x24,0x25,0x24,0x01,0x02,0x0c,0x37,0x00,0x0f,0x04,0x02,0x7f,0x00,0x40,0x40,0xff,0x90,0x08,0x08,0x80,0x40,0x30,0xee,0x80,0xf8,0x90,0xa0,0xff,0x00 -+// 37493 鉵 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3f,0x48,0x08,0x3f,0x08,0x29,0x1a,0x0b,0x1c,0x60,0x00,0x10,0x10,0x10,0x10,0x7e,0x52,0x52,0x52,0x52,0x7e,0x10,0x10,0x10,0x12,0xff,0x01 -+// 37494 鉶 ; -+,0x10,0x10,0x1b,0x25,0x41,0x3d,0x13,0x11,0x7d,0x11,0x55,0x39,0x1e,0x62,0x04,0x00,0x00,0x01,0xf1,0x25,0x25,0x25,0xf5,0x25,0x25,0x25,0x25,0x25,0x21,0x21,0x25,0x22 -+// 37495 鉷 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x0c,0x08,0x0e,0x71,0x02,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0xff,0x00,0x48,0x44,0x84,0x82,0x03,0x02 -+// 37496 鉸 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3f,0x08,0x0a,0x2a,0x1c,0x0f,0x78,0x03,0x00,0x20,0x10,0x10,0xff,0x48,0x44,0x82,0x45,0x44,0x28,0x28,0x10,0x28,0xc4,0x07,0x02 -+// 37497 鉹 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x03,0x20,0x20,0x7e,0x44,0xa8,0x10,0x20,0xd0,0x3f,0x41,0xa2,0x14,0x08,0x10,0x60,0x80 -+// 37498 鉺 ; -+,0x08,0x09,0x0c,0x12,0x11,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2d,0x0e,0x78,0x00,0x00,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0x47,0xfc,0x04,0x04,0x04,0x04 -+// 37499 鉻 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x3e,0x09,0x0a,0x2a,0x1c,0x08,0x0e,0x38,0x00,0x40,0x40,0xfe,0x84,0x48,0x28,0x10,0x6c,0x83,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44 -+// 37500 鉼 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x09,0x4a,0x2a,0x2c,0x0e,0x70,0x01,0x00,0x00,0x84,0x44,0x28,0xfe,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 37501 鉽 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x49,0x08,0x3e,0x08,0x4a,0x2a,0x2d,0x0e,0x78,0x00,0x08,0x0c,0x0a,0xff,0x08,0x08,0xe8,0x48,0x48,0x44,0x44,0x65,0x85,0x03,0x03,0x01 -+// 37502 鉾 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0f,0x78,0x00,0x00,0x08,0x08,0x10,0x22,0x7f,0x09,0x48,0x7f,0x88,0x08,0xff,0x08,0x08,0x08,0x08,0x08 -+// 37503 鉿 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x49,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x10,0x28,0x44,0x83,0x7c,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37504 銀 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0xa0,0xa2,0x94,0x90,0x88,0xac,0xc7,0x82,0x00 -+// 37505 銁 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3f,0x08,0x4a,0x2a,0x2c,0x0f,0x78,0x00,0x40,0x40,0x7e,0x82,0x82,0x7a,0x4a,0x4a,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04 -+// 37506 銂 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2c,0x08,0x0e,0x79,0x00,0x49,0x49,0x49,0x49,0x49,0x49,0xed,0x5b,0x49,0x49,0x49,0x89,0x89,0x89,0x09,0x09 -+// 37507 銃 ; -+,0x08,0x08,0x15,0x12,0x20,0x5e,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x38,0x03,0x00,0x20,0x10,0xff,0x10,0x20,0x44,0xfe,0x4a,0x48,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 37508 銄 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x10,0x10,0x20,0xff,0x81,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0xa5,0x81,0x81,0x85,0x82 -+// 37509 銅 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x78,0x00,0x00,0xff,0x81,0x81,0xbd,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82 -+// 37510 銆 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x08,0x3f,0x08,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x00,0xff,0x10,0x10,0x20,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37511 銇 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x79,0x00,0x00,0x10,0x10,0xfe,0x10,0x10,0xfe,0x10,0xff,0x10,0x30,0x58,0x54,0x97,0x12,0x10,0x10 -+// 37512 銈 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x71,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 37513 銉 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0f,0x78,0x00,0x00,0x10,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 37514 銊 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0f,0x71,0x02,0x00,0x08,0x0c,0x0a,0x08,0xff,0x88,0x88,0x89,0xe9,0x8a,0x8c,0x89,0x15,0x25,0xc3,0x01 -+// 37515 銋 ; -+,0x08,0x08,0x14,0x12,0x21,0x20,0x5e,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x20,0x5f,0x88,0x88,0x88,0x88,0xbf,0x88,0x88,0x88,0x88,0x88,0x88,0xbf,0x80 -+// 37516 銌 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0xff,0x20,0x20,0x5f,0xc2,0x44,0x44,0x7f,0x44,0x44,0x44,0x44,0x54,0x48 -+// 37517 銍 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x00,0xff,0x10,0x20,0x44,0xfe,0x12,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 37518 銎 ; -+,0x00,0x3e,0x08,0x08,0x0e,0x71,0x06,0x01,0x06,0x3b,0x00,0x03,0x04,0x02,0x3f,0x00,0xf8,0x88,0xc8,0xa8,0xa9,0x09,0x87,0x60,0x18,0xf7,0x80,0xf0,0x90,0xa0,0xfe,0x00 -+// 37519 銏 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x09,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x78,0x01,0x00,0xee,0xaa,0xaa,0xaa,0xaa,0xff,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0xaa,0x76 -+// 37520 銐 ; -+,0x00,0x7f,0x04,0x0f,0x19,0x2a,0x0c,0x31,0x06,0x3b,0x00,0x07,0x04,0x02,0x7f,0x00,0x00,0xc2,0x02,0x92,0x12,0x12,0x82,0x46,0x30,0xef,0x80,0xf0,0x90,0xa0,0xff,0x00 -+// 37521 銑 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x78,0x01,0x00,0x10,0x10,0x50,0x7e,0x90,0x10,0x10,0xff,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 37522 銒 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0e,0x78,0x01,0x00,0x00,0xef,0x42,0x42,0x42,0x42,0xef,0x42,0x42,0x42,0x42,0x42,0x82,0x82,0x02,0x00 -+// 37523 銓 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x49,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x71,0x00,0x10,0x10,0x30,0x28,0x44,0x83,0x7c,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 37524 銔 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0f,0x78,0x00,0x00,0xfe,0x10,0x10,0x38,0x34,0x53,0x91,0x10,0x00,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 37525 銕 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x00,0x03,0x10,0x10,0xff,0x10,0xfe,0x12,0xfe,0x90,0xff,0x11,0x15,0x2a,0x28,0x44,0x87,0x02 -+// 37526 銖 ; -+,0x08,0x08,0x08,0x14,0x12,0x3d,0x48,0x3d,0x08,0x4a,0x2c,0x28,0x0e,0x73,0x00,0x00,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x30,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 37527 銗 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0f,0x71,0x02,0x00,0x00,0x0f,0xf0,0x80,0x80,0xff,0x80,0x80,0xbe,0xa2,0xa2,0xa2,0x22,0x3e,0x22,0x00 -+// 37528 銘 ; -+,0x08,0x08,0x14,0x12,0x20,0x3f,0x48,0x08,0x3e,0x09,0x08,0x2a,0x1c,0x0f,0x78,0x00,0x20,0x20,0x3e,0x42,0xc4,0x28,0x10,0x20,0x7e,0xc2,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 37529 銙 ; -+,0x08,0x08,0x15,0x12,0x20,0x3d,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x18,0x60,0x00,0x20,0x20,0xfe,0x50,0x48,0x87,0x7c,0x00,0xff,0x20,0x3c,0x04,0x04,0x04,0x14,0x08 -+// 37530 銚 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x01,0x00,0x28,0x28,0x28,0x28,0x2a,0xac,0x68,0x28,0x6c,0xab,0x28,0x48,0x49,0x89,0x07,0x00 -+// 37531 銛 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x49,0x3e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0x1e,0xf0,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 37532 銜 ; -+,0x10,0x10,0x21,0x42,0x08,0x17,0x10,0x37,0x50,0x14,0x12,0x12,0x10,0x17,0x10,0x10,0x80,0x8f,0x40,0x20,0x00,0xdf,0x84,0xe4,0x84,0xa4,0xc4,0x84,0xe4,0x04,0x14,0x08 -+// 37533 銝 ; -+,0x08,0x08,0x18,0x15,0x21,0x3d,0x51,0x3d,0x11,0x55,0x35,0x39,0x11,0x1d,0x61,0x01,0x90,0x90,0x90,0x10,0x7f,0x10,0x18,0x38,0x34,0x54,0x53,0x92,0x10,0x10,0x10,0x10 -+// 37534 銞 ; -+,0x08,0x0f,0x10,0x1f,0x2a,0x49,0x0f,0x01,0x06,0x3b,0x00,0x0f,0x04,0x02,0x7f,0x00,0x00,0xfe,0x02,0xe2,0x22,0x22,0xe2,0xc6,0x30,0xee,0x80,0xf8,0x90,0xa0,0xff,0x00 -+// 37535 銟 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x92,0x92,0xfe,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x96,0x10,0x10 -+// 37536 銠 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x49,0x08,0x3e,0x08,0x4a,0x2d,0x28,0x0e,0x78,0x00,0x20,0x20,0x22,0xfa,0x24,0x28,0xff,0x10,0x20,0x40,0xcc,0x70,0x41,0x41,0x3f,0x00 -+// 37537 銡 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0f,0x70,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37538 銢 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0d,0x70,0x00,0x00,0x7e,0x00,0x00,0x00,0xff,0x10,0x10,0xd2,0x5c,0x54,0x94,0x93,0x12,0x50,0x20 -+// 37539 銣 ; -+,0x08,0x08,0x14,0x14,0x23,0x7c,0x11,0x7d,0x12,0x11,0x54,0x38,0x1d,0x72,0x04,0x00,0x80,0x80,0x80,0x80,0xef,0xa9,0x29,0x29,0x49,0x49,0x89,0xc9,0x29,0x2f,0x09,0x00 -+// 37540 銤 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x71,0x00,0x00,0x10,0x10,0x92,0x52,0x54,0x18,0xff,0x10,0x38,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 37541 銥 ; -+,0x08,0x08,0x14,0x11,0x20,0x3e,0x48,0x3e,0x09,0x48,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x20,0x10,0x10,0xff,0x20,0x30,0x50,0xd2,0x4c,0x48,0x48,0x44,0x44,0x53,0x62,0x40 -+// 37542 銦 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xaa,0xa6,0xc2,0x82,0x82,0xfe,0x82 -+// 37543 銧 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x01,0x00,0x10,0x10,0x12,0x92,0x54,0x58,0xff,0x28,0x28,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 37544 銨 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x78,0x03,0x00,0x20,0x10,0xff,0x82,0x20,0x20,0x20,0xff,0x44,0x44,0xc8,0x28,0x10,0x68,0x86,0x02 -+// 37545 銩 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x09,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x00,0x1e,0xf0,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x20,0x20,0x42,0x81,0xff,0x01 -+// 37546 銪 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3f,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x78,0x00,0x10,0x10,0xff,0x20,0x20,0x7e,0xc2,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 37547 銫 ; -+,0x08,0x08,0x14,0x12,0x20,0x3f,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x20,0x7e,0x44,0x88,0xfe,0x92,0x92,0x92,0xfe,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 37548 銬 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x7d,0x12,0x14,0xff,0x10,0x20,0x7e,0xa0,0x3e,0x02,0x02,0x02,0x0a,0x04 -+// 37549 銭 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x7e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x20,0x28,0x24,0x3e,0xe0,0x3e,0xe0,0x3f,0xe0,0x22,0x24,0x18,0x11,0x69,0x85,0x03 -+// 37550 銮 ; -+,0x00,0x3f,0x02,0x0a,0x12,0x62,0x00,0x01,0x06,0x3b,0x00,0x0f,0x04,0x02,0x7f,0x00,0x80,0xfe,0x20,0x24,0x22,0xa2,0xc0,0x20,0x18,0xf7,0x80,0xf8,0x90,0xa0,0xff,0x00 -+// 37551 銯 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3f,0x48,0x3f,0x08,0x4a,0x2a,0x2c,0x0e,0x79,0x00,0x00,0x10,0x10,0x20,0x24,0x7c,0x08,0x10,0x24,0x7e,0x12,0x10,0x92,0x91,0x51,0x20,0x00 -+// 37552 銰 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3f,0x48,0x3f,0x08,0x4a,0x2a,0x2c,0x0e,0x78,0x07,0x00,0x44,0x44,0xff,0x44,0x44,0x00,0x44,0x44,0x44,0x28,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 37553 銱 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x10,0xfe,0x92,0x92,0x92,0x9a,0x94,0x10,0x10,0x10 -+// 37554 銲 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0f,0x78,0x00,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 37555 銳 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x28,0x24,0x44,0x42,0xff,0x42,0x42,0x42,0x7e,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 37556 銴 ; -+,0x04,0x04,0x3f,0x04,0x07,0x3c,0x04,0x0d,0x02,0x0f,0x70,0x03,0x04,0x02,0x3f,0x00,0x00,0x7e,0x40,0x7e,0x48,0x48,0x88,0x48,0x30,0xec,0x83,0xe0,0x90,0xa0,0xfe,0x00 -+// 37557 銵 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x09,0x4a,0x2a,0x2c,0x0e,0x79,0x00,0x00,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfd,0x85,0xfe,0x04,0x0c,0x14,0x64,0x84,0x14,0x08 -+// 37558 銶 ; -+,0x08,0x08,0x14,0x12,0x21,0x7e,0x08,0x3e,0x08,0x0a,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x20,0x28,0x24,0x20,0xfe,0x20,0x24,0xa8,0x70,0x30,0xa8,0x28,0x26,0x24,0xa0,0x40 -+// 37559 銷 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x92,0x54,0x58,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 37560 銸 ; -+,0x08,0x0b,0x19,0x15,0x21,0x7d,0x11,0x7d,0x11,0x11,0x55,0x39,0x13,0x1c,0x70,0x00,0x00,0xff,0x20,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x24,0x35,0xe5,0x25,0x23,0x20 -+// 37561 銹 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x09,0x08,0x3e,0x08,0x4a,0x2c,0x0e,0x70,0x00,0x01,0x00,0x7e,0x10,0xff,0x38,0x54,0x93,0x7c,0x44,0x48,0x4f,0x41,0x41,0x81,0x85,0x02 -+// 37562 銺 ; -+,0x12,0x12,0x12,0x3e,0x02,0x3e,0x12,0x22,0x43,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x80,0x60,0xd8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37563 銻 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x71,0x02,0x00,0x44,0x28,0xfe,0x12,0x12,0xfe,0x90,0x90,0xff,0x31,0x51,0x55,0x92,0x10,0x10,0x10 -+// 37564 銼 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x10,0x10,0x52,0x52,0x56,0xb9,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 37565 銽 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x07,0xf8,0x88,0x88,0xff,0x88,0xa5,0xc5,0x83,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 37566 銾 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x79,0x02,0x00,0x00,0x7e,0x10,0x10,0xff,0x00,0x10,0x10,0xd2,0x54,0x58,0x94,0x93,0x12,0x50,0x20 -+// 37567 銿 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xff,0x12,0x0c,0xff,0x91,0x91,0xff,0x91,0x91,0xff,0x91,0x91,0x91,0x85,0x82 -+// 37568 鋀 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x42,0x22,0x24,0x00,0xff,0x00 -+// 37569 鋁 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0xff,0x81,0x81,0x81,0x81,0x81,0xff,0x81 -+// 37570 鋂 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x3d,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x40,0x40,0xff,0x00,0xfc,0x84,0xa4,0x94,0xff,0xa4,0x94,0x84,0xff,0x04,0x14,0x08 -+// 37571 鋃 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xfc,0x84,0x84,0xfc,0x84,0xfc,0xa0,0x92,0x94,0x88,0xac,0xc7,0x82,0x00 -+// 37572 鋄 ; -+,0x08,0x08,0x14,0x13,0x20,0x7e,0x08,0x3f,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x03,0x00,0x00,0xff,0x10,0x52,0x54,0x98,0x24,0x43,0xfe,0x44,0x24,0x28,0x10,0x6c,0x83,0x00 -+// 37573 鋅 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x20,0x10,0xff,0x04,0x44,0x28,0x10,0xff,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 37574 鋆 ; -+,0x08,0x08,0x3e,0x09,0x08,0x0e,0x30,0x03,0x0c,0x77,0x00,0x07,0x04,0x02,0x3f,0x00,0x40,0x7e,0xa2,0x1a,0x12,0x62,0x86,0x60,0x18,0xf7,0x80,0xf0,0x90,0xa0,0xfe,0x00 -+// 37575 鋇 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x03,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x48,0x44,0x82,0x02,0x00 -+// 37576 鋈 ; -+,0x20,0x13,0x40,0x2b,0x08,0x71,0x16,0x11,0x06,0x3b,0x00,0x03,0x04,0x02,0x7f,0x00,0x78,0xc0,0x40,0xfe,0x40,0xb0,0x88,0x60,0x18,0xf7,0x80,0xf0,0x90,0xa0,0xff,0x00 -+// 37577 鋉 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x73,0x00,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x10,0x38,0x54,0x97,0x12,0x10,0x10 -+// 37578 鋊 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x3d,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x08,0x44,0x42,0x92,0x10,0x28,0x24,0x47,0x82,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 37579 鋋 ; -+,0x08,0x0b,0x1c,0x12,0x20,0x7d,0x11,0x10,0x3c,0x12,0x55,0x38,0x1d,0x62,0x0c,0x00,0x00,0xc3,0x5c,0x84,0x84,0x14,0xd7,0x54,0x54,0x54,0x94,0x9f,0x40,0x30,0x0f,0x00 -+// 37580 鋌 ; -+,0x10,0x13,0x18,0x24,0x20,0x7c,0x11,0x10,0x3c,0x12,0x55,0x38,0x1d,0x72,0x04,0x00,0x00,0xc6,0x58,0x48,0x88,0x88,0xff,0x48,0x48,0x48,0x88,0x9e,0x40,0x30,0x0f,0x00 -+// 37581 鋍 ; -+,0x08,0x08,0x14,0x12,0x22,0x5c,0x09,0x08,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x10,0x10,0xff,0x10,0x92,0xff,0x02,0x00,0x7c,0x08,0x10,0xfe,0x10,0x10,0x50,0x20 -+// 37582 鋎 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x03,0x00,0x20,0x10,0xff,0x82,0x00,0x7e,0x00,0x00,0xff,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 37583 鋏 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x09,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x78,0x01,0x10,0x10,0x10,0xff,0x10,0x94,0x94,0x5a,0x31,0x10,0x10,0x28,0x28,0x44,0x87,0x02 -+// 37584 鋐 ; -+,0x08,0x08,0x14,0x13,0x21,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2c,0x08,0x0d,0x72,0x00,0x40,0x20,0x20,0xff,0x02,0x20,0x20,0xff,0x20,0x50,0x50,0xa0,0xa0,0x42,0xff,0x01 -+// 37585 鋑 ; -+,0x08,0x08,0x14,0x13,0x20,0x7e,0x08,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x10,0x22,0x7f,0x01,0x44,0x43,0xa1,0x3e,0x22,0x62,0x94,0x08,0x34,0xc7,0x02 -+// 37586 鋒 ; -+,0x08,0x08,0x14,0x12,0x21,0x5e,0x08,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x40,0x40,0x7e,0xc4,0x28,0x18,0xe7,0x10,0xfe,0x10,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 37587 鋓 ; -+,0x10,0x11,0x18,0x24,0x20,0x7d,0x10,0x10,0x7c,0x11,0x15,0x5a,0x30,0x1c,0x70,0x00,0x71,0xc1,0x49,0x49,0x49,0xf9,0x49,0xe9,0xd9,0x49,0x49,0x41,0x41,0x41,0x45,0x42 -+// 37588 鋔 ; -+,0x08,0x08,0x14,0x12,0x22,0x3d,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x73,0x00,0x20,0x20,0x7c,0x48,0xfe,0x92,0x92,0x92,0xfe,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 37589 鋕 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x7e,0x08,0x4a,0x2d,0x29,0x0f,0x70,0x00,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0xfe,0x00,0x10,0x48,0x4a,0x41,0x45,0x44,0x3c,0x00 -+// 37590 鋖 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x3e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x00,0x1f,0xe0,0x91,0x4a,0x4c,0x10,0x10,0xff,0x24,0x44,0x28,0x18,0x66,0x83,0x02 -+// 37591 鋗 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x7e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 37592 鋘 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x03,0x00,0x00,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x10,0x10,0xff,0x10,0x28,0x44,0x87,0x02,0x00 -+// 37593 鋙 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x20,0x20,0xfc,0x24,0x24,0xff,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37594 鋚 ; -+,0x04,0x08,0x0a,0x1a,0x2a,0x0a,0x08,0x01,0x06,0x3b,0x00,0x03,0x04,0x02,0x3f,0x00,0x20,0x20,0x3e,0x64,0x98,0x14,0xa2,0x40,0x18,0xe7,0x80,0xe0,0x90,0xa0,0xfe,0x00 -+// 37595 鋛 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x10,0x10,0xfe,0x92,0x92,0xfe,0x10,0xff,0x91,0x91,0xff,0x10,0x10,0x10,0x10,0x10 -+// 37596 鋜 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0f,0x71,0x02,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x10,0x10,0x1f,0x90,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 37597 鋝 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x78,0x00,0x00,0x1f,0xe0,0x22,0x92,0x54,0x40,0x04,0xff,0x44,0x24,0x24,0x04,0x04,0x14,0x08 -+// 37598 鋞 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x01,0x00,0x00,0xff,0x00,0x49,0x49,0x92,0xa4,0x52,0x52,0x00,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 37599 鋟 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x09,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x73,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x02,0x7c,0x44,0x28,0x28,0x10,0x6c,0x83,0x00 -+// 37600 鋠 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2d,0x09,0x0e,0x74,0x00,0x00,0xff,0x80,0x80,0xfe,0x80,0xff,0xe0,0xd2,0xd4,0xc8,0x48,0x44,0x54,0x67,0x42 -+// 37601 鋡 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x20,0x50,0x48,0xa7,0x10,0xfe,0x04,0x08,0x10,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 37602 鋢 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x0e,0xf0,0x21,0x92,0x54,0xfe,0x04,0x08,0x10,0xff,0x10,0x10,0x10,0x10,0x50,0x20 -+// 37603 鋣 ; -+,0x08,0x0b,0x18,0x15,0x21,0x3d,0x50,0x7c,0x10,0x15,0x59,0x31,0x1e,0x75,0x00,0x00,0x00,0xef,0x49,0x4a,0x4a,0xec,0x4a,0xc9,0xc9,0x49,0x49,0x4d,0x4a,0x48,0x88,0x08 -+// 37604 鋤 ; -+,0x10,0x10,0x19,0x25,0x21,0x7d,0x11,0x11,0x7d,0x11,0x55,0x39,0x1d,0x73,0x00,0x00,0x08,0x08,0xe8,0x28,0x3f,0xe9,0x29,0x29,0xe9,0x29,0x29,0x29,0x71,0x91,0x25,0x42 -+// 37605 鋥 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x00,0x00,0xfe,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 37606 鋦 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2d,0x0f,0x72,0x04,0x00,0x00,0xfe,0x82,0x82,0xfe,0x80,0xff,0x81,0xb9,0xa9,0xa9,0x39,0x01,0x01,0x05,0x02 -+// 37607 鋧 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x01,0x00,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 37608 鋨 ; -+,0x08,0x08,0x15,0x12,0x20,0x3d,0x48,0x3e,0x08,0x4b,0x2a,0x2c,0x08,0x0e,0x71,0x00,0x08,0x6c,0xca,0x4a,0x48,0xff,0x48,0x49,0x69,0xca,0x44,0x4d,0x55,0x63,0x43,0x81 -+// 37609 鋩 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x44,0x44,0x44,0xff,0x44,0x10,0x08,0xff,0x40,0x40,0x40,0x40,0x40,0x7f,0x40,0x00 -+// 37610 鋪 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x14,0x12,0xff,0x10,0x10,0xff,0x91,0xff,0x91,0x91,0xff,0x91,0x91,0x91,0x95,0x82 -+// 37611 鋫 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x64,0x01,0x06,0x3b,0x00,0x03,0x04,0x02,0x7f,0x00,0x02,0x12,0x12,0xd2,0x12,0x12,0x86,0x60,0x18,0xe7,0x80,0xe0,0x90,0xa0,0xff,0x00 -+// 37612 鋬 ; -+,0x08,0x09,0x7d,0x09,0x0d,0x79,0x0a,0x18,0x03,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x00,0xfc,0x00,0xfc,0x48,0x30,0x4e,0xc0,0x20,0xf8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37613 鋭 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x03,0x00,0x84,0x44,0x48,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 37614 鋮 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2d,0x09,0x0e,0x74,0x00,0x08,0x0c,0x0a,0x08,0xff,0x88,0x8a,0xea,0xaa,0xa4,0xac,0x6d,0x15,0x23,0xc3,0x01 -+// 37615 鋯 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x09,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x78,0x00,0x10,0x10,0x90,0xfe,0x90,0x10,0x10,0xff,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 37616 鋰 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 37617 鋱 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2d,0x2a,0x0e,0x70,0x00,0x00,0x10,0x14,0x12,0xff,0x10,0x90,0x50,0x50,0x88,0xa8,0x98,0x85,0x95,0x73,0x01,0x00 -+// 37618 鋲 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x09,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x0e,0x70,0x40,0x40,0x40,0x7e,0x48,0x48,0x48,0xff,0x00,0x44,0x42,0x83,0x01,0x00 -+// 37619 鋳 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0xff,0x10,0xfe,0x10,0xff,0x24,0x24,0x7f,0x44,0xa4,0x14,0x04,0x14,0x08 -+// 37620 鋴 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x71,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x82,0x82,0xfe,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 37621 鋵 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x7b,0x00,0x00,0x1c,0x70,0x10,0xff,0x38,0x54,0x93,0x10,0x7c,0x44,0x44,0x45,0x85,0x03,0x00 -+// 37622 鋶 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0d,0x71,0x02,0x00,0x20,0x10,0x10,0xfe,0x20,0x20,0x44,0xfe,0x02,0xa4,0xa4,0xa4,0x25,0x25,0x23,0x00 -+// 37623 鋷 ; -+,0x08,0x0b,0x15,0x13,0x21,0x3d,0x51,0x11,0x7d,0x11,0x55,0x39,0x1e,0x70,0x00,0x00,0x00,0xf0,0x20,0x2f,0xe9,0x29,0x2a,0xea,0x2a,0x24,0x34,0xea,0x29,0x31,0x20,0x00 -+// 37624 鋸 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2d,0x29,0x0e,0x72,0x04,0x00,0x00,0xfe,0x82,0x82,0xfe,0x90,0x90,0xff,0x90,0x90,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 37625 鋹 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3d,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x80,0xfc,0x80,0xfc,0x80,0xff,0xa0,0xa4,0x98,0x90,0xa8,0xc7,0x82,0x00 -+// 37626 鋺 ; -+,0x08,0x08,0x15,0x13,0x20,0x5c,0x08,0x08,0x3d,0x09,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x20,0x10,0xff,0x02,0x80,0x8e,0xea,0xaa,0xaa,0x6a,0x2e,0x48,0x49,0x89,0x07,0x00 -+// 37627 鋻 ; -+,0x00,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3e,0x03,0x0f,0x70,0x03,0x08,0x04,0x3f,0x00,0x00,0xbe,0x22,0x14,0x08,0x16,0x63,0x82,0x60,0xd8,0x87,0xe0,0x88,0x90,0xff,0x00 -+// 37628 鋼 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x49,0x3d,0x09,0x4b,0x2d,0x29,0x0f,0x71,0x01,0x00,0x00,0xff,0x45,0x25,0x29,0x7d,0x11,0x55,0x55,0x55,0x7d,0x01,0x01,0x05,0x02,0x00 -+// 37629 鋽 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x1e,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 37630 鋾 ; -+,0x08,0x08,0x14,0x12,0x21,0x3c,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x40,0x40,0x7f,0x81,0x41,0x7d,0x91,0x11,0xfd,0x11,0x95,0x95,0xfd,0x01,0x05,0x02 -+// 37631 鋿 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x92,0x52,0x54,0xfe,0x82,0xba,0xaa,0xaa,0xaa,0xba,0x82,0x82,0x8a,0x84 -+// 37632 錀 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x4a,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x20,0x30,0x48,0x84,0x7b,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0xaa,0x86 -+// 37633 錁 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x38,0x54,0x57,0x92,0x10,0x10 -+// 37634 錂 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x3d,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x10,0x10,0xfe,0x10,0xff,0x44,0x42,0xa1,0x3e,0x62,0x94,0x14,0x08,0x14,0x67,0x82 -+// 37635 錃 ; -+,0x10,0x08,0x44,0x28,0x08,0x31,0x12,0x10,0x03,0x0c,0x73,0x00,0x07,0x02,0x3f,0x00,0x20,0xfe,0xa4,0xf8,0xc8,0x30,0x58,0x86,0x60,0x18,0xf7,0x80,0xf8,0x90,0xff,0x00 -+// 37636 錄 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x20,0x3e,0x22,0x7c,0x04,0xff,0x10,0x10,0x92,0x74,0x38,0x54,0x93,0x10,0x50,0x20 -+// 37637 錅 ; -+,0x07,0x3c,0x04,0x7f,0x0e,0x15,0x64,0x04,0x03,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x20,0x20,0x3e,0x4a,0x12,0x62,0x0a,0xc4,0x20,0xf8,0x87,0xe0,0x90,0xa0,0xff,0x00 -+// 37638 錆 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0xff,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 37639 錇 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0x10,0xfe,0x44,0x24,0x28,0xff,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 37640 錈 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x08,0x3e,0x09,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x10,0x92,0x54,0xfe,0x20,0x20,0xff,0x48,0x84,0x7b,0x48,0x58,0x42,0x42,0x3e,0x00 -+// 37641 錉 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x1e,0xf0,0x90,0xff,0x88,0x88,0xa5,0xc3,0x81,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 37642 錊 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x09,0x3e,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x00,0x44,0x44,0xaa,0x29,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 37643 錋 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x29,0x0d,0x72,0x00,0x00,0xee,0xaa,0xaa,0xee,0xaa,0xaa,0xaa,0xee,0xaa,0xaa,0xaa,0x2a,0x2a,0x76,0x00 -+// 37644 錌 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0f,0x71,0x02,0x00,0x10,0x92,0x92,0xfe,0x00,0xff,0x80,0xbe,0x88,0x88,0xff,0x88,0x08,0x08,0x08,0x08 -+// 37645 錍 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x10,0x20,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x20,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 37646 錎 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x70,0x00,0x20,0x20,0x3f,0x42,0x44,0x80,0x20,0xcf,0x81,0x81,0xef,0x81,0x81,0x81,0xff,0x81 -+// 37647 錏 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x00,0xff,0x28,0x28,0x28,0xee,0x82,0x82,0x82,0xee,0x28,0x28,0x28,0x28,0xff,0x00 -+// 37648 錐 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3d,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x00,0x50,0x48,0x48,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0x88,0x88,0xff,0x80 -+// 37649 錑 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x0a,0x2c,0x19,0x0d,0x72,0x04,0x00,0x20,0x10,0xfe,0x82,0x82,0xfe,0x94,0x92,0xff,0x90,0x90,0x28,0x24,0x47,0x82,0x00 -+// 37650 錒 ; -+,0x10,0x13,0x19,0x25,0x21,0x7d,0x11,0x11,0x7d,0x11,0x15,0x59,0x31,0x1d,0x61,0x01,0x00,0xdf,0x42,0x42,0x82,0x5e,0x52,0x52,0x52,0x9e,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 37651 錓 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x3e,0x08,0x08,0x2a,0x1c,0x0e,0x39,0x00,0x84,0x44,0x28,0xff,0x10,0x7e,0x10,0x10,0xff,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 37652 錔 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x49,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0xd6,0x58,0x98,0x94,0x13,0x30,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 37653 錕 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x0a,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x90,0x90,0x92,0xdc,0x90,0x91,0xd1,0x8f,0x00 -+// 37654 錖 ; -+,0x04,0x07,0x04,0x3f,0x04,0x25,0x24,0x4c,0x03,0x0d,0x70,0x07,0x04,0x02,0x3f,0x00,0x00,0x3e,0x22,0x94,0x08,0x14,0xa7,0xc2,0x20,0xf8,0x87,0xf0,0x90,0xa0,0xff,0x00 -+// 37655 錗 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x09,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x1e,0xf0,0x10,0xff,0x38,0x54,0x93,0x10,0x20,0xff,0x44,0xc8,0x30,0x28,0xc6,0x02 -+// 37656 錘 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x09,0x3e,0x08,0x4b,0x2c,0x28,0x0e,0x70,0x00,0x1e,0xf0,0x10,0x10,0xff,0x94,0x94,0xff,0x94,0x94,0xff,0x10,0x10,0x10,0xfe,0x00 -+// 37657 錙 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x49,0x49,0x92,0x24,0x92,0x49,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82 -+// 37658 錚 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x0e,0xf0,0x22,0x94,0x48,0xfe,0x12,0xff,0x12,0x12,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 37659 錛 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x10,0x10,0xff,0x24,0xc3,0x10,0xfe,0x10,0x54,0x44,0xff,0x44,0x44,0x84,0x84,0x04 -+// 37660 錜 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x29,0x0d,0x72,0x00,0x20,0x20,0x50,0x4c,0xa3,0x10,0xfc,0x04,0x08,0x30,0x10,0x4a,0x41,0x45,0x3c,0x00 -+// 37661 錝 ; -+,0x08,0x08,0x0c,0x12,0x10,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x10,0x08,0xff,0x82,0x00,0x7e,0x00,0x00,0xff,0x10,0x54,0x52,0x91,0x11,0x50,0x20 -+// 37662 錞 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0x7c,0x08,0x10,0xff,0x10,0x10,0x50,0x20 -+// 37663 錟 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x3e,0x08,0x2a,0x1c,0x0e,0x70,0x03,0x00,0x20,0x20,0xa4,0xa8,0x30,0x48,0x86,0x20,0x20,0xac,0xb0,0x50,0x48,0x87,0x02,0x00 -+// 37664 錠 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x0f,0x71,0x02,0x00,0x20,0x10,0xff,0x82,0x00,0xfe,0x10,0x10,0x90,0x9e,0x90,0x90,0x50,0x30,0x0f,0x00 -+// 37665 錡 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x20,0x20,0xfe,0x20,0x50,0x88,0xff,0x04,0xf4,0x94,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 37666 錢 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x49,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x50,0x48,0x7e,0xc0,0x2c,0x70,0x92,0x4a,0x46,0x38,0xe2,0x14,0x18,0x69,0x85,0x03 -+// 37667 錣 ; -+,0x10,0x13,0x1a,0x25,0x20,0x7d,0x12,0x7d,0x10,0x15,0x58,0x30,0x1d,0x66,0x08,0x00,0x00,0xde,0x52,0x8c,0x8c,0x52,0x21,0xde,0x52,0x4a,0x84,0xc4,0x2c,0x33,0xc2,0x00 -+// 37668 錤 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x03,0x00,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x00,0x48,0x84,0x02,0x02 -+// 37669 錥 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x20,0x44,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 37670 錦 ; -+,0x04,0x04,0x0a,0x11,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x91,0x91,0x91,0x95,0x92,0x10,0x10 -+// 37671 錧 ; -+,0x04,0x04,0x0a,0x0a,0x11,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x20,0x10,0xff,0x82,0x00,0x7c,0x44,0x44,0x7c,0x40,0x7e,0x42,0x42,0x42,0x7e,0x40 -+// 37672 錨 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x24,0x24,0xff,0x24,0x24,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82 -+// 37673 錩 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x78,0x00,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x00,0xff,0x81,0xff,0x81,0x81,0xff,0x81,0x00 -+// 37674 錪 ; -+,0x08,0x08,0x14,0x13,0x21,0x3d,0x49,0x09,0x7d,0x09,0x4b,0x2c,0x28,0x0c,0x73,0x00,0x48,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x4a,0x4a,0x4a,0xff,0x48,0x44,0x82,0x02,0x00 -+// 37675 錫 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0e,0x71,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x40,0x7f,0x55,0x95,0x25,0x49,0x89,0x31,0xc5,0x02 -+// 37676 錬 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0f,0x70,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x30,0x58,0x54,0x93,0x10,0x10,0x10 -+// 37677 錭 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x7e,0x08,0x4a,0x2c,0x2b,0x0d,0x72,0x04,0x00,0x00,0xfe,0x92,0xfa,0x92,0x92,0xfe,0x82,0xba,0xaa,0xaa,0x3a,0x02,0x0a,0x04,0x00 -+// 37678 錮 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x00,0xff,0x91,0x91,0xff,0x91,0x91,0xbd,0xa5,0xa5,0xbd,0x81,0x81,0xff,0x81,0x00 -+// 37679 錯 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 37680 錰 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x10,0x10,0xff,0x10,0x30,0x38,0x54,0x93,0x10,0x10,0x00,0xaa,0x95,0x15,0x00 -+// 37681 錱 ; -+,0x00,0x01,0x02,0x0d,0x70,0x0b,0x04,0x3f,0x00,0x7f,0x08,0x3e,0x08,0x0f,0x70,0x00,0x80,0x40,0x30,0xef,0x80,0xe8,0x90,0xff,0x00,0x7e,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 37682 録 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x00,0x7c,0x04,0x7c,0x04,0xff,0x10,0x92,0x54,0x18,0x58,0x94,0x13,0x10,0x50,0x20 -+// 37683 錳 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x00,0x7e,0x04,0x08,0x08,0xff,0x08,0x28,0x10,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 37684 錴 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x01,0x00,0x10,0x10,0x10,0xfe,0x10,0xff,0x00,0x44,0x52,0x91,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 37685 錵 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x3e,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x48,0x48,0xff,0x48,0x48,0x00,0x48,0x4a,0x8c,0x88,0x98,0xa8,0x89,0x89,0x87,0x00 -+// 37686 錶 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x20,0x20,0x20,0xfe,0x20,0xfe,0x20,0xff,0x20,0x54,0xc8,0x48,0x44,0x57,0x62,0x40 -+// 37687 錷 ; -+,0x08,0x08,0x15,0x12,0x21,0x7d,0x11,0x7d,0x11,0x15,0x58,0x31,0x1c,0x60,0x00,0x00,0x44,0x44,0xf4,0x44,0xf4,0x54,0xf4,0x54,0x54,0xf4,0x44,0xf5,0x45,0x45,0x43,0x00 -+// 37688 錸 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x38,0x00,0x10,0x10,0xff,0x10,0x52,0x34,0xff,0x10,0x30,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 37689 錹 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x5e,0x50,0x50,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 37690 錺 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x31,0x00,0x44,0x44,0xff,0x44,0x10,0x08,0xff,0x20,0x3e,0x22,0x22,0x42,0x42,0x82,0x0a,0x04 -+// 37691 錻 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x08,0x0d,0x70,0x00,0x04,0x06,0xf5,0x04,0xff,0x04,0x24,0x24,0xb4,0xa4,0xa5,0xa5,0xb5,0xc3,0x03,0x01 -+// 37692 錼 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x49,0x08,0x3e,0x48,0x2a,0x2c,0x0e,0x71,0x06,0x00,0x10,0x10,0xff,0x10,0x28,0x44,0x83,0x7c,0x00,0xff,0x10,0x94,0x92,0x11,0x51,0x20 -+// 37693 錽 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x00,0x00,0xff,0x10,0x94,0x58,0x24,0xc3,0x20,0x3e,0x42,0xa4,0x18,0x18,0x67,0x82,0x00 -+// 37694 錾 ; -+,0x04,0x7f,0x08,0x14,0x3f,0x04,0x7f,0x04,0x03,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x00,0xbf,0x20,0x3f,0x28,0x48,0x48,0x88,0x60,0xd8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37695 錿 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x09,0x0f,0x72,0x00,0x10,0x1e,0x10,0xff,0x92,0x90,0xfe,0x91,0x9f,0x80,0xbc,0xa4,0x25,0x25,0x43,0x00 -+// 37696 鍀 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x7e,0x04,0xff,0x04,0x44,0x24,0x04,0x14,0x08 -+// 37697 鍁 ; -+,0x08,0x09,0x15,0x13,0x21,0x7d,0x11,0x7d,0x11,0x15,0x59,0x31,0x1e,0x72,0x04,0x00,0x08,0xe8,0x08,0x10,0x1f,0xf2,0x68,0x48,0x48,0x48,0x48,0x54,0x54,0x63,0x42,0x00 -+// 37698 鍂 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x10,0x10,0x2c,0x43,0x80,0x7e,0x10,0x10,0x7e,0x10,0x92,0x52,0x54,0xff,0x00 -+// 37699 鍃 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2d,0x29,0x0f,0x70,0x00,0x20,0x20,0x7e,0x6a,0xaa,0x52,0x92,0x22,0xc6,0x20,0x12,0x51,0x45,0x44,0x3c,0x00 -+// 37700 鍄 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0f,0x70,0x00,0x20,0x10,0x10,0xff,0x00,0x7e,0x42,0x42,0x7e,0x10,0x10,0x54,0x92,0x11,0x50,0x20 -+// 37701 鍅 ; -+,0x08,0x09,0x14,0x12,0x20,0x7d,0x10,0x10,0x7c,0x10,0x17,0x59,0x31,0x1d,0x61,0x01,0x08,0x08,0x88,0x9e,0x08,0x08,0x88,0x3f,0x88,0x88,0x10,0x10,0x22,0x41,0x7f,0x01 -+// 37702 鍆 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xef,0xa9,0xef,0xa9,0xef,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x85,0x82 -+// 37703 鍇 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x88,0x88,0x8b,0xec,0x88,0xc9,0x97,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 37704 鍈 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x3e,0x09,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x48,0x48,0xff,0x48,0x48,0x10,0xfe,0x92,0x92,0xff,0x10,0x28,0x28,0x44,0x83,0x00 -+// 37705 鍉 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x29,0x0d,0x72,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xff,0x10,0x90,0x9e,0x90,0x50,0x30,0x1f,0x00 -+// 37706 鍊 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x10,0x10,0xff,0x10,0xfe,0xd6,0xba,0x92,0xfe,0x30,0x58,0x54,0x97,0x12,0x10,0x10 -+// 37707 鍋 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3f,0x09,0x49,0x2b,0x2d,0x09,0x0d,0x71,0x01,0x00,0x7c,0x44,0x74,0x54,0x54,0x54,0xff,0x01,0x79,0x49,0x49,0x79,0x01,0x05,0x02 -+// 37708 鍌 ; -+,0x10,0x09,0x45,0x2a,0x09,0x30,0x11,0x16,0x13,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x20,0x20,0xfe,0x20,0xff,0x90,0x11,0x8f,0x60,0xd8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37709 鍍 ; -+,0x08,0x08,0x15,0x13,0x21,0x3d,0x49,0x3f,0x09,0x4b,0x2d,0x29,0x0f,0x72,0x05,0x00,0x20,0x10,0xff,0x24,0x24,0xff,0x24,0x3c,0x00,0x7e,0x24,0x18,0x18,0x64,0x83,0x00 -+// 37710 鍎 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2d,0x0f,0x71,0x02,0x00,0x0f,0xf8,0x88,0x88,0xff,0x88,0xbf,0xa1,0xbf,0xa1,0xbf,0x21,0x21,0x3f,0x21,0x00 -+// 37711 鍏 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3e,0x48,0x3e,0x08,0x48,0x2a,0x2c,0x09,0x0e,0x70,0x00,0x20,0xfc,0x24,0x24,0xff,0x00,0xfc,0x84,0xfc,0x10,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 37712 鍐 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3d,0x08,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x00,0xc6,0xaa,0x92,0xaa,0xfe,0x44,0x62,0xa1,0x7c,0x44,0xa8,0x10,0x28,0xc7,0x00 -+// 37713 鍑 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x2e,0x70,0x03,0x00,0x80,0xfe,0x80,0xfc,0x84,0xfc,0x84,0xfc,0x40,0x7e,0x44,0xa8,0x10,0x68,0x87,0x00 -+// 37714 鍒 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x49,0x2a,0x2c,0x0e,0x71,0x00,0x00,0x00,0xfe,0x08,0x10,0xff,0x32,0x50,0x90,0x30,0xff,0x10,0x38,0x54,0x93,0x10,0x10 -+// 37715 鍓 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x29,0x0e,0x70,0x00,0xfc,0x84,0x84,0xfc,0x00,0xff,0x84,0xfc,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04,0x04 -+// 37716 鍔 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xee,0xaa,0xaa,0xee,0x00,0x7c,0x00,0xff,0x20,0x3e,0x02,0x02,0x02,0x0a,0x04 -+// 37717 鍕 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x29,0x0e,0x70,0x00,0x00,0xff,0x92,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 37718 鍖 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x3e,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x84,0x84,0xff,0x84,0x84,0xfc,0x84,0xfc,0x84,0xff,0xa8,0xa8,0xc6,0x80,0xff,0x00 -+// 37719 鍗 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xfe,0x44,0x28,0xff,0x91,0x10,0x7e,0x52,0x52,0x52,0x5a,0x54,0x10,0x10 -+// 37720 鍘 ; -+,0x08,0x09,0x15,0x13,0x21,0x7d,0x11,0x11,0x7d,0x11,0x55,0x38,0x1d,0x72,0x0c,0x00,0x02,0xe2,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x02,0x42,0x2a,0x24,0x00 -+// 37721 鍙 ; -+,0x20,0x10,0x47,0x28,0x0f,0x31,0x12,0x15,0x06,0x3b,0x00,0x07,0x04,0x02,0x7f,0x00,0x90,0x90,0xfe,0x90,0xff,0x08,0x84,0x44,0x30,0xee,0x80,0xf0,0x90,0xa0,0xfe,0x00 -+// 37722 鍚 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x40,0x7e,0xaa,0x2a,0x52,0x92,0x22,0x4a,0x04 -+// 37723 鍛 ; -+,0x0a,0x09,0x15,0x15,0x21,0x7d,0x11,0x11,0x7d,0x11,0x11,0x55,0x3b,0x1d,0x61,0x01,0x40,0x9c,0x14,0x14,0xd4,0x23,0x00,0x1e,0xe2,0x14,0x14,0xc8,0x0c,0x13,0x62,0x00 -+// 37724 鍜 ; -+,0x10,0x11,0x19,0x25,0x21,0x7d,0x11,0x11,0x7d,0x11,0x55,0x39,0x1d,0x61,0x01,0x00,0x00,0xef,0x21,0x21,0xef,0x00,0x00,0xdf,0x01,0x12,0xca,0x04,0x0c,0x12,0x61,0x00 -+// 37725 鍝 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x10,0xff,0x91,0x95,0xff,0x81,0x81,0x85,0x82 -+// 37726 鍞 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x03,0x10,0x10,0x1f,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0x48,0x86,0x02 -+// 37727 鍟 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x09,0x48,0x2a,0x2c,0x0e,0x73,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x90,0xff,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 37728 鍠 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x00,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 37729 鍡 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0xa0,0x92,0x94,0x88,0x88,0xa4,0xc7,0x82 -+// 37730 鍢 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xff,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 37731 鍣 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x44,0x44,0xff,0x44,0x00,0xfe,0x22,0x22,0x4a,0x84,0xfe,0x82,0x82,0x82,0xfe,0x82 -+// 37732 鍤 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0x0e,0xf0,0x10,0xff,0x10,0x10,0x57,0x91,0x91,0xd7,0x91,0x91,0x91,0xff,0x81 -+// 37733 鍥 ; -+,0x08,0x09,0x14,0x13,0x20,0x3d,0x48,0x08,0x7e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x03,0x80,0xfe,0x8a,0xea,0x8a,0xea,0x92,0xa6,0x00,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 37734 鍦 ; -+,0x08,0x09,0x14,0x12,0x20,0x7b,0x11,0x11,0x7d,0x11,0x15,0x59,0x36,0x1a,0x64,0x00,0x10,0x10,0x9f,0xa0,0x04,0xe5,0x07,0xdd,0x75,0x55,0x55,0x53,0x50,0x51,0xcf,0x00 -+// 37735 鍧 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x40,0x40,0xff,0xa1,0x11,0xfd,0x01,0xf9,0x01,0xf9,0x01,0xf9,0x89,0xf9,0x05,0x02 -+// 37736 鍨 ; -+,0x08,0x09,0x15,0x12,0x20,0x3e,0x48,0x09,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x12,0xf4,0x29,0xaa,0x44,0x44,0x82,0x7d,0x20,0x20,0xff,0x20,0x50,0x48,0x86,0x04 -+// 37737 鍩 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x49,0x3e,0x08,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x44,0x44,0xff,0x44,0x54,0x10,0xff,0x20,0x20,0x7e,0xc2,0x42,0x42,0x42,0x7e,0x42 -+// 37738 鍪 ; -+,0x00,0x3f,0x0a,0x7f,0x0d,0x14,0x64,0x0d,0x02,0x0f,0x70,0x03,0x04,0x02,0x3f,0x00,0x20,0x20,0x3f,0xa2,0x54,0x08,0x34,0x82,0x60,0xd8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37739 鍫 ; -+,0x06,0x38,0x09,0x7e,0x1c,0x2a,0x49,0x08,0x03,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x20,0x24,0x28,0xb0,0x30,0x48,0x86,0xc2,0x20,0xf8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37740 鍬 ; -+,0x08,0x08,0x1b,0x14,0x24,0x7b,0x11,0x11,0x7e,0x12,0x14,0x58,0x30,0x1c,0x70,0x00,0x08,0xe8,0x88,0x88,0xaa,0xea,0xac,0xc8,0xa8,0x88,0x94,0x94,0xa2,0xc3,0x82,0x00 -+// 37741 鍭 ; -+,0x08,0x08,0x15,0x13,0x23,0x7d,0x11,0x11,0x7d,0x11,0x15,0x59,0x31,0x1d,0x61,0x01,0x80,0xbc,0x08,0x08,0x7f,0x40,0x7e,0x90,0x10,0xff,0x10,0x28,0x24,0x47,0x82,0x00 -+// 37742 鍮 ; -+,0x08,0x08,0x14,0x12,0x21,0x7c,0x11,0x11,0x7d,0x11,0x55,0x39,0x11,0x1d,0x61,0x01,0x20,0x20,0x50,0x8c,0x7b,0x00,0xe2,0x2a,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0x66 -+// 37743 鍯 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x49,0x08,0x3c,0x08,0x4a,0x2d,0x29,0x0e,0x70,0x00,0x40,0x40,0x7e,0xaa,0x6a,0x5a,0x9a,0x26,0xca,0x04,0x20,0x52,0x45,0x45,0x3c,0x00 -+// 37744 鍰 ; -+,0x08,0x09,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0f,0x72,0x00,0x1e,0xe0,0x42,0xa4,0x08,0xfe,0x20,0xff,0x20,0x7e,0x44,0xa8,0x98,0x24,0xc3,0x00 -+// 37745 鍱 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x3e,0x08,0x49,0x2a,0x2c,0x0e,0x71,0x06,0x00,0xa8,0xa8,0xa8,0xff,0xa8,0xb8,0x80,0xfe,0x10,0xff,0x30,0x58,0x94,0x13,0x12,0x10 -+// 37746 鍲 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x82,0xfe,0x90,0xff,0xa8,0xc5,0x83,0x01,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 37747 鍳 ; -+,0x00,0x3f,0x24,0x3f,0x21,0x3f,0x24,0x3f,0x02,0x0f,0x70,0x03,0x04,0x02,0x3f,0x00,0x20,0xa0,0x3f,0x20,0x50,0x4c,0x84,0x40,0x20,0xf8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37748 鍴 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x00,0x10,0x92,0x92,0x92,0xfe,0x00,0xff,0x20,0x40,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0x86 -+// 37749 鍵 ; -+,0x08,0x08,0x1b,0x14,0x21,0x7d,0x13,0x10,0x7a,0x12,0x56,0x39,0x1d,0x62,0x04,0x00,0x10,0x10,0xbe,0x92,0x7f,0x12,0xbe,0x90,0xbe,0x90,0xbe,0x10,0x90,0x70,0x1f,0x00 -+// 37750 鍶 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2d,0x29,0x0e,0x70,0x00,0x00,0xfc,0xa4,0xa4,0xfc,0xa4,0xa4,0xfc,0x00,0x20,0x52,0x55,0x45,0x44,0x3c,0x00 -+// 37751 鍷 ; -+,0x08,0x08,0x15,0x12,0x20,0x3d,0x48,0x08,0x7d,0x08,0x4a,0x2d,0x28,0x0e,0x73,0x00,0x20,0x20,0xff,0x30,0x4c,0xa3,0xfc,0x20,0xfe,0x00,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 37752 鍸 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x09,0x7f,0x09,0x4b,0x2d,0x28,0x0e,0x70,0x00,0x40,0x4f,0x49,0xf9,0x4f,0x49,0x49,0xe9,0x2f,0x29,0x29,0xe9,0x11,0x11,0x25,0x02 -+// 37753 鍹 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x20,0x10,0xff,0x82,0x00,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x00,0xff,0x00 -+// 37754 鍺 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4b,0x2c,0x08,0x0e,0x70,0x00,0x20,0x20,0xfd,0x22,0x24,0xff,0x10,0x20,0x7e,0xc2,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 37755 鍻 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4b,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0x7f,0x91,0x91,0xa9,0xc5,0xff,0x01,0x05,0x02 -+// 37756 鍼 ; -+,0x08,0x08,0x14,0x13,0x21,0x7d,0x11,0x7d,0x11,0x15,0x59,0x32,0x1e,0x64,0x19,0x00,0x08,0x0c,0x0a,0xff,0x08,0x08,0xe9,0x09,0xea,0xaa,0xa4,0xed,0x15,0x63,0x81,0x00 -+// 37757 鍽 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2d,0x29,0x0e,0x74,0x00,0x20,0x10,0xfe,0x82,0x82,0xfe,0x80,0xff,0xd5,0xd5,0xff,0x55,0x55,0x55,0x55,0x43 -+// 37758 鍾 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x1e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 37759 鍿 ; -+,0x08,0x08,0x14,0x13,0x20,0x7e,0x08,0x7e,0x08,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x4a,0x4a,0x94,0xff,0x94,0x4a,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82 -+// 37760 鎀 ; -+,0x08,0x08,0x18,0x15,0x21,0x7f,0x11,0x11,0x7d,0x11,0x15,0x59,0x31,0x1d,0x71,0x01,0x90,0x9f,0x91,0x2a,0x04,0x1b,0x40,0x44,0x58,0x42,0x44,0x59,0x02,0x0c,0x70,0x00 -+// 37761 鎁 ; -+,0x08,0x0b,0x19,0x15,0x21,0x7d,0x11,0x11,0x7d,0x11,0x15,0x59,0x33,0x1c,0x60,0x00,0x00,0xff,0x29,0x29,0x2a,0xea,0x2c,0x2a,0xe9,0x29,0x29,0xed,0x2a,0x28,0x28,0x28 -+// 37762 鎂 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x03,0x84,0x44,0x48,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x10,0x10,0x28,0x44,0x87,0x02 -+// 37763 鎃 ; -+,0x0a,0x09,0x15,0x12,0x20,0x3a,0x51,0x10,0x7d,0x13,0x11,0x55,0x39,0x1d,0x61,0x00,0x00,0x0e,0x70,0x43,0x4c,0x50,0x51,0x56,0x54,0x54,0x54,0x52,0x52,0x9d,0x14,0x00 -+// 37764 鎄 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0x84,0xfc,0x50,0x52,0xcc,0x48,0x44,0x57,0x62,0x40 -+// 37765 鎅 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0xfe,0x92,0x92,0xfe,0x92,0xfe,0x28,0x44,0x83,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 37766 鎆 ; -+,0x08,0x08,0x14,0x13,0x20,0x3d,0x49,0x09,0x7d,0x09,0x4b,0x2d,0x29,0x0d,0x71,0x01,0x84,0x44,0x48,0xff,0x00,0xe2,0x2a,0xea,0x2a,0x2a,0xea,0x2a,0x22,0x22,0x6a,0x24 -+// 37767 鎇 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x29,0x0f,0x72,0x00,0x00,0xff,0x91,0x91,0xff,0x80,0xbe,0xa2,0xbe,0xa2,0xa2,0x3e,0x22,0x22,0x3e,0x22 -+// 37768 鎈 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x0a,0x4c,0x28,0x2d,0x72,0x00,0x44,0x24,0x28,0xff,0x10,0xfe,0x10,0xff,0x20,0x20,0x5e,0x48,0x88,0x08,0x7f,0x00 -+// 37769 鎉 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2c,0x29,0x0e,0x70,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xef,0x21,0xa5,0x63,0xa5,0x29,0x21,0xa5,0x42 -+// 37770 鎊 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x20,0x10,0xfe,0x44,0x28,0xff,0xa2,0x10,0xff,0x20,0x3c,0x24,0x44,0x44,0x94,0x08 -+// 37771 鎋 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x82,0x10,0x7e,0x10,0x7e,0x10,0xff,0x10,0x7e,0x42,0x42,0x7e,0x42 -+// 37772 鎌 ; -+,0x08,0x08,0x15,0x12,0x21,0x3e,0x49,0x08,0x7d,0x08,0x4a,0x2c,0x29,0x0e,0x74,0x00,0x84,0x48,0xfe,0x50,0xfc,0x54,0xff,0x54,0xfc,0x50,0x58,0xd4,0x57,0x52,0x50,0x50 -+// 37773 鎍 ; -+,0x08,0x08,0x14,0x12,0x21,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0xfe,0x10,0xff,0x22,0x48,0xf0,0x24,0xfe,0x12,0x58,0x56,0x92,0x50,0x20 -+// 37774 鎎 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x2e,0x19,0x60,0x00,0x40,0x7f,0x80,0xfe,0x00,0xfc,0x24,0xac,0x74,0xfc,0x25,0x75,0xab,0x2b,0x21,0x21 -+// 37775 鎏 ; -+,0x20,0x13,0x50,0x21,0x08,0x11,0x61,0x26,0x21,0x0e,0x77,0x00,0x07,0x02,0x3f,0x00,0x40,0xfe,0x90,0xf8,0x00,0x4a,0x4a,0x4e,0xc0,0x70,0xef,0x80,0xf0,0xa0,0xfe,0x00 -+// 37776 鎐 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x1e,0xe0,0x22,0x92,0x54,0x00,0x7e,0x90,0x10,0xff,0x10,0x92,0x92,0x92,0xfe,0x82 -+// 37777 鎑 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x20,0x44,0xfe,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 37778 鎒 ; -+,0x09,0x09,0x15,0x13,0x21,0x3d,0x49,0x09,0x7f,0x09,0x4b,0x2d,0x29,0x0e,0x72,0x04,0xff,0x00,0x7c,0x00,0xff,0x52,0x4c,0x54,0x63,0x44,0xff,0x44,0x24,0x04,0x14,0x08 -+// 37779 鎓 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x09,0x7d,0x08,0x4a,0x2c,0x29,0x0e,0x70,0x00,0x48,0x48,0xa4,0xa3,0x48,0xfc,0x00,0xef,0x29,0xa5,0x63,0xa5,0x29,0x29,0xa5,0x42 -+// 37780 鎔 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4b,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x82,0x28,0x44,0x92,0x30,0x48,0x84,0xff,0x84,0x84,0x84,0xfc,0x84 -+// 37781 鎕 ; -+,0x08,0x08,0x15,0x13,0x21,0x3f,0x49,0x09,0x7f,0x09,0x4b,0x2d,0x2e,0x72,0x04,0x00,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 37782 鎖 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x01,0x10,0x94,0x54,0x58,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x48,0x44,0x82,0x02 -+// 37783 鎗 ; -+,0x08,0x08,0x14,0x12,0x20,0x3f,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0d,0x7a,0x00,0x20,0x20,0x50,0x6c,0x93,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xfe,0x42,0x42,0x7e,0x42 -+// 37784 鎘 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7c,0x08,0x48,0x2a,0x2c,0x0e,0x78,0x00,0x00,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00,0xff,0xa5,0x99,0xfd,0x91,0x91,0x95,0x82 -+// 37785 鎙 ; -+,0x10,0x12,0x19,0x24,0x23,0x7c,0x12,0x7e,0x12,0x13,0x54,0x39,0x1d,0x72,0x04,0x00,0x00,0x2f,0x49,0x09,0xef,0x89,0xa9,0xa9,0xaf,0xe9,0x89,0x11,0x11,0x25,0x42,0x00 -+// 37786 鎚 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x49,0x08,0x3e,0x08,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x08,0x10,0xbe,0xa2,0x22,0x3e,0xa0,0xa0,0xbf,0xa1,0xa1,0xbf,0x80,0xc0,0x3f,0x00 -+// 37787 鎛 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x44,0x14,0x08 -+// 37788 鎜 ; -+,0x04,0x1f,0x19,0x15,0x7f,0x19,0x15,0x23,0x43,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x3c,0x24,0x27,0x40,0xbc,0x24,0x18,0xa6,0x60,0xd8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37789 鎝 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x48,0x48,0xff,0x48,0x20,0x50,0x8c,0x03,0xfc,0x00,0xfc,0x84,0x84,0x84,0xfc,0x84 -+// 37790 鎞 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x20,0xfe,0xc6,0xaa,0x92,0xaa,0xfe,0x08,0x88,0xef,0x88,0xa9,0xc9,0x87,0x00 -+// 37791 鎟 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x49,0x08,0x7d,0x09,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x00,0x7c,0x28,0x10,0x28,0xef,0x4a,0x84,0x5b,0xff,0x30,0x58,0x94,0x13,0x10,0x10 -+// 37792 鎠 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x48,0x09,0x7c,0x08,0x4a,0x2c,0x28,0x0e,0x73,0x00,0x00,0xfe,0xaa,0xaa,0xaa,0xfe,0x00,0xff,0x10,0x10,0x9e,0x90,0x90,0x90,0xff,0x00 -+// 37793 鎡 ; -+,0x08,0x08,0x14,0x12,0x21,0x3c,0x48,0x08,0x7d,0x09,0x48,0x2c,0x29,0x0d,0x73,0x00,0x00,0x84,0x44,0x48,0xff,0x44,0x88,0xa9,0x52,0xdc,0x84,0x88,0x08,0x52,0xff,0x21 -+// 37794 鎢 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0c,0x70,0x00,0x20,0x40,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0xd5,0xab,0x2b,0x01,0x05,0x02 -+// 37795 鎣 ; -+,0x04,0x15,0x16,0x06,0x09,0x3f,0x20,0x01,0x02,0x0d,0x70,0x03,0x04,0x02,0x3f,0x00,0x10,0x54,0x58,0x28,0x44,0xff,0x82,0x40,0x30,0xef,0x80,0xe0,0x90,0xa0,0xfe,0x00 -+// 37796 鎤 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x09,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x92,0x54,0xff,0x28,0x28,0x29,0x49,0x47,0x80 -+// 37797 鎥 ; -+,0x08,0x08,0x14,0x14,0x35,0x54,0x14,0x10,0x11,0x06,0x7b,0x00,0x07,0x02,0x3f,0x00,0x40,0x7e,0xc4,0x38,0xd7,0xfe,0x54,0xb2,0xc0,0x30,0xef,0x80,0xf0,0xa0,0xfe,0x00 -+// 37798 鎦 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x40,0x9f,0x09,0x49,0x69,0x91,0x23,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 37799 鎧 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x3e,0x08,0x4a,0x2c,0x28,0x0e,0x73,0x00,0x10,0x92,0x92,0xfe,0x00,0xfe,0x00,0xfc,0x84,0xfc,0x00,0x84,0x44,0x48,0xff,0x00 -+// 37800 鎨 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x50,0x48,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x90,0x10,0xff,0x10,0x10,0x10,0x10 -+// 37801 鎩 ; -+,0x10,0x11,0x18,0x25,0x20,0x7c,0x10,0x13,0x7c,0x10,0x56,0x3a,0x10,0x1c,0x62,0x01,0x00,0x5e,0x92,0x52,0x52,0x93,0xa0,0xdf,0x91,0x8a,0xca,0xa4,0x84,0x8a,0x93,0x22 -+// 37802 鎪 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x03,0x10,0x50,0x96,0x92,0xde,0x92,0xfe,0x10,0x10,0xfe,0x44,0x28,0x10,0x2c,0xc7,0x02 -+// 37803 鎫 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x48,0x08,0x7d,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x03,0x20,0xfe,0x02,0x7e,0x2a,0x12,0x28,0x82,0x21,0x3c,0x44,0xa8,0x10,0x2c,0xc7,0x02 -+// 37804 鎬 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xfe,0x82,0xba,0xaa,0xaa,0xba,0x82,0x86 -+// 37805 鎭 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x80,0x9e,0xe0,0xff,0x00,0xbe,0xaa,0xb6,0xae,0xbe,0x80,0xff,0x24,0x42,0x81,0x00 -+// 37806 鎮 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x71,0x00,0x10,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x44,0x82,0x02,0x00 -+// 37807 鎯 ; -+,0x08,0x08,0x15,0x13,0x21,0x7d,0x11,0x11,0x7d,0x11,0x15,0x59,0x31,0x1d,0x60,0x00,0x80,0x40,0xef,0x29,0x2a,0xec,0x2c,0x2a,0xe9,0x09,0x4d,0x6a,0xa8,0x08,0x08,0x08 -+// 37808 鎰 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0c,0x73,0x00,0x84,0x44,0x48,0x00,0xfe,0x48,0x44,0x82,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 37809 鎱 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x48,0x2a,0x2d,0x0e,0x70,0x00,0x10,0x10,0xfe,0x10,0xff,0x00,0xfc,0x84,0x84,0xfc,0x52,0xcc,0x48,0x54,0x63,0x42 -+// 37810 鎲 ; -+,0x08,0x09,0x14,0x12,0x21,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x20,0x24,0xa4,0xa8,0xff,0x02,0x00,0xfc,0x84,0xfc,0x50,0x50,0x91,0x91,0x0f,0x00 -+// 37811 鎳 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x09,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x20,0x40,0xfe,0x92,0xca,0xa6,0x92,0xfe,0x10,0xff,0x10,0x38,0x54,0x93,0x10,0x10 -+// 37812 鎴 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x29,0x0e,0x70,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x20,0x10,0x52,0x45,0x45,0x3c,0x00 -+// 37813 鎵 ; -+,0x08,0x08,0x19,0x15,0x20,0x3c,0x50,0x10,0x7d,0x10,0x54,0x3b,0x1c,0x63,0x00,0x00,0x20,0x10,0xff,0x02,0xfc,0x20,0x24,0x48,0xb0,0x50,0xb8,0x54,0x93,0x10,0x50,0x20 -+// 37814 鎶 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xff,0x04,0xf4,0x94,0xf4,0x04,0xff,0x04,0xf4,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 37815 鎷 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4b,0x2d,0x29,0x0c,0x70,0x00,0x00,0xfe,0x90,0xfe,0x90,0x90,0xfe,0x90,0xff,0x01,0x69,0x55,0x55,0x01,0x05,0x02 -+// 37816 鎸 ; -+,0x08,0x08,0x14,0x12,0x21,0x7c,0x10,0x10,0x7e,0x10,0x14,0x58,0x30,0x1e,0x60,0x01,0x50,0x48,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x00,0xfe,0x44,0x4f,0x81,0x85,0x02 -+// 37817 鎹 ; -+,0x08,0x08,0x15,0x12,0x20,0x7c,0x10,0x11,0x7c,0x10,0x14,0x58,0x30,0x1d,0x72,0x00,0x00,0x21,0x12,0x94,0xbf,0x08,0x08,0xbf,0x88,0x94,0x93,0xa1,0x80,0x40,0x3f,0x00 -+// 37818 鎺 ; -+,0x11,0x10,0x18,0x25,0x20,0x7c,0x10,0x11,0x7a,0x10,0x10,0x54,0x38,0x1c,0x70,0x00,0x00,0x9e,0x12,0xd2,0x52,0x9e,0x92,0xd2,0xb2,0x9e,0x92,0x92,0x92,0x92,0xbf,0x80 -+// 37819 鎻 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x52,0x54,0xa8,0x94,0x54,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x24,0x43,0x81 -+// 37820 鎼 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0d,0x72,0x00,0x10,0x1e,0x10,0xff,0x92,0xff,0x91,0x8f,0xf8,0xaa,0x9c,0xff,0x08,0x08,0x28,0x10 -+// 37821 鎽 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x92,0xfe,0x40,0x7c,0xc8,0x30,0x28,0xd7,0x78,0x10,0x7c,0x10,0xfe,0x10,0x10 -+// 37822 鎾 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x09,0x4b,0x2d,0x29,0x0f,0x73,0x00,0x00,0xfc,0xa4,0xa4,0xb4,0xcc,0xfc,0x00,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 37823 鎿 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x20,0x30,0x4c,0xfb,0x00,0x7c,0x44,0x7c,0x00,0x7c,0x10,0xfe,0x10,0xff,0x10,0x30 -+// 37824 鏀 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x1f,0x10,0xff,0x93,0xc5,0xa9,0xd3,0x99,0xa5,0xc3,0x91,0x89,0xff,0x81 -+// 37825 鏁 ; -+,0x08,0x08,0x19,0x15,0x20,0x7d,0x11,0x11,0x7d,0x11,0x54,0x3b,0x10,0x1c,0x63,0x00,0xa4,0xa4,0x48,0x24,0x92,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x70,0xae,0x24,0x20 -+// 37826 鏂 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x49,0x09,0x7f,0x09,0x49,0x2b,0x2d,0x0f,0x71,0x00,0x00,0xff,0x00,0x3e,0x22,0x22,0x3e,0x00,0x77,0x55,0x55,0x55,0x77,0x00,0xff,0x00 -+// 37827 鏃 ; -+,0x09,0x08,0x18,0x17,0x21,0x3d,0x51,0x11,0x7d,0x11,0x56,0x3a,0x1c,0x65,0x08,0x00,0x10,0x90,0x90,0xdf,0x20,0x10,0xde,0x68,0x48,0x7f,0x48,0x48,0x54,0x53,0xa2,0x00 -+// 37828 鏄 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0e,0x70,0x00,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x11,0xff,0x04,0xff,0x44,0x24,0x0c -+// 37829 鏅 ; -+,0x08,0x08,0x14,0x13,0x21,0x7b,0x15,0x11,0x7d,0x11,0x11,0x55,0x39,0x1d,0x61,0x01,0x90,0x90,0x9f,0x12,0x2c,0x4c,0x73,0x5e,0x52,0x5e,0x52,0x5e,0x12,0x12,0x12,0x16 -+// 37830 鏆 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x92,0xff,0x92,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0xc2 -+// 37831 鏇 ; -+,0x09,0x08,0x14,0x13,0x21,0x7d,0x11,0x11,0x7d,0x11,0x11,0x55,0x39,0x1e,0x72,0x00,0x10,0x90,0x90,0xdf,0x10,0x20,0xdf,0x45,0x54,0x57,0x54,0x54,0x54,0x5c,0xe7,0x00 -+// 37832 鏈 ; -+,0x10,0x10,0x1a,0x25,0x21,0x3c,0x53,0x11,0x7d,0x11,0x15,0x59,0x31,0x1a,0x64,0x00,0x10,0x10,0x7e,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0x7f,0x10,0x10,0x90,0x7f,0x00 -+// 37833 鏉 ; -+,0x10,0x10,0x10,0x2b,0x24,0x7b,0x12,0x12,0x7b,0x10,0x55,0x3a,0x1e,0x64,0x08,0x00,0x88,0x88,0x88,0xe8,0x8f,0xf1,0xa2,0xa8,0xe8,0x88,0xc8,0xa8,0x94,0x93,0xa2,0x80 -+// 37834 鏊 ; -+,0x08,0x7f,0x08,0x7f,0x08,0x7f,0x10,0x1c,0x27,0x0c,0x73,0x00,0x07,0x02,0x01,0x3f,0x20,0x20,0x7e,0x44,0xa8,0x10,0x28,0x86,0x40,0x38,0xe6,0x80,0xf0,0xa0,0xc0,0xfe -+// 37835 鏋 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x49,0x09,0x7f,0x09,0x49,0x2b,0x2d,0x0f,0x71,0x01,0x44,0x44,0xff,0x44,0x7c,0x10,0xff,0x11,0x99,0x55,0xbb,0x11,0x11,0x11,0x15,0x02 -+// 37836 鏌 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4b,0x2c,0x28,0x0e,0x70,0x03,0x48,0x48,0xff,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x20,0x50,0x4c,0x87,0x02 -+// 37837 鏍 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x08,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x79,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x24,0x78,0x22,0xff,0x09,0x48,0x4a,0x89,0x29,0x10 -+// 37838 鏎 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x54,0xff,0x54,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 37839 鏏 ; -+,0x08,0x08,0x15,0x12,0x21,0x3e,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x84,0x84,0xdf,0x84,0xdf,0x84,0xdf,0x84,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 37840 鏐 ; -+,0x09,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x03,0xee,0x22,0xaa,0x66,0xaa,0x02,0x30,0x48,0xa4,0x43,0x90,0x24,0xc8,0x10,0x60,0x80 -+// 37841 鏑 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0x91,0x91,0xff,0x91,0xbd,0xa5,0xbd,0x81,0x85,0x82 -+// 37842 鏒 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x7d,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x03,0x20,0x48,0xfc,0x44,0xaa,0xff,0x21,0x58,0x87,0x20,0xd0,0x24,0xc8,0x10,0x60,0x80 -+// 37843 鏓 ; -+,0x08,0x08,0x14,0x12,0x20,0x7c,0x10,0x10,0x7c,0x10,0x14,0x5a,0x32,0x1a,0x60,0x00,0x20,0x40,0xfe,0xa2,0xbe,0xea,0x92,0xaa,0xfe,0x00,0xa0,0x92,0x91,0x85,0x7c,0x00 -+// 37844 鏔 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x20,0x10,0xff,0x82,0x7c,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x44,0x42,0x83,0x02 -+// 37845 鏕 ; -+,0x08,0x08,0x15,0x13,0x21,0x7d,0x11,0x11,0x7d,0x11,0x15,0x55,0x39,0x1e,0x62,0x04,0x20,0x10,0xff,0x28,0x28,0xff,0x29,0xff,0x00,0x48,0x6e,0x48,0x49,0x69,0x4f,0x00 -+// 37846 鏖 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x24,0x26,0x41,0x07,0x38,0x03,0x01,0x0f,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x20,0x3d,0x21,0x9f,0x60,0xf8,0x47,0xf8,0x50,0xff -+// 37847 鏗 ; -+,0x08,0x09,0x15,0x13,0x21,0x7d,0x11,0x11,0x7d,0x10,0x14,0x58,0x30,0x1c,0x63,0x00,0x00,0xff,0x51,0xf1,0x2a,0xea,0x44,0x4b,0xf2,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 37848 鏘 ; -+,0x08,0x08,0x15,0x13,0x21,0x7d,0x10,0x10,0x7d,0x11,0x55,0x39,0x11,0x1d,0x62,0x00,0x48,0x48,0x5f,0x51,0x6a,0xd4,0x4a,0x52,0xff,0x42,0x52,0x4a,0x4a,0x42,0x4a,0x44 -+// 37849 鏙 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x92,0x92,0xfe,0x50,0x48,0xff,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0xff,0x80 -+// 37850 鏚 ; -+,0x08,0x08,0x14,0x13,0x21,0x7d,0x11,0x11,0x7d,0x11,0x55,0x3a,0x1f,0x65,0x08,0x00,0x08,0x0c,0x0a,0xff,0x48,0x48,0x78,0x4a,0xfa,0x4a,0x64,0x54,0x4d,0x55,0xe3,0x41 -+// 37851 鏛 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x92,0x54,0xff,0x82,0x7c,0x44,0x7c,0x10,0xfe,0x92,0x92,0x9a,0x94,0x10,0x10 -+// 37852 鏜 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x92,0x54,0xff,0x82,0x00,0x7c,0x44,0x44,0x7c,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 37853 鏝 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x49,0x09,0x7d,0x08,0x4a,0x2c,0x28,0x0c,0x70,0x03,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x2a,0xfe,0x00,0xfc,0x48,0x30,0x28,0xc7,0x02 -+// 37854 鏞 ; -+,0x08,0x09,0x15,0x13,0x21,0x7d,0x11,0x11,0x7d,0x11,0x55,0x19,0x11,0x1e,0x72,0x04,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x52,0x46 -+// 37855 鏟 ; -+,0x08,0x08,0x15,0x12,0x20,0x7d,0x11,0x11,0x7d,0x11,0x55,0x39,0x12,0x1a,0x64,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0x10,0x50,0x7e,0x90,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 37856 鏠 ; -+,0x08,0x0a,0x15,0x13,0x20,0x7c,0x13,0x11,0x7d,0x11,0x55,0x39,0x11,0x1d,0x62,0x00,0x10,0x10,0x3e,0x22,0x54,0x18,0x67,0x08,0x3e,0x08,0x3e,0x08,0x7f,0x88,0x7f,0x00 -+// 37857 鏡 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xfe,0x44,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x28,0x28,0x49,0x49,0x87 -+// 37858 鏢 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x48,0x7e,0x08,0x48,0x2a,0x2c,0x08,0x0d,0x70,0x00,0xff,0x28,0x28,0xff,0xa9,0xff,0x00,0x7e,0x00,0xff,0x10,0x94,0x93,0x11,0x50,0x20 -+// 37859 鏣 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0d,0x72,0x00,0x20,0x10,0xff,0x80,0xa4,0xff,0xa4,0xa4,0xa4,0xbc,0x80,0x80,0x6a,0x55,0x95,0x00 -+// 37860 鏤 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x01,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x20,0xff,0x48,0xc8,0x30,0xce -+// 37861 鏥 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x7c,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x82,0x40,0x7f,0x88,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2 -+// 37862 鏦 ; -+,0x08,0x08,0x15,0x12,0x20,0x7c,0x11,0x13,0x7d,0x11,0x11,0x55,0x39,0x1d,0x61,0x01,0xa4,0xa4,0x24,0x24,0xda,0x91,0x00,0x48,0x48,0x4f,0x48,0x48,0x68,0x58,0x87,0x00 -+// 37863 鏧 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x1f,0x15,0x1f,0x13,0x2d,0x70,0x03,0x04,0x02,0x3f,0x00,0x00,0xbc,0x24,0x27,0x40,0x7c,0x28,0x98,0x66,0xd8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37864 鏨 ; -+,0x04,0x3f,0x04,0x1f,0x15,0x1f,0x15,0x3f,0x05,0x06,0x3b,0x00,0x07,0x02,0x3f,0x00,0x00,0xbf,0x20,0x20,0x3f,0x24,0x44,0x84,0x44,0x30,0xee,0x80,0xf0,0xa0,0xfe,0x00 -+// 37865 鏩 ; -+,0x10,0x10,0x1b,0x24,0x23,0x7a,0x13,0x12,0x7a,0x13,0x14,0x5b,0x30,0x1c,0x60,0x00,0x80,0x83,0xec,0x88,0xe8,0xaf,0xea,0xaa,0xaa,0xea,0x8a,0xea,0x92,0x92,0xa2,0x82 -+// 37866 鏪 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x28,0xff,0x28,0xff,0xa9,0xff,0xa9,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 37867 鏫 ; -+,0x08,0x09,0x14,0x11,0x20,0x3c,0x49,0x08,0x7c,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x62,0xc2,0x4a,0xea,0x4a,0xea,0x42,0x46,0x10,0xff,0x10,0x38,0x54,0x93,0x10,0x10 -+// 37868 鏬 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0d,0x72,0x00,0x10,0x1e,0x10,0xff,0x92,0xfc,0x92,0x9e,0xe8,0xaa,0x9c,0xff,0x08,0x08,0x28,0x10 -+// 37869 鏭 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x29,0x0e,0x70,0x00,0x0e,0xf0,0x92,0x54,0xff,0x38,0x54,0x93,0x10,0x00,0x52,0x51,0x45,0x45,0x3c,0x00 -+// 37870 鏮 ; -+,0x08,0x08,0x15,0x11,0x21,0x3d,0x49,0x09,0x7f,0x09,0x49,0x29,0x2a,0x0e,0x74,0x00,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x92,0x54,0x38,0x54,0x93,0x50,0x20 -+// 37871 鏯 ; -+,0x08,0x08,0x09,0x14,0x12,0x3c,0x48,0x08,0x7d,0x08,0x4b,0x2c,0x28,0x0c,0x71,0x00,0x10,0x10,0xff,0xba,0x54,0xba,0x10,0x10,0x55,0x92,0x55,0x28,0x28,0x44,0x87,0x02 -+// 37872 鏰 ; -+,0x08,0x09,0x15,0x13,0x20,0x7d,0x11,0x11,0x7d,0x11,0x55,0x39,0x1e,0x62,0x04,0x00,0x10,0x11,0x11,0xff,0x00,0xef,0x29,0xef,0x29,0xef,0x29,0x29,0x29,0x29,0xb5,0x42 -+// 37873 鏱 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0e,0x70,0x00,0x20,0x10,0xfe,0x44,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 37874 鏲 ; -+,0x08,0x09,0x14,0x12,0x20,0x3f,0x49,0x08,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x10,0xff,0x20,0x7c,0x08,0xff,0x25,0x7e,0x50,0x7e,0x90,0xff,0x10,0x10,0x10,0x10 -+// 37875 鏳 ; -+,0x08,0x08,0x14,0x12,0x20,0x5e,0x08,0x7e,0x08,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x84,0x44,0x48,0xfe,0x92,0xd6,0xba,0xfe,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x44 -+// 37876 鏴 ; -+,0x08,0x0b,0x16,0x12,0x22,0x7f,0x10,0x7c,0x12,0x12,0x56,0x3a,0x12,0x1a,0x67,0x00,0x08,0xc8,0x4f,0x51,0x72,0xcc,0x8c,0x92,0xe1,0x9e,0x92,0x92,0x92,0xd2,0x1e,0x12 -+// 37877 鏵 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x48,0x48,0xff,0x48,0xfe,0x54,0x54,0xff,0x54,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 37878 鏶 ; -+,0x08,0x08,0x14,0x12,0x21,0x3c,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x50,0x48,0xff,0x88,0xfe,0x88,0xfe,0x88,0xff,0x10,0xff,0x58,0x54,0x97,0x12,0x10 -+// 37879 鏷 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x7e,0x08,0x49,0x2a,0x2c,0x0e,0x71,0x00,0x28,0xaa,0x6c,0xff,0x84,0x48,0xfe,0x10,0xfe,0x10,0xff,0x10,0x28,0x44,0x87,0x02 -+// 37880 鏸 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x7c,0x08,0x49,0x2c,0x29,0x0d,0x72,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x11,0xff,0x20,0x51,0x45,0x3d,0x00 -+// 37881 鏹 ; -+,0x08,0x0b,0x14,0x12,0x20,0x7d,0x11,0x11,0x7d,0x10,0x14,0x58,0x30,0x1c,0x61,0x00,0x00,0xde,0x52,0x52,0x5e,0xc8,0x3f,0x29,0xe9,0x7f,0x48,0x48,0x48,0x4a,0x7f,0x81 -+// 37882 鏺 ; -+,0x13,0x10,0x1a,0x25,0x21,0x7b,0x14,0x10,0x7b,0x12,0x13,0x58,0x30,0x1c,0x62,0x01,0xa4,0x98,0x92,0x0c,0x04,0xbb,0xa8,0xa8,0xc7,0x00,0xbe,0x94,0x88,0x94,0xa6,0x02 -+// 37883 鏻 ; -+,0x10,0x11,0x18,0x25,0x20,0x7c,0x13,0x10,0x7c,0x11,0x15,0x5a,0x30,0x1c,0x63,0x00,0x20,0x24,0xa8,0xfe,0x68,0xa7,0x22,0x84,0xff,0x34,0x34,0xdf,0x44,0x84,0x04,0x04 -+// 37884 鏼 ; -+,0x08,0x08,0x18,0x15,0x22,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x88,0xff,0xcc,0x32,0x10,0xff,0x10,0xff,0x91,0x91,0x9b,0x34,0x57,0x92,0x10,0x10 -+// 37885 鏽 ; -+,0x10,0x10,0x18,0x25,0x20,0x7e,0x12,0x13,0x7e,0x13,0x16,0x5b,0x32,0x1e,0x62,0x04,0x20,0xfc,0x24,0xff,0x24,0xfc,0xaa,0xae,0x22,0xfe,0x22,0xae,0xaa,0xaa,0xaa,0x22 -+// 37886 鏾 ; -+,0x11,0x11,0x1b,0x25,0x23,0x7c,0x13,0x12,0x7f,0x12,0x17,0x5a,0x32,0x1e,0x62,0x02,0x44,0x44,0xe4,0x48,0xef,0x09,0xd9,0x6a,0xca,0x44,0xc4,0x44,0x4a,0x52,0xe3,0x42 -+// 37887 鏿 ; -+,0x08,0x08,0x14,0x12,0x22,0x3c,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x10,0x92,0x54,0xff,0x82,0x7c,0x44,0x7c,0x10,0xff,0x10,0x38,0x54,0x97,0x12,0x10 -+// 37888 鐀 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x7e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 37889 鐁 ; -+,0x09,0x09,0x0b,0x15,0x21,0x7d,0x11,0x11,0x7d,0x11,0x13,0x54,0x39,0x1e,0x60,0x00,0x40,0x4f,0xe8,0x48,0xc8,0x4f,0x4a,0xca,0x4a,0x4a,0xea,0x0a,0x4a,0x32,0x12,0x22 -+// 37890 鐂 ; -+,0x08,0x09,0x14,0x13,0x21,0x3d,0x49,0x08,0x7d,0x09,0x4b,0x2d,0x29,0x0d,0x71,0x01,0x00,0xff,0x28,0xef,0x29,0x29,0xef,0x28,0xff,0x11,0x11,0xff,0x11,0x11,0xff,0x01 -+// 37891 鐃 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x08,0x7c,0x0b,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x10,0x10,0x7c,0x10,0xfe,0x88,0xde,0x88,0xdf,0x00,0xfe,0x48,0x49,0x89,0x07,0x00 -+// 37892 鐄 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x7e,0x08,0x08,0x2a,0x1c,0x0e,0x30,0x01,0x24,0x24,0x7e,0x24,0xff,0x10,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x00,0x24,0x43,0x81 -+// 37893 鐅 ; -+,0x04,0x15,0x0e,0x3f,0x24,0x2e,0x35,0x24,0x03,0x0d,0x70,0x03,0x04,0x02,0x7f,0x00,0x10,0x10,0x1f,0xa4,0xe4,0x98,0x94,0xe2,0x10,0xe8,0x87,0xe0,0x90,0xa0,0xff,0x00 -+// 37894 鐆 ; -+,0x00,0x3c,0x25,0x28,0x25,0x34,0x2b,0x20,0x23,0x0d,0x70,0x03,0x04,0x02,0x7f,0x00,0x88,0x50,0xfe,0x44,0xa8,0x54,0x93,0xd0,0x20,0xf8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37895 鐇 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x0e,0xf0,0x92,0x54,0xff,0x38,0x54,0x93,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 37896 鐈 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x49,0x08,0x7e,0x09,0x49,0x2b,0x2d,0x0d,0x71,0x01,0x1c,0xe0,0x20,0xfe,0x44,0xfb,0x48,0x78,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x06 -+// 37897 鐉 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x48,0x09,0x7c,0x08,0x4b,0x2c,0x28,0x0e,0x70,0x01,0x00,0xee,0x2a,0xee,0x09,0xef,0x48,0xff,0x48,0x48,0xff,0x00,0x44,0x42,0x83,0x02 -+// 37898 鐊 ; -+,0x10,0x11,0x19,0x25,0x21,0x7d,0x11,0x11,0x7d,0x11,0x15,0x59,0x31,0x1d,0x61,0x01,0x00,0xde,0x52,0x9e,0x92,0x5e,0x40,0x7f,0xd0,0x1f,0x2b,0x55,0x25,0x09,0x35,0x02 -+// 37899 鐋 ; -+,0x08,0x09,0x14,0x10,0x21,0x7c,0x10,0x10,0x7c,0x11,0x17,0x59,0x31,0x1d,0x61,0x00,0x3e,0x22,0xbe,0x22,0x3e,0x80,0x7f,0xa0,0xbf,0x2b,0x55,0x15,0x69,0x11,0x65,0x02 -+// 37900 鐌 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x20,0x7c,0x48,0xfe,0x92,0xfe,0x20,0x62,0x94,0x38,0xd4,0x2b,0x4a,0x88,0x28,0x10 -+// 37901 鐍 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x09,0x7f,0x09,0x4b,0x2d,0x29,0x0d,0x71,0x01,0xfe,0x04,0x18,0xff,0x32,0xd0,0x10,0xfe,0x4a,0x86,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 37902 鐎 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0d,0x72,0x00,0x40,0x50,0x48,0xff,0x90,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0x52,0x29,0x29,0x00 -+// 37903 鐏 ; -+,0x08,0x08,0x15,0x12,0x21,0x3d,0x49,0x09,0x7d,0x09,0x49,0x2c,0x2b,0x0c,0x70,0x00,0x84,0x48,0xff,0x48,0xfe,0x4a,0x8e,0x02,0xfe,0x02,0xfe,0x08,0xfe,0x88,0x48,0x18 -+// 37904 鐐 ; -+,0x08,0x08,0x15,0x13,0x20,0x3f,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x20,0x20,0xff,0x52,0x8c,0xff,0x84,0xfc,0x84,0xfc,0x10,0x94,0x92,0x12,0x52,0x20 -+// 37905 鐑 ; -+,0x08,0x08,0x14,0x12,0x21,0x7d,0x10,0x10,0x7d,0x13,0x14,0x5a,0x36,0x1a,0x60,0x00,0x44,0x44,0x84,0x9f,0x24,0xc4,0x5f,0x80,0x40,0xef,0x09,0xa9,0xa9,0xa9,0x0f,0x00 -+// 37906 鐒 ; -+,0x08,0x08,0x1a,0x15,0x22,0x3d,0x52,0x11,0x7d,0x10,0x14,0x58,0x30,0x1c,0x60,0x01,0x84,0x84,0xb5,0xce,0x84,0x4a,0x32,0xff,0x22,0x20,0xfc,0x24,0x44,0x44,0x94,0x08 -+// 37907 鐓 ; -+,0x09,0x08,0x1b,0x14,0x21,0x3d,0x51,0x10,0x7d,0x10,0x14,0x59,0x30,0x1c,0x61,0x00,0x08,0x88,0xf8,0x08,0xef,0x2a,0xf2,0x1a,0xea,0x4a,0x64,0xc4,0x4a,0x53,0x62,0x80 -+// 37908 鐔 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x00,0xff,0x28,0xfe,0xaa,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10 -+// 37909 鐕 ; -+,0x10,0x13,0x18,0x25,0x25,0x78,0x10,0x11,0x7a,0x10,0x14,0x58,0x30,0x1c,0x60,0x00,0x00,0xff,0x44,0x54,0xff,0xc4,0xc5,0x6d,0x52,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 37910 鐖 ; -+,0x08,0x08,0x14,0x13,0x21,0x3e,0x49,0x08,0x7e,0x09,0x2a,0x2c,0x08,0x0f,0x71,0x02,0x52,0x52,0xb4,0xdf,0x52,0x94,0xff,0x35,0x92,0xff,0x92,0xcc,0xa8,0x35,0x43,0x01 -+// 37911 鐗 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xef,0xa9,0xef,0xa9,0xef,0x81,0xbd,0xa5,0xbd,0xa5,0xbd,0xa5,0xcd,0x81,0x83 -+// 37912 鐘 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x20,0x10,0xfe,0x44,0x28,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xff -+// 37913 鐙 ; -+,0x08,0x09,0x15,0x12,0x20,0x3e,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x12,0xf4,0x28,0xcb,0x44,0x84,0x7b,0x00,0xfc,0x84,0xfc,0x00,0x84,0x48,0xff,0x00 -+// 37914 鐚 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x29,0x0e,0x70,0x00,0x00,0xff,0x28,0xee,0x82,0x82,0xee,0x28,0xff,0x00,0x10,0x4a,0x41,0x45,0x3c,0x00 -+// 37915 鐛 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x2a,0x0c,0x71,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x08,0x8a,0x89,0x29,0x10 -+// 37916 鐜 ; -+,0x04,0x3f,0x11,0x1f,0x00,0x3f,0x02,0x3f,0x14,0x0b,0x0f,0x70,0x07,0x02,0x3f,0x00,0x10,0x90,0x1f,0x22,0x34,0x48,0x14,0x27,0xc2,0x20,0xd8,0x87,0xf0,0xa0,0xff,0x00 -+// 37917 鐝 ; -+,0x08,0x0b,0x1a,0x17,0x22,0x7b,0x12,0x12,0x7b,0x13,0x56,0x3a,0x1e,0x65,0x0a,0x00,0x00,0xff,0x04,0x24,0xc8,0xef,0x52,0x44,0x54,0xf4,0x44,0x8a,0x8a,0x11,0x21,0x00 -+// 37918 鐞 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0xfe,0x02,0x7e,0x02,0xfe,0x00,0xef,0x49,0x6f,0x84,0xff,0x44,0x24,0x04,0x14,0x08 -+// 37919 鐟 ; -+,0x10,0x10,0x19,0x24,0x23,0x7c,0x10,0x11,0x7e,0x10,0x14,0x58,0x30,0x1c,0x60,0x00,0x84,0x84,0xef,0x84,0xef,0x84,0xc4,0x2a,0x11,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 37920 鐠 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x44,0x28,0xfe,0x28,0xaa,0x6c,0x28,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 37921 鐡 ; -+,0x08,0x08,0x15,0x12,0x21,0x3c,0x51,0x11,0x7d,0x10,0x15,0x59,0x30,0x1b,0x60,0x00,0x48,0x4c,0xfa,0x48,0xff,0x08,0xea,0x2a,0xea,0x04,0x2c,0x2d,0xd5,0x23,0x43,0x01 -+// 37922 鐢 ; -+,0x09,0x08,0x3f,0x08,0x1d,0x2a,0x29,0x4a,0x03,0x0c,0x73,0x00,0x07,0x02,0x3f,0x00,0x44,0x84,0x5f,0x04,0x4e,0x8d,0x55,0x84,0x60,0x18,0xe7,0x80,0xf0,0xa0,0xfe,0x00 -+// 37923 鐣 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0d,0x70,0x00,0x10,0x92,0x54,0xff,0x82,0x7c,0x44,0x7c,0x00,0x7c,0x10,0xfe,0x10,0xff,0x10,0x30 -+// 37924 鐤 ; -+,0x08,0x08,0x14,0x13,0x21,0x3d,0x51,0x11,0x7d,0x10,0x15,0x58,0x30,0x1d,0x61,0x02,0x78,0x48,0x78,0x4a,0x7a,0x4a,0x7a,0x02,0xee,0x28,0xee,0xaa,0xaa,0x2a,0x2a,0x2a -+// 37925 鐥 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x08,0x7e,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x44,0x24,0xfe,0x10,0xfe,0x10,0xff,0x92,0x54,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82 -+// 37926 鐦 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x49,0x09,0x7f,0x09,0x09,0x4b,0x2d,0x1f,0x71,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x7d,0x29,0x7d,0x29,0x29,0x29,0x49,0x05,0x02 -+// 37927 鐧 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x49,0x09,0x7d,0x09,0x4b,0x2d,0x29,0x0f,0x71,0x01,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x79,0x49,0x79,0x49,0x49,0x79,0x01,0x05,0x02 -+// 37928 鐨 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x28,0xfe,0x2a,0xfe,0xa8,0xff,0x49,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 37929 鐩 ; -+,0x08,0x0a,0x15,0x10,0x23,0x3d,0x51,0x11,0x7d,0x11,0x15,0x59,0x31,0x1d,0x62,0x00,0x42,0x22,0x24,0xff,0x10,0x22,0xd4,0x28,0xc8,0x1c,0x2b,0xc8,0x18,0x80,0x7f,0x00 -+// 37930 鐪 ; -+,0x08,0x08,0x15,0x13,0x21,0x3d,0x49,0x09,0x7d,0x09,0x4b,0x2d,0x09,0x0e,0x72,0x04,0x10,0x1e,0xff,0x22,0xfc,0x21,0x7f,0x4a,0x7e,0x4a,0x7e,0x08,0x7e,0x12,0x2a,0x44 -+// 37931 鐫 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x7e,0x09,0x49,0x2b,0x2d,0x0f,0x71,0x01,0x50,0x7f,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0xef,0x29,0x39,0x01,0x01,0x05,0x02 -+// 37932 鐬 ; -+,0x08,0x08,0x14,0x12,0x21,0x3c,0x49,0x09,0x7d,0x09,0x4b,0x2d,0x09,0x0e,0x75,0x00,0x10,0x10,0x5e,0x50,0xff,0x0a,0xff,0x08,0xf9,0x6a,0xaa,0x14,0x25,0x4b,0x91,0x00 -+// 37933 鐭 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x18,0x20,0xfe,0xd6,0xba,0xfe,0xba,0xd6,0x10,0xff,0x10,0x38,0x24,0x42,0x81 -+// 37934 鐮 ; -+,0x08,0x08,0x15,0x13,0x21,0x3d,0x51,0x11,0x7d,0x11,0x15,0x59,0x32,0x1a,0x65,0x00,0x20,0x10,0xff,0x44,0xff,0x28,0xfe,0x2a,0xff,0x2a,0xfe,0x28,0x6c,0xab,0x28,0x28 -+// 37935 鐯 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x09,0x7e,0x08,0x08,0x4b,0x2c,0x2e,0x70,0x00,0x48,0xff,0x48,0x22,0xfe,0x24,0x28,0xff,0x20,0x7e,0xc2,0x7e,0x42,0x42,0x7e,0x42 -+// 37936 鐰 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x49,0x09,0x7c,0x09,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x00,0x7c,0x44,0x7c,0x00,0xef,0x29,0xef,0x10,0xff,0x30,0x58,0x54,0x97,0x12,0x10 -+// 37937 鐱 ; -+,0x08,0x08,0x14,0x12,0x20,0x3f,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x00,0x10,0x10,0x28,0x44,0xff,0x00,0xee,0xaa,0xaa,0xee,0x44,0x44,0xa4,0x9a,0x11,0x20 -+// 37938 鐲 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x00,0xfe,0xaa,0xfe,0x40,0x7f,0xa1,0x21,0xfd,0xa5,0xfd,0x25,0xff,0x01,0x05,0x02 -+// 37939 鐳 ; -+,0x08,0x08,0x14,0x13,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x10,0xff,0x12,0xd6,0x10,0xd6,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 37940 鐴 ; -+,0x08,0x08,0x15,0x13,0x21,0x7d,0x11,0x11,0x7d,0x11,0x15,0x5a,0x32,0x1c,0x64,0x00,0x08,0x04,0xff,0x20,0x31,0x2a,0xe4,0x1f,0x04,0xe4,0xbf,0xa4,0xa4,0xa4,0xe4,0x04 -+// 37941 鐵 ; -+,0x08,0x08,0x14,0x12,0x21,0x3c,0x51,0x11,0x7d,0x10,0x15,0x58,0x31,0x1c,0x60,0x03,0x48,0x4c,0xea,0x48,0xff,0x08,0xe8,0x2a,0xea,0x0a,0xe4,0x84,0xed,0x95,0xe3,0x01 -+// 37942 鐶 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x49,0x08,0x7e,0x08,0x4a,0x2a,0x2d,0x0e,0x70,0x00,0x00,0xfe,0xaa,0xaa,0xfe,0x00,0xff,0x84,0x84,0xfc,0x4a,0xcc,0x44,0x54,0x63,0x42 -+// 37943 鐷 ; -+,0x08,0x09,0x14,0x12,0x20,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x28,0x0e,0x71,0x00,0x48,0xff,0x48,0x48,0xa4,0xff,0xa4,0xbc,0x80,0xfe,0x10,0xff,0x38,0x54,0x93,0x10 -+// 37944 鐸 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x29,0x0e,0x70,0x00,0x00,0xfe,0xaa,0xfe,0x10,0xfe,0x10,0xff,0x44,0x28,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 37945 鐹 ; -+,0x08,0x08,0x16,0x13,0x21,0x7c,0x10,0x16,0x7e,0x12,0x16,0x5a,0x32,0x1b,0x64,0x00,0x00,0x7c,0x44,0x74,0x54,0x54,0xfe,0x82,0xba,0xaa,0xba,0x82,0x86,0x00,0xff,0x00 -+// 37946 鐺 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x92,0x54,0xff,0x82,0x7c,0x44,0x7c,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82 -+// 37947 鐻 ; -+,0x08,0x08,0x14,0x13,0x21,0x3d,0x49,0x09,0x7d,0x09,0x4b,0x2d,0x29,0x0e,0x72,0x04,0x20,0x3e,0x20,0xff,0x22,0xfc,0x22,0xfe,0x20,0xd2,0x2c,0xd8,0x2c,0xcb,0x28,0x10 -+// 37948 鐼 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2a,0x2c,0x0e,0x70,0x00,0x10,0xfe,0x10,0x48,0xff,0x48,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x48,0x44,0x84 -+// 37949 鐽 ; -+,0x08,0x08,0x14,0x12,0x21,0x3e,0x48,0x09,0x7e,0x08,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x08,0x08,0x3e,0x08,0x7f,0x94,0x3e,0x88,0xbe,0x88,0xff,0x88,0x88,0xc8,0x3f,0x00 -+// 37950 鐾 ; -+,0x00,0x1f,0x11,0x1f,0x10,0x1f,0x31,0x5f,0x02,0x0f,0x70,0x03,0x04,0x02,0x3f,0x00,0x10,0x08,0x7e,0x24,0x7f,0x08,0x7e,0x88,0x60,0xd8,0x87,0xe0,0x90,0xa0,0xfe,0x00 -+// 37951 鐿 ; -+,0x08,0x08,0x14,0x12,0x21,0x3f,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x2a,0x0e,0x72,0x00,0x20,0x10,0xfe,0x44,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x22,0x91,0x85,0x7c,0x00 -+// 37952 鑀 ; -+,0x08,0x09,0x14,0x12,0x21,0x3d,0x48,0x09,0x7d,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x01,0x1e,0xe0,0xa2,0x54,0xff,0x12,0x52,0x45,0x7c,0x40,0x7c,0x48,0xb0,0x28,0x47,0x82 -+// 37953 鑁 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0c,0x70,0x00,0x14,0x44,0xab,0xd9,0xa5,0xcb,0xff,0x42,0xa1,0x3d,0x44,0xa8,0x10,0x28,0xc7,0x02 -+// 37954 鑂 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x0c,0x48,0x28,0x29,0x0c,0x71,0x00,0x0e,0xf0,0x10,0xff,0x10,0xfe,0xd6,0xba,0xfe,0x10,0xfe,0x10,0xff,0xaa,0x29,0x00 -+// 37955 鑃 ; -+,0x09,0x09,0x14,0x12,0x21,0x3e,0x48,0x08,0x7e,0x09,0x48,0x2a,0x2c,0x0e,0x70,0x00,0xef,0x29,0xa5,0xa5,0x29,0x21,0x48,0x7f,0x88,0xff,0x88,0xff,0x88,0x88,0xff,0x80 -+// 37956 鑄 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2d,0x09,0x0d,0x70,0x00,0x10,0xfe,0x10,0x7c,0x00,0xff,0x02,0x7e,0x10,0xff,0x04,0xdf,0x44,0xd4,0x04,0x0c -+// 37957 鑅 ; -+,0x08,0x08,0x15,0x12,0x21,0x3e,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0c,0x70,0x00,0x44,0x44,0x55,0xee,0x44,0xaa,0x11,0xff,0x92,0x7e,0x38,0x54,0x53,0x92,0x10,0x10 -+// 37958 鑆 ; -+,0x10,0x10,0x19,0x24,0x20,0x7d,0x11,0x10,0x7d,0x10,0x15,0x58,0x30,0x1c,0x61,0x00,0xa2,0xa2,0xb2,0xa2,0xa2,0xff,0x22,0xd2,0xea,0x4a,0xe2,0x42,0x42,0x62,0x8a,0x04 -+// 37959 鑇 ; -+,0x08,0x08,0x15,0x12,0x21,0x3e,0x49,0x0a,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x01,0x20,0x10,0xff,0x2a,0xd4,0xd6,0x55,0xd6,0x44,0x7c,0x44,0x7c,0x44,0x84,0x84,0x04 -+// 37960 鑈 ; -+,0x08,0x09,0x14,0x12,0x21,0x3d,0x49,0x09,0x7d,0x09,0x4b,0x2d,0x29,0x0f,0x71,0x01,0x00,0xff,0x54,0x92,0xff,0xbb,0x55,0xbb,0x11,0xbb,0x55,0xbb,0x11,0x11,0x15,0x02 -+// 37961 鑉 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x49,0x08,0x7e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x01,0x44,0x44,0xff,0x54,0xfe,0x10,0xff,0x20,0x44,0xfe,0x00,0xfe,0xaa,0xaa,0xaa,0xff -+// 37962 鑊 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x03,0x48,0xff,0x48,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x44,0x28,0x18,0x67,0x82 -+// 37963 鑋 ; -+,0x04,0x7f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x05,0x0e,0x77,0x00,0x07,0x02,0x3f,0x00,0x00,0x7f,0x2a,0x54,0x2a,0x7e,0x10,0x7f,0xc0,0x30,0xee,0x80,0xf0,0xa0,0xfe,0x00 -+// 37964 鑌 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0xff,0x82,0x7c,0x10,0x54,0x98,0x3e,0xc2,0x7e,0x42,0x7e,0x42,0x7e,0x24,0xc2 -+// 37965 鑍 ; -+,0x1f,0x15,0x1b,0x15,0x1f,0x02,0x09,0x30,0x03,0x0c,0x73,0x00,0x07,0x02,0x3f,0x00,0x7c,0x54,0x6c,0x54,0x7c,0x00,0x28,0xc4,0x60,0x18,0xc7,0x80,0xf8,0xa0,0xfe,0x00 -+// 37966 鑎 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x49,0x09,0x7d,0x09,0x49,0x2b,0x2d,0x0f,0x71,0x00,0x00,0xff,0x10,0x7e,0x52,0xff,0x00,0x7e,0x6a,0x56,0x7e,0x24,0x42,0x00,0xff,0x00 -+// 37967 鑏 ; -+,0x08,0x08,0x15,0x11,0x20,0x3e,0x48,0x08,0x7e,0x09,0x4a,0x2d,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0x12,0xa5,0xbd,0x00,0xfe,0xaa,0xff,0x00,0xff,0x10,0x10,0x50,0x20 -+// 37968 鑐 ; -+,0x08,0x08,0x14,0x13,0x21,0x3c,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x00,0xfe,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0xff,0x20,0xff,0xa9,0xa9,0xa9,0x83 -+// 37969 鑑 ; -+,0x10,0x11,0x19,0x25,0x21,0x3d,0x51,0x11,0x7c,0x11,0x15,0x59,0x31,0x1d,0x63,0x00,0x04,0xf4,0x44,0xef,0x28,0xf4,0x42,0xf2,0x00,0xfe,0x4a,0x4a,0x4a,0x4a,0xff,0x00 -+// 37970 鑒 ; -+,0x3e,0x28,0x3e,0x23,0x3e,0x28,0x3e,0x00,0x03,0x0c,0x73,0x00,0x07,0x02,0x3f,0x00,0x40,0x7f,0xa0,0x10,0xfe,0xaa,0xfe,0x80,0x60,0x18,0xe7,0x80,0xf0,0xa0,0xfe,0x00 -+// 37971 鑓 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x71,0x02,0x08,0x3e,0x2a,0xbe,0x88,0x3f,0x80,0xbe,0xa2,0xbe,0xa0,0xbe,0xa2,0xbe,0x40,0x3f -+// 37972 鑔 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7f,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x20,0x10,0xff,0xa2,0x3f,0x6a,0xd4,0x22,0x7d,0x80,0x7e,0x08,0x4a,0x49,0xa9,0x10 -+// 37973 鑕 ; -+,0x08,0x08,0x14,0x12,0x20,0x3c,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0xef,0x88,0xff,0xaa,0xb2,0x22,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0xc2 -+// 37974 鑖 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x48,0x2a,0x2c,0x0e,0x71,0x00,0x44,0x44,0xff,0x44,0xfe,0xaa,0xfe,0x14,0x12,0xff,0x88,0xca,0xa5,0x8d,0x13,0x00 -+// 37975 鑗 ; -+,0x08,0x09,0x14,0x13,0x20,0x3d,0x48,0x08,0x7e,0x09,0x48,0x2a,0x2c,0x0f,0x78,0x00,0x28,0xc8,0x4f,0xf5,0xe5,0x59,0x53,0x28,0x44,0x93,0x54,0x38,0xd6,0x12,0x50,0x20 -+// 37976 鑘 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x08,0x08,0x7d,0x09,0x4b,0x2d,0x29,0x0f,0x71,0x01,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x55,0x55,0xff,0x55,0x55,0xff,0x01 -+// 37977 鑙 ; -+,0x08,0x09,0x14,0x13,0x20,0x3d,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x2c,0xca,0x5f,0xec,0xed,0x55,0x67,0x9c,0xe1,0x7f,0x00,0xfe,0x82,0xfe,0x82,0xfe -+// 37978 鑚 ; -+,0x08,0x09,0x14,0x13,0x20,0x3d,0x4a,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x84,0xce,0x84,0xef,0x84,0x4a,0xff,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x28,0x46,0x82 -+// 37979 鑛 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x0f,0x71,0x02,0x00,0x10,0x08,0xff,0xa4,0xff,0xa4,0xff,0x88,0xbf,0xa9,0xbf,0xa9,0x3f,0x14,0x23,0x41 -+// 37980 鑜 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x54,0x38,0xff,0x82,0x7c,0x44,0x7c,0x00,0xfe,0xca,0xa6,0x92,0xfe,0x24,0x42,0x82 -+// 37981 鑝 ; -+,0x10,0x10,0x19,0x24,0x22,0x3d,0x51,0x10,0x7b,0x11,0x15,0x59,0x31,0x1d,0x62,0x04,0x48,0x48,0xff,0x48,0x1e,0x34,0x08,0x37,0x88,0x3e,0x08,0x3e,0x08,0x7f,0x88,0x7f -+// 37982 鑞 ; -+,0x08,0x08,0x15,0x12,0x20,0x3d,0x49,0x09,0x7d,0x09,0x4b,0x2d,0x29,0x0d,0x71,0x01,0x92,0x92,0x24,0x92,0x00,0xfe,0x52,0x22,0xfe,0x24,0xb4,0x6c,0xb5,0x6b,0xb3,0x21 -+// 37983 鑟 ; -+,0x08,0x09,0x14,0x12,0x20,0x3f,0x49,0x09,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0xff,0x10,0xfe,0x00,0xff,0x25,0xff,0x00,0xfe,0xca,0xa6,0x92,0xfe,0x44,0x82 -+// 37984 鑠 ; -+,0x10,0x10,0x19,0x26,0x23,0x7d,0x12,0x13,0x7c,0x13,0x54,0x38,0x14,0x19,0x62,0x00,0x92,0xa2,0x74,0x55,0xfe,0x52,0xd5,0xff,0x20,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 37985 鑡 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x5e,0x50,0xff,0x00,0xa5,0xa5,0xdb,0xff,0x81,0xa5,0xa5,0xdb,0xff,0x81 -+// 37986 鑢 ; -+,0x10,0x10,0x18,0x25,0x21,0x3d,0x51,0x11,0x7d,0x11,0x15,0x59,0x32,0x1e,0x65,0x00,0x20,0x3c,0x20,0xff,0x22,0xf8,0x22,0x7e,0x52,0x7e,0x52,0x7e,0xa9,0xa5,0x1e,0x00 -+// 37987 鑣 ; -+,0x08,0x09,0x15,0x13,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x55,0x3a,0x1e,0x65,0x00,0x10,0xff,0x28,0xfe,0x2a,0xfe,0x48,0x4a,0x6c,0x49,0x67,0x00,0xaa,0x95,0x15,0x00 -+// 37988 鑤 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x08,0x7d,0x08,0x0b,0x2c,0x1e,0x71,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x48,0xfe,0x48,0xff,0x54,0x93,0x94,0x58,0x96,0x50,0x20 -+// 37989 鑥 ; -+,0x08,0x08,0x14,0x13,0x20,0x3e,0x48,0x08,0x7e,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x40,0x7c,0x88,0xfe,0x92,0xfe,0x92,0xfe,0xaa,0x15,0xfe,0x82,0xfe,0x82,0xfe,0x82 -+// 37990 鑦 ; -+,0x09,0x09,0x15,0x13,0x21,0x3d,0x49,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0xe0,0x5f,0xe9,0x2a,0xe4,0x4a,0xf1,0x00,0xfe,0x92,0xca,0xa6,0x92,0xfe,0x24,0xc2 -+// 37991 鑧 ; -+,0x08,0x09,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x48,0x2a,0x2c,0x0e,0x70,0x01,0x10,0xff,0x02,0x44,0xfe,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x55,0x53,0x8f -+// 37992 鑨 ; -+,0x09,0x08,0x15,0x11,0x20,0x3d,0x50,0x11,0x7d,0x11,0x11,0x55,0x39,0x1d,0x61,0x01,0x08,0x88,0xef,0x28,0xce,0xf2,0x0e,0xe8,0x2e,0xe8,0x2e,0xe8,0x2e,0x29,0x69,0x27 -+// 37993 鑩 ; -+,0x08,0x09,0x14,0x13,0x21,0x3d,0x48,0x09,0x7c,0x09,0x49,0x2b,0x2d,0x0c,0x73,0x00,0x00,0xff,0x10,0xd7,0x55,0xd7,0x10,0xff,0x10,0xd7,0x55,0x55,0xd7,0x10,0xff,0x00 -+// 37994 鑪 ; -+,0x10,0x10,0x18,0x25,0x21,0x7d,0x11,0x11,0x7d,0x11,0x55,0x3a,0x1a,0x62,0x05,0x00,0x20,0x3c,0x20,0xff,0x22,0xf8,0x24,0x7c,0x54,0x7c,0x54,0xfe,0xaa,0xaa,0xff,0x00 -+// 37995 鑫 ; -+,0x01,0x02,0x04,0x1b,0x60,0x03,0x04,0x1f,0x08,0x14,0x3f,0x44,0x1e,0x15,0x0f,0x38,0x80,0x40,0x30,0xce,0x80,0xe0,0x90,0xfe,0x10,0x28,0x7c,0x93,0x78,0x54,0x38,0xff -+// 37996 鑬 ; -+,0x09,0x09,0x09,0x15,0x23,0x3d,0x51,0x10,0x7c,0x10,0x14,0x58,0x30,0x1c,0x60,0x01,0xe8,0x48,0xef,0x2c,0xf2,0x42,0xf0,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x49,0x8f -+// 37997 鑭 ; -+,0x09,0x09,0x15,0x13,0x21,0x3d,0x49,0x09,0x7d,0x09,0x49,0x2b,0x2d,0x0f,0x71,0x01,0xef,0x29,0xef,0x29,0xef,0x11,0xff,0x11,0xff,0x55,0xff,0x39,0xd5,0x11,0x15,0x02 -+// 37998 鑮 ; -+,0x08,0x09,0x08,0x14,0x22,0x3d,0x50,0x12,0x7d,0x10,0x14,0x5b,0x31,0x19,0x61,0x01,0x44,0xff,0x55,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0xd2,0x7f,0x24,0x14,0x04,0x0c -+// 37999 鑯 ; -+,0x09,0x09,0x19,0x16,0x23,0x3c,0x50,0x13,0x7c,0x13,0x14,0x5b,0x30,0x1c,0x63,0x00,0x28,0x2c,0xaa,0x58,0xff,0x08,0xa8,0xb9,0xa9,0xba,0xa4,0xb4,0xad,0xb3,0xc3,0x01 -+// 38000 鑰 ; -+,0x08,0x08,0x08,0x15,0x10,0x3d,0x51,0x11,0x7c,0x11,0x11,0x55,0x39,0x1d,0x61,0x01,0x20,0x30,0x4c,0xfb,0x00,0xdf,0x55,0xdf,0x00,0xff,0x49,0xff,0x49,0x49,0x49,0x03 -+// 38001 鑱 ; -+,0x08,0x08,0x15,0x12,0x20,0x3e,0x48,0x08,0x7e,0x08,0x4b,0x2c,0x28,0x0e,0x73,0x00,0x7c,0x48,0xfe,0x82,0xfe,0xcf,0xa9,0xff,0x48,0xfe,0x92,0xfe,0x29,0x4b,0x8f,0x00 -+// 38002 鑲 ; -+,0x08,0x08,0x15,0x12,0x20,0x3c,0x49,0x08,0x7d,0x08,0x49,0x2a,0x2c,0x0d,0x72,0x00,0x20,0x10,0xff,0xaa,0xee,0x48,0xff,0x48,0xfe,0x48,0xff,0x52,0x8c,0xa4,0xc7,0x82 -+// 38003 鑳 ; -+,0x08,0x09,0x15,0x12,0x20,0x3c,0x48,0x09,0x7c,0x08,0x09,0x4a,0x2c,0x2e,0x70,0x01,0x10,0xff,0x29,0xfe,0x28,0xfe,0x28,0xff,0x44,0xfe,0x45,0x7c,0x10,0x9e,0xd0,0x3f -+// 38004 鑴 ; -+,0x08,0x08,0x14,0x12,0x20,0x3d,0x48,0x08,0x7e,0x08,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x92,0xfe,0x50,0xff,0x88,0xfe,0x88,0xfe,0x88,0xff,0xa5,0xff,0xa5,0xbd,0x83 -+// 38005 鑵 ; -+,0x08,0x09,0x14,0x12,0x20,0x3e,0x48,0x08,0x7e,0x09,0x48,0x2a,0x2c,0x0e,0x70,0x00,0x44,0xff,0x44,0xee,0xaa,0xee,0x10,0x88,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 38006 鑶 ; -+,0x10,0x11,0x18,0x24,0x20,0x7a,0x12,0x13,0x78,0x13,0x12,0x5a,0x32,0x1a,0x60,0x01,0x24,0xff,0x24,0x0a,0xff,0x88,0xf8,0xa9,0xf5,0x96,0xf6,0xa5,0xf5,0x8b,0x93,0x01 -+// 38007 鑷 ; -+,0x09,0x08,0x14,0x12,0x20,0x3b,0x50,0x13,0x7d,0x11,0x11,0x55,0x39,0x1b,0x60,0x00,0xfe,0xa8,0xd8,0xa8,0x98,0xff,0x08,0xff,0x4a,0xce,0x4a,0xce,0x6a,0xdf,0x42,0x42 -+// 38008 鑸 ; -+,0x08,0x08,0x14,0x12,0x20,0x7c,0x13,0x12,0x7f,0x12,0x13,0x54,0x39,0x1c,0x63,0x00,0xfc,0xa4,0xfc,0xa4,0xfc,0x00,0xfe,0xaa,0xfe,0xaa,0xfe,0x20,0xfc,0x20,0xff,0x00 -+// 38009 鑹 ; -+,0x08,0x09,0x09,0x14,0x13,0x3d,0x51,0x11,0x7d,0x11,0x55,0x39,0x11,0x1d,0x61,0x01,0x10,0xff,0x4a,0x84,0xde,0x02,0xde,0x02,0xfe,0xb4,0x6c,0xb4,0x6d,0x23,0xb3,0x21 -+// 38010 鑺 ; -+,0x09,0x09,0x15,0x13,0x21,0x3d,0x49,0x08,0x7e,0x09,0x09,0x4a,0x2c,0x0e,0x70,0x00,0xef,0x29,0xef,0x29,0xef,0x29,0xef,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80 -+// 38011 鑻 ; -+,0x08,0x0b,0x18,0x15,0x22,0x3c,0x50,0x11,0x7c,0x10,0x15,0x58,0x30,0x1d,0x60,0x00,0xaa,0xd7,0xaa,0xc7,0xaa,0x92,0x28,0xff,0x44,0xfa,0x11,0x7c,0x10,0xff,0x10,0x30 -+// 38012 鑼 ; -+,0x09,0x09,0x19,0x15,0x22,0x7c,0x11,0x11,0x7c,0x11,0x15,0x58,0x3d,0x62,0x04,0x00,0xfe,0x4a,0x4a,0xfe,0x8c,0x92,0x5f,0xd4,0x9f,0x14,0xd4,0x1f,0x54,0xb4,0x9f,0x10 -+// 38013 鑽 ; -+,0x12,0x13,0x18,0x27,0x21,0x7d,0x12,0x10,0x7c,0x10,0x10,0x54,0x38,0x1c,0x60,0x00,0x94,0xdf,0x94,0xff,0x4a,0x6a,0x53,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x24,0xc2 -+// 38014 鑾 ; -+,0x10,0x13,0x24,0x79,0x10,0x29,0x7c,0x55,0x55,0x01,0x02,0x0f,0x70,0x07,0x02,0x3f,0x84,0xe4,0x09,0xde,0x04,0xca,0x1f,0xd5,0x55,0xc0,0x20,0xf8,0x87,0xf0,0xa0,0xff -+// 38015 鑿 ; -+,0x2a,0x7f,0x11,0x3f,0x04,0x3f,0x35,0x24,0x3f,0x01,0x07,0x78,0x03,0x04,0x02,0x1f,0x80,0xdc,0x14,0x93,0x20,0x9e,0x94,0x88,0xb7,0x40,0xf0,0x8f,0xe0,0x90,0xa0,0xfe -+// 38016 钀 ; -+,0x10,0x10,0x18,0x27,0x22,0x7b,0x12,0x12,0x7a,0x12,0x16,0x5b,0x33,0x1b,0x65,0x09,0x42,0x72,0x42,0xfb,0x52,0xef,0x42,0xf2,0x92,0xf2,0x02,0xfa,0x5b,0xfd,0x29,0x29 -+// 38017 钁 ; -+,0x09,0x09,0x19,0x15,0x21,0x3c,0x51,0x13,0x7d,0x11,0x15,0x59,0x31,0x1c,0x60,0x03,0xde,0x52,0xde,0x52,0xde,0xa0,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xfe,0x44,0x38,0xef -+// 38018 钂 ; -+,0x10,0x10,0x19,0x25,0x22,0x7c,0x11,0x11,0x7d,0x11,0x14,0x59,0x30,0x1d,0x61,0x02,0x92,0x54,0xff,0x02,0xfc,0x84,0xfe,0x96,0x5a,0xfe,0x10,0xff,0x10,0xff,0x4a,0x25 -+// 38019 钃 ; -+,0x09,0x09,0x19,0x15,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x55,0x3a,0x1e,0x64,0x00,0xff,0x01,0xff,0x52,0x34,0x52,0x7f,0x55,0x7f,0x20,0x7f,0xd5,0x7d,0x15,0x7f,0x03 -+// 38020 钄 ; -+,0x08,0x09,0x18,0x15,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x55,0x39,0x1d,0x61,0x01,0x44,0xff,0x44,0xef,0x29,0xef,0x29,0xef,0x11,0xff,0x55,0xff,0x39,0x55,0x11,0x03 -+// 38021 钅 ; -+,0x08,0x08,0x08,0x1f,0x10,0x10,0x2f,0x24,0x44,0x3f,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 38022 钆 ; -+,0x08,0x08,0x08,0x0f,0x10,0x10,0x3f,0x24,0x44,0x3f,0x04,0x04,0x05,0x06,0x04,0x00,0x20,0x20,0x20,0xa0,0x20,0x20,0xa0,0x20,0x20,0xa0,0x20,0xa1,0x21,0x21,0x1f,0x00 -+// 38023 钇 ; -+,0x08,0x08,0x08,0x1f,0x10,0x3e,0x28,0x48,0x7f,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x00,0x7e,0x02,0x04,0x08,0x10,0x10,0x20,0x40,0x40,0x81,0x81,0x81,0x7f,0x00 -+// 38024 针 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 38025 钉 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20 -+// 38026 钊 ; -+,0x08,0x08,0x0f,0x08,0x10,0x1f,0x24,0x44,0x3f,0x04,0x04,0x04,0x04,0x05,0x06,0x04,0x02,0x02,0x82,0x12,0x12,0x12,0x12,0x12,0x92,0x12,0x12,0x12,0x02,0x02,0x0a,0x04 -+// 38027 钋 ; -+,0x08,0x08,0x0f,0x08,0x10,0x1f,0x24,0x44,0x3f,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x10,0x10,0x90,0x10,0x10,0x10,0x18,0x16,0x93,0x11,0x10,0x10,0x10,0x10,0x10,0x10 -+// 38028 钌 ; -+,0x08,0x08,0x0f,0x08,0x10,0x1f,0x24,0x44,0x3f,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x00,0x7f,0x82,0x04,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 38029 钍 ; -+,0x08,0x08,0x0f,0x08,0x10,0x1f,0x24,0x44,0x3f,0x04,0x04,0x04,0x05,0x06,0x05,0x00,0x10,0x10,0x90,0x10,0x10,0x7e,0x10,0x10,0x90,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 38030 钎 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x0e,0x70,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 38031 钏 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x01,0x41,0x41,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x49,0x89,0x89,0x01,0x01 -+// 38032 钐 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x09,0x00,0x00,0x04,0x08,0x10,0x60,0x00,0x04,0x08,0x30,0x01,0x02,0x04,0x08,0x30,0xc0,0x00 -+// 38033 钑 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x11,0x15,0x1a,0x14,0x00,0x00,0xfe,0x42,0x44,0x44,0x48,0x4e,0x42,0xa2,0xa4,0x94,0x08,0x18,0x27,0xc2,0x00 -+// 38034 钒 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x19,0x12,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x64,0x54,0x54,0x44,0x45,0x85,0x85,0x05,0x03,0x00 -+// 38035 钓 ; -+,0x08,0x08,0x10,0x1f,0x10,0x3e,0x29,0x48,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x20,0x20,0x20,0x7f,0x41,0x81,0x01,0x21,0x11,0x09,0x09,0x01,0x01,0x05,0x02,0x00 -+// 38036 钔 ; -+,0x11,0x10,0x1c,0x11,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0x00,0x9f,0x41,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x02 -+// 38037 钕 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x09,0x0a,0x0c,0x0b,0x00,0x10,0x10,0x10,0x20,0xff,0x24,0x44,0x44,0x88,0x48,0x30,0x18,0x24,0xc6,0x02,0x00 -+// 38038 钖 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x7e,0x04,0x08,0x10,0x20,0x7f,0x29,0x29,0x49,0x51,0x91,0x21,0xc1,0x05,0x02 -+// 38039 钗 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0xfe,0x82,0xa2,0x94,0x54,0x44,0x48,0x28,0x28,0x10,0x28,0x28,0x44,0x83,0x02 -+// 38040 钘 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x51,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x11,0x00,0x00,0xfe,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 38041 钙 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0xff,0x10,0x10,0x1f,0x90,0x90,0x90,0xff,0x01,0x01,0x01,0x01,0x01,0x05,0x02 -+// 38042 钚 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x00,0xff,0x08,0x08,0x10,0x10,0x38,0x34,0x52,0x91,0x11,0x10,0x10,0x10,0x10 -+// 38043 钛 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x0a,0x0d,0x0a,0x00,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x28,0x28,0x44,0xa4,0x13,0x02,0x00 -+// 38044 钜 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x7f,0x40,0x40,0x40,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x40,0x7f,0x00 -+// 38045 钝 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 38046 钞 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x11,0x7e,0x10,0x10,0x12,0x14,0x18,0x17,0x00,0x00,0x10,0x10,0x50,0x54,0x93,0x91,0x10,0x31,0x12,0x04,0x08,0x30,0xc0,0x00,0x00 -+// 38047 钟 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 38048 钠 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x10,0x14,0x18,0x10,0x10,0x10,0x10,0xff,0x91,0x91,0x91,0xa9,0xa5,0xc5,0x81,0x81,0x81,0x81,0x85,0x82 -+// 38049 钡 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x13,0x00,0x00,0xfe,0x82,0x82,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x28,0x24,0xc2,0x03,0x01 -+// 38050 钢 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0xff,0x81,0x85,0xc5,0xa9,0x91,0x91,0xa9,0xa5,0xc5,0x81,0x81,0x81,0x85,0x82 -+// 38051 钣 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x15,0x19,0x12,0x00,0x0e,0xf0,0x80,0x80,0x80,0xfe,0xc2,0xa4,0xa4,0x98,0x88,0x94,0x26,0x43,0x82,0x00 -+// 38052 钤 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x10,0x7d,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x20,0x20,0x50,0x48,0x84,0x27,0x12,0x10,0xfc,0x04,0x08,0x08,0x10,0x10,0x20,0x00 -+// 38053 钥 ; -+,0x08,0x08,0x0f,0x08,0x10,0x1f,0x24,0x44,0x3f,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x00,0x3e,0xa2,0x22,0x3e,0x22,0x22,0x22,0xbe,0x22,0x22,0x22,0x42,0x4a,0x84,0x00 -+// 38054 钦 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x20,0x20,0x20,0x40,0x7f,0x52,0x94,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 38055 钧 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x20,0x20,0x20,0x7e,0x42,0x82,0x42,0x32,0x02,0x0a,0x12,0x62,0x02,0x02,0x0a,0x04 -+// 38056 钨 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x11,0x10,0x14,0x18,0x10,0x20,0x40,0xfc,0x84,0x84,0x84,0x94,0x88,0xfe,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 38057 钩 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x20,0x20,0x20,0x40,0x7f,0x81,0x21,0x21,0x41,0x49,0xfd,0x05,0x01,0x01,0x05,0x02 -+// 38058 钪 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x09,0x00,0x40,0x30,0x10,0xff,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 38059 钫 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x0a,0x0d,0x0a,0x00,0x20,0x10,0x08,0xff,0x20,0x20,0x3e,0x22,0x22,0x42,0x42,0x42,0x82,0x0a,0x04,0x00 -+// 38060 钬 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x00,0x10,0x10,0x10,0x12,0x96,0x98,0x90,0x10,0x28,0x28,0x48,0x44,0x87,0x02,0x00 -+// 38061 钭 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x04,0x04,0x44,0x24,0x24,0x04,0x44,0x24,0x24,0xff,0x04,0x04,0x04,0x04,0x04,0x04 -+// 38062 钮 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x00,0xfc,0x24,0x24,0x24,0x24,0x24,0xfc,0x44,0x44,0x44,0x44,0x44,0x44,0xfe,0x00 -+// 38063 钯 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x80,0x80,0x80,0x81,0x81,0x81,0x7f,0x00 -+// 38064 钰 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x09,0x00,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0xfe,0x10,0x14,0x12,0x12,0x10,0x10,0xff,0x00 -+// 38065 钱 ; -+,0x10,0x10,0x1e,0x10,0x21,0x3c,0x50,0x11,0x7e,0x10,0x10,0x10,0x14,0x19,0x10,0x00,0x50,0x48,0x48,0x7e,0xc0,0x40,0x5e,0xe0,0x22,0x24,0x18,0x30,0x49,0x85,0x03,0x01 -+// 38066 钲 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x0b,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x9f,0x90,0x90,0x90,0x90,0x90,0x90,0xff,0x00 -+// 38067 钳 ; -+,0x08,0x08,0x10,0x1e,0x21,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 38068 钴 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 38069 钵 ; -+,0x10,0x10,0x1f,0x10,0x21,0x3e,0x50,0x10,0x7e,0x10,0x10,0x11,0x14,0x18,0x10,0x00,0x10,0x10,0x10,0x10,0xfe,0x10,0x38,0x58,0x54,0x94,0xfe,0x11,0x10,0x10,0x10,0x10 -+// 38070 钶 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0x00,0xff,0x02,0x02,0xf2,0x92,0x92,0x92,0x92,0xf2,0x02,0x02,0x02,0x0a,0x04 -+// 38071 钷 ; -+,0x10,0x10,0x10,0x1e,0x20,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0xfe,0x80,0x80,0x80,0xbc,0xa4,0xa4,0xa4,0xa4,0xbc,0x80,0x80,0x80,0xff,0x00 -+// 38072 钸 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3c,0x50,0x10,0x7d,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x08,0x08,0x10,0xff,0x20,0x50,0x7e,0xd2,0x52,0x52,0x52,0x52,0x56,0x10,0x10,0x10 -+// 38073 钹 ; -+,0x10,0x10,0x1e,0x10,0x21,0x3e,0x50,0x10,0x7e,0x10,0x10,0x11,0x15,0x1a,0x15,0x00,0x40,0x48,0x44,0x44,0xff,0x40,0x7c,0x44,0xc4,0xa8,0xa8,0x10,0x28,0x44,0x83,0x00 -+// 38074 钺 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x10,0x14,0x12,0x10,0xff,0x90,0x92,0x92,0x94,0x94,0xa8,0xc9,0x95,0x25,0xc3,0x01 -+// 38075 钻 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 38076 钼 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 38077 钽 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x00,0x00,0x00,0x00,0xff,0x00 -+// 38078 钾 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 38079 钿 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x00,0xfe,0x92,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 38080 铀 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 38081 铁 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3c,0x49,0x09,0x7e,0x08,0x08,0x09,0x0a,0x0c,0x0b,0x00,0x10,0x10,0x90,0x90,0xfe,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 38082 铂 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x08,0x08,0x10,0x7f,0x41,0x41,0x41,0x7f,0x41,0x41,0x41,0x41,0x41,0x7f,0x41,0x00 -+// 38083 铃 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x20,0x20,0x20,0x50,0x48,0xa7,0x12,0x10,0xfe,0x04,0x08,0x50,0x20,0x10,0x18,0x10 -+// 38084 铄 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x11,0x15,0x1a,0x10,0x00,0x0e,0xf0,0x80,0x80,0x90,0x90,0xff,0x10,0x10,0x94,0x92,0x13,0x11,0x11,0x50,0x20 -+// 38085 铅 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x83,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 38086 铆 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x20,0xc0,0x8f,0x89,0xa9,0xa9,0xa9,0xa9,0xa9,0xe9,0xad,0x2a,0x48,0x48,0x88,0x08 -+// 38087 铇 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x20,0x20,0x40,0x7e,0x82,0xf2,0x92,0x92,0xf2,0x82,0x8a,0x85,0x81,0x81,0x7f,0x00 -+// 38088 铈 ; -+,0x08,0x08,0x11,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x20,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x9a,0x94,0x10,0x10,0x10 -+// 38089 铉 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0d,0x08,0x20,0x10,0x00,0xff,0x10,0x10,0x22,0x44,0xf8,0x08,0x10,0x20,0x42,0x81,0xff,0x01 -+// 38090 铊 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x20,0x10,0x10,0xff,0x82,0x00,0x40,0x42,0x4c,0x70,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 38091 铋 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x09,0x7f,0x09,0x0a,0x09,0x0a,0x0c,0x09,0x00,0x20,0x12,0x12,0x52,0x44,0x44,0x48,0x4a,0x51,0x51,0x60,0x62,0x42,0xc2,0x3e,0x00 -+// 38092 铌 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x0b,0x0d,0x0a,0x00,0x00,0xfe,0x82,0x82,0xfe,0x80,0xa0,0xa2,0xac,0xb0,0xa0,0xa1,0x21,0x21,0x1f,0x00 -+// 38093 铍 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0b,0x0d,0x0a,0x00,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0xc2,0xa4,0xa4,0x98,0x88,0x18,0x27,0xc2,0x00 -+// 38094 铎 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x51,0x10,0x7e,0x10,0x10,0x11,0x14,0x18,0x10,0x00,0x00,0xfc,0x44,0x28,0x10,0x68,0x87,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 38095 铏 ; -+,0x10,0x11,0x1e,0x10,0x20,0x3c,0x53,0x10,0x7e,0x10,0x10,0x11,0x15,0x1a,0x14,0x00,0x01,0xf1,0xa1,0xa5,0xa5,0xa5,0xfd,0xa5,0xa5,0xa5,0xa5,0x21,0x21,0x21,0x25,0x02 -+// 38096 铐 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x10,0x7c,0x13,0x10,0x10,0x10,0x14,0x18,0x10,0x20,0x22,0xfa,0x24,0x28,0xff,0x20,0x7e,0xa0,0x20,0x3e,0x02,0x02,0x02,0x0a,0x04 -+// 38097 铑 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x51,0x10,0x7e,0x10,0x11,0x10,0x14,0x18,0x10,0x00,0x20,0x20,0x20,0xfa,0x22,0x24,0xff,0x10,0x20,0x40,0xce,0x70,0x42,0x42,0x3e,0x00 -+// 38098 铒 ; -+,0x08,0x09,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x09,0x08,0x0a,0x0c,0x08,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0x5f,0xe4,0x04,0x04,0x04,0x04 -+// 38099 铓 ; -+,0x08,0x08,0x11,0x1e,0x20,0x3e,0x48,0x09,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x48,0x48,0xff,0x48,0x48,0x20,0x10,0xff,0x80,0x80,0x80,0x80,0x80,0x80,0xff,0x00 -+// 38100 铔 ; -+,0x08,0x09,0x10,0x1e,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x08,0x09,0x0a,0x0d,0x08,0x00,0xff,0x28,0x28,0x28,0x29,0x29,0xaa,0xaa,0xac,0x28,0x28,0x28,0x28,0xff,0x00 -+// 38101 铕 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x09,0x7f,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x10,0x10,0xff,0x20,0x20,0x7e,0xc2,0x42,0x7e,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 38102 铖 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x11,0x15,0x1a,0x14,0x00,0x08,0x0c,0x0a,0xff,0x88,0x8a,0xea,0xaa,0xac,0xa4,0xa8,0x6d,0x15,0x23,0x01,0x00 -+// 38103 铗 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7d,0x10,0x10,0x12,0x14,0x18,0x11,0x06,0x20,0x20,0x20,0xfe,0x20,0x24,0xa4,0x68,0xff,0x20,0x50,0x50,0x88,0x84,0x07,0x02 -+// 38104 铘 ; -+,0x10,0x13,0x1e,0x11,0x21,0x3d,0x53,0x10,0x7c,0x10,0x11,0x11,0x16,0x19,0x10,0x00,0x00,0xef,0x4a,0x4a,0x4a,0x4c,0xea,0xc9,0xc9,0xc9,0x4d,0x4a,0x48,0x48,0x88,0x08 -+// 38105 铙 ; -+,0x10,0x10,0x1e,0x11,0x20,0x3c,0x50,0x10,0x7d,0x10,0x10,0x10,0x14,0x18,0x11,0x00,0x40,0x40,0x7e,0xc0,0x28,0x12,0x2a,0xc6,0xff,0x50,0x50,0x51,0x91,0x91,0x0f,0x00 -+// 38106 铚 ; -+,0x10,0x11,0x10,0x1e,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x11,0x00,0x00,0xff,0x10,0x20,0x24,0x42,0xff,0x12,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 38107 铛 ; -+,0x10,0x10,0x11,0x1e,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x10,0x10,0x11,0x92,0x54,0x58,0xff,0x01,0x01,0xff,0x01,0x01,0x01,0x01,0xff,0x00 -+// 38108 铜 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0xff,0x81,0x81,0xfd,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82 -+// 38109 铝 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0xff,0x81,0x81,0x81,0x81,0xff,0x81,0x00 -+// 38110 铞 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x7e,0x42,0x42,0x42,0x7e,0x10,0xff,0x91,0x91,0x91,0x91,0x95,0x92,0x10,0x10,0x10 -+// 38111 铟 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0xaa,0xa6,0xc2,0x82,0x82,0x82,0xfe,0x82 -+// 38112 铠 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x92,0x92,0x92,0xfe,0x00,0xfe,0x02,0x02,0xfe,0x80,0x81,0x81,0x81,0x7f,0x00 -+// 38113 铡 ; -+,0x10,0x13,0x1e,0x12,0x22,0x3e,0x52,0x12,0x7e,0x12,0x10,0x11,0x15,0x1a,0x14,0x00,0x02,0xe2,0x2a,0x2a,0x2a,0xaa,0xaa,0xaa,0xaa,0xaa,0x8a,0x4a,0x62,0x22,0x0a,0x04 -+// 38114 铢 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x11,0x7e,0x10,0x10,0x10,0x15,0x1a,0x10,0x00,0x10,0x10,0x90,0xfe,0x90,0x10,0x10,0xff,0x58,0x54,0x94,0x92,0x13,0x12,0x10,0x10 -+// 38115 铣 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x11,0x7e,0x10,0x10,0x10,0x14,0x19,0x12,0x00,0x10,0x90,0x90,0xfe,0x90,0x10,0x10,0xff,0x48,0x48,0x48,0x89,0x89,0x09,0x07,0x00 -+// 38116 铤 ; -+,0x10,0x13,0x1c,0x10,0x20,0x3d,0x51,0x10,0x7e,0x11,0x10,0x14,0x19,0x12,0x0c,0x00,0x06,0xb8,0x88,0x88,0x88,0x08,0xff,0x48,0x48,0x48,0xbe,0x80,0x40,0x30,0x0f,0x00 -+// 38117 铥 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0d,0x08,0x00,0x0e,0x70,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x20,0x20,0x42,0x81,0xff,0x01 -+// 38118 铦 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x1e,0xf0,0x10,0x10,0xff,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 38119 铧 ; -+,0x08,0x08,0x10,0x1d,0x20,0x3e,0x48,0x08,0x7e,0x08,0x0b,0x08,0x0a,0x0c,0x08,0x00,0x48,0x48,0x8b,0x8c,0x88,0xb9,0x89,0x87,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 38120 铨 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3d,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfc,0x20,0x20,0xfc,0x20,0x20,0x20,0x20,0xff,0x00 -+// 38121 铩 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3e,0x50,0x11,0x7e,0x10,0x10,0x10,0x14,0x19,0x10,0x00,0x00,0x44,0x28,0x18,0x26,0xd2,0x10,0xff,0x10,0x54,0x52,0x93,0x91,0x11,0x50,0x20 -+// 38122 铪 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0x28,0x28,0x44,0x83,0x7e,0x00,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x00 -+// 38123 铫 ; -+,0x08,0x08,0x10,0x1e,0x21,0x3e,0x48,0x08,0x7e,0x09,0x08,0x08,0x0a,0x0c,0x09,0x00,0x28,0x28,0x28,0x2a,0x2a,0xac,0x68,0x6c,0xaa,0x2a,0x28,0x49,0x49,0x89,0x07,0x00 -+// 38124 铬 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3f,0x48,0x08,0x7e,0x09,0x08,0x08,0x0a,0x0c,0x08,0x00,0x40,0x40,0x7e,0x82,0xc4,0x28,0x10,0x28,0x47,0x82,0xfc,0x84,0x84,0x84,0xfc,0x00 -+// 38125 铭 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x49,0x08,0x7e,0x08,0x0b,0x08,0x08,0x0a,0x0c,0x08,0x20,0x20,0x3e,0x42,0x44,0xc4,0x28,0x10,0x20,0xfe,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 38126 铮 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3d,0x48,0x09,0x7e,0x08,0x09,0x08,0x0a,0x0c,0x08,0x00,0x20,0x20,0x7c,0x44,0x88,0xfe,0x22,0xff,0x22,0x22,0xfe,0x20,0x20,0x20,0xa0,0x40 -+// 38127 铯 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x20,0x20,0x7e,0x44,0x88,0xfe,0x92,0x92,0x92,0xfe,0x80,0x80,0x81,0x81,0x7f,0x00 -+// 38128 铰 ; -+,0x10,0x10,0x1e,0x11,0x20,0x3e,0x50,0x10,0x7d,0x10,0x10,0x10,0x14,0x19,0x16,0x00,0x20,0x10,0x10,0xff,0x00,0x44,0x42,0x8a,0x48,0x48,0x30,0x30,0x48,0x87,0x02,0x00 -+// 38129 铱 ; -+,0x10,0x10,0x1e,0x11,0x20,0x3c,0x50,0x10,0x7c,0x11,0x10,0x10,0x14,0x18,0x10,0x00,0x20,0x10,0x10,0xff,0x30,0x30,0x52,0x54,0xc8,0x48,0x48,0x44,0x54,0x63,0x42,0x00 -+// 38130 铲 ; -+,0x10,0x10,0x1d,0x10,0x20,0x3c,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x1a,0x12,0x04,0x20,0x10,0xff,0x84,0x44,0x48,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 38131 铳 ; -+,0x10,0x10,0x1e,0x11,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x11,0x00,0x20,0x10,0x10,0xff,0x20,0x28,0x44,0xfe,0x4a,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 38132 铴 ; -+,0x10,0x11,0x1e,0x10,0x22,0x3d,0x51,0x10,0x7e,0x10,0x13,0x11,0x15,0x19,0x11,0x00,0x00,0x3e,0x82,0x84,0x08,0x10,0x3f,0x95,0x95,0x95,0x29,0x49,0x11,0x65,0x02,0x00 -+// 38133 铵 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3c,0x50,0x11,0x7c,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x20,0x10,0xff,0x82,0x24,0x20,0x20,0xff,0x44,0x48,0xc8,0x30,0x28,0xc6,0x02,0x00 -+// 38134 银 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0xa0,0x92,0x94,0x88,0xa4,0xc7,0x82,0x00 -+// 38135 铷 ; -+,0x10,0x10,0x1e,0x10,0x23,0x3c,0x50,0x11,0x7d,0x13,0x10,0x10,0x15,0x1a,0x14,0x00,0x80,0x80,0x80,0x8f,0xe9,0xa9,0xa9,0x29,0x49,0x49,0x89,0xc9,0x2f,0x29,0x00,0x00 -+// 38136 铸 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x09,0x08,0x0a,0x0c,0x08,0x10,0x10,0xff,0x10,0xfe,0x20,0xff,0x24,0x44,0x7f,0x84,0x24,0x14,0x04,0x14,0x08 -+// 38137 铹 ; -+,0x10,0x10,0x1d,0x10,0x20,0x3d,0x51,0x10,0x7c,0x10,0x10,0x10,0x14,0x18,0x11,0x00,0x48,0x48,0xff,0x48,0x00,0xff,0x22,0x20,0xfc,0x24,0x24,0x44,0x44,0x94,0x08,0x00 -+// 38138 铺 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0x86 -+// 38139 铻 ; -+,0x08,0x08,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7f,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0xfe,0x20,0x20,0x7c,0x24,0x24,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 38140 铼 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x11,0x7e,0x10,0x10,0x12,0x15,0x1a,0x10,0x00,0x10,0x10,0xfe,0x10,0x94,0x54,0x58,0xff,0x30,0x58,0x58,0x94,0x13,0x12,0x10,0x10 -+// 38141 铽 ; -+,0x10,0x10,0x1e,0x11,0x20,0x3c,0x50,0x10,0x7e,0x10,0x12,0x12,0x16,0x18,0x10,0x00,0x10,0x14,0x12,0xff,0x10,0x90,0x50,0x48,0x88,0xa8,0x98,0x84,0xa5,0xe3,0x01,0x00 -+// 38142 链 ; -+,0x10,0x10,0x1d,0x10,0x20,0x3c,0x51,0x10,0x7c,0x10,0x10,0x12,0x14,0x19,0x12,0x00,0x10,0x10,0x7e,0x90,0xa8,0x28,0xbe,0x88,0x88,0xff,0x88,0x88,0x88,0x40,0x3f,0x00 -+// 38143 铿 ; -+,0x10,0x10,0x1d,0x11,0x21,0x3d,0x51,0x11,0x7c,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x40,0x40,0x5f,0x52,0x4a,0x44,0x4c,0x53,0x40,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 38144 销 ; -+,0x08,0x08,0x1f,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x10,0x92,0x52,0x34,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0x8a,0x84 -+// 38145 锁 ; -+,0x08,0x09,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x10,0x11,0x92,0x54,0xfe,0x82,0x82,0x92,0x92,0x92,0x92,0xa2,0x28,0x44,0x83,0x00 -+// 38146 锂 ; -+,0x08,0x08,0x1e,0x10,0x20,0x3e,0x48,0x08,0x08,0x7f,0x08,0x08,0x09,0x0a,0x0c,0x09,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0xff -+// 38147 锃 ; -+,0x08,0x08,0x1f,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0xff,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 38148 锄 ; -+,0x10,0x10,0x1d,0x11,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x13,0x00,0x04,0x04,0xe4,0x24,0x3f,0xe5,0x25,0x25,0xe5,0x29,0x29,0x29,0x31,0xd5,0x22,0x00 -+// 38149 锅 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x11,0x7d,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0xfe,0x82,0x82,0x82,0xfe,0x10,0xff,0x11,0x29,0x25,0x43,0x01,0x01,0x05,0x02 -+// 38150 锆 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x11,0x7e,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x10,0x50,0x50,0x7e,0x90,0x10,0x10,0xff,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 38151 锇 ; -+,0x10,0x10,0x1e,0x20,0x20,0x3d,0x50,0x10,0x7e,0x10,0x11,0x10,0x10,0x14,0x19,0x10,0x08,0x2c,0xca,0x4a,0x48,0xff,0x48,0x4a,0x6a,0xc4,0x44,0x4d,0x55,0x43,0x43,0x81 -+// 38152 锈 ; -+,0x10,0x10,0x1e,0x11,0x20,0x3e,0x51,0x10,0x7e,0x10,0x10,0x10,0x14,0x19,0x11,0x02,0x00,0xfe,0x20,0xff,0x70,0xac,0x23,0xfc,0x48,0x48,0x9e,0x82,0x82,0x02,0x0a,0x04 -+// 38153 锉 ; -+,0x10,0x10,0x1f,0x10,0x20,0x3c,0x49,0x0a,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x10,0x10,0x14,0x94,0x94,0x96,0x59,0x59,0x10,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 38154 锊 ; -+,0x10,0x10,0x1d,0x10,0x21,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x1e,0xe0,0x22,0x12,0x94,0x80,0x04,0xff,0x44,0x24,0x24,0x04,0x04,0x14,0x08 -+// 38155 锋 ; -+,0x10,0x10,0x1e,0x20,0x21,0x3c,0x51,0x10,0x7d,0x10,0x11,0x10,0x15,0x18,0x10,0x00,0x40,0x40,0xfc,0xc8,0x30,0x48,0xa7,0x20,0xfc,0x20,0xfc,0x20,0xfe,0x20,0x20,0x20 -+// 38156 锌 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x09,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x20,0x10,0xfe,0x04,0x44,0x28,0x10,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10 -+// 38157 锍 ; -+,0x08,0x08,0x11,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x20,0x10,0xff,0x10,0x20,0x44,0xfe,0x00,0x94,0x94,0x94,0x95,0x95,0x95,0x17,0x00 -+// 38158 锎 ; -+,0x11,0x10,0x1c,0x21,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x11,0x01,0x00,0x9f,0x01,0x01,0x7d,0x29,0x29,0x29,0xff,0x29,0x29,0x49,0x49,0x89,0x05,0x02 -+// 38159 锏 ; -+,0x10,0x10,0x1e,0x11,0x21,0x3f,0x49,0x09,0x7f,0x09,0x09,0x09,0x09,0x0b,0x0d,0x09,0x80,0x40,0x5f,0x01,0x39,0x29,0x29,0x39,0x29,0x29,0x29,0x39,0x01,0x01,0x05,0x02 -+// 38160 锐 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x13,0x00,0x84,0x44,0x28,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 38161 锑 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0d,0x08,0x00,0x42,0x24,0xfe,0x12,0x12,0xfe,0x90,0x90,0xff,0x31,0x51,0x51,0x95,0x12,0x10,0x10 -+// 38162 锒 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x20,0x10,0xfc,0x84,0xfc,0x84,0x84,0xfc,0xa2,0x94,0x98,0x88,0x88,0xa4,0xc3,0x82 -+// 38163 锓 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3c,0x51,0x11,0x7e,0x10,0x10,0x12,0x14,0x18,0x17,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x02,0xfc,0x84,0x48,0x30,0x30,0xc8,0x07,0x02 -+// 38164 锔 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x09,0x0b,0x0d,0x0a,0x00,0x00,0xfe,0x82,0x82,0xfe,0x80,0xff,0x81,0xb9,0xa9,0xa9,0x39,0x01,0x01,0x05,0x02 -+// 38165 锕 ; -+,0x10,0x11,0x1d,0x21,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0x00,0xdf,0x42,0x42,0x7a,0xaa,0x6a,0x6a,0x6a,0x7a,0x82,0x02,0x02,0x0a,0x04,0x00 -+// 38166 锖 ; -+,0x08,0x08,0x1e,0x10,0x20,0x3d,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 38167 锗 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3d,0x50,0x10,0x7c,0x11,0x12,0x10,0x10,0x14,0x18,0x10,0x20,0x20,0x22,0xfa,0x24,0xff,0x10,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 38168 锘 ; -+,0x10,0x10,0x1d,0x20,0x20,0x7c,0x11,0x10,0x7c,0x10,0x10,0x11,0x10,0x14,0x18,0x10,0x48,0x48,0xff,0x48,0x48,0x10,0xff,0x20,0x40,0x7e,0xc2,0x42,0x42,0x42,0x7e,0x42 -+// 38169 错 ; -+,0x08,0x08,0x1e,0x10,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x48,0x48,0x48,0xfe,0x48,0x48,0xff,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 38170 锚 ; -+,0x10,0x10,0x11,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x48,0x48,0xff,0x48,0x48,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0xfe,0x82,0x00 -+// 38171 锛 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x10,0x7c,0x10,0x13,0x10,0x14,0x19,0x11,0x02,0x20,0x20,0xff,0x48,0xa4,0x23,0xfc,0x20,0xa8,0x88,0xff,0x88,0x88,0x08,0x08,0x08 -+// 38172 锜 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x49,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x20,0x20,0xfe,0x20,0x50,0x88,0xff,0x04,0xf4,0x94,0x94,0xf4,0x04,0x04,0x14,0x08 -+// 38173 锝 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x11,0x10,0x12,0x14,0x18,0x10,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x04,0xff,0x44,0x24,0x24,0x04,0x14,0x08 -+// 38174 锞 ; -+,0x10,0x11,0x11,0x1d,0x21,0x3d,0x51,0x10,0x7d,0x10,0x10,0x12,0x15,0x1a,0x10,0x00,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x70,0xa8,0xa4,0x27,0x22,0x20,0x20 -+// 38175 锟 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0x89,0xee,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 38176 锠 ; -+,0x08,0x08,0x1f,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0xff,0x81,0x81,0xff,0x81,0x81,0xff,0x00 -+// 38177 锡 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x09,0x08,0x09,0x0a,0x0d,0x08,0xfe,0x82,0x82,0xfe,0x82,0xfe,0x40,0x40,0xff,0xa5,0x25,0x49,0x91,0x61,0x85,0x02 -+// 38178 锢 ; -+,0x10,0x11,0x11,0x1d,0x21,0x3d,0x49,0x09,0x7d,0x09,0x09,0x09,0x0b,0x0d,0x09,0x00,0x00,0xff,0x11,0x11,0xff,0x11,0x11,0x7d,0x45,0x45,0x45,0x7d,0x01,0x01,0xff,0x00 -+// 38179 锣 ; -+,0x10,0x11,0x1d,0x11,0x21,0x3c,0x48,0x08,0x7e,0x09,0x08,0x08,0x0a,0x0c,0x08,0x03,0x00,0xff,0x29,0x29,0xff,0x40,0x40,0xfe,0x82,0x44,0x24,0x28,0x10,0x20,0xc0,0x00 -+// 38180 锤 ; -+,0x00,0x10,0x11,0x1e,0x21,0x20,0x3e,0x09,0x08,0x3e,0x08,0x09,0x08,0x0a,0x0c,0x08,0x00,0x3e,0xe0,0x20,0xff,0xa4,0xa4,0xff,0xa4,0xa4,0xa4,0xff,0x20,0x20,0xfe,0x00 -+// 38181 锥 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x52,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x50,0x48,0x48,0xff,0x90,0x90,0xff,0x90,0x90,0xff,0x90,0x90,0x90,0x90,0xff,0x80 -+// 38182 锦 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x91,0x91,0x91,0x95,0x92,0x10,0x10 -+// 38183 锧 ; -+,0x10,0x11,0x11,0x3d,0x21,0x7d,0x11,0x11,0x7d,0x11,0x11,0x11,0x16,0x1a,0x14,0x01,0x0f,0xf8,0x08,0x7f,0x10,0x10,0x7e,0x42,0x52,0x52,0x52,0x52,0x10,0x28,0x46,0x82 -+// 38184 锨 ; -+,0x10,0x13,0x12,0x3e,0x22,0x43,0x7e,0x12,0x7e,0x12,0x12,0x12,0x12,0x1a,0x14,0x00,0x48,0x88,0x08,0x10,0x1f,0xe9,0xaa,0x88,0x88,0x88,0x94,0x94,0xa2,0xa3,0xc2,0x00 -+// 38185 锩 ; -+,0x10,0x11,0x10,0x3e,0x21,0x40,0x7d,0x10,0x10,0x7d,0x12,0x10,0x14,0x18,0x10,0x00,0x20,0x24,0xa4,0xa8,0xfe,0x20,0xff,0x48,0x84,0x7b,0x48,0x48,0x5a,0x42,0x3e,0x00 -+// 38186 锪 ; -+,0x08,0x08,0x10,0x1e,0x21,0x3e,0x48,0x08,0x7e,0x08,0x08,0x09,0x0b,0x0d,0x08,0x00,0x40,0x40,0x7e,0xaa,0x2a,0x4a,0x52,0x92,0x26,0x00,0x52,0x49,0x41,0x44,0x3c,0x00 -+// 38187 锫 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x11,0x7e,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x20,0x10,0xfe,0x00,0x84,0x44,0x48,0xff,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 38188 锬 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3e,0x50,0x10,0x7e,0x10,0x11,0x10,0x14,0x18,0x13,0x00,0x10,0x10,0x52,0x5c,0x98,0x24,0xc3,0x10,0x91,0x92,0x1c,0x10,0x28,0xc4,0x03,0x00 -+// 38189 锭 ; -+,0x10,0x10,0x11,0x1d,0x20,0x3c,0x50,0x10,0x7e,0x10,0x10,0x12,0x15,0x19,0x12,0x00,0x20,0x10,0xff,0x02,0x00,0xfe,0x10,0x10,0x90,0x9e,0x90,0x90,0x50,0x30,0x1f,0x00 -+// 38190 键 ; -+,0x10,0x10,0x13,0x1c,0x20,0x3d,0x53,0x10,0x7c,0x12,0x11,0x10,0x15,0x1a,0x14,0x00,0x10,0x10,0xbe,0x92,0xff,0x12,0xbe,0x90,0xbe,0x90,0xff,0x90,0x50,0x30,0x0f,0x00 -+// 38191 锯 ; -+,0x08,0x08,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0b,0x0d,0x0a,0x00,0xff,0x81,0x81,0xff,0x88,0x88,0xff,0x88,0x88,0xbf,0xa1,0xa1,0x21,0x3f,0x21 -+// 38192 锰 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x0b,0x00,0x00,0xfc,0x08,0x10,0xff,0x10,0x10,0x50,0x20,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 38193 锱 ; -+,0x10,0x10,0x10,0x1f,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x49,0x49,0x92,0x24,0x92,0x49,0x00,0xff,0x91,0x91,0xff,0x91,0x91,0xff,0x81,0x00 -+// 38194 锲 ; -+,0x10,0x10,0x11,0x1c,0x21,0x3c,0x53,0x10,0x7c,0x11,0x10,0x10,0x14,0x18,0x13,0x00,0x80,0x80,0xde,0x8a,0xca,0x8a,0xd2,0xa6,0x10,0xff,0x10,0x10,0x28,0xc7,0x02,0x00 -+// 38195 锳 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7e,0x11,0x10,0x10,0x12,0x14,0x18,0x13,0x44,0x44,0xff,0x44,0x54,0x10,0xfe,0x92,0x92,0xff,0x10,0x28,0x28,0x44,0x87,0x02 -+// 38196 锴 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x88,0x88,0x8b,0xec,0x88,0xa9,0xdf,0x20,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 38197 锵 ; -+,0x10,0x10,0x10,0x3e,0x22,0x41,0x3c,0x10,0x7d,0x12,0x10,0x10,0x10,0x14,0x18,0x10,0x88,0x88,0x9f,0xa2,0x94,0x88,0x94,0xe4,0xff,0xa4,0x94,0x94,0x84,0x84,0x94,0x88 -+// 38198 锶 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x11,0x15,0x1a,0x10,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0x20,0x52,0x51,0x45,0x44,0x3c,0x00 -+// 38199 锷 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x10,0x7d,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0xee,0xaa,0xaa,0xee,0x00,0xfe,0x00,0xff,0x20,0x3c,0x04,0x04,0x04,0x14,0x08 -+// 38200 锸 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x00,0x0e,0xf0,0x10,0x10,0xff,0x10,0x57,0x91,0x91,0xd7,0x91,0x91,0x91,0xff,0x00 -+// 38201 锹 ; -+,0x10,0x13,0x1c,0x20,0x20,0x7f,0x10,0x11,0x7d,0x12,0x14,0x10,0x14,0x18,0x10,0x00,0x68,0x88,0x88,0xa9,0x9a,0xec,0x88,0x88,0xc8,0xa8,0x94,0x94,0xa2,0xa2,0xc1,0x80 -+// 38202 锺 ; -+,0x10,0x10,0x10,0x3e,0x20,0x40,0x3e,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x0b,0x00,0x1e,0xf0,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 38203 锻 ; -+,0x10,0x11,0x1d,0x21,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x17,0x19,0x11,0x00,0x40,0x9c,0x14,0x14,0xd4,0x23,0x00,0x3e,0xe2,0x14,0x54,0x88,0x14,0x27,0x42,0x00 -+// 38204 锼 ; -+,0x10,0x11,0x1d,0x11,0x21,0x3d,0x51,0x10,0x7d,0x10,0x10,0x10,0x14,0x18,0x17,0x00,0x50,0x96,0x12,0x12,0xd6,0x12,0xfe,0x10,0xfe,0x84,0x48,0x30,0x30,0xcc,0x07,0x02 -+// 38205 锽 ; -+,0x00,0x10,0x10,0x3e,0x20,0x40,0x3e,0x08,0x08,0x7e,0x08,0x08,0x0a,0x0c,0x09,0x00,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 38206 锾 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x50,0x11,0x7e,0x10,0x10,0x10,0x15,0x1a,0x14,0x00,0x1e,0xe0,0x22,0x94,0x40,0xfc,0x20,0xff,0x40,0x7c,0xc4,0xa8,0x10,0x28,0xc7,0x02 -+// 38207 锿 ; -+,0x10,0x10,0x11,0x1e,0x20,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x15,0x18,0x10,0x00,0x20,0x10,0xff,0x00,0xfc,0x84,0x84,0xfc,0x52,0x54,0xc8,0xc8,0x44,0x57,0x62,0x40 -+// 38208 镀 ; -+,0x10,0x10,0x1d,0x11,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x1a,0x12,0x04,0x10,0x08,0xff,0x24,0x24,0xff,0x24,0x3c,0x00,0x7e,0x22,0x14,0x08,0x08,0x14,0x63 -+// 38209 镁 ; -+,0x10,0x10,0x11,0x1e,0x20,0x3d,0x50,0x11,0x7e,0x10,0x13,0x10,0x10,0x14,0x18,0x13,0x84,0x48,0xfe,0x20,0x20,0xfe,0x20,0xfe,0x20,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 38210 镂 ; -+,0x10,0x10,0x1e,0x11,0x20,0x3c,0x51,0x10,0x7e,0x11,0x10,0x10,0x10,0x14,0x18,0x13,0x10,0x92,0x54,0xff,0x38,0x54,0x93,0x20,0x20,0xff,0x44,0xc8,0x30,0x28,0xc6,0x02 -+// 38211 镃 ; -+,0x10,0x10,0x10,0x1d,0x20,0x3c,0x50,0x10,0x7d,0x10,0x10,0x10,0x15,0x1b,0x10,0x00,0x82,0x42,0x44,0xff,0x44,0x44,0x88,0xa9,0xde,0x44,0x84,0x88,0x52,0xff,0x21,0x00 -+// 38212 镄 ; -+,0x10,0x11,0x1e,0x11,0x21,0x3d,0x48,0x09,0x7e,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x48,0xfe,0x4a,0xfe,0x48,0xff,0x49,0x8b,0xfe,0x82,0x92,0x92,0x92,0x28,0x46,0x82 -+// 38213 镅 ; -+,0x08,0x08,0x08,0x1e,0x10,0x20,0x7e,0x10,0x7e,0x10,0x10,0x11,0x15,0x1a,0x14,0x00,0x00,0xfe,0x92,0x92,0xfe,0x80,0xfe,0xc2,0xfe,0xc2,0xc2,0x7e,0x42,0x42,0x7e,0x42 -+// 38214 镆 ; -+,0x10,0x10,0x11,0x1e,0x20,0x3c,0x50,0x10,0x7c,0x10,0x11,0x10,0x14,0x18,0x13,0x00,0x48,0x48,0xff,0x48,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x28,0xc4,0x03,0x00 -+// 38215 镇 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0b,0x0a,0x0c,0x09,0x10,0x10,0xfe,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xff,0x48,0x84,0x02 -+// 38216 镈 ; -+,0x10,0x11,0x1e,0x10,0x20,0x3c,0x50,0x10,0x7c,0x10,0x11,0x10,0x14,0x18,0x10,0x00,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x24,0x04,0x14,0x08 -+// 38217 镉 ; -+,0x10,0x11,0x1e,0x10,0x20,0x3c,0x50,0x11,0x7d,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x00,0xff,0x00,0xfe,0x82,0xfe,0x00,0xff,0x45,0x29,0x7d,0x11,0x11,0x11,0x15,0x02 -+// 38218 镊 ; -+,0x11,0x10,0x1e,0x20,0x20,0x7c,0x11,0x10,0x7d,0x11,0x10,0x10,0x14,0x19,0x16,0x00,0xfe,0x84,0xfc,0x84,0xfc,0x87,0xfc,0x04,0xfe,0x32,0xd4,0x48,0xac,0x13,0x62,0x00 -+// 38219 镋 ; -+,0x10,0x10,0x10,0x3d,0x21,0x40,0x3c,0x10,0x10,0x7e,0x10,0x12,0x14,0x19,0x12,0x00,0x10,0x92,0x54,0xff,0x02,0xfc,0x84,0x84,0xfc,0x50,0x50,0x91,0x91,0x11,0x0f,0x00 -+// 38220 镌 ; -+,0x10,0x10,0x1e,0x10,0x21,0x3e,0x50,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x10,0x01,0x50,0x48,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x80,0x7e,0x44,0x4f,0x81,0x85,0x02 -+// 38221 镍 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x09,0x08,0x08,0x0a,0x0c,0x09,0x00,0x10,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x30,0x58,0x54,0x93,0x10,0x10 -+// 38222 镎 ; -+,0x10,0x10,0x10,0x1d,0x22,0x3e,0x50,0x10,0x7c,0x10,0x10,0x10,0x14,0x19,0x10,0x00,0x20,0x50,0x8c,0xfb,0x00,0xfc,0x84,0xfc,0x00,0xfc,0x10,0xfe,0x10,0xff,0x10,0x30 -+// 38223 镏 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0xef,0x85,0x85,0xa5,0xb9,0xd3,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 38224 镐 ; -+,0x10,0x10,0x1d,0x10,0x20,0x3c,0x50,0x10,0x7d,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x20,0x10,0xfe,0x00,0xfc,0x84,0xfc,0x00,0xfe,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 38225 镑 ; -+,0x08,0x08,0x1e,0x10,0x20,0x5d,0x09,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x20,0x10,0xfe,0x44,0x28,0xff,0x22,0x10,0xff,0x20,0x3c,0x44,0x44,0x94,0x08,0x00 -+// 38226 镒 ; -+,0x10,0x10,0x1e,0x10,0x21,0x3e,0x48,0x08,0x09,0x7e,0x08,0x08,0x0a,0x0c,0x09,0x00,0x82,0x42,0x44,0x08,0xff,0x48,0x44,0x82,0x01,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 38227 镓 ; -+,0x10,0x10,0x11,0x3d,0x20,0x40,0x3c,0x11,0x7c,0x10,0x13,0x10,0x15,0x18,0x10,0x00,0x20,0x10,0xff,0x02,0xfc,0x20,0x42,0xa4,0x38,0xd8,0x34,0x57,0x92,0x10,0x50,0x20 -+// 38228 镔 ; -+,0x10,0x10,0x1d,0x11,0x20,0x3e,0x50,0x10,0x7e,0x10,0x11,0x10,0x10,0x14,0x1b,0x10,0x20,0x10,0xff,0x02,0x1c,0xe0,0x80,0xfe,0x88,0x88,0xff,0x00,0x48,0x84,0x02,0x02 -+// 38229 镕 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3e,0x48,0x08,0x7e,0x09,0x08,0x08,0x08,0x0a,0x0c,0x08,0x20,0x10,0xff,0x8a,0x24,0x42,0x90,0x28,0x44,0x83,0x7c,0x44,0x44,0x44,0x7c,0x44 -+// 38230 镖 ; -+,0x10,0x11,0x1e,0x21,0x21,0x7d,0x11,0x10,0x7c,0x10,0x11,0x10,0x14,0x1b,0x10,0x00,0x00,0xff,0x48,0xfe,0x4a,0x4a,0xfe,0x00,0xfc,0x00,0xff,0x10,0x92,0x11,0x51,0x20 -+// 38231 镗 ; -+,0x10,0x10,0x10,0x3e,0x21,0x3d,0x50,0x10,0x7e,0x10,0x10,0x12,0x14,0x18,0x13,0x00,0x10,0x92,0x52,0x54,0xff,0x02,0x7c,0x44,0x44,0x7c,0x10,0xfc,0x10,0x10,0xff,0x00 -+// 38232 镘 ; -+,0x10,0x10,0x10,0x1e,0x20,0x20,0x7d,0x11,0x11,0x7c,0x10,0x10,0x10,0x14,0x18,0x11,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfc,0x48,0x30,0x30,0x48,0x86 -+// 38233 镙 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3e,0x48,0x08,0x7e,0x08,0x08,0x08,0x0a,0x0d,0x08,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x48,0xf0,0x22,0xff,0x10,0x92,0x11,0x51,0x20 -+// 38234 镚 ; -+,0x10,0x11,0x11,0x1d,0x20,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x19,0x12,0x00,0x10,0x11,0x11,0xff,0x00,0xef,0x29,0xef,0x29,0x29,0xef,0x29,0x29,0x35,0x62,0x00 -+// 38235 镛 ; -+,0x10,0x10,0x11,0x1d,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x15,0x1a,0x12,0x04,0x20,0x10,0xff,0x10,0x7e,0x12,0xff,0x12,0x7e,0x52,0x7e,0x52,0x7e,0x52,0x52,0x46 -+// 38236 镜 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x10,0x7c,0x10,0x10,0x12,0x14,0x18,0x11,0x00,0x20,0x10,0xfe,0x44,0x28,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x49,0x89,0x07,0x00 -+// 38237 镝 ; -+,0x10,0x10,0x11,0x1c,0x20,0x3d,0x51,0x11,0x7d,0x11,0x11,0x11,0x11,0x15,0x19,0x11,0x20,0x10,0xff,0x44,0x28,0xff,0x11,0xff,0x11,0x11,0x7d,0x45,0x7d,0x01,0x03,0x01 -+// 38238 镞 ; -+,0x12,0x11,0x10,0x3f,0x21,0x7d,0x11,0x11,0x7d,0x11,0x12,0x12,0x1d,0x14,0x08,0x00,0x08,0x08,0x10,0xdf,0x30,0x10,0xde,0x68,0x48,0x7f,0x48,0x54,0x54,0xa3,0x42,0x00 -+// 38239 镟 ; -+,0x11,0x10,0x1c,0x23,0x21,0x3d,0x51,0x11,0x7d,0x11,0x11,0x16,0x1b,0x14,0x08,0x00,0x08,0x88,0x0f,0xd0,0x00,0x1f,0xc2,0x44,0x47,0x54,0x54,0x54,0x54,0xac,0x47,0x00 -+// 38240 镠 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x48,0x08,0x7d,0x08,0x08,0x08,0x0a,0x0c,0x0b,0x00,0x00,0xee,0xaa,0x66,0xaa,0x22,0x10,0x68,0x97,0x60,0x10,0xe4,0x08,0x30,0xc0,0x00 -+// 38241 镡 ; -+,0x11,0x10,0x1c,0x10,0x20,0x3c,0x50,0x10,0x7e,0x10,0x10,0x10,0x15,0x18,0x10,0x00,0xff,0x28,0xfe,0xaa,0xfe,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x10,0x10 -+// 38242 镢 ; -+,0x10,0x13,0x22,0x3b,0x42,0x03,0x7a,0x23,0x23,0x7b,0x23,0x22,0x2a,0x32,0x25,0x00,0x00,0xff,0x00,0x14,0xa4,0xef,0x4a,0x54,0x54,0x54,0xf4,0x4a,0x8a,0x93,0x22,0x00 -+// 38243 镣 ; -+,0x10,0x10,0x1d,0x10,0x22,0x3d,0x52,0x10,0x7e,0x10,0x10,0x10,0x15,0x19,0x12,0x00,0x20,0x20,0xfe,0x50,0x8a,0xfc,0x8b,0xf8,0x88,0x88,0xf8,0x20,0x24,0x22,0xa2,0x40 -+// 38244 镤 ; -+,0x10,0x11,0x10,0x1d,0x20,0x7c,0x11,0x10,0x7c,0x10,0x11,0x10,0x14,0x18,0x13,0x00,0x48,0x4a,0xcc,0xff,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x20,0x50,0x8e,0x04,0x00 -+// 38245 镥 ; -+,0x08,0x08,0x1e,0x11,0x20,0x3e,0x48,0x08,0x7e,0x09,0x08,0x08,0x08,0x0a,0x0c,0x08,0x40,0x7c,0x88,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe -+// 38246 镦 ; -+,0x11,0x10,0x13,0x1c,0x23,0x3a,0x53,0x10,0x7b,0x10,0x10,0x12,0x17,0x18,0x11,0x00,0x08,0x88,0xe8,0x10,0xdf,0x62,0xd2,0x12,0xf2,0x4a,0x84,0xe4,0x8a,0x93,0xa2,0x00 -+// 38247 镧 ; -+,0x11,0x10,0x12,0x1a,0x22,0x3a,0x53,0x12,0x7a,0x13,0x12,0x12,0x13,0x1a,0x12,0x00,0x00,0xbf,0x81,0x21,0xfd,0x21,0xfd,0xad,0x75,0xfd,0x31,0x69,0xa5,0x21,0x03,0x00 -+// 38248 镨 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3c,0x51,0x10,0x7c,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x42,0x24,0xff,0x24,0xa5,0x66,0xff,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 38249 镩 ; -+,0x10,0x10,0x11,0x1d,0x20,0x20,0x7c,0x08,0x08,0x7c,0x08,0x08,0x0a,0x0c,0x08,0x00,0x20,0x10,0xff,0x4a,0x96,0x10,0xfe,0x92,0xfe,0x10,0xff,0x91,0xff,0x10,0x10,0x10 -+// 38250 镪 ; -+,0x10,0x13,0x10,0x3c,0x23,0x7a,0x12,0x12,0x7b,0x10,0x10,0x10,0x14,0x1a,0x11,0x00,0x00,0x9e,0x92,0x92,0x9e,0x08,0x08,0x3f,0xa9,0xa9,0xbf,0x88,0x8a,0xbf,0x01,0x00 -+// 38251 镫 ; -+,0x10,0x10,0x11,0x1c,0x20,0x3c,0x50,0x11,0x7c,0x10,0x10,0x10,0x14,0x18,0x11,0x00,0x00,0xf2,0x34,0xc9,0x46,0x84,0xfb,0x00,0xfc,0x84,0xfc,0x88,0x48,0x50,0xff,0x00 -+// 38252 镬 ; -+,0x10,0x11,0x10,0x3c,0x20,0x3d,0x52,0x10,0x7c,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x48,0xff,0x48,0x50,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x44,0x28,0x10,0x28,0xc7 -+// 38253 镭 ; -+,0x10,0x10,0x1e,0x11,0x21,0x3e,0x50,0x10,0x7e,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0xfe,0x10,0xff,0x12,0xdc,0x10,0xdc,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 38254 镮 ; -+,0x10,0x10,0x1e,0x10,0x20,0x3d,0x50,0x10,0x7e,0x10,0x10,0x10,0x15,0x1a,0x10,0x00,0xfe,0xaa,0xaa,0xfe,0x00,0xff,0x00,0xfc,0x84,0xfc,0x52,0xcc,0x48,0x67,0x42,0x00 -+// 38255 镯 ; -+,0x10,0x11,0x1d,0x11,0x20,0x3c,0x49,0x08,0x7d,0x09,0x09,0x08,0x09,0x08,0x0c,0x08,0x00,0xff,0x29,0xff,0x40,0xff,0x21,0x21,0xf9,0x29,0xf9,0x25,0xff,0x01,0x05,0x02 -+// 38256 镰 ; -+,0x10,0x10,0x1d,0x21,0x21,0x7d,0x11,0x11,0x7d,0x11,0x11,0x11,0x16,0x1a,0x15,0x00,0x20,0x10,0xff,0x44,0xff,0x28,0xfe,0x2a,0xff,0x2a,0xfe,0x68,0xac,0xab,0x2a,0x28 -+// 38257 镱 ; -+,0x10,0x10,0x10,0x1e,0x20,0x3e,0x48,0x08,0x3e,0x08,0x08,0x08,0x0b,0x0d,0x0a,0x00,0x20,0x10,0xfe,0x44,0x28,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x12,0x49,0x45,0x3c -+// 38258 镲 ; -+,0x10,0x10,0x11,0x3d,0x20,0x40,0x3d,0x13,0x7c,0x11,0x10,0x10,0x14,0x18,0x11,0x00,0x20,0x10,0xff,0x82,0xee,0xb2,0xcc,0x48,0xfc,0x03,0xfc,0x10,0x92,0x91,0x51,0x20 -+// 38259 镳 ; -+,0x10,0x10,0x11,0x3d,0x21,0x41,0x7d,0x11,0x11,0x7d,0x11,0x12,0x16,0x1a,0x15,0x00,0x20,0x10,0xff,0x48,0xfe,0x4a,0xfe,0x48,0x6a,0x4d,0x69,0x47,0x00,0xaa,0x29,0x00 -+// 38260 镴 ; -+,0x10,0x10,0x1d,0x10,0x21,0x3d,0x51,0x11,0x11,0x7d,0x11,0x11,0x15,0x19,0x11,0x00,0x92,0x92,0x24,0x92,0xfe,0x2a,0x12,0xfe,0x24,0xb4,0x6c,0xb4,0x6d,0xb3,0x21,0x00 -+// 38261 镵 ; -+,0x10,0x10,0x11,0x1e,0x20,0x3d,0x51,0x11,0x7d,0x11,0x13,0x11,0x11,0x14,0x18,0x13,0x7c,0x88,0xfe,0x82,0xfe,0x10,0xdd,0x11,0x7f,0x90,0xfe,0x22,0xfe,0x55,0x93,0x0f -+// 38262 镶 ; -+,0x10,0x11,0x10,0x1d,0x21,0x3d,0x50,0x11,0x7c,0x11,0x10,0x13,0x10,0x15,0x18,0x10,0x10,0xff,0x00,0xde,0x52,0xde,0x44,0xfe,0x44,0xff,0x44,0xff,0x92,0xac,0xc4,0x83 -+// 38263 長 ; -+,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x08,0x7f,0x0a,0x09,0x08,0x08,0x09,0x0a,0x0c,0x08,0xfc,0x00,0x00,0xf8,0x00,0xf8,0x00,0xff,0x00,0x08,0x90,0x60,0x10,0x0c,0x07,0x02 -+// 38264 镸 ; -+,0x00,0x07,0x04,0x07,0x04,0x04,0x07,0x04,0x04,0x7f,0x01,0x02,0x04,0x08,0x1f,0x00,0x00,0xfc,0x00,0xf8,0x00,0x00,0xfc,0x00,0x00,0xff,0x00,0x08,0x04,0x7e,0x82,0x02 -+// 38265 镹 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1e,0x10,0x7f,0x10,0x10,0x24,0x7e,0x02,0x03,0x00,0x20,0x20,0x20,0x3c,0x44,0x48,0x88,0x08,0x90,0x18,0x28,0x24,0x44,0x83,0x02,0x00 -+// 38266 镺 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1e,0x10,0x7f,0x08,0x08,0x10,0x12,0x3f,0x01,0x00,0x0e,0x70,0x10,0x10,0x10,0x10,0xff,0x10,0x90,0x18,0x28,0x24,0x44,0x43,0x82,0x00 -+// 38267 镻 ; -+,0x00,0x3e,0x20,0x3e,0x20,0x3e,0x21,0x20,0x7e,0x10,0x10,0x24,0x7e,0x00,0x03,0x00,0x10,0x50,0x50,0x50,0xfe,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x83,0x02,0x00 -+// 38268 镼 ; -+,0x00,0x3e,0x20,0x3e,0x20,0x3e,0x20,0x20,0x7e,0x10,0x11,0x25,0x7f,0x02,0x04,0x00,0x00,0xff,0x81,0xff,0x88,0x88,0xaa,0xaa,0xbe,0x88,0x49,0x49,0x49,0x7f,0x41,0x00 -+// 38269 镽 ; -+,0x00,0x3e,0x20,0x3c,0x20,0x20,0x3d,0x20,0x20,0x7e,0x10,0x24,0x7e,0x02,0x01,0x00,0x10,0x10,0xff,0x12,0xac,0x44,0xff,0x44,0x7c,0x44,0x7c,0x10,0x94,0x92,0x52,0x20 -+// 38270 镾 ; -+,0x00,0x3d,0x20,0x3c,0x23,0x21,0x3d,0x21,0x21,0x7f,0x11,0x25,0x23,0x7f,0x01,0x01,0x00,0xff,0x54,0x92,0xff,0x11,0xbb,0x55,0xbb,0x11,0xbb,0x55,0xbb,0x11,0x15,0x02 -+// 38271 长 ; -+,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x7f,0x05,0x04,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x08,0x10,0x20,0xc0,0x00,0x00,0xff,0x00,0x80,0x40,0x20,0x98,0x0e,0x04,0x00 -+// 38272 門 ; -+,0x1f,0x11,0x11,0x1f,0x11,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3e,0x22,0x22,0x3e,0x22,0x3e,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 38273 閁 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x26,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x42,0x42,0x42,0x82,0x82,0x02,0x02,0x02,0x0a,0x04 -+// 38274 閂 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x20,0x2f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x02,0x02,0xfa,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 38275 閃 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x20,0x20,0x21,0x22,0x2c,0x20,0x20,0x20,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x82,0x82,0x82,0x42,0x32,0x12,0x02,0x0a,0x04,0x00 -+// 38276 閄 ; -+,0x00,0x3b,0x2a,0x3b,0x2a,0x3b,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x22,0x21,0x00,0x00,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x94,0x94,0xa2,0xa2,0xc3,0x82,0x00 -+// 38277 閅 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x2f,0x20,0x20,0x20,0x20,0x22,0x21,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x02,0xfa,0x82,0x82,0x82,0x82,0x82,0x02,0x0a,0x04 -+// 38278 閆 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x27,0x20,0x23,0x20,0x2f,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x02,0xf2,0x02,0xe2,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 38279 閇 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xfa,0x82,0xc2,0xb2,0x92,0x82,0x82,0x82,0x0a,0x04 -+// 38280 閈 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x20,0x2f,0x20,0x20,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x82,0x82,0xfa,0x82,0x82,0x82,0x82,0x8a,0x04 -+// 38281 閉 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x20,0x2f,0x20,0x21,0x22,0x2c,0x21,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x42,0x42,0xfa,0xc2,0x42,0x42,0x42,0x42,0x8a,0x04 -+// 38282 閊 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x20,0x24,0x24,0x24,0x27,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x82,0x82,0x92,0x92,0x92,0xf2,0x02,0x02,0x0a,0x04 -+// 38283 開 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x22,0x22,0x2f,0x22,0x24,0x24,0x28,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x22,0x22,0xfa,0x22,0x22,0x22,0x22,0x0a,0x04 -+// 38284 閌 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x20,0x2f,0x20,0x23,0x22,0x22,0x2c,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x82,0xfa,0x02,0xc2,0x42,0x4a,0x3a,0x02,0x0a,0x04 -+// 38285 閍 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x20,0x2f,0x21,0x21,0x21,0x22,0x22,0x24,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x82,0xfa,0x02,0xf2,0x12,0x12,0x52,0x22,0x0a,0x04 -+// 38286 閎 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x2f,0x21,0x22,0x22,0x25,0x2b,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x82,0x82,0xfa,0x02,0x82,0x82,0x22,0xf2,0x12,0x0a,0x04 -+// 38287 閏 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x20,0x27,0x20,0x20,0x2f,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x82,0x82,0xf2,0x82,0x82,0xfa,0x02,0x0a,0x04 -+// 38288 閐 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x23,0x20,0x27,0x20,0x2f,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x62,0x82,0x82,0xf2,0x82,0xfa,0x8a,0x7a,0x02,0x06 -+// 38289 閑 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x2f,0x20,0x21,0x22,0x2c,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x82,0xfa,0x82,0xc2,0xb2,0x92,0x82,0x82,0x8a,0x04 -+// 38290 閒 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x23,0x22,0x23,0x22,0x23,0x24,0x24,0x28,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x12,0x52,0x22,0x0a,0x04 -+// 38291 間 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x10,0x10,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x02,0x02,0x0a,0x04 -+// 38292 閔 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x20,0x27,0x20,0x23,0x20,0x23,0x2c,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x82,0xf2,0x22,0x42,0xc2,0x32,0x12,0x02,0x0a,0x04 -+// 38293 閕 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x22,0x22,0x23,0x20,0x23,0x2c,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x42,0x42,0xfa,0xc2,0x42,0x42,0xc2,0x0a,0x04 -+// 38294 閖 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x2f,0x21,0x22,0x22,0x24,0x28,0x21,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x42,0x4a,0x52,0x62,0x52,0x4e,0x42,0x42,0x8a,0x04 -+// 38295 閗 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x22,0x21,0x24,0x23,0x21,0x2f,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x22,0xa2,0xa2,0x22,0xfa,0x22,0x22,0x22,0x2a,0x04 -+// 38296 閘 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x24,0x27,0x24,0x27,0x20,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x92,0xf2,0x92,0xf2,0x82,0x82,0x82,0x8a,0x04 -+// 38297 閙 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x20,0x27,0x24,0x24,0x24,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x82,0xfa,0x82,0xf2,0x92,0x92,0xd2,0xa2,0x82,0x8a,0x04 -+// 38298 閚 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x20,0x27,0x20,0x22,0x21,0x20,0x2f,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x82,0xfa,0x12,0x22,0x22,0x42,0xfa,0x02,0x0a,0x04 -+// 38299 閛 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x24,0x22,0x2f,0x20,0x20,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x82,0x92,0xa2,0xfa,0x82,0x82,0x82,0x0a,0x04 -+// 38300 閜 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x20,0x23,0x22,0x23,0x20,0x20,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xfa,0x12,0xd2,0x52,0xd2,0x12,0x52,0x22,0x0a,0x04 -+// 38301 閝 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x21,0x22,0x2c,0x23,0x20,0x21,0x20,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0x42,0x22,0x9a,0xf2,0x22,0x42,0xc2,0x42,0x0a,0x04 -+// 38302 閞 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x22,0x27,0x21,0x21,0x2f,0x21,0x22,0x22,0x24,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x12,0xfa,0x22,0x22,0xfa,0x22,0x22,0x22,0x2a,0x04 -+// 38303 閟 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x21,0x20,0x22,0x2a,0x2b,0x32,0x2d,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x22,0xa2,0x42,0x8a,0x2a,0x22,0xe2,0x02,0x0a,0x04 -+// 38304 閠 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x20,0x27,0x20,0x20,0x2f,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x82,0x82,0xf2,0xa2,0x92,0xfa,0x02,0x0a,0x04 -+// 38305 閡 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x21,0x23,0x20,0x23,0x2c,0x21,0x26,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xfa,0x22,0xc2,0x92,0x22,0x62,0x92,0x12,0x0a,0x04 -+// 38306 関 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x22,0x21,0x27,0x20,0x2f,0x20,0x21,0x22,0x2c,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x12,0x22,0xf2,0x82,0xfa,0x82,0x42,0x32,0x12,0x0a,0x04 -+// 38307 閣 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x23,0x24,0x21,0x2e,0x23,0x22,0x22,0x23,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0xe2,0x22,0xc2,0x62,0x1a,0xe2,0x22,0x22,0xe2,0x0a,0x04 -+// 38308 閤 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x21,0x22,0x2d,0x20,0x23,0x22,0x23,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0x42,0x22,0xda,0x02,0xe2,0x22,0xe2,0x02,0x0a,0x04 -+// 38309 閥 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x22,0x22,0x25,0x2c,0x34,0x24,0x24,0x24,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x52,0x4a,0xfa,0x52,0x22,0x6a,0x9a,0x0a,0x02,0x06 -+// 38310 閦 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x21,0x26,0x22,0x22,0x25,0x28,0x21,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x42,0x82,0x62,0x1a,0x22,0x22,0x52,0x8a,0x02,0x0a,0x04 -+// 38311 閧 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x22,0x27,0x22,0x2f,0x21,0x22,0x2c,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x22,0xf2,0x22,0xfa,0x42,0x32,0x12,0x02,0x0a,0x04 -+// 38312 閨 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x2f,0x20,0x27,0x20,0x2f,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xf2,0x82,0xfa,0x82,0xf2,0x82,0xfa,0x02,0x0a,0x04 -+// 38313 閩 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x20,0x27,0x24,0x27,0x20,0x2f,0x20,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0x82,0xf2,0x92,0xf2,0x8a,0xfa,0x06,0x02,0x0a,0x04 -+// 38314 閪 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x17,0x11,0x17,0x15,0x16,0x14,0x17,0x10,0x10,0x10,0xbe,0xa2,0xbe,0xa2,0xbe,0x02,0xfa,0x42,0xfa,0x4a,0x3a,0x0a,0xfa,0x02,0x0a,0x04 -+// 38315 閫 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x24,0x27,0x25,0x26,0x24,0x27,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xfa,0x8a,0xfa,0xca,0xaa,0x8a,0xfa,0x02,0x0a,0x04 -+// 38316 閬 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x23,0x22,0x22,0x23,0x22,0x22,0x23,0x22,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x82,0xf2,0x92,0x52,0xf2,0x4a,0x32,0x22,0x1a,0x02,0x06 -+// 38317 閭 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x23,0x22,0x23,0x20,0x27,0x24,0x24,0x27,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xe2,0x22,0xe2,0x02,0xf2,0x12,0x12,0xf2,0x0a,0x04 -+// 38318 閮 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2e,0x22,0x24,0x26,0x2a,0x26,0x25,0x28,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x1a,0xe2,0x22,0xfa,0x22,0xfa,0x02,0xfa,0x02,0x06 -+// 38319 閯 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x28,0x24,0x30,0x2a,0x25,0x38,0x28,0x28,0x29,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x22,0xaa,0xa6,0x2a,0x12,0x22,0x42,0x82,0x0a,0x04 -+// 38320 閰 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x21,0x26,0x24,0x27,0x24,0x24,0x27,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0x02,0x7a,0x0a,0x7a,0x0a,0x0a,0xfa,0x02,0x0a,0x04 -+// 38321 閱 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x22,0x2f,0x22,0x23,0x21,0x21,0x22,0x24,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x22,0x12,0xfa,0x12,0xf2,0x42,0x4a,0x4a,0x3a,0x02,0x06 -+// 38322 閲 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x12,0x11,0x13,0x12,0x13,0x11,0x11,0x12,0x14,0x10,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x12,0x22,0xf2,0x12,0xf2,0x42,0x4a,0x4a,0x3a,0x02,0x06 -+// 38323 閳 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x24,0x27,0x24,0x27,0x20,0x2f,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x82,0xfa,0x92,0xf2,0x92,0xf2,0x82,0xfa,0x82,0x8a,0x04 -+// 38324 閴 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x23,0x22,0x23,0x22,0x23,0x22,0x23,0x21,0x22,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xf2,0x12,0xf2,0x12,0xf2,0x12,0xf2,0x22,0x1a,0x04 -+// 38325 閵 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x22,0x23,0x26,0x2b,0x22,0x23,0x22,0x23,0x22,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x82,0xfa,0x42,0xf2,0x42,0xf2,0x42,0xfa,0x02,0x0a,0x04 -+// 38326 閶 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x23,0x22,0x23,0x22,0x27,0x24,0x27,0x24,0x27,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xf2,0x12,0xf2,0x12,0xfa,0x0a,0xfa,0x0a,0xfa,0x06 -+// 38327 閷 ; -+,0x25,0x15,0x09,0x15,0x63,0x09,0x7f,0x09,0x2d,0x2b,0x2b,0x49,0x09,0x29,0x11,0x00,0xef,0x29,0xef,0x29,0xef,0x01,0x11,0x11,0x11,0x29,0x45,0x85,0x01,0x05,0x02,0x00 -+// 38328 閸 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x21,0x27,0x24,0x27,0x21,0x2f,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xfa,0x42,0x72,0x12,0x72,0x42,0xfa,0x02,0x0a,0x04 -+// 38329 閹 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x22,0x27,0x3c,0x27,0x24,0x27,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x82,0xfa,0xa2,0xf2,0xae,0xe2,0xa2,0xea,0x8a,0x7a,0x06 -+// 38330 閺 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x23,0x22,0x22,0x23,0x20,0x27,0x21,0x20,0x23,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0xf2,0x92,0x52,0xf2,0x82,0xfa,0x22,0xc2,0x32,0x0a,0x04 -+// 38331 閻 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x21,0x26,0x21,0x26,0x24,0x27,0x24,0x27,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x82,0xf2,0x22,0x02,0x72,0x12,0x72,0x12,0xf2,0x02,0x06 -+// 38332 閼 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x22,0x2f,0x22,0x23,0x24,0x24,0x2a,0x31,0x20,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x22,0xb2,0x4a,0xa2,0x92,0xa2,0x92,0x12,0x02,0x0a,0x04 -+// 38333 閽 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x24,0x27,0x25,0x26,0x23,0x22,0x22,0x23,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x72,0x82,0x42,0xfa,0x2a,0x1a,0xf2,0x92,0x52,0xf2,0x06 -+// 38334 閾 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x20,0x27,0x25,0x27,0x20,0x23,0x2c,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x92,0xfa,0x82,0x42,0x52,0x2a,0x6a,0x1a,0x0a,0x02,0x06 -+// 38335 閿 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x22,0x27,0x24,0x23,0x21,0x20,0x23,0x20,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0xa2,0xfa,0x12,0xe2,0x42,0xc2,0x32,0x12,0x06 -+// 38336 闀 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x27,0x21,0x2f,0x21,0x23,0x2d,0x21,0x21,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x42,0xfa,0x42,0xfa,0x22,0xf2,0x2e,0xe2,0x12,0xf2,0x06 -+// 38337 闁 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x29,0x2f,0x29,0x2f,0x28,0x28,0x28,0x28,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x7a,0x4a,0x7a,0x4a,0x7a,0x0a,0x0a,0x2a,0x12,0x06 -+// 38338 闂 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x24,0x22,0x27,0x21,0x2f,0x22,0x2f,0x22,0x22,0x21,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x92,0xa2,0xf2,0x02,0xfa,0x22,0xda,0x42,0xca,0xfa,0x06 -+// 38339 闃 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x26,0x25,0x27,0x20,0x2f,0x21,0x26,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xf2,0x52,0x32,0xf2,0xa2,0xfa,0x42,0x32,0x12,0x06 -+// 38340 闄 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x21,0x27,0x25,0x27,0x20,0x2f,0x21,0x20,0x27,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xfa,0x42,0xf2,0x52,0xf2,0x82,0xfa,0x22,0xc2,0x36 -+// 38341 闅 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x23,0x22,0x22,0x23,0x20,0x20,0x20,0x23,0x21,0x20,0x27,0x3e,0x22,0x3e,0x22,0x3e,0xf2,0x92,0x52,0xf2,0x82,0xfa,0x82,0xf2,0x22,0xc6,0x32 -+// 38342 闆 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x23,0x22,0x23,0x20,0x2f,0x29,0x2f,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xe2,0x22,0xe2,0x02,0x7a,0x4a,0x7a,0x02,0x0a,0x04 -+// 38343 闇 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x22,0x2f,0x20,0x23,0x22,0x23,0x22,0x23,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xf2,0x22,0xfa,0x02,0xe2,0x22,0xe2,0x22,0xea,0x04 -+// 38344 闈 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x21,0x2f,0x22,0x23,0x20,0x23,0x22,0x27,0x20,0x3e,0x22,0x3e,0x22,0xbe,0x82,0xf2,0x22,0xfa,0x22,0xe2,0x82,0xe2,0x82,0xf2,0x86 -+// 38345 闉 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x21,0x27,0x25,0x27,0x20,0x27,0x20,0x2f,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x02,0xf2,0x42,0xf2,0x52,0xf2,0x82,0xf2,0x82,0xfa,0x06 -+// 38346 闊 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x29,0x24,0x31,0x2a,0x23,0x2d,0x25,0x24,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xf2,0x42,0xfa,0x42,0xf2,0x12,0xf2,0x02,0x0a,0x04 -+// 38347 闋 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x27,0x25,0x22,0x27,0x38,0x27,0x21,0x22,0x2c,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x52,0x6a,0x32,0xf2,0x8e,0xf2,0x42,0x22,0x12,0x02,0x06 -+// 38348 闌 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x17,0x10,0x17,0x16,0x17,0x11,0x12,0x14,0x10,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xfa,0x82,0xfa,0xaa,0xfa,0xa2,0x9a,0x8a,0x82,0x06 -+// 38349 闍 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x2f,0x21,0x27,0x3a,0x22,0x23,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x8a,0xf2,0xa2,0xfa,0x02,0xf2,0x92,0x52,0xf2,0x0a,0x04 -+// 38350 闎 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x23,0x22,0x22,0x23,0x20,0x27,0x21,0x26,0x21,0x20,0x3e,0x22,0x3e,0x22,0x7e,0x82,0xf2,0x92,0x52,0xf2,0x4a,0x72,0x52,0x4e,0x42,0x86 -+// 38351 闏 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x17,0x14,0x15,0x14,0x15,0x15,0x15,0x14,0x19,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xfa,0x0a,0xfa,0x4a,0xfa,0x5a,0xfa,0x56,0xfa,0x06 -+// 38352 闐 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x23,0x22,0x23,0x2f,0x22,0x2c,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xf2,0x82,0xe2,0xa2,0x62,0xfa,0x22,0x12,0x02,0x06 -+// 38353 闑 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x27,0x26,0x25,0x27,0x20,0x27,0x21,0x26,0x20,0x20,0x3e,0x22,0x3e,0x22,0xbe,0x02,0xf2,0x52,0x32,0xf2,0x82,0xf2,0xc2,0xb2,0x82,0x06 -+// 38354 闒 ; -+,0x3e,0x22,0x3e,0x22,0x3e,0x27,0x24,0x27,0x20,0x2f,0x25,0x23,0x25,0x29,0x23,0x20,0x3e,0x22,0x3e,0x22,0x3e,0xf2,0x92,0xf2,0x02,0x7a,0x2a,0x1a,0x2a,0x4a,0x1a,0x06 -+// 38355 闓 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x22,0x23,0x20,0x27,0x20,0x23,0x22,0x23,0x21,0x27,0x20,0x3e,0x22,0x3e,0x22,0xbe,0x92,0xf2,0x02,0xfa,0x02,0xf2,0x12,0xf2,0x22,0xfa,0x06 -+// 38356 闔 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x20,0x2f,0x21,0x27,0x25,0x3f,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xe2,0x82,0xfa,0x22,0xf2,0x52,0xfa,0x02,0x0a,0x04 -+// 38357 闕 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x28,0x25,0x2f,0x22,0x2a,0x2f,0x22,0x24,0x24,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x82,0x22,0xbe,0x5a,0x92,0x92,0x2a,0x2a,0x46,0x02,0x06 -+// 38358 闖 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x27,0x24,0x27,0x24,0x27,0x24,0x27,0x2a,0x2a,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0xf2,0x82,0xe2,0x82,0xf2,0x82,0xfa,0xca,0xaa,0x12,0x06 -+// 38359 闗 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x22,0x24,0x2f,0x22,0x25,0x2f,0x25,0x29,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x12,0x2a,0x72,0x22,0x52,0xfa,0x52,0x2a,0x02,0x0a,0x04 -+// 38360 闘 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x2f,0x20,0x2f,0x28,0x2f,0x28,0x25,0x2f,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x8a,0x0a,0xbe,0x8a,0xaa,0x9a,0x0a,0x9a,0x02,0x0a,0x04 -+// 38361 闙 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x22,0x2f,0x28,0x2f,0x28,0x2f,0x2c,0x34,0x27,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xa2,0xbe,0xaa,0x6a,0x92,0xaa,0xca,0x8a,0x02,0x06 -+// 38362 闚 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x24,0x24,0x3e,0x24,0x3e,0x24,0x2a,0x2a,0x30,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0xfa,0xaa,0xda,0xba,0xfa,0x52,0x52,0x9e,0x02,0x06 -+// 38363 闛 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x22,0x27,0x24,0x23,0x22,0x23,0x20,0x23,0x20,0x27,0x20,0x3e,0x22,0x3e,0x22,0xbe,0xa2,0xfa,0x12,0xe2,0x22,0xe2,0x82,0xe2,0x82,0xf2,0x06 -+// 38364 關 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x22,0x25,0x2e,0x25,0x2f,0x22,0x2a,0x2e,0x24,0x28,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x22,0x4a,0x72,0x2a,0x7a,0x42,0x52,0x72,0x42,0x46 -+// 38365 闝 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x2d,0x2b,0x2d,0x2b,0x2f,0x26,0x29,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x22,0x3e,0x4a,0xca,0x32,0x12,0x2a,0x4a,0x02,0x06 -+// 38366 闞 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x2f,0x21,0x2f,0x27,0x25,0x27,0x25,0x2f,0x21,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x02,0x22,0x3e,0xca,0x2a,0x12,0x2a,0xc6,0x02,0x0a,0x04 -+// 38367 闟 ; -+,0x3e,0x22,0x3e,0x22,0x3f,0x23,0x2c,0x23,0x22,0x23,0x2f,0x25,0x23,0x25,0x29,0x20,0x3e,0x22,0x3e,0xa2,0x7e,0xa2,0x1a,0xf2,0x12,0xf2,0x3a,0x2a,0x1a,0x2a,0x0a,0x06 -+// 38368 闠 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x24,0x2f,0x20,0x27,0x25,0x24,0x27,0x21,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x82,0xf2,0x92,0xfa,0x02,0xf2,0x52,0xb2,0xf2,0x42,0x26 -+// 38369 闡 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x25,0x27,0x20,0x27,0x24,0x27,0x24,0x2f,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x7e,0x52,0x72,0x02,0xf2,0x92,0xf2,0x92,0xfa,0x82,0x8a,0x04 -+// 38370 闢 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x27,0x25,0x27,0x24,0x2f,0x2d,0x37,0x20,0x20,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7a,0x52,0xfa,0x22,0x7a,0x22,0x22,0x22,0x0a,0x04 -+// 38371 闣 ; -+,0x3e,0x22,0x3e,0x22,0x3e,0x24,0x2f,0x28,0x23,0x22,0x27,0x24,0x27,0x24,0x27,0x20,0x3e,0x22,0x3e,0x22,0xbe,0x92,0xfa,0x12,0xe2,0x22,0xf2,0x92,0xf2,0x92,0xf2,0x06 -+// 38372 闤 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x27,0x25,0x27,0x20,0x2f,0x22,0x23,0x26,0x2b,0x22,0x20,0x3e,0x22,0x3e,0x22,0x3e,0xf2,0x52,0xf2,0x02,0xfa,0x22,0xe2,0x52,0x22,0x12,0x06 -+// 38373 闥 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x28,0x24,0x21,0x2c,0x25,0x24,0x25,0x24,0x2b,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x42,0xf2,0x42,0xfa,0x92,0xfa,0x42,0xfa,0x42,0xfa,0x06 -+// 38374 闦 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x27,0x25,0x27,0x25,0x2f,0x22,0x23,0x21,0x27,0x20,0x3e,0x22,0x3e,0x22,0x3e,0x42,0xf2,0x52,0xf2,0x52,0xfa,0x22,0xe2,0x42,0xf2,0x06 -+// 38375 闧 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x12,0x10,0x16,0x12,0x12,0x12,0x12,0x15,0x10,0x10,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x71,0x21,0xf9,0x51,0x79,0xd1,0x49,0xfd,0x01,0x03 -+// 38376 门 ; -+,0x08,0x05,0x04,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 38377 闩 ; -+,0x10,0x0d,0x04,0x10,0x10,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0x02,0x02,0x02,0xfa,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 38378 闪 ; -+,0x10,0x09,0x08,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x22,0x2c,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0x02,0x82,0x82,0x82,0x82,0x42,0x22,0x12,0x12,0x02,0x02,0x0a,0x04 -+// 38379 闫 ; -+,0x10,0x0d,0x04,0x00,0x13,0x10,0x10,0x13,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0xf2,0x02,0x02,0xf2,0x02,0x02,0xfa,0x02,0x02,0x02,0x0a,0x04 -+// 38380 闬 ; -+,0x08,0x04,0x04,0x10,0x13,0x10,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0xf2,0x82,0x82,0xfa,0x82,0x82,0x82,0x82,0x82,0x82,0x0a,0x04 -+// 38381 闭 ; -+,0x10,0x0d,0x04,0x10,0x10,0x10,0x17,0x10,0x10,0x11,0x16,0x10,0x11,0x10,0x10,0x10,0x00,0xfe,0x02,0x42,0x42,0x42,0xfa,0x42,0xc2,0x42,0x42,0x42,0x42,0x82,0x0a,0x04 -+// 38382 问 ; -+,0x08,0x05,0x04,0x10,0x10,0x13,0x12,0x12,0x12,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0x02,0xf2,0x12,0x12,0x12,0xf2,0x02,0x02,0x02,0x02,0x0a,0x04 -+// 38383 闯 ; -+,0x08,0x04,0x04,0x10,0x13,0x12,0x12,0x13,0x10,0x17,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0xe2,0x22,0x22,0xfa,0x0a,0xea,0x0a,0x2a,0x12,0x02,0x0a,0x04 -+// 38384 闰 ; -+,0x08,0x04,0x04,0x10,0x17,0x10,0x10,0x17,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0xfa,0x82,0x82,0xfa,0x82,0x82,0x82,0xfe,0x02,0x02,0x0a,0x04 -+// 38385 闱 ; -+,0x10,0x0d,0x24,0x20,0x2f,0x20,0x27,0x20,0x2f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0xfe,0x82,0x82,0xfa,0x82,0xf2,0x82,0xfa,0x8a,0x8a,0xaa,0x92,0x82,0x0a,0x04 -+// 38386 闲 ; -+,0x10,0x0d,0x04,0x10,0x10,0x17,0x10,0x11,0x11,0x12,0x12,0x14,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x82,0x82,0xfa,0x82,0xc2,0xa2,0x92,0x92,0x82,0x82,0x82,0x0a,0x04 -+// 38387 闳 ; -+,0x08,0x05,0x04,0x10,0x17,0x10,0x11,0x11,0x12,0x12,0x15,0x1b,0x10,0x10,0x10,0x10,0x00,0xfe,0x82,0x82,0xfa,0x82,0x02,0x42,0x42,0x82,0x12,0xfa,0x0a,0x02,0x0a,0x04 -+// 38388 间 ; -+,0x10,0x09,0x08,0x20,0x23,0x22,0x22,0x23,0x22,0x22,0x23,0x20,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0x02,0xf2,0x12,0x12,0xf2,0x12,0x12,0xf2,0x02,0x02,0x02,0x0a,0x04 -+// 38389 闵 ; -+,0x08,0x05,0x04,0x10,0x10,0x17,0x10,0x11,0x10,0x10,0x10,0x13,0x1c,0x10,0x10,0x10,0x00,0xfe,0x02,0x82,0x42,0xfa,0x22,0x22,0xc2,0x42,0xa2,0x12,0x12,0x02,0x0a,0x04 -+// 38390 闶 ; -+,0x08,0x05,0x04,0x10,0x17,0x10,0x10,0x11,0x11,0x11,0x11,0x12,0x12,0x14,0x10,0x10,0x00,0xfe,0x82,0x42,0xfa,0x02,0x02,0xe2,0x22,0x22,0x2a,0x2a,0x1a,0x02,0x0a,0x04 -+// 38391 闷 ; -+,0x08,0x05,0x04,0x20,0x20,0x22,0x22,0x2a,0x2a,0x32,0x22,0x21,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0x02,0x82,0x42,0x52,0x0a,0x0a,0x02,0x12,0xf2,0x02,0x02,0x0a,0x04 -+// 38392 闸 ; -+,0x08,0x05,0x04,0x10,0x13,0x12,0x13,0x12,0x13,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0xfa,0x4a,0xfa,0x4a,0xfa,0x42,0x42,0x42,0x42,0x42,0x0a,0x04 -+// 38393 闹 ; -+,0x10,0x0b,0x01,0x10,0x1f,0x10,0x10,0x17,0x14,0x14,0x14,0x14,0x14,0x10,0x10,0x10,0x00,0xfe,0x02,0x82,0xfa,0x82,0x82,0xf2,0x92,0x92,0x92,0xb2,0x92,0x82,0x8a,0x04 -+// 38394 闺 ; -+,0x10,0x0d,0x24,0x20,0x27,0x20,0x2f,0x20,0x20,0x27,0x20,0x20,0x2f,0x20,0x20,0x20,0x00,0xfe,0x82,0x82,0xf2,0x82,0xfa,0x82,0x82,0xf2,0x82,0x82,0xfa,0x02,0x0a,0x04 -+// 38395 闻 ; -+,0x08,0x05,0x20,0x20,0x2f,0x22,0x23,0x22,0x23,0x22,0x22,0x2f,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0x02,0xfa,0x22,0xe2,0x22,0xe2,0x22,0x7a,0xa2,0x22,0x22,0x2a,0x04 -+// 38396 闼 ; -+,0x08,0x05,0x24,0x20,0x28,0x24,0x21,0x2e,0x22,0x22,0x23,0x22,0x25,0x28,0x20,0x20,0x00,0xfe,0x02,0x42,0x42,0x42,0xfa,0x42,0x62,0x92,0x0a,0x02,0xfa,0x02,0x0a,0x04 -+// 38397 闽 ; -+,0x08,0x04,0x24,0x20,0x20,0x27,0x24,0x24,0x27,0x20,0x20,0x2f,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0x82,0x82,0xf2,0x92,0x92,0xf2,0x82,0x92,0xfa,0x0a,0x02,0x0a,0x04 -+// 38398 闾 ; -+,0x08,0x04,0x04,0x10,0x13,0x12,0x13,0x10,0x17,0x14,0x14,0x17,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0xf2,0x12,0xf2,0x02,0xfa,0x0a,0x0a,0xfa,0x02,0x02,0x0a,0x04 -+// 38399 闿 ; -+,0x10,0x0d,0x04,0x10,0x12,0x13,0x10,0x13,0x10,0x13,0x12,0x12,0x11,0x10,0x10,0x10,0x00,0xfe,0x02,0x82,0x92,0xf2,0x02,0xf2,0x12,0xf2,0x02,0x0a,0xfa,0x02,0x0a,0x04 -+// 38400 阀 ; -+,0x08,0x04,0x04,0x11,0x11,0x12,0x17,0x1a,0x12,0x12,0x13,0x12,0x12,0x12,0x10,0x10,0x00,0xfe,0x02,0x62,0x52,0x7a,0xc2,0x4a,0x52,0x62,0xaa,0x2a,0x1a,0x0a,0x02,0x06 -+// 38401 阁 ; -+,0x10,0x0b,0x01,0x21,0x22,0x25,0x20,0x23,0x3c,0x23,0x22,0x22,0x23,0x20,0x20,0x20,0x00,0xfe,0x02,0xf2,0x22,0x42,0x82,0x62,0x1a,0xe2,0x22,0x22,0xe2,0x02,0x0a,0x04 -+// 38402 阂 ; -+,0x08,0x04,0x25,0x20,0x27,0x20,0x21,0x23,0x20,0x23,0x2c,0x21,0x2e,0x20,0x20,0x20,0x00,0xfe,0x02,0x82,0xfa,0x82,0x22,0xc2,0x92,0x22,0x42,0xb2,0x12,0x02,0x0a,0x04 -+// 38403 阃 ; -+,0x10,0x09,0x20,0x27,0x24,0x24,0x27,0x24,0x25,0x26,0x24,0x27,0x24,0x20,0x20,0x20,0x00,0xfe,0x02,0xf2,0x92,0x92,0xf2,0xd2,0xb2,0x92,0x92,0xf2,0x12,0x02,0x0a,0x04 -+// 38404 阄 ; -+,0x10,0x0b,0x29,0x21,0x22,0x2f,0x24,0x27,0x24,0x27,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0xf2,0x22,0xf2,0x92,0xf2,0x92,0xf2,0x8a,0x8a,0x7a,0x02,0x0a,0x04 -+// 38405 阅 ; -+,0x10,0x09,0x28,0x22,0x21,0x27,0x24,0x24,0x27,0x21,0x21,0x22,0x2c,0x20,0x20,0x20,0x00,0xfe,0x02,0x12,0x22,0xf2,0x12,0x12,0xf2,0x42,0x4a,0x4a,0x3a,0x02,0x0a,0x04 -+// 38406 阆 ; -+,0x10,0x0b,0x29,0x20,0x23,0x22,0x23,0x22,0x23,0x22,0x22,0x23,0x22,0x20,0x20,0x20,0x00,0xfe,0x02,0x82,0xe2,0x22,0xe2,0x22,0xe2,0x92,0x62,0x22,0x12,0x02,0x0a,0x04 -+// 38407 阇 ; -+,0x10,0x0b,0x28,0x20,0x27,0x20,0x2f,0x20,0x23,0x26,0x2b,0x22,0x23,0x20,0x20,0x20,0x00,0xfe,0x82,0x92,0xf2,0xa2,0xfa,0x82,0xf2,0x12,0xf2,0x12,0xf2,0x02,0x0a,0x04 -+// 38408 阈 ; -+,0x10,0x09,0x00,0x20,0x2f,0x20,0x2f,0x29,0x2f,0x20,0x23,0x2c,0x21,0x20,0x20,0x20,0x00,0xfe,0x62,0x52,0xfa,0x42,0x42,0x52,0x52,0x22,0x2a,0x5a,0x8a,0x02,0x0a,0x04 -+// 38409 阉 ; -+,0x08,0x05,0x04,0x20,0x27,0x21,0x22,0x2f,0x22,0x23,0x22,0x23,0x20,0x20,0x20,0x20,0x00,0xfe,0x82,0x82,0xfa,0x22,0x92,0xfe,0x92,0xf2,0x92,0xf2,0x8a,0x7a,0x02,0x06 -+// 38410 阊 ; -+,0x08,0x05,0x24,0x23,0x22,0x23,0x22,0x27,0x24,0x27,0x24,0x27,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0xf2,0x12,0xf2,0x12,0xfa,0x0a,0xfa,0x0a,0xfa,0x02,0x02,0x0a,0x04 -+// 38411 阋 ; -+,0x08,0x05,0x24,0x21,0x26,0x24,0x27,0x24,0x27,0x21,0x21,0x22,0x22,0x24,0x20,0x20,0x00,0xfe,0x02,0x02,0x72,0x12,0x72,0x12,0xf2,0x42,0x4a,0x4a,0x3a,0x02,0x0a,0x04 -+// 38412 阌 ; -+,0x08,0x05,0x04,0x10,0x17,0x12,0x17,0x14,0x13,0x11,0x10,0x10,0x13,0x10,0x10,0x10,0x00,0xfe,0x02,0x7a,0x92,0xa2,0xfa,0x0a,0xf2,0x22,0xc2,0xa2,0x12,0x02,0x0a,0x04 -+// 38413 阍 ; -+,0x10,0x09,0x28,0x27,0x24,0x27,0x24,0x25,0x26,0x23,0x22,0x23,0x22,0x23,0x20,0x20,0x00,0xfe,0x02,0xf2,0x82,0xfa,0x42,0x2a,0x1a,0xe2,0x22,0xe2,0x22,0xe2,0x0a,0x04 -+// 38414 阎 ; -+,0x10,0x0d,0x04,0x11,0x11,0x12,0x1d,0x16,0x14,0x17,0x14,0x17,0x10,0x10,0x10,0x10,0x00,0xfe,0x02,0x02,0xf2,0x22,0x02,0x7a,0x0a,0x7a,0x0a,0xfa,0x02,0x02,0x0a,0x04 -+// 38415 阏 ; -+,0x10,0x09,0x28,0x24,0x22,0x2f,0x22,0x22,0x23,0x24,0x24,0x24,0x2a,0x31,0x20,0x20,0x00,0xfe,0x02,0x22,0x22,0xb2,0x4a,0x46,0xa2,0x92,0xa2,0x92,0x92,0x02,0x0a,0x04 -+// 38416 阐 ; -+,0x08,0x05,0x20,0x22,0x21,0x27,0x24,0x27,0x24,0x27,0x20,0x2f,0x20,0x20,0x20,0x20,0x00,0xfe,0x02,0x22,0x42,0xf2,0x92,0xf2,0x92,0xf2,0x82,0xfa,0x82,0x82,0x8a,0x04 -+// 38417 阑 ; -+,0x10,0x0b,0x00,0x20,0x2f,0x20,0x2f,0x2a,0x2f,0x21,0x22,0x2c,0x20,0x20,0x20,0x20,0x00,0xfe,0x82,0x82,0xfa,0x82,0xfa,0xaa,0xfa,0xc2,0xa2,0x9a,0x8a,0x82,0x0a,0x04 -+// 38418 阒 ; -+,0x10,0x09,0x00,0x27,0x24,0x26,0x25,0x24,0x27,0x20,0x2f,0x21,0x22,0x2c,0x20,0x20,0x00,0xfe,0x02,0xf2,0x92,0x52,0x32,0x92,0xf2,0xa2,0xfa,0x42,0x22,0x1a,0x02,0x06 -+// 38419 阓 ; -+,0x10,0x0b,0x08,0x20,0x27,0x24,0x2f,0x20,0x27,0x24,0x24,0x24,0x21,0x26,0x20,0x20,0x00,0xfe,0x82,0x82,0xf2,0x92,0xfa,0x02,0xf2,0x12,0x92,0x92,0x42,0x32,0x02,0x06 -+// 38420 阔 ; -+,0x08,0x05,0x20,0x28,0x25,0x20,0x31,0x2a,0x22,0x2d,0x25,0x25,0x25,0x20,0x20,0x20,0x00,0xfe,0x02,0x32,0xc2,0x42,0xfa,0x42,0x42,0xf2,0x12,0x12,0xf2,0x02,0x0a,0x04 -+// 38421 阕 ; -+,0x10,0x0d,0x24,0x20,0x27,0x25,0x22,0x27,0x28,0x27,0x20,0x21,0x22,0x2c,0x20,0x00,0x00,0xfe,0x02,0x92,0x62,0x4a,0x32,0xd2,0x8e,0xf2,0x82,0x42,0x22,0x22,0x0a,0x04 -+// 38422 阖 ; -+,0x10,0x09,0x08,0x23,0x20,0x27,0x21,0x23,0x20,0x27,0x25,0x25,0x2f,0x20,0x20,0x20,0x00,0xfe,0x82,0xe2,0x82,0xfa,0x22,0xf2,0x02,0xf2,0x52,0x52,0xfa,0x02,0x0a,0x04 -+// 38423 阗 ; -+,0x10,0x0b,0x28,0x27,0x20,0x23,0x22,0x23,0x22,0x23,0x22,0x27,0x21,0x26,0x20,0x20,0x00,0xfe,0x82,0xfa,0x82,0xf2,0x12,0xf2,0x12,0xf2,0x12,0xfa,0x22,0x12,0x02,0x06 -+// 38424 阘 ; -+,0x08,0x05,0x04,0x23,0x22,0x22,0x23,0x20,0x27,0x22,0x21,0x22,0x24,0x21,0x20,0x20,0x00,0xfe,0x02,0xf2,0x92,0x52,0xf2,0x02,0xba,0xaa,0x9a,0xaa,0xca,0x9a,0x02,0x06 -+// 38425 阙 ; -+,0x10,0x09,0x20,0x28,0x25,0x2f,0x22,0x2a,0x2a,0x2f,0x22,0x24,0x24,0x28,0x20,0x20,0x00,0xfe,0x02,0xa2,0x22,0xbe,0x4a,0x92,0x92,0x92,0x32,0x2a,0x46,0x86,0x02,0x06 -+// 38426 阚 ; -+,0x10,0x09,0x20,0x27,0x21,0x2f,0x25,0x27,0x25,0x27,0x25,0x2f,0x21,0x20,0x20,0x20,0x00,0xfe,0x12,0x12,0x22,0xbe,0x4a,0xca,0x32,0x12,0xaa,0x26,0x42,0x02,0x0a,0x04 -+// 38427 阛 ; -+,0x10,0x0b,0x20,0x27,0x25,0x27,0x20,0x2f,0x22,0x23,0x21,0x23,0x2d,0x21,0x21,0x20,0x00,0xfe,0x02,0xf2,0x52,0xf2,0x02,0xfa,0x22,0xe2,0x52,0x22,0x12,0x82,0x0a,0x04 -+// 38428 阜 ; -+,0x00,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x80,0x00,0xf8,0x08,0xf8,0x00,0xf8,0x08,0xf8,0x80,0x80,0xff,0x80,0x80,0x80,0x80 -+// 38429 阝 ; -+,0x00,0x3f,0x21,0x22,0x22,0x24,0x22,0x21,0x20,0x20,0x20,0x25,0x22,0x20,0x20,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 38430 阞 ; -+,0x00,0x3e,0x24,0x24,0x29,0x28,0x24,0x22,0x22,0x2a,0x24,0x20,0x20,0x21,0x26,0x00,0x00,0x20,0x20,0x20,0xfe,0x22,0x22,0x22,0x42,0x42,0x42,0x82,0x82,0x0a,0x04,0x00 -+// 38431 队 ; -+,0x00,0x7e,0x44,0x48,0x50,0x48,0x44,0x44,0x44,0x54,0x48,0x40,0x41,0x42,0x4c,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x50,0x50,0x88,0x88,0x04,0x03,0x02,0x00 -+// 38432 阠 ; -+,0x3e,0x22,0x24,0x24,0x28,0x24,0x24,0x22,0x22,0x3a,0x24,0x20,0x20,0x20,0x20,0x00,0xfc,0x44,0x44,0x44,0x44,0x44,0xf4,0x44,0x44,0x44,0x44,0x45,0x45,0x43,0x41,0x00 -+// 38433 阡 ; -+,0x00,0x3c,0x24,0x24,0x28,0x28,0x24,0x22,0x22,0x3a,0x24,0x20,0x20,0x20,0x20,0x20,0x00,0x0e,0x70,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 38434 阢 ; -+,0x00,0x3d,0x24,0x28,0x30,0x28,0x24,0x22,0x22,0x3a,0x24,0x20,0x21,0x22,0x24,0x20,0x00,0xff,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x89,0x09,0x09,0x07,0x00 -+// 38435 阣 ; -+,0x00,0x3e,0x24,0x24,0x28,0x29,0x24,0x22,0x22,0x22,0x2a,0x24,0x21,0x21,0x20,0x00,0x20,0x20,0x40,0x7f,0x80,0x00,0xfc,0x08,0x10,0x20,0x40,0x81,0x01,0x01,0xff,0x00 -+// 38436 阤 ; -+,0x00,0x3c,0x25,0x25,0x29,0x31,0x2b,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x20,0x20,0x10,0x10,0x10,0x12,0x1e,0x72,0x92,0x12,0x12,0x1a,0x14,0x11,0x01,0x01,0xff,0x00 -+// 38437 阥 ; -+,0x00,0x7c,0x44,0x48,0x4b,0x50,0x48,0x48,0x45,0x65,0x5a,0x44,0x48,0x40,0x40,0x40,0x20,0x20,0x20,0x20,0xa2,0xa4,0xb8,0xb0,0x28,0x28,0x24,0x27,0x22,0x20,0xa0,0x40 -+// 38438 阦 ; -+,0x00,0x3e,0x22,0x24,0x25,0x28,0x24,0x22,0x22,0x3a,0x24,0x20,0x20,0x21,0x26,0x20,0x20,0x20,0x20,0x24,0x24,0xa8,0xb0,0x20,0x20,0x50,0x50,0x88,0x88,0x07,0x02,0x00 -+// 38439 阧 ; -+,0x00,0x3c,0x24,0x28,0x28,0x31,0x28,0x24,0x24,0x34,0x2b,0x20,0x20,0x20,0x20,0x20,0x08,0x08,0x88,0x48,0x48,0x08,0x88,0x88,0x0f,0x78,0x88,0x08,0x08,0x08,0x08,0x08 -+// 38440 阨 ; -+,0x00,0x3d,0x25,0x29,0x31,0x29,0x25,0x25,0x25,0x35,0x29,0x22,0x22,0x24,0x28,0x20,0x00,0xff,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x54,0x48,0x41,0x41,0x41,0x3f,0x00 -+// 38441 阩 ; -+,0x00,0x3e,0x22,0x24,0x24,0x28,0x25,0x24,0x24,0x34,0x28,0x20,0x21,0x21,0x22,0x20,0x08,0x28,0xc8,0x48,0x48,0x48,0xff,0x48,0x48,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 38442 阪 ; -+,0x00,0x3d,0x25,0x29,0x31,0x29,0x29,0x25,0x25,0x35,0x2a,0x22,0x24,0x29,0x26,0x20,0x00,0xfe,0x00,0x00,0x00,0xfc,0x84,0x48,0x48,0x28,0x10,0x30,0x48,0x87,0x02,0x00 -+// 38443 阫 ; -+,0x00,0x3e,0x22,0x24,0x24,0x28,0x24,0x22,0x22,0x2b,0x24,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0xff,0x10,0x10,0x20,0x30,0x68,0xa4,0x23,0x21,0x20,0x20,0x20,0x20,0x20 -+// 38444 阬 ; -+,0x00,0x3e,0x24,0x2b,0x28,0x30,0x28,0x24,0x24,0x24,0x34,0x29,0x21,0x22,0x2c,0x20,0x40,0x20,0x20,0xff,0x00,0x00,0xf8,0x88,0x88,0x88,0x88,0x09,0x09,0x09,0x07,0x00 -+// 38445 阭 ; -+,0x00,0x3e,0x22,0x24,0x28,0x31,0x28,0x24,0x24,0x24,0x34,0x29,0x21,0x22,0x2c,0x20,0x20,0x20,0x40,0x48,0x84,0xfe,0x02,0x90,0x90,0x90,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 38446 阮 ; -+,0x00,0x3d,0x24,0x28,0x28,0x33,0x28,0x24,0x24,0x24,0x34,0x29,0x21,0x22,0x24,0x20,0x00,0xfc,0x00,0x00,0x00,0xfe,0x90,0x90,0x90,0x90,0x90,0x11,0x11,0x11,0x0f,0x00 -+// 38447 阯 ; -+,0x00,0x3e,0x22,0x24,0x28,0x30,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x27,0x20,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 38448 阰 ; -+,0x00,0x3d,0x25,0x25,0x29,0x31,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x20,0x10,0x10,0x10,0x10,0x10,0x13,0xdc,0x10,0x10,0x10,0x10,0x11,0x51,0x91,0x0f,0x00 -+// 38449 阱 ; -+,0x00,0x3e,0x24,0x28,0x33,0x28,0x24,0x24,0x27,0x34,0x28,0x20,0x21,0x21,0x22,0x24,0x88,0x88,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 38450 防 ; -+,0x00,0x3e,0x24,0x29,0x28,0x30,0x28,0x24,0x24,0x24,0x34,0x29,0x21,0x22,0x24,0x20,0x40,0x20,0x20,0xff,0x40,0x40,0x40,0x7c,0x84,0x84,0x84,0x04,0x04,0x04,0x14,0x08 -+// 38451 阳 ; -+,0x00,0x3e,0x22,0x24,0x24,0x28,0x24,0x22,0x22,0x22,0x34,0x28,0x20,0x20,0x20,0x20,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0x82,0xfe,0x82,0x00,0x00 -+// 38452 阴 ; -+,0x00,0x3e,0x22,0x24,0x24,0x28,0x24,0x22,0x22,0x2a,0x24,0x20,0x21,0x21,0x22,0x24,0x00,0xfe,0x82,0x82,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x02,0x02,0x0a,0x04 -+// 38453 阵 ; -+,0x00,0x7c,0x44,0x4b,0x50,0x48,0x45,0x47,0x44,0x54,0x4b,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xfe,0x80,0xa0,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20,0x20 -+// 38454 阶 ; -+,0x3e,0x22,0x24,0x28,0x30,0x29,0x26,0x24,0x24,0x34,0x28,0x20,0x21,0x21,0x22,0x20,0x20,0x20,0x50,0x48,0x84,0x03,0x88,0x88,0x88,0x88,0x88,0x88,0x08,0x08,0x08,0x08 -+// 38455 阷 ; -+,0x00,0x3d,0x24,0x28,0x30,0x28,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x27,0x20,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x00 -+// 38456 阸 ; -+,0x00,0x3e,0x25,0x25,0x29,0x31,0x29,0x25,0x25,0x25,0x35,0x2a,0x22,0x24,0x28,0x20,0x20,0x10,0xfe,0x02,0x02,0xfe,0x00,0x7e,0x04,0x08,0x10,0x21,0x41,0x41,0x3f,0x00 -+// 38457 阹 ; -+,0x00,0x3c,0x24,0x29,0x28,0x30,0x28,0x27,0x24,0x24,0x34,0x28,0x21,0x23,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x40,0x40,0x80,0x88,0x04,0xfe,0x04,0x00 -+// 38458 阺 ; -+,0x00,0x3e,0x25,0x29,0x29,0x31,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x20,0x00,0x1c,0xf0,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x0a,0x4a,0xa6,0x12,0x10 -+// 38459 阻 ; -+,0x3e,0x25,0x25,0x29,0x31,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x27,0x20,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0xff,0x00 -+// 38460 阼 ; -+,0x00,0x3e,0x22,0x24,0x29,0x2a,0x24,0x22,0x22,0x2a,0x24,0x20,0x20,0x20,0x20,0x20,0x40,0x40,0x80,0xff,0x40,0x40,0x7e,0x40,0x40,0x40,0x7f,0x40,0x40,0x40,0x40,0x40 -+// 38461 阽 ; -+,0x00,0x3e,0x22,0x24,0x28,0x28,0x24,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x20,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0xfc,0x04,0x04,0x04,0x04,0x04,0xfc,0x04,0x00 -+// 38462 阾 ; -+,0x00,0x3e,0x22,0x24,0x28,0x31,0x2a,0x24,0x25,0x24,0x34,0x28,0x20,0x20,0x20,0x00,0x20,0x20,0x60,0x50,0x88,0x27,0x10,0x00,0xfc,0x08,0x90,0x60,0x20,0x30,0x10,0x00 -+// 38463 阿 ; -+,0x00,0x3d,0x24,0x28,0x30,0x29,0x25,0x25,0x25,0x35,0x28,0x20,0x20,0x20,0x20,0x20,0x00,0xff,0x04,0x04,0x04,0xf4,0x14,0x14,0x14,0xf4,0x04,0x04,0x04,0x04,0x14,0x08 -+// 38464 陀 ; -+,0x00,0x3c,0x24,0x29,0x31,0x28,0x24,0x24,0x24,0x34,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x10,0x10,0xff,0x02,0x40,0x40,0x4c,0x70,0x40,0x40,0x42,0x42,0x42,0x3e,0x00 -+// 38465 陁 ; -+,0x00,0x3e,0x22,0x25,0x25,0x2a,0x28,0x24,0x25,0x24,0x34,0x28,0x20,0x20,0x20,0x20,0x80,0x80,0xff,0x00,0x20,0x24,0xbe,0xe4,0xa4,0xa4,0xb4,0xa8,0xa1,0x81,0x7f,0x00 -+// 38466 陂 ; -+,0x00,0x3c,0x25,0x25,0x29,0x31,0x29,0x25,0x25,0x25,0x35,0x29,0x22,0x22,0x25,0x20,0x00,0x10,0xff,0x12,0x14,0x10,0xfe,0x44,0x44,0x28,0x28,0x10,0x28,0x44,0x87,0x02 -+// 38467 陃 ; -+,0x00,0x3d,0x24,0x28,0x31,0x29,0x25,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x00,0xff,0x10,0x10,0xfe,0x12,0x12,0x12,0x2a,0x46,0x82,0x02,0x02,0x02,0x0a,0x04 -+// 38468 附 ; -+,0x00,0x3c,0x24,0x25,0x29,0x33,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x84,0x84,0x84,0x04,0x7f,0x04,0x04,0x44,0x24,0x24,0x04,0x04,0x04,0x04,0x14,0x08 -+// 38469 际 ; -+,0x00,0x7c,0x44,0x48,0x48,0x53,0x48,0x44,0x45,0x55,0x4a,0x42,0x44,0x40,0x40,0x40,0x00,0xfe,0x00,0x00,0x00,0xff,0x20,0x20,0x28,0x24,0x22,0x23,0x22,0x20,0xa0,0x40 -+// 38470 陆 ; -+,0x00,0x7c,0x44,0x4b,0x50,0x48,0x44,0x47,0x44,0x54,0x4a,0x42,0x42,0x43,0x42,0x40,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x20,0x20,0x22,0x22,0x22,0xfe,0x02,0x00 -+// 38471 陇 ; -+,0x00,0x3e,0x24,0x2b,0x30,0x28,0x24,0x24,0x24,0x34,0x28,0x21,0x21,0x22,0x24,0x20,0x50,0x48,0x48,0xff,0x50,0x50,0x52,0x92,0x94,0x98,0xb0,0x50,0x11,0x11,0x0f,0x00 -+// 38472 陈 ; -+,0x00,0x3c,0x25,0x24,0x28,0x30,0x29,0x25,0x24,0x34,0x29,0x21,0x22,0x24,0x20,0x20,0x20,0x20,0xff,0x40,0x80,0xa0,0x20,0xfe,0x20,0x28,0x24,0x22,0x23,0x21,0xa0,0x40 -+// 38473 陉 ; -+,0x00,0x3d,0x24,0x28,0x30,0x28,0x24,0x27,0x24,0x35,0x28,0x20,0x20,0x20,0x27,0x20,0x00,0xfe,0x04,0x08,0x10,0x28,0xc6,0x03,0x02,0xfc,0x20,0x20,0x20,0x20,0xff,0x00 -+// 38474 陊 ; -+,0x00,0x3e,0x22,0x24,0x25,0x28,0x24,0x22,0x22,0x32,0x2d,0x20,0x20,0x20,0x23,0x20,0x20,0x20,0x7e,0x84,0x48,0x30,0x50,0x9f,0x21,0x42,0xa4,0x28,0x10,0x60,0x80,0x00 -+// 38475 陋 ; -+,0x00,0x3d,0x24,0x28,0x30,0x2a,0x26,0x22,0x22,0x22,0x36,0x2a,0x22,0x22,0x23,0x20,0x00,0xff,0x10,0x10,0x10,0xfe,0x92,0x92,0xaa,0xca,0x82,0x8a,0x84,0x00,0xff,0x00 -+// 38476 陌 ; -+,0x00,0x3d,0x24,0x28,0x30,0x28,0x24,0x24,0x24,0x34,0x28,0x20,0x20,0x20,0x20,0x20,0x00,0xff,0x20,0x20,0x40,0xfe,0x82,0x82,0x82,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82 -+// 38477 降 ; -+,0x00,0x3c,0x24,0x29,0x28,0x30,0x29,0x24,0x25,0x34,0x29,0x21,0x20,0x20,0x20,0x20,0x40,0x7c,0x88,0x50,0x20,0x58,0xa7,0x20,0xfc,0x20,0x20,0xfe,0x20,0x20,0x20,0x20 -+// 38478 陎 ; -+,0x00,0x3e,0x22,0x24,0x24,0x29,0x24,0x23,0x22,0x2a,0x24,0x21,0x21,0x22,0x24,0x20,0x20,0x20,0xa0,0xfe,0xa0,0x20,0x20,0xff,0x60,0xb0,0xa8,0x28,0x24,0x27,0x22,0x20 -+// 38479 陏 ; -+,0x00,0x3c,0x25,0x28,0x28,0x30,0x29,0x26,0x24,0x24,0x34,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0xff,0x40,0x40,0xfc,0x84,0x84,0xfc,0x84,0xfc,0x84,0x84,0x84,0x94,0x88 -+// 38480 限 ; -+,0x00,0x7d,0x49,0x49,0x51,0x51,0x49,0x45,0x45,0x55,0x49,0x41,0x41,0x41,0x41,0x41,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x40,0x24,0x28,0x10,0x10,0x08,0x47,0x82,0x00 -+// 38481 陑 ; -+,0x00,0x7d,0x44,0x48,0x50,0x51,0x49,0x45,0x45,0x55,0x49,0x41,0x41,0x41,0x41,0x41,0x00,0xff,0x20,0x20,0x40,0xfe,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x56,0x02 -+// 38482 陒 ; -+,0x00,0x3e,0x22,0x25,0x2b,0x29,0x25,0x25,0x25,0x35,0x29,0x22,0x22,0x24,0x28,0x20,0x40,0x7c,0x88,0x10,0xff,0x00,0xfc,0x44,0x44,0x44,0x54,0x48,0x41,0x41,0x3f,0x00 -+// 38483 陓 ; -+,0x00,0x7c,0x49,0x48,0x50,0x53,0x48,0x44,0x45,0x64,0x58,0x40,0x40,0x40,0x40,0x40,0x20,0x20,0xff,0x50,0x8c,0x03,0x78,0x00,0xff,0x20,0x3c,0x04,0x04,0x04,0x14,0x08 -+// 38484 陔 ; -+,0x00,0x7c,0x44,0x4b,0x50,0x50,0x49,0x45,0x44,0x54,0x49,0x46,0x40,0x41,0x4e,0x40,0x40,0x20,0x20,0xff,0x40,0x84,0x08,0xf0,0x24,0x48,0x90,0x28,0x44,0x86,0x02,0x00 -+// 38485 陕 ; -+,0x00,0x7c,0x44,0x4b,0x48,0x52,0x49,0x45,0x47,0x44,0x54,0x48,0x41,0x42,0x4c,0x40,0x40,0x40,0x40,0xfe,0x40,0x44,0x48,0x50,0xff,0x40,0xa0,0x90,0x08,0x04,0x03,0x00 -+// 38486 陖 ; -+,0x00,0x3c,0x24,0x28,0x28,0x30,0x28,0x25,0x24,0x34,0x29,0x20,0x20,0x20,0x27,0x20,0x20,0x28,0x44,0xfe,0x02,0x84,0x82,0x42,0x7c,0xc4,0x48,0x30,0x30,0xc8,0x07,0x02 -+// 38487 陗 ; -+,0x00,0x3d,0x24,0x24,0x29,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x21,0x20,0x24,0xa4,0xa8,0xfe,0x02,0x02,0xfe,0x02,0x02,0xfe,0x02,0x02,0x02,0x0a,0x04 -+// 38488 陘 ; -+,0x00,0x3d,0x24,0x28,0x31,0x2a,0x25,0x25,0x24,0x35,0x28,0x20,0x20,0x20,0x27,0x20,0x00,0xfe,0x00,0x92,0x24,0x48,0x24,0x24,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 38489 陙 ; -+,0x00,0x7d,0x45,0x49,0x51,0x51,0x49,0x45,0x45,0x55,0x49,0x42,0x42,0x44,0x48,0x40,0x00,0xfe,0x00,0x7c,0x00,0x00,0xff,0x60,0x52,0x54,0x48,0x44,0x54,0x63,0x42,0x00 -+// 38490 陚 ; -+,0x00,0x78,0x4b,0x50,0x53,0x60,0x50,0x48,0x4a,0x4a,0x6a,0x52,0x42,0x42,0x47,0x40,0x10,0x14,0xd2,0x10,0xff,0x10,0x50,0x50,0x48,0x78,0x48,0x44,0x45,0xe5,0x03,0x01 -+// 38491 陛 ; -+,0x01,0x3d,0x25,0x29,0x29,0x31,0x29,0x25,0x24,0x34,0x29,0x20,0x20,0x20,0x27,0x20,0x10,0x10,0x16,0xd8,0x10,0x51,0x91,0x0f,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 38492 陜 ; -+,0x00,0x3c,0x24,0x2b,0x28,0x31,0x29,0x25,0x26,0x34,0x28,0x20,0x20,0x21,0x26,0x20,0x20,0x20,0x20,0xfe,0x20,0x28,0x28,0xac,0x72,0x20,0x50,0x50,0x88,0x04,0x03,0x00 -+// 38493 陝 ; -+,0x00,0x3c,0x24,0x25,0x28,0x32,0x29,0x25,0x26,0x24,0x34,0x28,0x20,0x21,0x26,0x20,0x20,0x20,0x20,0xff,0x20,0x28,0x24,0xaa,0x71,0x30,0x50,0x48,0x84,0x07,0x02,0x00 -+// 38494 陞 ; -+,0x00,0x3c,0x25,0x28,0x33,0x28,0x24,0x24,0x25,0x34,0x28,0x21,0x20,0x20,0x27,0x20,0x08,0x68,0xc8,0x48,0xff,0x48,0x88,0x88,0x08,0x28,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 38495 陟 ; -+,0x3c,0x24,0x29,0x29,0x31,0x2b,0x24,0x24,0x35,0x29,0x22,0x20,0x20,0x20,0x27,0x20,0x20,0x20,0x3c,0x20,0x20,0xff,0x20,0x20,0x24,0x24,0x28,0x10,0x20,0xc0,0x00,0x00 -+// 38496 陠 ; -+,0x00,0x3c,0x25,0x28,0x30,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x21,0x28,0x24,0xff,0x20,0x20,0xfe,0x22,0xfe,0x22,0x22,0xfe,0x22,0x22,0x22,0x2a,0x04 -+// 38497 陡 ; -+,0x00,0x3c,0x25,0x28,0x30,0x2b,0x24,0x24,0x25,0x35,0x29,0x23,0x22,0x24,0x28,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x3c,0x20,0x20,0xa0,0x60,0x1f,0x00 -+// 38498 院 ; -+,0x00,0x7c,0x47,0x4a,0x50,0x51,0x48,0x44,0x47,0x54,0x48,0x40,0x41,0x41,0x42,0x44,0x40,0x20,0xff,0x02,0x00,0xfc,0x00,0x00,0xff,0x90,0x90,0x90,0x11,0x11,0x11,0x0f -+// 38499 陣 ; -+,0x00,0x3e,0x25,0x28,0x29,0x31,0x29,0x25,0x25,0x34,0x28,0x27,0x20,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0x20,0xff,0x20,0x20,0x20,0x20 -+// 38500 除 ; -+,0x00,0x7c,0x44,0x48,0x51,0x53,0x4c,0x48,0x4b,0x68,0x51,0x41,0x42,0x44,0x49,0x40,0x40,0x40,0xa0,0x90,0x08,0xf6,0x40,0x40,0xfc,0x40,0x50,0x48,0x46,0x42,0x40,0x80 -+// 38501 陥 ; -+,0x00,0x3e,0x22,0x24,0x24,0x29,0x24,0x22,0x22,0x22,0x34,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x7e,0x44,0x88,0x10,0x00,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xa2,0xbe,0xa2 -+// 38502 陦 ; -+,0x00,0x3c,0x25,0x28,0x28,0x30,0x29,0x24,0x24,0x34,0x28,0x21,0x22,0x24,0x20,0x20,0x20,0x20,0xff,0x20,0xfe,0x20,0xff,0x40,0x44,0xff,0x84,0x24,0x14,0x04,0x14,0x08 -+// 38503 陧 ; -+,0x00,0x3d,0x25,0x29,0x29,0x31,0x29,0x25,0x24,0x34,0x29,0x20,0x20,0x20,0x23,0x20,0x00,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x20,0x20,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 38504 陨 ; -+,0x3c,0x24,0x24,0x28,0x30,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x20,0x20,0x23,0x20,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0x22,0x22,0x22,0x22,0x52,0x48,0x86,0x02,0x00 -+// 38505 险 ; -+,0x00,0x3c,0x24,0x28,0x28,0x31,0x36,0x28,0x24,0x25,0x34,0x28,0x20,0x20,0x27,0x20,0x20,0x20,0x20,0x50,0x88,0x04,0xfb,0x00,0x44,0x24,0xa8,0x88,0x10,0x20,0xff,0x00 -+// 38506 陪 ; -+,0x00,0x3e,0x22,0x24,0x28,0x28,0x24,0x27,0x24,0x34,0x29,0x21,0x21,0x21,0x21,0x21,0x40,0x20,0xfe,0x00,0x84,0x48,0x50,0xff,0x00,0x00,0xfc,0x04,0x04,0x04,0xfc,0x04 -+// 38507 陫 ; -+,0x00,0x3c,0x28,0x2b,0x30,0x28,0x2b,0x24,0x24,0x34,0x2b,0x20,0x20,0x20,0x20,0x20,0x90,0x90,0x90,0x9f,0x90,0x90,0x9e,0x90,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x90 -+// 38508 陬 ; -+,0x00,0x7f,0x4a,0x4a,0x53,0x52,0x4a,0x4b,0x6a,0x52,0x42,0x47,0x40,0x40,0x40,0x40,0x00,0xf0,0x40,0x7e,0xd2,0x52,0x54,0xd4,0x54,0x48,0xe8,0x54,0x57,0x62,0x40,0x40 -+// 38509 陭 ; -+,0x00,0x3c,0x25,0x28,0x28,0x30,0x2b,0x24,0x25,0x25,0x35,0x29,0x20,0x20,0x20,0x20,0x20,0x20,0xfe,0x20,0x50,0x88,0xff,0x04,0xe4,0x24,0x24,0xe4,0x04,0x04,0x14,0x08 -+// 38510 陮 ; -+,0x00,0x3e,0x24,0x24,0x29,0x31,0x2a,0x24,0x24,0x24,0x34,0x28,0x20,0x20,0x20,0x00,0x50,0x48,0x88,0xff,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80,0x00 -+// 38511 陯 ; -+,0x00,0x3c,0x24,0x28,0x29,0x32,0x28,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x21,0x20,0x20,0x50,0x88,0x04,0xfb,0x00,0xfe,0x52,0x52,0xfe,0x52,0x52,0x52,0x52,0x06 -+// 38512 陰 ; -+,0x00,0x3c,0x24,0x28,0x31,0x2a,0x24,0x24,0x25,0x34,0x2b,0x20,0x20,0x21,0x23,0x20,0x20,0x20,0x50,0xc8,0x27,0x02,0xf8,0x10,0xfc,0x00,0xff,0x40,0x80,0x08,0xfc,0x04 -+// 38513 陱 ; -+,0x00,0x3c,0x25,0x25,0x2a,0x28,0x24,0x25,0x24,0x34,0x28,0x21,0x20,0x20,0x20,0x20,0x80,0x80,0xfe,0x02,0x22,0xaa,0x72,0xfa,0x62,0xb2,0xaa,0x22,0x22,0x02,0x0a,0x04 -+// 38514 陲 ; -+,0x3c,0x25,0x28,0x2b,0x30,0x28,0x24,0x27,0x24,0x34,0x28,0x23,0x20,0x20,0x21,0x20,0x1e,0xe0,0x20,0xff,0xa8,0xa8,0xa8,0xff,0xa8,0xa8,0xa8,0xff,0x20,0x20,0xfe,0x00 -+// 38515 陳 ; -+,0x00,0x3c,0x25,0x24,0x29,0x29,0x25,0x25,0x25,0x34,0x28,0x20,0x20,0x21,0x26,0x20,0x20,0x20,0xff,0x20,0xfc,0x24,0xfc,0x24,0xfc,0x60,0x70,0xa8,0xa4,0x27,0x22,0x20 -+// 38516 陴 ; -+,0x00,0x3c,0x25,0x29,0x29,0x31,0x29,0x25,0x24,0x34,0x2b,0x20,0x20,0x20,0x20,0x20,0x20,0x40,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x50,0x90,0xff,0x10,0x10,0x10,0x10,0x10 -+// 38517 陵 ; -+,0x00,0x3c,0x25,0x28,0x2b,0x30,0x28,0x25,0x24,0x34,0x29,0x22,0x20,0x21,0x26,0x20,0x20,0x20,0xfe,0x20,0xff,0x90,0x88,0x46,0x78,0x88,0x50,0x20,0x50,0x8c,0x07,0x02 -+// 38518 陶 ; -+,0x00,0x3c,0x25,0x25,0x2a,0x30,0x29,0x25,0x24,0x34,0x28,0x20,0x20,0x20,0x20,0x20,0x80,0x80,0xfe,0x02,0x82,0xfa,0x22,0xfe,0x22,0xaa,0xaa,0xfa,0x02,0x02,0x0a,0x04 -+// 38519 陷 ; -+,0x00,0x3c,0x24,0x28,0x28,0x31,0x28,0x25,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x20,0x20,0x7e,0x44,0x88,0x00,0x40,0x8e,0x02,0x02,0xde,0x02,0x02,0x02,0xfe,0x02 -+// 38520 陸 ; -+,0x00,0x3c,0x25,0x24,0x28,0x33,0x28,0x24,0x25,0x24,0x35,0x28,0x20,0x20,0x27,0x20,0x20,0x20,0xfe,0x20,0x20,0xff,0x48,0x84,0x23,0x20,0xfc,0x20,0x20,0x20,0xff,0x00 -+// 38521 陹 ; -+,0x00,0x3d,0x24,0x2b,0x28,0x30,0x28,0x25,0x24,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x28,0xc8,0x48,0xff,0x48,0x88,0x88,0x08,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 38522 険 ; -+,0x00,0x3c,0x24,0x24,0x29,0x28,0x24,0x25,0x25,0x35,0x29,0x20,0x20,0x21,0x26,0x20,0x20,0x20,0x20,0x58,0x87,0xf8,0x20,0xfc,0x24,0x24,0xfc,0x20,0x50,0x88,0x07,0x00 -+// 38523 陻 ; -+,0x00,0x3d,0x24,0x28,0x31,0x29,0x25,0x25,0x24,0x34,0x29,0x20,0x20,0x20,0x23,0x20,0x00,0xff,0x48,0x48,0xfe,0x4a,0x4a,0xfe,0x20,0x20,0xfe,0x20,0x20,0x20,0xff,0x00 -+// 38524 陼 ; -+,0x00,0x3c,0x24,0x29,0x30,0x28,0x27,0x24,0x24,0x34,0x28,0x21,0x26,0x20,0x20,0x20,0x20,0x20,0x22,0xfe,0x24,0x28,0xff,0x10,0x20,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 38525 陽 ; -+,0x3c,0x24,0x24,0x28,0x30,0x28,0x25,0x24,0x24,0x35,0x28,0x20,0x23,0x20,0x20,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x40,0xfe,0x4a,0x4a,0x92,0x12,0x22,0xca,0x04 -+// 38526 陾 ; -+,0x00,0x3d,0x24,0x29,0x29,0x31,0x29,0x25,0x24,0x34,0x2b,0x20,0x20,0x20,0x20,0x23,0x00,0xff,0x40,0xfe,0x52,0x52,0x52,0x06,0x20,0x20,0xff,0x20,0x50,0x48,0x87,0x02 -+// 38527 陿 ; -+,0x3c,0x27,0x2a,0x2a,0x33,0x2a,0x26,0x26,0x27,0x36,0x2a,0x22,0x23,0x22,0x23,0x22,0x00,0xff,0x10,0x10,0xfe,0x94,0x94,0xda,0x31,0x10,0x28,0x44,0x83,0x00,0xff,0x00 -+// 38528 隀 ; -+,0x3c,0x25,0x24,0x2b,0x28,0x31,0x29,0x25,0x25,0x35,0x28,0x21,0x20,0x20,0x27,0x20,0x3e,0xe0,0x20,0xff,0x20,0xfe,0x22,0xfe,0x22,0xfe,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 38529 隁 ; -+,0x00,0x3f,0x26,0x26,0x2a,0x2a,0x32,0x2a,0x26,0x27,0x36,0x2a,0x22,0x22,0x23,0x22,0x00,0xfe,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xfe,0x48,0x30,0x28,0xc4,0xff,0x00 -+// 38530 隂 ; -+,0x00,0x3c,0x24,0x25,0x2b,0x31,0x29,0x25,0x25,0x35,0x2b,0x20,0x20,0x21,0x23,0x20,0x20,0x50,0x88,0x04,0xfb,0x00,0xf8,0x00,0xf8,0x00,0xfe,0x40,0x80,0x08,0xfc,0x04 -+// 38531 隃 ; -+,0x00,0x78,0x48,0x51,0x66,0x50,0x48,0x4b,0x4a,0x6b,0x52,0x43,0x42,0x42,0x42,0x42,0x40,0x60,0x90,0x08,0x07,0xf0,0x04,0xc4,0x54,0xd4,0x54,0xd4,0x54,0x44,0xcc,0x44 -+// 38532 隄 ; -+,0x3e,0x22,0x24,0x28,0x28,0x24,0x24,0x27,0x24,0x35,0x29,0x21,0x22,0x22,0x24,0x20,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x20,0x20,0x3e,0x20,0xa0,0x60,0x1f,0x00 -+// 38533 隅 ; -+,0x3c,0x25,0x29,0x29,0x31,0x29,0x24,0x24,0x27,0x36,0x2a,0x23,0x22,0x22,0x22,0x22,0x00,0xfc,0x24,0xfc,0x24,0xfc,0x20,0x20,0xfe,0x22,0x2a,0xfe,0x02,0x02,0x0a,0x04 -+// 38534 隆 ; -+,0x00,0x3c,0x24,0x29,0x28,0x30,0x29,0x24,0x25,0x35,0x2a,0x21,0x20,0x20,0x27,0x20,0x40,0x7c,0x84,0x48,0x30,0x68,0x87,0x78,0x20,0xfe,0x20,0xfc,0x20,0x20,0xff,0x00 -+// 38535 隇 ; -+,0x00,0x78,0x48,0x4b,0x52,0x63,0x52,0x4b,0x4a,0x4b,0x6b,0x52,0x45,0x46,0x48,0x40,0x10,0x14,0x12,0xff,0x10,0xf2,0x92,0xf2,0x94,0x54,0x48,0x88,0x55,0x25,0x03,0x01 -+// 38536 隈 ; -+,0x3c,0x25,0x25,0x29,0x31,0x29,0x24,0x27,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x21,0x00,0xfe,0x22,0xfe,0x22,0xfe,0x00,0xff,0x20,0x22,0x14,0x18,0x08,0x47,0x82,0x00 -+// 38537 隉 ; -+,0x00,0x3d,0x25,0x29,0x29,0x31,0x29,0x25,0x24,0x35,0x28,0x20,0x20,0x20,0x23,0x20,0x40,0x9e,0x02,0x02,0xde,0x02,0x02,0xfe,0x00,0xfe,0x20,0x20,0x20,0x20,0xff,0x00 -+// 38538 隊 ; -+,0x01,0x3c,0x24,0x2b,0x30,0x28,0x27,0x24,0x34,0x2b,0x20,0x20,0x23,0x2c,0x20,0x20,0x08,0x88,0x10,0xfe,0x40,0x84,0x48,0x70,0x90,0x28,0x4c,0x8b,0x08,0x10,0x50,0x20 -+// 38539 隋 ; -+,0x00,0x3c,0x25,0x28,0x31,0x2a,0x29,0x24,0x24,0x24,0x34,0x28,0x20,0x20,0x20,0x20,0x40,0x40,0xfe,0x80,0xfc,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 38540 隌 ; -+,0x00,0x3c,0x25,0x28,0x28,0x30,0x2b,0x24,0x24,0x34,0x28,0x20,0x20,0x20,0x20,0x20,0x40,0x20,0xfe,0x84,0x44,0x48,0xff,0x00,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84 -+// 38541 隍 ; -+,0x00,0x3c,0x25,0x29,0x29,0x31,0x29,0x24,0x25,0x34,0x28,0x21,0x20,0x20,0x23,0x20,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x20,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 38542 階 ; -+,0x01,0x3d,0x25,0x29,0x29,0x31,0x29,0x24,0x25,0x25,0x35,0x29,0x21,0x21,0x21,0x21,0x10,0x12,0x14,0xd8,0x11,0x91,0x2f,0x40,0xfc,0x04,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 38543 随 ; -+,0x00,0x7c,0x4a,0x4a,0x50,0x60,0x56,0x4a,0x4a,0x4a,0x6a,0x52,0x42,0x45,0x48,0x40,0x10,0x10,0xff,0x20,0x7c,0xc4,0x44,0x7c,0x44,0x7c,0x44,0x54,0x48,0x80,0x7f,0x00 -+// 38544 隐 ; -+,0x00,0x3c,0x24,0x29,0x33,0x28,0x29,0x24,0x25,0x34,0x28,0x22,0x22,0x24,0x20,0x20,0x40,0x78,0x88,0x10,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xa0,0x92,0x85,0x85,0x7c,0x00 -+// 38545 隑 ; -+,0x00,0x7d,0x45,0x49,0x48,0x53,0x48,0x45,0x45,0x45,0x55,0x49,0x40,0x40,0x47,0x40,0x20,0x24,0x24,0xfc,0x00,0xff,0x00,0xfc,0x04,0x04,0xfc,0x08,0x88,0x90,0xff,0x00 -+// 38546 隒 ; -+,0x01,0x3c,0x27,0x28,0x2b,0x30,0x2b,0x24,0x27,0x24,0x35,0x2a,0x22,0x24,0x28,0x20,0x08,0x90,0xfe,0xa0,0xfc,0xa4,0xff,0xa4,0xfc,0xa0,0xb0,0xa8,0xa7,0xa2,0xa0,0xa0 -+// 38547 隓 ; -+,0x00,0x3c,0x25,0x24,0x29,0x36,0x2b,0x24,0x24,0x25,0x34,0x28,0x21,0x26,0x21,0x20,0x40,0x40,0xff,0x80,0xfe,0x20,0xff,0x40,0x40,0xff,0x80,0xfc,0x20,0x20,0xff,0x00 -+// 38548 隔 ; -+,0x00,0x3d,0x24,0x28,0x28,0x30,0x28,0x27,0x26,0x36,0x2a,0x22,0x22,0x22,0x22,0x22,0x00,0xfe,0x00,0xfc,0x84,0xfc,0x00,0xff,0x89,0x51,0xfd,0x21,0x21,0x21,0x25,0x02 -+// 38549 隕 ; -+,0x3c,0x24,0x24,0x28,0x30,0x29,0x25,0x25,0x25,0x35,0x29,0x21,0x20,0x20,0x23,0x20,0xfc,0x84,0x84,0xfc,0x00,0xfe,0x02,0xfe,0x02,0xfe,0x02,0xfe,0x48,0x84,0x02,0x02 -+// 38550 隖 ; -+,0x00,0x3e,0x25,0x29,0x31,0x29,0x25,0x25,0x25,0x35,0x28,0x22,0x24,0x20,0x20,0x20,0x40,0x80,0xfc,0x04,0xfc,0x00,0xff,0x00,0x00,0xfe,0x02,0xaa,0xaa,0x02,0x0a,0x04 -+// 38551 隗 ; -+,0x00,0x3c,0x25,0x29,0x29,0x31,0x29,0x25,0x24,0x34,0x28,0x20,0x21,0x22,0x24,0x20,0x20,0x40,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x60,0x68,0xa8,0xb4,0x3e,0x21,0x1f,0x00 -+// 38552 隘 ; -+,0x01,0x3c,0x24,0x2b,0x30,0x30,0x28,0x25,0x24,0x37,0x2a,0x22,0x22,0x22,0x2f,0x20,0x08,0x88,0x90,0xff,0x00,0x88,0x84,0x02,0x00,0xfc,0x94,0x94,0x94,0x94,0xff,0x00 -+// 38553 隙 ; -+,0x00,0x3e,0x22,0x25,0x28,0x31,0x29,0x25,0x25,0x35,0x28,0x20,0x21,0x21,0x22,0x20,0x10,0x94,0x92,0x12,0x10,0xfe,0x02,0xfe,0x02,0xfe,0x10,0x10,0x14,0x12,0x52,0x20 -+// 38554 隚 ; -+,0x00,0x3d,0x24,0x2b,0x2a,0x30,0x28,0x24,0x24,0x34,0x28,0x21,0x20,0x20,0x23,0x20,0x20,0x24,0xa8,0xff,0x02,0x00,0xfc,0x84,0x84,0xfc,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 38555 際 ; -+,0x01,0x3d,0x2a,0x2b,0x34,0x32,0x29,0x26,0x24,0x35,0x28,0x21,0x22,0x2c,0x20,0x20,0x00,0xdf,0x52,0x4c,0x88,0x84,0x7b,0x00,0x00,0xfe,0x20,0x28,0x24,0x22,0xa2,0x40 -+// 38556 障 ; -+,0x00,0x3d,0x24,0x28,0x2b,0x30,0x29,0x25,0x25,0x35,0x29,0x20,0x27,0x20,0x20,0x20,0x20,0xfe,0x84,0x48,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x20,0xff,0x20,0x20,0x20 -+// 38557 隝 ; -+,0x00,0x3d,0x25,0x25,0x29,0x29,0x25,0x25,0x25,0x35,0x28,0x22,0x22,0x20,0x20,0x20,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfe,0x02,0xaa,0xaa,0x02,0x0a,0x04 -+// 38558 隞 ; -+,0x00,0x3d,0x25,0x2b,0x29,0x33,0x29,0x27,0x25,0x35,0x29,0x22,0x22,0x25,0x28,0x20,0x00,0x08,0x08,0xc8,0x1f,0xd2,0x32,0xd2,0x14,0xd4,0x48,0x4c,0x54,0x63,0x82,0x00 -+// 38559 隟 ; -+,0x01,0x3d,0x26,0x29,0x29,0x31,0x29,0x25,0x25,0x34,0x2b,0x20,0x20,0x23,0x20,0x20,0x24,0x24,0x48,0x24,0xfc,0x24,0xfc,0x24,0xfc,0x20,0xff,0x70,0xac,0x23,0x20,0x20 -+// 38560 隠 ; -+,0x00,0x3d,0x24,0x29,0x28,0x31,0x28,0x25,0x24,0x35,0x28,0x22,0x22,0x24,0x20,0x20,0x3c,0xc0,0x44,0x24,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x40,0xa2,0xa1,0x85,0x7c,0x00 -+// 38561 隡 ; -+,0x00,0x3e,0x25,0x24,0x28,0x29,0x25,0x25,0x25,0x25,0x35,0x29,0x22,0x22,0x25,0x20,0x20,0x10,0xff,0x44,0x28,0xff,0x10,0x50,0x7e,0x90,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 38562 隢 ; -+,0x00,0x3c,0x25,0x28,0x33,0x28,0x25,0x24,0x27,0x34,0x2b,0x20,0x20,0x20,0x23,0x20,0x20,0x20,0xfc,0x20,0xff,0x88,0xde,0xc8,0xbf,0x00,0xff,0x50,0x51,0x91,0x0f,0x00 -+// 38563 隣 ; -+,0x00,0x3c,0x24,0x2b,0x28,0x31,0x28,0x2c,0x24,0x35,0x2a,0x21,0x20,0x23,0x2c,0x20,0x20,0xa8,0x70,0xff,0x68,0xa6,0x20,0x84,0xff,0x24,0x54,0x5f,0x84,0x04,0x04,0x04 -+// 38564 隤 ; -+,0x00,0x7d,0x45,0x49,0x50,0x53,0x48,0x45,0x45,0x55,0x49,0x41,0x41,0x41,0x40,0x41,0x20,0xfc,0x24,0xfc,0x20,0xff,0x00,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x04 -+// 38565 隥 ; -+,0x00,0x3d,0x26,0x29,0x31,0x32,0x28,0x25,0x25,0x35,0x29,0x20,0x21,0x20,0x2f,0x20,0x24,0xe8,0x52,0x8c,0x04,0xfb,0x00,0xf8,0x08,0x08,0xf8,0x00,0x08,0x90,0xff,0x00 -+// 38566 隦 ; -+,0x00,0x3d,0x25,0x25,0x29,0x31,0x29,0x25,0x25,0x35,0x2b,0x23,0x25,0x21,0x20,0x20,0x08,0xc4,0x5f,0x42,0x52,0xca,0x04,0x1f,0xc4,0x44,0x5f,0x44,0x44,0xc4,0x04,0x04 -+// 38567 隧 ; -+,0x00,0x7c,0x4a,0x4a,0x50,0x50,0x4e,0x4a,0x4b,0x6a,0x52,0x42,0x42,0x45,0x48,0x40,0x42,0x24,0xff,0x10,0x20,0xd2,0x2c,0x48,0x9c,0x2b,0xc8,0x28,0x10,0x80,0x7f,0x00 -+// 38568 隨 ; -+,0x00,0x3c,0x24,0x2a,0x29,0x31,0x28,0x27,0x25,0x35,0x29,0x21,0x21,0x21,0x22,0x24,0x10,0xfe,0x20,0x7c,0x90,0x7f,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x46,0x80,0x7f -+// 38569 隩 ; -+,0x00,0x3c,0x25,0x29,0x29,0x31,0x29,0x25,0x25,0x34,0x2b,0x20,0x20,0x21,0x26,0x20,0x20,0x40,0xfe,0xaa,0x72,0xfa,0x72,0xaa,0x22,0x20,0xff,0x20,0x50,0x8c,0x07,0x02 -+// 38570 險 ; -+,0x00,0x3c,0x24,0x28,0x33,0x28,0x25,0x25,0x35,0x29,0x20,0x20,0x21,0x22,0x24,0x20,0x20,0x30,0x48,0x84,0x7b,0x00,0xde,0x52,0x52,0xde,0x88,0x88,0x54,0x12,0x22,0x00 -+// 38571 隫 ; -+,0x00,0x3d,0x24,0x28,0x33,0x28,0x25,0x25,0x25,0x25,0x35,0x29,0x21,0x20,0x20,0x21,0x20,0xfe,0x20,0x88,0xff,0x88,0xfc,0x04,0xfc,0x04,0xfc,0x04,0xfc,0x88,0x84,0x04 -+// 38572 隬 ; -+,0x00,0x3d,0x24,0x29,0x2b,0x33,0x2a,0x27,0x26,0x37,0x2a,0x23,0x22,0x22,0x22,0x22,0x00,0xfe,0xa8,0x24,0xff,0x76,0xaa,0x76,0x22,0x76,0xaa,0x76,0x22,0x22,0x2a,0x04 -+// 38573 隭 ; -+,0x01,0x3c,0x27,0x2a,0x2b,0x30,0x29,0x24,0x25,0x34,0x29,0x21,0x21,0x21,0x21,0x21,0xfe,0x20,0xff,0x22,0xae,0x20,0xae,0x00,0xfe,0x40,0xfe,0x52,0x52,0x52,0x4a,0x04 -+// 38574 隮 ; -+,0x00,0x78,0x4b,0x50,0x60,0x57,0x4a,0x4c,0x49,0x6a,0x53,0x42,0x43,0x42,0x42,0x44,0x40,0x20,0xff,0x88,0x53,0xac,0xaa,0xad,0xa8,0x04,0xfc,0x04,0xfc,0x04,0x04,0x04 -+// 38575 隯 ; -+,0x00,0x3d,0x24,0x28,0x30,0x29,0x24,0x25,0x24,0x35,0x28,0x23,0x22,0x23,0x20,0x20,0x20,0xfe,0x20,0xfc,0x00,0xff,0x22,0xfc,0x00,0xff,0x04,0xbf,0x94,0x8c,0x04,0x0c -+// 38576 隰 ; -+,0x3d,0x25,0x29,0x29,0x31,0x28,0x24,0x25,0x27,0x35,0x2b,0x20,0x22,0x22,0x24,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x84,0x0a,0x9c,0x4a,0xdf,0x00,0x92,0x49,0x49,0x00 -+// 38577 隱 ; -+,0x00,0x3d,0x25,0x24,0x29,0x30,0x29,0x24,0x25,0x34,0x28,0x22,0x22,0x24,0x20,0x00,0x1e,0xe0,0x44,0xa8,0xfc,0x04,0xfc,0x04,0xfc,0x00,0x20,0x92,0x91,0x85,0x7c,0x00 -+// 38578 隲 ; -+,0x3e,0x22,0x24,0x29,0x30,0x29,0x27,0x25,0x25,0x25,0x35,0x29,0x20,0x22,0x22,0x20,0x20,0xa4,0xaa,0x30,0x40,0xff,0x10,0xfe,0x10,0xfc,0x10,0xff,0x01,0xa9,0x55,0x03 -+// 38579 隳 ; -+,0x00,0x1e,0x12,0x14,0x15,0x12,0x1a,0x14,0x11,0x12,0x0c,0x70,0x04,0x08,0x02,0x01,0x20,0xff,0x40,0xfe,0x42,0x7e,0x42,0xfe,0x42,0x26,0x98,0x87,0xa8,0x94,0x80,0x00 -+// 38580 隴 ; -+,0x01,0x3c,0x27,0x26,0x29,0x33,0x28,0x27,0x26,0x37,0x2a,0x23,0x22,0x22,0x22,0x22,0x10,0x90,0xff,0x50,0x9e,0xe2,0x02,0xde,0x50,0xdc,0x50,0xdc,0x51,0x5d,0xd1,0x4f -+// 38581 隵 ; -+,0x00,0x3c,0x24,0x2b,0x2a,0x33,0x2a,0x26,0x26,0x37,0x2a,0x24,0x24,0x28,0x23,0x20,0x44,0x74,0x44,0xf4,0x57,0xfc,0x44,0x74,0x05,0xfd,0x96,0xf4,0x05,0xab,0xf3,0x01 -+// 38582 隶 ; -+,0x00,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x00,0x08,0x04,0x01,0x02,0x0c,0x30,0x02,0x01,0x80,0x80,0xf8,0x88,0xff,0x88,0xf8,0x80,0x88,0x90,0xe0,0xa0,0x90,0x8e,0x84,0x00 -+// 38583 隷 ; -+,0x08,0x08,0x3f,0x08,0x3e,0x00,0x3e,0x00,0x3e,0x08,0x2a,0x2a,0x4a,0x08,0x28,0x10,0x10,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x92,0x54,0x38,0x54,0x93,0x12,0x50,0x20 -+// 38584 隸 ; -+,0x04,0x04,0x3f,0x0c,0x16,0x25,0x00,0x3f,0x00,0x7f,0x04,0x25,0x24,0x44,0x14,0x08,0x10,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x12,0x54,0x38,0x54,0x93,0x10,0x50,0x20 -+// 38585 隹 ; -+,0x04,0x06,0x04,0x0f,0x08,0x18,0x6f,0x08,0x08,0x0f,0x08,0x08,0x08,0x0f,0x08,0x00,0x80,0x60,0x20,0xff,0x40,0x40,0xfe,0x40,0x40,0xfe,0x40,0x40,0x40,0xff,0x00,0x00 -+// 38586 隺 ; -+,0x00,0x00,0x1f,0x11,0x02,0x07,0x08,0x18,0x6f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x80,0x80,0xff,0x42,0x20,0xfe,0x40,0x40,0xfc,0x40,0xfc,0x40,0x40,0xff,0x00,0x00 -+// 38587 隻 ; -+,0x04,0x04,0x0f,0x08,0x1f,0x28,0x0f,0x08,0x0f,0x08,0x07,0x02,0x01,0x00,0x03,0x3c,0x80,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xff,0x00,0xfc,0x08,0x30,0xc0,0x60,0x1e -+// 38588 隼 ; -+,0x04,0x04,0x0f,0x18,0x2f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x40,0xff,0x40,0x40,0x40,0x40,0x40 -+// 38589 隽 ; -+,0x04,0x04,0x0f,0x08,0x1f,0x28,0x4f,0x08,0x0f,0x00,0x0f,0x02,0x02,0x04,0x04,0x08,0x80,0x40,0xfe,0x40,0xfc,0x40,0xfe,0x40,0xff,0x00,0xfc,0x08,0x1e,0x02,0x0a,0x04 -+// 38590 难 ; -+,0x00,0x00,0x7c,0x04,0x45,0x25,0x16,0x08,0x0c,0x14,0x12,0x22,0x40,0x00,0x00,0x00,0x50,0x48,0x88,0xff,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80,0x80 -+// 38591 隿 ; -+,0x10,0x10,0x14,0x12,0x10,0x7f,0x11,0x12,0x10,0x08,0x08,0x09,0x05,0x05,0x03,0x01,0x50,0x48,0x48,0xff,0xc8,0x48,0x7f,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40 -+// 38592 雀 ; -+,0x00,0x08,0x08,0x10,0x00,0x03,0x0c,0x77,0x04,0x07,0x04,0x07,0x04,0x04,0x07,0x04,0x80,0x88,0x94,0xa4,0xc0,0x40,0x20,0xfe,0x40,0xfc,0x40,0xfc,0x40,0x40,0xfe,0x00 -+// 38593 雁 ; -+,0x3f,0x20,0x22,0x22,0x24,0x25,0x2d,0x36,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x00,0xfe,0x00,0x50,0x48,0x88,0xfe,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0xff,0x80,0x00 -+// 38594 雂 ; -+,0x00,0x08,0x08,0x14,0x13,0x28,0x45,0x04,0x3f,0x01,0x02,0x02,0x02,0x04,0x04,0x04,0x00,0x28,0x24,0x7f,0x48,0xc8,0x7f,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40 -+// 38595 雃 ; -+,0x00,0x3e,0x14,0x14,0x14,0x15,0x7f,0x14,0x14,0x14,0x14,0x24,0x24,0x24,0x44,0x00,0x20,0x28,0x44,0x7f,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 38596 雄 ; -+,0x08,0x08,0x08,0x7e,0x10,0x11,0x14,0x24,0x28,0x28,0x50,0x14,0x22,0x7e,0x02,0x00,0x50,0x48,0x48,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0x88,0xff,0x80,0x80 -+// 38597 雅 ; -+,0x00,0x7f,0x24,0x24,0x24,0x3e,0x05,0x0c,0x14,0x14,0x24,0x44,0x04,0x14,0x08,0x00,0x20,0x28,0x44,0x7f,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80,0x00 -+// 38598 集 ; -+,0x04,0x04,0x0f,0x18,0x2f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x40,0x20,0xfc,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x80,0xff,0xa0,0x90,0x8e,0x84,0x80 -+// 38599 雇 ; -+,0x00,0x00,0x1f,0x10,0x1f,0x11,0x12,0x13,0x16,0x1b,0x12,0x13,0x22,0x22,0x43,0x02,0x80,0x40,0xfe,0x02,0xfe,0x40,0x20,0xff,0x20,0xfe,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 38600 雈 ; -+,0x01,0x01,0x3f,0x01,0x04,0x04,0x0f,0x08,0x1f,0x28,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0x1f,0x10,0x80,0x40,0xfe,0x40,0xfc,0x40,0x40,0xfc,0x40,0x40,0xfe,0x00 -+// 38601 雉 ; -+,0x08,0x08,0x10,0x1e,0x28,0x09,0x7e,0x08,0x08,0x14,0x12,0x22,0x20,0x40,0x00,0x00,0x50,0x48,0x48,0xff,0x88,0x88,0xff,0x88,0x88,0xff,0x88,0x88,0x88,0xff,0x80,0x00 -+// 38602 雊 ; -+,0x10,0x10,0x10,0x3e,0x22,0x43,0x3a,0x2a,0x2a,0x2a,0x3a,0x02,0x02,0x02,0x0a,0x04,0x20,0x28,0x44,0x7f,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x48,0x7f,0x40 -+// 38603 雋 ; -+,0x04,0x04,0x0f,0x18,0x2f,0x48,0x0f,0x08,0x0f,0x08,0x1f,0x11,0x11,0x10,0x10,0x10,0x80,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xff,0x00,0x1e,0x12,0xf2,0x02,0x0a,0x04 -+// 38604 雌 ; -+,0x02,0x12,0x12,0x12,0x12,0x5f,0x52,0x52,0x52,0x52,0x52,0x5b,0x62,0x00,0x00,0x00,0x20,0x30,0x48,0xff,0x48,0xc8,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40,0x40 -+// 38605 雍 ; -+,0x01,0x00,0x3f,0x08,0x08,0x12,0x3c,0x09,0x08,0x12,0x3e,0x04,0x04,0x18,0x60,0x00,0x00,0x80,0xff,0x50,0x48,0xff,0x88,0x88,0xfe,0x88,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 38606 雎 ; -+,0x00,0x3e,0x22,0x22,0x23,0x3e,0x22,0x22,0x3e,0x22,0x22,0x23,0x2c,0x70,0x00,0x00,0x50,0x48,0x7e,0x90,0x90,0xfe,0x90,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80,0x80 -+// 38607 雏 ; -+,0x08,0x08,0x1f,0x12,0x24,0x49,0x3f,0x01,0x01,0x3f,0x01,0x01,0x01,0x3f,0x00,0x00,0x50,0x48,0x48,0xff,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40,0x40 -+// 38608 雐 ; -+,0x00,0x00,0x00,0x1f,0x10,0x17,0x10,0x12,0x12,0x17,0x1a,0x13,0x12,0x23,0x22,0x43,0x80,0xfc,0x80,0xff,0x82,0xf0,0x84,0x7c,0x20,0xfe,0x20,0xfc,0x20,0xfc,0x20,0xfe -+// 38609 雑 ; -+,0x08,0x08,0x3e,0x0a,0x0a,0x12,0x11,0x24,0x7f,0x04,0x16,0x15,0x25,0x44,0x14,0x08,0x20,0x28,0x24,0x7f,0x48,0xc8,0x7e,0x48,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40 -+// 38610 雒 ; -+,0x10,0x10,0x1e,0x22,0x34,0x4d,0x0a,0x11,0x7e,0x12,0x12,0x12,0x12,0x1e,0x12,0x00,0x10,0x48,0x48,0xff,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 38611 雓 ; -+,0x08,0x08,0x14,0x13,0x20,0x5f,0x08,0x3f,0x08,0x08,0x2a,0x29,0x49,0x08,0x28,0x10,0x20,0x30,0x48,0x7f,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40,0x40 -+// 38612 雔 ; -+,0x10,0x14,0x12,0x3f,0x34,0x54,0x1f,0x14,0x14,0x1f,0x14,0x14,0x14,0x1f,0x10,0x00,0x20,0x28,0x24,0x7f,0x48,0xc8,0x7f,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 38613 雕 ; -+,0x00,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x21,0x2f,0x29,0x2f,0x21,0x21,0x25,0x42,0x00,0x28,0x24,0x24,0x7f,0x48,0xc8,0x7f,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 38614 雖 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x09,0x3e,0x2a,0x2a,0x3e,0x08,0x0a,0x0f,0x71,0x00,0x00,0x20,0x28,0x44,0x7f,0xc8,0x48,0x7f,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 38615 雗 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x22,0x3e,0x22,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x28,0x44,0x93,0x48,0x7e,0xc8,0x7e,0x48,0x48,0x7e,0x48,0x48,0x7f,0x40 -+// 38616 雘 ; -+,0x00,0x3d,0x24,0x24,0x34,0x2d,0x24,0x7e,0x24,0x24,0x25,0x24,0x24,0x24,0x54,0x0b,0x44,0xff,0x44,0x50,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x48,0x30,0x28,0xc7,0x02 -+// 38617 雙 ; -+,0x14,0x12,0x1f,0x34,0x5f,0x14,0x1f,0x14,0x1f,0x10,0x07,0x01,0x00,0x00,0x07,0x38,0x28,0x24,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x7f,0x40,0xf8,0x10,0xa0,0xc0,0x30,0x0e -+// 38618 雚 ; -+,0x02,0x7f,0x02,0x00,0x1f,0x11,0x1f,0x04,0x0f,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x20,0xff,0x20,0x00,0x7c,0x44,0xfc,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xff,0x00 -+// 38619 雛 ; -+,0x10,0x1f,0x24,0x15,0x1f,0x04,0x09,0x10,0x1f,0x28,0x6a,0x3e,0x08,0x10,0x21,0x00,0x10,0x98,0xa4,0xbf,0xe8,0xa8,0xbf,0x28,0xa8,0xbf,0xa8,0xa8,0xa8,0xbf,0xa0,0x00 -+// 38620 雜 ; -+,0x10,0x08,0x7f,0x24,0x26,0x59,0x08,0x08,0x7f,0x08,0x2a,0x29,0x49,0x08,0x28,0x10,0x10,0x48,0x48,0x7f,0xc8,0x48,0x7f,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40,0x40 -+// 38621 雝 ; -+,0x00,0x15,0x2a,0x15,0x3e,0x23,0x3e,0x00,0x7f,0x49,0x7f,0x40,0x41,0x41,0x3f,0x00,0x20,0x28,0x44,0x7f,0xc8,0x48,0x7f,0x48,0x48,0x48,0x7f,0x48,0x48,0x48,0x7f,0x40 -+// 38622 雞 ; -+,0x03,0x3c,0x29,0x16,0x08,0x12,0x3c,0x08,0x12,0x3f,0x04,0x7f,0x0a,0x09,0x11,0x00,0xa0,0x28,0x44,0x7f,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0xc8,0x48,0x7f,0x40,0x00 -+// 38623 雟 ; -+,0x00,0x08,0x0f,0x04,0x0f,0x18,0x2f,0x08,0x0f,0x08,0x1f,0x14,0x1b,0x12,0x13,0x10,0x40,0x44,0xfc,0x00,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x0a,0xf6,0x12,0xf2,0x06 -+// 38624 雠 ; -+,0x10,0x15,0x12,0x3e,0x24,0x65,0x3e,0x24,0x24,0x24,0x3e,0x24,0x24,0x24,0x3f,0x20,0x10,0x14,0x92,0x9f,0x34,0xb4,0xdf,0x94,0x94,0x94,0x9f,0xd4,0x94,0x14,0x1f,0x10 -+// 38625 雡 ; -+,0x00,0x7b,0x2a,0x19,0x2a,0x08,0x04,0x1b,0x64,0x1a,0x04,0x19,0x02,0x0c,0x70,0x00,0x28,0xa4,0xa4,0xbf,0xe8,0xa8,0x3f,0x28,0xe8,0x28,0x3f,0x28,0x28,0x28,0x3f,0x20 -+// 38626 離 ; -+,0x08,0x04,0x7f,0x14,0x29,0x35,0x3f,0x04,0x7f,0x48,0x4a,0x5f,0x40,0x40,0x42,0x41,0x08,0x24,0xa4,0x3f,0x68,0xa8,0x3e,0x28,0xa8,0xa8,0xbe,0xa8,0xa8,0xa8,0xbf,0x20 -+// 38627 難 ; -+,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x3f,0x04,0x7f,0x04,0x0a,0x11,0x60,0x20,0xa8,0x24,0x7f,0x64,0xa4,0x3f,0x24,0x24,0x24,0x3f,0xa4,0x24,0x24,0x3f,0x20 -+// 38628 雤 ; -+,0x05,0x18,0x11,0x1c,0x11,0x1c,0x11,0x3f,0x24,0x0f,0x18,0x2f,0x08,0x0f,0x08,0x0f,0x40,0x9c,0x44,0x1c,0x44,0x9c,0x44,0xff,0x42,0xfc,0x40,0xfc,0x40,0xfc,0x40,0xfe -+// 38629 雥 ; -+,0x04,0x07,0x08,0x0f,0x18,0x2f,0x08,0x0f,0x12,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x1f,0x40,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xfe,0x24,0xbf,0x64,0xbf,0x24,0xbf,0x24,0xbf -+// 38630 雦 ; -+,0x19,0x15,0x15,0x3f,0x2b,0x69,0x3f,0x29,0x29,0x3f,0x29,0x29,0x29,0x3f,0x21,0x00,0x8c,0x4a,0x4a,0xff,0x6a,0x4a,0xef,0x4a,0x4a,0xef,0x4a,0x4a,0x4a,0xef,0x08,0x00 -+// 38631 雧 ; -+,0x02,0x07,0x04,0x0f,0x14,0x07,0x1e,0x14,0x3e,0x54,0x1f,0x00,0x3f,0x01,0x06,0x18,0x40,0xf8,0x40,0xf8,0x40,0xfc,0x3f,0x68,0xbe,0x28,0x3f,0x40,0xff,0x50,0x4e,0x44 -+// 38632 雨 ; -+,0x00,0x7f,0x00,0x00,0x1f,0x18,0x14,0x12,0x18,0x14,0x12,0x10,0x10,0x10,0x10,0x10,0x00,0xff,0x80,0x80,0xfc,0xc4,0xa4,0x94,0xc4,0xa4,0x94,0x84,0x84,0x84,0x94,0x08 -+// 38633 雩 ; -+,0x0f,0x00,0x3f,0x20,0x2e,0x00,0x0e,0x00,0x0f,0x00,0x3f,0x01,0x03,0x00,0x00,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0x38,0x00,0xfc,0x00,0xff,0x00,0xf8,0x08,0x28,0x10 -+// 38634 雪 ; -+,0x00,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x1f,0x00,0x0f,0x00,0x00,0x1f,0x00,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xfc,0x04,0xfc,0x04,0x04,0xfc,0x04 -+// 38635 雫 ; -+,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x80,0xff,0x82,0xbc,0x80,0xbc,0x00,0xff,0xc0,0xa0,0x98,0x88,0x80,0x80,0x80 -+// 38636 雬 ; -+,0x00,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3f,0x01,0x02,0x04,0x18,0x60,0x00,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x80,0xfe,0xc0,0xa0,0x98,0x87,0x82,0x80 -+// 38637 雭 ; -+,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x0f,0x04,0x04,0x09,0x08,0x10,0x21,0x0e,0xfe,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xf8,0x10,0x20,0x38,0x90,0x60,0xb0,0x0e -+// 38638 雮 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x0f,0x00,0x0f,0x00,0x1f,0x00,0x00,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xf8,0x80,0xf8,0x80,0xfc,0x81,0x7f,0x00 -+// 38639 雯 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x00,0x1f,0x02,0x01,0x00,0x01,0x06,0x38,0xf8,0x80,0xff,0x82,0xb8,0x80,0x38,0x80,0x40,0xfe,0x20,0x40,0x80,0x60,0x1c,0x08 -+// 38640 雰 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x01,0x02,0x0c,0x37,0x01,0x01,0x02,0x02,0x04,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x40,0x30,0x0e,0xf4,0x10,0x10,0x10,0x50,0x20 -+// 38641 雱 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x00,0x3f,0x02,0x03,0x04,0x04,0x08,0x10,0xf8,0x80,0xff,0x82,0xb8,0x80,0x38,0x80,0x40,0xff,0x00,0xf8,0x08,0x08,0x28,0x10 -+// 38642 雲 ; -+,0x0f,0x00,0x00,0x3f,0x20,0x2e,0x00,0x0e,0x00,0x07,0x00,0x3f,0x02,0x04,0x0f,0x00,0xfc,0x80,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xf8,0x00,0xff,0x00,0x08,0xfc,0x04 -+// 38643 雳 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x0f,0x08,0x0f,0x08,0x11,0x11,0x22,0x04,0xfe,0x80,0xff,0x82,0xb8,0x80,0x38,0x00,0xfc,0x80,0xfc,0x84,0x04,0x04,0x14,0x08 -+// 38644 雴 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x00,0x1f,0x04,0x02,0x02,0x02,0x3f,0x00,0xf8,0x80,0xff,0x82,0xb8,0x80,0x38,0x80,0x40,0xfe,0x10,0x20,0x20,0x40,0xff,0x00 -+// 38645 雵 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x00,0x0f,0x08,0x7f,0x00,0x01,0x06,0x18,0xfc,0x80,0xff,0x82,0xb8,0x80,0x38,0x80,0x80,0xfc,0x84,0xff,0x80,0x60,0x1c,0x08 -+// 38646 零 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x01,0x02,0x0d,0x70,0x0f,0x00,0x01,0x00,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x40,0x30,0x0f,0x84,0xf0,0x20,0x40,0x80,0x80 -+// 38647 雷 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x1f,0x10,0x10,0x1f,0x10,0x10,0x1f,0x10,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x80,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x04 -+// 38648 雸 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x04,0x7f,0x04,0x07,0x04,0x04,0x07,0x04,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x10,0xff,0x10,0xf0,0x10,0x10,0xf0,0x10 -+// 38649 雹 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x04,0x0f,0x10,0x2f,0x08,0x0f,0x08,0x07,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0x38,0x00,0xfc,0x04,0xc4,0x54,0xc9,0x01,0xff,0x00 -+// 38650 雺 ; -+,0x0f,0x00,0x3f,0x20,0x2e,0x00,0x0e,0x00,0x0f,0x00,0x3f,0x00,0x01,0x06,0x39,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xfc,0x90,0xff,0xc2,0x44,0x40,0x40,0x80 -+// 38651 電 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x00,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xf8,0x88,0xf8,0x88,0xf9,0x81,0x81,0x7f -+// 38652 雼 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3f,0x01,0x02,0x07,0x0a,0x32,0x03,0x02,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xff,0x00,0x00,0xf8,0x08,0x08,0xf8,0x08 -+// 38653 雽 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x1f,0x04,0x02,0x7f,0x00,0x00,0x02,0x01,0xfe,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xf8,0x90,0xa0,0xff,0x80,0x80,0x80,0x00 -+// 38654 雾 ; -+,0x0f,0x00,0x3f,0x20,0x2e,0x00,0x0e,0x04,0x07,0x0a,0x11,0x06,0x38,0x07,0x01,0x02,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xf0,0x20,0xc0,0xb0,0x8e,0xf0,0x10,0x30 -+// 38655 雿 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x09,0x07,0x05,0x1a,0x02,0x04,0x18,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x24,0x28,0x30,0x28,0x25,0x21,0x1f,0x00 -+// 38656 需 ; -+,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3f,0x01,0x1f,0x12,0x12,0x12,0x12,0x10,0xfe,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xff,0x00,0xfe,0x22,0x22,0x22,0x2a,0x04 -+// 38657 霁 ; -+,0x07,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3f,0x02,0x01,0x01,0x1e,0x02,0x02,0x04,0xf8,0x80,0xff,0x82,0xb8,0x80,0xb8,0x80,0xff,0x20,0xc0,0x20,0x1e,0x10,0x10,0x10 -+// 38658 霂 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x10,0x0b,0x20,0x10,0x04,0x29,0x12,0x10,0xf8,0x80,0xff,0x82,0xb8,0x80,0xb8,0x80,0x20,0xfe,0x60,0xb0,0xac,0x27,0x22,0x20 -+// 38659 霃 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x10,0x09,0x41,0x24,0x08,0x30,0x10,0x11,0x16,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x20,0xfe,0x24,0x20,0x50,0x50,0x92,0x12,0x0e -+// 38660 霄 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x04,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0xfc,0x80,0xff,0x82,0xb8,0x80,0x38,0x90,0xa0,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x18 -+// 38661 霅 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x01,0x00,0x3f,0x00,0x07,0x00,0x0f,0x08,0x0f,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x80,0xfe,0x00,0xf0,0x00,0xf8,0x08,0xf8 -+// 38662 霆 ; -+,0x0f,0x00,0x3f,0x20,0x2e,0x00,0x0e,0x00,0x3c,0x08,0x1e,0x02,0x14,0x08,0x37,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x7c,0x10,0xfe,0x10,0x7c,0x00,0xff,0x00 -+// 38663 震 ; -+,0x1f,0x00,0x3f,0x20,0x2e,0x00,0x0e,0x00,0x1f,0x10,0x17,0x10,0x1f,0x22,0x23,0x42,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xfc,0x00,0xf8,0x00,0xfe,0x28,0x10,0x0e -+// 38664 霈 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x20,0x13,0x40,0x25,0x09,0x09,0x31,0x10,0x10,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x20,0xfe,0x20,0xfe,0x22,0x2a,0x24,0x20,0x20 -+// 38665 霉 ; -+,0x0f,0x00,0x3f,0x24,0x42,0x04,0x08,0x0f,0x10,0x2f,0x09,0x7f,0x08,0x1f,0x00,0x00,0xf8,0x80,0xff,0x91,0xa2,0x90,0x00,0xfc,0x00,0xf8,0x08,0xff,0x48,0xfc,0x08,0x30 -+// 38666 霊 ; -+,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x0f,0x00,0x1f,0x01,0x09,0x05,0x7f,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xf8,0x00,0xfc,0x40,0x48,0x50,0xff,0x00 -+// 38667 霋 ; -+,0x1f,0x00,0x3f,0x24,0x0a,0x04,0x1f,0x00,0x3f,0x00,0x1f,0x01,0x7f,0x06,0x01,0x3e,0xfe,0x80,0xff,0x92,0xa8,0x90,0xff,0x84,0xff,0x84,0xfc,0x00,0xff,0x20,0xc0,0x3c -+// 38668 霌 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x1f,0x10,0x17,0x10,0x17,0x12,0x13,0x20,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xfc,0x84,0xf4,0x84,0xf4,0x24,0xe4,0x0c -+// 38669 霍 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0d,0x10,0x1f,0x28,0x4f,0x08,0x0f,0x08,0x0f,0x08,0xfc,0x80,0xff,0x82,0xbc,0x80,0x38,0x80,0xfc,0x80,0xfc,0x80,0xfc,0x80,0xfe,0x00 -+// 38670 霎 ; -+,0x0f,0x00,0x3f,0x24,0x0a,0x05,0x00,0x1f,0x02,0x7f,0x01,0x3f,0x02,0x06,0x01,0x0f,0xfc,0x80,0xff,0x92,0xa8,0x10,0x80,0xfc,0x20,0xff,0x00,0xfe,0x20,0x40,0xc0,0x3c -+// 38671 霏 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x02,0x3e,0x02,0x3e,0x02,0x7e,0x02,0x02,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x20,0x3f,0x20,0x3e,0x20,0x3f,0x20,0x20 -+// 38672 霐 ; -+,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x10,0x0b,0x20,0x1b,0x0a,0x33,0x10,0x11,0x10,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xc8,0x48,0xc8,0x10,0xd2,0x61,0x7f,0x81 -+// 38673 霑 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x10,0x08,0x22,0x14,0x05,0x19,0x09,0x09,0x09,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x20,0x3f,0x20,0xfc,0x04,0x04,0xfc,0x04 -+// 38674 霒 ; -+,0x00,0x3f,0x04,0x7f,0x44,0x37,0x04,0x37,0x00,0x3f,0x00,0x7f,0x08,0x12,0x3f,0x01,0x00,0x90,0x10,0xd0,0x90,0x28,0x27,0x52,0x08,0x08,0x7c,0x84,0x08,0x08,0x10,0x10 -+// 38675 霓 ; -+,0x0f,0x00,0x3f,0x24,0x32,0x08,0x02,0x1c,0x10,0x1e,0x10,0x1f,0x02,0x02,0x0c,0x70,0xfc,0x80,0xff,0x8a,0xa4,0x90,0x00,0x7c,0x04,0x7c,0x04,0xfc,0x20,0x21,0x21,0x1f -+// 38676 霔 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x10,0x48,0x23,0x08,0x09,0x30,0x10,0x17,0x00,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x40,0x20,0xff,0x20,0xfe,0x20,0x20,0xff,0x00 -+// 38677 霕 ; -+,0x00,0x3f,0x04,0x7f,0x44,0x37,0x04,0x37,0x00,0x3e,0x00,0x7f,0x08,0x12,0x3f,0x01,0x10,0x10,0x10,0xff,0x90,0x10,0x52,0x52,0x52,0x7e,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 38678 霖 ; -+,0x1f,0x00,0x7f,0x40,0x1e,0x00,0x1e,0x04,0x7f,0x04,0x0e,0x15,0x14,0x24,0x04,0x04,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x10,0x7f,0x10,0x38,0x54,0x57,0x92,0x10,0x10 -+// 38679 霗 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x10,0x48,0x20,0x0b,0x08,0x30,0x10,0x10,0x10,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x20,0x50,0xcc,0x23,0xfc,0x08,0x30,0x10,0x10 -+// 38680 霘 ; -+,0x0f,0x00,0x3f,0x20,0x2e,0x00,0x0e,0x10,0x49,0x21,0x05,0x09,0x29,0x11,0x11,0x11,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xfe,0x02,0xfe,0x4a,0x7a,0x02,0x0a,0x04 -+// 38681 霙 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x04,0x3f,0x04,0x0f,0x08,0x7f,0x01,0x06,0x38,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x20,0xff,0xa0,0xf8,0x88,0xff,0x40,0x30,0x0f -+// 38682 霚 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3f,0x0a,0x04,0x3f,0x0d,0x14,0x64,0x0d,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x20,0x3f,0x44,0x64,0x98,0x18,0x67,0x82 -+// 38683 霛 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x1d,0x04,0x1d,0x11,0x1d,0x04,0x15,0x08,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0xde,0x42,0xde,0x10,0xde,0x42,0x4a,0x84 -+// 38684 霜 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x04,0x04,0x3f,0x0e,0x15,0x14,0x24,0x04,0x04,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x7c,0x44 -+// 38685 霝 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3d,0x25,0x25,0x25,0x25,0x3d,0x25,0x00,0xf8,0x80,0xff,0x82,0xb8,0x80,0xb8,0x80,0xde,0x52,0x52,0x52,0x52,0xde,0x52,0x00 -+// 38686 霞 ; -+,0x0f,0x00,0x7f,0x44,0x12,0x08,0x00,0x3e,0x22,0x3e,0x20,0x3e,0x20,0x3e,0x20,0x23,0xf8,0x80,0xff,0x8a,0xa4,0x90,0x00,0xfc,0x04,0xfc,0x00,0xfc,0x48,0x30,0x58,0x87 -+// 38687 霟 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x20,0x10,0x41,0x24,0x08,0x0b,0x30,0x11,0x12,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x00,0x88,0xfe,0x88,0x88,0xff,0x88,0x06,0x02 -+// 38688 霠 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x08,0x04,0x3f,0x12,0x12,0x14,0x07,0x78,0x00,0xf8,0x80,0xff,0x82,0xb8,0x80,0xb8,0x10,0x18,0x24,0x53,0x08,0x3e,0x04,0x08,0x10 -+// 38689 霡 ; -+,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x1e,0x12,0x1f,0x12,0x1e,0x22,0x2b,0x44,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x20,0x70,0x12,0xdc,0x50,0x98,0x94,0x57,0x22 -+// 38690 霢 ; -+,0x0f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x2d,0x46,0xf8,0x80,0xff,0x82,0xb8,0x80,0xb8,0x1c,0xe0,0x0c,0x70,0x56,0x48,0x58,0x67,0x42 -+// 38691 霣 ; -+,0x0f,0x00,0x3f,0x24,0x0a,0x04,0x0f,0x08,0x0f,0x00,0x1f,0x12,0x11,0x1f,0x02,0x0c,0xfe,0x80,0xff,0x92,0xa8,0x10,0xf8,0x08,0xf8,0x00,0xfc,0x24,0x14,0xfc,0x10,0x08 -+// 38692 霤 ; -+,0x1f,0x00,0x3f,0x24,0x0a,0x04,0x1f,0x14,0x16,0x1a,0x10,0x0f,0x08,0x0f,0x08,0x0f,0xfe,0x80,0xff,0x92,0xa8,0x90,0x7c,0x24,0x34,0x48,0x00,0xf8,0x88,0xf8,0x88,0xf8 -+// 38693 霥 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x02,0x0f,0x02,0x3f,0x20,0x0f,0x05,0x1a,0x0d,0x36,0x18,0xfc,0x80,0xff,0xaa,0x94,0x20,0xf8,0x20,0xff,0x02,0xf8,0x10,0xa0,0x60,0x5c,0xc8 -+// 38694 霦 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x00,0x08,0x08,0x3f,0x0c,0x1a,0x29,0x2a,0x48,0x08,0x08,0xfc,0x80,0xff,0xaa,0x94,0x80,0x44,0x44,0xf8,0x52,0xe4,0x59,0x42,0x44,0x58,0x40 -+// 38695 霧 ; -+,0x1f,0x00,0x3f,0x20,0x0e,0x00,0x0e,0x00,0x1e,0x04,0x3f,0x0e,0x14,0x24,0x14,0x09,0xfc,0x80,0xff,0x82,0xb8,0x80,0xb8,0x20,0x7c,0x48,0xb8,0xd7,0x7c,0x24,0x54,0x88 -+// 38696 霨 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x00,0x1f,0x10,0x1f,0x10,0x17,0x20,0x2f,0x2b,0x56,0x02,0xfc,0x80,0xff,0xd2,0xa8,0x08,0x84,0x84,0xbf,0x04,0x24,0x14,0x84,0x04,0x94,0x08 -+// 38697 霩 ; -+,0x0f,0x00,0x3f,0x24,0x0a,0x04,0x04,0x3f,0x11,0x1f,0x00,0x1f,0x02,0x05,0x3e,0x04,0xf8,0x80,0xff,0x92,0xa8,0x90,0x00,0xbe,0x24,0x28,0x24,0x22,0x22,0xaa,0x24,0x20 -+// 38698 霪 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x00,0x00,0x13,0x49,0x20,0x0b,0x08,0x37,0x10,0x13,0x10,0xfc,0x80,0xff,0xaa,0x90,0x80,0x3c,0xc0,0x44,0xa8,0xfe,0x20,0xff,0x20,0xfe,0x00 -+// 38699 霫 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x00,0x1f,0x09,0x05,0x19,0x01,0x0f,0x08,0x0f,0x08,0x0f,0xfc,0x80,0xff,0xaa,0x94,0x80,0x3e,0x12,0x0a,0x92,0x00,0xfc,0x04,0xfc,0x04,0xfc -+// 38700 霬 ; -+,0x1f,0x00,0x3f,0x2a,0x05,0x0f,0x08,0x0f,0x08,0x0f,0x04,0x1f,0x04,0x3f,0x04,0x08,0xfc,0x80,0xff,0xd2,0xa8,0xf8,0x88,0xf8,0x88,0xf8,0x20,0xfc,0x20,0xfe,0x10,0x08 -+// 38701 霭 ; -+,0x0f,0x00,0x3f,0x2a,0x04,0x10,0x08,0x08,0x00,0x38,0x09,0x0b,0x09,0x09,0x0c,0x08,0xfc,0x80,0xff,0xaa,0x94,0x00,0xfc,0x84,0xfc,0x84,0xfe,0x22,0x52,0xfe,0x02,0x06 -+// 38702 霮 ; -+,0x1f,0x00,0x3f,0x34,0x0a,0x00,0x10,0x09,0x40,0x24,0x08,0x0b,0x31,0x11,0x11,0x11,0xfc,0x80,0xff,0xd2,0xa8,0x00,0x88,0xfe,0xa8,0xd8,0xa8,0xff,0x50,0x4c,0x80,0xfc -+// 38703 霯 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x00,0x1f,0x0a,0x07,0x18,0x67,0x04,0x07,0x01,0x1f,0x00,0xfc,0x80,0xff,0xaa,0x94,0x00,0x28,0x14,0xf8,0x04,0xfb,0x08,0xf8,0x20,0xfe,0x00 -+// 38704 霰 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x0a,0x3f,0x0a,0x7f,0x00,0x1f,0x15,0x1b,0x15,0x11,0x13,0xfc,0x80,0xff,0xa9,0x94,0x00,0x10,0x1f,0xa2,0x24,0x54,0x08,0x18,0x24,0xc7,0x02 -+// 38705 霱 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x07,0x00,0x3f,0x01,0x06,0x3f,0x0a,0x0f,0x0a,0x0b,0x08,0xfc,0x80,0xff,0xaa,0x94,0xf0,0x20,0xfe,0x44,0x40,0xfc,0x14,0xec,0x24,0xe4,0x0c -+// 38706 露 ; -+,0x1f,0x00,0x3f,0x20,0x0a,0x05,0x1e,0x12,0x1e,0x09,0x2e,0x29,0x28,0x2e,0x70,0x00,0xfc,0x80,0xff,0x82,0xa8,0x14,0x40,0x7c,0xa8,0x10,0x6c,0x83,0x7c,0x44,0x7c,0x44 -+// 38707 霳 ; -+,0x1f,0x00,0x3f,0x34,0x0a,0x00,0x3c,0x25,0x2a,0x29,0x24,0x35,0x29,0x22,0x20,0x21,0xfe,0x80,0xff,0xaa,0x94,0x40,0xfc,0x48,0x30,0xcf,0x20,0xfe,0x20,0xfc,0x20,0xfe -+// 38708 霴 ; -+,0x00,0x3f,0x08,0x7f,0x48,0x5d,0x2a,0x08,0x3f,0x00,0x7f,0x08,0x10,0x22,0x7f,0x01,0x10,0x10,0x7e,0x92,0xff,0x12,0x7e,0x10,0x51,0x3a,0xb4,0x54,0x93,0x12,0x50,0x20 -+// 38709 霵 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x00,0x1f,0x11,0x3f,0x15,0x1b,0x15,0x17,0x79,0x01,0x01,0xfc,0x80,0xff,0xaa,0x94,0x80,0x28,0x24,0xfe,0x20,0x24,0x18,0x90,0x29,0xc5,0x03 -+// 38710 霶 ; -+,0x1f,0x00,0x3f,0x34,0x0a,0x00,0x10,0x08,0x41,0x25,0x09,0x08,0x70,0x10,0x10,0x13,0xfe,0x80,0xff,0xaa,0x94,0x20,0xfe,0x48,0xff,0x22,0xfe,0x40,0x7c,0x84,0x94,0x08 -+// 38711 霷 ; -+,0x1f,0x00,0x3f,0x2a,0x05,0x00,0x3c,0x24,0x24,0x3d,0x24,0x24,0x3d,0x24,0x00,0x00,0xfc,0x80,0xff,0xaa,0x94,0x00,0x7c,0x64,0x54,0xff,0x40,0xfe,0x2a,0xd2,0x2a,0xc4 -+// 38712 霸 ; -+,0x1f,0x00,0x3f,0x34,0x0a,0x00,0x12,0x7f,0x12,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0xfc,0x80,0xff,0xaa,0x94,0x00,0x3e,0xa2,0x3e,0xa2,0xbe,0xa2,0x22,0xc2,0x4a,0x84 -+// 38713 霹 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x00,0x1f,0x11,0x1f,0x10,0x1f,0x31,0x31,0x5f,0x10,0x00,0xfc,0x80,0xff,0xaa,0x94,0xa0,0x10,0x7e,0x24,0xff,0x10,0x7e,0x10,0x10,0x10,0x10 -+// 38714 霺 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x10,0x10,0x2a,0x4b,0x10,0x37,0x50,0x13,0x12,0x14,0x18,0xfc,0x80,0xff,0xaa,0x94,0x00,0x88,0xaf,0xea,0x12,0xea,0x04,0xcc,0x54,0x63,0x42 -+// 38715 霻 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x02,0x1f,0x12,0x1f,0x12,0x7f,0x08,0x08,0x0f,0x02,0x3f,0xfc,0x80,0xff,0xaa,0x94,0x20,0xfc,0x24,0xfc,0x24,0xff,0x08,0x08,0xf8,0x20,0xff -+// 38716 霼 ; -+,0x00,0x3f,0x08,0x7f,0x6c,0x1b,0x2c,0x12,0x3e,0x01,0x7e,0x10,0x25,0x7e,0x02,0x00,0x20,0x3f,0x40,0x7e,0x80,0x7c,0x24,0xac,0x74,0xfc,0x65,0xb5,0x2b,0x23,0x21,0x00 -+// 38717 霽 ; -+,0x1f,0x00,0x3f,0x34,0x0b,0x00,0x3f,0x01,0x3c,0x14,0x64,0x0f,0x08,0x0f,0x08,0x10,0xfc,0x80,0xff,0xd2,0x28,0x80,0xfe,0x48,0xb0,0xa8,0xa6,0xf8,0x08,0xf8,0x08,0x08 -+// 38718 霾 ; -+,0x0f,0x00,0x3f,0x22,0x09,0x04,0x00,0x0a,0x04,0x3a,0x0b,0x35,0x09,0x31,0x05,0x02,0xfc,0x40,0xff,0x49,0x64,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0x7e,0x10,0x7f,0x00 -+// 38719 霿 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x00,0x1f,0x0a,0x04,0x7f,0x0d,0x14,0x14,0x64,0x14,0x08,0xfc,0x80,0xff,0xd2,0xa8,0x20,0x3e,0x64,0x18,0x67,0x7e,0x4a,0x66,0x52,0x7e,0x42 -+// 38720 靀 ; -+,0x0f,0x00,0x3f,0x24,0x0a,0x04,0x02,0x0f,0x02,0x3f,0x20,0x0f,0x02,0x0d,0x02,0x0c,0xfc,0x80,0xff,0x8a,0xa4,0x90,0x20,0xfc,0x20,0xff,0x02,0xf8,0xd0,0x60,0x5c,0xc8 -+// 38721 靁 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x29,0x3f,0x29,0x3f,0xfc,0x80,0xff,0xaa,0x94,0xf8,0x88,0xf8,0x88,0xf8,0x00,0x7e,0x52,0x7e,0x52,0x7e -+// 38722 靂 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x1f,0x10,0x1f,0x12,0x1f,0x17,0x1a,0x10,0x22,0x22,0x5f,0xfc,0x40,0xff,0x6a,0x54,0xfe,0x00,0x7c,0x10,0xfe,0x38,0x56,0x50,0x78,0x40,0xfe -+// 38723 靃 ; -+,0x0f,0x00,0x3f,0x24,0x0a,0x04,0x10,0x14,0x3f,0x34,0x5f,0x14,0x1f,0x14,0x1f,0x10,0xf8,0x80,0xff,0x92,0xa8,0x90,0x50,0x48,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x7f,0x40 -+// 38724 靄 ; -+,0x1f,0x00,0x3f,0x2a,0x05,0x10,0x08,0x3e,0x00,0x1c,0x00,0x1c,0x00,0x3d,0x24,0x3c,0xfc,0x80,0xff,0xaa,0x94,0x00,0xfc,0xa4,0x94,0xfc,0x40,0x7f,0x91,0xa9,0xfd,0x03 -+// 38725 靅 ; -+,0x3e,0x08,0x7f,0x48,0x2a,0x08,0x2a,0x00,0x3c,0x00,0x7e,0x10,0x24,0x7e,0x02,0x00,0x28,0xfe,0x2a,0xfe,0xa8,0xff,0x29,0x4b,0xfe,0x4a,0x66,0x52,0x7e,0x24,0xc3,0x00 -+// 38726 靆 ; -+,0x00,0x3f,0x08,0x7f,0x49,0x2a,0x08,0x2b,0x08,0x3e,0x00,0x7e,0x10,0x24,0x7d,0x00,0x10,0x10,0x7e,0x92,0x7f,0x92,0x7e,0xd2,0xb4,0xb8,0xd6,0x92,0xb0,0xc0,0x3f,0x00 -+// 38727 靇 ; -+,0x0f,0x00,0x3f,0x24,0x0a,0x04,0x1f,0x0a,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x15,0x12,0xfc,0x80,0xff,0xaa,0x94,0x80,0x3e,0x20,0xbe,0x02,0x3e,0x28,0x35,0x29,0x21,0x3f -+// 38728 靈 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x00,0x1d,0x15,0x1d,0x00,0x1f,0x04,0x0c,0x12,0x3f,0x00,0xfc,0x80,0xff,0xaa,0x94,0x00,0xdc,0x54,0xdc,0x00,0xfc,0x90,0x98,0xa4,0xff,0x00 -+// 38729 靉 ; -+,0x00,0x3e,0x08,0x7f,0x48,0x2a,0x08,0x2a,0x00,0x3e,0x00,0x7f,0x08,0x14,0x3e,0x02,0x1e,0xe0,0x52,0x54,0xff,0x92,0x49,0xa2,0x3e,0x20,0x3e,0x64,0x98,0x2c,0xc3,0x00 -+// 38730 靊 ; -+,0x0f,0x00,0x3f,0x34,0x0e,0x1e,0x14,0x1e,0x14,0x3f,0x00,0x0f,0x08,0x0f,0x02,0x7f,0xfc,0x80,0xff,0xca,0xb4,0xfa,0x92,0xfa,0x92,0xff,0x00,0xfc,0x04,0xfc,0x10,0xff -+// 38731 靋 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x27,0x14,0x47,0x2d,0x17,0x15,0x67,0x24,0x24,0x28,0x2b,0xfe,0x80,0xff,0xaa,0x94,0xfe,0x00,0xbc,0x08,0xbe,0x9c,0x6b,0x10,0x9c,0x90,0xff -+// 38732 靌 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x00,0x1f,0x12,0x0f,0x02,0x0f,0x00,0x0f,0x09,0x0f,0x04,0xf8,0x80,0xff,0xd2,0xa8,0x80,0xfe,0x22,0xbc,0x54,0x98,0x54,0xf8,0x28,0xf8,0x10 -+// 38733 靍 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x08,0x0a,0x1f,0x34,0x5f,0x14,0x1f,0x14,0x14,0x1f,0x10,0xfe,0x80,0xff,0xa9,0x94,0x20,0x7e,0x52,0x4a,0x7e,0x40,0x7f,0x40,0x7f,0xd5,0xab -+// 38734 靎 ; -+,0x0f,0x00,0x3f,0x2a,0x05,0x00,0x04,0x0a,0x1f,0x64,0x1f,0x25,0x16,0x07,0x38,0x00,0xfc,0x80,0xff,0xd2,0xa8,0x90,0x7e,0x52,0x4a,0xfe,0x40,0x7f,0x40,0x7f,0xd5,0xab -+// 38735 靏 ; -+,0x0f,0x00,0x3f,0x34,0x0a,0x04,0x3f,0x29,0x10,0x3f,0x54,0x1e,0x14,0x1e,0x14,0x1f,0xfe,0x80,0xff,0xd1,0xa8,0x90,0x7e,0x52,0x7e,0x40,0x7f,0x40,0x7f,0xb5,0xab,0x03 -+// 38736 靐 ; -+,0x1f,0x00,0x7f,0x44,0x0f,0x08,0x0f,0x08,0x7f,0x08,0x7f,0x49,0x00,0x7f,0x41,0x7f,0xfc,0x80,0xff,0x92,0xf8,0x88,0xf8,0x88,0xff,0x08,0x7f,0x49,0x00,0x7f,0x41,0x7f -+// 38737 靑 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x80,0x80,0xfe,0x80,0xfc,0x80,0xff,0x00,0xf8,0x88,0x88,0xf8,0x08,0x08,0x28,0x10 -+// 38738 青 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x08,0x80,0x80,0xfc,0x80,0xf8,0x80,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x28,0x10 -+// 38739 靓 ; -+,0x04,0x04,0x3f,0x04,0x1f,0x04,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x15,0x12,0x00,0x00,0xbe,0x22,0x22,0x2a,0xaa,0x2a,0x2a,0x2a,0x08,0x18,0x19,0x29,0x49,0x87 -+// 38740 靔 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x2a,0x24,0x20,0x20,0x40,0x7f,0x80,0x7e,0x00,0xfc,0x04,0x04,0x04,0x05,0x05,0x03,0x03,0x01 -+// 38741 靕 ; -+,0x00,0x00,0x01,0x7e,0x08,0x08,0x09,0x2e,0x28,0x28,0x28,0x28,0x2e,0x70,0x00,0x00,0x20,0x20,0xfe,0x20,0xfc,0x20,0xff,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88 -+// 38742 靖 ; -+,0x10,0x08,0x08,0x3e,0x00,0x22,0x12,0x12,0x14,0x14,0x0e,0x70,0x00,0x00,0x00,0x00,0x10,0xff,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 38743 靗 ; -+,0x04,0x3f,0x04,0x1e,0x04,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x00,0x10,0x10,0x92,0x52,0x54,0xff,0x28,0x28,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 38744 靘 ; -+,0x08,0x3e,0x08,0x3e,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x26,0x22,0x20,0x20,0x7e,0x44,0x88,0x7e,0x52,0x52,0x52,0x7e,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 38745 静 ; -+,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x20,0x20,0x3c,0x48,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x10,0x10,0x10,0x50,0x20 -+// 38746 靚 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x00,0x7e,0x42,0x7e,0x42,0xfe,0x42,0x42,0x7e,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 38747 靛 ; -+,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2b,0x24,0x20,0x10,0xff,0x82,0x00,0x7e,0x10,0x10,0x50,0x5e,0x50,0x50,0xb0,0x90,0x0f,0x00 -+// 38748 靜 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x08,0x7e,0x00,0x3f,0x22,0x3e,0x22,0x3e,0x22,0x2a,0x24,0x00,0x1e,0xe0,0x24,0x94,0x48,0xfe,0x12,0xff,0x12,0xfe,0x10,0x10,0x10,0x50,0x20 -+// 38749 靝 ; -+,0x08,0x3e,0x08,0x3e,0x08,0x7e,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x23,0x2a,0x24,0x40,0x7f,0x40,0xbe,0x00,0xfe,0x22,0xaa,0x72,0xfa,0x62,0xb2,0xab,0x23,0x21,0x01 -+// 38750 非 ; -+,0x02,0x02,0x02,0x3e,0x02,0x02,0x02,0x3e,0x02,0x02,0x02,0x7e,0x02,0x02,0x02,0x02,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x3e,0x20,0x20,0x20,0x3f,0x20,0x20,0x20,0x20 -+// 38751 靟 ; -+,0x02,0x02,0x7e,0x02,0x3e,0x02,0x7e,0x02,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x00,0x00,0x40,0x40,0x7e,0x40,0x7c,0x40,0x7f,0x40,0xf0,0x80,0xf8,0x81,0xfd,0x81,0x7f,0x00 -+// 38752 靠 ; -+,0x00,0x08,0x0f,0x10,0x3f,0x08,0x08,0x0f,0x02,0x3e,0x02,0x1e,0x02,0x7e,0x02,0x02,0x80,0x80,0xfc,0x80,0xff,0x08,0x08,0xf8,0x20,0x3f,0x20,0x3e,0x20,0x3f,0x20,0x20 -+// 38753 靡 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x17,0x1a,0x12,0x10,0x17,0x10,0x17,0x20,0x2f,0x40,0x00,0x40,0xff,0x10,0xbe,0x18,0x34,0xd3,0x10,0xa0,0xbf,0xa0,0xbe,0xa0,0xbf,0xa0,0xa0 -+// 38754 面 ; -+,0x00,0x3f,0x01,0x02,0x1f,0x12,0x12,0x13,0x12,0x12,0x13,0x12,0x12,0x1f,0x10,0x00,0x00,0xff,0x00,0x00,0xfe,0x22,0x22,0xe2,0x22,0x22,0xe2,0x22,0x22,0xfe,0x02,0x00 -+// 38755 靣 ; -+,0x00,0x7f,0x01,0x02,0x1f,0x10,0x10,0x13,0x12,0x12,0x13,0x10,0x10,0x1f,0x10,0x00,0x00,0xff,0x00,0x00,0xfe,0x02,0x02,0xe2,0x22,0x22,0xe2,0x02,0x02,0xfe,0x02,0x00 -+// 38756 靤 ; -+,0x00,0x7f,0x08,0x10,0x7f,0x55,0x55,0x5d,0x55,0x5d,0x55,0x55,0x7f,0x41,0x40,0x00,0x20,0xa0,0x20,0x7e,0x82,0x7a,0x4a,0x4a,0x7a,0x42,0x4a,0x44,0x41,0x41,0x3f,0x00 -+// 38757 靥 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x11,0x1f,0x10,0x17,0x14,0x14,0x14,0x24,0x24,0x47,0x00,0xff,0x50,0x48,0xff,0xa0,0x18,0xff,0x40,0xfe,0x92,0xf2,0x92,0xf2,0x92,0xfe,0x00 -+// 38758 靦 ; -+,0x00,0x7f,0x08,0x10,0x7f,0x55,0x55,0x5d,0x55,0x5d,0x55,0x55,0x7f,0x41,0x40,0x00,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x28,0x28,0x29,0x49,0x49,0x87,0x00 -+// 38759 靧 ; -+,0x00,0x7f,0x08,0x10,0x7f,0x55,0x5d,0x55,0x55,0x5d,0x55,0x55,0x7f,0x41,0x40,0x00,0x10,0x7e,0x52,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0xc3 -+// 38760 靨 ; -+,0x3f,0x28,0x2f,0x20,0x2f,0x2a,0x2d,0x2a,0x28,0x3f,0x20,0x2f,0x29,0x29,0x49,0x4f,0xff,0x88,0x8c,0x0a,0xbf,0x88,0x94,0x92,0xa2,0xff,0x80,0xfe,0x52,0xb2,0x52,0xfe -+// 38761 革 ; -+,0x02,0x02,0x7f,0x02,0x03,0x00,0x0f,0x08,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0x00,0x20,0x20,0xff,0x20,0xe0,0x80,0xf8,0x88,0x88,0xf8,0x80,0xff,0x80,0x80,0x80,0x80 -+// 38762 靪 ; -+,0x11,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x24,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x00,0xbf,0x08,0x08,0x08,0x88,0x88,0x88,0x08,0x08,0x88,0x08,0x08,0x28,0x10 -+// 38763 靫 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x0b,0x08,0x00,0x00,0x7e,0x62,0x52,0x54,0x44,0x24,0x28,0x28,0x10,0x90,0x28,0xc4,0x07,0x02 -+// 38764 靬 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x25,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x00,0xbf,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x08 -+// 38765 靭 ; -+,0x11,0x11,0x7f,0x11,0x1f,0x04,0x3f,0x25,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x00,0xbe,0x12,0x12,0x12,0x52,0x52,0x52,0x12,0x12,0xa2,0x22,0x42,0x8a,0x04 -+// 38766 靮 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x3f,0x04,0x04,0x7f,0x04,0x04,0x04,0x04,0x20,0x20,0xa0,0x7e,0x42,0x82,0x02,0x22,0x12,0x12,0x02,0x82,0x02,0x02,0x0a,0x04 -+// 38767 靯 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x10,0x10,0x90,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 38768 靰 ; -+,0x22,0x22,0x7f,0x22,0x3e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0x00,0x7f,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 38769 靱 ; -+,0x00,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0x00,0x7e,0x22,0x22,0x22,0xa2,0x62,0x22,0x32,0x2a,0x46,0x45,0x84,0x14,0x08 -+// 38770 靲 ; -+,0x00,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x00,0x10,0x10,0x90,0x28,0x44,0xa3,0x10,0x10,0x00,0xfe,0x04,0x08,0x08,0x10,0x10,0x00 -+// 38771 靳 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0x0e,0x70,0x40,0x40,0x40,0x7f,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 38772 靴 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x09,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x00,0x28,0x28,0x28,0x4a,0xca,0x4c,0x48,0x58,0x68,0x48,0x48,0x49,0x49,0x49,0x47,0x00 -+// 38773 靵 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x04,0x3f,0x25,0x25,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x00,0x7e,0x92,0x12,0x12,0x12,0x7e,0x22,0x22,0x22,0x22,0xa2,0x22,0x22,0xff,0x00 -+// 38774 靶 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x7e,0x52,0x52,0x52,0x52,0x7e,0x40,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 38775 靷 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x02,0xf2,0x12,0x12,0x12,0xf2,0x82,0x82,0x82,0xf2,0x12,0x12,0x12,0x12,0x52,0x22 -+// 38776 靸 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x09,0x0a,0x08,0x00,0xfe,0x44,0x44,0x48,0x48,0x5e,0x42,0x64,0x54,0x48,0x88,0x94,0x23,0x42,0x00 -+// 38777 靹 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x55,0x53,0x61,0x41,0x41,0x41,0x41,0x45,0x42 -+// 38778 靺 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x09,0x0a,0x08,0x08,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xfe,0x30,0x58,0x54,0x94,0x13,0x12,0x10,0x10 -+// 38779 靻 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0xff,0x00 -+// 38780 靼 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x7e,0x00,0x00,0x00,0xff,0x00 -+// 38781 靽 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x10,0x10,0x92,0x54,0x58,0x10,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10 -+// 38782 靾 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x09,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x00,0x14,0x94,0x94,0x94,0xff,0x94,0x94,0x94,0x94,0x94,0x9c,0x80,0x80,0xff,0x00 -+// 38783 靿 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x09,0x3e,0x2a,0x2a,0x3e,0x09,0x7f,0x08,0x08,0x08,0x08,0x08,0x48,0x48,0x88,0x9f,0xe9,0x29,0x49,0x49,0xa9,0xe9,0x11,0x11,0x21,0x45,0x02 -+// 38784 鞀 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x7e,0x12,0x12,0x22,0x22,0x4a,0x84,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 38785 鞁 ; -+,0x22,0x22,0x7f,0x22,0x3e,0x08,0x3e,0x2a,0x3e,0x08,0x7e,0x09,0x09,0x0a,0x08,0x08,0x10,0x10,0xfe,0x94,0x90,0x90,0xfc,0xc4,0xc4,0xa8,0xa8,0x10,0x18,0x26,0xc4,0x00 -+// 38786 鞂 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x7f,0x08,0x09,0x08,0x08,0x08,0x00,0x0e,0x70,0x10,0x10,0xff,0x10,0x38,0x34,0x54,0x52,0x93,0x12,0x10,0x10,0x10 -+// 38787 鞃 ; -+,0x24,0x24,0x7e,0x24,0x3c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x04,0xe4,0x24,0x24,0x24,0xe4,0x84,0x84,0xe4,0x28,0x28,0x2a,0x31,0xbf,0x41,0x00 -+// 38788 鞄 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x09,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x20,0x20,0x40,0x7e,0x82,0x7a,0x4a,0x4a,0x4a,0x7a,0x42,0x46,0x41,0x41,0x3f,0x00 -+// 38789 鞅 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x0b,0x08,0x10,0x10,0x10,0x7c,0x54,0x54,0x54,0x54,0xff,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 38790 鞆 ; -+,0x24,0x24,0x7e,0x24,0x3c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x00,0xff,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xaa,0xa6,0xc2,0x82,0x82,0x8a,0x84 -+// 38791 鞇 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x00,0xfe,0x92,0x92,0x92,0xfe,0x92,0x92,0x92,0x92,0xaa,0xa6,0xc2,0x82,0xfe,0x82 -+// 38792 鞈 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x10,0x10,0xb0,0x28,0x44,0x83,0x7c,0x00,0x00,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44 -+// 38793 鞉 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x0b,0x08,0x28,0x28,0x28,0x28,0xaa,0x6c,0x28,0x6c,0xaa,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 38794 鞊 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 38795 鞋 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x09,0x08,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 38796 鞌 ; -+,0x00,0x1f,0x10,0x3f,0x02,0x01,0x0f,0x3f,0x01,0x07,0x04,0x07,0x00,0x3f,0x00,0x00,0x80,0xfe,0x84,0xff,0x20,0xe0,0x38,0xfe,0x20,0xf8,0x88,0xf8,0x80,0xff,0x80,0x80 -+// 38797 鞍 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x0b,0x08,0x20,0x10,0xff,0x82,0x10,0x10,0x20,0xff,0x24,0x44,0x28,0x10,0x28,0xc4,0x06,0x02 -+// 38798 鞎 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x50,0x52,0x54,0x48,0x48,0x44,0x63,0x42,0x00 -+// 38799 鞏 ; -+,0x3e,0x08,0x08,0x0e,0x71,0x04,0x3f,0x04,0x07,0x00,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x78,0x48,0x68,0x99,0x07,0x20,0xfe,0x20,0xe0,0x80,0xf8,0x88,0xf8,0x80,0xff,0x80 -+// 38800 鞐 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x10,0x10,0x9e,0x10,0x10,0xff,0x00,0xff,0x10,0x10,0x14,0x12,0x10,0x10,0x10,0x10 -+// 38801 鞑 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x08,0x08,0x88,0x48,0x3f,0x08,0xc8,0x48,0x54,0x54,0x52,0x62,0x40,0xa0,0x1f,0x00 -+// 38802 鞒 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x09,0x08,0x00,0x7e,0x10,0x10,0xff,0x28,0x44,0xcb,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 38803 鞓 ; -+,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x09,0x08,0x00,0x7e,0x42,0x42,0x7e,0x00,0x00,0xff,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 38804 鞔 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x09,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x09,0x08,0x20,0x20,0x7c,0x48,0x90,0xfe,0x92,0x92,0xfe,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 38805 鞕 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x0b,0x08,0x00,0xff,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x50,0x20,0x30,0xc8,0x07,0x02 -+// 38806 鞖 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x09,0x08,0x0e,0xf0,0x20,0x12,0x92,0x44,0x10,0x10,0xff,0x24,0x44,0x28,0x18,0x66,0x82,0x00 -+// 38807 鞗 ; -+,0x08,0x08,0x10,0x11,0x30,0x55,0x14,0x15,0x14,0x14,0x14,0x15,0x11,0x17,0x10,0x10,0x80,0xfc,0x88,0x50,0x30,0xce,0x90,0xfe,0x90,0xf0,0x20,0xfc,0x24,0xff,0x20,0x20 -+// 38808 鞘 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x92,0x52,0x34,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x4a,0x44 -+// 38809 鞙 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x29,0x3f,0x08,0x7f,0x08,0x08,0x08,0x08,0x00,0x7e,0x42,0x42,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 38810 鞚 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x20,0x10,0xff,0x82,0x00,0x44,0x42,0x82,0x00,0xfe,0x10,0x10,0x10,0x10,0xff,0x00 -+// 38811 鞛 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x04,0x44,0x28,0x28,0xff,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 38812 鞜 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x10,0x12,0xf4,0x38,0x54,0x93,0x10,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 38813 鞝 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x10,0x10,0x92,0x52,0x54,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82 -+// 38814 鞞 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x20,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x30,0x50,0x90,0xff,0x10,0x10,0x10,0x10 -+// 38815 鞟 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0x7c,0x08,0x10,0xfe,0x10,0x10,0x50,0x20 -+// 38816 鞠 ; -+,0x24,0x24,0x7f,0x24,0x3d,0x08,0x7e,0x4a,0x7e,0x08,0x08,0x7e,0x09,0x08,0x08,0x08,0x40,0x40,0x40,0xff,0x21,0xa9,0x71,0xfd,0x21,0x71,0x69,0xa9,0x21,0x21,0x25,0x02 -+// 38817 鞡 ; -+,0x24,0x24,0x7e,0x24,0x3d,0x08,0x3e,0x2a,0x2a,0x3e,0x09,0x7e,0x08,0x08,0x0a,0x09,0x80,0x88,0x84,0x84,0xdf,0x80,0x81,0x91,0xc9,0x8a,0x8a,0x82,0x84,0x84,0xbf,0x00 -+// 38818 鞢 ; -+,0x24,0x24,0x7e,0x25,0x3c,0x08,0x7e,0x4a,0x7e,0x09,0x08,0x7f,0x08,0x08,0x09,0x08,0x24,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xfe,0x10,0xff,0x30,0x58,0x54,0x93,0x12,0x10 -+// 38819 鞣 ; -+,0x14,0x7f,0x14,0x1d,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0x7e,0x08,0xff,0x32,0x54,0x90,0x30,0x10,0xff,0x30,0x58,0x54,0x93,0x10,0x10 -+// 38820 鞤 ; -+,0x04,0x1f,0x04,0x3f,0x04,0x3f,0x07,0x3a,0x3f,0x02,0x03,0x0f,0x08,0x7f,0x00,0x00,0x00,0x04,0x7f,0x24,0x14,0x04,0x14,0x28,0xff,0x20,0xe0,0xf8,0x88,0xff,0x80,0x80 -+// 38821 鞥 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3f,0x29,0x3f,0x08,0x08,0x7e,0x08,0x08,0x08,0x09,0x20,0x30,0x48,0x87,0x7a,0x00,0x7c,0x44,0x7c,0x00,0x44,0xff,0x44,0x84,0x84,0x04 -+// 38822 鞦 ; -+,0x24,0x25,0x7e,0x24,0x3c,0x13,0x7c,0x54,0x7d,0x12,0x10,0x7e,0x10,0x10,0x10,0x10,0x08,0xe8,0x88,0x88,0x8a,0xea,0x9c,0xc8,0xa8,0x88,0x88,0x94,0x94,0xa3,0xc2,0x80 -+// 38823 鞧 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x44,0x28,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xae,0xc2,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 38824 鞨 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2b,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x40,0xff,0x91,0x91,0xa9,0xc5,0xff,0x01,0x05,0x02 -+// 38825 鞩 ; -+,0x24,0x24,0x7f,0x24,0x3c,0x09,0x3f,0x29,0x29,0x3f,0x09,0x7d,0x09,0x09,0x09,0x09,0x01,0x41,0x51,0xd1,0x65,0xf5,0x15,0xf5,0x15,0x15,0xf5,0x11,0x11,0x11,0x55,0x22 -+// 38826 鞪 ; -+,0x3f,0x04,0x7f,0x0d,0x14,0x6c,0x02,0x1f,0x02,0x03,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x10,0x1f,0xa2,0x54,0x08,0x14,0x23,0xfc,0x20,0xe0,0xf8,0x88,0xf8,0x80,0xff,0x80 -+// 38827 鞫 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x20,0x20,0x7f,0x81,0x21,0xfd,0x01,0x79,0x01,0x79,0x01,0x79,0x49,0x79,0x05,0x02 -+// 38828 鞬 ; -+,0x24,0x24,0x7e,0x25,0x3c,0x08,0x3e,0x2b,0x2a,0x3e,0x08,0x08,0x7e,0x09,0x0a,0x08,0x08,0x08,0x3e,0x8a,0xff,0x8a,0xbe,0x08,0xbe,0x88,0xbf,0x88,0x88,0x48,0x3f,0x00 -+// 38829 鞭 ; -+,0x24,0x24,0x7f,0x24,0x3c,0x09,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x40,0x7f,0x48,0x88,0xbe,0xaa,0xbe,0xaa,0xbe,0x88,0x88,0xa8,0x98,0x94,0xa7,0x82 -+// 38830 鞮 ; -+,0x12,0x7f,0x12,0x12,0x1e,0x08,0x3e,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x09,0x0a,0x08,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x10,0x1e,0x90,0x90,0xd0,0x30,0x1f,0x00 -+// 38831 鞯 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x3f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x44,0xff,0x44,0x20,0x20,0xff,0x40,0xde,0x44,0x48,0x7f,0x48,0x48,0x48,0x58,0x48 -+// 38832 鞰 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x09,0x08,0x00,0x7c,0x44,0x44,0x7c,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 38833 鞱 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x00,0x0f,0xf0,0xa2,0x52,0x54,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x82 -+// 38834 鞲 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x09,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x28,0xfe,0x28,0xfe,0x28,0xff,0x10,0xfe,0x92,0xfe,0x92,0xff,0x82,0x82,0x8a,0x84 -+// 38835 鞳 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x24,0x24,0xff,0x24,0x10,0x10,0x28,0x44,0x83,0x7c,0x00,0x7e,0x42,0x42,0x7e,0x42 -+// 38836 鞴 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2b,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x28,0x28,0x7e,0x28,0x28,0xff,0x40,0xfe,0x52,0x7e,0x52,0x7e,0x52,0x52,0x4a,0x44 -+// 38837 鞵 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x08,0x08,0x09,0x08,0x1e,0xe0,0x22,0x94,0x50,0x26,0x78,0x14,0x7e,0x10,0xff,0x10,0x28,0x47,0x82,0x00 -+// 38838 鞶 ; -+,0x04,0x1f,0x15,0x7f,0x19,0x15,0x23,0x02,0x7f,0x02,0x03,0x00,0x0f,0x08,0x7f,0x00,0x00,0x7c,0x44,0xc7,0x7c,0x28,0x18,0x24,0xfe,0x20,0xe0,0x80,0xf8,0x88,0xff,0x80 -+// 38839 鞷 ; -+,0x3f,0x00,0x07,0x04,0x1f,0x12,0x1f,0x10,0x02,0x3f,0x02,0x03,0x0f,0x08,0x7f,0x00,0xfe,0x00,0xf8,0x08,0xfe,0x22,0xfa,0x86,0x10,0xff,0x10,0xf0,0xfc,0x84,0xff,0x80 -+// 38840 鞸 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x7e,0x09,0x08,0x08,0x08,0x08,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x54,0xff,0x54,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 38841 鞹 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x09,0x08,0x09,0x08,0x80,0x4f,0xf9,0x09,0xea,0xac,0xea,0x0a,0xe9,0x29,0x49,0x6d,0xca,0x48,0x48,0x88 -+// 38842 鞺 ; -+,0x14,0x14,0x7e,0x15,0x1d,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x09,0x08,0x10,0x92,0x54,0xff,0x02,0x00,0x7c,0x44,0x7c,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 38843 鞻 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x10,0x7e,0x52,0xff,0x52,0x7e,0x10,0xfe,0x92,0xfe,0x10,0xff,0x24,0x68,0x18,0xe6 -+// 38844 鞼 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x7e,0x52,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x42 -+// 38845 鞽 ; -+,0x14,0x14,0x7e,0x15,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x00,0x7e,0x10,0xff,0x28,0x7c,0xcb,0x78,0x00,0xfe,0x82,0xba,0xaa,0xba,0x82,0x86 -+// 38846 鞾 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x24,0x24,0xff,0x24,0xff,0x52,0xff,0x52,0x52,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 38847 鞿 ; -+,0x28,0x28,0x7d,0x29,0x38,0x11,0x7d,0x54,0x7d,0x10,0x10,0x7c,0x11,0x11,0x12,0x10,0x10,0x92,0x14,0xdf,0x92,0x55,0xff,0x94,0xff,0x90,0x8a,0xcc,0x28,0x15,0x63,0x01 -+// 38848 韀 ; -+,0x24,0x24,0x7e,0x24,0x3c,0x10,0x7c,0x54,0x54,0x7c,0x10,0x7d,0x11,0x12,0x12,0x10,0x20,0x10,0xff,0xa4,0xff,0xa5,0xff,0xa0,0xbe,0xa0,0xbf,0x01,0xad,0xab,0x01,0x03 -+// 38849 韁 ; -+,0x25,0x24,0x7e,0x24,0x3c,0x08,0x7e,0x4a,0x4b,0x7e,0x08,0x7e,0x08,0x08,0x09,0x08,0xff,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x92,0xfe,0x92,0xfe,0x00,0xff,0x00 -+// 38850 韂 ; -+,0x24,0x24,0x7e,0x25,0x3c,0x08,0x7e,0x4a,0x7e,0x08,0x08,0x7e,0x09,0x09,0x0a,0x08,0x40,0x7c,0x88,0xff,0xb4,0xca,0xff,0x80,0xbe,0x80,0xbe,0x80,0x3e,0x22,0x3e,0x22 -+// 38851 韃 ; -+,0x24,0x24,0x7e,0x25,0x3d,0x08,0x3e,0x2b,0x3e,0x08,0x7e,0x08,0x08,0x09,0x0a,0x08,0x08,0x08,0x3e,0x08,0x7f,0x14,0x3e,0x88,0xbe,0x88,0xff,0x88,0x88,0x88,0x7f,0x00 -+// 38852 韄 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x09,0x3e,0x2a,0x3e,0x08,0x7e,0x08,0x08,0x08,0x08,0x09,0x44,0xff,0x44,0x50,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x44,0x28,0x18,0x67,0x82 -+// 38853 韅 ; -+,0x14,0x14,0x7f,0x14,0x1c,0x08,0x3e,0x2b,0x3e,0x08,0x09,0x7e,0x08,0x08,0x09,0x08,0x7e,0x42,0x7e,0x42,0x7e,0x44,0x89,0xee,0x44,0xa9,0xff,0x11,0x00,0xaa,0x29,0x00 -+// 38854 韆 ; -+,0x24,0x24,0x7e,0x24,0x3d,0x11,0x7c,0x57,0x55,0x7d,0x11,0x7d,0x11,0x12,0x14,0x10,0x00,0x7f,0x14,0x7f,0x55,0x7f,0x10,0x7f,0x22,0x7d,0xa4,0x22,0x3e,0x80,0x7f,0x00 -+// 38855 韇 ; -+,0x14,0x7e,0x14,0x1c,0x08,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x10,0xff,0x10,0x7c,0x00,0xfe,0xaa,0xfe,0x00,0xfe,0x92,0xca,0xa6,0xfe,0x44,0x82 -+// 38856 韈 ; -+,0x24,0x24,0x7e,0x24,0x3c,0x08,0x7e,0x4a,0x7e,0x08,0x7e,0x08,0x08,0x09,0x09,0x0a,0x24,0xff,0x24,0x00,0xfe,0xaa,0xfe,0x0a,0xff,0x88,0xca,0xa4,0x8c,0x15,0x63,0x01 -+// 38857 韉 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x09,0x09,0x0a,0x24,0xff,0x34,0xff,0xa8,0xfe,0xaa,0xfe,0xa0,0xbe,0xa0,0xbf,0x81,0x6d,0xab,0x03 -+// 38858 韊 ; -+,0x24,0x25,0x7e,0x25,0x3d,0x11,0x7d,0x55,0x7d,0x11,0x11,0x7d,0x11,0x11,0x11,0x11,0x48,0xff,0x48,0xef,0xad,0x6b,0xef,0x11,0xff,0x11,0xff,0x55,0xff,0x39,0x55,0x13 -+// 38859 韋 ; -+,0x01,0x0f,0x02,0x02,0x7f,0x00,0x07,0x04,0x07,0x00,0x0f,0x08,0x10,0x1f,0x00,0x00,0x00,0xf8,0x08,0x08,0xff,0x00,0xf8,0x08,0xf8,0x80,0xfc,0x80,0x80,0xff,0x80,0x80 -+// 38860 韌 ; -+,0x08,0x08,0x3f,0x09,0x7f,0x00,0x1f,0x11,0x1f,0x04,0x7f,0x24,0x3f,0x04,0x04,0x04,0x00,0x7e,0x12,0x12,0x92,0x12,0x52,0x52,0x52,0x12,0x12,0x22,0xa2,0x4a,0x84,0x00 -+// 38861 韍 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x7e,0x08,0x09,0x00,0x20,0x28,0x24,0x20,0x7f,0x20,0x3e,0x22,0x24,0x54,0x48,0x48,0x94,0xa7,0x42,0x00 -+// 38862 韎 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x3e,0x08,0x08,0x08,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x10,0x38,0x34,0x54,0x52,0x93,0x12,0x10,0x10 -+// 38863 韏 ; -+,0x08,0x04,0x1f,0x00,0x3f,0x09,0x37,0x02,0x1f,0x04,0x07,0x00,0x1f,0x08,0x0f,0x00,0x88,0x90,0xfc,0x80,0xff,0x08,0xf7,0x10,0xfe,0x10,0xf0,0x80,0xf8,0x80,0xfc,0x80 -+// 38864 韐 ; -+,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7f,0x28,0x3f,0x08,0x08,0x08,0x00,0x10,0x10,0x28,0xa8,0x44,0x83,0x7c,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 38865 韑 ; -+,0x08,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x14,0x14,0x14,0x14,0x14,0x24,0x24,0x43,0x00,0x10,0x10,0x7c,0x24,0xff,0x00,0x7c,0x44,0x7c,0x10,0xfc,0x50,0x7d,0x11,0xff,0x00 -+// 38866 韒 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3f,0x21,0x3f,0x04,0x3f,0x24,0x7f,0x04,0x04,0x04,0x00,0x10,0x12,0x52,0x34,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 38867 韓 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7e,0x08,0x09,0x08,0x08,0x08,0x10,0x10,0x7c,0x24,0xff,0x00,0x7c,0x44,0x7c,0x10,0xfe,0x90,0xff,0x10,0x10,0x10 -+// 38868 韔 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7f,0x28,0x3f,0x08,0x08,0x08,0x00,0x7e,0x40,0x7e,0x40,0x7e,0x40,0x40,0xff,0x60,0x52,0x54,0x48,0x44,0x67,0x42 -+// 38869 韕 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x3e,0x28,0x7f,0x08,0x08,0x08,0x20,0x10,0xff,0x00,0x7e,0x42,0x7e,0x00,0x7e,0x04,0xff,0x08,0x08,0x08,0x28,0x10 -+// 38870 韖 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x3e,0x08,0x09,0x08,0x00,0x7c,0x08,0x10,0x7f,0x32,0x50,0xb0,0x10,0xff,0x38,0x54,0x54,0x93,0x10,0x10 -+// 38871 韗 ; -+,0x14,0x14,0x7e,0x14,0x1c,0x08,0x3e,0x2a,0x3e,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x00,0xff,0x92,0x7c,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x10,0x10,0x10,0x10 -+// 38872 韘 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x3e,0x08,0x08,0x08,0x14,0x54,0xff,0x54,0x54,0x5c,0x40,0x7e,0x10,0xff,0x38,0x54,0x54,0x93,0x10,0x10 -+// 38873 韙 ; -+,0x00,0x1e,0x12,0x1e,0x12,0x1e,0x00,0x3f,0x04,0x04,0x17,0x14,0x14,0x2c,0x43,0x00,0x10,0x7c,0x24,0xff,0x00,0x7c,0x44,0x7c,0x10,0xfe,0x50,0x7e,0x10,0x10,0xff,0x00 -+// 38874 韚 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x3e,0x08,0x08,0x08,0x24,0x24,0xff,0x24,0x3c,0x10,0x7e,0x52,0x52,0x7e,0x10,0x10,0xff,0x10,0x10,0x10 -+// 38875 韛 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3f,0x08,0x7e,0x28,0x3e,0x08,0x08,0x08,0x28,0x28,0xfe,0x28,0xff,0x20,0x40,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x92,0x92,0x86 -+// 38876 韜 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x3e,0x08,0x08,0x08,0x0e,0xf0,0x20,0x91,0x52,0x04,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x82 -+// 38877 韝 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x3e,0x28,0x7e,0x08,0x08,0x08,0x24,0xff,0x24,0x7e,0x24,0xff,0x10,0x7e,0x52,0x7e,0x52,0xff,0x42,0x42,0x4a,0x44 -+// 38878 韞 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x3e,0x28,0x7e,0x08,0x09,0x08,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 38879 韟 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x3e,0x28,0x7e,0x08,0x08,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x28,0xd7,0x10,0xff,0x10,0x10,0x10,0x10 -+// 38880 韠 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x3e,0x28,0x7e,0x08,0x08,0x08,0x00,0x7e,0x52,0x7e,0x52,0x7e,0x10,0x54,0xff,0x54,0xff,0x10,0xff,0x10,0x10,0x10 -+// 38881 韡 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x23,0x3e,0x08,0x3e,0x28,0x7e,0x08,0x08,0x08,0x28,0x28,0xff,0x28,0xfe,0x54,0x54,0xff,0x54,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 38882 韢 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x3f,0x09,0x08,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x11,0xff,0x12,0x49,0x42,0x3e,0x00 -+// 38883 韣 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x23,0x3e,0x08,0x7e,0x28,0x3e,0x08,0x08,0x08,0xfe,0xaa,0xaa,0xfe,0x40,0x7e,0x82,0x22,0xfa,0xaa,0xfa,0x2a,0xfe,0x02,0x0a,0x04 -+// 38884 韤 ; -+,0x10,0x10,0x3d,0x14,0x7e,0x00,0x3e,0x22,0x3e,0x08,0x7e,0x28,0x3e,0x09,0x09,0x0a,0x48,0x48,0xff,0x48,0xfe,0xaa,0xfe,0x14,0xff,0x90,0xd2,0xac,0x88,0x15,0x23,0x01 -+// 38885 韥 ; -+,0x08,0x08,0x3e,0x12,0x7f,0x00,0x3e,0x22,0x3e,0x08,0x7f,0x28,0x3f,0x08,0x08,0x08,0x10,0xff,0x10,0x7e,0x00,0xff,0xa9,0xff,0x00,0x7e,0x4a,0x66,0x52,0x7e,0x24,0x42 -+// 38886 韦 ; -+,0x00,0x00,0x3f,0x00,0x00,0x1f,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0xfe,0x80,0x80,0xfc,0x80,0x80,0xfe,0x82,0x82,0x82,0x8a,0x84,0x80,0x80 -+// 38887 韧 ; -+,0x04,0x04,0x7f,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x3e,0x92,0x12,0x52,0x52,0x92,0x12,0x92,0x92,0x92,0x92,0x22,0x22,0x4a,0x84 -+// 38888 韨 ; -+,0x08,0x08,0x7f,0x08,0x08,0x3e,0x08,0x08,0x7f,0x09,0x09,0x0b,0x09,0x0a,0x09,0x08,0x28,0x24,0x20,0xff,0x20,0x20,0x3e,0x22,0x44,0x64,0x58,0x88,0x14,0x64,0x83,0x02 -+// 38889 韩 ; -+,0x08,0x08,0x7e,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xff,0x10,0x10,0x7e,0x10,0x10,0xff,0x11,0x11,0x11,0x15,0x12,0x10,0x10 -+// 38890 韪 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x7f,0x04,0x14,0x17,0x14,0x2c,0x26,0x41,0x00,0x10,0x10,0x7e,0x10,0x10,0x7c,0x10,0x7e,0x12,0x12,0x9a,0x14,0x10,0x00,0xff,0x00 -+// 38891 韫 ; -+,0x10,0x10,0x7e,0x10,0x10,0x7c,0x10,0x10,0x7e,0x12,0x12,0x1a,0x14,0x10,0x13,0x10,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 38892 韬 ; -+,0x08,0x08,0x3e,0x08,0x08,0x3e,0x08,0x08,0x7e,0x0a,0x0a,0x0a,0x0e,0x08,0x08,0x08,0x00,0x1c,0xe0,0x22,0x92,0x44,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x82 -+// 38893 韭 ; -+,0x02,0x02,0x02,0x3e,0x02,0x02,0x3e,0x02,0x02,0x02,0x3e,0x02,0x02,0x7f,0x00,0x00,0x20,0x20,0x20,0x3e,0x20,0x20,0x3e,0x20,0x20,0x20,0x3e,0x20,0x20,0xff,0x00,0x00 -+// 38894 韮 ; -+,0x02,0x02,0x3f,0x02,0x00,0x02,0x3e,0x02,0x02,0x1e,0x02,0x3e,0x02,0x02,0x7f,0x00,0x10,0x10,0xff,0x10,0x00,0x20,0x3e,0x20,0x20,0x3e,0x20,0x3e,0x20,0x20,0xff,0x00 -+// 38895 韯 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x09,0x39,0x09,0x39,0x09,0x39,0x09,0x09,0x0e,0x70,0x00,0x10,0x14,0xd2,0x10,0xff,0x10,0xd2,0x12,0xd2,0x14,0xd4,0x08,0xd9,0x25,0x43,0x01 -+// 38896 韰 ; -+,0x04,0x07,0x14,0x1f,0x31,0x4a,0x0c,0x32,0x1e,0x02,0x1e,0x02,0x3e,0x02,0x7f,0x00,0x00,0x7c,0x44,0xa8,0x10,0x28,0xc6,0x20,0x3c,0x20,0x3c,0x20,0x3e,0x20,0xff,0x00 -+// 38897 韱 ; -+,0x11,0x11,0x1a,0x24,0x7f,0x0a,0x3b,0x0a,0x3b,0x0a,0x7b,0x0a,0x0b,0x0c,0x70,0x00,0x30,0x28,0xa4,0xa0,0xff,0x20,0xa0,0x14,0xd4,0x18,0xd0,0x10,0xa9,0x45,0x83,0x01 -+// 38898 韲 ; -+,0x00,0x3f,0x02,0x3d,0x14,0x14,0x2c,0x01,0x1f,0x01,0x1f,0x01,0x1f,0x01,0x7f,0x00,0x80,0xff,0x24,0x58,0x94,0x92,0x99,0x20,0x3e,0x20,0x3e,0x20,0x3e,0x20,0xff,0x00 -+// 38899 音 ; -+,0x00,0x00,0x1f,0x04,0x02,0x02,0x7f,0x00,0x0f,0x08,0x08,0x0f,0x08,0x08,0x0f,0x08,0x80,0x40,0xfe,0x10,0x10,0x20,0xff,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf8,0x08 -+// 38900 韴 ; -+,0x10,0x08,0x7f,0x22,0x12,0x14,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x00,0x7f,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x49,0x4b,0x08,0x08,0x08,0x08 -+// 38901 韵 ; -+,0x08,0x04,0x3f,0x11,0x09,0x0a,0x7f,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x10,0x10,0xa0,0x3f,0x41,0xa1,0x91,0x11,0x01,0x09,0x11,0x61,0x01,0x01,0x05,0x02 -+// 38902 韶 ; -+,0x08,0x04,0x3f,0x11,0x0a,0x7f,0x00,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x00,0x7e,0x92,0x12,0x12,0xa2,0x4a,0x04,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 38903 韷 ; -+,0x10,0x08,0x7f,0x22,0x12,0x14,0x7f,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x10,0x10,0x10,0x52,0x52,0x52,0x52,0x7e,0x10,0x91,0x91,0x91,0x91,0x91,0xff,0x81 -+// 38904 韸 ; -+,0x10,0x08,0x7e,0x00,0x22,0x14,0x7e,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x20,0x3e,0x42,0x64,0x98,0x2c,0xd3,0x10,0xfe,0x10,0x7c,0x10,0xff,0x10,0x10,0x10 -+// 38905 韹 ; -+,0x10,0x08,0x7f,0x22,0x12,0x14,0x7f,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x7e,0x10,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 38906 韺 ; -+,0x00,0x10,0x08,0x7e,0x24,0x14,0x7e,0x00,0x3e,0x23,0x3e,0x22,0x22,0x3e,0x22,0x00,0x48,0x48,0xfe,0x48,0x00,0x10,0xfe,0x92,0x92,0xff,0x10,0x28,0x28,0x44,0x83,0x00 -+// 38907 韻 ; -+,0x10,0x08,0x3f,0x22,0x12,0x14,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x00,0x00,0x00,0x7e,0x42,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x42,0x82,0x00 -+// 38908 韼 ; -+,0x10,0x08,0x7f,0x22,0x12,0x14,0x7f,0x01,0x3e,0x22,0x3e,0x22,0x22,0x3f,0x22,0x00,0x10,0x1f,0x22,0x94,0x48,0x37,0x08,0xbf,0x88,0xbe,0x88,0xbf,0x88,0x48,0x3f,0x00 -+// 38909 韽 ; -+,0x08,0x0c,0x12,0x29,0x44,0x3e,0x04,0x7f,0x14,0x7f,0x55,0x67,0x7f,0x41,0x7f,0x41,0x10,0x08,0x7f,0x22,0x12,0x14,0xff,0x00,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42 -+// 38910 韾 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x24,0x3f,0x20,0x5f,0x02,0x0f,0x0a,0x0d,0x08,0x0f,0x00,0xbc,0x24,0x23,0x40,0xbe,0x94,0x88,0x36,0xfc,0x20,0xf8,0x28,0xd8,0x08,0xf8 -+// 38911 響 ; -+,0x10,0x13,0x2a,0x7b,0x12,0x7b,0x0a,0x13,0x62,0x0f,0x02,0x3f,0x04,0x07,0x04,0x07,0x80,0xef,0x2a,0xec,0x2a,0xe9,0x8f,0x48,0x88,0xf8,0x20,0xfe,0x10,0xf0,0x10,0xf0 -+// 38912 頀 ; -+,0x10,0x08,0x7f,0x02,0x22,0x14,0x7f,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x48,0x48,0xff,0x48,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x44,0x28,0x38,0xc6 -+// 38913 頁 ; -+,0x00,0x3f,0x00,0x01,0x07,0x04,0x07,0x04,0x07,0x04,0x04,0x07,0x00,0x02,0x04,0x18,0x00,0xff,0x80,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x10,0x08,0x04,0x04 -+// 38914 頂 ; -+,0x00,0x01,0x7e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x11,0x00,0x00,0xff,0x20,0x40,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x28,0x46,0x82,0x00 -+// 38915 頃 ; -+,0x01,0x20,0x20,0x20,0x20,0x3c,0x20,0x20,0x20,0x24,0x28,0x30,0x20,0x00,0x00,0x03,0xff,0x10,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x08,0x44,0x82,0x02 -+// 38916 頄 ; -+,0x10,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x12,0x13,0x22,0x20,0x40,0x03,0x00,0x00,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0xc2,0x42,0x7e,0x24,0xc3,0x01,0x00 -+// 38917 項 ; -+,0x00,0x01,0x7e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x03,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x48,0x84,0x02,0x02 -+// 38918 順 ; -+,0x02,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x42,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x22,0x42 -+// 38919 頇 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0xff,0x20,0x40,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x44,0x82,0x02 -+// 38920 須 ; -+,0x00,0x09,0x08,0x10,0x20,0x40,0x04,0x08,0x10,0x60,0x02,0x04,0x08,0x10,0x63,0x0c,0x00,0xff,0x10,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0xfe,0x48,0x84,0x03,0x01 -+// 38921 頉 ; -+,0x04,0x04,0x04,0x24,0x24,0x27,0x24,0x24,0x24,0x24,0x27,0x78,0x00,0x00,0x03,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0xc3,0x01,0x00 -+// 38922 頊 ; -+,0x01,0x3e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x01,0x00,0xff,0x10,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x44,0x82,0x02 -+// 38923 頋 ; -+,0x00,0x3f,0x20,0x3f,0x29,0x29,0x29,0x29,0x2d,0x2a,0x28,0x2a,0x4c,0x48,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x42,0x81,0x00 -+// 38924 頌 ; -+,0x00,0x14,0x12,0x12,0x21,0x20,0x48,0x08,0x10,0x12,0x21,0x3f,0x01,0x00,0x01,0x00,0x00,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38925 頍 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x3f,0x02,0x12,0x0c,0x04,0x0a,0x12,0x60,0x03,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0xc3,0x01,0x00 -+// 38926 頎 ; -+,0x00,0x3e,0x20,0x20,0x20,0x3f,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x05,0x04,0x00,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38927 頏 ; -+,0x10,0x08,0x08,0x7f,0x00,0x1e,0x12,0x12,0x12,0x12,0x12,0x23,0x22,0x40,0x00,0x01,0x00,0xff,0x10,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0xc2,0x42,0x7e,0x24,0x43,0x81 -+// 38928 預 ; -+,0x7e,0x02,0x24,0x18,0x08,0x7f,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x11,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38929 頑 ; -+,0x3e,0x00,0x00,0x00,0x7f,0x14,0x14,0x14,0x14,0x14,0x14,0x25,0x26,0x44,0x01,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x82,0x00 -+// 38930 頒 ; -+,0x08,0x04,0x12,0x12,0x21,0x21,0x40,0x3e,0x12,0x12,0x12,0x12,0x22,0x2a,0x44,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x00,0x24,0x22,0x42 -+// 38931 頓 ; -+,0x08,0x08,0x7f,0x08,0x08,0x29,0x29,0x29,0x3f,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38932 頔 ; -+,0x08,0x08,0x08,0x08,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x22,0x00,0x01,0x00,0x00,0xff,0x10,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x24,0x42,0x81,0x00 -+// 38933 頕 ; -+,0x08,0x09,0x08,0x0e,0x08,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x01,0x00,0xff,0x20,0x40,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82,0x82,0xfe,0x28,0x44,0x82 -+// 38934 頖 ; -+,0x08,0x08,0x4a,0x2a,0x2c,0x7f,0x08,0x08,0x7f,0x08,0x08,0x08,0x10,0x10,0x20,0x40,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x82 -+// 38935 頗 ; -+,0x04,0x04,0x3f,0x25,0x24,0x24,0x3f,0x21,0x32,0x2a,0x24,0x2a,0x29,0x50,0x41,0x00,0x00,0x7f,0x90,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x42,0x82,0x00 -+// 38936 領 ; -+,0x04,0x04,0x0a,0x11,0x29,0x44,0x04,0x3f,0x01,0x02,0x02,0x14,0x08,0x04,0x04,0x00,0x00,0xff,0x10,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x82 -+// 38937 頙 ; -+,0x00,0x00,0x7f,0x04,0x04,0x04,0x27,0x24,0x24,0x24,0x24,0x27,0x78,0x00,0x00,0x01,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x82 -+// 38938 頚 ; -+,0x00,0x3f,0x11,0x0a,0x04,0x0a,0x31,0x04,0x04,0x3f,0x04,0x04,0x07,0x78,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38939 頛 ; -+,0x08,0x08,0x3f,0x08,0x3e,0x08,0x08,0x7f,0x0c,0x1a,0x29,0x28,0x48,0x08,0x09,0x08,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x81,0x00 -+// 38940 頜 ; -+,0x08,0x08,0x14,0x12,0x21,0x5e,0x00,0x00,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x82,0x00 -+// 38941 頝 ; -+,0x10,0x08,0x00,0x7f,0x04,0x22,0x21,0x42,0x12,0x0c,0x04,0x0a,0x12,0x60,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x81,0x00 -+// 38942 頞 ; -+,0x08,0x04,0x3f,0x22,0x08,0x08,0x7f,0x12,0x12,0x34,0x0c,0x0a,0x11,0x60,0x00,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x22,0x41,0x81 -+// 38943 頟 ; -+,0x08,0x08,0x0f,0x11,0x1a,0x26,0x05,0x08,0x1f,0x71,0x11,0x11,0x11,0x1f,0x11,0x00,0x00,0xff,0x08,0x10,0x7e,0x42,0x7e,0xc2,0x7e,0x42,0x7e,0x00,0x24,0x22,0x42,0x00 -+// 38944 頠 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x60,0x3f,0x29,0x29,0x2d,0x2a,0x28,0x2a,0x2c,0x49,0x00,0x00,0xff,0x10,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x82,0x00 -+// 38945 頡 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0xff,0x10,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x22,0x42,0x00 -+// 38946 頢 ; -+,0x00,0x06,0x38,0x08,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x22,0x42,0x00 -+// 38947 頣 ; -+,0x00,0x3f,0x28,0x28,0x3e,0x22,0x22,0x22,0x3e,0x28,0x28,0x28,0x3f,0x00,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x81,0x00 -+// 38948 頤 ; -+,0x00,0x7f,0x44,0x44,0x5f,0x51,0x51,0x51,0x51,0x5f,0x44,0x44,0x44,0x7f,0x00,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x81 -+// 38949 頥 ; -+,0x20,0x2f,0x2a,0x2a,0x2f,0x28,0x28,0x28,0x2f,0x2a,0x2a,0x2a,0x2f,0x20,0x20,0x00,0x00,0xbf,0x08,0x10,0xbe,0xa2,0xbe,0xa2,0xbe,0x22,0x3e,0x00,0x92,0x21,0x41,0x00 -+// 38950 頦 ; -+,0x08,0x04,0x7f,0x04,0x08,0x12,0x3e,0x04,0x09,0x12,0x64,0x0a,0x11,0x60,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38951 頧 ; -+,0x08,0x10,0x3e,0x22,0x22,0x22,0x3e,0x20,0x20,0x3e,0x22,0x22,0x22,0x3e,0x21,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38952 頨 ; -+,0x00,0x77,0x11,0x11,0x55,0x33,0x11,0x11,0x33,0x55,0x11,0x11,0x11,0x11,0x33,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x22,0x42,0x00 -+// 38953 頩 ; -+,0x02,0x22,0x14,0x3f,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x82,0x00 -+// 38954 頪 ; -+,0x08,0x08,0x49,0x2a,0x2c,0x7f,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x09,0x00,0xff,0x08,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38955 頫 ; -+,0x14,0x14,0x14,0x14,0x55,0x36,0x14,0x16,0x35,0x55,0x14,0x15,0x26,0x24,0x41,0x00,0x00,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x42,0x81,0x00 -+// 38956 頬 ; -+,0x08,0x08,0x08,0x3f,0x08,0x29,0x1a,0x08,0x7f,0x08,0x14,0x13,0x21,0x40,0x00,0x00,0x00,0x7f,0x08,0x90,0x3e,0x22,0x3e,0x22,0xbe,0x22,0x22,0x3e,0x14,0x22,0xc2,0x00 -+// 38957 頭 ; -+,0x00,0x7f,0x00,0x00,0x3e,0x22,0x22,0x3e,0x00,0x22,0x14,0x0f,0x70,0x00,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38958 頮 ; -+,0x04,0x04,0x75,0x16,0x15,0x25,0x54,0x08,0x12,0x7f,0x12,0x12,0x12,0x22,0x42,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38959 頯 ; -+,0x08,0x0f,0x11,0x2a,0x14,0x08,0x32,0x12,0x7f,0x12,0x12,0x12,0x22,0x22,0x42,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0x24,0x42,0x82 -+// 38960 頰 ; -+,0x08,0x08,0x7f,0x08,0x2a,0x2a,0x2b,0x5c,0x48,0x0c,0x12,0x13,0x21,0x40,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0xc2,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38961 頱 ; -+,0x07,0x78,0x49,0x25,0x26,0x00,0x02,0x7f,0x02,0x22,0x12,0x12,0x02,0x0a,0x05,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x04,0x22,0x43,0x81,0x00 -+// 38962 頲 ; -+,0x00,0x01,0x76,0x12,0x12,0x27,0x3a,0x0a,0x0a,0x4a,0x37,0x10,0x2c,0x43,0x00,0x00,0x00,0xbf,0x08,0x10,0x3e,0xa2,0x3e,0x22,0x3e,0x22,0x3e,0x04,0x12,0xa3,0x41,0x00 -+// 38963 頳 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x0a,0x0a,0x2b,0x2a,0x52,0x12,0x22,0x4a,0x04,0x00,0x00,0x7f,0x10,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0xc2,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38964 頴 ; -+,0x00,0x20,0x26,0x38,0x20,0x1f,0x00,0x3e,0x00,0x7f,0x06,0x25,0x25,0x54,0x09,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x24,0x43,0x81,0x00 -+// 38965 頵 ; -+,0x00,0x3e,0x12,0x7f,0x12,0x12,0x7e,0x10,0x3e,0x32,0x52,0x12,0x1e,0x12,0x00,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x22,0x42,0x00 -+// 38966 頶 ; -+,0x04,0x04,0x24,0x3f,0x24,0x44,0x04,0x7f,0x00,0x3f,0x21,0x21,0x21,0x3f,0x20,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0xc2,0x7e,0x42,0x7e,0x00,0x24,0x23,0xc1,0x00 -+// 38967 頷 ; -+,0x04,0x04,0x0a,0x11,0x24,0x44,0x3f,0x02,0x04,0x1f,0x11,0x11,0x1f,0x11,0x00,0x00,0x00,0xff,0x10,0xa0,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38968 頸 ; -+,0x00,0x7f,0x00,0x2a,0x2a,0x54,0x2a,0x2a,0x7f,0x08,0x08,0x0f,0x78,0x00,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x24,0x43,0x81,0x00 -+// 38969 頹 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x24,0x44,0x1e,0x12,0x12,0x12,0x22,0x23,0x42,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xa4,0x43,0x81,0x00 -+// 38970 頺 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x64,0x1f,0x12,0x17,0x11,0x11,0x21,0x2a,0x44,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x04,0x22,0x43,0x81,0x00 -+// 38971 頻 ; -+,0x04,0x04,0x14,0x17,0x14,0x7f,0x00,0x04,0x15,0x15,0x25,0x42,0x04,0x18,0x61,0x00,0x00,0xff,0x10,0xa0,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x42,0x83,0x00 -+// 38972 頼 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x25,0x3f,0x04,0x0e,0x15,0x15,0x24,0x44,0x05,0x00,0x00,0x7f,0x90,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x82,0x00 -+// 38973 頽 ; -+,0x03,0x3c,0x04,0x7f,0x04,0x0e,0x15,0x64,0x1e,0x12,0x12,0x12,0x22,0x23,0x42,0x00,0x00,0xff,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x00,0xa4,0x22,0x42,0x00 -+// 38974 頾 ; -+,0x05,0x18,0x60,0x04,0x18,0x62,0x04,0x18,0x64,0x04,0x17,0x14,0x14,0x17,0x78,0x00,0xfe,0x20,0xfc,0x94,0xcc,0xa4,0xfc,0x48,0xa4,0x20,0xa6,0x38,0x20,0xa1,0x1f,0x00 -+// 38975 頿 ; -+,0x00,0x02,0x0c,0x31,0x02,0x0c,0x71,0x06,0x7a,0x2b,0x2e,0x2a,0x2f,0x72,0x00,0x00,0x00,0x7f,0x08,0x10,0x3e,0xa2,0x3e,0x22,0x3e,0xa2,0x3e,0x80,0x14,0x23,0xc1,0x00 -+// 38976 顀 ; -+,0x08,0x0c,0x12,0x1f,0x32,0x52,0x1f,0x12,0x12,0x1f,0x12,0x12,0x1f,0x10,0x00,0x00,0x00,0xff,0x10,0xa0,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xa4,0x22,0x42,0x00 -+// 38977 顁 ; -+,0x08,0x04,0x3f,0x21,0x00,0x3f,0x04,0x04,0x17,0x14,0x14,0x14,0x2c,0x43,0x00,0x00,0x00,0x7f,0x90,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0xa2,0x42,0x00 -+// 38978 顂 ; -+,0x08,0x08,0x7f,0x08,0x2a,0x2a,0x2a,0x5d,0x08,0x1c,0x2a,0x29,0x49,0x08,0x09,0x08,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x42,0x82,0x00 -+// 38979 顃 ; -+,0x04,0x04,0x25,0x26,0x26,0x09,0x31,0x04,0x05,0x26,0x24,0x2a,0x09,0x10,0x61,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x42,0x83,0x00 -+// 38980 顄 ; -+,0x00,0x3f,0x02,0x04,0x04,0x24,0x35,0x2e,0x24,0x2e,0x35,0x24,0x34,0x28,0x3f,0x00,0x00,0x7f,0x08,0x10,0x3e,0xa2,0xbe,0xa2,0xbe,0xa2,0xa2,0xbe,0x80,0x94,0xa3,0x41 -+// 38981 顅 ; -+,0x08,0x04,0x3f,0x20,0x3f,0x20,0x2f,0x29,0x2f,0x29,0x2f,0x29,0x29,0x29,0x4b,0x09,0x00,0x7f,0x88,0x90,0xbe,0x22,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x00,0x14,0x23,0x41 -+// 38982 顆 ; -+,0x00,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x04,0x7f,0x0c,0x16,0x15,0x25,0x44,0x05,0x04,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38983 顇 ; -+,0x08,0x04,0x7f,0x12,0x12,0x2a,0x25,0x49,0x08,0x7f,0x08,0x08,0x08,0x08,0x09,0x08,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38984 顈 ; -+,0x10,0x13,0x1c,0x10,0x11,0x0f,0x08,0x12,0x3c,0x09,0x3f,0x16,0x25,0x45,0x14,0x08,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x22,0x43,0x81 -+// 38985 顉 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x0a,0x2a,0x1c,0x0e,0x70,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38986 顊 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x20,0x3f,0x21,0x3f,0x08,0x7f,0x08,0x08,0x08,0x09,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38987 顋 ; -+,0x00,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x00,0x08,0x05,0x54,0x50,0x51,0x0f,0x00,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0xfe,0x80,0x24,0x22,0x42,0x00 -+// 38988 題 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x7f,0x04,0x04,0x17,0x14,0x14,0x2c,0x47,0x00,0x00,0x7f,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x22,0x42,0x00,0xff,0x00 -+// 38989 額 ; -+,0x08,0x04,0x3f,0x28,0x0f,0x11,0x2a,0x06,0x09,0x1f,0x71,0x11,0x11,0x1f,0x11,0x00,0x00,0x7f,0x90,0xa0,0x7e,0x42,0x7e,0x42,0x7e,0xc2,0x7e,0x00,0x24,0x22,0x42,0x00 -+// 38990 顎 ; -+,0x00,0x77,0x55,0x77,0x00,0x3e,0x00,0x7f,0x08,0x1e,0x02,0x02,0x02,0x0a,0x05,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x24,0x43,0x81,0x00 -+// 38991 顏 ; -+,0x08,0x04,0x3f,0x14,0x08,0x14,0x3f,0x24,0x38,0x22,0x24,0x39,0x22,0x4c,0x71,0x00,0x00,0x7f,0x88,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38992 顐 ; -+,0x00,0x7f,0x45,0x3f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x04,0x04,0x00,0x00,0xbf,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38993 顑 ; -+,0x01,0x01,0x01,0x3f,0x21,0x3d,0x21,0x21,0x3d,0x35,0x35,0x3d,0x43,0x44,0x00,0x00,0x00,0x7f,0x08,0xd0,0x3e,0x22,0x3e,0x22,0x3e,0x62,0xa2,0x3e,0x40,0xd2,0x61,0x00 -+// 38994 顒 ; -+,0x00,0x3f,0x29,0x3f,0x29,0x3f,0x08,0x08,0x7f,0x49,0x4b,0x5f,0x41,0x45,0x42,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x22,0x42,0x00 -+// 38995 顓 ; -+,0x04,0x25,0x25,0x3f,0x00,0x7f,0x08,0x10,0x7f,0x54,0x54,0x54,0x54,0x42,0x41,0x00,0x00,0x7f,0x08,0x10,0x3e,0xa2,0x3e,0x22,0xbe,0xa2,0xbe,0x80,0x94,0xa3,0x41,0x00 -+// 38996 顔 ; -+,0x08,0x04,0x3f,0x11,0x0a,0x3f,0x22,0x24,0x39,0x22,0x2c,0x31,0x22,0x4c,0x70,0x00,0x00,0x7f,0x88,0x10,0x3e,0xa2,0x3e,0x22,0x3e,0x22,0x3e,0x00,0x14,0x22,0xc2,0x00 -+// 38997 顕 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x14,0x15,0x55,0x36,0x14,0x17,0x78,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 38998 顖 ; -+,0x08,0x10,0x3f,0x33,0x2d,0x35,0x23,0x3f,0x08,0x04,0x15,0x50,0x52,0x0e,0x01,0x00,0x00,0xff,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x80,0xa4,0x43,0x81,0x00 -+// 38999 顗 ; -+,0x08,0x29,0x29,0x3f,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x14,0x0f,0x70,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 39000 願 ; -+,0x00,0x1f,0x11,0x12,0x17,0x14,0x17,0x14,0x17,0x11,0x25,0x25,0x29,0x45,0x02,0x00,0x00,0xbf,0x08,0x10,0xbe,0xa2,0xbe,0xa2,0xbe,0x22,0xbe,0x40,0x54,0x12,0x22,0x00 -+// 39001 顙 ; -+,0x3e,0x12,0x0c,0x12,0x7f,0x2d,0x1a,0x65,0x08,0x7f,0x1c,0x2b,0x29,0x48,0x08,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x7e,0x00,0x24,0xc2,0x00 -+// 39002 顚 ; -+,0x10,0x1f,0x10,0x0f,0x00,0x0f,0x2d,0x2b,0x2d,0x2b,0x2f,0x20,0x3f,0x0a,0x31,0x00,0x00,0x7f,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x94,0x12,0x22,0x00 -+// 39003 顛 ; -+,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x12,0x21,0x41,0x00,0x00,0xbf,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0xbe,0x14,0x23,0x41,0x00 -+// 39004 顜 ; -+,0x12,0x7f,0x12,0x3f,0x12,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x7f,0x21,0x25,0x22,0x00,0x00,0xbf,0x08,0x10,0x3f,0xa1,0x3f,0x21,0x3f,0x21,0x3f,0x80,0x12,0x11,0x21,0x00 -+// 39005 顝 ; -+,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x16,0x12,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x22,0x42,0x00 -+// 39006 類 ; -+,0x04,0x25,0x16,0x7f,0x0e,0x15,0x64,0x02,0x05,0x3f,0x04,0x0a,0x09,0x11,0x20,0x00,0x00,0x7f,0x08,0x90,0x3e,0x22,0x3e,0x22,0x3e,0xa2,0x3e,0x00,0x22,0x21,0x41,0x00 -+// 39007 顟 ; -+,0x7f,0x09,0x2d,0x1b,0x2d,0x49,0x0c,0x13,0x64,0x1a,0x64,0x19,0x62,0x0c,0x71,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 39008 顠 ; -+,0x00,0x3f,0x0a,0x3f,0x2a,0x3f,0x00,0x3f,0x00,0x7f,0x04,0x25,0x24,0x54,0x08,0x00,0x00,0xbf,0x08,0x90,0xbe,0xa2,0x3e,0x22,0x3e,0xa2,0x3e,0x00,0x94,0x92,0x22,0x00 -+// 39009 顡 ; -+,0x10,0x08,0x7e,0x24,0x18,0x7f,0x10,0x3a,0x4c,0x16,0x6d,0x14,0x64,0x14,0x09,0x00,0x00,0xff,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x24,0x43,0x81,0x00 -+// 39010 顢 ; -+,0x12,0x12,0x7f,0x12,0x1e,0x04,0x7f,0x44,0x44,0x76,0x55,0x6e,0x44,0x44,0x41,0x00,0x00,0x7f,0x88,0x10,0x3e,0x22,0xbe,0xa2,0xbe,0xa2,0xbe,0x80,0x92,0xa1,0xc1,0x00 -+// 39011 顣 ; -+,0x02,0x03,0x02,0x3f,0x29,0x2d,0x29,0x3d,0x28,0x3d,0x29,0x3a,0x4c,0x48,0x00,0x00,0x00,0x3f,0x88,0xd0,0x3f,0x21,0x3f,0x61,0xbf,0x21,0x7f,0xc0,0xd2,0x51,0x21,0x00 -+// 39012 顤 ; -+,0x08,0x3f,0x08,0x7f,0x22,0x77,0x22,0x77,0x00,0x7f,0x12,0x12,0x22,0x23,0x42,0x00,0x00,0x7f,0x08,0x90,0x3e,0xa2,0x3e,0xa2,0x3e,0xa2,0x3e,0x00,0xa4,0x22,0x42,0x00 -+// 39013 顥 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x7f,0x00,0x1f,0x11,0x1f,0x04,0x15,0x64,0x14,0x08,0x00,0x7f,0x08,0x10,0x3e,0x22,0xbe,0x22,0x3e,0x22,0x3e,0x00,0x14,0xa2,0xc2,0x00 -+// 39014 顦 ; -+,0x08,0x0a,0x12,0x3f,0x34,0x5f,0x14,0x1f,0x14,0x1f,0x10,0x05,0x2a,0x2a,0x40,0x00,0x00,0x7f,0x08,0x90,0x3e,0xa2,0x3e,0xa2,0x3e,0xa2,0x3e,0x00,0xa4,0xa2,0x42,0x00 -+// 39015 顧 ; -+,0x08,0x04,0x3f,0x20,0x3f,0x29,0x2f,0x39,0x2f,0x29,0x2f,0x29,0x2f,0x48,0x00,0x00,0x00,0x7f,0x88,0x90,0xbe,0x22,0xbe,0x22,0xbe,0x22,0xbe,0x00,0xd4,0x22,0xc2,0x00 -+// 39016 顨 ; -+,0x3f,0x08,0x3f,0x25,0x33,0x29,0x25,0x3f,0x12,0x21,0x7f,0x04,0x04,0x08,0x08,0x10,0x7f,0x10,0x7e,0x52,0x4a,0x66,0x52,0x7e,0x24,0x42,0xff,0x10,0x10,0x10,0x10,0x10 -+// 39017 顩 ; -+,0x04,0x04,0x0b,0x10,0x6f,0x00,0x3b,0x2a,0x2a,0x2a,0x3b,0x11,0x11,0x2a,0x44,0x00,0x00,0x7f,0x08,0xd0,0x3e,0x22,0xbe,0xa2,0xbe,0xa2,0xbe,0x00,0x14,0x92,0xa2,0x00 -+// 39018 顪 ; -+,0x04,0x17,0x14,0x3f,0x03,0x3f,0x22,0x3e,0x2a,0x3b,0x2d,0x2b,0x55,0x60,0x00,0x00,0x00,0x7f,0x08,0x90,0x3e,0xa2,0x3e,0x22,0x3e,0xa2,0x3e,0x00,0x54,0xa3,0xc1,0x00 -+// 39019 顫 ; -+,0x08,0x04,0x7f,0x00,0x7f,0x52,0x5e,0x40,0x7f,0x21,0x3f,0x21,0x3f,0x00,0x7f,0x00,0x00,0x7f,0x88,0x10,0xbe,0xa2,0xbe,0xa2,0xbe,0x22,0x22,0x3e,0x00,0x12,0x61,0x00 -+// 39020 顬 ; -+,0x1f,0x04,0x7f,0x44,0x37,0x04,0x37,0x00,0x7f,0x08,0x3f,0x2a,0x2a,0x2a,0x21,0x00,0x7f,0x08,0xd0,0xbe,0x22,0x3e,0x22,0x22,0xbe,0x22,0xbe,0x80,0x94,0xa3,0xc1,0x00 -+// 39021 顭 ; -+,0x12,0x12,0x7f,0x12,0x3f,0x2a,0x3f,0x00,0x7f,0x50,0x1e,0x2a,0x04,0x08,0x30,0x00,0x00,0x3f,0x88,0x10,0xbe,0xa2,0xbe,0x22,0xfe,0xa2,0x3e,0x00,0x14,0x22,0xc1,0x00 -+// 39022 顮 ; -+,0x08,0x7f,0x41,0x3e,0x15,0x66,0x0c,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x0a,0x31,0x00,0x7f,0x10,0x20,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x24,0x22,0x42 -+// 39023 顯 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x11,0x22,0x77,0x11,0x2a,0x7f,0x00,0x35,0x2a,0x4a,0x00,0x00,0x7f,0x08,0x10,0x3e,0x22,0x3e,0xa2,0x3e,0xa2,0xbe,0x00,0x14,0x93,0xa1,0x00 -+// 39024 顰 ; -+,0x04,0x17,0x14,0x7f,0x15,0x26,0x05,0x1a,0x6f,0x08,0x0f,0x09,0x0f,0x02,0x3f,0x00,0xff,0x10,0x7e,0x6a,0x56,0x7e,0x24,0x42,0xf8,0x88,0xf8,0x08,0xf8,0x80,0xfe,0x80 -+// 39025 顱 ; -+,0x04,0x07,0x04,0x3f,0x24,0x3f,0x24,0x2f,0x2a,0x2f,0x2a,0x3f,0x55,0x55,0x3e,0x00,0x00,0x3f,0x08,0xd0,0xbf,0x21,0xbf,0xa1,0xa1,0xbf,0xa1,0xe1,0x7f,0xd2,0x21,0x41 -+// 39026 顲 ; -+,0x04,0x14,0x2b,0x11,0x64,0x15,0x0a,0x15,0x7f,0x00,0x3f,0x20,0x2e,0x2a,0x3f,0x00,0x3f,0x88,0x10,0x3f,0xe1,0x21,0x3f,0xa1,0xff,0x21,0xa1,0xbf,0x92,0x91,0xa1,0x00 -+// 39027 顳 ; -+,0x3f,0x15,0x1b,0x15,0x13,0x7f,0x01,0x7f,0x2a,0x3b,0x2a,0x3b,0x2a,0x3f,0x68,0x08,0x80,0x3f,0x04,0x08,0x1f,0xd1,0x11,0xdf,0x91,0x9f,0x91,0x91,0x9f,0xca,0x91,0xa1 -+// 39028 顴 ; -+,0x09,0x3f,0x09,0x00,0x3b,0x2a,0x3b,0x14,0x1f,0x34,0x5f,0x14,0x1f,0x14,0x1f,0x10,0x00,0xbf,0x08,0x10,0xbe,0xa2,0xbe,0x22,0xbe,0x22,0xbe,0x00,0x94,0x12,0xa2,0x00 -+// 39029 页 ; -+,0x3f,0x00,0x01,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x01,0x06,0x38,0x00,0xff,0x80,0x00,0xf8,0x08,0x88,0x88,0x88,0x88,0x88,0x88,0xc8,0x20,0x18,0x06,0x02 -+// 39030 顶 ; -+,0x00,0x01,0x7e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x13,0x00,0x00,0xff,0x20,0x40,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x92,0x28,0xc4,0x03,0x01 -+// 39031 顷 ; -+,0x00,0x01,0x10,0x10,0x10,0x1e,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x01,0x06,0x00,0x00,0xff,0x20,0x40,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x28,0x44,0x83,0x01,0x00 -+// 39032 顸 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x28,0x24,0x43,0x81,0x00 -+// 39033 项 ; -+,0x00,0x01,0x7e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x00,0x03,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x9a,0x24,0xc3,0x01,0x00 -+// 39034 顺 ; -+,0x00,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x22,0x42,0x02,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x82,0x92,0x92,0x92,0x92,0x10,0x28,0x46,0x82,0x00 -+// 39035 须 ; -+,0x04,0x09,0x10,0x60,0x02,0x04,0x08,0x10,0x60,0x02,0x04,0x08,0x10,0x60,0x03,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x28,0x24,0xc3,0x01,0x00 -+// 39036 顼 ; -+,0x00,0x7e,0x08,0x08,0x08,0x7e,0x08,0x08,0x08,0x08,0x08,0x0e,0x70,0x00,0x01,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x28,0x24,0x43,0x81,0x00 -+// 39037 顽 ; -+,0x00,0x3e,0x00,0x00,0x7f,0x14,0x14,0x14,0x14,0x14,0x15,0x26,0x24,0x40,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x18,0x24,0x43,0x81,0x00 -+// 39038 顾 ; -+,0x00,0x3f,0x20,0x20,0x2f,0x29,0x29,0x29,0x2b,0x28,0x29,0x2a,0x2c,0x48,0x01,0x00,0x00,0x7f,0x08,0x10,0x7e,0x42,0x4a,0x4a,0x4a,0x4a,0x4a,0x4a,0x14,0x63,0x81,0x00 -+// 39039 顿 ; -+,0x08,0x08,0x08,0x7f,0x08,0x2a,0x2a,0x2a,0x3e,0x08,0x08,0x09,0x0a,0x0c,0x0b,0x00,0xff,0x10,0x20,0x7e,0x42,0x42,0x52,0x52,0x52,0x52,0x52,0x18,0x24,0xc3,0x01,0x00 -+// 39040 颀 ; -+,0x00,0x1e,0x10,0x10,0x10,0x1f,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x43,0x81,0x00 -+// 39041 颁 ; -+,0x08,0x14,0x12,0x12,0x21,0x21,0x5e,0x0a,0x0a,0x0a,0x12,0x12,0x12,0x2a,0x45,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x28,0x46,0x82,0x00 -+// 39042 颂 ; -+,0x08,0x15,0x12,0x12,0x20,0x28,0x48,0x08,0x10,0x14,0x22,0x7e,0x02,0x00,0x01,0x00,0x00,0xff,0x10,0x20,0xfe,0x82,0x92,0x92,0x92,0x92,0x92,0x28,0x24,0x43,0x81,0x00 -+// 39043 颃 ; -+,0x08,0x04,0x04,0x7f,0x00,0x00,0x1e,0x12,0x12,0x12,0x12,0x13,0x22,0x20,0x43,0x00,0x00,0xff,0x10,0xa0,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0xc2,0x03,0x00 -+// 39044 预 ; -+,0x00,0x3e,0x02,0x14,0x08,0x7f,0x0a,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x11,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x43,0x81,0x00 -+// 39045 颅 ; -+,0x04,0x04,0x07,0x04,0x3f,0x21,0x21,0x3f,0x20,0x20,0x20,0x20,0x20,0x20,0x43,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x18,0x24,0xc3,0x01,0x00 -+// 39046 领 ; -+,0x08,0x08,0x14,0x12,0x21,0x28,0x44,0x3f,0x02,0x04,0x18,0x08,0x04,0x04,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x5a,0x24,0x42,0x82,0x00 -+// 39047 颇 ; -+,0x04,0x04,0x04,0x3f,0x25,0x24,0x3f,0x21,0x32,0x2a,0x24,0x2a,0x29,0x50,0x40,0x00,0x00,0xff,0x10,0xa0,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x43,0x81,0x00 -+// 39048 颈 ; -+,0x00,0x3e,0x04,0x0c,0x12,0x61,0x00,0x7e,0x08,0x08,0x08,0x08,0x0f,0x70,0x01,0x00,0xff,0x10,0x20,0xfe,0x82,0x82,0x92,0x92,0x92,0x92,0x92,0x28,0x24,0x43,0x81,0x00 -+// 39049 颉 ; -+,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x43,0x81,0x00 -+// 39050 颊 ; -+,0x08,0x08,0x3f,0x08,0x49,0x2a,0x0c,0x7f,0x08,0x0c,0x12,0x11,0x21,0x40,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x43,0x81,0x00 -+// 39051 颋 ; -+,0x00,0x73,0x11,0x11,0x21,0x27,0x79,0x09,0x49,0x29,0x13,0x10,0x28,0x46,0x01,0x00,0xbf,0x08,0x10,0x3e,0x22,0xa2,0x2a,0x2a,0x2a,0x2a,0xaa,0x08,0x14,0x23,0xc1,0x00 -+// 39052 颌 ; -+,0x08,0x08,0x0c,0x12,0x11,0x3f,0x40,0x00,0x1e,0x12,0x12,0x12,0x1e,0x12,0x01,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x10,0x28,0x46,0x82,0x00 -+// 39053 颍 ; -+,0x20,0x26,0x38,0x22,0x22,0x1e,0x08,0x08,0x7b,0x1c,0x1a,0x29,0x49,0x28,0x11,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x28,0x46,0x82,0x00 -+// 39054 颎 ; -+,0x20,0x20,0x2c,0x30,0x22,0x1e,0x00,0x08,0x49,0x2a,0x2c,0x08,0x14,0x12,0x22,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x42,0x82,0x00 -+// 39055 颏 ; -+,0x08,0x04,0x7f,0x08,0x0a,0x12,0x3c,0x04,0x09,0x12,0x64,0x0a,0x11,0x60,0x01,0x00,0xff,0x08,0x90,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x18,0x24,0x43,0x81,0x00 -+// 39056 颐 ; -+,0x00,0x7f,0x44,0x44,0x5f,0x51,0x51,0x51,0x5f,0x44,0x44,0x44,0x7f,0x00,0x01,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x43,0x81,0x00 -+// 39057 频 ; -+,0x04,0x04,0x27,0x24,0x24,0x7f,0x00,0x04,0x25,0x25,0x42,0x04,0x08,0x10,0x61,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x28,0x24,0x43,0x81,0x00 -+// 39058 颒 ; -+,0x04,0x04,0x75,0x16,0x15,0x24,0x4c,0x12,0x12,0x7f,0x12,0x12,0x22,0x22,0x42,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x10,0x28,0x46,0x82,0x00 -+// 39059 颓 ; -+,0x00,0x0e,0x78,0x08,0x7f,0x1c,0x2a,0x48,0x1e,0x12,0x12,0x12,0x23,0x22,0x41,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x18,0x24,0x43,0x81,0x00 -+// 39060 颔 ; -+,0x04,0x04,0x0a,0x19,0x24,0x40,0x3f,0x02,0x04,0x1f,0x11,0x11,0x1f,0x10,0x01,0x00,0x00,0xff,0x08,0x10,0x7e,0x42,0x42,0x52,0x52,0x52,0x52,0x18,0x24,0x43,0x81,0x00 -+// 39061 颕 ; -+,0x00,0x10,0x13,0x1c,0x10,0x1f,0x00,0x3f,0x00,0x7f,0x04,0x26,0x25,0x54,0x08,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x10,0x28,0x46,0x82,0x00 -+// 39062 颖 ; -+,0x10,0x12,0x1c,0x11,0x0f,0x00,0x1f,0x04,0x3f,0x04,0x0e,0x15,0x65,0x04,0x04,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x18,0x26,0xc2,0x00 -+// 39063 颗 ; -+,0x00,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x08,0x7f,0x0c,0x1a,0x29,0x48,0x08,0x08,0x00,0x00,0x7f,0x08,0x10,0x7f,0x41,0x49,0x49,0x49,0x49,0x49,0x49,0x14,0x23,0xc1,0x00 -+// 39064 题 ; -+,0x00,0x1e,0x12,0x1e,0x12,0x1e,0x00,0x7f,0x04,0x14,0x17,0x14,0x2c,0x26,0x41,0x00,0x00,0xff,0x10,0x20,0x7e,0x42,0x52,0x52,0x52,0x52,0x18,0x24,0x42,0x00,0xff,0x00 -+// 39065 颙 ; -+,0x00,0x3f,0x29,0x3f,0x29,0x3f,0x08,0x7f,0x48,0x4a,0x5f,0x40,0x40,0x42,0x41,0x00,0x00,0x7f,0x08,0x10,0x3f,0x21,0x21,0xa9,0xa9,0xa9,0xa9,0xa9,0x94,0x92,0x21,0x00 -+// 39066 颚 ; -+,0x00,0x77,0x55,0x77,0x00,0x3e,0x00,0x7f,0x08,0x0f,0x01,0x01,0x01,0x05,0x02,0x00,0x00,0x7f,0x10,0x20,0x7e,0x42,0x42,0x52,0x52,0x52,0x52,0x10,0x28,0x46,0x82,0x00 -+// 39067 颛 ; -+,0x00,0x04,0x25,0x25,0x3f,0x00,0x7f,0x08,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x21,0x00,0x00,0x7f,0x08,0x10,0x3e,0x22,0xaa,0x2a,0xaa,0xaa,0xaa,0x94,0x92,0xa3,0xc1,0x00 -+// 39068 颜 ; -+,0x08,0x04,0x3f,0x11,0x0a,0x3f,0x22,0x24,0x39,0x22,0x24,0x38,0x23,0x4c,0x70,0x00,0x00,0x3f,0x88,0x10,0x3e,0xa2,0x2a,0x2a,0x2a,0x2a,0x2a,0x94,0x12,0x23,0xc1,0x00 -+// 39069 额 ; -+,0x08,0x04,0x3f,0x28,0x0f,0x11,0x2a,0x06,0x09,0x1f,0x71,0x11,0x11,0x1f,0x10,0x00,0x00,0x7f,0xc8,0x90,0x7f,0x41,0x41,0x49,0x49,0x49,0x49,0x55,0x12,0x21,0xc1,0x00 -+// 39070 颞 ; -+,0x3f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x01,0x7f,0x44,0x2a,0x11,0x1a,0x24,0x48,0x00,0x80,0x3f,0x08,0x3e,0x22,0x22,0xea,0x2a,0xea,0xaa,0xaa,0x14,0x92,0x23,0x41,0x00 -+// 39071 颟 ; -+,0x12,0x12,0x7f,0x12,0x3f,0x0a,0x3f,0x2a,0x2a,0x2a,0x35,0x24,0x28,0x22,0x21,0x00,0x00,0x7f,0x88,0x10,0xbf,0x21,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x8c,0x93,0x21,0x00 -+// 39072 颠 ; -+,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x7f,0x12,0x11,0x21,0x00,0x00,0x7f,0x08,0x10,0x3e,0x22,0x2a,0x2a,0x2a,0x2a,0x2a,0x94,0x12,0x23,0x41,0x00 -+// 39073 颡 ; -+,0x3f,0x12,0x0c,0x0a,0x31,0x7b,0x2a,0x19,0x6a,0x04,0x7f,0x0e,0x15,0x64,0x04,0x04,0x00,0x7f,0x08,0x10,0x3e,0xa2,0xaa,0x2a,0xaa,0x2a,0xaa,0x08,0x14,0x23,0xc1,0x00 -+// 39074 颢 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x04,0x7f,0x00,0x3f,0x21,0x3f,0x04,0x25,0x24,0x54,0x08,0x7f,0x08,0x10,0x3f,0x21,0x29,0xa9,0x29,0x29,0x29,0x29,0x14,0x12,0xa3,0xc1,0x00 -+// 39075 颣 ; -+,0x04,0x25,0x16,0x7f,0x0e,0x15,0x6c,0x12,0x3c,0x09,0x3f,0x04,0x25,0x44,0x14,0x08,0x7f,0x08,0x10,0xbf,0x21,0x29,0xa9,0x29,0x29,0x29,0xa9,0x08,0x14,0x92,0xa1,0x41 -+// 39076 颤 ; -+,0x08,0x04,0x7f,0x00,0x3f,0x2a,0x2e,0x20,0x3f,0x11,0x1f,0x11,0x1f,0x00,0x7f,0x00,0x00,0x3f,0x88,0x10,0xbf,0xa1,0xa9,0xa9,0xa9,0x29,0x29,0x08,0x14,0x13,0xa1,0x00 -+// 39077 颥 ; -+,0x3f,0x04,0x7f,0x45,0x37,0x04,0x37,0x00,0x7f,0x08,0x7f,0x55,0x55,0x55,0x57,0x00,0x7f,0x08,0x90,0x7e,0x42,0x52,0x52,0x52,0xd2,0x52,0x52,0x18,0x24,0x23,0x41,0x00 -+// 39078 颦 ; -+,0x04,0x17,0x14,0x7f,0x25,0x26,0x45,0x1f,0x68,0x0f,0x09,0x0f,0x04,0x7f,0x00,0x00,0xff,0x20,0x7e,0x52,0x52,0x18,0x26,0xf8,0x88,0xf8,0x08,0xf8,0x80,0xff,0x80,0x80 -+// 39079 颧 ; -+,0x11,0x7f,0x11,0x3b,0x2a,0x3b,0x14,0x3f,0x24,0x7f,0x24,0x3f,0x24,0x3f,0x20,0x00,0x00,0xbf,0x08,0x90,0xbe,0xa2,0x2a,0xaa,0x2a,0x2a,0x2a,0x14,0x12,0xa1,0x41,0x00 -+// 39080 風 ; -+,0x00,0x1f,0x10,0x10,0x17,0x10,0x17,0x14,0x14,0x17,0x10,0x10,0x20,0x2f,0x40,0x00,0x00,0xfc,0x04,0x74,0x84,0x84,0xf4,0x94,0x94,0xf4,0x85,0xa5,0x93,0xfb,0x09,0x01 -+// 39081 颩 ; -+,0x00,0x3f,0x20,0x21,0x2e,0x22,0x2f,0x2a,0x2f,0x22,0x22,0x23,0x2e,0x20,0x40,0x00,0x00,0xe4,0x28,0xb0,0x24,0x24,0xa8,0xb0,0xa2,0x24,0x98,0xd1,0x09,0x05,0x03,0x00 -+// 39082 颪 ; -+,0x7f,0x00,0x00,0x00,0x00,0x0f,0x08,0x0b,0x08,0x0b,0x0a,0x0b,0x10,0x10,0x27,0x00,0xff,0xa0,0x98,0x88,0x80,0xfc,0x04,0xf4,0x84,0xf4,0x94,0xf4,0x95,0xfb,0x0b,0x01 -+// 39083 颫 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x38,0x40,0x40,0x00,0x08,0x88,0x88,0xbe,0x88,0x88,0xbf,0x88,0x94,0x92,0xa2,0x40,0xa1,0x19,0x07,0x00 -+// 39084 颬 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x39,0x20,0x40,0x00,0x00,0xbf,0x84,0xa4,0xa4,0xbf,0x8c,0x94,0x94,0xa4,0x44,0x4d,0x21,0x19,0x07,0x00 -+// 39085 颭 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x39,0x20,0x40,0x00,0x08,0x88,0x88,0x8f,0x88,0x88,0xbe,0xa2,0xa2,0xa2,0xbe,0x40,0x41,0x31,0x0f,0x00 -+// 39086 颮 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x38,0x40,0x00,0x00,0x10,0x90,0xbe,0xa2,0xfa,0xaa,0xaa,0xba,0xa6,0xa0,0x62,0x5e,0xa1,0x19,0x07,0x00 -+// 39087 颯 ; -+,0x20,0x11,0x11,0x7d,0x01,0x05,0x45,0x29,0x29,0x29,0x1d,0x62,0x02,0x05,0x08,0x00,0x00,0xfc,0x04,0xfc,0x24,0x24,0xfc,0xa4,0xa4,0xfc,0x24,0x2d,0x3b,0xc9,0x01,0x00 -+// 39088 颰 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x34,0x34,0x3f,0x24,0x24,0x25,0x3f,0x21,0x40,0x00,0x14,0x92,0x90,0xff,0x90,0x9e,0x92,0xb2,0xac,0xa4,0xca,0x52,0xa1,0x19,0x07,0x00 -+// 39089 颱 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x34,0x34,0x3f,0x24,0x25,0x27,0x39,0x20,0x40,0x00,0x08,0x88,0x90,0x90,0xa2,0xff,0x80,0xbe,0xa2,0xa2,0xbe,0x40,0x21,0x19,0x07,0x00 -+// 39090 颲 ; -+,0x00,0x3f,0x21,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x25,0x24,0x27,0x39,0x20,0x40,0x00,0x00,0x02,0xfa,0x42,0x72,0x5a,0xba,0x2a,0x2a,0x42,0x8a,0x44,0x21,0x19,0x07,0x00 -+// 39091 颳 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x38,0x40,0x00,0x00,0x00,0x87,0xb8,0x88,0xff,0x88,0x88,0xbe,0xa2,0xa2,0x7e,0x40,0xa1,0x19,0x07,0x00 -+// 39092 颴 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x39,0x20,0x40,0x00,0x10,0x90,0xbf,0xc0,0xbf,0x8a,0x88,0xaf,0xa8,0xa8,0xd8,0x47,0x20,0x19,0x07,0x00 -+// 39093 颵 ; -+,0x00,0x3f,0x20,0x3e,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x38,0x20,0x40,0x00,0x00,0x8a,0xaa,0x9c,0xbe,0xa2,0xbe,0xa2,0xbe,0xa2,0xa2,0x6a,0xa5,0x19,0x07,0x00 -+// 39094 颶 ; -+,0x00,0x3f,0x20,0x3e,0x24,0x3f,0x24,0x24,0x3f,0x24,0x24,0x25,0x3f,0x20,0x40,0x00,0x00,0xbe,0xa2,0xbe,0xa2,0xbe,0xa2,0xbe,0xa2,0xff,0xa4,0x42,0x20,0x99,0x07,0x00 -+// 39095 颷 ; -+,0x00,0x3f,0x20,0x3e,0x24,0x24,0x3f,0x24,0x24,0x3f,0x24,0x27,0x39,0x20,0x40,0x00,0x08,0x89,0xaa,0x94,0x92,0xe1,0x88,0xa9,0xaa,0x94,0x93,0x60,0x21,0x19,0x07,0x00 -+// 39096 颸 ; -+,0x00,0x3f,0x20,0x3e,0x24,0x3f,0x24,0x24,0x3f,0x24,0x24,0x25,0x3f,0x20,0x40,0x00,0x00,0xbe,0xaa,0xbe,0xaa,0xaa,0xbe,0x80,0xaa,0xd5,0x92,0x4e,0xa1,0x19,0x07,0x00 -+// 39097 颹 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x24,0x24,0x25,0x27,0x58,0x40,0x00,0x08,0xbe,0x92,0xff,0xa2,0xbe,0x88,0xfe,0xa8,0xbe,0x88,0x48,0x21,0x99,0x07,0x00 -+// 39098 颺 ; -+,0x00,0x3f,0x20,0x3e,0x24,0x24,0x3f,0x24,0x24,0x3f,0x24,0x25,0x27,0x39,0x40,0x00,0x3e,0xa2,0xbe,0xa2,0xbe,0x80,0xff,0xa0,0xbf,0xd5,0xa9,0x55,0x42,0x31,0x0f,0x00 -+// 39099 颻 ; -+,0x07,0x78,0x11,0x49,0x2a,0x20,0x3e,0x48,0x08,0x7f,0x0a,0x2a,0x2e,0x31,0x02,0x00,0x00,0xfe,0x82,0xfa,0x92,0xfe,0x92,0x92,0xfe,0x92,0x9a,0x9b,0xe7,0x01,0x01,0x00 -+// 39100 颼 ; -+,0x00,0x3f,0x21,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x29,0x28,0x2a,0x2e,0x52,0x40,0x00,0x08,0x18,0x6b,0x49,0x6b,0x49,0x7f,0x00,0x3e,0x14,0x88,0xb4,0x41,0x31,0x0f,0x00 -+// 39101 颽 ; -+,0x08,0x2a,0x2a,0x3e,0x00,0x7e,0x00,0x3e,0x22,0x3e,0x22,0x14,0x07,0x79,0x02,0x00,0x00,0xfe,0x82,0xfa,0x92,0x92,0xfe,0xd2,0xfe,0x92,0x92,0x9b,0x7f,0x05,0x01,0x00 -+// 39102 颾 ; -+,0x00,0x3f,0x21,0x3f,0x29,0x3f,0x2b,0x2b,0x3f,0x29,0x28,0x2a,0x3f,0x41,0x40,0x00,0x00,0x7e,0x24,0x18,0x24,0xcb,0x3e,0x2a,0x3e,0x08,0xbe,0x82,0x41,0x31,0x0f,0x00 -+// 39103 颿 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0b,0x04,0x00,0x00,0xfe,0x82,0xfa,0x92,0xfe,0xd2,0xd2,0xfe,0x92,0x92,0x9b,0x9f,0x65,0x01,0x00 -+// 39104 飀 ; -+,0x00,0x3f,0x20,0x3e,0x24,0x24,0x3f,0x34,0x34,0x3f,0x24,0x25,0x27,0x58,0x40,0x00,0x10,0xaf,0xa5,0xb5,0xbd,0xab,0x80,0xbe,0xaa,0xbe,0xaa,0x7e,0xc1,0xb1,0x0f,0x00 -+// 39105 飁 ; -+,0x00,0x77,0x11,0x55,0x33,0x35,0x55,0x08,0x3e,0x22,0x3e,0x22,0x22,0x3f,0x22,0x00,0x00,0x7e,0x42,0x7a,0x52,0x7e,0x52,0x52,0x7e,0x52,0x52,0x9b,0x9d,0x65,0x01,0x00 -+// 39106 飂 ; -+,0x00,0x3f,0x21,0x3f,0x25,0x3f,0x35,0x35,0x35,0x3f,0x25,0x26,0x25,0x59,0x40,0x00,0x00,0xf7,0x55,0x33,0x35,0x51,0x10,0x2c,0xd3,0x68,0x34,0x88,0x51,0x31,0x0f,0x00 -+// 39107 飃 ; -+,0x00,0x3f,0x21,0x3d,0x29,0x3f,0x29,0x29,0x3f,0x29,0x29,0x2a,0x2e,0x52,0x40,0x00,0x00,0x7f,0x14,0x7f,0x55,0x7f,0x00,0x3c,0x00,0x7f,0x2a,0xd9,0x48,0x31,0x0f,0x00 -+// 39108 飄 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x7f,0x00,0x3e,0x00,0x7f,0x08,0x2a,0x4a,0x28,0x11,0x00,0x00,0x7e,0x42,0x7a,0x52,0x52,0x7e,0x56,0x56,0x7e,0x52,0x5b,0x9f,0xe5,0x01,0x00 -+// 39109 飅 ; -+,0x00,0x3f,0x21,0x3d,0x29,0x29,0x3f,0x29,0x29,0x3f,0x28,0x2a,0x3e,0x41,0x40,0x00,0x00,0x7f,0x14,0x77,0x55,0x77,0x14,0x3e,0x2a,0x3e,0xaa,0xbe,0x41,0x31,0x0f,0x00 -+// 39110 飆 ; -+,0x08,0x0a,0x7f,0x08,0x16,0x61,0x32,0x23,0x77,0x22,0x22,0x55,0x48,0x01,0x02,0x00,0x00,0xfe,0x82,0xfa,0x92,0x92,0xfe,0x92,0x92,0xfe,0x92,0x9b,0x9f,0x65,0x01,0x00 -+// 39111 飇 ; -+,0x00,0x3f,0x21,0x3d,0x29,0x3f,0x29,0x29,0x3f,0x29,0x28,0x2a,0x3f,0x41,0x40,0x00,0x10,0x14,0x7e,0x18,0x26,0xe4,0x36,0xff,0x24,0x5a,0xc9,0x90,0x41,0x31,0x0f,0x00 -+// 39112 飈 ; -+,0x00,0x3f,0x20,0x3e,0x24,0x24,0x3f,0x25,0x25,0x3f,0x24,0x24,0x27,0x59,0x40,0x00,0x08,0xaa,0x9c,0x88,0x94,0xe2,0xa4,0xb5,0xee,0xb6,0xc9,0x51,0x20,0x19,0x07,0x00 -+// 39113 飉 ; -+,0x00,0x3f,0x21,0x3d,0x29,0x29,0x3f,0x29,0x29,0x3f,0x28,0x2a,0x3f,0x20,0x40,0x00,0x10,0x7f,0x5a,0x24,0x7f,0xa4,0x3c,0x24,0x3c,0x2a,0xc9,0x98,0x41,0x31,0x0f,0x00 -+// 39114 飊 ; -+,0x08,0x4a,0x2a,0x0c,0x14,0x22,0x00,0x24,0x24,0x75,0x2e,0x24,0x36,0x4a,0x11,0x02,0x00,0xfe,0x82,0xfa,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x9a,0xfe,0x85,0x01,0x00 -+// 39115 飋 ; -+,0x00,0x3f,0x21,0x3d,0x29,0x3f,0x2b,0x2b,0x3f,0x29,0x28,0x2a,0x3f,0x41,0x40,0x00,0x00,0x77,0x22,0x77,0x22,0x77,0x00,0x20,0x6a,0xa9,0xa2,0x9e,0x41,0x31,0x0f,0x00 -+// 39116 飌 ; -+,0x22,0x7f,0x22,0x77,0x55,0x77,0x14,0x3f,0x64,0x3f,0x24,0x3f,0x24,0x3f,0x21,0x00,0x00,0xff,0x81,0xbd,0x89,0x89,0xbf,0xa9,0xa9,0xbf,0x89,0x89,0xbf,0x05,0x00,0x00 -+// 39117 飍 ; -+,0x0f,0x08,0x0f,0x0a,0x0b,0x10,0x17,0x3f,0x21,0x3d,0x29,0x3f,0x2b,0x1f,0x4b,0x3e,0xfc,0x04,0xf4,0xa4,0xe4,0x95,0xfb,0x3f,0x22,0x3e,0x2a,0x3e,0x2b,0x5f,0x8d,0x3a -+// 39118 风 ; -+,0x00,0x0f,0x08,0x08,0x0a,0x09,0x08,0x08,0x08,0x08,0x09,0x12,0x14,0x20,0x40,0x00,0x00,0xfc,0x04,0x24,0x34,0x24,0xa4,0x44,0x44,0xa4,0x35,0x15,0x13,0x03,0x01,0x00 -+// 39119 飏 ; -+,0x3f,0x21,0x21,0x23,0x33,0x2d,0x25,0x25,0x2d,0x2a,0x2a,0x32,0x20,0x40,0x40,0x00,0x7c,0x04,0x08,0x10,0x7e,0x2a,0x2a,0x4a,0x52,0xa2,0xca,0x85,0x41,0x31,0x0f,0x00 -+// 39120 飐 ; -+,0x00,0x1f,0x10,0x10,0x10,0x19,0x15,0x12,0x12,0x15,0x19,0x10,0x20,0x20,0x40,0x00,0x08,0x88,0x88,0x8f,0x88,0x88,0xbe,0xa2,0xa2,0xa2,0xbe,0x40,0x41,0x31,0x0f,0x00 -+// 39121 飑 ; -+,0x00,0x1f,0x11,0x11,0x11,0x11,0x1b,0x15,0x15,0x1b,0x13,0x10,0x20,0x20,0x40,0x00,0x20,0x20,0x3e,0x42,0xba,0x2a,0x2a,0x3a,0x26,0x20,0x22,0x9e,0x81,0x41,0x3f,0x00 -+// 39122 飒 ; -+,0x20,0x11,0x11,0x7f,0x01,0x45,0x25,0x29,0x29,0x27,0x19,0x62,0x02,0x04,0x08,0x00,0x00,0xfc,0x04,0x04,0x0c,0x94,0x54,0x24,0x34,0x54,0x8d,0x03,0x03,0x01,0x01,0x00 -+// 39123 飓 ; -+,0x00,0x3f,0x21,0x21,0x21,0x33,0x2d,0x25,0x25,0x2b,0x2a,0x30,0x20,0x20,0x40,0x00,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7f,0x94,0xa2,0x41,0x31,0x0f,0x00 -+// 39124 飔 ; -+,0x00,0x3f,0x21,0x3f,0x25,0x3f,0x25,0x3f,0x25,0x25,0x24,0x3f,0x21,0x40,0x00,0x00,0x00,0x7e,0x4a,0x4a,0x7e,0x4a,0x7e,0x10,0x2a,0x61,0xa4,0x9c,0x41,0x31,0x0f,0x00 -+// 39125 飕 ; -+,0x00,0x3e,0x22,0x22,0x22,0x26,0x36,0x2a,0x2a,0x2a,0x36,0x36,0x22,0x22,0x21,0x40,0x10,0xd6,0x92,0xd6,0x92,0x92,0xfe,0x10,0xfc,0x44,0x28,0x10,0x2d,0x45,0xff,0x00 -+// 39126 飖 ; -+,0x07,0x78,0x01,0x29,0x15,0x20,0x3e,0x48,0x08,0x7f,0x08,0x2a,0x2a,0x3e,0x22,0x00,0x00,0x7e,0x42,0xc2,0x46,0x66,0x5a,0x4a,0x5a,0x66,0x46,0x43,0x83,0x81,0x01,0x00 -+// 39127 飗 ; -+,0x00,0x3f,0x21,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x29,0x29,0x2a,0x3f,0x20,0x40,0x00,0x10,0x6f,0x49,0x59,0x6d,0x52,0x00,0x7e,0x4a,0x7e,0x4a,0xfe,0x81,0x61,0x1f,0x00 -+// 39128 飘 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x7f,0x00,0x3e,0x00,0x7f,0x08,0x2a,0x4a,0x28,0x11,0x00,0x00,0x7e,0x42,0x42,0x42,0x66,0x6a,0x52,0x5a,0x6a,0x66,0x43,0x83,0x81,0x01,0x00 -+// 39129 飙 ; -+,0x08,0x0c,0x0a,0x7f,0x08,0x14,0x13,0x61,0x12,0x1b,0x7f,0x12,0x12,0x2d,0x24,0x49,0x04,0x7e,0x44,0x44,0x44,0x4c,0x6c,0x54,0x54,0x54,0xec,0x6c,0x45,0x45,0x85,0x02 -+// 39130 飚 ; -+,0x00,0x3f,0x21,0x21,0x21,0x33,0x2d,0x25,0x25,0x2b,0x32,0x20,0x20,0x40,0x40,0x00,0x10,0x52,0x34,0x18,0x24,0x42,0x24,0xb5,0x6e,0x56,0x99,0x80,0x41,0x31,0x0e,0x00 -+// 39131 飛 ; -+,0x1f,0x00,0x00,0x02,0x1c,0x04,0x04,0x7f,0x04,0x04,0x04,0x08,0x08,0x10,0x20,0x00,0xf0,0x10,0x94,0x98,0x95,0x89,0x87,0xf0,0x90,0x94,0x98,0x96,0x88,0x89,0x87,0x80 -+// 39132 飜 ; -+,0x06,0x38,0x2a,0x1c,0x7f,0x1c,0x2a,0x48,0x3e,0x2a,0x3e,0x2a,0x2a,0x3f,0x22,0x00,0x00,0xfc,0x25,0xd6,0x55,0x55,0x53,0xfc,0x55,0x56,0x55,0x94,0x93,0x13,0x11,0x10 -+// 39133 飝 ; -+,0x3f,0x1c,0x04,0x7f,0x04,0x08,0x70,0x7e,0x23,0x2a,0x7f,0x2a,0x2b,0x2a,0x49,0x00,0xf4,0x98,0x8e,0xf3,0x94,0x9c,0x8a,0xfe,0x46,0x55,0xff,0x56,0x57,0xd5,0x93,0x10 -+// 39134 飞 ; -+,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x20,0x24,0x28,0x30,0x30,0x28,0x24,0x20,0x10,0x11,0x09,0x05,0x03,0x00 -+// 39135 食 ; -+,0x01,0x01,0x02,0x05,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x09,0x08,0x08,0x0a,0x0c,0x08,0x00,0x80,0x40,0x20,0x98,0xf6,0x10,0xf0,0x10,0xf0,0x08,0xd0,0x20,0x18,0x08,0x00 -+// 39136 飠 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x11,0x15,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 39137 飡 ; -+,0x00,0x40,0x20,0x09,0x0a,0x0d,0x11,0x11,0x11,0x61,0x21,0x21,0x21,0x21,0x01,0x01,0x40,0x40,0xa0,0x58,0x26,0xf8,0x08,0xf8,0x08,0xf8,0x44,0x28,0x10,0x4c,0x84,0x00 -+// 39138 飢 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x18,0x11,0x00,0x00,0x3c,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x45,0x45,0x85,0x07,0x00 -+// 39139 飣 ; -+,0x04,0x04,0x0a,0x19,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x19,0x10,0x00,0x00,0x00,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10,0x00 -+// 39140 飤 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x18,0x11,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x28,0x28,0x24,0x44,0x42,0x83,0x02,0x00 -+// 39141 飥 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x19,0x10,0x00,0x00,0x0e,0x70,0x10,0x10,0x10,0x1f,0xf0,0x10,0x10,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 39142 飦 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x19,0x10,0x00,0x00,0x7e,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 39143 飧 ; -+,0x08,0x08,0x10,0x1e,0x12,0x23,0x22,0x54,0x0c,0x04,0x08,0x08,0x10,0x20,0x40,0x00,0x20,0x20,0x50,0x6c,0x93,0xfc,0x84,0xfc,0x84,0xfc,0xa4,0x98,0xa8,0xc6,0x82,0x00 -+// 39144 飨 ; -+,0x08,0x08,0x10,0x14,0x25,0x7a,0x10,0x22,0x7e,0x04,0x04,0x08,0x08,0x10,0x60,0x00,0x20,0x20,0x50,0xcc,0x23,0xf8,0x88,0xf8,0x88,0xfa,0xa4,0x98,0xa8,0xc6,0x82,0x00 -+// 39145 飩 ; -+,0x08,0x08,0x14,0x12,0x21,0x7e,0x22,0x3e,0x22,0x3e,0x2a,0x24,0x2b,0x31,0x20,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 39146 飪 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x15,0x12,0x15,0x19,0x10,0x00,0x00,0x00,0x7e,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x7e,0x00,0x00 -+// 39147 飫 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5f,0x11,0x1f,0x11,0x1f,0x15,0x12,0x15,0x18,0x11,0x00,0x00,0x0e,0x70,0x10,0x90,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 39148 飬 ; -+,0x01,0x09,0x05,0x3f,0x02,0x3f,0x04,0x0f,0x34,0x47,0x04,0x07,0x04,0x05,0x06,0x04,0x00,0x10,0x20,0xf8,0x00,0xfe,0x90,0xf8,0x14,0xf3,0x10,0xf8,0x50,0x30,0x0c,0x00 -+// 39149 飭 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x14,0x12,0x15,0x18,0x11,0x00,0x20,0x20,0x20,0x7f,0x50,0x90,0x10,0x7e,0x12,0x12,0x22,0x22,0x42,0x8a,0x04,0x00 -+// 39150 飮 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x1e,0x10,0x1e,0x11,0x00,0x20,0x20,0x20,0x7f,0x42,0x94,0x10,0x10,0x10,0x28,0x28,0x44,0x44,0x83,0x02,0x00 -+// 39151 飯 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x14,0x12,0x15,0x18,0x11,0x00,0x00,0x0e,0x70,0x40,0x40,0x7e,0x42,0x42,0x64,0x54,0x48,0x48,0x94,0xa3,0x42,0x00 -+// 39152 飰 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x19,0x10,0x00,0x20,0x18,0x08,0x00,0x7f,0x10,0x10,0x18,0x14,0x13,0x11,0x10,0x10,0x10,0x10,0x10 -+// 39153 飱 ; -+,0x00,0x00,0x7f,0x10,0x10,0x1d,0x24,0x24,0x54,0x14,0x08,0x08,0x10,0x20,0x40,0x00,0x20,0x20,0x50,0x68,0x96,0xfc,0x84,0xfc,0x84,0xfe,0xa4,0x98,0x88,0xc6,0x82,0x00 -+// 39154 飲 ; -+,0x08,0x0c,0x0a,0x19,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x18,0x11,0x00,0x20,0x20,0x20,0x7f,0x42,0x94,0x10,0x10,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 39155 飳 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x18,0x10,0x00,0x20,0x10,0x10,0x7f,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 39156 飴 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x19,0x10,0x00,0x10,0x10,0x20,0x20,0x44,0x42,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39157 飵 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x19,0x10,0x00,0x20,0x20,0x20,0x7f,0x50,0x90,0x1e,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x10 -+// 39158 飶 ; -+,0x08,0x08,0x14,0x12,0x29,0x7e,0x22,0x3e,0x22,0x3e,0x29,0x24,0x2a,0x31,0x20,0x00,0x20,0x10,0x14,0x04,0x24,0x24,0x28,0xa8,0xb2,0xb1,0x21,0x60,0xa4,0x24,0x1c,0x00 -+// 39159 飷 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x18,0x11,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0xff,0x00 -+// 39160 飸 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x01,0x7f,0x10,0x10,0x3e,0x02,0x02,0x02,0x14,0x08,0x00,0x10,0x10,0x28,0x24,0x52,0xfd,0x44,0x7c,0x44,0x7c,0x51,0x4a,0x44,0x62,0x42,0x00 -+// 39161 飹 ; -+,0x08,0x08,0x14,0x1a,0x25,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0x20,0xcf,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xe9,0xab,0x28,0x48,0x48,0x88,0x08 -+// 39162 飺 ; -+,0x04,0x04,0x17,0x14,0x17,0x38,0x03,0x0c,0x77,0x04,0x04,0x07,0x04,0x04,0x06,0x04,0x20,0x26,0xb8,0x22,0x22,0x9e,0x60,0x18,0xf7,0x90,0x50,0xf8,0x90,0x60,0x30,0x10 -+// 39163 飻 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x18,0x13,0x00,0x00,0x10,0x10,0x28,0x44,0x93,0x20,0x40,0x08,0x10,0x62,0x04,0x18,0x60,0x80,0x00 -+// 39164 飼 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x10,0x12,0x15,0x19,0x10,0x00,0x00,0xfe,0x02,0x02,0x7a,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04,0x00 -+// 39165 飽 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x52,0x1e,0x12,0x1e,0x14,0x12,0x15,0x19,0x10,0x00,0x20,0x20,0x40,0x7e,0x82,0x7a,0x4a,0x4a,0x7a,0x42,0x4a,0x44,0x41,0x41,0x3f,0x00 -+// 39166 飾 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x14,0x12,0x15,0x19,0x10,0x00,0x20,0x20,0x40,0x7f,0x90,0x10,0x7e,0x52,0x52,0x52,0x52,0x56,0x52,0x10,0x10,0x10 -+// 39167 飿 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x14,0x12,0x15,0x19,0x10,0x00,0x08,0x08,0x4a,0x4a,0x4a,0x4a,0x7e,0x08,0x08,0x49,0x49,0x49,0x49,0x49,0x7f,0x00 -+// 39168 餀 ; -+,0x04,0x04,0x0a,0x19,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x10,0x14,0x16,0x18,0x13,0x00,0x48,0x48,0xff,0x48,0x48,0x00,0x84,0x44,0x48,0x28,0x10,0x30,0x48,0x87,0x02,0x00 -+// 39169 餁 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x53,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x20,0x20,0x5f,0x44,0x44,0xc4,0x44,0x7f,0x44,0x44,0x44,0x44,0x7f,0x40,0x40,0x00 -+// 39170 餂 ; -+,0x04,0x04,0x0a,0x19,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0x0e,0x70,0x10,0x10,0xff,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39171 餃 ; -+,0x08,0x08,0x14,0x12,0x20,0x7e,0x22,0x3f,0x22,0x3e,0x20,0x28,0x2c,0x34,0x23,0x00,0x20,0x10,0x10,0xff,0x48,0x44,0x82,0x8a,0x48,0x48,0x30,0x10,0x28,0xc7,0x02,0x00 -+// 39172 餄 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x53,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x20,0x20,0x30,0x48,0x47,0x82,0x7c,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 39173 餅 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x18,0x11,0x00,0x02,0x42,0x24,0x08,0x7f,0x24,0x24,0x24,0xff,0x24,0x24,0x44,0x44,0x84,0x04,0x04 -+// 39174 餆 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x10,0x14,0x16,0x1a,0x11,0x00,0x28,0x28,0x28,0x28,0x2a,0xaa,0x6c,0x28,0x6c,0xaa,0x28,0x49,0x49,0x89,0x07,0x00 -+// 39175 餇 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0xff,0x81,0x81,0xbd,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82 -+// 39176 餈 ; -+,0x20,0x10,0x05,0x08,0x32,0x13,0x05,0x18,0x6f,0x09,0x08,0x0f,0x08,0x08,0x0a,0x0c,0x80,0xfe,0x24,0x20,0x50,0x8c,0x60,0x98,0xf6,0x10,0x90,0xf8,0x90,0x60,0x30,0x10 -+// 39177 餉 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0x10,0x20,0xff,0x81,0x81,0xbd,0xa5,0xa5,0xbd,0xa5,0x81,0x81,0x85,0x82,0x00 -+// 39178 養 ; -+,0x02,0x1f,0x00,0x1f,0x01,0x7f,0x04,0x0f,0x34,0x07,0x04,0x07,0x04,0x05,0x06,0x04,0x20,0xfc,0x80,0xfc,0x00,0xff,0x90,0xf8,0x17,0xf0,0x10,0xf8,0x50,0x30,0x0c,0x04 -+// 39179 餋 ; -+,0x08,0x04,0x1f,0x01,0x3f,0x04,0x19,0x66,0x1f,0x05,0x04,0x07,0x04,0x05,0x06,0x04,0x88,0x90,0xfe,0x00,0xff,0x98,0x66,0x99,0xf6,0x10,0x90,0xf0,0x48,0x30,0x10,0x08 -+// 39180 餌 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x10,0x15,0x16,0x1a,0x10,0x00,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x44,0x47,0xfc,0x04,0x04,0x04,0x04 -+// 39181 餍 ; -+,0x3f,0x20,0x20,0x2f,0x21,0x26,0x39,0x26,0x2b,0x22,0x22,0x23,0x22,0x22,0x43,0x02,0xff,0x90,0x88,0xfe,0x10,0xcc,0xa3,0x58,0xf6,0x90,0x50,0xf4,0x28,0x90,0x0e,0x04 -+// 39182 餎 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x52,0x1e,0x13,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x20,0x20,0x7e,0x44,0xa8,0x10,0x28,0x47,0x82,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 39183 餏 ; -+,0x08,0x08,0x14,0x12,0x28,0x7e,0x22,0x3e,0x23,0x3e,0x28,0x24,0x2a,0x30,0x20,0x00,0x20,0x10,0x10,0xff,0x20,0x50,0x52,0xd4,0x48,0x48,0x44,0x44,0x53,0x62,0x40,0x00 -+// 39184 餐 ; -+,0x04,0x07,0x14,0x1f,0x2a,0x04,0x39,0x06,0x1f,0x65,0x04,0x07,0x04,0x05,0x06,0x04,0x00,0xbe,0x24,0x18,0x14,0xa2,0x60,0x98,0xf7,0x10,0x90,0xf4,0x48,0x30,0x18,0x08 -+// 39185 餑 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0x10,0x7e,0x10,0xff,0x82,0x00,0x7c,0x08,0x10,0xff,0x10,0x10,0x50,0x20,0x00 -+// 39186 餒 ; -+,0x08,0x09,0x14,0x12,0x28,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x24,0x26,0x3a,0x21,0x00,0x1e,0xe0,0x00,0x22,0x92,0x54,0x08,0x10,0xff,0x24,0x44,0x28,0x18,0x66,0x82,0x00 -+// 39187 餓 ; -+,0x08,0x08,0x15,0x12,0x28,0x45,0x1e,0x12,0x1e,0x13,0x1e,0x14,0x16,0x1a,0x10,0x00,0x08,0x38,0xcc,0x4a,0x48,0xff,0x48,0x4a,0x6a,0xc4,0x44,0x4d,0x55,0xc3,0x41,0x00 -+// 39188 餔 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0x92,0x96,0x00 -+// 39189 餕 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1f,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x20,0x20,0x48,0xfc,0x00,0x84,0x82,0x42,0x7c,0x44,0xa8,0x10,0x28,0x4e,0x84,0x00 -+// 39190 餖 ; -+,0x04,0x04,0x0a,0x19,0x14,0x3f,0x51,0x1f,0x11,0x1f,0x14,0x12,0x15,0x19,0x10,0x00,0x00,0xff,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00,0x42,0x22,0x24,0x08,0xff,0x00 -+// 39191 餗 ; -+,0x08,0x08,0x14,0x1a,0x25,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x10,0x38,0x54,0x54,0x93,0x12,0x10 -+// 39192 餘 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1b,0x10,0x00,0x10,0x10,0x28,0x44,0x83,0x7c,0x10,0x10,0xfe,0x10,0x54,0x52,0x92,0x50,0x20,0x00 -+// 39193 餙 ; -+,0x08,0x08,0x14,0x1a,0x25,0x5e,0x12,0x1e,0x12,0x1e,0x11,0x14,0x16,0x1a,0x10,0x00,0x44,0x28,0x18,0x66,0x10,0xff,0x10,0x28,0x7f,0xc9,0x49,0x49,0x4d,0x4a,0x08,0x08 -+// 39194 餚 ; -+,0x08,0x08,0x14,0x1b,0x24,0x5e,0x12,0x1e,0x12,0x1f,0x10,0x14,0x16,0x1a,0x10,0x00,0x02,0x64,0x18,0x64,0x10,0xff,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0x42,0x4a,0x44,0x00 -+// 39195 餛 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x08,0x88,0x8b,0xec,0x88,0x89,0xa9,0xc9,0x87,0x00 -+// 39196 餜 ; -+,0x08,0x08,0x14,0x1b,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x19,0x10,0x00,0x00,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x10,0xff,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 39197 餝 ; -+,0x08,0x08,0x15,0x1a,0x25,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x44,0x44,0xff,0x44,0x20,0x10,0xff,0x20,0x20,0x3c,0x24,0x44,0x44,0x94,0x08,0x00 -+// 39198 餞 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x50,0x48,0x3e,0xe0,0x2e,0x30,0xca,0x26,0x28,0x1f,0xf0,0x14,0x09,0x35,0xc3,0x00 -+// 39199 餟 ; -+,0x08,0x09,0x15,0x12,0x28,0x7e,0x23,0x3f,0x22,0x3f,0x28,0x24,0x2a,0x33,0x20,0x00,0x00,0xfe,0x32,0xcc,0x44,0xaa,0x10,0xff,0x31,0x2a,0xca,0x44,0xac,0x12,0x63,0x00 -+// 39200 餠 ; -+,0x08,0x08,0x14,0x12,0x29,0x7e,0x22,0x3e,0x23,0x3e,0x20,0x28,0x2c,0x34,0x21,0x00,0x00,0x42,0x42,0x84,0xef,0x44,0x44,0x44,0xef,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 39201 餡 ; -+,0x04,0x04,0x0a,0x19,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0x10,0x1f,0x22,0x44,0x00,0x10,0x67,0x41,0x41,0x77,0x41,0x41,0x7f,0x41,0x00 -+// 39202 餢 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x20,0x10,0xfe,0x00,0x44,0x28,0x10,0xff,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39203 餣 ; -+,0x04,0x04,0x0a,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0x10,0xff,0x10,0x28,0xd6,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x11,0x11,0x0f,0x00 -+// 39204 餤 ; -+,0x08,0x08,0x15,0x12,0x28,0x7e,0x23,0x3e,0x22,0x3e,0x20,0x29,0x2c,0x34,0x21,0x00,0x20,0x24,0x28,0xb0,0xa8,0x46,0x82,0x20,0x24,0xa8,0xb0,0x48,0x44,0x87,0x02,0x00 -+// 39205 餥 ; -+,0x02,0x1e,0x02,0x1e,0x02,0x3e,0x00,0x03,0x0c,0x77,0x04,0x07,0x04,0x05,0x06,0x04,0x20,0x3e,0x20,0x3c,0x20,0xbf,0xc0,0x20,0x98,0xf7,0x90,0xf4,0x48,0x30,0x08,0x04 -+// 39206 餦 ; -+,0x04,0x04,0x0a,0x09,0x14,0x7e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0x7e,0x40,0x7c,0x40,0x7c,0x40,0xff,0x60,0x52,0x4c,0x48,0x54,0x63,0x42,0x00 -+// 39207 餧 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x0c,0x70,0x10,0xfe,0x38,0x54,0x93,0x20,0x20,0xff,0x48,0xc8,0x30,0x2c,0xc4,0x00 -+// 39208 館 ; -+,0x04,0x04,0x0a,0x0a,0x15,0x3e,0x52,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x20,0x10,0xff,0x82,0x00,0x7c,0x44,0x44,0x7c,0x40,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 39209 餩 ; -+,0x08,0x08,0x14,0x12,0x28,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2d,0x34,0x20,0x00,0x10,0x10,0x28,0x44,0xa3,0x10,0xfe,0x20,0x48,0xf2,0x24,0x48,0x98,0x26,0xc2,0x00 -+// 39210 餪 ; -+,0x08,0x09,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x00,0xff,0x10,0xfe,0xaa,0xaa,0xaa,0x86,0x10,0x10,0xff,0x10,0x28,0x47,0x82,0x00 -+// 39211 餫 ; -+,0x08,0x09,0x15,0x12,0x28,0x7c,0x24,0x3c,0x24,0x3c,0x20,0x29,0x2c,0x34,0x20,0x00,0x00,0xff,0x12,0xfc,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39212 餬 ; -+,0x08,0x08,0x14,0x12,0x29,0x7c,0x24,0x3d,0x25,0x3d,0x21,0x28,0x2c,0x34,0x20,0x00,0x00,0x4f,0x49,0x49,0xef,0x49,0x49,0xe9,0x2f,0x29,0xe9,0x11,0x11,0x25,0x42,0x00 -+// 39213 餭 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 39214 餮 ; -+,0x00,0x3f,0x08,0x0e,0x12,0x2a,0x05,0x1b,0x64,0x1f,0x64,0x07,0x04,0x05,0x06,0x04,0x10,0x28,0xd4,0x2b,0x54,0x28,0x90,0x60,0x98,0xf7,0x90,0xf0,0x48,0x30,0x18,0x08 -+// 39215 餯 ; -+,0x08,0x08,0x14,0x1a,0x24,0x7e,0x22,0x3e,0x22,0x3e,0x21,0x28,0x2c,0x35,0x20,0x00,0x20,0x3e,0x44,0x7c,0x04,0xff,0x20,0x64,0x98,0x6c,0x94,0x2b,0x4a,0x88,0x28,0x10 -+// 39216 餰 ; -+,0x08,0x08,0x14,0x15,0x2a,0x7c,0x24,0x3d,0x26,0x3c,0x20,0x28,0x2c,0x34,0x20,0x00,0x00,0x80,0xaf,0x10,0x50,0x6f,0x92,0x82,0x92,0x92,0xe2,0xa2,0xa2,0xaa,0x84,0x00 -+// 39217 餱 ; -+,0x08,0x08,0x14,0x12,0x29,0x7e,0x24,0x3c,0x24,0x3c,0x20,0x28,0x2c,0x34,0x20,0x00,0x40,0x5c,0x84,0xff,0x80,0x90,0x9e,0xa8,0xc8,0xff,0x88,0x94,0x94,0xa3,0xc2,0x00 -+// 39218 餲 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1f,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x20,0x7f,0xd1,0x51,0x69,0x45,0x7f,0x01,0x05,0x02 -+// 39219 餳 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x40,0x7e,0xaa,0x2a,0x52,0x92,0x2a,0x44,0x00 -+// 39220 餴 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x10,0x10,0xfe,0x28,0x44,0x93,0x7c,0x10,0x54,0xff,0x44,0x44,0x84,0x84,0x04,0x04 -+// 39221 餵 ; -+,0x08,0x08,0x14,0x1b,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x00,0xff,0x51,0x4a,0x44,0x54,0x63,0x42,0x00 -+// 39222 餶 ; -+,0x04,0x04,0x0a,0x09,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x00,0x7c,0x44,0x74,0x54,0xff,0x82,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x54,0x48,0x00 -+// 39223 餷 ; -+,0x04,0x04,0x0a,0x19,0x14,0x3e,0x52,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x08,0x08,0xff,0x1c,0x2a,0xc9,0x08,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x00,0xff,0x00 -+// 39224 餸 ; -+,0x08,0x08,0x15,0x12,0x28,0x7c,0x25,0x3c,0x24,0x3c,0x20,0x28,0x2c,0x34,0x21,0x00,0x00,0x22,0x12,0x94,0xbf,0x08,0x88,0xff,0x88,0x88,0x94,0xa3,0x82,0xc0,0x3f,0x00 -+// 39225 餹 ; -+,0x08,0x08,0x14,0x12,0x28,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2d,0x35,0x22,0x00,0x20,0x10,0xff,0x90,0xfe,0x92,0xff,0x92,0xfe,0x90,0xfe,0xc2,0x42,0x42,0x7e,0x00 -+// 39226 餺 ; -+,0x08,0x09,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x11,0x14,0x16,0x1a,0x10,0x00,0x14,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x44,0x14,0x08,0x00 -+// 39227 餻 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x18,0x11,0x00,0x42,0x22,0x24,0xff,0x10,0x10,0x7e,0x10,0x10,0xff,0x00,0x00,0xaa,0x95,0x15,0x00 -+// 39228 餼 ; -+,0x08,0x08,0x14,0x12,0x29,0x7c,0x24,0x3d,0x24,0x3d,0x20,0x28,0x2d,0x34,0x20,0x00,0x40,0x7e,0x80,0xfe,0x00,0xfe,0x22,0x2a,0xb2,0xfa,0x62,0xb3,0x2b,0x21,0x21,0x00 -+// 39229 餽 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x18,0x13,0x00,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xfe,0x28,0x2a,0x2d,0x4f,0x48,0x89,0x07,0x00 -+// 39230 餾 ; -+,0x08,0x08,0x14,0x1a,0x24,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2c,0x34,0x20,0x00,0x30,0xcf,0x89,0xc9,0xa9,0xd5,0xa2,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82,0x00 -+// 39231 餿 ; -+,0x08,0x08,0x14,0x12,0x28,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2c,0x34,0x23,0x00,0x10,0x50,0x9e,0x92,0xde,0x92,0xfe,0x10,0x10,0xfe,0x44,0x28,0x30,0xcc,0x03,0x00 -+// 39232 饀 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x0e,0xf0,0x20,0x92,0x52,0x44,0x20,0xcf,0x81,0x81,0xef,0x81,0x81,0xff,0x81,0x00 -+// 39233 饁 ; -+,0x08,0x08,0x14,0x12,0x29,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2c,0x34,0x23,0x00,0x10,0x10,0xfe,0x10,0xff,0x20,0x44,0xfe,0x02,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 39234 饂 ; -+,0x08,0x08,0x14,0x12,0x29,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2c,0x34,0x21,0x00,0x00,0x7e,0x52,0x52,0x6a,0x46,0x7e,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 39235 饃 ; -+,0x08,0x08,0x15,0x12,0x28,0x7e,0x12,0x1e,0x12,0x1e,0x11,0x14,0x16,0x1a,0x11,0x00,0x44,0x44,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xff,0x10,0x28,0x44,0x83,0x00 -+// 39236 饄 ; -+,0x08,0x08,0x14,0x12,0x28,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2c,0x34,0x21,0x00,0x10,0x92,0x52,0x54,0xff,0x82,0x00,0x7c,0x44,0x7c,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 39237 饅 ; -+,0x08,0x08,0x14,0x1a,0x25,0x7e,0x22,0x3e,0x22,0x3e,0x20,0x28,0x2c,0x34,0x20,0x01,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0xa9,0xff,0x00,0xfe,0x44,0x28,0x18,0x67,0x82 -+// 39238 饆 ; -+,0x08,0x08,0x14,0x12,0x28,0x7e,0x22,0x3f,0x22,0x3f,0x20,0x29,0x2c,0x34,0x20,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x54,0xff,0x54,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39239 饇 ; -+,0x08,0x09,0x15,0x13,0x29,0x7d,0x25,0x3d,0x25,0x3d,0x21,0x29,0x2d,0x35,0x21,0x00,0x00,0xff,0x00,0x3e,0x22,0x3e,0x00,0x00,0x77,0x55,0x55,0x55,0x77,0x00,0xff,0x00 -+// 39240 饈 ; -+,0x08,0x08,0x15,0x12,0x28,0x7e,0x22,0x3f,0x22,0x3e,0x20,0x28,0x2d,0x36,0x21,0x00,0x84,0x48,0xfe,0x20,0x20,0xfc,0x20,0xff,0x40,0x7c,0x94,0xfc,0x24,0x24,0xff,0x00 -+// 39241 饉 ; -+,0x08,0x08,0x15,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x44,0x44,0xff,0x44,0x7c,0x10,0xfe,0x92,0xfe,0x10,0xfe,0x10,0xfe,0x10,0xff,0x00 -+// 39242 饊 ; -+,0x09,0x09,0x17,0x15,0x2b,0x7c,0x25,0x3d,0x25,0x3d,0x21,0x29,0x2d,0x35,0x21,0x00,0x48,0x48,0xe8,0x48,0xef,0x12,0xf2,0x2a,0xea,0x24,0xe4,0x24,0x2a,0x73,0x22,0x00 -+// 39243 饋 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0x7e,0x52,0x7e,0x10,0xff,0x00,0x7e,0x4a,0x66,0x52,0x7e,0x24,0x42,0x82,0x00 -+// 39244 饌 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x11,0x14,0x16,0x18,0x13,0x00,0x00,0xee,0xaa,0xee,0x89,0xef,0x00,0x44,0xff,0x44,0xff,0x00,0x44,0x83,0x01,0x00 -+// 39245 饍 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x84,0x48,0xfe,0x10,0x7c,0x10,0xfe,0x54,0x38,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00 -+// 39246 饎 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0xff,0x10,0x7e,0x00,0x7e,0x42,0x7e,0x24,0xff,0x00,0x7e,0x42,0x7e,0x42,0x00 -+// 39247 饏 ; -+,0x3f,0x02,0x7f,0x12,0x1e,0x13,0x7e,0x03,0x0c,0x37,0x04,0x04,0x07,0x04,0x06,0x04,0x20,0x20,0xbe,0x64,0x58,0x98,0xe6,0x60,0x98,0xf7,0x92,0x50,0xf8,0x50,0x20,0x18 -+// 39248 饐 ; -+,0x08,0x0c,0x12,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x18,0x16,0x1a,0x11,0x00,0x10,0x10,0xff,0x10,0x7e,0x00,0xff,0x82,0x7c,0x00,0x7c,0x44,0x7c,0x28,0xff,0x00 -+// 39249 饑 ; -+,0x08,0x08,0x14,0x15,0x2b,0x7d,0x27,0x3c,0x24,0x3f,0x20,0x29,0x2d,0x36,0x20,0x00,0x10,0x94,0x94,0x5a,0x9e,0x54,0xff,0x95,0x92,0xff,0x90,0x54,0x09,0x35,0xc3,0x00 -+// 39250 饒 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x18,0x16,0x1a,0x10,0x00,0x10,0x10,0x7e,0x10,0xff,0x44,0xee,0x44,0xff,0x00,0xff,0x28,0x49,0x49,0x87,0x00 -+// 39251 饓 ; -+,0x08,0x08,0x14,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x19,0x10,0x00,0x10,0x92,0x54,0xff,0x81,0x7c,0x44,0x7c,0x10,0xff,0x30,0x58,0x94,0x13,0x10,0x00 -+// 39252 饔 ; -+,0x00,0x7f,0x0c,0x11,0x3c,0x0a,0x3c,0x08,0x71,0x06,0x1f,0x64,0x07,0x04,0x07,0x04,0x80,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0xe0,0x9c,0xfb,0x88,0xfc,0x28,0x18,0x04 -+// 39253 饕 ; -+,0x1e,0x12,0x7f,0x08,0x0e,0x02,0x0e,0x03,0x0c,0x77,0x04,0x07,0x04,0x05,0x06,0x04,0x10,0x1c,0xff,0x92,0xfc,0x9c,0xa5,0x67,0x98,0xf7,0x90,0xf0,0x48,0x30,0x18,0x08 -+// 39254 饖 ; -+,0x08,0x08,0x14,0x1a,0x29,0x7c,0x25,0x3d,0x25,0x3d,0x21,0x29,0x2d,0x32,0x25,0x00,0x10,0x50,0x5e,0x50,0xff,0x0a,0xff,0x08,0xf9,0x2a,0xaa,0x34,0x2d,0x53,0xa1,0x00 -+// 39255 饗 ; -+,0x08,0x11,0x3d,0x09,0x3d,0x05,0x19,0x63,0x0c,0x77,0x05,0x04,0x07,0x05,0x06,0x04,0x8f,0xe9,0xaa,0x6a,0xe9,0x4d,0xaa,0x68,0x98,0xe7,0x20,0xa0,0xe8,0x50,0x20,0x18 -+// 39256 饘 ; -+,0x08,0x08,0x15,0x1a,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x18,0x11,0x00,0x20,0x10,0xff,0x00,0xfe,0xaa,0xba,0x82,0xfe,0x00,0x7c,0x44,0x7c,0x44,0xff,0x00 -+// 39257 饙 ; -+,0x08,0x08,0x14,0x1a,0x25,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x10,0x00,0x10,0xff,0x10,0x44,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82,0x00 -+// 39258 饚 ; -+,0x08,0x0d,0x12,0x19,0x24,0x5e,0x12,0x1e,0x12,0x1e,0x10,0x14,0x16,0x1a,0x11,0x00,0x44,0xff,0x44,0x10,0x7e,0x10,0xff,0x24,0x7e,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 39259 饛 ; -+,0x08,0x09,0x14,0x13,0x29,0x7c,0x24,0x3d,0x24,0x3d,0x28,0x25,0x2c,0x33,0x20,0x00,0x48,0xff,0x48,0xff,0x02,0x78,0x00,0xfe,0x40,0xa4,0x58,0xb4,0x53,0x92,0x50,0x20 -+// 39260 饜 ; -+,0x3f,0x29,0x2f,0x20,0x2f,0x29,0x2f,0x29,0x21,0x27,0x3a,0x22,0x23,0x42,0x43,0x02,0xff,0x18,0x14,0x7f,0x28,0x24,0x42,0xa0,0x58,0xfc,0x4b,0x28,0xfc,0xa8,0x10,0x08 -+// 39261 饝 ; -+,0x08,0x09,0x15,0x13,0x29,0x7d,0x25,0x3d,0x25,0x3d,0x29,0x25,0x2d,0x31,0x22,0x00,0x10,0xff,0x24,0x24,0xff,0x6e,0xb5,0x24,0xff,0x10,0x20,0x7e,0xa2,0x22,0x3e,0x00 -+// 39262 饞 ; -+,0x08,0x08,0x15,0x12,0x28,0x7c,0x24,0x3c,0x24,0x3c,0x21,0x20,0x28,0x34,0x20,0x03,0x7c,0x88,0xfe,0x82,0xfe,0x8c,0xe9,0x8f,0x78,0x90,0xfe,0xa2,0xfe,0x49,0x89,0x07 -+// 39263 饟 ; -+,0x08,0x09,0x14,0x12,0x28,0x7c,0x24,0x3c,0x24,0x3d,0x28,0x24,0x2d,0x32,0x20,0x00,0x10,0xff,0xaa,0xee,0x24,0xfe,0x24,0xfe,0x24,0xff,0x60,0xd4,0x48,0x64,0x43,0x00 -+// 39264 饠 ; -+,0x09,0x09,0x15,0x13,0x28,0x7c,0x25,0x3f,0x24,0x3d,0x23,0x30,0x2b,0x32,0x20,0x00,0xfe,0x4a,0x4a,0xfe,0x08,0x94,0x5f,0xb4,0x9e,0x54,0xde,0x14,0x54,0xbf,0x10,0x00 -+// 39265 饡 ; -+,0x08,0x09,0x15,0x13,0x28,0x7c,0x25,0x3c,0x24,0x3c,0x20,0x20,0x28,0x2c,0x34,0x20,0x44,0xff,0x54,0xff,0xca,0xeb,0x52,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82 -+// 39266 饢 ; -+,0x08,0x0b,0x15,0x13,0x28,0x7f,0x25,0x3d,0x24,0x3d,0x20,0x2b,0x2d,0x32,0x2c,0x00,0x20,0xfe,0x24,0xfc,0x20,0xff,0x55,0xdc,0x88,0xfc,0x88,0xfe,0x94,0xa8,0xc4,0x82 -+// 39267 饣 ; -+,0x08,0x08,0x08,0x1f,0x10,0x21,0x28,0x48,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x00,0x00,0xc0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 39268 饤 ; -+,0x10,0x10,0x10,0x3f,0x22,0x44,0x08,0x08,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x20,0x00 -+// 39269 饥 ; -+,0x10,0x10,0x10,0x3f,0x22,0x24,0x50,0x10,0x10,0x10,0x10,0x12,0x14,0x19,0x12,0x00,0x00,0x78,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x89,0x89,0x09,0x07,0x00 -+// 39270 饦 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x40,0x0b,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0x3f,0xe0,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 39271 饧 ; -+,0x10,0x11,0x10,0x1f,0x22,0x24,0x49,0x08,0x08,0x08,0x08,0x0b,0x0c,0x08,0x03,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0xfe,0x2a,0x4a,0x4a,0x92,0x12,0x22,0xca,0x04,0x00 -+// 39272 饨 ; -+,0x10,0x10,0x10,0x10,0x1f,0x22,0x24,0x40,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 39273 饩 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x49,0x08,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x20,0x20,0x7f,0x40,0x80,0xbc,0x00,0xfc,0x04,0x04,0x04,0x05,0x05,0x03,0x01,0x00 -+// 39274 饪 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x40,0x09,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x00,0x0e,0xf0,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xfe,0x00,0x00 -+// 39275 饫 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x41,0x08,0x08,0x08,0x08,0x08,0x0a,0x0d,0x0a,0x00,0x00,0x1e,0xe0,0x20,0x20,0x20,0xff,0x20,0x20,0x50,0x48,0x88,0x84,0x03,0x02,0x00 -+// 39276 饬 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x49,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x09,0x00,0x20,0x20,0x20,0x7f,0x40,0xa0,0x20,0xfe,0x22,0x22,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 39277 饭 ; -+,0x00,0x10,0x10,0x1f,0x22,0x24,0x40,0x08,0x08,0x08,0x08,0x08,0x0b,0x0d,0x0a,0x00,0x00,0x0e,0xf0,0x80,0x80,0x80,0xfe,0xc2,0xa4,0xa4,0x98,0x90,0x28,0x47,0x82,0x00 -+// 39278 饮 ; -+,0x10,0x10,0x10,0x1e,0x22,0x25,0x4a,0x08,0x08,0x08,0x08,0x08,0x0a,0x0d,0x0a,0x00,0x40,0x40,0x40,0xff,0x82,0x24,0x20,0x20,0x20,0x50,0x50,0x88,0x84,0x07,0x02,0x00 -+// 39279 饯 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x40,0x09,0x08,0x08,0x08,0x09,0x0a,0x0c,0x0b,0x00,0x20,0x28,0x24,0x20,0xfe,0x20,0x20,0xff,0x20,0x22,0x14,0x19,0x29,0xc5,0x03,0x00 -+// 39280 饰 ; -+,0x10,0x10,0x10,0x1e,0x22,0x25,0x51,0x12,0x10,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x40,0x40,0x40,0xff,0x90,0x10,0xfe,0x92,0x92,0x92,0x92,0x92,0x96,0x10,0x10,0x10 -+// 39281 饱 ; -+,0x08,0x08,0x10,0x1f,0x12,0x25,0x28,0x48,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x40,0x40,0x40,0x7e,0x82,0x02,0xf2,0x92,0x92,0xf2,0x86,0x80,0x81,0x81,0x7f,0x00 -+// 39282 饲 ; -+,0x08,0x08,0x10,0x1f,0x22,0x24,0x40,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x00,0xfe,0x02,0x02,0x7a,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 39283 饳 ; -+,0x10,0x10,0x10,0x3f,0x22,0x44,0x10,0x10,0x10,0x10,0x11,0x11,0x15,0x19,0x11,0x00,0x10,0x10,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x11,0xff,0x01,0x00 -+// 39284 饴 ; -+,0x08,0x08,0x10,0x1f,0x22,0x24,0x40,0x08,0x08,0x08,0x08,0x08,0x0a,0x0c,0x08,0x00,0x10,0x10,0x20,0x24,0x42,0xff,0x01,0x00,0xfe,0x82,0x82,0x82,0x82,0xfe,0x82,0x00 -+// 39285 饵 ; -+,0x10,0x11,0x10,0x1f,0x22,0x24,0x48,0x08,0x08,0x08,0x09,0x0a,0x0c,0x08,0x00,0x00,0x00,0xff,0x84,0x84,0xfc,0x84,0x84,0xfc,0x84,0x87,0xfc,0x04,0x04,0x04,0x04,0x00 -+// 39286 饶 ; -+,0x10,0x10,0x10,0x1e,0x22,0x24,0x40,0x10,0x11,0x10,0x10,0x10,0x14,0x19,0x12,0x00,0x20,0x20,0xff,0x10,0x14,0x09,0x35,0xc3,0xfe,0x50,0x50,0x90,0x91,0x11,0x0f,0x00 -+// 39287 饷 ; -+,0x10,0x10,0x10,0x1e,0x24,0x28,0x50,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x10,0x10,0x20,0xff,0x81,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x85,0x82,0x00 -+// 39288 饸 ; -+,0x10,0x10,0x10,0x1f,0x22,0x25,0x42,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0x20,0x50,0x48,0x84,0x03,0xfc,0x00,0x00,0xfc,0x84,0x84,0x84,0x84,0xfc,0x84 -+// 39289 饹 ; -+,0x10,0x10,0x10,0x1e,0x24,0x29,0x40,0x10,0x11,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0x20,0x7e,0x42,0xc4,0x28,0x10,0x2c,0xc3,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 39290 饺 ; -+,0x10,0x10,0x11,0x3e,0x22,0x44,0x01,0x11,0x12,0x10,0x10,0x12,0x14,0x19,0x16,0x00,0x20,0x10,0xff,0x00,0x88,0x84,0x02,0x0a,0x88,0x48,0x30,0x30,0x48,0x84,0x03,0x00 -+// 39291 饻 ; -+,0x10,0x10,0x10,0x1e,0x22,0x24,0x50,0x10,0x11,0x12,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0x10,0x10,0xff,0x40,0x40,0xa2,0xa4,0x98,0x90,0x88,0x84,0xa7,0xc2,0x80,0x00 -+// 39292 饼 ; -+,0x10,0x10,0x10,0x1e,0x22,0x24,0x50,0x10,0x11,0x10,0x10,0x12,0x14,0x18,0x11,0x00,0x82,0x42,0x24,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 39293 饽 ; -+,0x10,0x10,0x10,0x1e,0x22,0x25,0x41,0x10,0x10,0x10,0x11,0x10,0x14,0x18,0x10,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x02,0x7c,0x08,0x10,0xff,0x10,0x10,0x50,0x20,0x00 -+// 39294 饾 ; -+,0x10,0x11,0x10,0x1f,0x22,0x24,0x40,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x13,0x00,0x00,0xff,0x00,0x00,0xfe,0x82,0x82,0x82,0xfe,0x00,0x84,0x44,0x48,0x10,0xff,0x00 -+// 39295 饿 ; -+,0x10,0x11,0x10,0x1e,0x23,0x24,0x50,0x10,0x10,0x11,0x10,0x10,0x14,0x19,0x10,0x00,0x38,0xcc,0x4a,0x48,0xff,0x48,0x48,0x6a,0xca,0x4c,0x48,0x55,0x65,0x43,0x81,0x00 -+// 39296 馀 ; -+,0x10,0x10,0x10,0x1f,0x22,0x25,0x52,0x10,0x13,0x10,0x10,0x12,0x15,0x1a,0x10,0x00,0x20,0x20,0x50,0x48,0x87,0xfa,0x20,0x20,0xfe,0x20,0xa8,0xa4,0x22,0x22,0xa0,0x40 -+// 39297 馁 ; -+,0x10,0x11,0x10,0x1f,0x22,0x24,0x48,0x08,0x0b,0x08,0x08,0x0a,0x0c,0x08,0x03,0x00,0x00,0xfe,0x20,0x12,0x94,0x48,0x20,0x20,0xff,0x44,0xc8,0x30,0x28,0xc6,0x02,0x00 -+// 39298 馂 ; -+,0x10,0x10,0x10,0x1e,0x22,0x24,0x50,0x11,0x12,0x10,0x11,0x10,0x14,0x18,0x13,0x00,0x20,0x20,0x48,0x44,0xfe,0x08,0x84,0x42,0x7d,0xc4,0x48,0x28,0x10,0x68,0x87,0x00 -+// 39299 馃 ; -+,0x10,0x11,0x11,0x1f,0x23,0x25,0x51,0x10,0x13,0x10,0x10,0x12,0x14,0x19,0x12,0x00,0x00,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x20,0xff,0x20,0x70,0xa8,0xa4,0x23,0x20,0x20 -+// 39300 馄 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x40,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0x88,0x8b,0xec,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 39301 馅 ; -+,0x10,0x10,0x10,0x1f,0x22,0x24,0x51,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0x20,0x3e,0x42,0x44,0x88,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0x82,0xfe,0x00 -+// 39302 馆 ; -+,0x10,0x10,0x10,0x3e,0x22,0x24,0x50,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0x10,0x10,0xff,0x82,0x7c,0x44,0x44,0x7c,0x40,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 39303 馇 ; -+,0x10,0x10,0x11,0x1e,0x22,0x24,0x53,0x10,0x10,0x10,0x10,0x10,0x14,0x18,0x13,0x00,0x20,0x20,0xfe,0x20,0x70,0xac,0x23,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x00,0xff,0x00 -+// 39304 馈 ; -+,0x10,0x10,0x10,0x1e,0x22,0x25,0x40,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x13,0x00,0x10,0xfe,0x92,0xfe,0x10,0xff,0x00,0xfe,0x82,0x92,0x92,0x92,0x28,0xc6,0x02,0x00 -+// 39305 馉 ; -+,0x10,0x10,0x10,0x1e,0x22,0x25,0x41,0x10,0x10,0x10,0x10,0x10,0x14,0x18,0x10,0x00,0x00,0xfc,0x84,0xf4,0x94,0xff,0x02,0xfc,0x84,0xfc,0x84,0xfc,0x84,0x94,0x88,0x00 -+// 39306 馊 ; -+,0x10,0x11,0x11,0x1f,0x23,0x25,0x51,0x10,0x10,0x11,0x10,0x12,0x14,0x18,0x17,0x00,0x30,0xde,0x12,0x12,0xde,0x12,0xfe,0x10,0x10,0xfe,0x84,0x48,0x30,0xcc,0x03,0x00 -+// 39307 馋 ; -+,0x10,0x10,0x10,0x1e,0x23,0x24,0x50,0x10,0x10,0x10,0x11,0x10,0x14,0x18,0x10,0x00,0x40,0x40,0xfc,0x88,0xfe,0x92,0x92,0xfe,0x29,0x49,0xa7,0x18,0x48,0x20,0x18,0x08 -+// 39308 馌 ; -+,0x10,0x10,0x10,0x1e,0x22,0x24,0x40,0x10,0x10,0x10,0x10,0x12,0x14,0x18,0x13,0x00,0x10,0x10,0x7e,0x10,0xff,0x20,0x44,0xfe,0x02,0x00,0xfe,0xaa,0xaa,0xaa,0xff,0x00 -+// 39309 馍 ; -+,0x10,0x11,0x10,0x1f,0x22,0x24,0x50,0x10,0x10,0x10,0x11,0x10,0x14,0x18,0x13,0x00,0x48,0xff,0x48,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0xff,0x30,0x48,0x84,0x03,0x00 -+// 39310 馎 ; -+,0x10,0x10,0x11,0x1e,0x22,0x24,0x40,0x10,0x10,0x10,0x10,0x11,0x10,0x14,0x18,0x10,0x14,0x12,0xff,0x10,0xfe,0x92,0x9e,0xf2,0x92,0x96,0x04,0xff,0x44,0x24,0x04,0x0c -+// 39311 馏 ; -+,0x10,0x11,0x11,0x1f,0x25,0x29,0x41,0x11,0x10,0x10,0x10,0x12,0x14,0x18,0x10,0x00,0x20,0xdf,0x09,0x49,0x29,0x49,0x95,0x22,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 39312 馐 ; -+,0x10,0x10,0x11,0x1e,0x22,0x24,0x53,0x10,0x10,0x10,0x10,0x11,0x15,0x1a,0x15,0x00,0x84,0x48,0xfe,0x20,0xfc,0x20,0xff,0x40,0x7c,0x94,0x94,0x7c,0x24,0x24,0xff,0x00 -+// 39313 馑 ; -+,0x10,0x10,0x13,0x1e,0x22,0x24,0x41,0x11,0x11,0x10,0x11,0x10,0x15,0x18,0x13,0x00,0x88,0x88,0xff,0x88,0xf8,0x20,0xfc,0x24,0xfc,0x20,0xfc,0x20,0xfc,0x20,0xff,0x00 -+// 39314 馒 ; -+,0x10,0x10,0x10,0x1e,0x22,0x24,0x41,0x11,0x11,0x10,0x10,0x10,0x14,0x18,0x11,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xfe,0x4a,0xfe,0x00,0xfc,0x48,0x30,0x48,0x87,0x00 -+// 39315 馓 ; -+,0x11,0x11,0x23,0x3d,0x27,0x48,0x13,0x12,0x13,0x12,0x13,0x12,0x16,0x1a,0x12,0x00,0x48,0x48,0xe8,0x4f,0xea,0x12,0xf2,0x52,0xca,0x4a,0xc4,0x44,0x4a,0xd3,0x62,0x00 -+// 39316 馔 ; -+,0x10,0x11,0x21,0x3d,0x25,0x49,0x01,0x10,0x11,0x10,0x13,0x10,0x14,0x19,0x12,0x00,0x00,0xde,0x52,0xde,0x10,0x51,0xdf,0x88,0xfe,0x88,0xff,0x00,0x88,0x06,0x02,0x00 -+// 39317 馕 ; -+,0x10,0x13,0x11,0x1d,0x24,0x2f,0x45,0x11,0x10,0x11,0x10,0x11,0x14,0x19,0x16,0x00,0x20,0xff,0x24,0xfc,0x20,0xff,0x55,0xdc,0x48,0xfe,0x48,0xff,0xca,0x44,0x62,0x42 -+// 39318 首 ; -+,0x04,0x02,0x7f,0x00,0x01,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x00,0x08,0x10,0xff,0x80,0x00,0xf8,0x08,0x08,0xf8,0x08,0xf8,0x08,0x08,0xf8,0x08,0x00 -+// 39319 馗 ; -+,0x10,0x10,0x10,0x11,0x7e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x41,0x00,0x84,0x44,0x28,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x84,0xfc,0x01,0x01,0xff,0x00 -+// 39320 馘 ; -+,0x42,0x22,0x24,0x7f,0x08,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x23,0x22,0x3e,0x00,0x00,0x08,0x0c,0x0a,0x7f,0x08,0xe9,0xa9,0xaa,0xea,0x04,0x64,0x8c,0x15,0x23,0x41,0x00 -+// 39321 香 ; -+,0x00,0x1f,0x00,0x7f,0x01,0x02,0x04,0x18,0x67,0x04,0x04,0x07,0x04,0x04,0x07,0x00,0xf8,0x80,0x80,0xff,0xc0,0xa0,0x98,0x87,0xfa,0x08,0x08,0xf8,0x08,0x08,0xf8,0x00 -+// 39322 馚 ; -+,0x00,0x3f,0x08,0x7f,0x1c,0x2a,0x2a,0x48,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x23,0x00,0x08,0x08,0x28,0x24,0x44,0x42,0x81,0x7c,0x24,0x24,0x24,0x44,0x44,0x94,0x08,0x00 -+// 39323 馛 ; -+,0x03,0x1c,0x04,0x3f,0x0c,0x16,0x15,0x24,0x1f,0x11,0x1f,0x11,0x11,0x1f,0x11,0x00,0x10,0x14,0x12,0x7f,0x10,0x10,0x1e,0x12,0x22,0x32,0x2c,0x44,0x4c,0x93,0x62,0x00 -+// 39324 馜 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x48,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x22,0x00,0x00,0x7e,0x42,0x42,0x7e,0x40,0x50,0x56,0x58,0x50,0x90,0x91,0x91,0x11,0x0f,0x00 -+// 39325 馝 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x28,0x48,0x3e,0x23,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0x22,0x12,0x12,0x24,0x24,0x24,0xaa,0xa9,0x31,0x30,0x22,0x62,0x9e,0x00,0x00 -+// 39326 馞 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x28,0x48,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x7e,0x10,0xff,0x82,0x00,0x7c,0x08,0x10,0xff,0x10,0x10,0x50,0x20,0x00 -+// 39327 馟 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x29,0x48,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x0e,0xf0,0x11,0x49,0x2a,0x00,0x7e,0x04,0x08,0xff,0x08,0x08,0x08,0x28,0x10,0x00 -+// 39328 馠 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x28,0x48,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0x28,0x24,0x53,0x88,0x7e,0x04,0x08,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39329 馡 ; -+,0x06,0x38,0x08,0x7e,0x1c,0x2a,0x48,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x28,0x28,0x28,0xef,0x28,0x28,0xef,0x28,0x28,0x28,0xef,0x28,0x28,0x28,0x28,0x00 -+// 39330 馢 ; -+,0x06,0x38,0x08,0x7e,0x1c,0x2a,0x28,0x48,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x20,0x28,0x24,0xfe,0x14,0x19,0xe9,0x05,0x2b,0x24,0xfe,0x14,0x18,0x29,0xc7,0x01 -+// 39331 馣 ; -+,0x06,0x38,0x08,0x7e,0x0c,0x1a,0x28,0x48,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0x10,0xff,0x10,0x28,0xc6,0x20,0xfc,0xa4,0xfc,0xa4,0xfc,0x21,0x21,0x1f,0x00 -+// 39332 馤 ; -+,0x06,0x38,0x08,0x7e,0x1c,0x2a,0x48,0x3e,0x22,0x23,0x3e,0x22,0x22,0x3e,0x22,0x00,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x20,0x7e,0x92,0x92,0xaa,0xc6,0xfe,0x02,0x0a,0x04 -+// 39333 馥 ; -+,0x06,0x38,0x08,0x7e,0x1c,0x2a,0x48,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x40,0x7f,0x80,0x7e,0x42,0x7e,0x42,0x7e,0x20,0x3e,0x62,0x94,0x18,0x24,0xc3,0x00 -+// 39334 馦 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x49,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3f,0x22,0x00,0x42,0x24,0xff,0x28,0xfe,0x2a,0xff,0x2a,0xfe,0x28,0x6c,0xac,0xab,0x2a,0x28,0x00 -+// 39335 馧 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x48,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x23,0x00,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 39336 馨 ; -+,0x04,0x3f,0x04,0x1f,0x24,0x3f,0x20,0x2f,0x40,0x1f,0x02,0x0c,0x37,0x04,0x04,0x07,0x3c,0xa4,0x27,0x40,0xbe,0x94,0x08,0xf7,0x80,0xfc,0xa0,0x98,0xfe,0x88,0x48,0xf8 -+// 39337 馩 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x48,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0xff,0x10,0x44,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x82,0x00 -+// 39338 馪 ; -+,0x06,0x38,0x08,0x7e,0x1c,0x2a,0x48,0x3f,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x00,0x10,0xff,0x82,0x7c,0x52,0x9c,0x30,0xfe,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x42 -+// 39339 馫 ; -+,0x0f,0x00,0x7f,0x04,0x0f,0x35,0x04,0x1f,0x04,0x7f,0x0e,0x15,0x3f,0x15,0x13,0x1f,0xf8,0x80,0xff,0x90,0xf8,0x16,0x90,0xf0,0x3c,0x08,0x7f,0x2a,0x7f,0x2a,0x26,0x3e -+// 39340 馬 ; -+,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x14,0x12,0x22,0x00,0x00,0x00,0xfe,0x40,0xfc,0x40,0xfc,0x40,0x40,0xfe,0x02,0x02,0x92,0x4a,0x42,0x0a,0x04 -+// 39341 馭 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0x00,0xfe,0x42,0x42,0x44,0x24,0x24,0x28,0x10,0x10,0x28,0x44,0x87,0x02,0x00 -+// 39342 馮 ; -+,0x00,0x43,0x22,0x13,0x02,0x0b,0x0a,0x0a,0x13,0x10,0x73,0x12,0x14,0x10,0x10,0x00,0x00,0xfe,0x20,0xfc,0x20,0xfc,0x20,0x20,0xff,0x01,0x51,0xa9,0xa9,0x05,0x02,0x00 -+// 39343 馯 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x00,0x2a,0x55,0x55,0x00,0x02,0x01,0x00,0x7e,0x10,0x10,0x10,0x10,0xff,0x10,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x10 -+// 39344 馰 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x00,0x55,0x55,0x00,0x00,0x02,0x01,0x10,0x90,0x10,0x3f,0x21,0x41,0x01,0x11,0xc9,0x49,0x41,0x41,0x41,0x41,0x85,0x02 -+// 39345 馱 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x00,0x00,0x55,0x55,0x00,0x02,0x01,0x10,0x90,0x10,0x10,0x10,0x7f,0x10,0x10,0x90,0xa8,0xa8,0xa4,0xc4,0xc3,0x82,0x00 -+// 39346 馲 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x00,0x55,0x55,0x00,0x02,0x01,0x00,0x00,0x0e,0x70,0x10,0x10,0x10,0x1f,0xf0,0x90,0x90,0x90,0x91,0x91,0x91,0x0f,0x00 -+// 39347 馳 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x10,0x90,0x50,0x52,0x5e,0x72,0xd2,0x52,0x52,0x56,0x50,0x51,0x41,0x41,0x3f,0x00 -+// 39348 馴 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x3f,0x01,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x02,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x82,0x82,0x02,0x00 -+// 39349 馵 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x21,0x02,0x02,0x3f,0x02,0x04,0x04,0x08,0xfe,0x40,0xfc,0x40,0xfc,0x40,0xff,0x49,0x25,0x13,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39350 馶 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x42,0x24,0x24,0x18,0x10,0x28,0x47,0x82,0x00 -+// 39351 馷 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x3f,0x01,0x55,0x55,0x01,0x01,0x1a,0x04,0x00,0x08,0x08,0x7f,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x49,0x4d,0x4a,0x08,0x08,0x08 -+// 39352 馸 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x0e,0x70,0x40,0x40,0x40,0x7f,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04,0x04 -+// 39353 馹 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39354 馺 ; -+,0x00,0x7e,0x48,0x7e,0x48,0x7e,0x48,0x7e,0x02,0x02,0x56,0x56,0x03,0x0a,0x05,0x00,0x00,0xfc,0x44,0x48,0x48,0x5e,0x42,0x42,0x64,0x54,0x88,0x98,0x24,0x47,0x82,0x00 -+// 39355 馻 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x10,0x20,0x24,0x42,0xff,0x01,0x24,0x24,0x24,0x24,0x45,0x45,0x85,0x03,0x00 -+// 39356 馼 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x1a,0x04,0x00,0x20,0x10,0x10,0xff,0x04,0x44,0x44,0x28,0x28,0x10,0x10,0x28,0x24,0x47,0x82,0x00 -+// 39357 馽 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0x1f,0x10,0x10,0x1f,0x00,0x00,0xfc,0x80,0xf8,0x80,0xf8,0x80,0xfe,0x92,0x4a,0x86,0xfc,0x84,0x84,0xfc,0x80,0x80 -+// 39358 馾 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x3f,0x01,0x55,0x55,0x01,0x01,0x0a,0x05,0x00,0x10,0x10,0x10,0xff,0x92,0x94,0x10,0x18,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 39359 馿 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x08,0x08,0x7f,0x41,0x41,0x7f,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x00,0x00 -+// 39360 駀 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x20,0x28,0x24,0x20,0xff,0x28,0x28,0x28,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 39361 駁 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x24,0x3e,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x00,0x04,0x48,0x30,0x28,0xc6,0x00,0x44,0x44,0x28,0x28,0x10,0x28,0x47,0x82,0x00 -+// 39362 駂 ; -+,0x00,0x20,0x26,0x38,0x21,0x3f,0x00,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x7f,0x48,0x7e,0x48,0x48,0x7e,0x48,0x7f,0x01,0xad,0xab,0x01,0x05,0x02,0x00 -+// 39363 駃 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x03,0x00,0x20,0x20,0x20,0x7c,0x24,0x24,0x24,0xff,0x20,0x20,0x30,0x48,0x44,0x87,0x02,0x00 -+// 39364 駄 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x28,0x28,0x24,0x64,0x52,0x93,0x02,0x00 -+// 39365 駅 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x50,0x50,0x50,0x48,0x48,0x84,0x83,0x02,0x00 -+// 39366 駆 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7f,0x40,0x40,0x42,0x52,0x4c,0x44,0x44,0x4a,0x52,0x40,0x40,0x7f,0x00,0x00 -+// 39367 駇 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x1a,0x04,0x00,0x20,0x20,0x20,0x3f,0x64,0x44,0xa4,0x24,0x14,0x18,0x08,0x08,0x14,0x23,0xc2,0x00 -+// 39368 駈 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x0e,0x70,0x40,0x40,0x40,0x7f,0x44,0x44,0x44,0x44,0x44,0x44,0xff,0x00,0x00 -+// 39369 駉 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0xff,0x81,0x81,0xbd,0xa5,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0x85,0x82,0x00 -+// 39370 駊 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0b,0x04,0x00,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0xc2,0xa4,0xa4,0x98,0x88,0x98,0x27,0xc2,0x00 -+// 39371 駋 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x3f,0x21,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7e,0x12,0x12,0x22,0x22,0x4a,0x84,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39372 駌 ; -+,0x08,0x0f,0x11,0x2a,0x04,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0x00,0x7c,0x44,0x5d,0x41,0x3f,0xf8,0x80,0xf8,0x80,0xf8,0x80,0xfe,0x92,0x4a,0x06 -+// 39373 駍 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7e,0x10,0x10,0x92,0x52,0x54,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 39374 駎 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0x7f,0x00,0x00 -+// 39375 駏 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0x7f,0x40,0x40,0x40,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0x40,0x7f,0x40,0x00 -+// 39376 駐 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x20,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0xff,0x00,0x00 -+// 39377 駑 ; -+,0x08,0x7f,0x0a,0x12,0x0c,0x12,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x21,0x00,0x00,0x7e,0x24,0x18,0x18,0x66,0xf0,0x80,0xf0,0x80,0xf0,0x80,0xfe,0x52,0x2a,0x06 -+// 39378 駒 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x25,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x20,0x20,0x40,0x7e,0x82,0x82,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04,0x00 -+// 39379 駓 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7f,0x08,0x08,0x08,0x10,0x18,0x34,0x32,0x51,0x90,0x10,0x10,0xff,0x00,0x00 -+// 39380 駔 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0xff,0x00,0x00 -+// 39381 駕 ; -+,0x04,0x3f,0x09,0x19,0x06,0x09,0x3f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x0a,0x11,0x00,0x00,0xbe,0x22,0x22,0x3e,0x00,0xfc,0x80,0xf8,0x80,0xf8,0x80,0xfe,0xa2,0x52,0x06 -+// 39382 駖 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x20,0x20,0x50,0x48,0x84,0xa3,0x10,0xfe,0x04,0x04,0x08,0x50,0x20,0x10,0x10,0x00 -+// 39383 駗 ; -+,0x3e,0x28,0x28,0x3c,0x28,0x3d,0x28,0x3e,0x02,0x02,0x56,0x52,0x02,0x0a,0x05,0x00,0x20,0x20,0x50,0x48,0x84,0x13,0x20,0xc8,0x10,0x20,0xc4,0x08,0x10,0x60,0x80,0x00 -+// 39384 駘 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x10,0x10,0x20,0x22,0x41,0xff,0x01,0x00,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39385 駙 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3f,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x24,0x24,0x44,0x44,0xff,0x44,0x44,0x64,0x54,0x54,0x44,0x44,0x44,0x54,0x48,0x00 -+// 39386 駚 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x3f,0x01,0x55,0x55,0x01,0x01,0x0a,0x05,0x00,0x10,0x10,0x10,0x7e,0x52,0x52,0x52,0x52,0xff,0x10,0x28,0x24,0x44,0x83,0x02,0x00 -+// 39387 駛 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x3e,0x02,0x02,0x56,0x56,0x02,0x14,0x09,0x00,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x10,0x90,0x50,0x20,0x30,0x4c,0x83,0x00 -+// 39388 駜 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x20,0x12,0x12,0x02,0x24,0x24,0x24,0xaa,0xa9,0xb1,0x30,0x22,0x62,0x9e,0x00,0x00 -+// 39389 駝 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x28,0x3e,0x28,0x3f,0x01,0x01,0x55,0x55,0x01,0x05,0x02,0x20,0x10,0xff,0x82,0x00,0x40,0x40,0x4c,0x70,0x40,0x40,0x40,0x42,0x42,0x3e,0x00 -+// 39390 駞 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x40,0x40,0x7f,0x80,0x88,0x0a,0x4f,0x7a,0xca,0x4a,0x4e,0x48,0x49,0x41,0x3f,0x00 -+// 39391 駟 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7f,0x55,0x55,0x55,0x55,0x55,0x55,0x67,0x41,0x41,0x41,0x7f,0x41,0x00,0x00 -+// 39392 駠 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x02,0x0a,0x04,0x00,0x30,0xcf,0x89,0xa9,0xa9,0xa9,0xa9,0xa9,0xe9,0xab,0x28,0x28,0x48,0x48,0x88 -+// 39393 駡 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfc,0x80,0xf8,0x80,0xf8,0x80,0xfe,0xa2,0x52,0x0a,0x04 -+// 39394 駢 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x44,0x24,0x28,0x7f,0x24,0x24,0x24,0x7f,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 39395 駣 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x3e,0x02,0x03,0x56,0x56,0x02,0x14,0x09,0x00,0x28,0x28,0x28,0x28,0xaa,0x6a,0x2c,0x28,0x6c,0xaa,0x2a,0x49,0x49,0x89,0x07,0x00 -+// 39396 駤 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x00,0xff,0x10,0x20,0x24,0x42,0xff,0x11,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 39397 駥 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x15,0x0a,0x00,0x08,0x0c,0x0a,0xff,0x08,0x48,0x4a,0x4a,0xea,0x44,0x44,0x8d,0x95,0x23,0x01,0x00 -+// 39398 駦 ; -+,0x00,0x08,0x04,0x1f,0x01,0x3f,0x02,0x0f,0x34,0x07,0x04,0x07,0x04,0x07,0x15,0x22,0x80,0x88,0x90,0xfc,0x00,0xff,0x08,0xf4,0x83,0xf0,0x80,0xf0,0x80,0xfc,0x44,0xac -+// 39399 駧 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x7f,0x41,0x41,0x5d,0x41,0x41,0x5d,0x55,0x55,0x5d,0x41,0x41,0x41,0x45,0x42 -+// 39400 駨 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x20,0x20,0x7f,0x41,0x81,0x79,0x49,0x79,0x49,0x79,0x01,0x01,0x01,0x05,0x02,0x00 -+// 39401 駩 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x20,0x20,0x30,0x48,0x44,0x83,0x7c,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0xff,0x00 -+// 39402 駪 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x50,0x50,0x7e,0x90,0x90,0x10,0xff,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 39403 駫 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x10,0x10,0x92,0x54,0x58,0xff,0x28,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 39404 駬 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0xff,0x44,0x44,0x7c,0x44,0x44,0x7c,0x44,0x47,0xfc,0x04,0x04,0x04,0x04,0x00 -+// 39405 駭 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x20,0x10,0xff,0x10,0x12,0x24,0x7c,0x08,0x12,0x24,0xc4,0x08,0x14,0x23,0xc1,0x00 -+// 39406 駮 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x29,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x20,0x10,0x10,0xff,0x48,0x44,0x82,0x44,0x44,0x28,0x28,0x10,0x28,0x47,0x82,0x00 -+// 39407 駯 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x10,0x10,0x50,0x7e,0x90,0x90,0x10,0xff,0x10,0x38,0x54,0x57,0x92,0x10,0x10,0x00 -+// 39408 駰 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0xff,0x89,0x89,0x89,0xbf,0x89,0x89,0x95,0x93,0xa3,0xc1,0x81,0xff,0x81,0x00 -+// 39409 駱 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x20,0x20,0x7e,0x42,0xa4,0x18,0x28,0xc7,0x02,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 39410 駲 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3e,0x02,0x56,0x56,0x02,0x15,0x0a,0x00,0x00,0x52,0x52,0x52,0x52,0x52,0x7a,0xd6,0x52,0x52,0x52,0x92,0x92,0x12,0x02,0x00 -+// 39411 駳 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3e,0x03,0x56,0x56,0x02,0x0a,0x05,0x00,0x03,0xdc,0x44,0x44,0x84,0x97,0xd4,0x54,0x54,0x54,0xd4,0x5f,0xa0,0x98,0x07,0x00 -+// 39412 駴 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x02,0x56,0x56,0x03,0x15,0x0a,0x00,0x08,0x0c,0x0a,0xff,0x08,0xa8,0xa9,0xa9,0xfa,0xa4,0xa4,0xad,0x33,0x23,0x21,0x00 -+// 39413 駵 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0xff,0x24,0x24,0xe7,0xa5,0xa5,0xa5,0xe7,0x24,0x24,0x24,0x44,0x44,0x84,0x00 -+// 39414 駶 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x03,0x15,0x0a,0x00,0x00,0xfe,0x82,0x82,0xfe,0x80,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x01,0x05,0x02,0x00 -+// 39415 駷 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x15,0x08,0x00,0x10,0x10,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x30,0x58,0x54,0x97,0x12,0x10,0x10 -+// 39416 駸 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0x7c,0x04,0x7c,0x04,0x7c,0x00,0xff,0x82,0x00,0x7c,0x28,0x10,0x28,0xc6,0x00 -+// 39417 駹 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x15,0x0a,0x00,0x20,0x28,0x24,0xff,0x32,0x34,0x3a,0x54,0x58,0x52,0x54,0x98,0x91,0x31,0x0f,0x00 -+// 39418 駺 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x20,0x10,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x60,0x52,0x54,0x48,0x54,0x67,0x42,0x00 -+// 39419 駻 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 39420 駼 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x10,0x10,0x28,0x44,0x43,0xbc,0x10,0x10,0xff,0x10,0x10,0x54,0x52,0x92,0x50,0x20 -+// 39421 駽 ; -+,0x00,0x3f,0x24,0x3e,0x24,0x3e,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x7e,0x42,0x42,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44,0x00 -+// 39422 駾 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x44,0x24,0x28,0xfe,0x82,0x82,0x82,0xfe,0x28,0x28,0x28,0x29,0x49,0x49,0x87,0x00 -+// 39423 駿 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x10,0x24,0x7e,0x02,0x44,0x42,0xa2,0x3c,0x44,0xa8,0x10,0x28,0x47,0x82,0x00 -+// 39424 騀 ; -+,0x00,0x3c,0x29,0x3c,0x2b,0x3c,0x28,0x28,0x3e,0x03,0x56,0x56,0x02,0x02,0x15,0x08,0x10,0x58,0x94,0x90,0xff,0x90,0x90,0xb2,0xd2,0x8c,0x88,0x98,0xa5,0x85,0x83,0x81 -+// 39425 騁 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0xff,0x20,0x3e,0x02,0x02,0x0a,0x04,0x00 -+// 39426 騂 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x01,0x0a,0x04,0x20,0x10,0xfe,0x44,0x24,0x28,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10 -+// 39427 騃 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x10,0x24,0x7e,0x02,0x40,0x7e,0x50,0x90,0xff,0x10,0x28,0x24,0x47,0x82,0x00 -+// 39428 騄 ; -+,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x7c,0x04,0x7c,0x04,0x04,0xff,0x10,0x92,0x54,0x38,0x58,0x97,0x12,0x50,0x20,0x00 -+// 39429 騅 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3f,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x20,0x30,0x48,0x7f,0xc8,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40,0x00 -+// 39430 騆 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x14,0x09,0x00,0x00,0xff,0x91,0xbd,0x91,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x81,0x81,0x85,0x02,0x00 -+// 39431 騇 ; -+,0x00,0x7e,0x48,0x7e,0x49,0x7e,0x49,0x48,0x7e,0x02,0x56,0x56,0x02,0x12,0x0c,0x00,0x20,0x20,0x50,0x8c,0x7b,0x20,0xfe,0x20,0x20,0xfc,0x84,0x84,0x84,0xfc,0x84,0x00 -+// 39432 騈 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x14,0x09,0x00,0x22,0x22,0x44,0xef,0x44,0x44,0x44,0x44,0xef,0x44,0x44,0x44,0x84,0x84,0x04,0x00 -+// 39433 騉 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x14,0x08,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x08,0x88,0x8b,0xec,0x88,0x88,0xa9,0xc9,0x87,0x00 -+// 39434 騊 ; -+,0x3e,0x28,0x28,0x3d,0x28,0x3c,0x28,0x3e,0x02,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x40,0x7e,0x82,0x42,0x7a,0xa2,0x22,0xfa,0x22,0xaa,0xaa,0xfa,0x02,0x0a,0x04,0x00 -+// 39435 騋 ; -+,0x7e,0x49,0x48,0x7c,0x48,0x7d,0x49,0x48,0x7e,0x02,0x56,0x56,0x03,0x0a,0x04,0x00,0x10,0xfe,0x10,0x94,0x94,0x56,0x39,0x10,0x30,0x58,0x54,0x97,0x12,0x10,0x10,0x00 -+// 39436 騌 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x20,0x10,0xff,0x82,0x00,0x7e,0x00,0x00,0xff,0x08,0x4c,0x4a,0x89,0x29,0x10,0x00 -+// 39437 騍 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x01,0x0a,0x04,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x38,0x54,0x57,0x92,0x10,0x10 -+// 39438 騎 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x10,0x10,0xff,0x10,0x28,0x44,0xff,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x0a,0x04,0x00 -+// 39439 騏 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x44,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x00,0x44,0x42,0x82,0x00 -+// 39440 騐 ; -+,0x00,0x3e,0x28,0x3e,0x29,0x3e,0x28,0x28,0x3e,0x02,0x02,0x56,0x57,0x0a,0x04,0x00,0x10,0x10,0x28,0x64,0x93,0x00,0xfc,0x08,0x10,0x10,0x40,0xd2,0x49,0x45,0x3c,0x00 -+// 39441 騑 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x28,0x28,0x28,0xef,0x28,0x28,0xee,0x28,0x28,0x28,0xef,0x28,0x28,0x28,0x28,0x00 -+// 39442 騒 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0xfe,0x44,0x28,0x10,0x2c,0xd3,0x10,0x7e,0x52,0x7e,0x10,0x12,0x1f,0xe1,0x00 -+// 39443 験 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x10,0x10,0x28,0x44,0xff,0x10,0xfe,0x92,0x92,0xfe,0x10,0x28,0x28,0x44,0x83,0x00 -+// 39444 騔 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x20,0x3f,0x51,0xd1,0x59,0x65,0x7f,0x05,0x02,0x00 -+// 39445 騕 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x03,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0xff,0x28,0xfe,0xaa,0xaa,0xfe,0x10,0x20,0xff,0x44,0xc8,0x30,0x28,0xc6,0x02 -+// 39446 騖 ; -+,0x00,0x3f,0x02,0x7f,0x16,0x64,0x0c,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x22,0x20,0x20,0x3f,0x64,0x98,0x14,0x63,0xf0,0x80,0xf0,0x80,0xf0,0x80,0xfe,0x42,0xa6 -+// 39447 騗 ; -+,0x08,0x04,0x3f,0x21,0x21,0x3f,0x20,0x3f,0x34,0x34,0x3f,0x34,0x54,0x54,0x11,0x00,0x00,0x7f,0x48,0x7e,0x48,0x7e,0x48,0xc8,0xff,0x81,0xd5,0xd5,0x81,0x8a,0x84,0x00 -+// 39448 騘 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x20,0x20,0x7e,0x56,0xe6,0x3a,0x4e,0x12,0x26,0x00,0x6a,0xa9,0xa1,0x24,0x1c,0x00 -+// 39449 騙 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x03,0x15,0x0a,0x00,0x20,0x10,0xfe,0x82,0x82,0xfe,0x80,0x80,0xff,0xd5,0xff,0xd5,0x55,0x55,0x43,0x00 -+// 39450 騚 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x42,0x24,0xff,0x00,0x00,0xf1,0x91,0xf5,0x95,0xf5,0x95,0x95,0x91,0x95,0xb2,0x00 -+// 39451 騛 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x3f,0x02,0x56,0x56,0x02,0x02,0x15,0x0a,0x00,0xfc,0x05,0x36,0xd6,0x55,0x54,0x55,0xff,0x54,0x56,0x54,0x96,0x95,0x13,0x11,0x00 -+// 39452 騜 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x7e,0x10,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 39453 騝 ; -+,0x00,0x3c,0x28,0x3d,0x28,0x3c,0x29,0x29,0x3e,0x02,0x57,0x56,0x02,0x0a,0x05,0x00,0x08,0x08,0x3e,0x8a,0xff,0x8a,0x3e,0xc8,0x7e,0x48,0x7f,0x88,0xc8,0xb0,0x0f,0x00 -+// 39454 騞 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x3e,0x02,0x56,0x56,0x02,0x03,0x0a,0x04,0x00,0x10,0xff,0x10,0x7e,0x10,0xff,0x10,0xff,0x20,0x40,0x7e,0xc2,0x42,0x7e,0x42,0x00 -+// 39455 騟 ; -+,0x00,0x3e,0x28,0x3e,0x29,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x10,0x10,0x28,0x44,0xfb,0x00,0xe2,0xaa,0xea,0xaa,0xea,0xaa,0xaa,0xea,0xa6,0x00 -+// 39456 騠 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x29,0x3e,0x02,0x56,0x56,0x02,0x0a,0x05,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x10,0x10,0x5e,0x50,0x50,0xb0,0x1f,0x00 -+// 39457 騡 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xf2,0x34,0x58,0x54,0x93,0x52,0x20,0x00 -+// 39458 騢 ; -+,0x00,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0xee,0xa2,0xa2,0xa2,0xee,0x80,0x9e,0xf2,0x8a,0x8a,0xe4,0x8c,0x93,0xa2,0x00 -+// 39459 騣 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x05,0x00,0x44,0x2a,0x92,0xaa,0xc6,0xfe,0x24,0xc3,0x20,0x3e,0x44,0xa8,0x18,0x65,0x82,0x00 -+// 39460 騤 ; -+,0x00,0x3e,0x29,0x3e,0x28,0x3e,0x28,0x29,0x3e,0x03,0x56,0x56,0x02,0x0a,0x05,0x00,0x10,0xf2,0x34,0xa9,0x4a,0x44,0xfb,0x20,0x20,0xfe,0x20,0x50,0x48,0x8c,0x04,0x00 -+// 39461 騥 ; -+,0x00,0x3e,0x28,0x3c,0x28,0x28,0x3d,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0xfc,0x08,0x30,0xff,0x32,0x50,0x90,0x30,0x10,0xff,0x30,0x58,0x54,0x97,0x12,0x10 -+// 39462 騦 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x10,0x08,0x6a,0xa1,0x25,0x24,0x1c,0x00 -+// 39463 騧 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0x7e,0x42,0x72,0x52,0x52,0xff,0x81,0xbd,0xa5,0xa5,0xbd,0x81,0x85,0x82,0x00 -+// 39464 騨 ; -+,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x28,0x3e,0x02,0x56,0x57,0x02,0x02,0x14,0x08,0x00,0x22,0x92,0x54,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10,0x00 -+// 39465 騩 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x20,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x28,0x2a,0x2a,0x4d,0x4f,0x89,0x0f,0x00 -+// 39466 騪 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x05,0x00,0x10,0x50,0x96,0x92,0xd6,0x92,0x92,0xfe,0x10,0xfe,0x44,0x28,0x10,0x68,0x86,0x00 -+// 39467 騫 ; -+,0x00,0x3f,0x22,0x0f,0x02,0x0f,0x02,0x3f,0x04,0x1f,0x68,0x0f,0x08,0x0f,0x12,0x22,0x80,0xff,0x22,0xf8,0x20,0xfc,0x20,0xff,0x08,0xf4,0x83,0xf0,0x80,0xfe,0x52,0x56 -+// 39468 騬 ; -+,0x00,0x3e,0x28,0x3d,0x28,0x3c,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x0e,0xf0,0x10,0xff,0x54,0xd7,0x54,0xd7,0x10,0x18,0x34,0x57,0x92,0x10,0x10,0x00 -+// 39469 騭 ; -+,0x00,0x3c,0x24,0x29,0x24,0x34,0x28,0x2f,0x08,0x0f,0x08,0x08,0x0f,0x14,0x22,0x00,0x10,0x5c,0x50,0xff,0x54,0x98,0xf0,0xfc,0x80,0x80,0xf8,0x80,0xfe,0xa2,0x52,0x06 -+// 39470 騮 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x20,0xcf,0x85,0xa5,0xb9,0xc9,0x93,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82,0x00 -+// 39471 騯 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x05,0x00,0x20,0x10,0x7e,0x24,0x18,0xff,0xa2,0x10,0xff,0x20,0x3c,0x44,0x44,0x94,0x08,0x00 -+// 39472 騰 ; -+,0x01,0x3c,0x25,0x24,0x27,0x3c,0x24,0x27,0x3c,0x24,0x24,0x24,0x24,0x35,0x4a,0x00,0x24,0xa8,0xfe,0x20,0xff,0x48,0xfc,0xa3,0xf8,0xa0,0xf8,0xa0,0xfe,0xaa,0xaa,0x06 -+// 39473 騱 ; -+,0x00,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x0e,0xf0,0xa2,0x54,0x10,0x24,0x78,0x14,0x7e,0x10,0xff,0x10,0x28,0x24,0xc3,0x00 -+// 39474 騲 ; -+,0x00,0x3e,0x29,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x57,0x42,0x0a,0x04,0x00,0x48,0x48,0xff,0x48,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39475 騳 ; -+,0x00,0x3f,0x28,0x3f,0x28,0x3f,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0x7f,0x48,0x7e,0x48,0x7e,0x48,0x48,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00 -+// 39476 騴 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x01,0x7e,0x42,0x7e,0x42,0x7e,0x10,0x08,0xff,0x92,0x10,0xff,0x24,0x68,0x10,0x6c,0x82 -+// 39477 騵 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x02,0x56,0x57,0x03,0x0a,0x04,0x00,0xff,0x88,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0x88,0x88,0xaa,0x29,0x49,0x28,0x10 -+// 39478 騶 ; -+,0x00,0x3e,0x29,0x3e,0x28,0x3e,0x28,0x29,0x3e,0x02,0x57,0x56,0x02,0x0a,0x04,0x00,0x40,0xfe,0x02,0x22,0xaa,0xfa,0x46,0xa0,0x7e,0xa2,0xaa,0xfa,0x42,0x42,0x8a,0x04 -+// 39479 騷 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3e,0x02,0x56,0x56,0x02,0x12,0x0d,0x00,0x00,0xfe,0xa4,0x48,0x30,0x6c,0x93,0x10,0xfe,0x92,0xfe,0x10,0x14,0x1e,0xe2,0x00 -+// 39480 騸 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x03,0x0b,0x04,0x00,0x20,0x10,0xfe,0x82,0xfe,0x80,0x80,0xf7,0x91,0xd5,0xb3,0xb5,0x59,0x15,0x32,0x00 -+// 39481 騹 ; -+,0x00,0x3e,0x29,0x28,0x3e,0x28,0x3e,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x44,0x44,0xff,0x44,0x7c,0x10,0x7e,0x52,0x7e,0x10,0x7e,0x10,0x7e,0x10,0xff,0x00 -+// 39482 騺 ; -+,0x08,0x3e,0x08,0x7f,0x14,0x3e,0x08,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x29,0x44,0x10,0x7c,0x14,0x14,0x65,0x35,0x43,0xf0,0x80,0xf0,0x80,0xf0,0x80,0xfe,0x22,0x96 -+// 39483 騻 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x10,0x10,0xff,0xba,0x54,0xba,0x10,0xba,0x54,0xba,0x10,0x28,0x24,0x47,0x82,0x00 -+// 39484 騼 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x03,0x15,0x0a,0x00,0x20,0x10,0xff,0xa8,0xfe,0xaa,0xaa,0xfe,0xa8,0xab,0xbc,0xa8,0x29,0x39,0x27,0x00 -+// 39485 騽 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0xff,0x95,0x53,0x33,0x55,0x91,0x20,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x00 -+// 39486 騾 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x28,0x70,0x24,0x7e,0x12,0x54,0x52,0x92,0x30,0x00 -+// 39487 騿 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x10,0x08,0x7e,0x24,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x10,0x10,0x10 -+// 39488 驀 ; -+,0x02,0x7f,0x02,0x0f,0x09,0x08,0x0f,0x01,0x3f,0x04,0x1f,0x68,0x0f,0x08,0x0f,0x12,0x20,0xff,0x20,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x10,0xfc,0x83,0xf0,0x80,0xfc,0xa4 -+// 39489 驁 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x3f,0x09,0x12,0x6f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0x10,0x10,0x3e,0x24,0x54,0x08,0x14,0x63,0xf8,0x80,0xf8,0x80,0xfe,0x92,0x4a,0x06 -+// 39490 驂 ; -+,0x00,0x3e,0x28,0x3c,0x28,0x3d,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x05,0x00,0x20,0x44,0xfe,0x44,0xa9,0xef,0x10,0x28,0xd7,0x2a,0xd0,0x24,0xc8,0x30,0xc0,0x00 -+// 39491 驃 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0xfe,0x28,0xfe,0xaa,0xaa,0xfe,0x00,0x7c,0x00,0xff,0x10,0x54,0x52,0xb2,0x10 -+// 39492 驄 ; -+,0x00,0x3f,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x03,0x15,0x08,0x00,0x10,0x20,0xfe,0xa2,0xbe,0xea,0x92,0xaa,0xfe,0x00,0x50,0x52,0x45,0x45,0x3c,0x00 -+// 39493 驅 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0xff,0x80,0xbe,0xa2,0xbe,0x80,0xf7,0xd5,0xd5,0xd5,0xf7,0x80,0x80,0xff,0x00 -+// 39494 驆 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x54,0xff,0x54,0xff,0x10,0xff,0x10,0x10,0x10,0x00 -+// 39495 驇 ; -+,0x04,0x1f,0x04,0x3f,0x15,0x2e,0x04,0x3f,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x22,0x00,0x10,0x90,0x7e,0x92,0x32,0x9b,0x2b,0x41,0xfc,0x40,0xfc,0x40,0xfe,0x22,0x92,0x06 -+// 39496 驈 ; -+,0x00,0x3e,0x28,0x3e,0x29,0x3e,0x28,0x29,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0xfc,0x28,0x10,0xff,0x52,0xb0,0xfe,0xaa,0xc6,0xba,0xaa,0xba,0x82,0x86,0x00 -+// 39497 驉 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0b,0x04,0x00,0x10,0x1e,0x10,0xff,0x92,0xfe,0x91,0x8f,0x80,0x94,0x94,0xd5,0xb6,0x14,0xff,0x00 -+// 39498 驊 ; -+,0x00,0x3e,0x29,0x3e,0x29,0x3e,0x29,0x28,0x3e,0x03,0x56,0x57,0x02,0x0a,0x04,0x00,0x48,0x48,0xff,0x48,0xff,0x54,0xff,0x54,0x54,0xff,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39499 驋 ; -+,0x00,0x3d,0x28,0x3d,0x28,0x3c,0x29,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x10,0xd4,0x49,0x4a,0x84,0x83,0xee,0x2a,0xeb,0x80,0xee,0x2a,0x24,0xab,0x51,0x00 -+// 39500 驌 ; -+,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x28,0x3e,0x02,0x56,0x56,0x02,0x03,0x15,0x0a,0x00,0x10,0x7e,0x12,0xff,0x12,0x7e,0xb5,0xf7,0x91,0xff,0x91,0xd7,0x55,0x55,0x11,0x00 -+// 39501 驍 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x01,0x55,0x55,0x01,0x05,0x02,0x10,0x7c,0x10,0xff,0x00,0x44,0xef,0x44,0xef,0x00,0xff,0x28,0x49,0x49,0x87,0x00 -+// 39502 驎 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x03,0x57,0x56,0x02,0x14,0x0b,0x00,0x10,0x54,0x38,0xff,0x38,0xd6,0x10,0x84,0xef,0x24,0xb4,0x5f,0x44,0x84,0x04,0x04 -+// 39503 驏 ; -+,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x57,0x03,0x0b,0x04,0x00,0xfe,0x82,0xfe,0x80,0xfe,0x88,0xff,0x88,0x98,0xf7,0xa2,0x3a,0xe7,0x22,0x66,0x00 -+// 39504 驐 ; -+,0x01,0x3c,0x2b,0x3c,0x29,0x3d,0x29,0x28,0x3f,0x02,0x56,0x57,0x02,0x15,0x08,0x00,0x08,0x88,0xe8,0x08,0xdf,0x52,0xd2,0x2a,0xca,0x44,0x84,0xea,0x8a,0x93,0xa2,0x00 -+// 39505 驑 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x0a,0x04,0x00,0x00,0xff,0x28,0xef,0xa9,0xef,0x28,0x28,0xff,0x91,0xff,0x91,0x91,0xff,0x81,0x00 -+// 39506 驒 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x02,0x0a,0x04,0x00,0xee,0xaa,0xee,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39507 驓 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x42,0x24,0xff,0x91,0xd3,0xb5,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x42,0x00 -+// 39508 驔 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x15,0x08,0x00,0x00,0xff,0x28,0xff,0xa9,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x10,0x10 -+// 39509 驕 ; -+,0x00,0x3e,0x28,0x3d,0x28,0x28,0x3d,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x14,0x08,0x0e,0xf0,0x10,0xff,0x28,0x7c,0xcb,0x78,0x00,0xfe,0xaa,0xaa,0xba,0x82,0x86,0x82 -+// 39510 驖 ; -+,0x00,0x3e,0x28,0x3c,0x29,0x3c,0x28,0x28,0x3f,0x02,0x02,0x56,0x56,0x03,0x06,0x00,0x48,0x4a,0xe9,0x48,0xff,0x08,0xe9,0xa9,0xfa,0x46,0xe4,0x45,0x6b,0x93,0x21,0x00 -+// 39511 驗 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x14,0x09,0x00,0x10,0x10,0x28,0x44,0xfb,0x00,0xee,0xaa,0xaa,0xee,0x44,0x44,0xa4,0x8a,0x11,0x00 -+// 39512 驘 ; -+,0x00,0x7f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x00,0x3d,0x25,0x3d,0x25,0x3d,0x26,0x4c,0x80,0xff,0x00,0xf8,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x52,0xfa,0x56,0xf2,0xb2,0x23 -+// 39513 驙 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x02,0x0a,0x04,0x10,0xff,0x00,0xfe,0xaa,0xba,0x82,0xfe,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff -+// 39514 驚 ; -+,0x0a,0x7f,0x2a,0x3f,0x32,0x5e,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x15,0x22,0x00,0x10,0xa0,0x3f,0xc4,0xa4,0x98,0xa6,0xf0,0x80,0xf0,0x80,0xfe,0x02,0x22,0x92,0x06 -+// 39515 驛 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x00,0xfe,0xaa,0xfe,0x10,0x7e,0x10,0xff,0x44,0x28,0x7e,0x10,0xff,0x10,0x10,0x10 -+// 39516 驜 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x3e,0x02,0x02,0x56,0x56,0x02,0x0b,0x04,0x00,0x28,0xaa,0x6c,0xff,0x44,0x28,0xff,0x10,0x7c,0x10,0xfe,0x38,0x54,0x93,0x10,0x10 -+// 39517 驝 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x10,0x7e,0x10,0xff,0x81,0x7e,0x20,0x7c,0xa4,0x3c,0x10,0xff,0x38,0x54,0x93,0x10 -+// 39518 驞 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x00,0x10,0xff,0x82,0xfc,0x52,0x96,0x18,0x20,0xfe,0x4a,0x66,0x52,0x7e,0x24,0x42,0x00 -+// 39519 驟 ; -+,0x03,0x3d,0x29,0x3d,0x29,0x3d,0x2b,0x28,0x3e,0x02,0x56,0x56,0x02,0x14,0x09,0x00,0xf0,0x3f,0xe9,0x2a,0xe4,0x2a,0xf1,0x2c,0xf0,0x14,0x58,0x94,0x53,0x92,0x10,0x10 -+// 39520 驠 ; -+,0x00,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x28,0x28,0xff,0x28,0x38,0x44,0xdf,0x54,0xd5,0x5d,0x47,0x00,0x6a,0x55,0x95,0x00 -+// 39521 驡 ; -+,0x08,0x3f,0x14,0x7f,0x00,0x3f,0x35,0x2b,0x21,0x1f,0x10,0x1f,0x10,0x1f,0x14,0x22,0x40,0x78,0x40,0x7c,0x04,0x7c,0x6a,0x56,0x3e,0xf0,0x80,0xf0,0x80,0xfe,0xa2,0x56 -+// 39522 驢 ; -+,0x00,0x3e,0x28,0x3d,0x29,0x3d,0x29,0x29,0x3d,0x05,0x55,0x55,0x05,0x16,0x0b,0x00,0x10,0x1c,0x10,0xff,0x22,0xfc,0x22,0x7e,0x54,0x7c,0x54,0xfe,0xaa,0xaa,0xff,0x00 -+// 39523 驣 ; -+,0x00,0x3e,0x28,0x28,0x3e,0x28,0x3e,0x29,0x28,0x3e,0x02,0x56,0x56,0x02,0x0b,0x04,0x92,0x54,0xfe,0x20,0xff,0x44,0xfe,0x91,0xfc,0x90,0xfc,0x90,0xff,0x01,0x55,0x03 -+// 39524 驤 ; -+,0x00,0x3e,0x29,0x3e,0x28,0x3e,0x29,0x28,0x3e,0x02,0x57,0x56,0x02,0x0b,0x04,0x00,0x20,0x10,0xff,0xaa,0xee,0x48,0xff,0x48,0xfe,0x48,0xff,0x4a,0xc4,0x67,0x42,0x00 -+// 39525 驥 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3e,0x02,0x56,0x56,0x02,0x15,0x08,0x00,0x28,0xee,0x29,0xef,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x44,0xfe,0x44,0xff,0x44,0x82 -+// 39526 驦 ; -+,0x00,0x7e,0x51,0x7d,0x50,0x7c,0x50,0x50,0x7e,0x03,0x56,0x57,0x02,0x14,0x08,0x00,0xfe,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0x5e,0xf2,0xde,0x72,0x5e,0x52,0x5e,0x00 -+// 39527 驧 ; -+,0x01,0x7d,0x53,0x7d,0x51,0x7c,0x53,0x52,0x7e,0x07,0x54,0x57,0x04,0x28,0x10,0x00,0x48,0x48,0xff,0x51,0xe9,0x9b,0xed,0xbf,0xad,0xfb,0x89,0xe9,0x89,0x85,0x82,0x00 -+// 39528 驨 ; -+,0x00,0x3e,0x28,0x3c,0x28,0x3c,0x29,0x28,0x3e,0x02,0x56,0x56,0x02,0x02,0x0a,0x04,0x10,0x92,0xfe,0x48,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0xff,0xa5,0xff,0xa5,0xbd,0x83 -+// 39529 驩 ; -+,0x00,0x3e,0x28,0x3e,0x28,0x3e,0x28,0x28,0x3f,0x01,0x55,0x55,0x01,0x0a,0x04,0x00,0x44,0xff,0x44,0xee,0xaa,0xee,0x30,0x48,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x7f,0x40 -+// 39530 驪 ; -+,0x01,0x7e,0x51,0x7d,0x51,0x7d,0x51,0x51,0x7d,0x05,0x55,0x55,0x05,0x05,0x15,0x0a,0xef,0x00,0xef,0xad,0x6b,0x39,0xff,0x28,0xfe,0x2a,0xfe,0x48,0x7e,0x49,0x69,0x47 -+// 39531 驫 ; -+,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x12,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x55,0x55,0x03,0xfe,0x80,0xfc,0x80,0xfe,0xa2,0x56,0x00,0x7f,0x48,0x7e,0x48,0x7f,0x55,0x55,0x03 -+// 39532 马 ; -+,0x00,0x1f,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x10,0x10,0xfe,0x02,0x02,0xfa,0x02,0x02,0x1a,0x04,0x00 -+// 39533 驭 ; -+,0x00,0x7c,0x05,0x24,0x24,0x24,0x24,0x3e,0x02,0x02,0x1a,0x62,0x02,0x14,0x0b,0x00,0x00,0x00,0xfe,0x82,0x84,0x44,0x44,0x48,0x28,0x30,0x10,0x28,0x44,0x87,0x02,0x00 -+// 39534 驮 ; -+,0x00,0x7c,0x04,0x24,0x25,0x24,0x24,0x3e,0x02,0x1a,0x62,0x02,0x02,0x15,0x0a,0x00,0x20,0x20,0x20,0x20,0xfe,0x20,0x20,0x20,0x20,0x50,0x50,0x88,0x88,0x07,0x02,0x00 -+// 39535 驯 ; -+,0x00,0x3e,0x02,0x12,0x12,0x12,0x12,0x1f,0x01,0x01,0x0d,0x71,0x02,0x0a,0x05,0x00,0x42,0x42,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x52,0x92,0x82,0x02,0x02 -+// 39536 驰 ; -+,0x00,0x3c,0x04,0x14,0x14,0x14,0x15,0x1e,0x02,0x02,0x1a,0x62,0x02,0x0a,0x04,0x00,0x10,0x10,0x90,0x92,0x9e,0xf2,0x92,0x92,0x92,0x92,0x96,0x90,0x81,0x81,0x7f,0x00 -+// 39537 驱 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3e,0x02,0x02,0x1a,0x62,0x02,0x14,0x08,0x00,0x00,0xff,0x80,0x82,0xc2,0xa4,0x94,0x88,0x8c,0x94,0x92,0xa2,0xc2,0x80,0xff,0x00 -+// 39538 驲 ; -+,0x00,0x3e,0x02,0x12,0x12,0x12,0x12,0x1f,0x01,0x01,0x0d,0x71,0x01,0x0a,0x04,0x00,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39539 驳 ; -+,0x00,0x7e,0x04,0x24,0x24,0x25,0x24,0x3e,0x02,0x02,0x1a,0x62,0x02,0x14,0x09,0x00,0x00,0x88,0x50,0x30,0x4c,0x84,0x00,0x04,0x84,0x48,0x28,0x10,0x28,0x47,0x82,0x00 -+// 39540 驴 ; -+,0x00,0x3e,0x02,0x12,0x12,0x12,0x12,0x1f,0x01,0x01,0x0d,0x71,0x01,0x0a,0x05,0x00,0x10,0x08,0x08,0x7f,0x41,0x41,0x41,0x7f,0x40,0x40,0x40,0x40,0x80,0x80,0x00,0x00 -+// 39541 驵 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3f,0x01,0x01,0x19,0x61,0x01,0x0a,0x05,0x00,0x00,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0xff,0x00 -+// 39542 驶 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3f,0x01,0x01,0x0d,0x71,0x01,0x01,0x0a,0x04,0x10,0x10,0x10,0xfe,0x92,0x92,0x92,0xfe,0x10,0x90,0x50,0x20,0x30,0x4c,0x87,0x02 -+// 39543 驷 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x20,0x3e,0x02,0x1a,0x62,0x02,0x02,0x14,0x08,0x00,0x00,0xff,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xcf,0x81,0x81,0x81,0xff,0x81,0x00 -+// 39544 驸 ; -+,0x00,0x7c,0x04,0x24,0x24,0x25,0x24,0x3e,0x02,0x1a,0x62,0x02,0x02,0x14,0x08,0x00,0x44,0x44,0x44,0x84,0x84,0xbf,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x94,0x88,0x00 -+// 39545 驹 ; -+,0x00,0x7c,0x04,0x24,0x24,0x25,0x24,0x3e,0x02,0x1a,0x62,0x02,0x02,0x0a,0x04,0x00,0x20,0x20,0x40,0x7e,0x82,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x0a,0x04,0x00 -+// 39546 驺 ; -+,0x00,0x7c,0x04,0x24,0x24,0x25,0x24,0x3f,0x01,0x19,0x61,0x01,0x01,0x0a,0x04,0x00,0x20,0x20,0x7e,0x44,0x88,0x00,0x7e,0x02,0x02,0x7e,0x02,0x02,0x02,0x7e,0x02,0x00 -+// 39547 驻 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3f,0x01,0x01,0x19,0x61,0x01,0x0a,0x05,0x00,0x20,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x10,0xff,0x00 -+// 39548 驼 ; -+,0x00,0x7c,0x04,0x25,0x25,0x25,0x24,0x3e,0x02,0x02,0x1a,0x62,0x02,0x12,0x0c,0x00,0x20,0x10,0x10,0xff,0x02,0x44,0x40,0x40,0x4c,0x70,0x40,0x40,0x41,0x41,0x3f,0x00 -+// 39549 驽 ; -+,0x04,0x7f,0x09,0x12,0x0c,0x0a,0x30,0x07,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x00,0x7c,0x44,0x28,0x10,0x2e,0xc4,0xf0,0x10,0x10,0xfe,0x02,0xf2,0x02,0x14,0x08 -+// 39550 驾 ; -+,0x04,0x3f,0x08,0x08,0x12,0x21,0x07,0x00,0x02,0x02,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0xbe,0xa2,0xa2,0xbe,0x00,0xf0,0x10,0x10,0x10,0xfe,0x02,0xfa,0x02,0x14,0x08 -+// 39551 驿 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x25,0x3e,0x02,0x1a,0x62,0x03,0x02,0x0a,0x04,0x00,0x00,0xfe,0x44,0x28,0x10,0x6c,0x93,0x10,0xfe,0x10,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39552 骀 ; -+,0x00,0x3e,0x02,0x12,0x12,0x12,0x12,0x1f,0x01,0x19,0x61,0x01,0x01,0x05,0x02,0x00,0x10,0x10,0x20,0x24,0x42,0xff,0x01,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39553 骁 ; -+,0x00,0x7c,0x04,0x25,0x24,0x24,0x25,0x3e,0x03,0x1a,0x62,0x02,0x02,0x14,0x09,0x00,0x40,0x40,0x7e,0xc4,0x28,0x32,0xca,0x06,0xfe,0x48,0x48,0x48,0x89,0x89,0x07,0x00 -+// 39554 骂 ; -+,0x1f,0x11,0x11,0x1f,0x00,0x0f,0x00,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x00,0x3e,0x22,0x22,0x3e,0x00,0xf0,0x10,0x10,0x10,0xfe,0x02,0xf2,0x02,0x0a,0x04,0x00 -+// 39555 骃 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3e,0x02,0x1a,0x62,0x02,0x02,0x0a,0x04,0x00,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0x91,0x91,0xa9,0xa5,0xc3,0x81,0xff,0x81,0x00 -+// 39556 骄 ; -+,0x00,0x7c,0x04,0x24,0x25,0x24,0x24,0x3e,0x02,0x1b,0x62,0x02,0x02,0x14,0x09,0x00,0x0e,0xf0,0x10,0x10,0xff,0x30,0x48,0x44,0xcb,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 39557 骅 ; -+,0x00,0x3c,0x04,0x24,0x25,0x24,0x24,0x3e,0x02,0x02,0x1a,0x62,0x02,0x0a,0x04,0x00,0x48,0x48,0x4a,0xcc,0x48,0x58,0x49,0x47,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x00 -+// 39558 骆 ; -+,0x00,0x7c,0x04,0x24,0x24,0x25,0x24,0x3e,0x02,0x02,0x1a,0x62,0x02,0x0a,0x04,0x00,0x40,0x40,0x7e,0xc4,0xa8,0x10,0x18,0x24,0xc3,0x7e,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39559 骇 ; -+,0x00,0x7c,0x05,0x24,0x24,0x24,0x24,0x3e,0x02,0x1a,0x63,0x02,0x02,0x0a,0x05,0x00,0x20,0x10,0xff,0x20,0x20,0x42,0xfc,0x08,0x11,0x62,0x84,0x08,0x14,0x63,0x81,0x00 -+// 39560 骈 ; -+,0x00,0x7c,0x04,0x25,0x24,0x24,0x24,0x3e,0x03,0x02,0x1a,0x62,0x02,0x02,0x0b,0x04,0x84,0x44,0x48,0xff,0x44,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 39561 骉 ; -+,0x07,0x00,0x04,0x07,0x00,0x1f,0x00,0x1e,0x02,0x12,0x1f,0x01,0x0d,0x31,0x05,0x02,0xf0,0x10,0x10,0xfe,0x02,0xf2,0x0a,0x3c,0x04,0x24,0x3f,0x01,0x7d,0x01,0x05,0x02 -+// 39562 骊 ; -+,0x00,0x79,0x08,0x29,0x29,0x29,0x29,0x3d,0x05,0x1d,0x65,0x05,0x05,0x15,0x09,0x00,0x00,0xff,0x00,0xef,0x29,0x29,0x29,0xad,0x6b,0x29,0x29,0x29,0x29,0x29,0x6b,0x00 -+// 39563 骋 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x20,0x3e,0x03,0x1a,0x62,0x02,0x02,0x14,0x08,0x00,0x10,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x20,0x3e,0x02,0x02,0x0a,0x04,0x00 -+// 39564 验 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x25,0x3e,0x02,0x03,0x1a,0x62,0x02,0x0b,0x04,0x00,0x00,0x20,0x20,0x50,0x48,0x87,0xf8,0x00,0x42,0x22,0xa4,0xa4,0x08,0xff,0x00,0x00 -+// 39565 骍 ; -+,0x00,0x3e,0x02,0x12,0x12,0x12,0x12,0x1f,0x01,0x01,0x19,0x61,0x01,0x05,0x02,0x00,0x20,0x10,0xfe,0x04,0x44,0x28,0xff,0x10,0x10,0xfe,0x10,0x10,0x10,0x10,0x10,0x00 -+// 39566 骎 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3e,0x02,0x02,0x1a,0x62,0x02,0x0a,0x04,0x00,0x7c,0x04,0x7c,0x04,0x7c,0x00,0xff,0x82,0x00,0x7e,0x44,0x28,0x10,0x2e,0xc4,0x00 -+// 39567 骏 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3e,0x02,0x0a,0x13,0x62,0x02,0x14,0x0b,0x00,0x20,0x28,0x44,0xfe,0x02,0x44,0x82,0x40,0x7e,0xc4,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 39568 骐 ; -+,0x7c,0x04,0x24,0x25,0x24,0x24,0x24,0x3e,0x02,0x0a,0x13,0x62,0x02,0x0a,0x05,0x00,0x44,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x48,0x44,0x82,0x02,0x00 -+// 39569 骑 ; -+,0x00,0x7c,0x05,0x24,0x24,0x24,0x25,0x3e,0x02,0x0a,0x12,0x62,0x02,0x0a,0x04,0x00,0x20,0x20,0xfe,0x50,0x48,0x84,0xff,0x02,0xf2,0x92,0x92,0xf2,0x02,0x0a,0x04,0x00 -+// 39570 骒 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3e,0x03,0x0a,0x12,0x62,0x02,0x03,0x0a,0x04,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x30,0x58,0x54,0x94,0x13,0x12,0x10 -+// 39571 骓 ; -+,0x00,0x7c,0x04,0x24,0x25,0x26,0x24,0x3e,0x02,0x0a,0x12,0x62,0x02,0x0a,0x04,0x00,0x40,0x50,0x88,0xff,0x90,0x90,0xfe,0x90,0x90,0xfe,0x90,0x90,0x90,0xff,0x80,0x00 -+// 39572 骔 ; -+,0x00,0x7c,0x05,0x05,0x24,0x24,0x24,0x3e,0x02,0x02,0x0a,0x12,0x62,0x0b,0x04,0x00,0x20,0x10,0xff,0x02,0x00,0x7c,0x00,0x00,0xfe,0x10,0x10,0x94,0x92,0x52,0x20,0x00 -+// 39573 骕 ; -+,0x00,0x00,0x7c,0x04,0x25,0x24,0x24,0x24,0x3e,0x02,0x1a,0x62,0x02,0x0a,0x05,0x00,0x10,0x10,0xfe,0x12,0xff,0x12,0xfe,0x10,0x92,0xba,0xd6,0x92,0x92,0x92,0x12,0x00 -+// 39574 骖 ; -+,0x00,0x7c,0x04,0x24,0x24,0x25,0x24,0x3e,0x03,0x0a,0x13,0x62,0x03,0x0a,0x05,0x00,0x20,0x48,0xfc,0x04,0x20,0xff,0x50,0x8c,0x23,0x48,0x92,0x64,0x88,0x30,0xc0,0x00 -+// 39575 骗 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x3e,0x02,0x0a,0x12,0x63,0x03,0x0b,0x06,0x00,0x20,0x10,0xfe,0x82,0xfe,0x80,0x80,0xff,0xd5,0xd5,0xff,0x55,0x55,0x55,0x43,0x00 -+// 39576 骘 ; -+,0x00,0x3d,0x29,0x3b,0x24,0x35,0x28,0x20,0x0f,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x20,0x3c,0x20,0xff,0xa0,0x28,0x30,0xc0,0xf8,0x08,0xfe,0x02,0xfa,0x02,0x0a,0x04 -+// 39577 骙 ; -+,0x00,0x7d,0x05,0x24,0x24,0x24,0x24,0x3f,0x02,0x03,0x1a,0x62,0x02,0x0a,0x05,0x00,0x12,0xf4,0x29,0xca,0x44,0x84,0xfb,0x22,0x20,0xfe,0x20,0x50,0x48,0x8e,0x04,0x00 -+// 39578 骚 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x25,0x3e,0x02,0x0a,0x12,0x62,0x02,0x0a,0x04,0x00,0x00,0xfe,0x54,0x28,0x10,0x6c,0x93,0x10,0xfe,0x92,0xfe,0x10,0x12,0xff,0x01,0x00 -+// 39579 骛 ; -+,0x00,0x3f,0x0a,0x7f,0x0d,0x14,0x6c,0x00,0x07,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x10,0x10,0x1f,0xa2,0x54,0x0c,0x33,0x00,0xf8,0x08,0xfe,0x02,0xfa,0x02,0x0a,0x04 -+// 39580 骜 ; -+,0x04,0x3f,0x04,0x7f,0x08,0x0f,0x11,0x67,0x00,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x10,0x10,0x1f,0xa4,0x24,0x58,0x24,0xf3,0x10,0x10,0xfe,0x02,0xfa,0x02,0x0a,0x04 -+// 39581 骝 ; -+,0x00,0x3d,0x05,0x25,0x25,0x25,0x25,0x3f,0x02,0x0a,0x12,0x62,0x02,0x0a,0x04,0x00,0x20,0xdf,0x09,0x49,0x29,0x51,0xa5,0x02,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x82,0x00 -+// 39582 骞 ; -+,0x00,0x1f,0x12,0x0f,0x02,0x0f,0x02,0x3f,0x04,0x1f,0x64,0x07,0x00,0x1f,0x00,0x00,0x80,0xfe,0x24,0xfc,0x20,0xfc,0x20,0xfe,0x10,0xec,0x23,0xfc,0x04,0xf4,0x04,0x0c -+// 39583 骟 ; -+,0x00,0x78,0x09,0x09,0x49,0x49,0x49,0x7d,0x05,0x15,0x25,0x45,0x05,0x15,0x0a,0x00,0x20,0x10,0xfe,0x02,0xfe,0x00,0x00,0x77,0x11,0x55,0x33,0x33,0x55,0x91,0x33,0x00 -+// 39584 骠 ; -+,0x00,0x7d,0x04,0x24,0x24,0x24,0x24,0x3e,0x02,0x0b,0x12,0x62,0x02,0x15,0x08,0x00,0x00,0xff,0x28,0xfe,0xaa,0xfe,0x00,0xfe,0x00,0xff,0x10,0x94,0x92,0x12,0x50,0x20 -+// 39585 骡 ; -+,0x7c,0x04,0x04,0x24,0x24,0x24,0x20,0x3e,0x02,0x0a,0x12,0x62,0x02,0x14,0x09,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x20,0x44,0xf8,0x20,0x44,0xfe,0x10,0x94,0x92,0x52,0x20 -+// 39586 骢 ; -+,0x00,0x7c,0x04,0x24,0x24,0x24,0x24,0x20,0x3e,0x02,0x12,0x62,0x03,0x15,0x08,0x00,0x10,0x20,0xfe,0xa2,0xbe,0xca,0xb2,0xaa,0xfe,0x20,0x10,0x52,0x41,0x45,0x3c,0x00 -+// 39587 骣 ; -+,0x01,0x79,0x09,0x29,0x29,0x29,0x29,0x3d,0x05,0x05,0x15,0x65,0x06,0x2a,0x14,0x00,0xfe,0x02,0xfe,0x00,0x7c,0x08,0xff,0x10,0xff,0x22,0x44,0xff,0x44,0xd4,0x48,0x00 -+// 39588 骤 ; -+,0x03,0x79,0x09,0x29,0x29,0x29,0x2b,0x3c,0x04,0x14,0x64,0x07,0x04,0x2b,0x10,0x00,0xf0,0x2f,0xe1,0x2a,0xe4,0x3b,0xe1,0x2c,0xf0,0x12,0x94,0x58,0x94,0x13,0x10,0x10 -+// 39589 骥 ; -+,0x00,0x7d,0x04,0x25,0x24,0x24,0x24,0x3e,0x02,0x0a,0x12,0x62,0x03,0x0a,0x04,0x00,0x48,0xce,0x49,0xc9,0xfe,0x92,0xfe,0x92,0xfe,0x48,0xfe,0x48,0xff,0x44,0x82,0x00 -+// 39590 骦 ; -+,0x00,0x7c,0x05,0x25,0x24,0x24,0x24,0x3e,0x03,0x0a,0x12,0x63,0x05,0x16,0x08,0x00,0xfe,0x10,0xff,0x56,0xba,0x54,0x00,0x5f,0xf1,0xdf,0xf1,0x5f,0x51,0x51,0x5f,0x00 -+// 39591 骧 ; -+,0x00,0x7d,0x04,0x24,0x24,0x24,0x24,0x3e,0x02,0x0b,0x12,0x62,0x03,0x0a,0x04,0x00,0x10,0xff,0xaa,0xee,0x48,0xfe,0x48,0xfe,0x48,0xff,0x52,0xcc,0x44,0x67,0x42,0x00 -+// 39592 骨 ; -+,0x0f,0x08,0x0f,0x08,0x08,0x3f,0x20,0x07,0x04,0x07,0x04,0x07,0x04,0x04,0x04,0x04,0xf8,0x08,0x88,0x88,0x88,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x08,0x08,0x28,0x10 -+// 39593 骩 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x17,0x12,0x20,0x20,0x20,0x20,0xfc,0x24,0x24,0x24,0x24,0x24,0x24,0x45,0x45,0x85,0x07,0x00 -+// 39594 骪 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x17,0x12,0x00,0x7c,0x44,0x44,0x44,0xe4,0x54,0x54,0x44,0x44,0x44,0x45,0x85,0x85,0x07,0x00 -+// 39595 骫 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x17,0x12,0x20,0x20,0x20,0xfc,0x24,0xa4,0x24,0x24,0x64,0x34,0x35,0x45,0x43,0x83,0x01,0x00 -+// 39596 骬 ; -+,0x1f,0x11,0x1d,0x15,0x7f,0x40,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x11,0x15,0x12,0x00,0x3e,0x08,0x08,0xc8,0x88,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x10 -+// 39597 骭 ; -+,0x1f,0x11,0x1d,0x15,0x15,0x7f,0x40,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x00,0x3e,0x08,0x08,0x08,0xc8,0x88,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 39598 骮 ; -+,0x00,0x1f,0x11,0x1d,0x15,0x3f,0x20,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x00,0x10,0x18,0x14,0x10,0x9f,0xf0,0x10,0x10,0x08,0x08,0x08,0x05,0x05,0x03,0x01 -+// 39599 骯 ; -+,0x3e,0x22,0x3a,0x2a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x17,0x12,0x20,0x10,0x10,0xff,0x00,0x80,0x78,0x48,0x48,0x48,0x48,0x49,0x89,0x89,0x07,0x00 -+// 39600 骰 ; -+,0x3e,0x22,0x3a,0x2a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x1a,0x14,0x7c,0x44,0x44,0x44,0x44,0x87,0x00,0xfe,0x44,0x48,0x28,0x10,0x28,0x28,0x46,0x84 -+// 39601 骱 ; -+,0x3e,0x22,0x3a,0x2a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2b,0x24,0x10,0x10,0x30,0x28,0x44,0x83,0x48,0x48,0x48,0x48,0x48,0x48,0x88,0x88,0x08,0x08 -+// 39602 骲 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x16,0x12,0x20,0x20,0x40,0x7e,0x82,0x7a,0x4a,0x4a,0x7a,0x42,0x4a,0x44,0x41,0x41,0x3f,0x00 -+// 39603 骳 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x13,0x12,0x16,0x10,0x10,0x7f,0x52,0x54,0x50,0x7e,0x42,0x64,0x54,0x48,0x88,0x94,0x23,0xc2,0x00 -+// 39604 骴 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x13,0x16,0x24,0x24,0x24,0x24,0x24,0xa7,0x34,0xa4,0xa4,0xa4,0xa4,0xa5,0xa5,0xb5,0xc3,0x00 -+// 39605 骵 ; -+,0x00,0x1f,0x11,0x1d,0x15,0x3f,0x20,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x11,0x13,0x10,0x10,0x10,0x7f,0x10,0x90,0xb8,0x34,0x34,0x52,0x7d,0x90,0x10,0x10,0x10,0x10 -+// 39606 骶 ; -+,0x3e,0x22,0x3a,0x2a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x26,0x22,0x06,0x78,0x48,0x48,0x48,0xc8,0x7f,0x48,0x48,0x44,0x44,0x45,0x53,0x6b,0x49,0x00 -+// 39607 骷 ; -+,0x00,0x1f,0x11,0x1d,0x15,0x3f,0x20,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x13,0x11,0x08,0x08,0x08,0x08,0x7f,0x88,0x88,0x08,0x3f,0x21,0x21,0x21,0x21,0x21,0x3f,0x00 -+// 39608 骸 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x27,0x22,0x20,0x10,0x10,0xff,0x20,0x24,0x44,0xf8,0x10,0x22,0xc4,0x08,0x14,0x62,0x83,0x02 -+// 39609 骹 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x13,0x16,0x20,0x10,0x10,0xff,0x20,0x24,0x42,0x85,0x44,0x28,0x28,0x10,0x28,0x44,0x87,0x02 -+// 39610 骺 ; -+,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x26,0x23,0x00,0x0e,0x70,0x40,0x40,0x40,0x7f,0x40,0x40,0x7e,0x62,0x62,0x62,0xa2,0xa2,0x3e,0x00 -+// 39611 骻 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x10,0x10,0xff,0x28,0x44,0x43,0xbc,0x00,0xfe,0x20,0x3e,0x02,0x02,0x0a,0x04,0x00 -+// 39612 骼 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x13,0x1e,0x12,0x1e,0x12,0x12,0x16,0x12,0x20,0x20,0x3e,0x42,0x64,0x98,0x18,0x64,0x83,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44 -+// 39613 骽 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x16,0x00,0x0e,0xf0,0x21,0x91,0x52,0x44,0x10,0x10,0xff,0x24,0x44,0x28,0x18,0x26,0xc2,0x00 -+// 39614 骾 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x16,0x00,0x00,0xff,0x08,0x7e,0x4a,0x7e,0x4a,0x4a,0x7e,0x08,0x48,0x30,0x10,0x2c,0xc3,0x00 -+// 39615 骿 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x16,0x00,0x42,0x22,0x24,0x7f,0x24,0xa4,0x24,0xff,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 39616 髀 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x08,0x10,0x7e,0x4a,0x7e,0x4a,0x4a,0x7e,0x18,0x28,0x48,0xff,0x08,0x08,0x08,0x08 -+// 39617 髁 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x2a,0x25,0x00,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x10,0xff,0x10,0x38,0x54,0x57,0x92,0x10,0x10 -+// 39618 髂 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x23,0x3e,0x22,0x22,0x2a,0x24,0x20,0x10,0xff,0xa2,0x7e,0x44,0xa8,0x10,0x2c,0xc7,0x7e,0x44,0x44,0x44,0x7c,0x44 -+// 39619 髃 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x00,0x7e,0x52,0x7e,0x52,0xd2,0x7e,0x10,0xff,0x91,0x91,0x95,0xff,0x81,0x85,0x82 -+// 39620 髄 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x2a,0x24,0x00,0x08,0x08,0x7f,0x10,0xbe,0x52,0x1e,0xd2,0x52,0x5e,0x52,0x52,0x56,0x60,0x9f,0x00 -+// 39621 髅 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3f,0x22,0x3e,0x22,0x22,0x2a,0x25,0x10,0x92,0x54,0xff,0x30,0x58,0x96,0x10,0x20,0xff,0x44,0xc4,0x28,0x18,0x66,0x82 -+// 39622 髆 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x14,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x44,0x24,0x04,0x0c -+// 39623 髇 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x20,0x10,0xff,0x00,0x7c,0x44,0x7c,0x00,0xff,0x81,0xbd,0xa5,0xbd,0x81,0x85,0x82 -+// 39624 髈 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x2a,0x24,0x00,0x20,0x10,0xfe,0x44,0x28,0xff,0x92,0x08,0xff,0x20,0x3c,0x24,0x44,0x54,0x88,0x00 -+// 39625 髉 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x23,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x10,0x10,0xff,0xa2,0x20,0x50,0x48,0xff,0x88,0xfe,0x88,0xfe,0x88,0x88,0xff,0x80 -+// 39626 髊 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x23,0x2a,0x24,0x44,0x24,0x28,0xff,0x10,0x7e,0x10,0x10,0xff,0x20,0x7e,0x48,0x88,0x08,0xff,0x00 -+// 39627 髋 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x10,0x08,0xff,0x82,0x28,0x7f,0x28,0x7e,0x52,0x52,0x52,0x5a,0x28,0x29,0x49,0x87 -+// 39628 髌 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x10,0x08,0xff,0x82,0x0c,0x70,0x40,0x7e,0x48,0x48,0xff,0x00,0x24,0x43,0x81,0x00 -+// 39629 髍 ; -+,0x00,0x3c,0x24,0x3d,0x2d,0x7f,0x43,0x3d,0x25,0x3d,0x25,0x3d,0x25,0x26,0x2c,0x24,0x20,0x10,0x10,0xff,0x24,0x24,0xff,0x24,0x74,0x6e,0xad,0xb5,0x24,0x24,0x24,0x24 -+// 39630 髎 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x25,0x00,0xef,0xa9,0x67,0xa5,0x29,0x10,0x28,0xc7,0x22,0xc8,0x30,0xc2,0x0c,0x30,0xc0 -+// 39631 髏 ; -+,0x00,0x3e,0x22,0x3b,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x23,0x22,0x2a,0x25,0x10,0xfe,0x92,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x10,0x20,0xff,0x48,0x30,0xce -+// 39632 髐 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3f,0x22,0x3e,0x22,0x2a,0x24,0x00,0x10,0x10,0x7c,0x10,0xff,0x44,0xee,0x44,0x7f,0x80,0xfe,0x28,0x49,0x49,0x87,0x00 -+// 39633 髑 ; -+,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x23,0x3e,0x22,0x3e,0x22,0x22,0x22,0x26,0x22,0xfe,0xaa,0xaa,0xfe,0x40,0x40,0xff,0x21,0xf9,0xa9,0xf9,0x21,0x29,0xfd,0x05,0x02 -+// 39634 髒 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x23,0x3e,0x23,0x3e,0x22,0x22,0x2a,0x24,0x48,0xff,0x48,0xff,0x48,0x7a,0xad,0x49,0x87,0x24,0xff,0x24,0x44,0x44,0x84,0x04 -+// 39635 髓 ; -+,0x00,0x3c,0x24,0x34,0x34,0x7e,0x45,0x3c,0x24,0x3d,0x24,0x3c,0x24,0x25,0x2e,0x00,0x10,0x10,0xff,0x20,0x7e,0x88,0x7f,0x80,0x3e,0xaa,0xb6,0xaa,0xa6,0xa2,0x7f,0x00 -+// 39636 體 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x25,0x28,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xff,0x00,0xfe,0x82,0xfe,0x44,0x28,0xff -+// 39637 髕 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x10,0xff,0x82,0x7e,0x12,0x56,0x38,0xc0,0x7e,0x52,0x6a,0x56,0x7e,0x24,0x22,0x42 -+// 39638 髖 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x22,0x2a,0x24,0x20,0x10,0xff,0xaa,0xff,0x28,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x29,0x2b,0xcf -+// 39639 髗 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x42,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x23,0x2b,0x24,0x10,0x1f,0x10,0xff,0x92,0xfe,0x91,0xbf,0xaa,0xbe,0xaa,0xff,0xd5,0x55,0x55,0xff -+// 39640 高 ; -+,0x01,0x00,0x7f,0x00,0x07,0x04,0x07,0x00,0x3f,0x20,0x27,0x24,0x24,0x27,0x20,0x20,0x00,0x80,0xff,0x00,0xf0,0x10,0xf0,0x00,0xfe,0x02,0xf2,0x12,0x12,0xf2,0x0a,0x04 -+// 39641 髙 ; -+,0x01,0x00,0x3f,0x04,0x07,0x04,0x07,0x04,0x3f,0x20,0x27,0x24,0x24,0x27,0x20,0x20,0x00,0x80,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xfe,0x02,0xf2,0x12,0x12,0xf2,0x0a,0x04 -+// 39642 髚 ; -+,0x10,0x08,0x7f,0x00,0x3c,0x24,0x3c,0x00,0x7f,0x41,0x5d,0x55,0x5d,0x41,0x45,0x42,0x20,0x10,0x10,0xff,0x00,0x00,0x3c,0x24,0x24,0x24,0x24,0x24,0x45,0x45,0x83,0x00 -+// 39643 髛 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x41,0x5d,0x55,0x5d,0x41,0x43,0x00,0x00,0x7e,0x42,0x42,0x7e,0x50,0x50,0x50,0x7c,0x54,0x54,0x55,0x65,0xa5,0x43,0x00 -+// 39644 髜 ; -+,0x08,0x04,0x3f,0x00,0x1f,0x11,0x1f,0x00,0x3f,0x20,0x2e,0x2a,0x2e,0x20,0x22,0x21,0x00,0x3e,0xa2,0x3e,0x22,0x3e,0x08,0x32,0x92,0xff,0x92,0x92,0xa2,0xa2,0xc2,0x02 -+// 39645 髝 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x41,0x5d,0x55,0x5d,0x41,0x43,0x00,0x22,0xaa,0x77,0x22,0x56,0x89,0x00,0x7f,0x52,0x10,0x7e,0x12,0x22,0x2a,0x44,0x00 -+// 39646 髞 ; -+,0x10,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x41,0x5d,0x55,0x5d,0x41,0x45,0x42,0x00,0x7e,0x42,0x7e,0x00,0xe7,0xa5,0xf7,0x10,0xff,0x30,0x58,0x54,0x97,0x12,0x10 -+// 39647 髟 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x7f,0x08,0x11,0x3f,0x00,0x01,0x00,0x00,0x82,0x0c,0x70,0x00,0x02,0x0c,0x70,0x00,0xc1,0x02,0x04,0x88,0xb0,0xc0,0x00 -+// 39648 髠 ; -+,0x1f,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x12,0x3f,0x03,0x02,0x02,0x04,0x04,0x08,0x00,0x04,0x18,0x62,0x0c,0x70,0x02,0x0c,0x70,0x00,0xf0,0x10,0x11,0x11,0x11,0x0f,0x00 -+// 39649 髡 ; -+,0x1f,0x10,0x1e,0x10,0x1f,0x10,0x7f,0x12,0x3f,0x00,0x3f,0x02,0x04,0x04,0x08,0x00,0x04,0x18,0x62,0x04,0x18,0x62,0x84,0x18,0x60,0x00,0xff,0x20,0x21,0x21,0x1f,0x00 -+// 39650 髢 ; -+,0x1f,0x10,0x1f,0x10,0x1f,0x10,0x7f,0x12,0x3f,0x04,0x1f,0x04,0x04,0x04,0x03,0x00,0x04,0x18,0x60,0x04,0x18,0x62,0x8c,0x30,0xc0,0xf8,0x88,0xa8,0x92,0x02,0xfe,0x00 -+// 39651 髣 ; -+,0x1f,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x12,0x3f,0x00,0x3f,0x01,0x01,0x02,0x02,0x04,0x04,0x18,0x62,0x04,0x19,0x62,0x0c,0x70,0x80,0x40,0xff,0x00,0xf8,0x08,0x28,0x10 -+// 39652 髤 ; -+,0x1e,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x12,0x3e,0x00,0x7f,0x02,0x04,0x18,0x60,0x00,0x08,0x30,0xc4,0x08,0x30,0xc2,0x0c,0x70,0x80,0x80,0xff,0xa0,0x98,0x87,0x82,0x80 -+// 39653 髥 ; -+,0x1f,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x12,0x3f,0x08,0x3f,0x08,0x3f,0x08,0x08,0x08,0x02,0x04,0x19,0x62,0x0d,0x72,0x0c,0xf0,0xfc,0x04,0xff,0x04,0xff,0x04,0x14,0x08 -+// 39654 髦 ; -+,0x1f,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x12,0x3f,0x00,0x0f,0x00,0x1f,0x00,0x00,0x00,0x04,0x18,0x62,0x0c,0x71,0x06,0x18,0xe0,0xf8,0x80,0xf8,0x80,0xfd,0x81,0x7f,0x00 -+// 39655 髧 ; -+,0x1f,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x12,0x3e,0x00,0x0f,0x09,0x01,0x06,0x38,0x00,0x04,0x18,0x62,0x04,0x19,0x62,0x0c,0x70,0x80,0x80,0xfc,0x48,0x41,0x41,0x3f,0x00 -+// 39656 髨 ; -+,0x1f,0x10,0x1e,0x10,0x1e,0x10,0x7f,0x12,0x3f,0x00,0x0f,0x00,0x3f,0x02,0x04,0x18,0x04,0x18,0x62,0x04,0x18,0x61,0x86,0x18,0x60,0x00,0xfc,0x00,0xff,0x10,0x11,0x0f -+// 39657 髩 ; -+,0x1f,0x14,0x12,0x18,0x14,0x7f,0x12,0x3f,0x00,0x3f,0x00,0x08,0x08,0x0f,0x00,0x00,0x04,0x08,0x30,0xc4,0x18,0x62,0x0c,0x70,0x00,0xff,0x80,0xfc,0x84,0xfc,0x04,0x0c -+// 39658 髪 ; -+,0x1f,0x12,0x19,0x14,0x7f,0x09,0x1f,0x01,0x7f,0x02,0x03,0x05,0x18,0x60,0x01,0x0e,0x84,0x08,0x32,0x0c,0xb2,0x0c,0xb0,0x00,0xff,0x00,0xf8,0x10,0xa0,0x60,0x9c,0x08 -+// 39659 髫 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x1f,0x03,0x06,0x18,0x0f,0x08,0x0f,0x08,0x02,0x0c,0x32,0x04,0x98,0x62,0x0c,0x70,0xfc,0x04,0x14,0x08,0xfc,0x04,0xfc,0x04 -+// 39660 髬 ; -+,0x0f,0x0c,0x0a,0x0c,0x0a,0x3f,0x0a,0x1f,0x00,0x1f,0x01,0x06,0x18,0x00,0x3f,0x00,0x02,0x0c,0x31,0x02,0x0c,0xb1,0x06,0x38,0x00,0xfe,0xb0,0x8e,0x84,0x80,0xff,0x00 -+// 39661 髭 ; -+,0x1f,0x14,0x12,0x18,0x14,0x7f,0x12,0x3e,0x02,0x02,0x13,0x12,0x12,0x13,0x3c,0x00,0x04,0x18,0x62,0x0c,0x70,0x86,0x18,0xe0,0x20,0x20,0xac,0x30,0x22,0xa2,0x1e,0x00 -+// 39662 髮 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x09,0x3f,0x01,0x7f,0x02,0x03,0x05,0x18,0x60,0x01,0x0e,0x04,0x18,0x62,0x0c,0xb1,0x06,0xb8,0x10,0xff,0x00,0xf8,0x10,0xa0,0x60,0x90,0x0e -+// 39663 髯 ; -+,0x1f,0x10,0x1e,0x10,0x7f,0x12,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x3f,0x08,0x08,0x08,0x04,0x18,0x62,0x0c,0xb1,0x06,0xb8,0x80,0xfc,0x84,0xfc,0x84,0xff,0x04,0x14,0x08 -+// 39664 髰 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x08,0x7f,0x08,0x08,0x08,0x08,0x0f,0x00,0x04,0x18,0x62,0x0c,0x72,0x0c,0x70,0x00,0x90,0xff,0x90,0x90,0xf0,0x00,0xfe,0x00 -+// 39665 髱 ; -+,0x1f,0x12,0x19,0x14,0x7f,0x11,0x3f,0x04,0x07,0x08,0x37,0x04,0x07,0x04,0x03,0x00,0x84,0x18,0x62,0x0c,0xb1,0x06,0xb8,0x00,0xfc,0x04,0xc4,0x44,0xcc,0x01,0xff,0x00 -+// 39666 髲 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x0f,0x08,0x0f,0x0a,0x11,0x10,0x23,0x1c,0x04,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x80,0xfe,0x84,0xf8,0x10,0x20,0xc0,0x30,0x0e -+// 39667 髳 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x07,0x00,0x3f,0x01,0x06,0x38,0x01,0x00,0x84,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x00,0xf0,0xa0,0xff,0x42,0x40,0x40,0x40,0x80 -+// 39668 髴 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x01,0x1f,0x01,0x1f,0x12,0x1f,0x02,0x04,0x08,0x04,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x20,0xfc,0x24,0xfc,0x20,0xff,0x21,0x23,0x20 -+// 39669 髵 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x7f,0x01,0x1f,0x12,0x12,0x12,0x12,0x10,0x84,0x18,0x62,0x0c,0xb1,0x06,0x78,0x00,0xff,0x00,0xfc,0x44,0x44,0x44,0x54,0x08 -+// 39670 髶 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x3f,0x04,0x07,0x04,0x07,0x04,0x3f,0x00,0x04,0x18,0x62,0x0c,0xb1,0x06,0x38,0x00,0xfe,0x10,0xf0,0x10,0xf0,0x10,0xfe,0x10 -+// 39671 髷 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x01,0x01,0x0f,0x09,0x0f,0x09,0x09,0x0f,0x00,0x04,0x18,0x62,0x0c,0x72,0x0c,0x70,0x20,0x20,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x00 -+// 39672 髸 ; -+,0x1f,0x12,0x19,0x14,0x7f,0x11,0x3f,0x00,0x02,0x1f,0x02,0x3f,0x02,0x04,0x18,0x00,0x82,0x0c,0x32,0x0c,0xb1,0x06,0xb8,0x00,0x10,0xfe,0x10,0xff,0x10,0x0c,0x04,0x00 -+// 39673 髹 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x04,0x04,0x0f,0x18,0x68,0x09,0x0e,0x08,0x08,0x04,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x20,0x20,0xfe,0x60,0xb0,0x2c,0x27,0x22,0x20 -+// 39674 髺 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x0f,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x00,0x04,0x18,0x62,0x0c,0x71,0x06,0x78,0x00,0xfc,0x80,0xff,0x80,0xfc,0x04,0xfc,0x00 -+// 39675 髻 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x0a,0x1f,0x00,0x3f,0x00,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x04,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x80,0xff,0x80,0xfc,0x00,0xfc,0x04,0xfc,0x00 -+// 39676 髼 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x03,0x06,0x09,0x03,0x1c,0x07,0x00,0x0f,0x00,0x84,0x18,0x62,0x0c,0xb1,0x06,0x38,0xe0,0x20,0xc0,0x3c,0x80,0xf8,0x80,0xfc,0x80 -+// 39677 髽 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x04,0x0c,0x12,0x00,0x1f,0x00,0x7f,0x00,0x84,0x08,0x32,0x0d,0xb2,0x0c,0x70,0x80,0x90,0xb0,0xc8,0x80,0xfc,0x80,0xff,0x00 -+// 39678 髾 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x14,0x3e,0x04,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x08,0x04,0x18,0x64,0x18,0x62,0x0c,0xb0,0x88,0x90,0xfc,0x04,0xfc,0x04,0xfc,0x04,0x0c -+// 39679 髿 ; -+,0x0f,0x0a,0x0d,0x0a,0x3f,0x09,0x1f,0x00,0x04,0x22,0x14,0x05,0x38,0x08,0x0b,0x00,0x84,0x18,0x62,0x0c,0xb1,0x06,0xb8,0x00,0x10,0x54,0x93,0x15,0x08,0x30,0xc0,0x00 -+// 39680 鬀 ; -+,0x0f,0x0a,0x0d,0x0a,0x3f,0x09,0x1f,0x01,0x0f,0x00,0x0f,0x08,0x0f,0x00,0x03,0x1c,0x84,0x18,0x62,0x0c,0xb2,0x0c,0xb0,0x10,0xfe,0x42,0xfe,0x40,0xff,0xc1,0x45,0x42 -+// 39681 鬁 ; -+,0x0f,0x0a,0x0d,0x0a,0x7f,0x09,0x1f,0x00,0x0f,0x02,0x1f,0x07,0x0a,0x32,0x02,0x00,0x82,0x0c,0x32,0x0c,0xb1,0x06,0xb8,0x02,0x92,0x12,0xd2,0x12,0x92,0x0a,0x04,0x00 -+// 39682 鬂 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x07,0x04,0x07,0x04,0x3f,0x02,0x04,0x18,0x02,0x0d,0x32,0x0c,0xb1,0x06,0x38,0x00,0xf8,0x00,0xfc,0x10,0xff,0x10,0x0c,0x04 -+// 39683 鬃 ; -+,0x0f,0x0a,0x0d,0x0a,0x3f,0x0a,0x1f,0x00,0x1f,0x10,0x07,0x00,0x1f,0x04,0x19,0x00,0x84,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x80,0xff,0x02,0xf8,0x00,0xfe,0x88,0x84,0x80 -+// 39684 鬄 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x07,0x04,0x04,0x07,0x02,0x07,0x09,0x06,0x03,0x04,0x18,0x62,0x0d,0xb2,0x0c,0x30,0xf8,0x88,0x48,0xf8,0x00,0xfc,0x24,0xc4,0x0c -+// 39685 鬅 ; -+,0x0f,0x0a,0x0d,0x0a,0x3f,0x09,0x1f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x21,0x25,0x42,0x82,0x0c,0x32,0x0c,0xb1,0x06,0xb8,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x42,0x4a,0x84 -+// 39686 鬆 ; -+,0x0f,0x0a,0x0d,0x0a,0x3f,0x09,0x1f,0x04,0x04,0x3f,0x0c,0x16,0x15,0x24,0x04,0x04,0x84,0x08,0x32,0x0c,0xb1,0x06,0xb8,0x10,0x28,0x24,0x47,0x92,0x20,0x44,0xfe,0x02 -+// 39687 鬇 ; -+,0x1f,0x12,0x19,0x14,0x7f,0x12,0x3f,0x07,0x08,0x37,0x00,0x1f,0x00,0x0f,0x00,0x01,0x04,0x18,0x62,0x0c,0x72,0x0c,0x70,0xe0,0x40,0xf8,0x88,0xfe,0x88,0xf8,0x80,0x80 -+// 39688 鬈 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3e,0x04,0x1f,0x01,0x3f,0x02,0x0f,0x34,0x04,0x03,0x04,0x18,0x62,0x0c,0x71,0x06,0xb8,0xa0,0xf8,0x00,0xff,0x20,0xf8,0x26,0x48,0xf8 -+// 39689 鬉 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x01,0x08,0x09,0x0f,0x05,0x09,0x13,0x00,0x07,0x0c,0x70,0x04,0x1a,0x64,0x18,0x60,0x40,0x84,0x44,0xfc,0x08,0xf4,0x22,0xc0,0x3c -+// 39690 鬊 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x0f,0x01,0x1f,0x04,0x0f,0x34,0x04,0x07,0x07,0x38,0x07,0x38,0x87,0xb8,0xfc,0x80,0xfc,0x00,0xfe,0x08,0xf4,0x93,0x50,0xf0 -+// 39691 鬋 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x11,0x3f,0x04,0x3f,0x00,0x1f,0x12,0x19,0x14,0x10,0x11,0x04,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x20,0xff,0x00,0xa4,0xa4,0xa4,0xa4,0x94,0x88 -+// 39692 鬌 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x01,0x3f,0x02,0x0f,0x30,0x0f,0x0a,0x09,0x08,0x04,0x18,0x62,0x0c,0xb2,0x0c,0x30,0x00,0xff,0x00,0xfc,0x80,0xfc,0x44,0x24,0x0c -+// 39693 鬍 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x04,0x7f,0x04,0x1f,0x11,0x11,0x1f,0x00,0x84,0x18,0x62,0x0c,0xb2,0x0c,0x70,0x00,0x3e,0xa2,0x3e,0x22,0x3e,0x22,0x4a,0x04 -+// 39694 鬎 ; -+,0x0f,0x0a,0x0d,0x0a,0x3f,0x09,0x1f,0x02,0x1f,0x02,0x1f,0x12,0x1f,0x0b,0x32,0x02,0x84,0x18,0x62,0x0c,0xb2,0x0c,0xb0,0x04,0xc4,0x14,0xd4,0x54,0xd4,0x14,0x84,0x0c -+// 39695 鬏 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3e,0x00,0x1f,0x04,0x3f,0x0e,0x15,0x14,0x24,0x04,0x02,0x0c,0x72,0x0c,0x72,0x0c,0xf0,0x10,0x10,0x56,0x38,0x10,0x28,0x24,0x47,0x82 -+// 39696 鬐 ; -+,0x1f,0x1a,0x15,0x7f,0x12,0x3f,0x01,0x3f,0x01,0x7f,0x03,0x0d,0x37,0x04,0x04,0x07,0x84,0x18,0x62,0x8c,0x72,0x0c,0x30,0xf8,0x40,0xff,0x10,0x22,0xfe,0x84,0x44,0xfc -+// 39697 鬑 ; -+,0x0f,0x0a,0x0d,0x0a,0x3f,0x09,0x1f,0x02,0x0f,0x01,0x1f,0x01,0x0f,0x03,0x0d,0x01,0x84,0x08,0x32,0x04,0xd9,0x06,0xb8,0x10,0xfe,0x28,0xfe,0x28,0xf8,0x30,0x2e,0x24 -+// 39698 鬒 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x00,0x3f,0x01,0x0f,0x0a,0x09,0x7f,0x04,0x08,0x04,0x18,0x62,0x0c,0x72,0x0c,0x70,0x80,0xff,0x00,0xf8,0xa8,0x58,0xff,0x10,0x08 -+// 39699 鬓 ; -+,0x1f,0x1a,0x15,0x7f,0x11,0x3f,0x00,0x1f,0x10,0x07,0x04,0x07,0x04,0x7f,0x04,0x08,0x86,0x38,0x06,0xb8,0x06,0xb8,0x40,0xff,0x02,0xf0,0x00,0xfc,0x10,0xff,0x10,0x08 -+// 39700 鬔 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3e,0x10,0x09,0x3c,0x08,0x0b,0x08,0x08,0x14,0x23,0x04,0x18,0x64,0x18,0x62,0x0c,0xb0,0xfc,0x48,0x70,0xac,0x7b,0x20,0xf8,0x20,0xff -+// 39701 鬕 ; -+,0x1f,0x1a,0x15,0x3f,0x12,0x3f,0x02,0x3f,0x02,0x0f,0x09,0x0f,0x00,0x3f,0x01,0x0e,0x08,0x72,0x0c,0x71,0x06,0x78,0x10,0xfe,0x10,0xf8,0x08,0xf8,0x80,0xfe,0x40,0x3c -+// 39702 鬖 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x05,0x0e,0x39,0x06,0x3b,0x0c,0x03,0x00,0x0f,0x04,0x18,0x64,0x18,0x64,0x18,0x60,0xa8,0xfc,0x20,0x98,0x47,0x90,0x20,0xc0,0x00 -+// 39703 鬗 ; -+,0x1f,0x1a,0x15,0x3f,0x12,0x3f,0x02,0x1f,0x02,0x03,0x00,0x1f,0x12,0x15,0x18,0x10,0x04,0x38,0x06,0xb9,0x06,0x78,0x10,0xfe,0x10,0xf0,0x40,0xfe,0x52,0x5a,0xe6,0x42 -+// 39704 鬘 ; -+,0x1f,0x14,0x1a,0x7f,0x12,0x3f,0x00,0x07,0x05,0x04,0x1f,0x12,0x1f,0x02,0x01,0x1e,0x04,0x38,0x04,0xba,0x04,0x38,0x00,0xf0,0x10,0x90,0xfc,0x24,0xfc,0x20,0xc0,0x3c -+// 39705 鬙 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x14,0x3e,0x02,0x1f,0x12,0x1f,0x00,0x07,0x04,0x04,0x07,0x08,0x30,0xc4,0x1a,0x64,0x18,0xe0,0x10,0xfe,0xa2,0xfe,0x00,0xf8,0x88,0x48,0xf8 -+// 39706 鬚 ; -+,0x1f,0x1a,0x15,0x10,0x7f,0x12,0x3f,0x05,0x18,0x64,0x18,0x62,0x04,0x18,0x60,0x00,0x04,0x18,0x62,0x0c,0x72,0x0c,0x70,0xff,0x20,0xfe,0xca,0xa6,0x92,0xfe,0x44,0x82 -+// 39707 鬛 ; -+,0x1f,0x12,0x19,0x14,0x7f,0x12,0x3f,0x01,0x0f,0x09,0x08,0x0f,0x0a,0x0d,0x0e,0x08,0x84,0x18,0x64,0x08,0xb2,0x04,0xb8,0x00,0xf8,0x48,0x88,0xf8,0xa8,0xda,0xe6,0x82 -+// 39708 鬜 ; -+,0x1f,0x14,0x1a,0x14,0x3f,0x12,0x3f,0x19,0x15,0x1f,0x13,0x12,0x13,0x12,0x12,0x14,0x04,0x1a,0x64,0x1a,0x64,0x18,0x7e,0x32,0x2a,0x3e,0xe2,0xa2,0x62,0xa2,0x2a,0x64 -+// 39709 鬝 ; -+,0x1f,0x14,0x1a,0x14,0x3f,0x12,0x3f,0x15,0x1f,0x10,0x13,0x13,0x12,0x13,0x10,0x10,0x08,0x34,0x08,0x32,0x0c,0x30,0x7e,0x52,0x7e,0x02,0xe2,0x22,0xa2,0xe2,0x0a,0x04 -+// 39710 鬞 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x15,0x3f,0x09,0x0f,0x09,0x1f,0x10,0x1f,0x12,0x13,0x22,0x10,0x68,0x10,0x64,0x18,0x60,0xfc,0x24,0xfc,0x24,0xfe,0x00,0xfe,0x28,0x10,0x0e -+// 39711 鬟 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x09,0x0f,0x00,0x3f,0x04,0x07,0x0c,0x36,0x04,0x10,0x68,0x12,0x64,0x18,0x60,0xf8,0x48,0xf8,0x00,0xfe,0x10,0xf0,0x48,0x30,0x0e -+// 39712 鬠 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3e,0x01,0x06,0x3f,0x0a,0x0f,0x04,0x07,0x04,0x07,0x08,0x32,0x0c,0x31,0x06,0x38,0xc0,0x20,0x18,0xff,0xa8,0xf8,0x10,0xf0,0x10,0xf0 -+// 39713 鬡 ; -+,0x1f,0x1a,0x15,0x7f,0x12,0x3f,0x00,0x3f,0x2a,0x11,0x00,0x0f,0x09,0x1f,0x00,0x01,0x06,0x38,0x06,0xb8,0x06,0xb8,0x40,0xff,0x95,0xf4,0x00,0xfc,0x24,0xfe,0x40,0xc0 -+// 39714 鬢 ; -+,0x1f,0x14,0x1a,0x14,0x7f,0x12,0x3f,0x1f,0x10,0x0f,0x08,0x17,0x3e,0x05,0x07,0x02,0x0c,0x30,0x0c,0x30,0x86,0x98,0x60,0xfe,0x04,0xf8,0x90,0xf8,0x48,0x28,0xf8,0x10 -+// 39715 鬣 ; -+,0x1e,0x14,0x1a,0x14,0x7f,0x14,0x3f,0x04,0x1f,0x11,0x1f,0x12,0x15,0x12,0x18,0x10,0x1c,0xe0,0x0e,0x70,0x07,0xb8,0x20,0x90,0xfc,0x44,0xfc,0xa8,0x88,0xa5,0xd3,0x81 -+// 39716 鬤 ; -+,0x1e,0x14,0x1a,0x14,0x7f,0x14,0x3e,0x0f,0x05,0x07,0x1f,0x02,0x3f,0x06,0x1a,0x03,0x0c,0x30,0x0c,0x32,0x0c,0x70,0x40,0xfe,0x28,0x38,0xfe,0x10,0xff,0xd8,0x70,0x9e -+// 39717 鬥 ; -+,0x20,0x2f,0x22,0x2f,0x22,0x2f,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x02,0x7a,0x12,0x7a,0x12,0x7a,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 39718 鬦 ; -+,0x20,0x2f,0x24,0x2f,0x24,0x2f,0x20,0x21,0x24,0x22,0x20,0x2f,0x20,0x20,0x20,0x20,0x02,0x7a,0x12,0x7a,0x12,0x7a,0x02,0x22,0xa2,0x22,0xfa,0x22,0x22,0x22,0x2a,0x04 -+// 39719 鬧 ; -+,0x20,0x2f,0x24,0x2f,0x24,0x2f,0x20,0x2f,0x20,0x27,0x24,0x24,0x24,0x20,0x20,0x20,0x02,0x7a,0x12,0x7a,0x12,0x7a,0x82,0xfa,0x82,0xf2,0x92,0x92,0xb2,0x82,0x8a,0x04 -+// 39720 鬨 ; -+,0x20,0x2f,0x22,0x2f,0x22,0x2f,0x21,0x27,0x21,0x2f,0x21,0x22,0x2c,0x20,0x20,0x20,0x01,0xbd,0x11,0xbd,0x11,0xfd,0x21,0xf9,0x21,0xfd,0x21,0x19,0x09,0x01,0x05,0x02 -+// 39721 鬩 ; -+,0x20,0x2f,0x22,0x2f,0x22,0x2f,0x21,0x26,0x24,0x27,0x24,0x27,0x21,0x22,0x24,0x20,0x01,0x7d,0x11,0x7d,0x11,0xfd,0x01,0x39,0x09,0xb9,0x09,0xf9,0x25,0x25,0x1d,0x03 -+// 39722 鬪 ; -+,0x2f,0x24,0x2f,0x24,0x2f,0x20,0x2f,0x20,0x2f,0x29,0x2f,0x29,0x27,0x3c,0x20,0x20,0x3d,0x11,0x3d,0x11,0x3d,0x01,0x09,0x7d,0x09,0x49,0x29,0x09,0x89,0x29,0x15,0x02 -+// 39723 鬫 ; -+,0x2f,0x24,0x2f,0x24,0x2f,0x20,0x27,0x21,0x2f,0x25,0x27,0x25,0x27,0x25,0x2f,0x21,0x7a,0x22,0x7a,0x22,0xfa,0x02,0x22,0x3e,0xaa,0x6a,0x12,0x12,0x2a,0x4a,0x02,0x06 -+// 39724 鬬 ; -+,0x2f,0x24,0x2f,0x24,0x2f,0x20,0x2f,0x28,0x2d,0x25,0x2d,0x28,0x2d,0x25,0x2f,0x20,0x7a,0x22,0x7a,0x22,0x7a,0x02,0xba,0xa2,0xbe,0x2a,0xaa,0xaa,0xca,0x4a,0x8a,0x06 -+// 39725 鬭 ; -+,0x2f,0x24,0x2f,0x24,0x2f,0x20,0x3b,0x2a,0x3b,0x2a,0x3b,0x2a,0x3b,0x2a,0x3f,0x20,0x7a,0x22,0x7a,0x22,0x7a,0x02,0xba,0xa2,0xa2,0x3e,0xaa,0xaa,0xca,0x4a,0x8a,0x06 -+// 39726 鬮 ; -+,0x2f,0x24,0x2f,0x24,0x2f,0x22,0x27,0x28,0x2f,0x29,0x2d,0x25,0x3f,0x25,0x2d,0x20,0x7d,0x11,0x7d,0x11,0x7d,0x01,0xf1,0x21,0xfd,0x45,0x7d,0x6d,0x55,0x7d,0x43,0xff -+// 39727 鬯 ; -+,0x00,0x02,0x11,0x18,0x14,0x11,0x16,0x1f,0x00,0x08,0x08,0x0f,0x08,0x08,0x07,0x00,0x80,0x50,0x22,0xca,0xa6,0x12,0x4a,0xfe,0x00,0x18,0xe0,0x00,0x02,0x02,0xfe,0x00 -+// 39728 鬰 ; -+,0x04,0x04,0x3e,0x0e,0x35,0x04,0x3f,0x25,0x12,0x15,0x1f,0x08,0x0f,0x08,0x0f,0x00,0xa4,0x44,0xaf,0xae,0x55,0xa4,0xff,0x02,0x48,0x70,0xc4,0x19,0x62,0x0c,0x70,0x00 -+// 39729 鬱 ; -+,0x09,0x09,0x7e,0x1b,0x2e,0x4b,0x00,0x3f,0x2a,0x15,0x1b,0x1f,0x08,0x0e,0x09,0x07,0x04,0xe4,0x9f,0xee,0xb5,0xe4,0x00,0xff,0x12,0x60,0x04,0x18,0x60,0x02,0x0c,0x70 -+// 39730 鬲 ; -+,0x3f,0x00,0x0f,0x08,0x08,0x0f,0x00,0x3f,0x24,0x22,0x2f,0x20,0x20,0x20,0x20,0x20,0xfe,0x00,0xf8,0x08,0x08,0xf8,0x00,0xfe,0x12,0x22,0xfa,0x82,0x82,0x82,0x8a,0x04 -+// 39731 鬳 ; -+,0x00,0x00,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x12,0x13,0x10,0x1f,0x19,0x2b,0x28,0x48,0x80,0xfc,0x80,0xff,0x82,0xf8,0x82,0xfe,0x08,0xf8,0x00,0xfe,0x12,0xfa,0x42,0x46 -+// 39732 鬴 ; -+,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x63,0x55,0x7f,0x49,0x49,0x49,0x4b,0x00,0x14,0x12,0xff,0x10,0x7e,0x52,0x52,0x7e,0x52,0x7e,0x52,0x52,0x52,0x56,0x52,0x00 -+// 39733 鬵 ; -+,0x7f,0x28,0x3f,0x0c,0x16,0x24,0x00,0x3f,0x04,0x07,0x00,0x1f,0x12,0x17,0x10,0x10,0x7e,0x50,0x7f,0x18,0x29,0xc7,0x00,0xfe,0x08,0xf8,0x00,0xfe,0x22,0xf2,0x82,0x86 -+// 39734 鬶 ; -+,0x08,0x3e,0x08,0x3e,0x08,0x14,0x22,0x3f,0x04,0x07,0x00,0x1f,0x12,0x17,0x10,0x10,0xfc,0x84,0xa4,0xa4,0x32,0x5e,0x80,0xfe,0x08,0xf8,0x00,0xfe,0x22,0xf2,0x82,0x86 -+// 39735 鬷 ; -+,0x7f,0x00,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x63,0x55,0x7f,0x49,0x49,0x49,0x4b,0x41,0x42,0x24,0x99,0x99,0xa5,0xc3,0xff,0x42,0xa1,0x3e,0x62,0x94,0x08,0x34,0xc7,0x02 -+// 39736 鬸 ; -+,0x00,0x7e,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x53,0x4d,0x7f,0x49,0x49,0x49,0x45,0x42,0x30,0xcf,0x85,0x85,0xa9,0xc9,0x93,0x00,0x7e,0x52,0x52,0x7e,0x52,0x52,0x7e,0x42 -+// 39737 鬹 ; -+,0x08,0x3e,0x08,0x3e,0x08,0x14,0x62,0x1f,0x04,0x07,0x00,0x1f,0x12,0x17,0x10,0x10,0xfc,0xa4,0xd4,0xac,0xfd,0x49,0x87,0xfe,0x10,0xf0,0x00,0xfe,0x22,0xf2,0x82,0x86 -+// 39738 鬺 ; -+,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x53,0x4d,0x7f,0x49,0x49,0x49,0x45,0x42,0x40,0x7f,0x40,0xbe,0x32,0x2a,0x3e,0x00,0xff,0x20,0x7f,0x95,0x65,0x09,0x35,0x02 -+// 39739 鬻 ; -+,0x3c,0x06,0x1d,0x13,0x1d,0x06,0x0c,0x3f,0x04,0x07,0x00,0x1f,0x12,0x17,0x10,0x10,0x9e,0xa2,0xce,0xe8,0xce,0xa2,0x8e,0xff,0x08,0xf8,0x00,0xfe,0x22,0xfa,0x82,0x86 -+// 39740 鬼 ; -+,0x01,0x02,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x40,0x48,0x54,0x7e,0x42,0x41,0x3f,0x00 -+// 39741 鬽 ; -+,0x04,0x08,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x0a,0x0a,0x0b,0x13,0x12,0x22,0x41,0x00,0x00,0x02,0x84,0x98,0xe1,0x82,0x8c,0xb0,0x00,0x81,0x42,0xec,0x31,0x01,0xff,0x00 -+// 39742 鬾 ; -+,0x00,0x04,0x08,0x3f,0x29,0x3f,0x29,0x3f,0x2b,0x0a,0x0a,0x13,0x13,0x22,0x41,0x00,0x10,0x10,0x10,0x7f,0x10,0x10,0x7e,0x24,0x14,0x88,0x8c,0x52,0xe2,0x01,0xff,0x00 -+// 39743 鬿 ; -+,0x04,0x08,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x0a,0x0a,0x0b,0x13,0x12,0x22,0x41,0x00,0x00,0x06,0x38,0x20,0x20,0x3f,0x24,0x24,0x24,0xa4,0x64,0xe4,0x45,0x05,0xff,0x00 -+// 39744 魀 ; -+,0x04,0x08,0x3e,0x2a,0x3e,0x2b,0x2a,0x3e,0x14,0x15,0x16,0x17,0x24,0x24,0x43,0x00,0x10,0x10,0x10,0x28,0x44,0x87,0x4a,0x48,0x48,0x48,0xc8,0xc8,0x49,0x89,0xff,0x00 -+// 39745 魁 ; -+,0x04,0x08,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x0a,0x0a,0x0b,0x13,0x12,0x22,0x41,0x00,0x04,0x04,0x24,0x14,0x54,0x24,0x24,0x07,0x3c,0x84,0x44,0xe4,0x05,0x05,0xff,0x00 -+// 39746 魂 ; -+,0x00,0x00,0x3d,0x01,0x01,0x7f,0x11,0x11,0x10,0x24,0x22,0x7e,0x02,0x01,0x06,0x00,0x20,0x40,0xfc,0x24,0xfc,0x24,0x24,0xfc,0x50,0x54,0x5a,0x9e,0x91,0x11,0x0f,0x00 -+// 39747 魃 ; -+,0x04,0x08,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x0a,0x0a,0x0b,0x12,0x12,0x22,0x41,0x00,0x10,0x14,0x92,0xff,0x90,0x90,0xbe,0xe2,0x52,0xac,0xec,0x12,0x62,0x01,0xff,0x00 -+// 39748 魄 ; -+,0x08,0x08,0x10,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x01,0x06,0x00,0x10,0x20,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x30,0x34,0x54,0x5b,0x9f,0x11,0x0f,0x00 -+// 39749 魅 ; -+,0x04,0x08,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x0c,0x0d,0x0e,0x17,0x14,0x24,0x43,0x00,0x10,0x10,0x10,0x7e,0x10,0xff,0x10,0x38,0x54,0x57,0x92,0x90,0x11,0x01,0xff,0x00 -+// 39750 魆 ; -+,0x04,0x08,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x0c,0x0d,0x0e,0x17,0x14,0x24,0x43,0x00,0x10,0x14,0x12,0x7f,0x50,0x52,0x52,0x4c,0x48,0x5a,0x46,0xe2,0x41,0x01,0xff,0x00 -+// 39751 魇 ; -+,0x1f,0x10,0x10,0x1f,0x10,0x13,0x1c,0x13,0x12,0x13,0x12,0x13,0x20,0x23,0x4c,0x00,0xff,0x50,0x48,0xfe,0xa0,0x58,0x87,0xfc,0x44,0xfc,0x44,0xfc,0xc8,0x55,0x3f,0x00 -+// 39752 魈 ; -+,0x08,0x10,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x0a,0x0a,0x0b,0x13,0x12,0x22,0x41,0x00,0x08,0x0a,0xaa,0x9c,0xbe,0xa2,0xbe,0xa2,0x3e,0xa2,0x62,0xea,0x25,0x01,0xff,0x00 -+// 39753 魉 ; -+,0x08,0x11,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x14,0x15,0x16,0x17,0x24,0x24,0x43,0x00,0x00,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xaa,0xd6,0xd6,0x82,0x8a,0x85,0x01,0xff,0x00 -+// 39754 魊 ; -+,0x04,0x08,0x3e,0x2a,0x2a,0x3e,0x2a,0x3e,0x0c,0x0d,0x0e,0x17,0x14,0x24,0x43,0x00,0x08,0x0c,0x0a,0xff,0x08,0xe8,0xaa,0xaa,0xe4,0x0d,0xab,0xd1,0xa0,0x01,0xff,0x00 -+// 39755 魋 ; -+,0x08,0x10,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x0c,0x0d,0x0e,0x17,0x14,0x24,0x43,0x00,0x28,0x24,0x7f,0x64,0xa4,0x3f,0x24,0x24,0x3f,0x24,0xa4,0xff,0x21,0x01,0xff,0x00 -+// 39756 魌 ; -+,0x04,0x08,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x0c,0x0d,0x16,0x17,0x24,0x24,0x43,0x00,0x24,0x24,0x7e,0x24,0x3c,0x24,0x3c,0x24,0x24,0x7e,0x80,0xa5,0x43,0x01,0xff,0x00 -+// 39757 魍 ; -+,0x04,0x08,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x0c,0x0d,0x0e,0x17,0x14,0x24,0x43,0x00,0x80,0x5e,0x02,0x66,0x5a,0x7e,0x4a,0x7e,0x52,0x5e,0xc2,0xca,0x45,0x01,0xff,0x00 -+// 39758 魎 ; -+,0x08,0x10,0x3e,0x2a,0x2a,0x3e,0x2a,0x3e,0x14,0x15,0x16,0x17,0x24,0x24,0x43,0x00,0x00,0xff,0x10,0x10,0xff,0x91,0xd9,0xb5,0xdb,0x91,0x91,0x95,0x92,0x01,0xff,0x00 -+// 39759 魏 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2a,0x48,0x08,0x10,0x7e,0x14,0x24,0x18,0x14,0x61,0x00,0x10,0x20,0xfe,0x92,0x92,0xfe,0x92,0xfe,0x28,0x2a,0x2d,0x4f,0x48,0x89,0x0f,0x00 -+// 39760 魐 ; -+,0x04,0x08,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x0c,0x0d,0x0e,0x17,0x14,0x24,0x43,0x00,0x42,0x24,0xff,0x28,0x7e,0x2a,0xff,0x2a,0x7e,0x28,0x6c,0xaa,0xa9,0x01,0xff,0x00 -+// 39761 魑 ; -+,0x04,0x08,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x0c,0x0d,0x0e,0x17,0x14,0x24,0x43,0x00,0x20,0x10,0x7f,0x28,0x52,0x6a,0x7e,0x10,0x7e,0x56,0x7e,0xc2,0x43,0x01,0xff,0x00 -+// 39762 魒 ; -+,0x04,0x08,0x3f,0x29,0x3f,0x29,0x29,0x3f,0x0c,0x0c,0x0d,0x16,0x17,0x24,0x43,0x00,0x7f,0x14,0x7f,0x55,0x55,0x7f,0x00,0x3e,0x00,0x7f,0x2a,0xc9,0x99,0x01,0xff,0x00 -+// 39763 魓 ; -+,0x08,0x10,0x7e,0x4a,0x7e,0x4a,0x4a,0x7e,0x14,0x15,0x16,0x17,0x24,0x24,0x43,0x00,0x7e,0x52,0x7e,0x52,0x7e,0x10,0xff,0x52,0xff,0x52,0xff,0x90,0x11,0x11,0xff,0x00 -+// 39764 魔 ; -+,0x00,0x1f,0x12,0x17,0x13,0x16,0x1a,0x10,0x17,0x14,0x17,0x14,0x27,0x20,0x43,0x0c,0x40,0xff,0x08,0xbe,0x1c,0xab,0x4a,0x80,0xfc,0x44,0xfc,0x44,0xfd,0xa9,0x33,0x1f -+// 39765 魕 ; -+,0x08,0x10,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x14,0x14,0x15,0x16,0x27,0x24,0x43,0x00,0x32,0x54,0xff,0x52,0xb5,0xff,0x35,0x12,0xff,0x92,0xcc,0x9a,0xe6,0x83,0xff,0x00 -+// 39766 魖 ; -+,0x04,0x08,0x3f,0x29,0x29,0x3f,0x29,0x3f,0x0c,0x14,0x15,0x16,0x27,0x24,0x43,0x00,0x10,0x1e,0x10,0x7f,0x52,0x7c,0x52,0x4e,0x54,0x55,0xb6,0x94,0x7f,0x01,0xff,0x00 -+// 39767 魗 ; -+,0x08,0x7f,0x08,0x3e,0x00,0x7f,0x02,0x3c,0x10,0x7f,0x02,0x7f,0x52,0x76,0x02,0x06,0x08,0x90,0x7e,0x52,0x52,0x7e,0x52,0x7e,0x18,0x1a,0x1d,0x2f,0x28,0x49,0x87,0x00 -+// 39768 魘 ; -+,0x3f,0x2c,0x2a,0x2f,0x20,0x2f,0x2a,0x29,0x2f,0x28,0x2f,0x28,0x2f,0x21,0x42,0x4c,0xff,0x80,0x8a,0x89,0x3f,0x88,0x94,0xa3,0xfc,0x84,0xfc,0x84,0xfc,0x51,0x65,0x3f -+// 39769 魙 ; -+,0x31,0x0f,0x55,0x37,0x15,0x6f,0x21,0x21,0x0f,0x08,0x0f,0x08,0x0f,0x01,0x06,0x18,0x03,0xfc,0x50,0xdf,0x52,0xf2,0x12,0xa2,0xf8,0x88,0xf8,0x88,0xf8,0x49,0x53,0x3f -+// 39770 魚 ; -+,0x02,0x03,0x04,0x04,0x0f,0x18,0x28,0x0f,0x08,0x08,0x0f,0x00,0x12,0x11,0x21,0x00,0x00,0xf0,0x10,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0x24,0x12,0x12,0x00 -+// 39771 魛 ; -+,0x08,0x08,0x1f,0x12,0x24,0x7f,0x25,0x3f,0x25,0x25,0x3f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x00,0x7f,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x21,0xa1,0xc5,0x82,0x00 -+// 39772 魜 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x65,0x25,0x3f,0x25,0x3f,0x00,0x15,0x2a,0x28,0x43,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x28,0x28,0x28,0x28,0x44,0xc4,0x83,0x02,0x00 -+// 39773 魝 ; -+,0x08,0x08,0x1f,0x11,0x3f,0x34,0x54,0x1f,0x14,0x14,0x1f,0x00,0x2a,0x25,0x25,0x00,0x02,0x02,0x82,0x02,0x92,0x92,0x92,0x92,0x92,0x92,0x92,0x02,0x82,0x4a,0x44,0x00 -+// 39774 魞 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x1f,0x00,0x35,0x2a,0x40,0x03,0x00,0x00,0x20,0x10,0x10,0x08,0x08,0x08,0x18,0x14,0x24,0x24,0x42,0x42,0x83,0x02,0x00 -+// 39775 魟 ; -+,0x10,0x10,0x1f,0x22,0x24,0x7f,0x25,0x3f,0x25,0x3f,0x00,0x15,0x2a,0x2a,0x40,0x00,0x00,0x00,0x3f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0xff,0x00 -+// 39776 魠 ; -+,0x08,0x08,0x1f,0x12,0x24,0x7f,0x25,0x3f,0x25,0x3f,0x00,0x15,0x2a,0x2a,0x40,0x00,0x00,0x00,0x0e,0x70,0x10,0x10,0x10,0x1f,0xf0,0x10,0x10,0x10,0x91,0x91,0x0f,0x00 -+// 39777 魡 ; -+,0x00,0x08,0x0f,0x12,0x14,0x3f,0x65,0x3f,0x25,0x3f,0x00,0x35,0x2a,0x4a,0x00,0x00,0x00,0x10,0x10,0x1f,0x21,0x21,0x41,0x11,0x09,0x09,0x01,0x01,0x81,0x85,0x02,0x00 -+// 39778 魢 ; -+,0x08,0x08,0x1f,0x12,0x24,0x7f,0x25,0x3f,0x25,0x3f,0x00,0x15,0x2a,0x2a,0x40,0x00,0x00,0x7e,0x02,0x02,0x02,0x02,0x7e,0x40,0x40,0x40,0x40,0x40,0xc1,0x41,0x3f,0x00 -+// 39779 魣 ; -+,0x10,0x10,0x1f,0x22,0x3f,0x69,0x29,0x3f,0x29,0x3f,0x00,0x15,0x2a,0x2a,0x40,0x00,0x00,0xfe,0x04,0x28,0x10,0x08,0xff,0x12,0x14,0x10,0x10,0x10,0x90,0x90,0x50,0x20 -+// 39780 魤 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x28,0x28,0x28,0x48,0x49,0xca,0x4c,0x48,0x58,0x68,0x48,0x48,0x49,0x49,0x47,0x00 -+// 39781 魥 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x6a,0x55,0x55,0x02,0x00,0x00,0x7c,0x44,0x48,0x48,0x50,0x7c,0x44,0x44,0xc8,0xa8,0x90,0x2c,0x47,0x82,0x00 -+// 39782 魦 ; -+,0x10,0x1f,0x12,0x24,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x35,0x2a,0x4b,0x00,0x10,0x10,0x10,0x14,0x52,0x51,0x91,0x10,0x12,0x12,0x04,0x08,0x30,0xc0,0x00,0x00 -+// 39783 魧 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x3e,0x00,0x15,0x2a,0x2a,0x40,0x00,0x20,0x10,0x10,0xff,0x00,0x00,0x3c,0x24,0x24,0x24,0x24,0x25,0xc5,0x45,0x83,0x00 -+// 39784 魨 ; -+,0x08,0x08,0x1f,0x12,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x2a,0x55,0x55,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x52,0x52,0x52,0x7e,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 39785 魩 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x2a,0x55,0x55,0x00,0x20,0x20,0x20,0x7f,0x55,0x95,0x15,0x25,0x29,0x49,0x91,0x11,0x21,0x45,0x02,0x00 -+// 39786 魪 ; -+,0x08,0x08,0x1e,0x14,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x43,0x00,0x20,0x20,0x30,0x48,0x47,0x82,0x44,0x44,0x44,0x44,0x44,0x44,0x84,0x84,0x04,0x04 -+// 39787 魫 ; -+,0x10,0x10,0x1e,0x24,0x28,0x7e,0x2a,0x3e,0x2a,0x3e,0x00,0x55,0x55,0x40,0x01,0x00,0x10,0x10,0x10,0xff,0x92,0x94,0x10,0x18,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 39788 魬 ; -+,0x08,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x42,0x00,0x00,0x0e,0xf0,0x80,0x80,0xfe,0xc2,0xa2,0xa4,0x94,0x98,0x88,0x14,0x23,0xc2,0x00 -+// 39789 魭 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x01,0x00,0x00,0x7e,0x00,0x00,0x00,0xff,0x28,0x28,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 39790 魮 ; -+,0x08,0x0e,0x12,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0x48,0x48,0x48,0x48,0x4b,0x6c,0x48,0x48,0x48,0x48,0x49,0x59,0x69,0x47,0x00 -+// 39791 魯 ; -+,0x02,0x03,0x04,0x0f,0x18,0x2f,0x08,0x0f,0x0a,0x11,0x07,0x04,0x07,0x04,0x07,0x00,0x00,0xe0,0x40,0xfc,0x44,0xfc,0x44,0xfc,0x44,0x22,0xf8,0x08,0xf8,0x08,0xf8,0x00 -+// 39792 魰 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0x10,0xff,0x44,0x44,0x44,0x24,0x28,0x28,0x10,0x10,0x28,0x47,0x82,0x00 -+// 39793 魱 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0xff,0x20,0x20,0x20,0x3e,0x22,0x22,0x44,0x44,0x7c,0x04,0x04,0x04,0xff,0x00 -+// 39794 魲 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2b,0x2a,0x40,0x01,0x10,0x08,0x08,0x7f,0x41,0x41,0x41,0x7f,0x40,0x40,0x40,0x40,0x40,0x80,0x80,0x00 -+// 39795 魳 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x7f,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x49,0x49,0x4d,0x8a,0x88,0x08,0x08 -+// 39796 魴 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2b,0x2a,0x40,0x00,0x20,0x10,0x10,0xff,0x20,0x20,0x20,0x3e,0x22,0x22,0x22,0x22,0x42,0xca,0x84,0x00 -+// 39797 魵 ; -+,0x08,0x0e,0x12,0x14,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2b,0x2a,0x40,0x00,0x08,0x08,0x28,0x24,0x44,0x43,0x80,0x7e,0x12,0x12,0x12,0x22,0x22,0xca,0x84,0x00 -+// 39798 魶 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x55,0x53,0x61,0x41,0x41,0xc1,0x45,0x42,0x00 -+// 39799 魷 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x3e,0x2a,0x2a,0x3e,0x00,0x00,0x55,0x55,0x01,0x00,0x20,0x28,0x24,0x20,0xff,0x28,0x28,0x28,0x28,0x28,0x48,0x48,0x49,0x89,0x07,0x00 -+// 39800 魸 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x1f,0x15,0x15,0x1f,0x00,0x15,0x2a,0x2a,0x41,0x00,0x08,0x48,0x48,0x48,0x7f,0x40,0x40,0x40,0x7c,0x44,0x44,0x44,0xc4,0x84,0x04,0x04 -+// 39801 魹 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x0e,0x70,0x10,0x10,0x1f,0xf0,0x10,0x1f,0xf0,0x10,0x11,0x91,0x91,0x0f,0x00 -+// 39802 魺 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x00,0xff,0x04,0x04,0xf4,0x94,0x94,0x94,0xf4,0x04,0x04,0x04,0x04,0x14,0x08 -+// 39803 魻 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x1f,0x15,0x15,0x1f,0x00,0x15,0x2a,0x2a,0x40,0x00,0x00,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x08,0x08,0x08,0x88,0x88,0x08,0x08 -+// 39804 魼 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x20,0xa4,0x42,0xff,0x01 -+// 39805 魽 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0xc4,0xfc,0x44,0x00 -+// 39806 魾 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x00,0x7f,0x08,0x08,0x10,0x18,0x34,0x33,0x51,0x10,0x10,0x90,0x90,0xff,0x00 -+// 39807 魿 ; -+,0x08,0x0f,0x12,0x14,0x3f,0x55,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x00,0x10,0x10,0x30,0x28,0x44,0xa7,0x12,0x00,0xfe,0x04,0x48,0x30,0x90,0x98,0x08,0x00 -+// 39808 鮀 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x25,0x45,0x00,0x10,0x08,0x7f,0x42,0x44,0x20,0x20,0x26,0x28,0x30,0x20,0x22,0xa2,0x62,0x5e,0x00 -+// 39809 鮁 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x42,0x00,0x28,0x24,0x24,0xff,0x20,0x20,0x3e,0x22,0x44,0x64,0x58,0x88,0x94,0x27,0xc2,0x00 -+// 39810 鮂 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x7f,0x41,0x49,0x49,0x49,0x49,0x49,0x55,0x53,0x61,0x41,0xc1,0xff,0x41,0x00 -+// 39811 鮃 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x7f,0x10,0x10,0x92,0x52,0x54,0x10,0xff,0x10,0x10,0x10,0x90,0x90,0x10,0x10 -+// 39812 鮄 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x41,0x00,0x28,0x28,0xfe,0x2a,0x2a,0xfe,0xa8,0xa8,0xff,0x29,0x29,0x4d,0x4a,0x88,0x08,0x08 -+// 39813 鮅 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x20,0x14,0x14,0x24,0x24,0x24,0x28,0x6a,0xa9,0x31,0x30,0xa2,0x62,0x9e,0x00 -+// 39814 鮆 ; -+,0x02,0x02,0x13,0x12,0x13,0x3e,0x03,0x04,0x0f,0x38,0x0f,0x08,0x0f,0x00,0x11,0x21,0x20,0x20,0xbc,0x21,0xa1,0x1f,0xe0,0x40,0xf8,0x88,0xf8,0x88,0xf8,0x00,0x24,0x12 -+// 39815 鮇 ; -+,0x00,0x10,0x1e,0x24,0x28,0x7e,0x2a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x10,0x10,0x10,0x10,0xfe,0x10,0x10,0xff,0x10,0x38,0x58,0x54,0x94,0x13,0x12,0x10 -+// 39816 鮈 ; -+,0x08,0x0e,0x12,0x14,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x20,0x20,0x7f,0x41,0x81,0x79,0x49,0x49,0x49,0x79,0x01,0x01,0x81,0x8a,0x04,0x00 -+// 39817 鮉 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x7e,0x12,0x12,0x22,0x22,0x4a,0x84,0x7e,0x42,0x42,0x42,0xc2,0xfe,0x42,0x00 -+// 39818 鮊 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x15,0x1f,0x00,0x2a,0x4a,0x00,0x08,0x08,0x10,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x21,0x21,0x21,0xbf,0xa1,0x00 -+// 39819 鮋 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0xff,0xc1,0x00 -+// 39820 鮌 ; -+,0x08,0x0e,0x12,0x14,0x3f,0x55,0x1f,0x15,0x15,0x1f,0x00,0x15,0x2a,0x2a,0x40,0x00,0x20,0x10,0x10,0xff,0x10,0x20,0x24,0x44,0x78,0x88,0x10,0x10,0xa4,0x42,0xfe,0x02 -+// 39821 鮍 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x01,0x55,0x52,0x00,0x10,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0xc2,0xa4,0xa4,0x98,0x18,0x27,0xc2,0x00 -+// 39822 鮎 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0xfe,0x42,0x00 -+// 39823 鮏 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x10,0x10,0x50,0x50,0x7f,0x90,0x10,0x10,0x7e,0x10,0x10,0x10,0x10,0x90,0xff,0x00 -+// 39824 鮐 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x08,0x08,0x10,0x14,0x22,0x7f,0x02,0x00,0x7e,0x42,0x42,0x42,0x42,0xfe,0x42,0x00 -+// 39825 鮑 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x4a,0x00,0x20,0x20,0x40,0x7e,0x82,0x02,0x7a,0x4a,0x4a,0x7a,0x42,0x46,0x41,0xc1,0xbf,0x00 -+// 39826 鮒 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x4a,0x00,0x22,0x22,0x22,0x42,0x42,0xff,0x42,0x52,0x4a,0x4a,0x42,0x42,0x42,0xca,0x44,0x00 -+// 39827 鮓 ; -+,0x10,0x1f,0x11,0x22,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x55,0x4a,0x4a,0x00,0x10,0x10,0x20,0x3f,0x50,0x50,0x9e,0x10,0x10,0x10,0x1e,0x10,0x10,0x90,0x90,0x10 -+// 39828 鮔 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x00,0x7f,0x40,0x40,0x40,0x7e,0x42,0x42,0x42,0x7e,0x40,0x40,0xc0,0xc0,0x7f,0x00 -+// 39829 鮕 ; -+,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x40,0x00,0x10,0x10,0x10,0x10,0x7f,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0xc2,0x7e,0x42,0x00 -+// 39830 鮖 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x55,0x4a,0x4a,0x00,0x00,0xff,0x10,0x10,0x20,0x20,0x40,0x7e,0xc2,0x42,0x42,0x42,0x42,0xfe,0x42,0x00 -+// 39831 鮗 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x20,0x20,0x3e,0x44,0x44,0xa8,0x10,0x28,0xc7,0x10,0x08,0x08,0x10,0x08,0x08,0x00 -+// 39832 鮘 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x28,0x2c,0x4a,0x4a,0xc8,0x7f,0x48,0x48,0x48,0x48,0x48,0x45,0x45,0x43,0x41,0x00 -+// 39833 鮙 ; -+,0x10,0x11,0x1e,0x25,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x55,0x55,0x40,0x00,0x00,0xee,0x22,0x32,0xaa,0xaa,0x22,0x22,0x66,0xaa,0x32,0x22,0x22,0xaa,0x44,0x00 -+// 39834 鮚 ; -+,0x08,0x08,0x1f,0x12,0x24,0x5f,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x7e,0x00,0x00,0x7e,0x42,0x42,0x42,0xfe,0x42,0x00 -+// 39835 鮛 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0x1f,0x10,0x10,0x10,0xff,0x10,0x10,0x54,0x52,0x93,0x11,0x10,0x50,0x20 -+// 39836 鮜 ; -+,0x08,0x08,0x1e,0x12,0x24,0x3e,0x6a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x41,0x00,0x00,0x0e,0x70,0x40,0x40,0x7f,0x40,0x40,0x7e,0x62,0x62,0x62,0xa2,0xa2,0x3e,0x00 -+// 39837 鮝 ; -+,0x04,0x02,0x0f,0x00,0x3f,0x02,0x05,0x1a,0x67,0x0c,0x37,0x04,0x07,0x00,0x09,0x10,0x48,0x50,0xfe,0x80,0xff,0x10,0xe8,0x47,0xfc,0x44,0xfc,0x44,0xfc,0x00,0x24,0x92 -+// 39838 鮞 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x4a,0x00,0x00,0xff,0x10,0x20,0xff,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x85,0x82,0x00 -+// 39839 鮟 ; -+,0x10,0x10,0x1e,0x22,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x41,0x00,0x20,0x10,0xff,0x82,0x90,0x10,0x20,0xff,0x24,0x44,0x48,0x30,0x18,0x26,0xc2,0x00 -+// 39840 鮠 ; -+,0x08,0x0e,0x12,0x14,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x52,0x00,0x20,0x3c,0x44,0x48,0xff,0x80,0xbc,0xa4,0xa4,0xa4,0xb4,0xa8,0x21,0x21,0x1f,0x00 -+// 39841 鮡 ; -+,0x08,0x0f,0x12,0x14,0x3f,0x6a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x54,0x41,0x00,0x28,0x28,0x28,0x28,0x29,0xaa,0xac,0x28,0x6c,0xaa,0x29,0x48,0x49,0x89,0x07,0x00 -+// 39842 鮢 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0x50,0x7e,0x50,0x90,0x10,0xff,0x18,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 39843 鮣 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x40,0x9e,0x92,0x92,0x92,0xf2,0x92,0x92,0x92,0xda,0x94,0x10,0x10,0x10,0x10 -+// 39844 鮤 ; -+,0x1f,0x04,0x07,0x08,0x35,0x02,0x0d,0x33,0x04,0x0f,0x34,0x07,0x04,0x07,0x09,0x10,0xe2,0x12,0x92,0x92,0x12,0x12,0x0a,0xf4,0x20,0xf8,0x48,0xf8,0x48,0xf8,0x24,0x92 -+// 39845 鮥 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x20,0x20,0x7e,0x42,0xa4,0x18,0x18,0x64,0x83,0x7c,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 39846 鮦 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0xff,0x81,0x81,0xbd,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x85,0x82,0x00 -+// 39847 鮧 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x4a,0x00,0x10,0x10,0xff,0x10,0xfe,0x12,0xfe,0x90,0xff,0x11,0x13,0x28,0x28,0xc4,0x83,0x00 -+// 39848 鮨 ; -+,0x08,0x08,0x1f,0x12,0x24,0x5f,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x00,0x40,0x4e,0x70,0x40,0x41,0x3f,0x00,0x7e,0x42,0x42,0x7e,0x42,0xc2,0xfe,0x42 -+// 39849 鮩 ; -+,0x08,0x08,0x1f,0x12,0x24,0x5f,0x15,0x15,0x1f,0x15,0x15,0x1f,0x00,0x55,0x55,0x00,0x02,0x42,0x24,0x7f,0x24,0x24,0x24,0x24,0xff,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 39850 鮪 ; -+,0x08,0x08,0x1f,0x12,0x24,0x5f,0x15,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x45,0x00,0x08,0x08,0x7f,0x10,0x20,0x3e,0x62,0xbe,0x22,0x22,0x3e,0x22,0x22,0xaa,0x64,0x00 -+// 39851 鮫 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x3e,0x00,0x2a,0x55,0x55,0x00,0x00,0x20,0x10,0x10,0xff,0x00,0x44,0x42,0x85,0x44,0x28,0x28,0x10,0x2c,0x47,0x82,0x00 -+// 39852 鮬 ; -+,0x08,0x08,0x1e,0x14,0x3f,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x4a,0x00,0x10,0x10,0xff,0x28,0x44,0x83,0x7c,0x00,0xff,0x20,0x3e,0x02,0x02,0x8a,0x84,0x00 -+// 39853 鮭 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x41,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0xff,0x00,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 39854 鮮 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x44,0x24,0x28,0xff,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x10,0x10,0x90,0x90,0x10 -+// 39855 鮯 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x10,0x10,0x28,0x28,0x44,0x43,0xbc,0x00,0x00,0x3e,0x22,0x22,0x22,0xbe,0xa2,0x00 -+// 39856 鮰 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0x00,0xff,0x81,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x81,0xff,0x81,0x00 -+// 39857 鮱 ; -+,0x10,0x10,0x3e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x4a,0x00,0x10,0x10,0x7c,0x12,0x12,0x14,0xff,0x10,0x20,0x66,0xb8,0x20,0x21,0xa1,0x9f,0x00 -+// 39858 鮲 ; -+,0x10,0x10,0x3e,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x40,0x00,0x48,0x4c,0x4a,0x8a,0x88,0xbf,0x88,0x88,0x94,0x94,0x94,0x92,0xa2,0xa3,0xc2,0x00 -+// 39859 鮳 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x12,0x7a,0x14,0x18,0xff,0x10,0x20,0x7e,0xa0,0x20,0x3e,0x02,0x02,0x0a,0x04 -+// 39860 鮴 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x4a,0x4a,0x00,0x48,0x48,0x48,0x88,0xbf,0x88,0x88,0x98,0x9c,0xac,0xaa,0xcb,0x8a,0x88,0x88,0x08 -+// 39861 鮵 ; -+,0x08,0x08,0x1f,0x12,0x24,0x5f,0x15,0x15,0x1f,0x15,0x15,0x1f,0x00,0x55,0x55,0x00,0x00,0x42,0x22,0x24,0x7e,0x42,0x42,0x42,0x7e,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 39862 鮶 ; -+,0x10,0x10,0x1e,0x24,0x3f,0x6a,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x55,0x55,0x00,0x00,0x00,0xfc,0x24,0x24,0xff,0x24,0xfc,0x40,0x40,0xfe,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 39863 鮷 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x44,0x28,0xfe,0x12,0x12,0xfe,0x90,0x90,0xff,0x11,0x31,0x55,0x52,0x90,0x10,0x10 -+// 39864 鮸 ; -+,0x08,0x08,0x1e,0x14,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x20,0x7c,0x48,0x90,0xfe,0x92,0x92,0xfe,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 39865 鮹 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x92,0x52,0x54,0x7e,0x42,0x42,0x7e,0x42,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44 -+// 39866 鮺 ; -+,0x02,0x1f,0x00,0x1f,0x01,0x3f,0x03,0x05,0x1a,0x67,0x0c,0x07,0x04,0x07,0x08,0x10,0x20,0xfc,0x80,0xfc,0x00,0xff,0x00,0xf0,0x20,0xfc,0x44,0xfc,0x44,0xfc,0x92,0x91 -+// 39867 鮻 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x2a,0x55,0x55,0x00,0x20,0x20,0x44,0xfe,0x00,0x44,0x43,0xa0,0x3e,0x44,0xa4,0x18,0x18,0x24,0xc3,0x00 -+// 39868 鮼 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x7e,0x02,0x7e,0x02,0x7e,0x00,0xff,0x81,0x7e,0x24,0x14,0x08,0x18,0x27,0xc2,0x00 -+// 39869 鮽 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x3f,0x2a,0x2a,0x3e,0x00,0x00,0x54,0x55,0x40,0x00,0x10,0x10,0x28,0x24,0x42,0xfd,0x10,0x10,0xff,0x10,0x10,0x94,0x92,0x12,0x50,0x20 -+// 39870 鮾 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x2a,0x55,0x55,0x00,0x00,0x1e,0xe0,0x91,0x52,0x44,0x10,0x10,0xff,0x24,0x44,0x28,0x18,0x66,0x82,0x00 -+// 39871 鮿 ; -+,0x10,0x1e,0x25,0x28,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0x00,0xff,0x90,0x94,0xf4,0x94,0x94,0xf4,0x94,0x9c,0xf5,0x95,0x13,0x10,0x00 -+// 39872 鯀 ; -+,0x10,0x10,0x3e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x0e,0x70,0x10,0x24,0x78,0x10,0x22,0x7f,0x09,0x28,0x2a,0x49,0x09,0x28,0x10 -+// 39873 鯁 ; -+,0x08,0x08,0x1e,0x12,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x41,0x00,0x00,0xfe,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x50,0x20,0x30,0x4c,0x87,0x02 -+// 39874 鯂 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x00,0x7f,0x14,0x14,0x7f,0x55,0x55,0x63,0x41,0x41,0x7f,0x41,0x41,0xc1,0xff,0x00 -+// 39875 鯃 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x00,0x7f,0x10,0x10,0x7c,0x24,0x24,0xff,0x00,0x7e,0x42,0x42,0x42,0xc2,0x7e,0x00 -+// 39876 鯄 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x14,0x12,0x10,0xff,0x10,0x92,0x52,0x54,0x38,0x54,0x94,0x13,0x12,0x10,0x50,0x20 -+// 39877 鯅 ; -+,0x10,0x10,0x3d,0x24,0x3e,0x6a,0x2a,0x3f,0x2a,0x2a,0x2a,0x3f,0x00,0x55,0x55,0x00,0x00,0x07,0xb8,0x88,0x88,0x8f,0xa8,0x28,0xa8,0xa8,0xa8,0xbf,0xc0,0x30,0x0f,0x00 -+// 39878 鯆 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x40,0x00,0x14,0x12,0xff,0x10,0x10,0xfe,0x92,0x92,0xfe,0x92,0xfe,0x92,0x92,0x92,0x96,0x00 -+// 39879 鯇 ; -+,0x08,0x08,0x1e,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x35,0x4a,0x01,0x00,0x20,0x10,0x10,0xff,0x82,0x00,0x7c,0x00,0xff,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 39880 鯈 ; -+,0x08,0x08,0x08,0x11,0x10,0x34,0x57,0x14,0x14,0x15,0x14,0x14,0x14,0x10,0x11,0x11,0x40,0x7c,0xc4,0x28,0x30,0xcc,0x7b,0x48,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x2a,0x29 -+// 39881 鯉 ; -+,0x08,0x08,0x1e,0x12,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x41,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 39882 鯊 ; -+,0x10,0x48,0x24,0x09,0x0a,0x31,0x12,0x07,0x18,0x6f,0x08,0x0f,0x08,0x0f,0x12,0x21,0x20,0x24,0xa2,0x25,0x18,0xe0,0x00,0xe0,0x40,0xf8,0x88,0xf8,0x88,0xf8,0x44,0x22 -+// 39883 鯋 ; -+,0x08,0x1e,0x12,0x24,0x7f,0x2a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x54,0x40,0x00,0x08,0x08,0x48,0x28,0x0a,0xa9,0x28,0x49,0x49,0x8a,0x82,0x84,0x84,0x88,0x90,0x20 -+// 39884 鯌 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x35,0x2a,0x4a,0x00,0x08,0x08,0x48,0x7e,0x48,0x88,0x08,0x7f,0x00,0x3e,0x22,0x22,0x22,0xa2,0xbe,0x22 -+// 39885 鯍 ; -+,0x08,0x0e,0x12,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x10,0x10,0x24,0x7e,0x02,0x54,0x54,0x54,0x54,0x55,0x55,0x93,0x00 -+// 39886 鯎 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x42,0x00,0x08,0x0c,0x0a,0x08,0xff,0x88,0x88,0xf5,0x95,0x96,0x94,0xd5,0x2b,0x13,0x21,0x00 -+// 39887 鯏 ; -+,0x10,0x11,0x1e,0x22,0x25,0x7e,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x31,0xc1,0x41,0x45,0xf5,0x45,0xe5,0xd5,0x55,0x45,0x45,0x41,0x41,0x45,0x42,0x00 -+// 39888 鯐 ; -+,0x08,0x08,0x1f,0x12,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x41,0x00,0x10,0x10,0x10,0x7c,0x10,0x10,0xff,0x10,0x10,0x5e,0x50,0x50,0x50,0xb0,0x1f,0x00 -+// 39889 鯑 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x00,0x44,0x28,0x18,0xe4,0x10,0xff,0x20,0x50,0xfe,0x92,0x92,0x92,0x96,0x10,0x10,0x10 -+// 39890 鯒 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0xfe,0x04,0x28,0x18,0xfe,0x92,0x92,0xfe,0x92,0xfe,0x92,0x92,0x92,0x96,0x00 -+// 39891 鯓 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x43,0x00,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x45,0x46,0xfc,0x0c,0x14,0x24,0xc4,0x14,0x08 -+// 39892 鯔 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x29,0x4a,0x52,0x94,0x4a,0x29,0x7f,0x49,0x49,0x7f,0x49,0x49,0x49,0x7f,0x00 -+// 39893 鯕 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x41,0x00,0x44,0x44,0xff,0x44,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x00,0x24,0x43,0x81,0x00 -+// 39894 鯖 ; -+,0x10,0x10,0x1f,0x22,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x35,0x2a,0x4a,0x00,0x10,0xff,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0xc2,0x4a,0x44 -+// 39895 鯗 ; -+,0x02,0x1f,0x00,0x0f,0x01,0x3f,0x02,0x0d,0x72,0x07,0x1c,0x07,0x04,0x07,0x09,0x10,0x10,0xfe,0x80,0xfc,0x00,0xff,0x10,0xe8,0x47,0xf8,0x48,0xf8,0x48,0xf8,0x24,0x92 -+// 39896 鯘 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x7e,0x10,0xff,0x30,0x58,0x97,0x10,0x10,0xff,0x24,0x68,0x18,0x26,0xc2,0x00 -+// 39897 鯙 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x00,0x7e,0x42,0x7e,0x00,0x7e,0x04,0x08,0xff,0x08,0x08,0x28,0x10 -+// 39898 鯚 ; -+,0x10,0x10,0x1e,0x24,0x3f,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x0e,0x70,0x10,0xff,0x38,0x54,0x93,0x7c,0x08,0x10,0xff,0x10,0x10,0x10,0x50,0x20 -+// 39899 鯛 ; -+,0x10,0x10,0x1f,0x22,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x6a,0x55,0x41,0x00,0x00,0x7f,0x49,0x49,0x7d,0x49,0x7f,0x41,0x5d,0x55,0x55,0x5d,0x81,0x85,0x02,0x00 -+// 39900 鯜 ; -+,0x08,0x08,0x1e,0x12,0x3e,0x6a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x40,0x01,0x20,0x10,0xff,0x44,0x24,0x28,0xff,0x10,0x10,0xff,0x24,0x44,0x28,0x18,0x66,0x82 -+// 39901 鯝 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x00,0xff,0x91,0x91,0xff,0x91,0x91,0xbd,0xa5,0xa5,0xbd,0x81,0x81,0xff,0x81,0x00 -+// 39902 鯞 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x7e,0x02,0x7e,0x02,0x7e,0x00,0xff,0x91,0x7e,0x52,0x52,0x52,0x56,0x10,0x10 -+// 39903 鯟 ; -+,0x08,0x08,0x1e,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x10,0x10,0xff,0x10,0x7e,0x52,0x7e,0x52,0x7e,0x10,0x38,0x54,0x57,0x92,0x10,0x10 -+// 39904 鯠 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x10,0x10,0xff,0x10,0x54,0x54,0x54,0xba,0x31,0x10,0x38,0x57,0x92,0x10,0x10,0x10 -+// 39905 鯡 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x28,0x28,0x28,0xef,0x28,0x28,0xee,0x28,0x28,0x28,0xef,0x28,0x28,0x28,0x28,0x00 -+// 39906 鯢 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x41,0x00,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x28,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 39907 鯣 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x55,0x55,0x00,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x20,0x20,0x7f,0x55,0xa5,0x29,0x49,0x31,0xc5,0x02 -+// 39908 鯤 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x88,0x88,0x8b,0xec,0x88,0xa9,0xc9,0x87,0x00 -+// 39909 鯥 ; -+,0x08,0x0e,0x12,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x41,0x00,0x10,0x10,0x7c,0x10,0x10,0xff,0x48,0x44,0x93,0x10,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 39910 鯦 ; -+,0x08,0x08,0x1e,0x12,0x25,0x7e,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x00,0x84,0x84,0xf4,0x96,0x25,0xa4,0x44,0xb4,0x0f,0x00,0x7e,0x42,0x42,0x42,0xfe,0x00 -+// 39911 鯧 ; -+,0x08,0x08,0x1e,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0xff,0x81,0x81,0xff,0x81,0x81,0xff,0x00 -+// 39912 鯨 ; -+,0x08,0x08,0x1e,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x00,0x20,0x10,0xff,0x00,0x00,0x7e,0x42,0x42,0x7e,0x10,0x54,0x52,0x93,0x11,0x50,0x20 -+// 39913 鯩 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0x28,0x44,0x83,0x7c,0x00,0xfe,0xaa,0xaa,0xfe,0xaa,0xaa,0xaa,0x86,0x00 -+// 39914 鯪 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0x7e,0x10,0xff,0x48,0x44,0xa3,0x3e,0x42,0xa4,0x18,0x18,0x27,0xc2,0x00 -+// 39915 鯫 ; -+,0x10,0x1f,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x55,0x55,0x40,0x00,0x00,0xf0,0xa0,0xbf,0xb1,0xf1,0xa9,0xaa,0xea,0xaa,0xa4,0xe4,0x2a,0x33,0x22,0x20 -+// 39916 鯬 ; -+,0x1f,0x04,0x3f,0x0e,0x15,0x64,0x03,0x04,0x1f,0x68,0x0f,0x08,0x0f,0x12,0x21,0x00,0x20,0x7e,0x52,0x92,0x22,0x4a,0xf4,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x22,0x11,0x00 -+// 39917 鯭 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x41,0x00,0x00,0x7e,0x04,0x08,0xff,0x08,0x08,0x28,0x10,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 39918 鯮 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x82,0x00,0xfe,0x00,0x00,0xff,0x10,0x94,0x92,0x12,0x10,0x50,0x20 -+// 39919 鯯 ; -+,0x10,0x10,0x1e,0x24,0x3f,0x6b,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x21,0x21,0xa1,0xf5,0x25,0xfd,0x25,0xfd,0xad,0xad,0xad,0xa9,0xb9,0x25,0x22,0x00 -+// 39920 鯰 ; -+,0x08,0x08,0x1e,0x14,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x10,0x10,0x28,0x24,0x53,0x88,0x7e,0x04,0x28,0x10,0x8a,0xa9,0x21,0x24,0x1c,0x00 -+// 39921 鯱 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x42,0x00,0x10,0x10,0x1e,0x10,0xff,0x92,0xfc,0x91,0x9f,0x80,0xbc,0xa4,0xa5,0x25,0x47,0x00 -+// 39922 鯲 ; -+,0x11,0x10,0x1e,0x23,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x55,0x56,0x40,0x00,0x04,0x84,0x84,0xea,0x91,0x80,0xe8,0xa4,0xa2,0xa2,0xa0,0x28,0x24,0xa2,0x42,0x00 -+// 39923 鯳 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x41,0x00,0x10,0x08,0xff,0x80,0x87,0xbc,0xa4,0xa4,0xbf,0xa4,0xa4,0xa5,0xa3,0xbb,0x25,0x04 -+// 39924 鯴 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0xfc,0x04,0x1c,0xe4,0x24,0xfc,0xa4,0xa4,0xfc,0x24,0x25,0x3b,0xcb,0x01,0x00 -+// 39925 鯵 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0x24,0x7e,0x10,0xff,0x28,0x44,0x93,0x68,0x12,0x64,0x08,0x30,0xc0,0x00 -+// 39926 鯶 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0xff,0x92,0xfe,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 39927 鯷 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x42,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0x00,0xff,0x10,0x9e,0x90,0xd0,0x30,0x1f,0x00 -+// 39928 鯸 ; -+,0x10,0x1e,0x12,0x24,0x3f,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x40,0x00,0x40,0x5c,0x84,0x84,0xbf,0x90,0x90,0xbe,0xc8,0xff,0x88,0x94,0x94,0xa3,0xc2,0x00 -+// 39929 鯹 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x55,0x55,0x40,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0x90,0xff,0x90,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 39930 鯺 ; -+,0x10,0x10,0x1e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x54,0x40,0x00,0x10,0x10,0x7d,0x12,0x14,0xff,0x10,0x20,0x7e,0xc2,0x42,0x7e,0x42,0xc2,0x7e,0x00 -+// 39931 鯻 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x42,0x00,0x21,0x21,0xf9,0x25,0x25,0xfd,0xad,0xad,0xfd,0x25,0x75,0xa9,0xa5,0x21,0x25,0x22 -+// 39932 鯼 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x28,0x92,0xaa,0x82,0xfe,0x24,0x42,0xa1,0x3c,0x44,0xa8,0x18,0x24,0xc3,0x00 -+// 39933 鯽 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0xef,0xa9,0xa9,0xe9,0xa9,0xa9,0xe9,0x89,0x89,0xa9,0xcd,0x8a,0x08,0x08,0x08 -+// 39934 鯾 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x40,0x7f,0x48,0x88,0xbe,0xaa,0xbe,0xaa,0xbe,0x88,0xc8,0xb0,0x90,0xa8,0xc7,0x82 -+// 39935 鯿 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x01,0x55,0x56,0x00,0x20,0x10,0xfe,0x82,0xfe,0x80,0x80,0xff,0xd5,0xd5,0xff,0xd5,0x55,0x55,0x43,0x00 -+// 39936 鰀 ; -+,0x10,0x10,0x1e,0x22,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x55,0x54,0x01,0x00,0x0e,0xf0,0x22,0x92,0x54,0x7e,0x20,0xff,0x20,0x3e,0x22,0x54,0x48,0x94,0x63,0x00 -+// 39937 鰁 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0x12,0xf4,0x38,0x54,0x54,0x93,0x50,0x20 -+// 39938 鰂 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x01,0xf1,0x91,0x95,0xf5,0x95,0x95,0xf5,0x95,0x95,0xf5,0x01,0xa1,0x95,0x12,0x00 -+// 39939 鰃 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0xfe,0x00,0xff,0xa0,0x92,0x94,0x88,0xa4,0xc7,0x82 -+// 39940 鰄 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x02,0x00,0x04,0x06,0x05,0xff,0xa4,0xa4,0xfc,0xa5,0xad,0xce,0xb4,0x95,0x2b,0x4b,0x81,0x00 -+// 39941 鰅 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x15,0x1f,0x00,0x55,0x55,0x00,0x00,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x7f,0x49,0x4d,0x7f,0x41,0x41,0x45,0x42 -+// 39942 鰆 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2b,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0xff,0x10,0xfe,0x20,0xff,0x48,0x84,0xff,0x44,0x7c,0x44,0x44,0x7c,0x00 -+// 39943 鰇 ; -+,0x10,0x1f,0x11,0x22,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x55,0x55,0x00,0x00,0x00,0x7e,0x14,0x08,0xff,0x2a,0xc8,0x18,0x00,0x08,0x7f,0x18,0x2c,0x2b,0x4a,0x08 -+// 39944 鰈 ; -+,0x10,0x10,0x3f,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x3f,0x2a,0x2a,0x2a,0x47,0x02,0x00,0xa4,0xa4,0xff,0xa4,0xa4,0xbc,0x80,0xff,0x10,0xff,0x10,0x38,0x54,0x93,0x10,0x10 -+// 39945 鰉 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x00,0x00,0xfe,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 39946 鰊 ; -+,0x10,0x10,0x1e,0x24,0x28,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x10,0x10,0xff,0x10,0xfe,0x92,0xd6,0xba,0xfe,0x30,0x58,0x54,0x97,0x12,0x10,0x10 -+// 39947 鰋 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0xff,0x80,0xbe,0xa2,0xbe,0xa2,0xbe,0x88,0xff,0x92,0xb4,0x8c,0xb2,0xff,0x00 -+// 39948 鰌 ; -+,0x10,0x10,0x3e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x42,0x24,0xff,0x28,0x28,0xfe,0xaa,0xaa,0xce,0x82,0xfe,0x82,0x82,0xfe,0x82,0x00 -+// 39949 鰍 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x40,0x00,0x08,0xe8,0x48,0x48,0x69,0xfa,0x4c,0xe8,0xd8,0x48,0x48,0x54,0x54,0x63,0x42,0x00 -+// 39950 鰎 ; -+,0x10,0x11,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x00,0x08,0xc8,0x7e,0x4a,0x7f,0x8a,0xbe,0x48,0x7e,0x48,0x7f,0x88,0xc8,0x38,0x0f,0x00 -+// 39951 鰏 ; -+,0x10,0x10,0x1e,0x24,0x28,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x00,0x00,0xfe,0x00,0x7c,0x44,0x44,0x7c,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 39952 鰐 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x00,0x55,0x55,0x00,0x00,0xee,0xaa,0xaa,0xee,0x00,0x7c,0x00,0xff,0x20,0x7e,0x02,0x02,0x14,0x08,0x00 -+// 39953 鰑 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x40,0x7e,0xaa,0x4a,0x52,0x92,0x2a,0x44,0x00 -+// 39954 鰒 ; -+,0x08,0x08,0x1f,0x11,0x22,0x5f,0x15,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x00,0x40,0x40,0x7f,0x80,0x7e,0x42,0x7e,0x42,0x7e,0x20,0x3e,0x62,0x94,0x88,0x97,0x62 -+// 39955 鰓 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x00,0x55,0x55,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x20,0x92,0x91,0x41,0x44,0x44,0x3c,0x00 -+// 39956 鰔 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x02,0x00,0x08,0x0c,0x0a,0xff,0x88,0xf8,0x88,0xf9,0xd5,0xd6,0xf4,0x85,0x0b,0x33,0x01,0x00 -+// 39957 鰕 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x00,0x00,0xef,0xa1,0xa1,0xef,0x80,0x80,0xef,0x89,0x8a,0xe6,0x84,0x8c,0x93,0xa2,0x00 -+// 39958 鰖 ; -+,0x10,0x10,0x1f,0x22,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x20,0x20,0xff,0x40,0x7c,0x90,0x7f,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x4a,0x44 -+// 39959 鰗 ; -+,0x10,0x10,0x1e,0x25,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x40,0x4f,0x49,0xf9,0x4f,0x49,0x49,0xe9,0xaf,0xa9,0xa9,0xe9,0x11,0x15,0x22,0x00 -+// 39960 鰘 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x82,0x00,0xfe,0x10,0x24,0x7e,0x12,0x10,0x7e,0x10,0x10,0xff,0x00 -+// 39961 鰙 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x55,0x55,0x40,0x00,0x24,0x24,0xff,0x24,0x24,0x10,0xff,0x10,0x20,0x7e,0xc2,0x42,0x42,0x7e,0x42,0x00 -+// 39962 鰚 ; -+,0x10,0x1e,0x12,0x24,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x82,0x00,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x42,0x7e,0x00,0xff,0x00 -+// 39963 鰛 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 39964 鰜 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2b,0x3e,0x2a,0x2a,0x3e,0x01,0x56,0x55,0x00,0x00,0x84,0x48,0xfe,0x50,0xfe,0x52,0xff,0x52,0xfe,0x50,0xd8,0x54,0x57,0x52,0x50,0x00 -+// 39965 鰝 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x20,0x10,0xff,0x00,0x7e,0x42,0x7e,0x00,0xff,0x81,0xbd,0xa5,0xbd,0x81,0x85,0x82 -+// 39966 鰞 ; -+,0x08,0x08,0x1f,0x11,0x22,0x7f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x00,0x55,0x55,0x00,0x10,0x20,0x7e,0x42,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xab,0xab,0x01,0x05,0x02 -+// 39967 鰟 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0xa2,0x10,0xfe,0x20,0x3c,0x24,0x44,0x44,0x94,0x08 -+// 39968 鰠 ; -+,0x10,0x10,0x3e,0x22,0x44,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0xfe,0xa2,0x54,0x38,0x2c,0xc3,0x10,0xfe,0x92,0x92,0xfe,0x10,0x12,0xff,0x01,0x00 -+// 39969 鰡 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x20,0xde,0x8a,0xaa,0xba,0xd2,0xae,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 39970 鰢 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0x7f,0x48,0x7e,0x48,0x7e,0x48,0x48,0x7f,0x01,0xab,0xab,0x01,0x05,0x02,0x00 -+// 39971 鰣 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x04,0x04,0xee,0xa4,0xa4,0xbf,0xa0,0xe2,0xbf,0xa2,0xaa,0xaa,0xe2,0x0a,0x04,0x00 -+// 39972 鰤 ; -+,0x10,0x10,0x3e,0x25,0x3f,0x6b,0x2b,0x3f,0x2b,0x2b,0x3f,0x01,0x57,0x55,0x00,0x00,0x00,0x40,0x9f,0xc4,0x44,0x5f,0xd5,0x15,0x15,0xd5,0x55,0x55,0x57,0xc4,0x04,0x04 -+// 39973 鰥 ; -+,0x10,0x10,0x1f,0x12,0x3f,0x35,0x55,0x1f,0x15,0x15,0x1f,0x00,0x55,0x55,0x00,0x00,0x00,0x7f,0x55,0x55,0x7f,0x00,0x08,0x2a,0x29,0x49,0x28,0x2a,0x49,0x09,0x08,0x08 -+// 39974 鰦 ; -+,0x10,0x10,0x3e,0x25,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x56,0x55,0x00,0x00,0x84,0x44,0x48,0xff,0x44,0x44,0x88,0xa9,0xfe,0x42,0x44,0x84,0xaa,0xff,0x21,0x00 -+// 39975 鰧 ; -+,0x01,0x3c,0x25,0x24,0x3f,0x24,0x24,0x27,0x3c,0x25,0x24,0x24,0x24,0x55,0x4a,0x00,0x24,0xa8,0xfe,0x20,0xff,0x68,0xbc,0x4b,0xfc,0xa4,0xfc,0xa4,0xfc,0x52,0x49,0x00 -+// 39976 鰨 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xf7,0x11,0x55,0x33,0xdd,0x11,0x55,0x22,0x00 -+// 39977 鰩 ; -+,0x10,0x11,0x3e,0x24,0x7e,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x0e,0xf0,0xa2,0x54,0x00,0x80,0xfe,0x10,0x10,0xff,0x10,0x92,0x92,0x92,0xfe,0x00 -+// 39978 鰪 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x41,0x00,0x10,0x10,0x7e,0x10,0xff,0x20,0x42,0xff,0x01,0xfe,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 39979 鰫 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x82,0x08,0x44,0x92,0x30,0x48,0x87,0x7c,0x44,0x44,0x44,0x7c,0x00 -+// 39980 鰬 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x10,0x1e,0x10,0xff,0x92,0xfe,0x91,0x8f,0x88,0xff,0xa4,0x94,0x88,0x14,0x63,0x00 -+// 39981 鰭 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x10,0x12,0x7e,0x14,0xff,0x10,0x3e,0xe1,0x3f,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00 -+// 39982 鰮 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x01,0x00,0x00,0xfc,0xa4,0xa4,0xb4,0xcc,0xfc,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 39983 鰯 ; -+,0x10,0x11,0x3e,0x24,0x48,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0xef,0x21,0x21,0xef,0x88,0x88,0xef,0x21,0xa5,0x63,0xa5,0x29,0x21,0xa5,0x42 -+// 39984 鰰 ; -+,0x11,0x10,0x1c,0x25,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x04,0x84,0x84,0xff,0x55,0x55,0x9f,0xd5,0xb5,0x9f,0x84,0x84,0x84,0x84,0x84,0x00 -+// 39985 鰱 ; -+,0x10,0x10,0x1e,0x25,0x3e,0x6a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x01,0x00,0x08,0x08,0x7f,0x08,0xbe,0xaa,0x3e,0xaa,0xbe,0x88,0xff,0x88,0x88,0xc8,0x3f,0x00 -+// 39986 鰲 ; -+,0x04,0x3f,0x04,0x1f,0x04,0x3f,0x09,0x16,0x63,0x04,0x1f,0x08,0x0f,0x08,0x0f,0x12,0x20,0xa0,0x3e,0x44,0x64,0x98,0x28,0x47,0xf0,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x22 -+// 39987 鰳 ; -+,0x10,0x10,0x3d,0x24,0x48,0x3e,0x2b,0x2b,0x3f,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x00,0xa4,0xa4,0xf4,0xa4,0xef,0x45,0xf5,0x55,0xf5,0x45,0xf5,0x49,0x49,0x55,0x62,0x00 -+// 39988 鰴 ; -+,0x11,0x15,0x25,0x47,0x08,0x17,0x12,0x33,0x54,0x1f,0x15,0x17,0x15,0x17,0x15,0x19,0x10,0x50,0x50,0xdf,0x12,0xd2,0x32,0xd2,0x8a,0xca,0x44,0xc4,0x44,0xca,0x73,0x52 -+// 39989 鰵 ; -+,0x10,0x1f,0x35,0x13,0x7f,0x15,0x1f,0x04,0x07,0x08,0x2f,0x08,0x0f,0x08,0x0f,0x12,0x10,0x90,0x3f,0x24,0xd4,0x08,0x37,0x00,0xf0,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x44 -+// 39990 鰶 ; -+,0x10,0x10,0x3e,0x25,0x49,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x88,0xef,0xa9,0x6a,0x24,0xa4,0x42,0xbd,0x00,0xff,0x10,0x50,0x94,0x13,0x51,0x20 -+// 39991 鰷 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x00,0x00,0x48,0x48,0x5f,0x91,0xaa,0x84,0xaa,0xb1,0xa4,0xbf,0xa4,0x86,0xa5,0xd5,0x88,0x00 -+// 39992 鰸 ; -+,0x08,0x08,0x1e,0x12,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x00,0x00,0xff,0x80,0xbe,0xa2,0xa2,0xbe,0x80,0xe7,0xa5,0xa5,0xa5,0xe7,0x80,0xff,0x00 -+// 39993 鰹 ; -+,0x10,0x11,0x1d,0x21,0x3f,0x6b,0x2b,0x3f,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x01,0x00,0x00,0xef,0x41,0xea,0x26,0xe4,0x4a,0xf1,0x00,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 39994 鰺 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6b,0x2b,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x03,0x00,0x20,0x48,0xfc,0x00,0x84,0x45,0xef,0x30,0x48,0xa7,0xc8,0x32,0xcc,0x30,0xc0,0x00 -+// 39995 鰻 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xff,0xa9,0xff,0x00,0x7e,0x42,0x24,0x18,0x27,0xc2 -+// 39996 鰼 ; -+,0x08,0x09,0x1e,0x14,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x00,0x00,0x00,0xef,0xa9,0x65,0x63,0xa5,0x11,0x20,0x7e,0x42,0x42,0x7e,0xc2,0xc2,0x7e,0x00 -+// 39997 鰽 ; -+,0x10,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x24,0x24,0xff,0x24,0xff,0xa5,0xff,0xa5,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00 -+// 39998 鰾 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0xff,0x28,0xff,0xa9,0xff,0x00,0x7e,0x00,0xff,0x08,0x4a,0x49,0x89,0x28,0x10 -+// 39999 鰿 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x10,0x7e,0x10,0x7e,0x10,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x42 -+// 40000 鱀 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x1a,0x13,0x04,0x0f,0x38,0x0f,0x08,0x0f,0x09,0x11,0x7e,0x10,0x50,0x7f,0x18,0x29,0x47,0xf0,0x20,0xfc,0x44,0xfc,0x44,0xfc,0x24,0x22 -+// 40001 鱁 ; -+,0x10,0x10,0x1e,0x25,0x3e,0x6a,0x2a,0x3f,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x47,0x00,0x00,0x7f,0x10,0x10,0x90,0xaa,0x54,0xac,0x96,0xa5,0x84,0x94,0x88,0xc0,0x3f,0x00 -+// 40002 鱂 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x3e,0x2a,0x2a,0x2a,0x43,0x06,0x00,0x28,0xa8,0xaf,0xb5,0xb2,0xec,0x2a,0x32,0xff,0xa2,0xaa,0xaa,0xa2,0x2a,0x24,0x00 -+// 40003 鱃 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x82,0x44,0xff,0x10,0x7c,0x10,0x10,0xff,0x20,0x3e,0x52,0xbe,0x12,0x12,0xff,0x00 -+// 40004 鱄 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x12,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x92,0x04,0xff,0x24,0x14,0x04,0x14,0x08 -+// 40005 鱅 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x02,0x08,0xff,0x88,0xbe,0x8a,0xff,0x8a,0xbe,0x88,0xff,0xc9,0xff,0xc9,0x7f,0x49,0x4b -+// 40006 鱆 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x00,0x55,0x55,0x00,0x10,0xfe,0x44,0x28,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x10,0xff,0x10,0x10,0x10 -+// 40007 鱇 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x02,0x20,0x10,0xff,0x90,0xfe,0x92,0xff,0x92,0xfe,0x90,0xd6,0xb8,0xb4,0xd3,0x12,0x30 -+// 40008 鱈 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0xfe,0x10,0xff,0x92,0xd6,0x10,0xd6,0x00,0x7e,0x02,0x7e,0x02,0x02,0x7e,0x00 -+// 40009 鱉 ; -+,0x24,0x15,0x3f,0x2e,0x35,0x24,0x25,0x03,0x04,0x1f,0x68,0x0f,0x08,0x0f,0x09,0x10,0x90,0x10,0x9f,0xb2,0xcc,0x8c,0xb3,0xe0,0x40,0xfc,0x84,0xfc,0x84,0xfc,0x24,0x92 -+// 40010 鱊 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x7e,0x24,0x18,0xff,0x32,0x54,0xb0,0x10,0xff,0xa5,0xc3,0xbd,0xa5,0xbd,0x81,0x83 -+// 40011 鱋 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x02,0x00,0x10,0x1e,0x10,0xff,0x92,0xfe,0x91,0x8f,0x80,0x94,0xd5,0xb6,0x14,0x14,0x7f,0x00 -+// 40012 鱌 ; -+,0x10,0x10,0x3e,0x24,0x7f,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x00,0x20,0x7c,0x48,0xfe,0x92,0xfe,0x10,0x20,0xd2,0x2c,0xd8,0x2c,0xcb,0x2a,0x10,0x00 -+// 40013 鱍 ; -+,0x11,0x10,0x1e,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0xea,0xad,0x46,0x44,0x83,0xdc,0x54,0xd4,0xa3,0x80,0xde,0x54,0x48,0x54,0xe3,0x00 -+// 40014 鱎 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x0e,0x70,0x10,0xff,0x24,0x7e,0xa5,0x3c,0x00,0xff,0x81,0xbd,0xa5,0xbd,0x81,0x83 -+// 40015 鱏 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0xff,0x24,0xff,0xa5,0xff,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x08,0x7f,0x08,0x08 -+// 40016 鱐 ; -+,0x10,0x10,0x1e,0x25,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x01,0x55,0x56,0x00,0x10,0xfe,0x12,0xff,0x12,0x7e,0xd5,0xd7,0x91,0xff,0x91,0xd7,0x55,0x55,0x55,0x00 -+// 40017 鱑 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x48,0x48,0xfe,0x48,0x48,0xff,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x00,0x44,0x42,0x82 -+// 40018 鱒 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x44,0x28,0xff,0x28,0xfe,0xaa,0xae,0xc2,0xbe,0x82,0xfe,0x04,0xff,0x44,0x24,0x0c -+// 40019 鱓 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x3e,0x00,0x00,0x55,0x55,0x00,0x00,0x00,0xee,0xaa,0xee,0x00,0xfe,0x92,0xfe,0x92,0xfe,0x10,0xff,0x10,0x10,0x10,0x10 -+// 40020 鱔 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x00,0x00,0x42,0x24,0xff,0x10,0x7e,0x10,0xff,0x92,0x54,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00 -+// 40021 鱕 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x0e,0x70,0x94,0x58,0xff,0x38,0x57,0x92,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00 -+// 40022 鱖 ; -+,0x10,0x10,0x1c,0x24,0x28,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x02,0x00,0x00,0xff,0x80,0xd4,0xa4,0xff,0x85,0xa0,0xaa,0xaa,0xfa,0xa2,0x45,0x45,0x89,0x00 -+// 40023 鱗 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x55,0x55,0x01,0x00,0x10,0x52,0x34,0xff,0x38,0x56,0x10,0x42,0x77,0x92,0xaa,0x6f,0x42,0x82,0x02,0x02 -+// 40024 鱘 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x7e,0x02,0x7e,0x02,0x7e,0x00,0xef,0x49,0xef,0x04,0xff,0x44,0x24,0x04,0x14,0x08 -+// 40025 鱙 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x10,0x10,0x7e,0x10,0xff,0x44,0xef,0x44,0xff,0x00,0xff,0x28,0x49,0x49,0x87,0x00 -+// 40026 鱚 ; -+,0x10,0x1e,0x22,0x24,0x40,0x3e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x08,0x08,0xff,0x08,0x7e,0x00,0x7e,0x42,0x7e,0x24,0xff,0x00,0x7e,0x42,0x7e,0x00 -+// 40027 鱛 ; -+,0x08,0x08,0x1e,0x12,0x24,0x5f,0x15,0x15,0x1f,0x15,0x15,0x1f,0x00,0x2a,0x2a,0x00,0x22,0x12,0x14,0x7f,0x49,0x6b,0x5d,0x7f,0x00,0x3e,0x22,0x3e,0x22,0xa2,0x7e,0x00 -+// 40028 鱜 ; -+,0x10,0x10,0x1c,0x25,0x29,0x7f,0x2a,0x3f,0x2b,0x2a,0x3e,0x00,0x55,0x55,0x02,0x00,0x20,0x90,0x97,0x3d,0x65,0xbe,0xa6,0x3d,0xe5,0xa5,0xb5,0xaf,0x34,0x24,0x04,0x04 -+// 40029 鱝 ; -+,0x10,0x1e,0x12,0x24,0x3f,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x00,0x10,0xfe,0x10,0x54,0xff,0x44,0xfe,0x82,0xfe,0x82,0xfe,0x82,0xfe,0x44,0x42,0x82 -+// 40030 鱞 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0xfe,0xaa,0xfe,0x00,0xff,0x00,0x7e,0x42,0x7e,0x2a,0x44,0xc4,0x63,0x42,0x00 -+// 40031 鱟 ; -+,0x0e,0x08,0x0e,0x08,0x0e,0x08,0x3f,0x22,0x03,0x04,0x0f,0x14,0x07,0x04,0x07,0x11,0xae,0x42,0xae,0xa2,0x4e,0xa2,0xff,0x02,0xf8,0x10,0xf8,0x48,0xf8,0x48,0xf8,0x22 -+// 40032 鱠 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7f,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x20,0x20,0x50,0x4c,0x83,0xfe,0xd6,0xba,0xfe,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00 -+// 40033 鱡 ; -+,0x10,0x13,0x3e,0x2a,0x7f,0x2a,0x3e,0x2b,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x00,0x00,0x04,0xc6,0x45,0x7f,0xc4,0x54,0x55,0xfd,0x56,0xd2,0x14,0x25,0x4b,0x53,0x21,0x00 -+// 40034 鱢 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x41,0x00,0x00,0x7e,0x42,0x7e,0x00,0xef,0xa9,0xef,0x00,0x10,0xff,0x38,0x54,0x97,0x12,0x10 -+// 40035 鱣 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x20,0x10,0xff,0x00,0xfe,0x82,0xba,0xaa,0xfe,0x00,0x7c,0x44,0x7c,0x44,0xff,0x00 -+// 40036 鱤 ; -+,0x10,0x10,0x1c,0x24,0x28,0x7e,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x55,0x55,0x40,0x00,0x08,0x0c,0x0a,0xff,0x88,0xea,0x8a,0xe4,0xa5,0xeb,0x01,0x20,0x56,0x45,0x7c,0x00 -+// 40037 鱥 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x3e,0x2a,0x2a,0x2b,0x46,0x00,0x08,0x08,0x2e,0x28,0xff,0x08,0xff,0x88,0xa8,0xea,0xb6,0x94,0xa5,0x4b,0xb1,0x00 -+// 40038 鱦 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x3e,0x2a,0x2a,0x2a,0x2a,0x46,0x00,0x00,0xfe,0xaa,0xaa,0xee,0x28,0xee,0xaa,0xee,0xaa,0xaa,0xee,0x28,0x29,0x1f,0x00 -+// 40039 鱧 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x28,0x28,0xfe,0xaa,0xfe,0xaa,0xfe,0x00,0xfe,0x00,0x7c,0x44,0x7c,0x28,0xff,0x00 -+// 40040 鱨 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x4a,0x06,0x92,0x54,0xff,0x82,0x7c,0x44,0x7c,0x92,0xa2,0x7e,0x00,0x7e,0x42,0x7e,0x42,0x7e -+// 40041 鱩 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x40,0x00,0x00,0x7f,0x08,0xff,0x89,0x6b,0x08,0x6b,0x00,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x00 -+// 40042 鱪 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x11,0x7e,0x14,0xff,0x10,0x3e,0xe2,0x3e,0x22,0x3e,0x00 -+// 40043 鱫 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x0e,0xf0,0xa2,0x54,0xff,0x91,0x6a,0xa5,0x1c,0x20,0x3e,0x64,0x98,0x18,0xe7,0x00 -+// 40044 鱬 ; -+,0x10,0x10,0x1d,0x25,0x48,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x7e,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0xff,0x10,0xff,0xa9,0xa9,0xa9,0x8b,0x00 -+// 40045 鱭 ; -+,0x10,0x10,0x3e,0x24,0x7f,0x2a,0x2b,0x3e,0x2a,0x3e,0x00,0x2a,0x55,0x55,0x00,0x00,0x20,0x10,0xff,0x28,0xd7,0xd6,0x55,0xd4,0x00,0x44,0x7c,0x44,0x7c,0x44,0x84,0x04 -+// 40046 鱮 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x55,0x55,0x01,0x00,0x00,0x40,0x9e,0x92,0xd6,0x9a,0x8a,0xae,0xea,0xaa,0xff,0x00,0x44,0x82,0x02,0x00 -+// 40047 鱯 ; -+,0x10,0x11,0x1e,0x24,0x3e,0x6b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x48,0xff,0x68,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x44,0x28,0x18,0xe7,0x00 -+// 40048 鱰 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0xfe,0xaa,0xaa,0xfe,0x10,0x7d,0x12,0xff,0x08,0x3e,0xe2,0x3e,0x22,0x22,0x3e,0x00 -+// 40049 鱱 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x41,0x00,0x00,0xff,0x94,0xff,0x94,0xbe,0xaa,0xbe,0xaa,0xbe,0x88,0xff,0xcb,0xff,0x41,0x43 -+// 40050 鱲 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x00,0x00,0x52,0xa4,0x52,0x20,0xfe,0xaa,0x92,0xfe,0xda,0xb6,0xdb,0xb7,0xd9,0x91,0x00 -+// 40051 鱳 ; -+,0x10,0x10,0x3c,0x25,0x7f,0x2a,0x2b,0x3f,0x2a,0x2a,0x3e,0x00,0x55,0x54,0x00,0x00,0x91,0x91,0xba,0x6f,0xf9,0xaa,0x6d,0xff,0x10,0xff,0x10,0x38,0x54,0x93,0x10,0x00 -+// 40052 鱴 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x02,0x00,0x24,0xff,0x24,0x00,0xff,0xa9,0xff,0x14,0xff,0x90,0x8a,0xca,0xa4,0x0d,0x13,0x01 -+// 40053 鱵 ; -+,0x10,0x10,0x1e,0x22,0x25,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x88,0x88,0xff,0xcc,0x32,0x0a,0xff,0x88,0xe8,0x89,0xe6,0xa4,0xed,0x13,0x01,0x00 -+// 40054 鱶 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x00,0x00,0x44,0x28,0xff,0x10,0xfe,0x10,0xfe,0x54,0xff,0x44,0x7c,0x44,0x7c,0x4a,0x64,0x42 -+// 40055 鱷 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x00,0x00,0x00,0xff,0x10,0x77,0x55,0x77,0x10,0xff,0x10,0x77,0x55,0x55,0x77,0x10,0xff,0x00 -+// 40056 鱸 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x55,0x55,0x02,0x00,0x10,0x1c,0x10,0xff,0x92,0xfe,0x91,0xbf,0xaa,0xbe,0xaa,0xff,0x55,0x55,0xff,0x00 -+// 40057 鱹 ; -+,0x10,0x11,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x55,0x55,0x00,0x00,0x44,0xff,0x44,0xee,0xaa,0xee,0x48,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x48,0x7f,0x40 -+// 40058 鱺 ; -+,0x11,0x10,0x1f,0x25,0x3f,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x56,0x55,0x02,0x00,0xef,0x00,0xef,0xad,0x29,0x10,0xff,0xa8,0xfe,0xaa,0xfe,0xc8,0xee,0x49,0x67,0x00 -+// 40059 鱻 ; -+,0x07,0x08,0x17,0x04,0x07,0x04,0x0f,0x11,0x1f,0x22,0x5f,0x15,0x1f,0x15,0x1f,0x2a,0xf0,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x24,0x3a,0x48,0x3e,0x2a,0x3e,0x2a,0x3e,0xaa -+// 40060 鱼 ; -+,0x04,0x07,0x04,0x08,0x0f,0x18,0x28,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x7f,0x00,0x00,0xf0,0x10,0x20,0xfc,0x84,0x84,0x84,0xfc,0x84,0x84,0xfc,0x00,0x00,0xff,0x00 -+// 40061 鱽 ; -+,0x08,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x07,0x78,0x00,0x00,0x00,0x7f,0x11,0x11,0x11,0x11,0x11,0x11,0x21,0x21,0x21,0x41,0x45,0x82,0x00 -+// 40062 鱾 ; -+,0x08,0x08,0x1e,0x12,0x24,0x7f,0x29,0x29,0x3f,0x29,0x29,0x3f,0x00,0x07,0x78,0x00,0x00,0x00,0x7e,0x02,0x02,0x02,0x7e,0x40,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 40063 鱿 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x20,0x28,0x24,0x24,0xff,0x28,0x28,0x28,0x28,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 40064 鲀 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x92,0x92,0x92,0xfe,0x10,0x10,0x11,0x11,0x0f,0x00 -+// 40065 鲁 ; -+,0x02,0x03,0x04,0x0f,0x38,0x0f,0x08,0x0f,0x00,0x7f,0x00,0x07,0x04,0x07,0x04,0x07,0x00,0xf0,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x00,0xf8,0x08,0xf8,0x08,0xf8 -+// 40066 鲂 ; -+,0x08,0x08,0x1e,0x12,0x24,0x7f,0x25,0x3f,0x25,0x25,0x3f,0x00,0x07,0x78,0x01,0x00,0x20,0x10,0x08,0xff,0x20,0x20,0x20,0x3e,0x22,0x22,0x22,0x42,0x42,0x8a,0x04,0x00 -+// 40067 鲃 ; -+,0x10,0x1f,0x11,0x22,0x3f,0x69,0x29,0x3f,0x29,0x29,0x29,0x3f,0x00,0x07,0x78,0x00,0x00,0x7e,0x52,0x52,0x52,0x52,0x52,0x7e,0x40,0x40,0x40,0x41,0x41,0x41,0x3f,0x00 -+// 40068 鲄 ; -+,0x08,0x08,0x0f,0x12,0x1f,0x35,0x55,0x1f,0x15,0x15,0x15,0x1f,0x00,0x03,0x3c,0x00,0x00,0x7e,0x02,0x02,0x7a,0x02,0x7a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x82,0x0a,0x04 -+// 40069 鲅 ; -+,0x10,0x1e,0x22,0x24,0x7f,0x29,0x29,0x3f,0x29,0x29,0x3f,0x00,0x0e,0x71,0x00,0x00,0x28,0x24,0x20,0xfe,0x20,0x20,0x3e,0x22,0x42,0x64,0x54,0x88,0x94,0x23,0xc2,0x00 -+// 40070 鲆 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x00,0x00,0x00,0xfe,0x10,0x92,0x52,0x54,0x54,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 40071 鲇 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x65,0x25,0x3f,0x25,0x25,0x3f,0x00,0x07,0x78,0x00,0x00,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 40072 鲈 ; -+,0x10,0x10,0x1f,0x22,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x06,0x79,0x02,0x00,0x10,0x10,0x1f,0x10,0x10,0x7e,0x42,0x42,0x7e,0x40,0x40,0x80,0x80,0x00,0x00,0x00 -+// 40073 鲉 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x15,0x1f,0x00,0x07,0x78,0x00,0x10,0x10,0x10,0x10,0x7e,0x52,0x52,0x52,0x7e,0x52,0x52,0x52,0x52,0x52,0x7e,0x00 -+// 40074 鲊 ; -+,0x08,0x08,0x0f,0x11,0x12,0x3f,0x55,0x15,0x1f,0x15,0x15,0x1f,0x00,0x07,0x78,0x00,0x20,0x20,0x20,0x7f,0x50,0x90,0x10,0x1f,0x10,0x10,0x1f,0x10,0x10,0x90,0x10,0x10 -+// 40075 鲋 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x44,0x44,0x44,0x84,0xbf,0x84,0x84,0xa4,0x94,0x94,0x84,0x84,0x84,0x94,0x88,0x00 -+// 40076 鲌 ; -+,0x10,0x10,0x1f,0x22,0x3f,0x65,0x25,0x3f,0x25,0x25,0x3f,0x00,0x07,0x78,0x00,0x00,0x10,0x10,0x20,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42,0x00 -+// 40077 鲍 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x20,0x20,0x20,0x7e,0x42,0xfa,0x4a,0x4a,0x7a,0x42,0x4a,0x44,0x41,0x41,0x3f,0x00 -+// 40078 鲎 ; -+,0x09,0x04,0x04,0x00,0x3f,0x22,0x07,0x08,0x1f,0x28,0x0f,0x08,0x0f,0x00,0x3f,0x00,0x08,0x88,0x90,0x20,0xff,0x02,0xf0,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xfe,0x00 -+// 40079 鲏 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x42,0x07,0x10,0x10,0x10,0xff,0x92,0x94,0x90,0xfe,0xc2,0xa4,0xa4,0x98,0x88,0x94,0xa7,0x42 -+// 40080 鲐 ; -+,0x10,0x10,0x1f,0x21,0x22,0x7f,0x29,0x29,0x3f,0x29,0x29,0x3f,0x00,0x07,0x78,0x00,0x10,0x10,0x10,0x24,0x22,0x7f,0x01,0x00,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 40081 鲑 ; -+,0x08,0x08,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 40082 鲒 ; -+,0x08,0x08,0x1f,0x12,0x24,0x5f,0x15,0x15,0x1f,0x15,0x15,0x1f,0x00,0x07,0x78,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x7e,0x00,0x7e,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 40083 鲓 ; -+,0x10,0x10,0x1e,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x0e,0x70,0x00,0x00,0x20,0x20,0xfa,0x22,0x24,0xff,0x10,0x20,0x7f,0xa0,0x3e,0x02,0x02,0x0a,0x04,0x00 -+// 40084 鲔 ; -+,0x10,0x10,0x3e,0x22,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x00,0x10,0x10,0x20,0xff,0x40,0xfe,0x42,0x7e,0x42,0x7e,0x42,0x42,0x42,0x4a,0x44,0x00 -+// 40085 鲕 ; -+,0x08,0x08,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0xff,0x10,0x10,0x20,0xff,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0xa9,0x85,0x02 -+// 40086 鲖 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x00,0xff,0x81,0x81,0xbd,0x81,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x85,0x82,0x00 -+// 40087 鲗 ; -+,0x20,0x3d,0x25,0x49,0x7d,0x55,0x55,0x7d,0x55,0x55,0x7c,0x00,0x0e,0x71,0x02,0x00,0x01,0xf1,0x11,0x15,0x55,0x55,0x55,0x55,0x55,0x55,0x45,0xa1,0x91,0x15,0x02,0x00 -+// 40088 鲘 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x07,0x79,0x02,0x00,0x0e,0xf0,0x80,0x80,0x80,0xff,0x80,0x80,0xbe,0xa2,0xa2,0xa2,0x22,0x3e,0x22,0x00 -+// 40089 鲙 ; -+,0x10,0x10,0x3e,0x24,0x48,0x3e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x10,0x10,0x10,0x28,0x44,0x83,0x7c,0x00,0x00,0xff,0x10,0x20,0x24,0x42,0xff,0x02 -+// 40090 鲚 ; -+,0x10,0x1e,0x12,0x24,0x3f,0x69,0x29,0x3f,0x29,0x29,0x3f,0x00,0x07,0x78,0x00,0x00,0x20,0x10,0xff,0x44,0x24,0x18,0x14,0x23,0xc4,0x24,0x24,0x24,0x44,0x44,0x84,0x04 -+// 40091 鲛 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x07,0x00,0x20,0x10,0x10,0xff,0x08,0x44,0x82,0x45,0x44,0x28,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 40092 鲜 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x00,0x00,0x04,0x44,0x24,0x28,0xff,0x10,0x10,0x7e,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10 -+// 40093 鲝 ; -+,0x04,0x02,0x3f,0x01,0x0f,0x02,0x7f,0x0a,0x17,0x68,0x1f,0x08,0x0f,0x08,0x7f,0x00,0x10,0x20,0xfe,0x00,0xf0,0x00,0xff,0x00,0xf0,0x20,0xf8,0x88,0xf8,0x88,0xff,0x00 -+// 40094 鲞 ; -+,0x09,0x05,0x05,0x1f,0x02,0x7f,0x06,0x1b,0x64,0x0f,0x18,0x0f,0x08,0x0f,0x00,0x3f,0x20,0x20,0x40,0xfc,0x00,0xff,0x10,0xe8,0x47,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xfe -+// 40095 鲟 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x04,0xff,0x04,0x44,0x24,0x24,0x04,0x14,0x08 -+// 40096 鲠 ; -+,0x10,0x11,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x03,0x00,0x00,0xff,0x10,0x10,0xfe,0x92,0xfe,0x92,0xfe,0x10,0x50,0x20,0x30,0xcc,0x07,0x02 -+// 40097 鲡 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x0c,0x70,0x00,0x00,0xff,0x00,0x00,0xef,0xa9,0xa9,0xad,0xeb,0xa9,0xa9,0xa9,0xa9,0xed,0xaa,0x00 -+// 40098 鲢 ; -+,0x10,0x10,0x1e,0x25,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x02,0x00,0x10,0x10,0x7f,0x10,0x90,0x28,0xa8,0xfe,0x88,0x88,0xff,0x88,0x88,0x48,0x3f,0x00 -+// 40099 鲣 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x20,0xbf,0xb1,0xaa,0xaa,0xa4,0xac,0x33,0x00,0x10,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 40100 鲤 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x10,0x10,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 40101 鲥 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x02,0x02,0xe2,0xa2,0xa2,0xbf,0xe2,0xb2,0xaa,0xaa,0xa2,0xe2,0x02,0x02,0x0a,0x04 -+// 40102 鲦 ; -+,0x10,0x10,0x3e,0x22,0x44,0x3e,0x2a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x20,0x20,0x7e,0x44,0xa8,0x18,0x64,0x93,0x10,0xff,0x10,0x52,0x51,0x91,0x50,0x20 -+// 40103 鲧 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x01,0x00,0x00,0x1e,0xe0,0x10,0x24,0x78,0x10,0x22,0x7f,0x09,0x08,0x4a,0x49,0x89,0x28,0x10 -+// 40104 鲨 ; -+,0x10,0x08,0x40,0x25,0x08,0x30,0x13,0x13,0x04,0x1f,0x68,0x0f,0x08,0x0f,0x00,0x7f,0x20,0xa8,0xa4,0x2a,0x10,0x60,0x80,0xf0,0x20,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xff -+// 40105 鲩 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x06,0x78,0x03,0x00,0x20,0x10,0x10,0xff,0x82,0x00,0x7e,0x00,0xff,0x28,0x28,0x49,0x49,0x89,0x07,0x00 -+// 40106 鲪 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x0e,0x70,0x00,0x00,0x00,0x7e,0x22,0x22,0xff,0x22,0x7e,0x20,0x40,0x7e,0xc2,0x42,0x42,0x7e,0x42,0x00 -+// 40107 鲫 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x00,0x00,0xef,0xa9,0xa9,0xe9,0xa9,0xa9,0xe9,0x89,0x89,0xad,0xca,0x88,0x08,0x08 -+// 40108 鲬 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0xfe,0x04,0x28,0x10,0xff,0x91,0xff,0x91,0x91,0xff,0x91,0x91,0x91,0x95,0x82 -+// 40109 鲭 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7f,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x10,0xff,0x10,0x7e,0x10,0xff,0x00,0xfe,0x82,0xfe,0x82,0xfe,0x82,0x82,0x8a,0x84 -+// 40110 鲮 ; -+,0x10,0x10,0x1e,0x22,0x25,0x7e,0x2a,0x2a,0x3f,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x10,0x10,0xfe,0x10,0xff,0x08,0x44,0xa3,0x3c,0x44,0xa8,0x10,0x28,0x47,0x82,0x00 -+// 40111 鲯 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x44,0x44,0xfe,0x44,0x44,0x7c,0x44,0x7c,0x44,0x44,0xff,0x00,0x44,0x42,0x82,0x00 -+// 40112 鲰 ; -+,0x10,0x11,0x1c,0x24,0x28,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x0e,0x70,0x00,0x00,0xf0,0xa0,0xbf,0xf1,0xb1,0xaa,0xaa,0xea,0xaa,0xa4,0xe4,0xaa,0x33,0x22,0x20 -+// 40113 鲱 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x28,0x28,0x28,0xef,0x28,0x28,0x28,0xef,0x28,0x28,0xef,0x28,0x28,0x28,0x28,0x28 -+// 40114 鲲 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x08,0x88,0xeb,0x8c,0x88,0xa9,0xc9,0x87,0x00 -+// 40115 鲳 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0x00,0xff,0x81,0xff,0x81,0x81,0xff,0x81,0x00 -+// 40116 鲴 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x00,0xff,0x91,0x91,0x91,0xff,0x91,0xbd,0xa5,0xa5,0xbd,0x81,0x81,0xff,0x81,0x00 -+// 40117 鲵 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x03,0x00,0x00,0x20,0xce,0x82,0x82,0xee,0x82,0x82,0xfe,0x28,0x28,0x48,0x49,0x89,0x07,0x00 -+// 40118 鲶 ; -+,0x10,0x10,0x3e,0x24,0x48,0x3f,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x0f,0x72,0x00,0x20,0x20,0x30,0x48,0xa7,0x10,0xfe,0x04,0x08,0x30,0x18,0x4a,0x41,0x45,0x3c,0x00 -+// 40119 鲷 ; -+,0x10,0x10,0x1e,0x24,0x28,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x05,0x19,0x62,0x00,0x00,0xff,0x91,0x91,0xbd,0x91,0xfd,0x81,0xbd,0xa5,0xbd,0x81,0x01,0x01,0x05,0x02 -+// 40120 鲸 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x02,0x0c,0x70,0x00,0x20,0x10,0xff,0x00,0x00,0x7e,0x42,0x42,0x7e,0x08,0x08,0x4a,0x49,0x89,0x28,0x10 -+// 40121 鲹 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2b,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x05,0x18,0x63,0x00,0x20,0x28,0x44,0xfe,0x20,0xfe,0x48,0x84,0x23,0xc0,0x10,0x64,0x88,0x30,0xc0,0x00 -+// 40122 鲺 ; -+,0x10,0x10,0x3e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x00,0x00,0xfc,0x04,0xfc,0x24,0xfc,0xa4,0xa4,0xa4,0xfc,0x25,0x2d,0x3b,0xcb,0x01,0x00 -+// 40123 鲻 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x00,0x00,0x29,0x29,0x52,0xa4,0x52,0x29,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x41,0x00 -+// 40124 鲼 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x01,0x00,0x10,0xfe,0x10,0x44,0xff,0x44,0x00,0xfe,0x82,0x92,0x92,0x92,0x28,0x46,0x82,0x00 -+// 40125 鲽 ; -+,0x10,0x10,0x1e,0x23,0x24,0x7e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x24,0xa4,0xa4,0xff,0xa4,0xbc,0x80,0xff,0x10,0xff,0x10,0x38,0x54,0x57,0x92,0x10 -+// 40126 鲾 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x00,0xff,0x00,0x7e,0x42,0x42,0x7e,0x00,0xff,0x91,0x91,0xff,0x91,0x91,0xff,0x00 -+// 40127 鲿 ; -+,0x10,0x10,0x3e,0x22,0x44,0x3e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x20,0x92,0x52,0x04,0xff,0x82,0x00,0xfe,0x00,0xff,0x10,0x20,0x20,0x44,0xfe,0x02 -+// 40128 鳀 ; -+,0x10,0x10,0x1e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x06,0x00,0x00,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xff,0x10,0x50,0x5e,0x90,0xd0,0x30,0x1f,0x00 -+// 40129 鳁 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x00,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xfe,0xaa,0xaa,0xaa,0xaa,0xaa,0xff,0x00 -+// 40130 鳂 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x00,0xfe,0x92,0xfe,0x92,0x92,0xfe,0x00,0xff,0x62,0x54,0x48,0x44,0x57,0x62,0x40 -+// 40131 鳃 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x3e,0x01,0x0d,0x72,0x00,0x00,0x00,0xfe,0x92,0x92,0xfe,0x92,0x92,0xfe,0x00,0x10,0x4a,0x49,0x41,0x42,0x3e,0x00 -+// 40132 鳄 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x00,0xee,0xaa,0xaa,0xee,0x00,0xfc,0x00,0xff,0x20,0x7c,0x04,0x04,0x04,0x14,0x08 -+// 40133 鳅 ; -+,0x10,0x1e,0x22,0x24,0x7e,0x2b,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x08,0x28,0xc8,0x48,0x4a,0xfa,0x6c,0xd8,0x68,0x48,0x48,0x54,0x54,0x63,0x42,0x00 -+// 40134 鳆 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0d,0x70,0x00,0x01,0x40,0x40,0x7f,0x80,0xfe,0x42,0x7e,0x42,0x7e,0x40,0x7e,0xc4,0x28,0x18,0x67,0x82 -+// 40135 鳇 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x00,0xfe,0x10,0x10,0xfe,0x10,0x10,0xff,0x00 -+// 40136 鳈 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x0e,0x71,0x02,0x00,0x10,0x20,0xfe,0x82,0xfe,0x82,0xfe,0x10,0xd2,0x54,0x58,0x94,0x97,0x12,0x50,0x20 -+// 40137 鳉 ; -+,0x10,0x10,0x1e,0x22,0x25,0x7e,0x2a,0x2a,0x3e,0x2b,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x48,0x48,0x5f,0x52,0x6a,0xd4,0x48,0x52,0xff,0x42,0x52,0x4a,0x42,0x42,0x4a,0x44 -+// 40138 鳊 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x0d,0x72,0x04,0x00,0x20,0x10,0xfe,0x82,0x82,0xfe,0x80,0xff,0xd5,0xd5,0xff,0x55,0x55,0x55,0x43,0x00 -+// 40139 鳋 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x00,0x00,0x00,0xfe,0x54,0x28,0x18,0x67,0x90,0xfe,0x92,0x92,0xfe,0x10,0x12,0xff,0x01,0x00 -+// 40140 鳌 ; -+,0x04,0x3f,0x04,0x7f,0x04,0x0f,0x09,0x13,0x02,0x07,0x08,0x3f,0x08,0x0f,0x08,0x7f,0x10,0x10,0x1f,0xa2,0x22,0x54,0x08,0x37,0x02,0xe0,0x40,0xf8,0x88,0xf8,0x88,0xff -+// 40141 鳍 ; -+,0x10,0x10,0x1e,0x22,0x25,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x20,0x24,0xfc,0x28,0xff,0x40,0xfa,0x42,0x3e,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42 -+// 40142 鳎 ; -+,0x10,0x10,0x1e,0x22,0x44,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x0e,0x70,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x00,0xef,0x21,0xa5,0x63,0xa5,0x29,0x21,0xa5,0x42 -+// 40143 鳏 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x0e,0x71,0x00,0x00,0x00,0xff,0xa9,0xa9,0xff,0x00,0x14,0x52,0x51,0x91,0x54,0x52,0x91,0x11,0x10,0x10 -+// 40144 鳐 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x0e,0x70,0x00,0x00,0x0e,0xf0,0x22,0x92,0x54,0x48,0x7e,0x90,0x10,0xff,0x10,0x92,0x92,0xfe,0x82,0x00 -+// 40145 鳑 ; -+,0x10,0x1e,0x12,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x20,0x10,0xff,0x44,0x28,0xff,0x92,0x08,0xff,0x10,0x1e,0x22,0x22,0x4a,0x84,0x00 -+// 40146 鳒 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2b,0x3e,0x2a,0x2a,0x3e,0x01,0x0d,0x72,0x00,0x00,0x84,0x48,0xff,0x50,0xfe,0x52,0xff,0x52,0xfe,0x50,0xd8,0x54,0x57,0x52,0x50,0x50 -+// 40147 鳓 ; -+,0x10,0x10,0x1d,0x24,0x28,0x7e,0x2b,0x2b,0x3f,0x2a,0x2b,0x3e,0x00,0x0e,0x70,0x00,0x00,0xa4,0xf4,0xa4,0xef,0x45,0xf5,0x55,0xf5,0x45,0xf5,0x45,0x49,0x49,0x55,0x42 -+// 40148 鳔 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x00,0xff,0x28,0xfe,0xaa,0xaa,0xfe,0x00,0x7c,0x00,0xff,0x10,0x94,0x92,0x52,0x20 -+// 40149 鳕 ; -+,0x10,0x10,0x1e,0x23,0x25,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0xfe,0x10,0xff,0x11,0xd6,0x10,0xd6,0x00,0xfe,0x02,0xfe,0x02,0x02,0xfe,0x00 -+// 40150 鳖 ; -+,0x24,0x15,0x3f,0x24,0x2e,0x35,0x24,0x23,0x04,0x1f,0x28,0x0f,0x08,0x0f,0x00,0x7f,0x90,0x10,0x9f,0xa4,0xe4,0x98,0x94,0xe3,0x40,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xff -+// 40151 鳗 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x01,0x7c,0x44,0x7c,0x44,0x7c,0x00,0xfe,0xaa,0xfe,0x00,0xfe,0x44,0x28,0x18,0x67,0x82 -+// 40152 鳘 ; -+,0x3f,0x20,0x5f,0x15,0x7f,0x15,0x1f,0x07,0x04,0x0f,0x18,0x2f,0x08,0x0f,0x00,0x7f,0xa0,0x20,0x3f,0x64,0x94,0x08,0x34,0xe3,0x40,0xf8,0x88,0xf8,0x88,0xf8,0x00,0xff -+// 40153 鳙 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x01,0x0f,0x71,0x02,0x20,0x10,0xff,0x88,0xbe,0x8a,0xff,0x8a,0xbe,0x88,0xff,0xc9,0x7f,0x49,0x7f,0x4b -+// 40154 鳚 ; -+,0x20,0x21,0x3d,0x25,0x49,0x7d,0x55,0x7d,0x55,0x55,0x7d,0x01,0x0e,0x73,0x04,0x00,0x02,0xf2,0x12,0x12,0xf2,0x0f,0x72,0x0a,0xfa,0x22,0x22,0xb2,0xaa,0x22,0x66,0x00 -+// 40155 鳛 ; -+,0x10,0x11,0x1e,0x22,0x24,0x7e,0x2b,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0xee,0x22,0xaa,0x66,0xaa,0x22,0x10,0x20,0xfe,0x82,0xfe,0x82,0x82,0xfe,0x82 -+// 40156 鳜 ; -+,0x20,0x21,0x3d,0x49,0x7d,0x55,0x55,0x7d,0x55,0x55,0x7d,0x01,0x1a,0x62,0x05,0x00,0x00,0xff,0x04,0x94,0x67,0xf9,0x45,0x54,0x54,0x54,0xf4,0x4a,0x4a,0x92,0x61,0x00 -+// 40157 鳝 ; -+,0x10,0x10,0x1e,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2b,0x3e,0x00,0x0e,0x70,0x00,0x00,0x84,0x48,0xfe,0x10,0xfe,0x10,0xff,0x92,0x54,0xff,0x00,0xfe,0x82,0x82,0xfe,0x00 -+// 40158 鳞 ; -+,0x10,0x1e,0x22,0x25,0x7e,0x2a,0x2a,0x3e,0x2a,0x2b,0x3e,0x00,0x0e,0x70,0x01,0x00,0x92,0x54,0x58,0xff,0x34,0xd3,0x10,0x84,0xff,0x24,0xb4,0x5f,0x44,0x84,0x04,0x04 -+// 40159 鳟 ; -+,0x10,0x1e,0x12,0x24,0x3e,0x6a,0x2a,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x07,0x78,0x00,0x44,0x28,0xff,0x28,0xfe,0xaa,0xce,0xfe,0x82,0xfe,0x04,0xff,0x44,0x44,0x14,0x08 -+// 40160 鳠 ; -+,0x10,0x11,0x3e,0x24,0x3e,0x6a,0x2b,0x3e,0x2a,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x03,0x44,0xff,0x44,0x50,0x7f,0x88,0xfe,0x88,0xfe,0x88,0xff,0x44,0x28,0x18,0x67,0x82 -+// 40161 鳡 ; -+,0x10,0x10,0x3e,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3f,0x00,0x0f,0x71,0x02,0x00,0x0c,0x0a,0xff,0x88,0xf8,0x8a,0xfa,0xdc,0xf5,0x8b,0x01,0x52,0x55,0x45,0x3c,0x00 -+// 40162 鳢 ; -+,0x10,0x10,0x1e,0x22,0x24,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x01,0x24,0x24,0xff,0xa5,0xff,0xa5,0xff,0x00,0xff,0x00,0x7e,0x42,0x7e,0x24,0x28,0xff -+// 40163 鳣 ; -+,0x10,0x10,0x3e,0x22,0x44,0x3e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x71,0x00,0x20,0x10,0xff,0x00,0xfe,0xaa,0xba,0x82,0xfe,0x00,0x7c,0x44,0x7c,0x44,0xff,0x00 -+// 40164 鳤 ; -+,0x10,0x10,0x3e,0x25,0x7e,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x00,0x0e,0x70,0x00,0x00,0x84,0xf7,0xcc,0x32,0x10,0xff,0x82,0x7c,0x44,0x7c,0x40,0x7e,0x42,0x42,0x7e,0x00 -+// 40165 鳥 ; -+,0x00,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x14,0x12,0x22,0x00,0x80,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xff,0x00,0xfe,0x02,0x92,0x4a,0x4a,0x04 -+// 40166 鳦 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x55,0x55,0x01,0x05,0x02,0x00,0x00,0x7e,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0x20,0x41,0x41,0x41,0x3f,0x00 -+// 40167 鳧 ; -+,0x01,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x07,0x04,0x08,0x30,0x00,0x00,0xf8,0x08,0x88,0xf8,0x00,0xff,0x00,0xfe,0xa2,0x52,0xe6,0x21,0x21,0x1f,0x00 -+// 40168 鳨 ; -+,0x04,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x3f,0x20,0x3f,0x54,0x54,0x02,0x01,0x00,0x10,0x10,0x10,0x10,0x7f,0x11,0x11,0x11,0xd1,0x11,0x91,0xa1,0xa1,0xc5,0x02,0x00 -+// 40169 鳩 ; -+,0x10,0x10,0x10,0x7e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x13,0x22,0x20,0x40,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0xd5,0x55,0x01,0x0a,0x04,0x00 -+// 40170 鳪 ; -+,0x20,0x20,0x21,0x21,0x31,0x2d,0x25,0x21,0x21,0x21,0x21,0x20,0x22,0x22,0x20,0x20,0x20,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x00,0xff,0x01,0x55,0x55,0x0a,0x04 -+// 40171 鳫 ; -+,0x1f,0x10,0x10,0x13,0x12,0x13,0x12,0x13,0x12,0x13,0x12,0x13,0x22,0x24,0x40,0x00,0xff,0x40,0x80,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xff,0xa9,0xa9,0x05,0x02 -+// 40172 鳬 ; -+,0x01,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x07,0x04,0x04,0x18,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x00,0xfe,0x02,0xca,0x45,0x41,0x3f,0x00 -+// 40173 鳭 ; -+,0x00,0x00,0x7e,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x23,0x23,0x54,0x08,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40174 鳮 ; -+,0x00,0x00,0x7e,0x02,0x02,0x24,0x14,0x08,0x0c,0x12,0x10,0x22,0x42,0x00,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xfe,0x02,0xaa,0xaa,0x02,0x14,0x08 -+// 40175 鳯 ; -+,0x00,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x14,0x17,0x14,0x27,0x35,0x35,0x40,0x00,0x00,0xfc,0x84,0xe4,0x24,0xe4,0x24,0xe4,0x04,0xf4,0x04,0xf5,0x55,0x53,0x31,0x00 -+// 40176 鳰 ; -+,0x20,0x10,0x08,0x08,0x04,0x04,0x0c,0x0a,0x0a,0x12,0x11,0x21,0x20,0x40,0x00,0x00,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x01,0x55,0x55,0x01,0x0a,0x04,0x00 -+// 40177 鳱 ; -+,0x00,0x3e,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x08,0x00,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x0a,0x04 -+// 40178 鳲 ; -+,0x00,0x3e,0x22,0x22,0x22,0x22,0x3e,0x20,0x20,0x20,0x20,0x21,0x21,0x40,0x00,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x09,0x06,0x00 -+// 40179 鳳 ; -+,0x1f,0x10,0x17,0x10,0x13,0x13,0x12,0x13,0x12,0x13,0x12,0x13,0x20,0x2a,0x4a,0x00,0xfc,0x04,0xf4,0x84,0xe4,0x24,0xa4,0xe4,0x04,0xf4,0x04,0xfd,0x0b,0xab,0xa9,0x18 -+// 40180 鳴 ; -+,0x00,0x01,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x00,0x02,0x02,0x00,0x00,0x00,0x40,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfe,0x02,0xaa,0xaa,0x02,0x14,0x08 -+// 40181 鳵 ; -+,0x00,0x7e,0x12,0x12,0x12,0x12,0x7e,0x12,0x12,0x12,0x13,0x13,0x11,0x11,0x10,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40182 鳶 ; -+,0x02,0x01,0x7f,0x00,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x21,0x20,0x10,0xff,0x40,0x31,0xfd,0x0b,0xf8,0x08,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40183 鳷 ; -+,0x08,0x08,0x08,0x7e,0x08,0x08,0x7e,0x02,0x24,0x14,0x08,0x0d,0x13,0x62,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40184 鳸 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x13,0x12,0x12,0x13,0x12,0x13,0x12,0x23,0x25,0x45,0x00,0x40,0xfe,0x02,0xfe,0x80,0xf8,0x48,0x28,0xf8,0x00,0xfe,0x00,0xfe,0x52,0x5a,0x04 -+// 40185 鳹 ; -+,0x08,0x08,0x0c,0x12,0x11,0x28,0x44,0x00,0x3f,0x01,0x02,0x05,0x05,0x08,0x08,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40186 鳺 ; -+,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x7e,0x08,0x08,0x14,0x12,0x22,0x40,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xfe,0x02,0xaa,0xaa,0x02,0x14,0x08 -+// 40187 鳻 ; -+,0x08,0x14,0x14,0x22,0x22,0x42,0x00,0x7e,0x12,0x12,0x12,0x23,0x23,0x4a,0x04,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40188 鳼 ; -+,0x10,0x08,0x08,0x7f,0x02,0x02,0x22,0x14,0x0c,0x04,0x0a,0x0a,0x11,0x21,0x40,0x00,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x05,0x02 -+// 40189 鳽 ; -+,0x00,0x00,0x7f,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xab,0xab,0x01,0x05,0x02 -+// 40190 鳾 ; -+,0x00,0x7f,0x08,0x08,0x3f,0x29,0x29,0x29,0x29,0x29,0x2d,0x2a,0x08,0x08,0x08,0x08,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0xab,0xab,0x01,0x05,0x02 -+// 40191 鳿 ; -+,0x00,0x00,0x7e,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x08,0x09,0x0d,0x70,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40192 鴀 ; -+,0x00,0x7e,0x04,0x08,0x08,0x18,0x1c,0x2a,0x2a,0x48,0x08,0x0a,0x0a,0x08,0x08,0x08,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xfe,0x02,0xaa,0xaa,0x02,0x0a,0x04 -+// 40193 鴁 ; -+,0x00,0x06,0x38,0x08,0x08,0x08,0x7f,0x08,0x08,0x08,0x14,0x13,0x21,0x40,0x00,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40194 鴂 ; -+,0x08,0x08,0x08,0x3e,0x0a,0x0a,0x0a,0x7f,0x08,0x08,0x14,0x13,0x21,0x40,0x00,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40195 鴃 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x03,0x00,0x10,0x10,0x10,0xfc,0x14,0x14,0x14,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 40196 鴄 ; -+,0x00,0x3f,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2b,0x30,0x20,0x21,0x21,0x20,0x3f,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40197 鴅 ; -+,0x00,0x1e,0x12,0x12,0x1a,0x16,0x12,0x7f,0x12,0x12,0x12,0x13,0x23,0x22,0x4a,0x04,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40198 鴆 ; -+,0x08,0x08,0x08,0x7f,0x4a,0x08,0x08,0x08,0x0c,0x14,0x14,0x15,0x27,0x45,0x00,0x00,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40199 鴇 ; -+,0x00,0x20,0x26,0x38,0x20,0x1f,0x08,0x08,0x08,0x7f,0x08,0x09,0x09,0x08,0x08,0x08,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40200 鴈 ; -+,0x1f,0x12,0x12,0x12,0x14,0x14,0x1c,0x14,0x14,0x14,0x14,0x14,0x25,0x25,0x44,0x04,0xff,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x03 -+// 40201 鴉 ; -+,0x00,0x3f,0x04,0x14,0x14,0x3f,0x04,0x0c,0x0c,0x14,0x14,0x25,0x45,0x04,0x14,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40202 鴊 ; -+,0x00,0x3e,0x08,0x08,0x08,0x28,0x2e,0x28,0x28,0x28,0x28,0x29,0x2d,0x70,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40203 鴋 ; -+,0x10,0x08,0x08,0x7e,0x10,0x10,0x1e,0x12,0x12,0x12,0x12,0x22,0x23,0x4a,0x04,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0xd5,0x55,0x01,0x05,0x02 -+// 40204 鴌 ; -+,0x0f,0x00,0x3f,0x01,0x06,0x3f,0x04,0x04,0x07,0x04,0x07,0x04,0x07,0x0a,0x11,0x00,0xfc,0x80,0xff,0x20,0x98,0xff,0x88,0x48,0xf8,0x00,0xfe,0x00,0xff,0x91,0x49,0x03 -+// 40205 鴍 ; -+,0x00,0x1f,0x02,0x01,0x0e,0x35,0x07,0x05,0x04,0x07,0x04,0x07,0x04,0x07,0x0a,0x11,0x80,0xfe,0x20,0xf0,0xbc,0x17,0xf0,0x10,0x90,0xf0,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40206 鴎 ; -+,0x00,0x3f,0x20,0x21,0x31,0x2a,0x24,0x26,0x29,0x31,0x20,0x20,0x3f,0x00,0x00,0x00,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40207 鴏 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x00,0x56,0x55,0x02,0x01,0x14,0x16,0x25,0x25,0x64,0xbf,0x24,0x24,0xa4,0x24,0xa4,0xa5,0xa5,0xa3,0xa3,0x21 -+// 40208 鴐 ; -+,0x08,0x7f,0x09,0x15,0x62,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x25,0x22,0x00,0x00,0x7c,0x44,0x7c,0x80,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x00,0xfe,0x22,0x92,0x06 -+// 40209 鴑 ; -+,0x04,0x3f,0x09,0x1a,0x06,0x39,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0xbf,0x22,0x14,0x0c,0xb3,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40210 鴒 ; -+,0x08,0x08,0x14,0x12,0x29,0x24,0x44,0x3f,0x01,0x02,0x02,0x15,0x09,0x04,0x04,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40211 鴓 ; -+,0x10,0x08,0x0a,0x12,0x12,0x12,0x14,0x55,0x55,0x59,0x18,0x12,0x32,0x4e,0x00,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xad,0xab,0x01,0x05,0x02 -+// 40212 鴔 ; -+,0x00,0x07,0x38,0x08,0x04,0x04,0x3f,0x02,0x04,0x04,0x08,0x10,0x30,0x4f,0x00,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7e,0x02,0xaa,0xaa,0x02,0x14,0x08 -+// 40213 鴕 ; -+,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x54,0x54,0x02,0x01,0x00,0x10,0x08,0x7f,0x42,0x00,0x20,0x22,0xac,0x30,0xa0,0xa0,0xa1,0xa1,0x9f,0x00,0x00 -+// 40214 鴖 ; -+,0x00,0x7e,0x42,0x42,0x7e,0x48,0x48,0x48,0x7f,0x44,0x44,0x45,0x53,0x63,0x41,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40215 鴗 ; -+,0x10,0x08,0x08,0x3e,0x00,0x02,0x02,0x22,0x14,0x14,0x14,0x09,0x0f,0x70,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40216 鴘 ; -+,0x08,0x08,0x12,0x3f,0x01,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x22,0x22,0x42,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02,0x00 -+// 40217 鴙 ; -+,0x10,0x10,0x10,0x3f,0x28,0x48,0x08,0x7f,0x08,0x08,0x0c,0x12,0x12,0x20,0x40,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40218 鴚 ; -+,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x01,0x03,0x00,0x00,0xff,0x02,0x02,0x7a,0x4a,0x4a,0x4a,0x4a,0x7a,0x02,0x02,0x02,0x0a,0x04,0x00 -+// 40219 鴛 ; -+,0x08,0x0f,0x11,0x6a,0x04,0x19,0x67,0x05,0x04,0x07,0x04,0x07,0x04,0x07,0x0a,0x11,0x3e,0x22,0x26,0x21,0xa1,0x1f,0xf0,0x10,0x90,0xf0,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40220 鴜 ; -+,0x02,0x03,0x12,0x12,0x13,0x7d,0x07,0x04,0x04,0x07,0x04,0x07,0x04,0x07,0x05,0x09,0x20,0xa6,0x38,0x21,0xa1,0x1f,0xf8,0x88,0x48,0xf8,0x00,0xfe,0x00,0xfe,0x52,0x56 -+// 40221 鴝 ; -+,0x10,0x10,0x3f,0x21,0x41,0x3d,0x25,0x25,0x25,0x3d,0x01,0x01,0x01,0x05,0x02,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x09,0x06,0x00 -+// 40222 鴞 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x00,0x00,0x7f,0x10,0x10,0x1e,0x03,0x03,0x02,0x0a,0x04,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40223 鴟 ; -+,0x00,0x07,0x3c,0x24,0x24,0x3f,0x24,0x24,0x22,0x22,0x2a,0x31,0x28,0x04,0x00,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x81,0xab,0xab,0x05,0x02,0x00 -+// 40224 鴠 ; -+,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x22,0x22,0x3e,0x00,0x01,0x0f,0x71,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40225 鴡 ; -+,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x22,0x27,0x78,0x00,0x00,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xfe,0x02,0xaa,0xaa,0x02,0x0a,0x04 -+// 40226 鴢 ; -+,0x02,0x12,0x12,0x17,0x22,0x2a,0x7a,0x12,0x22,0x2a,0x7c,0x04,0x0a,0x11,0x00,0x00,0x08,0x3e,0x22,0xbe,0xa2,0xbe,0xa0,0xbf,0xa0,0xbf,0x81,0xab,0xab,0x01,0x05,0x02 -+// 40227 鴣 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x00,0x00,0x10,0x7e,0x42,0x7e,0xc2,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40228 鴤 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x01,0x03,0x20,0x20,0x7e,0x42,0xa4,0x14,0x08,0x14,0x63,0x10,0x08,0x08,0x20,0x10,0x08,0x08 -+// 40229 鴥 ; -+,0x08,0x10,0x3e,0x32,0x2a,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x01,0x05,0x02,0x20,0x10,0xff,0x81,0x82,0x00,0x28,0x28,0x28,0x24,0x24,0x44,0x42,0x83,0x02,0x00 -+// 40230 鴦 ; -+,0x00,0x0f,0x08,0x3f,0x01,0x02,0x3f,0x04,0x04,0x07,0x04,0x07,0x04,0x07,0x12,0x11,0x80,0xf8,0x88,0xff,0x20,0x98,0xff,0x88,0x48,0xf8,0x00,0xfe,0x00,0xff,0x91,0x4b -+// 40231 鴧 ; -+,0x08,0x04,0x3f,0x21,0x00,0x00,0x1e,0x12,0x12,0x12,0x12,0x13,0x22,0x20,0x40,0x00,0x10,0x7e,0xc2,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x81,0x55,0x55,0x01,0x05,0x02 -+// 40232 鴨 ; -+,0x00,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f,0x08,0x08,0x08,0x09,0x09,0x08,0x08,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40233 鴩 ; -+,0x04,0x24,0x24,0x3f,0x44,0x04,0x7f,0x04,0x04,0x0a,0x0a,0x11,0x21,0x41,0x00,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40234 鴪 ; -+,0x10,0x08,0x08,0x7f,0x42,0x00,0x04,0x14,0x12,0x12,0x12,0x21,0x21,0x20,0x40,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40235 鴫 ; -+,0x00,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x2a,0x2a,0x3f,0x01,0x00,0x00,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40236 鴬 ; -+,0x09,0x04,0x04,0x3f,0x22,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x0a,0x11,0x08,0x88,0x90,0xff,0x02,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40237 鴭 ; -+,0x04,0x08,0x3e,0x22,0x22,0x3e,0x20,0x20,0x3e,0x22,0x22,0x22,0x3f,0x21,0x00,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x09,0x06 -+// 40238 鴮 ; -+,0x08,0x08,0x7f,0x14,0x22,0x41,0x1e,0x00,0x7f,0x08,0x08,0x0e,0x02,0x02,0x0a,0x04,0x10,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40239 鴯 ; -+,0x00,0x7f,0x08,0x10,0x7f,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x41,0x43,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40240 鴰 ; -+,0x07,0x38,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x23,0x23,0x3e,0x22,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40241 鴱 ; -+,0x00,0x14,0x14,0x7f,0x14,0x14,0x00,0x22,0x12,0x0c,0x04,0x0a,0x13,0x21,0x40,0x00,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40242 鴲 ; -+,0x20,0x20,0x26,0x38,0x21,0x21,0x1f,0x00,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40243 鴳 ; -+,0x10,0x08,0x7f,0x42,0x08,0x08,0x10,0x7f,0x12,0x22,0x14,0x09,0x15,0x22,0x40,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40244 鴴 ; -+,0x00,0x10,0x17,0x20,0x50,0x1f,0x22,0x22,0x62,0x22,0x22,0x22,0x23,0x23,0x2a,0x24,0x10,0x20,0x7e,0x42,0x7e,0xc2,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40245 鴵 ; -+,0x0a,0x0a,0x0a,0x4a,0x2b,0x2a,0x0a,0x1b,0x6a,0x0a,0x0a,0x0a,0x13,0x12,0x20,0x00,0x10,0x7e,0x42,0xfe,0x42,0x7e,0x40,0x7f,0xc0,0x7f,0x01,0xd5,0x55,0x01,0x05,0x02 -+// 40246 鴶 ; -+,0x04,0x04,0x04,0x7f,0x04,0x04,0x3f,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x00,0x00,0x08,0x10,0x7e,0xc2,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40247 鴷 ; -+,0x3f,0x08,0x0f,0x19,0x26,0x0c,0x77,0x05,0x04,0x07,0x04,0x07,0x04,0x07,0x0a,0x11,0xc2,0x12,0x92,0x12,0x52,0x82,0xf6,0x10,0x90,0xf0,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40248 鴸 ; -+,0x04,0x14,0x14,0x1f,0x24,0x24,0x7f,0x0c,0x0e,0x15,0x15,0x24,0x45,0x05,0x04,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40249 鴹 ; -+,0x22,0x14,0x7f,0x08,0x08,0x3e,0x08,0x08,0x7f,0x08,0x08,0x09,0x11,0x10,0x20,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40250 鴺 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x09,0x3f,0x28,0x3f,0x09,0x0b,0x14,0x12,0x22,0x40,0x00,0x10,0x7e,0xc2,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xd5,0xab,0x01,0x05,0x02 -+// 40251 鴻 ; -+,0x20,0x10,0x10,0x07,0x42,0x22,0x2a,0x0a,0x12,0x12,0x73,0x1c,0x11,0x11,0x10,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40252 鴼 ; -+,0x04,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x01,0x03,0x20,0x20,0x3e,0x42,0x64,0x98,0x14,0x63,0x00,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22 -+// 40253 鴽 ; -+,0x04,0x04,0x7f,0x09,0x1e,0x05,0x1f,0x04,0x04,0x07,0x04,0x07,0x04,0x07,0x29,0x24,0x00,0x3e,0xa2,0x22,0x3e,0x80,0xf8,0x88,0x48,0xf8,0x00,0xfe,0x00,0xfe,0x22,0x96 -+// 40254 鴾 ; -+,0x08,0x0a,0x11,0x3f,0x04,0x24,0x3f,0x44,0x04,0x7f,0x04,0x04,0x05,0x05,0x04,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0xc0,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40255 鴿 ; -+,0x08,0x08,0x10,0x12,0x21,0x7f,0x01,0x00,0x3f,0x21,0x21,0x21,0x21,0x3f,0x21,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40256 鵀 ; -+,0x0b,0x08,0x17,0x70,0x13,0x11,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x21,0xfc,0x20,0xff,0x20,0xfe,0x00,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x00,0xff,0x51,0x2b -+// 40257 鵁 ; -+,0x10,0x08,0x7f,0x00,0x14,0x12,0x21,0x42,0x12,0x0c,0x04,0x0a,0x09,0x11,0x20,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40258 鵂 ; -+,0x08,0x0a,0x12,0x12,0x3f,0x52,0x16,0x17,0x1a,0x12,0x12,0x12,0x12,0x12,0x12,0x10,0x08,0x10,0x3e,0x22,0xbe,0x22,0x3e,0x20,0xbf,0x20,0x3f,0x01,0xa9,0xa9,0x05,0x02 -+// 40259 鵃 ; -+,0x04,0x08,0x1e,0x12,0x1a,0x16,0x12,0x7e,0x12,0x1a,0x16,0x12,0x22,0x22,0x4a,0x04,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40260 鵄 ; -+,0x00,0x7e,0x08,0x10,0x10,0x24,0x7e,0x0a,0x08,0x7e,0x08,0x08,0x0f,0x71,0x00,0x00,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0x55,0x55,0x0a,0x04 -+// 40261 鵅 ; -+,0x10,0x10,0x1e,0x22,0x34,0x4c,0x0a,0x10,0x7e,0x12,0x12,0x12,0x12,0x1e,0x12,0x00,0x10,0x20,0xfc,0x84,0xfc,0x84,0xfc,0x80,0xff,0x80,0xff,0x01,0xa9,0xa9,0x05,0x02 -+// 40262 鵆 ; -+,0x08,0x09,0x13,0x22,0x4b,0x0a,0x13,0x32,0x53,0x12,0x13,0x10,0x1a,0x1a,0x10,0x00,0x80,0x0e,0xc0,0x40,0xc0,0x5f,0xc2,0x02,0xf2,0x02,0xe2,0x22,0xa2,0xaa,0x64,0x00 -+// 40263 鵇 ; -+,0x10,0x10,0x1f,0x24,0x44,0x04,0x1f,0x14,0x14,0x14,0x7f,0x04,0x04,0x04,0x04,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40264 鵈 ; -+,0x00,0x3f,0x12,0x12,0x1e,0x12,0x12,0x1e,0x12,0x12,0x13,0x7e,0x02,0x02,0x02,0x02,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40265 鵉 ; -+,0x00,0x3f,0x02,0x0a,0x12,0x21,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x12,0x80,0xff,0x20,0x28,0xa6,0x02,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x00,0xfe,0x42,0xa6 -+// 40266 鵊 ; -+,0x04,0x04,0x7f,0x04,0x25,0x25,0x55,0x56,0x08,0x0c,0x0a,0x11,0x11,0x20,0x40,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0xc0,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40267 鵋 ; -+,0x00,0x3e,0x02,0x02,0x3e,0x21,0x21,0x1f,0x00,0x04,0x15,0x50,0x52,0x52,0x0e,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x81,0x55,0x55,0x01,0x03 -+// 40268 鵌 ; -+,0x04,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3e,0x20,0x3f,0x01,0x55,0x55,0x01,0x03,0x10,0x10,0x28,0x24,0x43,0xfc,0x10,0x10,0xff,0x10,0x54,0x52,0x92,0x12,0x50,0x20 -+// 40269 鵍 ; -+,0x08,0x04,0x3f,0x22,0x00,0x3e,0x00,0x7f,0x14,0x14,0x14,0x15,0x26,0x24,0x40,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40270 鵎 ; -+,0x00,0x07,0x78,0x09,0x25,0x12,0x08,0x7f,0x12,0x22,0x14,0x0c,0x12,0x62,0x00,0x00,0x10,0xa0,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7e,0xaa,0xaa,0x02,0x14,0x08 -+// 40271 鵏 ; -+,0x0a,0x09,0x08,0x7f,0x08,0x3f,0x29,0x3f,0x29,0x3f,0x29,0x29,0x29,0x29,0x23,0x00,0x10,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40272 鵐 ; -+,0x00,0x3f,0x04,0x04,0x15,0x15,0x25,0x35,0x2e,0x44,0x04,0x07,0x78,0x00,0x00,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0xc0,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40273 鵑 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x21,0x25,0x22,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40274 鵒 ; -+,0x04,0x12,0x11,0x25,0x44,0x0a,0x11,0x21,0x5e,0x12,0x12,0x12,0x12,0x1e,0x12,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40275 鵓 ; -+,0x04,0x04,0x3f,0x04,0x7f,0x40,0x1f,0x02,0x04,0x07,0x7c,0x04,0x05,0x05,0x14,0x08,0x08,0x10,0xbe,0x22,0xbe,0xa2,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04 -+// 40276 鵔 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x55,0x55,0x0a,0x04,0x00,0x10,0x24,0x42,0xff,0x02,0x24,0x43,0xa1,0x3e,0x62,0x54,0x88,0x14,0x67,0x02,0x00 -+// 40277 鵕 ; -+,0x10,0x10,0x22,0x7f,0x04,0x23,0x21,0x50,0x1f,0x32,0x4a,0x04,0x0a,0x12,0x60,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0xa9,0xa9,0x01,0x0a,0x04,0x00 -+// 40278 鵖 ; -+,0x08,0x10,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x20,0x28,0x24,0x2e,0x32,0x21,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x05,0xab,0xa9,0x01,0x03 -+// 40279 鵗 ; -+,0x22,0x14,0x0c,0x32,0x08,0x7f,0x14,0x24,0x7f,0x25,0x25,0x25,0x27,0x04,0x04,0x04,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40280 鵘 ; -+,0x00,0x1f,0x09,0x7f,0x09,0x09,0x3f,0x10,0x10,0x3f,0x31,0x51,0x11,0x1f,0x11,0x00,0x10,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40281 鵙 ; -+,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x14,0x12,0x22,0x40,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40282 鵚 ; -+,0x03,0x3c,0x04,0x3f,0x0e,0x15,0x64,0x00,0x1e,0x12,0x12,0x23,0x22,0x40,0x00,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0xff,0x01,0xa9,0xa9,0x05,0x02 -+// 40283 鵛 ; -+,0x00,0x7f,0x00,0x2a,0x2a,0x54,0x2a,0x2a,0x7f,0x08,0x08,0x08,0x0f,0x71,0x00,0x00,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40284 鵜 ; -+,0x11,0x0a,0x3f,0x05,0x05,0x3f,0x24,0x24,0x3f,0x0d,0x15,0x17,0x25,0x45,0x04,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40285 鵝 ; -+,0x02,0x0e,0x3b,0x0a,0x0a,0x7f,0x0a,0x0e,0x0a,0x1a,0x69,0x0b,0x0d,0x28,0x10,0x00,0x08,0x10,0x3e,0xa2,0x3e,0xa2,0x3e,0x20,0xbf,0xa0,0x3f,0x01,0x55,0xd5,0x4a,0x04 -+// 40286 鵞 ; -+,0x0f,0x02,0x1f,0x02,0x03,0x1e,0x0a,0x07,0x04,0x04,0x07,0x04,0x07,0x0a,0x11,0x00,0xa8,0x24,0xff,0x14,0x98,0x29,0x85,0xff,0x84,0x44,0xfc,0x00,0xff,0x52,0x2a,0x06 -+// 40287 鵟 ; -+,0x15,0x08,0x34,0x0a,0x32,0x15,0x09,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0xfe,0x20,0xfc,0x20,0x20,0xff,0x00,0xf8,0x08,0x88,0xf8,0x00,0xff,0x92,0x4a,0x06 -+// 40288 鵠 ; -+,0x08,0x08,0x28,0x3f,0x28,0x48,0x7f,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0xa9,0xa9,0x05,0x02,0x00 -+// 40289 鵡 ; -+,0x02,0x02,0x3b,0x02,0x7f,0x02,0x0a,0x2a,0x2e,0x2a,0x2a,0x2a,0x2d,0x71,0x00,0x00,0x10,0x7e,0x42,0xfe,0xc2,0x7e,0x40,0x7f,0x40,0x7f,0x55,0xd5,0x81,0x85,0x82,0x00 -+// 40290 鵢 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x23,0x7e,0x06,0x0a,0x0a,0x12,0x62,0x0a,0x04,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40291 鵣 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x25,0x3f,0x04,0x0e,0x15,0x14,0x24,0x44,0x04,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40292 鵤 ; -+,0x08,0x08,0x1f,0x12,0x3f,0x69,0x29,0x3f,0x29,0x3f,0x29,0x29,0x29,0x25,0x42,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40293 鵥 ; -+,0x15,0x0e,0x3f,0x04,0x7f,0x09,0x12,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x15,0x22,0x00,0x02,0x12,0x92,0x12,0x92,0x0a,0x04,0xf8,0x08,0x88,0xf8,0x00,0xff,0x24,0x94,0x0c -+// 40294 鵦 ; -+,0x04,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x01,0x03,0x00,0x7c,0x04,0x7c,0x04,0x04,0xff,0x10,0x12,0x54,0x38,0x54,0x97,0x12,0x50,0x20 -+// 40295 鵧 ; -+,0x21,0x11,0x12,0x3f,0x12,0x12,0x12,0x7f,0x12,0x12,0x12,0x12,0x22,0x22,0x42,0x02,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0xc0,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40296 鵨 ; -+,0x04,0x04,0x0a,0x09,0x1f,0x64,0x04,0x3f,0x04,0x04,0x1f,0x11,0x11,0x11,0x1f,0x00,0x10,0x7e,0x42,0x7e,0xc2,0x7e,0x40,0xff,0x40,0x7f,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40297 鵩 ; -+,0x00,0x3b,0x2a,0x2a,0x3b,0x2a,0x2a,0x3b,0x2a,0x2a,0x2b,0x2a,0x2a,0x2b,0x5a,0x00,0x08,0x90,0xbe,0xa2,0xbe,0x22,0x3e,0xa0,0xbf,0xa0,0xbf,0x81,0xd5,0x55,0x0a,0x04 -+// 40298 鵪 ; -+,0x04,0x04,0x7f,0x0a,0x15,0x24,0x7f,0x25,0x3f,0x25,0x3f,0x04,0x05,0x06,0x04,0x00,0x08,0x10,0x7e,0x42,0x7e,0xc2,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40299 鵫 ; -+,0x08,0x0f,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x08,0x08,0x7f,0x08,0x09,0x09,0x08,0x08,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7e,0x02,0x52,0x52,0x0a,0x04 -+// 40300 鵬 ; -+,0x00,0x3b,0x2a,0x2a,0x3b,0x2a,0x2a,0x2a,0x3b,0x2a,0x2a,0x2a,0x2a,0x5b,0x04,0x00,0x08,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0xa0,0xbf,0xa0,0xbf,0x81,0xab,0xab,0x85,0x02 -+// 40301 鵭 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x08,0x3e,0x08,0x0a,0x2c,0x18,0x0e,0x70,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40302 鵮 ; -+,0x08,0x08,0x1f,0x11,0x22,0x4c,0x33,0x21,0x21,0x37,0x21,0x21,0x21,0x3f,0x21,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40303 鵯 ; -+,0x04,0x08,0x3f,0x25,0x3f,0x25,0x3f,0x08,0x14,0x24,0x7f,0x04,0x04,0x04,0x04,0x04,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40304 鵰 ; -+,0x00,0x3f,0x25,0x25,0x3f,0x25,0x3f,0x21,0x2f,0x29,0x29,0x2f,0x21,0x25,0x42,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40305 鵱 ; -+,0x08,0x08,0x3f,0x08,0x7f,0x24,0x23,0x49,0x08,0x3e,0x08,0x08,0x0e,0x70,0x00,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40306 鵲 ; -+,0x12,0x12,0x3f,0x12,0x12,0x7f,0x00,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x10,0x20,0x7e,0x42,0x7e,0xc2,0x7e,0x40,0x7f,0x40,0x7f,0x55,0x55,0x01,0x0a,0x04 -+// 40307 鵳 ; -+,0x08,0x04,0x3f,0x21,0x3f,0x20,0x2f,0x29,0x2f,0x29,0x2f,0x29,0x29,0x29,0x4b,0x09,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x55,0x55,0x01,0x0a,0x04 -+// 40308 鵴 ; -+,0x10,0x10,0x1f,0x21,0x49,0x2b,0x1d,0x3f,0x19,0x2d,0x2b,0x49,0x09,0x01,0x05,0x02,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x55,0x55,0x01,0x05,0x02 -+// 40309 鵵 ; -+,0x10,0x1e,0x22,0x24,0x7f,0x29,0x29,0x29,0x3f,0x0c,0x0e,0x15,0x15,0x26,0x44,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x81,0x55,0x55,0x01,0x03 -+// 40310 鵶 ; -+,0x00,0x7f,0x0a,0x0a,0x0a,0x3f,0x20,0x20,0x3b,0x0a,0x0a,0x0b,0x0e,0x70,0x00,0x00,0x08,0x90,0x3e,0x22,0x3e,0xa2,0xbe,0xa0,0xbf,0x20,0x3f,0x81,0x55,0x55,0x0a,0x04 -+// 40311 鵷 ; -+,0x08,0x04,0x7f,0x41,0x00,0x20,0x3b,0x4a,0x2a,0x2b,0x12,0x12,0x23,0x42,0x00,0x00,0x08,0x10,0xbe,0x22,0x3e,0x22,0xbe,0xa0,0xbf,0xa0,0x7f,0x81,0x55,0x55,0x0a,0x04 -+// 40312 鵸 ; -+,0x08,0x08,0x7f,0x08,0x14,0x22,0x7f,0x01,0x3d,0x25,0x25,0x3d,0x01,0x01,0x05,0x02,0x10,0x20,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40313 鵹 ; -+,0x1f,0x04,0x3f,0x0e,0x15,0x65,0x02,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x15,0x22,0x00,0x20,0x3f,0xa9,0x49,0x11,0x65,0x02,0xf8,0x88,0x48,0xf8,0x00,0xff,0x44,0xa4,0x0c -+// 40314 鵺 ; -+,0x08,0x04,0x7f,0x08,0x0a,0x13,0x14,0x36,0x59,0x15,0x12,0x13,0x15,0x18,0x10,0x00,0x08,0x10,0xbe,0x22,0x3e,0xa2,0xbe,0xa0,0x3f,0x20,0x3f,0x01,0x55,0xd5,0x0a,0x04 -+// 40315 鵻 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x23,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04,0x30,0x28,0x48,0x7f,0xc8,0x48,0x48,0x7e,0x48,0x48,0x7e,0x48,0x48,0x48,0x7f,0x40 -+// 40316 鵼 ; -+,0x08,0x04,0x3f,0x22,0x00,0x12,0x11,0x20,0x00,0x3f,0x08,0x08,0x0f,0x70,0x00,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40317 鵽 ; -+,0x00,0x7f,0x4a,0x29,0x11,0x2a,0x44,0x7f,0x4a,0x32,0x11,0x29,0x2a,0x44,0x08,0x00,0x08,0xd0,0x7e,0xa2,0xbe,0x62,0x3e,0xe0,0x7f,0xa0,0x3f,0x81,0x55,0x55,0x0a,0x04 -+// 40318 鵾 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x22,0x22,0x3b,0x22,0x22,0x2b,0x32,0x20,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x81,0x55,0x55,0x0a,0x04 -+// 40319 鵿 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04,0x00,0x7f,0x41,0x7f,0x41,0x7f,0x00,0x0a,0x72,0x22,0x7f,0x22,0x22,0x42,0x42,0x82 -+// 40320 鶀 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x03,0x00,0x24,0x24,0x7f,0x24,0x24,0x3c,0x24,0x3c,0x24,0x24,0x7f,0x00,0x24,0x22,0x42,0x00 -+// 40321 鶁 ; -+,0x08,0x04,0x7f,0x00,0x00,0x1f,0x11,0x11,0x1f,0x04,0x26,0x25,0x44,0x04,0x14,0x08,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40322 鶂 ; -+,0x08,0x33,0x21,0x21,0x3b,0x21,0x21,0x3f,0x0a,0x0a,0x0a,0x12,0x13,0x22,0x40,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x81,0x55,0x55,0x03,0x00 -+// 40323 鶃 ; -+,0x04,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x03,0x00,0x10,0x67,0x41,0x41,0x77,0x41,0x41,0x7f,0x14,0x14,0x14,0x15,0x25,0x25,0x43,0x00 -+// 40324 鶄 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x25,0x22,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40325 鶅 ; -+,0x00,0x25,0x25,0x4a,0x25,0x25,0x00,0x3f,0x29,0x29,0x3f,0x29,0x29,0x29,0x3f,0x00,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40326 鶆 ; -+,0x04,0x04,0x7f,0x04,0x25,0x25,0x56,0x4c,0x0c,0x16,0x15,0x24,0x44,0x04,0x04,0x04,0x08,0x10,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40327 鶇 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x0c,0x16,0x15,0x24,0x44,0x04,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40328 鶈 ; -+,0x08,0x7f,0x08,0x3e,0x0a,0x7f,0x0a,0x3e,0x08,0x7f,0x12,0x35,0x09,0x16,0x62,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x55,0x55,0x01,0x05,0x02 -+// 40329 鶉 ; -+,0x08,0x04,0x7f,0x00,0x1f,0x11,0x1f,0x00,0x3f,0x02,0x04,0x07,0x7c,0x04,0x14,0x08,0x08,0x10,0xfe,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40330 鶊 ; -+,0x08,0x04,0x3f,0x24,0x2f,0x25,0x3f,0x25,0x2f,0x24,0x24,0x2a,0x29,0x51,0x20,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40331 鶋 ; -+,0x00,0x3f,0x21,0x21,0x3f,0x24,0x24,0x3f,0x24,0x24,0x2f,0x29,0x29,0x29,0x4f,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40332 鶌 ; -+,0x00,0x3f,0x21,0x3f,0x20,0x24,0x35,0x35,0x3f,0x24,0x35,0x35,0x35,0x55,0x1f,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40333 鶍 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x08,0x10,0x1f,0x2a,0x0a,0x14,0x24,0x0a,0x11,0x00,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0xa0,0xbf,0x81,0xd5,0xd5,0x81,0x05,0x02 -+// 40334 鶎 ; -+,0x08,0x04,0x3f,0x21,0x00,0x1f,0x00,0x00,0x3f,0x04,0x16,0x15,0x25,0x44,0x14,0x08,0x08,0x10,0xfe,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40335 鶏 ; -+,0x07,0x78,0x09,0x25,0x12,0x08,0x3f,0x08,0x7f,0x08,0x0c,0x12,0x12,0x20,0x40,0x00,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40336 鶐 ; -+,0x02,0x43,0x22,0x2f,0x02,0x02,0x77,0x16,0x1a,0x12,0x12,0x12,0x10,0x28,0x47,0x00,0x08,0x10,0xbe,0xa2,0x3e,0x22,0x3e,0xa0,0xbf,0x20,0x3f,0x01,0x55,0x55,0x8a,0x04 -+// 40337 鶑 ; -+,0x04,0x15,0x16,0x04,0x0a,0x31,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x12,0x10,0x54,0x58,0x10,0x28,0x46,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40338 鶒 ; -+,0x11,0x11,0x7d,0x13,0x11,0x7d,0x55,0x7d,0x11,0x39,0x36,0x53,0x14,0x10,0x10,0x00,0x04,0x08,0x1e,0xd2,0x5e,0x52,0x5e,0x50,0x5f,0x50,0x5f,0x41,0xb5,0x55,0x0a,0x04 -+// 40339 鶓 ; -+,0x12,0x12,0x12,0x7f,0x12,0x00,0x3f,0x25,0x25,0x3f,0x25,0x25,0x25,0x3f,0x00,0x00,0x08,0x10,0x3e,0xa2,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04 -+// 40340 鶔 ; -+,0x1f,0x01,0x06,0x7f,0x0d,0x14,0x64,0x0c,0x04,0x7f,0x0c,0x16,0x15,0x24,0x44,0x04,0x10,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0x40,0x7f,0xc0,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40341 鶕 ; -+,0x10,0x08,0x7f,0x22,0x12,0x14,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x21,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40342 鶖 ; -+,0x1f,0x04,0x3f,0x0e,0x35,0x05,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x12,0x11,0x10,0x52,0x54,0x28,0xa4,0x43,0xf8,0x88,0x48,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40343 鶗 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x7f,0x04,0x17,0x14,0x14,0x2c,0x26,0x41,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7e,0x02,0xaa,0xaa,0x02,0xff,0x00 -+// 40344 鶘 ; -+,0x10,0x13,0x12,0x7a,0x13,0x12,0x12,0x3a,0x2b,0x2a,0x2a,0x3a,0x04,0x04,0x09,0x00,0x08,0xbe,0xa2,0xbe,0xa2,0xbe,0xa0,0xbf,0xa0,0xbf,0x81,0xd5,0xd5,0x81,0x85,0x02 -+// 40345 鶙 ; -+,0x08,0x04,0x3f,0x11,0x0a,0x7f,0x45,0x04,0x3f,0x25,0x25,0x25,0x27,0x04,0x04,0x04,0x08,0x10,0x7e,0x42,0x7e,0xc2,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40346 鶚 ; -+,0x00,0x77,0x55,0x77,0x00,0x3e,0x00,0x7f,0x08,0x08,0x0e,0x02,0x02,0x02,0x0a,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40347 鶛 ; -+,0x44,0x44,0x44,0x77,0x44,0x65,0x4b,0x10,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40348 鶜 ; -+,0x12,0x12,0x7f,0x12,0x3f,0x0a,0x04,0x7f,0x0d,0x0c,0x14,0x14,0x25,0x45,0x14,0x08,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40349 鶝 ; -+,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x49,0x49,0x7f,0x49,0x49,0x49,0x7f,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0xa9,0xa9,0x01,0x0a,0x04 -+// 40350 鶞 ; -+,0x07,0x3c,0x24,0x24,0x3f,0x24,0x2f,0x29,0x29,0x2f,0x29,0x2f,0x29,0x29,0x2f,0x40,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x55,0x55,0x01,0x0a,0x04 -+// 40351 鶟 ; -+,0x08,0x04,0x3f,0x21,0x12,0x19,0x2c,0x0a,0x7f,0x08,0x0c,0x12,0x12,0x20,0x40,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40352 鶠 ; -+,0x7f,0x40,0x5f,0x51,0x5f,0x51,0x5f,0x44,0x7f,0x49,0x5a,0x46,0x59,0x40,0x7f,0x00,0x90,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0xff,0x40,0x7f,0x01,0x55,0x55,0x8a,0x04 -+// 40353 鶡 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x10,0x3f,0x49,0x2d,0x33,0x21,0x3f,0x01,0x0a,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40354 鶢 ; -+,0x07,0x78,0x09,0x25,0x12,0x3f,0x08,0x7f,0x08,0x1f,0x11,0x2a,0x26,0x49,0x31,0x00,0x90,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40355 鶣 ; -+,0x08,0x04,0x3f,0x20,0x3f,0x20,0x20,0x3f,0x2a,0x2a,0x3f,0x6a,0x2a,0x2a,0x21,0x00,0x08,0x10,0xbe,0xa2,0xbe,0x22,0x3e,0xa0,0xbf,0xa0,0xbf,0xd5,0xd5,0x81,0x8a,0x04 -+// 40356 鶤 ; -+,0x00,0x7f,0x49,0x3f,0x08,0x3f,0x29,0x3f,0x29,0x3f,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0xa0,0x7e,0x62,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40357 鶥 ; -+,0x00,0x3f,0x25,0x25,0x3f,0x20,0x2f,0x29,0x2f,0x29,0x2f,0x29,0x2f,0x49,0x4f,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40358 鶦 ; -+,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x01,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x00,0x0a,0x11,0x3e,0xa2,0x3e,0x22,0x3e,0xa2,0x46,0xf8,0x08,0x88,0xf8,0x00,0xfe,0x02,0xa2,0x56 -+// 40359 鶧 ; -+,0x12,0x12,0x7f,0x12,0x08,0x3f,0x29,0x29,0x29,0x7f,0x08,0x0c,0x13,0x11,0x20,0x40,0x08,0x10,0xbe,0x22,0x3e,0x22,0x3e,0x20,0x3f,0xa0,0x3f,0x01,0x55,0x55,0x0a,0x04 -+// 40360 鶨 ; -+,0x10,0x1e,0x12,0x3e,0x04,0x7f,0x08,0x1b,0x6c,0x16,0x6d,0x14,0x64,0x04,0x14,0x08,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40361 鶩 ; -+,0x3f,0x02,0x0c,0x7f,0x0d,0x14,0x65,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x25,0x25,0x00,0x20,0x20,0x3f,0x64,0x98,0x94,0x23,0xf8,0x08,0x88,0xf8,0x00,0xff,0x24,0x24,0x0c -+// 40362 鶪 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x0a,0x7f,0x08,0x14,0x12,0x22,0x40,0x00,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02,0x00 -+// 40363 鶫 ; -+,0x08,0x08,0x7f,0x08,0x08,0x7f,0x6b,0x5d,0x7f,0x08,0x1c,0x2b,0x29,0x48,0x08,0x08,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x95,0x0a,0x04 -+// 40364 鶬 ; -+,0x08,0x08,0x14,0x1b,0x24,0x3f,0x51,0x1f,0x11,0x1f,0x10,0x3f,0x31,0x51,0x1f,0x00,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40365 鶭 ; -+,0x08,0x12,0x3d,0x08,0x3e,0x1c,0x2a,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x15,0x22,0x00,0x20,0x10,0xff,0x20,0x3c,0x44,0x8c,0xf8,0x08,0x88,0xf8,0x00,0xff,0x22,0x92,0x0e -+// 40366 鶮 ; -+,0x08,0x04,0x7f,0x00,0x1f,0x11,0x1f,0x00,0x3f,0x20,0x2e,0x2a,0x2e,0x20,0x22,0x21,0x08,0x10,0xbe,0x22,0x3e,0x22,0x3e,0x20,0xbf,0xa0,0xbf,0xd5,0xd5,0x81,0x8a,0x04 -+// 40367 鶯 ; -+,0x02,0x0b,0x0a,0x05,0x3f,0x20,0x07,0x04,0x04,0x07,0x04,0x07,0x04,0x07,0x0a,0x11,0x10,0x54,0x58,0x2c,0xff,0x82,0xf8,0x88,0x48,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40368 鶰 ; -+,0x00,0x3f,0x21,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x12,0x11,0x21,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40369 鶱 ; -+,0x00,0x1f,0x12,0x0f,0x02,0x1f,0x04,0x0f,0x78,0x08,0x0f,0x08,0x0f,0x15,0x22,0x00,0x80,0xff,0x12,0xf8,0x10,0xfe,0x88,0xfc,0x8b,0x48,0xf8,0x00,0xff,0x42,0xaa,0x04 -+// 40370 鶲 ; -+,0x00,0x12,0x11,0x68,0x12,0x3f,0x00,0x7b,0x09,0x2d,0x1b,0x2b,0x4d,0x29,0x13,0x00,0x10,0x20,0x7e,0xc2,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40371 鶳 ; -+,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3e,0x02,0x56,0x56,0x0a,0x04,0x00,0x40,0x9f,0xe4,0xa4,0xbf,0xb5,0xf5,0x95,0x95,0xf5,0xb5,0xb7,0xa4,0xe4,0xa4,0x00 -+// 40372 鶴 ; -+,0x04,0x04,0x3f,0x29,0x0c,0x12,0x1f,0x32,0x5f,0x12,0x1f,0x12,0x12,0x1f,0x10,0x10,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40373 鶵 ; -+,0x10,0x1f,0x30,0x08,0x2a,0x3e,0x10,0x61,0x1f,0x29,0x6b,0x3f,0x09,0x11,0x65,0x02,0x08,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0xa0,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04 -+// 40374 鶶 ; -+,0x08,0x04,0x3f,0x24,0x3f,0x25,0x3f,0x25,0x3f,0x24,0x3f,0x31,0x31,0x51,0x5f,0x00,0x08,0x10,0xbe,0x22,0x3e,0x22,0xbe,0x20,0x3f,0x20,0x3f,0x55,0x55,0x01,0x05,0x02 -+// 40375 鶷 ; -+,0x10,0x08,0x7f,0x49,0x3e,0x08,0x3e,0x08,0x7f,0x08,0x3e,0x22,0x22,0x3e,0x22,0x00,0x08,0x10,0xfe,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40376 鶸 ; -+,0x00,0x7b,0x08,0x08,0x08,0x3b,0x22,0x3b,0x4c,0x2a,0x09,0x2a,0x4c,0x08,0x2a,0x11,0x08,0x90,0xbe,0xa2,0xbe,0xa2,0x3e,0xa0,0xbf,0xa0,0xbf,0x81,0xab,0xab,0x85,0x02 -+// 40377 鶹 ; -+,0x18,0x67,0x45,0x55,0x6d,0x4b,0x10,0x3f,0x25,0x25,0x3f,0x25,0x25,0x25,0x3f,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40378 鶺 ; -+,0x04,0x04,0x15,0x0e,0x15,0x0a,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x10,0x7c,0x44,0x7c,0x44,0x7c,0xc0,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40379 鶻 ; -+,0x00,0x1f,0x11,0x1d,0x15,0x7f,0x40,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x10,0x20,0x7e,0x42,0x7e,0xc2,0xfe,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40380 鶼 ; -+,0x21,0x12,0x7f,0x0a,0x3f,0x0a,0x7f,0x0a,0x3f,0x1a,0x2b,0x2a,0x4a,0x0a,0x0a,0x0a,0x08,0x10,0xbe,0x22,0xbe,0xa2,0xfe,0xa0,0xbf,0x20,0x3f,0x81,0x55,0x55,0x0a,0x04 -+// 40381 鶽 ; -+,0x08,0x14,0x1f,0x24,0x7f,0x24,0x3f,0x24,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x04,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40382 鶾 ; -+,0x08,0x08,0x7e,0x08,0x3f,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x08,0x09,0x09,0x08,0x08,0x40,0x7f,0x90,0xfe,0x52,0x4a,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40383 鶿 ; -+,0x02,0x7f,0x04,0x09,0x1e,0x05,0x1f,0x01,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x15,0x22,0x10,0xff,0x10,0x28,0x70,0x28,0x7c,0x00,0xf8,0x88,0x48,0xf8,0x00,0xff,0x22,0x96 -+// 40384 鷀 ; -+,0x21,0x12,0x7f,0x00,0x11,0x11,0x22,0x2c,0x77,0x11,0x22,0x22,0x54,0x7f,0x00,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0xc0,0x7f,0x40,0x7f,0x01,0xab,0xab,0x05,0x02 -+// 40385 鷁 ; -+,0x21,0x11,0x12,0x7f,0x00,0x22,0x21,0x40,0x7f,0x55,0x55,0x55,0x55,0x5e,0x70,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0xc0,0x7f,0x40,0x7f,0x01,0xd5,0x55,0x0a,0x04 -+// 40386 鷂 ; -+,0x07,0x78,0x29,0x15,0x22,0x3f,0x44,0x04,0x7f,0x04,0x04,0x25,0x25,0x25,0x3f,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40387 鷃 ; -+,0x3f,0x21,0x3f,0x21,0x3f,0x04,0x7f,0x41,0x08,0x7f,0x12,0x34,0x0c,0x12,0x61,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40388 鷄 ; -+,0x0f,0x70,0x11,0x4a,0x2c,0x12,0x3c,0x0a,0x3f,0x04,0x7f,0x04,0x0b,0x11,0x60,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0xff,0x01,0x55,0x55,0x0a,0x04 -+// 40389 鷅 ; -+,0x00,0x7f,0x14,0x7f,0x55,0x55,0x7f,0x08,0x7f,0x08,0x1c,0x2a,0x29,0x49,0x08,0x08,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40390 鷆 ; -+,0x27,0x38,0x21,0x1f,0x00,0x5e,0x52,0x5e,0x52,0x5e,0x52,0x5e,0x40,0x7f,0x12,0x21,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40391 鷇 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x7f,0x48,0x1f,0x15,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x55,0x00,0xbc,0x24,0x24,0x24,0xa7,0xc0,0x00,0x3e,0x24,0x14,0x88,0x08,0x94,0xa7,0x82 -+// 40392 鷈 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0b,0x04,0x7f,0x48,0x4f,0x48,0x7f,0x49,0x7e,0x49,0x47,0x40,0x5c,0x54,0x94,0xa5,0x25,0x43 -+// 40393 鷉 ; -+,0x03,0x3e,0x23,0x22,0x2f,0x2a,0x2f,0x2a,0x29,0x28,0x2b,0x2a,0x2a,0x4a,0x54,0x00,0xc8,0x10,0xbe,0x22,0xbe,0x22,0xbe,0x20,0xbf,0x20,0xbf,0x81,0x95,0xd5,0x8a,0x04 -+// 40394 鷊 ; -+,0x00,0x7f,0x00,0x3e,0x22,0x3e,0x00,0x7f,0x63,0x55,0x7f,0x49,0x49,0x49,0x45,0x42,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40395 鷋 ; -+,0x22,0x22,0x7f,0x2a,0x0c,0x12,0x21,0x5e,0x04,0x3f,0x04,0x26,0x25,0x45,0x14,0x08,0x08,0x10,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40396 鷌 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04,0x00,0x7f,0x48,0x7e,0x48,0x7e,0x48,0x48,0x7f,0x01,0x01,0x55,0x55,0x01,0x05,0x02 -+// 40397 鷍 ; -+,0x04,0x08,0x3f,0x29,0x25,0x33,0x29,0x3f,0x04,0x7f,0x0c,0x16,0x15,0x24,0x44,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40398 鷎 ; -+,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x08,0x7f,0x14,0x2a,0x48,0x3f,0x08,0x08,0x08,0x08,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40399 鷏 ; -+,0x04,0x7f,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x7f,0x14,0x12,0x22,0x00,0x08,0x90,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x81,0x55,0x55,0x0a,0x04 -+// 40400 鷐 ; -+,0x1f,0x11,0x1f,0x11,0x1f,0x00,0x3f,0x20,0x3f,0x20,0x3f,0x29,0x2e,0x2a,0x4d,0x08,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0xff,0x01,0x55,0x55,0x0a,0x04 -+// 40401 鷑 ; -+,0x22,0x22,0x3f,0x53,0x0c,0x10,0x08,0x7f,0x00,0x22,0x12,0x14,0x07,0x78,0x00,0x00,0x08,0x10,0xfe,0x42,0xfe,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40402 鷒 ; -+,0x04,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x05,0x7f,0x02,0x7f,0x0a,0x02,0x0a,0x04,0x10,0xa0,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0xc0,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40403 鷓 ; -+,0x08,0x04,0x3f,0x20,0x29,0x29,0x3f,0x29,0x29,0x2f,0x20,0x20,0x20,0x55,0x55,0x00,0x08,0x10,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40404 鷔 ; -+,0x08,0x7e,0x08,0x7e,0x10,0x1c,0x25,0x4f,0x09,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0x20,0x3f,0x44,0x44,0xa8,0x18,0x67,0xf8,0x08,0x88,0xf8,0x00,0xff,0xa4,0x54,0x0c -+// 40405 鷕 ; -+,0x00,0x3c,0x25,0x26,0x24,0x3d,0x02,0x0f,0x08,0x08,0x0f,0x08,0x0f,0x00,0x14,0x22,0x50,0xff,0x90,0xfe,0x90,0xfe,0x90,0xff,0x84,0x44,0xfc,0x00,0xff,0x02,0xa2,0x56 -+// 40406 鷖 ; -+,0x3f,0x28,0x2f,0x34,0x3f,0x2a,0x3f,0x02,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x15,0x22,0xbc,0x24,0x23,0xdc,0x24,0x18,0x67,0x00,0xf0,0x10,0x90,0xf0,0x00,0xff,0x44,0xac -+// 40407 鷗 ; -+,0x00,0x7f,0x40,0x5e,0x52,0x5e,0x40,0x77,0x55,0x55,0x55,0x77,0x40,0x7f,0x00,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40408 鷘 ; -+,0x04,0x7f,0x25,0x3f,0x16,0x65,0x1f,0x11,0x10,0x1f,0x10,0x1f,0x10,0x1f,0x29,0x44,0x10,0x9f,0x24,0x54,0x08,0x37,0xfa,0x08,0x88,0xf8,0x00,0xff,0x00,0xfe,0x22,0x96 -+// 40409 鷙 ; -+,0x04,0x3f,0x04,0x7f,0x11,0x3f,0x04,0x3f,0x04,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x25,0x10,0x10,0x7c,0x94,0x24,0xb5,0x45,0x83,0x00,0xf8,0x88,0xf8,0x00,0xff,0x02,0x26 -+// 40410 鷚 ; -+,0x00,0x7f,0x2d,0x1b,0x2d,0x09,0x0c,0x13,0x68,0x32,0x0c,0x31,0x02,0x0c,0x70,0x00,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0xff,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40411 鷛 ; -+,0x04,0x3f,0x22,0x2f,0x22,0x3f,0x22,0x2f,0x22,0x3f,0x32,0x3f,0x32,0x5f,0x52,0x12,0x08,0x90,0x3e,0xa2,0xbe,0xe2,0xbe,0xa0,0x3f,0xa0,0xbf,0x81,0xad,0xab,0x85,0x82 -+// 40412 鷜 ; -+,0x04,0x3f,0x25,0x7f,0x25,0x3f,0x04,0x3f,0x25,0x3f,0x08,0x7f,0x12,0x34,0x0e,0x72,0x10,0x20,0x7c,0xc4,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40413 鷝 ; -+,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x15,0x7f,0x15,0x7f,0x04,0x3f,0x04,0x04,0x04,0x04,0x08,0x3e,0x22,0x3e,0x22,0x3e,0x20,0xbf,0x20,0xbf,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40414 鷞 ; -+,0x04,0x04,0x7f,0x2e,0x15,0x2e,0x04,0x04,0x56,0x25,0x56,0x0a,0x09,0x11,0x20,0x00,0x08,0x10,0xbe,0xa2,0x3e,0xa2,0x3e,0x20,0xbf,0x20,0xbf,0x01,0x55,0x55,0x0a,0x04 -+// 40415 鷟 ; -+,0x08,0x7f,0x08,0x0f,0x12,0x2a,0x45,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x22,0x40,0x7e,0x80,0x7c,0x10,0xff,0x24,0xfa,0x88,0xf8,0x00,0xfe,0x00,0xfe,0x42,0xa6 -+// 40416 鷠 ; -+,0x08,0x08,0x1f,0x11,0x22,0x5f,0x15,0x15,0x1f,0x15,0x15,0x1f,0x00,0x55,0x4a,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x8a,0x04 -+// 40417 鷡 ; -+,0x10,0x10,0x1f,0x20,0x6a,0x2a,0x7f,0x2a,0x2a,0x7f,0x00,0x35,0x2a,0x4a,0x00,0x00,0x08,0x10,0xbe,0x22,0xbe,0xa2,0xfe,0xa0,0xbf,0xe0,0x3f,0x01,0xad,0xab,0x05,0x02 -+// 40418 鷢 ; -+,0x3f,0x29,0x3f,0x2a,0x2f,0x22,0x25,0x2f,0x24,0x24,0x27,0x24,0x27,0x55,0x52,0x00,0xfe,0x20,0xbe,0xd4,0x90,0x28,0x47,0xf8,0x88,0x48,0xf8,0x00,0xff,0x44,0xa4,0x0c -+// 40419 鷣 ; -+,0x00,0x3f,0x0a,0x3f,0x2a,0x3f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x04,0x3f,0x04,0x04,0x08,0x90,0x3e,0xa2,0xbe,0xa2,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04 -+// 40420 鷤 ; -+,0x00,0x77,0x55,0x77,0x00,0x3f,0x25,0x3f,0x25,0x3f,0x04,0x7f,0x04,0x04,0x04,0x04,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40421 鷥 ; -+,0x08,0x12,0x3c,0x0a,0x3f,0x00,0x2a,0x2f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x12,0x10,0x24,0x78,0x14,0x7e,0x54,0xb2,0xf8,0x88,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x56 -+// 40422 鷦 ; -+,0x10,0x14,0x22,0x3f,0x64,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x00,0x55,0x55,0x00,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40423 鷧 ; -+,0x08,0x7f,0x08,0x3e,0x00,0x7f,0x41,0x3e,0x00,0x3e,0x22,0x3e,0x24,0x17,0x78,0x00,0x10,0x7e,0x42,0x7e,0x42,0xfe,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x01,0x05,0x02 -+// 40424 鷨 ; -+,0x12,0x12,0x7f,0x12,0x7f,0x2a,0x7f,0x2a,0x2a,0x7f,0x08,0x7f,0x08,0x08,0x08,0x08,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40425 鷩 ; -+,0x04,0x24,0x15,0x3f,0x2e,0x35,0x25,0x02,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x15,0x22,0x20,0xbf,0x24,0xd4,0x88,0x94,0xa3,0x00,0xf8,0x08,0x88,0xf8,0x00,0xff,0x44,0xac -+// 40426 鷪 ; -+,0x1f,0x15,0x1b,0x15,0x1f,0x00,0x3f,0x22,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x12,0x00,0x7c,0x54,0x6c,0x54,0x7c,0x80,0xff,0x02,0xf8,0x88,0xf8,0x00,0xff,0x44,0xa4,0x0c -+// 40427 鷫 ; -+,0x04,0x3f,0x04,0x7f,0x04,0x3f,0x04,0x56,0x77,0x44,0x7f,0x44,0x77,0x56,0x56,0x44,0x08,0x90,0xbe,0xe2,0xbe,0xa2,0x3e,0xa0,0xbf,0xa0,0xbf,0x81,0xad,0xab,0x85,0x82 -+// 40428 鷬 ; -+,0x12,0x12,0x3f,0x12,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x12,0x11,0x21,0x00,0x08,0x10,0x7e,0x42,0xfe,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40429 鷭 ; -+,0x03,0x3c,0x25,0x16,0x7f,0x0e,0x15,0x64,0x3f,0x25,0x25,0x3f,0x25,0x25,0x3f,0x00,0x10,0x20,0x7e,0x42,0xfe,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x05,0x02 -+// 40430 鷮 ; -+,0x07,0x38,0x08,0x7f,0x12,0x7f,0x12,0x1e,0x00,0x7f,0x55,0x5d,0x41,0x45,0x42,0x00,0x10,0x20,0x7c,0xc4,0x7c,0xc4,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40431 鷯 ; -+,0x08,0x08,0x7f,0x49,0x36,0x21,0x7f,0x21,0x3f,0x21,0x3f,0x04,0x26,0x25,0x55,0x08,0x08,0x10,0xfe,0x42,0x7e,0xc2,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40432 鷰 ; -+,0x02,0x7f,0x0a,0x7b,0x09,0x79,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x22,0x20,0xff,0x28,0xee,0x49,0xcf,0x00,0xf8,0x88,0xf8,0x00,0xfe,0x00,0xfe,0x22,0x96 -+// 40433 鷱 ; -+,0x08,0x3f,0x21,0x3f,0x21,0x3f,0x04,0x15,0x0e,0x35,0x04,0x7f,0x04,0x04,0x04,0x04,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x0a,0x04 -+// 40434 鷲 ; -+,0x04,0x3f,0x00,0x1f,0x11,0x1f,0x15,0x24,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0x18,0x94,0x7e,0x18,0x28,0x29,0x49,0x87,0xf8,0x88,0xf8,0x00,0xff,0x92,0x4a,0x06 -+// 40435 鷳 ; -+,0x7b,0x4a,0x7b,0x4a,0x7b,0x40,0x4e,0x4a,0x4e,0x4a,0x4e,0x4a,0x4a,0x56,0x40,0x41,0x88,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0xa0,0xbf,0xa0,0xbf,0x81,0xad,0xab,0x85,0x82 -+// 40436 鷴 ; -+,0x00,0x3b,0x2a,0x3b,0x2a,0x3b,0x24,0x3f,0x24,0x2e,0x2d,0x34,0x24,0x20,0x22,0x21,0x08,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0xa0,0xbf,0xa0,0xbf,0x81,0xb5,0xcb,0x81,0x03 -+// 40437 鷵 ; -+,0x00,0x3f,0x20,0x3f,0x24,0x3f,0x25,0x3f,0x24,0x2f,0x39,0x2f,0x29,0x4f,0x09,0x00,0x08,0x90,0xbe,0xa2,0x3e,0xa2,0x3e,0xa0,0x3f,0x20,0x3f,0x55,0x55,0x01,0x03,0x00 -+// 40438 鷶 ; -+,0x00,0x7f,0x55,0x55,0x7f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x3f,0x12,0x11,0x21,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40439 鷷 ; -+,0x22,0x14,0x7f,0x14,0x7f,0x55,0x67,0x7f,0x41,0x7f,0x02,0x7f,0x12,0x0a,0x02,0x06,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40440 鷸 ; -+,0x3f,0x02,0x0c,0x7f,0x0d,0x14,0x64,0x0c,0x3f,0x2a,0x31,0x2e,0x2a,0x2e,0x20,0x21,0x08,0x10,0x3e,0xa2,0x3e,0x22,0x3e,0x20,0xbf,0xa0,0xbf,0x81,0xad,0xab,0x85,0x82 -+// 40441 鷹 ; -+,0x00,0x1f,0x14,0x15,0x1e,0x14,0x14,0x15,0x12,0x17,0x14,0x17,0x14,0x27,0x2a,0x49,0x40,0xff,0x90,0xfe,0x90,0xfc,0x90,0xfe,0x00,0xfc,0x44,0xfc,0x00,0xff,0xa2,0x56 -+// 40442 鷺 ; -+,0x1e,0x12,0x1e,0x04,0x17,0x14,0x3f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x12,0x00,0x7c,0x68,0x98,0x67,0xbc,0x24,0x3c,0x00,0xf8,0x88,0xf8,0x00,0xff,0x44,0xa4,0x0c -+// 40443 鷻 ; -+,0x11,0x20,0x7f,0x45,0x7d,0x45,0x7c,0x41,0x7c,0x40,0x7e,0x03,0x6a,0x57,0x06,0x00,0x08,0x88,0xe8,0x48,0x5f,0xd2,0x12,0xf2,0x4a,0x8a,0x64,0xc4,0x4a,0x53,0xa2,0x00 -+// 40444 鷼 ; -+,0x00,0x3b,0x2a,0x3b,0x2a,0x3b,0x20,0x2e,0x2a,0x2e,0x2a,0x2e,0x20,0x20,0x21,0x20,0x08,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0xa0,0xbf,0xa0,0xbf,0x81,0xad,0xab,0x85,0x82 -+// 40445 鷽 ; -+,0x05,0x18,0x11,0x1c,0x11,0x1c,0x11,0x3f,0x22,0x0f,0x08,0x0f,0x08,0x0f,0x25,0x22,0x40,0x9c,0x44,0x1c,0x44,0x9c,0x44,0xff,0x02,0xf8,0x88,0xf8,0x00,0xff,0x22,0x96 -+// 40446 鷾 ; -+,0x10,0x08,0x3e,0x14,0x7f,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x04,0x55,0x52,0x0e,0x00,0x10,0x20,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0xd5,0x0a,0x04 -+// 40447 鷿 ; -+,0x3e,0x22,0x3e,0x20,0x3e,0x32,0x5f,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x12,0x00,0x10,0xfe,0x28,0xfe,0x10,0x7c,0x10,0x10,0xf8,0x88,0xf8,0x00,0xff,0x44,0xa4,0x0c -+// 40448 鸀 ; -+,0x00,0x7f,0x55,0x55,0x7f,0x10,0x3f,0x49,0x3f,0x29,0x3f,0x0b,0x7f,0x01,0x05,0x02,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x09,0x06 -+// 40449 鸁 ; -+,0x00,0x7f,0x08,0x0f,0x00,0x0f,0x08,0x0f,0x39,0x2b,0x3a,0x2b,0x3a,0x2b,0x2d,0x58,0x80,0xff,0x00,0xf8,0x00,0xf8,0x08,0xf8,0x0e,0xea,0xaa,0xee,0x0a,0xfb,0x5b,0x33 -+// 40450 鸂 ; -+,0x03,0x1c,0x54,0x2b,0x04,0x49,0x3e,0x14,0x1f,0x22,0x3f,0x62,0x25,0x25,0x28,0x00,0x88,0x10,0xbe,0x22,0x3e,0x22,0x3e,0xa0,0xbf,0x20,0xbf,0x01,0x55,0x55,0x0a,0x04 -+// 40451 鸃 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04,0x44,0x28,0xfe,0x10,0x7c,0x10,0xfe,0x6c,0x2a,0xff,0x28,0x3a,0x6c,0xb5,0x23,0x61 -+// 40452 鸄 ; -+,0x08,0x3f,0x25,0x3f,0x08,0x7f,0x14,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x22,0x20,0x20,0x3f,0x24,0x58,0x14,0xa3,0xf8,0x88,0xf8,0x00,0xff,0x00,0xfe,0x42,0xa6 -+// 40453 鸅 ; -+,0x00,0x7f,0x55,0x7f,0x08,0x3e,0x08,0x7f,0x22,0x14,0x7f,0x08,0x3e,0x08,0x08,0x08,0x10,0x20,0x7c,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7e,0x02,0xaa,0xaa,0x14,0x08 -+// 40454 鸆 ; -+,0x04,0x07,0x04,0x3f,0x25,0x3f,0x24,0x23,0x2f,0x29,0x2f,0x20,0x2f,0x22,0x5f,0x45,0x00,0x08,0x10,0xbe,0x22,0x3e,0xa2,0xbe,0x20,0x3f,0x20,0x3f,0x01,0x55,0xd5,0x03 -+// 40455 鸇 ; -+,0x04,0x7f,0x00,0x3f,0x2a,0x2e,0x20,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x7f,0x08,0xd0,0x3e,0xa2,0xbe,0xa2,0xbe,0xa0,0x3f,0x20,0x3f,0x01,0x55,0x55,0x0a,0x04 -+// 40456 鸈 ; -+,0x0a,0x2a,0x1b,0x0a,0x7f,0x12,0x3f,0x04,0x3f,0x04,0x3f,0x0e,0x15,0x64,0x04,0x04,0x10,0xa0,0x7e,0x42,0xfe,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x0a,0x04 -+// 40457 鸉 ; -+,0x08,0x08,0x7e,0x1c,0x0a,0x29,0x48,0x0a,0x0f,0x09,0x08,0x0f,0x08,0x0f,0x15,0x22,0xfc,0xa4,0xfc,0x40,0xff,0x54,0x54,0xac,0xf8,0x08,0x88,0xf8,0x00,0xff,0x42,0xa6 -+// 40458 鸊 ; -+,0x02,0x39,0x2f,0x2c,0x2a,0x3a,0x21,0x27,0x39,0x29,0x2f,0x69,0x39,0x29,0x01,0x00,0x08,0x10,0xfe,0xa2,0xbe,0xa2,0x3e,0xe0,0x3f,0x20,0xff,0x55,0x55,0x0a,0x04,0x00 -+// 40459 鸋 ; -+,0x10,0x08,0x7f,0x49,0x12,0x5e,0x00,0x3f,0x2b,0x7f,0x00,0x3f,0x04,0x04,0x14,0x08,0x10,0x20,0x7c,0x44,0x7c,0xc4,0x7c,0x40,0x7f,0xc0,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40460 鸌 ; -+,0x08,0x11,0x3e,0x22,0x3e,0x23,0x3e,0x20,0x3e,0x20,0x3f,0x01,0x55,0x55,0x01,0x03,0x44,0xff,0x44,0x90,0xff,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x44,0x28,0x18,0x27,0xc2 -+// 40461 鸍 ; -+,0x00,0x7f,0x15,0x24,0x7f,0x2e,0x35,0x2e,0x24,0x2d,0x36,0x2d,0x24,0x24,0x24,0x21,0x08,0xd0,0x3e,0xa2,0xfe,0xa2,0xbe,0xa0,0xbf,0xa0,0xbf,0x81,0xb5,0xd5,0x81,0x83 -+// 40462 鸎 ; -+,0x3f,0x25,0x33,0x29,0x3f,0x11,0x6f,0x08,0x0f,0x08,0x0f,0x08,0x0f,0x14,0x22,0x00,0x7e,0x4a,0x66,0x52,0x7e,0x24,0xfb,0x88,0xf8,0x00,0xfe,0x00,0xfe,0xa2,0x52,0x06 -+// 40463 鸏 ; -+,0x14,0x14,0x7f,0x14,0x7f,0x41,0x3e,0x00,0x7f,0x18,0x69,0x16,0x6d,0x14,0x64,0x0c,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa9,0xa9,0x05,0x02 -+// 40464 鸐 ; -+,0x7b,0x2a,0x19,0x2a,0x4c,0x08,0x14,0x3f,0x64,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x20,0x88,0x90,0xbe,0xa2,0xbe,0xa2,0x3e,0xa0,0x3f,0x20,0x3f,0x55,0x55,0x01,0x8a,0x04 -+// 40465 鸑 ; -+,0x49,0x37,0x6a,0x19,0x6b,0x1a,0x6b,0x19,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x22,0x00,0x0c,0xea,0x9e,0x48,0xd4,0x57,0xe2,0x00,0xf8,0x88,0xf8,0x00,0xff,0x44,0xa4,0x0c -+// 40466 鸒 ; -+,0x0d,0x11,0x1d,0x11,0x1e,0x11,0x7f,0x09,0x17,0x64,0x07,0x04,0x07,0x15,0x12,0x00,0x1c,0xc4,0x1c,0xc4,0x5c,0x44,0xff,0x08,0xf7,0x92,0xf0,0x00,0xfe,0x44,0xa4,0x0c -+// 40467 鸓 ; -+,0x00,0x3f,0x25,0x3f,0x25,0x3f,0x00,0x00,0x7f,0x52,0x7f,0x52,0x52,0x52,0x7f,0x00,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0xbf,0xa0,0xbf,0x81,0xad,0xab,0x85,0x02 -+// 40468 鸔 ; -+,0x08,0x10,0x3e,0x22,0x3e,0x22,0x3e,0x20,0x3e,0x20,0x3f,0x01,0x55,0x55,0x01,0x03,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x7f,0x24,0xff,0x24,0x4a,0xbb,0x1c,0x2a,0x49,0x18 -+// 40469 鸕 ; -+,0x04,0x07,0x04,0x3f,0x25,0x3f,0x24,0x3f,0x35,0x3f,0x35,0x3f,0x20,0x7f,0x6a,0x3f,0x08,0x10,0x3e,0xa2,0x3e,0x22,0xbe,0xa0,0x3f,0x20,0x3f,0x01,0x55,0xd5,0x8a,0xc4 -+// 40470 鸖 ; -+,0x3f,0x04,0x7f,0x44,0x37,0x04,0x37,0x10,0x3f,0x64,0x3f,0x24,0x3f,0x24,0x3f,0x20,0x08,0x10,0xfe,0xa2,0x3e,0x22,0x3e,0x20,0xbf,0x20,0x3f,0x01,0x55,0x55,0x8a,0x04 -+// 40471 鸗 ; -+,0x08,0x3e,0x14,0x7f,0x2a,0x36,0x2a,0x27,0x02,0x0f,0x08,0x0f,0x08,0x0f,0x15,0x22,0x7c,0x40,0x7c,0x04,0x7c,0x68,0x55,0x7f,0x00,0xf8,0x88,0xf8,0x00,0xfe,0x44,0xac -+// 40472 鸘 ; -+,0x3f,0x04,0x7f,0x45,0x37,0x04,0x37,0x00,0x17,0x7d,0x17,0x3d,0x57,0x15,0x17,0x10,0x10,0x20,0xfc,0x44,0x7c,0x44,0x7c,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x03 -+// 40473 鸙 ; -+,0x04,0x0a,0x11,0x3f,0x40,0x7f,0x52,0x7f,0x00,0x7f,0x52,0x7f,0x52,0x52,0x40,0x41,0x08,0x10,0x3e,0xe2,0x3e,0xa2,0xbe,0xa0,0x3f,0xa0,0xbf,0x81,0xab,0xab,0x85,0x82 -+// 40474 鸚 ; -+,0x3b,0x2a,0x3b,0x2a,0x3b,0x2a,0x3b,0x2b,0x44,0x7f,0x09,0x1a,0x04,0x1a,0x61,0x00,0x88,0x90,0xbe,0xa2,0xbe,0xa2,0xbe,0x20,0xbf,0xe0,0x3f,0x01,0x55,0x55,0x01,0x03 -+// 40475 鸛 ; -+,0x12,0x7f,0x12,0x77,0x55,0x77,0x14,0x3f,0x64,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x20,0x10,0xa0,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0xa5,0xa5,0x0a,0x04 -+// 40476 鸜 ; -+,0x77,0x55,0x77,0x55,0x77,0x55,0x7f,0x24,0x7f,0x24,0x3f,0x24,0x3f,0x24,0x3f,0x20,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0x7f,0x40,0x7f,0x01,0x55,0x55,0x01,0x8a,0x04 -+// 40477 鸝 ; -+,0x7f,0x00,0x7b,0x6b,0x4a,0x4a,0x05,0x3f,0x2a,0x3f,0x2a,0x3f,0x32,0x33,0x5a,0x11,0x88,0x10,0xbe,0xa2,0xbe,0xa2,0x3e,0xa0,0x3f,0xa0,0xbf,0x81,0x55,0xd5,0x81,0x83 -+// 40478 鸞 ; -+,0x08,0x13,0x3e,0x09,0x15,0x3d,0x39,0x55,0x0f,0x08,0x0f,0x08,0x0f,0x25,0x22,0x00,0x84,0xe8,0x9e,0x49,0xdf,0x40,0xd5,0x15,0xf8,0x88,0xf8,0x00,0xff,0x22,0x92,0x06 -+// 40479 鸟 ; -+,0x01,0x02,0x0f,0x08,0x09,0x08,0x08,0x08,0x0f,0x00,0x00,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0xa8,0x90,0x00,0xfe,0x02,0x02,0xfa,0x02,0x02,0x14,0x08 -+// 40480 鸠 ; -+,0x08,0x08,0x08,0x08,0x7e,0x0a,0x0a,0x0a,0x0a,0x12,0x12,0x12,0x23,0x22,0x40,0x00,0x08,0x10,0x7c,0x64,0x54,0x54,0x4c,0x40,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40481 鸡 ; -+,0x00,0x00,0x7e,0x02,0x24,0x14,0x14,0x08,0x0c,0x14,0x12,0x22,0x40,0x00,0x00,0x00,0x10,0x20,0xfc,0xc4,0xa4,0xa4,0x94,0x88,0xfe,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 40482 鸢 ; -+,0x01,0x01,0x00,0x3f,0x00,0x02,0x07,0x05,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x20,0x10,0xfe,0x80,0x42,0x32,0xfe,0x08,0x98,0x00,0xfe,0x02,0xfa,0x02,0x0a,0x04 -+// 40483 鸣 ; -+,0x00,0x00,0x3d,0x25,0x25,0x25,0x25,0x25,0x25,0x3d,0x00,0x0f,0x00,0x00,0x00,0x00,0x20,0x40,0xfc,0x04,0x44,0x24,0x24,0x0c,0x00,0xfe,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 40484 鸤 ; -+,0x00,0x00,0x1f,0x11,0x11,0x11,0x1f,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00,0x10,0x20,0x7c,0x64,0x54,0x44,0x4c,0x40,0x7e,0x02,0x02,0xfa,0x02,0x0a,0x04,0x00 -+// 40485 鸥 ; -+,0x00,0x3f,0x20,0x22,0x32,0x2a,0x24,0x24,0x2a,0x2a,0x31,0x21,0x20,0x3f,0x00,0x00,0x10,0x20,0x7c,0x64,0x54,0x54,0x4c,0x40,0x7e,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 40486 鸦 ; -+,0x00,0x3f,0x04,0x24,0x24,0x3f,0x04,0x0c,0x0c,0x14,0x14,0x25,0x44,0x04,0x14,0x08,0x10,0x20,0x7e,0x52,0x4a,0x42,0x4a,0x44,0x7f,0x01,0x01,0xfd,0x01,0x01,0x0a,0x04 -+// 40487 鸧 ; -+,0x04,0x04,0x0a,0x09,0x11,0x3e,0x52,0x12,0x12,0x1a,0x14,0x10,0x14,0x18,0x10,0x00,0x10,0x20,0x7e,0x42,0x62,0x52,0x46,0x40,0x7f,0x01,0x01,0xfd,0x01,0x01,0x0a,0x04 -+// 40488 鸨 ; -+,0x00,0x20,0x23,0x3c,0x20,0x21,0x1f,0x08,0x08,0x7f,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x20,0x7c,0x64,0x54,0x44,0x4c,0x40,0x7e,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 40489 鸩 ; -+,0x08,0x08,0x08,0x7f,0x49,0x4a,0x08,0x14,0x14,0x14,0x14,0x25,0x26,0x44,0x00,0x00,0x10,0x20,0x7c,0x64,0x54,0x44,0x54,0x48,0x7f,0x01,0x01,0xfd,0x01,0x01,0x0a,0x04 -+// 40490 鸪 ; -+,0x08,0x08,0x08,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x00,0x10,0x20,0x7c,0x44,0x64,0x54,0x4c,0x40,0x7e,0x02,0x02,0xfa,0x02,0x0a,0x04,0x00 -+// 40491 鸫 ; -+,0x08,0x08,0x7f,0x08,0x10,0x14,0x24,0x3f,0x04,0x14,0x16,0x25,0x45,0x14,0x08,0x00,0x08,0x10,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0x7d,0x01,0x05,0x02,0x00 -+// 40492 鸬 ; -+,0x08,0x08,0x0f,0x08,0x3f,0x21,0x21,0x3f,0x20,0x20,0x20,0x21,0x20,0x20,0x40,0x40,0x08,0x10,0x7c,0x64,0x54,0x54,0x44,0x4c,0x40,0x7f,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40493 鸭 ; -+,0x00,0x3e,0x2a,0x2a,0x2a,0x3e,0x2a,0x2a,0x3e,0x08,0x08,0x09,0x08,0x08,0x08,0x08,0x10,0x20,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0xf9,0x01,0x01,0x05,0x02 -+// 40494 鸮 ; -+,0x00,0x1e,0x12,0x12,0x1e,0x00,0x00,0x7f,0x10,0x1e,0x02,0x02,0x02,0x0a,0x04,0x00,0x10,0x20,0x7c,0x64,0x54,0x44,0x54,0x48,0x7e,0x02,0xfa,0x02,0x02,0x12,0x0c,0x00 -+// 40495 鸯 ; -+,0x00,0x0f,0x08,0x7f,0x01,0x02,0x3f,0x05,0x04,0x04,0x07,0x00,0x1f,0x00,0x00,0x00,0x80,0xf8,0x88,0xff,0x40,0xb0,0xff,0x08,0x98,0x00,0xfe,0x02,0xfa,0x02,0x0a,0x04 -+// 40496 鸰 ; -+,0x08,0x08,0x0c,0x12,0x19,0x24,0x44,0x3f,0x02,0x04,0x04,0x18,0x08,0x04,0x04,0x00,0x10,0x20,0x7e,0x62,0x52,0x52,0x4a,0x44,0x7f,0x01,0x01,0xfd,0x01,0x05,0x02,0x00 -+// 40497 鸱 ; -+,0x00,0x03,0x3c,0x24,0x24,0x24,0x3f,0x24,0x24,0x24,0x22,0x2a,0x35,0x24,0x00,0x00,0x10,0xa0,0x7c,0x64,0x54,0x44,0x54,0x48,0x7e,0x02,0x7a,0x82,0x82,0x8a,0x04,0x00 -+// 40498 鸲 ; -+,0x10,0x10,0x1f,0x21,0x21,0x5d,0x15,0x15,0x15,0x1d,0x01,0x01,0x01,0x05,0x02,0x00,0x10,0x20,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x7d,0x01,0x01,0x05,0x02,0x00 -+// 40499 鸳 ; -+,0x08,0x0f,0x11,0x1a,0x24,0x0a,0x37,0x05,0x04,0x04,0x07,0x00,0x3f,0x00,0x00,0x00,0x00,0x7c,0x44,0x5d,0x41,0x3f,0xf8,0x08,0x98,0x00,0xfe,0x02,0xfa,0x02,0x0a,0x04 -+// 40500 鸴 ; -+,0x11,0x08,0x08,0x3f,0x22,0x04,0x0f,0x0a,0x09,0x08,0x0f,0x00,0x7f,0x00,0x00,0x00,0x08,0x88,0x90,0xfe,0x04,0x00,0xf0,0x10,0x30,0x00,0xfc,0x04,0xf4,0x04,0x28,0x10 -+// 40501 鸵 ; -+,0x04,0x08,0x3e,0x32,0x2a,0x22,0x2a,0x24,0x3f,0x01,0x0d,0x71,0x01,0x05,0x02,0x00,0x20,0x10,0x10,0xff,0x82,0x84,0x20,0x26,0x38,0x20,0x20,0x20,0x21,0x21,0x1f,0x00 -+// 40502 鸶 ; -+,0x08,0x12,0x3c,0x08,0x3e,0x00,0x3f,0x02,0x0f,0x09,0x08,0x08,0x0f,0x00,0x3f,0x00,0x10,0x24,0x78,0x10,0x7c,0x00,0xfe,0x00,0xf8,0x08,0x98,0x00,0xfe,0x02,0xea,0x04 -+// 40503 鸷 ; -+,0x08,0x08,0x7d,0x08,0x1c,0x6a,0x1d,0x0f,0x0a,0x09,0x08,0x0f,0x00,0x7f,0x00,0x00,0x40,0x40,0xf8,0x48,0xc8,0xaa,0x06,0xf8,0x08,0x18,0x00,0xfe,0x02,0xe2,0x0a,0x04 -+// 40504 鸸 ; -+,0x00,0x7f,0x10,0x10,0x20,0x7f,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x43,0x41,0x00,0x10,0x20,0x7e,0x62,0x52,0x52,0x42,0x46,0x40,0x7f,0x01,0x79,0x01,0x05,0x02,0x00 -+// 40505 鸹 ; -+,0x00,0x07,0x78,0x08,0x08,0x7f,0x08,0x08,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x20,0x7c,0x64,0x54,0x54,0x4c,0x40,0x7f,0x01,0x01,0xfd,0x01,0x05,0x02,0x00 -+// 40506 鸺 ; -+,0x0a,0x0a,0x12,0x12,0x1f,0x32,0x32,0x57,0x16,0x1a,0x12,0x12,0x12,0x12,0x12,0x00,0x08,0x10,0x3e,0x32,0xaa,0x22,0x2a,0x24,0xbf,0x01,0x01,0xfd,0x01,0x05,0x02,0x00 -+// 40507 鸻 ; -+,0x10,0x17,0x20,0x20,0x50,0x1f,0x32,0x32,0x52,0x12,0x12,0x12,0x12,0x16,0x12,0x00,0x10,0x20,0x7e,0x42,0x52,0x4a,0x46,0x40,0x7f,0x01,0xfd,0x01,0x01,0x05,0x02,0x00 -+// 40508 鸼 ; -+,0x04,0x08,0x1f,0x11,0x19,0x15,0x11,0x7f,0x11,0x19,0x15,0x11,0x21,0x21,0x45,0x02,0x08,0x10,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40509 鸽 ; -+,0x04,0x04,0x0c,0x12,0x11,0x20,0x7f,0x00,0x00,0x3e,0x22,0x22,0x22,0x3e,0x22,0x00,0x10,0x20,0x7c,0x64,0x54,0x44,0x54,0x48,0x7e,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 40510 鸾 ; -+,0x01,0x00,0x3f,0x01,0x09,0x09,0x13,0x2f,0x0a,0x09,0x0f,0x00,0x3f,0x00,0x00,0x00,0x00,0x80,0xff,0x20,0x28,0x26,0x22,0xf0,0x10,0x30,0xfe,0x02,0xfa,0x02,0x0a,0x04 -+// 40511 鸿 ; -+,0x20,0x10,0x10,0x07,0x42,0x2a,0x2a,0x12,0x12,0x13,0x6c,0x21,0x20,0x20,0x20,0x00,0x10,0x20,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40512 鹀 ; -+,0x00,0x7f,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2a,0x5d,0x48,0x09,0x08,0x0e,0x70,0x00,0x10,0x20,0x7e,0x62,0x52,0x42,0x4a,0x44,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40513 鹁 ; -+,0x00,0x08,0x08,0x3f,0x08,0x08,0x7f,0x41,0x1f,0x02,0x04,0x07,0x7c,0x04,0x14,0x08,0x10,0x20,0x7e,0x62,0x52,0x52,0xc6,0x40,0x7f,0x01,0x01,0x7d,0x01,0x01,0x05,0x02 -+// 40514 鹂 ; -+,0x00,0x7f,0x00,0x77,0x54,0x54,0x54,0x76,0x75,0x54,0x54,0x54,0x54,0x56,0x75,0x00,0x08,0x90,0x3e,0xb2,0xaa,0xaa,0xa6,0xa0,0xbf,0x81,0x81,0xfd,0x81,0x85,0x02,0x00 -+// 40515 鹃 ; -+,0x00,0x3f,0x21,0x21,0x3f,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x21,0x21,0x21,0x25,0x22,0x10,0x20,0x7c,0x64,0x54,0x44,0x54,0x48,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40516 鹄 ; -+,0x04,0x14,0x14,0x1f,0x24,0x04,0x7f,0x00,0x00,0x3f,0x21,0x21,0x21,0x3f,0x21,0x00,0x10,0x20,0x7e,0x62,0x52,0x52,0xc6,0x40,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40517 鹅 ; -+,0x04,0x0c,0x76,0x15,0x14,0x7f,0x14,0x14,0x1d,0x32,0x56,0x1a,0x11,0x51,0x20,0x00,0x08,0x10,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0xfd,0x81,0x81,0x85,0x02 -+// 40518 鹆 ; -+,0x00,0x12,0x11,0x21,0x48,0x0c,0x12,0x11,0x20,0x5e,0x12,0x12,0x12,0x12,0x1e,0x12,0x08,0x10,0x7c,0x64,0x54,0x44,0x54,0x48,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40519 鹇 ; -+,0x00,0x27,0x11,0x41,0x49,0x49,0x7f,0x49,0x5d,0x5b,0x69,0x49,0x49,0x41,0x45,0x42,0x08,0x10,0x3e,0x32,0x2a,0x22,0x2a,0x24,0x3f,0x01,0x01,0x7d,0x01,0x01,0x05,0x02 -+// 40520 鹈 ; -+,0x22,0x14,0x7f,0x09,0x09,0x7f,0x48,0x48,0x7f,0x09,0x19,0x29,0x2b,0x48,0x08,0x08,0x08,0x10,0x7e,0x52,0x4a,0x4a,0x46,0x40,0x7f,0x01,0x01,0x7d,0x01,0x01,0x0d,0x02 -+// 40521 鹉 ; -+,0x02,0x02,0x3b,0x02,0x7f,0x02,0x0a,0x0a,0x2e,0x2a,0x2a,0x2a,0x2d,0x71,0x00,0x00,0x08,0x10,0x3e,0xa2,0xaa,0x2a,0x22,0x26,0x20,0x3f,0x81,0x81,0xbd,0x81,0x85,0x02 -+// 40522 鹊 ; -+,0x00,0x12,0x12,0x3f,0x12,0x12,0x7f,0x00,0x1f,0x11,0x11,0x1f,0x11,0x11,0x1f,0x11,0x08,0x10,0x3e,0x32,0x2a,0x22,0xa6,0x20,0x3f,0x01,0x01,0x7d,0x01,0x01,0x05,0x02 -+// 40523 鹋 ; -+,0x12,0x12,0x12,0x7f,0x12,0x12,0x3f,0x29,0x29,0x3f,0x29,0x29,0x29,0x3f,0x21,0x00,0x08,0x10,0x7e,0xc2,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40524 鹌 ; -+,0x08,0x08,0x7f,0x14,0x1a,0x28,0x7f,0x29,0x3f,0x29,0x3f,0x08,0x0a,0x0c,0x08,0x00,0x08,0x10,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0xfd,0x01,0x05,0x02,0x00 -+// 40525 鹍 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x00,0x24,0x24,0x3f,0x24,0x24,0x25,0x36,0x24,0x00,0x08,0x10,0x7e,0x42,0x62,0x52,0x46,0x40,0x7f,0x01,0x01,0x7d,0x01,0x0a,0x04,0x00 -+// 40526 鹎 ; -+,0x04,0x08,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x08,0x14,0x7f,0x04,0x04,0x04,0x04,0x04,0x10,0x20,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x81,0x7d,0x01,0x01,0x0a,0x04 -+// 40527 鹏 ; -+,0x00,0x3b,0x2a,0x2a,0x3b,0x2a,0x2a,0x2a,0x3b,0x2a,0x2a,0x2a,0x2a,0x5c,0x09,0x00,0x08,0x90,0xbe,0xb2,0xaa,0xaa,0xa6,0xa0,0xbf,0x81,0x81,0xfd,0x81,0x8a,0x84,0x00 -+// 40528 鹐 ; -+,0x08,0x08,0x0f,0x11,0x12,0x20,0x48,0x37,0x21,0x21,0x37,0x21,0x21,0x3f,0x21,0x00,0x10,0x20,0x7c,0x64,0x54,0x54,0x44,0x4c,0x40,0x7e,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 40529 鹑 ; -+,0x08,0x04,0x7f,0x00,0x1e,0x12,0x1e,0x00,0x3f,0x02,0x07,0x3c,0x04,0x04,0x14,0x08,0x10,0x20,0x7c,0x64,0x54,0x54,0x4c,0x40,0x7e,0x02,0x02,0xfa,0x02,0x02,0x0a,0x04 -+// 40530 鹒 ; -+,0x08,0x04,0x3f,0x24,0x3f,0x25,0x3f,0x25,0x3f,0x24,0x24,0x2c,0x2a,0x51,0x61,0x00,0x04,0x08,0xbe,0x32,0x2a,0x2a,0xa2,0x26,0x20,0x3f,0x01,0x7d,0x01,0x01,0x05,0x02 -+// 40531 鹓 ; -+,0x08,0x04,0x7f,0x41,0x10,0x1f,0x26,0x26,0x6a,0x1b,0x0a,0x12,0x12,0x23,0x42,0x00,0x08,0x10,0xbe,0x32,0x2a,0xaa,0xa2,0xa6,0xa0,0xbf,0x01,0x01,0xf9,0x01,0x05,0x02 -+// 40532 鹔 ; -+,0x04,0x3f,0x05,0x7f,0x05,0x3f,0x04,0x24,0x2e,0x35,0x24,0x24,0x24,0x24,0x44,0x00,0x08,0x10,0x3e,0xb2,0x2a,0x2a,0x22,0xa6,0xa0,0xbf,0x81,0xfd,0x81,0x85,0x82,0x00 -+// 40533 鹕 ; -+,0x10,0x13,0x12,0x12,0x7b,0x12,0x12,0x7a,0x4b,0x4a,0x4a,0x4a,0x7c,0x05,0x08,0x00,0x04,0xc8,0x5e,0x52,0xda,0x56,0x56,0x50,0xdf,0x41,0x41,0x7d,0x41,0x45,0x82,0x00 -+// 40534 鹖 ; -+,0x00,0x3f,0x21,0x3f,0x21,0x3f,0x10,0x1f,0x69,0x29,0x35,0x23,0x3f,0x01,0x05,0x02,0x10,0x20,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0x7d,0x01,0x01,0x05,0x02 -+// 40535 鹗 ; -+,0x00,0x77,0x55,0x77,0x00,0x3e,0x00,0x7f,0x10,0x1e,0x02,0x02,0x02,0x0a,0x04,0x00,0x10,0x20,0x7c,0x64,0x54,0x54,0x4c,0x40,0x7e,0x02,0xfa,0x02,0x02,0x0a,0x04,0x00 -+// 40536 鹘 ; -+,0x00,0x3e,0x22,0x3a,0x2a,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x1e,0x12,0x12,0x12,0x16,0x10,0x20,0x7e,0x62,0x52,0xc2,0x4a,0x44,0x7f,0x01,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40537 鹙 ; -+,0x03,0x3c,0x04,0x7f,0x0e,0x15,0x65,0x0f,0x09,0x08,0x08,0x0f,0x00,0x3f,0x00,0x00,0x10,0x10,0x56,0x58,0x28,0x24,0x43,0xf0,0x10,0xb0,0x00,0xfe,0x02,0xf2,0x0a,0x04 -+// 40538 鹚 ; -+,0x22,0x12,0x14,0x7f,0x11,0x21,0x22,0x4a,0x77,0x11,0x22,0x22,0x54,0x7f,0x00,0x00,0x08,0x10,0x3e,0xb2,0x2a,0x22,0x26,0xa0,0x3f,0x01,0x01,0x7d,0x81,0x85,0x02,0x00 -+// 40539 鹛 ; -+,0x00,0x3f,0x25,0x25,0x3f,0x20,0x2f,0x29,0x2f,0x29,0x29,0x2f,0x49,0x49,0x0f,0x00,0x08,0x10,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0x7d,0x01,0x05,0x02,0x00 -+// 40540 鹜 ; -+,0x3f,0x0a,0x04,0x7f,0x15,0x64,0x0d,0x02,0x0f,0x09,0x08,0x0f,0x00,0x7f,0x00,0x00,0x20,0x20,0x7f,0x44,0xa8,0x18,0x67,0x00,0xf0,0x10,0xb0,0xfc,0x04,0xc4,0x14,0x08 -+// 40541 鹝 ; -+,0x00,0x3f,0x00,0x1f,0x11,0x1f,0x00,0x3f,0x31,0x2a,0x3f,0x24,0x24,0x24,0x24,0x25,0x08,0x90,0x3e,0x22,0x32,0x2a,0x22,0xa6,0xa0,0xbf,0x81,0x81,0xbd,0x81,0x85,0x82 -+// 40542 鹞 ; -+,0x07,0x78,0x51,0x29,0x02,0x20,0x3f,0x44,0x04,0x7f,0x04,0x25,0x25,0x27,0x39,0x00,0x08,0x10,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0x7d,0x01,0x01,0x05,0x02 -+// 40543 鹟 ; -+,0x04,0x12,0x29,0x28,0x52,0x3f,0x00,0x7b,0x08,0x2a,0x19,0x2e,0x48,0x08,0x2a,0x11,0x08,0x10,0xbe,0xb2,0x2a,0x22,0x26,0xa0,0xbf,0x81,0x81,0xfd,0x81,0x81,0x85,0x02 -+// 40544 鹠 ; -+,0x08,0x37,0x22,0x2a,0x3a,0x25,0x00,0x3f,0x24,0x24,0x3f,0x24,0x24,0x24,0x3f,0x00,0x08,0x90,0xbe,0xb2,0xaa,0xa2,0x26,0xa0,0xbf,0x81,0x81,0xfd,0x81,0x81,0x85,0x02 -+// 40545 鹡 ; -+,0x04,0x25,0x1e,0x15,0x2a,0x11,0x3f,0x51,0x1f,0x11,0x1f,0x11,0x11,0x11,0x15,0x12,0x08,0x10,0x7e,0x62,0x52,0x42,0xca,0x44,0x7f,0x01,0x01,0x79,0x01,0x01,0x05,0x02 -+// 40546 鹢 ; -+,0x01,0x21,0x12,0x04,0x7f,0x12,0x11,0x20,0x7f,0x2a,0x2a,0x2a,0x2a,0x2b,0x7c,0x00,0x08,0x10,0x3e,0x32,0xaa,0x22,0x2a,0xa4,0xbf,0x81,0x81,0xbd,0x81,0xc1,0x05,0x02 -+// 40547 鹣 ; -+,0x21,0x12,0x7f,0x14,0x7f,0x15,0x7f,0x15,0x7f,0x14,0x36,0x35,0x55,0x14,0x14,0x14,0x08,0x10,0xbe,0x22,0x32,0x2a,0xa6,0x20,0x3f,0x01,0x01,0x7d,0x01,0x01,0x05,0x02 -+// 40548 鹤 ; -+,0x08,0x08,0x3f,0x29,0x0c,0x12,0x1f,0x34,0x54,0x1f,0x14,0x1f,0x14,0x14,0x1f,0x10,0x10,0x20,0xfe,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0x7d,0x01,0x01,0x85,0x02 -+// 40549 鹥 ; -+,0x3f,0x28,0x2f,0x32,0x3f,0x26,0x29,0x3f,0x02,0x0f,0x09,0x08,0x0f,0x00,0x7f,0x00,0xbc,0x24,0x43,0x3c,0xa4,0x18,0x14,0xa3,0x00,0xf8,0x08,0x98,0xfe,0x02,0xea,0x04 -+// 40550 鹦 ; -+,0x00,0x7f,0x48,0x6a,0x6a,0x6a,0x33,0x4c,0x08,0x7f,0x12,0x32,0x0c,0x0a,0x11,0x60,0x08,0x90,0xbe,0xb2,0xaa,0xaa,0x22,0xa6,0x20,0xbf,0x01,0xfd,0x01,0x01,0x05,0x02 -+// 40551 鹧 ; -+,0x08,0x04,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x2a,0x2e,0x20,0x2a,0x55,0x50,0x00,0x00,0x08,0x10,0x7e,0x62,0x52,0x52,0x46,0x40,0x7f,0x01,0x01,0xbd,0x41,0x01,0x05,0x02 -+// 40552 鹨 ; -+,0x00,0x7b,0x2a,0x19,0x2a,0x4c,0x04,0x1a,0x61,0x08,0x34,0x19,0x62,0x0c,0x70,0x00,0x08,0x90,0xbe,0xb2,0xaa,0xa2,0x26,0x20,0xbf,0x01,0x7d,0x01,0x01,0x0d,0x02,0x00 -+// 40553 鹩 ; -+,0x04,0x04,0x7f,0x44,0x2b,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x04,0x25,0x44,0x14,0x08,0x08,0x10,0xbe,0xb2,0x2a,0x22,0xea,0x24,0x20,0x3f,0x01,0x7d,0x01,0x81,0x05,0x02 -+// 40554 鹪 ; -+,0x18,0x14,0x3f,0x24,0x64,0x3f,0x24,0x3f,0x24,0x24,0x3f,0x20,0x55,0x55,0x00,0x00,0x10,0x20,0x7c,0x64,0x54,0x44,0x4c,0x40,0x7e,0x02,0x02,0x7a,0x02,0x0a,0x04,0x00 -+// 40555 鹫 ; -+,0x04,0x7f,0x11,0x1f,0x04,0x16,0x65,0x0f,0x09,0x08,0x08,0x0f,0x00,0x7f,0x00,0x00,0x28,0xa4,0x7e,0x28,0x4a,0x4a,0x86,0xf8,0x08,0xa8,0x10,0xfe,0x02,0xf2,0x0a,0x04 -+// 40556 鹬 ; -+,0x3f,0x02,0x0c,0x7f,0x0d,0x14,0x6c,0x3f,0x2a,0x31,0x2e,0x2a,0x2e,0x20,0x22,0x21,0x08,0x10,0x3e,0xb2,0x2a,0x22,0x2a,0xa4,0xbf,0x81,0x81,0xbd,0x81,0x81,0x85,0x02 -+// 40557 鹭 ; -+,0x3e,0x22,0x3e,0x08,0x2e,0x28,0x2f,0x72,0x0f,0x0a,0x09,0x08,0x0f,0x00,0x7f,0x00,0x40,0x7c,0xc8,0x30,0xce,0x7c,0x44,0x7c,0xf0,0x10,0x30,0x00,0xfe,0x02,0xea,0x04 -+// 40558 鹮 ; -+,0x00,0x3f,0x2a,0x3f,0x00,0x7f,0x00,0x3f,0x21,0x3f,0x0c,0x13,0x31,0x54,0x18,0x10,0x08,0x90,0xbe,0xb2,0x2a,0xaa,0x26,0x20,0x3f,0x01,0x81,0x7d,0x01,0x81,0x05,0x02 -+// 40559 鹯 ; -+,0x04,0x7f,0x00,0x3f,0x2a,0x2e,0x20,0x3f,0x11,0x1f,0x11,0x1f,0x00,0x07,0x78,0x00,0x08,0xd0,0x3e,0xb2,0xaa,0xa2,0xa6,0xa0,0x3f,0x01,0x01,0x7d,0x01,0x81,0x05,0x02 -+// 40560 鹰 ; -+,0x00,0x3f,0x24,0x25,0x2f,0x35,0x25,0x25,0x25,0x23,0x22,0x22,0x23,0x20,0x4f,0x40,0x80,0xff,0x90,0xfe,0x10,0xfe,0x10,0xfe,0x80,0xfc,0x44,0x2c,0xff,0x01,0xe5,0x02 -+// 40561 鹱 ; -+,0x08,0x11,0x3e,0x32,0x2a,0x23,0x26,0x20,0x3e,0x02,0x0a,0x12,0x62,0x02,0x0a,0x04,0x44,0xff,0x44,0x90,0xfe,0x90,0xfe,0x90,0xfe,0x90,0xff,0x44,0x28,0x18,0x27,0xc2 -+// 40562 鹲 ; -+,0x12,0x12,0x7f,0x12,0x7f,0x41,0x1e,0x00,0x7f,0x19,0x6e,0x15,0x6c,0x14,0x64,0x0c,0x08,0x10,0xbe,0x32,0xaa,0x2a,0x22,0x26,0xa0,0x3f,0x01,0x7d,0x81,0x01,0x05,0x02 -+// 40563 鹳 ; -+,0x12,0x7f,0x12,0x3b,0x2a,0x3b,0x14,0x1f,0x34,0x3f,0x54,0x1f,0x14,0x14,0x1f,0x10,0x08,0x90,0x3e,0xb2,0xaa,0xa2,0x26,0xa0,0x3f,0x01,0x01,0x7d,0x01,0x01,0x85,0x02 -+// 40564 鹴 ; -+,0x3f,0x04,0x7f,0x44,0x37,0x04,0x37,0x00,0x17,0x7c,0x17,0x3c,0x37,0x54,0x17,0x10,0x88,0x10,0xfe,0xb2,0x2a,0x22,0x26,0x20,0xbf,0x81,0x81,0xfd,0x81,0x81,0x8a,0x04 -+// 40565 鹵 ; -+,0x00,0x00,0x00,0x00,0x1f,0x11,0x10,0x12,0x19,0x14,0x11,0x12,0x1c,0x10,0x1f,0x00,0x80,0x80,0xff,0x80,0xfe,0x02,0x92,0x22,0x52,0xca,0x22,0x12,0x8a,0x42,0xfe,0x00 -+// 40566 鹶 ; -+,0x08,0x08,0x0f,0x08,0x7f,0x51,0x43,0x65,0x5b,0x69,0x55,0x63,0x49,0x45,0x7f,0x00,0x10,0x10,0x90,0x28,0x24,0x43,0x92,0x08,0x00,0x7e,0x02,0x04,0x04,0x08,0x08,0x00 -+// 40567 鹷 ; -+,0x04,0x04,0x07,0x04,0x3f,0x28,0x25,0x32,0x2a,0x35,0x2a,0x31,0x24,0x24,0x3f,0x00,0x10,0x10,0x98,0x24,0xa3,0xd2,0x88,0x88,0xbf,0x82,0x84,0x94,0x88,0x84,0x84,0x00 -+// 40568 鹸 ; -+,0x08,0x08,0x0f,0x08,0x7f,0x51,0x6b,0x55,0x6b,0x49,0x55,0x63,0x49,0x45,0x7f,0x01,0x10,0x10,0x28,0x24,0x43,0xbe,0x08,0x7e,0x4a,0x4a,0x7e,0x08,0x08,0x14,0x63,0x82 -+// 40569 鹹 ; -+,0x08,0x08,0x0f,0x08,0x7e,0x4a,0x66,0x5a,0x6a,0x56,0x62,0x4a,0x42,0x7f,0x42,0x00,0x08,0x0c,0x0a,0x08,0xff,0x88,0xe9,0x89,0xea,0xa6,0xa4,0xe5,0x8b,0x13,0x21,0x00 -+// 40570 鹺 ; -+,0x08,0x08,0x0f,0x08,0x7f,0x49,0x63,0x55,0x6b,0x55,0x53,0x69,0x45,0x7f,0x41,0x00,0x42,0x24,0x7f,0x10,0x7e,0x10,0x10,0xff,0x20,0x40,0xfe,0x10,0x10,0x10,0xff,0x00 -+// 40571 鹻 ; -+,0x08,0x08,0x0e,0x08,0x7f,0x4b,0x63,0x55,0x4b,0x6d,0x53,0x69,0x49,0x7f,0x41,0x00,0x42,0x24,0xff,0x28,0x7e,0x2a,0xff,0x2a,0x7e,0x28,0x6c,0xab,0x28,0x28,0x28,0x00 -+// 40572 鹼 ; -+,0x08,0x08,0x0f,0x08,0x7f,0x49,0x63,0x55,0x4b,0x6d,0x53,0x69,0x45,0x7f,0x41,0x00,0x10,0x10,0x28,0x44,0xbb,0x00,0x7e,0x52,0x52,0x7e,0x24,0x24,0x24,0x5a,0x91,0x00 -+// 40573 鹽 ; -+,0x00,0x3f,0x28,0x28,0x3e,0x22,0x3e,0x28,0x28,0x3f,0x00,0x1f,0x12,0x12,0x7f,0x00,0x20,0x3f,0x50,0x5e,0x90,0x7f,0x55,0x6b,0x55,0x7f,0x00,0xfc,0x24,0x24,0xff,0x00 -+// 40574 鹾 ; -+,0x10,0x10,0x1e,0x10,0x7e,0x42,0x66,0x57,0x4a,0x4a,0x56,0x56,0x63,0x42,0x7e,0x00,0x42,0x22,0x24,0xff,0x10,0xfe,0x20,0xff,0x20,0x40,0x7e,0x90,0x10,0x10,0xff,0x00 -+// 40575 鹿 ; -+,0x00,0x00,0x1f,0x11,0x11,0x1f,0x11,0x1f,0x10,0x14,0x17,0x14,0x25,0x26,0x44,0x00,0x80,0x40,0xff,0x20,0x20,0xfe,0x22,0xfe,0x20,0x20,0xa6,0x38,0x21,0x21,0x1f,0x00 -+// 40576 麀 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x12,0x13,0x12,0x13,0x12,0x11,0x21,0x21,0x40,0x00,0x80,0xff,0x20,0xfe,0x22,0xfe,0x24,0xb9,0x21,0x3f,0x00,0x38,0xc2,0x02,0xfe,0x00 -+// 40577 麁 ; -+,0x01,0x03,0x04,0x19,0x66,0x1f,0x72,0x1f,0x12,0x1f,0x14,0x17,0x24,0x25,0x46,0x04,0x00,0xe0,0x40,0x80,0x40,0xff,0x20,0xfc,0x24,0xfc,0x40,0x4c,0x72,0x42,0x3e,0x00 -+// 40578 麂 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x17,0x14,0x16,0x13,0x12,0x22,0x24,0x48,0x00,0x80,0xff,0x20,0xfc,0x24,0xfc,0x20,0xbd,0x21,0x1f,0xf0,0x10,0x11,0x11,0x0f,0x00 -+// 40579 麃 ; -+,0x01,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x14,0x17,0x14,0x21,0x28,0x48,0x00,0x00,0x80,0xff,0x20,0xfe,0x22,0xfe,0x20,0xbe,0x21,0x1f,0x00,0x24,0x92,0x92,0x00 -+// 40580 麄 ; -+,0x04,0x04,0x0b,0x11,0x62,0x04,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x17,0x24,0x25,0x46,0x20,0x10,0xec,0x23,0xa0,0x40,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xa4,0x39,0xa1,0x1f -+// 40581 麅 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x15,0x16,0x17,0x14,0x2f,0x34,0x43,0x00,0x80,0xff,0x20,0xfe,0x22,0xfe,0x24,0xb9,0x21,0x1f,0xfc,0x04,0xf5,0x11,0xff,0x00 -+// 40582 麆 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x3f,0x24,0x27,0x25,0x27,0x24,0x27,0x24,0x47,0x44,0x3f,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xba,0x22,0xfe,0x08,0xf8,0x08,0xf8,0x08,0xff -+// 40583 麇 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x14,0x17,0x13,0x10,0x27,0x20,0x43,0x0c,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xbd,0x21,0x1f,0xf8,0x40,0xfe,0xe0,0x58,0x46 -+// 40584 麈 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x17,0x15,0x16,0x10,0x17,0x10,0x23,0x20,0x4f,0x80,0xff,0x20,0xfe,0x22,0xfe,0x20,0xbe,0x21,0x9f,0x40,0xfe,0x40,0xfc,0x40,0xff -+// 40585 麉 ; -+,0x1f,0x04,0x3f,0x04,0x04,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x14,0x25,0x26,0x44,0x3e,0x08,0x7f,0x88,0x48,0xff,0x20,0xfe,0x22,0xfe,0x20,0xa6,0x38,0x21,0x21,0x1f -+// 40586 麊 ; -+,0x09,0x05,0x3f,0x05,0x19,0x61,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x24,0x26,0x44,0x20,0x40,0xfe,0x40,0x30,0x0e,0xfc,0x40,0xf8,0x48,0xf8,0x40,0x48,0x72,0x42,0x3e -+// 40587 麋 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x17,0x15,0x16,0x11,0x10,0x17,0x20,0x23,0x4c,0x80,0xff,0x20,0xfe,0x22,0xfe,0x20,0xbc,0x21,0x1f,0x48,0xd0,0xfe,0xd0,0x48,0x46 -+// 40588 麌 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x3f,0x28,0x2f,0x2a,0x2f,0x22,0x23,0x20,0x27,0x40,0x4f,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x20,0x3d,0x21,0xff,0x10,0xf0,0x40,0xfc,0xa0,0x1e -+// 40589 麍 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x14,0x16,0x10,0x17,0x11,0x23,0x21,0x42,0x80,0xff,0x20,0xfe,0x22,0xfe,0x24,0x38,0x22,0x9e,0x40,0xfe,0x00,0xfd,0x49,0x4f -+// 40590 麎 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x14,0x17,0x14,0x17,0x13,0x12,0x23,0x25,0x45,0x09,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xbc,0x21,0x1f,0xfc,0x00,0xfe,0x24,0x98,0x07 -+// 40591 麏 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x14,0x17,0x10,0x17,0x20,0x23,0x41,0x06,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x20,0x3e,0x21,0xff,0x84,0xfe,0x84,0xfc,0x88,0xf8 -+// 40592 麐 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x15,0x16,0x17,0x10,0x17,0x11,0x10,0x2f,0x22,0x43,0x80,0xff,0x20,0xfc,0x24,0xfc,0x28,0x31,0x1f,0x40,0xfc,0x10,0xe0,0xf8,0x0f,0xf8 -+// 40593 麑 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x12,0x13,0x11,0x16,0x17,0x14,0x27,0x21,0x42,0x0c,0x80,0xff,0x20,0xfe,0x22,0xfe,0x28,0x31,0x9f,0x04,0xbc,0x04,0xfc,0x21,0x21,0x1f -+// 40594 麒 ; -+,0x08,0x04,0x3f,0x2a,0x3f,0x2a,0x2a,0x3f,0x2a,0x2a,0x2f,0x2a,0x2f,0x4a,0x40,0x00,0x24,0x24,0xff,0x24,0xa4,0xbc,0xa4,0xbc,0x24,0x24,0x7f,0x80,0x24,0x43,0x81,0x00 -+// 40595 麓 ; -+,0x04,0x3f,0x0e,0x15,0x65,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x24,0x27,0x44,0x10,0x7e,0x38,0x54,0x13,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x20,0xa8,0x32,0x22,0x1e -+// 40596 麔 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x3f,0x24,0x27,0x23,0x24,0x2b,0x22,0x2c,0x27,0x44,0x47,0x80,0xff,0x20,0xfc,0x24,0xfc,0x22,0x3e,0xc8,0x8e,0x88,0x7f,0x00,0xfc,0x04,0xfc -+// 40597 麕 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x12,0x13,0x12,0x17,0x14,0x14,0x25,0x24,0x45,0x07,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x10,0x9c,0x11,0xff,0xe4,0x44,0xf4,0xe4,0x54,0xfc -+// 40598 麖 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x12,0x13,0x10,0x1f,0x12,0x13,0x20,0x22,0x4d,0x00,0x40,0xff,0x10,0xfe,0x12,0xfe,0x21,0xbf,0x40,0xfe,0x08,0xf8,0x40,0x48,0x46,0x82 -+// 40599 麗 ; -+,0x7e,0x00,0x3e,0x32,0x2b,0x22,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x24,0x26,0x44,0xfe,0x00,0x7c,0x64,0x54,0xc4,0xfe,0x20,0xfc,0x24,0xfc,0x20,0x38,0x22,0x22,0x1e -+// 40600 麘 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x15,0x16,0x17,0x10,0x1f,0x11,0x13,0x2e,0x22,0x43,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x28,0x32,0xfe,0x40,0xfe,0x50,0xfc,0x8b,0x48,0xf8 -+// 40601 麙 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x3f,0x24,0x27,0x20,0x2f,0x28,0x2f,0x28,0x57,0x55,0x27,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x22,0xbe,0x28,0xfe,0x20,0x94,0x14,0x09,0x35,0x03 -+// 40602 麚 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x3f,0x28,0x2f,0x20,0x2f,0x28,0x2f,0x2a,0x2d,0x4a,0x48,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x22,0x3e,0x00,0xbe,0x82,0xbe,0x24,0x18,0x14,0x63 -+// 40603 麛 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x14,0x17,0x10,0x17,0x11,0x17,0x24,0x27,0x41,0x03,0x40,0xfe,0x20,0xfc,0x24,0xfc,0x21,0x3f,0x00,0x7e,0x34,0x2c,0x34,0x2c,0x7f,0x04 -+// 40604 麜 ; -+,0x00,0x3f,0x22,0x3f,0x22,0x3f,0x28,0x2f,0x21,0x2f,0x29,0x2f,0x20,0x2f,0x41,0x46,0x80,0xff,0x20,0xfc,0x24,0xfc,0x21,0xff,0x20,0xfc,0x24,0xfc,0x40,0xfe,0x50,0x4c -+// 40605 麝 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x12,0x13,0x1f,0x1a,0x1d,0x2a,0x3f,0x22,0x44,0x18,0x80,0xfe,0x20,0xfc,0x24,0xfc,0x22,0x1e,0x84,0xbf,0x84,0xa4,0x94,0x94,0x84,0x8c -+// 40606 麞 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x12,0x13,0x10,0x17,0x11,0x1f,0x22,0x2f,0x40,0x00,0x80,0xff,0x20,0xfe,0x22,0xfe,0x21,0x9f,0x40,0xfe,0x10,0xff,0x48,0xff,0x40,0x40 -+// 40607 麟 ; -+,0x08,0x04,0x3f,0x2a,0x3f,0x2a,0x3f,0x24,0x24,0x3f,0x24,0x25,0x2e,0x54,0x41,0x00,0x10,0x52,0xb4,0x7f,0xb8,0xd6,0x90,0x44,0x7f,0x94,0xa4,0x7f,0x44,0x84,0x04,0x04 -+// 40608 麠 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x24,0x27,0x20,0x2f,0x22,0x23,0x2e,0x23,0x42,0x4f,0x80,0xfe,0x40,0xfc,0x44,0xfc,0x41,0x3f,0x00,0xfe,0x48,0xf8,0x4e,0xf8,0x48,0xfe -+// 40609 麡 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x25,0x26,0x2f,0x21,0x3e,0x2a,0x37,0x24,0x47,0x08,0x80,0xfe,0x40,0xfc,0x44,0xfc,0x21,0xbf,0xfc,0x5c,0x9a,0x94,0xfb,0x08,0xf8,0x08 -+// 40610 麢 ; -+,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x12,0x17,0x10,0x1f,0x1a,0x15,0x12,0x2e,0x2a,0x4e,0x80,0xff,0x20,0xfe,0x22,0xfe,0x21,0xff,0x40,0xff,0x49,0x54,0x48,0xee,0xaa,0xee -+// 40611 麣 ; -+,0x10,0x08,0x7f,0x54,0x7f,0x55,0x55,0x7f,0x41,0x69,0x7f,0x69,0x6b,0x7d,0x29,0x02,0xee,0xaa,0xee,0x00,0xff,0x04,0xf4,0x17,0xf9,0x59,0x75,0x52,0x7a,0xd5,0x19,0x10 -+// 40612 麤 ; -+,0x00,0x1f,0x12,0x1f,0x12,0x1f,0x22,0x2b,0x7e,0x28,0x3e,0x2a,0x3e,0x35,0x5e,0x57,0x80,0xfe,0x40,0xfc,0x44,0xfc,0x49,0x51,0xfe,0xa8,0xfe,0xaa,0xfe,0xc9,0x69,0x47 -+// 40613 麥 ; -+,0x00,0x00,0x3f,0x08,0x08,0x14,0x62,0x03,0x0d,0x73,0x04,0x1b,0x00,0x01,0x06,0x38,0x80,0x80,0xff,0x88,0x88,0x94,0xa3,0x60,0x18,0xf7,0x20,0x40,0xc0,0x20,0x10,0x00 -+// 40614 麦 ; -+,0x00,0x00,0x1f,0x00,0x0f,0x00,0x3f,0x02,0x03,0x03,0x04,0x08,0x00,0x03,0x1c,0x00,0x80,0x80,0xfe,0x80,0xfc,0x80,0xff,0x00,0xf8,0x08,0x90,0x60,0x90,0x08,0x07,0x02 -+// 40615 麧 ; -+,0x04,0x04,0x7f,0x25,0x25,0x56,0x0a,0x11,0x68,0x0f,0x11,0x2a,0x04,0x0a,0x12,0x60,0x10,0x10,0x90,0x1f,0x20,0xa0,0x3e,0x44,0x08,0x10,0x20,0x20,0x41,0x41,0x3f,0x00 -+// 40616 麨 ; -+,0x04,0x04,0x7f,0x15,0x35,0x4e,0x0a,0x11,0x68,0x0f,0x1a,0x24,0x0a,0x10,0x67,0x00,0x10,0x10,0x90,0x10,0x54,0xd2,0x51,0x91,0x10,0x12,0x04,0x08,0x30,0xc0,0x00,0x00 -+// 40617 麩 ; -+,0x04,0x04,0x7f,0x25,0x25,0x56,0x0a,0x11,0x68,0x0f,0x11,0x2a,0x04,0x0a,0x73,0x00,0x10,0x10,0x90,0x7e,0x10,0x90,0x10,0x7f,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 40618 麪 ; -+,0x04,0x7f,0x04,0x15,0x15,0x2e,0x4a,0x11,0x68,0x0f,0x11,0x6a,0x04,0x0b,0x11,0x20,0x00,0xbf,0x08,0x08,0x08,0xaf,0x29,0xa9,0x29,0x3f,0x01,0x01,0x01,0x01,0x05,0x02 -+// 40619 麫 ; -+,0x04,0x3f,0x04,0x15,0x15,0x2e,0x49,0x10,0x6f,0x09,0x19,0x26,0x06,0x09,0x10,0x60,0x00,0xbf,0x08,0x08,0x28,0xaf,0x28,0xa8,0x3f,0x01,0x01,0x01,0x01,0x01,0x05,0x02 -+// 40620 麬 ; -+,0x04,0x3f,0x04,0x15,0x15,0x2e,0x4a,0x11,0x6f,0x09,0x1a,0x64,0x0a,0x10,0x61,0x00,0x08,0x88,0x08,0x7f,0x4a,0xc8,0x48,0x7e,0xe2,0x54,0x54,0x48,0x94,0xa3,0x42,0x00 -+// 40621 麭 ; -+,0x04,0x7f,0x04,0x15,0x15,0x2e,0x4e,0x19,0x68,0x1f,0x12,0x6c,0x0c,0x12,0x60,0x00,0x20,0xa0,0x20,0x7e,0x42,0x82,0x7a,0xca,0x4a,0x7a,0x46,0x40,0x41,0x41,0x3f,0x00 -+// 40622 麮 ; -+,0x08,0x08,0x7f,0x2a,0x2a,0x5d,0x14,0x22,0x50,0x1e,0x22,0x54,0x08,0x14,0x62,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x10,0x10,0x20,0x24,0x42,0xff,0x01,0x00 -+// 40623 麯 ; -+,0x04,0x04,0x3f,0x15,0x15,0x2e,0x4a,0x11,0x68,0x0f,0x11,0x2a,0x04,0x1a,0x60,0x00,0x14,0x14,0x94,0x14,0x7f,0xd5,0x55,0x55,0x7f,0x55,0x55,0x55,0x55,0x55,0x7f,0x00 -+// 40624 麰 ; -+,0x08,0x08,0x7f,0x2a,0x2a,0x5d,0x14,0x23,0x48,0x0f,0x12,0x2c,0x0c,0x12,0x60,0x00,0x10,0x10,0x22,0x7f,0x09,0x48,0x48,0x7f,0x88,0x08,0xff,0x08,0x08,0x08,0x08,0x08 -+// 40625 麱 ; -+,0x08,0x08,0x7f,0x08,0x2a,0x5d,0x0c,0x12,0x68,0x0e,0x12,0x2c,0x0a,0x11,0x60,0x00,0x10,0x14,0x12,0xff,0x10,0x7e,0x52,0x7e,0x52,0x52,0x7e,0x52,0x52,0x52,0x46,0x00 -+// 40626 麲 ; -+,0x04,0x3f,0x04,0x15,0x15,0x2e,0x4a,0x11,0x68,0x1f,0x12,0x2c,0x06,0x09,0x30,0x00,0x00,0x7e,0x42,0x42,0x7e,0xc2,0x7e,0x42,0x42,0x7e,0x28,0x28,0x49,0x49,0x87,0x00 -+// 40627 麳 ; -+,0x08,0x08,0x7f,0x2a,0x2a,0x5d,0x12,0x31,0x5f,0x22,0x34,0x4c,0x0a,0x11,0x60,0x00,0x10,0x10,0x7f,0x10,0x54,0x54,0xba,0x11,0x38,0x38,0x54,0x54,0x93,0x12,0x10,0x10 -+// 40628 麴 ; -+,0x08,0x08,0x7f,0x08,0x2a,0x2b,0x5d,0x22,0x51,0x1f,0x32,0x4c,0x0c,0x12,0x60,0x00,0x20,0x20,0x7f,0x51,0xd5,0x39,0x11,0x7d,0x11,0x39,0x55,0x91,0x11,0x15,0x02,0x00 -+// 40629 麵 ; -+,0x04,0x04,0x7f,0x04,0x25,0x35,0x4e,0x11,0x68,0x0f,0x1a,0x24,0x0a,0x12,0x60,0x00,0x00,0x7f,0x90,0x10,0x7f,0x55,0xd5,0x5d,0x55,0x55,0x5d,0x55,0x55,0x7f,0x41,0x00 -+// 40630 麶 ; -+,0x04,0x7f,0x04,0x15,0x15,0x2e,0x4e,0x15,0x70,0x1f,0x29,0x46,0x06,0x09,0x30,0x00,0x10,0x88,0x7f,0x00,0x6a,0xd2,0x6a,0x7e,0x08,0x7f,0x55,0x7f,0x41,0x41,0x45,0x42 -+// 40631 麷 ; -+,0x08,0x08,0x7f,0x08,0x2a,0x5d,0x1c,0x2a,0x51,0x1e,0x22,0x54,0x08,0x14,0x61,0x00,0x55,0x7f,0x55,0x7f,0x55,0x7f,0x55,0x7f,0x00,0xff,0x42,0x7e,0x22,0x14,0xff,0x00 -+// 40632 麸 ; -+,0x08,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x10,0x1e,0x32,0x4c,0x04,0x0a,0x11,0x61,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0x10,0xff,0x10,0x10,0x28,0x28,0x44,0x87,0x02,0x00 -+// 40633 麹 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x04,0x7f,0x08,0x0f,0x11,0x2a,0x06,0x05,0x18,0x60,0x00,0x20,0x20,0xa0,0x7f,0x41,0x91,0xd5,0x39,0x7d,0x11,0x39,0x55,0x91,0x11,0x05,0x02 -+// 40634 麺 ; -+,0x04,0x04,0x3f,0x04,0x3f,0x04,0x7f,0x08,0x0f,0x11,0x2a,0x04,0x0a,0x10,0x60,0x00,0x00,0x00,0x7f,0x10,0x20,0x7f,0xd5,0x5d,0x55,0x55,0x5d,0x55,0x55,0x55,0x7f,0x00 -+// 40635 麻 ; -+,0x00,0x00,0x1f,0x12,0x12,0x1f,0x12,0x12,0x17,0x16,0x1a,0x32,0x22,0x42,0x02,0x00,0x80,0x40,0xff,0x08,0x08,0xbf,0x08,0x08,0x18,0xac,0x2c,0x4b,0x8a,0x08,0x08,0x00 -+// 40636 麼 ; -+,0x00,0x00,0x1f,0x12,0x1f,0x12,0x17,0x1a,0x12,0x10,0x11,0x13,0x20,0x21,0x43,0x00,0x80,0x40,0xff,0x08,0xbe,0x18,0x2c,0x8b,0x48,0x80,0x20,0xc0,0x88,0x04,0xfe,0x04 -+// 40637 麽 ; -+,0x00,0x3f,0x24,0x24,0x3f,0x26,0x2d,0x34,0x24,0x21,0x21,0x22,0x24,0x49,0x43,0x00,0x80,0xff,0x10,0x10,0x7e,0x38,0x54,0x57,0x92,0x00,0x40,0x40,0x88,0x04,0xfe,0x04 -+// 40638 麾 ; -+,0x00,0x1f,0x12,0x1f,0x13,0x16,0x1a,0x10,0x17,0x10,0x17,0x10,0x1f,0x20,0x20,0x40,0x80,0xff,0x08,0xbe,0x1c,0xab,0x0a,0x70,0x80,0x80,0xf8,0x80,0xfc,0x81,0x81,0x7f -+// 40639 麿 ; -+,0x00,0x3f,0x22,0x2f,0x27,0x3a,0x22,0x27,0x24,0x27,0x20,0x2f,0x28,0x48,0x4f,0x00,0x80,0xff,0x10,0xfe,0x38,0xd6,0x10,0xf8,0x08,0xf8,0x00,0xfc,0x04,0x04,0xfc,0x00 -+// 40640 黀 ; -+,0x00,0x3f,0x24,0x24,0x3f,0x2e,0x35,0x2f,0x24,0x27,0x24,0x27,0x24,0x27,0x58,0x40,0x80,0xff,0x10,0x10,0x7e,0x38,0x54,0xfe,0x80,0xbe,0xa2,0x94,0xc8,0x94,0xa7,0xc2 -+// 40641 黁 ; -+,0x00,0x3f,0x24,0x3f,0x2e,0x35,0x24,0x23,0x20,0x2f,0x21,0x26,0x3b,0x42,0x42,0x03,0x80,0xff,0x10,0x7e,0x38,0x56,0x10,0xf8,0x40,0xfe,0x50,0x4c,0xfb,0x88,0x48,0xf8 -+// 40642 黂 ; -+,0x00,0x3f,0x22,0x2f,0x27,0x3a,0x22,0x23,0x21,0x2f,0x21,0x23,0x22,0x23,0x41,0x02,0x40,0xff,0x10,0xbe,0x38,0xd7,0x50,0xf8,0x50,0xfe,0x10,0xf8,0xa8,0xf8,0x10,0x08 -+// 40643 黃 ; -+,0x04,0x3f,0x04,0x07,0x00,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x00,0x04,0x08,0x30,0x20,0xff,0x20,0xe0,0x00,0xff,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x00,0x10,0x0c,0x04 -+// 40644 黄 ; -+,0x02,0x02,0x3f,0x02,0x02,0x7f,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x04,0x08,0x30,0x20,0x20,0xfe,0x20,0x20,0xff,0x80,0xf8,0x88,0xf8,0x88,0x88,0xf8,0x10,0x0c,0x04 -+// 40645 黅 ; -+,0x12,0x12,0x7f,0x12,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x12,0x11,0x21,0x00,0x10,0x10,0x90,0x28,0xa4,0x47,0x92,0x08,0x00,0x7e,0x02,0x04,0x04,0x08,0x08,0x00 -+// 40646 黆 ; -+,0x12,0x12,0x3f,0x12,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x12,0x11,0x21,0x00,0x10,0x10,0x10,0x7f,0xd2,0x54,0x10,0x18,0x18,0x28,0x28,0x28,0x49,0x49,0x87,0x00 -+// 40647 黇 ; -+,0x12,0x12,0x3f,0x12,0x12,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x25,0x3f,0x12,0x11,0x21,0x10,0x10,0x10,0x10,0x1f,0x90,0x10,0x10,0x7e,0x42,0x42,0x42,0x42,0x42,0x7e,0x42 -+// 40648 黈 ; -+,0x0a,0x0a,0x3f,0x0a,0x7f,0x04,0x3f,0x24,0x24,0x3f,0x24,0x24,0x3f,0x11,0x10,0x20,0x10,0x08,0x88,0x3f,0x88,0x08,0x88,0x88,0xbf,0x88,0x88,0x88,0x88,0x08,0xbf,0x80 -+// 40649 黉 ; -+,0x11,0x08,0x3f,0x22,0x0f,0x02,0x3f,0x00,0x0f,0x08,0x0f,0x08,0x0f,0x02,0x04,0x18,0x04,0x88,0xff,0x21,0xfc,0x20,0xff,0x80,0xf8,0x88,0xf8,0x88,0xf8,0x20,0x18,0x08 -+// 40650 黊 ; -+,0x12,0x12,0x7f,0x12,0x7f,0x04,0x3f,0x25,0x3f,0x25,0x3f,0x00,0x12,0x11,0x21,0x00,0x08,0x08,0x88,0x3e,0x88,0x08,0x7f,0x08,0x08,0x08,0x3e,0x08,0x08,0x08,0x7f,0x00 -+// 40651 黋 ; -+,0x08,0x08,0x4a,0x2a,0x2d,0x08,0x7e,0x14,0x14,0x14,0x14,0x14,0x24,0x24,0x43,0x00,0x48,0x48,0xfe,0x48,0xff,0x10,0xfc,0x94,0xfc,0x94,0xfc,0x48,0x85,0x01,0xff,0x00 -+// 40652 黌 ; -+,0x1d,0x10,0x1d,0x11,0x1c,0x11,0x3f,0x22,0x0f,0x02,0x1f,0x04,0x07,0x04,0x07,0x0c,0x5c,0x84,0x5c,0x44,0x9c,0x44,0xfe,0x42,0xf8,0x40,0xfc,0x90,0xf0,0x90,0xf0,0x18 -+// 40653 黍 ; -+,0x00,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x70,0x01,0x02,0x0c,0x72,0x01,0x06,0x18,0x01,0x7c,0x80,0x80,0xff,0xc0,0xb0,0x88,0x86,0x42,0xa0,0x98,0xa7,0xe0,0x90,0x8c,0x84 -+// 40654 黎 ; -+,0x03,0x1c,0x04,0x3f,0x0c,0x17,0x64,0x05,0x02,0x0c,0x74,0x03,0x02,0x0c,0x00,0x01,0x20,0x20,0x7e,0x52,0x92,0x22,0x4a,0x84,0x40,0xb0,0xaf,0xc0,0xb0,0x8c,0x84,0x80 -+// 40655 黏 ; -+,0x1f,0x04,0x7f,0x0e,0x15,0x64,0x04,0x0e,0x15,0x65,0x16,0x0e,0x15,0x64,0x14,0x08,0x10,0x10,0x90,0x1f,0x10,0x90,0x10,0x10,0x7e,0xc2,0x42,0x42,0x42,0xfe,0x42,0x00 -+// 40656 黐 ; -+,0x06,0x38,0x08,0x7f,0x1c,0x2b,0x48,0x0c,0x12,0x68,0x2a,0x1c,0x2a,0x4a,0x08,0x18,0x20,0x10,0xff,0x04,0x6a,0x5a,0x66,0x7e,0x10,0xff,0x91,0xa5,0xff,0x81,0x85,0x82 -+// 40657 黑 ; -+,0x1f,0x10,0x14,0x12,0x12,0x1f,0x00,0x00,0x1f,0x00,0x7f,0x00,0x24,0x22,0x42,0x00,0xfc,0x84,0x94,0xa4,0xc4,0xfc,0x80,0x80,0xfc,0x80,0xff,0x00,0x42,0x21,0x21,0x00 -+// 40658 黒 ; -+,0x00,0x1f,0x10,0x1f,0x10,0x10,0x1f,0x00,0x3f,0x00,0x7f,0x00,0x24,0x22,0x42,0x00,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x80,0xfe,0x80,0xff,0x00,0x42,0x21,0x21,0x00 -+// 40659 黓 ; -+,0x00,0x3f,0x24,0x35,0x2e,0x3f,0x04,0x3f,0x04,0x07,0x78,0x05,0x32,0x2a,0x48,0x00,0x20,0xa8,0xa4,0xa4,0xa0,0xff,0x10,0x90,0x10,0x90,0x10,0x08,0x89,0x85,0x03,0x00 -+// 40660 黔 ; -+,0x00,0x7f,0x49,0x6b,0x5d,0x7f,0x08,0x7f,0x08,0x0f,0x70,0x15,0x2a,0x2a,0x40,0x00,0x10,0x10,0x10,0x28,0x44,0x83,0x20,0x10,0x10,0x7e,0x04,0x04,0x88,0x88,0x10,0x00 -+// 40661 黕 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x15,0x2a,0x2a,0x41,0x00,0x10,0x10,0x10,0x7f,0x52,0x54,0x10,0x10,0x28,0x28,0x28,0x49,0xc9,0x89,0x07,0x00 -+// 40662 黖 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x15,0x2a,0x28,0x41,0x00,0x00,0x7e,0x10,0x50,0x50,0x50,0x7f,0x18,0x18,0x18,0x28,0x28,0xc9,0x89,0x07,0x00 -+// 40663 黗 ; -+,0x00,0x3f,0x29,0x2b,0x3d,0x29,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x00,0x55,0x4a,0x00,0x10,0x10,0x10,0xff,0x10,0x10,0x52,0x52,0x52,0x7e,0x10,0x10,0x11,0x11,0x8f,0x00 -+// 40664 默 ; -+,0x00,0x3f,0x24,0x35,0x2e,0x3f,0x04,0x3f,0x04,0x07,0x78,0x00,0x55,0x4a,0x4b,0x00,0x10,0x90,0x94,0x92,0x92,0xff,0x10,0x90,0x10,0x90,0x28,0x28,0x44,0x87,0x02,0x00 -+// 40665 黙 ; -+,0x00,0x3f,0x24,0x3f,0x24,0x3f,0x04,0x3f,0x04,0x07,0x78,0x00,0x22,0x21,0x41,0x00,0x10,0x94,0x92,0x90,0xff,0x90,0x10,0xa8,0x24,0x47,0x82,0x00,0x44,0x22,0x22,0x00 -+// 40666 黚 ; -+,0x00,0x7f,0x49,0x6b,0x5d,0x7f,0x08,0x7f,0x08,0x0f,0x70,0x2a,0x55,0x55,0x40,0x00,0x00,0x44,0x44,0x44,0xff,0x44,0x44,0x44,0x7c,0x44,0x44,0x44,0x44,0x7c,0x44,0x00 -+// 40667 黛 ; -+,0x04,0x08,0x1b,0x68,0x08,0x0f,0x0c,0x0a,0x0f,0x00,0x1f,0x00,0x3f,0x00,0x12,0x21,0x50,0x48,0xfe,0x20,0x12,0xfe,0x94,0xa4,0xfc,0x80,0xfc,0x80,0xff,0x00,0x44,0x22 -+// 40668 黜 ; -+,0x00,0x3f,0x29,0x2b,0x3d,0x29,0x3f,0x08,0x08,0x3e,0x08,0x0f,0x70,0x35,0x4a,0x00,0x00,0x10,0x10,0x52,0x52,0x52,0x52,0x7e,0x10,0x52,0x52,0x52,0x52,0x52,0xfe,0x00 -+// 40669 黝 ; -+,0x00,0x7e,0x4a,0x6e,0x5a,0x7e,0x09,0x7e,0x08,0x0e,0x71,0x02,0x15,0x54,0x40,0x00,0x08,0x08,0x48,0x48,0x9f,0xa9,0xc9,0x49,0x89,0xa9,0xf1,0x11,0x21,0x4a,0x84,0x00 -+// 40670 點 ; -+,0x00,0x3f,0x24,0x35,0x2e,0x3f,0x04,0x3f,0x04,0x07,0x78,0x15,0x2a,0x2a,0x40,0x00,0x10,0x90,0x90,0x90,0x9f,0x90,0x10,0x10,0x7e,0x42,0x42,0x42,0xc2,0x42,0x7e,0x00 -+// 40671 黟 ; -+,0x7f,0x49,0x6b,0x5d,0x49,0x7f,0x08,0x7f,0x08,0x0f,0x70,0x15,0x2a,0x2a,0x40,0x01,0x10,0x1e,0x22,0x64,0x18,0x10,0x28,0x48,0x1f,0x21,0x52,0x14,0x88,0x10,0x60,0x80 -+// 40672 黠 ; -+,0x00,0x3f,0x25,0x37,0x2d,0x3f,0x04,0x3f,0x04,0x07,0x78,0x15,0x2a,0x2a,0x40,0x00,0x08,0x08,0x08,0x7f,0x08,0x08,0x7e,0x00,0x00,0x7e,0x42,0x42,0xc2,0x42,0x7e,0x00 -+// 40673 黡 ; -+,0x3f,0x20,0x20,0x3f,0x21,0x22,0x3f,0x25,0x27,0x20,0x27,0x20,0x2f,0x25,0x44,0x08,0xff,0x90,0x88,0xfe,0x20,0x18,0xff,0x54,0xfc,0x40,0xfc,0x40,0xfe,0x24,0x92,0x92 -+// 40674 黢 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3e,0x08,0x0e,0x70,0x02,0x35,0x2a,0x49,0x00,0x10,0x10,0x24,0x7e,0x02,0x28,0x46,0x82,0x40,0x7e,0xc4,0x28,0x10,0x68,0x87,0x02 -+// 40675 黣 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3e,0x08,0x0e,0x70,0x00,0x55,0x55,0x40,0x00,0x20,0x20,0x7f,0x40,0xfe,0x62,0x52,0x42,0xff,0x62,0x52,0x7f,0x02,0x02,0x0a,0x04 -+// 40676 黤 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x00,0x55,0x4a,0x40,0x00,0x10,0x10,0xff,0x10,0x2c,0x53,0xfc,0x54,0x7c,0x54,0x54,0x7c,0x11,0x91,0x0f,0x00 -+// 40677 黥 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x00,0x55,0x55,0x40,0x00,0x20,0x10,0xff,0x00,0x00,0x7c,0x44,0x44,0x7c,0x10,0x50,0x54,0x92,0x12,0x50,0x20 -+// 40678 黦 ; -+,0x00,0x7e,0x4a,0x6e,0x5a,0x7e,0x08,0x08,0x7e,0x09,0x0e,0x70,0x01,0x54,0x55,0x00,0x20,0x10,0x10,0xff,0x82,0x44,0x7e,0x9a,0x9a,0x6a,0x2e,0x48,0x49,0x89,0x07,0x00 -+// 40679 黧 ; -+,0x1f,0x04,0x3f,0x0e,0x15,0x24,0x0f,0x0c,0x0a,0x0f,0x00,0x1f,0x00,0x3f,0x12,0x21,0x20,0x3e,0x2a,0x4a,0x12,0x26,0xfc,0x94,0xa4,0xfc,0x80,0xfc,0x80,0xff,0x22,0x11 -+// 40680 黨 ; -+,0x09,0x04,0x3f,0x24,0x07,0x00,0x0f,0x0c,0x0a,0x0f,0x00,0x1f,0x00,0x3f,0x12,0x21,0x08,0x90,0xff,0x12,0xf0,0x00,0xf8,0xa8,0xc8,0xf8,0x80,0xfe,0x80,0xff,0x44,0x22 -+// 40681 黩 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3e,0x08,0x0e,0x71,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0x7e,0x10,0xff,0x02,0x50,0xb0,0x50,0x10,0xff,0x28,0x24,0x42,0x82,0x00 -+// 40682 黪 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x02,0x55,0x54,0x43,0x00,0x10,0x10,0x24,0x7e,0x12,0xff,0x28,0x44,0x93,0x20,0xc8,0x32,0xcc,0x30,0xc0,0x00 -+// 40683 黫 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3f,0x08,0x0f,0x70,0x00,0x55,0x55,0x40,0x00,0x00,0x7f,0x28,0x28,0xfe,0xaa,0xaa,0xaa,0xfe,0x10,0x7e,0x10,0x10,0x10,0xff,0x00 -+// 40684 黬 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3e,0x08,0x0e,0x70,0x02,0x55,0x55,0x42,0x00,0x0c,0x0a,0x08,0xff,0x88,0xf8,0x88,0xf9,0xd5,0xd6,0xf5,0x85,0x8b,0x13,0x21,0x00 -+// 40685 黭 ; -+,0x3f,0x29,0x2b,0x3d,0x29,0x3f,0x08,0x3e,0x08,0x0f,0x78,0x00,0x55,0x55,0x40,0x00,0x10,0x10,0x28,0x44,0xbb,0x00,0x7e,0x42,0x7e,0x24,0xff,0x24,0x44,0x44,0x84,0x04 -+// 40686 黮 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3e,0x09,0x0e,0x70,0x00,0x55,0x54,0x40,0x00,0x44,0x44,0xff,0x44,0x7c,0x44,0x7c,0x44,0xff,0x80,0xa8,0xa4,0xc4,0x80,0xff,0x00 -+// 40687 黯 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3f,0x08,0x08,0x0f,0x70,0x00,0x55,0x55,0x00,0x10,0x08,0xfe,0x44,0x24,0x28,0xff,0x00,0x7e,0x42,0x7e,0x42,0x42,0x42,0x7e,0x42 -+// 40688 黰 ; -+,0x3f,0x29,0x2b,0x3d,0x29,0x3f,0x08,0x3f,0x08,0x0f,0x72,0x05,0x55,0x50,0x40,0x00,0x10,0x10,0xff,0x10,0x7c,0x44,0x7c,0x44,0x7c,0x44,0x7c,0x44,0xff,0x44,0x42,0x82 -+// 40689 黱 ; -+,0x00,0x3c,0x25,0x24,0x3f,0x24,0x27,0x25,0x3d,0x25,0x24,0x25,0x24,0x27,0x55,0x0a,0xa8,0x70,0xfc,0x20,0xff,0x88,0xff,0xac,0x74,0xfc,0x20,0xfc,0x20,0xff,0x52,0x29 -+// 40690 黲 ; -+,0x00,0x7e,0x52,0x76,0x5a,0x7f,0x10,0x10,0x7c,0x13,0x1c,0x61,0x14,0x54,0x43,0x00,0x20,0x48,0xfc,0x48,0x92,0xff,0x21,0x50,0x8c,0x23,0x50,0xa4,0xc8,0x30,0xc0,0x00 -+// 40691 黳 ; -+,0x3f,0x28,0x2f,0x34,0x3f,0x2a,0x3f,0x00,0x0f,0x0a,0x0f,0x00,0x0f,0x00,0x3f,0x22,0xbc,0x24,0x47,0x3c,0x24,0x18,0x67,0x00,0xf8,0xa8,0xf8,0x80,0xf8,0x80,0xfe,0x22 -+// 40692 黴 ; -+,0x01,0x15,0x15,0x27,0x48,0x0f,0x10,0x37,0x55,0x17,0x17,0x11,0x17,0x11,0x1f,0x15,0x08,0x48,0x48,0xd0,0x1f,0xb2,0x12,0xd2,0x54,0xd4,0xc8,0x08,0xd4,0x24,0xe3,0x52 -+// 40693 黵 ; -+,0x00,0x3f,0x29,0x3b,0x2d,0x3f,0x08,0x3e,0x08,0x08,0x0e,0x70,0x02,0x55,0x54,0x01,0x20,0x3c,0x48,0xff,0xa0,0x90,0xff,0x80,0xbe,0x80,0xbe,0x80,0xbe,0xa2,0xbe,0x00 -+// 40694 黶 ; -+,0x3f,0x28,0x2f,0x28,0x2f,0x20,0x2f,0x2a,0x2f,0x25,0x27,0x20,0x23,0x20,0x4f,0x44,0xff,0x94,0x92,0xff,0x90,0x28,0xa4,0xc3,0xfc,0x54,0xfc,0x40,0xf8,0x40,0xfe,0xa4 -+// 40695 黷 ; -+,0x7e,0x4a,0x6a,0x5e,0x4a,0x7e,0x08,0x7e,0x08,0x08,0x7e,0x00,0x55,0x55,0x40,0x00,0x10,0xff,0x10,0x7e,0x00,0xff,0xa9,0xff,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x24,0x42 -+// 40696 黸 ; -+,0x00,0x7e,0x4a,0x6e,0x5a,0x7e,0x08,0x7e,0x08,0x0e,0x70,0x00,0x55,0x55,0x42,0x00,0x10,0x1e,0x10,0xff,0x92,0xfc,0x91,0xbf,0xaa,0xbe,0xaa,0xff,0x55,0x55,0xff,0x00 -+// 40697 黹 ; -+,0x02,0x12,0x0a,0x7f,0x08,0x04,0x1f,0x10,0x10,0x12,0x12,0x14,0x18,0x10,0x10,0x10,0x20,0x24,0x28,0xff,0x88,0x90,0xfc,0x84,0x84,0xc4,0xb4,0x94,0x84,0x84,0x94,0x08 -+// 40698 黺 ; -+,0x14,0x55,0x36,0x14,0x7f,0x2a,0x1c,0x7f,0x49,0x5d,0x6b,0x49,0x49,0x49,0x43,0x00,0x08,0x28,0x28,0x24,0x44,0x43,0x82,0x7c,0x24,0x24,0x24,0x24,0x44,0x54,0x88,0x00 -+// 40699 黻 ; -+,0x14,0x14,0x55,0x36,0x7f,0x2a,0x1c,0x7f,0x49,0x5d,0x6b,0x49,0x49,0x49,0x43,0x00,0x20,0x28,0x24,0x20,0x7f,0x20,0x3e,0x22,0x22,0x54,0x54,0x88,0x14,0x27,0x42,0x00 -+// 40700 黼 ; -+,0x14,0x14,0x55,0x36,0x7f,0x2a,0x1c,0x7f,0x49,0x5d,0x6b,0x49,0x49,0x49,0x4d,0x4a,0x08,0x0c,0x0a,0x7f,0x88,0x7f,0x49,0x7f,0x49,0x49,0x7f,0x49,0x49,0x49,0x4d,0x4a -+// 40701 黽 ; -+,0x00,0x3f,0x22,0x3e,0x02,0x02,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x02,0x02,0x01,0x00,0x00,0xfc,0x44,0x7c,0x40,0x40,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x41,0x41,0xff,0x00 -+// 40702 黾 ; -+,0x1f,0x10,0x10,0x1f,0x01,0x3f,0x21,0x21,0x3f,0x21,0x21,0x3f,0x01,0x01,0x00,0x00,0xf0,0x10,0x10,0xf0,0x00,0xf8,0x08,0x08,0xf8,0x08,0x08,0xf9,0x01,0x01,0xff,0x00 -+// 40703 黿 ; -+,0x1f,0x00,0x7f,0x02,0x0c,0x70,0x1f,0x10,0x1f,0x01,0x1f,0x15,0x13,0x1f,0x01,0x00,0xfc,0x00,0xfe,0x41,0x3f,0x00,0xfc,0x04,0x7c,0x40,0x7c,0x64,0x54,0x7d,0x41,0xff -+// 40704 鼀 ; -+,0x00,0x1f,0x00,0x7f,0x04,0x1f,0x69,0x0f,0x01,0x1f,0x11,0x1f,0x11,0x1f,0x01,0x00,0x80,0xfe,0x80,0xff,0x10,0xfc,0x4a,0x78,0x40,0x7c,0x44,0x7c,0x44,0x7d,0x41,0xff -+// 40705 鼁 ; -+,0x00,0x0f,0x00,0x3f,0x02,0x07,0x00,0x0f,0x09,0x0f,0x01,0x1f,0x15,0x1f,0x01,0x00,0x80,0xf8,0x80,0xfe,0x10,0xf8,0x00,0xfc,0x24,0x3c,0x20,0x3e,0x2a,0x3e,0x21,0xff -+// 40706 鼂 ; -+,0x0f,0x09,0x08,0x0f,0x00,0x7f,0x00,0x0f,0x09,0x0f,0x01,0x1f,0x15,0x1f,0x01,0x00,0xf8,0x08,0x88,0xf8,0x00,0xff,0x00,0xf8,0x48,0x78,0x40,0x7c,0x54,0x7d,0x41,0xff -+// 40707 鼃 ; -+,0x00,0x0f,0x00,0x3f,0x00,0x0f,0x00,0x3f,0x08,0x0e,0x02,0x3e,0x2a,0x3e,0x02,0x01,0x80,0xf8,0x88,0xfe,0x88,0xf8,0x80,0xfe,0x08,0x78,0x40,0x7c,0x54,0x7d,0x41,0xff -+// 40708 鼄 ; -+,0x08,0x0f,0x10,0x7f,0x02,0x0c,0x7f,0x11,0x1f,0x01,0x3f,0x29,0x25,0x3f,0x01,0x00,0x80,0xfc,0x80,0xff,0x90,0x8c,0xff,0x44,0x7c,0x40,0x7e,0x52,0x4a,0x7e,0x41,0xff -+// 40709 鼅 ; -+,0x10,0x1f,0x24,0x7f,0x06,0x19,0x6f,0x09,0x0f,0x01,0x1f,0x19,0x15,0x1f,0x01,0x00,0x00,0xbe,0x22,0xa2,0x3e,0x00,0xf8,0x48,0x78,0x40,0x7c,0x64,0x54,0x7d,0x41,0xff -+// 40710 鼆 ; -+,0x00,0x7f,0x41,0x1e,0x12,0x1e,0x12,0x12,0x1e,0x08,0x7f,0x14,0x12,0x21,0x41,0x00,0x00,0xfe,0xaa,0xee,0x28,0xee,0xaa,0xaa,0xee,0xaa,0xaa,0xee,0x29,0x29,0x1f,0x00 -+// 40711 鼇 ; -+,0x04,0x3f,0x04,0x3f,0x04,0x07,0x09,0x33,0x0f,0x09,0x0f,0x01,0x1f,0x15,0x1f,0x01,0x20,0xa0,0x3f,0x24,0x64,0x98,0x18,0x67,0xfc,0x04,0x3c,0x3e,0x2a,0x3e,0x21,0xff -+// 40712 鼈 ; -+,0x24,0x15,0x3f,0x2e,0x35,0x24,0x1f,0x11,0x1f,0x01,0x1f,0x15,0x1f,0x01,0x00,0x00,0x90,0x1f,0xa4,0xd4,0x88,0xb7,0xfc,0x44,0x7c,0x40,0x7c,0x54,0x7d,0x41,0xff,0x00 -+// 40713 鼉 ; -+,0x1f,0x11,0x1f,0x08,0x0f,0x08,0x0f,0x00,0x3f,0x11,0x1f,0x15,0x13,0x1f,0x01,0x00,0x7c,0x44,0xfc,0x88,0xf8,0x88,0xf8,0x00,0xff,0x22,0x3e,0x32,0x2a,0x3f,0x21,0xff -+// 40714 鼊 ; -+,0x1f,0x11,0x1f,0x10,0x1f,0x31,0x5f,0x00,0x1f,0x11,0x1f,0x0d,0x0b,0x0f,0x01,0x00,0x10,0x7e,0x24,0x7f,0x10,0x7e,0x10,0x10,0xfe,0x22,0x3e,0x34,0x2c,0x3c,0x21,0xff -+// 40715 鼋 ; -+,0x0f,0x00,0x3f,0x02,0x1c,0x0f,0x08,0x0f,0x01,0x1f,0x11,0x1f,0x11,0x1f,0x01,0x00,0xfc,0x00,0xff,0x22,0x1e,0xf8,0x08,0xf8,0x40,0x7c,0x44,0x7c,0x45,0x7d,0x41,0xff -+// 40716 鼌 ; -+,0x0f,0x09,0x08,0x0f,0x00,0x7f,0x08,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x00,0xf8,0x08,0x88,0xf8,0x00,0xff,0x08,0xf8,0x80,0xfc,0x84,0xfc,0x84,0xfd,0x81,0x7f -+// 40717 鼍 ; -+,0x1f,0x11,0x1f,0x08,0x0f,0x08,0x0f,0x00,0x7f,0x04,0x0f,0x0a,0x09,0x0f,0x00,0x00,0x3e,0x22,0xfe,0x44,0xfc,0x44,0xfc,0x00,0xff,0x08,0xfc,0xa4,0x94,0xfd,0x81,0x7f -+// 40718 鼎 ; -+,0x00,0x03,0x02,0x12,0x13,0x12,0x13,0x10,0x1f,0x01,0x3f,0x09,0x09,0x11,0x11,0x21,0x00,0xf0,0x90,0x52,0x32,0x92,0xf2,0x02,0x3e,0x20,0x3e,0x22,0x22,0x22,0x22,0x22 -+// 40719 鼏 ; -+,0x1f,0x10,0x03,0x02,0x03,0x12,0x12,0x13,0x10,0x1f,0x01,0x3f,0x09,0x09,0x11,0x21,0xff,0x02,0xf0,0x50,0x30,0x92,0x52,0xf2,0x02,0x3e,0x20,0x3f,0x22,0x22,0x22,0x22 -+// 40720 鼐 ; -+,0x3f,0x02,0x04,0x07,0x0a,0x33,0x02,0x13,0x10,0x1f,0x01,0x3f,0x09,0x09,0x11,0x21,0xfe,0x04,0x0f,0xf1,0x55,0x32,0x90,0xf2,0x02,0x3e,0x20,0x3e,0x22,0x22,0x22,0x22 -+// 40721 鼑 ; -+,0x00,0x00,0x00,0x13,0x12,0x13,0x12,0x13,0x10,0x1f,0x01,0x3f,0x11,0x11,0x11,0x21,0x80,0xfc,0x80,0xf4,0x54,0x34,0x94,0xf4,0x04,0x3c,0x20,0x3e,0x22,0x22,0x22,0x22 -+// 40722 鼒 ; -+,0x00,0x3f,0x01,0x06,0x3b,0x02,0x13,0x12,0x13,0x10,0x1f,0x01,0x3f,0x09,0x09,0x31,0x40,0xff,0x40,0x40,0xf0,0x50,0x32,0x92,0xf2,0x02,0x3e,0x20,0x3f,0x21,0x21,0x21 -+// 40723 鼓 ; -+,0x08,0x08,0x7f,0x08,0x3f,0x00,0x3f,0x21,0x21,0x3f,0x22,0x14,0x07,0x78,0x07,0x00,0x10,0x10,0x90,0x7e,0x10,0x10,0x7e,0x44,0x44,0x28,0x28,0x10,0x28,0xc7,0x02,0x00 -+// 40724 鼔 ; -+,0x04,0x04,0x7f,0x04,0x3f,0x00,0x3f,0x21,0x3f,0x00,0x21,0x12,0x17,0x78,0x01,0x00,0x10,0x10,0x90,0x1f,0x10,0x10,0x7f,0x42,0x22,0x24,0x14,0x08,0x14,0x67,0x82,0x00 -+// 40725 鼕 ; -+,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x0a,0x3f,0x03,0x05,0x18,0x03,0x3c,0x00,0x00,0x00,0x10,0x7e,0x10,0x7e,0x24,0x18,0x18,0x66,0xf8,0x10,0xe0,0x98,0x67,0x80,0x60,0x20 -+// 40726 鼖 ; -+,0x00,0x1f,0x02,0x3f,0x02,0x04,0x3f,0x04,0x1f,0x00,0x1f,0x11,0x1f,0x0a,0x0b,0x3c,0x40,0xfe,0x50,0xff,0x10,0x08,0xbf,0x08,0x08,0x3e,0x22,0x14,0x08,0x0c,0x13,0x62 -+// 40727 鼗 ; -+,0x02,0x12,0x0a,0x12,0x0c,0x34,0x3f,0x04,0x1f,0x00,0x1f,0x11,0x1f,0x0a,0x0b,0x3c,0x40,0x50,0x60,0x5a,0x42,0x3e,0x90,0x7e,0x10,0x7e,0x42,0x24,0x18,0x18,0x27,0xc2 -+// 40728 鼘 ; -+,0x04,0x3f,0x04,0x3f,0x12,0x1e,0x12,0x7f,0x11,0x1f,0x10,0x1f,0x10,0x1e,0x12,0x22,0x08,0x7f,0x08,0x3e,0x14,0x08,0x34,0xc3,0x24,0x3c,0x04,0xfc,0x04,0x3c,0x24,0x24 -+// 40729 鼙 ; -+,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x0a,0x7f,0x01,0x0f,0x09,0x0f,0x0a,0x7f,0x00,0x00,0x10,0x7e,0x10,0x7e,0x24,0x18,0x2e,0xc4,0x00,0xf0,0x10,0xf0,0x90,0xff,0x80,0x80 -+// 40730 鼚 ; -+,0x04,0x3f,0x04,0x3f,0x12,0x1e,0x14,0x3f,0x07,0x05,0x04,0x7f,0x08,0x0a,0x0c,0x08,0x08,0x7e,0x08,0x7e,0x24,0x18,0x17,0x62,0xf8,0x20,0x90,0xff,0x48,0x30,0x0e,0x04 -+// 40731 鼛 ; -+,0x04,0x3f,0x04,0x1f,0x11,0x1f,0x12,0x0c,0x7f,0x09,0x37,0x04,0x1f,0x64,0x04,0x07,0x10,0x7e,0x10,0x7e,0x24,0x18,0x14,0x63,0x90,0x1c,0x10,0xff,0xf8,0x88,0x48,0xf8 -+// 40732 鼜 ; -+,0x04,0x3f,0x04,0x3f,0x12,0x1e,0x0a,0x3f,0x07,0x02,0x01,0x03,0x1c,0x07,0x04,0x1f,0x10,0x7e,0x10,0x7e,0x24,0x18,0x18,0x66,0xf0,0xa0,0xc0,0x30,0x8e,0xf8,0x8a,0xff -+// 40733 鼝 ; -+,0x22,0x53,0x2a,0x13,0x62,0x23,0x24,0x04,0x3f,0x04,0x3f,0x11,0x1f,0x12,0x0f,0x78,0x94,0x9c,0x04,0xfc,0x04,0x9c,0x94,0x10,0x7f,0x10,0x7e,0x24,0x18,0x18,0x27,0xc2 -+// 40734 鼞 ; -+,0x04,0x3f,0x04,0x3f,0x11,0x1f,0x0a,0x3f,0x02,0x1f,0x12,0x03,0x00,0x07,0x00,0x1f,0x08,0x7f,0x08,0x7e,0x24,0x18,0x67,0x80,0x90,0xff,0x12,0xf0,0x80,0xf8,0x80,0xfe -+// 40735 鼟 ; -+,0x04,0x3f,0x04,0x3f,0x11,0x1f,0x0a,0x7f,0x00,0x1f,0x0a,0x0f,0x74,0x07,0x02,0x3f,0x10,0x90,0x7e,0x10,0x7c,0x28,0x18,0xe6,0x48,0x34,0x18,0xf8,0x17,0xf0,0x20,0xfe -+// 40736 鼠 ; -+,0x02,0x1c,0x10,0x1e,0x10,0x1f,0x00,0x18,0x14,0x18,0x14,0x10,0x14,0x18,0x10,0x00,0x00,0xf8,0x08,0xf8,0x08,0xf8,0x00,0xc8,0xa8,0x88,0xc8,0xa9,0x85,0xc5,0x83,0x00 -+// 40737 鼡 ; -+,0x11,0x08,0x08,0x00,0x0f,0x08,0x0f,0x08,0x08,0x0f,0x08,0x10,0x10,0x20,0x40,0x00,0x08,0x88,0x90,0x00,0xfc,0x84,0xfc,0x84,0x84,0xfc,0x84,0x84,0x85,0x83,0x81,0x00 -+// 40738 鼢 ; -+,0x08,0x37,0x21,0x37,0x21,0x3f,0x00,0x29,0x3d,0x2b,0x2d,0x3b,0x29,0x3c,0x28,0x00,0x08,0x08,0x24,0x24,0x43,0x42,0x80,0x7e,0x12,0x12,0x12,0x22,0xa2,0xca,0x84,0x00 -+// 40739 鼣 ; -+,0x08,0x33,0x21,0x3b,0x21,0x3f,0x00,0x29,0x2d,0x3b,0x2d,0x3b,0x29,0x3c,0x28,0x00,0x10,0x14,0x12,0x12,0x10,0x7f,0x10,0x10,0x10,0x18,0x28,0xa4,0xc4,0xc3,0x82,0x00 -+// 40740 鼤 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x6d,0x5b,0x49,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x10,0x08,0x08,0x7f,0x22,0x22,0x22,0x14,0x14,0x14,0x08,0x08,0x94,0xa7,0xc2,0x00 -+// 40741 鼥 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6d,0x48,0x00,0x10,0x14,0x12,0x7f,0x10,0x10,0x1e,0x22,0x24,0x34,0x48,0x48,0x94,0xa7,0xc2,0x00 -+// 40742 鼦 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x4d,0x6b,0x5d,0x6b,0x59,0x49,0x6c,0x48,0x00,0x00,0x7e,0x12,0x12,0x12,0x22,0x2a,0x44,0x3e,0x22,0x22,0x22,0xa2,0xa2,0xbe,0x00 -+// 40743 鼧 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x10,0x08,0x08,0x7f,0x42,0x20,0x20,0x22,0x24,0x38,0x20,0xa0,0xa1,0xa1,0x9f,0x00 -+// 40744 鼨 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x10,0x10,0x20,0x3e,0x44,0xa8,0x10,0x2c,0xc3,0x10,0x08,0x80,0xa0,0x98,0x88,0x00 -+// 40745 鼩 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x69,0x5d,0x4b,0x6c,0x48,0x00,0x10,0x10,0x10,0x20,0x3f,0x41,0xb9,0x29,0x29,0x39,0x01,0x01,0x41,0xc5,0x42,0x00 -+// 40746 鼪 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x08,0x08,0x28,0x28,0x3f,0x48,0x08,0x08,0x3e,0x08,0x08,0x48,0x48,0xc8,0x7f,0x00 -+// 40747 鼫 ; -+,0x08,0x77,0x41,0x77,0x41,0x7f,0x48,0x6d,0x5b,0x6d,0x5b,0x49,0x59,0x6c,0x48,0x00,0x00,0x7f,0x08,0x08,0x10,0x10,0x20,0x3e,0x62,0xa2,0x22,0xa2,0xa2,0xbe,0xa2,0x00 -+// 40748 鼬 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x08,0x08,0x08,0x08,0x7f,0x49,0x49,0x49,0x7f,0x49,0x49,0x49,0x49,0xc9,0xff,0x00 -+// 40749 鼭 ; -+,0x08,0x77,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x10,0x10,0x10,0x7e,0x10,0x10,0xff,0x04,0x04,0x7f,0x24,0x14,0x84,0x84,0x94,0x08 -+// 40750 鼮 ; -+,0x10,0x66,0x42,0x76,0x42,0x7e,0x00,0x52,0x7a,0x52,0x7a,0x52,0x53,0x79,0x51,0x00,0x00,0xe3,0x2e,0x22,0x42,0x43,0xea,0x2a,0x2a,0x2a,0xaf,0x40,0x60,0x98,0x07,0x00 -+// 40751 鼯 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x00,0x7e,0x10,0x10,0x3e,0x12,0x12,0x7f,0x00,0x3e,0x22,0x22,0xa2,0xa2,0xbe,0x00 -+// 40752 鼰 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x00,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x22,0x22,0x3e,0x80,0x94,0x92,0xa2,0x00 -+// 40753 鼱 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x6d,0x5b,0x49,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x08,0x7f,0x08,0x3e,0x08,0x7f,0x00,0x3e,0x22,0x3e,0x22,0xbe,0xa2,0xa2,0xaa,0x24 -+// 40754 鼲 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x5a,0x76,0x5a,0x76,0x52,0x52,0x79,0x50,0x00,0x00,0x7f,0x49,0x3e,0x08,0x3e,0x2a,0x3e,0x2a,0x3e,0x08,0x7f,0x88,0x88,0x88,0x00 -+// 40755 鼳 ; -+,0x10,0x66,0x42,0x76,0x42,0x7e,0x00,0x4a,0x6e,0x5a,0x6a,0x5e,0x4b,0x6d,0x49,0x00,0x00,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x14,0x12,0xff,0x10,0x28,0x44,0x83,0x00 -+// 40756 鼴 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x7f,0x40,0x5e,0x52,0x5e,0x52,0x5e,0x48,0x7f,0x52,0x74,0x4c,0x52,0xff,0x40,0x00 -+// 40757 鼵 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x10,0x08,0x7f,0x41,0x24,0x23,0x58,0x14,0xff,0x10,0x10,0x28,0xa4,0xc7,0x82,0x00 -+// 40758 鼶 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x0f,0x78,0x4f,0x48,0x7f,0x6a,0x7e,0x69,0x6f,0x60,0x7c,0xb4,0xb5,0xd5,0xa3,0x00 -+// 40759 鼷 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x00,0x1c,0xe0,0xa4,0x58,0x10,0x24,0x78,0x14,0x7e,0x10,0x7f,0x98,0xa7,0xc2,0x00 -+// 40760 鼸 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x01,0x4a,0x4a,0x6e,0x5a,0x6f,0x5b,0x6d,0x49,0x00,0x44,0x28,0xff,0x28,0xfe,0x2a,0xff,0x2a,0xfe,0x28,0x2c,0x6c,0xab,0x28,0x28,0x28 -+// 40761 鼹 ; -+,0x10,0x67,0x41,0x77,0x41,0x7f,0x00,0x49,0x6d,0x5b,0x6d,0x5b,0x49,0x6c,0x48,0x00,0x3e,0x22,0x3e,0x22,0x3e,0x08,0x7f,0x51,0x10,0x7f,0x24,0x24,0x98,0x96,0xa2,0x00 -+// 40762 鼺 ; -+,0x10,0x66,0x42,0x76,0x42,0x7e,0x00,0x4a,0x6e,0x5a,0x6a,0x5e,0x4b,0x6d,0x49,0x00,0x00,0x7e,0x4a,0x7e,0x4a,0x7e,0x00,0x7f,0x55,0x55,0x7f,0x55,0x55,0x55,0x7f,0x00 -+// 40763 鼻 ; -+,0x01,0x0f,0x0c,0x0a,0x0f,0x00,0x1f,0x10,0x1f,0x10,0x1f,0x00,0x7f,0x04,0x04,0x08,0x00,0xf8,0x48,0x28,0xf8,0x00,0xfc,0x84,0xfc,0x84,0xfc,0x00,0xff,0x10,0x10,0x10 -+// 40764 鼼 ; -+,0x04,0x1f,0x1a,0x15,0x12,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x09,0x19,0x11,0x21,0x02,0x82,0x82,0x92,0x92,0xd2,0x52,0xd2,0x56,0xda,0x12,0xc2,0x02,0x02,0x02,0x02 -+// 40765 鼽 ; -+,0x04,0x08,0x1f,0x15,0x1b,0x15,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x12,0x12,0x22,0x20,0x20,0x20,0x20,0xfc,0x24,0xa4,0xa4,0xa4,0xa4,0xa4,0x24,0xa5,0x45,0x45,0x83 -+// 40766 鼾 ; -+,0x04,0x1f,0x15,0x1b,0x15,0x13,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x11,0x11,0x21,0x00,0x00,0x3e,0x08,0x08,0x08,0x88,0xbf,0x88,0x88,0x88,0x08,0xc8,0x08,0x08,0x08 -+// 40767 鼿 ; -+,0x08,0x1f,0x15,0x1b,0x15,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x12,0x12,0x12,0x22,0x00,0x00,0x7f,0x24,0x24,0xa4,0xa4,0xa4,0xa4,0xa4,0x24,0xa5,0x45,0x45,0x83,0x00 -+// 40768 齀 ; -+,0x04,0x1f,0x15,0x1b,0x15,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x11,0x11,0x11,0x21,0x00,0x7f,0x20,0x20,0x20,0xbc,0xa4,0xa4,0xb4,0xac,0x24,0xe5,0x25,0x35,0x23,0x00 -+// 40769 齁 ; -+,0x04,0x1f,0x15,0x1b,0x15,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x11,0x11,0x11,0x21,0x20,0x20,0x20,0x7f,0x41,0x81,0xb9,0xa9,0xa9,0xa9,0x39,0xc1,0x01,0x01,0x05,0x02 -+// 40770 齂 ; -+,0x08,0x3e,0x2a,0x36,0x2a,0x7f,0x49,0x7f,0x49,0x7f,0x00,0x7f,0x12,0x12,0x22,0x02,0x10,0x10,0x7e,0x12,0xff,0x12,0x7e,0x10,0x52,0x34,0x18,0x34,0xd3,0x12,0x50,0x20 -+// 40771 齃 ; -+,0x08,0x1f,0x15,0x1b,0x15,0x3f,0x24,0x3f,0x24,0x3f,0x00,0x7f,0x11,0x11,0x11,0x21,0x00,0x7e,0x42,0x7e,0x42,0xfe,0xa0,0xbf,0xc9,0x89,0x55,0xe3,0x7f,0x01,0x05,0x02 -+// 40772 齄 ; -+,0x10,0x3e,0x2a,0x36,0x2a,0x7f,0x49,0x7f,0x49,0x7f,0x00,0x7f,0x12,0x12,0x12,0x22,0x10,0x10,0xff,0x10,0x38,0x57,0x92,0x7c,0x44,0x7c,0x44,0x44,0x7c,0x00,0xff,0x00 -+// 40773 齅 ; -+,0x04,0x1f,0x15,0x1b,0x15,0x3f,0x25,0x3f,0x25,0x3f,0x00,0x7f,0x12,0x12,0x12,0x22,0x08,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x42,0x7e,0x14,0xff,0x90,0x28,0x24,0x43,0x82 -+// 40774 齆 ; -+,0x04,0x1f,0x15,0x1b,0x15,0x3f,0x25,0x3f,0x25,0x3f,0x00,0x7f,0x12,0x12,0x12,0x22,0x52,0x52,0xa4,0x52,0x00,0x7e,0x42,0x7e,0x00,0x7e,0x52,0x7e,0x40,0x41,0x41,0x3f -+// 40775 齇 ; -+,0x08,0x3e,0x2a,0x36,0x2a,0x7f,0x49,0x7f,0x49,0x7f,0x00,0x7f,0x12,0x12,0x23,0x02,0x08,0x0e,0x08,0x7f,0x49,0x7e,0x49,0x47,0x5e,0x52,0x5e,0x52,0x9e,0x92,0x7f,0x00 -+// 40776 齈 ; -+,0x08,0x3e,0x2a,0x36,0x2a,0x7f,0x49,0x7f,0x49,0x7f,0x00,0x7f,0x12,0x12,0x13,0x22,0x14,0x7f,0x55,0x7f,0x55,0x7f,0x00,0x7f,0x40,0x7e,0x40,0x7f,0xaa,0xa4,0x37,0x22 -+// 40777 齉 ; -+,0x10,0x3d,0x34,0x2c,0x34,0x7f,0x4a,0x7e,0x4a,0x7e,0x00,0x7f,0x14,0x14,0x15,0x24,0x10,0xff,0x92,0xfe,0x10,0xff,0xaa,0xee,0x44,0xff,0x44,0xff,0x52,0xcc,0x64,0x43 -+// 40778 齊 ; -+,0x00,0x7f,0x02,0x3d,0x14,0x14,0x2c,0x00,0x04,0x07,0x04,0x07,0x04,0x08,0x08,0x10,0x80,0xff,0x20,0x5e,0x98,0x94,0x9b,0x80,0x08,0xf8,0x08,0xf8,0x08,0x08,0x08,0x08 -+// 40779 齋 ; -+,0x00,0x7f,0x02,0x7d,0x14,0x14,0x24,0x4c,0x08,0x0b,0x08,0x0f,0x0a,0x12,0x14,0x20,0x80,0xff,0x20,0x46,0x98,0x94,0x9b,0x90,0x08,0xe8,0x08,0xf8,0x88,0xa8,0x98,0x88 -+// 40780 齌 ; -+,0x00,0x3f,0x02,0x3d,0x14,0x14,0x2c,0x0f,0x08,0x0b,0x0c,0x0a,0x09,0x11,0x16,0x20,0x80,0xff,0x20,0x4c,0xb8,0xa4,0xb3,0xfc,0x04,0xf4,0x94,0xa4,0x44,0x24,0x14,0x04 -+// 40781 齍 ; -+,0x00,0x3f,0x02,0x3d,0x14,0x14,0x2c,0x0f,0x08,0x0f,0x08,0x1f,0x09,0x09,0x7f,0x00,0x80,0xff,0x24,0x58,0x94,0x9a,0x08,0xf8,0x08,0xf8,0x08,0xfc,0x24,0x24,0xff,0x00 -+// 40782 齎 ; -+,0x00,0x7f,0x02,0x3d,0x14,0x2c,0x50,0x17,0x10,0x1f,0x16,0x15,0x14,0x27,0x22,0x44,0x80,0xff,0x44,0xb8,0xa8,0xb6,0x00,0xf4,0x04,0xfc,0x94,0x54,0xb4,0xf4,0x44,0x24 -+// 40783 齏 ; -+,0x00,0x7f,0x01,0x3e,0x12,0x16,0x20,0x17,0x11,0x17,0x11,0x17,0x11,0x27,0x21,0x4f,0x80,0xff,0x44,0xb8,0xa8,0xb6,0x00,0xf4,0x44,0x74,0x44,0x74,0x44,0x74,0x44,0xf4 -+// 40784 齐 ; -+,0x01,0x00,0x3f,0x02,0x01,0x00,0x01,0x06,0x3a,0x02,0x02,0x04,0x04,0x08,0x10,0x00,0x00,0x80,0xff,0x10,0x20,0xc0,0x20,0x18,0x17,0x12,0x10,0x10,0x10,0x10,0x10,0x10 -+// 40785 齑 ; -+,0x01,0x00,0x3f,0x02,0x01,0x03,0x7c,0x11,0x17,0x11,0x17,0x11,0x17,0x21,0x2f,0x40,0x00,0x80,0xfe,0x20,0xc0,0x30,0x0f,0x44,0x74,0x44,0x74,0x44,0x74,0x44,0xf4,0x04 -+// 40786 齒 ; -+,0x00,0x00,0x08,0x08,0x7f,0x12,0x12,0x15,0x18,0x1f,0x12,0x12,0x16,0x19,0x1f,0x00,0x80,0x80,0xfc,0x80,0xff,0x24,0x24,0x54,0x8c,0xfc,0x24,0x24,0x54,0x8c,0xfc,0x00 -+// 40787 齓 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x20,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x10,0x10,0x90,0x10,0xd0,0x10,0x90,0x90,0x90,0x90,0x90,0x91,0x91,0x91,0x8f,0x00 -+// 40788 齔 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x20,0x2a,0x2a,0x2d,0x33,0x3c,0x00,0x20,0x20,0xa0,0x20,0xa0,0x23,0xac,0xb0,0xa0,0xa0,0xa0,0xa1,0xa1,0xa1,0x1f,0x00 -+// 40789 齕 ; -+,0x04,0x04,0x27,0x24,0x7f,0x14,0x6b,0x41,0x7f,0x41,0x55,0x55,0x6b,0x47,0x78,0x00,0x00,0x10,0x10,0x1f,0xa0,0x40,0x3f,0x02,0x04,0x08,0x10,0x21,0x41,0x41,0x3f,0x00 -+// 40790 齖 ; -+,0x04,0x24,0x27,0x24,0x7f,0x14,0x55,0x6b,0x7f,0x41,0x55,0x55,0x6b,0x4f,0x71,0x00,0x00,0x7f,0x04,0x24,0xa4,0x7f,0x0c,0x0c,0x14,0x14,0x24,0x44,0x84,0x04,0x14,0x08 -+// 40791 齗 ; -+,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x20,0x2a,0x2a,0x35,0x23,0x3c,0x00,0x00,0x00,0x06,0x38,0xe0,0x20,0xbf,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xc4,0x44,0x84,0x04 -+// 40792 齘 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x00,0x10,0x10,0x10,0x28,0xa4,0x43,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xa4,0xc4,0x44,0x84 -+// 40793 齙 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x55,0x55,0x6b,0x7f,0x55,0x55,0x6b,0x41,0x7f,0x00,0x20,0x20,0x3e,0x42,0x42,0xba,0x2a,0x2a,0x3a,0x22,0x2a,0x24,0x21,0x21,0x1f,0x00 -+// 40794 齚 ; -+,0x04,0x04,0x17,0x14,0x7f,0x12,0x52,0x6d,0x40,0x7f,0x52,0x52,0x6d,0x40,0x7f,0x00,0x10,0x10,0x20,0x3f,0x50,0x10,0x90,0x9f,0x90,0x90,0x9f,0x90,0x90,0x90,0x90,0x10 -+// 40795 齛 ; -+,0x04,0x04,0x27,0x24,0x24,0x7f,0x00,0x52,0x52,0x6d,0x7f,0x52,0x52,0x6d,0x7f,0x00,0x00,0x0a,0x2a,0x2a,0x2a,0xff,0x2a,0xaa,0xaa,0xaa,0xae,0xa0,0xa0,0xa0,0xbf,0x00 -+// 40796 齜 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x20,0x3f,0x20,0x2a,0x2a,0x35,0x3f,0x00,0x04,0x24,0x24,0x24,0xa4,0x24,0xbf,0xa4,0xa4,0xa4,0xa4,0xa5,0xad,0xb5,0xa3,0x00 -+// 40797 齝 ; -+,0x04,0x17,0x14,0x7f,0x09,0x29,0x36,0x20,0x3f,0x20,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x08,0x08,0x10,0x94,0x22,0x7f,0x81,0x80,0xbe,0xa2,0xa2,0xa2,0xa2,0xbe,0xa2,0x00 -+// 40798 齞 ; -+,0x04,0x17,0x14,0x7f,0x00,0x0a,0x2a,0x35,0x20,0x3f,0x20,0x2a,0x2a,0x35,0x3f,0x00,0x00,0x3e,0x22,0xa2,0x22,0x22,0xa2,0xbe,0x80,0x84,0x92,0x92,0xa3,0xc1,0x81,0x00 -+// 40799 齟 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x20,0x3f,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x00,0x3c,0x24,0x24,0xa4,0x3c,0xa4,0xa4,0xa4,0xbc,0xa4,0xa4,0xa4,0xa4,0xff,0x00 -+// 40800 齠 ; -+,0x04,0x14,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x20,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x00,0x7f,0x91,0x11,0x91,0x21,0xa5,0xc2,0xbf,0xa1,0xa1,0xa1,0xa1,0xa1,0xbf,0x00 -+// 40801 齡 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x08,0x08,0x98,0x14,0x24,0xb3,0x4a,0x88,0x7f,0x82,0x84,0x98,0x88,0x84,0x84,0x00 -+// 40802 齢 ; -+,0x04,0x04,0x17,0x14,0x3f,0x04,0x35,0x2e,0x24,0x3f,0x2e,0x35,0x24,0x24,0x3f,0x00,0x08,0x08,0x98,0x14,0xa4,0x33,0xca,0x88,0xbe,0x82,0x84,0xa8,0x90,0x88,0x88,0x00 -+// 40803 齣 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x20,0x3f,0x20,0x2a,0x2a,0x35,0x3f,0x00,0x10,0x10,0x10,0x3f,0xa1,0x41,0xbd,0xa5,0xa5,0xa5,0xbd,0x81,0x81,0x85,0x82,0x00 -+// 40804 齤 ; -+,0x09,0x05,0x1f,0x01,0x7f,0x08,0x74,0x04,0x3f,0x14,0x1a,0x1f,0x14,0x14,0x1a,0x1f,0x20,0x40,0xf8,0x00,0xff,0x90,0xee,0x80,0xff,0x24,0x54,0xfc,0x24,0x24,0x54,0xfc -+// 40805 齥 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x55,0x6b,0x41,0x7f,0x41,0x55,0x55,0x6b,0x7f,0x00,0x08,0x08,0x08,0x7e,0xca,0x7e,0x4a,0x4a,0x7e,0x09,0x0a,0x0c,0x14,0x25,0x03,0x01 -+// 40806 齦 ; -+,0x04,0x04,0x17,0x14,0x3f,0x0a,0x2a,0x35,0x20,0x3f,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x00,0x3e,0x22,0x22,0xbe,0x22,0xa2,0xbe,0xa0,0xb1,0xaa,0xa4,0xa4,0xb3,0xa2,0x00 -+// 40807 齧 ; -+,0x04,0x3f,0x04,0x1e,0x04,0x3f,0x04,0x02,0x02,0x3f,0x02,0x15,0x1f,0x12,0x15,0x1f,0x00,0x7e,0x12,0x12,0x22,0x2a,0x44,0x78,0x40,0xff,0x10,0x2a,0xfe,0x12,0x2a,0xfe -+// 40808 齨 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x20,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x00,0x08,0x10,0x26,0xa2,0x22,0xa2,0xa2,0xb6,0xa2,0xa2,0xa2,0xa2,0xa2,0xbe,0x00 -+// 40809 齩 ; -+,0x04,0x14,0x17,0x14,0x14,0x7f,0x0a,0x2a,0x35,0x20,0x3f,0x2a,0x2a,0x35,0x3f,0x00,0x10,0x08,0x88,0x7f,0x14,0x92,0x21,0xe2,0xa2,0x94,0x94,0x88,0x94,0xa7,0xc2,0x00 -+// 40810 齪 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x2a,0x2a,0x35,0x3f,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x00,0x3e,0x22,0x22,0xa2,0x3e,0x88,0x88,0x8e,0xa8,0xa8,0xa8,0xa8,0xb8,0xc7,0x00 -+// 40811 齫 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x14,0x55,0x6b,0x41,0x7f,0x55,0x55,0x6b,0x7f,0x00,0x00,0x7f,0x49,0x49,0x49,0x7f,0x49,0x5d,0x5b,0x69,0x49,0x49,0x41,0x7f,0x41,0x00 -+// 40812 齬 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x20,0x2a,0x2a,0x35,0x20,0x3f,0x00,0x00,0x7e,0x10,0x10,0x7e,0x24,0xa4,0xff,0x80,0xbe,0xa2,0xa2,0xa2,0xa2,0xbe,0x00 -+// 40813 齭 ; -+,0x04,0x07,0x14,0x14,0x7f,0x0a,0x0a,0x35,0x20,0x3f,0x2a,0x35,0x20,0x3f,0x01,0x00,0x00,0x33,0xcc,0x88,0x88,0xef,0xaa,0xaa,0xaa,0xea,0x8a,0x92,0x92,0xa2,0x42,0x00 -+// 40814 齮 ; -+,0x08,0x08,0x2e,0x28,0x7f,0x14,0x55,0x6b,0x7f,0x41,0x55,0x55,0x6b,0x4f,0x71,0x00,0x10,0x10,0x7e,0x10,0x28,0x44,0xff,0x02,0x7a,0x4a,0x4a,0x7a,0x02,0x0a,0x04,0x00 -+// 40815 齯 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x3f,0x20,0x2a,0x2a,0x35,0x27,0x38,0x00,0x08,0x36,0x22,0x22,0xb6,0x22,0xa2,0xbe,0x94,0x94,0x94,0x94,0xa5,0xa5,0xc3,0x00 -+// 40816 齰 ; -+,0x04,0x04,0x17,0x14,0x7f,0x0a,0x2a,0x35,0x20,0x3f,0x20,0x2a,0x2a,0x35,0x3f,0x00,0x14,0x14,0x94,0x3e,0x94,0x14,0xbf,0x80,0xbe,0xa2,0xa2,0xbe,0xa2,0xa2,0xbe,0x00 -+// 40817 齱 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x14,0x55,0x6b,0x41,0x7f,0x55,0x55,0x6b,0x7f,0x00,0x00,0xf8,0x50,0x5f,0x59,0x79,0x5a,0x5a,0x7a,0x54,0x54,0x76,0xda,0x11,0x10,0x10 -+// 40818 齲 ; -+,0x04,0x04,0x17,0x14,0x7f,0x14,0x55,0x6b,0x41,0x7f,0x55,0x55,0x6b,0x41,0x7f,0x00,0x00,0x3e,0x08,0x3e,0xaa,0x2a,0x3e,0x08,0x7f,0x49,0x4b,0x7f,0x41,0x45,0x42,0x00 -+// 40819 齳 ; -+,0x04,0x04,0x16,0x14,0x7f,0x00,0x14,0x55,0x6b,0x7f,0x41,0x55,0x55,0x6b,0x7f,0x00,0x00,0xff,0x89,0x7e,0x08,0x7e,0x4a,0x7e,0x4a,0x7e,0x08,0xff,0x08,0x08,0x08,0x08 -+// 40820 齴 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x55,0x55,0x6b,0x7f,0x55,0x55,0x6b,0x4f,0x71,0x00,0x10,0x08,0x7f,0x22,0x94,0x7f,0x42,0x4c,0x70,0x42,0x4c,0x71,0x42,0x4c,0xb0,0x00 -+// 40821 齵 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x55,0x55,0x6b,0x7f,0x41,0x55,0x55,0x6b,0x7f,0x00,0x00,0x3e,0x2a,0x3e,0xaa,0x2a,0x3e,0x08,0x7f,0x49,0x4b,0x7f,0x41,0x45,0x42,0x00 -+// 40822 齶 ; -+,0x04,0x14,0x17,0x14,0x7f,0x00,0x14,0x55,0x6b,0x41,0x7f,0x55,0x55,0x6b,0x7f,0x00,0x00,0x77,0x55,0x55,0x77,0x00,0x3e,0x00,0x7f,0x08,0x1e,0x02,0x02,0x0a,0x04,0x00 -+// 40823 齷 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x55,0x55,0x6b,0x7f,0x55,0x55,0x6b,0x4f,0x71,0x00,0x00,0x7e,0x42,0x42,0x7e,0x40,0x7e,0x48,0x54,0x7e,0x48,0x7e,0x48,0x88,0x7f,0x00 -+// 40824 齸 ; -+,0x08,0x08,0x2e,0x28,0x7f,0x14,0x55,0x6b,0x41,0x7f,0x55,0x55,0x6b,0x4f,0x71,0x00,0x42,0x22,0x24,0xff,0x24,0x22,0x42,0x00,0x7f,0x55,0x55,0x55,0x55,0x55,0xff,0x00 -+// 40825 齹 ; -+,0x02,0x1f,0x00,0x1f,0x01,0x03,0x0c,0x37,0x00,0x04,0x04,0x1f,0x00,0x0a,0x0d,0x0f,0x10,0xfe,0x80,0xfc,0x00,0xfc,0x40,0xfe,0x80,0xf8,0x80,0xfe,0x00,0x14,0x2c,0xfc -+// 40826 齺 ; -+,0x04,0x04,0x17,0x14,0x7f,0x14,0x55,0x6b,0x7f,0x41,0x55,0x55,0x6b,0x41,0x7f,0x00,0x20,0x3e,0x4a,0x2a,0xbe,0x0a,0x16,0x20,0x3f,0x49,0xab,0x3f,0x09,0x11,0x15,0x22 -+// 40827 齻 ; -+,0x04,0x04,0x27,0x24,0x7f,0x14,0x55,0x6b,0x7f,0x41,0x55,0x55,0x6b,0x41,0x7f,0x00,0x08,0x08,0x7f,0x10,0xbe,0x22,0x3e,0x22,0x3e,0x22,0x3e,0x22,0x7f,0x22,0x41,0x00 -+// 40828 齼 ; -+,0x08,0x08,0x2e,0x28,0x7f,0x14,0x55,0x6b,0x7f,0x41,0x55,0x55,0x6b,0x41,0x7f,0x00,0x24,0x24,0xff,0x24,0x7e,0xa5,0x24,0x7f,0x12,0x50,0x5e,0x50,0x50,0xb0,0x1f,0x00 -+// 40829 齽 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x14,0x6b,0x41,0x7f,0x55,0x55,0x6b,0x41,0x7f,0x00,0x24,0x24,0x7f,0x34,0x6e,0xa5,0x00,0x7e,0x00,0xff,0x08,0x4a,0x49,0xa9,0x10,0x00 -+// 40830 齾 ; -+,0x08,0x0e,0x08,0x3f,0x29,0x3e,0x29,0x2e,0x20,0x44,0x04,0x7f,0x12,0x12,0x15,0x1f,0x08,0x0c,0x0a,0xbf,0x08,0x14,0x22,0x41,0x40,0x78,0x40,0xff,0x12,0x12,0x2a,0xfe -+// 40831 齿 ; -+,0x00,0x00,0x08,0x08,0x08,0x7f,0x00,0x10,0x10,0x11,0x11,0x12,0x14,0x10,0x1f,0x00,0x80,0x80,0xfc,0x80,0x80,0xff,0x80,0x84,0x84,0x44,0x24,0x14,0x14,0x04,0xfc,0x00 -+// 40832 龀 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x00,0x24,0x24,0x24,0x2a,0x31,0x20,0x20,0x3f,0x00,0x20,0x20,0x20,0x20,0x22,0xa2,0x24,0xa8,0xb0,0xa0,0xa0,0xa1,0xa1,0xa1,0x9f,0x00 -+// 40833 龁 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x00,0x24,0x24,0x24,0x2a,0x29,0x30,0x20,0x3f,0x00,0x10,0x10,0x90,0x3f,0x20,0xc0,0x1e,0x82,0x84,0x88,0x90,0x91,0xa1,0xa1,0x9f,0x00 -+// 40834 龂 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x00,0x29,0x29,0x29,0x2d,0x33,0x21,0x3f,0x21,0x00,0x06,0x38,0x20,0x20,0x20,0xbf,0x24,0x24,0x24,0x24,0x24,0x44,0x44,0x84,0x04,0x04 -+// 40835 龃 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x00,0x08,0x29,0x29,0x2d,0x33,0x21,0x21,0x3f,0x00,0x00,0x3c,0x24,0x24,0x24,0xbc,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0xff,0x00 -+// 40836 龄 ; -+,0x04,0x04,0x27,0x24,0x24,0x7f,0x00,0x29,0x29,0x29,0x35,0x23,0x27,0x39,0x00,0x00,0x10,0x10,0x30,0x28,0x44,0xa3,0x12,0x10,0x7e,0x04,0x08,0x30,0x10,0x08,0x08,0x00 -+// 40837 龅 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x00,0x08,0x29,0x29,0x35,0x23,0x21,0x27,0x39,0x00,0x20,0x20,0x7e,0x42,0x82,0x7a,0x4a,0x4a,0x7a,0x42,0x46,0x40,0x41,0x41,0x3f,0x00 -+// 40838 龆 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x00,0x25,0x25,0x25,0x2b,0x31,0x21,0x27,0x39,0x00,0x00,0x7e,0x12,0x12,0x22,0xa2,0x4a,0x04,0x3e,0x22,0x22,0x22,0x22,0x3e,0x22,0x00 -+// 40839 龇 ; -+,0x08,0x08,0x0e,0x28,0x28,0x7e,0x00,0x2a,0x2a,0x2a,0x36,0x22,0x22,0x3e,0x23,0x00,0x28,0x28,0x28,0x28,0x28,0xab,0xbc,0xa8,0xa8,0xa8,0xa8,0xa8,0xb9,0xc9,0x07,0x00 -+// 40840 龈 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x08,0x29,0x29,0x2d,0x33,0x21,0x21,0x27,0x39,0x00,0x00,0x7e,0x42,0x42,0x7e,0xc2,0x42,0x7e,0x52,0x54,0x48,0x48,0x54,0x63,0x42,0x00 -+// 40841 龉 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x08,0x29,0x29,0x29,0x35,0x23,0x21,0x27,0x39,0x00,0x00,0x7e,0x10,0x10,0x7c,0xa4,0x24,0x7f,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x00 -+// 40842 龊 ; -+,0x04,0x04,0x17,0x14,0x14,0x7f,0x08,0x29,0x29,0x29,0x35,0x23,0x21,0x27,0x39,0x00,0x00,0x7e,0x42,0x42,0x42,0x7e,0x10,0x10,0x50,0x5e,0x50,0x50,0x50,0xb0,0x0f,0x00 -+// 40843 龋 ; -+,0x04,0x04,0x17,0x14,0x7f,0x00,0x08,0x29,0x29,0x35,0x23,0x21,0x21,0x27,0x39,0x00,0x00,0x7e,0x10,0x7e,0x52,0x52,0x7e,0x10,0x7f,0x51,0x55,0x7f,0x41,0x45,0x42,0x00 -+// 40844 龌 ; -+,0x08,0x08,0x2e,0x28,0x28,0x7f,0x00,0x08,0x2a,0x2a,0x36,0x22,0x22,0x23,0x3e,0x00,0x00,0x7f,0x41,0x7f,0x40,0x7f,0x48,0x54,0x7e,0x4a,0x48,0xbe,0x88,0x08,0x7f,0x00 -+// 40845 龍 ; -+,0x08,0x04,0x3f,0x12,0x0c,0x7f,0x00,0x1f,0x11,0x1f,0x11,0x1f,0x11,0x11,0x15,0x12,0x40,0x40,0x7e,0x40,0x7e,0x82,0x7e,0x40,0x7c,0x40,0x7c,0x40,0x7d,0x41,0x41,0x3f -+// 40846 龎 ; -+,0x1f,0x14,0x12,0x1f,0x15,0x12,0x1f,0x10,0x17,0x14,0x17,0x14,0x17,0x24,0x25,0x44,0xff,0x20,0x20,0xbe,0x20,0x3e,0xc2,0x3e,0xa0,0xbc,0xa0,0xbc,0xa0,0xbd,0xa1,0x9f -+// 40847 龏 ; -+,0x04,0x3f,0x12,0x7f,0x00,0x1f,0x15,0x1b,0x15,0x11,0x13,0x04,0x7f,0x04,0x04,0x08,0x20,0x3e,0x20,0xbe,0x02,0x3e,0x24,0x2a,0x35,0x29,0x1f,0x10,0xff,0x10,0x10,0x10 -+// 40848 龐 ; -+,0x00,0x1f,0x14,0x12,0x1f,0x15,0x1f,0x10,0x17,0x14,0x17,0x14,0x27,0x24,0x45,0x00,0x80,0xff,0x20,0x3c,0xa0,0x3e,0xc2,0x3e,0xa8,0xa4,0xb0,0xa8,0xb5,0xa9,0x9f,0x00 -+// 40849 龑 ; -+,0x04,0x3f,0x12,0x7f,0x00,0x1f,0x15,0x1b,0x15,0x13,0x07,0x00,0x7f,0x01,0x06,0x38,0x40,0x7c,0x40,0x7c,0x04,0x7c,0x50,0x6a,0x52,0x3e,0xf0,0x80,0xff,0x40,0x30,0x0e -+// 40850 龒 ; -+,0x04,0x3f,0x11,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x13,0x07,0x00,0x7f,0x08,0x08,0x11,0x20,0xbe,0x20,0xbe,0x02,0x3e,0x29,0x35,0x29,0x1f,0xf0,0x00,0xff,0x88,0x84,0x84 -+// 40851 龓 ; -+,0x11,0x10,0x7d,0x11,0x20,0x3f,0x64,0x3d,0x25,0x25,0x3d,0x25,0x25,0x25,0x2d,0x00,0x08,0x88,0xef,0x48,0x8f,0xf1,0x0f,0xe8,0x2f,0xe8,0x2f,0xe8,0x2f,0x29,0x67,0x00 -+// 40852 龔 ; -+,0x08,0x3f,0x12,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x13,0x12,0x0f,0x02,0x3f,0x02,0x0c,0x40,0x7e,0x40,0xfe,0x02,0x7e,0x54,0x6a,0x51,0x3f,0x10,0xfc,0x10,0xff,0x10,0x0c -+// 40853 龕 ; -+,0x00,0x03,0x0c,0x7f,0x04,0x07,0x08,0x3f,0x12,0x7f,0x11,0x1f,0x11,0x1f,0x11,0x13,0x80,0x60,0x18,0xfe,0x10,0xf0,0x20,0x3e,0x20,0xbe,0x02,0x3e,0x28,0x35,0x29,0x1f -+// 40854 龖 ; -+,0x22,0x13,0x7e,0x2b,0x10,0x7f,0x02,0x3b,0x2a,0x3b,0x2a,0x3b,0x2a,0x2a,0x29,0x00,0x44,0xa7,0x74,0xd7,0xa1,0xff,0x04,0x77,0x54,0x77,0x54,0x77,0x54,0xd5,0xd3,0x00 -+// 40855 龗 ; -+,0x07,0x00,0x3f,0x2a,0x05,0x1d,0x15,0x1d,0x08,0x3f,0x12,0x7f,0x15,0x1b,0x15,0x13,0xf8,0x80,0xff,0xd2,0xa8,0xdc,0x54,0xdc,0x20,0x3e,0x20,0xbe,0x02,0x3e,0x25,0x1f -+// 40856 龘 ; -+,0x08,0x3f,0x12,0x7f,0x11,0x1f,0x11,0x13,0x7e,0x2b,0x7e,0x2b,0x3a,0x2b,0x3a,0x2b,0x7e,0x40,0x7e,0x82,0x7e,0x40,0x7f,0x12,0x7a,0xab,0x7e,0xab,0x3a,0xab,0x3a,0xab -+// 40857 龙 ; -+,0x01,0x01,0x01,0x01,0x3f,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x09,0x10,0x20,0x00,0x00,0x20,0x10,0x10,0xff,0x40,0x48,0x48,0x50,0x60,0x40,0xc0,0x41,0x41,0x3f,0x00 -+// 40858 龚 ; -+,0x01,0x01,0x7f,0x02,0x02,0x05,0x1a,0x62,0x1f,0x02,0x3f,0x00,0x04,0x08,0x30,0x00,0x20,0x10,0xff,0x48,0x72,0xc2,0x3e,0x20,0xfe,0x20,0xff,0x20,0x10,0x0c,0x04,0x00 -+// 40859 龛 ; -+,0x00,0x01,0x06,0x3b,0x00,0x07,0x04,0x07,0x00,0x3f,0x01,0x01,0x02,0x0c,0x33,0x00,0x80,0x60,0x18,0xf7,0x00,0xf8,0x08,0xf8,0x90,0xff,0x40,0x50,0x60,0xc1,0x3f,0x00 -+// 40860 龜 ; -+,0x02,0x07,0x08,0x1f,0x10,0x1f,0x01,0x3d,0x05,0x7f,0x05,0x7f,0x05,0x3d,0x01,0x00,0x00,0xf8,0x10,0xfe,0x02,0x3e,0x20,0x3e,0x36,0x2a,0x36,0x22,0x3e,0x21,0x21,0xff -+// 40861 龝 ; -+,0x00,0x1c,0x71,0x11,0x7d,0x10,0x13,0x39,0x37,0x51,0x53,0x11,0x17,0x11,0x13,0x10,0x78,0x88,0xfe,0x02,0xde,0x50,0x5f,0x5b,0xd5,0x5b,0x51,0x5f,0xd0,0x51,0x51,0x3f -+// 40862 龞 ; -+,0x2a,0x1c,0x3f,0x2d,0x3b,0x29,0x2f,0x18,0x0f,0x3d,0x05,0x7f,0x05,0x7f,0x05,0x3c,0x20,0x3f,0x62,0x94,0x18,0x64,0xfb,0x10,0xfc,0x40,0x7c,0x6c,0x54,0x6d,0x45,0xff -+// 40863 龟 ; -+,0x04,0x07,0x08,0x08,0x1f,0x28,0x48,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x20,0xfc,0x84,0x84,0xfc,0x84,0x84,0xfc,0x80,0x81,0x81,0x7f,0x00 -+// 40864 龠 ; -+,0x00,0x01,0x06,0x3b,0x00,0x1d,0x15,0x1d,0x00,0x1f,0x11,0x1f,0x11,0x11,0x11,0x10,0x80,0x60,0x18,0xf7,0x00,0xdc,0x54,0xdc,0x00,0xfe,0x22,0xfe,0x22,0x22,0x2a,0x04 -+// 40865 龡 ; -+,0x04,0x06,0x09,0x1f,0x60,0x3f,0x2a,0x3f,0x00,0x3f,0x2a,0x3f,0x2a,0x2a,0x21,0x00,0x10,0x10,0x10,0xdf,0x22,0xac,0xc8,0x88,0x08,0x88,0x88,0x94,0x94,0xa3,0xc2,0x00 -+// 40866 龢 ; -+,0x04,0x06,0x09,0x1f,0x60,0x3f,0x2a,0x3f,0x00,0x3f,0x2a,0x3f,0x2a,0x2a,0x21,0x00,0x00,0x06,0x18,0xc8,0x08,0xbf,0x88,0x88,0x1c,0x9a,0xab,0xaa,0xc8,0x88,0x88,0x00 -+// 40867 龣 ; -+,0x08,0x0c,0x12,0x7f,0x00,0x7f,0x55,0x7f,0x00,0x7f,0x55,0x7f,0x55,0x55,0x55,0x43,0x00,0x3e,0x02,0x3e,0x02,0x7f,0x08,0x4a,0x2c,0x18,0x2c,0x4b,0x09,0x08,0x28,0x10 -+// 40868 龤 ; -+,0x08,0x0c,0x12,0x7f,0x00,0x7f,0x55,0x7f,0x00,0x7f,0x55,0x7f,0x55,0x55,0x43,0x00,0x44,0x44,0x45,0x76,0x45,0x65,0x43,0x08,0x10,0x3e,0x22,0x3e,0x22,0x22,0x3e,0x00 -+// 40869 龥 ; -+,0x04,0x0a,0x11,0x7f,0x00,0x3f,0x2a,0x3f,0x00,0x3f,0x2a,0x3f,0x2a,0x2a,0x21,0x00,0x00,0x7f,0x08,0xbe,0x22,0xbe,0xa2,0xa2,0x3e,0xa2,0xa2,0xbe,0x94,0x92,0xa2,0x00 -+// 40870 龦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40871 龧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40872 龨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40873 龩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40874 龪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40875 龫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40876 龬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40877 龭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40878 龮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40879 龯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40880 龰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40881 龱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40882 龲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40883 龳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40884 龴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40885 龵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40886 龶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40887 龷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40888 龸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40889 龹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40890 龺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40891 龻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40892 龼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40893 龽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40894 龾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40895 龿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40896 鿀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40897 鿁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40898 鿂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40899 鿃 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40900 鿄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40901 鿅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40902 鿆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40903 鿇 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40904 鿈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40905 鿉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40906 鿊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40907 鿋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40908 鿌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40909 鿍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40910 鿎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40911 鿏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40912 鿐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40913 鿑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40914 鿒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40915 鿓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40916 鿔 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40917 鿕 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40918 鿖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40919 鿗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40920 鿘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40921 鿙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40922 鿚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40923 鿛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40924 鿜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40925 鿝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40926 鿞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40927 鿟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40928 鿠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40929 鿡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40930 鿢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40931 鿣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40932 鿤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40933 鿥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40934 鿦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40935 鿧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40936 鿨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40937 鿩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40938 鿪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40939 鿫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40940 鿬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40941 鿭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40942 鿮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40943 鿯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40944 鿰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40945 鿱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40946 鿲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40947 鿳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40948 鿴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40949 鿵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40950 鿶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40951 鿷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40952 鿸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40953 鿹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40954 鿺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40955 鿻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40956 鿼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40957 鿽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40958 鿾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40959 鿿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40960 ꀀ ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xe0,0x00 -+// 40961 ꀁ ; -+,0x00,0x02,0x00,0x00,0x02,0x02,0x00,0x06,0x07,0x00,0x00,0x00,0x02,0x03,0x0f,0x01,0x00,0x40,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x10,0x10,0x90,0x10,0x30,0xe0 -+// 40962 ꀂ ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x02,0x0f,0x01,0x00,0x00,0x00,0x08,0xf8,0x08,0x08,0x08,0x08,0x88,0x48,0x48,0x08,0x80,0x10,0xa0,0x00 -+// 40963 ꀃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x05,0x04,0x04,0x05,0x03,0x0f,0x00,0x00,0x00,0x30,0x08,0x00,0x00,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00 -+// 40964 ꀄ ; -+,0x00,0x00,0x05,0x06,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x28,0x18,0x10,0x30,0xc0,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0xe0,0x00 -+// 40965 ꀅ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x04,0x02,0x03,0x00,0x00,0x02,0x01,0x80,0x20,0x80,0xe0,0x90,0x80,0xc0,0x10,0x00,0x00,0x10,0xe0,0xc0,0x80,0x80,0x80 -+// 40966 ꀆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x04,0x02,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0xc0,0x10,0x00,0x08,0x10,0xe0,0x00,0x00,0x80,0x80,0x00 -+// 40967 ꀇ ; -+,0x00,0x01,0x02,0x04,0x04,0x00,0x00,0x09,0x09,0x08,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x88,0x58,0x68,0xc8,0x80,0x00,0x00,0x00,0x80,0xc8,0x78,0x48,0x88,0x00 -+// 40968 ꀈ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x90,0xf0,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40969 ꀉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x06,0x01,0x00,0x00,0x00,0x04,0x03,0x01,0x80,0x20,0x00,0xd0,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 40970 ꀊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0xd0,0xb0,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x00 -+// 40971 ꀋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x01,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x10,0x90,0x20,0x20,0x00,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 40972 ꀌ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x80,0x20,0x00,0x00,0x80,0x80,0x80,0x00,0x10,0xf0,0x00,0x80,0x80,0x80,0x80,0x00 -+// 40973 ꀍ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 40974 ꀎ ; -+,0x00,0x00,0x07,0x05,0x01,0x05,0x07,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x38,0x28,0x08,0x28,0x38,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0xc0 -+// 40975 ꀏ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x03,0x00,0x02,0x03,0x04,0x04,0x03,0x00,0x00,0xc0,0xd8,0x08,0x00,0x08,0xf0,0xc0,0x80,0x00,0x00,0x80,0x00,0x00,0xc0,0x00 -+// 40976 ꀐ ; -+,0x00,0x03,0x00,0x00,0x02,0x03,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0x40,0x00,0x60,0x90,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x90,0x60 -+// 40977 ꀑ ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x60,0x90,0x80,0x88,0x08,0x08,0x08,0x08,0x08,0x88,0x80,0x90,0x60,0x00 -+// 40978 ꀒ ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x70,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x80,0x90,0x60,0x00 -+// 40979 ꀓ ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x02,0x03,0x02,0x00,0x02,0x04,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x10,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0xc0,0x40 -+// 40980 ꀔ ; -+,0x00,0x00,0x00,0x06,0x01,0x01,0x01,0x03,0x01,0x01,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x28,0x20,0x20,0x20,0xe0,0x20,0x20,0x20,0x20,0x20,0xa0,0x20,0x00 -+// 40981 ꀕ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x88,0x88,0xc8,0x50,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x00 -+// 40982 ꀖ ; -+,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x02,0x01,0x00,0x00,0x00,0xc0,0x40,0x20,0xa8,0x70,0x30,0x30,0x68,0xa8,0x20,0x20,0x40,0x80,0x00 -+// 40983 ꀗ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0xa0,0x00,0x18,0x20,0x40,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x40,0x20,0x18 -+// 40984 ꀘ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x20,0x40,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x40,0x20,0x18,0x00 -+// 40985 ꀙ ; -+,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x05,0x07,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x80,0x50,0x30,0x00,0x70,0x80,0x00,0xf8,0x00,0xc0,0x30,0x00,0x00 -+// 40986 ꀚ ; -+,0x00,0x00,0x03,0x04,0x04,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x04,0x05,0x00,0x00,0x00,0x00,0x10,0x90,0xa0,0xa0,0xa0,0xe0,0xe0,0xa0,0xa0,0xa0,0xa0,0x10,0x08,0x00 -+// 40987 ꀛ ; -+,0x00,0x01,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x06,0x02,0x01,0xc0,0x20,0x00,0x38,0x18,0x18,0x28,0x28,0x48,0x88,0x88,0x08,0x08,0x08,0x10,0xe0 -+// 40988 ꀜ ; -+,0x00,0x00,0x02,0x04,0x04,0x00,0x08,0x08,0x08,0x09,0x09,0x02,0x04,0x06,0x03,0x00,0x00,0x80,0x30,0x10,0x38,0x28,0x48,0x48,0x88,0x08,0x08,0x08,0x10,0x10,0xe0,0x00 -+// 40989 ꀝ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x80,0x48,0x48,0x48,0x48,0x50,0x70,0x58,0x48,0x48,0x48,0x48,0x80,0x00 -+// 40990 ꀞ ; -+,0x00,0x00,0x02,0x02,0x03,0x02,0x02,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0xf0,0x10,0x10,0x00,0xc0,0x30,0x10,0x10,0x10,0x10,0xe0,0x00 -+// 40991 ꀟ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x88,0x88,0xc8,0x30 -+// 40992 ꀠ ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00,0x00,0x08,0x88,0x88,0xc0,0x30,0x00 -+// 40993 ꀡ ; -+,0x00,0x00,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x00,0x00,0x20,0x10,0x10,0x08,0x00 -+// 40994 ꀢ ; -+,0x00,0x01,0x00,0x01,0x06,0x01,0x00,0x00,0x00,0x00,0x01,0x04,0x07,0x04,0x04,0x04,0x00,0x20,0x60,0x18,0x00,0xe0,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0xf8,0x00,0x00 -+// 40995 ꀣ ; -+,0x00,0x00,0x01,0x02,0x05,0x00,0x00,0x00,0x00,0x01,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x90,0x08,0xc8,0x88,0x88,0x88,0x88,0xc8,0x08,0x08,0xf0,0x00,0x00,0x00 -+// 40996 ꀤ ; -+,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00 -+// 40997 ꀥ ; -+,0x00,0x00,0x00,0x00,0x04,0x03,0x03,0x00,0x00,0x01,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x10,0x60,0x40,0xc0,0xc0,0x40,0x20,0x30,0x40,0x40,0x80,0x40,0x40,0x30,0x00 -+// 40998 ꀦ ; -+,0x00,0x01,0x00,0x01,0x02,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0xe0,0x10,0xe8,0x08,0x08,0x08,0x08,0x08,0x08,0xc8,0x08,0x10,0xe0 -+// 40999 ꀧ ; -+,0x00,0x00,0x03,0x02,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x02,0x01,0x00,0x00,0x00,0x30,0x10,0xe8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xe8,0x10,0xe0,0x00 -+// 41000 ꀨ ; -+,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0xf8,0xc0,0x00,0x00,0x00,0xc0,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 41001 ꀩ ; -+,0x00,0x01,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0xe0,0x00,0x70,0xc8,0xc8,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x30,0xc0 -+// 41002 ꀪ ; -+,0x00,0x00,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x70,0xc8,0x88,0x80,0x80,0x00,0x00,0x80,0x80,0x00,0x10,0x20,0xe0,0x00 -+// 41003 ꀫ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x07,0x00,0x00,0x00,0xc0,0x00,0x00,0x10,0x20,0xc0,0xc0,0xe0,0x30,0x18,0x00,0x00,0xf8,0x00 -+// 41004 ꀬ ; -+,0x00,0x00,0x03,0x04,0x00,0x08,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x08,0x08,0x08,0x10,0xc0,0x80,0x90,0x80,0x80,0x80,0x80,0x00 -+// 41005 ꀭ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x00 -+// 41006 ꀮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x80,0x00 -+// 41007 ꀯ ; -+,0x00,0x00,0x00,0x01,0x02,0x00,0x04,0x04,0x05,0x04,0x04,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x60,0x80,0x10,0x40,0x80,0x00,0x00,0x00,0x80,0x60,0x00,0x80,0x70,0x00 -+// 41008 ꀰ ; -+,0x00,0x01,0x00,0x02,0x02,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0xa0,0x00,0x10,0x00,0x00,0x30,0x30,0x00,0x00,0x78,0x20,0x20,0x20,0x40,0xc0 -+// 41009 ꀱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0xf8,0x20,0x20,0xf8,0x20,0x20,0x20,0x40,0x80,0x00 -+// 41010 ꀲ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x07,0x01,0x00,0x00,0x00,0x80,0x60,0x00,0x80,0x90,0x50,0x30,0x30,0x30,0xd0,0x80,0x00,0x00,0x00 -+// 41011 ꀳ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x20,0x80,0xe0,0x18,0x00,0x10,0xe0,0x80,0xe0,0x30,0xc0,0x80,0xe0,0x10,0x00 -+// 41012 ꀴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0xc0,0xa0,0x80,0x80,0xb0,0xc0,0xc0,0x90,0xa0,0x80,0xe0,0x90,0x80,0x00 -+// 41013 ꀵ ; -+,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x00,0x05,0x00,0x00,0x00,0x00,0x60,0xd0,0x48,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 41014 ꀶ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0xe0,0x00,0x20,0x20,0x20,0x20,0x20,0xa0,0x20,0x60,0x20,0x60,0x20,0xa0,0x20 -+// 41015 ꀷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x05,0x09,0x01,0x05,0x03,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x20,0x60,0xa0,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00 -+// 41016 ꀸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x00,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x30,0x28,0x20,0x20,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x00 -+// 41017 ꀹ ; -+,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x01,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x20,0x00,0xf0,0x10,0x08,0x08,0x08,0x08,0x38,0x08,0x08,0x08,0x08,0x90,0xe0 -+// 41018 ꀺ ; -+,0x00,0x00,0x00,0x01,0x09,0x0a,0x0a,0x0a,0x0a,0x07,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0xb0,0x10,0x08,0x08,0x08,0x08,0x78,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41019 ꀻ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x00,0x01,0x01,0x01,0x00,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x20,0x40,0x40,0x40,0x90,0x90,0x90,0x90,0x90,0x40,0x40,0x00,0x20,0x00 -+// 41020 ꀼ ; -+,0x00,0x01,0x00,0x02,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x20,0x00,0xc0,0x40,0x00,0x10,0x10,0x50,0xd0,0x10,0x10,0x10,0x40,0x40,0x80 -+// 41021 ꀽ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xc0,0x40,0x40,0x58,0x58,0x58,0xd8,0x58,0x58,0x40,0x40,0x40,0x80,0x00 -+// 41022 ꀾ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x20,0x10,0x00,0x00,0x10,0x30,0xc0,0x80,0x80,0x88,0x88,0xc8,0x70,0x00 -+// 41023 ꀿ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41024 ꁀ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x08,0x08,0x08,0xc8,0xc8,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xc0 -+// 41025 ꁁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41026 ꁂ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x38,0x20,0x20,0x20,0x20,0x40,0xc0,0x00 -+// 41027 ꁃ ; -+,0x00,0x01,0x00,0x03,0x04,0x07,0x04,0x03,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0xf8,0x00,0x00,0x60,0x00,0x08,0x08,0x08,0x00,0x00,0x00 -+// 41028 ꁄ ; -+,0x00,0x00,0x03,0x04,0x07,0x04,0x06,0x01,0x00,0x05,0x05,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 41029 ꁅ ; -+,0x00,0x00,0x02,0x04,0x04,0x07,0x04,0x04,0x06,0x03,0x00,0x00,0x08,0x04,0x07,0x00,0x00,0xf8,0x88,0x88,0x88,0xf8,0x88,0x88,0x88,0xf8,0x08,0x08,0x08,0x10,0x30,0x80 -+// 41030 ꁆ ; -+,0x00,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x80,0x50,0x48,0x08,0x08,0x10,0x30,0x08,0x08,0x48,0x48,0x40,0x80,0x00 -+// 41031 ꁇ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x20,0x00,0x08,0x08,0x08,0x08,0x10,0xe0,0xc0,0x00,0xf8,0x00,0x00,0x00,0xf8 -+// 41032 ꁈ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x88,0x88,0x88,0x80,0x90,0xe0,0xc0,0x00,0xf0,0x00,0x00,0x00,0xf8,0x00 -+// 41033 ꁉ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0xf8,0x00,0xc0,0xc0,0x00,0xf8,0x00,0x00,0x00 -+// 41034 ꁊ ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x02,0x00,0x00,0x00,0x00,0x00,0x80,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xd0,0x00,0x00,0x00 -+// 41035 ꁋ ; -+,0x00,0x02,0x00,0x06,0x00,0x00,0x06,0x03,0x04,0x00,0x04,0x03,0x04,0x00,0x04,0x03,0x00,0x20,0x78,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0xf8 -+// 41036 ꁌ ; -+,0x00,0x00,0x06,0x08,0x08,0x07,0x03,0x04,0x08,0x04,0x03,0x04,0x08,0x04,0x07,0x00,0x00,0x78,0x08,0x08,0x08,0xf8,0xf8,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x98,0x00 -+// 41037 ꁍ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0xc0,0x40,0xc0,0x40,0x00 -+// 41038 ꁎ ; -+,0x00,0x01,0x01,0x02,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x03,0x40,0x20,0x00,0x40,0x40,0x40,0x50,0x50,0x50,0x78,0x50,0x50,0x40,0x40,0x40,0x80 -+// 41039 ꁏ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x80,0x40,0x40,0x50,0x50,0x50,0x78,0x50,0x50,0x50,0x40,0x40,0x80,0x00 -+// 41040 ꁐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x08,0x04,0x01,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41041 ꁑ ; -+,0x00,0x01,0x00,0x0c,0x04,0x02,0x00,0x01,0x00,0x00,0x00,0x01,0x02,0x06,0x0c,0x0c,0x00,0x60,0x00,0x08,0x18,0x18,0x28,0x68,0xc8,0x88,0xc8,0x08,0x28,0x18,0x18,0x08 -+// 41042 ꁒ ; -+,0x00,0x00,0x04,0x06,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x08,0x18,0x18,0x28,0x28,0xd8,0xd8,0xc8,0x28,0x28,0x18,0x08,0x08,0x00 -+// 41043 ꁓ ; -+,0x00,0x00,0x03,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x04,0x07,0x00,0x00,0x00,0xa0,0x70,0x20,0x20,0x28,0x28,0x28,0x28,0x28,0x20,0xa0,0xa0,0x20,0x00 -+// 41044 ꁔ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x20,0x00,0x30,0x28,0x20,0x20,0x60,0xa8,0x28,0x28,0x28,0x20,0x20,0x20,0xe0 -+// 41045 ꁕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x30,0x08,0x00,0x00,0x60,0xc8,0x08,0x08,0x08,0x00,0x00,0x00,0xe0,0x00 -+// 41046 ꁖ ; -+,0x00,0x00,0x01,0x00,0x03,0x02,0x02,0x02,0x02,0x01,0x01,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0xc0,0x08,0xc8,0xc8,0x30,0x00 -+// 41047 ꁗ ; -+,0x00,0x01,0x00,0x00,0x04,0x02,0x03,0x01,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0xe0,0x00,0x80,0x88,0x90,0xa0,0xc0,0xc0,0xc0,0xa0,0x90,0x88,0x80,0x80,0x80 -+// 41048 ꁘ ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x88,0x90,0xa0,0xc0,0xc0,0xc0,0xe0,0x90,0x98,0x80,0x80,0x80,0x00 -+// 41049 ꁙ ; -+,0x00,0x00,0x05,0x02,0x02,0x05,0x05,0x04,0x04,0x04,0x05,0x05,0x02,0x02,0x04,0x00,0x00,0x00,0xe8,0x10,0x30,0x28,0x28,0x08,0x08,0x08,0x28,0x28,0x30,0x30,0xc8,0x00 -+// 41050 ꁚ ; -+,0x00,0x00,0x03,0x00,0x04,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x08,0x00,0xb0,0xc8,0x88,0xc8,0x78,0x00,0x00,0x00,0x00,0x00 -+// 41051 ꁛ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x20,0x00,0x10,0x20,0x48,0xd0,0xa0,0xa0,0xf0,0x20,0x50,0x58,0x20,0x10,0x00 -+// 41052 ꁜ ; -+,0x00,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x00,0x00,0x00,0x10,0x20,0x48,0xd0,0xa0,0xa0,0xf0,0xa0,0x80,0x50,0x40,0x20,0x18,0x00 -+// 41053 ꁝ ; -+,0x00,0x00,0x04,0x02,0x02,0x01,0x01,0x01,0x07,0x01,0x01,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x08,0x10,0x20,0x20,0x20,0x00,0xf8,0x00,0x20,0x20,0x20,0x10,0x08,0x00 -+// 41054 ꁞ ; -+,0x00,0x00,0x04,0x04,0x03,0x02,0x02,0x00,0x01,0x00,0x02,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x08,0x10,0xf0,0x00,0x00,0x20,0xe0,0x20,0x00,0x30,0x30,0x10,0x08,0x00 -+// 41055 ꁟ ; -+,0x00,0x01,0x00,0x01,0x00,0x01,0x05,0x07,0x03,0x03,0x03,0x05,0x05,0x01,0x01,0x00,0x00,0x20,0x08,0x08,0x18,0x98,0x88,0x68,0x48,0x68,0x68,0xa8,0x98,0x18,0x08,0x08 -+// 41056 ꁠ ; -+,0x00,0x00,0x02,0x00,0x0b,0x03,0x06,0x06,0x06,0x06,0x03,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x18,0x18,0x10,0x20,0x80,0xc0,0x40,0xc0,0x20,0x20,0x10,0x18,0x08,0x00 -+// 41057 ꁡ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x88,0xc8,0x30,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00 -+// 41058 ꁢ ; -+,0x00,0x01,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x20,0x08,0x08,0x08,0x88,0x68,0x08,0x08,0xc8,0x08,0x08,0x08,0xc8,0x18,0x00 -+// 41059 ꁣ ; -+,0x00,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x28,0x28,0xa8,0x68,0x28,0x08,0xc8,0x08,0xc8,0x08,0x08,0xc8,0x18,0x00 -+// 41060 ꁤ ; -+,0x00,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x60,0x28,0x18,0x18,0x10,0x10,0x10,0x10,0x10,0x18,0x08,0x20,0xc0,0x00 -+// 41061 ꁥ ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41062 ꁦ ; -+,0x00,0x01,0x00,0x00,0x04,0x03,0x00,0x00,0x01,0x02,0x04,0x00,0x07,0x00,0x00,0x07,0x00,0x20,0x00,0x00,0x08,0x10,0xe0,0xc0,0xe0,0x10,0x08,0x00,0xf8,0x40,0x40,0xf8 -+// 41063 ꁧ ; -+,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x80,0x88,0xb0,0xc0,0xc0,0xe0,0x90,0x88,0x80,0xc0,0xc0,0x80,0xf8,0x00 -+// 41064 ꁨ ; -+,0x00,0x00,0x03,0x04,0x04,0x00,0x00,0x03,0x04,0x04,0x00,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0xd0,0xc8,0xc8,0x00,0xc0,0x30,0x10,0x88,0x80,0x80,0x90,0x10,0xc0,0x00 -+// 41065 ꁩ ; -+,0x00,0x00,0x00,0x03,0x01,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0xc0,0x00,0x20,0x20,0xa0,0x60,0x20,0x08,0x88,0x28,0x08,0x00,0x00,0xe0,0x00 -+// 41066 ꁪ ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x00,0x0c,0x09,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xa0,0x60,0x20,0x08,0x08,0x68,0x18,0x00,0xc0,0x00,0x00,0x00 -+// 41067 ꁫ ; -+,0x00,0x00,0x06,0x06,0x05,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0xc0,0x44,0x48,0x18,0x10,0x00,0x00,0x00,0xe0,0x20,0x00 -+// 41068 ꁬ ; -+,0x00,0x00,0x01,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x01,0x01,0x01,0x06,0x00,0x00,0x00,0x50,0x60,0x60,0x50,0x40,0xc0,0xc0,0x80,0x90,0xa0,0x80,0xa0,0xb0,0x00 -+// 41069 ꁭ ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x10,0xf0,0x80,0x80,0x90,0x90,0x90,0x90,0x90,0x80,0x80,0x80,0x80 -+// 41070 ꁮ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xa0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41071 ꁯ ; -+,0x00,0x00,0x00,0x00,0x06,0x05,0x04,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0xc0,0x50,0x50,0x50,0x40,0x40,0xc0,0x00,0x00,0x00,0x00 -+// 41072 ꁰ ; -+,0x00,0x03,0x00,0x00,0x00,0x08,0x0c,0x0b,0x09,0x08,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x20,0x20,0x20,0x20,0xa0,0x60,0xe0,0x30,0x10,0x10,0x10,0x00 -+// 41073 ꁱ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x01,0x00,0x00,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0xa0,0x60,0xe0,0x10,0x10,0x48,0x48,0x08,0x00 -+// 41074 ꁲ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x10,0xf0,0x30,0x00,0x80,0x80,0x00,0xf0,0x00,0x00,0x00,0x20,0x00,0x00 -+// 41075 ꁳ ; -+,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x01,0x00,0x40,0x00,0x90,0x30,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41076 ꁴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x07,0x04,0x00,0x00,0x00,0xc0,0xb8,0x98,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41077 ꁵ ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x60,0x10,0x00,0x00,0x80,0x80,0x00,0xc0,0xe0,0x10,0x08,0x80,0x80,0x00 -+// 41078 ꁶ ; -+,0x00,0x01,0x01,0x05,0x05,0x05,0x05,0x01,0x01,0x01,0x05,0x05,0x05,0x01,0x01,0x00,0x00,0x00,0xc0,0x30,0x08,0x00,0x08,0x08,0x68,0x68,0x08,0x08,0x00,0x00,0x00,0x00 -+// 41079 ꁷ ; -+,0x00,0x01,0x00,0x02,0x04,0x04,0x07,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xf0,0x80,0x88,0xf8,0x88,0x88,0x90,0xe0,0xc0,0xa0,0x80,0x08,0x10 -+// 41080 ꁸ ; -+,0x00,0x00,0x03,0x04,0x04,0x0c,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x90,0x88,0x98,0x88,0x88,0x90,0xe0,0x80,0xa0,0x80,0x88,0x70,0x00 -+// 41081 ꁹ ; -+,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x60,0xf0,0x40,0x00,0x00,0x00,0x60,0x40,0x00,0x40,0x60,0x00,0x00,0x00 -+// 41082 ꁺ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0x90,0x90,0x88,0x88,0x80,0x80,0x80,0x80,0xe0,0x80,0x80,0x80,0x80 -+// 41083 ꁻ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x90,0x88,0x88,0xc4,0x80,0x80,0x80,0x80,0xe0,0x80,0x80,0x80,0x00 -+// 41084 ꁼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00 -+// 41085 ꁽ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x03,0x00,0x00,0x00,0x80,0x40,0x40,0x18,0x38,0x28,0x38,0x28,0x38,0x38,0x20,0x20,0xc0,0x00 -+// 41086 ꁾ ; -+,0x00,0x01,0x00,0x04,0x00,0x07,0x01,0x01,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x04,0x00,0x20,0x00,0x08,0x10,0xf8,0x20,0x00,0xc0,0xc0,0xc0,0x20,0x30,0x30,0x10,0x08 -+// 41087 ꁿ ; -+,0x00,0x00,0x04,0x02,0x07,0x01,0x00,0x00,0x00,0x00,0x01,0x07,0x02,0x04,0x04,0x00,0x00,0x00,0x08,0x00,0xf8,0x20,0x20,0xc0,0xc0,0xc0,0x20,0xf8,0x10,0x08,0x08,0x00 -+// 41088 ꂀ ; -+,0x00,0x00,0x04,0x06,0x05,0x05,0x04,0x04,0x04,0x04,0x05,0x05,0x06,0x04,0x00,0x00,0x00,0x00,0x08,0x18,0x28,0x28,0xc8,0xc8,0xc8,0xc8,0x28,0x28,0x18,0x08,0x00,0x00 -+// 41089 ꂁ ; -+,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x06,0x0a,0x0a,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x70,0x00,0x20,0x20,0x20,0x20,0x00,0x30,0xd0,0x10,0x10,0x00 -+// 41090 ꂂ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x01,0x00,0x04,0x04,0x01,0x00,0x20,0x00,0x04,0x88,0xc8,0xc8,0x30,0x00,0x00,0x00,0xe0,0x00,0x08,0x18,0xe0 -+// 41091 ꂃ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x03,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x88,0xc8,0xc8,0xc8,0x10,0x00,0x00,0xf0,0x00,0x08,0x08,0xb0,0x00 -+// 41092 ꂄ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x80,0xc0,0xc8,0xc8,0x10,0x00,0x00,0x00,0x00,0x08,0x08,0xf0,0x00 -+// 41093 ꂅ ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x08,0x08,0x08,0x08,0x00,0x04,0x02,0x01,0x00,0x00,0x08,0x08,0xf8,0x48,0x40,0x40,0x40,0x70,0x40,0x40,0x40,0x40,0x50,0xe0,0x00 -+// 41094 ꂆ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x02,0x02,0x02,0x00,0xe0,0x00,0x70,0x48,0x08,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x48,0x48,0x30 -+// 41095 ꂇ ; -+,0x00,0x00,0x04,0x04,0x00,0x00,0x03,0x04,0x08,0x04,0x03,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x50,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x80,0x90,0x70,0x00 -+// 41096 ꂈ ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x90,0x08,0x28,0x28,0x08,0x08,0xf0,0xc0,0x00,0x00,0x00 -+// 41097 ꂉ ; -+,0x00,0x01,0x00,0x02,0x05,0x05,0x05,0x01,0x01,0x01,0x01,0x05,0x05,0x05,0x05,0x02,0x00,0x20,0x00,0x30,0x28,0x28,0x08,0x08,0x08,0xc8,0x08,0x08,0x08,0x28,0x28,0x10 -+// 41098 ꂊ ; -+,0x00,0x00,0x02,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x02,0x00,0x00,0x00,0x20,0x28,0x28,0x08,0x08,0x48,0xc8,0x08,0x08,0x08,0x28,0x28,0x10,0x00 -+// 41099 ꂋ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0xd8,0x60,0x68,0xa8,0xa0,0xa0,0xf8,0xa0,0xa8,0x68,0x68,0x60,0x98,0x00 -+// 41100 ꂌ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x10,0xe0 -+// 41101 ꂍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x04,0x06,0x03,0x00,0x00,0x00,0x88,0xa8,0xa8,0x88,0x88,0xa8,0xa8,0x88,0xa8,0xa8,0x88,0x90,0xe0,0x00 -+// 41102 ꂎ ; -+,0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x80,0x80,0x80,0xe0,0x80,0x80,0x80,0x40,0x00,0x60,0x00,0x00,0x00,0x00 -+// 41103 ꂏ ; -+,0x00,0x01,0x00,0x00,0x00,0x06,0x05,0x05,0x04,0x06,0x04,0x05,0x06,0x06,0x00,0x00,0xc0,0x20,0x00,0x00,0x08,0x18,0x38,0xe8,0xc8,0xd8,0xe8,0x28,0x18,0x08,0x00,0x00 -+// 41104 ꂐ ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x05,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x30,0xe0,0xc0,0xc0,0xc0,0x30,0x18,0x08,0x00,0x00,0x00 -+// 41105 ꂑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0xc0,0xb0,0x88,0x80,0x80,0x90,0x90,0x90,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41106 ꂒ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x00,0x20,0x00,0x00,0x00,0x10,0xe0,0xc0,0xc0,0xc0,0xc0,0xf0,0x10,0x08,0x08,0x08 -+// 41107 ꂓ ; -+,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x07,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0xe0,0xc0,0xf8,0x80,0xe0,0x10,0x10,0x08,0x08,0x08,0x00 -+// 41108 ꂔ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x05,0x05,0x05,0x05,0x06,0x04,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x08,0xc8,0xc8,0x28,0x28,0x28,0xe8,0x18,0x18,0x10,0xe0,0x00 -+// 41109 ꂕ ; -+,0x00,0x01,0x00,0x05,0x05,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x20,0x00,0x50,0x58,0x48,0x50,0xe0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80 -+// 41110 ꂖ ; -+,0x00,0x00,0x05,0x05,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x40,0x58,0x48,0x48,0xf0,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x00 -+// 41111 ꂗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0xa0,0x80,0x90,0x90,0x90,0x90,0x90,0x80,0x80,0x80,0x00 -+// 41112 ꂘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x80,0xc0,0xa0,0x80,0x80,0xc0,0x80,0xb0,0xb0,0x90,0x80,0x80,0x80,0x00 -+// 41113 ꂙ ; -+,0x00,0x01,0x00,0x00,0x00,0x0c,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x20,0x20,0x20,0x20,0x20,0xe0,0x20,0x70,0x88,0x88,0x88,0x80,0x60 -+// 41114 ꂚ ; -+,0x00,0x00,0x00,0x00,0x0c,0x0e,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0xa0,0x60,0x60,0x90,0x00,0x08,0x08,0x90,0x60,0x00 -+// 41115 ꂛ ; -+,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x30,0x28,0x20,0x20,0x20,0xa0,0xe0,0xa0,0x20,0x20,0x20,0x20,0x20,0x00 -+// 41116 ꂜ ; -+,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x05,0x03,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x20,0x00,0x00,0x00,0xc0,0x00,0x00 -+// 41117 ꂝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x03,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x28,0x30,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00 -+// 41118 ꂞ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x40,0x60,0x58,0x40,0x40,0x40,0x70,0x48,0x40,0x40,0x40,0xc0,0x40,0x00,0x00 -+// 41119 ꂟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x0a,0x02,0x05,0x02,0x00,0x00,0x00,0x00,0x20,0x38,0x28,0x20,0x20,0xa0,0x20,0xa0,0x20,0x20,0xa0,0x20,0xe0,0x00 -+// 41120 ꂠ ; -+,0x00,0x02,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x08,0x08,0x01,0x09,0x08,0x06,0x00,0x00,0x40,0x00,0x60,0x70,0x50,0x40,0x50,0x50,0x40,0x60,0x50,0x40,0x40,0x40,0x40 -+// 41121 ꂡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x04,0x02,0x00,0x00,0x00,0x00,0x20,0x30,0x28,0x20,0x28,0x28,0x60,0x30,0x28,0x20,0x20,0x20,0xe0,0x00 -+// 41122 ꂢ ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x02,0x01,0x00,0x01,0x01,0x01,0x06,0x01,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0xe0,0xb0,0x48,0x08,0x48,0x90,0xe0,0x00 -+// 41123 ꂣ ; -+,0x00,0x00,0x07,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x07,0x00,0x00,0x00,0xf0,0x10,0x20,0x20,0x40,0xc0,0xc0,0xc0,0x00,0x20,0x00,0x10,0xf0,0x00 -+// 41124 ꂤ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x04,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0xe0,0x00,0x00,0x40,0x40,0x40,0x00,0x00,0x40,0x40,0x00,0x00,0x80,0x70,0x10 -+// 41125 ꂥ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x04,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x68,0x18,0x00 -+// 41126 ꂦ ; -+,0x00,0x00,0x01,0x02,0x04,0x05,0x05,0x04,0x04,0x04,0x05,0x05,0x02,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x08,0x28,0x28,0x08,0x08,0x08,0x28,0x28,0x08,0x50,0xe0,0x00 -+// 41127 ꂧ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x20,0x00,0x08,0x08,0x08,0x00,0x10,0x20,0xc0,0x10,0x10,0x10,0x10,0x10,0x10 -+// 41128 ꂨ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x10,0x20,0xc0,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41129 ꂩ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0x01,0x00,0x00,0x20,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x60,0x10,0x08,0x08,0x00,0x80,0x80 -+// 41130 ꂪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x80,0x90,0x90,0x90,0x90,0x80,0xe0,0x90,0x88,0x88,0x80,0x80,0x80,0x00 -+// 41131 ꂫ ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x00,0x00,0x04,0x04,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x10,0x10,0x50,0x50,0x10,0x50,0x50,0x90,0xf0,0x00,0x00,0x00 -+// 41132 ꂬ ; -+,0x00,0x01,0x00,0x01,0x02,0x06,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x20,0x00,0xf0,0x10,0xd0,0xd0,0x10,0xf0,0xc0,0x00,0x80,0xc8,0xc8,0xc8,0x30 -+// 41133 ꂭ ; -+,0x00,0x00,0x01,0x02,0x06,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xe0,0x90,0xd0,0xd0,0x90,0xe0,0xc0,0xa0,0xa0,0x88,0xc8,0xc8,0x30,0x00 -+// 41134 ꂮ ; -+,0x00,0x00,0x01,0x02,0x04,0x05,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x60,0x10,0x08,0x28,0x88,0x88,0x88,0xe8,0x08,0xc8,0x08,0x10,0xe0,0x00 -+// 41135 ꂯ ; -+,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x06,0x02,0x00,0x00,0x20,0x00,0x00,0xc0,0x10,0x00,0x18,0x60,0x80,0x80,0x60,0x10,0x00,0x00,0x00 -+// 41136 ꂰ ; -+,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x03,0x03,0x02,0x02,0x06,0x02,0x02,0x00,0x00,0x00,0x10,0xf0,0x10,0x00,0x10,0x60,0x80,0x80,0x40,0x10,0x00,0x00,0x00,0x00 -+// 41137 ꂱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x10,0xd0,0xb0,0x80,0x80,0x80,0x80,0xf0,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41138 ꂲ ; -+,0x00,0x01,0x00,0x01,0x03,0x01,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x03,0x02,0x01,0x00,0x20,0x00,0x30,0x10,0x28,0x28,0xc8,0xd8,0xd8,0xd8,0x88,0x28,0x28,0x30,0xe0 -+// 41139 ꂳ ; -+,0x00,0x00,0x03,0x02,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x02,0x01,0x00,0x00,0xc0,0x30,0x10,0x28,0x28,0xc8,0xc8,0xc8,0xc8,0x48,0x28,0x38,0x10,0xe0,0x00 -+// 41140 ꂴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0c,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0xa0,0x80,0x80,0x90,0x90,0x90,0x80,0x80,0x80,0x80,0x00 -+// 41141 ꂵ ; -+,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x98,0xf0,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x00 -+// 41142 ꂶ ; -+,0x00,0x01,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x20,0x00,0x20,0x10,0x10,0x10,0x10,0x10,0xf8,0x10,0x10,0x10,0x10,0x20,0xe0 -+// 41143 ꂷ ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x20,0x10,0x10,0x10,0x10,0x10,0xf8,0x10,0x10,0x10,0x10,0x00,0xe0,0x00 -+// 41144 ꂸ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0xc8,0xd8,0x00,0x00,0xf0,0x00,0xc0,0xf0,0x00,0x00,0x00 -+// 41145 ꂹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x88,0x48,0x08,0x08,0x88,0x48,0x08,0x88,0x48,0x08,0x08,0x10,0xe0,0x00 -+// 41146 ꂺ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x01,0x00,0xc0,0x20,0x40,0xe0,0xb0,0x80,0x80,0xc0,0xb0,0x80,0x80,0xc0,0xf0,0x80,0x80,0x80 -+// 41147 ꂻ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x40,0xe0,0x30,0x00,0x80,0xc0,0x60,0x00,0x00,0xc0,0x70,0x00,0x80,0x80,0x00 -+// 41148 ꂼ ; -+,0x00,0x02,0x03,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x03,0x02,0x02,0x06,0x02,0x00,0x00,0x00,0x70,0xc8,0x08,0x08,0xa8,0x28,0x28,0x28,0x88,0x08,0x08,0x48,0x30,0x00 -+// 41149 ꂽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x09,0x01,0x09,0x09,0x06,0x01,0x00,0x00,0x20,0x30,0x30,0x20,0x20,0x60,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00 -+// 41150 ꂾ ; -+,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x08,0x08,0xc0,0x00,0x00,0xc0,0xa0,0xd0,0xa0,0x90,0xe0,0xc0,0xc0,0xe0,0x90,0x90,0x88,0x88 -+// 41151 ꂿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x08,0x08,0x00,0x00,0x80,0xc0,0xb0,0xc0,0xa0,0x90,0xe0,0x80,0xc0,0xa0,0x90,0x90,0x88,0x88,0x00 -+// 41152 ꃀ ; -+,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0xb0,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf0,0x00,0x00,0x00 -+// 41153 ꃁ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x01,0x01,0x01,0x05,0x03,0x01,0x00,0xe0,0x00,0x00,0x00,0x00,0x30,0x08,0x48,0xc8,0x48,0x48,0x30,0x00,0x00,0x00 -+// 41154 ꃂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x01,0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x48,0x48,0xc8,0x48,0x48,0x30,0x00,0x00,0x00,0x00 -+// 41155 ꃃ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x50,0x50,0x60,0x60,0x50,0x50,0x50,0x50,0xc0,0x00,0x00 -+// 41156 ꃄ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x03,0x01,0x00,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10 -+// 41157 ꃅ ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x02,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 41158 ꃆ ; -+,0x00,0x00,0x03,0x04,0x04,0x03,0x00,0x01,0x04,0x04,0x06,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x10,0x90,0x60,0xc0,0x00,0xf0,0x08,0x08,0x48,0xe0,0x00,0x00,0x80,0x00 -+// 41159 ꃇ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x20,0x00,0x40,0x40,0x70,0x40,0x40,0x40,0x40,0x40,0x40,0x78,0x40,0xc0,0x40 -+// 41160 ꃈ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x40,0x78,0x40,0x40,0x40,0x40,0x40,0x40,0x78,0x40,0x40,0x40,0x00 -+// 41161 ꃉ ; -+,0x00,0x00,0x00,0x07,0x04,0x06,0x04,0x04,0x05,0x05,0x05,0x05,0x04,0x07,0x04,0x00,0x00,0x00,0x00,0xa0,0x60,0x08,0xf0,0xe0,0x20,0x00,0x20,0x20,0xe0,0xf8,0x00,0x00 -+// 41162 ꃊ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x20,0x00,0x08,0x08,0x08,0x10,0x10,0x60,0xc0,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41163 ꃋ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x10,0x20,0xc0,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 41164 ꃌ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41165 ꃍ ; -+,0x00,0x00,0x01,0x01,0x03,0x02,0x02,0x06,0x00,0x04,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0xa0,0x20,0x30,0x10,0x18,0x18,0x08,0x08,0x08,0x08,0x88,0xd0,0x30,0x00 -+// 41166 ꃎ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x20,0xc0,0xe0,0x90,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 41167 ꃏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x40,0x60,0x50,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41168 ꃐ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00,0x00 -+// 41169 ꃑ ; -+,0x00,0x00,0x04,0x04,0x05,0x05,0x05,0x04,0x07,0x04,0x05,0x04,0x0d,0x04,0x04,0x00,0x00,0x00,0x30,0x90,0x50,0x40,0xc0,0x00,0xe0,0x80,0x40,0x40,0x40,0x00,0x00,0x00 -+// 41170 ꃒ ; -+,0x00,0x01,0x00,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x20,0x00,0x08,0x08,0xc8,0x28,0x18,0x20,0x20,0x20,0x20,0x20,0x28,0x10,0xe0 -+// 41171 ꃓ ; -+,0x00,0x08,0x0e,0x09,0x08,0x08,0x08,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x03,0x00,0x00,0x08,0x08,0x08,0xc8,0x28,0x18,0x20,0x20,0x20,0x20,0x20,0x28,0x10,0xe0,0x00 -+// 41172 ꃔ ; -+,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x01,0x01,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x1c,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xe0,0x00 -+// 41173 ꃕ ; -+,0x00,0x01,0x00,0x00,0x00,0x04,0x02,0x01,0x01,0x01,0x01,0x03,0x06,0x00,0x00,0x00,0x00,0x20,0x00,0x90,0x30,0x30,0x50,0x90,0x10,0x10,0x90,0x90,0x50,0x30,0x50,0x90 -+// 41174 ꃖ ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x03,0x01,0x01,0x01,0x03,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x90,0x70,0x70,0x90,0x10,0x10,0x10,0x10,0x90,0xf0,0x70,0xd0,0x10,0x00 -+// 41175 ꃗ ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x02,0x01,0x00,0x01,0x02,0x00,0x00,0x00,0x20,0xf0,0xf0,0x30,0x20,0x20,0x38,0x20,0x30,0xb0,0xf0,0xb0,0x20,0x00 -+// 41176 ꃘ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0xc0,0xb0,0x88,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41177 ꃙ ; -+,0x00,0x01,0x00,0x02,0x06,0x06,0x06,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0xe0,0x00,0x10,0x18,0x18,0x18,0x10,0x10,0x10,0x10,0x30,0x10,0x10,0x10,0x10 -+// 41178 ꃚ ; -+,0x00,0x00,0x02,0x06,0x06,0x06,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x18,0x18,0x18,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x00 -+// 41179 ꃛ ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x0e,0x09,0x08,0x09,0x0e,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x08,0xb0,0x60,0xb0,0x08,0x00,0x10,0x10,0x10,0x00 -+// 41180 ꃜ ; -+,0x00,0x01,0x00,0x00,0x00,0x06,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0xc0,0x20,0x00,0x08,0x78,0x10,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 41181 ꃝ ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x90,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41182 ꃞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x05,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x10,0x60,0xc8,0x10,0x60,0xc0,0x00,0x00,0x80,0x00,0x00,0x00 -+// 41183 ꃟ ; -+,0x00,0x01,0x00,0x00,0x03,0x03,0x03,0x03,0x00,0x00,0x00,0x0c,0x0e,0x09,0x08,0x08,0x00,0x60,0x00,0x48,0x48,0x40,0x50,0xe0,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x00 -+// 41184 ꃠ ; -+,0x00,0x00,0x02,0x03,0x03,0x03,0x02,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0x50,0xe0,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x00,0x00 -+// 41185 ꃡ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xe0,0x40,0x10,0x20,0x40,0x40,0x80,0x00,0x00,0x00 -+// 41186 ꃢ ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x02,0x01,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x48,0x08,0x08,0x10,0xa0,0x40,0x40,0x40,0x80,0x00,0x00,0x00,0x00 -+// 41187 ꃣ ; -+,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x0e,0x02,0x80,0x60,0x00,0x10,0x20,0x20,0x00,0x40,0xc0,0x40,0x40,0x40,0x20,0x20,0x10,0x00 -+// 41188 ꃤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x03,0x00,0x00,0x00,0x08,0x10,0x00,0x20,0x20,0xe0,0x20,0x20,0x20,0x00,0x10,0x08,0x00,0x00 -+// 41189 ꃥ ; -+,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0xe8,0x98,0xe0,0x90,0x90,0x80,0x90,0x90,0xe0,0x80,0x80,0x00 -+// 41190 ꃦ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x70,0x00,0x00,0x00,0x80,0x80,0x00 -+// 41191 ꃧ ; -+,0x00,0x01,0x00,0x04,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x00,0x07,0x00,0x00,0x07,0xc0,0x20,0x00,0x08,0x10,0xe0,0xc8,0xc8,0x20,0x18,0x08,0x00,0xf0,0x00,0x00,0xf8 -+// 41192 ꃨ ; -+,0x00,0x00,0x04,0x02,0x01,0x04,0x04,0x01,0x06,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x08,0x10,0xa0,0xc8,0xc8,0xa0,0x18,0x08,0x00,0xf0,0x00,0x00,0xf8,0x00 -+// 41193 ꃩ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x07,0x00,0x00,0x00,0xc0,0x80,0x80,0xe0,0x90,0x80,0x80,0x90,0x90,0xe0,0x80,0x80,0xf8,0x00 -+// 41194 ꃪ ; -+,0x00,0x00,0x01,0x02,0x04,0x07,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x60,0x10,0x08,0xf8,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x10,0xe0,0x00 -+// 41195 ꃫ ; -+,0x00,0x01,0x00,0x08,0x04,0x04,0x04,0x05,0x02,0x02,0x07,0x04,0x04,0x04,0x04,0x00,0x00,0x20,0x00,0x08,0x08,0x08,0x08,0xc0,0x30,0x10,0x30,0xc8,0x08,0x08,0x08,0x08 -+// 41196 ꃬ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x05,0x02,0x02,0x03,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xe0,0x10,0x10,0xe0,0x08,0x08,0x08,0x08,0x08,0x00 -+// 41197 ꃭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x03,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0xc0,0xa0,0x80,0x80,0x98,0xe8,0xc8,0xa8,0x98,0x80,0x80,0x80,0x80,0x00 -+// 41198 ꃮ ; -+,0x00,0x00,0x00,0x00,0x04,0x07,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x28,0x28,0xa8,0xe8,0x38,0x38,0x20,0x20,0x20,0x20,0xc0,0x00 -+// 41199 ꃯ ; -+,0x00,0x01,0x00,0x00,0x03,0x00,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0xe0,0x00,0x00,0x00,0x88,0x90,0xb0,0xa0,0x20,0x00,0x00,0x00,0x00,0xc0,0x40 -+// 41200 ꃰ ; -+,0x00,0x00,0x00,0x07,0x05,0x04,0x04,0x05,0x02,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x50,0x60,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 41201 ꃱ ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x08,0x08,0x04,0x03,0x04,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x10,0x90,0xf0,0xb0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41202 ꃲ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x20,0x80,0x70,0x18,0x08,0x08,0x08,0x30,0xe0,0x10,0x08,0x08,0x08,0x10,0xe0 -+// 41203 ꃳ ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x80,0x70,0x10,0x08,0x08,0x08,0x30,0xe0,0x10,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41204 ꃴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x06,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0xe0,0x60,0x60,0x00 -+// 41205 ꃵ ; -+,0x00,0x01,0x04,0x02,0x00,0x00,0x01,0x07,0x03,0x02,0x07,0x01,0x01,0x00,0x01,0x06,0x00,0x20,0x00,0x30,0xc0,0xc0,0x20,0x20,0x00,0x00,0x00,0x20,0x40,0xc0,0xe0,0x18 -+// 41206 ꃶ ; -+,0x00,0x04,0x03,0x00,0x00,0x01,0x03,0x03,0x02,0x07,0x01,0x01,0x00,0x01,0x06,0x00,0x00,0x00,0x30,0xc0,0xc0,0x20,0x20,0x00,0x00,0x20,0x20,0x40,0xc0,0x60,0x18,0x00 -+// 41207 ꃷ ; -+,0x00,0x00,0x00,0x03,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x10,0xf8,0x10,0x20,0x20,0xc0,0xc0,0xc0,0x20,0x10,0x18,0x08,0x00,0x00 -+// 41208 ꃸ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x02,0x02,0x02,0x07,0x01,0x00,0x00,0x20,0x00,0x10,0x10,0x10,0x30,0xf0,0x10,0x90,0x10,0x10,0x10,0x90,0x90,0x70 -+// 41209 ꃹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x07,0x02,0x00,0x02,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xe0,0x00,0x80,0x00,0x00,0x00,0x00,0x80,0x60,0x00 -+// 41210 ꃺ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x02,0x02,0x03,0x06,0x04,0x00,0x00,0x00,0x00,0xe0,0x90,0x80,0x88,0x88,0x90,0xe0,0x90,0x90,0xe0,0x90,0x88,0x08,0x00 -+// 41211 ꃻ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x08,0x08,0x08,0x10,0x60,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00 -+// 41212 ꃼ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00 -+// 41213 ꃽ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x01,0x06,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0xc0,0xa0,0x80,0x88,0x90,0xe0,0x80,0xe0,0x90,0x88,0x80,0x80,0x80,0x00 -+// 41214 ꃾ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x03,0x00,0x02,0x02,0x00,0x03,0x00,0x00,0x00,0x07,0xc0,0x20,0x00,0x08,0x08,0x08,0xf0,0xc0,0x10,0x10,0x00,0xf0,0xc0,0x00,0x00,0xf8 -+// 41215 ꃿ ; -+,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x02,0x02,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x08,0xf0,0xc0,0x10,0x10,0x00,0xf0,0xc0,0x00,0x00,0xf8,0x00 -+// 41216 ꄀ ; -+,0x00,0x00,0x00,0x0c,0x06,0x01,0x00,0x00,0x00,0x0c,0x0c,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0x88,0x88,0x88,0x30,0x30,0x88,0x88,0x88,0x90,0x80,0x00,0x00 -+// 41217 ꄁ ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0xe0,0x00,0x20,0xb8,0xa0,0xa0,0x20,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00 -+// 41218 ꄂ ; -+,0x00,0x00,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0xa8,0xa0,0xa0,0x20,0x20,0x20,0x20,0x20,0xe0,0x20,0x00,0x00,0x00 -+// 41219 ꄃ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x80,0xc0,0x40,0x88,0x88,0xc8,0x48,0x30,0x20,0xa0,0x20,0x20,0xc0,0x00 -+// 41220 ꄄ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x00,0x60,0x00,0x10,0x20,0x48,0x50,0xa0,0xa0,0xa0,0xa0,0x20,0x50,0x40,0x30,0x10 -+// 41221 ꄅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x00,0x00,0x00,0x18,0x20,0x68,0x50,0xd0,0xc0,0x60,0x40,0x50,0x58,0x20,0x30,0x18,0x00 -+// 41222 ꄆ ; -+,0x00,0x00,0x02,0x00,0x01,0x05,0x06,0x05,0x04,0x04,0x04,0x01,0x01,0x02,0x02,0x00,0x00,0x00,0x10,0x20,0x20,0x20,0xc8,0xc8,0xc8,0xf8,0x48,0x20,0x20,0x00,0x10,0x00 -+// 41223 ꄇ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0xf8,0x00,0x10,0x50,0x50,0x50,0x80,0x00 -+// 41224 ꄈ ; -+,0x00,0x01,0x00,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x00,0x20,0x08,0x08,0x18,0x18,0x28,0x68,0xc8,0xc8,0xc8,0x28,0x28,0x18,0x18,0x08 -+// 41225 ꄉ ; -+,0x00,0x00,0x04,0x04,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x08,0x18,0x18,0x28,0x68,0xc8,0xc8,0xc8,0x28,0x28,0x18,0x18,0x08,0x00 -+// 41226 ꄊ ; -+,0x00,0x00,0x02,0x02,0x01,0x01,0x03,0x00,0x00,0x00,0x05,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x18,0x18,0x30,0x20,0xc0,0xc0,0xc0,0xc0,0x20,0x30,0x10,0x18,0x18,0x00 -+// 41227 ꄋ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x05,0x00,0x00,0x03,0x00,0x00,0x00,0xe0,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x00,0x00,0xf0,0x10 -+// 41228 ꄌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x0b,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x10,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0xd0,0x10,0x10,0xd0,0x30,0x00 -+// 41229 ꄍ ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x01,0x00,0x80,0x80,0xc0,0xb0,0x98,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x30,0xc0 -+// 41230 ꄎ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x00,0x20,0x40,0x70,0x48,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x00 -+// 41231 ꄏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00 -+// 41232 ꄐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0xc0,0x90,0x80,0x80,0x80,0x80,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41233 ꄑ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x06,0x01,0x00,0x01,0x06,0x04,0x00,0x01,0x00,0x00,0xe0,0x00,0x40,0x60,0x10,0xc8,0xd8,0xe0,0xc0,0x60,0xd8,0xc8,0x00,0x80,0x00 -+// 41234 ꄒ ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x02,0x01,0x00,0x03,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x30,0x00,0xf8,0x10,0xe0,0xc0,0x60,0xf8,0x00,0x00,0x00,0x80,0x00 -+// 41235 ꄓ ; -+,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0xc8,0x98,0x88,0x80,0xe0,0x90,0x90,0x88,0x88,0x88,0x80,0x00 -+// 41236 ꄔ ; -+,0x00,0x00,0x04,0x08,0x00,0x04,0x03,0x04,0x00,0x08,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x68,0x88,0x88,0x88,0x68,0x08,0x08,0x08,0x08,0xe8,0x38,0x00 -+// 41237 ꄕ ; -+,0x00,0x01,0x02,0x05,0x00,0x04,0x03,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x90,0xa0,0xc0,0x80,0xc0,0x80,0x80,0x80,0xf0,0x80,0x80,0x90,0x70 -+// 41238 ꄖ ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xa0,0xe0,0xc0,0x80,0xf0,0x80,0x80,0xf0,0x80,0x80,0x90,0x70,0x00 -+// 41239 ꄗ ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x08,0x08,0x00,0x30,0xc0,0x80,0xc0,0x80,0x80,0x80,0x78,0x00 -+// 41240 ꄘ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xc0,0xb0,0x88,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0x80,0x80 -+// 41241 ꄙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xa0,0x90,0x80,0x80,0x80,0xf0,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41242 ꄚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0xf0,0x88,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41243 ꄛ ; -+,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0xc0,0x40 -+// 41244 ꄜ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x40,0xf0,0x40,0x40,0x40,0xf0,0x40,0x40,0x40,0x40,0xc0,0x40,0x00 -+// 41245 ꄝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xd0,0xb0,0x80,0x80,0x80,0xf0,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41246 ꄞ ; -+,0x00,0x01,0x00,0x02,0x01,0x01,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0xe0,0x00,0x60,0x50,0x40,0x40,0x40,0x40,0xf0,0x40,0x40,0x40,0x40,0xc0,0xc0 -+// 41247 ꄟ ; -+,0x00,0x00,0x01,0x01,0x05,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x40,0x60,0x50,0x40,0x40,0x40,0x40,0xf0,0x40,0x40,0x40,0x40,0xc0,0x40,0x00 -+// 41248 ꄠ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x10,0x50,0x90,0x10,0x50,0x50,0x30,0x10,0x10,0xd0,0x30,0x00 -+// 41249 ꄡ ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0xf8,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x08,0xf8,0x00 -+// 41250 ꄢ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x00,0xa0,0x00,0x10,0x10,0x10,0x00,0xf0,0x08,0x08,0x08,0xf0,0x00,0x10,0x10,0x10 -+// 41251 ꄣ ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0xf0,0x08,0x08,0x08,0xe0,0x00,0x10,0x10,0x10,0x00 -+// 41252 ꄤ ; -+,0x00,0x00,0x03,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0xf8,0x08,0x08,0xe8,0x08,0x08,0xe8,0x08,0x08,0xe8,0x08,0x08,0xf8,0x00 -+// 41253 ꄥ ; -+,0x00,0x00,0x06,0x02,0x01,0x01,0x00,0x02,0x04,0x02,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x00,0x20,0x20,0x00,0x10,0x18,0x10,0x20,0x20,0x20,0x10,0x18,0x00 -+// 41254 ꄦ ; -+,0x00,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x03,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0xe0,0x00,0x08,0xf8,0x08,0x18,0x08,0x08,0xf8,0x08,0x08,0xc8,0x38,0x00,0x00 -+// 41255 ꄧ ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xf0,0x00,0xf0,0x10,0x00,0xf0,0x00,0x00,0x80,0x70,0x00,0x00,0x00 -+// 41256 ꄨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x00,0x00,0x00,0x08,0x38,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 41257 ꄩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x80,0xc0,0xa0,0x80,0x80,0xc0,0xb0,0x80,0xc0,0xe0,0x90,0x80,0x80,0x80,0x00 -+// 41258 ꄪ ; -+,0x00,0x01,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x20,0x40,0x60,0x50,0x40,0x40,0x70,0x48,0x60,0x70,0x48,0x40,0xc0,0x00,0x00 -+// 41259 ꄫ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0x70,0x58,0x40,0x70,0x48,0x40,0xc0,0x00,0x00,0x00 -+// 41260 ꄬ ; -+,0x00,0x01,0x04,0x04,0x04,0x06,0x02,0x04,0x04,0x04,0x03,0x04,0x04,0x04,0x07,0x00,0x00,0x20,0x18,0x08,0x08,0x18,0x30,0x08,0x08,0x08,0x30,0x08,0x08,0x08,0x30,0x00 -+// 41261 ꄭ ; -+,0x00,0x01,0x00,0x00,0x02,0x01,0x01,0x03,0x00,0x01,0x03,0x00,0x00,0x01,0x00,0x00,0xc0,0x20,0x00,0x10,0x50,0x90,0x90,0xd0,0x30,0x10,0xd0,0x10,0x10,0x10,0xd0,0x30 -+// 41262 ꄮ ; -+,0x00,0x00,0x01,0x05,0x03,0x01,0x03,0x05,0x01,0x07,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x90,0x90,0x90,0x50,0x10,0xd0,0x10,0x10,0x10,0xd0,0x30,0x00 -+// 41263 ꄯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0xc0,0xb0,0x80,0xc0,0xb0,0x80,0x80,0xc0,0xa0,0x90,0x90,0x88,0x88,0x00 -+// 41264 ꄰ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x88,0x50,0x30,0x20,0x20,0x20,0x60,0x20,0x20,0x20,0x50,0x50,0x80,0x00 -+// 41265 ꄱ ; -+,0x00,0x01,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0xe0,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xe0 -+// 41266 ꄲ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x20,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41267 ꄳ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0x08,0x30,0x40,0x00,0x80,0xd0,0x10,0x10,0x00,0x00,0x00 -+// 41268 ꄴ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x03,0x00,0x80,0x20,0x00,0x40,0x30,0x00,0x00,0x28,0x28,0x78,0x28,0x28,0x00,0x00,0x80,0x80 -+// 41269 ꄵ ; -+,0x00,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0x00,0x28,0x28,0x78,0x28,0x28,0x00,0x00,0x80,0x80,0x00 -+// 41270 ꄶ ; -+,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0xe8,0x98,0x88,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41271 ꄷ ; -+,0x00,0x01,0x00,0x02,0x01,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x40,0x30,0x00,0x60,0x50,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x40 -+// 41272 ꄸ ; -+,0x00,0x00,0x02,0x01,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x40,0x00 -+// 41273 ꄹ ; -+,0x00,0x00,0x00,0x06,0x07,0x04,0x04,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x88,0xc8,0xe8,0x18,0x08,0x00,0xf0,0xc0,0x00,0x00,0xf0,0x00 -+// 41274 ꄺ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x07,0x04,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x20,0x00,0x00,0x08,0x08,0xf8,0x08,0x08,0x00,0x00,0xf0,0x80,0x00,0x00,0xf0 -+// 41275 ꄻ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0xc8,0x08,0x00,0x00,0xc0,0xc0,0x00,0x00,0xf0,0x00 -+// 41276 ꄼ ; -+,0x00,0x00,0x00,0x04,0x07,0x04,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0xf8,0x08,0x00,0x80,0xe0,0x10,0x10,0x08,0x08,0x08,0x00,0x00 -+// 41277 ꄽ ; -+,0x00,0x07,0x00,0x00,0x01,0x06,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0xf8,0x80,0x80,0xe0,0x98,0x88,0x88,0x88,0x88,0x88,0xf0,0xc0,0x80,0xc0,0x80 -+// 41278 ꄾ ; -+,0x00,0x01,0x00,0x03,0x00,0x04,0x02,0x01,0x00,0x02,0x04,0x00,0x03,0x00,0x00,0x03,0xc0,0x20,0x00,0xf0,0x80,0x88,0x98,0xc8,0xc8,0xb8,0x88,0x80,0xf0,0x80,0x80,0xf0 -+// 41279 ꄿ ; -+,0x00,0x00,0x03,0x00,0x04,0x03,0x00,0x01,0x06,0x00,0x00,0x03,0x00,0x00,0x07,0x00,0x00,0x00,0xf0,0x00,0x08,0xf8,0xc8,0xe8,0x18,0x08,0x00,0xf0,0x00,0x00,0xf0,0x00 -+// 41280 ꅀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x03,0x00,0x00,0x07,0x00,0x00,0x00,0x80,0x80,0xc0,0x80,0x88,0x88,0xc8,0xb8,0x88,0xf0,0x80,0x80,0xf0,0x00 -+// 41281 ꅁ ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x20,0x00,0xf8,0x80,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x08,0x10,0x30,0x80 -+// 41282 ꅂ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x03,0x00,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0xc0,0x70,0x00,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41283 ꅃ ; -+,0x00,0x00,0x00,0x00,0x07,0x04,0x02,0x01,0x01,0x00,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0xc0,0x80,0xf8,0x08,0x10,0x20,0x40,0xc0,0xc0,0x20,0x20,0x10,0x08,0x00 -+// 41284 ꅄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x60,0x30,0x00,0x00,0x00,0x00,0x08,0x08,0xf0,0x80,0x00,0x00,0x00,0x00 -+// 41285 ꅅ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x08,0x08,0xc8,0xc8,0x08,0x08,0x08,0x18,0xe0,0x00,0x00,0x88,0x88 -+// 41286 ꅆ ; -+,0x00,0x00,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0xf8,0x08,0x08,0x08,0x18,0xf0,0x00,0x00,0x08,0x08,0x00 -+// 41287 ꅇ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0xe0,0x90,0x80,0xf0,0x80,0x80,0x88,0x10,0x30,0x80,0x00,0x80,0x80,0x00 -+// 41288 ꅈ ; -+,0x00,0x01,0x04,0x03,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x00,0x01,0x00,0x01,0x06,0x00,0x20,0x00,0x30,0xc0,0xc0,0x20,0x10,0x10,0x10,0x10,0x20,0x20,0xc0,0xe0,0x18 -+// 41289 ꅉ ; -+,0x00,0x00,0x06,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x06,0x00,0x00,0x00,0x30,0xc0,0xc0,0x20,0x20,0x90,0x90,0x90,0x20,0x20,0xc0,0xc0,0x38,0x00 -+// 41290 ꅊ ; -+,0x00,0x00,0x00,0x01,0x05,0x02,0x00,0x01,0x02,0x04,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x30,0xf8,0x28,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x00 -+// 41291 ꅋ ; -+,0x00,0x00,0x06,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x07,0x00,0x00,0x00,0x30,0x10,0x20,0x20,0x44,0xc4,0xfc,0xc4,0x44,0x20,0x20,0x10,0xf0,0x00 -+// 41292 ꅌ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x20,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41293 ꅍ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xe0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41294 ꅎ ; -+,0x00,0x00,0x03,0x04,0x08,0x08,0x04,0x06,0x03,0x06,0x00,0x08,0x08,0x04,0x03,0x00,0x00,0x40,0xc0,0x40,0x48,0x48,0x48,0x48,0xf8,0x48,0x48,0x48,0x40,0x40,0xc0,0x00 -+// 41295 ꅏ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0xe0,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x90,0xe0 -+// 41296 ꅐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x90,0xc0,0x00 -+// 41297 ꅑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x68,0x18,0x00,0x10,0x10,0x10,0x10,0x00 -+// 41298 ꅒ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x02,0x02,0x03,0x02,0x00,0x00,0x00,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x50,0x10 -+// 41299 ꅓ ; -+,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x50,0x30,0x00 -+// 41300 ꅔ ; -+,0x00,0x00,0x01,0x02,0x02,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0xc0,0x20,0x10,0x10,0x90,0x80,0x88,0x08,0x08,0x88,0x88,0x90,0x70,0x00 -+// 41301 ꅕ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0xa0,0x00,0x40,0x20,0x00,0x00,0xd0,0x50,0x10,0xd0,0x08,0x00,0x00,0x80,0x00 -+// 41302 ꅖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0xd0,0xd0,0x10,0xd0,0x10,0x00,0x00,0x80,0x80,0x00 -+// 41303 ꅗ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xb0,0xb8,0xe0,0xa0,0xa0,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00,0x00 -+// 41304 ꅘ ; -+,0x00,0x01,0x00,0x05,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0xe0,0x00,0xb0,0xb8,0xa0,0x20,0x20,0xf8,0x20,0x20,0x20,0xe0,0x00,0x00,0x00 -+// 41305 ꅙ ; -+,0x00,0x00,0x07,0x04,0x00,0x05,0x00,0x03,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0xb8,0xa0,0x20,0x20,0xf8,0x20,0x20,0x20,0xe0,0x00,0x00,0x00,0x00 -+// 41306 ꅚ ; -+,0x00,0x00,0x00,0x07,0x05,0x05,0x05,0x05,0x02,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x28,0xa8,0xa8,0xa8,0xa8,0x70,0x60,0x20,0x20,0x00,0x80,0x80,0x00 -+// 41307 ꅛ ; -+,0x00,0x00,0x00,0x01,0x06,0x07,0x04,0x06,0x01,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x40,0xf8,0x40,0xf8,0x40,0x40,0xf8,0x40,0xc0,0x40,0x00,0x00,0x00,0x00 -+// 41308 ꅜ ; -+,0x00,0x01,0x00,0x02,0x05,0x05,0x05,0x05,0x00,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x10,0x50,0x50,0x50,0xd0,0x10,0x10,0x10,0xd0,0x30,0x00,0x00,0x00 -+// 41309 ꅝ ; -+,0x00,0x00,0x02,0x02,0x03,0x03,0x02,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0xd0,0x10,0x10,0xd0,0x10,0x10,0x10,0xf0,0x10,0x00,0x00,0x00,0x00 -+// 41310 ꅞ ; -+,0x00,0x00,0x02,0x01,0x05,0x04,0x04,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x50,0x10,0x10,0x90,0x10,0x10,0xd0,0x30,0x00,0x00,0x00,0x00 -+// 41311 ꅟ ; -+,0x00,0x01,0x00,0x07,0x05,0x05,0x05,0x02,0x01,0x02,0x04,0x08,0x00,0x04,0x03,0x00,0x00,0x20,0x00,0x30,0x38,0x20,0x20,0x20,0xe0,0x20,0x20,0x20,0x20,0x20,0x20,0xe0 -+// 41312 ꅠ ; -+,0x00,0x00,0x03,0x05,0x05,0x05,0x00,0x01,0x02,0x04,0x00,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x10,0x08,0x20,0x20,0x20,0xe0,0x20,0x20,0x20,0x20,0x20,0xa0,0xe0,0x00 -+// 41313 ꅡ ; -+,0x00,0x00,0x01,0x06,0x06,0x07,0x02,0x03,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x60,0xd0,0xc0,0x40,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0xc0,0x40,0x00 -+// 41314 ꅢ ; -+,0x00,0x00,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x04,0x00,0x00,0x00,0x18,0x10,0x30,0x20,0x40,0xc0,0xf8,0xc0,0x40,0x20,0x20,0x10,0x10,0x00 -+// 41315 ꅣ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x03,0x00,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x60,0xc0,0x00,0x00,0x08,0x10,0xe0 -+// 41316 ꅤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x90,0x90,0x90,0x90,0x90,0x90,0xb0,0xe0,0x80,0x80,0x88,0x90,0xe0,0x00 -+// 41317 ꅥ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0xc0,0x10,0x08,0x08,0x08,0xf0,0xc0,0x80,0xf8,0x80,0x80,0xf8,0x80,0x80,0x00 -+// 41318 ꅦ ; -+,0x00,0x01,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x80,0x20,0x80,0x30,0x08,0x08,0x08,0x30,0xc0,0x00,0x90,0x90,0x90,0x80,0x00,0x00 -+// 41319 ꅧ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0xc0,0x30,0x08,0x08,0x08,0x30,0xc0,0x80,0x80,0x90,0x90,0x90,0x80,0x80,0x00 -+// 41320 ꅨ ; -+,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x10,0x08,0x00,0x00,0xf8,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00 -+// 41321 ꅩ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x80,0xc0,0xb0,0x88,0x80,0x80,0xf8,0x80,0x80,0x80,0xc0,0x80,0x80,0x80 -+// 41322 ꅪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xe0,0x90,0x88,0x80,0x80,0xf8,0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0x00 -+// 41323 ꅫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x03,0x06,0x04,0x00,0x08,0x00,0x00,0xc0,0xe0,0x90,0x80,0x88,0x88,0x90,0xe0,0x80,0xe0,0x90,0x88,0x88,0x88,0x00 -+// 41324 ꅬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x08,0x08,0x00,0x00,0xc0,0xe0,0x98,0x80,0x80,0xc0,0xc0,0x80,0xc0,0x30,0x10,0x88,0x88,0x88,0x00 -+// 41325 ꅭ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0xc0,0x20,0x00,0x48,0x48,0x48,0x50,0xe0,0xc0,0x40,0x40,0x40,0xe0,0xe0,0xc0,0x00 -+// 41326 ꅮ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x0c,0x08,0x08,0x10,0xf0,0xc0,0x00,0x00,0x00,0x80,0xe0,0x20,0xc0,0x00 -+// 41327 ꅯ ; -+,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x02,0x0a,0x06,0x00,0x00,0x07,0x06,0x04,0x04,0x00,0x00,0x30,0x38,0x2c,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0xe0,0x00,0x00,0x00 -+// 41328 ꅰ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x0f,0x01,0x01,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x00,0x00,0xd0,0x10,0x10,0xd0,0x00,0x00,0x00,0x00,0x00 -+// 41329 ꅱ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x70,0x90,0xe0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41330 ꅲ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x70,0x90,0xe0,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41331 ꅳ ; -+,0x00,0x00,0x03,0x01,0x00,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x30,0x20,0xc0,0xc0,0x20,0x30,0x50,0x68,0x00,0x00,0x00,0x00,0x80,0x80 -+// 41332 ꅴ ; -+,0x00,0x01,0x00,0x01,0x00,0x02,0x06,0x06,0x07,0x06,0x06,0x06,0x02,0x02,0x01,0x00,0x00,0x20,0x00,0xe0,0x00,0x10,0x10,0x18,0x98,0xd8,0x38,0x18,0x10,0x00,0x20,0xc0 -+// 41333 ꅵ ; -+,0x00,0x00,0x01,0x00,0x02,0x06,0x06,0x07,0x06,0x06,0x06,0x02,0x02,0x01,0x01,0x00,0x00,0x80,0xe0,0x00,0x00,0x08,0x08,0x88,0xe8,0x38,0x18,0x00,0x00,0x20,0xc0,0x00 -+// 41334 ꅶ ; -+,0x00,0x00,0x06,0x04,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xd0,0xf8,0xc0,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0xe0,0x00,0x00,0x00 -+// 41335 ꅷ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x00,0x00,0x01,0x01,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x20,0x00,0xb0,0xa8,0xa0,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00,0x00 -+// 41336 ꅸ ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xb0,0xa8,0xa0,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00 -+// 41337 ꅹ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x80,0x80,0xf0,0xc0,0x00,0xc0,0xf0,0x40,0x00,0x00,0x80 -+// 41338 ꅺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x80,0x00,0xe0,0x40,0x00,0xc0,0xf8,0x40,0x00,0x00,0x80,0x00 -+// 41339 ꅻ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x02,0x00,0x01,0x00,0x02,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x48,0x10,0x10,0x10,0x80,0x00,0xe0,0x00,0x40,0x10,0x10,0x90,0x88,0x00 -+// 41340 ꅼ ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x40,0xb0,0xb8,0xa0,0x20,0xe0,0xa0,0xa0,0xe0,0x20,0x20,0xe0,0x00,0x00,0x00 -+// 41341 ꅽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x09,0x0a,0x02,0x04,0x06,0x0a,0x09,0x08,0x00,0x00,0x00,0x30,0x28,0x20,0x28,0xe8,0xa8,0x28,0x20,0x20,0x28,0x28,0xa8,0xe8,0x00 -+// 41342 ꅾ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0xe0,0x00,0x40,0xc0,0xc0,0xc0,0xc0,0x40,0x70,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41343 ꅿ ; -+,0x00,0x00,0x00,0x05,0x05,0x05,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x90,0x90,0xd0,0xf0,0x90,0x10,0x10,0x10,0x90,0x10,0x00 -+// 41344 ꆀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x04,0x09,0x0b,0x0c,0x04,0x03,0x00,0x00,0x00,0x40,0x70,0x48,0x40,0x40,0xd0,0x60,0x40,0xc0,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41345 ꆁ ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x01,0x03,0x03,0x03,0x03,0x03,0x07,0x00,0x00,0x00,0x80,0x20,0x00,0x90,0x88,0x08,0x08,0x08,0xc8,0x38,0x08,0x08,0x08,0x08,0x88,0xf0 -+// 41346 ꆂ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x07,0x07,0x05,0x05,0x05,0x0d,0x05,0x01,0x00,0x00,0x00,0x00,0xb0,0x10,0x00,0x00,0x00,0x80,0x70,0x10,0x00,0x00,0x10,0x10,0xe0,0x00 -+// 41347 ꆃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0xc0,0xa0,0x80,0x80,0xf8,0xb0,0xe8,0xc8,0x90,0xb0,0x80,0x80,0x80,0x00 -+// 41348 ꆄ ; -+,0x00,0x01,0x00,0x00,0x02,0x03,0x02,0x02,0x06,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x20,0x00,0x30,0x38,0xa0,0x60,0x38,0x20,0x20,0x30,0xa0,0x60,0x00,0x00,0x00 -+// 41349 ꆅ ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x06,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x30,0x30,0xa0,0x60,0x20,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00,0x00 -+// 41350 ꆆ ; -+,0x00,0x00,0x00,0x00,0x00,0x05,0x04,0x04,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x40,0x60,0x50,0x40,0xf0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x00,0x00 -+// 41351 ꆇ ; -+,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x20,0x40,0x60,0xd8,0x40,0xc0,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0 -+// 41352 ꆈ ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0xe0,0xd8,0xc0,0xc0,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0xc0,0x00 -+// 41353 ꆉ ; -+,0x00,0x00,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x04,0x04,0x00,0x00,0x00,0x90,0x88,0x08,0x00,0x00,0x20,0x20,0x00,0x00,0x08,0x08,0x88,0xf0,0x00 -+// 41354 ꆊ ; -+,0x00,0x00,0x02,0x04,0x04,0x07,0x04,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x40,0x08,0x28,0xf8,0x28,0x28,0x28,0x28,0xf8,0x28,0x28,0x48,0xc0,0x00 -+// 41355 ꆋ ; -+,0x00,0x01,0x00,0x03,0x05,0x01,0x07,0x01,0x05,0x07,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x20,0x00,0x90,0x58,0x00,0xc0,0x00,0x40,0x80,0x00,0x00,0xe0,0x00,0x00,0x00 -+// 41356 ꆌ ; -+,0x00,0x00,0x03,0x05,0x01,0x07,0x01,0x04,0x03,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x90,0x38,0x00,0xe0,0x00,0x60,0x80,0x00,0x00,0xe0,0x00,0x00,0x00,0x00 -+// 41357 ꆍ ; -+,0x00,0x00,0x04,0x04,0x03,0x00,0x04,0x02,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x50,0x58,0x90,0x10,0x50,0xd0,0x90,0x10,0x90,0x70,0x00,0x00,0x00,0x00 -+// 41358 ꆎ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x20,0x00,0x20,0x18,0x00,0x00,0xc0,0x40,0x00,0x00,0xc0,0x40,0x00,0xc0,0x40 -+// 41359 ꆏ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0xc0,0x40,0x40,0x40,0xc0,0x40,0x40,0x40,0xc0,0x00 -+// 41360 ꆐ ; -+,0x00,0x00,0x00,0x02,0x01,0x00,0x03,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x60,0x50,0xc0,0x40,0x40,0xc0,0x40,0x40,0xc0,0x40,0x00,0x00,0x00,0x00 -+// 41361 ꆑ ; -+,0x00,0x00,0x00,0x00,0x00,0x05,0x05,0x05,0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x70,0x48,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x40,0x00 -+// 41362 ꆒ ; -+,0x00,0x01,0x00,0x04,0x07,0x00,0x04,0x05,0x00,0x00,0x04,0x03,0x00,0x00,0x01,0x00,0x00,0x20,0x00,0xa0,0x18,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0xc0,0x40 -+// 41363 ꆓ ; -+,0x00,0x00,0x04,0x07,0x00,0x04,0x07,0x00,0x04,0x05,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xa0,0x18,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0xc0,0x40,0x00 -+// 41364 ꆔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x20,0x38,0xa0,0xa0,0xa0,0xa0,0xa0,0x20,0x20,0x20,0x20,0xa0,0x60,0x00 -+// 41365 ꆕ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x20,0x00,0x20,0x18,0x00,0x00,0x00,0x20,0x30,0x10,0x10,0x10,0x00,0xc0,0x40 -+// 41366 ꆖ ; -+,0x00,0x00,0x00,0x00,0x05,0x05,0x05,0x00,0x0f,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x70,0x40,0x40,0x40,0x40,0x60,0x60,0x50,0x40,0x40,0xc0,0x00,0x00 -+// 41367 ꆗ ; -+,0x00,0x00,0x02,0x02,0x01,0x04,0x06,0x01,0x00,0x00,0x01,0x02,0x00,0x04,0x04,0x00,0x00,0x00,0x10,0x20,0xc0,0x80,0x88,0x88,0xc8,0xb8,0xc8,0xa0,0x90,0x90,0x90,0x00 -+// 41368 ꆘ ; -+,0x00,0x01,0x00,0x02,0x01,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x01,0x02,0x00,0x04,0x00,0x20,0x00,0x10,0x20,0xc8,0xf8,0x00,0x00,0x80,0xf8,0xc0,0xe0,0x10,0x10,0x00 -+// 41369 ꆙ ; -+,0x00,0x00,0x02,0x03,0x01,0x01,0x06,0x04,0x04,0x03,0x00,0x03,0x02,0x00,0x04,0x00,0x00,0x00,0x10,0x20,0xc8,0xf8,0x80,0x80,0x80,0xf8,0xc0,0xe0,0x90,0x90,0x00,0x00 -+// 41370 ꆚ ; -+,0x00,0x00,0x07,0x06,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x04,0x03,0x00,0x00,0x00,0x68,0x18,0x18,0xe8,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x18,0xf0,0x00 -+// 41371 ꆛ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x05,0x06,0x05,0x04,0x04,0x01,0x02,0x02,0x00,0x00,0x00,0xe0,0x00,0xe0,0x20,0x20,0xe0,0xc8,0xc8,0xe8,0x38,0xe8,0x10,0x10,0x10,0x00 -+// 41372 ꆜ ; -+,0x00,0x00,0x01,0x01,0x01,0x05,0x06,0x05,0x04,0x04,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x20,0x20,0x20,0xe0,0x88,0xc8,0xe8,0xb8,0xe8,0xb0,0x90,0x90,0x90,0x00 -+// 41373 ꆝ ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x28,0xc8,0x08,0xc8,0x98,0x80,0x80,0xc0,0xa0,0x90,0x90,0x90,0x80,0x00 -+// 41374 ꆞ ; -+,0x00,0x00,0x02,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x01,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0xc0,0x40,0x08,0x88,0x48,0x68,0x28,0x38,0x08,0x00,0x40,0x40,0x80,0x00 -+// 41375 ꆟ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x28,0xe8,0x20,0x20,0x28,0x28,0x20,0x20,0xe8,0x68,0x20,0x20 -+// 41376 ꆠ ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x0c,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x40,0x40,0x00,0x00 -+// 41377 ꆡ ; -+,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0xe0,0x30,0x10,0x54,0x50,0x58,0x30,0x10,0x10,0xa0,0x40,0x00,0x00,0x00 -+// 41378 ꆢ ; -+,0x00,0x01,0x04,0x03,0x00,0x01,0x01,0x02,0x02,0x07,0x02,0x02,0x01,0x01,0x01,0x06,0xc0,0x20,0x08,0x60,0xc0,0x40,0x20,0x10,0x10,0xf8,0x10,0x00,0x20,0xc0,0xc0,0x38 -+// 41379 ꆣ ; -+,0x00,0x04,0x03,0x00,0x01,0x01,0x02,0x02,0x07,0x02,0x02,0x01,0x00,0x01,0x06,0x00,0x00,0x00,0x70,0xc0,0xc0,0x20,0x00,0x10,0xf0,0x10,0x20,0x60,0xc0,0xe0,0x18,0x00 -+// 41380 ꆤ ; -+,0x00,0x00,0x07,0x06,0x06,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x68,0x18,0x18,0x18,0x68,0x08,0x08,0x08,0x88,0x88,0x18,0x10,0xe0,0x00 -+// 41381 ꆥ ; -+,0x00,0x02,0x00,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x0b,0x06,0x02,0x80,0x20,0x00,0x48,0x48,0x48,0x48,0xf8,0x40,0x48,0x48,0x48,0x48,0xf0,0x40,0x40 -+// 41382 ꆦ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0b,0x06,0x02,0x00,0x00,0x00,0x00,0x48,0x48,0x48,0xd0,0xc0,0x48,0x48,0x48,0xd8,0xf0,0x40,0x40,0x00 -+// 41383 ꆧ ; -+,0x00,0x00,0x07,0x06,0x04,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0xc0,0x38,0x18,0x08,0x18,0xe8,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41384 ꆨ ; -+,0x00,0x01,0x00,0x03,0x02,0x04,0x04,0x07,0x04,0x04,0x04,0x07,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x20,0x10,0x08,0x08,0x88,0x78,0x38,0xc8,0x08,0x08,0x10,0x10,0xe0 -+// 41385 ꆩ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x07,0x04,0x04,0x04,0x07,0x04,0x04,0x02,0x01,0x00,0x00,0x80,0x20,0x10,0x08,0x08,0x88,0x78,0x18,0xc8,0x08,0x08,0x18,0x10,0xe0,0x00 -+// 41386 ꆪ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x80,0x20,0x10,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41387 ꆫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0xe0,0x18,0x00,0x00,0xf8,0x80,0x80,0xf8,0x00,0x00,0x80,0x80,0x00,0x00 -+// 41388 ꆬ ; -+,0x00,0x01,0x00,0x02,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x02,0x04,0x04,0x06,0x00,0xc0,0x20,0x18,0x60,0x80,0x80,0x80,0x80,0x60,0x38,0x40,0x80,0x80,0x80,0xc0,0x78 -+// 41389 ꆭ ; -+,0x00,0x00,0x02,0x04,0x04,0x05,0x06,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x70,0x80,0x80,0x80,0x80,0x60,0x30,0x40,0x80,0x80,0x80,0xc0,0x70,0x00 -+// 41390 ꆮ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x04,0x04,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0x08,0xf0,0xc0,0x80,0x80,0x30,0x00,0x80,0x80,0x78,0x00 -+// 41391 ꆯ ; -+,0x00,0x01,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x06,0x06,0x06,0x05,0x00,0x20,0x00,0x20,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x18,0x18,0x18,0xe8 -+// 41392 ꆰ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x06,0x06,0x06,0x05,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x18,0x18,0x18,0xe8,0x00 -+// 41393 ꆱ ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xf0,0x40,0x40,0xc0,0x00,0x80,0x40,0x20,0x20,0x20,0x00 -+// 41394 ꆲ ; -+,0x00,0x01,0x00,0x04,0x04,0x02,0x02,0x01,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x40,0x10,0x00,0x44,0x44,0x48,0x48,0x50,0xe0,0x40,0xc0,0xc0,0x40,0x40,0x40,0x40 -+// 41395 ꆳ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x01,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0x48,0x48,0x48,0x50,0xe0,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x00 -+// 41396 ꆴ ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x00,0x00,0x00,0x90,0x10,0x10,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x00 -+// 41397 ꆵ ; -+,0x00,0x01,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0xc0,0x20,0x00,0xb0,0xa8,0xa0,0xe0,0xa0,0xa0,0x20,0x20,0x20,0xa0,0x60,0x00,0x00 -+// 41398 ꆶ ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x90,0x98,0x80,0xe0,0xa0,0x80,0x00,0x00,0x00,0xa0,0x60,0x00,0x00,0x00 -+// 41399 ꆷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0xb0,0x80,0xa8,0xa8,0xa8,0xe8,0xb8,0xa8,0x80,0x80,0x80,0x00 -+// 41400 ꆸ ; -+,0x00,0x02,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x02,0x01,0x00,0x80,0x40,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x60 -+// 41401 ꆹ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x60,0x00 -+// 41402 ꆺ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0xc0,0xf0,0x98,0x88,0x88,0x88,0x88,0xf8,0x88,0x88,0x88,0x88,0x90,0xe0,0x00 -+// 41403 ꆻ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x00,0x00,0x00,0xd0,0x30,0x00 -+// 41404 ꆼ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x03,0x03,0x02,0x80,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x90,0x90,0x90,0x90,0x40 -+// 41405 ꆽ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x03,0x00,0x00,0x03,0x03,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x90,0x90,0x90,0x10,0xe0,0x00 -+// 41406 ꆾ ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x04,0x06,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0xd0,0x50,0x10,0x30,0x10,0x50,0xd0,0x90,0x10,0x10,0xd0,0x30,0x00 -+// 41407 ꆿ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x28,0x28,0x20,0x20,0x20,0x28,0xe8,0x20,0x20,0x20,0x28,0x28,0x28,0x00 -+// 41408 ꇀ ; -+,0x00,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x30,0x00 -+// 41409 ꇁ ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x30,0x10,0x00 -+// 41410 ꇂ ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x02,0x02,0x04,0x04,0x02,0x02,0x03,0x02,0x02,0x00,0x00,0x00,0x30,0x28,0x20,0xf8,0x20,0x20,0x20,0x60,0x20,0x20,0xe0,0x20,0x00,0x00 -+// 41411 ꇃ ; -+,0x00,0x00,0x04,0x04,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0xa8,0xa8,0x08,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x30,0xc0,0x00 -+// 41412 ꇄ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x04,0x04,0x06,0x03,0xc0,0x20,0x00,0x60,0x10,0x08,0xc0,0xf0,0x10,0x10,0x10,0xe0,0xc8,0x08,0x10,0xe0 -+// 41413 ꇅ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x02,0x02,0x01,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0xe0,0x90,0x88,0xc0,0xb0,0x90,0x90,0x90,0xe0,0x88,0x88,0x90,0xe0,0x00 -+// 41414 ꇆ ; -+,0x00,0x00,0x04,0x04,0x04,0x05,0x06,0x06,0x04,0x04,0x07,0x06,0x06,0x05,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0xd0,0x30,0x10,0x18,0x18,0x70,0x10,0x10,0x28,0x80,0x00 -+// 41415 ꇇ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0xc0,0xc0,0x00,0x00,0x00,0x80,0x80,0x00 -+// 41416 ꇈ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x02,0x01,0x00,0x04,0x03,0x00,0x00,0x20,0x40,0x60,0x18,0x00,0xc0,0xf0,0x08,0x08,0x10,0xe0,0xc0,0x00,0x80,0x80 -+// 41417 ꇉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x04,0x02,0x03,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0xe0,0x18,0x00,0xc0,0xf0,0x00,0x08,0x10,0xf0,0xc0,0x00,0x80,0x80,0x00 -+// 41418 ꇊ ; -+,0x00,0x00,0x01,0x02,0x02,0x06,0x06,0x04,0x07,0x04,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0xe0,0xa0,0x90,0xd0,0xd8,0x88,0xf8,0xc8,0xc8,0xc8,0x88,0xc8,0x70,0x00 -+// 41419 ꇋ ; -+,0x00,0x01,0x00,0x02,0x04,0x04,0x00,0x00,0x04,0x04,0x02,0x00,0x02,0x03,0x02,0x02,0x00,0xe0,0x00,0x10,0x10,0x90,0x90,0x90,0x90,0x90,0x10,0x10,0x10,0xf0,0x10,0x00 -+// 41420 ꇌ ; -+,0x00,0x00,0x04,0x00,0x08,0x08,0x08,0x04,0x04,0x00,0x00,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x00,0x00,0x00 -+// 41421 ꇍ ; -+,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x08,0x08,0xc8,0x38,0x08,0x00,0x00,0x00,0x88,0x88,0xc8,0xc8,0x30,0x00 -+// 41422 ꇎ ; -+,0x00,0x00,0x01,0x02,0x04,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0xc0,0x30,0x18,0x28,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41423 ꇏ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0xe0,0x00,0x04,0x44,0xc0,0xc8,0x88,0x38,0x10,0x10,0x10,0x10,0x10,0x10,0xe0 -+// 41424 ꇐ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x03,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0xc8,0x30,0x10,0x10,0x10,0x10,0x10,0x20,0xc0,0x00 -+// 41425 ꇑ ; -+,0x00,0x00,0x04,0x04,0x02,0x07,0x05,0x06,0x06,0x06,0x05,0x07,0x02,0x04,0x04,0x00,0x00,0x00,0x08,0x18,0x10,0x20,0x20,0xc0,0xc0,0xc0,0x60,0x20,0x10,0x10,0x08,0x00 -+// 41426 ꇒ ; -+,0x00,0x01,0x00,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0xc0,0x20,0x00,0x08,0x10,0x10,0x20,0x20,0xc0,0xc0,0xc0,0x20,0x20,0x10,0x08,0x08 -+// 41427 ꇓ ; -+,0x00,0x00,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x04,0x00,0x00,0x00,0x08,0x10,0x10,0x20,0x60,0xc0,0xc0,0xc0,0x20,0x20,0x10,0x10,0x08,0x00 -+// 41428 ꇔ ; -+,0x00,0x00,0x00,0x02,0x02,0x01,0x01,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x48,0x48,0x48,0x50,0xf0,0xc0,0x40,0xc0,0x40,0xc0,0xc0,0x40,0x40,0x00 -+// 41429 ꇕ ; -+,0x00,0x01,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0xc0,0x20,0x00,0x08,0x88,0xc8,0x78,0x18,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xe0 -+// 41430 ꇖ ; -+,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0xc8,0x68,0x18,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xe0,0x00 -+// 41431 ꇗ ; -+,0x00,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0xc8,0x28,0x18,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00 -+// 41432 ꇘ ; -+,0x00,0x01,0x00,0x03,0x04,0x04,0x04,0x04,0x03,0x01,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x20,0x00,0x20,0x18,0x00,0x00,0x00,0x00,0xe0,0x30,0x18,0x08,0x08,0x10,0x00 -+// 41433 ꇙ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x03,0x01,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x20,0x18,0x00,0x00,0x00,0x00,0xe0,0x30,0x18,0x08,0x08,0x10,0xe0,0x00 -+// 41434 ꇚ ; -+,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x1c,0x1c,0x10,0x10,0x10,0x10,0xf0,0x00,0x00,0x00 -+// 41435 ꇛ ; -+,0x00,0x01,0x00,0x03,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x20,0x60,0xf0,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf0,0x00,0x00 -+// 41436 ꇜ ; -+,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x98,0x60,0x00,0x00,0x00 -+// 41437 ꇝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x04,0x06,0x03,0x00,0x00,0x00,0xc0,0xb0,0x90,0x80,0x80,0xf0,0x80,0x80,0x80,0x88,0x88,0x10,0xe0,0x00 -+// 41438 ꇞ ; -+,0x00,0x00,0x03,0x04,0x04,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x06,0x03,0x00,0x00,0xc0,0xf0,0x08,0x08,0x00,0x00,0x00,0xf0,0x00,0x00,0x08,0x08,0x10,0xe0,0x00 -+// 41439 ꇟ ; -+,0x00,0x01,0x00,0x02,0x06,0x05,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0xe0,0x00,0x10,0x18,0x28,0xc8,0x10,0xe0,0x80,0x80,0x80,0x80,0x80,0x80,0x80 -+// 41440 ꇠ ; -+,0x00,0x00,0x02,0x02,0x05,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0x28,0xe8,0x10,0xe0,0xc0,0x00,0x00,0x00,0x00,0x80,0x80,0x00 -+// 41441 ꇡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x02,0x04,0x04,0x03,0x00,0x00,0x00,0xd0,0xb0,0x90,0x80,0xf0,0x80,0xa0,0xa0,0xa0,0xa0,0x90,0x30,0xc0,0x00 -+// 41442 ꇢ ; -+,0x00,0x00,0x02,0x02,0x05,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x03,0x02,0x02,0x00,0x00,0x00,0x10,0x18,0x28,0x90,0x20,0xc0,0x00,0xe0,0x10,0xd8,0x28,0x18,0x10,0x00 -+// 41443 ꇣ ; -+,0x00,0x01,0x00,0x04,0x04,0x00,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0xa0,0x00,0x08,0x08,0x08,0x10,0xe0,0x00,0x00,0xe0,0x30,0x10,0x08,0x08,0x08 -+// 41444 ꇤ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x18,0x10,0x60,0x80,0x00,0xc0,0x20,0x10,0x08,0x08,0x08,0x00 -+// 41445 ꇥ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x05,0x05,0x04,0x05,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0xc0,0x70,0x10,0x08,0x08,0x28,0xc8,0x08,0x68,0x28,0x08,0x08,0x10,0xe0,0x00 -+// 41446 ꇦ ; -+,0x00,0x00,0x04,0x02,0x02,0x01,0x01,0x01,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x30,0x30,0x30,0x58,0x50,0x90,0x90,0x90,0x50,0x78,0x30,0x30,0x30,0x00 -+// 41447 ꇧ ; -+,0x00,0x01,0x00,0x04,0x04,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x00,0x04,0x04,0xc0,0x20,0x20,0x20,0x30,0x70,0x70,0xb8,0xa0,0xa0,0xb8,0xb0,0x70,0x70,0x38,0x20 -+// 41448 ꇨ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x20,0x38,0x60,0x60,0xb0,0xa0,0xa0,0xa0,0xb0,0x60,0x60,0x30,0x20,0x00 -+// 41449 ꇩ ; -+,0x00,0x00,0x03,0x02,0x05,0x05,0x05,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0xc0,0x30,0x10,0x08,0x28,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41450 ꇪ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x05,0x02,0x03,0x03,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0xe8,0xd0,0x90,0xf0,0xb0,0x90,0xd0,0xf0,0x00 -+// 41451 ꇫ ; -+,0x00,0x01,0x00,0x06,0x03,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x20,0x00,0x40,0x48,0x58,0x50,0x60,0x60,0x40,0x40,0x40,0x40,0x40,0xc0,0x40 -+// 41452 ꇬ ; -+,0x00,0x00,0x06,0x03,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x48,0x50,0x50,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0xc0,0x00 -+// 41453 ꇭ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0xf8,0x00,0x00,0x80,0x80,0x80,0x00,0x00 -+// 41454 ꇮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0xe0,0x98,0x80,0x80,0x88,0xf8,0x88,0x88,0x80,0x80,0x80,0x00,0x00,0x00 -+// 41455 ꇯ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x40,0x10,0x40,0x60,0x58,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0 -+// 41456 ꇰ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41457 ꇱ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00,0x00,0x00,0x00 -+// 41458 ꇲ ; -+,0x00,0x00,0x04,0x02,0x02,0x03,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x50,0x88,0xa0,0xa0,0xa0,0x80,0xf8,0xa0,0x20,0x20,0x88,0x88,0x70,0x00 -+// 41459 ꇳ ; -+,0x00,0x01,0x00,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0xe0,0x00,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x30,0xe0 -+// 41460 ꇴ ; -+,0x00,0x00,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41461 ꇵ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x07,0x07,0x06,0x06,0x06,0x05,0x04,0x02,0x01,0x00,0x00,0xc0,0x30,0x10,0x08,0x28,0xe8,0x28,0x28,0x28,0x28,0x28,0xc8,0x10,0xe0,0x00 -+// 41462 ꇶ ; -+,0x00,0x01,0x00,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x06,0x06,0x06,0x05,0x04,0x00,0xe0,0x00,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x18,0x18,0x30,0xc8,0x08 -+// 41463 ꇷ ; -+,0x00,0x00,0x08,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x0a,0x06,0x06,0x05,0x00,0x00,0x00,0x00,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x28,0x08,0x18,0x30,0xf0,0x08,0x00 -+// 41464 ꇸ ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xf0,0x00,0x00,0x78,0x00,0x00 -+// 41465 ꇹ ; -+,0x00,0x01,0x00,0x01,0x01,0x02,0x07,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0xe0,0x00,0xc0,0x20,0x10,0x10,0x10,0x10,0x00,0x00,0x08,0x80,0x80,0xd0,0x60 -+// 41466 ꇺ ; -+,0x00,0x00,0x01,0x01,0x03,0x03,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x00,0x00,0xe0,0x20,0x10,0x10,0x10,0x10,0x00,0x08,0x08,0x08,0x80,0xd0,0xf0,0x00 -+// 41467 ꇻ ; -+,0x00,0x04,0x06,0x06,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x07,0x00,0x00,0x08,0xd8,0x18,0x10,0x20,0xe0,0xc0,0xc0,0xc0,0x60,0xa0,0x90,0x18,0xf8,0x00 -+// 41468 ꇼ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0x20,0x00,0x08,0xc8,0x90,0x80,0x88,0x88,0x88,0xc8,0xb8,0x88,0x80,0x80,0x80 -+// 41469 ꇽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x0e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xb0,0x80,0x80,0x88,0x88,0xc8,0xb8,0x88,0x80,0x80,0x00,0x00 -+// 41470 ꇾ ; -+,0x00,0x00,0x00,0x04,0x06,0x06,0x05,0x04,0x04,0x04,0x05,0x06,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x18,0xe8,0xc8,0xc8,0xc8,0xe8,0x18,0x18,0x08,0x00,0x00 -+// 41471 ꇿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xf8,0x00,0x00,0x00,0x20,0x20,0xa0,0x20,0x20,0x00,0x00,0x18,0xe0,0x00 -+// 41472 ꈀ ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x02,0x00,0x01,0x07,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0xc0,0x20,0x00,0x08,0x08,0x18,0x28,0x28,0xf8,0xc8,0x28,0x28,0x18,0x08,0x00 -+// 41473 ꈁ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x07,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x38,0x28,0xc8,0xf8,0x48,0x28,0x18,0x08,0x00,0x00,0x00 -+// 41474 ꈂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x60,0x58,0x40,0x40,0x48,0x48,0x78,0x48,0x48,0x40,0xc0,0x00,0x00,0x00 -+// 41475 ꈃ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x01,0x00,0x40,0x20,0x00,0x60,0x50,0x40,0x40,0x40,0x60,0x60,0x50,0x50,0x50,0x40,0x40,0x40 -+// 41476 ꈄ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x50,0x48,0x40,0x40,0x40,0x60,0x50,0x50,0x50,0x40,0xc0,0x40,0x00 -+// 41477 ꈅ ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x01,0x06,0x01,0x01,0x03,0x02,0x00,0x00,0x80,0xc0,0x90,0xc0,0xb0,0x90,0x90,0xb0,0xc0,0x80,0xc0,0x90,0x08,0x08,0x00 -+// 41478 ꈆ ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x98,0x80,0x80,0x80,0xf0,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41479 ꈇ ; -+,0x00,0x01,0x04,0x02,0x00,0x00,0x06,0x00,0x00,0x04,0x02,0x00,0x00,0x04,0x03,0x00,0xc0,0x20,0x40,0x70,0x48,0x40,0x40,0x40,0x60,0x70,0x50,0x50,0x40,0x40,0x40,0xc0 -+// 41480 ꈈ ; -+,0x00,0x00,0x06,0x02,0x00,0x04,0x02,0x00,0x04,0x02,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0xe0,0x98,0x80,0x80,0x80,0xc0,0xa0,0x90,0x90,0x90,0x80,0x80,0x80,0x00 -+// 41481 ꈉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xa0,0x98,0x80,0xf0,0x80,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x00 -+// 41482 ꈊ ; -+,0x00,0x00,0x01,0x01,0x01,0x04,0x04,0x04,0x04,0x03,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x20,0xc0,0xc8,0x88,0xc8,0xc8,0x30,0x10,0x10,0x00,0x20,0xc0,0x00 -+// 41483 ꈋ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80 -+// 41484 ꈌ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x00 -+// 41485 ꈍ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x10,0x60,0xc0,0x00,0x88,0x88,0x88,0x88,0x08,0x00 -+// 41486 ꈎ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0x00,0x80,0xf8,0x00,0x00,0x00,0x00,0x00 -+// 41487 ꈏ ; -+,0x00,0x01,0x00,0x00,0x01,0x01,0x05,0x03,0x01,0x01,0x01,0x01,0x00,0x03,0x00,0x00,0xc0,0x20,0x00,0x10,0x10,0x10,0x10,0x10,0xd0,0x50,0x10,0x10,0x10,0x10,0xd0,0x30 -+// 41488 ꈐ ; -+,0x00,0x00,0x00,0x01,0x01,0x05,0x03,0x01,0x01,0x01,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0xd0,0x50,0x10,0x10,0x10,0x10,0xd0,0x30,0x00 -+// 41489 ꈑ ; -+,0x00,0x00,0x01,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x05,0x04,0x04,0x00,0x00,0x00,0xe0,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00 -+// 41490 ꈒ ; -+,0x00,0x03,0x00,0x01,0x00,0x00,0x01,0x07,0x00,0x00,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x60,0x00,0x90,0x10,0x10,0x10,0xd0,0x10,0x10,0x10,0x10,0x10,0x10,0xd0,0x30 -+// 41491 ꈓ ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x10,0x10,0x10,0xf0,0x30,0x00 -+// 41492 ꈔ ; -+,0x00,0x00,0x03,0x06,0x04,0x04,0x04,0x06,0x03,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x10,0x30,0x08,0x08,0x08,0x08,0x30,0x00,0x00 -+// 41493 ꈕ ; -+,0x00,0x03,0x00,0x00,0x04,0x04,0x02,0x02,0x02,0x04,0x08,0x00,0x04,0x03,0x00,0x00,0x00,0x60,0x00,0x10,0x50,0x90,0x90,0x90,0x90,0x90,0x50,0x10,0x10,0x10,0xd0,0x30 -+// 41494 ꈖ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x02,0x02,0x04,0x04,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x90,0x90,0x90,0x90,0x90,0x50,0x10,0x10,0x90,0x70,0x30,0x00 -+// 41495 ꈗ ; -+,0x00,0x03,0x00,0x01,0x02,0x03,0x02,0x03,0x00,0x00,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x60,0x20,0xf0,0x20,0xa0,0xe0,0xa0,0x20,0x20,0xe0,0xe0,0x20,0x20,0x20,0x20 -+// 41496 ꈘ ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x03,0x00,0x00,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x78,0x20,0xa0,0xa0,0x20,0x20,0xe0,0xe0,0x20,0x20,0x20,0x20,0x00 -+// 41497 ꈙ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x0e,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xc8,0x38,0x18,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41498 ꈚ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41499 ꈛ ; -+,0x00,0x01,0x00,0x06,0x04,0x04,0x01,0x00,0x04,0x01,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x20,0x80,0x78,0x00,0x00,0xf0,0x08,0x08,0xe0,0x80,0xf8,0x80,0xf8,0x00,0x00 -+// 41500 ꈜ ; -+,0x00,0x00,0x06,0x04,0x04,0x01,0x00,0x06,0x01,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x00,0xf0,0x08,0x08,0xe0,0x80,0xf8,0x80,0xf8,0x00,0x00,0x00 -+// 41501 ꈝ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x70,0x60,0x40,0x40,0x40,0x60,0x58,0x40,0x40,0xc0,0x80,0x00,0x00,0x00 -+// 41502 ꈞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0xe0,0x10,0x08,0x08,0x04,0x00 -+// 41503 ꈟ ; -+,0x00,0x01,0x00,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x03,0x06,0x05,0x05,0x05,0xc0,0x20,0x00,0x18,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x30,0x38,0x28,0x28,0xc8 -+// 41504 ꈠ ; -+,0x00,0x00,0x06,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x03,0x07,0x05,0x05,0x00,0x00,0x00,0x00,0x18,0x20,0x20,0x20,0x20,0x20,0x20,0xf0,0x30,0x38,0x28,0x28,0xc0,0x00 -+// 41505 ꈡ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0xf0,0x08,0x08,0x08,0xf0,0x80,0xf8,0x80,0xc0,0xc0,0x80,0x80,0x80,0x00 -+// 41506 ꈢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0x08,0x88,0xc8,0x38,0x08,0x00,0x00,0x80,0x80,0x00 -+// 41507 ꈣ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x20,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xc8,0x18 -+// 41508 ꈤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x0b,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x00 -+// 41509 ꈥ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x00,0x00,0x00 -+// 41510 ꈦ ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x07,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb0,0xa8,0xa0,0x20,0xe0,0x20,0xa0,0xa0,0x20,0x20,0x20,0xa0,0x20,0x00 -+// 41511 ꈧ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x20,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 41512 ꈨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0x08,0x00 -+// 41513 ꈩ ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x68,0xe0,0xe0,0xa0,0xa0,0xe0,0xe0,0x60,0x20,0x20,0xa0,0x60,0x00 -+// 41514 ꈪ ; -+,0x00,0x00,0x00,0x00,0x06,0x0a,0x0a,0x06,0x03,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41515 ꈫ ; -+,0x00,0x01,0x00,0x04,0x02,0x01,0x00,0x03,0x04,0x00,0x04,0x02,0x00,0x01,0x02,0x04,0x00,0xe0,0x00,0x08,0x38,0xc8,0xc8,0x28,0x18,0x00,0x08,0x28,0xc8,0xc8,0x38,0x08 -+// 41516 ꈬ ; -+,0x00,0x00,0x06,0x03,0x00,0x01,0x02,0x04,0x00,0x06,0x03,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x18,0x38,0xc8,0xe8,0x38,0x08,0x08,0x18,0x28,0xc8,0xe8,0x38,0x08,0x00 -+// 41517 ꈭ ; -+,0x00,0x00,0x06,0x01,0x00,0x01,0x06,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x20,0xc0,0x30,0x18,0x00,0x00,0x00,0xf8,0xc0,0x00,0x00,0x00,0x00 -+// 41518 ꈮ ; -+,0x00,0x01,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x03,0x00,0x20,0x80,0x30,0x08,0x08,0x08,0x30,0x00,0x00,0xe0,0x18,0x08,0x08,0x18,0xe0 -+// 41519 ꈯ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x01,0x06,0x04,0x00,0x04,0x03,0x00,0x00,0xc0,0x30,0x08,0x08,0x08,0xf0,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0xf0,0x00 -+// 41520 ꈰ ; -+,0x00,0x01,0x00,0x01,0x07,0x05,0x01,0x01,0x05,0x03,0x07,0x05,0x09,0x05,0x05,0x03,0x00,0x20,0x00,0xb0,0x78,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41521 ꈱ ; -+,0x00,0x00,0x01,0x07,0x05,0x09,0x09,0x05,0x07,0x05,0x09,0x09,0x01,0x05,0x01,0x00,0x00,0x00,0xb0,0x70,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 41522 ꈲ ; -+,0x00,0x01,0x03,0x02,0x02,0x07,0x04,0x04,0x04,0x04,0x07,0x06,0x0e,0x02,0x01,0x00,0x00,0xe0,0x30,0x10,0x18,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x10,0xe0,0x00 -+// 41523 ꈳ ; -+,0x00,0x01,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0xb0,0x00,0x10,0x9c,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10 -+// 41524 ꈴ ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x18,0x90,0x10,0x10,0x10,0xf0,0xb0,0x90,0x90,0x90,0x90,0x90,0x00 -+// 41525 ꈵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x10,0x10,0x20,0x60,0x20,0x10,0x10,0x00,0x80,0x80,0x00,0x00,0x00,0x00 -+// 41526 ꈶ ; -+,0x00,0x01,0x00,0x00,0x03,0x04,0x04,0x06,0x00,0x04,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0xe0,0x00,0x80,0xf0,0x08,0x08,0xf8,0xc0,0x08,0xc0,0xf8,0x08,0x08,0xf0,0x00 -+// 41527 ꈷ ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x00,0x04,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0xc0,0xf8,0x08,0x08,0xf0,0xc0,0x08,0xc0,0xf8,0x08,0x08,0xf0,0x80,0x00 -+// 41528 ꈸ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0xe0,0x10,0x00,0x00,0x10,0xe0,0xc0,0x00,0xe0,0x10,0x08,0x08,0x08,0x00 -+// 41529 ꈹ ; -+,0x00,0x00,0x03,0x02,0x06,0x06,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0xe0,0x90,0xd0,0x90,0x90,0xe0,0xc0,0x80,0xc0,0xb0,0x90,0x88,0x88,0x00 -+// 41530 ꈺ ; -+,0x00,0x03,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x08,0x80,0x20,0xc0,0x10,0x08,0x08,0x30,0x40,0x40,0xc0,0x80,0xc0,0xa0,0x90,0x88,0x88 -+// 41531 ꈻ ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x01,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x08,0x00,0x00,0x00,0xf0,0x00,0x08,0x10,0xe0,0x40,0xc0,0x80,0x80,0xa0,0x90,0x80,0x80,0x00 -+// 41532 ꈼ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x0f,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0xc0,0xc0,0x40,0x20,0x30,0x40,0x40,0xc0,0x40,0x40,0x30,0x00 -+// 41533 ꈽ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x04,0x05,0x01,0x05,0x04,0x03,0x00,0x00,0x00,0xc0,0x20,0x00,0x20,0x40,0xc0,0x40,0x40,0x38,0x00,0x20,0x40,0xc0,0xc0,0x40,0x38 -+// 41534 ꈾ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x90,0x90,0x40,0x70,0x00,0x60,0x00,0x90,0x90,0x40,0x70,0x00 -+// 41535 ꈿ ; -+,0x00,0x00,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0x58,0x20,0x60,0x20,0x80,0x80,0x98,0x80,0xa0,0x60,0x60,0x60,0xd8,0x00 -+// 41536 ꉀ ; -+,0x00,0x00,0x02,0x07,0x07,0x02,0x02,0x02,0x03,0x03,0x02,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x28,0x38,0xd0,0x10,0x10,0x30,0x30,0xd0,0x18,0x20,0x20,0xc0,0x00 -+// 41537 ꉁ ; -+,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xe0,0x00,0x18,0x20,0xe0,0x78,0x80,0x80,0xf8,0x80,0x80,0xf0,0xc0,0x30,0x08 -+// 41538 ꉂ ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x01,0x01,0x0f,0x01,0x01,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x30,0x40,0xc0,0xb0,0x00,0x00,0xf0,0x00,0x00,0xe0,0xc0,0x60,0x10,0x00 -+// 41539 ꉃ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x01,0x00,0x03,0x00,0x03,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0xf0,0x40,0xf0,0x40,0x00,0x80,0x00,0x00 -+// 41540 ꉄ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x88,0x88,0x88,0x88,0xa8,0xe8,0xc8,0xc8,0x48,0x48,0x48,0x50,0xe0 -+// 41541 ꉅ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0xa8,0xe8,0xc8,0xc8,0x48,0x48,0x48,0x50,0xe0,0x00 -+// 41542 ꉆ ; -+,0x00,0x00,0x0e,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x0e,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x08,0x08,0xc8,0x68,0x18,0x08,0x00,0x08,0x08,0x88,0xc8,0x38,0x18,0x00 -+// 41543 ꉇ ; -+,0x00,0x01,0x00,0x00,0x04,0x06,0x07,0x05,0x04,0x04,0x04,0x05,0x06,0x06,0x04,0x00,0x00,0xa0,0x00,0x00,0x08,0x18,0x18,0x28,0xc8,0xc8,0xe8,0x28,0x18,0x08,0x08,0x00 -+// 41544 ꉈ ; -+,0x00,0x00,0x00,0x04,0x06,0x06,0x05,0x04,0x04,0x04,0x05,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x18,0x28,0xc8,0xc8,0xe8,0x28,0x18,0x08,0x08,0x00,0x00 -+// 41545 ꉉ ; -+,0x00,0x07,0x00,0x01,0x02,0x04,0x04,0x02,0x01,0x01,0x02,0x04,0x04,0x02,0x01,0x00,0x00,0xf8,0x10,0xf0,0x10,0x10,0x10,0x10,0xf0,0xf0,0x10,0x10,0x10,0x10,0xf0,0x00 -+// 41546 ꉊ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x50,0x50,0x50,0x10,0xd0,0x10,0x10,0x10,0x10,0xd0,0x30,0x00 -+// 41547 ꉋ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x00,0xe0,0x00,0x18,0x20,0x00,0x40,0x40,0xc0,0x60,0x70,0x40,0x20,0x10,0x08,0x00 -+// 41548 ꉌ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x02,0x00,0x00,0x00,0x10,0x20,0x40,0x40,0x80,0xc0,0x70,0x58,0x40,0x60,0x30,0x18,0x00,0x00 -+// 41549 ꉍ ; -+,0x00,0x00,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x40,0x20,0x28,0x28,0x20,0x20,0x38,0x20,0x28,0x28,0x28,0x20,0xc0,0x00 -+// 41550 ꉎ ; -+,0x00,0x00,0x02,0x00,0x04,0x01,0x02,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x03,0x00,0x00,0x20,0x30,0x28,0x20,0xa0,0xe0,0x60,0x20,0x20,0xe0,0x20,0x20,0x20,0x40,0x00 -+// 41551 ꉏ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x20,0x00,0x60,0x50,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x40 -+// 41552 ꉐ ; -+,0x00,0x00,0x02,0x04,0x05,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x30,0x08,0x00,0x80,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x00 -+// 41553 ꉑ ; -+,0x00,0x00,0x05,0x05,0x06,0x05,0x05,0x05,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x40,0x00 -+// 41554 ꉒ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0xc8,0xc8,0xc8,0xc8,0xc8,0x30,0x00,0x00,0x00,0x00,0x20,0x20,0xc0,0x00 -+// 41555 ꉓ ; -+,0x00,0x02,0x00,0x00,0x01,0x02,0x06,0x04,0x04,0x04,0x04,0x04,0x02,0x03,0x01,0x00,0x00,0x40,0x00,0xe0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x70 -+// 41556 ꉔ ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x04,0x04,0x06,0x03,0x01,0x00,0x00,0x00,0x00,0xe0,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x00 -+// 41557 ꉕ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x01,0x00,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0xc8,0xc8,0xc8,0xc8,0xc8,0x30,0x00,0x60,0x20,0x00,0x00,0x20,0xe0,0x00 -+// 41558 ꉖ ; -+,0x00,0x07,0x07,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x06,0x01,0x00,0x07,0x00,0x00,0xf0,0xf8,0x08,0xc8,0x38,0x08,0x08,0xe8,0x18,0x18,0x38,0xc8,0x08,0xf8,0x00 -+// 41559 ꉗ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x80,0x20,0x40,0xe0,0x10,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x80,0xc0 -+// 41560 ꉘ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x01,0x00,0x00,0x00,0xc0,0xa0,0x90,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41561 ꉙ ; -+,0x00,0x00,0x04,0x06,0x06,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x06,0x04,0x0c,0x00,0x00,0x00,0x08,0x18,0x18,0x28,0x28,0xc8,0xc8,0xc8,0x28,0x38,0x18,0x08,0x08,0x00 -+// 41562 ꉚ ; -+,0x00,0x01,0x00,0x04,0x04,0x03,0x00,0x01,0x02,0x00,0x02,0x01,0x01,0x02,0x04,0x04,0xc0,0x20,0x00,0x08,0x18,0xf0,0xc0,0xf0,0x10,0x08,0xd0,0xe0,0xe0,0x90,0x08,0x08 -+// 41563 ꉛ ; -+,0x00,0x00,0x04,0x04,0x03,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x03,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0xf0,0xc0,0xe0,0x10,0x00,0x90,0xe0,0xc0,0xf0,0x08,0x08,0x00 -+// 41564 ꉜ ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x30,0x28,0xe0,0x20,0x20,0x20,0x20,0x20,0xe0,0x20,0x20,0x20,0x20,0x00 -+// 41565 ꉝ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x02,0x01,0x04,0x04,0x04,0x03,0xc0,0x20,0x00,0x60,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x80,0x88,0x88,0xc8,0x30 -+// 41566 ꉞ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x02,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0xe0,0x80,0x80,0x80,0x90,0x90,0x90,0x80,0x80,0x80,0x88,0xc8,0x78,0x00 -+// 41567 ꉟ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x07,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x30,0x00,0x00,0x10,0x10,0xb8,0x10,0x10,0x00,0x00,0x80,0x80,0x00 -+// 41568 ꉠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x02,0x03,0x01,0x00,0x00,0x00,0x10,0x14,0x14,0x14,0x14,0xfc,0x18,0x10,0x10,0x10,0x10,0x20,0xc0,0x00 -+// 41569 ꉡ ; -+,0x00,0x01,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0xe0,0x00,0x48,0x48,0xc8,0x68,0x58,0x48,0x40,0x40,0x40,0xc0,0x00,0x00,0x00 -+// 41570 ꉢ ; -+,0x00,0x00,0x06,0x07,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x88,0xc8,0xe8,0x38,0x08,0x00,0x00,0x00,0x80,0x80,0x00,0x00,0x00 -+// 41571 ꉣ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x07,0x02,0x02,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x70,0xc8,0x48,0x48,0x48,0x50,0x40,0x40,0xc0,0x40,0x00 -+// 41572 ꉤ ; -+,0x00,0x00,0x02,0x04,0x04,0x02,0x01,0x00,0x00,0x01,0x01,0x02,0x04,0x06,0x01,0x00,0x00,0x00,0x10,0x08,0x00,0x10,0x20,0xc0,0xc0,0xc0,0x20,0x10,0x08,0x18,0xe0,0x00 -+// 41573 ꉥ ; -+,0x00,0x01,0x00,0x01,0x01,0x02,0x07,0x02,0x01,0x01,0x00,0x00,0x01,0x03,0x06,0x04,0x00,0x20,0x80,0x60,0xa0,0x00,0xf8,0x10,0x20,0x60,0xc0,0xc0,0x60,0x30,0x10,0x08 -+// 41574 ꉦ ; -+,0x00,0x00,0x01,0x01,0x00,0x03,0x02,0x01,0x01,0x00,0x00,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0xc0,0xa0,0xa0,0x30,0x10,0x20,0x60,0xc0,0xc0,0x20,0x30,0x10,0x08,0x00 -+// 41575 ꉧ ; -+,0x00,0x00,0x06,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x20,0x00,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x20,0x30,0x18,0x00 -+// 41576 ꉨ ; -+,0x00,0x01,0x00,0x01,0x00,0x02,0x02,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0xe0,0x20,0x10,0x10,0x70,0x18,0x08,0x08,0x08,0x08,0x08,0x10,0xe0 -+// 41577 ꉩ ; -+,0x00,0x00,0x01,0x00,0x02,0x02,0x03,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x60,0x20,0x10,0x90,0x30,0x18,0x08,0x88,0x88,0x88,0x08,0x18,0xf0,0x00 -+// 41578 ꉪ ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x03,0x01,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x90,0xe0,0xc0,0xf0,0x10,0x08,0x00,0xd0,0xc0,0x80,0x80,0x00 -+// 41579 ꉫ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x01,0x07,0x01,0x01,0x01,0x01,0x00,0x06,0x01,0x00,0x00,0xe0,0x00,0x10,0x10,0x10,0x10,0xd0,0x10,0x10,0x10,0x10,0x10,0x10,0xd0,0x70 -+// 41580 ꉬ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0xd0,0x30,0x00 -+// 41581 ꉭ ; -+,0x00,0x00,0x02,0x00,0x04,0x07,0x04,0x04,0x07,0x04,0x07,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0x40,0x40,0x00,0xe8,0x34,0x34,0xf4,0x34,0xf8,0x00,0x00,0x40,0x80,0x00 -+// 41582 ꉮ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x03,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x60,0x50,0x40,0x40,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 41583 ꉯ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x02,0x01,0x03,0x02,0x04,0x04,0x00,0x00,0x01,0x00,0x00,0x20,0x00,0x30,0x18,0x00,0x00,0xc0,0x40,0x00,0x00,0x00,0x00,0x00,0xc0,0x40 -+// 41584 ꉰ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x03,0x04,0x04,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x40,0x70,0x40,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41585 ꉱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x28,0xe8,0xb8,0xa0,0xa0,0x80,0x80,0xc0,0xb0,0x90,0x80,0x88,0x88,0x00 -+// 41586 ꉲ ; -+,0x00,0x02,0x00,0x01,0x02,0x02,0x07,0x00,0x02,0x01,0x0c,0x0b,0x09,0x03,0x02,0x00,0x00,0x00,0xc0,0xf0,0x10,0x88,0xf8,0x08,0x10,0xe0,0xc0,0x80,0xe0,0x10,0x10,0x08 -+// 41587 ꉳ ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x02,0x02,0x01,0x0c,0x0b,0x09,0x02,0x02,0x04,0x00,0x00,0x00,0xf0,0x10,0x00,0xf0,0x00,0x10,0xe0,0x00,0xc0,0xe0,0x10,0x10,0x00,0x00 -+// 41588 ꉴ ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x01,0x01,0x08,0x0f,0x09,0x0b,0x02,0x04,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0x10,0x30,0xe0,0x00,0x80,0xc0,0x30,0x10,0x00,0x00 -+// 41589 ꉵ ; -+,0x00,0x00,0x01,0x04,0x04,0x03,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xd8,0x44,0x40,0x40,0xf8,0x40,0x40,0x40,0xfc,0x40,0x40,0x40,0x00 -+// 41590 ꉶ ; -+,0x00,0x01,0x00,0x00,0x00,0x06,0x01,0x06,0x02,0x02,0x06,0x01,0x02,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x70,0x48,0x40,0xc0,0xc0,0xc0,0xc0,0xc0,0x40,0x40,0x40,0x40 -+// 41591 ꉷ ; -+,0x00,0x00,0x00,0x00,0x03,0x00,0x02,0x05,0x05,0x06,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x60,0x50,0x48,0xc0,0xc0,0x40,0x40,0xc0,0xc0,0x40,0x40,0x40,0x40,0x00 -+// 41592 ꉸ ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x06,0x00,0x07,0x00,0x02,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0xc0,0xf0,0x08,0x08,0x08,0xf0,0xc0,0xc0,0xb0,0x10,0x08,0x08,0x08,0x00 -+// 41593 ꉹ ; -+,0x00,0x00,0x03,0x06,0x04,0x04,0x04,0x06,0x03,0x06,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x80,0x00,0x00,0x00,0x38,0x40,0x40,0xc0,0x40,0x40,0x38,0x00,0x00,0x80,0x00 -+// 41594 ꉺ ; -+,0x00,0x01,0x00,0x01,0x02,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x30,0x10,0x08,0x08,0xc8,0x28,0x28,0x28,0xc8,0x08,0x08,0x10,0xe0 -+// 41595 ꉻ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0xc8,0x08,0x08,0x08,0xc8,0x08,0x00,0x10,0xe0,0x00 -+// 41596 ꉼ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x10,0x20,0x20,0x40,0x58,0xa8,0xa8,0x88,0x58,0x40,0x20,0x20,0x10,0x00 -+// 41597 ꉽ ; -+,0x00,0x01,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x06,0x06,0x02,0x02,0x02,0x00,0x00,0x60,0x20,0x20,0x70,0x28,0x20,0x20,0x20,0x20,0xa0,0xa0,0xa0,0xa0,0x20,0x20 -+// 41598 ꉾ ; -+,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x07,0x02,0x0a,0x0a,0x0a,0x02,0x00,0x00,0x00,0x20,0xf0,0x60,0x20,0x20,0x20,0x20,0x20,0xa0,0xa0,0xa0,0xa0,0x20,0x00 -+// 41599 ꉿ ; -+,0x00,0x00,0x01,0x00,0x03,0x02,0x02,0x02,0x07,0x02,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0xe0,0x20,0x10,0x00,0x00 -+// 41600 ꊀ ; -+,0x00,0x00,0x01,0x01,0x07,0x07,0x05,0x05,0x0d,0x05,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x28,0x28,0xa8,0x68,0x38,0x38,0x20,0x20,0x20,0x20,0xc0,0x00 -+// 41601 ꊁ ; -+,0x00,0x00,0x01,0x00,0x0e,0x03,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x80,0x20,0x00,0x08,0x08,0x88,0x68,0x38,0x08,0x00,0xf0,0x00,0x00,0xf0,0x00 -+// 41602 ꊂ ; -+,0x00,0x00,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0xc8,0x68,0x18,0x08,0x00,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 41603 ꊃ ; -+,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0xc8,0x68,0x18,0x08,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41604 ꊄ ; -+,0x00,0x01,0x00,0x02,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x06,0x80,0x20,0x00,0x30,0xc0,0xc0,0xc0,0x20,0x28,0x28,0x28,0x00,0xc0,0xc0,0xe0,0x18 -+// 41605 ꊅ ; -+,0x00,0x00,0x02,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x01,0x01,0x06,0x00,0x00,0x00,0x30,0xc0,0xc0,0x40,0x20,0x28,0x28,0x20,0x20,0xc0,0xc0,0xe0,0x10,0x00 -+// 41606 ꊆ ; -+,0x00,0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x03,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xe0,0x90,0xc0,0x80,0x90,0xe0,0xc0,0xc0,0xb0,0x90,0x88,0x88,0x88,0x00 -+// 41607 ꊇ ; -+,0x00,0x01,0x01,0x02,0x02,0x01,0x00,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x01,0xc0,0x20,0x00,0x90,0x60,0xc0,0x40,0xf0,0x40,0x40,0xf0,0x40,0x40,0x40,0x40,0x80 -+// 41608 ꊈ ; -+,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x90,0x50,0xe0,0x40,0x60,0x60,0x40,0xf8,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41609 ꊉ ; -+,0x00,0x00,0x04,0x04,0x02,0x03,0x01,0x00,0x00,0x04,0x03,0x03,0x03,0x05,0x04,0x00,0x00,0x00,0x08,0x10,0x10,0x20,0x48,0xc8,0xc8,0xc8,0x48,0x20,0x30,0x10,0x08,0x00 -+// 41610 ꊊ ; -+,0x00,0x01,0x00,0x06,0x01,0x06,0x01,0x02,0x01,0x00,0x00,0x03,0x06,0x04,0x04,0x04,0x00,0x20,0x00,0xe0,0x90,0x80,0x80,0x80,0x80,0x80,0xc0,0xe0,0x90,0x88,0x88,0x88 -+// 41611 ꊋ ; -+,0x00,0x00,0x06,0x01,0x06,0x01,0x02,0x01,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0xc0,0xf0,0x10,0x08,0x08,0x08,0x00 -+// 41612 ꊌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0f,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xb0,0x80,0xa0,0xa8,0x88,0xc8,0xb8,0x98,0x80,0x80,0x80,0x80,0x00 -+// 41613 ꊍ ; -+,0x00,0x00,0x04,0x04,0x02,0x03,0x00,0x00,0x04,0x07,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0xf0,0xc0,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41614 ꊎ ; -+,0x00,0x01,0x00,0x02,0x00,0x01,0x01,0x00,0x04,0x04,0x04,0x07,0x03,0x01,0x05,0x04,0x80,0x20,0x00,0x10,0x00,0x20,0xc0,0xc8,0x88,0x88,0xc8,0x30,0x30,0x10,0x40,0x40 -+// 41615 ꊏ ; -+,0x00,0x00,0x02,0x00,0x01,0x01,0x04,0x04,0x04,0x04,0x03,0x03,0x00,0x04,0x04,0x00,0x00,0x00,0x10,0x00,0x20,0xc0,0xc8,0x88,0xc8,0xc8,0x30,0x30,0x00,0xc0,0xc0,0x00 -+// 41616 ꊐ ; -+,0x00,0x00,0x00,0x01,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0xd0,0x30,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0xc0,0x00 -+// 41617 ꊑ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x05,0x05,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xf8,0x20,0x20,0xf8 -+// 41618 ꊒ ; -+,0x00,0x00,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x30,0x20,0x20,0x20,0x20,0x20,0xf8,0x20,0x20,0x30,0x00 -+// 41619 ꊓ ; -+,0x00,0x00,0x00,0x00,0x05,0x05,0x05,0x05,0x05,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x50,0x48,0x40,0x40,0x60,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 41620 ꊔ ; -+,0x00,0x00,0x00,0x07,0x01,0x04,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xe8,0x98,0x80,0x80,0xf0,0xc0,0xd0,0xd0,0xc0,0xc0,0xb0,0x80,0x00 -+// 41621 ꊕ ; -+,0x00,0x01,0x00,0x00,0x00,0x03,0x06,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0xc0,0x20,0x10,0x60,0x80,0x80,0x60,0x30,0x80,0x80,0xc0,0x70,0x80,0x80,0x80,0x70 -+// 41622 ꊖ ; -+,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x0a,0x0b,0x09,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0xf0,0x80,0x00,0xc0,0x70,0x80,0x00,0x80,0xf0,0x80,0x00,0x80,0xf0,0x00 -+// 41623 ꊗ ; -+,0x00,0x00,0x02,0x02,0x01,0x01,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x10,0x00,0x20,0x20,0xc8,0x88,0x88,0xc8,0xc8,0x30,0x00,0x00,0x30,0x00 -+// 41624 ꊘ ; -+,0x00,0x02,0x00,0x01,0x01,0x01,0x01,0x0f,0x01,0x01,0x03,0x03,0x01,0x01,0x01,0x00,0x00,0x40,0x00,0xb0,0x10,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0xe0 -+// 41625 ꊙ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x0f,0x01,0x01,0x01,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xb0,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0x90,0x10,0x10,0x10,0xe0,0x00 -+// 41626 ꊚ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x03,0x01,0x00,0x00,0x00,0x00,0x58,0x48,0x78,0x48,0xf8,0x48,0x48,0x20,0x00,0x00,0x00,0x00,0x00 -+// 41627 ꊛ ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x07,0x00,0x01,0x01,0x02,0x04,0x07,0x00,0x00,0x00,0xc0,0xc0,0x20,0x20,0x10,0x08,0xf8,0xc0,0x20,0x20,0x10,0x00,0xf8,0x00 -+// 41628 ꊜ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x03,0x02,0x02,0x06,0x04,0x00,0x00,0x20,0x00,0x08,0x18,0x18,0x30,0xd0,0x10,0x10,0x90,0x50,0x30,0x10,0x10,0x10 -+// 41629 ꊝ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x18,0x18,0x30,0xd0,0x10,0x10,0x90,0x50,0x30,0x10,0x10,0x10,0x00 -+// 41630 ꊞ ; -+,0x00,0x00,0x03,0x04,0x04,0x06,0x03,0x04,0x00,0x04,0x03,0x06,0x04,0x04,0x07,0x00,0x00,0x00,0x10,0x08,0x08,0x18,0xf0,0x08,0x08,0x08,0xf0,0x10,0x08,0x08,0xf0,0x00 -+// 41631 ꊟ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xc0,0x30,0x00,0x00,0xc0,0xc8,0x08,0x08,0xe8,0x00,0x00,0x00,0x00 -+// 41632 ꊠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xa0,0x90,0x80,0xe0,0x88,0x88,0x88,0xe8,0x80,0x80,0x80,0x80,0x00 -+// 41633 ꊡ ; -+,0x00,0x00,0x00,0x06,0x05,0x04,0x04,0x07,0x05,0x04,0x04,0x04,0x05,0x06,0x04,0x00,0x00,0x00,0x10,0x10,0xf0,0x10,0x00,0xf0,0x30,0xa0,0xc0,0xe0,0x30,0x10,0x00,0x00 -+// 41634 ꊢ ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0x01,0x00,0x00,0x00,0xe4,0x24,0x14,0x14,0x18,0x10,0x14,0x14,0x14,0x18,0x30,0x20,0xc0,0x00 -+// 41635 ꊣ ; -+,0x00,0x01,0x00,0x03,0x00,0x00,0x02,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x03,0x00,0x00,0x60,0x00,0x10,0xf0,0x10,0x10,0x90,0x30,0x00,0x10,0xf0,0x30,0x10,0x90,0x70 -+// 41636 ꊤ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x20,0xe0,0x20,0x20,0x20,0x60,0x00,0x20,0xe0,0x20,0x20,0x20,0x60,0x00 -+// 41637 ꊥ ; -+,0x00,0x00,0x03,0x06,0x04,0x04,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x20,0x10,0x08,0x08,0x08,0x00,0x00,0xe0,0x10,0x18,0x08,0x08,0x88,0x00 -+// 41638 ꊦ ; -+,0x00,0x01,0x04,0x04,0x06,0x06,0x06,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x00,0xa0,0x00,0x30,0x30,0x60,0x60,0xf8,0xb0,0x80,0x80,0x40,0x60,0x38,0x30,0x30 -+// 41639 ꊧ ; -+,0x00,0x00,0x04,0x04,0x06,0x06,0x01,0x01,0x01,0x01,0x02,0x02,0x00,0x04,0x04,0x00,0x00,0x00,0x20,0x28,0x68,0x68,0xb8,0xa0,0xa0,0xa8,0xa8,0x68,0x78,0x30,0x20,0x00 -+// 41640 ꊨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x03,0x01,0x01,0x03,0x01,0x00,0x00,0x00,0x00,0xf0,0x60,0xf0,0x00,0xc0,0xc0,0x00,0x40,0x80,0x80,0x40,0x00,0x00 -+// 41641 ꊩ ; -+,0x00,0x01,0x00,0x02,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x05,0x04,0x03,0x00,0x20,0x00,0x10,0x10,0x20,0x20,0xc0,0xc0,0xc0,0xc0,0xc0,0x20,0x20,0x10,0x90 -+// 41642 ꊪ ; -+,0x00,0x00,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x04,0x03,0x00,0x00,0x00,0x10,0x20,0x20,0x20,0xc0,0xc0,0xc0,0xc0,0x40,0x20,0x20,0x30,0x10,0x00 -+// 41643 ꊫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x80,0x00,0x80,0xf0,0x80,0x00,0x80,0xf0,0x80,0x00,0x80,0x70,0x00 -+// 41644 ꊬ ; -+,0x00,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x01,0x00,0x01,0x00,0x02,0x02,0x01,0x00,0xc0,0x20,0x40,0x80,0x00,0x00,0x18,0x20,0xa0,0xe0,0x20,0x30,0x08,0x00,0x00,0xc0 -+// 41645 ꊭ ; -+,0x00,0x00,0x00,0x04,0x05,0x01,0x00,0x04,0x04,0x00,0x01,0x01,0x05,0x04,0x00,0x00,0x00,0x00,0x40,0x80,0x00,0x08,0x10,0xe0,0x60,0x90,0x10,0x0c,0x00,0x80,0x40,0x00 -+// 41646 ꊮ ; -+,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0xf0,0x30,0x10,0x90,0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41647 ꊯ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xc0,0x10,0x08,0x00,0x00,0x80,0xf8,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41648 ꊰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xe0,0x98,0x80,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41649 ꊱ ; -+,0x00,0x0f,0x04,0x04,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x0f,0x00,0xfc,0x08,0x08,0x10,0x20,0x20,0xc0,0xc0,0xc0,0x20,0x20,0x10,0x08,0x08,0xf8 -+// 41650 ꊲ ; -+,0x00,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x04,0x04,0x00,0x10,0x98,0x70,0x10,0x10,0xd0,0x90,0x90,0x90,0x90,0x90,0x90,0x10,0x10,0x10 -+// 41651 ꊳ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x03,0x80,0x00,0x80,0x40,0x20,0x20,0x00,0x00,0x18,0x10,0x00,0x20,0x20,0x20,0x20,0xc0 -+// 41652 ꊴ ; -+,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x80,0x60,0x20,0x04,0x14,0x14,0x18,0x10,0x10,0x10,0x00,0x20,0x20,0x40,0x80 -+// 41653 ꊵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x0f,0x0c,0x04,0x04,0x03,0x00,0x00,0xc0,0x90,0x80,0x80,0x80,0xc0,0x10,0x08,0x08,0xf8,0x08,0x08,0x08,0x30,0xc0 -+// 41654 ꊶ ; -+,0x00,0x01,0x06,0x04,0x08,0x0a,0x09,0x08,0x08,0x0a,0x09,0x08,0x08,0x04,0x02,0x00,0x00,0xc0,0x20,0x10,0x08,0x08,0x08,0x88,0x88,0x08,0x88,0x88,0x10,0x10,0x60,0x00 -+// 41655 ꊷ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x00,0x08,0x08,0x08,0x08,0x00,0x05,0x04,0x02,0x03,0xc0,0x00,0xc0,0x30,0x10,0xc8,0xa8,0x88,0x88,0x88,0x88,0x88,0x88,0x00,0x10,0xe0 -+// 41656 ꊸ ; -+,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x00,0x05,0x04,0x06,0x03,0x00,0x00,0xc0,0x30,0x08,0x48,0x28,0x08,0x00,0x00,0x08,0x08,0x88,0x88,0x18,0x30,0xc0 -+// 41657 ꊹ ; -+,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x06,0x05,0x04,0x04,0x00,0x00,0x00,0x20,0x14,0x94,0x54,0x14,0x14,0x18,0x10,0x10,0x10,0xe0,0x00,0x00,0x00 -+// 41658 ꊺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x03,0x00,0xc0,0x20,0x00,0xc0,0xb0,0x80,0xe0,0xa0,0xa0,0xc0,0x80,0x80,0x80,0x80,0x80,0x80 -+// 41659 ꊻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0xe0,0x90,0x80,0xe0,0xa0,0xa0,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41660 ꊼ ; -+,0x00,0x04,0x02,0x01,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x04,0x04,0x08,0x08,0x00,0x00,0x08,0x10,0x20,0x00,0xc0,0x20,0x30,0x10,0x10,0x08,0x88,0x88,0x88,0x00,0x00 -+// 41661 ꊽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x0f,0x08,0x08,0x08,0x00,0x02,0x02,0x03,0x01,0x00,0x00,0x28,0x28,0x28,0x28,0x28,0xb8,0x38,0x28,0x28,0x28,0x28,0x28,0x40,0x80 -+// 41662 ꊾ ; -+,0x01,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x07,0x06,0x0e,0x02,0x02,0x02,0x01,0x01,0x80,0x00,0xc0,0x20,0x20,0x30,0x30,0x30,0xb0,0x30,0x30,0x30,0x30,0x20,0x20,0xc0 -+// 41663 ꊿ ; -+,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x07,0x06,0x0e,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0xc0,0x20,0x20,0x08,0x28,0x28,0xb8,0x38,0x28,0x28,0x28,0x28,0x20,0x20,0x80 -+// 41664 ꋀ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x04,0x0f,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x00,0x00,0xd0,0x50,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x50,0x50,0x80,0x00 -+// 41665 ꋁ ; -+,0x00,0x01,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0xe0,0x00,0xe0,0x10,0x80,0x48,0x08,0x48,0xc8,0x08,0x08,0x48,0x10,0x30,0xc0 -+// 41666 ꋂ ; -+,0x00,0x00,0x03,0x02,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x02,0x01,0x00,0x00,0x00,0x60,0x10,0xc0,0x48,0x08,0x48,0xc8,0x48,0x08,0x48,0x90,0x10,0xe0,0x00 -+// 41667 ꋃ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x88,0x88,0x88,0xc8,0x30,0x00,0x20,0x20,0xa8,0x88,0x88,0xc8,0x30,0x00 -+// 41668 ꋄ ; -+,0x00,0x00,0x00,0x05,0x09,0x09,0x09,0x05,0x07,0x05,0x08,0x08,0x09,0x05,0x00,0x00,0x00,0x00,0xa0,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x00,0xe0,0x00 -+// 41669 ꋅ ; -+,0x00,0x01,0x00,0x04,0x02,0x02,0x01,0x01,0x04,0x04,0x05,0x01,0x00,0x02,0x00,0x04,0x00,0x20,0x10,0x10,0x30,0x30,0x50,0x58,0x98,0x98,0xd8,0x58,0x30,0x30,0x10,0x10 -+// 41670 ꋆ ; -+,0x00,0x00,0x04,0x00,0x02,0x00,0x01,0x04,0x04,0x04,0x01,0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x10,0x10,0x30,0x30,0x58,0xd8,0x98,0x98,0x58,0x30,0x30,0x10,0x10,0x00 -+// 41671 ꋇ ; -+,0x00,0x00,0x08,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x60,0x50,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00 -+// 41672 ꋈ ; -+,0x00,0x02,0x00,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x20,0x00,0x80,0x48,0x48,0x48,0x48,0x48,0x78,0x48,0x48,0x48,0x48,0x40,0x80 -+// 41673 ꋉ ; -+,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x80,0x48,0x48,0x48,0x48,0x48,0x78,0x48,0x48,0x48,0x48,0x48,0x80,0x00 -+// 41674 ꋊ ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x04,0x06,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x48,0x28,0x38,0x98,0xc8,0x40,0x20,0x10,0x08,0x00 -+// 41675 ꋋ ; -+,0x00,0x01,0x00,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x00,0x60,0x00,0x10,0x30,0x20,0x60,0x50,0xd0,0x90,0xd0,0x50,0x20,0x20,0x10,0x10 -+// 41676 ꋌ ; -+,0x00,0x00,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x20,0xc8,0xc8,0xc8,0xc8,0x28,0x20,0x10,0x10,0x00,0x00 -+// 41677 ꋍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0xc0,0xa0,0x90,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 41678 ꋎ ; -+,0x00,0x01,0x00,0x06,0x03,0x00,0x00,0x03,0x06,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x18,0x30,0xc0,0xc0,0x20,0x18,0x08,0x00,0xf8,0x80,0x00,0x00,0x00 -+// 41679 ꋏ ; -+,0x00,0x00,0x04,0x03,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x30,0xc0,0xc0,0x20,0x10,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00 -+// 41680 ꋐ ; -+,0x00,0x00,0x06,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0x48,0x38,0x18,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41681 ꋑ ; -+,0x00,0x01,0x00,0x02,0x01,0x02,0x00,0x00,0x01,0x06,0x04,0x00,0x04,0x04,0x02,0x00,0x00,0xe0,0x00,0x30,0x18,0x00,0x00,0x60,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xe0 -+// 41682 ꋒ ; -+,0x00,0x00,0x02,0x00,0x02,0x00,0x00,0x03,0x04,0x00,0x08,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x30,0x08,0x40,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41683 ꋓ ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41684 ꋔ ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x00,0x04,0x02,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x30,0x08,0x00,0x20,0x18,0x00,0x00,0x30,0x08,0x00,0x00,0x00 -+// 41685 ꋕ ; -+,0x00,0x01,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x20,0xc0,0x30,0x08,0xc0,0xc0,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00 -+// 41686 ꋖ ; -+,0x00,0x00,0x03,0x04,0x04,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x08,0xc0,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00 -+// 41687 ꋗ ; -+,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x88,0x68,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00 -+// 41688 ꋘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x01,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x80,0x80,0x80,0x90,0xb0,0xd0,0x98,0xd0,0xb0,0x90,0x80,0x80,0xf0,0x00 -+// 41689 ꋙ ; -+,0x00,0x01,0x00,0x04,0x04,0x02,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x04,0x00,0x20,0x00,0x20,0x40,0x40,0xa8,0xa8,0x80,0x00,0xa8,0xa8,0xa8,0x40,0x40,0x20 -+// 41690 ꋚ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x20,0x40,0x40,0x28,0xa8,0x80,0x80,0xa8,0xa8,0x68,0x40,0x40,0x20,0x00 -+// 41691 ꋛ ; -+,0x00,0x00,0x04,0x02,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x02,0x04,0x00,0x00,0x00,0x20,0x20,0x40,0x40,0x44,0x84,0x84,0x80,0x58,0x40,0x40,0x20,0x20,0x00 -+// 41692 ꋜ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x02,0x03,0xc0,0x20,0x00,0x00,0xf0,0x80,0xc0,0xc0,0x80,0xe0,0x80,0xe0,0x10,0x00,0x10,0xe0 -+// 41693 ꋝ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x03,0x00,0x04,0x02,0x03,0x00,0x00,0x00,0x08,0x78,0x10,0xe0,0x80,0x80,0xe0,0xc0,0x70,0x10,0x08,0x10,0xe0,0x00 -+// 41694 ꋞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x01,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x08,0x08,0x10,0xe0,0x20,0x00,0x10,0x10,0x00 -+// 41695 ꋟ ; -+,0x00,0x01,0x00,0x01,0x02,0x02,0x02,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x80,0x20,0xc0,0x20,0x10,0x10,0x10,0x00,0x10,0x10,0x10,0x20,0xc0,0x00,0x08,0x70 -+// 41696 ꋠ ; -+,0x00,0x00,0x01,0x02,0x02,0x06,0x04,0x04,0x07,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x20,0xc0,0x80,0x08,0x70,0x00 -+// 41697 ꋡ ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x02,0x01,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x50,0x50,0x50,0x50,0x40,0x40,0x40,0xc0,0x40,0x48,0x30,0x00 -+// 41698 ꋢ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x05,0x04,0x03,0x80,0x20,0x00,0xe0,0x10,0x00,0x00,0x80,0xe0,0x10,0x10,0x10,0x10,0xe8,0x18,0xe0 -+// 41699 ꋣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x05,0x06,0x03,0x00,0x00,0x00,0xc0,0xb0,0x80,0x80,0x80,0xe0,0x10,0x10,0x10,0x00,0xe8,0x10,0xe0,0x00 -+// 41700 ꋤ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x00,0x00,0x04,0x03,0x00,0x02,0x01,0x00,0x00,0x00,0xc0,0xa0,0x90,0x80,0xa8,0xa8,0xf8,0xa8,0xa8,0x80,0x80,0x80,0x80,0x00 -+// 41701 ꋥ ; -+,0x00,0x01,0x06,0x07,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0xc0,0x20,0x00,0xc0,0x30,0x00,0x80,0x80,0x80,0xf0,0x80,0x80,0x80,0x00,0x00,0x00 -+// 41702 ꋦ ; -+,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0x70,0x00,0x90,0x90,0x90,0xf0,0x90,0x90,0x90,0x00,0x00,0x00,0x00 -+// 41703 ꋧ ; -+,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x20,0x10,0x08,0x00,0x00,0x20,0x10,0x08,0x00,0x00,0x20,0x10,0x08,0x00 -+// 41704 ꋨ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,0x10,0xd0,0xf0,0x80,0x98,0xb8,0xc0,0xc0,0xb8,0x90,0x80,0x80,0x80 -+// 41705 ꋩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xe0,0x80,0x90,0xb0,0xd0,0xd0,0xb0,0x90,0x80,0x80,0x80,0x00 -+// 41706 ꋪ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x10,0xd0,0x10,0x10,0x10,0x10,0x10,0xf0,0x70,0x90,0x10,0x10,0x10,0x10,0x00 -+// 41707 ꋫ ; -+,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x07,0x05,0x05,0x05,0x05,0x05,0x01,0x00,0x60,0x40,0xa0,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41708 ꋬ ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xa0,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41709 ꋭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0xc0,0x80,0xe0,0x10,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00 -+// 41710 ꋮ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x02,0x02,0x40,0x20,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0xf8,0x00,0x10,0x10,0x10,0x10,0x10 -+// 41711 ꋯ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0xf8,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41712 ꋰ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x80,0x90,0x90,0x90,0x90,0xa0,0xe0,0x80,0x90,0x90,0x90,0x80,0x80,0x00 -+// 41713 ꋱ ; -+,0x00,0x01,0x00,0x04,0x04,0x05,0x05,0x04,0x04,0x07,0x04,0x05,0x05,0x04,0x02,0x01,0x00,0xa0,0x00,0x20,0x20,0x28,0x28,0x28,0x30,0xf0,0x28,0x28,0x28,0x08,0x40,0x80 -+// 41714 ꋲ ; -+,0x00,0x00,0x04,0x04,0x05,0x05,0x04,0x04,0x07,0x04,0x05,0x05,0x05,0x02,0x03,0x00,0x00,0x00,0x20,0x28,0x28,0x20,0x28,0x28,0xf0,0x28,0x28,0x28,0x28,0x40,0x80,0x00 -+// 41715 ꋳ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x10,0x30,0x10,0x08,0x08,0x48,0x50,0x80,0x00 -+// 41716 ꋴ ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0xf0,0xc0,0x00,0x00,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x80,0x00 -+// 41717 ꋵ ; -+,0x00,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x01,0x00,0x20,0x00,0x00,0xf0,0x80,0x00,0x00,0x60,0x00,0x00,0xf0,0x00,0x00,0x00,0x80 -+// 41718 ꋶ ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0xf0,0x80,0x00,0x00,0x60,0x10,0x00,0xf0,0x80,0x00,0x80,0x80,0x00 -+// 41719 ꋷ ; -+,0x00,0x00,0x03,0x00,0x04,0x08,0x08,0x02,0x06,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x00,0x00,0x50,0x50,0x00,0x00,0x50,0x50,0x50,0x00,0x00,0x00 -+// 41720 ꋸ ; -+,0x00,0x01,0x00,0x01,0x01,0x04,0x04,0x02,0x00,0x02,0x01,0x01,0x00,0x01,0x03,0x02,0x00,0x20,0x00,0x20,0x20,0xc0,0xc8,0xc8,0x00,0x10,0x20,0xe0,0xc0,0xe0,0x20,0x10 -+// 41721 ꋹ ; -+,0x00,0x00,0x01,0x01,0x00,0x04,0x04,0x00,0x00,0x03,0x01,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x20,0x20,0xc8,0xc8,0xc8,0x00,0x00,0x10,0xe0,0xc0,0xc0,0x20,0x10,0x00 -+// 41722 ꋺ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x03,0xc0,0x20,0x00,0x08,0x48,0x38,0x00,0x00,0x00,0xc0,0x30,0x08,0x08,0x08,0x18,0xf0 -+// 41723 ꋻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0xc0,0xf0,0x80,0x80,0x80,0xc0,0x70,0x08,0x08,0x08,0x18,0xe0,0x00 -+// 41724 ꋼ ; -+,0x00,0x01,0x00,0x00,0x07,0x00,0x06,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xc0,0x20,0x00,0x00,0xf8,0xc0,0x00,0xc0,0x38,0x00,0x20,0x20,0x20,0x20,0x00,0x00 -+// 41725 ꋽ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xc0,0xc0,0x00,0x80,0x38,0x00,0x20,0x20,0x20,0x20,0x00,0x00,0x00 -+// 41726 ꋾ ; -+,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0xe0,0xc0,0xc0,0xc8,0xc8,0x38,0x00,0x00,0xc0,0xc0,0x00,0x00 -+// 41727 ꋿ ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0xc0,0xc0,0x48,0xc8,0xf8,0x00,0x00,0xc0,0xf0,0x00,0x00,0x00 -+// 41728 ꌀ ; -+,0x00,0x00,0x00,0x01,0x04,0x07,0x01,0x00,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x08,0x38,0x20,0xc0,0x00,0xe0,0xc0,0xf0,0x00,0x00,0x00,0x00 -+// 41729 ꌁ ; -+,0x00,0x01,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0 -+// 41730 ꌂ ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0xf8,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x90,0xe0,0x00 -+// 41731 ꌃ ; -+,0x00,0x00,0x00,0x04,0x01,0x05,0x04,0x00,0x00,0x00,0x05,0x01,0x01,0x04,0x00,0x00,0x00,0x00,0x70,0x80,0x00,0x00,0x80,0x50,0x70,0x80,0x00,0x00,0x00,0x80,0x70,0x00 -+// 41732 ꌄ ; -+,0x00,0x02,0x02,0x02,0x02,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x02,0x02,0x80,0x20,0x00,0x30,0x60,0x80,0xc0,0x20,0x00,0x10,0x20,0x60,0x80,0x80,0x60,0x18 -+// 41733 ꌅ ; -+,0x00,0x00,0x02,0x02,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x03,0x03,0x02,0x02,0x00,0x00,0x00,0x30,0xc0,0x00,0xc0,0x20,0x20,0x20,0x20,0x40,0x80,0x80,0x40,0x30,0x00 -+// 41734 ꌆ ; -+,0x00,0x00,0x03,0x04,0x04,0x06,0x07,0x00,0x00,0x07,0x07,0x04,0x04,0x02,0x01,0x00,0x00,0x80,0x30,0x10,0x28,0x28,0xf8,0x28,0x28,0x28,0x38,0x28,0x08,0x10,0xe0,0x00 -+// 41735 ꌇ ; -+,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x80,0x20,0x00,0x08,0x28,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0 -+// 41736 ꌈ ; -+,0x00,0x00,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x06,0x01,0x00,0x00,0x00,0x08,0x28,0x28,0x28,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41737 ꌉ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x09,0x0b,0x0b,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41738 ꌊ ; -+,0x00,0x01,0x00,0x03,0x02,0x07,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x02,0x04,0x00,0x00,0x20,0x80,0x30,0x18,0xf8,0x08,0x08,0x08,0x18,0x08,0x30,0xe0,0x10,0x08,0x08 -+// 41739 ꌋ ; -+,0x00,0x00,0x03,0x02,0x07,0x04,0x04,0x04,0x07,0x04,0x02,0x01,0x03,0x04,0x04,0x00,0x00,0x00,0x30,0x08,0xf8,0x08,0x08,0x08,0xf8,0x08,0x10,0xe0,0xf0,0x08,0x08,0x00 -+// 41740 ꌌ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x60,0x10,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 41741 ꌍ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x02,0x02,0x04,0x04,0x05,0x00,0xc0,0x20,0x00,0x08,0x08,0x08,0x10,0xb0,0xc0,0x00,0x00,0x00,0x00,0x00,0x80,0xc0 -+// 41742 ꌎ ; -+,0x00,0x00,0x04,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x02,0x04,0x05,0x05,0x02,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x50,0xe0,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x00 -+// 41743 ꌏ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x02,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0x00,0x80,0xc0,0x60,0xa0,0xa0,0x20,0x00 -+// 41744 ꌐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x80,0xf0,0x80,0x80,0xc0,0x80,0x80,0xf0,0x80,0x80,0xc0,0xb0,0x80,0x00 -+// 41745 ꌑ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0x01,0x00,0x00,0x60,0x00,0x00,0x00,0x50,0x70,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x80,0x80 -+// 41746 ꌒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x50,0x00,0x00,0x00,0x00,0x10,0x70,0x10,0x00,0x80,0x00 -+// 41747 ꌓ ; -+,0x00,0x00,0x02,0x04,0x00,0x01,0x02,0x04,0x00,0x08,0x08,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x48,0x28,0x08,0xb8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0xc0,0x00 -+// 41748 ꌔ ; -+,0x00,0x03,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x60,0x00,0x00,0xc0,0x30,0x00,0x00,0x90,0x90,0x90,0x90,0x90,0x00,0x00,0x00 -+// 41749 ꌕ ; -+,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xe0,0x10,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 41750 ꌖ ; -+,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xe0,0x10,0x00,0x00,0x90,0x60,0x60,0x60,0x90,0x00,0x00,0x00,0x00 -+// 41751 ꌗ ; -+,0x00,0x00,0x00,0x04,0x08,0x08,0x04,0x06,0x01,0x00,0x00,0x01,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x18,0x00,0x40,0x00,0x00,0xc0,0x30,0x18,0x88,0x08,0x10,0x30,0x00 -+// 41752 ꌘ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x01,0x00,0x00,0x02,0x01,0x00,0x00,0x20,0x00,0xc0,0xa0,0x80,0x80,0x80,0xb0,0x80,0x80,0x80,0x90,0x80,0x80,0x80 -+// 41753 ꌙ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x03,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x40,0x20,0x00,0x00,0x00,0x20,0x18,0x00,0x00,0x10,0x08,0x80,0x80,0x00 -+// 41754 ꌚ ; -+,0x00,0x00,0x00,0x04,0x05,0x05,0x04,0x03,0x01,0x00,0x01,0x01,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x18,0x00,0x40,0x00,0x00,0xe0,0x30,0x08,0x48,0x08,0x10,0xe0,0x00 -+// 41755 ꌛ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x30,0x20,0x20,0xa0,0x20,0x20,0x20,0xe0,0x20,0x20,0x20,0x20 -+// 41756 ꌜ ; -+,0x00,0x00,0x02,0x02,0x02,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x02,0x02,0x02,0x00,0x00,0x20,0x20,0x30,0x00,0xc0,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00 -+// 41757 ꌝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x05,0x05,0x05,0x01,0x01,0x00,0x00,0x00,0x40,0x50,0x50,0x50,0x40,0x40,0x40,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 41758 ꌞ ; -+,0x00,0x00,0x04,0x02,0x03,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x03,0x02,0x04,0x00,0x00,0x00,0x08,0x10,0x30,0xc0,0x00,0x88,0xc8,0xc8,0x30,0x80,0x20,0x10,0x08,0x00 -+// 41759 ꌟ ; -+,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x01,0x00,0x40,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0xf0,0x80,0x80,0x80,0x80,0x80,0x80 -+// 41760 ꌠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41761 ꌡ ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x0f,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0xc0,0x00 -+// 41762 ꌢ ; -+,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x07,0x02,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x80,0x80 -+// 41763 ꌣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x00,0x00,0x00,0x00,0x80,0xc0,0x00 -+// 41764 ꌤ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x30,0xc0,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00 -+// 41765 ꌥ ; -+,0x00,0x01,0x00,0x04,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0xc0,0x20,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0x80,0x80,0x80,0x80,0x00,0x80,0x80 -+// 41766 ꌦ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0x80,0x80,0x80,0x80,0x00,0x80,0x80,0x00 -+// 41767 ꌧ ; -+,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x0e,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x80,0x00,0x00,0x00 -+// 41768 ꌨ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x08,0x08,0x08,0x10,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41769 ꌩ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41770 ꌪ ; -+,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x00,0x00,0x04,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0xb8,0x80,0x00,0x08,0x08,0x08,0x88,0x80,0x00,0x00,0x00,0x00 -+// 41771 ꌫ ; -+,0x00,0x01,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x20,0x00,0x08,0x08,0xc8,0x18,0x40,0x40,0x40,0x60,0x40,0x40,0x40,0x00,0x00 -+// 41772 ꌬ ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xf0,0x10,0x40,0x40,0x40,0xf0,0x40,0x40,0x40,0x40,0x00,0x00 -+// 41773 ꌭ ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x01,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x90,0xf0,0x10,0x00,0x20,0x20,0xf0,0x20,0x20,0x00,0x00,0x00,0x00 -+// 41774 ꌮ ; -+,0x00,0x01,0x00,0x04,0x05,0x04,0x04,0x04,0x00,0x02,0x02,0x00,0x02,0x02,0x00,0x00,0x00,0xe0,0x00,0x08,0x08,0xc8,0xe8,0x88,0x80,0x80,0x80,0x80,0x80,0x00,0x50,0x20 -+// 41775 ꌯ ; -+,0x00,0x00,0x0c,0x07,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x78,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x50,0x20,0x00 -+// 41776 ꌰ ; -+,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x08,0xc8,0x78,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0xf0,0x00 -+// 41777 ꌱ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x80,0x88,0xc8,0xc8,0xf0,0x00,0x20,0x20,0xe4,0xc0,0xc8,0xc8,0x38,0x00 -+// 41778 ꌲ ; -+,0x00,0x01,0x00,0x00,0x03,0x04,0x04,0x04,0x03,0x04,0x04,0x01,0x06,0x04,0x04,0x00,0x00,0xe0,0x00,0x00,0xf0,0x08,0x08,0x08,0xf0,0x08,0x08,0xe0,0x08,0x08,0x08,0xe0 -+// 41779 ꌳ ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x04,0x04,0x01,0x06,0x08,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x30,0x08,0x08,0xf0,0x80,0x80,0xc0,0x18,0x08,0x08,0xe0,0x00,0x00 -+// 41780 ꌴ ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x07,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x38,0x08,0x08,0xf0,0x80,0xf8,0xc0,0x18,0x08,0x08,0xf0,0x00,0x00 -+// 41781 ꌵ ; -+,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0xb8,0x80,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41782 ꌶ ; -+,0x00,0x01,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x60,0x10,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x10,0xe0 -+// 41783 ꌷ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x30,0x10,0x08,0x08,0x08,0x08,0xf8,0x88,0x88,0x88,0x88,0x90,0xe0,0x00 -+// 41784 ꌸ ; -+,0x00,0x04,0x06,0x04,0x04,0x04,0x05,0x04,0x06,0x06,0x04,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x30,0xa0,0x20,0x20,0xa0,0x60,0x60,0x60,0x60,0xa0,0x20,0x20,0x20,0x00 -+// 41785 ꌹ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0xc0,0x20,0x00,0xe0,0x98,0x80,0x80,0x80,0xc0,0xa0,0x90,0x90,0x90,0x80,0x80,0x80 -+// 41786 ꌺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x60,0x18,0x00,0x00,0x00,0x40,0x20,0x10,0x10,0x00,0x00,0x00,0x80,0x00 -+// 41787 ꌻ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x02,0x01,0x00,0x00,0xc0,0x30,0x18,0x08,0x68,0x08,0x48,0x48,0x28,0x08,0x88,0x08,0x10,0xe0,0x00 -+// 41788 ꌼ ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0xf8,0x20,0x20,0x20,0x38,0x20,0x20,0x20,0xa0,0x60,0x00,0x00,0x00 -+// 41789 ꌽ ; -+,0x00,0x01,0x00,0x04,0x05,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0xf8,0x00,0x00,0x80,0x80,0x00,0x00,0x00,0x80,0x20,0x00,0x00 -+// 41790 ꌾ ; -+,0x00,0x00,0x04,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0xf8,0x20,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x60,0x00,0x00,0x00 -+// 41791 ꌿ ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x01,0x0c,0x0b,0x09,0x0a,0x0a,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x50,0xe0,0x10,0xe0,0x00,0x80,0xe0,0x30,0x10,0x10,0x08,0x08,0x00 -+// 41792 ꍀ ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x28,0x38,0x0c,0x04,0x00,0x04,0x04,0x04,0x00 -+// 41793 ꍁ ; -+,0x01,0x02,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x06,0x01,0x0e,0x01,0x00,0x00,0xc0,0x00,0x00,0xe0,0x90,0x80,0xf8,0x80,0xf0,0x80,0x80,0xf8,0x80,0x80,0x00,0x00 -+// 41794 ꍂ ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x00,0x04,0x01,0x0c,0x0f,0x08,0x08,0x08,0x40,0x70,0x48,0x40,0xfc,0x40,0x40,0x7c,0x40,0x40,0xfc,0x40,0xc0,0x80,0x00,0x00 -+// 41795 ꍃ ; -+,0x00,0x00,0x04,0x01,0x01,0x01,0x07,0x01,0x01,0x01,0x08,0x0c,0x09,0x08,0x08,0x08,0x04,0x24,0x14,0x10,0x10,0x14,0xd4,0x14,0x10,0x10,0x10,0x14,0xe4,0x04,0x00,0x00 -+// 41796 ꍄ ; -+,0x00,0x00,0x03,0x04,0x00,0x00,0x08,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x30,0xc8,0xc8,0x88,0x88,0x80,0x80,0x80,0xf0,0x00,0x90,0x90,0x90,0x90 -+// 41797 ꍅ ; -+,0x03,0x04,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x88,0xc4,0xc4,0xc4,0x40,0x40,0x40,0x40,0xf8,0x00,0x00,0x08,0x08,0x08,0x08 -+// 41798 ꍆ ; -+,0x01,0x04,0x04,0x00,0x08,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x04,0x04,0x03,0x04,0x90,0x60,0x68,0x68,0x20,0x38,0x00,0x00,0x3c,0x30,0x68,0x68,0x60,0x70,0x8c -+// 41799 ꍇ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x0c,0x09,0x08,0x08,0x00,0x02,0x00,0x00,0x00,0xc0,0x00,0x00,0x80,0x00,0x00,0x00,0x08,0x08,0x68,0x18,0x08,0x00,0x00,0x00,0x80 -+// 41800 ꍈ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x0b,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x10,0x10,0x04,0x04,0xc4,0x3c,0x0c,0x10,0x10,0x00,0x80,0x80 -+// 41801 ꍉ ; -+,0x00,0x00,0x00,0x06,0x01,0x01,0x00,0x04,0x04,0x04,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x04,0x44,0x74,0x4c,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x44,0x54,0x44,0x04 -+// 41802 ꍊ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x06,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,0x60,0x50,0x48,0x40,0x40,0x40,0x40,0xf8,0x40,0x40,0x40,0x40,0x40 -+// 41803 ꍋ ; -+,0x00,0x01,0x01,0x01,0x09,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x48,0x4c,0x40,0x40,0x40,0x40,0x40,0xf8,0x40,0x40,0x40,0x40,0x40,0x40 -+// 41804 ꍌ ; -+,0x00,0x01,0x06,0x04,0x00,0x04,0x06,0x01,0x00,0x04,0x04,0x04,0x00,0x08,0x04,0x03,0x18,0xc8,0x08,0x08,0x08,0x08,0x08,0xc8,0x18,0x08,0x08,0x08,0x08,0x08,0x10,0xe0 -+// 41805 ꍍ ; -+,0x00,0x01,0x01,0x09,0x06,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x04,0x04,0x08,0x08,0x40,0x60,0x58,0x40,0x40,0x40,0x40,0x40,0x40,0xe0,0x50,0x48,0x44,0x44,0x44,0x40 -+// 41806 ꍎ ; -+,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0xc0,0x20,0x00,0x30,0xe8,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x20,0x20,0x20 -+// 41807 ꍏ ; -+,0x06,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x00,0x98,0x76,0x10,0x10,0x10,0x90,0x90,0x90,0x10,0x10,0x10,0xf0,0x10,0x10,0x10 -+// 41808 ꍐ ; -+,0x00,0x00,0x02,0x00,0x01,0x01,0x04,0x07,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x00,0x00,0x00,0x10,0x20,0x20,0x20,0xc0,0xc8,0xc8,0xf8,0xc8,0x20,0x20,0x20,0x10,0x00 -+// 41809 ꍑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0x10,0x10,0x10,0x00,0x00,0x08,0x08,0x10,0xe0,0x00 -+// 41810 ꍒ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x08,0x08,0x10,0xe0 -+// 41811 ꍓ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x08,0x08,0x10,0xe0,0x00 -+// 41812 ꍔ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0x28,0x28,0x28,0x08,0x08,0x08,0x28,0x28,0x28,0x08,0x10,0xe0,0x00 -+// 41813 ꍕ ; -+,0x00,0x00,0x03,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x70,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xa0,0x70,0x20,0x20,0x00 -+// 41814 ꍖ ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x04,0x03,0x02,0x04,0x08,0x00,0x04,0x03,0x00,0x20,0x00,0xe8,0xa8,0x28,0x08,0x10,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x80 -+// 41815 ꍗ ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x03,0x01,0x04,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x58,0xe8,0x68,0x48,0x50,0x40,0xc0,0xc0,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41816 ꍘ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x07,0x05,0x05,0x05,0x05,0x02,0x00,0x00,0x00,0xc0,0x00,0x20,0x00,0xc0,0x00,0x00,0x38,0x28,0x28,0x28,0x28,0x10,0x00 -+// 41817 ꍙ ; -+,0x00,0x01,0x00,0x01,0x01,0x05,0x03,0x01,0x01,0x05,0x03,0x01,0x01,0x05,0x03,0x01,0x00,0x20,0x00,0xa8,0x68,0x28,0x28,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41818 ꍚ ; -+,0x00,0x00,0x01,0x01,0x05,0x03,0x01,0x01,0x05,0x03,0x01,0x01,0x01,0x07,0x01,0x00,0x00,0x00,0x88,0x68,0x28,0x28,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41819 ꍛ ; -+,0x00,0x00,0x03,0x04,0x04,0x07,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0xe0,0x18,0x00,0x00,0xf0,0x18,0x10,0xe0,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 41820 ꍜ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x00,0x00,0x20,0x00,0x08,0x08,0x08,0x10,0xe0,0x90,0x10,0xc0,0xe0,0x10,0x08,0x08,0x00 -+// 41821 ꍝ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xe0,0x10,0x10,0xc0,0xf0,0x18,0x08,0x08,0x00,0x00 -+// 41822 ꍞ ; -+,0x00,0x00,0x07,0x04,0x04,0x00,0x04,0x07,0x04,0x04,0x00,0x06,0x07,0x04,0x04,0x00,0x00,0x00,0x08,0xc8,0x38,0x00,0x00,0x08,0xc8,0x38,0x00,0x00,0x88,0x68,0x18,0x00 -+// 41823 ꍟ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x20,0x00,0xf0,0x88,0x80,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0x98,0xc0 -+// 41824 ꍠ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x08,0x00,0x00,0x00,0x80,0xf8,0x00,0x00,0x00,0x00,0x18,0xc0,0x00 -+// 41825 ꍡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x01,0x02,0x06,0x04,0x00,0x00,0x00,0x00,0x40,0x20,0x18,0xc0,0xd0,0xa0,0xc0,0xc0,0xe0,0xb0,0x98,0x80,0x00,0x00 -+// 41826 ꍢ ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x02,0x03,0x00,0x01,0x02,0x04,0x04,0x00,0x00,0x20,0x00,0x60,0x10,0xe8,0x10,0x00,0x00,0xf0,0xc0,0xe0,0x10,0x08,0x08,0x00 -+// 41827 ꍣ ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x03,0x00,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x60,0x90,0xe8,0x90,0x80,0x90,0xf0,0xc0,0xe0,0x90,0x88,0x08,0x08,0x00 -+// 41828 ꍤ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0x10,0xe0,0xc0,0xe0,0x10,0x08,0x08,0x00,0x00 -+// 41829 ꍥ ; -+,0x00,0x00,0x00,0x06,0x05,0x04,0x05,0x05,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x30,0xf0,0x70,0x08,0x20,0x20,0xe0,0x20,0x20,0x20,0x20,0x00,0x00 -+// 41830 ꍦ ; -+,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x04,0x02,0x00,0x00,0x20,0x00,0x10,0x88,0x00,0x00,0x40,0x60,0x20,0x00,0x00,0x00,0x40,0x60,0x00 -+// 41831 ꍧ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x03,0x03,0x01,0x01,0x01,0x01,0x07,0x01,0x00,0x00,0x00,0x10,0x98,0x00,0x00,0x00,0x60,0x20,0x00,0x00,0x00,0x00,0x60,0x20,0x00 -+// 41832 ꍨ ; -+,0x00,0x00,0x00,0x04,0x00,0x02,0x01,0x00,0x00,0x01,0x01,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x80,0x90,0x10,0x30,0x50,0xd0,0x98,0xd0,0x50,0x30,0x10,0x90,0x80,0x00 -+// 41833 ꍩ ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x10,0x98,0x00,0x00,0x80,0x00,0xe0,0x00,0x80,0x00,0x00,0x60,0x20,0x00 -+// 41834 ꍪ ; -+,0x00,0x01,0x00,0x06,0x05,0x04,0x04,0x00,0x00,0x04,0x05,0x04,0x04,0x00,0x00,0x00,0x00,0x20,0x00,0x08,0x88,0xe8,0x08,0x00,0x00,0x08,0x88,0xe8,0x18,0x08,0x00,0x00 -+// 41835 ꍫ ; -+,0x00,0x00,0x06,0x05,0x04,0x04,0x00,0x00,0x04,0x05,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0xe8,0x18,0x00,0x00,0x08,0x88,0xc8,0x18,0x08,0x00,0x00,0x00 -+// 41836 ꍬ ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x03,0x00,0x00,0x00,0x30,0xa8,0x20,0x20,0x20,0x20,0xe0,0x20,0x20,0x20,0x20,0x60,0x20,0x00 -+// 41837 ꍭ ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x04,0x04,0x00,0x01,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0xf8,0x10,0x20,0xe0,0xc0,0xc0,0xc0,0xe0,0x20,0x10,0x18,0x08,0x00,0x00 -+// 41838 ꍮ ; -+,0x00,0x01,0x00,0x06,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x00,0x00,0x20,0x00,0x10,0x10,0x20,0x60,0xc0,0xc0,0xc0,0x20,0x30,0x10,0x08,0x08,0x00 -+// 41839 ꍯ ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0xf8,0x10,0x20,0x20,0xc0,0xc0,0xc0,0x20,0x20,0x10,0x18,0x08,0x00,0x00 -+// 41840 ꍰ ; -+,0x00,0x02,0x02,0x02,0x01,0x07,0x05,0x04,0x04,0x01,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x10,0x20,0xa0,0xc0,0xe0,0xf8,0x20,0x30,0x10,0x08,0x08,0x00,0x00 -+// 41841 ꍱ ; -+,0x00,0x01,0x00,0x06,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x00,0x00,0x04,0x04,0x03,0x00,0x20,0x00,0x80,0x40,0x40,0x58,0x78,0x78,0x58,0x78,0x58,0x58,0x40,0x40,0x80 -+// 41842 ꍲ ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x80,0x40,0x50,0x58,0x78,0x78,0x58,0x78,0x58,0x58,0x40,0x40,0x80,0x00 -+// 41843 ꍳ ; -+,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x40,0x50,0x10,0x10,0x20,0x20,0x00,0x38,0x00,0x10,0x50,0x50,0x80,0x00 -+// 41844 ꍴ ; -+,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x03,0x03,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x20,0x00,0x08,0xa8,0x48,0x40,0x40,0x40,0x40,0x40,0x40,0x48,0x18,0x28,0x08 -+// 41845 ꍵ ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x07,0x01,0x00,0x00,0x00,0x06,0x02,0x00,0x00,0x00,0x00,0x08,0xa8,0x18,0x00,0x00,0x80,0x00,0x00,0x00,0x08,0x38,0x08,0x08,0x00 -+// 41846 ꍶ ; -+,0x00,0x00,0x03,0x00,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x10,0xf0,0xd0,0xc0,0x40,0x40,0xc0,0xc0,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 41847 ꍷ ; -+,0x00,0x00,0x0c,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0xc0,0x78,0x08,0x00,0x00,0xe0,0x10,0x00,0x08,0x08,0x10,0xe0 -+// 41848 ꍸ ; -+,0x00,0x0c,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0xc0,0x78,0x0c,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41849 ꍹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0xf8,0x88,0x88,0x88,0x88,0x08,0x08,0xc8,0x18,0x00 -+// 41850 ꍺ ; -+,0x00,0x01,0x00,0x03,0x00,0x00,0x01,0x06,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,0x08,0xe8,0x98,0x80,0x00,0x00,0x00,0xf8,0x00,0xc0,0xc0,0x00,0x00 -+// 41851 ꍻ ; -+,0x00,0x00,0x02,0x01,0x00,0x01,0x06,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0xe8,0x98,0x80,0x00,0x00,0x00,0xf8,0x00,0x80,0xf8,0x00,0x00,0x00 -+// 41852 ꍼ ; -+,0x00,0x00,0x00,0x05,0x05,0x05,0x07,0x05,0x05,0x01,0x01,0x01,0x01,0x01,0x05,0x01,0x00,0x00,0x00,0xb0,0x68,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20 -+// 41853 ꍽ ; -+,0x00,0x00,0x00,0x00,0x07,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x10,0x98,0x70,0xb0,0x90,0x10,0x10,0x10,0x10,0x10,0x90,0x90,0x90,0x90,0x00 -+// 41854 ꍾ ; -+,0x00,0x00,0x00,0x00,0x02,0x05,0x09,0x09,0x09,0x05,0x00,0x00,0x00,0x01,0x01,0x00,0xc0,0x20,0x40,0x40,0x50,0x50,0x50,0x50,0x40,0x78,0x40,0x50,0x50,0x50,0xd0,0xc0 -+// 41855 ꍿ ; -+,0x00,0x00,0x00,0x06,0x05,0x09,0x09,0x09,0x07,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0x40,0x50,0x50,0x50,0x40,0x40,0x78,0x40,0x50,0x50,0x50,0x50,0xc0,0x40 -+// 41856 ꎀ ; -+,0x00,0x00,0x01,0x01,0x05,0x05,0x05,0x05,0x05,0x01,0x01,0x01,0x05,0x03,0x01,0x00,0x00,0x00,0x00,0x88,0x08,0x48,0x70,0x00,0xf8,0x30,0x40,0x08,0x88,0x08,0x00,0x00 -+// 41857 ꎁ ; -+,0x00,0x01,0x00,0x01,0x03,0x02,0x03,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x60,0x00,0xe0,0x10,0x10,0xf8,0x08,0x08,0xf8,0x08,0x08,0xc8,0xc8,0xc8,0x20 -+// 41858 ꎂ ; -+,0x00,0x00,0x01,0x01,0x02,0x03,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xe0,0x10,0x10,0xf8,0x08,0x08,0xf8,0x08,0x08,0x08,0x88,0xc8,0x30,0x00 -+// 41859 ꎃ ; -+,0x00,0x00,0x01,0x04,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf0,0x00,0x00,0x00 -+// 41860 ꎄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x07,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x78,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41861 ꎅ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xc0,0x00,0xf0,0x08,0x08,0x08,0x08,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0xf0 -+// 41862 ꎆ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x08,0xf8,0x00 -+// 41863 ꎇ ; -+,0x00,0x00,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x88,0xe8,0x18,0x08,0x00,0xf0,0x00,0x00,0x00,0x80,0x00,0x00 -+// 41864 ꎈ ; -+,0x00,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x30,0x30,0x10,0x00 -+// 41865 ꎉ ; -+,0x00,0x01,0x00,0x05,0x05,0x01,0x05,0x05,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x00,0x28,0x28,0x28,0x28,0x28,0x10,0x20,0xc0,0x20,0x20,0x20,0x20,0xc0 -+// 41866 ꎊ ; -+,0x00,0x00,0x05,0x05,0x01,0x01,0x05,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0x28,0x10,0x20,0xc0,0x00,0x20,0x20,0x00,0xc0,0x00 -+// 41867 ꎋ ; -+,0x00,0x00,0x03,0x03,0x03,0x03,0x00,0x00,0x07,0x00,0x00,0x02,0x03,0x03,0x02,0x00,0x00,0x00,0xf0,0x30,0x30,0x10,0xc0,0xc8,0xf8,0xc8,0xc0,0x10,0x30,0x30,0xd8,0x00 -+// 41868 ꎌ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x80,0x20,0x00,0x40,0x20,0x20,0x10,0x10,0x80,0x80,0x80,0x10,0x10,0x20,0x40,0xc0 -+// 41869 ꎍ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x00,0x10,0x10,0x08,0x08,0x00,0x10,0x10,0x20,0x60,0x40,0x00 -+// 41870 ꎎ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x05,0x04,0x04,0x00,0x00,0x00,0x00,0x40,0x50,0x50,0x50,0xf0,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00 -+// 41871 ꎏ ; -+,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x00,0x60,0x00,0x40,0x40,0x40,0x40,0x50,0x50,0x50,0x50,0x50,0xd0,0x00,0x00,0x00 -+// 41872 ꎐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x50,0x50,0x50,0x50,0x50,0xd0,0x00,0x00,0x00,0x00 -+// 41873 ꎑ ; -+,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x04,0x03,0x03,0x04,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x40,0xe0,0x10,0x00,0x00,0x00,0xa0,0xa0,0x20,0x00,0x00,0x00,0xc0,0x00 -+// 41874 ꎒ ; -+,0x00,0x01,0x00,0x00,0x02,0x07,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x00,0x20,0x00,0x08,0x48,0x58,0x40,0x40,0x40,0x40,0xc0,0x50,0x48,0x48,0x40,0x40 -+// 41875 ꎓ ; -+,0x00,0x00,0x02,0x02,0x07,0x02,0x02,0x00,0x00,0x01,0x03,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x48,0x70,0x00,0x00,0x00,0x00,0xc0,0x30,0x10,0x08,0x08,0x00,0x00 -+// 41876 ꎔ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x20,0x10,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41877 ꎕ ; -+,0x00,0x01,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x01,0x01,0x80,0x20,0x80,0x20,0x08,0x18,0x18,0x10,0x10,0xf8,0x10,0x10,0x18,0x18,0x20,0xc0 -+// 41878 ꎖ ; -+,0x00,0x00,0x01,0x06,0x06,0x06,0x02,0x02,0x07,0x02,0x02,0x06,0x06,0x01,0x01,0x00,0x00,0x00,0x20,0x10,0x10,0x10,0x10,0x10,0xf8,0x10,0x10,0x10,0x10,0x10,0xe0,0x00 -+// 41879 ꎗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x30,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00 -+// 41880 ꎘ ; -+,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0xa0,0x60,0x90,0x08,0x88,0x88,0xc8,0x88,0x88,0x08,0x08,0x88,0x70,0x00,0x00 -+// 41881 ꎙ ; -+,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x05,0x04,0x04,0x00,0x00,0x00,0xf0,0x08,0x08,0x88,0x88,0xc8,0x88,0x88,0x08,0x08,0xf8,0x00,0x00,0x00 -+// 41882 ꎚ ; -+,0x00,0x00,0x02,0x02,0x03,0x07,0x05,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0xf0,0x18,0x28,0xe8,0x08,0x08,0x08,0x08,0x88,0x70,0x00,0x00 -+// 41883 ꎛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x78,0x00,0xc0,0xc0,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00 -+// 41884 ꎜ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x0e,0x0e,0x08,0xc0,0x20,0x00,0x08,0x18,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10 -+// 41885 ꎝ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x06,0x04,0x04,0x00,0x00,0x00,0x08,0x18,0x18,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41886 ꎞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x40,0x20,0x00,0x30,0xe0,0xc0,0xc0,0xc0,0x40,0x60,0x30,0x00,0xc0,0x00 -+// 41887 ꎟ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0xc0,0x20,0xe8,0xa8,0xb8,0x20,0x20,0xa8,0xe8,0xb8,0xa8,0x20,0xc0,0x00 -+// 41888 ꎠ ; -+,0x00,0x01,0x00,0x00,0x05,0x04,0x04,0x05,0x02,0x00,0x07,0x04,0x04,0x04,0x07,0x00,0x00,0x20,0x00,0x30,0x28,0xa0,0xa0,0x20,0x20,0x20,0x20,0xa0,0xa0,0x20,0x20,0x20 -+// 41889 ꎡ ; -+,0x00,0x00,0x00,0x05,0x04,0x05,0x05,0x02,0x00,0x02,0x05,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x20,0x30,0x28,0xe0,0x20,0x20,0x20,0x20,0x20,0xe0,0x20,0x20,0x20,0x00 -+// 41890 ꎢ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x02,0x07,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x00,0x10,0xc0,0x10,0x38,0x10,0x10,0x00,0x80,0x00,0x00,0x00 -+// 41891 ꎣ ; -+,0x00,0x01,0x00,0x03,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x20,0x00,0x30,0x08,0x08,0x08,0x08,0x10,0xe0,0x00,0x00,0x00,0x00,0x80,0x80 -+// 41892 ꎤ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0xf0,0x08,0x08,0x08,0x08,0x18,0xe0,0x40,0x40,0x40,0x40,0x40,0x80,0x00 -+// 41893 ꎥ ; -+,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x01,0x06,0x04,0x00,0x02,0x03,0x02,0x02,0x00,0x00,0x00,0x80,0x88,0xb8,0xe8,0xc8,0xe8,0x98,0x88,0x80,0x80,0x80,0x00,0x00,0x00 -+// 41894 ꎦ ; -+,0x00,0x03,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x06,0x02,0x02,0x80,0x20,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41895 ꎧ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41896 ꎨ ; -+,0x00,0x00,0x00,0x04,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 41897 ꎩ ; -+,0x00,0x03,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0d,0x07,0x01,0x00,0x20,0x00,0x80,0x60,0x00,0x00,0x00,0xe0,0x10,0x78,0x88,0x80,0x60,0x00,0x00 -+// 41898 ꎪ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x07,0x01,0x00,0x00,0x00,0x80,0x60,0x30,0x00,0x00,0xe0,0x10,0x78,0x88,0x80,0x60,0x00,0x00,0x00 -+// 41899 ꎫ ; -+,0x00,0x00,0x04,0x04,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x04,0x00,0x00,0x00,0x08,0x08,0x18,0x28,0x28,0xc8,0xc8,0xc8,0x28,0x28,0x18,0x08,0x08,0x00 -+// 41900 ꎬ ; -+,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0xc0,0x20,0x00,0x30,0x28,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x20,0x20,0x20 -+// 41901 ꎭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x0c,0x80,0x80,0x80,0xa0,0xa0,0x80,0x80,0x80,0x80,0x00,0x00,0x00 -+// 41902 ꎮ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x06,0x06,0x06,0x00,0x00,0x10,0x18,0x18,0x10,0xd0,0xd0,0x10,0x10,0xf0,0xd0,0x10,0x10,0x10,0x10,0x00 -+// 41903 ꎯ ; -+,0x00,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x06,0x03,0x01,0x00,0x01,0x03,0x06,0x04,0x00,0x20,0xf8,0xc0,0x00,0xc0,0xc0,0x00,0x18,0x30,0xe0,0xc0,0xc0,0xe0,0x10,0x08 -+// 41904 ꎰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xc0,0x00,0xc0,0xc0,0x00,0x08,0x10,0xe0,0xc0,0xc0,0xe0,0x10,0x08,0x00 -+// 41905 ꎱ ; -+,0x00,0x00,0x06,0x05,0x04,0x04,0x04,0x00,0x02,0x01,0x01,0x00,0x01,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0xc8,0x38,0x08,0x00,0x10,0x20,0xc0,0xc0,0xe0,0x30,0x10,0x00 -+// 41906 ꎲ ; -+,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x02,0x01,0x02,0x00,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0xf0,0x88,0x80,0x90,0x90,0x90,0x90,0x90,0x90,0x90,0x80,0x88,0xe0,0x00 -+// 41907 ꎳ ; -+,0x00,0x01,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x00,0x02,0x02,0x00,0x01,0x01,0x00,0x00,0x20,0x00,0x00,0x10,0x20,0xc8,0x88,0xc8,0x48,0x10,0x10,0x10,0x20,0x20,0xc0 -+// 41908 ꎴ ; -+,0x00,0x00,0x00,0x02,0x01,0x04,0x04,0x04,0x04,0x03,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0xc8,0x88,0x88,0xc8,0x30,0x10,0x10,0x00,0x20,0xc0,0x00 -+// 41909 ꎵ ; -+,0x00,0x00,0x07,0x09,0x05,0x02,0x00,0x00,0x00,0x00,0x00,0x07,0x01,0x01,0x06,0x00,0x00,0x00,0x80,0x80,0x98,0x98,0x58,0x68,0x68,0x68,0x58,0x98,0x88,0x80,0x40,0x00 -+// 41910 ꎶ ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x0c,0x0b,0x09,0x09,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x80,0xe0,0x10,0x10,0x00,0x08,0x08,0x00 -+// 41911 ꎷ ; -+,0x00,0x01,0x00,0x04,0x07,0x04,0x04,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x90,0x00,0x00,0x00,0x08,0x08,0xc8,0xe8,0x18,0x08,0x00,0x00 -+// 41912 ꎸ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x04,0x0e,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xb0,0x80,0x80,0x80,0x88,0x88,0x88,0xe8,0x98,0x88,0x80,0x80,0x00 -+// 41913 ꎹ ; -+,0x00,0x00,0x03,0x00,0x02,0x00,0x03,0x00,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xb0,0x80,0x80,0x80,0x80,0x88,0x88,0xc8,0xb8,0x88,0x80,0x80,0x00 -+// 41914 ꎺ ; -+,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x04,0x03,0x00,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0xf0,0xc0,0x00,0x08,0xd0,0xc0,0x04,0x0c,0xd0,0xc0,0x00 -+// 41915 ꎻ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x05,0x03,0x01,0x00,0x20,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x48,0x48,0x70,0x60,0x40,0x40,0x00 -+// 41916 ꎼ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x0a,0x06,0x02,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0xe0,0xc0,0x40,0x40,0x00,0x00 -+// 41917 ꎽ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x02,0x01,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xf0,0x08,0x08,0x08,0x10,0xc0,0x80,0xc0,0x40,0xa0,0x20,0x20,0x20,0x00 -+// 41918 ꎾ ; -+,0x00,0x01,0x00,0x00,0x03,0x00,0x04,0x06,0x01,0x00,0x01,0x02,0x04,0x02,0x03,0x00,0x00,0x60,0x00,0x10,0xd0,0x30,0x30,0x30,0xd0,0x10,0xd0,0x30,0x30,0x30,0xd0,0x00 -+// 41919 ꎿ ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x10,0xd0,0x30,0x30,0x70,0x90,0x10,0xd0,0x30,0x30,0x30,0xd0,0x10,0x00 -+// 41920 ꏀ ; -+,0x00,0x00,0x01,0x01,0x01,0x05,0x07,0x05,0x05,0x05,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x28,0xa8,0xe8,0x68,0x38,0x20,0x20,0x20,0x20,0x00 -+// 41921 ꏁ ; -+,0x00,0x01,0x00,0x03,0x04,0x04,0x04,0x04,0x03,0x01,0x06,0x04,0x04,0x04,0x02,0x00,0x00,0x20,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0xf8 -+// 41922 ꏂ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x06,0x03,0x06,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xd0,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 41923 ꏃ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x06,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00 -+// 41924 ꏄ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x00,0x01,0x05,0x05,0x05,0x01,0x00,0x04,0x04,0x04,0x00,0x20,0x00,0x30,0x40,0x80,0x00,0x00,0x00,0xf8,0x00,0x00,0x80,0xc0,0x60,0x18 -+// 41925 ꏅ ; -+,0x00,0x00,0x04,0x04,0x04,0x01,0x01,0x05,0x05,0x05,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0x30,0x40,0x80,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x80,0x40,0x30,0x08 -+// 41926 ꏆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x40,0x10,0x00,0x00,0xc0,0xe0,0x10,0x08,0x08,0xc8,0x08,0x08,0x00,0x00 -+// 41927 ꏇ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0xc0,0x00,0x00,0x80,0x80,0x68,0x28,0x10,0x10,0x78,0x10,0x28,0x28,0x80,0x80,0x00 -+// 41928 ꏈ ; -+,0x00,0x00,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x80,0x88,0xa8,0xb0,0xb0,0xf8,0xb0,0xa0,0x88,0x80,0x80,0x00,0x00 -+// 41929 ꏉ ; -+,0x00,0x00,0x03,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x58,0x20,0x20,0x60,0x50,0x50,0x50,0x50,0x50,0x60,0x20,0x30,0xc8,0x00 -+// 41930 ꏊ ; -+,0x00,0x01,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x60,0x00,0x10,0x10,0x90,0x10,0x90,0x10,0x30,0x10,0xd0,0x10,0x50,0x30,0x10 -+// 41931 ꏋ ; -+,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x90,0x10,0xd0,0x30,0x30,0x30,0xd0,0x10,0x50,0x30,0x10,0x00 -+// 41932 ꏌ ; -+,0x00,0x00,0x04,0x05,0x05,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x05,0x05,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x90,0xc0,0x60,0xf8,0x60,0x90,0x90,0x08,0x08,0x00,0x00 -+// 41933 ꏍ ; -+,0x00,0x00,0x01,0x01,0x00,0x00,0x05,0x03,0x02,0x07,0x04,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x20,0x80,0xc0,0xc0,0x28,0x30,0x10,0x38,0xc8,0xc0,0xc0,0x20,0x20,0x00 -+// 41934 ꏎ ; -+,0x00,0x01,0x00,0x06,0x04,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x04,0x04,0x03,0x00,0x20,0x00,0x40,0x40,0x70,0x98,0x08,0x08,0x08,0x08,0x88,0xf0,0x60,0x40,0x80 -+// 41935 ꏏ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x05,0x05,0x05,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xc0,0x00,0x70,0xa8,0x28,0x28,0x28,0x28,0xa8,0xf0,0x60,0x40,0x80,0x00 -+// 41936 ꏐ ; -+,0x00,0x00,0x02,0x01,0x01,0x01,0x06,0x04,0x04,0x04,0x06,0x01,0x01,0x00,0x02,0x00,0x00,0x00,0x10,0x20,0x20,0x20,0xd8,0xc0,0xc0,0xd0,0xd8,0x20,0x20,0x10,0x10,0x00 -+// 41937 ꏑ ; -+,0x00,0x01,0x00,0x03,0x02,0x00,0x02,0x01,0x04,0x03,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x20,0x00,0x70,0x00,0x00,0x10,0xe0,0x08,0xb8,0xc8,0xe8,0x18,0x00,0x00,0x00 -+// 41938 ꏒ ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x03,0x00,0x06,0x01,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x88,0x18,0xe8,0xc8,0xb8,0x08,0x00,0x00,0x00 -+// 41939 ꏓ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x03,0x01,0x03,0x05,0x01,0x00,0x00,0x00,0x00,0x00,0x60,0x98,0x88,0x08,0x20,0x60,0xa0,0xa0,0xe0,0x60,0x00,0x88,0x88,0x70,0x00 -+// 41940 ꏔ ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x03,0x06,0x08,0x02,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x08,0x10,0xe0,0xc0,0xe0,0x18,0x08,0x10,0x10,0xc0,0xc0,0x00,0xf8,0x00 -+// 41941 ꏕ ; -+,0x00,0x01,0x01,0x00,0x0c,0x03,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0xa0,0x80,0x88,0x88,0xc8,0xe8,0x98,0x80,0x90,0x90,0x90,0x90,0x80,0x80 -+// 41942 ꏖ ; -+,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0xc0,0x08,0x88,0xc8,0xe8,0x18,0x08,0x10,0x10,0x10,0x10,0x00,0x00,0x00 -+// 41943 ꏗ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x80,0x40,0x40,0x48,0x58,0xe0,0xc0,0xe0,0x58,0x48,0x40,0x40,0x80,0x00 -+// 41944 ꏘ ; -+,0x00,0x01,0x00,0x04,0x02,0x01,0x00,0x03,0x06,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0xc0,0x20,0x00,0x88,0x90,0xe0,0xc0,0xf0,0x88,0x80,0x90,0x90,0x90,0x90,0x80,0x80 -+// 41945 ꏙ ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x03,0x06,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0xe0,0xc0,0xf0,0x18,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0x00 -+// 41946 ꏚ ; -+,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x01,0x01,0x01,0x03,0x05,0x09,0x09,0x01,0x00,0x00,0x00,0x04,0x08,0x08,0xf0,0x60,0x00,0xc0,0x00,0x80,0x40,0x20,0x20,0x00,0x00 -+// 41947 ꏛ ; -+,0x00,0x01,0x00,0x00,0x06,0x04,0x04,0x05,0x05,0x07,0x05,0x05,0x05,0x07,0x05,0x05,0x00,0x20,0x00,0x00,0x00,0xf8,0x18,0x00,0x20,0xf8,0x00,0x00,0x00,0xf8,0x00,0x00 -+// 41948 ꏜ ; -+,0x00,0x00,0x04,0x07,0x04,0x04,0x05,0x05,0x07,0x05,0x05,0x05,0x07,0x05,0x05,0x00,0x00,0x00,0x08,0x08,0x78,0x18,0x10,0x10,0xf8,0x10,0x10,0x10,0xf8,0x10,0x10,0x00 -+// 41949 ꏝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x03,0x03,0x03,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x28,0x20,0x20,0x20,0xa0,0xa0,0xe0,0xa0,0xa0,0x60,0x60,0x20,0x00 -+// 41950 ꏞ ; -+,0x00,0x01,0x00,0x00,0x00,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x40,0x20,0x08,0x60,0x40,0x00,0x60,0x38,0x40,0x00,0x40,0x38,0x40,0x00,0x40,0x38 -+// 41951 ꏟ ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x01,0x01,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x60,0x80,0x80,0x60,0x78,0x00,0x80,0x40,0x78,0x40,0x80,0x40,0x78,0x00 -+// 41952 ꏠ ; -+,0x00,0x00,0x01,0x02,0x04,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x00,0x00,0x08,0x88,0xc8,0x38,0x08,0x00,0x08,0x10,0xe0,0x00 -+// 41953 ꏡ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x48,0x28,0x18,0x00,0x00,0x00,0x00 -+// 41954 ꏢ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x68,0x18,0x08,0x00,0x00,0x00,0x00 -+// 41955 ꏣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x02,0x07,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0xf0,0x10,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 41956 ꏤ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x07,0x01,0x01,0x05,0x03,0x01,0x01,0x07,0x01,0x00,0x00,0x00,0x90,0x78,0x10,0x10,0x70,0x10,0x10,0x10,0x30,0x10,0x10,0x50,0x30,0x00 -+// 41957 ꏥ ; -+,0x00,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x06,0x04,0x04,0x00,0x20,0x00,0x08,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10 -+// 41958 ꏦ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x06,0x04,0x04,0x00,0x00,0x00,0x08,0x18,0x18,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 41959 ꏧ ; -+,0x00,0x04,0x01,0x00,0x01,0x01,0x03,0x02,0x02,0x07,0x01,0x01,0x00,0x01,0x03,0x00,0x00,0x08,0x30,0xc0,0xc0,0x20,0x30,0x10,0x10,0xf8,0x10,0x20,0xc0,0xc0,0x38,0x00 -+// 41960 ꏨ ; -+,0x00,0x00,0x05,0x06,0x06,0x05,0x04,0x04,0x04,0x04,0x04,0x07,0x06,0x06,0x05,0x00,0x00,0x00,0xe8,0x18,0x18,0xe8,0x08,0x08,0x08,0x08,0xc8,0x38,0x18,0x18,0xe8,0x00 -+// 41961 ꏩ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x20,0x20,0xc8,0x08,0xc8,0xc8,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41962 ꏪ ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xc8,0x08,0xc8,0xc8,0x30,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41963 ꏫ ; -+,0x00,0x00,0x02,0x04,0x04,0x05,0x05,0x05,0x05,0x05,0x05,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0xc0,0x48,0x10,0xe0,0x20,0x20,0x60,0x20,0x20,0x70,0x58,0x40,0x80,0x00 -+// 41964 ꏬ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x08,0xc8,0xc8,0x00,0x00,0x00,0xc0,0xf0,0x00,0x00,0x00,0x00 -+// 41965 ꏭ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0xe0,0x00,0x88,0x88,0x88,0xc8,0xc8,0x30,0x80,0x80,0x80,0x80,0x00,0x80,0x00 -+// 41966 ꏮ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0xc8,0x30,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00 -+// 41967 ꏯ ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x20,0x20,0x20,0xc8,0x88,0xc8,0xd8,0x00,0x00,0x00,0x00,0x80,0x00,0x00 -+// 41968 ꏰ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x05,0x04,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x48,0x68,0x08,0x08,0xe8,0x08,0x08,0x88,0x08,0x10,0xe0,0x00 -+// 41969 ꏱ ; -+,0x00,0x02,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0xc0,0x00,0x60,0x80,0x00,0x00,0x80,0x90,0x90,0x90,0x60,0x00,0x00,0xc0,0x30 -+// 41970 ꏲ ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x00,0x04,0x04,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x60,0x00,0x00,0x40,0xa0,0x90,0x90,0x90,0xe0,0x00,0x00,0x80,0x60,0x00 -+// 41971 ꏳ ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x00,0x09,0x08,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0xf8,0x18,0x00,0xc0,0x20,0x20,0x20,0xc0,0x00,0x08,0x10,0xc0,0x00 -+// 41972 ꏴ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x08,0x48,0x28,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0x08,0x10,0xe0 -+// 41973 ꏵ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0x48,0x68,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x10,0xe0,0x00 -+// 41974 ꏶ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x90,0x80,0x80,0xc0,0xc0,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 41975 ꏷ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xf0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x98,0xc0 -+// 41976 ꏸ ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x8c,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x98,0x60,0x00 -+// 41977 ꏹ ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0xc0,0x10,0x00,0x40,0x40,0x40,0xf0,0x40,0x40,0x40,0x00,0x70,0x00,0x00 -+// 41978 ꏺ ; -+,0x00,0x01,0x00,0x00,0x02,0x04,0x04,0x01,0x00,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x70,0x50,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40 -+// 41979 ꏻ ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x50,0x30,0x00,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 41980 ꏼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x05,0x07,0x05,0x01,0x00,0x04,0x00,0x00,0x00,0x30,0x10,0x00,0x20,0x60,0x80,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x00 -+// 41981 ꏽ ; -+,0x00,0x01,0x00,0x04,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x04,0x00,0x20,0x00,0x08,0x10,0x10,0x20,0x68,0xc8,0xc8,0xc8,0x28,0x20,0x10,0x08,0x08 -+// 41982 ꏾ ; -+,0x00,0x00,0x04,0x02,0x02,0x01,0x05,0x04,0x04,0x04,0x05,0x00,0x02,0x04,0x04,0x00,0x00,0x00,0x08,0x10,0x10,0x20,0x08,0xc8,0xc8,0xc8,0x28,0x20,0x10,0x08,0x08,0x00 -+// 41983 ꏿ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x30,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41984 ꐀ ; -+,0x00,0x04,0x04,0x04,0x02,0x02,0x03,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x07,0x00,0x00,0x40,0x40,0x40,0xc8,0xa8,0xa0,0x10,0xf0,0x10,0xa8,0xa8,0xc0,0x40,0xc0,0x00 -+// 41985 ꐁ ; -+,0x00,0x03,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x02,0x00,0xc0,0x00,0x00,0x00,0x90,0x90,0x60,0x60,0xf0,0x60,0x60,0x90,0x90,0x00,0x00 -+// 41986 ꐂ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x02,0x00,0x00,0x00,0x00,0x80,0x90,0x10,0x40,0x60,0xf0,0x60,0x40,0x10,0x90,0x00,0x00,0x00 -+// 41987 ꐃ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x01,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x30,0x30,0xf0,0x30,0x30,0x08,0x80,0x80,0x80,0x00 -+// 41988 ꐄ ; -+,0x00,0x00,0x03,0x04,0x08,0x00,0x06,0x01,0x00,0x07,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x98,0x08,0x08,0x08,0x08,0xf8,0x08,0xf8,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41989 ꐅ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x08,0x08,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08 -+// 41990 ꐆ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x78,0x08,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 41991 ꐇ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x78,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 41992 ꐈ ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00 -+// 41993 ꐉ ; -+,0x00,0x01,0x00,0x03,0x04,0x06,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x06,0x00,0x03,0x00,0x20,0x00,0x80,0x80,0x00,0x40,0x68,0x68,0xe8,0x68,0x50,0x00,0x80,0x80,0x00 -+// 41994 ꐊ ; -+,0x00,0x00,0x03,0x04,0x06,0x04,0x04,0x04,0x05,0x04,0x04,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x80,0x80,0x00,0x10,0x68,0x68,0xe8,0x68,0x58,0x00,0x80,0x80,0x00,0x00 -+// 41995 ꐋ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x06,0x02,0x01,0x00,0x00,0xc0,0xf0,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x28,0x18,0x08,0x10,0xe0,0x00 -+// 41996 ꐌ ; -+,0x00,0x00,0x03,0x02,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x02,0x01,0x00,0x00,0x00,0x40,0x20,0x38,0x20,0x20,0x20,0x38,0x20,0x20,0x20,0x20,0x40,0xc0,0x00 -+// 41997 ꐍ ; -+,0x00,0x01,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x20,0x00,0x30,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0x90,0xe0 -+// 41998 ꐎ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x90,0x90,0xe0,0x00 -+// 41999 ꐏ ; -+,0x00,0x00,0x02,0x04,0x04,0x02,0x03,0x02,0x04,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x50,0x50,0x50,0x50,0x10,0x10,0x10,0x10,0x10,0xd0,0x30,0x00 -+// 42000 ꐐ ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x80,0x00,0xe0,0x10,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xe0 -+// 42001 ꐑ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x03,0x00,0x00,0xc0,0x30,0x18,0x08,0x08,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x30,0xf0,0x00 -+// 42002 ꐒ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x00,0x01,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x88,0x88,0x98,0xb8,0xe8,0xc8,0xc8,0xc8,0xa8,0x98,0x98,0x88,0x80,0x00 -+// 42003 ꐓ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,0x08,0x08,0x08,0x10,0x20,0xc0,0x00,0x80,0x80,0x00,0x00,0x00,0x00 -+// 42004 ꐔ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0x80,0x00,0x80,0x00,0x00,0x00,0x00,0x00 -+// 42005 ꐕ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x06,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa8,0x28,0x28,0xd0,0x30,0xc0,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00 -+// 42006 ꐖ ; -+,0x00,0x00,0x0c,0x0e,0x09,0x08,0x0b,0x0c,0x00,0x00,0x02,0x01,0x00,0x01,0x02,0x04,0xc0,0x00,0x08,0x18,0xe8,0xc8,0xe8,0x88,0x80,0x90,0xa0,0xc0,0xc0,0xc0,0xa0,0x90 -+// 42007 ꐗ ; -+,0x00,0x0c,0x06,0x01,0x00,0x03,0x0c,0x00,0x02,0x03,0x01,0x00,0x01,0x03,0x06,0x04,0x00,0x0c,0x18,0xe0,0xc0,0xb8,0x0c,0x00,0x10,0x20,0xe0,0xc0,0xe0,0x30,0x10,0x00 -+// 42008 ꐘ ; -+,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x04,0x04,0x04,0x01,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x10,0x30,0xc0,0x08,0x08,0xc8,0xe0,0x10,0x08,0x08,0x08,0x00 -+// 42009 ꐙ ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0xc0,0x00,0x00,0x00,0x00,0x30,0xf8,0x00,0x00,0x00,0x00,0x00,0x30,0xf8,0x00,0x00 -+// 42010 ꐚ ; -+,0x00,0x00,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x00,0x00,0x00 -+// 42011 ꐛ ; -+,0x00,0x06,0x01,0x01,0x07,0x01,0x03,0x00,0x03,0x02,0x04,0x04,0x02,0x03,0x01,0x00,0x00,0x10,0x10,0xb8,0xf0,0x00,0x30,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x20 -+// 42012 ꐜ ; -+,0x00,0x08,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x07,0x00,0x04,0x00,0x08,0x08,0x10,0xe0,0xc0,0x90,0x90,0x90,0x80,0x80,0x80,0x80,0x00 -+// 42013 ꐝ ; -+,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x02,0x03,0xc0,0x20,0x00,0x30,0x20,0x20,0x20,0xc0,0xc0,0xf0,0xc0,0x00,0x00,0x00,0x00,0x80 -+// 42014 ꐞ ; -+,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xc0,0xc0,0xc0,0xc0,0x00,0x00,0x00,0x80,0x00,0x00 -+// 42015 ꐟ ; -+,0x00,0x08,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x08,0x10,0xe0,0xc0,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00 -+// 42016 ꐠ ; -+,0x00,0x01,0x00,0x02,0x01,0x01,0x00,0x00,0x01,0x02,0x05,0x02,0x02,0x04,0x04,0x04,0x00,0x20,0x00,0x10,0x20,0x08,0x08,0x08,0x20,0x10,0xe8,0x10,0x10,0x08,0x08,0x00 -+// 42017 ꐡ ; -+,0x00,0x00,0x04,0x03,0x01,0x04,0x04,0x01,0x03,0x06,0x03,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x30,0x20,0x08,0x08,0x20,0x30,0xc8,0x30,0x10,0x08,0x08,0x08,0x00 -+// 42018 ꐢ ; -+,0x00,0x00,0x02,0x02,0x02,0x01,0x07,0x02,0x00,0x06,0x05,0x01,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0x00,0x10,0x20,0x40,0x00,0x40,0x20,0x10,0x08,0x08,0x08,0x00 -+// 42019 ꐣ ; -+,0x00,0x00,0x00,0x01,0x03,0x03,0x04,0x04,0x00,0x03,0x03,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0xa8,0x78,0xa0,0xa0,0xa0,0x20,0x20,0x20,0xa0,0xa0,0x20,0x20,0x00 -+// 42020 ꐤ ; -+,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x03,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0xf0,0x68,0x20,0x20,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x20 -+// 42021 ꐥ ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xf0,0x40,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42022 ꐦ ; -+,0x00,0x00,0x06,0x01,0x01,0x00,0x00,0x01,0x02,0x05,0x02,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0x40,0x00,0x20,0x30,0xe8,0x10,0x10,0x08,0x08,0x00,0x00 -+// 42023 ꐧ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x02,0x01,0x00,0x03,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x80,0x10,0x08,0x08,0x08,0x18,0xe0,0x80,0x80,0x00,0x00,0x08,0x18,0x60,0x00 -+// 42024 ꐨ ; -+,0x00,0x01,0x00,0x00,0x02,0x04,0x07,0x04,0x02,0x00,0x01,0x03,0x02,0x04,0x04,0x04,0x00,0x20,0x00,0xc8,0xc0,0x00,0xf8,0x00,0xc0,0xf8,0xe0,0x10,0x10,0x08,0x08,0x00 -+// 42025 ꐩ ; -+,0x00,0x00,0x00,0x02,0x04,0x07,0x04,0x02,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0xc8,0xc0,0x00,0xf8,0x00,0xc0,0xf8,0xc0,0xf0,0x10,0x08,0x08,0x08,0x00 -+// 42026 ꐪ ; -+,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x02,0x03,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0xc0,0x10,0x08,0x08,0x08,0x08,0x10,0x30,0x08,0x08,0x00,0x08,0x18,0xe0,0x00 -+// 42027 ꐫ ; -+,0x00,0x01,0x00,0x00,0x03,0x04,0x04,0x04,0x06,0x01,0x00,0x03,0x02,0x04,0x04,0x04,0x00,0x20,0x00,0xc0,0xc8,0x00,0x00,0x00,0x80,0xf8,0xc0,0xf0,0x10,0x08,0x08,0x08 -+// 42028 ꐬ ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x06,0x01,0x00,0x03,0x02,0x04,0x04,0x04,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x80,0xf8,0xc0,0xf0,0x10,0x08,0x08,0x08,0x00 -+// 42029 ꐭ ; -+,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x02,0x02,0x00,0x0c,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0xe8,0x98,0x80,0x90,0x90,0x80,0x88,0x88,0xc8,0x38,0x08,0x00 -+// 42030 ꐮ ; -+,0x00,0x01,0x00,0x06,0x02,0x02,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x20,0x00,0x10,0x10,0x10,0x20,0xe0,0xc0,0xf0,0xc0,0x00,0x00,0x00,0x80,0x00 -+// 42031 ꐯ ; -+,0x00,0x00,0x06,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x20,0xe0,0xc0,0xc0,0xc0,0x00,0x00,0x00,0x80,0x80,0x00 -+// 42032 ꐰ ; -+,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x30,0x28,0x20,0xe0,0x20,0x20,0x20,0x20,0xe0,0xe0,0x20,0x20,0x20,0x00 -+// 42033 ꐱ ; -+,0x00,0x00,0x00,0x03,0x04,0x00,0x04,0x06,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0xc0,0xd0,0x00,0x00,0x00,0xc0,0xf0,0x00,0x00,0x00,0x00,0x80,0x00,0x00 -+// 42034 ꐲ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0xc0,0x20,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0x00,0x00,0x00,0x00,0x00,0x80,0x80 -+// 42035 ꐳ ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00 -+// 42036 ꐴ ; -+,0x00,0x00,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0xf0,0x18,0x14,0x18,0x18,0x10,0x10,0x10,0x00,0x20,0xc0,0x00 -+// 42037 ꐵ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x03,0x00,0x00,0x00,0x08,0xc8,0x88,0xc8,0xf8,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0xf0,0x00 -+// 42038 ꐶ ; -+,0x00,0x01,0x00,0x01,0x01,0x02,0x02,0x06,0x07,0x06,0x06,0x06,0x02,0x02,0x01,0x01,0x00,0x60,0x00,0xe0,0x00,0x10,0x10,0x18,0x18,0xd8,0x38,0x18,0x10,0x00,0x20,0xc0 -+// 42039 ꐷ ; -+,0x00,0x00,0x01,0x00,0x02,0x06,0x06,0x07,0x06,0x06,0x06,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x20,0x10,0x10,0x10,0x18,0x18,0x58,0x38,0x18,0x10,0x10,0x20,0xc0,0x00 -+// 42040 ꐸ ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x01,0x00,0x00,0x00,0x02,0x02,0x04,0x02,0x01,0x00,0x00,0x00,0x30,0x10,0x00,0x10,0xf0,0xc0,0xc0,0xc0,0x10,0x10,0x08,0x18,0xe0,0x00 -+// 42041 ꐹ ; -+,0x00,0x01,0x02,0x03,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x00,0x04,0x04,0x04,0x03,0x00,0x20,0x00,0x90,0x78,0x10,0x10,0x10,0xf0,0x10,0x10,0x00,0x88,0x88,0xc8,0x30 -+// 42042 ꐺ ; -+,0x00,0x00,0x03,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x98,0x78,0x10,0x10,0x10,0xf0,0x10,0x10,0x00,0x88,0xc8,0xc8,0x30,0x00 -+// 42043 ꐻ ; -+,0x00,0x00,0x0c,0x04,0x06,0x02,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x0c,0x00,0x00,0x20,0x28,0x28,0x60,0x60,0xa0,0xa8,0xa8,0xa8,0xa0,0x60,0x68,0x28,0x28,0x00 -+// 42044 ꐼ ; -+,0x00,0x01,0x04,0x04,0x06,0x06,0x06,0x05,0x05,0x05,0x05,0x04,0x06,0x06,0x04,0x04,0x40,0x20,0x00,0x60,0x70,0x48,0xc8,0x88,0xb8,0xb0,0x88,0x88,0xc8,0x48,0x70,0x60 -+// 42045 ꐽ ; -+,0x00,0x00,0x04,0x04,0x06,0x06,0x07,0x05,0x05,0x05,0x06,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0x50,0x48,0xc8,0xc8,0x70,0x70,0x40,0xc8,0xc8,0x50,0x40,0x40,0x00 -+// 42046 ꐾ ; -+,0x00,0x00,0x01,0x00,0x00,0x01,0x07,0x07,0x04,0x05,0x05,0x01,0x00,0x01,0x02,0x00,0x00,0x00,0x20,0xc0,0xc0,0x20,0x28,0x28,0xe8,0x38,0x28,0x40,0xc0,0xe0,0x00,0x00 -+// 42047 ꐿ ; -+,0x01,0x02,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x07,0x04,0x04,0x02,0x03,0x01,0x00,0x80,0x40,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x80,0x60 -+// 42048 ꑀ ; -+,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x07,0x04,0x04,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x80,0x60,0x00 -+// 42049 ꑁ ; -+,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x07,0x04,0x04,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x60,0x80,0x00,0x20,0x10,0x00,0xc8,0x10,0x10,0x20,0x00,0x80,0x60,0x00 -+// 42050 ꑂ ; -+,0x00,0x03,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x01,0x00,0x60,0x00,0x20,0x10,0x00,0xf0,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00 -+// 42051 ꑃ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x07,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x60,0x50,0x40,0xf0,0x40,0x40,0x40,0x40,0x40,0xc0,0x40,0x00,0x00,0x00 -+// 42052 ꑄ ; -+,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x68,0x20,0x20,0x28,0x00,0x00,0x80,0x40,0x20,0x20,0x20,0x20,0xc0,0x00 -+// 42053 ꑅ ; -+,0x01,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x01,0x02,0x04,0x00,0x06,0x01,0x00,0x00,0x80,0x00,0x00,0x08,0x10,0xe0,0xc0,0xc0,0xe0,0x10,0x08,0x00,0x00,0x80,0x00,0x00 -+// 42054 ꑆ ; -+,0x00,0x00,0x00,0x02,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x30,0xe0,0xc0,0xe0,0x10,0x08,0x00,0x00,0x80,0x00,0x00,0x00 -+// 42055 ꑇ ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x10,0x00,0x40,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00 -+// 42056 ꑈ ; -+,0x00,0x01,0x00,0x01,0x01,0x03,0x01,0x01,0x05,0x03,0x00,0x01,0x01,0x00,0x00,0x00,0x80,0x20,0x00,0x20,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00 -+// 42057 ꑉ ; -+,0x00,0x00,0x01,0x01,0x03,0x01,0x01,0x05,0x03,0x00,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00,0x00,0x00,0x00 -+// 42058 ꑊ ; -+,0x00,0x00,0x04,0x04,0x02,0x00,0x00,0x02,0x04,0x04,0x00,0x00,0x03,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0xf0,0xc0,0xc0,0xb0,0x18,0x08,0x00,0x00,0x80,0x00,0x00,0x00 -+// 42059 ꑋ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x80,0x20,0x00,0x60,0x10,0x08,0x00,0xf8,0x00,0xc0,0xc0,0x00,0xf8,0x00,0x00,0x00 -+// 42060 ꑌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0x80,0xf8,0x00,0xc0,0xc0,0x00,0xf8,0xc0,0x00,0x00,0x00 -+// 42061 ꑍ ; -+,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x00 -+// 42062 ꑎ ; -+,0x00,0x00,0x04,0x00,0x02,0x02,0x02,0x02,0x01,0x00,0x02,0x02,0x03,0x05,0x04,0x00,0x00,0x00,0x08,0x08,0x10,0xd0,0x00,0x20,0xe0,0x00,0xd0,0x50,0x10,0x08,0x00,0x00 -+// 42063 ꑏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x01,0x0d,0x07,0x00,0x00,0x88,0x90,0x90,0x80,0xa0,0x20,0x20,0x20,0x20,0xa0,0x70,0x70,0x10,0x08 -+// 42064 ꑐ ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x06,0x03,0x00,0x00,0x00,0x88,0x90,0x90,0x90,0x00,0x00,0xe0,0x00,0x00,0xf0,0x30,0x30,0x28,0x00 -+// 42065 ꑑ ; -+,0x00,0x00,0x04,0x04,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x02,0x02,0x00,0x04,0x00,0x00,0x00,0x08,0x08,0x10,0x10,0x00,0x20,0xe0,0x20,0x20,0x00,0x10,0x10,0x08,0x00 -+// 42066 ꑒ ; -+,0x00,0x01,0x00,0x03,0x02,0x04,0x04,0x02,0x03,0x00,0x07,0x00,0x00,0x01,0x03,0x07,0x80,0x20,0x00,0x30,0x10,0x00,0x00,0x10,0x30,0xc0,0xf8,0x30,0x60,0x80,0x00,0xf8 -+// 42067 ꑓ ; -+,0x00,0x00,0x01,0x02,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0xe0,0x10,0x00,0x08,0x00,0x10,0xe0,0x00,0x18,0x20,0xc0,0x00,0x00,0x00 -+// 42068 ꑔ ; -+,0x00,0x00,0x00,0x01,0x05,0x05,0x02,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x28,0x48,0x10,0xe0,0xc0,0x00,0xf8,0x00,0x00,0x00,0x00,0x00 -+// 42069 ꑕ ; -+,0x00,0x00,0x00,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x20,0x20,0xa0,0xa0,0xa0,0x20,0x10,0x10,0x08,0x00,0x00 -+// 42070 ꑖ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x03,0x00,0x00,0xe0,0x00,0x40,0x30,0x00,0x88,0xc8,0x78,0x08,0x88,0xc8,0x78,0x00,0x80,0x80 -+// 42071 ꑗ ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x07,0x04,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x60,0x10,0x00,0x88,0xe8,0x18,0x00,0x88,0xe8,0x18,0x00,0x80,0x80,0x00 -+// 42072 ꑘ ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xe0,0x30,0x10,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0xc8,0xc8,0x30,0x00 -+// 42073 ꑙ ; -+,0x00,0x00,0x03,0x02,0x04,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0xc0,0x30,0x18,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 42074 ꑚ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0xe0,0x78,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x00 -+// 42075 ꑛ ; -+,0x00,0x00,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0x20,0x20,0xe0,0x38,0x20,0x20,0x20,0x28,0x28,0x20,0x20,0x20,0x00 -+// 42076 ꑜ ; -+,0x00,0x00,0x00,0x07,0x04,0x00,0x00,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0xc0,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42077 ꑝ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x88,0x88,0xc8,0xc8,0x30,0x00,0x10,0x20,0xc0,0xc0,0xc0,0x20,0x10,0x00 -+// 42078 ꑞ ; -+,0x00,0x03,0x00,0x00,0x04,0x04,0x02,0x03,0x01,0x01,0x03,0x02,0x00,0x04,0x04,0x00,0x00,0x60,0x00,0x40,0x40,0x40,0x80,0x80,0x20,0x30,0xa0,0xa0,0xa0,0x40,0x70,0x00 -+// 42079 ꑟ ; -+,0x00,0x00,0x08,0x04,0x04,0x02,0x02,0x03,0x01,0x03,0x02,0x00,0x04,0x04,0x08,0x00,0x00,0x00,0x40,0x40,0x40,0x80,0x80,0x00,0x30,0x20,0xa0,0xa0,0x60,0x60,0x60,0x00 -+// 42080 ꑠ ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x40,0x80,0x00,0x00,0x00,0x40,0x80,0x00,0x00,0xe0,0x20,0x00 -+// 42081 ꑡ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x02,0x01,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x88,0xc8,0x30,0x00,0xa0,0xc0,0x80,0x80,0x80,0x00,0x00 -+// 42082 ꑢ ; -+,0x00,0x01,0x00,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0xe0,0x00,0x88,0x88,0x88,0xc8,0xc8,0x30,0x20,0x20,0x20,0x20,0x20,0x60,0x00 -+// 42083 ꑣ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x88,0xc8,0x88,0xc8,0x78,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0x00 -+// 42084 ꑤ ; -+,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x03,0x03,0x03,0x03,0x04,0x04,0x04,0x08,0x00,0x00,0x00,0x40,0x40,0x80,0xb0,0x20,0x20,0x30,0x20,0x20,0xb0,0xa0,0x60,0x60,0x00 -+// 42085 ꑥ ; -+,0x00,0x01,0x00,0x00,0x04,0x04,0x03,0x01,0x02,0x02,0x00,0x07,0x00,0x02,0x02,0x01,0x00,0x20,0x00,0x08,0x08,0x08,0x30,0xe0,0x10,0x00,0x00,0xf8,0x00,0x10,0x10,0xe0 -+// 42086 ꑦ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x01,0x02,0x02,0x07,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xe0,0x30,0x10,0x08,0xf8,0x08,0x10,0x10,0xe0,0x00 -+// 42087 ꑧ ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x01,0x00,0x01,0x00,0x04,0x06,0x01,0x00,0x00,0x00,0xc8,0xc8,0xc8,0x30,0x00,0x00,0xe0,0x00,0x20,0xc0,0x08,0x18,0xe0,0x00 -+// 42088 ꑨ ; -+,0x00,0x01,0x00,0x01,0x01,0x01,0x01,0x07,0x01,0x09,0x05,0x07,0x01,0x01,0x01,0x01,0x00,0x20,0x00,0xb0,0x68,0x20,0x20,0xa0,0x60,0x60,0x60,0xa0,0x20,0x20,0x20,0x20 -+// 42089 ꑩ ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x07,0x00,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb0,0x68,0x20,0x20,0xa0,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x20,0x00 -+// 42090 ꑪ ; -+,0x00,0x00,0x01,0x00,0x02,0x02,0x06,0x07,0x03,0x07,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xb0,0x68,0x20,0x20,0xa0,0xa0,0xa0,0xa0,0xa0,0x20,0x20,0x20,0x20,0x00 -+// 42091 ꑫ ; -+,0x00,0x00,0x02,0x01,0x00,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x10,0x20,0xc0,0x08,0x08,0x88,0xc8,0x68,0x18,0x00,0x00,0x00,0xf0,0x00 -+// 42092 ꑬ ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x08,0x08,0x88,0xc8,0x68,0x18,0x00,0x00,0x00,0x00,0x00 -+// 42093 ꑭ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0xc8,0x68,0x18,0x08,0x00,0x00,0x00,0x00 -+// 42094 ꑮ ; -+,0x00,0x00,0x02,0x02,0x01,0x04,0x06,0x05,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x60,0xc8,0x08,0x88,0xc8,0xe8,0x18,0x08,0x00,0x00,0x00,0x00 -+// 42095 ꑯ ; -+,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x0c,0x0b,0x08,0x08,0x08,0x00,0x60,0x00,0x88,0x88,0x88,0x80,0x90,0x90,0xe0,0x80,0x88,0x88,0xc8,0x28,0x18 -+// 42096 ꑰ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x01,0x00,0x0c,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x10,0x10,0xe0,0x80,0x00,0x80,0xc0,0x38,0x1c,0x00 -+// 42097 ꑱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x05,0x09,0x0f,0x09,0x05,0x07,0x01,0x00,0x00,0x00,0x08,0x28,0x38,0x20,0x20,0xa0,0x20,0x20,0xe0,0x20,0x20,0x20,0xe0,0x00 -+// 42098 ꑲ ; -+,0x00,0x02,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x20,0x30,0x58,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xc8,0x30,0x00,0x00 -+// 42099 ꑳ ; -+,0x00,0x00,0x05,0x05,0x05,0x07,0x05,0x05,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xb8,0x80,0x80,0x80 -+// 42100 ꑴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x00,0x01,0x02,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x40,0x30,0x08,0x00,0x10,0xe0,0xc0,0xe0,0x10,0x00,0x00,0x80,0x80,0x00 -+// 42101 ꑵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x02,0x05,0x05,0x05,0x03,0x03,0x04,0x00,0x00,0x00,0x08,0x28,0x28,0x20,0x20,0xb8,0x60,0x60,0x20,0x60,0x60,0x20,0xf8,0x00 -+// 42102 ꑶ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x60,0x10,0x00,0x80,0xf8,0x00,0x00,0xf8,0x00,0x00,0x00 -+// 42103 ꑷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x68,0x18,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x00,0x00,0x00 -+// 42104 ꑸ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x05,0x04,0x05,0x02,0x01,0x04,0x03,0x00,0x00,0x00,0x00,0x60,0x18,0x40,0xf0,0x18,0xe8,0xc8,0xe8,0x10,0xe0,0x00,0x80,0x80,0x00 -+// 42105 ꑹ ; -+,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x05,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0xd0,0x48,0x40,0x60,0x50,0x48,0xe0,0xf0,0x48,0x40,0xc0,0x40,0x00 -+// 42106 ꑺ ; -+,0x00,0x01,0x00,0x05,0x04,0x00,0x07,0x00,0x04,0x05,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x20,0x00,0x60,0x58,0xc0,0xc0,0xc0,0xe0,0x70,0x50,0x40,0x40,0x40,0x40,0x40 -+// 42107 ꑻ ; -+,0x00,0x02,0x05,0x00,0x08,0x0f,0x08,0x08,0x05,0x06,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x58,0x40,0xc0,0x40,0x60,0x70,0x50,0x50,0x50,0x40,0x40,0xc0,0x00 -+// 42108 ꑼ ; -+,0x00,0x00,0x01,0x07,0x01,0x00,0x00,0x03,0x04,0x04,0x07,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x08,0xe8,0x08,0x08,0xe8,0x08,0x00,0x00,0xe0,0x00,0x00,0x08,0x30,0x00 -+// 42109 ꑽ ; -+,0x00,0x00,0x06,0x05,0x08,0x08,0x00,0x00,0x08,0x01,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x60,0x50,0xc0,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x40,0x00 -+// 42110 ꑾ ; -+,0x00,0x03,0x00,0x01,0x02,0x00,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x02,0x03,0x00,0x00,0x60,0x00,0xd0,0x30,0x10,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x10,0x20,0x00 -+// 42111 ꑿ ; -+,0x00,0x00,0x01,0x02,0x00,0x04,0x04,0x04,0x07,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0xd0,0x30,0x10,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x10,0x20,0xc0,0x00 -+// 42112 ꒀ ; -+,0x00,0x00,0x08,0x00,0x04,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x10,0xe0,0x80,0x90,0xc0,0x80,0x80,0x80,0x88,0x70,0x00 -+// 42113 ꒁ ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x00,0x07,0x04,0x04,0x00,0x00,0x00,0x00,0x40,0x10,0x00,0x88,0xc8,0x38,0x80,0xe0,0x00,0x80,0x80,0x00,0x00,0x00 -+// 42114 ꒂ ; -+,0x00,0x01,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x80,0x20,0x00,0x00,0xc0,0xc0,0x10,0x10,0xe0,0xc0,0x00,0xc0,0xc8,0xc8,0xc8,0x30 -+// 42115 ꒃ ; -+,0x00,0x00,0x00,0x00,0x05,0x02,0x02,0x01,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x40,0xe8,0x10,0x10,0xe0,0xc0,0x00,0xc0,0xc0,0xc8,0xc8,0x38,0x00 -+// 42116 ꒄ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0xc8,0xd8,0x08,0x08,0x08,0x08,0x08,0xc8,0x38,0x00 -+// 42117 ꒅ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0xc0,0x20,0x00,0x60,0x10,0x00,0x08,0xc8,0xe8,0x18,0xc0,0xc0,0x00,0x00,0x80,0x80 -+// 42118 ꒆ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0xc0,0xb0,0x80,0x88,0x88,0xc8,0x98,0x80,0xe0,0x80,0x80,0x80,0x80,0x00 -+// 42119 ꒇ ; -+,0x00,0x00,0x00,0x04,0x04,0x02,0x01,0x00,0x03,0x00,0x03,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0xe0,0x00,0xf0,0x00,0xf0,0x10,0x08,0x08,0x00,0x00 -+// 42120 ꒈ ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x20,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0xd0,0x10,0x10,0x10 -+// 42121 ꒉ ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x30,0x10,0x10,0x00 -+// 42122 ꒊ ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x08,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0xc0,0x80,0x80,0x40,0x60,0x30,0x40,0x80,0x80,0x80,0x40,0x38,0x00 -+// 42123 ꒋ ; -+,0x00,0x01,0x00,0x06,0x01,0x01,0x01,0x03,0x00,0x03,0x04,0x03,0x01,0x01,0x03,0x00,0x00,0x20,0x00,0x18,0x20,0xa0,0xa0,0x30,0x00,0xf0,0x18,0x20,0xa0,0xa0,0x30,0x00 -+// 42124 ꒌ ; -+,0x00,0x00,0x06,0x01,0x01,0x01,0x03,0x00,0x03,0x04,0x03,0x01,0x01,0x01,0x06,0x00,0x00,0x00,0x18,0xa0,0xa0,0xa0,0x30,0xc0,0xf0,0x18,0x20,0xa0,0xe0,0x20,0x18,0x00 -+// 42125 ꒍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42126 ꒎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42127 ꒏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42128 ꒐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 42129 ꒑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xa0,0x20,0x00 -+// 42130 ꒒ ; -+,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0xc0,0x00 -+// 42131 ꒓ ; -+,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x80,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42132 ꒔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0xe0,0x90,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 42133 ꒕ ; -+,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0xc8,0x38,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42134 ꒖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0e,0x09,0x08,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x90,0x70,0x30,0x00 -+// 42135 ꒗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x40,0x60,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x00,0x00,0x00 -+// 42136 ꒘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 42137 ꒙ ; -+,0x00,0x00,0x0c,0x0e,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0xc8,0x28,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42138 ꒚ ; -+,0x00,0x00,0x02,0x04,0x08,0x0c,0x04,0x03,0x01,0x00,0x00,0x00,0x08,0x04,0x01,0x00,0x00,0x00,0x30,0x08,0x00,0x00,0x00,0x00,0xe0,0x30,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 42139 ꒛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 42140 ꒜ ; -+,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x00,0x00,0x00 -+// 42141 ꒝ ; -+,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x00,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x10,0xf0,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0xc0,0x00 -+// 42142 ꒞ ; -+,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x00,0x00,0x00,0x10,0x10,0x10,0xd0,0x30,0x00,0x00,0x00,0x00,0x10,0x70,0x90,0x10,0x10,0x00 -+// 42143 ꒟ ; -+,0x00,0x00,0x00,0x03,0x06,0x04,0x04,0x08,0x08,0x08,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x00 -+// 42144 ꒠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0xf8,0x00 -+// 42145 ꒡ ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42146 ꒢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42147 ꒣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42148 ꒤ ; -+,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x04,0x03,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 42149 ꒥ ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x02,0x02,0x01,0x00,0x00,0x18,0x30,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x40,0x40,0xc0,0x00 -+// 42150 ꒦ ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x18,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x60,0xc0,0x00 -+// 42151 ꒧ ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0xe0,0x20,0x10,0x10,0x08,0x08,0x08,0x08,0x08,0x88,0x88,0xc8,0x70,0x00 -+// 42152 ꒨ ; -+,0x00,0x00,0x03,0x06,0x04,0x04,0x04,0x0c,0x08,0x0c,0x04,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0xe0,0x10,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0x30,0xe0,0x00 -+// 42153 ꒩ ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0xe0,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0xe0,0x00 -+// 42154 ꒪ ; -+,0x00,0x00,0x01,0x06,0x04,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42155 ꒫ ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x20,0x20,0x10,0x10,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42156 ꒬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x04,0x08,0x00,0x04,0x06,0x03,0x00,0x00,0x60,0x30,0x00,0x00,0x00,0x40,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00 -+// 42157 ꒭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x08,0x06,0x01,0x00,0x00,0x00,0x20,0x30,0x20,0x20,0x20,0x20,0xe0,0x30,0x30,0x20,0x20,0x20,0xe0,0x00 -+// 42158 ꒮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x08,0x08,0x04,0x06,0x01,0x00,0x00,0x00,0x10,0x70,0x70,0x40,0x40,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0xc0,0x00 -+// 42159 ꒯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x04,0x00,0x02,0x01,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x60,0xa0,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00 -+// 42160 ꒰ ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x01,0x00,0x00,0x00,0x01,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x80,0x60,0x80,0x00,0x00,0x00,0x80,0xe0,0x00 -+// 42161 ꒱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0xc0,0x20,0x10,0x10,0x20,0x60,0xc0,0x20,0x10,0x10,0x10,0x20,0xc0,0x00 -+// 42162 ꒲ ; -+,0x00,0x00,0x03,0x02,0x02,0x01,0x01,0x02,0x02,0x02,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0xe0,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0xe0,0x00 -+// 42163 ꒳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x88,0x88,0x88,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42164 ꒴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42165 ꒵ ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42166 ꒶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x01,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x24,0x24,0x24,0x64,0x18,0x00,0x00,0x00,0x00,0x00 -+// 42167 ꒷ ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x20,0x20,0x20,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42168 ꒸ ; -+,0x00,0x00,0x03,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x90,0x90,0x60,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x80,0x00 -+// 42169 ꒹ ; -+,0x00,0x00,0x07,0x08,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0xa0,0xe0,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x90,0x70,0x00 -+// 42170 ꒺ ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x06,0x01,0x00,0x03,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x10,0xd0,0x30,0x30,0x70,0x90,0x10,0xd0,0x30,0x30,0x30,0xd0,0x10,0x00 -+// 42171 ꒻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x05,0x05,0x07,0x03,0x05,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00 -+// 42172 ꒼ ; -+,0x00,0x00,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x06,0x04,0x00,0x00,0x00,0x10,0x10,0x20,0x20,0x40,0xc0,0xc0,0xc0,0x40,0x20,0x30,0x10,0x18,0x00 -+// 42173 ꒽ ; -+,0x00,0x00,0x06,0x01,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x20,0xc0,0x40,0x60,0x20,0x10,0x10,0x08,0x08,0x08,0x08,0x08,0x00 -+// 42174 ꒾ ; -+,0x00,0x07,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x07,0x00,0x00,0xf8,0x08,0x10,0x10,0x20,0x60,0xc0,0xc0,0xc0,0x20,0x20,0x10,0x18,0xf8,0x00 -+// 42175 ꒿ ; -+,0x00,0x00,0x04,0x06,0x06,0x05,0x05,0x04,0x04,0x04,0x05,0x05,0x06,0x06,0x04,0x00,0x00,0x00,0x08,0x18,0x18,0x28,0x28,0xc8,0xc8,0xc8,0x28,0x28,0x18,0x18,0x08,0x00 -+// 42176 ꓀ ; -+,0x00,0x00,0x08,0x00,0x04,0x00,0x02,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x30,0x20,0x60,0x40,0x80,0x80,0x00,0x80,0x80,0x40,0x60,0x20,0x30,0x00 -+// 42177 ꓁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42178 ꓂ ; -+,0x00,0x00,0x07,0x00,0x05,0x02,0x00,0x00,0x00,0x00,0x00,0x07,0x01,0x01,0x06,0x00,0x00,0x00,0x00,0x88,0x88,0x18,0x58,0x28,0x28,0x78,0x58,0x88,0x88,0x80,0x40,0x00 -+// 42179 ꓃ ; -+,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x01,0x00,0x01,0x01,0x02,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x10,0x30,0x20,0x60,0xc0,0x80,0xc0,0x60,0x20,0x10,0x18,0x00,0x00 -+// 42180 ꓄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 42181 ꓅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42182 ꓆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42183 ꓇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42184 ꓈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42185 ꓉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42186 ꓊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42187 ꓋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42188 ꓌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42189 ꓍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42190 ꓎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42191 ꓏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42192 ꓐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42193 ꓑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42194 ꓒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42195 ꓓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42196 ꓔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42197 ꓕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42198 ꓖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42199 ꓗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42200 ꓘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42201 ꓙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42202 ꓚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42203 ꓛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42204 ꓜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42205 ꓝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42206 ꓞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42207 ꓟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42208 ꓠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42209 ꓡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42210 ꓢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42211 ꓣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42212 ꓤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42213 ꓥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42214 ꓦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42215 ꓧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42216 ꓨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42217 ꓩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42218 ꓪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42219 ꓫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42220 ꓬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42221 ꓭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42222 ꓮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42223 ꓯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42224 ꓰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42225 ꓱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42226 ꓲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42227 ꓳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42228 ꓴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42229 ꓵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42230 ꓶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42231 ꓷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42232 ꓸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42233 ꓹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42234 ꓺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42235 ꓻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42236 ꓼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42237 ꓽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42238 ꓾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42239 ꓿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42240 ꔀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42241 ꔁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42242 ꔂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42243 ꔃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42244 ꔄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42245 ꔅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42246 ꔆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42247 ꔇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42248 ꔈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42249 ꔉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42250 ꔊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42251 ꔋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42252 ꔌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42253 ꔍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42254 ꔎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42255 ꔏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42256 ꔐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42257 ꔑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42258 ꔒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42259 ꔓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42260 ꔔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42261 ꔕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42262 ꔖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42263 ꔗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42264 ꔘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42265 ꔙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42266 ꔚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42267 ꔛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42268 ꔜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42269 ꔝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42270 ꔞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42271 ꔟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42272 ꔠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42273 ꔡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42274 ꔢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42275 ꔣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42276 ꔤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42277 ꔥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42278 ꔦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42279 ꔧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42280 ꔨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42281 ꔩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42282 ꔪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42283 ꔫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42284 ꔬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42285 ꔭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42286 ꔮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42287 ꔯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42288 ꔰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42289 ꔱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42290 ꔲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42291 ꔳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42292 ꔴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42293 ꔵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42294 ꔶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42295 ꔷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42296 ꔸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42297 ꔹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42298 ꔺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42299 ꔻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42300 ꔼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42301 ꔽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42302 ꔾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42303 ꔿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42304 ꕀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42305 ꕁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42306 ꕂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42307 ꕃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42308 ꕄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42309 ꕅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42310 ꕆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42311 ꕇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42312 ꕈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42313 ꕉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42314 ꕊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42315 ꕋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42316 ꕌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42317 ꕍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42318 ꕎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42319 ꕏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42320 ꕐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42321 ꕑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42322 ꕒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42323 ꕓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42324 ꕔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42325 ꕕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42326 ꕖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42327 ꕗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42328 ꕘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42329 ꕙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42330 ꕚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42331 ꕛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42332 ꕜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42333 ꕝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42334 ꕞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42335 ꕟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42336 ꕠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42337 ꕡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42338 ꕢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42339 ꕣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42340 ꕤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42341 ꕥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42342 ꕦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42343 ꕧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42344 ꕨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42345 ꕩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42346 ꕪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42347 ꕫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42348 ꕬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42349 ꕭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42350 ꕮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42351 ꕯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42352 ꕰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42353 ꕱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42354 ꕲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42355 ꕳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42356 ꕴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42357 ꕵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42358 ꕶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42359 ꕷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42360 ꕸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42361 ꕹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42362 ꕺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42363 ꕻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42364 ꕼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42365 ꕽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42366 ꕾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42367 ꕿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42368 ꖀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42369 ꖁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42370 ꖂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42371 ꖃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42372 ꖄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42373 ꖅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42374 ꖆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42375 ꖇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42376 ꖈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42377 ꖉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42378 ꖊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42379 ꖋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42380 ꖌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42381 ꖍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42382 ꖎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42383 ꖏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42384 ꖐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42385 ꖑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42386 ꖒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42387 ꖓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42388 ꖔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42389 ꖕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42390 ꖖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42391 ꖗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42392 ꖘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42393 ꖙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42394 ꖚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42395 ꖛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42396 ꖜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42397 ꖝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42398 ꖞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42399 ꖟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42400 ꖠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42401 ꖡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42402 ꖢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42403 ꖣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42404 ꖤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42405 ꖥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42406 ꖦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42407 ꖧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42408 ꖨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42409 ꖩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42410 ꖪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42411 ꖫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42412 ꖬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42413 ꖭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42414 ꖮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42415 ꖯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42416 ꖰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42417 ꖱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42418 ꖲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42419 ꖳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42420 ꖴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42421 ꖵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42422 ꖶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42423 ꖷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42424 ꖸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42425 ꖹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42426 ꖺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42427 ꖻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42428 ꖼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42429 ꖽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42430 ꖾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42431 ꖿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42432 ꗀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42433 ꗁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42434 ꗂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42435 ꗃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42436 ꗄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42437 ꗅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42438 ꗆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42439 ꗇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42440 ꗈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42441 ꗉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42442 ꗊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42443 ꗋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42444 ꗌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42445 ꗍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42446 ꗎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42447 ꗏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42448 ꗐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42449 ꗑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42450 ꗒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42451 ꗓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42452 ꗔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42453 ꗕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42454 ꗖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42455 ꗗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42456 ꗘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42457 ꗙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42458 ꗚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42459 ꗛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42460 ꗜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42461 ꗝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42462 ꗞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42463 ꗟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42464 ꗠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42465 ꗡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42466 ꗢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42467 ꗣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42468 ꗤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42469 ꗥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42470 ꗦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42471 ꗧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42472 ꗨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42473 ꗩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42474 ꗪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42475 ꗫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42476 ꗬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42477 ꗭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42478 ꗮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42479 ꗯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42480 ꗰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42481 ꗱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42482 ꗲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42483 ꗳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42484 ꗴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42485 ꗵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42486 ꗶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42487 ꗷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42488 ꗸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42489 ꗹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42490 ꗺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42491 ꗻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42492 ꗼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42493 ꗽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42494 ꗾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42495 ꗿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42496 ꘀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42497 ꘁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42498 ꘂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42499 ꘃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42500 ꘄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42501 ꘅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42502 ꘆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42503 ꘇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42504 ꘈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42505 ꘉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42506 ꘊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42507 ꘋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42508 ꘌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42509 ꘍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42510 ꘎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42511 ꘏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42512 ꘐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42513 ꘑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42514 ꘒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42515 ꘓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42516 ꘔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42517 ꘕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42518 ꘖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42519 ꘗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42520 ꘘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42521 ꘙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42522 ꘚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42523 ꘛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42524 ꘜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42525 ꘝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42526 ꘞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42527 ꘟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42528 ꘠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42529 ꘡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42530 ꘢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42531 ꘣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42532 ꘤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42533 ꘥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42534 ꘦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42535 ꘧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42536 ꘨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42537 ꘩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42538 ꘪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42539 ꘫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42540 ꘬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42541 ꘭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42542 ꘮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42543 ꘯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42544 ꘰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42545 ꘱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42546 ꘲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42547 ꘳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42548 ꘴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42549 ꘵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42550 ꘶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42551 ꘷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42552 ꘸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42553 ꘹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42554 ꘺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42555 ꘻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42556 ꘼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42557 ꘽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42558 ꘾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42559 ꘿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42560 Ꙁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42561 ꙁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42562 Ꙃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42563 ꙃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42564 Ꙅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42565 ꙅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42566 Ꙇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42567 ꙇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42568 Ꙉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42569 ꙉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42570 Ꙋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42571 ꙋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42572 Ꙍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42573 ꙍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42574 Ꙏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42575 ꙏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42576 Ꙑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42577 ꙑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42578 Ꙓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42579 ꙓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42580 Ꙕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42581 ꙕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42582 Ꙗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42583 ꙗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42584 Ꙙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42585 ꙙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42586 Ꙛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42587 ꙛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42588 Ꙝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42589 ꙝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42590 Ꙟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42591 ꙟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42592 Ꙡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42593 ꙡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42594 Ꙣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42595 ꙣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42596 Ꙥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42597 ꙥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42598 Ꙧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42599 ꙧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42600 Ꙩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42601 ꙩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42602 Ꙫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42603 ꙫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42604 Ꙭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42605 ꙭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42606 ꙮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42607 ꙯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42608 ꙰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42609 ꙱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42610 ꙲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42611 ꙳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42612 ꙴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42613 ꙵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42614 ꙶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42615 ꙷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42616 ꙸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42617 ꙹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42618 ꙺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42619 ꙻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42620 ꙼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42621 ꙽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42622 ꙾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42623 ꙿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42624 Ꚁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42625 ꚁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42626 Ꚃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42627 ꚃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42628 Ꚅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42629 ꚅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42630 Ꚇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42631 ꚇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42632 Ꚉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42633 ꚉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42634 Ꚋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42635 ꚋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42636 Ꚍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42637 ꚍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42638 Ꚏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42639 ꚏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42640 Ꚑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42641 ꚑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42642 Ꚓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42643 ꚓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42644 Ꚕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42645 ꚕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42646 Ꚗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42647 ꚗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42648 Ꚙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42649 ꚙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42650 Ꚛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42651 ꚛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42652 ꚜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42653 ꚝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42654 ꚞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42655 ꚟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42656 ꚠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42657 ꚡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42658 ꚢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42659 ꚣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42660 ꚤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42661 ꚥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42662 ꚦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42663 ꚧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42664 ꚨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42665 ꚩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42666 ꚪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42667 ꚫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42668 ꚬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42669 ꚭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42670 ꚮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42671 ꚯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42672 ꚰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42673 ꚱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42674 ꚲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42675 ꚳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42676 ꚴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42677 ꚵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42678 ꚶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42679 ꚷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42680 ꚸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42681 ꚹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42682 ꚺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42683 ꚻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42684 ꚼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42685 ꚽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42686 ꚾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42687 ꚿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42688 ꛀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42689 ꛁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42690 ꛂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42691 ꛃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42692 ꛄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42693 ꛅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42694 ꛆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42695 ꛇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42696 ꛈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42697 ꛉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42698 ꛊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42699 ꛋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42700 ꛌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42701 ꛍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42702 ꛎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42703 ꛏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42704 ꛐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42705 ꛑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42706 ꛒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42707 ꛓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42708 ꛔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42709 ꛕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42710 ꛖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42711 ꛗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42712 ꛘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42713 ꛙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42714 ꛚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42715 ꛛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42716 ꛜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42717 ꛝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42718 ꛞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42719 ꛟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42720 ꛠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42721 ꛡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42722 ꛢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42723 ꛣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42724 ꛤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42725 ꛥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42726 ꛦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42727 ꛧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42728 ꛨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42729 ꛩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42730 ꛪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42731 ꛫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42732 ꛬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42733 ꛭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42734 ꛮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42735 ꛯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42736 ꛰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42737 ꛱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42738 ꛲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42739 ꛳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42740 ꛴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42741 ꛵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42742 ꛶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42743 ꛷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42744 ꛸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42745 ꛹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42746 ꛺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42747 ꛻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42748 ꛼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42749 ꛽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42750 ꛾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42751 ꛿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42752 ꜀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42753 ꜁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42754 ꜂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42755 ꜃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42756 ꜄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42757 ꜅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42758 ꜆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42759 ꜇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42760 ꜈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42761 ꜉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42762 ꜊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42763 ꜋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42764 ꜌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42765 ꜍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42766 ꜎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42767 ꜏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42768 ꜐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42769 ꜑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42770 ꜒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42771 ꜓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42772 ꜔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42773 ꜕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42774 ꜖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42775 ꜗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42776 ꜘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42777 ꜙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42778 ꜚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42779 ꜛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42780 ꜜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42781 ꜝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42782 ꜞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42783 ꜟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42784 ꜠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42785 ꜡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42786 Ꜣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42787 ꜣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42788 Ꜥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42789 ꜥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42790 Ꜧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42791 ꜧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42792 Ꜩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42793 ꜩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42794 Ꜫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42795 ꜫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42796 Ꜭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42797 ꜭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42798 Ꜯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42799 ꜯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42800 ꜰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42801 ꜱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42802 Ꜳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42803 ꜳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42804 Ꜵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42805 ꜵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42806 Ꜷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42807 ꜷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42808 Ꜹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42809 ꜹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42810 Ꜻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42811 ꜻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42812 Ꜽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42813 ꜽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42814 Ꜿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42815 ꜿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42816 Ꝁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42817 ꝁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42818 Ꝃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42819 ꝃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42820 Ꝅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42821 ꝅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42822 Ꝇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42823 ꝇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42824 Ꝉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42825 ꝉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42826 Ꝋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42827 ꝋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42828 Ꝍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42829 ꝍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42830 Ꝏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42831 ꝏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42832 Ꝑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42833 ꝑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42834 Ꝓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42835 ꝓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42836 Ꝕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42837 ꝕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42838 Ꝗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42839 ꝗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42840 Ꝙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42841 ꝙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42842 Ꝛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42843 ꝛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42844 Ꝝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42845 ꝝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42846 Ꝟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42847 ꝟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42848 Ꝡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42849 ꝡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42850 Ꝣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42851 ꝣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42852 Ꝥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42853 ꝥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42854 Ꝧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42855 ꝧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42856 Ꝩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42857 ꝩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42858 Ꝫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42859 ꝫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42860 Ꝭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42861 ꝭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42862 Ꝯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42863 ꝯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42864 ꝰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42865 ꝱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42866 ꝲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42867 ꝳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42868 ꝴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42869 ꝵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42870 ꝶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42871 ꝷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42872 ꝸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42873 Ꝺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42874 ꝺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42875 Ꝼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42876 ꝼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42877 Ᵹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42878 Ꝿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42879 ꝿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42880 Ꞁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42881 ꞁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42882 Ꞃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42883 ꞃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42884 Ꞅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42885 ꞅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42886 Ꞇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42887 ꞇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42888 ꞈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42889 ꞉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42890 ꞊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42891 Ꞌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42892 ꞌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42893 Ɥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42894 ꞎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42895 ꞏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42896 Ꞑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42897 ꞑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42898 Ꞓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42899 ꞓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42900 ꞔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42901 ꞕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42902 Ꞗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42903 ꞗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42904 Ꞙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42905 ꞙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42906 Ꞛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42907 ꞛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42908 Ꞝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42909 ꞝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42910 Ꞟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42911 ꞟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42912 Ꞡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42913 ꞡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42914 Ꞣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42915 ꞣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42916 Ꞥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42917 ꞥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42918 Ꞧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42919 ꞧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42920 Ꞩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42921 ꞩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42922 Ɦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42923 Ɜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42924 Ɡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42925 Ɬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42926 Ɪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42927 ꞯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42928 Ʞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42929 Ʇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42930 Ʝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42931 Ꭓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42932 Ꞵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42933 ꞵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42934 Ꞷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42935 ꞷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42936 Ꞹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42937 ꞹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42938 Ꞻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42939 ꞻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42940 Ꞽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42941 ꞽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42942 Ꞿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42943 ꞿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42944 Ꟁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42945 ꟁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42946 Ꟃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42947 ꟃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42948 Ꞔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42949 Ʂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42950 Ᶎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42951 Ꟈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42952 ꟈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42953 Ꟊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42954 ꟊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42955 Ɤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42956 Ꟍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42957 ꟍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42958 ꟎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42959 ꟏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42960 Ꟑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42961 ꟑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42962 ꟒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42963 ꟓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42964 ꟔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42965 ꟕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42966 Ꟗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42967 ꟗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42968 Ꟙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42969 ꟙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42970 Ꟛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42971 ꟛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42972 Ƛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42973 ꟝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42974 ꟞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42975 ꟟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42976 ꟠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42977 ꟡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42978 ꟢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42979 ꟣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42980 ꟤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42981 ꟥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42982 ꟦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42983 ꟧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42984 ꟨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42985 ꟩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42986 ꟪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42987 ꟫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42988 ꟬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42989 ꟭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42990 ꟮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42991 ꟯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42992 ꟰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42993 ꟱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42994 ꟲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42995 ꟳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42996 ꟴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42997 Ꟶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42998 ꟶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 42999 ꟷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43000 ꟸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43001 ꟹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43002 ꟺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43003 ꟻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43004 ꟼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43005 ꟽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43006 ꟾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43007 ꟿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43008 ꠀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43009 ꠁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43010 ꠂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43011 ꠃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43012 ꠄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43013 ꠅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43014 ꠆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43015 ꠇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43016 ꠈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43017 ꠉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43018 ꠊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43019 ꠋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43020 ꠌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43021 ꠍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43022 ꠎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43023 ꠏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43024 ꠐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43025 ꠑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43026 ꠒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43027 ꠓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43028 ꠔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43029 ꠕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43030 ꠖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43031 ꠗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43032 ꠘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43033 ꠙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43034 ꠚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43035 ꠛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43036 ꠜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43037 ꠝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43038 ꠞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43039 ꠟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43040 ꠠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43041 ꠡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43042 ꠢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43043 ꠣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43044 ꠤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43045 ꠥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43046 ꠦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43047 ꠧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43048 ꠨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43049 ꠩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43050 ꠪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43051 ꠫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43052 ꠬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43053 ꠭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43054 ꠮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43055 ꠯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43056 ꠰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43057 ꠱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43058 ꠲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43059 ꠳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43060 ꠴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43061 ꠵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43062 ꠶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43063 ꠷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43064 ꠸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43065 ꠹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43066 ꠺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43067 ꠻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43068 ꠼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43069 ꠽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43070 ꠾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43071 ꠿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43072 ꡀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43073 ꡁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43074 ꡂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43075 ꡃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43076 ꡄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43077 ꡅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43078 ꡆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43079 ꡇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43080 ꡈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43081 ꡉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43082 ꡊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43083 ꡋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43084 ꡌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43085 ꡍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43086 ꡎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43087 ꡏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43088 ꡐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43089 ꡑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43090 ꡒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43091 ꡓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43092 ꡔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43093 ꡕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43094 ꡖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43095 ꡗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43096 ꡘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43097 ꡙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43098 ꡚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43099 ꡛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43100 ꡜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43101 ꡝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43102 ꡞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43103 ꡟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43104 ꡠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43105 ꡡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43106 ꡢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43107 ꡣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43108 ꡤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43109 ꡥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43110 ꡦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43111 ꡧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43112 ꡨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43113 ꡩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43114 ꡪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43115 ꡫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43116 ꡬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43117 ꡭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43118 ꡮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43119 ꡯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43120 ꡰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43121 ꡱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43122 ꡲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43123 ꡳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43124 ꡴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43125 ꡵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43126 ꡶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43127 ꡷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43128 ꡸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43129 ꡹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43130 ꡺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43131 ꡻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43132 ꡼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43133 ꡽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43134 ꡾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43135 ꡿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43136 ꢀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43137 ꢁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43138 ꢂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43139 ꢃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43140 ꢄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43141 ꢅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43142 ꢆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43143 ꢇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43144 ꢈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43145 ꢉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43146 ꢊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43147 ꢋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43148 ꢌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43149 ꢍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43150 ꢎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43151 ꢏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43152 ꢐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43153 ꢑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43154 ꢒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43155 ꢓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43156 ꢔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43157 ꢕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43158 ꢖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43159 ꢗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43160 ꢘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43161 ꢙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43162 ꢚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43163 ꢛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43164 ꢜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43165 ꢝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43166 ꢞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43167 ꢟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43168 ꢠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43169 ꢡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43170 ꢢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43171 ꢣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43172 ꢤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43173 ꢥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43174 ꢦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43175 ꢧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43176 ꢨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43177 ꢩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43178 ꢪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43179 ꢫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43180 ꢬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43181 ꢭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43182 ꢮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43183 ꢯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43184 ꢰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43185 ꢱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43186 ꢲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43187 ꢳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43188 ꢴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43189 ꢵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43190 ꢶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43191 ꢷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43192 ꢸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43193 ꢹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43194 ꢺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43195 ꢻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43196 ꢼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43197 ꢽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43198 ꢾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43199 ꢿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43200 ꣀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43201 ꣁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43202 ꣂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43203 ꣃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43204 ꣄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43205 ꣅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43206 ꣆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43207 ꣇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43208 ꣈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43209 ꣉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43210 ꣊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43211 ꣋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43212 ꣌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43213 ꣍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43214 ꣎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43215 ꣏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43216 ꣐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43217 ꣑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43218 ꣒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43219 ꣓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43220 ꣔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43221 ꣕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43222 ꣖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43223 ꣗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43224 ꣘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43225 ꣙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43226 ꣚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43227 ꣛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43228 ꣜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43229 ꣝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43230 ꣞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43231 ꣟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43232 ꣠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43233 ꣡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43234 ꣢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43235 ꣣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43236 ꣤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43237 ꣥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43238 ꣦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43239 ꣧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43240 ꣨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43241 ꣩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43242 ꣪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43243 ꣫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43244 ꣬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43245 ꣭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43246 ꣮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43247 ꣯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43248 ꣰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43249 ꣱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43250 ꣲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43251 ꣳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43252 ꣴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43253 ꣵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43254 ꣶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43255 ꣷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43256 ꣸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43257 ꣹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43258 ꣺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43259 ꣻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43260 ꣼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43261 ꣽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43262 ꣾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43263 ꣿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43264 ꤀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43265 ꤁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43266 ꤂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43267 ꤃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43268 ꤄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43269 ꤅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43270 ꤆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43271 ꤇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43272 ꤈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43273 ꤉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43274 ꤊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43275 ꤋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43276 ꤌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43277 ꤍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43278 ꤎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43279 ꤏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43280 ꤐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43281 ꤑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43282 ꤒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43283 ꤓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43284 ꤔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43285 ꤕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43286 ꤖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43287 ꤗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43288 ꤘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43289 ꤙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43290 ꤚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43291 ꤛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43292 ꤜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43293 ꤝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43294 ꤞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43295 ꤟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43296 ꤠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43297 ꤡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43298 ꤢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43299 ꤣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43300 ꤤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43301 ꤥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43302 ꤦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43303 ꤧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43304 ꤨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43305 ꤩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43306 ꤪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43307 ꤫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43308 ꤬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43309 ꤭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43310 ꤮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43311 ꤯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43312 ꤰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43313 ꤱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43314 ꤲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43315 ꤳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43316 ꤴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43317 ꤵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43318 ꤶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43319 ꤷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43320 ꤸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43321 ꤹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43322 ꤺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43323 ꤻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43324 ꤼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43325 ꤽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43326 ꤾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43327 ꤿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43328 ꥀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43329 ꥁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43330 ꥂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43331 ꥃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43332 ꥄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43333 ꥅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43334 ꥆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43335 ꥇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43336 ꥈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43337 ꥉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43338 ꥊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43339 ꥋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43340 ꥌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43341 ꥍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43342 ꥎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43343 ꥏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43344 ꥐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43345 ꥑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43346 ꥒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43347 ꥓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43348 ꥔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43349 ꥕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43350 ꥖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43351 ꥗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43352 ꥘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43353 ꥙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43354 ꥚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43355 ꥛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43356 ꥜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43357 ꥝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43358 ꥞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43359 ꥟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43360 ꥠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43361 ꥡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43362 ꥢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43363 ꥣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43364 ꥤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43365 ꥥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43366 ꥦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43367 ꥧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43368 ꥨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43369 ꥩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43370 ꥪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43371 ꥫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43372 ꥬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43373 ꥭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43374 ꥮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43375 ꥯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43376 ꥰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43377 ꥱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43378 ꥲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43379 ꥳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43380 ꥴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43381 ꥵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43382 ꥶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43383 ꥷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43384 ꥸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43385 ꥹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43386 ꥺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43387 ꥻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43388 ꥼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43389 ꥽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43390 ꥾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43391 ꥿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43392 ꦀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43393 ꦁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43394 ꦂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43395 ꦃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43396 ꦄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43397 ꦅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43398 ꦆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43399 ꦇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43400 ꦈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43401 ꦉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43402 ꦊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43403 ꦋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43404 ꦌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43405 ꦍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43406 ꦎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43407 ꦏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43408 ꦐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43409 ꦑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43410 ꦒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43411 ꦓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43412 ꦔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43413 ꦕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43414 ꦖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43415 ꦗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43416 ꦘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43417 ꦙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43418 ꦚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43419 ꦛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43420 ꦜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43421 ꦝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43422 ꦞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43423 ꦟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43424 ꦠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43425 ꦡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43426 ꦢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43427 ꦣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43428 ꦤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43429 ꦥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43430 ꦦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43431 ꦧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43432 ꦨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43433 ꦩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43434 ꦪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43435 ꦫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43436 ꦬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43437 ꦭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43438 ꦮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43439 ꦯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43440 ꦰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43441 ꦱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43442 ꦲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43443 ꦳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43444 ꦴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43445 ꦵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43446 ꦶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43447 ꦷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43448 ꦸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43449 ꦹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43450 ꦺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43451 ꦻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43452 ꦼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43453 ꦽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43454 ꦾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43455 ꦿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43456 ꧀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43457 ꧁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43458 ꧂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43459 ꧃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43460 ꧄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43461 ꧅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43462 ꧆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43463 ꧇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43464 ꧈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43465 ꧉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43466 ꧊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43467 ꧋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43468 ꧌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43469 ꧍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43470 ꧎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43471 ꧏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43472 ꧐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43473 ꧑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43474 ꧒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43475 ꧓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43476 ꧔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43477 ꧕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43478 ꧖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43479 ꧗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43480 ꧘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43481 ꧙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43482 ꧚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43483 ꧛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43484 ꧜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43485 ꧝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43486 ꧞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43487 ꧟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43488 ꧠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43489 ꧡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43490 ꧢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43491 ꧣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43492 ꧤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43493 ꧥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43494 ꧦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43495 ꧧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43496 ꧨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43497 ꧩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43498 ꧪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43499 ꧫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43500 ꧬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43501 ꧭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43502 ꧮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43503 ꧯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43504 ꧰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43505 ꧱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43506 ꧲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43507 ꧳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43508 ꧴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43509 ꧵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43510 ꧶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43511 ꧷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43512 ꧸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43513 ꧹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43514 ꧺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43515 ꧻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43516 ꧼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43517 ꧽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43518 ꧾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43519 ꧿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43520 ꨀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43521 ꨁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43522 ꨂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43523 ꨃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43524 ꨄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43525 ꨅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43526 ꨆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43527 ꨇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43528 ꨈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43529 ꨉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43530 ꨊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43531 ꨋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43532 ꨌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43533 ꨍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43534 ꨎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43535 ꨏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43536 ꨐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43537 ꨑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43538 ꨒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43539 ꨓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43540 ꨔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43541 ꨕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43542 ꨖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43543 ꨗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43544 ꨘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43545 ꨙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43546 ꨚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43547 ꨛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43548 ꨜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43549 ꨝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43550 ꨞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43551 ꨟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43552 ꨠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43553 ꨡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43554 ꨢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43555 ꨣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43556 ꨤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43557 ꨥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43558 ꨦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43559 ꨧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43560 ꨨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43561 ꨩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43562 ꨪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43563 ꨫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43564 ꨬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43565 ꨭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43566 ꨮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43567 ꨯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43568 ꨰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43569 ꨱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43570 ꨲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43571 ꨳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43572 ꨴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43573 ꨵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43574 ꨶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43575 ꨷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43576 ꨸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43577 ꨹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43578 ꨺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43579 ꨻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43580 ꨼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43581 ꨽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43582 ꨾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43583 ꨿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43584 ꩀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43585 ꩁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43586 ꩂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43587 ꩃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43588 ꩄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43589 ꩅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43590 ꩆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43591 ꩇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43592 ꩈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43593 ꩉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43594 ꩊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43595 ꩋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43596 ꩌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43597 ꩍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43598 ꩎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43599 ꩏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43600 ꩐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43601 ꩑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43602 ꩒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43603 ꩓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43604 ꩔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43605 ꩕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43606 ꩖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43607 ꩗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43608 ꩘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43609 ꩙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43610 ꩚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43611 ꩛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43612 ꩜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43613 ꩝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43614 ꩞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43615 ꩟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43616 ꩠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43617 ꩡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43618 ꩢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43619 ꩣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43620 ꩤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43621 ꩥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43622 ꩦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43623 ꩧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43624 ꩨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43625 ꩩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43626 ꩪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43627 ꩫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43628 ꩬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43629 ꩭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43630 ꩮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43631 ꩯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43632 ꩰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43633 ꩱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43634 ꩲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43635 ꩳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43636 ꩴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43637 ꩵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43638 ꩶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43639 ꩷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43640 ꩸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43641 ꩹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43642 ꩺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43643 ꩻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43644 ꩼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43645 ꩽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43646 ꩾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43647 ꩿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43648 ꪀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43649 ꪁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43650 ꪂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43651 ꪃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43652 ꪄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43653 ꪅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43654 ꪆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43655 ꪇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43656 ꪈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43657 ꪉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43658 ꪊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43659 ꪋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43660 ꪌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43661 ꪍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43662 ꪎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43663 ꪏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43664 ꪐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43665 ꪑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43666 ꪒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43667 ꪓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43668 ꪔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43669 ꪕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43670 ꪖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43671 ꪗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43672 ꪘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43673 ꪙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43674 ꪚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43675 ꪛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43676 ꪜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43677 ꪝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43678 ꪞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43679 ꪟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43680 ꪠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43681 ꪡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43682 ꪢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43683 ꪣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43684 ꪤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43685 ꪥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43686 ꪦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43687 ꪧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43688 ꪨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43689 ꪩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43690 ꪪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43691 ꪫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43692 ꪬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43693 ꪭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43694 ꪮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43695 ꪯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43696 ꪰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43697 ꪱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43698 ꪲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43699 ꪳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43700 ꪴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43701 ꪵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43702 ꪶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43703 ꪷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43704 ꪸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43705 ꪹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43706 ꪺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43707 ꪻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43708 ꪼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43709 ꪽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43710 ꪾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43711 ꪿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43712 ꫀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43713 ꫁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43714 ꫂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43715 ꫃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43716 ꫄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43717 ꫅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43718 ꫆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43719 ꫇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43720 ꫈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43721 ꫉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43722 ꫊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43723 ꫋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43724 ꫌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43725 ꫍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43726 ꫎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43727 ꫏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43728 ꫐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43729 ꫑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43730 ꫒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43731 ꫓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43732 ꫔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43733 ꫕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43734 ꫖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43735 ꫗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43736 ꫘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43737 ꫙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43738 ꫚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43739 ꫛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43740 ꫜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43741 ꫝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43742 ꫞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43743 ꫟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43744 ꫠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43745 ꫡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43746 ꫢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43747 ꫣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43748 ꫤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43749 ꫥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43750 ꫦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43751 ꫧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43752 ꫨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43753 ꫩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43754 ꫪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43755 ꫫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43756 ꫬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43757 ꫭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43758 ꫮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43759 ꫯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43760 ꫰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43761 ꫱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43762 ꫲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43763 ꫳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43764 ꫴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43765 ꫵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43766 ꫶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43767 ꫷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43768 ꫸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43769 ꫹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43770 ꫺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43771 ꫻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43772 ꫼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43773 ꫽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43774 ꫾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43775 ꫿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43776 ꬀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43777 ꬁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43778 ꬂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43779 ꬃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43780 ꬄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43781 ꬅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43782 ꬆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43783 ꬇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43784 ꬈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43785 ꬉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43786 ꬊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43787 ꬋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43788 ꬌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43789 ꬍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43790 ꬎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43791 ꬏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43792 ꬐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43793 ꬑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43794 ꬒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43795 ꬓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43796 ꬔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43797 ꬕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43798 ꬖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43799 ꬗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43800 ꬘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43801 ꬙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43802 ꬚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43803 ꬛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43804 ꬜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43805 ꬝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43806 ꬞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43807 ꬟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43808 ꬠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43809 ꬡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43810 ꬢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43811 ꬣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43812 ꬤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43813 ꬥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43814 ꬦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43815 ꬧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43816 ꬨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43817 ꬩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43818 ꬪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43819 ꬫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43820 ꬬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43821 ꬭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43822 ꬮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43823 ꬯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43824 ꬰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43825 ꬱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43826 ꬲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43827 ꬳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43828 ꬴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43829 ꬵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43830 ꬶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43831 ꬷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43832 ꬸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43833 ꬹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43834 ꬺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43835 ꬻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43836 ꬼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43837 ꬽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43838 ꬾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43839 ꬿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43840 ꭀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43841 ꭁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43842 ꭂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43843 ꭃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43844 ꭄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43845 ꭅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43846 ꭆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43847 ꭇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43848 ꭈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43849 ꭉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43850 ꭊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43851 ꭋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43852 ꭌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43853 ꭍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43854 ꭎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43855 ꭏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43856 ꭐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43857 ꭑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43858 ꭒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43859 ꭓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43860 ꭔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43861 ꭕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43862 ꭖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43863 ꭗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43864 ꭘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43865 ꭙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43866 ꭚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43867 ꭛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43868 ꭜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43869 ꭝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43870 ꭞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43871 ꭟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43872 ꭠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43873 ꭡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43874 ꭢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43875 ꭣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43876 ꭤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43877 ꭥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43878 ꭦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43879 ꭧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43880 ꭨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43881 ꭩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43882 ꭪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43883 ꭫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43884 ꭬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43885 ꭭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43886 ꭮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43887 ꭯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43888 ꭰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43889 ꭱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43890 ꭲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43891 ꭳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43892 ꭴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43893 ꭵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43894 ꭶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43895 ꭷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43896 ꭸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43897 ꭹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43898 ꭺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43899 ꭻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43900 ꭼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43901 ꭽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43902 ꭾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43903 ꭿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43904 ꮀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43905 ꮁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43906 ꮂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43907 ꮃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43908 ꮄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43909 ꮅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43910 ꮆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43911 ꮇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43912 ꮈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43913 ꮉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43914 ꮊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43915 ꮋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43916 ꮌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43917 ꮍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43918 ꮎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43919 ꮏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43920 ꮐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43921 ꮑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43922 ꮒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43923 ꮓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43924 ꮔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43925 ꮕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43926 ꮖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43927 ꮗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43928 ꮘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43929 ꮙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43930 ꮚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43931 ꮛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43932 ꮜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43933 ꮝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43934 ꮞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43935 ꮟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43936 ꮠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43937 ꮡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43938 ꮢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43939 ꮣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43940 ꮤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43941 ꮥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43942 ꮦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43943 ꮧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43944 ꮨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43945 ꮩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43946 ꮪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43947 ꮫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43948 ꮬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43949 ꮭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43950 ꮮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43951 ꮯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43952 ꮰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43953 ꮱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43954 ꮲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43955 ꮳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43956 ꮴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43957 ꮵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43958 ꮶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43959 ꮷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43960 ꮸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43961 ꮹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43962 ꮺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43963 ꮻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43964 ꮼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43965 ꮽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43966 ꮾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43967 ꮿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43968 ꯀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43969 ꯁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43970 ꯂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43971 ꯃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43972 ꯄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43973 ꯅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43974 ꯆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43975 ꯇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43976 ꯈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43977 ꯉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43978 ꯊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43979 ꯋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43980 ꯌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43981 ꯍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43982 ꯎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43983 ꯏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43984 ꯐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43985 ꯑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43986 ꯒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43987 ꯓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43988 ꯔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43989 ꯕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43990 ꯖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43991 ꯗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43992 ꯘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43993 ꯙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43994 ꯚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43995 ꯛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43996 ꯜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43997 ꯝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43998 ꯞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 43999 ꯟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44000 ꯠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44001 ꯡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44002 ꯢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44003 ꯣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44004 ꯤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44005 ꯥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44006 ꯦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44007 ꯧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44008 ꯨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44009 ꯩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44010 ꯪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44011 ꯫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44012 ꯬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44013 ꯭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44014 ꯮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44015 ꯯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44016 ꯰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44017 ꯱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44018 ꯲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44019 ꯳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44020 ꯴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44021 ꯵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44022 ꯶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44023 ꯷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44024 ꯸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44025 ꯹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44026 ꯺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44027 ꯻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44028 ꯼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44029 ꯽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44030 ꯾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44031 ꯿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44032 가 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x90,0x90,0x10,0x10,0x1e,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 44033 각 ; -+,0x00,0x00,0x00,0x13,0x01,0x01,0x02,0x04,0x08,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x90,0x90,0x08,0x1e,0x18,0x10,0x00,0xd8,0x18,0x18,0x18,0x10,0x00 -+// 44034 갂 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x0e,0x08,0x08,0x00,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 44035 갃 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x10,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x08,0x08,0x00,0x98,0x90,0x98,0x24,0xc2,0x00 -+// 44036 간 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x08,0x10,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x08,0x0e,0x08,0x08,0x08,0x00,0x00,0x00,0xbc,0x00 -+// 44037 갅 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x08,0x0c,0x30,0x30,0x28,0x44,0x84,0x00 -+// 44038 갆 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x20,0x10,0x90,0x90,0x10,0x1e,0x10,0x10,0x30,0x8c,0x30,0x48,0xc8,0x78,0x00 -+// 44039 갇 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x02,0x04,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x08,0x08,0x08,0x00,0x18,0x00,0x00,0x00,0xb8,0x00 -+// 44040 갈 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x13,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0xf8,0x00,0x18,0x00,0x00,0xfc,0x00 -+// 44041 갉 ; -+,0x00,0x00,0x00,0x13,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x20,0x10,0x90,0x10,0x10,0x1e,0x10,0x10,0x70,0x08,0x08,0x08,0x08,0x00,0x00 -+// 44042 갊 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x30,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0x78,0x48,0x48,0x48,0x08,0x20,0x00 -+// 44043 갋 ; -+,0x00,0x00,0x00,0x13,0x01,0x01,0x02,0x04,0x08,0x18,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x30,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0x98,0x48,0x48,0x48,0x48,0x48,0x00 -+// 44044 갌 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x1f,0x00,0x01,0x0c,0x00,0x06,0x00,0x00,0x20,0x10,0x90,0x10,0x10,0x1e,0x10,0x10,0x10,0x10,0x10,0x28,0x04,0x04,0x00 -+// 44045 갍 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x30,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0x78,0x40,0x58,0x40,0x48,0x00,0x00 -+// 44046 갎 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x09,0x0c,0x00,0x00,0x30,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0x48,0x10,0x48,0x50,0x14,0x00,0x00 -+// 44047 갏 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x11,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x30,0x10,0x90,0x90,0x00,0x1e,0x10,0x10,0x00,0x7c,0x30,0x48,0x44,0x38,0x00 -+// 44048 감 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x0e,0x08,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x00 -+// 44049 갑 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x14,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x20,0x10,0x90,0x90,0x10,0x1e,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 44050 값 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x11,0x08,0x07,0x04,0x05,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x10,0x1e,0x10,0x10,0x10,0x90,0x90,0xa8,0x44,0x80,0x00 -+// 44051 갓 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x06,0x08,0x10,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0a,0x08,0x08,0x40,0x40,0xe0,0x98,0x0c,0x00,0x00 -+// 44052 갔 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x01,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x90,0x10,0x1e,0x10,0x10,0x10,0x10,0x10,0xa8,0x84,0x00,0x00 -+// 44053 강 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x10,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0a,0x08,0x08,0x40,0x90,0x10,0x08,0x10,0xe0,0x00 -+// 44054 갖 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x02,0x08,0x10,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x10,0x08,0x88,0x08,0x0e,0x08,0x00,0x00,0xf8,0xc0,0xa0,0x18,0x00,0x00 -+// 44055 갗 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0xe0,0x08,0x40,0xe0,0x08,0x04,0x00 -+// 44056 갘 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x0a,0x08,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x00 -+// 44057 같 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x10,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x00,0x1e,0x10,0x00,0x10,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 44058 갚 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x10,0x02,0x01,0x01,0x01,0x06,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0x18,0x00,0x10,0x10,0x20,0x00,0x00 -+// 44059 갛 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x06,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x10,0x1e,0x10,0x10,0x00,0x58,0xc0,0x10,0x10,0xe0,0x00 -+// 44060 개 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0xa4,0x24,0x24,0x3c,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 44061 객 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x04,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 44062 갞 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x02,0x04,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x3c,0x24,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 44063 갟 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x02,0x04,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x3c,0x24,0x00,0x18,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 44064 갠 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x06,0x04,0x08,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x24,0x04,0x00,0x00,0x3c,0x00 -+// 44065 갡 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x02,0x04,0x08,0x18,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x2c,0x24,0x20,0x00,0xf0,0x10,0x38,0x24,0x84,0x00 -+// 44066 갢 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x04,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x4c,0x24,0xa4,0x24,0x3c,0x20,0x20,0x00,0xfc,0x30,0x48,0x44,0x38,0x00 -+// 44067 갣 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 44068 갤 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x28,0x28,0x28,0x08,0x08,0x08,0x00,0x00,0xdc,0x00 -+// 44069 갥 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x08,0x1f,0x00,0x09,0x04,0x04,0x06,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0x3c,0x20,0x20,0xa8,0x08,0x88,0x08,0x88,0x08,0x00 -+// 44070 갦 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x08,0x1f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0xec,0xa4,0xa0,0x20,0x2c,0x20,0x00 -+// 44071 갧 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x06,0x04,0x0f,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0xcc,0xa4,0x3c,0x24,0x24,0x24,0x00 -+// 44072 갨 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x00,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x38,0x28,0x20,0x18,0x88,0x90,0x1c,0x24,0x42,0x00 -+// 44073 갩 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x00,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x78,0x40,0x78,0x40,0x40,0x00,0x00 -+// 44074 갪 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x5c,0x08,0x48,0x28,0x00,0x40,0x00 -+// 44075 갫 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x00,0x01,0x00,0x05,0x04,0x06,0x02,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0xfe,0x98,0x24,0xa4,0x18,0x00 -+// 44076 갬 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x1c,0x14,0x00,0x00,0x84,0x84,0x84,0x84,0x80,0x00 -+// 44077 갭 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x09,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x0c,0x04,0xfc,0x04,0xfc,0x00,0x00 -+// 44078 갮 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x02,0x04,0x08,0x04,0x07,0x04,0x07,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0x24,0x20,0x88,0x08,0x98,0x14,0xa2,0x00,0x00 -+// 44079 갯 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x04,0x20,0x20,0x48,0x84,0x02,0x00 -+// 44080 갰 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x08,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x38,0x28,0x20,0x10,0x18,0x10,0x88,0x24,0x00,0x00 -+// 44081 갱 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x2c,0x2c,0x24,0x20,0x70,0x88,0x80,0x88,0x70,0x00 -+// 44082 갲 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x02,0x04,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x0c,0x40,0x60,0x90,0x0c,0x04,0x00 -+// 44083 갳 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x08,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0xe0,0x00,0x60,0x50,0x8c,0x00,0x00 -+// 44084 갴 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x84,0x04,0x1c,0x04,0x04,0x04,0x04,0x04,0xc4,0x04,0x04,0x00 -+// 44085 갵 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x08,0x13,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x3c,0x20,0x20,0x38,0x00,0x18,0x00,0x00,0xf8,0x00 -+// 44086 갶 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x04,0x00,0x08,0x80,0x90,0x86,0x00 -+// 44087 갷 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x02,0x04,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0x2c,0x24,0xe0,0x00,0xe0,0xf0,0x10,0x90,0xe0,0x00 -+// 44088 갸 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x0e,0x08,0x08,0x08,0x0e,0x08,0x08,0x08,0x08,0x00 -+// 44089 갹 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x90,0x90,0x0e,0x18,0x18,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 44090 갺 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x1a,0x10,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 44091 갻 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x90,0x90,0x0e,0x18,0x18,0x10,0x00,0x10,0x10,0x38,0x24,0x00,0x00 -+// 44092 갼 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x1a,0x18,0x08,0x18,0x18,0x10,0x00,0x00,0x00,0x00,0x00 -+// 44093 갽 ; -+,0x00,0x00,0x00,0x11,0x00,0x01,0x02,0x04,0x08,0x10,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0x90,0x90,0x0e,0x18,0x18,0x10,0x00,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 44094 갾 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x10,0x00,0xec,0x30,0x48,0x48,0x70,0x00 -+// 44095 갿 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x10,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x0e,0x08,0x18,0x18,0x00,0x70,0x00,0x00,0x08,0x00,0x00 -+// 44096 걀 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x03,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x10,0x90,0x10,0xf0,0x00,0x08,0x00,0x00 -+// 44097 걁 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x10,0x90,0x1e,0x10,0x10,0x1e,0x10,0x18,0x10,0x00,0x00,0x10,0x00 -+// 44098 걂 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x10,0x78,0x48,0x48,0x48,0x48,0x40,0x00 -+// 44099 걃 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x1f,0x00,0x02,0x08,0x08,0x0c,0x00,0x00,0x00,0x10,0x90,0x10,0x1e,0x10,0x10,0x10,0x90,0x48,0x58,0x48,0x58,0x40,0x00 -+// 44100 걄 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x1f,0x00,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x10,0x10,0x10,0x90,0x28,0x44,0x00,0x00 -+// 44101 걅 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x10,0xd8,0x40,0x58,0x40,0x40,0x38,0x00 -+// 44102 걆 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x19,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x1e,0x18,0x00,0x48,0x50,0x10,0xc0,0x00 -+// 44103 걇 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x19,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x1a,0x10,0x00,0x5c,0x30,0x48,0x48,0x38,0x00 -+// 44104 걈 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x30,0x18,0x90,0x10,0x0e,0x18,0x18,0x10,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 44105 걉 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x14,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x90,0x10,0x1e,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 44106 걊 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x11,0x09,0x0d,0x08,0x05,0x00,0x00,0x00,0x30,0x10,0x90,0x10,0x1e,0x10,0x12,0x10,0x10,0x10,0x30,0x28,0x44,0x80,0x00 -+// 44107 걋 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x0e,0x08,0x08,0x0e,0x40,0x40,0xa0,0x10,0x0c,0x00,0x00 -+// 44108 걌 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x08,0x12,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x1a,0x10,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 44109 걍 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x1e,0x40,0xa0,0x10,0x10,0x10,0xe0,0x00 -+// 44110 걎 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x06,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x18,0x18,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 44111 걏 ; -+,0x00,0x00,0x00,0x11,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x20,0x10,0x90,0x10,0x1e,0x10,0x12,0x10,0xc0,0x18,0xc0,0xa0,0x18,0x04,0x00 -+// 44112 걐 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x0e,0x08,0x0a,0x00,0x10,0x08,0x38,0x08,0x00,0x00,0x00 -+// 44113 걑 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x04,0x08,0x14,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x20,0x10,0x10,0x10,0x1e,0x10,0x10,0x10,0x10,0x00,0x10,0x00,0x00,0xf8,0x00 -+// 44114 걒 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x10,0x02,0x00,0x01,0x01,0x04,0x00,0x00,0x00,0x10,0x88,0x88,0x0e,0x08,0x08,0x08,0x18,0x00,0x10,0x10,0x24,0x00,0x00 -+// 44115 걓 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x09,0x10,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x1e,0x10,0x10,0x10,0x00,0xc8,0xe0,0x20,0x20,0xe0,0x00 -+// 44116 걔 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x01,0x02,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x00,0x00 -+// 44117 걕 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x06,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x24,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 44118 걖 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0xbc,0x24,0x24,0x3c,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 44119 걗 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x08,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x24,0x20,0x10,0x88,0x98,0x94,0xa4,0xc0,0x00 -+// 44120 걘 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0xa4,0x34,0x24,0x24,0x24,0x3c,0x24,0x04,0x00,0x04,0x00,0x00 -+// 44121 걙 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x06,0x04,0x08,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x24,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44122 걚 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0x24,0x30,0x00,0xb0,0x38,0x44,0x40,0x30,0x00 -+// 44123 걛 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x06,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x2c,0x24,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 44124 걜 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x08,0x11,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x48,0x20,0x3c,0x24,0x2c,0x28,0x20,0x88,0x08,0x18,0x00,0x00,0x00,0x00 -+// 44125 걝 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x02,0x04,0x08,0x1f,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x2c,0x24,0x20,0xac,0x88,0x88,0x00,0x88,0x00,0x00 -+// 44126 걞 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x08,0x0f,0x01,0x0d,0x04,0x04,0x06,0x00,0x00,0x00,0x4c,0x20,0x3c,0x24,0x2c,0x28,0x00,0x78,0x08,0x28,0x28,0x28,0x00,0x00 -+// 44127 걟 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x02,0x04,0x00,0x0f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x20,0xcc,0x24,0x3c,0x24,0x2c,0x20,0x00 -+// 44128 걠 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x08,0x06,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x48,0x28,0x38,0x20,0x38,0x28,0x10,0x88,0x90,0x98,0x24,0xc4,0x00,0x00 -+// 44129 걡 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x00,0x00,0x0f,0x01,0x09,0x04,0x04,0x06,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x20,0xf8,0x00,0x38,0x00,0x20,0x18,0x00 -+// 44130 걢 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x00,0x0f,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x20,0x48,0x08,0x48,0x28,0x00,0x00,0x00 -+// 44131 걣 ; -+,0x00,0x00,0x00,0x00,0x09,0x02,0x02,0x04,0x08,0x07,0x01,0x01,0x04,0x05,0x04,0x00,0x00,0x00,0x48,0x28,0x38,0x20,0x28,0x28,0x28,0x00,0x54,0x18,0x04,0x04,0x38,0x00 -+// 44132 걤 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x04,0x08,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x4c,0x24,0xbc,0x24,0x24,0x3c,0x24,0x00,0x8c,0x04,0x00,0x08,0x80,0x00 -+// 44133 걥 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x08,0x11,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x2c,0x0c,0x08,0x08,0x04,0xf8,0x00,0x00 -+// 44134 걦 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x08,0x10,0x04,0x07,0x04,0x07,0x04,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x20,0x98,0x88,0x98,0x9c,0xa4,0x40,0x00 -+// 44135 걧 ; -+,0x00,0x00,0x00,0x00,0x09,0x03,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x4c,0x20,0x3c,0x24,0x2c,0x2c,0x20,0x60,0x20,0x60,0x98,0x0c,0x00,0x00 -+// 44136 걨 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x02,0x04,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x20,0x10,0x08,0x10,0x98,0x24,0x42,0x00 -+// 44137 걩 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0xbc,0x24,0x24,0x3c,0x24,0x24,0x50,0x80,0x84,0x88,0x70,0x00 -+// 44138 걪 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x24,0x24,0x1c,0x40,0x60,0x90,0x0c,0x04,0x00 -+// 44139 걫 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x04,0x00,0x00,0x02,0x00,0x01,0x06,0x00,0x00,0x00,0x4c,0x24,0xbc,0x24,0x24,0x2c,0x24,0xe0,0x00,0x60,0x70,0x88,0x04,0x00 -+// 44140 걬 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x02,0x04,0x08,0x10,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x2c,0x2c,0x20,0x18,0x08,0x08,0x88,0x08,0x08,0x00 -+// 44141 걭 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x08,0x10,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x28,0x38,0x20,0x20,0x38,0x20,0x18,0x00,0x08,0x00,0x00,0xf8,0x00 -+// 44142 걮 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x02,0x04,0x08,0x10,0x00,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x2c,0x2c,0x20,0x08,0x10,0x10,0x90,0x10,0x00,0x00 -+// 44143 걯 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x24,0x2c,0x20,0x00,0xfc,0x60,0x90,0x90,0xf0,0x00 -+// 44144 거 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x02,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x88,0x88,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44145 걱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0xc4,0x84,0x3c,0x04,0x04,0x00,0xcc,0x0c,0x0c,0x08,0x08,0x00 -+// 44146 걲 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x08,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc0,0x84,0x8c,0x0c,0x04,0x00,0x08,0x88,0x80,0x80,0x80,0x00,0x00 -+// 44147 걳 ; -+,0x00,0x00,0x00,0x09,0x00,0x01,0x01,0x02,0x04,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x68,0x08,0x08,0x18,0x98,0x98,0xa4,0xa4,0x00,0x00 -+// 44148 건 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x12,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x80,0x18,0x00,0x08,0x08,0x08,0x00,0x00,0x04,0x00,0x00 -+// 44149 걵 ; -+,0x00,0x00,0x00,0x0b,0x00,0x01,0x01,0x02,0x00,0x18,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x68,0x08,0x08,0x1c,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44150 걶 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x18,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0c,0x80,0x84,0x84,0x7c,0x04,0x08,0x00,0xbc,0x30,0x44,0x44,0x38,0x00 -+// 44151 걷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0xc4,0x84,0x3c,0x04,0x04,0x00,0xbc,0x00,0x00,0x04,0x00,0x00 -+// 44152 걸 ; -+,0x00,0x00,0x00,0x09,0x00,0x01,0x01,0x02,0x04,0x03,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x84,0x9c,0x04,0x04,0x00,0xfc,0x08,0x08,0x00,0x00,0x00,0x00 -+// 44153 걹 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x00,0x1f,0x00,0x05,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0x80,0x84,0x8c,0x0c,0x04,0x00,0xa8,0x88,0x88,0x08,0x88,0x00,0x00 -+// 44154 걺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x08,0x05,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x84,0x0c,0x04,0x04,0x0c,0xa4,0xa4,0xa4,0x20,0xbc,0x20,0x00 -+// 44155 걻 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x07,0x01,0x05,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x0c,0x04,0x04,0x08,0xc8,0x28,0x28,0x28,0x28,0x00,0x00 -+// 44156 걼 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x08,0x07,0x00,0x05,0x04,0x04,0x02,0x00,0x00,0x08,0x0c,0xc0,0x84,0x0c,0x04,0x00,0x18,0x88,0x90,0x98,0x24,0xc4,0x00,0x00 -+// 44157 걽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x08,0x1f,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0xc0,0x84,0x0c,0x0c,0x00,0x08,0xf0,0xa0,0xb8,0x20,0xac,0x00,0x00 -+// 44158 걾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x00,0x1f,0x01,0x03,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0xc4,0x84,0x04,0x04,0x04,0x00,0xcc,0x08,0x08,0x28,0x88,0x00,0x00 -+// 44159 걿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x00,0x17,0x00,0x07,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0x80,0x84,0x8c,0x0c,0x04,0x08,0x80,0xfc,0x98,0x24,0xa4,0x18,0x00 -+// 44160 검 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x10,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x48,0x08,0x08,0x08,0x18,0x08,0x00,0xf8,0x00,0x00 -+// 44161 겁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x78,0x08,0x08,0x08,0x08,0xf8,0x08,0x08,0x00,0x00 -+// 44162 겂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x08,0x00,0x04,0x07,0x04,0x06,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x8c,0x04,0x04,0x00,0x88,0x08,0x98,0x14,0xa2,0x40,0x00 -+// 44163 것 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0xbc,0x04,0x04,0x44,0x60,0x60,0x98,0x04,0x00,0x00 -+// 44164 겄 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x78,0x08,0x08,0x18,0x08,0x08,0x9c,0x66,0x40,0x00 -+// 44165 겅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x3c,0x04,0x04,0x20,0x50,0x88,0x80,0x88,0x70,0x00 -+// 44166 겆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x08,0x08,0x88,0x80,0x78,0x08,0x08,0x00,0xfc,0x40,0xe0,0x88,0x04,0x00 -+// 44167 겇 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x08,0x10,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x68,0x08,0x08,0x40,0x0c,0x40,0xe0,0x08,0x04,0x00 -+// 44168 겈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x08,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0xc4,0x84,0x3c,0x04,0x04,0x08,0x0c,0x0c,0xcc,0x00,0x00,0x00 -+// 44169 겉 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x01,0x02,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x84,0x84,0x2c,0x04,0x00,0x0c,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44170 겊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x02,0x01,0x01,0x00,0x0f,0x00,0x00,0x00,0x0c,0xc4,0x84,0x84,0x3c,0x04,0x00,0x08,0x00,0x10,0x10,0x10,0x84,0x00 -+// 44171 겋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x78,0x08,0x08,0x00,0x7c,0x60,0x90,0x10,0xf0,0x00 -+// 44172 게 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x03,0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x08,0x00 -+// 44173 겍 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x03,0x02,0x04,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xe4,0x24,0x20,0x00,0xcc,0x0c,0x0c,0x0c,0x08,0x00 -+// 44174 겎 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x03,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0xac,0x84,0x84,0x84,0x80,0x00 -+// 44175 겏 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x04,0xe4,0x24,0x24,0x10,0x88,0x88,0x9c,0xa6,0x82,0x00 -+// 44176 겐 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x08,0x12,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x00,0x0c,0x00,0x00 -+// 44177 겑 ; -+,0x00,0x00,0x00,0x00,0x09,0x03,0x03,0x04,0x08,0x10,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0x6c,0x20,0x24,0x24,0xa4,0x20,0x20,0x2c,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44178 겒 ; -+,0x00,0x00,0x00,0x00,0x09,0x03,0x03,0x04,0x08,0x18,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x18,0x48,0x28,0x20,0x20,0xa8,0x28,0x20,0x00,0xf0,0x30,0x48,0x48,0x30,0x00 -+// 44179 겓 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x04,0x04,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0xe4,0x24,0x20,0x00,0xf8,0x00,0x00,0x04,0x00,0x00 -+// 44180 겔 ; -+,0x00,0x00,0x00,0x00,0x0f,0x02,0x03,0x04,0x08,0x13,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x10,0x48,0x28,0x28,0x28,0xe8,0x28,0x08,0xf8,0x08,0x18,0x00,0x0c,0x00,0x00 -+// 44181 겕 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x03,0x04,0x08,0x0f,0x00,0x0f,0x04,0x05,0x04,0x00,0x00,0x18,0x68,0x28,0x28,0x28,0x28,0x28,0x00,0xe8,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44182 겖 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x03,0x04,0x08,0x1f,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x10,0x48,0x28,0x28,0x28,0xe8,0x28,0x20,0x78,0x48,0x48,0x08,0x28,0x00,0x00 -+// 44183 겗 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x04,0x00,0x0f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x4c,0x20,0x24,0x24,0xe4,0x20,0x20,0xc8,0x00,0x38,0x00,0x28,0x08,0x00 -+// 44184 겘 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x03,0x04,0x08,0x18,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x28,0x28,0x28,0xe8,0x28,0x28,0x10,0x90,0x90,0x28,0x24,0x40,0x00 -+// 44185 겙 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x0f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x4c,0x24,0xa4,0x24,0xe4,0x24,0x20,0xe8,0x00,0x38,0x00,0x20,0x00,0x00 -+// 44186 겚 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x0f,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x4c,0x20,0x24,0x24,0xe4,0x20,0x20,0x6c,0x00,0x48,0x28,0x00,0x40,0x00 -+// 44187 겛 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x04,0x04,0x08,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x48,0x28,0x28,0x20,0xe8,0x28,0x20,0x30,0x0c,0x10,0x24,0x44,0x38,0x00 -+// 44188 겜 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x08,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x04,0xe4,0x24,0x24,0x00,0x8c,0x04,0x00,0x8c,0x80,0x00 -+// 44189 겝 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x48,0x28,0x28,0x20,0xe8,0x28,0x28,0x08,0x08,0xf8,0x08,0x78,0x00,0x00 -+// 44190 겞 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x04,0x00,0x04,0x07,0x04,0x07,0x04,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0xe4,0x24,0x20,0x88,0x08,0x88,0x14,0xa6,0x42,0x00 -+// 44191 겟 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0x24,0x24,0x40,0x20,0x60,0x58,0x84,0x00,0x00 -+// 44192 겠 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x02,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0x24,0xe4,0x24,0x24,0x10,0x08,0x18,0x14,0x26,0x00,0x00 -+// 44193 겡 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x03,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x50,0x88,0x80,0x88,0x70,0x00 -+// 44194 겢 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0x38,0x40,0xc0,0x90,0x08,0x04,0x00 -+// 44195 겣 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x04,0x08,0x10,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x48,0x28,0x28,0x20,0xe8,0x28,0x20,0xe0,0x00,0xc0,0xe0,0x08,0x04,0x00 -+// 44196 겤 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x03,0x02,0x04,0x08,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0xa4,0x24,0x24,0x2c,0x04,0x0c,0x84,0x04,0x00,0x00 -+// 44197 겥 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x04,0x08,0x17,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x20,0x38,0x00,0x18,0x00,0x00,0x00,0x00 -+// 44198 겦 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x03,0x04,0x04,0x00,0x07,0x01,0x01,0x00,0x07,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0x28,0x00,0x10,0x10,0x00,0xbc,0x00 -+// 44199 겧 ; -+,0x00,0x00,0x00,0x00,0x0f,0x02,0x03,0x04,0x08,0x10,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x48,0x28,0x28,0x28,0xe8,0x28,0x68,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x00 -+// 44200 겨 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x88,0xb8,0x08,0x08,0x38,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44201 격 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0xdc,0x84,0x04,0x7c,0x00,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 44202 겪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0xcc,0x84,0x04,0x7c,0x04,0x00,0x84,0x84,0x84,0x84,0x04,0x00 -+// 44203 겫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0xcc,0x84,0x04,0x7c,0x04,0x18,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 44204 견 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x00,0x00 -+// 44205 겭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x88,0x08,0x78,0x08,0x0c,0xb0,0x10,0x28,0x44,0x80,0x00 -+// 44206 겮 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x18,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x0c,0xc4,0xfc,0x84,0x04,0x04,0x24,0x00,0xfc,0x38,0x44,0x44,0x30,0x00 -+// 44207 겯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x88,0x04,0x7c,0x08,0x00,0x78,0x00,0x00,0x00,0x00,0x00 -+// 44208 결 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0xc8,0x08,0x08,0x78,0x00,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44209 겱 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x19,0x00,0x01,0x0c,0x04,0x05,0x00,0x00,0x08,0x04,0x84,0xbc,0x04,0x04,0x6c,0x04,0x38,0x08,0x08,0x08,0x00,0x00,0x00 -+// 44210 겲 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x1f,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x0c,0x84,0xfc,0x04,0x0c,0x68,0x00,0x4c,0x24,0x24,0x24,0x24,0x20,0x00 -+// 44211 겳 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x02,0x08,0x19,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x0c,0x84,0xfc,0x0c,0x04,0x78,0x00,0x88,0x48,0x28,0x08,0x08,0x28,0x00 -+// 44212 겴 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x1f,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x84,0xfc,0x04,0x04,0x3c,0x00,0x98,0x90,0x90,0x28,0x24,0x42,0x00 -+// 44213 겵 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x06,0x08,0x19,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x0c,0x84,0xcc,0x0c,0x04,0x7c,0x00,0x7c,0x20,0x28,0x20,0x20,0x00,0x00 -+// 44214 겶 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x1b,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0xf8,0x08,0x08,0x78,0x08,0x48,0x00,0x48,0x40,0x10,0xfc,0x00 -+// 44215 겷 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x18,0x0c,0x84,0xcc,0x04,0x04,0x7c,0x00,0x38,0x06,0x18,0x24,0x24,0x2c,0x00 -+// 44216 겸 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x10,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x00,0xf8,0x08,0x08,0x08,0x78,0x00 -+// 44217 겹 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x12,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0xfc,0x04,0x04,0x7c,0x08,0x08,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 44218 겺 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x11,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0x88,0xc8,0x08,0x08,0x78,0x08,0x98,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 44219 겻 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x10,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x08,0x88,0xe8,0x08,0x08,0x78,0x08,0x00,0x60,0x60,0x90,0x08,0x04,0x00 -+// 44220 겼 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x80,0xf8,0x00,0x00,0x78,0x00,0x08,0x08,0x08,0x90,0x66,0x42,0x00 -+// 44221 경 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0xc8,0x08,0x08,0x08,0x08,0x28,0x70,0x88,0x00,0x88,0xf8,0x00 -+// 44222 겾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x02,0x00,0x10,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x84,0xfc,0x04,0x0c,0x68,0x00,0x00,0xfc,0x40,0xe0,0x08,0x04,0x00 -+// 44223 겿 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x06,0x08,0x10,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x0c,0x84,0xcc,0x0c,0x04,0x7c,0x00,0xe0,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 44224 곀 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x10,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0xcc,0x8c,0x04,0x78,0x00,0x00,0x08,0x08,0xe8,0x08,0x08,0x00 -+// 44225 곁 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x00,0x02,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x08,0x88,0xe8,0x08,0x08,0x68,0x08,0x18,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44226 곂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x02,0x08,0x10,0x06,0x00,0x01,0x00,0x0e,0x00,0x00,0x00,0x08,0xc8,0xc8,0x08,0x08,0x78,0x08,0x08,0x20,0x10,0x10,0x00,0x04,0x00 -+// 44227 곃 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x02,0x00,0x10,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0xcc,0x04,0x04,0x7c,0x04,0x00,0xfc,0x60,0x90,0x10,0xb0,0x00 -+// 44228 계 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x03,0x02,0x04,0x01,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x08,0x4c,0x24,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x04,0x00 -+// 44229 곅 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0xe4,0x24,0xe4,0x24,0x20,0x08,0x04,0x0c,0x08,0x00,0x00 -+// 44230 곆 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x08,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0xe4,0x24,0x00,0xbc,0x84,0x84,0x84,0x00,0x00 -+// 44231 곇 ; -+,0x00,0x00,0x00,0x00,0x1b,0x03,0x02,0x04,0x08,0x10,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x44,0x24,0x24,0x24,0x24,0xe4,0x24,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 44232 곈 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x06,0x05,0x08,0x10,0x02,0x02,0x02,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x24,0x24,0x00,0x00,0xfc,0x00 -+// 44233 곉 ; -+,0x00,0x00,0x00,0x00,0x0b,0x02,0x02,0x04,0x08,0x10,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0xa4,0x24,0x04,0x10,0x10,0x28,0x44,0x82,0x00 -+// 44234 곊 ; -+,0x00,0x00,0x00,0x00,0x0b,0x02,0x02,0x05,0x08,0x10,0x09,0x00,0x00,0x07,0x00,0x00,0x00,0x08,0x48,0x28,0x68,0x28,0x28,0xe8,0x28,0x20,0xfc,0x30,0x48,0x00,0x78,0x00 -+// 44235 곋 ; -+,0x00,0x00,0x00,0x00,0x1b,0x02,0x02,0x04,0x08,0x10,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0xe4,0x24,0x00,0xf8,0x00,0x00,0x00,0xfc,0x00 -+// 44236 곌 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0xe0,0x20,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44237 곍 ; -+,0x00,0x00,0x00,0x00,0x09,0x03,0x02,0x05,0x08,0x18,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0xe4,0x24,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 44238 곎 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x1d,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x24,0xe4,0x24,0x6c,0x24,0x24,0x20,0x20,0x20,0x00 -+// 44239 곏 ; -+,0x00,0x00,0x00,0x00,0x09,0x02,0x02,0x04,0x08,0x10,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x44,0x24,0x24,0x24,0x24,0xe4,0x20,0x08,0x48,0x68,0x40,0x40,0x68,0x00 -+// 44240 곐 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x02,0x05,0x08,0x10,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0x48,0x28,0x28,0x68,0x28,0xe8,0x08,0x10,0x10,0x10,0x28,0x24,0x40,0x00 -+// 44241 곑 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0xe4,0x24,0x24,0xe4,0x04,0x78,0x00,0x38,0x00,0x00,0x3c,0x00 -+// 44242 곒 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x02,0x05,0x08,0x1f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x48,0x20,0x20,0x20,0x20,0xe0,0x00,0x08,0x00,0x48,0x40,0x10,0xfc,0x00 -+// 44243 곓 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x06,0x05,0x08,0x10,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x48,0x28,0x68,0x28,0x28,0xe8,0x00,0x30,0x1c,0x10,0x2c,0x44,0x28,0x00 -+// 44244 곔 ; -+,0x00,0x00,0x00,0x00,0x1b,0x03,0x02,0x04,0x08,0x10,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0xe4,0x24,0x00,0x0c,0x08,0x08,0x08,0x00,0x00 -+// 44245 곕 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x02,0x04,0x08,0x10,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x00,0x08,0x68,0x28,0xe8,0x28,0xe8,0x28,0x18,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44246 곖 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x08,0x11,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x48,0x28,0x68,0x28,0x28,0xe8,0x20,0x98,0x90,0x90,0xa8,0xa4,0x42,0x00 -+// 44247 곗 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x24,0x20,0x50,0x8c,0x02,0x00 -+// 44248 곘 ; -+,0x00,0x00,0x00,0x00,0x1b,0x02,0x02,0x05,0x08,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x48,0x28,0x68,0x28,0x28,0xe8,0x28,0x00,0x18,0x10,0x98,0xa4,0x42,0x00 -+// 44249 곙 ; -+,0x00,0x00,0x00,0x00,0x09,0x03,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x58,0x88,0x84,0x88,0x70,0x00 -+// 44250 곚 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x02,0x04,0x08,0x10,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x44,0x24,0x24,0x24,0x24,0xe4,0x24,0x04,0xe0,0x40,0x90,0x08,0x04,0x00 -+// 44251 곛 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x06,0x05,0x08,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x48,0x28,0x68,0x28,0x28,0xe8,0x00,0xe0,0x00,0xc8,0xc0,0x18,0x04,0x00 -+// 44252 곜 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x04,0x08,0x10,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0xe4,0x24,0x2c,0x04,0x0c,0x84,0x04,0x00,0x00 -+// 44253 곝 ; -+,0x00,0x00,0x00,0x00,0x09,0x02,0x02,0x05,0x08,0x10,0x02,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x4c,0x20,0x20,0x20,0x20,0xe0,0x20,0x00,0x00,0x00,0xf8,0x00,0xfc,0x00 -+// 44254 곞 ; -+,0x00,0x00,0x00,0x00,0x1b,0x02,0x02,0x04,0x08,0x10,0x02,0x01,0x01,0x00,0x0f,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0xe4,0x24,0x24,0x10,0x10,0x10,0x10,0xfe,0x00 -+// 44255 곟 ; -+,0x00,0x00,0x00,0x00,0x0b,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x20,0x20,0x20,0x20,0xe0,0x00,0xe0,0xfc,0x40,0x90,0x10,0x90,0x00 -+// 44256 고 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x08,0x08,0x08,0x88,0x80,0x80,0x80,0xe0,0x00,0x00,0x00 -+// 44257 곡 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x88,0x80,0xc6,0x00,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 44258 곢 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x88,0x80,0xe6,0x00,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 44259 곣 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x08,0x08,0x88,0x80,0x82,0x00,0x00,0x10,0x10,0x30,0x48,0x04,0x00 -+// 44260 곤 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x3f,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x80,0x80,0xfe,0x00,0x00,0x00,0x00,0x00,0x18,0x00 -+// 44261 곥 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x88,0x80,0x82,0x00,0x04,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 44262 곦 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x80,0x80,0xce,0x00,0x30,0xfe,0x10,0x48,0x44,0x38,0x00 -+// 44263 곧 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x88,0x80,0x86,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00 -+// 44264 골 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1f,0x00,0x07,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0x80,0x80,0xce,0x00,0xf0,0x10,0x10,0x00,0x00,0x78,0x00 -+// 44265 곩 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1f,0x00,0x09,0x01,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x88,0x80,0xce,0x00,0x38,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44266 곪 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x0f,0x01,0x0b,0x08,0x08,0x04,0x00,0x00,0x00,0xf8,0x08,0x08,0x80,0x80,0x8e,0x00,0x48,0x48,0x48,0x48,0x48,0x40,0x00 -+// 44267 곫 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x10,0x00,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xfc,0x08,0x88,0x80,0x80,0x00,0x00,0x4c,0x44,0x2c,0x04,0x24,0x00,0x00 -+// 44268 곬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x80,0x86,0x00,0x10,0x10,0x10,0x28,0x04,0x00,0x00 -+// 44269 곭 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x0b,0x08,0x0b,0x00,0x00,0x00,0xfc,0x08,0x08,0x80,0x80,0xcf,0x00,0x00,0x60,0x40,0x78,0x40,0x3c,0x00 -+// 44270 곮 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x10,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x88,0x08,0x88,0x80,0x82,0x00,0x00,0x4c,0x00,0x48,0x08,0x00,0xc0,0x00 -+// 44271 곯 ; -+,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x10,0x00,0x0f,0x01,0x0a,0x08,0x0e,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x80,0x82,0x00,0x30,0x00,0xf0,0x38,0x48,0x48,0x30,0x00 -+// 44272 곰 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xe8,0x08,0x08,0x80,0x80,0x86,0x00,0x00,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 44273 곱 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1f,0x00,0x04,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xfc,0x08,0x08,0x80,0x80,0xce,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 44274 곲 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1f,0x00,0x01,0x08,0x0d,0x08,0x0d,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x80,0x80,0xce,0x00,0x10,0x90,0x90,0xa8,0x84,0x00,0x00 -+// 44275 곳 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0xfe,0x00,0x80,0x80,0x60,0x10,0x08,0x00 -+// 44276 곴 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1e,0x00,0x02,0x03,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0xf8,0x08,0x08,0x80,0x80,0x02,0x00,0x10,0x10,0x30,0xa8,0x44,0x80,0x00 -+// 44277 공 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x10,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x80,0x82,0x00,0x80,0xe0,0x10,0x10,0x30,0xe0,0x00 -+// 44278 곶 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xf8,0x08,0x08,0x88,0x80,0x82,0x00,0x00,0xb8,0x80,0x40,0x10,0x08,0x00 -+// 44279 곷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x78,0x08,0x08,0x80,0x80,0x86,0x00,0x00,0x00,0xf8,0x80,0x20,0x08,0x00 -+// 44280 곸 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x3f,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x88,0x80,0xfe,0x00,0x00,0x08,0x08,0xf8,0x08,0x08,0x00 -+// 44281 곹 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1f,0x00,0x06,0x04,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0xfc,0x08,0x08,0x80,0x80,0xe2,0x00,0xf0,0x00,0x70,0x00,0x00,0xf8,0x00 -+// 44282 곺 ; -+,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x3f,0x00,0x00,0x0c,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x08,0x08,0x08,0x80,0x80,0xc6,0x00,0x00,0x20,0x20,0x20,0x20,0xfc,0x00 -+// 44283 곻 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x80,0x80,0x02,0x00,0xc0,0x38,0x80,0x20,0x20,0x20,0x00 -+// 44284 과 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x48,0x08,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44285 곽 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0x08,0x18,0x08,0x00,0x00,0x18,0x08,0x08,0x00,0x00 -+// 44286 곾 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x1e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x0a,0x58,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 44287 곿 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x04,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x08,0x18,0x08,0x00,0x10,0x18,0x10,0x28,0x44,0x00 -+// 44288 관 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x00,0x00,0x1e,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0x88,0x0a,0x58,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44289 괁 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x1c,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x00,0x10,0x08,0xc0,0x80,0x80,0x1e,0xd0,0x00,0x00,0xb0,0x20,0x30,0x48,0x84,0x00 -+// 44290 괂 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x00,0x07,0x18,0x00,0x18,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x18,0xc8,0x88,0x88,0x1e,0xd0,0x00,0x70,0x0c,0x20,0x58,0x88,0x70,0x00 -+// 44291 괃 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x04,0x04,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0xc0,0x80,0x80,0x88,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0xb8,0x00 -+// 44292 괄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x00,0x07,0x1c,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x88,0x1e,0xc8,0x00,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 44293 괅 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x04,0x06,0x3c,0x00,0x0f,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x88,0x88,0x1e,0xd8,0x08,0x00,0x48,0x08,0x08,0x08,0x00,0x00 -+// 44294 괆 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x03,0x1c,0x00,0x0d,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x1f,0xc8,0x08,0x00,0x48,0x48,0x48,0x48,0x78,0x00 -+// 44295 괇 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1c,0x00,0x0b,0x01,0x08,0x08,0x0c,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0xc8,0x08,0x18,0x48,0x48,0x48,0x48,0x48,0x00 -+// 44296 괈 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1e,0x00,0x05,0x00,0x0d,0x00,0x07,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x0f,0xc8,0x08,0x10,0x98,0x10,0x18,0x24,0x42,0x00 -+// 44297 괉 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x07,0x18,0x00,0x01,0x03,0x08,0x08,0x0c,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x1e,0x88,0x00,0x08,0x40,0x58,0x40,0x40,0x00,0x00 -+// 44298 괊 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1c,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x0f,0xc8,0x08,0x08,0x00,0x48,0x48,0x00,0xdc,0x00 -+// 44299 괋 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x03,0x18,0x00,0x0f,0x01,0x0e,0x00,0x06,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0x0f,0xc8,0x08,0x30,0x00,0x10,0x28,0x44,0x28,0x00 -+// 44300 괌 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x00,0x1e,0x00,0x03,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x08,0x18,0x08,0x00,0x18,0x10,0x10,0x10,0x50,0x00 -+// 44301 괍 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x02,0x02,0x1c,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x0f,0xc8,0x08,0x10,0x08,0x18,0x08,0x08,0x08,0x00 -+// 44302 괎 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x03,0x1c,0x00,0x08,0x05,0x00,0x04,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0xc8,0x08,0x10,0x98,0x90,0x88,0xa4,0xc2,0x00 -+// 44303 괏 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0x0e,0x38,0x08,0x08,0x40,0x40,0x90,0x08,0x04,0x00 -+// 44304 괐 ; -+,0x00,0x00,0x00,0x0c,0x00,0x06,0x02,0x03,0x1c,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x08,0x48,0x48,0x08,0x0f,0xc8,0x08,0x10,0x18,0x10,0x98,0x24,0x00,0x00 -+// 44305 광 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x07,0x10,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x08,0x0f,0x18,0x88,0x08,0x60,0x90,0x08,0x08,0x90,0x00 -+// 44306 괒 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x00,0x1f,0x00,0x00,0x04,0x00,0x01,0x02,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x88,0x18,0x08,0x00,0x08,0x40,0xc0,0x10,0x0c,0x00 -+// 44307 괓 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x02,0x02,0x1e,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0xc8,0x48,0x08,0x0f,0x58,0x08,0x00,0x00,0xfc,0x40,0xb0,0x0c,0x00 -+// 44308 괔 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x04,0x1e,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0x0a,0x58,0x08,0x00,0x98,0x08,0xf8,0x08,0x08,0x00 -+// 44309 괕 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x1e,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0b,0xd8,0x08,0x00,0xf8,0x00,0x78,0x00,0xfc,0x00 -+// 44310 괖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x1f,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x08,0x08,0x18,0x08,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 44311 괗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x1e,0x00,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x08,0x08,0x18,0x08,0x00,0x00,0xe0,0xb0,0x10,0x90,0x00 -+// 44312 괘 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x04,0x04,0x04,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xa4,0x24,0x34,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 44313 괙 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0x08,0x04,0x04,0x04,0x00,0x00 -+// 44314 괚 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x05,0x04,0x07,0x10,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x2c,0x24,0x00,0x00,0x8c,0x84,0x84,0x00,0x00 -+// 44315 괛 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0xa4,0xa4,0x24,0x3c,0x64,0x24,0x00,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 44316 괜 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x09,0x04,0x04,0x1e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x2c,0x64,0x24,0x24,0x00,0x00,0x00,0xfc,0x00 -+// 44317 괝 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x05,0x04,0x07,0x10,0x10,0x08,0x08,0x09,0x04,0x00,0x00,0x08,0x44,0x24,0x24,0x24,0x2c,0x20,0x20,0x00,0x7c,0x10,0x30,0x48,0x84,0x00 -+// 44318 괞 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x04,0x04,0x1e,0x00,0x18,0x08,0x08,0x0e,0x00,0x00,0x00,0x08,0x48,0x28,0x28,0x28,0x28,0x68,0x20,0x60,0x00,0xf0,0x78,0x08,0x48,0x00 -+// 44319 괟 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x10,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x08,0x4c,0x20,0x20,0x20,0x28,0x28,0x20,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44320 괠 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x05,0x04,0x07,0x10,0x01,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x28,0x28,0x28,0x00,0xc8,0x08,0x00,0x00,0x7e,0x00 -+// 44321 괡 ; -+,0x00,0x00,0x00,0x01,0x01,0x09,0x04,0x04,0x1c,0x00,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x6c,0x20,0x20,0x20,0x28,0xa0,0x20,0x00,0x28,0x08,0x08,0x08,0x00,0x00 -+// 44322 괢 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x04,0x04,0x1e,0x00,0x0f,0x00,0x0c,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x2c,0x24,0x20,0x00,0x6c,0x24,0x20,0x28,0x20,0x00 -+// 44323 괣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x1e,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x2c,0x24,0x20,0x00,0x4c,0x2c,0x04,0x04,0x28,0x00 -+// 44324 괤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x1e,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x3c,0xa4,0x20,0x10,0x98,0x90,0x08,0x24,0x42,0x00 -+// 44325 괥 ; -+,0x00,0x00,0x00,0x00,0x09,0x00,0x04,0x04,0x07,0x10,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x24,0x24,0x24,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 44326 괦 ; -+,0x00,0x00,0x00,0x00,0x01,0x00,0x04,0x04,0x1e,0x00,0x0d,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x2c,0x24,0x20,0x00,0x50,0x08,0x48,0x00,0xd4,0x00 -+// 44327 괧 ; -+,0x00,0x00,0x00,0x00,0x09,0x00,0x04,0x04,0x1e,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x44,0x24,0xa4,0x24,0x2c,0x24,0x20,0x30,0x00,0x50,0x28,0x44,0x28,0x00 -+// 44328 괨 ; -+,0x00,0x00,0x00,0x00,0x01,0x00,0x05,0x04,0x0e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x2c,0x64,0x24,0x00,0x9c,0x0c,0x08,0x08,0x68,0x00 -+// 44329 괩 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x04,0x04,0x1c,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x48,0x28,0x28,0x28,0x28,0xa8,0x20,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44330 괪 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x05,0x04,0x0e,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x48,0x20,0x20,0x20,0x28,0x28,0x20,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 44331 괫 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x05,0x04,0x07,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0x2c,0x2c,0x20,0x00,0x40,0x40,0xa0,0x18,0x04,0x00 -+// 44332 괬 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x05,0x04,0x1e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x28,0x28,0x20,0x00,0x18,0x10,0x98,0x24,0x42,0x00 -+// 44333 괭 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x05,0x04,0x07,0x18,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x68,0x28,0x28,0x28,0x28,0x28,0x28,0x08,0x20,0x88,0x08,0x08,0xf8,0x00 -+// 44334 괮 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x1e,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0x1c,0x40,0xe0,0x98,0x0c,0x00 -+// 44335 괯 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x05,0x04,0x0e,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x6c,0x20,0xa0,0x20,0x28,0x20,0x20,0x00,0x00,0xf8,0x40,0xb0,0x0c,0x00 -+// 44336 괰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x10,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0x08,0x04,0x1c,0x04,0x04,0x00 -+// 44337 괱 ; -+,0x00,0x00,0x00,0x01,0x01,0x09,0x04,0x04,0x1e,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x2c,0x20,0x20,0x00,0x78,0x00,0xf8,0x00,0x1c,0x00 -+// 44338 괲 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x1e,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0x64,0x24,0x00,0xf8,0x10,0x10,0x10,0xe0,0x00 -+// 44339 괳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x1e,0x00,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x00,0xec,0xf0,0x10,0x90,0x00 -+// 44340 괴 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x02,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x44,0x44,0x44,0x04,0x3c,0x04,0x04,0x04,0x04,0x00,0x00 -+// 44341 괵 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x44,0x0c,0xc4,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 44342 괶 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x0c,0x40,0x40,0x40,0x00,0x28,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 44343 괷 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x48,0x48,0x48,0x08,0x08,0x88,0x00,0x18,0x90,0x98,0x24,0x42,0x00 -+// 44344 괸 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x02,0x02,0x1e,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x08,0x08,0x68,0x08,0x08,0x00,0x00,0x00,0xfe,0x00 -+// 44345 괹 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1f,0x00,0x08,0x04,0x04,0x07,0x04,0x00,0x00,0x08,0x0c,0x40,0x40,0x40,0x00,0x28,0x00,0x04,0xf0,0x10,0x38,0x44,0x84,0x00 -+// 44346 괺 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x1e,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x0c,0xc4,0x00,0x30,0x04,0x30,0x48,0x40,0x48,0x00 -+// 44347 괻 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1f,0x00,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x08,0x08,0x48,0x48,0x48,0x08,0x38,0x88,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44348 괼 ; -+,0x00,0x00,0x00,0x0e,0x00,0x06,0x02,0x02,0x1e,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x08,0x08,0xe8,0x08,0x00,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44349 괽 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x1e,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x08,0x0c,0x40,0x40,0x40,0x08,0xe8,0x00,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 44350 괾 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x1c,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x0c,0xc0,0x00,0x00,0x6c,0x08,0x08,0x28,0x20,0x00 -+// 44351 괿 ; -+,0x00,0x00,0x00,0x08,0x00,0x06,0x02,0x02,0x1e,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x08,0x08,0x48,0x48,0x08,0x08,0xc8,0x08,0x00,0x48,0x68,0x48,0x48,0x78,0x00 -+// 44352 굀 ; -+,0x00,0x00,0x00,0x08,0x00,0x06,0x02,0x02,0x1e,0x00,0x0f,0x00,0x0c,0x00,0x07,0x00,0x00,0x08,0x08,0x48,0x48,0x08,0x08,0xe8,0x00,0x00,0x98,0x90,0x18,0x24,0x42,0x00 -+// 44353 굁 ; -+,0x00,0x00,0x00,0x08,0x00,0x06,0x02,0x02,0x1c,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x0c,0xc4,0x00,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 44354 굂 ; -+,0x00,0x00,0x00,0x0c,0x00,0x06,0x02,0x02,0x1c,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x0c,0xe8,0x00,0x08,0x00,0x48,0x40,0x10,0xfc,0x00 -+// 44355 굃 ; -+,0x00,0x00,0x00,0x08,0x00,0x06,0x02,0x02,0x1c,0x00,0x0f,0x01,0x0f,0x04,0x06,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x0c,0xe4,0x00,0x30,0x00,0x50,0x38,0x44,0x2c,0x00 -+// 44356 굄 ; -+,0x00,0x00,0x00,0x0c,0x00,0x06,0x02,0x02,0x1f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x0c,0x78,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 44357 굅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x0c,0x78,0x00,0x18,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 44358 굆 ; -+,0x00,0x00,0x00,0x0c,0x00,0x06,0x02,0x02,0x1e,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x18,0x08,0x48,0x48,0x08,0x08,0xe8,0x00,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 44359 굇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x03,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x04,0x0c,0xc4,0x00,0x60,0x60,0x90,0x08,0x04,0x00 -+// 44360 굈 ; -+,0x00,0x00,0x00,0x0c,0x00,0x06,0x02,0x02,0x1e,0x00,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x0c,0xe4,0x00,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 44361 굉 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x04,0x0c,0xc0,0x20,0x70,0x88,0x08,0x88,0xf0,0x00 -+// 44362 굊 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x02,0x02,0x1f,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x3c,0x84,0x00,0x0c,0x60,0x60,0x98,0x04,0x00 -+// 44363 굋 ; -+,0x00,0x00,0x00,0x0c,0x00,0x06,0x02,0x03,0x1c,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x0c,0x44,0x44,0x04,0x0c,0xc0,0x00,0xe0,0x00,0xf8,0x40,0x98,0x04,0x00 -+// 44364 굌 ; -+,0x00,0x00,0x00,0x0e,0x00,0x06,0x02,0x02,0x1f,0x00,0x04,0x00,0x00,0x06,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0x04,0x0c,0x84,0x00,0xc8,0x08,0x68,0x08,0x08,0x00 -+// 44365 굍 ; -+,0x00,0x00,0x00,0x08,0x00,0x06,0x02,0x02,0x1e,0x00,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x08,0x48,0x48,0x08,0x08,0xe8,0x00,0x00,0xf8,0x00,0x38,0x00,0xfc,0x00 -+// 44366 굎 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x02,0x1f,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x18,0x08,0x48,0x48,0x48,0x08,0x28,0x08,0x00,0xf8,0x10,0x10,0x10,0xfe,0x00 -+// 44367 굏 ; -+,0x00,0x00,0x00,0x0c,0x00,0x06,0x02,0x02,0x1e,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x08,0x08,0x48,0x48,0x08,0x08,0xe8,0x00,0xc0,0x00,0x60,0x90,0x08,0x90,0x00 -+// 44368 교 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x04,0x04,0x44,0x28,0x28,0x20,0x20,0xfe,0x00,0x00,0x00 -+// 44369 굑 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x1f,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xcc,0x08,0x48,0x00,0x00,0xff,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 44370 굒 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x02,0x1f,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x08,0x48,0x20,0x00,0xff,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44371 굓 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x02,0x1f,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x48,0x00,0x00,0xff,0x00,0x30,0x10,0x30,0x28,0x4c,0x84,0x00 -+// 44372 굔 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x3f,0x00,0x04,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x68,0x20,0x20,0xef,0x00,0x00,0x00,0x00,0x38,0x00,0x00 -+// 44373 굕 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x02,0x06,0x00,0x00,0x18,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0xf8,0x08,0x48,0x60,0x00,0x6f,0x00,0x04,0xb0,0x20,0x70,0x88,0x04,0x00 -+// 44374 굖 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x3f,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xf8,0x08,0x48,0x20,0x20,0xff,0x00,0x30,0xfe,0x10,0x48,0x44,0x28,0x00 -+// 44375 굗 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x18,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x68,0x20,0x62,0x00,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 44376 굘 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x1e,0x00,0x00,0x00,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0x60,0x20,0x6f,0x00,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 44377 굙 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x3f,0x00,0x0f,0x01,0x0f,0x08,0x08,0x06,0x00,0x00,0x00,0xfc,0x08,0x48,0x20,0x20,0xfe,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44378 굚 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x02,0x06,0x00,0x00,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x00,0xfc,0x08,0x08,0x68,0x20,0x6f,0x00,0x00,0x4c,0x48,0x48,0x48,0x00,0x00 -+// 44379 굛 ; -+,0x00,0x00,0x07,0x00,0x04,0x02,0x02,0x1f,0x00,0x0f,0x01,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0xec,0x08,0x48,0x20,0x20,0x00,0x00,0x48,0x44,0x6c,0x44,0x4c,0x40,0x00 -+// 44380 굜 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x3f,0x00,0x0f,0x01,0x09,0x08,0x05,0x00,0x00,0x00,0x00,0xfc,0x08,0x48,0x20,0x20,0xfe,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 44381 굝 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x1f,0x00,0x01,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0xf8,0x08,0x48,0x20,0x20,0xee,0x00,0x48,0x40,0x40,0x40,0x40,0x3c,0x00 -+// 44382 굞 ; -+,0x00,0x00,0x07,0x00,0x04,0x02,0x02,0x3f,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0xf8,0x08,0x48,0x20,0x00,0xce,0x00,0x0c,0x00,0x48,0x00,0x10,0xe0,0x00 -+// 44383 굟 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x1f,0x00,0x0f,0x01,0x0b,0x08,0x09,0x00,0x00,0x00,0x00,0xfc,0x08,0x48,0x20,0x20,0xef,0x20,0x00,0x74,0x38,0x48,0x40,0x78,0x00 -+// 44384 굠 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x06,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xfc,0x08,0x48,0x48,0x00,0x6e,0x00,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 44385 굡 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x1f,0x00,0x04,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xfc,0x08,0x48,0x20,0x20,0xee,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 44386 굢 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x3f,0x00,0x01,0x08,0x04,0x00,0x05,0x00,0x00,0x00,0x00,0xf8,0x08,0x48,0x20,0x20,0xef,0x00,0x98,0x90,0x98,0xac,0x84,0x00,0x00 -+// 44387 굣 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x02,0x1f,0x00,0x00,0x00,0x01,0x06,0x08,0x00,0x00,0x00,0xfc,0x08,0x08,0x48,0x00,0x00,0xee,0x00,0x80,0xc0,0x30,0x18,0x00,0x00 -+// 44388 굤 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x3f,0x00,0x02,0x03,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0xfc,0x08,0x48,0x20,0x20,0xef,0x00,0x10,0x10,0x30,0xa8,0x44,0x80,0x00 -+// 44389 굥 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x68,0x20,0x00,0xef,0x00,0x60,0x10,0x10,0x10,0xe0,0x00 -+// 44390 굦 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x00,0x00,0x0f,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0xf8,0x08,0x48,0x20,0x20,0x67,0x00,0x00,0xf8,0x80,0x20,0x18,0x08,0x00 -+// 44391 굧 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x1f,0x00,0x01,0x00,0x0e,0x01,0x02,0x04,0x00,0x00,0x00,0xf8,0x08,0x48,0x28,0x20,0xef,0x00,0xc0,0x08,0xc0,0xc0,0x18,0x0c,0x00 -+// 44392 굨 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x1f,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x88,0x08,0x48,0x40,0x00,0xee,0x00,0x00,0x08,0x08,0xf8,0x08,0x08,0x00 -+// 44393 굩 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x1f,0x00,0x07,0x04,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0x68,0x20,0xef,0x00,0xf0,0x00,0x10,0x00,0x00,0xf8,0x00 -+// 44394 굪 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x02,0x1f,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x08,0x08,0x48,0x00,0x00,0xfe,0x00,0x18,0x00,0x30,0x20,0x20,0xfc,0x00 -+// 44395 굫 ; -+,0x00,0x00,0x06,0x00,0x04,0x02,0x02,0x1f,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x0c,0x08,0x48,0x20,0x00,0x82,0x00,0x00,0xf8,0xc0,0x20,0x20,0x60,0x00 -+// 44396 구 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x00,0x17,0xc0,0xc0,0xc0,0x40,0x40,0x00,0x00,0x00 -+// 44397 국 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0x13,0xc0,0x40,0x40,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 44398 굮 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xde,0x80,0x80,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44399 굯 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xff,0x80,0x80,0x30,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44400 군 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x00,0xce,0x40,0x40,0x40,0x00,0x00,0x18,0x00,0x00 -+// 44401 굱 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x8c,0x08,0x08,0x00,0xce,0x80,0x80,0xfc,0x10,0x20,0x30,0x4c,0x84,0x00 -+// 44402 굲 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xdf,0x00,0x40,0x00,0xfe,0x38,0x44,0x44,0x38,0x00 -+// 44403 굳 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x12,0xc0,0x40,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00 -+// 44404 굴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x1e,0x40,0x40,0xf8,0x10,0x18,0x00,0x00,0xf8,0x00 -+// 44405 굵 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x0f,0x01,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xde,0x40,0x00,0x78,0x08,0x08,0x08,0x08,0x00,0x00 -+// 44406 굶 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x0f,0x01,0x0b,0x08,0x08,0x04,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xde,0x80,0x00,0x4c,0x44,0x40,0x48,0x48,0x00,0x00 -+// 44407 굷 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xdf,0x40,0x00,0x4c,0x44,0x2c,0x04,0x04,0x04,0x00 -+// 44408 굸 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0x1f,0x40,0x00,0x10,0x10,0x10,0x28,0x04,0x00,0x00 -+// 44409 굹 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xde,0x00,0x00,0x78,0x40,0x48,0x40,0x40,0x3c,0x00 -+// 44410 굺 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xdf,0x40,0x00,0x4c,0x00,0x48,0x28,0x00,0xfc,0x00 -+// 44411 굻 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xde,0x00,0x70,0x00,0xf0,0x38,0x44,0x44,0x38,0x00 -+// 44412 굼 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xde,0x80,0x80,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 44413 굽 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xdf,0x40,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x00 -+// 44414 굾 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x09,0x0c,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xdf,0x00,0x10,0x98,0x90,0x98,0xa4,0x84,0x00,0x00 -+// 44415 굿 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x1e,0x80,0x80,0x80,0x80,0xc0,0x20,0x18,0x04,0x00 -+// 44416 궀 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x9e,0x40,0x00,0x10,0x10,0x30,0xa8,0x44,0x80,0x00 -+// 44417 궁 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x12,0xc0,0x00,0x40,0x20,0x10,0x10,0x10,0xe0,0x00 -+// 44418 궂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x1f,0x80,0x80,0x00,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 44419 궃 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xdf,0x80,0x80,0xc0,0x00,0xe0,0xc0,0x10,0x0c,0x00 -+// 44420 궄 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xdf,0x80,0x80,0xd8,0x08,0x08,0x88,0x08,0x08,0x00 -+// 44421 궅 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x06,0x04,0x02,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x1e,0xc0,0x00,0xf0,0x00,0xf0,0x00,0x18,0x00,0x00 -+// 44422 궆 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x06,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xdf,0x80,0x80,0x80,0x20,0x30,0x00,0x20,0xec,0x00 -+// 44423 궇 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x08,0x0c,0x08,0x08,0x0f,0xc0,0x00,0xc0,0x18,0xc0,0x20,0x10,0x20,0x00 -+// 44424 궈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x08,0x88,0x88,0x08,0x78,0x08,0x08,0x08,0x08,0x00 -+// 44425 궉 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 44426 궊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x44,0x0c,0x28,0x00,0x38,0x88,0x88,0x08,0x08,0x00 -+// 44427 궋 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1a,0x02,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0x10,0x10,0x10,0x24,0x46,0x00 -+// 44428 권 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x88,0x48,0x08,0x88,0x88,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44429 궍 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x0c,0xc4,0x44,0x44,0x44,0x0c,0x3c,0x00,0xfc,0x10,0x30,0x24,0x86,0x00 -+// 44430 궎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x19,0x01,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xc4,0x0c,0x00,0x30,0x04,0x30,0x48,0x40,0x48,0x00 -+// 44431 궏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x02,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xc8,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44432 궐 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1a,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x18,0x08,0x08,0x00,0x00,0x7c,0x00 -+// 44433 궑 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x19,0x01,0x01,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x04,0x44,0xc4,0x0c,0x04,0x0c,0x8c,0x04,0x04,0x00,0x00,0x00 -+// 44434 궒 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0xc0,0x40,0x40,0xc0,0x08,0x08,0x00,0x6c,0x08,0x08,0x08,0x38,0x00 -+// 44435 궓 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1b,0x01,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0xc4,0x0c,0x08,0x08,0x48,0x68,0x48,0x48,0x68,0x00 -+// 44436 궔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x03,0x1b,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xc8,0x18,0x08,0x18,0x98,0x90,0x08,0x24,0x42,0x00 -+// 44437 궕 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 44438 궖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1d,0x01,0x00,0x01,0x01,0x0b,0x08,0x0b,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x04,0x2c,0x04,0x00,0x08,0x08,0x00,0xfc,0x00 -+// 44439 궗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x07,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x44,0x08,0x08,0x38,0x00,0x50,0x2c,0x44,0x2c,0x00 -+// 44440 궘 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x44,0x0c,0x38,0x00,0x98,0x08,0x08,0x08,0x38,0x00 -+// 44441 궙 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0xc4,0x0c,0x0c,0x08,0x0c,0xf8,0x08,0x08,0xf8,0x00 -+// 44442 궚 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x10,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 44443 궛 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x48,0x08,0x38,0x08,0x60,0x60,0xf0,0x88,0x04,0x00 -+// 44444 궜 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x0c,0x0c,0x00,0x08,0x08,0x98,0x24,0x42,0x00 -+// 44445 궝 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xc4,0x44,0x44,0x44,0x04,0x3c,0x00,0x30,0x88,0x84,0x88,0xf8,0x00 -+// 44446 궞 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x0c,0xc0,0x40,0x40,0xc0,0x08,0x08,0x00,0x1c,0x40,0x60,0x98,0x04,0x00 -+// 44447 궟 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1e,0x02,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0xc0,0x00,0xf0,0x40,0x98,0x04,0x00 -+// 44448 궠 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x44,0x04,0x2c,0x00,0x08,0x04,0x3c,0x00,0x00,0x00 -+// 44449 궡 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xc0,0x40,0x40,0x40,0x08,0x08,0x00,0x18,0x00,0x18,0x00,0x1c,0x00 -+// 44450 궢 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x1b,0x00,0x00,0x07,0x01,0x00,0x00,0x07,0x00,0x00,0x08,0x0c,0xc4,0x44,0x44,0xc4,0x0c,0x04,0x00,0xf4,0x10,0x90,0x90,0xfe,0x00 -+// 44451 궣 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1e,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xc4,0x44,0x44,0xc4,0x0c,0x0c,0xe0,0x00,0xe0,0x90,0x08,0x90,0x00 -+// 44452 궤 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x1e,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x14,0x94,0x14,0x34,0x14,0x14,0x14,0x14,0x04,0x00 -+// 44453 궥 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x1e,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x00,0x00,0x0c,0x0c,0x08,0x08,0x00 -+// 44454 궦 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x1e,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x04,0x04,0x04,0x04,0xe4,0x00,0x08,0x84,0x84,0x84,0x00,0x00 -+// 44455 궧 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x1e,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x84,0x04,0x84,0x24,0xe4,0x00,0x18,0x88,0x98,0x24,0x42,0x00 -+// 44456 궨 ; -+,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x03,0x1e,0x02,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x00,0xfe,0x00 -+// 44457 궩 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x1e,0x02,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x24,0x14,0x04,0x04,0x84,0x24,0xa4,0x00,0xfc,0x10,0x30,0x4c,0x84,0x00 -+// 44458 궪 ; -+,0x00,0x00,0x00,0x00,0x05,0x00,0x01,0x1e,0x02,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x14,0x14,0x00,0x00,0xfe,0x38,0x44,0x6c,0x00 -+// 44459 궫 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x3e,0x00,0x00,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44460 궬 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x1e,0x00,0x02,0x00,0x00,0x03,0x01,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x08,0x08,0x00,0x00,0x7e,0x00 -+// 44461 궭 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x1e,0x02,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x3c,0x04,0x04,0x00,0x00,0x00 -+// 44462 궮 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x02,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x04,0x04,0x04,0x24,0x04,0x00,0xec,0x24,0x24,0x20,0x20,0x00 -+// 44463 궯 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x1e,0x00,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x08,0x48,0x68,0x40,0x40,0x68,0x00 -+// 44464 궰 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x01,0x1e,0x02,0x00,0x0f,0x00,0x0d,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x98,0x10,0x18,0x24,0x42,0x00 -+// 44465 궱 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x02,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 44466 궲 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x16,0x00,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x50,0x48,0x40,0x00,0xfc,0x00 -+// 44467 궳 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x16,0x00,0x00,0x0f,0x01,0x0e,0x00,0x06,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x30,0x00,0x30,0x28,0x44,0x28,0x00 -+// 44468 궴 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x1e,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x9c,0x08,0x08,0x08,0x00,0x00 -+// 44469 궵 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x01,0x1e,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x08,0x88,0x00,0x08,0x08,0x00 -+// 44470 궶 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x1e,0x02,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 44471 궷 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x1e,0x02,0x02,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0xe4,0x04,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 44472 궸 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x1e,0x02,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x18,0x10,0x18,0xa4,0x42,0x00 -+// 44473 궹 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x24,0x70,0x88,0x84,0x88,0xf0,0x00 -+// 44474 궺 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0x14,0x34,0xe4,0x00,0x0c,0x40,0x40,0x90,0x0c,0x00 -+// 44475 궻 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x1a,0x02,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x24,0x04,0xe0,0x00,0xfc,0x40,0x98,0x04,0x00 -+// 44476 궼 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x1e,0x02,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0xe4,0x00,0xcc,0x04,0x7c,0x04,0x00,0x00 -+// 44477 궽 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x1e,0x00,0x00,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xf8,0x00,0x38,0x00,0xfc,0x00 -+// 44478 궾 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x01,0x1e,0x00,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xf8,0x30,0x10,0x00,0xfc,0x00 -+// 44479 궿 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x03,0x16,0x00,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0xe0,0x04,0xc0,0x90,0x10,0xe0,0x00 -+// 44480 귀 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x08,0xe8,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 44481 귁 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xf8,0x08,0x08,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 44482 귂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 44483 귃 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0xe8,0x08,0x08,0x00,0x10,0x10,0x18,0x24,0x44,0x00 -+// 44484 귄 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x3f,0x02,0x02,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x98,0x88,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44485 귅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xe8,0x08,0x08,0x08,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 44486 귆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x18,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0xc8,0x08,0x08,0x70,0x0c,0x20,0x58,0x88,0x50,0x00 -+// 44487 귇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0x38,0x00,0x00,0x00,0x78,0x00 -+// 44488 귈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x02,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0xe8,0x08,0x08,0x00,0x08,0x08,0x08,0x00,0xfc,0x00 -+// 44489 귉 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x01,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x68,0x08,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44490 귊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x01,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x68,0x08,0x08,0x00,0x6c,0x08,0x08,0x08,0x38,0x00 -+// 44491 귋 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xe8,0x08,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 44492 귌 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x01,0x00,0x01,0x0c,0x04,0x06,0x00,0x00,0x18,0x08,0x48,0x48,0x48,0xc8,0x08,0x00,0x10,0x90,0x90,0x28,0x44,0x02,0x00 -+// 44493 귍 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0xe8,0x08,0x08,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 44494 귎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x0c,0xc4,0x44,0x4c,0xec,0x04,0x00,0x18,0x10,0x48,0x08,0x00,0xdc,0x00 -+// 44495 귏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0xe8,0x08,0x08,0x30,0x00,0x70,0x28,0x44,0x2c,0x00 -+// 44496 귐 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x48,0x08,0x08,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 44497 귑 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x18,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 44498 귒 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x01,0x08,0x0f,0x08,0x0d,0x08,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xe8,0x08,0x08,0x10,0x98,0x90,0xa8,0xa4,0x40,0x00 -+// 44499 귓 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x68,0x08,0x08,0x08,0x40,0x40,0xa0,0x18,0x04,0x00 -+// 44500 귔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xe8,0x08,0x00,0x00,0x08,0x10,0x98,0x24,0x42,0x00 -+// 44501 귕 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x1f,0x02,0x02,0x02,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x48,0x08,0x08,0x08,0x60,0x80,0x08,0x08,0xf0,0x00 -+// 44502 귖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x1b,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0x3c,0x40,0x60,0x98,0x0c,0x00 -+// 44503 귗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x01,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0xe8,0x08,0x08,0xc0,0x00,0xc0,0xc0,0x18,0x04,0x00 -+// 44504 귘 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0x18,0x08,0x28,0x08,0x08,0x00 -+// 44505 귙 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xc8,0x08,0x08,0x00,0xf8,0x00,0x78,0x00,0xfc,0x00 -+// 44506 귚 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0xc8,0x08,0x08,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 44507 귛 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0xc8,0x08,0x08,0xe0,0x00,0x60,0x90,0x10,0xb0,0x00 -+// 44508 규 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0xfe,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 44509 귝 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x02,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xff,0x10,0x10,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 44510 귞 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x3f,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xff,0x10,0x10,0x08,0x0c,0x00,0x00,0x00,0x00,0x00 -+// 44511 귟 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xff,0x10,0x10,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44512 균 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x3f,0x02,0x02,0x00,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 44513 귡 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x02,0x02,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xfe,0x10,0x10,0xfc,0x10,0x30,0x28,0x44,0x80,0x00 -+// 44514 귢 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x1f,0x10,0x10,0x10,0xf6,0x18,0x04,0x44,0x38,0x00 -+// 44515 귣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x1f,0x10,0x10,0x00,0x78,0x00,0x00,0x00,0xfc,0x00 -+// 44516 귤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x02,0x02,0x07,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0xff,0x10,0x10,0xf8,0x00,0x38,0x00,0x00,0xf8,0x00 -+// 44517 귥 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x1f,0x10,0x10,0x18,0x04,0x04,0x04,0x00,0x00,0x00 -+// 44518 귦 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x02,0x02,0x0f,0x01,0x09,0x08,0x08,0x04,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xbf,0x10,0x10,0x5c,0x44,0x44,0x00,0x2c,0x00,0x00 -+// 44519 귧 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x3f,0x02,0x02,0x0f,0x01,0x09,0x08,0x04,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xbf,0x10,0x00,0x4c,0x44,0x2c,0x04,0x24,0x04,0x00 -+// 44520 귨 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x02,0x02,0x02,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0xfc,0x0c,0x08,0x08,0xff,0x10,0x10,0x18,0x98,0x90,0x28,0x04,0x00,0x00 -+// 44521 귩 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x3f,0x02,0x02,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xff,0x10,0x10,0x5c,0x00,0x28,0x20,0x00,0x3c,0x00 -+// 44522 귪 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x21,0x02,0x02,0x02,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xfe,0x00,0x00,0x0c,0x00,0x48,0x48,0x00,0xfc,0x00 -+// 44523 귫 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x3f,0x02,0x02,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0xff,0x10,0x30,0x00,0x70,0x38,0x44,0x44,0x38,0x00 -+// 44524 귬 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1a,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x30,0x10,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 44525 귭 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x02,0x02,0x06,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x1f,0x10,0x10,0x18,0x08,0xf8,0x08,0x08,0x00,0x00 -+// 44526 귮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x1f,0x10,0x10,0x98,0x98,0x98,0x84,0xa4,0x42,0x00 -+// 44527 귯 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0xfc,0x0c,0x08,0x08,0x0f,0x10,0x10,0x90,0xc0,0xc0,0x10,0x0c,0x04,0x00 -+// 44528 귰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x1b,0x10,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 44529 귱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x78,0x08,0x08,0x00,0x1e,0x10,0x10,0x10,0x60,0x10,0x10,0x10,0xe0,0x00 -+// 44530 귲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x12,0x02,0x02,0x0f,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x10,0x10,0x00,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 44531 귳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0x0c,0x08,0x08,0x1f,0x10,0x10,0xe0,0x00,0xe0,0xc0,0x18,0x04,0x00 -+// 44532 귴 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x1f,0x02,0x02,0x02,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xff,0x10,0x10,0x18,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 44533 귵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x0f,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x16,0x20,0x00,0xf0,0x00,0x70,0x00,0x08,0x00,0x00 -+// 44534 귶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x0f,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x1e,0x00,0x00,0x00,0x20,0x30,0x00,0x20,0xfc,0x00 -+// 44535 귷 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x3f,0x02,0x02,0x00,0x0f,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x3f,0x10,0x10,0xc0,0xd8,0xc0,0x20,0x00,0xe0,0x00 -+// 44536 그 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x0c,0x08,0x08,0x08,0x08,0x10,0xc0,0x00,0x00,0x00 -+// 44537 극 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x08,0x08,0x10,0x12,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x00,0x00 -+// 44538 귺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x10,0x10,0xfe,0x00,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 44539 귻 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x08,0x08,0x10,0x13,0x00,0x00,0x30,0x10,0x30,0x28,0x44,0x80,0x00 -+// 44540 근 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x10,0xc0,0x00,0x00,0x00,0x00,0xf8,0x00,0x00 -+// 44541 귽 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x18,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x02,0x00,0x00,0x1c,0x20,0x20,0x50,0x88,0x04,0x00 -+// 44542 귾 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x16,0x00,0x00,0x00,0xfe,0x30,0x40,0x40,0x38,0x00 -+// 44543 귿 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xf8,0x08,0x10,0x10,0x10,0x80,0x00,0x00,0xf8,0x00,0x00,0x00,0x10,0x00 -+// 44544 글 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x10,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x78,0x00 -+// 44545 긁 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x3f,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xfe,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44546 긂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x0f,0x01,0x09,0x08,0x09,0x04,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x12,0x00,0x00,0x4c,0x44,0x40,0x40,0x68,0x00,0x00 -+// 44547 긃 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x0f,0x00,0x00,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0xfe,0x00,0x00,0x48,0x44,0x6c,0x44,0x4c,0x40,0x00 -+// 44548 긄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x0b,0x01,0x01,0x08,0x00,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x12,0x00,0x00,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44549 긅 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x16,0x00,0x00,0x08,0x40,0x68,0x40,0x40,0x38,0x00 -+// 44550 긆 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x1e,0x00,0x00,0x08,0x00,0x48,0x08,0x00,0xfc,0x00 -+// 44551 긇 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x01,0x0b,0x08,0x0b,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x12,0x00,0x20,0x00,0xfc,0x38,0x44,0x44,0x38,0x00 -+// 44552 금 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x38,0x08,0x08,0x00,0x16,0x00,0x00,0x10,0x10,0x10,0x10,0x70,0x00,0x00 -+// 44553 급 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x12,0x00,0x00,0x10,0x10,0x10,0x10,0xf0,0x00,0x00 -+// 44554 긊 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x0d,0x08,0x0d,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x16,0x00,0x00,0x10,0x90,0x90,0xac,0xc4,0x00,0x00 -+// 44555 긋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x06,0x08,0x00,0x00,0x00,0x00,0x08,0x08,0x10,0x10,0xfe,0x00,0x00,0x80,0x80,0x20,0x18,0x08,0x00 -+// 44556 긌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x03,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x12,0x00,0x00,0x30,0x10,0x30,0xa8,0xc4,0x80,0x00 -+// 44557 긍 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x01,0x02,0x04,0x02,0x03,0x00,0x00,0x00,0xf8,0x08,0x10,0x10,0x10,0xfe,0x00,0x80,0xc0,0x20,0x10,0x20,0xe0,0x00 -+// 44558 긎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x0f,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x18,0x08,0x08,0x10,0x10,0xfe,0x00,0x00,0xc0,0x80,0x20,0x18,0x08,0x00 -+// 44559 긏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0xfe,0x00,0x80,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 44560 긐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x00,0x10,0x10,0xfe,0x00,0x00,0x98,0x08,0xf8,0x08,0x08,0x00 -+// 44561 긑 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x16,0x00,0x00,0x30,0x00,0x10,0x00,0x00,0xf8,0x00 -+// 44562 긒 ; -+,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0f,0x00,0x00,0x00,0xf8,0x08,0x10,0x10,0x16,0x00,0x00,0x38,0x20,0x20,0x20,0x20,0xf8,0x00 -+// 44563 긓 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x0f,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x02,0x00,0x00,0x80,0xf8,0xc0,0x20,0x10,0xe0,0x00 -+// 44564 긔 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x48,0x48,0x88,0x88,0xe8,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44565 긕 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x48,0xe8,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44566 긖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xc4,0x44,0x44,0x0c,0xc0,0x00,0x00,0x38,0x88,0x88,0x88,0x00,0x00 -+// 44567 긗 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x1c,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0x18,0x90,0x98,0xa4,0xc2,0x00 -+// 44568 긘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x18,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0x04,0x44,0x44,0x44,0x0c,0xc4,0x04,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44569 긙 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x1c,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0xf0,0x10,0x30,0x2c,0x84,0x00 -+// 44570 긚 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x08,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0x0c,0xc0,0x00,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 44571 긛 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x1c,0x00,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 44572 긜 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x10,0x00,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x08,0x08,0x88,0x00,0x00,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44573 긝 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x10,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44574 긞 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x0f,0x08,0x0f,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x08,0x88,0x00,0x00,0x48,0x48,0x48,0x48,0x60,0x00 -+// 44575 긟 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x08,0x88,0x00,0x10,0x48,0x48,0x48,0x48,0x48,0x00 -+// 44576 긠 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x08,0xc8,0x00,0x10,0x90,0x10,0x28,0x44,0x02,0x00 -+// 44577 긡 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x01,0x18,0x00,0x0f,0x01,0x0f,0x08,0x0a,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 44578 긢 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x00,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x4c,0xc4,0x00,0x0c,0x00,0x48,0x08,0x00,0xfc,0x00 -+// 44579 긣 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x08,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x08,0xc8,0x00,0x30,0x00,0x10,0x28,0x44,0x28,0x00 -+// 44580 긤 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x1c,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0x08,0xc8,0x08,0x00,0xf8,0x08,0x08,0x08,0x38,0x00 -+// 44581 긥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x01,0x18,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0xc8,0x00,0x18,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 44582 긦 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x18,0x00,0x08,0x0c,0x08,0x08,0x08,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 44583 긧 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x48,0x60,0x60,0x90,0x08,0x04,0x00 -+// 44584 긨 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1c,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0x18,0x10,0x18,0xac,0x44,0x00 -+// 44585 긩 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x03,0x18,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x48,0x08,0x08,0xc8,0x08,0x28,0x70,0x88,0x08,0x88,0xf0,0x00 -+// 44586 긪 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x07,0x00,0x00,0x05,0x00,0x00,0x01,0x02,0x00,0x00,0x18,0x08,0x48,0x48,0x48,0x08,0xc8,0x08,0x00,0xfc,0x40,0xe0,0x98,0x04,0x00 -+// 44587 긫 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0x00,0xfc,0x40,0xb0,0x0c,0x00 -+// 44588 긬 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x1c,0x00,0x07,0x00,0x00,0x06,0x00,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0xd8,0x08,0x68,0x08,0x08,0x00 -+// 44589 긭 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x01,0x1c,0x00,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0x48,0xc8,0x00,0x00,0xf8,0x00,0x18,0x00,0xfc,0x00 -+// 44590 긮 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1c,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0x00,0xfc,0x10,0x10,0x10,0x3e,0x00 -+// 44591 긯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x3c,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x48,0x48,0x08,0xc8,0x08,0xe0,0x00,0xf8,0xb0,0x10,0x90,0x00 -+// 44592 기 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x84,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00 -+// 44593 긱 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x02,0x00,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x04,0x04,0x04,0x00,0x00,0xdc,0x0c,0x0c,0x08,0x08,0x00 -+// 44594 긲 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x00,0x00,0x18,0x04,0x04,0x04,0x00,0x00,0x00 -+// 44595 긳 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x08,0x08,0x08,0x10,0x18,0x10,0x28,0x24,0x42,0x00 -+// 44596 긴 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0xc4,0x84,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x7e,0x00 -+// 44597 긵 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x04,0x04,0x00,0x00,0xf8,0x10,0x38,0x64,0x82,0x00 -+// 44598 긶 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x06,0x08,0x10,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x04,0x04,0x04,0x04,0x00,0xfe,0x10,0x44,0x44,0x38,0x00 -+// 44599 긷 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x0c,0x10,0x00,0x03,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x08,0x08,0x08,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 44600 길 ; -+,0x00,0x00,0x00,0x11,0x00,0x01,0x03,0x06,0x08,0x13,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x04,0x04,0x98,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44601 긹 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x04,0x00,0x38,0x08,0x08,0x08,0x08,0x00,0x00 -+// 44602 긺 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x08,0x08,0x08,0x4c,0x04,0x00,0x00,0x28,0x20,0x00 -+// 44603 긻 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x19,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x00,0x00,0xc8,0x48,0x68,0x48,0x48,0x68,0x00 -+// 44604 긼 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x08,0x1f,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0x04,0x04,0x04,0x98,0x88,0x90,0x18,0x24,0x42,0x00 -+// 44605 긽 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x06,0x08,0x19,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0x04,0x04,0x04,0x0c,0x20,0x20,0x20,0x20,0x3c,0x00 -+// 44606 긾 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x1f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x04,0x00,0x08,0x00,0x48,0x08,0x00,0xfc,0x00 -+// 44607 긿 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x02,0x04,0x08,0x10,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x08,0x88,0x88,0x08,0x08,0x08,0x00,0x38,0x04,0x10,0x24,0x04,0x2c,0x00 -+// 44608 김 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x04,0x04,0x04,0x00,0xfc,0x04,0x08,0x08,0x08,0x00 -+// 44609 깁 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x02,0x00,0x12,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0x04,0x04,0x04,0x08,0x04,0xfc,0x04,0x04,0xf8,0x00 -+// 44610 깂 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x11,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x04,0x00,0x98,0x88,0x90,0x90,0xa4,0xc2,0x00 -+// 44611 깃 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x10,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x04,0x04,0x04,0x00,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 44612 깄 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0x04,0x04,0x04,0x08,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 44613 깅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x84,0x84,0x04,0x04,0x04,0x20,0xd0,0x88,0x04,0x88,0x70,0x00 -+// 44614 깆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0c,0xc4,0x84,0x84,0x04,0x04,0x04,0x00,0xfc,0x40,0x60,0x98,0x04,0x00 -+// 44615 깇 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x04,0x04,0xe0,0x04,0x40,0x60,0x8c,0x06,0x00 -+// 44616 깈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x04,0x04,0x04,0x00,0x8c,0x0c,0xec,0x04,0x00,0x00 -+// 44617 깉 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x0c,0x84,0x84,0x04,0x04,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44618 깊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x00,0x01,0x01,0x00,0x07,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x04,0x04,0x00,0x0c,0x00,0x10,0x10,0x10,0x80,0x00 -+// 44619 깋 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x02,0x08,0x10,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0x04,0x04,0x04,0xe0,0x0c,0x60,0x90,0x08,0x90,0x00 -+// 44620 까 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x08,0x10,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xe8,0x48,0x48,0x88,0x8f,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44621 깍 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 44622 깎 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 44623 깏 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x01,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 44624 깐 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x08,0xc8,0x48,0x88,0x88,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44625 깑 ; -+,0x00,0x00,0x00,0x07,0x04,0x08,0x09,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x04,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x0f,0x08,0x08,0x00,0xf0,0x30,0x30,0x48,0x84,0x00 -+// 44626 깒 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x09,0x11,0x00,0x08,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x00,0x00,0xfc,0x30,0x48,0xc4,0x68,0x00 -+// 44627 깓 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44628 깔 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x07,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0xf8,0x08,0x08,0x00,0x00,0x3c,0x00 -+// 44629 깕 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x11,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44630 깖 ; -+,0x00,0x00,0x00,0x17,0x04,0x08,0x09,0x01,0x00,0x0c,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x18,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x48,0x4c,0x40,0x48,0x48,0x38,0x00 -+// 44631 깗 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x98,0x48,0x48,0x48,0x48,0x48,0x00 -+// 44632 깘 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x11,0x02,0x0c,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0x10,0x98,0x10,0x18,0x24,0x40,0x00 -+// 44633 깙 ; -+,0x00,0x00,0x00,0x17,0x04,0x08,0x09,0x01,0x04,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x00,0x78,0x40,0x78,0x40,0x40,0x3c,0x00 -+// 44634 깚 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x00,0x0c,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x08,0x00,0x48,0x40,0x00,0xfc,0x00 -+// 44635 깛 ; -+,0x00,0x00,0x00,0x07,0x04,0x08,0x11,0x02,0x04,0x08,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x30,0x04,0x10,0x28,0x44,0x4c,0x00 -+// 44636 깜 ; -+,0x00,0x00,0x00,0x17,0x04,0x08,0x11,0x02,0x04,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x00,0x18,0x08,0x00,0x10,0x00,0x00 -+// 44637 깝 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0x10,0x08,0x08,0x08,0x08,0xf8,0x00 -+// 44638 깞 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x01,0x01,0x00,0x09,0x08,0x07,0x00,0x00,0x05,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x00,0x98,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 44639 깟 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x09,0x11,0x02,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0xc8,0x40,0xe0,0x90,0x08,0x04,0x00 -+// 44640 깠 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x02,0x01,0x03,0x05,0x04,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0x00,0x18,0x10,0xa8,0xa4,0x40,0x00 -+// 44641 깡 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0x08,0x60,0x10,0x08,0x08,0x90,0x40 -+// 44642 깢 ; -+,0x00,0x00,0x00,0x1f,0x04,0x00,0x09,0x01,0x00,0x00,0x06,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x08,0xc0,0xc0,0xa0,0x18,0x04,0x00 -+// 44643 깣 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x00,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0xe0,0x00,0xc0,0xe0,0x18,0x04,0x00 -+// 44644 깤 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x01,0x00,0x04,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x00,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 44645 깥 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x09,0x11,0x00,0x04,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44646 깦 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x00,0x00,0x07,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x08,0x00,0x30,0x10,0x00,0xfc,0x00 -+// 44647 깧 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x04,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x0f,0x08,0x08,0x00,0xdc,0xe0,0x10,0x10,0xe0,0x00 -+// 44648 깨 ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0xd4,0x94,0x94,0x1c,0x14,0x14,0x14,0x14,0x14,0x04,0x00 -+// 44649 깩 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x02,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x1c,0x04,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 44650 깪 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x00,0xbc,0x84,0x84,0x84,0x00,0x00 -+// 44651 깫 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x00,0x18,0x98,0x98,0xa4,0x02,0x00 -+// 44652 깬 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x01,0x02,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xa4,0x3c,0x24,0x24,0x24,0x24,0x00,0x00,0x7c,0x00 -+// 44653 깭 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x01,0x02,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0xd4,0x94,0x94,0x14,0x14,0x00,0xfc,0x10,0x18,0x24,0x42,0x00 -+// 44654 깮 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x01,0x02,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x24,0x14,0xd4,0x94,0x94,0x14,0x14,0x00,0xf6,0x18,0x24,0xc4,0x2c,0x00 -+// 44655 깯 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x08,0x01,0x02,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x94,0x14,0x04,0x00,0x00,0x00,0x00,0x00,0x1e,0x00 -+// 44656 깰 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x11,0x02,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x14,0xd4,0x94,0x94,0x14,0x04,0xfc,0x04,0x04,0x00,0x00,0x0c,0x00 -+// 44657 깱 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x01,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0xd4,0x94,0x94,0x14,0x14,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 44658 깲 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x08,0x11,0x02,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x94,0x14,0x14,0x04,0xac,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 44659 깳 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x08,0x44,0x2c,0x04,0x04,0x2c,0x00 -+// 44660 깴 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x84,0x84,0x14,0x04,0x04,0x88,0x88,0x88,0x14,0x22,0x02,0x00 -+// 44661 깵 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x10,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x7c,0x00,0x38,0x00,0x00,0x3c,0x00 -+// 44662 깶 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x0d,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x3c,0x24,0x04,0x0c,0x00,0x08,0x28,0x08,0x44,0x00 -+// 44663 깷 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x18,0x7e,0x18,0x24,0x04,0x2c,0x00 -+// 44664 깸 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x00,0x08,0x0c,0x08,0x08,0x38,0x00 -+// 44665 깹 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x0c,0x04,0xec,0x04,0x04,0x0c,0x00 -+// 44666 깺 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x18,0x88,0x98,0x94,0xa4,0x82,0x00 -+// 44667 깻 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0x3c,0x24,0x24,0x04,0x20,0x60,0x50,0x8c,0x04,0x00 -+// 44668 깼 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x10,0x08,0x18,0x98,0x24,0x42,0x00 -+// 44669 깽 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x34,0x34,0x24,0x24,0x70,0x88,0x84,0x88,0x78,0x00 -+// 44670 깾 ; -+,0x00,0x00,0x00,0x00,0x0c,0x09,0x01,0x02,0x00,0x04,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x68,0x28,0xa8,0x28,0x28,0x28,0x20,0x08,0xc0,0xc0,0xb0,0x08,0x04,0x00 -+// 44671 깿 ; -+,0x00,0x00,0x00,0x00,0x0c,0x09,0x09,0x12,0x02,0x04,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0xe0,0x00,0xfc,0x40,0x90,0x0c,0x00 -+// 44672 꺀 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x02,0x04,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x00,0xcc,0x04,0xec,0x04,0x04,0x00 -+// 44673 꺁 ; -+,0x00,0x00,0x00,0x00,0x04,0x09,0x09,0x12,0x02,0x04,0x02,0x02,0x03,0x02,0x03,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x2c,0x24,0x24,0x00,0x00,0x00,0xf8,0x00,0xfc,0x00 -+// 44674 꺂 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x00,0x01,0x01,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x04,0x10,0x10,0x10,0x90,0xfe,0x00 -+// 44675 꺃 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x60,0x0c,0x60,0x90,0x08,0x90,0x00 -+// 44676 꺄 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x08,0x11,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xe8,0x48,0x4e,0x88,0x88,0x08,0x0f,0x08,0x08,0x08,0x08,0x00 -+// 44677 꺅 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x09,0x11,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x4a,0x88,0x08,0x0f,0x08,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 44678 꺆 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x09,0x11,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x4b,0x88,0x08,0x0f,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 44679 꺇 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x11,0x02,0x04,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x4a,0x88,0x08,0x0e,0x08,0x00,0x10,0x10,0x38,0x24,0x42,0x00 -+// 44680 꺈 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x08,0x68,0x4e,0x88,0x88,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44681 꺉 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x02,0x04,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0x48,0x4a,0x88,0x08,0x0e,0x08,0x0c,0x30,0x30,0x38,0x4c,0x84,0x00 -+// 44682 꺊 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x88,0x0f,0x08,0x00,0xfc,0x30,0x48,0x44,0x78,0x00 -+// 44683 꺋 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x02,0x04,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x4a,0x88,0x08,0x0e,0x08,0x00,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 44684 꺌 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x12,0x04,0x07,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0xc8,0xca,0x88,0x08,0x0e,0x08,0xf0,0x10,0x10,0x00,0x00,0xfc,0x00 -+// 44685 꺍 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x10,0x08,0xc8,0x4a,0x88,0x88,0x0f,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44686 꺎 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x11,0x00,0x0c,0x01,0x01,0x08,0x08,0x0b,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x08,0x0e,0x08,0x08,0x48,0x48,0x48,0x48,0x78,0x00 -+// 44687 꺏 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x08,0x11,0x02,0x04,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0xe8,0x48,0xc8,0x88,0x0f,0x08,0x08,0x48,0x68,0x48,0x48,0x68,0x00 -+// 44688 꺐 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x00,0x0d,0x00,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0xc8,0x4a,0x88,0x08,0x0f,0x08,0x18,0x98,0x90,0x28,0x24,0x42,0x00 -+// 44689 꺑 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x11,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x08,0xc8,0x4f,0x88,0x08,0x0f,0x08,0x78,0x40,0x48,0x40,0x40,0x3c,0x00 -+// 44690 꺒 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x01,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x4b,0x88,0x08,0x0f,0x08,0x38,0x00,0x48,0x08,0x00,0xfc,0x00 -+// 44691 꺓 ; -+,0x00,0x00,0x00,0x17,0x04,0x08,0x09,0x01,0x00,0x0c,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x10,0x08,0xc8,0x4f,0x88,0x88,0x0f,0x08,0x30,0x0c,0x10,0x24,0x44,0x2c,0x00 -+// 44692 꺔 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x11,0x22,0x04,0x00,0x07,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0xc8,0xca,0x88,0x08,0x0e,0x08,0x00,0x38,0x10,0x10,0x10,0xf0,0x00 -+// 44693 꺕 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x11,0x02,0x04,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0xc8,0x4a,0x88,0x08,0x0e,0x08,0x10,0x18,0xf8,0x08,0x18,0x10,0x00 -+// 44694 꺖 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x02,0x04,0x09,0x08,0x0f,0x08,0x09,0x0c,0x00,0x00,0x10,0x08,0xc8,0x4e,0x88,0x08,0x0e,0x08,0x10,0x90,0x90,0xa8,0x84,0xc0,0x00 -+// 44695 꺗 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x09,0x11,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x08,0xc8,0x4a,0x88,0x88,0x0f,0x08,0xc8,0x40,0xa0,0x10,0x0c,0x04,0x00 -+// 44696 꺘 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x02,0x01,0x03,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0xe8,0x4b,0x88,0x88,0x0f,0x08,0x10,0x18,0x10,0x88,0xa4,0x42,0x00 -+// 44697 꺙 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x01,0x02,0x04,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x4a,0x88,0x08,0x0f,0x08,0x48,0xb0,0x00,0x08,0x18,0xf0,0x00 -+// 44698 꺚 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x88,0x0a,0x08,0x00,0xf8,0x40,0xa0,0x18,0x04,0x00 -+// 44699 꺛 ; -+,0x00,0x00,0x00,0x07,0x04,0x08,0x11,0x02,0x04,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0xc8,0xce,0x88,0x08,0x0e,0x08,0xe0,0x00,0xc0,0xc0,0x18,0x04,0x00 -+// 44700 꺜 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x09,0x01,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x4f,0x88,0x88,0x0f,0x08,0x00,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 44701 꺝 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x02,0x02,0x03,0x02,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x88,0x0f,0x08,0x00,0x00,0x00,0x78,0x00,0x1c,0x00 -+// 44702 꺞 ; -+,0x00,0x00,0x00,0x17,0x04,0x08,0x11,0x22,0x04,0x00,0x00,0x02,0x01,0x01,0x0f,0x00,0x00,0x10,0x08,0xc8,0xce,0x88,0x08,0x0e,0x08,0x18,0x00,0x10,0x00,0x20,0xf0,0x00 -+// 44703 꺟 ; -+,0x00,0x00,0x00,0x1f,0x04,0x08,0x09,0x11,0x02,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x08,0x0e,0x08,0xc0,0x7c,0xc0,0x20,0x10,0x30,0xc0 -+// 44704 꺠 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x09,0x10,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xf4,0xa4,0xa4,0x24,0x3c,0x24,0x24,0x24,0x24,0x04,0x00 -+// 44705 꺡 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 44706 꺢 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x02,0x04,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0x24,0x34,0x24,0x00,0xbc,0x84,0x84,0x84,0x04,0x00 -+// 44707 꺣 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 44708 꺤 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x09,0x11,0x02,0x04,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x08,0x64,0x24,0xa4,0xb4,0x24,0x24,0x34,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 44709 꺥 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x02,0x04,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x04,0xf0,0x10,0x38,0x44,0x82,0x00 -+// 44710 꺦 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x30,0xfe,0x10,0x4c,0x44,0x38,0x00 -+// 44711 꺧 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x12,0x02,0x00,0x03,0x02,0x00,0x00,0x01,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00 -+// 44712 꺨 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x09,0x12,0x22,0x04,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0xac,0xa4,0x24,0x3c,0x24,0x20,0x08,0x08,0x38,0x00,0xfe,0x00 -+// 44713 꺩 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x12,0x02,0x0f,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x24,0x24,0x3c,0x04,0x04,0x04,0x04,0x00,0x00 -+// 44714 꺪 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x64,0x24,0xb4,0xa4,0x24,0x34,0x24,0x2c,0x24,0x24,0x24,0x24,0x20,0x00 -+// 44715 꺫 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x10,0x02,0x0f,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0xa4,0xbc,0xa4,0x24,0x24,0x24,0x48,0x04,0x2c,0x04,0x04,0x2c,0x00 -+// 44716 꺬 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x34,0x24,0x88,0x88,0x98,0x14,0x26,0x42,0x00 -+// 44717 꺭 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x0c,0x24,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x78,0x40,0x20,0x20,0x00,0x3c,0x00 -+// 44718 꺮 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x10,0x02,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0xbc,0xa4,0x24,0x24,0x24,0x2c,0x00,0x48,0x28,0x08,0xfc,0x00 -+// 44719 꺯 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x18,0x06,0x10,0x24,0x04,0x24,0x00 -+// 44720 꺰 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x00,0x0c,0x08,0x08,0x08,0x00,0x00 -+// 44721 꺱 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x24,0x24,0x0c,0x04,0xfc,0x04,0x0c,0x08,0x00 -+// 44722 꺲 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x12,0x00,0x01,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x24,0x24,0x98,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 44723 꺳 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x09,0x12,0x02,0x04,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x04,0x20,0x60,0x50,0x8c,0x04,0x00 -+// 44724 꺴 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x02,0x04,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0x24,0x34,0x24,0x00,0x88,0x08,0x9c,0x26,0x42,0x00 -+// 44725 꺵 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x08,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0xf4,0xa4,0xa4,0x34,0x24,0x04,0x70,0x88,0x84,0x84,0x78,0x00 -+// 44726 꺶 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x04,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0x24,0x34,0x24,0x04,0xc0,0x40,0x90,0x08,0x04,0x00 -+// 44727 꺷 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x00,0x00,0x06,0x00,0x01,0x06,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0x3c,0x24,0xe0,0x04,0x60,0x60,0x88,0x04,0x00 -+// 44728 꺸 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0xbc,0xa4,0x24,0x3c,0x24,0x00,0x0c,0x04,0xfc,0x04,0x04,0x00 -+// 44729 꺹 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x04,0x03,0x01,0x01,0x00,0x01,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0x24,0x34,0x24,0x08,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44730 꺺 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x02,0x04,0x02,0x01,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0xbc,0xa4,0x24,0x34,0x24,0x04,0x10,0x18,0x90,0x90,0xfe,0x00 -+// 44731 꺻 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x12,0x02,0x00,0x05,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0xb4,0xa4,0x24,0x34,0x24,0x60,0xfc,0x60,0x90,0x08,0x90,0x00 -+// 44732 꺼 ; -+,0x00,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x08,0x11,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x44,0x44,0xfc,0x84,0x04,0x04,0x04,0x00,0x00,0x00,0x00 -+// 44733 꺽 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0xc8,0xb8,0x08,0x08,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 44734 꺾 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc0,0x40,0xc0,0x88,0x00,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00 -+// 44735 꺿 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0xc8,0xb8,0x08,0x08,0x10,0x18,0x10,0x18,0x24,0x42,0x00 -+// 44736 껀 ; -+,0x00,0x00,0x00,0x07,0x06,0x04,0x08,0x08,0x11,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xfc,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x00 -+// 44737 껁 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x04,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0x8c,0x04,0x04,0x00,0xfc,0x10,0x18,0x24,0x46,0x80 -+// 44738 껂 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xbc,0x04,0x04,0x00,0xfe,0x30,0x44,0x44,0x78,0x00 -+// 44739 껃 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x01,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xbc,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44740 껄 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x07,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xc0,0x40,0xc0,0xf8,0x00,0x00,0xf8,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44741 껅 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x01,0x02,0x06,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xbc,0x04,0x04,0x0c,0x84,0x84,0x04,0x04,0x00,0x00 -+// 44742 껆 ; -+,0x00,0x00,0x00,0x0f,0x06,0x04,0x08,0x11,0x02,0x0c,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0xc4,0xbc,0x04,0x04,0x6c,0x24,0x24,0x24,0x24,0x3c,0x00 -+// 44743 껇 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x07,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xbc,0x04,0x04,0x48,0x24,0x2c,0x24,0x24,0x24,0x00 -+// 44744 껈 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x08,0x11,0x02,0x04,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xbc,0x04,0x04,0x18,0x88,0x90,0x18,0x24,0x42,0x00 -+// 44745 껉 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x0f,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xbc,0x04,0x04,0x7c,0x20,0x2c,0x20,0x20,0x3c,0x00 -+// 44746 껊 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x08,0x11,0x02,0x05,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xbc,0x04,0x04,0x04,0x00,0x48,0x28,0x00,0xfc,0x00 -+// 44747 껋 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x08,0x11,0x00,0x0d,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x64,0x44,0xc4,0xac,0x00,0x00,0x10,0x76,0x10,0x24,0x04,0x2c,0x00 -+// 44748 껌 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x10,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x64,0x44,0xbc,0x84,0x04,0x00,0x9c,0x0c,0x08,0x08,0x78,0x00 -+// 44749 껍 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xfc,0x04,0x04,0x08,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 44750 껎 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x08,0x11,0x02,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x64,0x44,0xc4,0xac,0x04,0x00,0x98,0x88,0x98,0x94,0xa4,0xc2,0x00 -+// 44751 껏 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x00,0x01,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x64,0x44,0x84,0x84,0x04,0x04,0x60,0x60,0x50,0x88,0x04,0x00 -+// 44752 껐 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xfc,0x04,0x04,0x08,0x08,0x08,0x98,0x64,0x42,0x00 -+// 44753 껑 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x4c,0x8c,0x04,0x04,0x24,0x70,0x88,0x04,0x88,0x88,0x20 -+// 44754 껒 ; -+,0x00,0x00,0x00,0x0f,0x06,0x04,0x08,0x11,0x02,0x04,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x4c,0x8c,0x04,0x04,0x00,0xf8,0x40,0xa0,0x08,0x04,0x00 -+// 44755 껓 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xe0,0x40,0x80,0xf8,0x00,0x00,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 44756 껔 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x01,0x02,0x04,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0xcc,0x84,0x04,0x00,0x08,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 44757 껕 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x02,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x0c,0xe8,0x48,0x88,0xf8,0x08,0x08,0x18,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44758 껖 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x08,0x08,0xe8,0x48,0xc8,0x88,0x08,0x08,0x08,0x00,0x30,0x10,0x20,0xfc,0x00 -+// 44759 껗 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xbc,0x04,0x04,0x00,0xfc,0xe0,0x10,0x10,0xf0,0x00 -+// 44760 께 ; -+,0x00,0x00,0x00,0x00,0x1e,0x04,0x00,0x09,0x01,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x84,0x84,0x04,0xe4,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 44761 껙 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x01,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x24,0x00,0xfc,0x04,0x04,0x04,0x00,0x00 -+// 44762 껚 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x04,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x34,0x84,0x84,0xe4,0x04,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 44763 껛 ; -+,0x00,0x00,0x00,0x06,0x04,0x08,0x09,0x10,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x84,0xa4,0x24,0x04,0x04,0x10,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 44764 껜 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x08,0x01,0x02,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x24,0x34,0xc4,0x84,0xa4,0x24,0x04,0x04,0x04,0x04,0x00,0x00,0x7e,0x00 -+// 44765 껝 ; -+,0x00,0x00,0x00,0x04,0x04,0x00,0x09,0x11,0x02,0x04,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x0c,0x24,0x84,0x84,0x84,0xe4,0x04,0x04,0x04,0xf0,0x10,0x18,0x24,0x42,0x00 -+// 44766 껞 ; -+,0x00,0x00,0x00,0x1e,0x04,0x08,0x01,0x02,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0xa4,0x24,0x04,0x34,0x00,0xfe,0x10,0x44,0x44,0x68,0x00 -+// 44767 껟 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x12,0x02,0x00,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0xe4,0x24,0x24,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 44768 껠 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x02,0x04,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0xe4,0x04,0x04,0x00,0x04,0x08,0x00,0x00,0x3c,0x00 -+// 44769 껡 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x10,0x02,0x07,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x04,0x3c,0x04,0x04,0x04,0x04,0x00,0x00 -+// 44770 껢 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x01,0x02,0x00,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0x24,0x20,0x6c,0x04,0x00,0x20,0x28,0x20,0x00 -+// 44771 껣 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x0f,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x84,0x84,0xe4,0x04,0x04,0x48,0x24,0x24,0x24,0x24,0x24,0x00 -+// 44772 껤 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x00,0x88,0x88,0x98,0x14,0x26,0x42,0x00 -+// 44773 껥 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0x84,0x84,0xe4,0x04,0x04,0x78,0x40,0x28,0x20,0x00,0x3c,0x00 -+// 44774 껦 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x01,0x00,0x02,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0xa4,0x84,0xa4,0x24,0x04,0x04,0x6c,0x00,0x48,0x28,0x00,0xfc,0x00 -+// 44775 껧 ; -+,0x00,0x00,0x00,0x00,0x04,0x09,0x01,0x02,0x00,0x04,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0xe4,0x24,0x20,0x10,0x7e,0x10,0x24,0x04,0x38,0x00 -+// 44776 껨 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x10,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xe4,0x24,0x24,0x00,0x8c,0x04,0x00,0x08,0x78,0x00 -+// 44777 껩 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x00,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x00,0x0c,0x04,0xfc,0x04,0x0c,0x08,0x00 -+// 44778 껪 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x08,0x01,0x02,0x04,0x04,0x07,0x04,0x06,0x00,0x00,0x00,0x04,0x36,0xd4,0x54,0x94,0x94,0x14,0x10,0x8c,0x48,0xc8,0x54,0xd2,0x20,0x00 -+// 44779 껫 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0xa4,0xa4,0xa4,0x24,0x24,0x24,0x04,0x20,0x60,0x50,0x8c,0x04,0x00 -+// 44780 껬 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x12,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0x24,0xa4,0x24,0xe4,0x24,0x24,0x10,0x08,0x10,0x98,0x24,0x42,0x00 -+// 44781 껭 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x24,0x24,0x70,0x88,0x84,0x88,0x78,0x00 -+// 44782 껮 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x00,0x02,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0x24,0x24,0x0c,0x40,0x60,0x90,0x08,0x04,0x00 -+// 44783 껯 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x10,0x02,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0x84,0xa4,0xe4,0x04,0x04,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 44784 껰 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x24,0x00,0x0c,0x04,0xec,0x04,0x00,0x00 -+// 44785 껱 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x12,0x00,0x04,0x02,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x24,0xa4,0x84,0xa4,0x24,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44786 껲 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x10,0x02,0x04,0x00,0x01,0x00,0x00,0x0f,0x00,0x00,0x08,0x24,0x24,0x84,0x84,0xe4,0x04,0x04,0x04,0x10,0x18,0x90,0x90,0xde,0x00 -+// 44787 껳 ; -+,0x00,0x00,0x00,0x06,0x04,0x08,0x09,0x10,0x02,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0xa4,0x24,0x04,0x24,0x00,0xec,0x60,0x90,0x00,0xf0,0x00 -+// 44788 껴 ; -+,0x00,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x08,0x10,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xe4,0x44,0x7c,0x44,0x84,0x0c,0x04,0x04,0x04,0x04,0x04,0x00 -+// 44789 껵 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x08,0x11,0x02,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x6c,0x44,0x84,0x3c,0x04,0x00,0xdc,0x0c,0x0c,0x08,0x08,0x00 -+// 44790 껶 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x10,0x01,0x00,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x6c,0x44,0x84,0x3c,0x04,0x00,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 44791 껷 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x0d,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x68,0x88,0x88,0x78,0x08,0x10,0x08,0x10,0x18,0x24,0x42,0x00 -+// 44792 껸 ; -+,0x00,0x00,0x00,0x06,0x02,0x04,0x04,0x08,0x11,0x02,0x04,0x02,0x02,0x02,0x01,0x00,0x00,0x08,0x04,0x64,0x64,0x7c,0x84,0x84,0x3c,0x04,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 44793 껹 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x04,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x04,0xe4,0x6c,0x44,0x84,0x3c,0x04,0x04,0x90,0x10,0x38,0x24,0x42,0x00 -+// 44794 껺 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x08,0x11,0x02,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x0c,0xe0,0x68,0x48,0x80,0x38,0x00,0x20,0xfc,0x30,0x48,0x40,0x78,0x00 -+// 44795 껻 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xe8,0x68,0x88,0x88,0x78,0x08,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 44796 껼 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x07,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x08,0x08,0xc8,0x68,0x88,0x88,0x78,0x08,0xf8,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44797 껽 ; -+,0x00,0x00,0x00,0x0f,0x06,0x04,0x08,0x11,0x02,0x04,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x6c,0x44,0x84,0x3c,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44798 껾 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x0f,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x7c,0xc4,0x84,0x2c,0x00,0x6c,0x24,0x24,0x24,0x24,0x20,0x00 -+// 44799 껿 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x08,0x11,0x02,0x07,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x6c,0x44,0x84,0x3c,0x04,0x08,0x24,0x2c,0x24,0x24,0x28,0x00 -+// 44800 꼀 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x08,0x11,0x02,0x0c,0x00,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x04,0xe4,0x7c,0xc4,0x84,0x3c,0x04,0x10,0x98,0x10,0x18,0x24,0x42,0x00 -+// 44801 꼁 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x0f,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x04,0x64,0x7c,0x84,0x84,0x2c,0x04,0x6c,0x20,0x28,0x20,0x20,0x3c,0x00 -+// 44802 꼂 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x08,0x11,0x02,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x04,0xe4,0x7c,0x44,0x84,0x3c,0x04,0x0c,0x00,0x48,0x00,0x00,0xfc,0x00 -+// 44803 꼃 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x08,0xc8,0x78,0x88,0x88,0x78,0x08,0x38,0x06,0x10,0x2c,0x04,0x24,0x00 -+// 44804 꼄 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x6c,0x44,0x84,0x3c,0x04,0x00,0xfc,0x04,0x08,0x08,0x78,0x00 -+// 44805 꼅 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x08,0x01,0x06,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x64,0x44,0x84,0xbc,0x04,0x0c,0x04,0x0c,0x04,0x04,0xfc,0x00 -+// 44806 꼆 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0xe0,0x78,0x80,0x80,0x78,0x00,0x98,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 44807 꼇 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x10,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x64,0x44,0x84,0x8c,0x04,0x04,0x60,0x60,0x98,0x0c,0x00,0x00 -+// 44808 꼈 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x08,0x01,0x02,0x01,0x01,0x03,0x00,0x08,0x00,0x00,0x08,0x04,0xe4,0x64,0x7c,0xc4,0x84,0x3c,0x00,0x0c,0x08,0x88,0x54,0x22,0x00 -+// 44809 꼉 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x08,0x01,0x02,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0xc8,0x78,0x88,0x88,0x78,0x08,0x28,0x90,0x08,0x08,0x88,0xf0,0x00 -+// 44810 꼊 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x08,0xc8,0x68,0x88,0x88,0x78,0x08,0x00,0xfc,0x40,0xe0,0x18,0x04,0x00 -+// 44811 꼋 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x08,0x0c,0xe0,0x78,0x80,0x80,0x78,0x00,0xe0,0x00,0xe0,0xe0,0x98,0x04,0x00 -+// 44812 꼌 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x04,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x7c,0x44,0x84,0x3c,0x04,0x00,0x0c,0x0c,0xcc,0x04,0x00,0x00 -+// 44813 꼍 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x08,0x11,0x02,0x04,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x04,0xe4,0x7c,0x84,0x84,0x7c,0x04,0x00,0x00,0x00,0x78,0x00,0x3c,0x00 -+// 44814 꼎 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x08,0x11,0x02,0x04,0x04,0x00,0x01,0x01,0x0f,0x00,0x00,0x08,0x04,0xe4,0x7c,0x44,0x84,0x3c,0x04,0x00,0x00,0x10,0x10,0x00,0xfe,0x00 -+// 44815 꼏 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x01,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x7c,0x44,0x84,0x3c,0x04,0x00,0xfc,0x60,0x88,0x08,0xd0,0x00 -+// 44816 꼐 ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x54,0xd4,0xf4,0x94,0x14,0xf4,0x14,0x14,0x14,0x04,0x04,0x00 -+// 44817 꼑 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0xe4,0x24,0x00,0xec,0x04,0x04,0x04,0x00,0x00 -+// 44818 꼒 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x04,0xe4,0x04,0x00,0xbc,0x84,0x84,0x84,0x00,0x00 -+// 44819 꼓 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x04,0xe4,0x04,0x10,0x88,0x98,0x98,0x24,0x42,0x00 -+// 44820 꼔 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x01,0x02,0x04,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x34,0x14,0xd4,0xb4,0x94,0x34,0x14,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 44821 꼕 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xe4,0x24,0xe4,0x24,0x04,0x90,0x10,0x28,0x44,0x82,0x00 -+// 44822 꼖 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x14,0xe4,0xa4,0x04,0xe4,0x24,0x00,0xfe,0x10,0x44,0x44,0x38,0x00 -+// 44823 꼗 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x03,0x02,0x00,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xa4,0xe4,0x24,0xe4,0x24,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 44824 꼘 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0xe4,0x24,0xe4,0x24,0x00,0x0c,0x00,0x78,0x00,0xfe,0x00 -+// 44825 꼙 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x07,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x04,0xe4,0x04,0xbc,0x84,0x84,0x04,0x04,0x00,0x00 -+// 44826 꼚 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x09,0x11,0x02,0x04,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xe4,0x24,0xe4,0x24,0x6c,0x24,0x24,0x20,0x20,0x20,0x00 -+// 44827 꼛 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x0d,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x24,0xe4,0x24,0xc8,0x44,0x2c,0x04,0x04,0x28,0x00 -+// 44828 꼜 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x05,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0xe4,0x24,0xe4,0x24,0x98,0x88,0x98,0x14,0x26,0x42,0x00 -+// 44829 꼝 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0xe4,0x24,0x78,0x00,0x20,0x20,0x00,0x3c,0x00 -+// 44830 꼞 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x10,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x84,0xa4,0xa4,0x04,0xe4,0x04,0x6c,0x08,0x48,0x28,0x00,0x7c,0x00 -+// 44831 꼟 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x11,0x02,0x04,0x01,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xe4,0x24,0xe4,0x20,0x38,0x06,0x10,0x2c,0x04,0x24,0x00 -+// 44832 꼠 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0xe4,0x24,0xe4,0x24,0x00,0x0c,0x08,0x08,0x08,0x38,0x00 -+// 44833 꼡 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x13,0x00,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xe4,0xa4,0x24,0xe4,0x20,0x0c,0x04,0x0c,0x04,0x0c,0x08,0x00 -+// 44834 꼢 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0xe4,0x04,0x88,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 44835 꼣 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0xe4,0x24,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 44836 꼤 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x34,0xe4,0xa4,0x04,0xe4,0x04,0x08,0x88,0x08,0x94,0x26,0x42,0x00 -+// 44837 꼥 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0xf4,0x94,0xb4,0x14,0x04,0x34,0xc4,0x84,0x84,0x78,0x00 -+// 44838 꼦 ; -+,0x00,0x00,0x00,0x04,0x04,0x08,0x09,0x11,0x02,0x04,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x04,0xe4,0xa4,0x04,0xe4,0x04,0x04,0x40,0x60,0x90,0x08,0x04,0x00 -+// 44839 꼧 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x04,0x84,0xa4,0x04,0xe4,0x04,0xe0,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 44840 꼨 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x09,0x11,0x02,0x04,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0xe4,0xa4,0x04,0xe4,0x04,0x04,0x84,0x04,0xe4,0x04,0x04,0x00 -+// 44841 꼩 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x06,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x04,0xe4,0xa4,0x04,0xe4,0x04,0x08,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44842 꼪 ; -+,0x00,0x00,0x00,0x00,0x04,0x08,0x09,0x11,0x02,0x04,0x00,0x01,0x01,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0xe4,0x24,0x04,0x10,0x10,0x10,0x90,0xfe,0x00 -+// 44843 꼫 ; -+,0x00,0x00,0x00,0x16,0x04,0x09,0x01,0x02,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0x24,0xe4,0x24,0x00,0xfc,0x60,0x90,0x00,0xb0,0x00 -+// 44844 꼬 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x04,0x00,0x08,0xc8,0x40,0x40,0x40,0xfe,0x00,0x00,0x00 -+// 44845 꼭 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0xc8,0x40,0x42,0x00,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 44846 꼮 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x3c,0x00,0x08,0xc8,0x40,0xce,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00 -+// 44847 꼯 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x2c,0x00,0x08,0x48,0x40,0xce,0x00,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44848 꼰 ; -+,0x00,0x00,0x01,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x80,0x80,0xc6,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 44849 꼱 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x3c,0x08,0x08,0x48,0x40,0xce,0x00,0xfc,0x10,0x20,0x30,0x4c,0x84,0x00 -+// 44850 꼲 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xfe,0x00,0x30,0xf6,0x10,0x44,0x44,0x38,0x00 -+// 44851 꼳 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x3c,0x04,0x08,0xc8,0x40,0xc2,0x00,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 44852 꼴 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x00,0x03,0x00,0x07,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x3c,0x00,0x08,0xc8,0x40,0xff,0x00,0xf8,0x08,0x18,0x00,0x00,0xf8,0x00 -+// 44853 꼵 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x3f,0x00,0x09,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xff,0x00,0x38,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44854 꼶 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x0f,0x01,0x03,0x08,0x0d,0x04,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xfe,0x00,0x7c,0x44,0x44,0x40,0x6c,0x00,0x00 -+// 44855 꼷 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x0f,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xfe,0x00,0xc8,0x64,0x2c,0x04,0x24,0x24,0x00 -+// 44856 꼸 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x01,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xfe,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 44857 꼹 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x0f,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x00,0x2c,0x08,0x88,0x40,0x40,0x80,0x00,0x78,0x40,0x78,0x40,0x40,0x08,0x00 -+// 44858 꼺 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x09,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x2c,0x08,0x08,0xc8,0x40,0xfe,0x00,0x0c,0x00,0x48,0x28,0x00,0xe0,0x00 -+// 44859 꼻 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x08,0x05,0x04,0x00,0x00,0x00,0x3c,0x08,0x08,0x48,0x40,0xfe,0x30,0x00,0x70,0x38,0x44,0x44,0x38,0x00 -+// 44860 꼼 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x04,0x08,0xc8,0x40,0xc6,0x00,0x00,0xf8,0x18,0x10,0x10,0x00,0x00 -+// 44861 꼽 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x08,0x08,0x48,0x40,0xfe,0x00,0x18,0x08,0x18,0x08,0x10,0x00,0x00 -+// 44862 꼾 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x00,0x1f,0x00,0x01,0x0c,0x06,0x04,0x06,0x00,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xee,0x00,0x98,0x90,0x98,0xa4,0x84,0x00,0x00 -+// 44863 꼿 ; -+,0x00,0x00,0x0f,0x03,0x02,0x02,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x3c,0x04,0x08,0x88,0x40,0x40,0xef,0x00,0x80,0xc0,0x20,0x18,0x04,0x00 -+// 44864 꽀 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x1f,0x00,0x00,0x03,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xff,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 44865 꽁 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x00,0x1e,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x3c,0x04,0x08,0x88,0x40,0x40,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 44866 꽂 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x06,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x7c,0x04,0x08,0xc8,0x40,0xc2,0x00,0x00,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 44867 꽃 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xef,0x00,0xc0,0x00,0xc0,0xe0,0x18,0x0c,0x00 -+// 44868 꽄 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0xc8,0x40,0xcf,0x00,0x18,0x08,0x08,0x88,0x08,0x08,0x00 -+// 44869 꽅 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x00,0x00,0x07,0x04,0x06,0x04,0x04,0x01,0x00,0x00,0x00,0x3c,0x08,0x08,0xc8,0x40,0xdf,0x00,0xf8,0x00,0xf0,0x00,0x00,0xf8,0x00 -+// 44870 꽆 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x3f,0x00,0x00,0x00,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x2c,0x00,0x08,0x48,0x40,0xcf,0x00,0x18,0x20,0x10,0x00,0x20,0xac,0x00 -+// 44871 꽇 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x00,0x0f,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x3c,0x00,0x08,0xc8,0x40,0xff,0x00,0xc0,0xf8,0xc0,0x20,0x00,0xe0,0x00 -+// 44872 꽈 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x04,0x06,0x0a,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x48,0x48,0x48,0x48,0x0f,0x18,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 44873 꽉 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x0a,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0x18,0x08,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 44874 꽊 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x0a,0x00,0x07,0x00,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0x1e,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 44875 꽋 ; -+,0x00,0x00,0x00,0x1c,0x04,0x04,0x02,0x01,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0a,0x38,0x08,0x00,0x10,0x10,0x18,0x24,0x46,0x00 -+// 44876 꽌 ; -+,0x00,0x00,0x00,0x05,0x04,0x04,0x02,0x00,0x03,0x1e,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x48,0x0e,0x58,0x08,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 44877 꽍 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x02,0x00,0x07,0x10,0x18,0x08,0x08,0x08,0x0c,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0x1a,0x88,0x08,0xfc,0x30,0x30,0x48,0x84,0x00 -+// 44878 꽎 ; -+,0x00,0x00,0x00,0x15,0x04,0x02,0x01,0x01,0x1c,0x00,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x70,0x04,0xb0,0x58,0x08,0x58,0x00 -+// 44879 꽏 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x0a,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x10,0x18,0xc8,0x48,0x48,0x08,0x1e,0x88,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44880 꽐 ; -+,0x00,0x00,0x00,0x15,0x04,0x04,0x01,0x01,0x1f,0x00,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x08,0x18,0x08,0x00,0xd8,0x00,0x30,0x00,0xfc,0x00 -+// 44881 꽑 ; -+,0x00,0x00,0x00,0x1d,0x04,0x07,0x01,0x03,0x18,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44882 꽒 ; -+,0x00,0x00,0x00,0x1d,0x04,0x02,0x01,0x01,0x1c,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 44883 꽓 ; -+,0x00,0x00,0x00,0x15,0x04,0x02,0x01,0x01,0x1c,0x00,0x0f,0x00,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 44884 꽔 ; -+,0x00,0x00,0x00,0x1d,0x04,0x03,0x01,0x03,0x18,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x10,0x98,0x10,0x28,0x24,0x42,0x00 -+// 44885 꽕 ; -+,0x00,0x00,0x00,0x1d,0x04,0x06,0x01,0x01,0x3e,0x00,0x0f,0x01,0x1a,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x0a,0x58,0x08,0x00,0x78,0x40,0x60,0x40,0x7c,0x00 -+// 44886 꽖 ; -+,0x00,0x00,0x00,0x1d,0x04,0x02,0x01,0x01,0x1c,0x00,0x01,0x01,0x0e,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x08,0x00,0x48,0x48,0x10,0xfc,0x00 -+// 44887 꽗 ; -+,0x00,0x00,0x00,0x1d,0x04,0x02,0x01,0x01,0x3c,0x00,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x30,0x00,0x70,0x28,0x44,0x68,0x00 -+// 44888 꽘 ; -+,0x00,0x00,0x00,0x15,0x04,0x04,0x02,0x00,0x03,0x18,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x08,0x1e,0x88,0x00,0x00,0x18,0x10,0x10,0x30,0x00 -+// 44889 꽙 ; -+,0x00,0x00,0x00,0x1d,0x04,0x02,0x01,0x03,0x1c,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0f,0xc8,0x08,0x10,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44890 꽚 ; -+,0x00,0x00,0x00,0x15,0x04,0x02,0x01,0x01,0x1c,0x00,0x08,0x0d,0x00,0x05,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x10,0x98,0x90,0x88,0xa4,0xc0,0x00 -+// 44891 꽛 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x08,0x38,0x88,0x08,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 44892 꽜 ; -+,0x00,0x00,0x00,0x15,0x04,0x02,0x01,0x01,0x1c,0x00,0x03,0x03,0x06,0x04,0x10,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0x00,0x18,0x10,0xa8,0x64,0x00,0x00 -+// 44893 꽝 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x03,0x00,0x03,0x18,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xe8,0x48,0x48,0x48,0x1e,0x88,0x08,0x60,0x90,0x08,0x08,0xf0,0x00 -+// 44894 꽞 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0x38,0x08,0x00,0x0c,0x40,0x40,0x90,0x08,0x00 -+// 44895 꽟 ; -+,0x00,0x00,0x00,0x15,0x04,0x02,0x01,0x01,0x1e,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0xe8,0x48,0x48,0x0f,0xc8,0x08,0x80,0x00,0xf8,0x40,0x90,0x0c,0x00 -+// 44896 꽠 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x02,0x00,0x07,0x10,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x48,0x1e,0x88,0x00,0x18,0x08,0x18,0x08,0x08,0x00 -+// 44897 꽡 ; -+,0x00,0x00,0x00,0x1d,0x04,0x02,0x01,0x03,0x1c,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x1f,0xc8,0x08,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 44898 꽢 ; -+,0x00,0x00,0x00,0x15,0x04,0x04,0x03,0x01,0x1f,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0xe8,0x48,0x48,0x08,0x18,0x88,0x00,0xf8,0x30,0x10,0x00,0xfc,0x00 -+// 44899 꽣 ; -+,0x00,0x00,0x00,0x1d,0x04,0x07,0x01,0x01,0x1c,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0f,0xc8,0x08,0xe0,0x0c,0x60,0x90,0x10,0xf0,0x00 -+// 44900 꽤 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x0e,0x02,0x02,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x14,0x14,0x34,0x14,0x14,0x14,0x14,0x04,0x00 -+// 44901 꽥 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x0a,0x02,0x07,0x10,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xd4,0x94,0x94,0x94,0x34,0x14,0x00,0x00,0xcc,0x04,0x04,0x04,0x00 -+// 44902 꽦 ; -+,0x00,0x00,0x00,0x05,0x04,0x04,0x02,0x02,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0xd2,0x52,0x12,0x9e,0x10,0x10,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 44903 꽧 ; -+,0x00,0x00,0x00,0x05,0x0c,0x08,0x0a,0x02,0x1f,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xd4,0x94,0x94,0x9c,0x34,0x14,0x00,0x18,0x88,0x98,0x94,0xa2,0x00 -+// 44904 꽨 ; -+,0x00,0x00,0x00,0x00,0x1d,0x00,0x08,0x02,0x02,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0xd4,0x94,0x94,0x1c,0x74,0x14,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 44905 꽩 ; -+,0x00,0x00,0x00,0x05,0x04,0x08,0x0a,0x02,0x1e,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x0c,0x24,0xd4,0x94,0x94,0x94,0x74,0x14,0x00,0xfc,0x10,0x18,0x24,0xc2,0x00 -+// 44906 꽪 ; -+,0x00,0x00,0x00,0x0f,0x0c,0x08,0x0a,0x02,0x1f,0x00,0x08,0x0c,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0xd4,0x94,0x94,0x94,0x34,0x14,0x10,0x00,0xfe,0x38,0x44,0x44,0x00 -+// 44907 꽫 ; -+,0x00,0x00,0x00,0x0f,0x0c,0x08,0x0a,0x02,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x0c,0x24,0xd4,0x94,0x94,0x9c,0x34,0x14,0x00,0x00,0x00,0x00,0x00,0x1e,0x00 -+// 44908 꽬 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x02,0x07,0x10,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x34,0x94,0x00,0xcc,0x04,0xfc,0x00,0xfe,0x00 -+// 44909 꽭 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0a,0x02,0x1f,0x00,0x0f,0x00,0x0f,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x3c,0x24,0x24,0x00,0xbc,0x84,0x84,0x04,0x00,0x00 -+// 44910 꽮 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x0e,0x02,0x07,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x1c,0x24,0x04,0x00,0xec,0x24,0x24,0x20,0x38,0x00 -+// 44911 꽯 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x0e,0x02,0x0f,0x00,0x0f,0x01,0x0f,0x00,0x05,0x00,0x00,0x0c,0x24,0xd4,0x94,0x94,0x9c,0x34,0x14,0x00,0xc4,0x24,0x24,0x24,0x34,0x00 -+// 44912 꽰 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x06,0x02,0x3e,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x08,0x6c,0xa4,0xa4,0xa4,0x3c,0x24,0x20,0x10,0x90,0x10,0x28,0x04,0x42,0x00 -+// 44913 꽱 ; -+,0x00,0x00,0x00,0x1d,0x04,0x08,0x0a,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x07,0x00,0x00,0x0c,0x24,0xc4,0x84,0x84,0x14,0x24,0x04,0x00,0x7c,0x00,0x38,0x00,0x3c,0x00 -+// 44914 꽲 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x06,0x02,0x1e,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x3c,0x24,0x20,0x00,0x10,0x48,0x40,0x10,0xfc,0x00 -+// 44915 꽳 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x0e,0x02,0x1e,0x00,0x0f,0x01,0x0f,0x04,0x06,0x00,0x00,0x08,0x24,0xe4,0xa4,0xa4,0x3c,0x24,0x24,0x30,0x00,0x70,0x28,0x44,0x28,0x00 -+// 44916 꽴 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x0e,0x02,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xbc,0x24,0x24,0x00,0x8c,0x04,0x04,0x00,0xfc,0x00 -+// 44917 꽵 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x02,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x3c,0x24,0x24,0x00,0x0c,0xfc,0x04,0x04,0x8c,0x00 -+// 44918 꽶 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x06,0x02,0x07,0x10,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x68,0xa0,0xa0,0xa0,0x28,0x20,0x20,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 44919 꽷 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x02,0x07,0x18,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xac,0x24,0x24,0x04,0x40,0x40,0xa0,0x18,0x04,0x00 -+// 44920 꽸 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x02,0x07,0x10,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xbc,0x24,0x24,0x00,0x18,0x08,0x18,0xa4,0x22,0x00 -+// 44921 꽹 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x02,0x03,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xb4,0x24,0xa4,0x04,0x30,0x88,0x84,0x80,0xc8,0x00 -+// 44922 꽺 ; -+,0x00,0x00,0x00,0x00,0x14,0x04,0x06,0x02,0x03,0x18,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0x34,0x84,0x00,0x00,0xe0,0x40,0x90,0x0c,0x00 -+// 44923 꽻 ; -+,0x00,0x00,0x00,0x1f,0x00,0x08,0x02,0x02,0x1e,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0xe4,0xa4,0xa4,0x3c,0x24,0x24,0xe0,0x00,0xe0,0x40,0x98,0x04,0x00 -+// 44924 꽼 ; -+,0x00,0x00,0x00,0x07,0x0c,0x08,0x0a,0x02,0x1f,0x00,0x07,0x00,0x00,0x07,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xbc,0x64,0x24,0x00,0xcc,0x04,0x0c,0x04,0x00,0x00 -+// 44925 꽽 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x06,0x02,0x0f,0x00,0x00,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x64,0xa4,0xa4,0xa4,0x2c,0x24,0x24,0x00,0x38,0x00,0x18,0x00,0xfc,0x00 -+// 44926 꽾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x08,0x0a,0x02,0x3e,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x00,0x08,0x64,0xa4,0xa4,0xa4,0x3c,0x64,0x24,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 44927 꽿 ; -+,0x00,0x00,0x00,0x05,0x00,0x08,0x0a,0x02,0x1f,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x0c,0x24,0xd4,0x84,0x84,0x14,0x24,0x04,0x00,0x00,0xfc,0xf0,0x08,0x90,0x00 -+// 44928 꾀 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x04,0x07,0x01,0x01,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x04,0x04,0x04,0x0c,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 44929 꾁 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x24,0x04,0x04,0x2c,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44930 꾂 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x04,0x2c,0x04,0x00,0x78,0x88,0x88,0x88,0x08,0x00 -+// 44931 꾃 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xe4,0x24,0x04,0x44,0x2c,0x04,0x00,0x18,0x88,0x98,0xa4,0x42,0x00 -+// 44932 꾄 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0a,0x01,0x01,0x1e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x18,0x0c,0xe4,0x44,0x44,0x44,0x0c,0x7c,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 44933 꾅 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x05,0x01,0x1f,0x00,0x08,0x04,0x04,0x05,0x06,0x00,0x00,0x00,0x0c,0xe4,0x24,0x04,0x44,0x0c,0x84,0x00,0xfc,0x10,0x30,0x2c,0xc4,0x00 -+// 44934 꾆 ; -+,0x00,0x00,0x00,0x1c,0x04,0x07,0x01,0x01,0x1e,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x08,0x0c,0x28,0x08,0x48,0x08,0xe8,0x00,0x70,0x04,0xb0,0x78,0x48,0x48,0x00 -+// 44935 꾇 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x01,0x01,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x18,0x08,0xe8,0x08,0x48,0x48,0x28,0x08,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 44936 꾈 ; -+,0x00,0x00,0x00,0x1c,0x04,0x06,0x01,0x01,0x1e,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x18,0x08,0x68,0x48,0x48,0x08,0xe8,0x00,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 44937 꾉 ; -+,0x00,0x00,0x00,0x1c,0x04,0x07,0x01,0x01,0x1c,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x0c,0x68,0x48,0x48,0x08,0xc8,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44938 꾊 ; -+,0x00,0x00,0x00,0x1e,0x04,0x07,0x01,0x01,0x1e,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x0c,0x64,0x00,0x00,0x6c,0x20,0x20,0x28,0x20,0x00 -+// 44939 꾋 ; -+,0x00,0x00,0x00,0x1e,0x04,0x07,0x01,0x01,0x1c,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x18,0x08,0x68,0x48,0x48,0x08,0xc8,0x00,0x18,0x48,0x48,0x48,0x48,0x48,0x00 -+// 44940 꾌 ; -+,0x00,0x00,0x00,0x1c,0x04,0x07,0x01,0x03,0x18,0x00,0x00,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0x08,0xc8,0x00,0x10,0x90,0x10,0x28,0x24,0x42,0x00 -+// 44941 꾍 ; -+,0x00,0x00,0x00,0x14,0x04,0x06,0x01,0x01,0x1e,0x00,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x18,0x08,0x68,0x48,0x48,0x08,0x68,0x08,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 44942 꾎 ; -+,0x00,0x00,0x00,0x04,0x04,0x07,0x01,0x03,0x08,0x0f,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0x04,0x44,0x0c,0xc0,0x00,0x48,0x00,0x48,0x40,0x00,0xfc,0x00 -+// 44943 꾏 ; -+,0x00,0x00,0x00,0x1e,0x04,0x07,0x01,0x01,0x1e,0x00,0x0f,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x0c,0xe4,0x04,0x44,0x0c,0x68,0x00,0x30,0x00,0x70,0x38,0x44,0x24,0x00 -+// 44944 꾐 ; -+,0x00,0x00,0x00,0x1c,0x04,0x04,0x01,0x01,0x1e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0xe4,0x04,0x44,0x44,0x68,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x00 -+// 44945 꾑 ; -+,0x00,0x00,0x00,0x1d,0x04,0x06,0x01,0x01,0x1e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xe8,0x08,0x48,0x08,0x68,0x00,0x18,0x08,0xf8,0x08,0x08,0xf8,0x00 -+// 44946 꾒 ; -+,0x00,0x00,0x00,0x1e,0x04,0x07,0x01,0x01,0x1c,0x00,0x08,0x05,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0x0c,0xe8,0x00,0x10,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 44947 꾓 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x01,0x01,0x07,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0xe4,0x24,0x44,0x44,0x1c,0x84,0x04,0x60,0x60,0x90,0x08,0x04,0x00 -+// 44948 꾔 ; -+,0x00,0x00,0x00,0x1f,0x04,0x06,0x01,0x01,0x1e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0xe8,0x08,0x48,0x08,0xe8,0x00,0x00,0x08,0x18,0x98,0x24,0x42,0x00 -+// 44949 꾕 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x07,0x01,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x24,0x04,0x44,0x0c,0xc4,0x04,0x30,0x88,0x80,0x88,0x78,0x00 -+// 44950 꾖 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x0c,0xe4,0x24,0x04,0x44,0x0c,0x84,0x00,0x00,0xe0,0x60,0x90,0x0c,0x00 -+// 44951 꾗 ; -+,0x00,0x00,0x00,0x1f,0x04,0x07,0x01,0x01,0x1e,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x08,0x0c,0xe4,0x04,0x44,0x0c,0x64,0x00,0xe0,0x04,0xc0,0x60,0x98,0x04,0x00 -+// 44952 꾘 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x04,0x0c,0x04,0x00,0x08,0x0c,0x3c,0x00,0x00,0x00 -+// 44953 꾙 ; -+,0x00,0x00,0x00,0x1f,0x04,0x06,0x01,0x01,0x1e,0x00,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xe8,0x08,0x48,0x08,0x48,0x00,0x00,0x78,0x00,0xf8,0x00,0xfc,0x00 -+// 44954 꾚 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x01,0x01,0x1e,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x04,0x6c,0x04,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 44955 꾛 ; -+,0x00,0x00,0x00,0x1c,0x04,0x07,0x01,0x03,0x1c,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x18,0x08,0xe8,0x48,0x48,0x08,0xc8,0x00,0xe0,0x04,0x60,0x90,0x10,0xb0,0x00 -+// 44956 꾜 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x02,0x02,0x03,0x05,0x01,0x01,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x04,0x04,0x40,0x28,0x28,0x20,0x20,0xff,0x00,0x00,0x00 -+// 44957 꾝 ; -+,0x00,0x00,0x1e,0x02,0x02,0x02,0x05,0x01,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x08,0x08,0x60,0x20,0x20,0x80,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 44958 꾞 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x01,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x7c,0x08,0x08,0x28,0x20,0x2f,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44959 꾟 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x3c,0x08,0x08,0x28,0x20,0x6f,0x00,0x20,0x10,0x30,0x38,0x4c,0x84,0x00 -+// 44960 꾠 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x03,0x01,0x01,0x00,0x04,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0x28,0x28,0x20,0xbe,0x00,0x00,0x00,0x00,0xf8,0x00,0x00 -+// 44961 꾡 ; -+,0x00,0x00,0x1e,0x02,0x02,0x06,0x00,0x03,0x00,0x00,0x18,0x08,0x08,0x0a,0x08,0x00,0x00,0x00,0x78,0x08,0x08,0x40,0x00,0x66,0x00,0x08,0xa0,0x20,0x60,0x48,0x84,0x00 -+// 44962 꾢 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x03,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x7c,0x08,0x08,0x20,0x20,0x6f,0x00,0x00,0xfe,0x30,0x48,0x44,0x38,0x00 -+// 44963 꾣 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x1e,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x7c,0x08,0x08,0x68,0x20,0x20,0x00,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 44964 꾤 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x00,0x07,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x7c,0x08,0x08,0x68,0x20,0x27,0x00,0xf0,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 44965 꾥 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x03,0x00,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x7c,0x08,0x08,0x60,0x20,0x6f,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44966 꾦 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x7c,0x08,0x08,0x68,0x20,0x27,0x00,0x00,0x4c,0x40,0x48,0x48,0x40,0x00 -+// 44967 꾧 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x1f,0x00,0x0f,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x7c,0x08,0x08,0x20,0x20,0xff,0x00,0x48,0x44,0x6c,0x44,0x4c,0x48,0x00 -+// 44968 꾨 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x00,0x01,0x01,0x01,0x08,0x08,0x04,0x00,0x00,0x00,0x3c,0x08,0x08,0x20,0x20,0x2f,0x00,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 44969 꾩 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x3f,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x2c,0x08,0x48,0x20,0x20,0xff,0x00,0x58,0x40,0x68,0x40,0x40,0x3c,0x00 -+// 44970 꾪 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x1f,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x7c,0x08,0x08,0x20,0x20,0xff,0x00,0x08,0x00,0x48,0x48,0x00,0xf4,0x00 -+// 44971 꾫 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x1f,0x00,0x0f,0x01,0x0b,0x08,0x09,0x00,0x00,0x00,0x00,0x3c,0x08,0x08,0x20,0x20,0xfe,0x00,0x00,0xf4,0x30,0x48,0x40,0x78,0x00 -+// 44972 꾬 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x10,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x7c,0x08,0x08,0x68,0x20,0x22,0x00,0x00,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 44973 꾭 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x00,0x04,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x7c,0x08,0x08,0x60,0x20,0x27,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 44974 꾮 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x03,0x00,0x01,0x08,0x05,0x00,0x05,0x00,0x00,0x00,0x00,0x3c,0x08,0x08,0x28,0x20,0x7f,0x00,0x18,0x90,0x90,0xa8,0xa4,0x40,0x00 -+// 44975 꾯 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x1f,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x7c,0x08,0x08,0x68,0x20,0x20,0xfe,0x00,0x80,0xc0,0x20,0x18,0x00,0x00 -+// 44976 꾰 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x1f,0x00,0x00,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x7c,0x08,0x48,0x20,0x20,0x6f,0x00,0x10,0x10,0x30,0xa8,0xc4,0x80,0x00 -+// 44977 꾱 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x01,0x1e,0x00,0x01,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x7c,0x08,0x08,0x28,0x20,0x20,0x00,0x80,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 44978 꾲 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x04,0x00,0x01,0x06,0x08,0x00,0x00,0x00,0x7c,0x08,0x08,0x28,0x20,0x23,0x00,0x08,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 44979 꾳 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x01,0x03,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x7c,0x08,0x08,0x28,0x20,0x2f,0x00,0xc0,0x00,0xf8,0xc0,0x30,0x0c,0x00 -+// 44980 꾴 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x1f,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x7c,0x08,0x08,0x28,0x20,0xff,0x00,0x08,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 44981 꾵 ; -+,0x00,0x00,0x03,0x02,0x02,0x02,0x01,0x01,0x10,0x04,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x7c,0x08,0x08,0x68,0x20,0x22,0x00,0x30,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 44982 꾶 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x03,0x00,0x00,0x0c,0x02,0x02,0x01,0x0f,0x00,0x00,0x00,0x7c,0x08,0x08,0x28,0x20,0x2f,0x00,0x00,0x20,0x30,0x20,0x20,0xfc,0x00 -+// 44983 꾷 ; -+,0x00,0x00,0x0f,0x02,0x02,0x03,0x01,0x1f,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x7c,0x08,0x08,0x20,0x20,0xff,0x00,0x80,0xd8,0xc0,0x20,0x20,0x60,0x00 -+// 44984 꾸 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x08,0x1f,0xc0,0x40,0x40,0x40,0x40,0x40,0x00,0x00 -+// 44985 꾹 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x1f,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x00,0x08,0x08,0xff,0x80,0x80,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 44986 꾺 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x00,0x00,0x00,0x0d,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x1f,0x80,0x80,0x00,0xac,0x08,0x08,0x00,0x00,0x00 -+// 44987 꾻 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x1f,0x00,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xff,0x80,0x80,0x30,0x10,0x10,0x28,0x44,0x84,0x00 -+// 44988 꾼 ; -+,0x00,0x00,0x0f,0x01,0x01,0x02,0x02,0x1f,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x3c,0x08,0x08,0x08,0x00,0xc0,0xc0,0xc0,0xc0,0x00,0x00,0x00,0xf8,0x00 -+// 44989 꾽 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x1f,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x2c,0x08,0x08,0x08,0x9f,0x80,0x80,0x8c,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 44990 꾾 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xff,0x40,0x40,0x00,0xfe,0x38,0x44,0x44,0x38,0x00 -+// 44991 꾿 ; -+,0x00,0x00,0x0f,0x03,0x02,0x02,0x02,0x18,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x7c,0x04,0x08,0x08,0x0a,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 44992 꿀 ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x02,0x18,0x00,0x04,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x04,0x00,0x08,0x08,0xc0,0x00,0xf0,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 44993 꿁 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x00,0x00,0x0b,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x3c,0x00,0x08,0x08,0xff,0x80,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 44994 꿂 ; -+,0x00,0x00,0x07,0x01,0x01,0x00,0x02,0x00,0x00,0x0f,0x01,0x0b,0x08,0x0c,0x04,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0e,0xc0,0x00,0x4c,0x44,0x40,0x40,0x68,0x00,0x00 -+// 44995 꿃 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x03,0x00,0x00,0x0b,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x3c,0x08,0x08,0x08,0xff,0x80,0x00,0x48,0x44,0x6c,0x44,0x44,0x68,0x00 -+// 44996 꿄 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x03,0x00,0x00,0x0f,0x01,0x01,0x08,0x05,0x04,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x7e,0xc0,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 44997 꿅 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x03,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x3c,0x08,0x08,0x08,0xdf,0x80,0x80,0x78,0x40,0x78,0x40,0x40,0x00,0x00 -+// 44998 꿆 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x1f,0x00,0x00,0x0b,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x3c,0x08,0x08,0x08,0xff,0x80,0x00,0x4c,0x00,0x48,0x28,0x00,0xfc,0x00 -+// 44999 꿇 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x00,0x00,0x0f,0x01,0x0b,0x08,0x0d,0x04,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0e,0xc0,0xf0,0x00,0x70,0x38,0x44,0x44,0x38,0x00 -+// 45000 꿈 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x00,0x08,0x08,0x1f,0x80,0x80,0x00,0xf8,0x18,0x10,0x10,0x00,0x00 -+// 45001 꿉 ; -+,0x00,0x00,0x0f,0x01,0x01,0x02,0x1f,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xfe,0x80,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 45002 꿊 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x00,0x00,0x01,0x0c,0x05,0x04,0x04,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0a,0xc0,0x00,0x98,0x90,0x90,0xac,0xa4,0x40,0x00 -+// 45003 꿋 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x1e,0x80,0x80,0x80,0x80,0xc0,0x20,0x18,0x00,0x00 -+// 45004 꿌 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x00,0x00,0x02,0x03,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x1e,0x80,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 45005 꿍 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x7c,0x08,0x08,0x08,0x1e,0x80,0x80,0x80,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 45006 꿎 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x0c,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0x3c,0x08,0x08,0x08,0x1e,0x80,0x80,0x80,0x80,0xc0,0x20,0x18,0x08,0x00 -+// 45007 꿏 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x00,0x00,0x01,0x00,0x0f,0x00,0x03,0x04,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xdf,0x80,0x80,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 45008 꿐 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x06,0x00,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x08,0x08,0x9e,0x80,0x80,0x88,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 45009 꿑 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x00,0x00,0x06,0x04,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0x3c,0x00,0x08,0x08,0x0e,0x40,0x00,0xf0,0x00,0x30,0x00,0x00,0xf8,0x00 -+// 45010 꿒 ; -+,0x00,0x00,0x0f,0x02,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x2c,0x00,0x08,0x08,0xfe,0x80,0x80,0xb8,0x20,0x10,0x20,0x20,0xfc,0x00 -+// 45011 꿓 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x3c,0x00,0x08,0x08,0xde,0x80,0x80,0x00,0xf8,0xc0,0x20,0x20,0xe0,0x00 -+// 45012 꿔 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xc4,0x44,0x44,0x44,0xc4,0x04,0x0c,0x2c,0x04,0x04,0x04,0x04,0x00 -+// 45013 꿕 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xe0,0x40,0x40,0x40,0x08,0x38,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 45014 꿖 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x05,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x08,0x08,0x00,0x38,0x88,0x88,0x08,0x08,0x00 -+// 45015 꿗 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x1f,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0x98,0x90,0x98,0x24,0x42,0x00 -+// 45016 꿘 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x04,0x1f,0x01,0x00,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x24,0x44,0x44,0x84,0x0c,0x0c,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 45017 꿙 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x05,0x19,0x00,0x00,0x0c,0x04,0x04,0x07,0x04,0x00,0x00,0x08,0x04,0xe0,0x40,0x40,0x40,0x08,0x00,0x04,0x10,0x10,0x28,0x44,0x86,0x00 -+// 45018 꿚 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x1f,0x01,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x08,0xe8,0x08,0x48,0xc8,0x08,0x08,0x30,0x04,0xb0,0x48,0x48,0x78,0x00 -+// 45019 꿛 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x19,0x01,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xc4,0x0c,0x0c,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 45020 꿜 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x19,0x01,0x03,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x0c,0xe0,0x00,0x40,0xc0,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 45021 꿝 ; -+,0x00,0x00,0x00,0x0e,0x02,0x04,0x04,0x1d,0x01,0x01,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x24,0x44,0x44,0x0c,0x0c,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 45022 꿞 ; -+,0x00,0x00,0x00,0x02,0x02,0x00,0x07,0x09,0x01,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x24,0x44,0x84,0x1c,0x04,0x00,0x24,0x24,0x20,0x28,0x20,0x00 -+// 45023 꿟 ; -+,0x00,0x00,0x00,0x02,0x00,0x04,0x05,0x01,0x01,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0x24,0x44,0x04,0x1c,0x04,0x08,0x4c,0x2c,0x04,0x04,0x28,0x00 -+// 45024 꿠 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x05,0x19,0x00,0x00,0x01,0x00,0x0c,0x00,0x06,0x00,0x00,0x08,0x08,0xe8,0x08,0x48,0xc8,0x08,0x08,0x10,0x98,0x90,0x28,0x24,0x42,0x00 -+// 45025 꿡 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x07,0x19,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x08,0xe8,0x08,0x48,0xc8,0x18,0x08,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 45026 꿢 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x07,0x19,0x01,0x0f,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x08,0x0c,0xe0,0x00,0x40,0x40,0x38,0x00,0x08,0x00,0x48,0x40,0x10,0xf4,0x00 -+// 45027 꿣 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x19,0x01,0x00,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x0c,0xe0,0x00,0x40,0x40,0x08,0x08,0x38,0x00,0x50,0x2c,0x44,0x2c,0x00 -+// 45028 꿤 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1b,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xe0,0x40,0x40,0xc0,0x08,0x08,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 45029 꿥 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x05,0x1b,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45030 꿦 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x19,0x01,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0xe0,0x00,0x40,0xc0,0x08,0x08,0x18,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 45031 꿧 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0x44,0x0c,0x08,0x00,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 45032 꿨 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x1f,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0x08,0x18,0x98,0x24,0x40,0x00 -+// 45033 꿩 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0x44,0x0c,0x0c,0x20,0x70,0x88,0x08,0x88,0xf0,0x00 -+// 45034 꿪 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x1a,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0x1c,0x40,0x60,0x98,0x04,0x00 -+// 45035 꿫 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x07,0x02,0x02,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x08,0x0c,0x24,0x04,0x44,0x84,0x18,0x08,0xe0,0x00,0xc0,0x60,0x98,0x04,0x00 -+// 45036 꿬 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x1a,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x08,0x08,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 45037 꿭 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x1f,0x00,0x00,0x02,0x02,0x03,0x02,0x01,0x00,0x00,0x18,0x08,0xe8,0x08,0x48,0xc8,0x08,0x08,0x00,0x18,0x00,0x78,0x00,0xfc,0x00 -+// 45038 꿮 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x1a,0x00,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0xf8,0x10,0x10,0x10,0xfc,0x00 -+// 45039 꿯 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1e,0x02,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x44,0xc4,0x0c,0x0c,0xe0,0x00,0x60,0x90,0x08,0x90,0x00 -+// 45040 꿰 ; -+,0x00,0x00,0x00,0x00,0x1d,0x00,0x08,0x09,0x1c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0xa4,0xa4,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 45041 꿱 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x01,0x1e,0x02,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x14,0xe4,0x00,0x00,0x0c,0x04,0x04,0x04,0x00 -+// 45042 꿲 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x1e,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x34,0x84,0x84,0x84,0x24,0x24,0x00,0xbc,0x84,0x84,0x84,0x00,0x00 -+// 45043 꿳 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x01,0x1e,0x02,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0xa4,0x24,0xe4,0x00,0x10,0x98,0x18,0x24,0x42,0x00 -+// 45044 꿴 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x08,0x0b,0x16,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0xa4,0xa4,0x24,0x24,0x24,0xe4,0x20,0x00,0x00,0x00,0xfc,0x00 -+// 45045 꿵 ; -+,0x00,0x00,0x00,0x00,0x1d,0x00,0x01,0x1e,0x02,0x00,0x18,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0xe4,0x00,0xfc,0x10,0x30,0x4c,0x84,0x00 -+// 45046 꿶 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0b,0x12,0x02,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x08,0x24,0x34,0x94,0x14,0x14,0x24,0x24,0x20,0x00,0xfc,0x38,0x44,0x48,0x00 -+// 45047 꿷 ; -+,0x00,0x00,0x00,0x00,0x1d,0x00,0x01,0x3e,0x02,0x00,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0xa4,0x24,0xe4,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 45048 꿸 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x09,0x1e,0x00,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x24,0x24,0xa4,0x00,0xe8,0x08,0xf8,0x00,0xfe,0x00 -+// 45049 꿹 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x0f,0x02,0x02,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x14,0xf4,0x04,0x00,0xbc,0x04,0x04,0x04,0x04,0x00 -+// 45050 꿺 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x09,0x1e,0x02,0x00,0x0f,0x00,0x0f,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0x34,0x34,0x00,0xec,0x24,0x24,0x24,0x20,0x00 -+// 45051 꿻 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0f,0x02,0x02,0x00,0x05,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x24,0x04,0x84,0x04,0x04,0xe4,0x04,0x08,0x64,0x3c,0x24,0x24,0x2c,0x00 -+// 45052 꿼 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x0b,0x1e,0x02,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x10,0x98,0x10,0x08,0x24,0x42,0x00 -+// 45053 꿽 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x1e,0x02,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x34,0x34,0x00,0x78,0x00,0x38,0x00,0x3c,0x00 -+// 45054 꿾 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0f,0x02,0x02,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x24,0x04,0x00,0x50,0x48,0x28,0x00,0xfc,0x00 -+// 45055 꿿 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x1a,0x02,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x34,0x14,0x30,0x00,0x70,0x38,0x04,0x2c,0x00 -+// 45056 뀀 ; -+,0x00,0x00,0x00,0x00,0x1c,0x04,0x00,0x1e,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0x14,0xf4,0x00,0x0c,0x04,0x00,0x08,0x00,0x00 -+// 45057 뀁 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0b,0x12,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x00,0x0c,0x8c,0x04,0x04,0xfc,0x00 -+// 45058 뀂 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x0b,0x12,0x02,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0x84,0x04,0x04,0x24,0x24,0x10,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 45059 뀃 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x01,0x1e,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0xe4,0x04,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 45060 뀄 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x0b,0x12,0x02,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x00,0x08,0x18,0x98,0x24,0x42,0x00 -+// 45061 뀅 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x01,0x3e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x24,0xe4,0x24,0x30,0x88,0x08,0x88,0xf0,0x00 -+// 45062 뀆 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x1e,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x34,0x84,0x84,0x84,0x24,0xe4,0x00,0x0c,0x40,0xc0,0x90,0x0c,0x00 -+// 45063 뀇 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0b,0x12,0x02,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x08,0x24,0x14,0x84,0x04,0x04,0x24,0x04,0xe0,0x04,0xe0,0x60,0x98,0x04,0x00 -+// 45064 뀈 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x01,0x1e,0x02,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x08,0x24,0x34,0x84,0x84,0x84,0x04,0xe4,0x00,0x0c,0x04,0x1c,0x04,0x04,0x00 -+// 45065 뀉 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x0b,0x02,0x02,0x00,0x03,0x02,0x01,0x00,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0x04,0x00,0x78,0x00,0xf8,0x00,0xfc,0x00 -+// 45066 뀊 ; -+,0x00,0x00,0x00,0x00,0x1d,0x00,0x09,0x1e,0x02,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0x24,0xe4,0x00,0xf8,0x10,0x10,0x10,0xfc,0x00 -+// 45067 뀋 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0x24,0xe4,0x00,0xe0,0x04,0xe0,0x10,0x10,0xe0,0x00 -+// 45068 뀌 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x04,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0x48,0x48,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45069 뀍 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0x4c,0x6c,0x04,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45070 뀎 ; -+,0x00,0x00,0x00,0x1c,0x04,0x04,0x05,0x1f,0x01,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0x38,0x08,0x08,0x08,0x08,0x00 -+// 45071 뀏 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x68,0x48,0x48,0xe8,0x08,0x08,0x00,0x18,0x98,0x98,0xa4,0x42,0x00 -+// 45072 뀐 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x19,0x00,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x68,0x28,0x48,0x48,0xc8,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 45073 뀑 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x04,0x1d,0x01,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0xf0,0x10,0x30,0x4c,0x84,0x00 -+// 45074 뀒 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x70,0x0c,0x20,0x48,0x08,0x78,0x00 -+// 45075 뀓 ; -+,0x00,0x00,0x00,0x1d,0x04,0x04,0x00,0x1f,0x01,0x00,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xe8,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 45076 뀔 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x03,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0x48,0x08,0x08,0x38,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 45077 뀕 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x04,0x1f,0x01,0x01,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x18,0x08,0xe8,0x48,0x48,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45078 뀖 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0x48,0x48,0x48,0x48,0x00,0x00 -+// 45079 뀗 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x08,0xe8,0x08,0x48,0xc8,0x08,0x08,0x10,0x48,0x78,0x48,0x48,0x48,0x00 -+// 45080 뀘 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x1f,0x01,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x08,0xe8,0x08,0x48,0x68,0x08,0x00,0x10,0x98,0x90,0x18,0x24,0x42,0x00 -+// 45081 뀙 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x1d,0x01,0x01,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x08,0xe8,0x08,0x48,0xc8,0x08,0x00,0x00,0x60,0x20,0x20,0x00,0x3c,0x00 -+// 45082 뀚 ; -+,0x00,0x00,0x00,0x0e,0x02,0x00,0x04,0x1f,0x01,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x08,0xe8,0x28,0x48,0x68,0x08,0x00,0x08,0x00,0x48,0x40,0x10,0xfc,0x00 -+// 45083 뀛 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x18,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x30,0x00,0x10,0x08,0x44,0x38,0x00 -+// 45084 뀜 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0x68,0x08,0x08,0x00,0xf8,0x08,0x08,0x08,0x00,0x00 -+// 45085 뀝 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x04,0x3f,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0x68,0x48,0x48,0xc8,0x08,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45086 뀞 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1d,0x01,0x01,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x00,0x10,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 45087 뀟 ; -+,0x00,0x00,0x00,0x0e,0x02,0x04,0x04,0x1f,0x01,0x01,0x01,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x04,0x44,0x7c,0x04,0x04,0x04,0x20,0x60,0x50,0x88,0x04,0x00 -+// 45088 뀠 ; -+,0x00,0x00,0x00,0x0e,0x02,0x00,0x04,0x1f,0x01,0x01,0x01,0x01,0x02,0x00,0x08,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x4c,0x04,0x04,0x00,0x08,0x08,0x98,0x24,0x42,0x00 -+// 45089 뀡 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0x4c,0x04,0x04,0x04,0x30,0x88,0x84,0x88,0xf8,0x00 -+// 45090 뀢 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x19,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0x7c,0x40,0x60,0x98,0x04,0x00 -+// 45091 뀣 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x08,0x68,0x08,0x48,0x48,0x08,0x00,0x80,0x00,0xfc,0x40,0x90,0x04,0x00 -+// 45092 뀤 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x05,0x09,0x01,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x08,0x68,0x48,0x48,0xc8,0x08,0x08,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 45093 뀥 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x00,0x1f,0x01,0x00,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xe8,0x08,0x48,0x48,0x08,0x08,0x00,0x78,0x00,0x78,0x00,0xfc,0x00 -+// 45094 뀦 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x05,0x1d,0x01,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x08,0x08,0x00,0xfc,0x10,0x10,0x10,0xfe,0x00 -+// 45095 뀧 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x1f,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xe8,0x08,0x08,0xe0,0x00,0x60,0x90,0x08,0xf0,0x00 -+// 45096 뀨 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x08,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 45097 뀩 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x1f,0x02,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xdf,0x10,0x10,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 45098 뀪 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x02,0x02,0x02,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0a,0x10,0x10,0x00,0xac,0x04,0x04,0x00,0x00,0x00 -+// 45099 뀫 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x1f,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x3c,0x00,0x08,0x08,0xbf,0x10,0x10,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 45100 뀬 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x3f,0x01,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x7c,0x08,0x08,0x08,0x00,0xb0,0x30,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 45101 뀭 ; -+,0x00,0x00,0x0b,0x00,0x02,0x02,0x3f,0x02,0x02,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x04,0x00,0x08,0x08,0xbf,0x10,0x10,0x3c,0x10,0x20,0x30,0x4c,0x84,0x00 -+// 45102 뀮 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x00,0x0c,0x04,0x04,0x07,0x04,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xff,0x10,0x10,0x00,0xfe,0x10,0x04,0x44,0x28,0x00 -+// 45103 뀯 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x12,0x02,0x02,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x08,0x10,0x10,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 45104 뀰 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x06,0x04,0x01,0x00,0x00,0x00,0x1c,0x04,0x00,0x08,0x0a,0x10,0x00,0x30,0x00,0x10,0x00,0x00,0xf8,0x00 -+// 45105 뀱 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x02,0x02,0x0f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x10,0x38,0x08,0x08,0x08,0x00,0x00,0x00 -+// 45106 뀲 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x02,0x02,0x0f,0x01,0x09,0x00,0x05,0x04,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x10,0x7c,0x44,0x04,0x00,0x2c,0x00,0x00 -+// 45107 뀳 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x0f,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x10,0xcc,0x04,0x2c,0x04,0x24,0x04,0x00 -+// 45108 뀴 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x02,0x02,0x0f,0x00,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 45109 뀵 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x10,0x58,0x40,0x60,0x40,0x40,0x3c,0x00 -+// 45110 뀶 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xfe,0x10,0x10,0x7c,0x00,0x48,0x28,0x08,0x40,0x00 -+// 45111 뀷 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x0f,0x01,0x0d,0x08,0x0f,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xff,0x10,0x30,0x00,0x70,0x38,0x44,0x44,0x38,0x00 -+// 45112 뀸 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x1f,0x10,0x10,0x00,0x18,0x08,0x00,0x10,0x00,0x00 -+// 45113 뀹 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x10,0x18,0x18,0x18,0x08,0x18,0x00,0x00 -+// 45114 뀺 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x03,0x02,0x02,0x01,0x08,0x05,0x00,0x05,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0f,0x10,0x10,0x98,0x98,0x98,0xa4,0xa4,0x40,0x00 -+// 45115 뀻 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0f,0x10,0x10,0x10,0x80,0xc0,0x30,0x08,0x04,0x00 -+// 45116 뀼 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x02,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 45117 뀽 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0b,0x10,0x10,0x10,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 45118 뀾 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0f,0x10,0x10,0x10,0xf0,0xc0,0x20,0x18,0x04,0x00 -+// 45119 뀿 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x3f,0x02,0x02,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xbf,0x10,0x10,0xe0,0x00,0xc0,0x80,0x10,0x04,0x00 -+// 45120 끀 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x1f,0x02,0x02,0x02,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xff,0x10,0x10,0x18,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 45121 끁 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x1f,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0xff,0x10,0x10,0xf0,0x00,0x10,0x00,0x00,0xf8,0x00 -+// 45122 끂 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x1f,0x02,0x02,0x02,0x00,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xbf,0x10,0x10,0x18,0x20,0x10,0x00,0x20,0xfc,0x00 -+// 45123 끃 ; -+,0x00,0x00,0x0d,0x01,0x01,0x00,0x1f,0x02,0x03,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x2c,0x04,0x08,0x08,0xf6,0x10,0xb0,0x00,0xf8,0xe0,0x00,0x20,0xc0,0x00 -+// 45124 끄 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x02,0x00,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x08,0x08,0x08,0x08,0x00,0x10,0x17,0x00,0x00,0x00 -+// 45125 끅 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x18,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x08,0x00,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 45126 끆 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x06,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0f,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 45127 끇 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0a,0x00,0x00,0x30,0x10,0x30,0x28,0x44,0x00,0x00 -+// 45128 끈 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x02,0x1f,0x00,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x1c,0x04,0x08,0x08,0x08,0x08,0xf2,0x00,0x00,0x00,0x00,0x1c,0x00,0x00 -+// 45129 끉 ; -+,0x00,0x00,0x0b,0x00,0x02,0x02,0x1f,0x00,0x00,0x19,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0x3c,0x00,0x08,0x08,0xff,0x00,0x00,0xfc,0x30,0x30,0x48,0x84,0x00,0x00 -+// 45130 끊 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0a,0x00,0x00,0x00,0xfe,0x30,0x40,0x40,0x30,0x00 -+// 45131 끋 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x18,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x08,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x78,0x00 -+// 45132 끌 ; -+,0x00,0x00,0x07,0x01,0x01,0x00,0x02,0x1f,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0a,0x00,0x00,0xf0,0x10,0xf0,0x00,0x00,0x00,0x00 -+// 45133 끍 ; -+,0x00,0x00,0x0d,0x01,0x00,0x02,0x1f,0x00,0x00,0x0f,0x01,0x0f,0x08,0x08,0x0e,0x00,0x00,0x00,0x24,0x04,0x00,0x08,0xcf,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x00,0x00 -+// 45134 끎 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x00,0x00,0x0f,0x01,0x0f,0x08,0x09,0x04,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x7f,0x00,0x00,0x7c,0x44,0x40,0x48,0x6c,0x00,0x00 -+// 45135 끏 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x1f,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x34,0x04,0x00,0x08,0xcf,0x00,0x00,0x4c,0x44,0x6c,0x44,0x6c,0x40,0x00 -+// 45136 끐 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x00,0x00,0x0f,0x01,0x01,0x08,0x0d,0x04,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0a,0x00,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 45137 끑 ; -+,0x00,0x00,0x0d,0x01,0x00,0x02,0x1f,0x00,0x00,0x0f,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x00,0x24,0x04,0x08,0x08,0xcf,0x00,0x00,0x78,0x40,0x58,0x40,0x40,0x38,0x00 -+// 45138 끒 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x1f,0x00,0x00,0x0f,0x01,0x0f,0x08,0x09,0x0c,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0xff,0x00,0x00,0x7c,0x18,0x48,0x20,0x14,0x00,0x00 -+// 45139 끓 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x00,0x00,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0f,0x00,0x30,0x00,0xf0,0x38,0x48,0x48,0x30,0x00 -+// 45140 끔 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0a,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 45141 끕 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x10,0x00,0x04,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0a,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 45142 끖 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x00,0x00,0x01,0x08,0x0d,0x08,0x0d,0x00,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0f,0x00,0x00,0x98,0x90,0x98,0xac,0x84,0x00,0x00 -+// 45143 끗 ; -+,0x00,0x00,0x03,0x01,0x02,0x02,0x02,0x1f,0x00,0x01,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0x0c,0x04,0x00,0x08,0x08,0xff,0x00,0x00,0x80,0xc0,0x30,0x08,0x00,0x00 -+// 45144 끘 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x00,0x00,0x00,0x03,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x3c,0x04,0x00,0x08,0x0f,0x00,0x00,0x30,0x10,0x30,0xa8,0x44,0x80,0x00 -+// 45145 끙 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x1f,0x00,0x00,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0a,0x00,0x00,0xc0,0x20,0x10,0x10,0x30,0xe0,0x00 -+// 45146 끚 ; -+,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x1e,0x00,0x00,0x04,0x00,0x01,0x06,0x08,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0a,0x00,0x00,0x0c,0x80,0xc0,0x30,0x08,0x00,0x00 -+// 45147 끛 ; -+,0x00,0x00,0x0f,0x01,0x01,0x00,0x02,0x00,0x00,0x01,0x00,0x04,0x01,0x02,0x04,0x00,0x00,0x00,0x3c,0x04,0x04,0x08,0x0f,0x00,0x00,0xc0,0x0c,0xc0,0xe0,0x18,0x04,0x00 -+// 45148 끜 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x06,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0a,0x00,0x00,0xd8,0x08,0x18,0x08,0x08,0x08,0x00 -+// 45149 끝 ; -+,0x00,0x00,0x0f,0x01,0x00,0x02,0x02,0x18,0x00,0x07,0x04,0x06,0x06,0x04,0x01,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0b,0x00,0x00,0xf8,0x00,0x70,0x00,0x00,0xf8,0x00 -+// 45150 끞 ; -+,0x00,0x00,0x0f,0x00,0x02,0x02,0x06,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x3c,0x04,0x08,0x08,0x0b,0x00,0x00,0x18,0x20,0x30,0x20,0x20,0xfc,0x00 -+// 45151 끟 ; -+,0x00,0x00,0x01,0x01,0x01,0x00,0x02,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x24,0x04,0x00,0x08,0x0f,0x00,0x00,0x00,0xf8,0xc0,0x20,0x20,0xe0,0x00 -+// 45152 끠 ; -+,0x00,0x00,0x00,0x00,0x0f,0x02,0x02,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x74,0x24,0x24,0x24,0x04,0x5c,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 45153 끡 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x02,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0x64,0x04,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 45154 끢 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x02,0x02,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x24,0xe4,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45155 끣 ; -+,0x00,0x00,0x00,0x0e,0x02,0x02,0x00,0x04,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0xe4,0x04,0x00,0x18,0x88,0x98,0x94,0xa2,0x00 -+// 45156 끤 ; -+,0x00,0x00,0x00,0x00,0x0a,0x02,0x02,0x00,0x05,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x24,0x24,0x24,0x04,0xc4,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 45157 끥 ; -+,0x00,0x00,0x00,0x0e,0x02,0x02,0x02,0x00,0x1f,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x04,0x74,0x04,0x00,0x7e,0x08,0x18,0xa4,0x42,0x00 -+// 45158 끦 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x03,0x0c,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0xe4,0x04,0x38,0x00,0xf0,0x38,0x44,0x28,0x00 -+// 45159 끧 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0xe0,0x00,0x00,0xbe,0x00 -+// 45160 끨 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x02,0x0f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x74,0x24,0x24,0x24,0x74,0x04,0x00,0xfc,0x04,0xbc,0x00,0x06,0x00 -+// 45161 끩 ; -+,0x00,0x00,0x00,0x07,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x74,0x04,0x24,0x24,0xe4,0x00,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45162 끪 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x0e,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x74,0x24,0x24,0x04,0x64,0x04,0x00,0xac,0xa4,0xa4,0x24,0xa0,0x00 -+// 45163 끫 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x0c,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x74,0x24,0x24,0x24,0xc4,0x04,0x00,0xe4,0x24,0x24,0x24,0x34,0x00 -+// 45164 끬 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x02,0x07,0x0c,0x00,0x04,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0xc4,0x04,0x10,0x88,0x88,0x14,0x26,0xc2,0x00 -+// 45165 끭 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x0e,0x00,0x07,0x00,0x0d,0x04,0x05,0x00,0x00,0x0c,0x04,0x74,0x24,0x24,0x24,0x64,0x04,0x00,0xbc,0xa0,0xbc,0x20,0x3e,0x00 -+// 45166 끮 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x03,0x08,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x04,0x74,0x24,0x24,0x24,0xc4,0x04,0x04,0x00,0x08,0x28,0x08,0xfe,0x00 -+// 45167 끯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x02,0x0e,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x0c,0x04,0x64,0x24,0x24,0x04,0xe4,0x04,0x10,0x80,0x78,0x1c,0x20,0x24,0x00 -+// 45168 끰 ; -+,0x00,0x00,0x00,0x0a,0x02,0x02,0x00,0x00,0x1e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x24,0x24,0x04,0x64,0x04,0x00,0xfc,0x0c,0x08,0x08,0x80,0x00 -+// 45169 끱 ; -+,0x00,0x00,0x00,0x07,0x01,0x00,0x02,0x02,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x74,0x24,0x24,0x04,0xe4,0x04,0x0c,0x04,0x84,0x04,0x04,0x84,0x00 -+// 45170 끲 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x02,0x03,0x0c,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x0c,0xc4,0x00,0x08,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 45171 끳 ; -+,0x00,0x00,0x00,0x0b,0x02,0x02,0x02,0x02,0x0e,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x74,0x24,0x24,0x24,0x74,0x04,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 45172 끴 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x03,0x08,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0xc4,0x00,0x00,0x88,0x08,0x98,0x04,0x02,0x00 -+// 45173 끵 ; -+,0x00,0x00,0x00,0x0a,0x02,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x24,0x64,0x04,0x04,0x34,0x48,0x84,0x84,0x78,0x00 -+// 45174 끶 ; -+,0x00,0x00,0x00,0x0a,0x02,0x02,0x02,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0xe4,0x04,0x00,0x04,0x60,0x60,0x88,0x04,0x00 -+// 45175 끷 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x02,0x0e,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0x64,0x04,0x40,0x00,0xf0,0x60,0x88,0x06,0x00 -+// 45176 끸 ; -+,0x00,0x00,0x00,0x0b,0x02,0x02,0x02,0x00,0x0e,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0x64,0x04,0x00,0x0c,0x04,0x3c,0x04,0x04,0x00 -+// 45177 끹 ; -+,0x00,0x00,0x00,0x07,0x01,0x00,0x02,0x02,0x0e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x74,0x04,0x24,0x24,0xe4,0x04,0x00,0x3c,0x00,0x7c,0x00,0x9e,0x00 -+// 45178 끺 ; -+,0x00,0x00,0x00,0x0a,0x02,0x02,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x04,0x64,0x04,0x00,0x1c,0x00,0x88,0x80,0x96,0x00 -+// 45179 끻 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x02,0x02,0x0c,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0xe4,0x04,0x40,0x00,0xf2,0x78,0x88,0x98,0x00 -+// 45180 끼 ; -+,0x00,0x00,0x00,0x00,0x0f,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xf4,0x24,0x24,0x44,0x44,0x84,0x04,0x04,0x04,0x04,0x04,0x00 -+// 45181 끽 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x00,0x01,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 45182 끾 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x00,0x00,0x01,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x00,0xb4,0x84,0x84,0x84,0x04,0x00 -+// 45183 끿 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x08,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x84,0x84,0x04,0x00,0x88,0x88,0x98,0xa6,0xc2,0x00 -+// 45184 낀 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x08,0x01,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x24,0x24,0x44,0x84,0x84,0x04,0x04,0x04,0x00,0x00,0x0e,0x00 -+// 45185 낁 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x08,0x11,0x00,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x0c,0x04,0xe4,0x44,0x44,0x84,0x04,0x04,0x02,0x58,0x18,0x18,0xa4,0x42,0x00 -+// 45186 낂 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x84,0x84,0x04,0x30,0x3e,0x10,0x24,0xc4,0x28,0x00 -+// 45187 낃 ; -+,0x00,0x00,0x00,0x0f,0x02,0x00,0x04,0x08,0x01,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x00,0x00,0x00,0x00,0x00,0x9e,0x00 -+// 45188 낄 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x04,0x08,0x01,0x03,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x00,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 45189 낅 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x04,0x08,0x00,0x06,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45190 낆 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x00,0x00,0x06,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x84,0x84,0x04,0x04,0xa4,0xa4,0x24,0x24,0xb4,0x00 -+// 45191 낇 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x04,0x08,0x01,0x06,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x0c,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 45192 낈 ; -+,0x00,0x00,0x00,0x0f,0x02,0x00,0x04,0x08,0x01,0x06,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x08,0x88,0x88,0x14,0x12,0xa2,0x00 -+// 45193 낉 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x04,0x08,0x02,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0xc4,0x84,0x04,0xbc,0xa0,0xa0,0x20,0x20,0x9e,0x00 -+// 45194 낊 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x04,0x08,0x01,0x02,0x01,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x04,0x00,0x08,0x28,0x28,0xfe,0x00 -+// 45195 낋 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x01,0x02,0x04,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x84,0x04,0x00,0x18,0x86,0x18,0x24,0x20,0x24,0x00 -+// 45196 낌 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x00,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x64,0x44,0x84,0x84,0x04,0x00,0x8c,0x04,0x00,0x08,0x00,0x00 -+// 45197 낍 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x08,0x01,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0xc4,0x84,0x04,0x0c,0x04,0x04,0x04,0x04,0x04,0x00 -+// 45198 낎 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x11,0x02,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x84,0x04,0x04,0x88,0x88,0x88,0x94,0xa4,0xa2,0x00 -+// 45199 낏 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x04,0x08,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 45200 낐 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x01,0x02,0x00,0x01,0x01,0x02,0x02,0x08,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x84,0x04,0x04,0x00,0x0c,0x08,0x9c,0x52,0x22,0x00 -+// 45201 낑 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x08,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x84,0x84,0x04,0x04,0x70,0x84,0x84,0x84,0xc8,0x00 -+// 45202 낒 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x00,0x00,0x01,0x02,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0xc4,0x84,0x04,0x00,0xfc,0x60,0x50,0x8c,0x06,0x00 -+// 45203 낓 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x84,0x04,0x04,0x70,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 45204 낔 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x00,0x00,0x01,0x02,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x04,0x04,0x04,0xe4,0x04,0x04,0x00 -+// 45205 낕 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x04,0x08,0x01,0x02,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0xc4,0x84,0x04,0x04,0x00,0x00,0xfc,0x00,0xfe,0x00 -+// 45206 낖 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x00,0x00,0x01,0x02,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x00,0xfc,0x10,0x10,0x10,0xfe,0x00 -+// 45207 낗 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x04,0x08,0x01,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x00,0xfe,0x70,0x88,0x88,0xf0,0x00 -+// 45208 나 ; -+,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x0e,0xc8,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45209 낙 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x1b,0x08,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1e,0x88,0x08,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 45210 낚 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1e,0xc8,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 45211 낛 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x19,0x0c,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1f,0x88,0x08,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 45212 난 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0f,0x88,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 45213 낝 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x18,0x0c,0x00,0x08,0x08,0x08,0x09,0x04,0x01,0x00,0x10,0x08,0x08,0x08,0x08,0x0f,0xc8,0x08,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 45214 낞 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x0b,0x0c,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1e,0x88,0x00,0x00,0xfc,0x30,0x48,0xc4,0x48,0x00 -+// 45215 낟 ; -+,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x00,0x00,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x48,0x08,0x00,0x00,0xf0,0x00,0x00,0xfc,0x00 -+// 45216 날 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x0b,0x08,0x00,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x88,0x08,0x00,0x10,0x10,0x00,0x00,0xfc,0x00 -+// 45217 낡 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x1b,0x08,0x03,0x01,0x01,0x0c,0x08,0x0f,0x04,0x00,0x10,0x08,0x08,0x08,0x08,0x1f,0x88,0x08,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45218 낢 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x1f,0xc8,0x08,0x08,0x48,0x48,0x48,0x48,0x20,0x00 -+// 45219 낣 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x01,0x00,0x0e,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1e,0xc8,0x08,0x18,0x48,0x48,0x48,0x48,0x48,0x00 -+// 45220 낤 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x0b,0x08,0x0b,0x00,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1f,0x88,0x08,0x18,0x10,0x10,0x28,0x24,0x42,0x00 -+// 45221 낥 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x18,0x0c,0x01,0x01,0x01,0x0a,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x1e,0x88,0x08,0x18,0x40,0x40,0x40,0x40,0x7c,0x00 -+// 45222 낦 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x1b,0x0c,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1f,0x88,0x08,0x08,0x00,0x48,0x40,0x10,0xfc,0x00 -+// 45223 낧 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x05,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x18,0x08,0x08,0x08,0x1e,0x88,0x08,0x30,0x04,0x10,0x28,0x44,0x28,0x00 -+// 45224 남 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1f,0xc8,0x08,0x00,0xf8,0x08,0x08,0x00,0x78,0x00 -+// 45225 납 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x00,0x06,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x0e,0x08,0x00,0x18,0x08,0x18,0x08,0x08,0x08,0x00 -+// 45226 낪 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x18,0x0e,0x01,0x08,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x1a,0xc8,0x08,0x18,0x90,0x90,0xa8,0x84,0xc0,0x00 -+// 45227 낫 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x08,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1a,0x88,0x08,0x48,0x40,0xe0,0x10,0x08,0x04,0x00 -+// 45228 났 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x03,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x1e,0xc8,0x08,0x00,0x10,0x10,0x28,0xa4,0x40,0x00 -+// 45229 낭 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x18,0x0e,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x18,0xc8,0x08,0x08,0xe0,0x10,0x08,0x00,0xf0,0x00 -+// 45230 낮 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1f,0xc8,0x08,0x08,0xc0,0xc0,0xb0,0x08,0x04,0x00 -+// 45231 낯 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1e,0xc8,0x08,0xe0,0x00,0xf8,0xe0,0x98,0x0c,0x00 -+// 45232 낰 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1e,0xc8,0x08,0x00,0xd8,0x08,0xd8,0x08,0x08,0x00 -+// 45233 낱 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x08,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x1e,0x88,0x08,0x00,0x00,0x00,0xf8,0x00,0x18,0x00 -+// 45234 낲 ; -+,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x0e,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x48,0x08,0x08,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 45235 낳 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x19,0x0c,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x1e,0xc8,0x08,0x00,0xfc,0x40,0x10,0x10,0x30,0x00 -+// 45236 내 ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0x24,0x24,0x64,0x24,0x24,0x24,0x24,0x04,0x00 -+// 45237 낵 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x34,0x64,0x24,0x00,0x2c,0x04,0x04,0x04,0x04,0x00 -+// 45238 낶 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x94,0x00,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45239 낷 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x04,0x04,0x34,0xe4,0x00,0x00,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 45240 낸 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0d,0x04,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0xa4,0x24,0x24,0x04,0x00,0x00,0xbe,0x00 -+// 45241 낹 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x04,0x04,0x04,0x34,0xa4,0x00,0x06,0x18,0x10,0x10,0x26,0x42,0x00 -+// 45242 낺 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x04,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x10,0xbe,0x10,0x24,0xc4,0x2c,0x00 -+// 45243 낻 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 45244 낼 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x34,0xa4,0x24,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 45245 낽 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x34,0x24,0x20,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45246 낾 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x14,0x00,0x24,0xa4,0xa4,0x24,0x24,0xb0,0x00 -+// 45247 낿 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x04,0x04,0x04,0x34,0x84,0x04,0x04,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 45248 냀 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x08,0x88,0x88,0x14,0x02,0x22,0x00 -+// 45249 냁 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x04,0x04,0x05,0x00,0x00,0x04,0x32,0x12,0x12,0x12,0x76,0x10,0x10,0xbc,0xa0,0xa4,0x20,0x20,0x3e,0x00 -+// 45250 냂 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x34,0x24,0x04,0x04,0x00,0x28,0x28,0x08,0x7e,0x00 -+// 45251 냃 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x18,0x86,0x18,0x24,0x22,0x24,0x00 -+// 45252 냄 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0xa4,0x24,0x00,0x0c,0x04,0x04,0x04,0x00,0x00 -+// 45253 냅 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x94,0x14,0x04,0x04,0x84,0x04,0x84,0x84,0x00 -+// 45254 냆 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x04,0x04,0x04,0x34,0x04,0x04,0x88,0x48,0xc8,0x54,0x52,0x20,0x00 -+// 45255 냇 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x34,0xa4,0x24,0x24,0x20,0x20,0x58,0x84,0x02,0x00 -+// 45256 냈 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x00,0x88,0x08,0x98,0x46,0x02,0x00 -+// 45257 냉 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x34,0x24,0x24,0x04,0x58,0x84,0x84,0x84,0x78,0x00 -+// 45258 냊 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0xa4,0x04,0x04,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 45259 냋 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x04,0x04,0x24,0x34,0x04,0x00,0xe0,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 45260 냌 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x34,0xa4,0x04,0x04,0x04,0x04,0xe4,0x04,0x04,0x00 -+// 45261 냍 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x04,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x3c,0xa4,0x24,0x00,0x00,0x00,0x38,0x00,0xfc,0x00 -+// 45262 냎 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x34,0xa4,0x24,0x04,0x10,0x18,0x80,0x90,0xfe,0x00 -+// 45263 냏 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x34,0x14,0x00,0x70,0x0e,0x20,0xd8,0x88,0x98,0x00 -+// 45264 냐 ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x08,0x08,0x48,0x0f,0x08,0x08,0x08,0x08,0x00 -+// 45265 냑 ; -+,0x00,0x00,0x00,0x30,0x10,0x00,0x00,0x0b,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x18,0x88,0x08,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 45266 냒 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x08,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x18,0x88,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45267 냓 ; -+,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x1b,0x08,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x08,0x88,0x08,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 45268 냔 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x08,0x88,0x0e,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 45269 냕 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x18,0x88,0x08,0x00,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 45270 냖 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x0c,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x18,0x88,0x08,0x20,0x1c,0x30,0x48,0x80,0x58,0x00 -+// 45271 냗 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x0a,0x08,0x48,0x0f,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 45272 냘 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0x18,0x08,0x08,0x0e,0x18,0xc8,0x0e,0x00,0x10,0x10,0xe0,0x00,0x1c,0x00 -+// 45273 냙 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x08,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x38,0x88,0x08,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45274 냚 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0x08,0x0e,0x18,0x88,0x0a,0x58,0x48,0x48,0x48,0x48,0x20,0x00 -+// 45275 냛 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x19,0x0c,0x00,0x00,0x00,0x08,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x18,0x88,0x08,0x18,0x48,0x48,0x48,0x48,0x48,0x00 -+// 45276 냜 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x0c,0x0b,0x00,0x01,0x0c,0x08,0x0f,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x18,0x88,0x08,0x10,0x10,0x10,0x28,0x24,0x40,0x00 -+// 45277 냝 ; -+,0x00,0x00,0x00,0x10,0x18,0x08,0x08,0x09,0x0c,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x18,0x88,0x0a,0x78,0x40,0x40,0x40,0x40,0x7c,0x00 -+// 45278 냞 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x19,0x0c,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x18,0x88,0x08,0x18,0x00,0x48,0x40,0x10,0xfc,0x00 -+// 45279 냟 ; -+,0x00,0x00,0x00,0x10,0x18,0x08,0x08,0x09,0x0c,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x18,0x88,0x08,0x30,0x00,0x10,0x28,0x44,0x28,0x00 -+// 45280 냠 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x18,0xc8,0x08,0x00,0x18,0x08,0x00,0x10,0x00,0x00 -+// 45281 냡 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x08,0x04,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x18,0x88,0x08,0x18,0x08,0xf8,0x08,0x08,0x18,0x00 -+// 45282 냢 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x0b,0x0c,0x01,0x08,0x05,0x00,0x05,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x0f,0x18,0x88,0x18,0x10,0x90,0x90,0xa8,0x04,0x80,0x00 -+// 45283 냣 ; -+,0x00,0x00,0x00,0x10,0x18,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x18,0xc8,0x0a,0x48,0x40,0xa0,0x10,0x08,0x04,0x00 -+// 45284 냤 ; -+,0x00,0x00,0x00,0x10,0x18,0x08,0x08,0x0b,0x08,0x02,0x01,0x02,0x05,0x04,0x10,0x00,0x00,0x00,0x18,0x08,0x08,0x0f,0x18,0x88,0x08,0x10,0x10,0x10,0x28,0xa4,0x42,0x00 -+// 45285 냥 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0c,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x08,0xc8,0x0f,0x08,0xb0,0x08,0x08,0x08,0xf0,0x00 -+// 45286 냦 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x18,0x88,0x09,0x08,0xf8,0x40,0xa0,0x18,0x04,0x00 -+// 45287 냧 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x0c,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x18,0x88,0x08,0xe0,0x00,0x40,0xe0,0x18,0x04,0x00 -+// 45288 냨 ; -+,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x1b,0x0c,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x18,0x88,0x08,0x00,0x08,0x08,0xf8,0x08,0x08,0x00 -+// 45289 냩 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x08,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x18,0x88,0x08,0x18,0x00,0x00,0xf8,0x00,0x1c,0x00 -+// 45290 냪 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x06,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x08,0xc8,0x0f,0x08,0x00,0x10,0x10,0x00,0xfc,0x00 -+// 45291 냫 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x1b,0x08,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x08,0x08,0x0f,0x18,0x88,0x08,0x00,0xdc,0xc0,0x10,0x10,0x20,0x00 -+// 45292 냬 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x10,0x10,0x10,0x1c,0x10,0x10,0x30,0x1c,0x10,0x10,0x10,0x00,0x00 -+// 45293 냭 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x34,0x04,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 45294 냮 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x14,0x04,0x34,0x94,0x00,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45295 냯 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x14,0x04,0x24,0xb4,0x04,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 45296 냰 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x34,0x24,0x24,0x24,0x34,0x24,0x04,0x00,0x00,0x7e,0x00 -+// 45297 냱 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x24,0x24,0x00,0xd0,0x10,0x38,0x24,0x42,0x00 -+// 45298 냲 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x14,0x24,0x00,0xd8,0x18,0x44,0x44,0x38,0x00 -+// 45299 냳 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x34,0x24,0x00,0x3c,0x00,0x00,0x00,0xfe,0x00 -+// 45300 냴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x34,0x24,0x24,0x34,0x24,0xfc,0x04,0x04,0x00,0x00,0x1e,0x00 -+// 45301 냵 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x14,0x04,0xbc,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45302 냶 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x04,0x14,0x04,0x74,0x14,0x04,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x00 -+// 45303 냷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x04,0x14,0x04,0x24,0x14,0x04,0x84,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 45304 냸 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x34,0x24,0x88,0x88,0x88,0x14,0x02,0xa2,0x00 -+// 45305 냹 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x0f,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x10,0x14,0x10,0x74,0x14,0x10,0xac,0xa0,0xbc,0x20,0x20,0x1e,0x00 -+// 45306 냺 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x14,0x04,0x24,0x14,0x04,0x04,0x00,0x20,0x28,0x08,0x42,0x00 -+// 45307 냻 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x24,0x04,0x18,0x02,0x18,0x24,0x20,0x24,0x00 -+// 45308 냼 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x10,0x14,0x10,0x14,0x94,0x10,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 45309 냽 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x34,0x24,0x0c,0x04,0xfc,0x04,0x04,0x04,0x00 -+// 45310 냾 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0x24,0x34,0x24,0x24,0x24,0x24,0x88,0x08,0x88,0x14,0xa2,0x42,0x00 -+// 45311 냿 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x24,0x24,0x34,0x24,0x24,0xb4,0x24,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 45312 넀 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x0b,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x34,0x24,0x00,0x88,0x08,0x90,0x26,0x02,0x00 -+// 45313 넁 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x14,0x04,0x24,0x34,0x04,0x04,0x30,0x84,0x84,0x84,0x78,0x00 -+// 45314 넂 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x24,0x10,0x14,0x10,0x34,0x94,0x00,0x04,0x60,0x60,0x98,0x04,0x02,0x00 -+// 45315 넃 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x04,0x14,0x04,0x34,0x14,0x00,0xf0,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 45316 넄 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x34,0x24,0x24,0xa4,0x00,0x0c,0x04,0x04,0xc4,0x04,0x04,0x00 -+// 45317 넅 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x14,0x04,0x24,0x94,0x04,0x04,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 45318 넆 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x02,0x01,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0xb4,0x24,0x00,0x10,0x18,0x80,0x90,0xd6,0x00 -+// 45319 넇 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x14,0x24,0x24,0x14,0x20,0x00,0xfe,0x70,0x88,0x88,0xd0,0x00 -+// 45320 너 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x7c,0x04,0x04,0x04,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 45321 넉 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 45322 넊 ; -+,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0x04,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xb4,0x84,0x84,0x84,0x04,0x00 -+// 45323 넋 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x0c,0x04,0x04,0x04,0x00,0x18,0x88,0x98,0x90,0xa4,0x42,0x00 -+// 45324 넌 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x0c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x7c,0x04,0x04,0x84,0x04,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 45325 넍 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0xd4,0x10,0x10,0x24,0x42,0x00 -+// 45326 넎 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x04,0x04,0x7c,0x04,0x04,0x84,0x00,0x00,0xf6,0x10,0x44,0x44,0x68,0x00 -+// 45327 넏 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 45328 널 ; -+,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x3c,0x04,0x04,0xc4,0x00,0x00,0x08,0x08,0x00,0x00,0xfe,0x00 -+// 45329 넑 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x00,0x00,0x0c,0x04,0x04,0x34,0x04,0x04,0x84,0x00,0x84,0x84,0x84,0x04,0x04,0x84,0x00 -+// 45330 넒 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x05,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x84,0x00,0xa4,0xa4,0xa4,0x24,0x24,0xa0,0x00 -+// 45331 넓 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x3c,0x04,0x04,0xc4,0x00,0x0c,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 45332 넔 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x84,0x00,0x88,0x88,0x98,0x14,0x22,0x02,0x00 -+// 45333 넕 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x05,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0xc4,0x00,0xac,0xa0,0xa0,0x20,0x20,0x1e,0x00 -+// 45334 넖 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x3c,0x04,0x04,0x84,0x00,0x04,0x00,0x08,0x28,0x28,0x6a,0x00 -+// 45335 넗 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x7c,0x04,0x04,0x84,0x00,0x18,0x02,0x18,0x24,0x20,0x24,0x00 -+// 45336 넘 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0c,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0x8c,0x04,0x04,0x04,0x9c,0x00 -+// 45337 넙 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x84,0x00,0x04,0x04,0x8c,0x04,0x04,0x04,0x00 -+// 45338 넚 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0d,0x04,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x7c,0x04,0x04,0x84,0x00,0x88,0x88,0x88,0x94,0xa4,0x82,0x00 -+// 45339 넛 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x07,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x04,0x0c,0x04,0x04,0x44,0x04,0x04,0x20,0x60,0x90,0x0c,0x06,0x00 -+// 45340 넜 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x04,0x7c,0x04,0x04,0x84,0x00,0x08,0x08,0x08,0x94,0x62,0x42,0x00 -+// 45341 넝 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x84,0x04,0x30,0x88,0x84,0x84,0xc8,0x00 -+// 45342 넞 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x1c,0x40,0x60,0x98,0x04,0x00 -+// 45343 넟 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x05,0x00,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x04,0x3c,0x04,0x04,0xc4,0x00,0xe0,0x00,0xec,0x60,0x88,0x06,0x00 -+// 45344 넠 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0xe4,0x04,0x00,0x00 -+// 45345 넡 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x05,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x7c,0x04,0x04,0x84,0x00,0x00,0x00,0x00,0x38,0x00,0x0c,0x00 -+// 45346 넢 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x06,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x84,0x04,0x00,0x10,0x10,0x10,0xfe,0x00 -+// 45347 넣 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x05,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0xc4,0x00,0x00,0xfe,0x60,0x88,0x88,0xd0,0x00 -+// 45348 네 ; -+,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x02,0x00 -+// 45349 넥 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0xf4,0x14,0x14,0x14,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 45350 넦 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x06,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45351 넧 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x00,0x88,0x88,0x98,0x86,0xa2,0x00 -+// 45352 넨 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0xe4,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 45353 넩 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x0c,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x04,0xf8,0x10,0x18,0x24,0x42,0x00 -+// 45354 넪 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x0c,0x06,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x64,0x24,0x24,0xe4,0x24,0x24,0x24,0x30,0x06,0x10,0x24,0x44,0x2c,0x00 -+// 45355 넫 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 45356 넬 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0xe4,0x24,0xa4,0x24,0xbc,0x04,0x04,0x00,0x00,0x1e,0x00 -+// 45357 넭 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0xf4,0x14,0x94,0x10,0x04,0x84,0x84,0x04,0x04,0x84,0x00 -+// 45358 넮 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x02,0x00,0x0c,0x24,0x14,0x14,0xf4,0x14,0x94,0x04,0x04,0xa4,0xa4,0x24,0x24,0xbc,0x00 -+// 45359 넯 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0xf4,0x14,0x94,0x14,0x04,0xa4,0xa4,0xa4,0x24,0xa4,0x00 -+// 45360 넰 ; -+,0x00,0x00,0x00,0x00,0x08,0x05,0x04,0x04,0x06,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x08,0x88,0x88,0x14,0x02,0xa2,0x00 -+// 45361 넱 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x06,0x07,0x00,0x00,0x04,0x04,0x05,0x00,0x00,0x04,0x24,0x14,0x34,0xb4,0x14,0x94,0x04,0x3c,0xa0,0xa0,0x20,0x20,0x3e,0x00 -+// 45362 넲 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x0d,0x04,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0xe4,0x24,0x24,0x24,0x2c,0x00,0x08,0x28,0x08,0x4e,0x00 -+// 45363 넳 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x0d,0x04,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x0c,0x64,0x24,0x24,0xe4,0x24,0x24,0x24,0x18,0x02,0x18,0x24,0x20,0x24,0x00 -+// 45364 넴 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x12,0xf2,0x12,0x12,0x12,0x00,0x84,0x84,0x84,0x84,0xbc,0x00 -+// 45365 넵 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x12,0xf2,0x12,0x90,0x10,0x04,0x04,0x84,0x04,0x84,0x04,0x00 -+// 45366 넶 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x0c,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x88,0x08,0x88,0x14,0xa2,0x42,0x00 -+// 45367 넷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x30,0x20,0x58,0x84,0x02,0x00 -+// 45368 넸 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x06,0x00,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x0c,0x64,0x24,0x24,0xe4,0x24,0x24,0x24,0x00,0x08,0x08,0x98,0x64,0x02,0x00 -+// 45369 넹 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x12,0xf2,0x12,0x12,0x10,0x10,0x38,0x44,0x84,0x04,0x78,0x00 -+// 45370 넺 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x60,0x60,0x50,0x8c,0x02,0x00 -+// 45371 넻 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0x24,0xa4,0x24,0xe0,0x00,0xec,0x60,0x98,0x06,0x00 -+// 45372 넼 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x06,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x04,0x04,0xf4,0x04,0x04,0x00 -+// 45373 넽 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x24,0x04,0x04,0xe4,0x04,0x04,0x04,0x00,0x00,0x00,0x7c,0x00,0x9e,0x00 -+// 45374 넾 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x07,0x01,0x00,0x00,0x07,0x00,0x00,0x0c,0x64,0x24,0x24,0xe4,0x24,0x24,0x24,0x04,0x90,0x18,0x80,0x90,0xd6,0x00 -+// 45375 넿 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xe4,0x24,0xa4,0x24,0x60,0x06,0x60,0x98,0x88,0x98,0x00 -+// 45376 녀 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x3c,0x04,0x84,0x04,0x04,0x04,0x04,0x00 -+// 45377 녁 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0x04,0x3c,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 45378 녂 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x3c,0x04,0x04,0x84,0x84,0x84,0x84,0x04,0x00 -+// 45379 녃 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0b,0x04,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0x00,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 45380 년 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x2c,0x04,0x04,0x3c,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 45381 녅 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x3c,0x04,0x00,0x18,0x10,0x38,0x24,0x82,0x00 -+// 45382 녆 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0b,0x04,0x00,0x04,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0x00,0x06,0x10,0x24,0xc4,0x28,0x00 -+// 45383 녇 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x3c,0x04,0x04,0x3c,0x04,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 45384 녈 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0xbc,0x04,0x18,0x04,0x0c,0x00,0x00,0xfe,0x00 -+// 45385 녉 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x44,0x24,0x04,0xbc,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45386 녊 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x05,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0xa4,0xa4,0xa4,0x24,0x24,0x30,0x00 -+// 45387 녋 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x3c,0x04,0xcc,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 45388 녌 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0x88,0x88,0x88,0x14,0x22,0x02,0x00 -+// 45389 녍 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0x2c,0xa0,0xa0,0x20,0x20,0xbe,0x00 -+// 45390 녎 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x0f,0x00,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x04,0x34,0x04,0x6c,0x08,0x08,0x28,0x08,0x4e,0x00 -+// 45391 녏 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0b,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x2c,0x04,0x04,0x3c,0x04,0x18,0x06,0x18,0x24,0x20,0x24,0x00 -+// 45392 념 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x06,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x8c,0x00 -+// 45393 녑 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0d,0x04,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x04,0x3c,0x04,0x0c,0x04,0x84,0x04,0x04,0xfc,0x00 -+// 45394 녒 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x3c,0x04,0x88,0x08,0x88,0x14,0xa2,0x42,0x00 -+// 45395 녓 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x04,0x3c,0x04,0x04,0x20,0x60,0x48,0x84,0x02,0x00 -+// 45396 녔 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0x08,0x88,0x08,0x94,0x62,0x02,0x00 -+// 45397 녕 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x3c,0x04,0x04,0xbc,0x04,0x04,0x30,0x84,0x84,0x84,0x78,0x00 -+// 45398 녖 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0d,0x04,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0x34,0x04,0x04,0xbc,0x04,0x00,0xfc,0x20,0x70,0x8c,0x02,0x00 -+// 45399 녗 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0x60,0x00,0x60,0x70,0x8c,0x02,0x00 -+// 45400 녘 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x04,0x3c,0x04,0x04,0xc4,0x04,0xf4,0x04,0x04,0x00 -+// 45401 녙 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0x3c,0x04,0x1c,0x00,0x00,0x00,0x00,0xbe,0x00 -+// 45402 녚 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x09,0x04,0x00,0x02,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x3c,0x04,0x00,0x00,0x10,0x10,0x10,0xfe,0x00 -+// 45403 녛 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x04,0x3c,0x04,0x00,0xfe,0x60,0x88,0x88,0x90,0x00 -+// 45404 녜 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 45405 녝 ; -+,0x00,0x00,0x00,0x10,0x09,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0xe4,0x24,0x24,0xa4,0x24,0x00,0x2c,0x04,0x04,0x04,0x04,0x00 -+// 45406 녞 ; -+,0x00,0x00,0x00,0x18,0x09,0x08,0x08,0x0f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45407 녟 ; -+,0x00,0x00,0x00,0x18,0x09,0x08,0x08,0x0b,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0x00,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 45408 녠 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0xa4,0x24,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 45409 녡 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x04,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x04,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x00,0x58,0x10,0x18,0xa4,0x42,0x00 -+// 45410 녢 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x64,0x24,0x64,0x24,0x24,0xe4,0x24,0x00,0x96,0x10,0x44,0x44,0x38,0x00 -+// 45411 녣 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x64,0x24,0x24,0xa4,0x24,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 45412 녤 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 45413 녥 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0xa4,0x24,0x84,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45414 녦 ; -+,0x00,0x00,0x00,0x00,0x0d,0x04,0x04,0x07,0x00,0x07,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 45415 녧 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0xa4,0x24,0x0c,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 45416 녨 ; -+,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x00,0x00,0x08,0x64,0x24,0xe4,0x24,0x24,0x24,0x24,0x08,0x88,0x88,0x14,0x02,0x82,0x00 -+// 45417 녩 ; -+,0x00,0x00,0x00,0x00,0x0d,0x04,0x04,0x07,0x00,0x0f,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0xbc,0xa0,0xa4,0x20,0x20,0x3e,0x00 -+// 45418 녪 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x07,0x00,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x64,0x24,0x24,0xe4,0x24,0x2c,0x00,0x28,0x28,0x08,0x4e,0x00 -+// 45419 녫 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0x18,0x06,0x10,0x24,0x24,0x24,0x00 -+// 45420 녬 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x00,0x8c,0x04,0x84,0x84,0xbc,0x00 -+// 45421 녭 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0xa4,0x24,0x0c,0x04,0x84,0x04,0x04,0xfc,0x00 -+// 45422 녮 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x0f,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0x88,0x88,0x98,0x94,0xa6,0xc2,0x00 -+// 45423 녯 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x64,0x24,0x24,0x24,0x24,0xa4,0x24,0x04,0x30,0x20,0x50,0x84,0x02,0x00 -+// 45424 녰 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x02,0x00,0x08,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x08,0x08,0x98,0x24,0x02,0x00 -+// 45425 녱 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0xa4,0x24,0x04,0x34,0x84,0x84,0x84,0x78,0x00 -+// 45426 녲 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0b,0x04,0x00,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x64,0x24,0x24,0xe4,0x24,0x04,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 45427 녳 ; -+,0x00,0x00,0x00,0x00,0x0d,0x04,0x04,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x0c,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0xe0,0x00,0xfc,0x60,0x98,0x06,0x00 -+// 45428 녴 ; -+,0x00,0x00,0x00,0x18,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x0c,0x04,0x04,0xe4,0x04,0x04,0x00 -+// 45429 녵 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0xa4,0x24,0x04,0x00,0x00,0x3c,0x00,0xfe,0x00 -+// 45430 녶 ; -+,0x00,0x00,0x00,0x10,0x09,0x08,0x08,0x0b,0x04,0x00,0x07,0x01,0x00,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0xe4,0x24,0x24,0xe4,0x24,0x04,0x80,0x18,0x80,0x90,0xfe,0x00 -+// 45431 녷 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x0f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x64,0x24,0x24,0x24,0x24,0x60,0xee,0x60,0x88,0x08,0x90,0x00 -+// 45432 노 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x80,0x00,0x00,0xff,0x00,0x00,0x00 -+// 45433 녹 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x00,0xc7,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 45434 녺 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x40,0xdf,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00 -+// 45435 녻 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x00,0xc6,0x00,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 45436 논 ; -+,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc0,0x40,0xc7,0x00,0x00,0x00,0x00,0x0c,0x00,0x00 -+// 45437 녽 ; -+,0x00,0x08,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x40,0x40,0xdf,0x00,0x0c,0x10,0x20,0x28,0x44,0x80,0x00 -+// 45438 녾 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x3f,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xc0,0x00,0xfe,0x00,0x00,0xd6,0x38,0x44,0x44,0x38,0x00 -+// 45439 녿 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x40,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00 -+// 45440 놀 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xcf,0x00,0xf8,0x00,0x18,0x00,0x00,0x00,0x00 -+// 45441 놁 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x1f,0x00,0x0f,0x01,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xce,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45442 놂 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x0f,0x01,0x09,0x08,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x00,0xce,0x00,0x4c,0x44,0x04,0x00,0x2c,0x00,0x00 -+// 45443 놃 ; -+,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x1f,0x00,0x0f,0x01,0x01,0x04,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0xd8,0x00,0x00,0xce,0x00,0x4c,0x04,0x2c,0x04,0x24,0x04,0x00 -+// 45444 놄 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x0f,0x00,0x09,0x04,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x40,0xee,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 45445 놅 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x18,0xc0,0x00,0xee,0x00,0x78,0x40,0x68,0x40,0x40,0x00,0x00 -+// 45446 놆 ; -+,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x18,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0xd8,0x00,0xc0,0x00,0x00,0x4c,0x08,0x48,0x28,0x00,0x00,0x00 -+// 45447 놇 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x00,0xee,0x30,0x00,0x70,0x28,0x44,0x44,0x38,0x00 -+// 45448 놈 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x18,0xc0,0x00,0xc3,0x00,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 45449 놉 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xc0,0x00,0xee,0x00,0x10,0x10,0x10,0x00,0xf0,0x00,0x00 -+// 45450 놊 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x01,0x0c,0x05,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0xef,0x00,0x98,0x90,0x98,0xa4,0x86,0x00,0x00 -+// 45451 놋 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xc0,0x00,0x80,0x80,0xc0,0x30,0x08,0x04,0x00 -+// 45452 놌 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x02,0x03,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x00,0xff,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 45453 농 ; -+,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x18,0x80,0x80,0xc3,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x00 -+// 45454 놎 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x40,0x40,0xc7,0x00,0x08,0xc0,0xc0,0x30,0x18,0x00,0x00 -+// 45455 놏 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x3f,0x00,0x01,0x00,0x0c,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x38,0xc0,0x00,0xff,0x00,0xc0,0x00,0xc0,0xe0,0x18,0x04,0x00 -+// 45456 놐 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x40,0xde,0x00,0x18,0x08,0x08,0x88,0x08,0x08,0x00 -+// 45457 놑 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x1f,0x00,0x06,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x40,0x40,0xff,0x00,0xf0,0x00,0x30,0x00,0x00,0xf8,0x00 -+// 45458 높 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x00,0xdf,0x00,0x08,0x20,0x10,0x20,0x20,0x2c,0x00 -+// 45459 놓 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x10,0x01,0x00,0x0f,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x18,0x80,0xc2,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x00 -+// 45460 놔 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x03,0x00,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x48,0x08,0x0e,0x38,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45461 놕 ; -+,0x00,0x00,0x00,0x10,0x00,0x08,0x03,0x02,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0a,0x18,0x88,0x00,0xb0,0x10,0x10,0x10,0x10,0x00 -+// 45462 놖 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x03,0x01,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x0a,0x38,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 45463 놗 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x48,0x0b,0x38,0x08,0x00,0x10,0x10,0x38,0x24,0x04,0x00 -+// 45464 놘 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x0f,0x02,0x02,0x1f,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0xc8,0x0f,0x38,0x08,0x08,0x00,0x00,0x00,0xbc,0x00 -+// 45465 놙 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x03,0x1e,0x00,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x10,0x18,0x08,0x08,0xc8,0x0e,0x78,0x08,0x0c,0x20,0x20,0x50,0x88,0x04,0x00 -+// 45466 놚 ; -+,0x00,0x00,0x00,0x10,0x00,0x08,0x02,0x03,0x1e,0x00,0x18,0x09,0x08,0x0a,0x08,0x00,0x00,0x10,0x08,0x08,0x08,0xc8,0x0f,0x78,0x08,0x70,0x00,0xe0,0x50,0x88,0x50,0x00 -+// 45467 놛 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x0a,0x38,0x08,0x00,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 45468 놜 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x02,0x03,0x3e,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x0e,0x78,0x08,0x00,0x10,0x10,0x00,0x00,0xb8,0x00 -+// 45469 놝 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x3e,0x00,0x0f,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0xc8,0x0f,0x78,0x08,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 45470 놞 ; -+,0x00,0x00,0x00,0x18,0x08,0x0d,0x02,0x03,0x1c,0x00,0x03,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0xc8,0x1e,0xd8,0x00,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 45471 놟 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x03,0x03,0x1e,0x00,0x0f,0x00,0x18,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x0e,0x78,0x08,0x00,0xc8,0x48,0x48,0x48,0x48,0x00 -+// 45472 놠 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x03,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x0e,0x78,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 45473 놡 ; -+,0x00,0x00,0x00,0x18,0x08,0x0d,0x02,0x03,0x1c,0x00,0x03,0x00,0x18,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x1e,0xd8,0x00,0x00,0x40,0x40,0x40,0x40,0x78,0x00 -+// 45474 놢 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x02,0x03,0x1c,0x02,0x00,0x02,0x08,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x1e,0xf8,0x00,0x08,0x10,0x48,0x50,0x10,0x80,0x00 -+// 45475 놣 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x02,0x03,0x1e,0x00,0x0f,0x00,0x0e,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x0e,0x78,0x00,0x30,0x00,0x70,0x38,0x40,0x48,0x00 -+// 45476 놤 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x03,0x01,0x1f,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x0a,0x38,0x08,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 45477 놥 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x02,0x03,0x1e,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x0e,0x78,0x00,0x00,0x08,0xf8,0x08,0x10,0x00,0x00 -+// 45478 놦 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x02,0x03,0x1e,0x00,0x09,0x0f,0x08,0x0d,0x08,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x0e,0x78,0x00,0x10,0x90,0x90,0xa8,0x04,0x44,0x00 -+// 45479 놧 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x0f,0x01,0x03,0x1c,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0xce,0x08,0xc8,0x08,0x40,0x40,0x90,0x08,0x04,0x00 -+// 45480 놨 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x03,0x1e,0x00,0x02,0x02,0x03,0x04,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x0e,0x78,0x08,0x00,0x10,0x10,0x38,0xc4,0x44,0x00 -+// 45481 놩 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x03,0x01,0x07,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x18,0x88,0x08,0x60,0x10,0x00,0x10,0xf0,0x00 -+// 45482 놪 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x03,0x02,0x1f,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x18,0x00,0x00,0x78,0x40,0xe0,0x18,0x08,0x00 -+// 45483 놫 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x02,0x03,0x1c,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x1e,0xf8,0x00,0x40,0x00,0xe0,0xc0,0x30,0x0c,0x00 -+// 45484 놬 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x03,0x02,0x1f,0x00,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0a,0x38,0x08,0x00,0x90,0x10,0xd0,0x10,0x00,0x00 -+// 45485 놭 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x03,0x02,0x1f,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x0a,0x38,0x08,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 45486 놮 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x03,0x03,0x1f,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x08,0x08,0x48,0x0a,0x38,0x08,0x00,0xe0,0x30,0x00,0x20,0xfc,0x00 -+// 45487 놯 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x03,0x1e,0x00,0x00,0x04,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x0f,0x70,0x00,0xc0,0x00,0xc0,0x30,0x10,0xa0,0x00 -+// 45488 놰 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x0f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0xa4,0x2c,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 45489 놱 ; -+,0x00,0x00,0x00,0x08,0x08,0x0c,0x02,0x02,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x3c,0x24,0x24,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 45490 놲 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1f,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xbc,0x84,0x84,0x84,0x00,0x00 -+// 45491 놳 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1f,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x10,0x88,0x98,0xa4,0xc2,0x00 -+// 45492 놴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0f,0x02,0x02,0x1e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0xa4,0x34,0xe4,0x24,0x24,0x04,0x00,0x00,0x04,0x00 -+// 45493 놵 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x06,0x02,0x1f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0x3c,0x24,0xa4,0x00,0xfc,0x10,0x30,0x4c,0x84,0x00 -+// 45494 놶 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1e,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x3c,0x64,0x24,0x20,0x00,0xfc,0x38,0x44,0x68,0x00 -+// 45495 놷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x07,0x02,0x07,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0xbc,0x24,0xa4,0x00,0x00,0x00,0x00,0x00,0xdc,0x00 -+// 45496 놸 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1f,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x08,0x08,0x78,0x00,0xfe,0x00 -+// 45497 놹 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x02,0x1c,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0xe4,0x24,0x00,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 45498 놺 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x02,0x1e,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x34,0x04,0x84,0x14,0x64,0x04,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 45499 놻 ; -+,0x00,0x00,0x00,0x08,0x08,0x0c,0x02,0x03,0x1e,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x64,0x04,0x00,0xa4,0x24,0x24,0x24,0x34,0x00 -+// 45500 놼 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x02,0x1e,0x00,0x04,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0xa4,0x3c,0x64,0x24,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 45501 놽 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1e,0x00,0x0f,0x01,0x0d,0x08,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0x64,0x24,0x00,0x6c,0x20,0x38,0x20,0x3c,0x00 -+// 45502 놾 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x02,0x02,0x1c,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0xe4,0x24,0x00,0x10,0x48,0x28,0x20,0xc4,0x00 -+// 45503 놿 ; -+,0x00,0x00,0x00,0x08,0x08,0x0c,0x02,0x02,0x1e,0x00,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0x34,0x64,0x24,0x38,0x00,0x58,0x3c,0x04,0x2c,0x00 -+// 45504 뇀 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x0f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x2c,0x24,0xa4,0x00,0x0c,0x04,0x00,0x08,0x80,0x00 -+// 45505 뇁 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x2c,0x64,0x24,0x00,0x04,0x8c,0x04,0x04,0x8c,0x00 -+// 45506 뇂 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1c,0x00,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x2c,0xe4,0x24,0x10,0x88,0x98,0x94,0xa6,0xc2,0x00 -+// 45507 뇃 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x03,0x02,0x03,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0x24,0xa4,0x04,0x60,0x40,0xb0,0x08,0x04,0x00 -+// 45508 뇄 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x6c,0x24,0x24,0xa4,0x2c,0x64,0x24,0x00,0x08,0x08,0x98,0x24,0x42,0x00 -+// 45509 뇅 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x07,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0xb4,0x24,0xe4,0x04,0x30,0x88,0x84,0x88,0x78,0x00 -+// 45510 뇆 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x34,0x24,0x24,0x00,0x00,0x40,0x60,0x98,0x0c,0x00 -+// 45511 뇇 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1e,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0x64,0x24,0xa0,0x00,0xf0,0x60,0x98,0x04,0x00 -+// 45512 뇈 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x02,0x1f,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x24,0x04,0x04,0x04,0x14,0x24,0x84,0x00,0x0c,0x04,0x1c,0x04,0x04,0x00 -+// 45513 뇉 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x02,0x02,0x1c,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0xe4,0x24,0x00,0x7c,0x00,0x78,0x00,0xfc,0x00 -+// 45514 뇊 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x03,0x02,0x1f,0x00,0x03,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0x24,0xa4,0x00,0x1c,0x10,0x10,0x90,0xfe,0x00 -+// 45515 뇋 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x02,0x02,0x1e,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x6c,0x24,0x24,0xa4,0x2c,0xe4,0x24,0x00,0x00,0xe0,0xb0,0x10,0xb0,0x00 -+// 45516 뇌 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x01,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x68,0x08,0x08,0x28,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45517 뇍 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x01,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x0c,0xc4,0x00,0x08,0x0c,0x04,0x00,0x00,0x00 -+// 45518 뇎 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x01,0x01,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x0c,0x84,0x00,0xb8,0x84,0x84,0x80,0x80,0x00 -+// 45519 뇏 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x01,0x01,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0x0c,0x84,0x00,0x98,0x88,0x98,0xa4,0xc2,0x00 -+// 45520 뇐 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x07,0x01,0x01,0x07,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0xe4,0x04,0x0c,0xc4,0x04,0x00,0x00,0x00,0x00,0x00 -+// 45521 뇑 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x00,0x0f,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x84,0x9c,0x84,0x04,0x58,0x10,0x18,0xa4,0x42,0x00 -+// 45522 뇒 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x01,0x1c,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x04,0x38,0x06,0x10,0x04,0x44,0x38,0x00 -+// 45523 뇓 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x84,0x8c,0x84,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 45524 뇔 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x01,0x01,0x1c,0x03,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0x64,0x0c,0xec,0x00,0xd8,0x08,0x08,0x00,0x00,0xfe,0x00 -+// 45525 뇕 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x01,0x01,0x1e,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0xec,0x00,0x00,0x88,0x08,0x08,0x00,0x00,0x00 -+// 45526 뇖 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1e,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xf4,0x04,0x00,0xa4,0x24,0x24,0x24,0x20,0x00 -+// 45527 뇗 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x01,0x01,0x1e,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0xfc,0x04,0x00,0xe4,0x2c,0x24,0x24,0x28,0x00 -+// 45528 뇘 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1e,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xec,0x04,0x00,0x88,0x98,0x18,0x24,0x42,0x00 -+// 45529 뇙 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x01,0x01,0x1c,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0xe4,0x00,0x00,0xa0,0x20,0x20,0x20,0x3c,0x00 -+// 45530 뇚 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x01,0x1e,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x84,0xf4,0x04,0x04,0x00,0x08,0x28,0x08,0x40,0x00 -+// 45531 뇛 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1e,0x00,0x07,0x00,0x05,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xec,0x04,0x18,0x80,0x18,0x3c,0x24,0x24,0x00 -+// 45532 뇜 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x01,0x01,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x0c,0x84,0x00,0x9c,0x08,0x08,0x08,0x00,0x00 -+// 45533 뇝 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0xac,0x04,0x08,0x04,0xfc,0x04,0x0c,0x00,0x00 -+// 45534 뇞 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1c,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x00,0x08,0x88,0x88,0x94,0xa6,0x02,0x00 -+// 45535 뇟 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x0c,0xc0,0x00,0x60,0x60,0x50,0x88,0x04,0x00 -+// 45536 뇠 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x01,0x01,0x1f,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x2c,0x04,0x00,0x88,0x88,0x98,0x64,0x02,0x00 -+// 45537 뇡 ; -+,0x00,0x00,0x00,0x08,0x08,0x04,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0x0c,0xc4,0x04,0x30,0x88,0x84,0x88,0xf8,0x00 -+// 45538 뇢 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0x84,0x00,0x7c,0x60,0x70,0x88,0x04,0x00 -+// 45539 뇣 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1c,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x04,0xc0,0x00,0xf8,0x60,0x98,0x06,0x00 -+// 45540 뇤 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x01,0x01,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0x0c,0x04,0x00,0xcc,0x0c,0xec,0x04,0x00,0x00 -+// 45541 뇥 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x01,0x01,0x1e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x84,0xbc,0x04,0x00,0x7c,0x00,0x38,0x00,0xfc,0x00 -+// 45542 뇦 ; -+,0x00,0x00,0x00,0x08,0x08,0x04,0x01,0x01,0x1f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x0c,0x04,0x04,0x64,0x04,0x1c,0x84,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 45543 뇧 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x01,0x01,0x1e,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x0c,0xec,0x00,0x60,0x00,0x60,0x90,0x08,0xf0,0x00 -+// 45544 뇨 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x02,0x02,0x02,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x30,0x10,0x10,0xf7,0x00,0x00,0x00 -+// 45545 뇩 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x03,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x32,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 45546 뇪 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x03,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x32,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 45547 뇫 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0x22,0x00,0x30,0x10,0x30,0x28,0x44,0x80,0x00 -+// 45548 뇬 ; -+,0x00,0x00,0x0c,0x04,0x04,0x06,0x02,0x02,0x03,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x7f,0x00,0x00,0x00,0x00,0x18,0x00,0x00 -+// 45549 뇭 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x20,0x20,0x26,0x00,0x1c,0x20,0x20,0x10,0x48,0x04,0x00 -+// 45550 뇮 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x20,0x20,0xfe,0x00,0x00,0xb4,0x30,0x40,0x48,0x30,0x00 -+// 45551 뇯 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x02,0x02,0x18,0x00,0x0f,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0x00,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00 -+// 45552 뇰 ; -+,0x00,0x00,0x0c,0x04,0x04,0x03,0x02,0x02,0x10,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x22,0x00,0x30,0x00,0x18,0x00,0x00,0x00,0x00 -+// 45553 뇱 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x0f,0x01,0x09,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x18,0x20,0x20,0xa6,0x00,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45554 뇲 ; -+,0x00,0x00,0x08,0x04,0x04,0x03,0x02,0x03,0x00,0x0f,0x01,0x09,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xb8,0x20,0x26,0x00,0x48,0x40,0x40,0x48,0x78,0x00,0x00 -+// 45555 뇳 ; -+,0x00,0x00,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x0f,0x01,0x03,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0xfe,0x00,0xc8,0x40,0x68,0x40,0x68,0x00,0x00 -+// 45556 뇴 ; -+,0x00,0x00,0x0c,0x04,0x04,0x03,0x02,0x03,0x00,0x0f,0x01,0x01,0x00,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x36,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 45557 뇵 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x0f,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0xb6,0x00,0x78,0x40,0x68,0x40,0x40,0x00,0x00 -+// 45558 뇶 ; -+,0x00,0x00,0x0c,0x04,0x06,0x02,0x02,0x1f,0x00,0x0f,0x01,0x03,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0xa6,0x00,0x48,0x00,0x48,0x20,0x10,0x00,0x00 -+// 45559 뇷 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x0f,0x01,0x09,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xb6,0x30,0x00,0x70,0x38,0x44,0x48,0x30,0x00 -+// 45560 뇸 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x22,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 45561 뇹 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0xb6,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 45562 뇺 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x01,0x08,0x0c,0x08,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0xa7,0x00,0x98,0x90,0x98,0xa4,0xc4,0x00,0x00 -+// 45563 뇻 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x02,0x00,0x1f,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0xfe,0x00,0x80,0xc0,0x30,0x08,0x00,0x00 -+// 45564 뇼 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x03,0x00,0x02,0x03,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x3f,0x00,0x10,0x10,0x30,0xa8,0x44,0x80,0x00 -+// 45565 뇽 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x00,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x20,0xf7,0x00,0x40,0x10,0x10,0x10,0xe0,0x00 -+// 45566 뇾 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x22,0x00,0x08,0x80,0xc0,0x20,0x18,0x00,0x00 -+// 45567 뇿 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x01,0x00,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0xfe,0x00,0xc0,0x08,0x80,0xe0,0x18,0x00,0x00 -+// 45568 눀 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0x22,0x00,0x00,0x08,0x08,0x88,0x08,0x08,0x00 -+// 45569 눁 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x03,0x00,0x07,0x04,0x04,0x04,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0x26,0x00,0xf0,0x00,0x10,0x00,0x00,0xf0,0x00 -+// 45570 눂 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x02,0x03,0x00,0x00,0x00,0x02,0x01,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0x36,0x00,0x18,0x00,0x20,0x20,0x20,0x00,0x00 -+// 45571 눃 ; -+,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1f,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0xfe,0x00,0xc0,0x98,0xc0,0x20,0x20,0xe0,0x00 -+// 45572 누 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x40,0x00,0x00,0x00,0x00,0x00 -+// 45573 눅 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xce,0x80,0x80,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 45574 눆 ; -+,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x3f,0x00,0x00,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xc2,0x80,0x80,0x78,0x08,0x08,0x00,0x00,0x00 -+// 45575 눇 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xce,0x80,0x80,0x30,0x10,0x38,0x44,0x80,0x00 -+// 45576 눈 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x00,0x10,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00 -+// 45577 눉 ; -+,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x18,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xc0,0x80,0x84,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 45578 눊 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x02,0xc0,0x80,0x70,0x04,0x30,0x48,0x40,0x78,0x00 -+// 45579 눋 ; -+,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x10,0x00,0x00,0x05,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x02,0x80,0x80,0x80,0xf8,0x00,0x00,0x00,0xfc,0x00 -+// 45580 눌 ; -+,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xbc,0x00,0x03,0x80,0x80,0xd0,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 45581 눍 ; -+,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0xbc,0x00,0x02,0xc0,0x80,0x00,0x88,0x08,0x08,0x08,0x00,0x00 -+// 45582 눎 ; -+,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0xbc,0x00,0x07,0x80,0x80,0x44,0x24,0x24,0x24,0x24,0x20,0x00 -+// 45583 눏 ; -+,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x02,0x80,0x80,0x88,0x44,0x3c,0x04,0x2c,0x00,0x00 -+// 45584 눐 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x18,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xc0,0x80,0x00,0x90,0x10,0x28,0x44,0x00,0x00 -+// 45585 눑 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0xbc,0x00,0x06,0x80,0x80,0x00,0x60,0x00,0x38,0x00,0x00,0x00 -+// 45586 눒 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x02,0x80,0x80,0x00,0x00,0x48,0x28,0x00,0x40,0x00 -+// 45587 눓 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x02,0xc0,0x00,0x30,0x84,0x10,0x48,0x40,0x38,0x00 -+// 45588 눔 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x18,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x80,0x80,0x80,0x38,0x10,0x10,0x10,0x00,0x00 -+// 45589 눕 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1e,0x00,0x00,0x04,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xc0,0x80,0x10,0x10,0xf0,0x10,0xf0,0x00,0x00 -+// 45590 눖 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x01,0x08,0x05,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x06,0x80,0x80,0x90,0x90,0x90,0xa8,0x84,0xc0,0x00 -+// 45591 눗 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xcf,0x00,0x80,0xc0,0x80,0x20,0x18,0x04,0x00 -+// 45592 눘 ; -+,0x00,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xbc,0x00,0x03,0x80,0x00,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 45593 눙 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x80,0x80,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 45594 눚 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc2,0x80,0x80,0xfc,0xc0,0x20,0x18,0x04,0x00 -+// 45595 눛 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x01,0x00,0x06,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0xbc,0x00,0x06,0x80,0x80,0xe0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 45596 눜 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xc2,0x80,0x80,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 45597 눝 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x00,0x06,0x04,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0xc0,0x80,0x00,0x38,0x00,0x30,0x00,0xf8,0x00 -+// 45598 눞 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xc0,0x80,0x80,0xb8,0x20,0x20,0x20,0xfc,0x00 -+// 45599 눟 ; -+,0x00,0x08,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x02,0xc0,0x80,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 45600 눠 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0f,0x00,0x00,0x3f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0xe4,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 45601 눡 ; -+,0x00,0x00,0x00,0x08,0x04,0x03,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x3c,0x04,0x00,0x04,0x04,0x04,0x04,0x00 -+// 45602 눢 ; -+,0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x3c,0x04,0x3c,0x84,0x84,0x84,0x00,0x00 -+// 45603 눣 ; -+,0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x7c,0x00,0x18,0x88,0x98,0x94,0xa2,0x00 -+// 45604 눤 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x00,0x1d,0x01,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x2c,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 45605 눥 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x07,0x01,0x01,0x08,0x0c,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x7c,0x04,0xde,0x10,0x10,0x24,0x42,0x00 -+// 45606 눦 ; -+,0x00,0x00,0x00,0x08,0x04,0x00,0x00,0x1f,0x01,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0x04,0x04,0x04,0x38,0x00,0x90,0x38,0x44,0x4c,0x00 -+// 45607 눧 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1f,0x01,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0xe4,0x04,0x84,0x7c,0x04,0x00,0x00,0x00,0x00,0x9c,0x00 -+// 45608 눨 ; -+,0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x1f,0x01,0x01,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x3c,0x04,0x0c,0x00,0xfc,0x00,0x0e,0x00 -+// 45609 눩 ; -+,0x00,0x00,0x00,0x08,0x04,0x00,0x00,0x1f,0x01,0x01,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0x04,0x0c,0x04,0x0c,0x84,0x84,0x04,0x04,0x00,0x00 -+// 45610 눪 ; -+,0x00,0x00,0x00,0x0c,0x04,0x03,0x00,0x1f,0x01,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x04,0x00,0xac,0x24,0x24,0x24,0x24,0x00 -+// 45611 눫 ; -+,0x00,0x00,0x00,0x0c,0x04,0x00,0x00,0x1f,0x01,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 45612 눬 ; -+,0x00,0x00,0x00,0x08,0x04,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x0c,0x04,0x04,0x04,0x04,0x0c,0x04,0x18,0x88,0x98,0x14,0x26,0x42,0x00 -+// 45613 눭 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x2c,0x00,0x6c,0x20,0x3c,0x20,0x3c,0x00 -+// 45614 눮 ; -+,0x00,0x00,0x00,0x0c,0x04,0x00,0x00,0x1f,0x01,0x03,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x0c,0x04,0x0c,0x00,0x48,0x28,0x00,0xc4,0x00 -+// 45615 눯 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x38,0x00,0x78,0x3c,0x24,0x24,0x00 -+// 45616 눰 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x03,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0xe4,0x04,0x04,0x7c,0x00,0x08,0x08,0x08,0x08,0x78,0x00 -+// 45617 눱 ; -+,0x00,0x00,0x00,0x0c,0x04,0x06,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x3c,0x0c,0x04,0x84,0x04,0x04,0xfc,0x00 -+// 45618 눲 ; -+,0x00,0x00,0x00,0x08,0x0c,0x00,0x00,0x1f,0x01,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0x04,0x04,0x04,0x04,0x0c,0x04,0x08,0x88,0x88,0x94,0xa6,0x82,0x00 -+// 45619 눳 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x3c,0x04,0x60,0x20,0x50,0x88,0x04,0x00 -+// 45620 눴 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0x04,0x04,0x00,0x88,0x08,0x98,0x54,0x22,0x00 -+// 45621 눵 ; -+,0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x3c,0x04,0x20,0x88,0x84,0x80,0xd8,0x00 -+// 45622 눶 ; -+,0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x7c,0x00,0x04,0x60,0x60,0x90,0x0c,0x00 -+// 45623 눷 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x1f,0x01,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0xe4,0x00,0xe0,0x60,0x98,0x06,0x00 -+// 45624 눸 ; -+,0x00,0x00,0x00,0x08,0x00,0x06,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x04,0x3c,0x04,0x08,0x04,0x1c,0x04,0x00,0x00 -+// 45625 눹 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x1b,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x0c,0x04,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x00 -+// 45626 눺 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x3f,0x00,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x44,0x04,0x04,0x7c,0x04,0xfc,0x10,0x10,0x90,0xd6,0x00 -+// 45627 눻 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x1b,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0xe4,0x00,0xe0,0x90,0x08,0x90,0x00 -+// 45628 눼 ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x0f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x04,0x04,0x04,0x04,0x04,0x24,0x24,0x04,0x04,0x04,0x04,0x00 -+// 45629 눽 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x02,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x14,0x94,0x14,0x14,0x74,0x04,0x00,0xcc,0x04,0x04,0x04,0x04 -+// 45630 눾 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x04,0x04,0x84,0x04,0x04,0x64,0x04,0x04,0x84,0x84,0x84,0x84,0x00 -+// 45631 눿 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x14,0x94,0x14,0x14,0x74,0x04,0x00,0x88,0x88,0x94,0xa2,0x00 -+// 45632 뉀 ; -+,0x00,0x00,0x00,0x10,0x08,0x09,0x00,0x00,0x1c,0x00,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 45633 뉁 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x02,0x00,0x08,0x08,0x08,0x0d,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0xe4,0x10,0x30,0x48,0x84,0x00 -+// 45634 뉂 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1e,0x02,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x30,0x00,0xb0,0x28,0x44,0x78,0x00 -+// 45635 뉃 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x24,0x24,0x64,0x24,0x00,0x00,0x00,0x00,0xdc,0x00 -+// 45636 뉄 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x02,0x02,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0xa4,0x24,0x24,0x64,0x20,0x08,0x08,0x00,0x00,0xfe,0x00 -+// 45637 뉅 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x02,0x00,0x0f,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0xe4,0x04,0xac,0x04,0x04,0x00,0x00,0x00 -+// 45638 뉆 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1e,0x02,0x02,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x04,0x84,0x04,0x24,0x64,0x00,0xec,0x24,0x24,0x24,0x20,0x00 -+// 45639 뉇 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x02,0x02,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x64,0x08,0x64,0x2c,0x24,0x24,0x24,0x00 -+// 45640 뉈 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1e,0x02,0x02,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x04,0x84,0x04,0x24,0x64,0x04,0x88,0x90,0x18,0x24,0x42,0x00 -+// 45641 뉉 ; -+,0x00,0x00,0x00,0x08,0x08,0x03,0x00,0x1e,0x02,0x02,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x14,0x14,0x34,0x00,0x20,0x20,0x3c,0x20,0x3c,0x00 -+// 45642 뉊 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x64,0x00,0x50,0x08,0x08,0x00,0x40,0x00 -+// 45643 뉋 ; -+,0x00,0x00,0x00,0x08,0x08,0x03,0x00,0x1e,0x02,0x02,0x07,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0x24,0x38,0x00,0x18,0x24,0x24,0x24,0x00 -+// 45644 뉌 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x04,0x04,0x84,0x04,0x24,0x24,0x00,0x8c,0x04,0x04,0x00,0x80,0x00 -+// 45645 뉍 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x64,0x20,0x0c,0x8c,0x04,0x04,0x8c,0x00 -+// 45646 뉎 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1e,0x02,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x64,0x00,0x88,0x98,0x98,0xa4,0xc2,0x00 -+// 45647 뉏 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x14,0x14,0xf4,0x04,0x60,0x60,0x90,0x08,0x04,0x00 -+// 45648 뉐 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x24,0x24,0x04,0x84,0x04,0x04,0x64,0x04,0x08,0x08,0x98,0x24,0x42,0x00 -+// 45649 뉑 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x04,0x84,0x04,0x04,0xe4,0x00,0x20,0x88,0x80,0x88,0xf8,0x00 -+// 45650 뉒 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x00,0x08,0x40,0xe0,0x18,0x04,0x00 -+// 45651 뉓 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0xe4,0xe0,0x00,0x60,0x40,0x98,0x04,0x00 -+// 45652 뉔 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x2c,0x24,0x24,0xa4,0x24,0x24,0x24,0x00,0xcc,0x04,0x7c,0x04,0x00,0x00 -+// 45653 뉕 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0xa4,0x24,0x24,0x64,0x20,0xf8,0x00,0x38,0x00,0xfc,0x00 -+// 45654 뉖 ; -+,0x00,0x00,0x00,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x64,0x04,0xfc,0x10,0x10,0x10,0xf6,0x00 -+// 45655 뉗 ; -+,0x00,0x00,0x00,0x18,0x08,0x0f,0x00,0x1e,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0xa4,0x24,0x24,0xa4,0xe0,0x00,0x60,0x90,0x10,0xf0,0x00 -+// 45656 뉘 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x07,0x00,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0x04,0xe4,0x04,0x6c,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 45657 뉙 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x13,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0xe4,0x0c,0xc4,0x04,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 45658 뉚 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x03,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0xc4,0x04,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 45659 뉛 ; -+,0x00,0x00,0x00,0x08,0x00,0x07,0x00,0x03,0x09,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0xe4,0x0c,0x84,0x00,0x00,0x98,0x88,0x98,0xa4,0xc2,0x00 -+// 45660 뉜 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0x64,0x04,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00 -+// 45661 뉝 ; -+,0x00,0x00,0x00,0x08,0x04,0x07,0x00,0x00,0x1d,0x01,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0x04,0x04,0xe4,0x0c,0xc4,0x04,0x00,0xf4,0x10,0x10,0x2c,0x46,0x00 -+// 45662 뉞 ; -+,0x00,0x00,0x00,0x0c,0x04,0x03,0x00,0x1f,0x01,0x01,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0x84,0x04,0x38,0x04,0x30,0x28,0x44,0x68,0x00 -+// 45663 뉟 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x03,0x01,0x01,0x00,0x03,0x02,0x03,0x01,0x00,0x00,0x18,0x08,0x08,0x08,0xe8,0x08,0x88,0x08,0x00,0x18,0x00,0x00,0x00,0xbc,0x00 -+// 45664 뉠 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x07,0x01,0x01,0x00,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0xe8,0x08,0x88,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 45665 뉡 ; -+,0x00,0x00,0x00,0x08,0x04,0x03,0x00,0x1f,0x01,0x01,0x05,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x08,0x08,0x08,0xc8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45666 뉢 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x1f,0x01,0x01,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x0c,0x04,0x04,0xe4,0x0c,0x84,0x04,0x04,0xac,0x24,0x20,0x20,0x20,0x00 -+// 45667 뉣 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x03,0x09,0x01,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x0c,0x04,0x04,0xe4,0x0c,0x84,0x04,0x08,0xcc,0x2c,0x2c,0x24,0x28,0x00 -+// 45668 뉤 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x1f,0x01,0x01,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0x04,0x04,0x18,0x88,0x90,0x18,0x24,0x42,0x00 -+// 45669 뉥 ; -+,0x00,0x00,0x00,0x08,0x04,0x07,0x00,0x13,0x01,0x01,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x0c,0x04,0x04,0xe4,0x0c,0x84,0x04,0x00,0x60,0x20,0x20,0x20,0x1c,0x00 -+// 45670 뉦 ; -+,0x00,0x00,0x00,0x0c,0x04,0x03,0x00,0x1f,0x01,0x01,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0x84,0x04,0x0c,0x00,0x48,0x28,0x00,0xfc,0x00 -+// 45671 뉧 ; -+,0x00,0x00,0x00,0x08,0x04,0x07,0x00,0x1f,0x01,0x01,0x07,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x0c,0x04,0x04,0xe4,0x0c,0x84,0x04,0x38,0x00,0x10,0x2c,0x04,0x24,0x00 -+// 45672 뉨 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x01,0x09,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0xc4,0x04,0x00,0x9c,0x04,0x00,0x08,0x88,0x00 -+// 45673 뉩 ; -+,0x00,0x00,0x00,0x08,0x04,0x03,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0x04,0x04,0xe4,0x0c,0x84,0x04,0x08,0x04,0x0c,0x04,0x04,0x08,0x00 -+// 45674 뉪 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x1f,0x01,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0x04,0x04,0xe4,0x0c,0x84,0x04,0x08,0x88,0x88,0x90,0xa4,0x02,0x00 -+// 45675 뉫 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0xc4,0x04,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 45676 뉬 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x1f,0x01,0x01,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x18,0x08,0x08,0x08,0xe8,0x08,0x88,0x08,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 45677 뉭 ; -+,0x00,0x00,0x00,0x08,0x00,0x07,0x00,0x00,0x1d,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x00,0x00,0xe0,0x08,0xc8,0x00,0x00,0x20,0x88,0x80,0x88,0xd8,0x00 -+// 45678 뉮 ; -+,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x17,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x18,0x08,0x08,0x08,0xe8,0x08,0x88,0x08,0x00,0x0c,0x40,0x40,0x98,0x04,0x00 -+// 45679 뉯 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x1f,0x01,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0x84,0x04,0xc0,0x00,0x60,0x60,0x98,0x04,0x00 -+// 45680 뉰 ; -+,0x00,0x00,0x00,0x08,0x04,0x07,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0xc4,0x04,0x00,0x08,0x04,0x3c,0x00,0x00,0x00 -+// 45681 뉱 ; -+,0x00,0x00,0x00,0x08,0x04,0x03,0x00,0x1f,0x01,0x01,0x03,0x00,0x01,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0x04,0x00,0x00,0x78,0x00,0xf8,0x00,0xfc,0x00 -+// 45682 뉲 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x13,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0x84,0x04,0x04,0xfc,0x10,0x80,0x90,0xfe,0x00 -+// 45683 뉳 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x1f,0x01,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0x84,0x04,0x80,0x00,0x24,0x70,0x88,0x98,0x00 -+// 45684 뉴 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x07,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 45685 뉵 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x3f,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0xfe,0x10,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 45686 뉶 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x3f,0x02,0x02,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xfe,0x10,0x10,0x7c,0x04,0x04,0x04,0x00,0x00 -+// 45687 뉷 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x3e,0x10,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 45688 뉸 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x01,0x01,0x01,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0x00,0x00,0x08,0x00,0x00 -+// 45689 뉹 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x3f,0x02,0x02,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xb0,0x10,0x14,0x30,0x10,0x30,0x4c,0x84,0x00 -+// 45690 뉺 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x02,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x02,0x10,0x10,0x30,0x04,0x30,0x48,0x40,0x78,0x00 -+// 45691 뉻 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x1f,0x02,0x02,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xfc,0x10,0x10,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 45692 뉼 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x3c,0x00,0x02,0x30,0x10,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 45693 뉽 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x1a,0x02,0x02,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x3c,0x00,0x02,0x30,0x10,0x10,0xa8,0x88,0x08,0x08,0x08,0x00 -+// 45694 뉾 ; -+,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x03,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x0f,0x10,0x10,0x14,0x24,0x24,0x24,0x24,0x20,0x00 -+// 45695 뉿 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x12,0x02,0x02,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x02,0x10,0x10,0x08,0x24,0x2c,0x24,0x24,0x24,0x00 -+// 45696 늀 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1b,0x02,0x02,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x30,0x10,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 45697 늁 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x02,0x02,0x00,0x07,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x07,0x10,0x10,0x00,0x60,0x00,0x20,0x00,0x08,0x00 -+// 45698 늂 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x12,0x02,0x02,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x02,0x10,0x10,0x00,0x00,0x48,0x28,0x00,0x7c,0x00 -+// 45699 늃 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x02,0x02,0x02,0x09,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x02,0x10,0x10,0x30,0x04,0x10,0x08,0x44,0x38,0x00 -+// 45700 늄 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xfe,0x10,0x10,0x38,0x10,0x10,0x10,0x00,0x00 -+// 45701 늅 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x12,0x02,0x00,0x06,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x10,0x10,0x10,0x10,0xf0,0x10,0x10,0x00,0x00 -+// 45702 늆 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x02,0x02,0x01,0x08,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x02,0x10,0x10,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 45703 늇 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x02,0x02,0x02,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xfe,0x10,0x90,0xc0,0xc0,0x20,0x08,0x00,0x00 -+// 45704 늈 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x00,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x02,0x10,0x10,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 45705 늉 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x02,0x02,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0xff,0x10,0x10,0x70,0x10,0x10,0x10,0xe0,0x00 -+// 45706 늊 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x02,0x02,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0xfe,0x10,0x10,0xdc,0xc0,0xa0,0x18,0x04,0x00 -+// 45707 늋 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x1b,0x02,0x03,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x30,0x10,0xe0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 45708 늌 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x3f,0x02,0x02,0x06,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0xfe,0x10,0x00,0x08,0x08,0xe8,0x08,0x08,0x00 -+// 45709 늍 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x02,0x02,0x05,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x10,0x00,0xf0,0x00,0x00,0x00,0xf8,0x00 -+// 45710 늎 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x1f,0x02,0x02,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xfe,0x10,0x10,0xb8,0x20,0x00,0x20,0xac,0x00 -+// 45711 늏 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x1f,0x02,0x02,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xfe,0x10,0xf0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 45712 느 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x9f,0x00,0x00,0x00,0x00 -+// 45713 늑 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xfe,0x00,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 45714 늒 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xfe,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 45715 늓 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0xfe,0x00,0x30,0x10,0x30,0x28,0x44,0x80,0x00 -+// 45716 는 ; -+,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x1f,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0x0c,0x00,0x00 -+// 45717 늕 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x3c,0x10,0x20,0x30,0x44,0x00,0x00 -+// 45718 늖 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x18,0x00,0x00,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x02,0x00,0x00,0x00,0xb4,0x30,0x40,0x48,0x30,0x00 -+// 45719 늗 ; -+,0x00,0x00,0x0c,0x04,0x04,0x01,0x00,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x06,0x00,0x00,0xf8,0x00,0x00,0x08,0x00,0x00 -+// 45720 늘 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x06,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xff,0x00,0x00,0x10,0x10,0x00,0x00,0x18,0x00 -+// 45721 늙 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x0f,0x01,0x0d,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x00,0x00,0x38,0x08,0x08,0x08,0x08,0x00,0x00 -+// 45722 늚 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x80,0x00,0x4c,0x40,0x40,0x48,0x68,0x00,0x00 -+// 45723 늛 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x02,0x00,0x00,0x48,0x44,0x6c,0x44,0x4c,0x00,0x00 -+// 45724 늜 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x0f,0x00,0x09,0x04,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xfe,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 45725 늝 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x10,0x00,0x0f,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x02,0x00,0x00,0x78,0x40,0x78,0x40,0x40,0x00,0x00 -+// 45726 늞 ; -+,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x06,0x00,0x00,0x4c,0x08,0x48,0x28,0x00,0x00,0x00 -+// 45727 늟 ; -+,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x10,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x02,0x00,0x30,0x00,0x30,0x38,0x44,0x40,0x30,0x00 -+// 45728 늠 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x06,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 45729 늡 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xfe,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x00 -+// 45730 늢 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x01,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00,0x88,0x90,0x98,0xa4,0x84,0x00,0x00 -+// 45731 늣 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x80,0x00,0x80,0xc0,0x30,0x08,0x04,0x00 -+// 45732 늤 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x18,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 45733 능 ; -+,0x00,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x1f,0x00,0x01,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x80,0x00,0x60,0x10,0x10,0x10,0xc0,0x00 -+// 45734 늦 ; -+,0x00,0x00,0x0c,0x04,0x04,0x01,0x00,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x06,0x00,0x00,0xf8,0xc0,0x20,0x18,0x00,0x00 -+// 45735 늧 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x01,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xff,0x00,0xc0,0x0c,0xc0,0xa0,0x18,0x04,0x00 -+// 45736 늨 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0xfe,0x00,0x18,0x08,0x08,0x88,0x08,0x08,0x00 -+// 45737 늩 ; -+,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x18,0x00,0x07,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x02,0x00,0x00,0xf0,0x00,0xf0,0x00,0x08,0x00,0x00 -+// 45738 늪 ; -+,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0xfe,0x00,0x18,0x00,0x10,0x20,0x20,0x00,0x00 -+// 45739 늫 ; -+,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x1f,0x00,0x00,0x04,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xfe,0x80,0x00,0xc8,0xc0,0x00,0x20,0xe0,0x00 -+// 45740 늬 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0d,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0xe0,0x00,0x00,0x18,0x80,0x00,0x00,0x00,0x00,0x00 -+// 45741 늭 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x38,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45742 늮 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1e,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0xe0,0x08,0x78,0x00,0x00,0xa8,0x88,0x88,0x88,0x08,0x00 -+// 45743 늯 ; -+,0x00,0x00,0x00,0x08,0x08,0x0c,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x48,0x08,0x38,0x00,0x00,0x18,0x98,0x98,0xa4,0x42,0x00 -+// 45744 늰 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x07,0x00,0x00,0x1e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0xe4,0x0c,0xec,0x04,0x04,0x00,0x00,0x00,0x00,0x00 -+// 45745 늱 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1f,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0x3c,0x04,0x00,0xdc,0x10,0x18,0x24,0x42,0x00 -+// 45746 늲 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x00,0x1c,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x64,0x04,0xe4,0x00,0x30,0x0e,0x30,0x48,0x44,0x38,0x00 -+// 45747 늳 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x3c,0x04,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 45748 늴 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1c,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x0c,0xec,0x00,0x08,0x08,0x08,0x00,0x00,0xfe,0x00 -+// 45749 늵 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x00,0x1e,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0x7c,0x00,0x00,0x08,0x88,0x08,0x80,0x00,0x00 -+// 45750 늶 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x01,0x08,0x00,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0xe4,0x04,0xe4,0x04,0x00,0xa4,0x24,0x20,0x2c,0x20,0x00 -+// 45751 늷 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x00,0x1c,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x04,0x04,0xe4,0x04,0xf4,0x04,0x08,0x64,0x3c,0x24,0x2c,0x20,0x00 -+// 45752 늸 ; -+,0x00,0x00,0x00,0x08,0x00,0x07,0x00,0x00,0x1c,0x00,0x04,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0xec,0x00,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 45753 늹 ; -+,0x00,0x00,0x00,0x08,0x00,0x07,0x00,0x01,0x08,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x0c,0xe4,0x00,0x00,0x20,0x20,0x20,0x20,0x3c,0x00 -+// 45754 늺 ; -+,0x00,0x00,0x00,0x08,0x00,0x05,0x00,0x00,0x1c,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0xec,0x04,0x04,0x00,0x48,0x28,0x00,0xc4,0x00 -+// 45755 늻 ; -+,0x00,0x00,0x00,0x08,0x04,0x07,0x00,0x00,0x1c,0x00,0x07,0x01,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0xec,0x04,0x18,0x00,0x58,0x3c,0x04,0x24,0x00 -+// 45756 늼 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x3c,0x04,0x00,0x0c,0x04,0x00,0x08,0x00,0x00 -+// 45757 늽 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x00,0x1e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0x7c,0x00,0x08,0x08,0x08,0x00,0x08,0x08,0x00 -+// 45758 늾 ; -+,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x01,0x08,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0xe4,0x04,0xe4,0x04,0x08,0x88,0x88,0x14,0xa2,0x42,0x00 -+// 45759 늿 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x01,0x1c,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0xc4,0x0c,0xe4,0x04,0x20,0x20,0x50,0x88,0x04,0x00 -+// 45760 닀 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x0e,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x74,0x04,0x00,0x8c,0x88,0x5c,0x22,0x00,0x00 -+// 45761 닁 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0x1c,0xc4,0x04,0x30,0x88,0x84,0x80,0xd8,0x00 -+// 45762 닂 ; -+,0x00,0x00,0x00,0x08,0x08,0x04,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x04,0x04,0xe4,0x0c,0x7c,0x00,0x00,0x4c,0x40,0x60,0x88,0x04,0x00 -+// 45763 닃 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x3c,0x04,0x00,0x00,0x64,0x60,0x88,0x06,0x00 -+// 45764 닄 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x00,0x1e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x64,0x04,0x7c,0x04,0x00,0x0c,0x04,0x7c,0x04,0x04,0x00 -+// 45765 닅 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0x3c,0x04,0x00,0x7c,0x00,0x18,0x00,0xfc,0x00 -+// 45766 닆 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x00,0x1f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0x3c,0x04,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 45767 닇 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x64,0x04,0x34,0x04,0x70,0x06,0x70,0x88,0x88,0x70,0x00 -+// 45768 니 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x24,0x84,0x04,0x04,0x04,0x04,0x00 -+// 45769 닉 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0xc4,0x04,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 45770 닊 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x09,0x0e,0x00,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x0c,0xc4,0x04,0x00,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 45771 닋 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x09,0x0e,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0x00,0x88,0x98,0x90,0xa4,0xc2,0x00 -+// 45772 닌 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x09,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x1c,0xc4,0x04,0x04,0x00,0x00,0x00,0xcc,0x00 -+// 45773 닍 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0x00,0xd0,0x10,0x18,0x24,0x42,0x00 -+// 45774 닎 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x88,0x08,0x20,0x84,0x30,0x48,0x80,0x48,0x00 -+// 45775 닏 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x09,0x0e,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0xc8,0x08,0x00,0x08,0x00,0x00,0x00,0xdc,0x00 -+// 45776 닐 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x04,0x03,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0xf8,0x08,0x08,0x00,0x00,0x00,0x00 -+// 45777 닑 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x01,0x0c,0x04,0x05,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0x08,0x0c,0x00,0x00,0x00,0x00,0x00 -+// 45778 닒 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0x6c,0x24,0xa4,0x24,0x24,0x20,0x00 -+// 45779 닓 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x0c,0xc4,0x04,0x08,0x40,0x28,0x00,0x00,0x28,0x00 -+// 45780 닔 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x0f,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x0c,0x84,0x04,0x98,0x88,0x90,0x04,0x24,0x42,0x00 -+// 45781 닕 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x0f,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0xc8,0x08,0x78,0x00,0x28,0x20,0x20,0x3c,0x00 -+// 45782 닖 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x07,0x00,0x0f,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x0c,0xc4,0x04,0x04,0x00,0x08,0x28,0x00,0x44,0x00 -+// 45783 닗 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0xc8,0x08,0x30,0x04,0x10,0x24,0x04,0x28,0x00 -+// 45784 님 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0d,0x04,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x00,0x00,0x0c,0x00,0x08,0x08,0x00,0x00 -+// 45785 닙 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0x84,0x00,0x08,0x00,0x08,0x00,0x08,0x08,0x00 -+// 45786 닚 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0x98,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 45787 닛 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0x00,0x60,0x60,0x98,0x04,0x00,0x00 -+// 45788 닜 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x0c,0xc4,0x04,0x08,0x08,0x08,0x94,0x62,0x42,0x00 -+// 45789 닝 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0x20,0x70,0x88,0x00,0x88,0x70,0x00 -+// 45790 닞 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0d,0x04,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x0c,0xc4,0x04,0x00,0xfc,0x60,0x60,0x88,0x04,0x00 -+// 45791 닟 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x0c,0xc4,0x04,0xe0,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 45792 닠 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x06,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0xe4,0x04,0x00,0xc4,0x04,0xe4,0x04,0x04,0x00 -+// 45793 닡 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x0c,0xc4,0x04,0x0c,0x00,0x00,0x3c,0x00,0x9e,0x00 -+// 45794 닢 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x64,0x04,0x04,0xf0,0x10,0x90,0x90,0xfe,0x00 -+// 45795 닣 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0d,0x06,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0xc4,0x04,0x60,0xfe,0x60,0x98,0x08,0x90,0x00 -+// 45796 다 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x08,0x08,0x1e,0x48,0x08,0x08,0x08,0x08,0x08,0x00 -+// 45797 닥 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x1e,0x58,0x00,0x00,0xb8,0x08,0x18,0x18,0x10,0x00 -+// 45798 닦 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x1e,0xc8,0x00,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 45799 닧 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x0e,0x48,0x08,0x00,0x10,0x10,0x38,0x24,0x42,0x00 -+// 45800 단 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x08,0x0e,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0e,0xc8,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 45801 닩 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0c,0x00,0x09,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x1e,0xc8,0x08,0x00,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 45802 닪 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x1e,0x48,0x08,0x30,0x00,0xb0,0x48,0xc8,0x48,0x00 -+// 45803 닫 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0x58,0x08,0x00,0x38,0x00,0x00,0x00,0x3c,0x00 -+// 45804 달 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0xc8,0x08,0x00,0x18,0x10,0xc0,0x00,0xfc,0x00 -+// 45805 닭 ; -+,0x00,0x00,0x00,0x17,0x08,0x08,0x08,0x08,0x0e,0x00,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x1e,0xc8,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 45806 닮 ; -+,0x00,0x00,0x00,0x13,0x08,0x08,0x08,0x08,0x0e,0x00,0x0f,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x1e,0xc8,0x00,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 45807 닯 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x0a,0x02,0x1e,0x08,0x0a,0x00,0x00,0x18,0x08,0x88,0x08,0x08,0x0f,0xc8,0x08,0x10,0xc8,0x48,0x48,0x48,0x78,0x00 -+// 45808 닰 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x1f,0xc8,0x00,0x00,0x10,0x10,0x38,0x2c,0x44,0x00 -+// 45809 닱 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x09,0x0c,0x00,0x0d,0x01,0x0e,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x1e,0x88,0x00,0x00,0x40,0x40,0x60,0x40,0x3c,0x00 -+// 45810 닲 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x09,0x01,0x0e,0x08,0x06,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0a,0x48,0x08,0x00,0x48,0x18,0x40,0x10,0xfc,0x00 -+// 45811 닳 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x0c,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x1f,0xc8,0x08,0x30,0x04,0x10,0x28,0x44,0x28,0x00 -+// 45812 담 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x0b,0x08,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x0e,0x88,0x08,0x00,0xf8,0x08,0x00,0x18,0x00,0x00 -+// 45813 답 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0xc8,0x08,0x10,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 45814 닶 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0c,0x01,0x08,0x07,0x00,0x04,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x1e,0xc8,0x00,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 45815 닷 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x1e,0xc8,0x08,0x80,0x40,0xc0,0xb0,0x18,0x0c,0x00 -+// 45816 닸 ; -+,0x00,0x00,0x00,0x17,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x1f,0xc8,0x08,0x00,0x10,0x10,0x18,0xe4,0x44,0x00 -+// 45817 당 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x1e,0xc8,0x08,0x40,0xe0,0x10,0x08,0x10,0xf0,0x00 -+// 45818 닺 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x20,0x18,0x88,0x08,0x08,0x1e,0x58,0x08,0x00,0xf8,0xc0,0xa0,0x18,0x04,0x00 -+// 45819 닻 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x1e,0x88,0x00,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 45820 닼 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0x58,0x08,0x00,0x98,0x08,0xf8,0x08,0x00,0x00 -+// 45821 닽 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x06,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x0e,0x48,0x08,0x00,0xf8,0x00,0x78,0x00,0xfc,0x00 -+// 45822 닾 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0a,0x18,0x08,0x00,0xf8,0x20,0x10,0x20,0xfc,0x00 -+// 45823 닿 ; -+,0x00,0x00,0x00,0x03,0x18,0x00,0x00,0x08,0x0e,0x00,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x1e,0xc8,0x08,0xc0,0x00,0xc0,0xe0,0x10,0x30,0x40 -+// 45824 대 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0x24,0x3c,0x24,0xa4,0x24,0x24,0x24,0x04,0x00 -+// 45825 댁 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x08,0x08,0x06,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0x24,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 45826 댂 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x64,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45827 댃 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x88,0x98,0x98,0xa4,0x42,0x00 -+// 45828 댄 ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x09,0x0c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0xa4,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 45829 댅 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x0f,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xfe,0x10,0x18,0x24,0xc2,0x00 -+// 45830 댆 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x30,0x06,0x10,0x24,0x44,0x38,0x00 -+// 45831 댇 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00 -+// 45832 댈 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x64,0x24,0x00,0xec,0x04,0xfc,0x00,0xee,0x00 -+// 45833 댉 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0xa4,0x00,0x84,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45834 댊 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0xe4,0x24,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 45835 댋 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0xa4,0x24,0x48,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 45836 댌 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0xa4,0x24,0x90,0x88,0x98,0x14,0x26,0x42,0x00 -+// 45837 댍 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x0f,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x1c,0x74,0x04,0x00,0xf0,0x20,0x38,0x20,0x3e,0x00 -+// 45838 댎 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xac,0x04,0x20,0x08,0x7e,0x00 -+// 45839 댏 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x0d,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x38,0x00,0x18,0x3c,0x44,0x2c,0x00 -+// 45840 댐 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x0c,0x04,0x00,0x08,0x80,0x00 -+// 45841 댑 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0xa4,0x20,0x08,0x04,0xfc,0x04,0x04,0x8c,0x00 -+// 45842 댒 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x0c,0x07,0x04,0x07,0x04,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0xa4,0x24,0x98,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 45843 댓 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x64,0x24,0x44,0x20,0x60,0xd0,0x0c,0x06,0x00 -+// 45844 댔 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x04,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0xa4,0x20,0x08,0x08,0x08,0xd4,0x62,0x42,0x00 -+// 45845 댕 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x34,0x24,0x24,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 45846 댖 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x64,0x24,0x00,0xfc,0x60,0x90,0x0c,0x04,0x00 -+// 45847 댗 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0xa4,0x24,0xe0,0x00,0xe4,0x60,0x88,0x06,0x00 -+// 45848 댘 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x64,0x24,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 45849 댙 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0xe4,0x24,0x00,0x78,0x00,0x38,0x00,0xfc,0x00 -+// 45850 댚 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 45851 댛 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0xa4,0x24,0x60,0x0c,0x60,0x90,0x88,0xf0,0x00 -+// 45852 댜 ; -+,0x00,0x00,0x00,0x00,0x1f,0x18,0x18,0x18,0x18,0x18,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x0e,0x08,0x18,0x48,0x0e,0x08,0x08,0x08,0x08,0x00 -+// 45853 댝 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x88,0x08,0x0e,0x18,0x58,0x08,0x00,0x90,0x08,0x18,0x10,0x10,0x00 -+// 45854 댞 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0c,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x10,0x1e,0x10,0xd8,0x18,0x00,0x58,0x08,0x08,0x08,0x00,0x00 -+// 45855 댟 ; -+,0x00,0x00,0x00,0x07,0x18,0x00,0x00,0x08,0x0e,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x30,0x10,0x90,0x10,0x1e,0x10,0xd8,0x18,0x00,0x10,0x10,0x30,0x2c,0x44,0x00 -+// 45856 댠 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x0e,0x18,0xc8,0x0e,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 45857 댡 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x0c,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x10,0x18,0x88,0x08,0x0e,0x18,0xca,0x08,0x00,0xfc,0x30,0x30,0x48,0x84,0x00 -+// 45858 댢 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0c,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x88,0x08,0x70,0x04,0x30,0x48,0xc8,0x78,0x00 -+// 45859 댣 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0f,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x90,0x10,0x1e,0x10,0x50,0x1e,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 45860 댤 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0c,0x00,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x0f,0x18,0xc8,0x08,0x00,0x18,0x10,0xf0,0x00,0x0c,0x00 -+// 45861 댥 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x08,0x0e,0x00,0x0d,0x01,0x0e,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0xc8,0x0e,0x00,0x58,0x08,0x08,0x08,0x00,0x00 -+// 45862 댦 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x09,0x0c,0x00,0x09,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x88,0x08,0x00,0x48,0x48,0x48,0x48,0x58,0x00 -+// 45863 댧 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x09,0x0c,0x00,0x02,0x02,0x08,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0xc8,0x08,0x10,0xc8,0x78,0x48,0x48,0x48,0x00 -+// 45864 댨 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x0d,0x01,0x0f,0x00,0x07,0x00,0x00,0x10,0x18,0x88,0x08,0x0e,0x18,0xc8,0x08,0x00,0x10,0x10,0x10,0x2c,0x44,0x00 -+// 45865 댩 ; -+,0x00,0x00,0x00,0x03,0x18,0x08,0x08,0x09,0x0c,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x88,0x08,0x08,0x40,0x40,0x40,0x40,0x3c,0x00 -+// 45866 댪 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x0f,0x18,0x48,0x0f,0x00,0x48,0x18,0x48,0x10,0xfc,0x00 -+// 45867 댫 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x0c,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x88,0x08,0x30,0x0c,0x10,0x28,0x44,0x28,0x00 -+// 45868 댬 ; -+,0x00,0x00,0x00,0x07,0x18,0x08,0x08,0x08,0x0e,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x90,0x10,0x1e,0x10,0xd8,0x10,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 45869 댭 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0c,0x00,0x06,0x03,0x02,0x02,0x03,0x00,0x00,0x10,0x18,0x88,0x08,0x0e,0x18,0xc8,0x08,0x10,0x18,0x18,0x18,0x08,0xf0,0x00 -+// 45870 댮 ; -+,0x00,0x00,0x00,0x07,0x18,0x00,0x00,0x08,0x0c,0x01,0x08,0x0f,0x08,0x0d,0x08,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x88,0x08,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 45871 댯 ; -+,0x00,0x00,0x00,0x07,0x18,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x18,0xc8,0x0e,0x00,0x40,0xc0,0xb0,0x18,0x0c,0x00 -+// 45872 댰 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x10,0x90,0x10,0x0e,0x10,0xd8,0x18,0x10,0x10,0x10,0xa8,0x44,0x04,0x00 -+// 45873 댱 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x18,0xc8,0x08,0x40,0xe0,0x10,0x10,0x10,0xf0,0x00 -+// 45874 댲 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0xc8,0x00,0x00,0xf8,0xc0,0xb0,0x08,0x00,0x00 -+// 45875 댳 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x88,0x08,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 45876 댴 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x58,0x08,0x00,0x98,0x18,0xd8,0x10,0x10,0x00 -+// 45877 댵 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0f,0x00,0x06,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x10,0x88,0x08,0x0e,0x18,0x58,0x0e,0x00,0xf8,0x00,0x78,0x00,0xfc,0x00 -+// 45878 댶 ; -+,0x00,0x00,0x00,0x01,0x18,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0x58,0x08,0x00,0xf8,0x20,0x10,0x20,0xfc,0x00 -+// 45879 댷 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x0e,0x18,0xc8,0x08,0xe0,0x1c,0x40,0x10,0x10,0xe0,0x00 -+// 45880 댸 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0xbc,0x24,0x24,0x24,0x04,0x00 -+// 45881 댹 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x34,0x24,0x24,0xa4,0x24,0x00,0xec,0x04,0x04,0x04,0x00,0x00 -+// 45882 댺 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x34,0x24,0x24,0x74,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45883 댻 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x2c,0x24,0x24,0xa4,0x20,0x10,0x98,0x90,0x98,0x24,0x40,0x00 -+// 45884 댼 ; -+,0x00,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0xa4,0x3c,0x24,0x04,0x00,0x00,0x00,0x00 -+// 45885 댽 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x34,0x24,0x24,0x24,0x24,0x00,0xfe,0x10,0x18,0x24,0xc2,0x00 -+// 45886 댾 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x44,0x24,0x34,0x24,0x24,0xb4,0x24,0x30,0x06,0x38,0x44,0x44,0x38,0x00 -+// 45887 댿 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x3c,0x24,0x00,0x3c,0x00,0x00,0x00,0xfc,0x00 -+// 45888 덀 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x3c,0x24,0x00,0x8c,0x04,0xf8,0x00,0xfe,0x00 -+// 45889 덁 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x34,0xb4,0x24,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45890 덂 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0e,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x44,0x24,0x34,0x24,0x24,0xb4,0x24,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 45891 덃 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x06,0x00,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x34,0x14,0x04,0x34,0x74,0x04,0x0c,0xa4,0x34,0x24,0x24,0x24,0x00 -+// 45892 덄 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x06,0x05,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x34,0xb4,0x00,0x98,0x88,0x88,0x14,0x22,0x02,0x00 -+// 45893 덅 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x05,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x44,0x24,0x34,0x24,0x24,0xa4,0x24,0x00,0x60,0x20,0x20,0x00,0x1c,0x00 -+// 45894 덆 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0x34,0x24,0x24,0xa4,0x24,0x00,0x78,0x08,0x28,0x28,0x7e,0x00 -+// 45895 덇 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x06,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0xb4,0x24,0x18,0x86,0x18,0x24,0x24,0x3c,0x00 -+// 45896 덈 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0x34,0x24,0x24,0x24,0x24,0x00,0x8c,0x04,0x04,0x0c,0x80,0x00 -+// 45897 덉 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x34,0xb4,0x04,0x08,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 45898 덊 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0xbc,0x24,0x18,0x88,0x98,0x9c,0xa6,0x42,0x00 -+// 45899 덋 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0x3c,0x24,0x44,0x60,0x60,0xd0,0x8c,0x04,0x00 -+// 45900 덌 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x64,0x24,0x34,0x24,0x24,0xb4,0x24,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 45901 덍 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x34,0x24,0x24,0x3c,0x24,0x04,0x30,0x88,0x80,0x88,0xd8,0x00 -+// 45902 덎 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x64,0x24,0x34,0x24,0x24,0x24,0x24,0x00,0xfc,0x40,0x90,0x0c,0x04,0x00 -+// 45903 덏 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x0e,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x24,0x34,0x24,0x24,0x34,0x24,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 45904 덐 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x34,0x24,0x24,0x34,0x24,0x00,0xcc,0x04,0xe4,0x04,0x00,0x00 -+// 45905 덑 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x34,0x24,0x24,0x74,0x24,0x00,0x78,0x00,0x7c,0x00,0xfc,0x00 -+// 45906 덒 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x24,0x34,0x24,0x24,0x34,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 45907 덓 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0xa4,0x24,0x60,0x0c,0x60,0xd0,0x80,0xf0,0x00 -+// 45908 더 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x04,0x04,0x74,0x04,0x04,0x84,0x04,0x04,0x04,0x04,0x00 -+// 45909 덕 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x84,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 45910 덖 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x04,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 45911 덗 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x04,0x7c,0x04,0x04,0x84,0x08,0x88,0x88,0x94,0xa2,0xc2,0x00 -+// 45912 던 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0x04,0x74,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xfc,0x00 -+// 45913 덙 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0f,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x04,0x06,0x78,0x18,0x18,0xa6,0x42,0x00 -+// 45914 덚 ; -+,0x00,0x00,0x00,0x13,0x08,0x08,0x08,0x08,0x0e,0x00,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0x7c,0x04,0x04,0x00,0x38,0x06,0x38,0x24,0xc4,0x38,0x00 -+// 45915 덛 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x04,0x7c,0x04,0x04,0x04,0x00,0x78,0x00,0x00,0x00,0xfc,0x00 -+// 45916 덜 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0x7c,0x04,0x04,0x00,0x00,0x0c,0x08,0x00,0x00,0xfe,0x00 -+// 45917 덝 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x7c,0x04,0x04,0x00,0x00,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 45918 덞 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x04,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x04,0xc4,0x04,0x3c,0x04,0x04,0x00,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 45919 덟 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x7c,0x04,0x04,0x00,0x08,0x24,0x2c,0x24,0x24,0x24,0x00 -+// 45920 덠 ; -+,0x00,0x00,0x00,0x0b,0x08,0x08,0x08,0x08,0x0f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x00,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 45921 덡 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x24,0x04,0x04,0x00,0x04,0xa0,0xa0,0x20,0x20,0x3e,0x00 -+// 45922 덢 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x00,0x00,0x88,0x24,0x28,0x08,0x60,0x00 -+// 45923 덣 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x05,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x04,0x74,0x04,0x04,0x00,0x18,0x86,0x18,0x24,0x20,0x3c,0x00 -+// 45924 덤 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x04,0x00,0x8c,0x04,0x04,0x08,0x80,0x00 -+// 45925 덥 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x04,0x7c,0x04,0x04,0x00,0x00,0x04,0xfc,0x04,0x04,0x04,0x00 -+// 45926 덦 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x84,0x04,0x7c,0x04,0x04,0x00,0x88,0x88,0x88,0x14,0xa2,0x42,0x00 -+// 45927 덧 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0x3c,0x04,0x04,0x84,0x04,0x20,0x20,0x58,0x8c,0x06,0x00 -+// 45928 덨 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0x84,0x04,0x7c,0x04,0x04,0x00,0x00,0x88,0x88,0x94,0x62,0x02,0x00 -+// 45929 덩 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x04,0x24,0x70,0x88,0x84,0x88,0xf8,0x00 -+// 45930 덪 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0xc4,0x04,0x0c,0x04,0x04,0x84,0x04,0x1c,0x60,0x70,0x88,0x04,0x00 -+// 45931 덫 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0x04,0x04,0x04,0x84,0x00,0x60,0x04,0x60,0x60,0x88,0x06,0x00 -+// 45932 덬 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x04,0x04,0xcc,0x04,0xe4,0x04,0x00,0x00 -+// 45933 덭 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x04,0x7c,0x04,0x04,0x00,0x00,0xfc,0x00,0x7c,0x00,0xfe,0x00 -+// 45934 덮 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x7c,0x04,0x04,0x04,0x00,0x1c,0x10,0x80,0x90,0xfe,0x00 -+// 45935 덯 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x7c,0x04,0x04,0x00,0x60,0x04,0x60,0xd0,0x88,0x90,0x00 -+// 45936 데 ; -+,0x00,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x24,0x04,0x04,0x00 -+// 45937 덱 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x64,0x24,0x24,0x24,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 45938 덲 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 45939 덳 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x64,0x24,0x24,0x24,0x00,0x08,0x90,0x98,0xa4,0x42,0x00 -+// 45940 덴 ; -+,0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 45941 덵 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0b,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0xa4,0x24,0x24,0x04,0xfe,0x10,0x18,0x24,0x42,0x00 -+// 45942 덶 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x64,0x24,0x24,0x20,0x30,0x06,0x30,0x48,0x44,0x78,0x00 -+// 45943 덷 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x7c,0x00,0x00,0x00,0xfc,0x00 -+// 45944 델 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0e,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xec,0x04,0xfc,0x00,0x86,0x00 -+// 45945 덹 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 45946 덺 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 45947 덻 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x08,0x24,0x24,0x24,0x24,0x3c,0x00 -+// 45948 덼 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0x24,0xe4,0x24,0x24,0x24,0x10,0x88,0x98,0x18,0x24,0x42,0x00 -+// 45949 덽 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x0f,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x64,0x24,0x24,0x04,0x00,0xf0,0x20,0x30,0x20,0x3c,0x00 -+// 45950 덾 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xe8,0x0c,0x28,0x08,0x7e,0x00 -+// 45951 덿 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0f,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x38,0x02,0x10,0x2c,0x44,0x2c,0x00 -+// 45952 뎀 ; -+,0x00,0x00,0x00,0x00,0x1e,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x8c,0x04,0x00,0x08,0x80,0x00 -+// 45953 뎁 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x08,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 45954 뎂 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0e,0x00,0x04,0x07,0x04,0x07,0x04,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x98,0x88,0x88,0x94,0xa2,0x40,0x00 -+// 45955 뎃 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x20,0x60,0x98,0x0c,0x06,0x00 -+// 45956 뎄 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x64,0x24,0x24,0xe4,0x24,0x24,0x00,0x18,0x08,0x18,0x94,0x62,0x40,0x00 -+// 45957 뎅 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x30,0x88,0x84,0x88,0x78,0x00 -+// 45958 뎆 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0xfc,0x60,0x90,0x0c,0x04,0x00 -+// 45959 뎇 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x00,0x64,0x24,0x24,0x64,0x24,0x24,0x24,0xe0,0x00,0x60,0x60,0x98,0x04,0x00 -+// 45960 뎈 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x64,0x24,0x24,0x24,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 45961 뎉 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 45962 뎊 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 45963 뎋 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0xe4,0x24,0x24,0x20,0x60,0x1c,0x60,0x90,0x80,0xf0,0x00 -+// 45964 뎌 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x3c,0x04,0x04,0x3c,0x04,0x84,0x04,0x04,0x04,0x04,0x00 -+// 45965 뎍 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x06,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0x8c,0x04,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 45966 뎎 ; -+,0x00,0x00,0x00,0x0b,0x0c,0x00,0x00,0x04,0x06,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x3c,0x04,0x04,0x8c,0x04,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 45967 뎏 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0x84,0x04,0x00,0x88,0x88,0x94,0xa2,0xc2,0x00 -+// 45968 뎐 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x34,0x04,0x04,0xbc,0x04,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 45969 뎑 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x06,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0x9c,0x04,0x04,0x78,0x08,0x18,0x24,0x42,0x00 -+// 45970 뎒 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x08,0x09,0x04,0x00,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x38,0x06,0x18,0x24,0xc4,0x38,0x00 -+// 45971 뎓 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x0c,0x04,0x04,0x84,0x04,0x00,0x3c,0x00,0x00,0x00,0xfc,0x00 -+// 45972 뎔 ; -+,0x00,0x00,0x00,0x13,0x08,0x08,0x08,0x09,0x04,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0x08,0x08,0x18,0x00,0xfe,0x00 -+// 45973 뎕 ; -+,0x00,0x00,0x00,0x0b,0x0c,0x00,0x00,0x04,0x06,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0xa4,0x84,0x04,0x04,0x04,0x00 -+// 45974 뎖 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x06,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0xa4,0xa4,0x24,0x24,0x28,0x00 -+// 45975 뎗 ; -+,0x00,0x00,0x00,0x09,0x0c,0x00,0x00,0x05,0x06,0x00,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x3c,0x04,0x04,0xbc,0x04,0x4c,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 45976 뎘 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x08,0x08,0x06,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 45977 뎙 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x08,0x08,0x06,0x00,0x0f,0x00,0x05,0x04,0x05,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0xb8,0x20,0x38,0x20,0x3e,0x00 -+// 45978 뎚 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0e,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0x68,0x08,0x28,0x08,0x7e,0x00 -+// 45979 뎛 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x0c,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0x3c,0x00,0x18,0x06,0x18,0x2c,0x04,0x24,0x00 -+// 45980 뎜 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x08,0x09,0x0c,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x3c,0x04,0x04,0x3c,0x04,0x00,0x9c,0x08,0x08,0x08,0x00,0x00 -+// 45981 뎝 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0x04,0x8c,0x84,0x04,0xfc,0x00 -+// 45982 뎞 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x04,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0x3c,0x00,0x98,0x88,0x88,0x94,0xa6,0x42,0x00 -+// 45983 뎟 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x0c,0x84,0x7c,0x04,0x04,0x0c,0x0c,0x40,0x60,0x60,0x98,0x0c,0x04,0x00 -+// 45984 뎠 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x08,0x09,0x06,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x10,0x88,0x08,0x94,0x66,0x42,0x00 -+// 45985 뎡 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0x84,0x2c,0x24,0x70,0x88,0x84,0x88,0x78,0x00 -+// 45986 뎢 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x04,0x00,0x03,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x0c,0x84,0x3c,0x04,0x04,0x3c,0x04,0x00,0xe0,0x60,0x90,0x0c,0x04,0x00 -+// 45987 뎣 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0x3c,0x00,0xe0,0x00,0xe4,0x60,0x98,0x04,0x00 -+// 45988 뎤 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x04,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0xbc,0x04,0x00,0xcc,0x0c,0xc4,0x04,0x00,0x00 -+// 45989 뎥 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x0c,0x04,0x04,0xcc,0x00,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 45990 뎦 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x0c,0x00,0x04,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x0c,0x84,0x7c,0x04,0x04,0x0c,0x08,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 45991 뎧 ; -+,0x00,0x00,0x00,0x13,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x3c,0x04,0x04,0x3c,0x04,0x60,0x3e,0x60,0x90,0x88,0xf0,0x00 -+// 45992 뎨 ; -+,0x00,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x64,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 45993 뎩 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x34,0x14,0x14,0x34,0x24,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 45994 뎪 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0b,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0x14,0x34,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 45995 뎫 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0b,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x88,0x88,0x98,0x84,0xa2,0x00 -+// 45996 뎬 ; -+,0x00,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x09,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x04,0x24,0x24,0x24,0x04,0x00,0x00,0x80,0x00 -+// 45997 뎭 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0b,0x00,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x34,0x34,0x34,0x14,0x34,0x24,0x00,0xfe,0x18,0x18,0x24,0x42,0x00 -+// 45998 뎮 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x0c,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0x34,0x14,0xe4,0x04,0x38,0x06,0x10,0x24,0xc4,0x38,0x00 -+// 45999 뎯 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x00,0x3c,0x00,0x00,0x00,0xfe,0x00 -+// 46000 뎰 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0xa4,0x24,0x24,0x24,0x00,0x8c,0x04,0x88,0x00,0xfe,0x00 -+// 46001 뎱 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0xf4,0x04,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46002 뎲 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0xf4,0x00,0x00,0xa4,0xa4,0x04,0x04,0x10,0x00 -+// 46003 뎳 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0x34,0x04,0x0c,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 46004 뎴 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0xf4,0x04,0x88,0x88,0x88,0x14,0x02,0x02,0x00 -+// 46005 뎵 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x0f,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0x34,0x04,0x00,0xa0,0xa0,0x20,0x20,0x1e,0x00 -+// 46006 뎶 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0a,0x00,0x00,0x05,0x00,0x07,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xa8,0x0c,0x28,0x08,0x7e,0x00 -+// 46007 뎷 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x0b,0x00,0x00,0x01,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x04,0x24,0x04,0x18,0xbe,0x18,0x24,0x24,0x3c,0x00 -+// 46008 뎸 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x34,0x14,0x14,0x14,0x24,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 46009 뎹 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x34,0x14,0xe4,0x04,0x0c,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 46010 뎺 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x0f,0x00,0x00,0x04,0x07,0x04,0x06,0x04,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x98,0x88,0x88,0x14,0xa2,0x40,0x00 -+// 46011 뎻 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0xf4,0x14,0x14,0x34,0x24,0x64,0x20,0x60,0x58,0x84,0x02,0x00 -+// 46012 뎼 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x34,0x24,0x24,0x14,0xe4,0x04,0x08,0x88,0x08,0xd4,0x62,0x00,0x00 -+// 46013 뎽 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x04,0x30,0xc8,0x84,0x84,0x78,0x00 -+// 46014 뎾 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0x34,0x24,0x04,0xfc,0x60,0xd0,0x0c,0x00,0x00 -+// 46015 뎿 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0xf4,0x04,0x60,0x00,0xe4,0x60,0x88,0x06,0x00 -+// 46016 돀 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 46017 돁 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0x34,0x04,0x00,0xfc,0x00,0xfc,0x00,0xfe,0x00 -+// 46018 돂 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0b,0x08,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46019 돃 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0xe4,0x24,0x60,0x0c,0x60,0x90,0x88,0xf0,0x00 -+// 46020 도 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0xf8,0x80,0x00,0x00,0xff,0x00,0x00,0x00 -+// 46021 독 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x40,0x00,0xfe,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 46022 돆 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x0d,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x40,0x40,0xfe,0x00,0x2c,0x08,0x00,0x00,0x08,0x00 -+// 46023 돇 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x40,0x00,0x06,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 46024 돈 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x03,0x00,0x00,0x1e,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00,0x00,0xfe,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 46025 돉 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x00,0x04,0xb0,0x30,0x30,0x4c,0x84,0x00 -+// 46026 돊 ; -+,0x00,0x00,0x07,0x04,0x04,0x07,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x40,0x40,0x00,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 46027 돋 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x40,0x40,0xfe,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 46028 돌 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x40,0xc6,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00 -+// 46029 돍 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x00,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 46030 돎 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0x01,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0xce,0x00,0x4c,0x24,0x24,0x24,0x2c,0x20,0x00 -+// 46031 돏 ; -+,0x00,0x00,0x06,0x04,0x04,0x07,0x00,0x00,0x18,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0xc6,0x00,0x08,0x60,0x38,0x20,0x38,0x00,0x00 -+// 46032 돐 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1c,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xd8,0x00,0x00,0x38,0x40,0x40,0x00,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 46033 돑 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x00,0x0f,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0xc6,0x00,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 46034 돒 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x40,0x40,0x00,0x00,0x00,0x08,0x28,0x08,0xfc,0x00 -+// 46035 돓 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x1c,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x00,0x30,0x84,0x10,0x28,0x44,0x38,0x00 -+// 46036 돔 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x00,0x00,0x78,0x40,0x40,0x06,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 46037 돕 ; -+,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x00,0x1c,0x00,0x06,0x03,0x02,0x03,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0xc2,0x00,0x10,0x10,0xf0,0x10,0xf0,0x00,0x00 -+// 46038 돖 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x08,0x01,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x46,0x00,0x10,0x98,0x90,0xa8,0xa4,0xc2,0x00 -+// 46039 돗 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x3f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0xc0,0x00,0x00,0x78,0x00,0x00,0xff,0x80,0xc0,0xc0,0x30,0x08,0x04,0x00 -+// 46040 돘 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x1c,0x00,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x42,0x00,0x00,0x10,0x10,0xa8,0xc4,0x04,0x00 -+// 46041 동 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x00,0x00,0x1e,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0xc0,0x40,0xfe,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 46042 돚 ; -+,0x00,0x00,0x06,0x04,0x04,0x07,0x00,0x00,0x1e,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x40,0x06,0x00,0xfc,0xc0,0xb0,0x08,0x04,0x00 -+// 46043 돛 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x18,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x46,0x00,0xc0,0x00,0xc0,0xc0,0x18,0x0c,0x00 -+// 46044 돜 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x1c,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0x42,0x00,0x00,0x08,0x08,0x88,0x08,0x08,0x00 -+// 46045 돝 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x40,0x40,0xfe,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 46046 돞 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x40,0x40,0xfe,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46047 돟 ; -+,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x18,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0xc6,0x00,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 46048 돠 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x03,0x00,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0xc8,0x08,0x0e,0x68,0x08,0x08,0x08,0x08,0x00 -+// 46049 돡 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x0a,0x18,0x88,0x00,0x00,0x08,0x08,0x08,0x00,0x00 -+// 46050 돢 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x03,0x00,0x1f,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 46051 돣 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x00,0x03,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 46052 돤 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x00,0x1f,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0e,0x18,0x08,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 46053 돥 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x07,0x00,0x03,0x00,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x88,0x18,0x88,0x00,0x1c,0x10,0x30,0x48,0x84,0x00 -+// 46054 돦 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x03,0x00,0x07,0x00,0x00,0x05,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x00,0xfc,0x78,0x48,0x78,0x00 -+// 46055 돧 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x07,0x00,0x03,0x18,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0xc8,0x0e,0xc8,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 46056 돨 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x07,0x00,0x03,0x08,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0xc8,0x1e,0xc8,0x00,0xf0,0x10,0xf0,0x00,0x9c,0x00 -+// 46057 돩 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x02,0x07,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x78,0x08,0x08,0x08,0x00,0x00 -+// 46058 돪 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x00,0x1f,0x00,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x78,0x48,0x48,0x48,0x40,0x00 -+// 46059 돫 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x03,0x00,0x03,0x00,0x0e,0x02,0x1e,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x98,0x48,0x48,0x48,0x58,0x00 -+// 46060 돬 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x03,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x08,0x06,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x10,0x10,0x38,0x4c,0x84,0x00 -+// 46061 돭 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x07,0x00,0x03,0x00,0x0d,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x88,0x1c,0x88,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 46062 돮 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x00,0x1f,0x00,0x0f,0x00,0x0e,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x0a,0x18,0x88,0x00,0x78,0x18,0x40,0x10,0xfc,0x00 -+// 46063 돯 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x03,0x00,0x1f,0x00,0x0d,0x01,0x0c,0x04,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x48,0x0a,0x18,0x88,0x30,0x00,0x10,0x28,0x44,0x38,0x00 -+// 46064 돰 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x07,0x00,0x03,0x08,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0xc8,0x18,0x88,0x00,0x00,0x18,0x10,0x10,0x00,0x00 -+// 46065 돱 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x00,0x03,0x08,0x00,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0xc8,0x00,0x18,0x08,0x18,0x08,0xf0,0x00 -+// 46066 돲 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x02,0x1f,0x00,0x01,0x0d,0x04,0x05,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x90,0x90,0xb8,0xa4,0x40,0x00 -+// 46067 돳 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x00,0x03,0x18,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x08,0x08,0xc8,0x00,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 46068 돴 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x02,0x1f,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x88,0x08,0x48,0x0a,0x18,0x88,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 46069 돵 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x07,0x00,0x03,0x1c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0xc8,0x0e,0xc8,0x08,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 46070 돶 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x02,0x07,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x0a,0x18,0x88,0x00,0x18,0x40,0xe0,0x10,0x0c,0x00 -+// 46071 돷 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x00,0x1f,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 46072 돸 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x08,0x1c,0xc8,0x00,0x10,0x08,0xf8,0x08,0x00,0x00 -+// 46073 돹 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x07,0x00,0x03,0x00,0x00,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0xc8,0x18,0xc8,0x00,0x38,0x00,0xf8,0x00,0xfc,0x00 -+// 46074 돺 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x00,0x07,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x08,0x18,0x88,0x00,0xf8,0x30,0x10,0x20,0xfc,0x00 -+// 46075 돻 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x03,0x02,0x07,0x00,0x00,0x06,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x18,0x88,0x80,0x00,0xe0,0xb0,0x10,0xe0,0x00 -+// 46076 돼 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x0c,0x03,0x02,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x24,0xa4,0x14,0x24,0xa4,0x24,0x24,0x24,0x04,0x00 -+// 46077 돽 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x04,0x03,0x01,0x0c,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x1c,0x34,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 46078 돾 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x0d,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x04,0x14,0x94,0x14,0x24,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 46079 돿 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x0c,0x02,0x03,0x0c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x34,0x04,0x04,0x84,0x1c,0x24,0x04,0x18,0x88,0x98,0xa4,0x82,0x00 -+// 46080 됀 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x07,0x02,0x03,0x1c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0xa4,0x24,0x24,0xbc,0x24,0xa4,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 46081 됁 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0d,0x02,0x03,0x0c,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0xa4,0x34,0x24,0x00,0x0c,0x10,0x10,0x2c,0x86,0x00 -+// 46082 됂 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x07,0x00,0x03,0x0c,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x14,0xb4,0x38,0x00,0xf8,0x38,0xa4,0x38,0x00 -+// 46083 됃 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x03,0x02,0x0e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x94,0x14,0x14,0x1c,0x34,0x04,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 46084 됄 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0f,0x02,0x03,0x08,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0xa4,0x34,0x24,0x00,0xcc,0x04,0x18,0x00,0xfe,0x00 -+// 46085 됅 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0f,0x02,0x03,0x08,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0xa4,0x3c,0x24,0x00,0xbc,0x84,0x04,0x04,0x00,0x00 -+// 46086 됆 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0f,0x02,0x03,0x0c,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0x04,0x04,0x94,0x34,0x24,0x00,0xbc,0xa4,0xa4,0x24,0x28,0x00 -+// 46087 됇 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x0d,0x02,0x03,0x0c,0x07,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0xa4,0x3c,0x24,0x00,0xc4,0x2c,0x24,0x24,0x24,0x00 -+// 46088 됈 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0f,0x02,0x03,0x0c,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0xa4,0x34,0x24,0x00,0x98,0x10,0x18,0x24,0x42,0x00 -+// 46089 됉 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x07,0x00,0x03,0x08,0x05,0x00,0x0f,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x04,0x14,0x94,0x14,0x24,0x04,0xfc,0x20,0x3c,0x20,0x3c,0x00 -+// 46090 됊 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0f,0x02,0x03,0x08,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xa4,0x3c,0x24,0x00,0x7c,0x08,0x28,0x28,0x7e,0x00 -+// 46091 됋 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x07,0x02,0x03,0x0c,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x24,0x94,0x04,0x14,0x94,0x14,0x24,0x00,0x00,0x5e,0x38,0x24,0x24,0x00 -+// 46092 됌 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x04,0x03,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0x94,0x1c,0x34,0x00,0x04,0x84,0x84,0x84,0x80,0x00 -+// 46093 됍 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x05,0x00,0x03,0x0c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x94,0x1c,0x34,0x00,0x0c,0x84,0x84,0x84,0xfc,0x00 -+// 46094 됎 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0f,0x02,0x03,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0xa4,0x24,0x24,0xa4,0x34,0x24,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 46095 됏 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x0c,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x94,0x14,0x34,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 46096 됐 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x02,0x02,0x1f,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x1c,0x24,0x00,0x08,0x88,0x98,0x46,0x02,0x00 -+// 46097 됑 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0d,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x04,0x04,0x84,0x14,0x24,0x04,0x30,0x48,0x84,0x84,0x48,0x00 -+// 46098 됒 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x05,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x24,0x04,0x14,0x94,0x34,0x24,0x00,0x7c,0x40,0x60,0x98,0x04,0x00 -+// 46099 됓 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0f,0x02,0x03,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0xa4,0x04,0x14,0x94,0x14,0x24,0x00,0x60,0x1c,0x60,0xd0,0x04,0x00 -+// 46100 됔 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x0d,0x02,0x03,0x08,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x24,0x34,0x04,0x04,0x94,0x34,0x24,0x00,0xec,0x04,0x64,0x04,0x04,0x00 -+// 46101 됕 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x02,0x02,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0xa4,0x3c,0x24,0x00,0x1c,0x00,0xfc,0x00,0xfc,0x00 -+// 46102 됖 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xa4,0x34,0x24,0x04,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 46103 됗 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x0f,0x02,0x03,0x0c,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0x04,0x04,0x94,0x1c,0x24,0x20,0x04,0x60,0x90,0x88,0xf0,0x00 -+// 46104 되 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x01,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0x04,0x64,0x84,0x04,0xf4,0x04,0x04,0x04,0x04,0x00 -+// 46105 됙 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xe4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 46106 됚 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xc4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 46107 됛 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x01,0x01,0x0c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xc4,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 46108 된 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x01,0x01,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0x04,0x04,0x24,0x84,0x0c,0xc4,0x04,0x04,0x00,0x00,0x00,0x00 -+// 46109 됝 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x01,0x01,0x0f,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0xe4,0x04,0x2c,0x00,0x00,0x78,0x18,0x24,0x42,0x00 -+// 46110 됞 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x01,0x00,0x17,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x84,0x04,0xc4,0x00,0x00,0xfe,0x1c,0x24,0x2c,0x00 -+// 46111 됟 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x01,0x01,0x0e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x04,0x04,0xe4,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 46112 될 ; -+,0x00,0x00,0x00,0x0f,0x08,0x00,0x07,0x01,0x01,0x08,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0xe4,0x0c,0xc4,0x00,0xec,0x00,0xf8,0x00,0xfe,0x00 -+// 46113 됡 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x01,0x00,0x13,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x84,0x84,0xc4,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46114 됢 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x0f,0x00,0x03,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0xc4,0x84,0xc4,0x00,0xbc,0xa4,0xa4,0x24,0x00,0x00 -+// 46115 됣 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x01,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0xe4,0x84,0xc4,0x00,0xe4,0xa4,0x24,0x24,0x24,0x00 -+// 46116 됤 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x01,0x00,0x1f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x84,0x84,0xc4,0x00,0x88,0x88,0x98,0x26,0x42,0x00 -+// 46117 됥 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x01,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0xe4,0x04,0xc4,0x00,0xbc,0xa0,0xbc,0x20,0x1e,0x00 -+// 46118 됦 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x01,0x03,0x08,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0xc4,0x04,0xc4,0x04,0xa4,0x04,0x24,0x08,0x7e,0x00 -+// 46119 됧 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x01,0x13,0x00,0x04,0x00,0x06,0x00,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0xe4,0x04,0xe4,0x10,0x80,0x98,0x14,0x20,0x1c,0x00 -+// 46120 됨 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x01,0x01,0x0c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xc4,0x00,0x00,0x8c,0x00,0x08,0x80,0x00 -+// 46121 됩 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x01,0x00,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x84,0x04,0xc4,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 46122 됪 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x01,0x08,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0xe4,0x04,0xe4,0x00,0xc8,0x48,0x4c,0x52,0x60,0x00 -+// 46123 됫 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xe4,0x04,0xe4,0x00,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 46124 됬 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x01,0x00,0x1f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x84,0x04,0xc4,0x00,0x88,0x88,0xd4,0x22,0x00,0x00 -+// 46125 됭 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0x34,0x84,0x30,0x48,0x84,0x84,0x78,0x00 -+// 46126 됮 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xc4,0x0c,0xc4,0x00,0x1c,0x20,0x60,0x88,0x04,0x00 -+// 46127 됯 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x01,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x84,0x04,0x04,0x84,0x04,0xc4,0x00,0x60,0x3e,0x20,0x58,0x06,0x00 -+// 46128 됰 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x07,0x00,0x01,0x0e,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0xe4,0x04,0xe4,0x00,0xcc,0x04,0xec,0x04,0x04,0x00 -+// 46129 됱 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x01,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0xe4,0x04,0xe4,0x00,0x0c,0x00,0x1c,0x00,0xfe,0x00 -+// 46130 됲 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x01,0x01,0x0c,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0xe4,0x0c,0xc4,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46131 됳 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x01,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0xe4,0x04,0xc4,0x00,0x00,0x30,0x48,0x88,0x70,0x00 -+// 46132 됴 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x03,0x00,0x02,0x00,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0xe0,0x00,0x10,0x10,0x32,0x00,0x00,0x00 -+// 46133 됵 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x18,0x20,0x20,0x3e,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 46134 됶 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x00,0x00,0x18,0x20,0x20,0x3f,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 46135 됷 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x00,0x00,0x08,0x20,0x20,0x3f,0x00,0x30,0x30,0x28,0x44,0x80,0x00 -+// 46136 됸 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x02,0x01,0x1f,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 46137 됹 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x02,0x00,0x1e,0x00,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x20,0x20,0x06,0x0c,0x30,0x20,0x30,0x4c,0x00,0x00 -+// 46138 됺 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x50,0x00,0x00,0x38,0x20,0x20,0x3e,0x30,0x04,0x30,0x48,0x08,0x78,0x00 -+// 46139 됻 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x04,0x06,0x00,0x02,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x20,0x20,0x3e,0x00,0xf0,0x00,0x00,0x00,0xf8,0x00 -+// 46140 됼 ; -+,0x00,0x00,0x0e,0x04,0x04,0x06,0x02,0x00,0x1f,0x00,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x20,0x20,0x3e,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 46141 됽 ; -+,0x00,0x00,0x07,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x07,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x20,0x20,0x3f,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 46142 됾 ; -+,0x00,0x00,0x04,0x04,0x04,0x07,0x02,0x00,0x1f,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x86,0x48,0x64,0x00,0x08,0x28,0x20,0x00 -+// 46143 됿 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0x7e,0x08,0x40,0x28,0x00,0x28,0x00,0x00 -+// 46144 둀 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0xfe,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 46145 둁 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x1e,0x00,0x0d,0x01,0x0e,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0x00,0x00,0x60,0x40,0x78,0x40,0x3c,0x00 -+// 46146 둂 ; -+,0x00,0x00,0x0d,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf0,0x00,0x00,0x18,0x20,0x20,0xfe,0x00,0x10,0x08,0x48,0x10,0xfc,0x00 -+// 46147 둃 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x1f,0x00,0x0d,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0xfe,0x30,0x8c,0x30,0x48,0x48,0x78,0x00 -+// 46148 둄 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x1f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x20,0x20,0x06,0x00,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 46149 둅 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x00,0x78,0x00,0x00,0x18,0x20,0x20,0x3f,0x30,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 46150 둆 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x02,0x1f,0x01,0x08,0x0f,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0x00,0x10,0x10,0x10,0x28,0x04,0x80,0x00 -+// 46151 둇 ; -+,0x00,0x00,0x0d,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0xd0,0x00,0x00,0x38,0x20,0x20,0xbf,0x00,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 46152 둈 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x1f,0x00,0x02,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0x06,0x00,0x10,0x10,0xa8,0xc4,0x84,0x00 -+// 46153 둉 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x01,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x20,0x20,0xfe,0x00,0x40,0x10,0x10,0x10,0xe0,0x00 -+// 46154 둊 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x1f,0x00,0x07,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x20,0x20,0xbe,0x00,0xc8,0xc0,0x20,0x18,0x04,0x00 -+// 46155 둋 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x02,0x01,0x1c,0x01,0x00,0x06,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x32,0x00,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 46156 둌 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x01,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x50,0x00,0x00,0x18,0x20,0x20,0x3e,0x00,0x88,0x08,0xc8,0x08,0x08,0x00 -+// 46157 둍 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x07,0x04,0x07,0x04,0x03,0x00,0x00,0x00,0xd0,0x00,0x00,0x18,0x20,0x20,0x3e,0x00,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 46158 둎 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x1f,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x20,0x20,0x8e,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46159 둏 ; -+,0x00,0x00,0x04,0x04,0x04,0x07,0x02,0x00,0x1f,0x00,0x0f,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0xff,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 46160 두 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0xe0,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x00,0x00 -+// 46161 둑 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0xfe,0x00,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 46162 둒 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0x7e,0x40,0x00,0xac,0x84,0x84,0x00,0x00,0x00 -+// 46163 둓 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x1f,0x40,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 46164 둔 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x18,0x00,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x02,0xc0,0x40,0x40,0x00,0x00,0x00,0x00,0x00 -+// 46165 둕 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0x06,0x40,0x40,0xf0,0x10,0x30,0x44,0x80,0x00 -+// 46166 둖 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0xfe,0x00,0x70,0x04,0x30,0x48,0x48,0x78,0x00 -+// 46167 둗 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x0e,0x40,0x00,0xf8,0x00,0x00,0x00,0xf0,0x00 -+// 46168 둘 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x10,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf0,0x00,0x00,0x70,0x00,0x3e,0x00,0x40,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 46169 둙 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0xff,0x40,0xc0,0x88,0x88,0x08,0x08,0x08,0x00 -+// 46170 둚 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xd0,0x00,0x00,0xf8,0x00,0xfe,0x00,0xc4,0x24,0x24,0x24,0x2c,0x20,0x00 -+// 46171 둛 ; -+,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x1f,0x00,0x01,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0xcc,0x24,0x3c,0x24,0x2c,0x20,0x00 -+// 46172 둜 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0xf0,0x00,0x00,0xf8,0x00,0xdf,0x40,0x10,0x90,0x90,0x28,0x44,0x00,0x00 -+// 46173 둝 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x10,0x00,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x40,0x00,0xf8,0x00,0x38,0x00,0x3c,0x00 -+// 46174 둞 ; -+,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x1e,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x40,0x44,0x00,0x08,0x28,0x08,0xfc,0x00 -+// 46175 둟 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x1c,0x00,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xd0,0x00,0x00,0xe0,0x00,0x3f,0x40,0x70,0x8c,0x10,0x6c,0x44,0x38,0x00 -+// 46176 둠 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x0e,0xc0,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 46177 둡 ; -+,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x1f,0x00,0x04,0x02,0x03,0x02,0x03,0x02,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0xff,0x40,0x10,0x08,0xf8,0x08,0xf8,0x00,0x00 -+// 46178 둢 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x0c,0x07,0x04,0x07,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xe0,0x00,0xfe,0x40,0x90,0x90,0x90,0xac,0xa4,0x80,0x00 -+// 46179 둣 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x1f,0xc0,0xc0,0xc0,0xc0,0x30,0x18,0x00,0x00 -+// 46180 둤 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1e,0x00,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0xdf,0x00,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 46181 둥 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1f,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x00,0xc0,0x40,0xe0,0x10,0x10,0x30,0xc0,0x00 -+// 46182 둦 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0xff,0x40,0x00,0xc4,0xc0,0xb0,0x08,0x04,0x00 -+// 46183 둧 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x00,0x06,0x00,0x03,0x0c,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0xff,0x40,0xc0,0x08,0xc0,0xe0,0x18,0x0c,0x00 -+// 46184 둨 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x10,0x00,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x1f,0x40,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 46185 둩 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0xfe,0x40,0x40,0xe0,0x00,0x00,0x08,0x00,0x00 -+// 46186 둪 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x0e,0xc0,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46187 둫 ; -+,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x06,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0xff,0x40,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 46188 둬 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0x04,0xe4,0x04,0x84,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 46189 둭 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0x04,0x3c,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 46190 둮 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x84,0xbc,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 46191 둯 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x09,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x44,0x04,0x04,0x3c,0x00,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 46192 둰 ; -+,0x00,0x00,0x00,0x05,0x04,0x04,0x03,0x00,0x01,0x09,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0x04,0x04,0xe4,0x04,0x84,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46193 둱 ; -+,0x00,0x00,0x00,0x0c,0x04,0x06,0x00,0x07,0x01,0x01,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x84,0x3c,0x00,0x1e,0x18,0x18,0xa4,0x42,0x00 -+// 46194 둲 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x1f,0x01,0x00,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x64,0x04,0x84,0x3c,0x10,0x00,0xf8,0x3c,0x24,0x3c,0x00 -+// 46195 둳 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x01,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0xc0,0x00,0x00,0xfc,0x00 -+// 46196 둴 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x1f,0x01,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0x64,0x04,0x84,0x3c,0x00,0xfc,0x00,0x18,0x00,0xfe,0x00 -+// 46197 둵 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x03,0x00,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x04,0x84,0x04,0x24,0x04,0xc4,0xbc,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46198 둶 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x0f,0x00,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x64,0x04,0xc4,0x34,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 46199 둷 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x0f,0x00,0x00,0x07,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0xc4,0xbc,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 46200 둸 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x00,0x03,0x01,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x84,0x3c,0x00,0x98,0x88,0x98,0x24,0x42,0x00 -+// 46201 둹 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x0f,0x00,0x00,0x07,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x84,0x34,0x00,0xb8,0xa0,0x30,0x20,0x1e,0x00 -+// 46202 둺 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x01,0x09,0x01,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0xc4,0x3c,0x00,0xbc,0x0c,0x24,0x08,0x7e,0x00 -+// 46203 둻 ; -+,0x00,0x00,0x00,0x0e,0x04,0x06,0x00,0x1f,0x01,0x01,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x84,0x3c,0x10,0x00,0x7e,0x1c,0x24,0x34,0x00 -+// 46204 둼 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x04,0x04,0x04,0x04,0x3c,0x00,0x08,0x0c,0x08,0x08,0x00,0x00 -+// 46205 둽 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x00,0x03,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x84,0x3c,0x00,0x0c,0x84,0x8c,0x04,0xfc,0x00 -+// 46206 둾 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0x84,0x3c,0x00,0x88,0x88,0x9c,0x82,0x42,0x00 -+// 46207 둿 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x84,0x04,0x04,0x04,0x04,0x1c,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 46208 뒀 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x04,0x84,0x3c,0x00,0x08,0x08,0x98,0x64,0x02,0x00 -+// 46209 뒁 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x1d,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x04,0x04,0x44,0x0c,0x04,0x34,0x48,0x84,0x84,0x48,0x00 -+// 46210 뒂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0x44,0x04,0x84,0x3c,0x00,0x1c,0x60,0x60,0x88,0x04,0x00 -+// 46211 뒃 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x00,0x07,0x01,0x00,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x84,0x3c,0x00,0x60,0x1c,0x20,0x58,0x04,0x00 -+// 46212 뒄 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x03,0x01,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x84,0x3c,0x00,0xec,0x04,0xfc,0x04,0x04,0x00 -+// 46213 뒅 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x01,0x09,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x84,0x3c,0x00,0x0c,0x00,0xfc,0x00,0xfe,0x00 -+// 46214 뒆 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x00,0x1f,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0x84,0x3c,0x00,0xfc,0x18,0x88,0x90,0xfe,0x00 -+// 46215 뒇 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x01,0x09,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0x44,0x04,0x84,0x3c,0x40,0x06,0x60,0x88,0x88,0x70,0x00 -+// 46216 뒈 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x00,0x00,0x1f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x74,0x14,0x14,0x14,0x04,0x00 -+// 46217 뒉 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x34,0x04,0x00,0x04,0x04,0x04,0x04,0x00 -+// 46218 뒊 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x01,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x24,0x00,0x84,0x84,0x84,0x84,0x00 -+// 46219 뒋 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x00,0x03,0x0a,0x02,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x24,0x04,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 46220 뒌 ; -+,0x00,0x00,0x00,0x00,0x03,0x08,0x04,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x24,0x04,0xe4,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 46221 뒍 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x01,0x00,0x0a,0x02,0x00,0x0c,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x14,0x14,0x34,0x04,0x58,0x10,0x2c,0x46,0x00 -+// 46222 뒎 ; -+,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x07,0x02,0x02,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x74,0x30,0x00,0xfe,0x38,0x44,0x28,0x00 -+// 46223 뒏 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x05,0x00,0x1e,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x94,0x14,0x14,0x74,0x00,0xe0,0x00,0x00,0xfc,0x00 -+// 46224 뒐 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x07,0x00,0x1e,0x02,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0x24,0x24,0x00,0xfc,0x00,0xf8,0x00,0xfe,0x00 -+// 46225 뒑 ; -+,0x00,0x00,0x00,0x03,0x08,0x00,0x00,0x03,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0xb4,0x04,0x04,0x14,0x14,0xe4,0x00,0xac,0x84,0x84,0x04,0x00,0x00 -+// 46226 뒒 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x03,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x74,0x00,0xbc,0xa4,0x24,0x24,0x20,0x00 -+// 46227 뒓 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x94,0x14,0x74,0x00,0xcc,0x24,0x24,0x24,0x34,0x00 -+// 46228 뒔 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x03,0x02,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0x14,0x14,0xe4,0x00,0x98,0x10,0x18,0x24,0x42,0x00 -+// 46229 뒕 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x01,0x0a,0x02,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0xb4,0x14,0x14,0x94,0x14,0x74,0x00,0x7c,0x00,0x38,0x20,0x3c,0x00 -+// 46230 뒖 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x00,0x03,0x0a,0x02,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0xe4,0x00,0xa4,0x08,0x24,0x28,0x5e,0x00 -+// 46231 뒗 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x01,0x0a,0x02,0x05,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x04,0x34,0x04,0x04,0x84,0x14,0xe4,0x20,0x00,0x78,0x28,0x04,0x38,0x00 -+// 46232 뒘 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x03,0x01,0x1a,0x02,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0xb4,0x04,0x14,0x94,0x14,0x34,0x24,0x00,0x84,0x04,0x00,0xf8,0x00 -+// 46233 뒙 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x00,0x07,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xb4,0x14,0x14,0x14,0x14,0x64,0x00,0x04,0x8c,0x84,0x04,0x84,0x00 -+// 46234 뒚 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x03,0x01,0x1a,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x34,0x04,0x04,0x94,0x14,0x64,0x00,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 46235 뒛 ; -+,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x34,0x14,0x14,0x14,0x14,0xe4,0x04,0x60,0x60,0x50,0x8c,0x06,0x00 -+// 46236 뒜 ; -+,0x00,0x00,0x00,0x01,0x0c,0x04,0x07,0x00,0x0e,0x02,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x94,0x14,0x74,0x00,0x18,0x08,0x98,0x64,0x42,0x00 -+// 46237 뒝 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0x84,0x04,0x24,0x04,0x20,0x48,0x80,0x80,0xd8,0x00 -+// 46238 뒞 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x34,0x14,0x3c,0x60,0x60,0x98,0x04,0x00 -+// 46239 뒟 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x01,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x14,0xf4,0x00,0xe0,0x1c,0x60,0xd0,0x04,0x00 -+// 46240 뒠 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x01,0x0e,0x02,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x94,0x14,0x14,0x24,0x3c,0x04,0x2c,0x04,0x00,0x00 -+// 46241 뒡 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x01,0x0a,0x02,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x74,0x00,0x1c,0x00,0x18,0x00,0x0c,0x00 -+// 46242 뒢 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x07,0x03,0x0a,0x02,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0x24,0x24,0x20,0x3c,0x00,0x10,0x90,0xfe,0x00 -+// 46243 뒣 ; -+,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x03,0x02,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x84,0x04,0x04,0x04,0x04,0xe4,0x00,0x00,0x60,0xd0,0x90,0xb0,0x00 -+// 46244 뒤 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0x04,0xe4,0x04,0xc4,0x84,0x84,0x84,0x04,0x04,0x00 -+// 46245 뒥 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x34,0x84,0x80,0x00,0x04,0x04,0x04,0x04,0x00 -+// 46246 뒦 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x64,0x04,0x00,0x28,0x84,0x84,0x84,0x84,0x00 -+// 46247 뒧 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0x64,0x04,0x00,0x08,0x88,0x88,0x96,0xa2,0x00 -+// 46248 뒨 ; -+,0x00,0x00,0x00,0x09,0x04,0x04,0x07,0x00,0x00,0x0f,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x04,0x04,0xe4,0x04,0x74,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46249 뒩 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xf4,0x04,0x00,0x7e,0x08,0x18,0x24,0x42,0x00 -+// 46250 뒪 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x01,0x09,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x04,0x00,0x00,0xfe,0x3c,0x24,0x3c,0x00 -+// 46251 뒫 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x34,0x84,0x00,0x00,0x80,0x00,0x00,0xfc,0x00 -+// 46252 뒬 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x64,0x84,0x00,0xfc,0x00,0x9c,0x00,0x8e,0x00 -+// 46253 뒭 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x84,0x00,0x04,0x84,0x84,0x04,0x84,0x00 -+// 46254 뒮 ; -+,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 46255 뒯 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x04,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x24,0x04,0xe4,0x84,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 46256 뒰 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x07,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0xe4,0x84,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 46257 뒱 ; -+,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0xe4,0x04,0xc4,0x84,0x00,0xb8,0xa0,0x38,0x20,0x1c,0x00 -+// 46258 뒲 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x00,0x05,0x00,0x06,0x04,0x06,0x00,0x00,0x00,0x04,0x84,0x04,0x24,0x04,0xe4,0x04,0x00,0xa8,0x04,0x20,0x08,0x7e,0x00 -+// 46259 뒳 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x01,0x09,0x00,0x05,0x00,0x07,0x04,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x64,0x04,0xe4,0x04,0x00,0x80,0x3e,0x1c,0x24,0x1c,0x00 -+// 46260 뒴 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x64,0x04,0xe4,0x04,0x00,0x04,0x04,0x00,0x08,0x00,0x00 -+// 46261 뒵 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x01,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x24,0x04,0xe4,0x04,0x00,0x04,0x8c,0x84,0x84,0x80,0x00 -+// 46262 뒶 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x00,0x03,0x01,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0xe4,0x04,0xc4,0x04,0x00,0x88,0x88,0x9c,0x92,0x40,0x00 -+// 46263 뒷 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0x24,0x04,0x34,0x84,0x04,0x20,0x60,0x58,0x84,0x02,0x00 -+// 46264 뒸 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x00,0x01,0x09,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x04,0x00,0x08,0x08,0x94,0x62,0x02,0x00 -+// 46265 뒹 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x64,0x04,0x24,0x84,0x04,0x30,0x84,0x84,0x84,0x78,0x00 -+// 46266 뒺 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x04,0x74,0x84,0x00,0x0c,0x20,0x60,0x88,0x06,0x00 -+// 46267 뒻 ; -+,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x04,0x04,0xe4,0x04,0xc4,0x84,0x00,0x00,0xee,0x20,0xc8,0x06,0x00 -+// 46268 뒼 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x0f,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x84,0x80,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 46269 뒽 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x74,0x84,0x00,0x04,0x80,0x9c,0x00,0xfe,0x00 -+// 46270 뒾 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0d,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x04,0x00,0xfc,0x18,0x88,0x90,0xfe,0x00 -+// 46271 뒿 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x01,0x0d,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0xe4,0x04,0x40,0x02,0x30,0x58,0x88,0x78,0x00 -+// 46272 듀 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x08,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 46273 듁 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x3f,0x10,0x10,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 46274 듂 ; -+,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x00,0x02,0x02,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x0f,0x10,0x10,0x6c,0x04,0x04,0x00,0x00,0x00 -+// 46275 듃 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x02,0x10,0x10,0x10,0x10,0x38,0x44,0x80,0x00 -+// 46276 듄 ; -+,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x1f,0x01,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x3e,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 46277 듅 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x1f,0x10,0x14,0xf0,0x10,0x38,0x44,0x80,0x00 -+// 46278 듆 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1e,0x02,0x02,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x1f,0x10,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 46279 듇 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x1a,0x02,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0x02,0x10,0x10,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 46280 듈 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1f,0x02,0x02,0x02,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x3f,0x10,0x10,0x10,0x10,0xf0,0x00,0xfc,0x00 -+// 46281 듉 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1f,0x02,0x02,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x3e,0x10,0x38,0x88,0x88,0x08,0x08,0x00,0x00 -+// 46282 듊 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x1f,0x02,0x03,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x3e,0x10,0x14,0x24,0x24,0x24,0x24,0x20,0x00 -+// 46283 듋 ; -+,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x1f,0x02,0x0b,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x32,0x10,0x4c,0x24,0x3c,0x24,0x2c,0x20,0x00 -+// 46284 듌 ; -+,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x00,0x02,0x02,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0xf0,0x00,0x00,0xf8,0x00,0x06,0x10,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 46285 듍 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x1f,0x02,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x10,0x00,0x00,0xf8,0x00,0x3f,0x10,0x00,0x70,0x40,0x78,0x40,0x1c,0x00 -+// 46286 듎 ; -+,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x1f,0x02,0x03,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0xf0,0x00,0x00,0x18,0x00,0x32,0x10,0x1c,0x00,0x48,0x28,0x00,0x60,0x00 -+// 46287 듏 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x18,0x02,0x02,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x10,0x00,0x00,0xf8,0x00,0x3f,0x10,0x30,0xdc,0x10,0x48,0x40,0x38,0x00 -+// 46288 듐 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x06,0x10,0x10,0x38,0x10,0x10,0x10,0x00,0x00 -+// 46289 듑 ; -+,0x00,0x00,0x0e,0x04,0x04,0x03,0x00,0x1e,0x02,0x02,0x04,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x3f,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 46290 듒 ; -+,0x00,0x00,0x0e,0x04,0x04,0x03,0x00,0x1f,0x02,0x03,0x08,0x07,0x00,0x04,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x78,0x00,0x3f,0x10,0x10,0x90,0x90,0xac,0x84,0x80,0x00 -+// 46291 듓 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x06,0x10,0x90,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 46292 듔 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x1f,0x02,0x02,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x3f,0x10,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 46293 듕 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x00,0x1a,0x02,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x02,0x10,0x10,0xf0,0x10,0x10,0x30,0xe0,0x00 -+// 46294 듖 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x00,0x00,0xf8,0x00,0x3e,0x10,0x10,0xc0,0xc0,0xa0,0x18,0x04,0x00 -+// 46295 듗 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x1f,0x02,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x78,0x00,0x00,0xf8,0x00,0x3e,0x10,0xd0,0x08,0xc0,0xe0,0x18,0x04,0x00 -+// 46296 듘 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x02,0x02,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x06,0x10,0x10,0xb8,0x08,0xc8,0x08,0x08,0x00 -+// 46297 듙 ; -+,0x00,0x00,0x0e,0x04,0x04,0x03,0x00,0x1f,0x02,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x3e,0x10,0x10,0x00,0x00,0x00,0x00,0xc0,0x00 -+// 46298 듚 ; -+,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x00,0x0a,0x02,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x06,0x10,0x10,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46299 듛 ; -+,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x1f,0x02,0x02,0x06,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x3f,0x10,0xc0,0xdc,0xc0,0x20,0x10,0xe0,0x00 -+// 46300 드 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0xff,0x00,0x00,0x00 -+// 46301 득 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x00,0x86,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 46302 듞 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x0d,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0x0e,0x00,0x00,0xac,0x08,0x00,0x08,0x08,0x00 -+// 46303 듟 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x18,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x06,0x00,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 46304 든 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x10,0x00,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x1e,0x00,0x00,0x00,0x00,0x18,0x00,0x00 -+// 46305 듡 ; -+,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x1e,0x00,0x04,0xb0,0x30,0x30,0x44,0x80,0x00 -+// 46306 듢 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1c,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0x06,0x00,0x30,0x06,0x30,0x48,0x48,0x78,0x00 -+// 46307 듣 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0xf8,0x00,0x00,0x00,0x00,0x00 -+// 46308 들 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1c,0x00,0x00,0x00,0x06,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x18,0x10,0x00,0x00,0x00,0x00 -+// 46309 듥 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x02,0x00,0x00,0x88,0x88,0x08,0x08,0x08,0x00 -+// 46310 듦 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x06,0x00,0x44,0x24,0x24,0x24,0x2c,0x20,0x00 -+// 46311 듧 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x18,0x00,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x02,0x00,0x08,0x24,0x3c,0x24,0x3c,0x00,0x00 -+// 46312 듨 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x1c,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x02,0x00,0x00,0x90,0x10,0x28,0x44,0x00,0x00 -+// 46313 듩 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x08,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x78,0x00,0x06,0x00,0x00,0x60,0x00,0x20,0x20,0x08,0x00 -+// 46314 듪 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x50,0x48,0x28,0x00,0xfc,0x00 -+// 46315 듫 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x08,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x0e,0x00,0x30,0x84,0x10,0x08,0x44,0x38,0x00 -+// 46316 듬 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 46317 듭 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x3e,0x10,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 46318 듮 ; -+,0x00,0x00,0x0e,0x04,0x04,0x06,0x00,0x00,0x08,0x01,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x70,0x00,0x00,0x78,0x00,0x06,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 46319 듯 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x80,0xc0,0xc0,0x30,0x18,0x04,0x00 -+// 46320 듰 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x03,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 46321 등 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x1e,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 46322 듲 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x06,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0x06,0x00,0x00,0xc8,0xc0,0xb0,0x08,0x04,0x00 -+// 46323 듳 ; -+,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x0e,0x00,0xc0,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 46324 듴 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x1c,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x02,0x00,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 46325 듵 ; -+,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0xf8,0x00,0x00,0x08,0x00,0x00,0xfe,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 46326 듶 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x1c,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf8,0x00,0x00,0x18,0x00,0x02,0x00,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46327 듷 ; -+,0x00,0x00,0x0f,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x0e,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xf8,0x00,0x00,0x38,0x00,0x1e,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 46328 듸 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0x04,0x64,0x04,0x04,0x1c,0xc4,0x04,0x04,0x04,0x00 -+// 46329 듹 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x0c,0xc4,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 46330 듺 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xc4,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 46331 듻 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x0f,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x0c,0x84,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 46332 듼 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x03,0x00,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0xc4,0x1c,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46333 듽 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x0f,0x00,0x00,0x04,0x04,0x05,0x02,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xe4,0x0c,0xc4,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 46334 듾 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x0f,0x00,0x00,0x04,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xc4,0x04,0x84,0x10,0x00,0xfe,0x1c,0x24,0x24,0x00 -+// 46335 듿 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x00,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0x64,0x04,0xe4,0x00,0x00,0xe0,0x00,0x00,0xce,0x00 -+// 46336 딀 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x07,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0xe4,0x0c,0xc4,0x00,0xfc,0x04,0x08,0x00,0x86,0x00 -+// 46337 딁 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x0f,0x00,0x05,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0x04,0x1c,0x84,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46338 딂 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x0f,0x00,0x07,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x04,0xe4,0x04,0x04,0xe4,0x1c,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x00,0x00 -+// 46339 딃 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x04,0xc4,0x00,0xc4,0x24,0x24,0x24,0x3c,0x00 -+// 46340 딄 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x04,0x04,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 46341 딅 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x0f,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xe4,0x04,0xc4,0x00,0xbc,0xa0,0xbc,0x20,0x3e,0x00 -+// 46342 딆 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x1f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x1c,0x84,0x04,0xfc,0x08,0x28,0x08,0x7e,0x00 -+// 46343 딇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x07,0x00,0x0f,0x00,0x05,0x00,0x07,0x04,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xe4,0x1c,0x84,0x00,0x80,0x7e,0x1c,0x24,0x34,0x00 -+// 46344 딈 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x0c,0xc4,0x00,0x00,0x84,0x04,0x00,0xfc,0x00 -+// 46345 딉 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x00,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x1c,0x84,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 46346 딊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xe4,0x0c,0x84,0x00,0x88,0x88,0x98,0x96,0xa2,0x00 -+// 46347 딋 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xc4,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 46348 딌 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x0f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xc4,0x1c,0x84,0x00,0x08,0x88,0x9c,0x52,0x22,0x00 -+// 46349 딍 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x07,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xe4,0x04,0x10,0x44,0x84,0x84,0x68,0x00 -+// 46350 딎 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0x84,0x00,0x1c,0x20,0x70,0x88,0x06,0x00 -+// 46351 딏 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x0c,0x04,0xc4,0x04,0x04,0xe4,0x04,0xc4,0x00,0x60,0x0e,0x20,0x70,0x84,0x00 -+// 46352 딐 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x04,0xe4,0x00,0x0c,0x04,0x64,0x04,0x04,0x00 -+// 46353 딑 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x03,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x1c,0x84,0x00,0x0c,0x00,0x9c,0x00,0xee,0x00 -+// 46354 딒 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xe4,0x04,0x04,0xe4,0x0c,0xc4,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46355 딓 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0xc4,0x0c,0x84,0x40,0x00,0xe0,0x50,0x88,0x50,0x00 -+// 46356 디 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x04,0x04,0x04,0x04,0x24,0x84,0x04,0x04,0x04,0x04,0x00 -+// 46357 딕 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x24,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 46358 딖 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x00,0x04,0x07,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x24,0x04,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 46359 딗 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0x04,0x04,0x04,0x84,0x08,0x88,0x88,0x94,0xa2,0xc2,0x00 -+// 46360 딘 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x07,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x04,0x04,0x04,0x24,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46361 딙 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x07,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0x84,0x04,0x04,0x04,0x24,0x04,0x00,0x78,0x18,0x18,0x24,0x42,0x00 -+// 46362 딚 ; -+,0x00,0x00,0x00,0x03,0x0c,0x00,0x00,0x04,0x07,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x64,0x04,0x18,0x02,0x18,0x24,0xe4,0x3c,0x00 -+// 46363 딛 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x07,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x04,0x04,0x04,0x04,0x84,0x00,0x7c,0x00,0x00,0x00,0xfe,0x00 -+// 46364 딜 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x06,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x64,0x04,0x00,0xfc,0x00,0xf8,0x00,0x86,0x00 -+// 46365 딝 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x07,0x00,0x07,0x00,0x07,0x04,0x06,0x02,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x64,0x04,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46366 딞 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x06,0x00,0x06,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0xe4,0x04,0x00,0xb4,0xa4,0x24,0x24,0xb0,0x00 -+// 46367 딟 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x04,0x04,0x04,0x64,0x04,0x0c,0xa4,0x24,0x24,0x24,0x34,0x00 -+// 46368 딠 ; -+,0x00,0x00,0x00,0x0b,0x08,0x08,0x08,0x08,0x07,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x44,0x04,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 46369 딡 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0c,0x06,0x00,0x05,0x00,0x05,0x04,0x05,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0xc4,0x04,0x00,0xb0,0x20,0x38,0x20,0xbe,0x00 -+// 46370 딢 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x07,0x00,0x05,0x00,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x04,0x64,0x04,0x00,0xfc,0x0c,0x28,0x08,0x7e,0x00 -+// 46371 딣 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x06,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x0c,0x64,0x04,0x18,0x82,0x18,0x3c,0x24,0x24,0x00 -+// 46372 딤 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x04,0x04,0x04,0x44,0x04,0x00,0x8c,0x04,0x00,0x08,0x80,0x00 -+// 46373 딥 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x64,0x04,0x08,0x04,0xfc,0x04,0x84,0x84,0x00 -+// 46374 딦 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x06,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0xc4,0x04,0x88,0x88,0x88,0x1c,0x96,0x22,0x00 -+// 46375 딧 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x24,0x04,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 46376 딨 ; -+,0x00,0x00,0x00,0x0f,0x08,0x00,0x00,0x04,0x06,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x64,0x04,0x00,0x8c,0x88,0x9c,0x72,0x22,0x00 -+// 46377 딩 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x00,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x24,0x04,0x20,0x70,0x88,0x84,0x84,0x78,0x00 -+// 46378 딪 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x24,0x04,0x00,0xfc,0x60,0x50,0x8c,0x00,0x00 -+// 46379 딫 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0xc4,0x04,0xe0,0x00,0xe0,0x60,0x98,0x06,0x00 -+// 46380 딬 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x08,0x08,0x07,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x04,0x04,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 46381 딭 ; -+,0x00,0x00,0x00,0x03,0x0c,0x04,0x04,0x04,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x24,0x84,0x00,0x7c,0x00,0xfc,0x00,0x8e,0x00 -+// 46382 딮 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x06,0x00,0x00,0x08,0x04,0x84,0x04,0x04,0x04,0x24,0x04,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 46383 딯 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x04,0x04,0x04,0x64,0x04,0x60,0x00,0x20,0x70,0x88,0x98,0x20 -+// 46384 따 ; -+,0x00,0x00,0x00,0x00,0x1d,0x11,0x11,0x11,0x11,0x11,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x08,0x08,0x0f,0x18,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 46385 딱 ; -+,0x00,0x00,0x00,0x0d,0x11,0x11,0x11,0x13,0x08,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x08,0x08,0x0f,0x38,0x88,0x00,0xb8,0x08,0x18,0x18,0x10,0x00 -+// 46386 딲 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x13,0x08,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0f,0x38,0x88,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 46387 딳 ; -+,0x00,0x00,0x00,0x0d,0x11,0x11,0x11,0x13,0x08,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x08,0x08,0x0f,0x38,0x88,0x00,0x10,0x10,0x30,0x24,0x46,0x00 -+// 46388 딴 ; -+,0x00,0x00,0x00,0x00,0x3d,0x11,0x11,0x11,0x13,0x18,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x08,0x0e,0x78,0x08,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 46389 딵 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x13,0x08,0x00,0x19,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0f,0x38,0x80,0x00,0xfc,0x20,0x30,0x48,0x84,0x00 -+// 46390 딶 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x13,0x08,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x1e,0xe8,0x00,0x70,0x04,0x30,0x48,0x48,0x58,0x00 -+// 46391 딷 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x11,0x11,0x1d,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x48,0x08,0x08,0x0f,0x18,0xc8,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 46392 딸 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x11,0x08,0x00,0x03,0x00,0x03,0x02,0x02,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0f,0xf8,0x00,0x00,0xf8,0x10,0xf0,0x00,0x0c,0x00 -+// 46393 딹 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1f,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x18,0x48,0x08,0x08,0x1e,0xc8,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 46394 딺 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x13,0x08,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x08,0xc8,0x08,0x08,0x0f,0xe8,0x00,0x00,0x48,0x48,0x48,0x48,0x58,0x00 -+// 46395 딻 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1f,0x00,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x08,0x08,0x1e,0xc8,0x00,0x10,0x48,0x58,0x48,0x48,0x78,0x00 -+// 46396 딼 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x13,0x08,0x00,0x01,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0f,0xf8,0x00,0x00,0x10,0x10,0x30,0x2c,0x44,0x00 -+// 46397 딽 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x13,0x08,0x00,0x0f,0x01,0x0f,0x08,0x0b,0x00,0x00,0x10,0x18,0xc8,0x08,0x08,0x0f,0xf8,0x00,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 46398 딾 ; -+,0x00,0x00,0x00,0x00,0x11,0x11,0x11,0x13,0x08,0x00,0x0f,0x00,0x0e,0x08,0x0e,0x00,0x00,0x00,0x18,0x48,0x08,0x08,0x0e,0xe8,0x00,0x00,0x78,0x18,0x50,0x10,0xfc,0x00 -+// 46399 딿 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x13,0x08,0x00,0x0d,0x01,0x0e,0x00,0x06,0x00,0x00,0x00,0x08,0xc8,0x08,0x08,0x0f,0xe8,0x00,0x30,0x04,0x10,0x38,0x44,0x48,0x00 -+// 46400 땀 ; -+,0x00,0x00,0x00,0x01,0x19,0x01,0x01,0x01,0x0d,0x00,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0xc8,0x08,0x08,0x0f,0x18,0xc8,0x00,0x38,0x18,0x10,0x10,0xe0,0x00 -+// 46401 땁 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1f,0x00,0x00,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x08,0x08,0x1e,0xc8,0x00,0x10,0x18,0xf8,0x08,0x08,0x10,0x00 -+// 46402 땂 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1f,0x08,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0f,0xe8,0x08,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 46403 땃 ; -+,0x00,0x00,0x00,0x05,0x19,0x01,0x01,0x0b,0x08,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0xe8,0x08,0x08,0x0e,0x38,0x88,0x88,0x40,0xc0,0xb0,0x18,0x04,0x00 -+// 46404 땄 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x1f,0x00,0x00,0x01,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0xc8,0x08,0x08,0x0f,0xe8,0x00,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 46405 땅 ; -+,0x00,0x00,0x00,0x00,0x1d,0x11,0x11,0x11,0x0c,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x0a,0x18,0xc8,0x08,0x60,0x88,0x08,0x08,0xf0,0x00 -+// 46406 땆 ; -+,0x00,0x00,0x00,0x05,0x19,0x01,0x01,0x0b,0x08,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0e,0x38,0x88,0x00,0xf8,0xc0,0xb0,0x08,0x00,0x00 -+// 46407 땇 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x13,0x08,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0e,0xe8,0x00,0xc0,0x08,0xc0,0xc0,0x10,0x0c,0x00 -+// 46408 땈 ; -+,0x00,0x00,0x00,0x01,0x19,0x11,0x11,0x11,0x0d,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0f,0x38,0xc8,0x00,0xb8,0x08,0xf8,0x18,0x10,0x00 -+// 46409 땉 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x11,0x11,0x08,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0e,0x78,0x08,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 46410 땊 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x11,0x11,0x1d,0x00,0x04,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x48,0x08,0x08,0x0e,0x18,0xc8,0x00,0x38,0x20,0x10,0x20,0xfc,0x00 -+// 46411 땋 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1f,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x1e,0xc8,0x00,0xc0,0x1c,0x40,0x30,0x10,0xe0,0x00 -+// 46412 때 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x0b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x14,0x14,0x14,0x74,0x14,0x14,0x14,0x04,0x04,0x00 -+// 46413 땍 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0f,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0x94,0x14,0x14,0x14,0xd4,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 46414 땎 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0e,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x14,0x34,0xd4,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 46415 땏 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x34,0xc4,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 46416 땐 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x09,0x09,0x09,0x0d,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0xd4,0x14,0x14,0x14,0x34,0x94,0x14,0x04,0x00,0x00,0xfc,0x00 -+// 46417 땑 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x1c,0x34,0x84,0x00,0xfc,0x10,0x18,0x24,0x42,0x00 -+// 46418 땒 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x24,0x24,0xc4,0x04,0x14,0x24,0xc4,0x30,0x06,0x30,0x64,0x44,0x38,0x00 -+// 46419 땓 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x34,0x24,0xe4,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 46420 땔 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x3c,0x24,0xa4,0x00,0x0c,0x00,0xf8,0x00,0x8e,0x00 -+// 46421 땕 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x0c,0x00,0x06,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x14,0xb4,0xc4,0x00,0xa4,0x84,0x84,0x04,0x04,0x00 -+// 46422 땖 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x09,0x0c,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0xb4,0x84,0x00,0xb4,0xa4,0x24,0x24,0x20,0x00 -+// 46423 땗 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x0e,0x00,0x05,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0xb4,0xd4,0x0c,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 46424 땘 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x3c,0x24,0xa4,0x00,0x88,0x98,0x18,0x24,0x42,0x00 -+// 46425 땙 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x0c,0x00,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x94,0xb4,0x84,0x00,0xa0,0x20,0x20,0x20,0x3c,0x00 -+// 46426 땚 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x14,0x34,0xc4,0x00,0x24,0x08,0x28,0x28,0x7e,0x00 -+// 46427 땛 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x0d,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x14,0x24,0x84,0x38,0x82,0x18,0x2c,0x04,0x2c,0x00 -+// 46428 땜 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x14,0x34,0xd4,0x00,0x8c,0x84,0x84,0x84,0xf0,0x00 -+// 46429 땝 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x09,0x0e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x34,0xd4,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 46430 땞 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x0c,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x34,0x84,0x98,0x88,0x88,0x94,0x82,0xa2,0x00 -+// 46431 땟 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x34,0x94,0x04,0x20,0x60,0x58,0x8c,0x02,0x00 -+// 46432 땠 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x00,0x24,0x24,0xe4,0x24,0x34,0x24,0xe4,0x00,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 46433 땡 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x34,0x94,0x04,0x30,0x80,0x84,0x84,0x78,0x00 -+// 46434 땢 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x34,0xd4,0x14,0x14,0x34,0x84,0x00,0xfc,0x60,0x90,0x0c,0x04,0x00 -+// 46435 땣 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x0c,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0xb4,0x84,0xe0,0x00,0x64,0x60,0x98,0x04,0x00 -+// 46436 땤 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0x94,0x14,0x14,0x34,0x84,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 46437 땥 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x0e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0xd4,0x14,0x14,0x34,0xe4,0x00,0xfc,0x00,0xfc,0x00,0xfc,0x00 -+// 46438 땦 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x3c,0x24,0xa4,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46439 땧 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x3c,0x24,0xa4,0x60,0x0c,0x60,0x90,0x88,0xf0,0x00 -+// 46440 땨 ; -+,0x00,0x00,0x00,0x00,0x1d,0x11,0x11,0x11,0x11,0x11,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x0e,0x08,0x08,0x18,0xce,0x08,0x08,0x08,0x08,0x00 -+// 46441 땩 ; -+,0x00,0x00,0x00,0x05,0x19,0x01,0x01,0x0b,0x08,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x68,0x0a,0x08,0x08,0xbe,0x88,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 46442 땪 ; -+,0x00,0x00,0x00,0x05,0x19,0x01,0x01,0x0b,0x0c,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x0a,0x08,0x08,0x1e,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 46443 땫 ; -+,0x00,0x00,0x00,0x05,0x19,0x01,0x01,0x0b,0x08,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xe8,0x0a,0x08,0x08,0x2e,0x08,0x00,0x10,0x10,0x38,0x24,0x42,0x00 -+// 46444 땬 ; -+,0x00,0x00,0x00,0x00,0x1d,0x11,0x11,0x11,0x13,0x19,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x08,0x08,0x28,0x88,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 46445 땭 ; -+,0x00,0x00,0x00,0x1d,0x11,0x01,0x01,0x0b,0x08,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0xe8,0x0e,0x08,0x08,0x3e,0x88,0x00,0xfc,0x30,0x30,0x48,0x84,0x00 -+// 46446 땮 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1b,0x08,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x08,0x48,0x0a,0x08,0x08,0xee,0x08,0x30,0x04,0x30,0x48,0xc8,0x78,0x00 -+// 46447 땯 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x01,0x01,0x0d,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x68,0x08,0x08,0x08,0x1e,0xc8,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 46448 땰 ; -+,0x00,0x00,0x00,0x01,0x19,0x11,0x11,0x11,0x0c,0x00,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x08,0x48,0x08,0x08,0x08,0x7e,0x88,0x00,0xf0,0x10,0xf0,0x00,0x0c,0x00 -+// 46449 땱 ; -+,0x00,0x00,0x00,0x0d,0x11,0x11,0x11,0x1f,0x00,0x00,0x01,0x01,0x0f,0x08,0x0f,0x00,0x00,0x10,0x08,0xc8,0x0e,0x08,0x08,0xce,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 46450 땲 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x13,0x08,0x00,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0xee,0x08,0x00,0x68,0x48,0x48,0x48,0x78,0x00 -+// 46451 땳 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1b,0x08,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0xee,0x08,0x10,0xc8,0x58,0x48,0x48,0x58,0x00 -+// 46452 땴 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1f,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0xee,0x08,0x00,0x10,0x10,0x38,0x2c,0x44,0x00 -+// 46453 땵 ; -+,0x00,0x00,0x00,0x01,0x19,0x11,0x11,0x19,0x08,0x00,0x0d,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x08,0x48,0x08,0x08,0x08,0xee,0x08,0x00,0x78,0x40,0x70,0x40,0x7c,0x00 -+// 46454 땶 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x11,0x1b,0x08,0x00,0x0f,0x01,0x0e,0x08,0x06,0x00,0x00,0x00,0x18,0x48,0x08,0x08,0x08,0xee,0x08,0x00,0x58,0x18,0x48,0x10,0xfc,0x00 -+// 46455 땷 ; -+,0x00,0x00,0x00,0x01,0x19,0x11,0x11,0x1b,0x08,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0xc8,0x0a,0x08,0x08,0xee,0x00,0x30,0x04,0x10,0x68,0x44,0x38,0x00 -+// 46456 땸 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x11,0x13,0x09,0x00,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0x3e,0x88,0x00,0x18,0x10,0x10,0x10,0xf0,0x00 -+// 46457 땹 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1f,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x18,0xee,0x08,0x10,0x08,0xf0,0x00,0x10,0x10,0x00 -+// 46458 땺 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x13,0x08,0x00,0x08,0x0d,0x00,0x00,0x04,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0xee,0x08,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 46459 땻 ; -+,0x00,0x00,0x00,0x0d,0x11,0x11,0x11,0x1b,0x08,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0xe8,0x0a,0x08,0x08,0x2e,0x88,0x88,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 46460 땼 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1b,0x08,0x00,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0xee,0x08,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 46461 땽 ; -+,0x00,0x00,0x00,0x0d,0x11,0x11,0x11,0x11,0x0d,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xe8,0x0a,0x08,0x08,0x1e,0xc8,0x08,0x60,0x10,0x08,0x08,0x90,0x40 -+// 46462 땾 ; -+,0x00,0x00,0x00,0x0d,0x19,0x01,0x01,0x0b,0x08,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0xe8,0x0a,0x08,0x08,0x2e,0x88,0x00,0xf8,0xc0,0xa0,0x18,0x04,0x00 -+// 46463 땿 ; -+,0x00,0x00,0x00,0x0d,0x11,0x11,0x11,0x1b,0x08,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0xee,0x08,0xc0,0x00,0xc0,0xc0,0x30,0x0c,0x00 -+// 46464 떀 ; -+,0x00,0x00,0x00,0x05,0x19,0x11,0x11,0x11,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xe8,0x08,0x08,0x08,0x1e,0xc8,0x00,0x98,0x08,0xf8,0x08,0x00,0x00 -+// 46465 떁 ; -+,0x00,0x00,0x00,0x01,0x11,0x11,0x11,0x13,0x08,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0x48,0x08,0x08,0x08,0xee,0x08,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 46466 떂 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x11,0x11,0x0d,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x1e,0xc8,0x00,0xf8,0x20,0x10,0x00,0xfc,0x00 -+// 46467 떃 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x11,0x1b,0x08,0x00,0x00,0x06,0x00,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x0a,0x08,0x08,0xee,0x08,0xe0,0x0c,0x40,0xf0,0x10,0xb0,0x00 -+// 46468 떄 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x14,0x14,0xfc,0x14,0x14,0x14,0x04,0x04,0x00 -+// 46469 떅 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x3c,0x84,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 46470 떆 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x34,0x94,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 46471 떇 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x3c,0x84,0x00,0x88,0x88,0x94,0xa6,0xc2,0x00 -+// 46472 떈 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x0d,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0xd4,0x14,0x14,0x14,0x34,0xd4,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 46473 떉 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x34,0x84,0x00,0xfc,0x10,0x18,0x24,0x42,0x00 -+// 46474 떊 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x3c,0xc4,0x30,0x02,0xb0,0x2c,0x44,0x28,0x00 -+// 46475 떋 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0xd4,0x14,0x14,0x3c,0x84,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00 -+// 46476 떌 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xb4,0x24,0x24,0x3c,0xa4,0x00,0xec,0x04,0xfc,0x00,0x8e,0x00 -+// 46477 떍 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x09,0x0c,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x3c,0xd4,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46478 떎 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x00,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x34,0x84,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 46479 떏 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x0e,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x34,0xf4,0x08,0xa4,0x24,0x24,0x24,0x3c,0x00 -+// 46480 떐 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0c,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x3c,0x84,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 46481 떑 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x0c,0x00,0x01,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x34,0x84,0x00,0x20,0x20,0x20,0x20,0x3e,0x00 -+// 46482 떒 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x04,0x24,0xd4,0x04,0x04,0x3c,0xa4,0x00,0x68,0x08,0x28,0x08,0x7e,0x00 -+// 46483 떓 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0xb4,0x24,0x24,0x34,0xa4,0x38,0x02,0x10,0x24,0x04,0x28,0x00 -+// 46484 떔 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xd4,0x14,0x14,0x3c,0x84,0x00,0x8c,0x04,0x04,0x8c,0x80,0x00 -+// 46485 떕 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0xb4,0x24,0x24,0x3c,0xa4,0x00,0x0c,0xfc,0x04,0x0c,0x00,0x00 -+// 46486 떖 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0xb4,0x24,0x24,0x3c,0xa4,0x98,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 46487 떗 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0xb4,0x24,0x24,0x3c,0xa4,0x44,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 46488 떘 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xb4,0x24,0x04,0x34,0xa4,0x18,0x08,0x08,0x94,0x62,0x42,0x00 -+// 46489 떙 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xd4,0x04,0x04,0x34,0x84,0x04,0x30,0x88,0x84,0x80,0x78,0x00 -+// 46490 떚 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0x94,0x04,0x04,0x34,0x84,0x00,0xfc,0x60,0x90,0x0c,0x04,0x00 -+// 46491 떛 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0c,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x34,0x84,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 46492 떜 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x14,0x3c,0x94,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 46493 떝 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xb4,0x24,0x04,0x3c,0xa4,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 46494 떞 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0xb4,0x24,0x24,0x3c,0xa4,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 46495 떟 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xf4,0x04,0x24,0x3c,0xa4,0x60,0x04,0x60,0xd0,0x88,0x90,0x00 -+// 46496 떠 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x84,0x84,0x84,0x84,0x84,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 46497 떡 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0x84,0xc4,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 46498 떢 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x0b,0x0c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x9c,0x84,0x84,0xc4,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 46499 떣 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x8c,0x84,0x84,0xc4,0x00,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 46500 떤 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0b,0x0c,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x94,0x84,0xa4,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46501 떥 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x00,0x7e,0x08,0x18,0xa6,0x42,0x00 -+// 46502 떦 ; -+,0x00,0x00,0x00,0x05,0x08,0x08,0x08,0x09,0x0c,0x00,0x04,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x0c,0xe4,0x84,0x8c,0x84,0x84,0xc4,0x38,0x02,0xf8,0x2c,0x44,0x28,0x00 -+// 46503 떧 ; -+,0x00,0x00,0x00,0x15,0x08,0x08,0x08,0x09,0x0c,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x00,0x7c,0x00,0x00,0x00,0xfe,0x00 -+// 46504 떨 ; -+,0x00,0x00,0x00,0x14,0x08,0x08,0x08,0x09,0x0c,0x00,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0x8c,0x84,0x84,0xc4,0x00,0xfc,0x00,0x18,0x00,0x86,0x00 -+// 46505 떩 ; -+,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0a,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0x84,0x04,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 46506 떪 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x04,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x9c,0x84,0x84,0xc4,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 46507 떫 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0x84,0x44,0x0c,0x24,0x34,0x24,0x24,0x24,0x00 -+// 46508 떬 ; -+,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0x84,0xc4,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 46509 떭 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x09,0x04,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x00,0xbc,0xa0,0xbc,0x20,0xbe,0x00 -+// 46510 떮 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x0c,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x04,0xbc,0x0c,0x24,0x08,0x7e,0x00 -+// 46511 떯 ; -+,0x00,0x00,0x00,0x15,0x08,0x08,0x08,0x0b,0x08,0x00,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x8c,0x84,0x84,0xc4,0x18,0x82,0x18,0x3c,0x24,0x24,0x00 -+// 46512 떰 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x09,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x00,0x8c,0x04,0x84,0x84,0x80,0x00 -+// 46513 떱 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x0a,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0xa4,0xc4,0x08,0x04,0xfc,0x84,0x84,0x84,0x00 -+// 46514 떲 ; -+,0x00,0x00,0x00,0x15,0x08,0x08,0x08,0x0b,0x08,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0xe4,0x84,0x9c,0x84,0x84,0x84,0x98,0x88,0x88,0x14,0xa2,0x02,0x00 -+// 46515 떳 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x04,0x24,0x20,0x50,0x8c,0x06,0x00 -+// 46516 떴 ; -+,0x00,0x00,0x00,0x15,0x08,0x08,0x08,0x0a,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x04,0xe4,0x84,0x9c,0x84,0xa4,0x84,0x10,0x88,0x08,0x94,0x66,0x02,0x00 -+// 46517 떵 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 46518 떶 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0x84,0xc4,0x00,0xfe,0x20,0x50,0x8c,0x02,0x00 -+// 46519 떷 ; -+,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0b,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0x84,0xc4,0xe0,0x04,0x60,0x60,0x88,0x06,0x00 -+// 46520 떸 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x08,0x0c,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x84,0x84,0xc4,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 46521 떹 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x0b,0x0c,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x84,0x8c,0x84,0x84,0xc4,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 46522 떺 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x8c,0x84,0x84,0xc4,0x00,0x1c,0x10,0x88,0x90,0xfe,0x00 -+// 46523 떻 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x9c,0x84,0x84,0xc4,0x60,0x04,0x60,0xd0,0x88,0xd0,0x00 -+// 46524 떼 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x09,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x14,0x14,0x34,0x14,0x14,0x94,0x14,0x14,0x14,0x04,0x00 -+// 46525 떽 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x94,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 46526 떾 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x0d,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x94,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 46527 떿 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x0b,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x10,0x88,0x88,0x9c,0xa6,0xc2,0x00 -+// 46528 뗀 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x14,0x14,0x14,0x14,0x94,0x14,0x04,0x00,0x00,0xfc,0x00 -+// 46529 뗁 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x0b,0x00,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x74,0x14,0x14,0x14,0x00,0xf8,0x10,0x18,0x24,0xc2,0x00 -+// 46530 뗂 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x0b,0x08,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x34,0x14,0x14,0x04,0x30,0xfe,0x10,0x44,0x44,0x38,0x00 -+// 46531 뗃 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x94,0x00,0x7c,0x00,0x00,0x00,0xfe,0x00 -+// 46532 뗄 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x0b,0x0d,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x14,0x94,0x14,0x14,0x14,0x04,0x00,0x04,0x04,0xf0,0x00,0xfe,0x00 -+// 46533 뗅 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x04,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0x54,0x14,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 46534 뗆 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x0b,0x0c,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x54,0x14,0x00,0xb4,0xa4,0x24,0x24,0x20,0x00 -+// 46535 뗇 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x04,0x00,0x00,0x01,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0x14,0x54,0x14,0x4c,0xa4,0xb4,0x24,0x24,0x24,0x00 -+// 46536 뗈 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x0b,0x09,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x10,0x88,0x98,0x18,0x24,0x42,0x00 -+// 46537 뗉 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x0b,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x54,0x10,0x04,0xa0,0xa4,0x20,0x20,0x1c,0x00 -+// 46538 뗊 ; -+,0x00,0x00,0x00,0x00,0x0f,0x09,0x09,0x0b,0x0d,0x00,0x05,0x00,0x06,0x04,0x06,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0x14,0x54,0x14,0x00,0x38,0x0c,0x28,0x08,0x7e,0x00 -+// 46539 뗋 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x0b,0x0c,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x54,0x14,0x18,0x82,0x18,0x34,0x24,0x3c,0x00 -+// 46540 뗌 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x94,0x00,0x8c,0x04,0x84,0x8c,0x80,0x00 -+// 46541 뗍 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x0b,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0x14,0x14,0x00,0x04,0xfc,0x84,0x84,0x84,0x00 -+// 46542 뗎 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x0b,0x09,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x14,0x94,0x34,0x14,0x54,0x04,0x88,0x88,0x88,0x94,0xa2,0x02,0x00 -+// 46543 뗏 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x0b,0x0d,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x44,0x20,0x60,0xd0,0x8c,0x02,0x00 -+// 46544 뗐 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0x14,0x14,0x94,0x00,0x88,0x08,0x94,0x62,0x40,0x00 -+// 46545 뗑 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x0b,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x74,0x14,0x14,0x14,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 46546 뗒 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x94,0x04,0xfc,0x60,0xd0,0x0c,0x00,0x00 -+// 46547 뗓 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x60,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 46548 뗔 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x0b,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 46549 뗕 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x14,0x14,0x14,0x94,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 46550 뗖 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x94,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46551 뗗 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x0b,0x09,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0x14,0x54,0x14,0x60,0xfe,0x60,0x98,0x88,0xf0,0x00 -+// 46552 뗘 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x84,0x84,0x9c,0x84,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 46553 뗙 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x0b,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x9c,0x84,0x9c,0xa4,0x84,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 46554 뗚 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 46555 뗛 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x9c,0x84,0x9c,0x84,0xc4,0x00,0x88,0x88,0x94,0xa2,0xc2,0x00 -+// 46556 뗜 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x9c,0x84,0x9c,0x84,0xc4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46557 뗝 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x00,0xfe,0x18,0x18,0xa4,0x42,0x00 -+// 46558 뗞 ; -+,0x00,0x00,0x00,0x05,0x08,0x08,0x08,0x0b,0x08,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x04,0xe4,0x8c,0x84,0x9c,0x84,0xc4,0x38,0x06,0x18,0x24,0x44,0x3c,0x00 -+// 46559 뗟 ; -+,0x00,0x00,0x00,0x15,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x00,0x3c,0x00,0x00,0x00,0xfe,0x00 -+// 46560 뗠 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x84,0x84,0x9c,0x84,0xc4,0x00,0xfc,0x08,0xf8,0x00,0xfe,0x00 -+// 46561 뗡 ; -+,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x0a,0x04,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x9c,0x84,0x9c,0x84,0xc4,0x00,0xac,0x84,0x04,0x04,0x04,0x00 -+// 46562 뗢 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x8c,0x84,0x9c,0x84,0x44,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 46563 뗣 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x09,0x04,0x00,0x05,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x0c,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 46564 뗤 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x8c,0x84,0x9c,0xa4,0x84,0x00,0x88,0x98,0x18,0x24,0x42,0x00 -+// 46565 뗥 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x0c,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x9c,0x84,0xc4,0x00,0xb8,0x20,0x20,0x20,0x1c,0x00 -+// 46566 뗦 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x09,0x0c,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x9c,0x84,0xc4,0x00,0xfc,0x08,0x28,0x08,0x7e,0x00 -+// 46567 뗧 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x09,0x0c,0x00,0x0d,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0x44,0x8c,0x84,0x9c,0x84,0xc0,0x38,0x86,0x10,0x2c,0x04,0x3c,0x00 -+// 46568 뗨 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x00,0x0c,0x84,0x04,0x04,0xfc,0x00 -+// 46569 뗩 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x9c,0x84,0x9c,0xa4,0x04,0x08,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 46570 뗪 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x0b,0x0c,0x00,0x0c,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x08,0x88,0x88,0x14,0x82,0x22,0x00 -+// 46571 뗫 ; -+,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xe4,0x9c,0x84,0x9c,0x84,0xc4,0x44,0x20,0x20,0x58,0x8c,0x02,0x00 -+// 46572 뗬 ; -+,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x0a,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x04,0xe4,0x8c,0x84,0x9c,0x84,0x84,0x18,0x88,0x08,0x94,0x66,0x42,0x00 -+// 46573 뗭 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x04,0x30,0x88,0x84,0x84,0xd8,0x00 -+// 46574 뗮 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x0c,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xe4,0x9c,0x84,0x9c,0x84,0xc4,0x00,0xfc,0x60,0x50,0x8c,0x02,0x00 -+// 46575 뗯 ; -+,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x0a,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x9c,0x84,0x9c,0x84,0x84,0xe0,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 46576 뗰 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x0e,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 46577 뗱 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x00,0xfc,0x00,0xfc,0x00,0x8e,0x00 -+// 46578 뗲 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x0b,0x0c,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x9c,0x84,0xc4,0x00,0xfc,0x18,0x88,0x90,0xfe,0x00 -+// 46579 뗳 ; -+,0x00,0x00,0x00,0x04,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x8c,0x84,0x9c,0x84,0xc4,0x60,0x04,0x60,0xd0,0x88,0xd0,0x00 -+// 46580 뗴 ; -+,0x00,0x00,0x00,0x00,0x15,0x09,0x09,0x09,0x09,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x14,0x16,0x12,0x12,0x12,0x94,0x14,0x14,0x14,0x04,0x00 -+// 46581 뗵 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x74,0x14,0x94,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 46582 뗶 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x54,0x14,0x74,0x14,0x94,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 46583 뗷 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x0b,0x0d,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x74,0x14,0x04,0x10,0x88,0x98,0x98,0xa4,0xc2,0x00 -+// 46584 뗸 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x0d,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x54,0x14,0x74,0x14,0x94,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 46585 뗹 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x0b,0x0c,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x24,0x14,0x74,0x14,0x74,0x14,0x14,0x00,0xf8,0x10,0x38,0x24,0x82,0x00 -+// 46586 뗺 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x09,0x0d,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x74,0x14,0x14,0x30,0x06,0x30,0x6c,0x44,0x38,0x00 -+// 46587 뗻 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x14,0x94,0x00,0x3c,0x00,0x00,0x00,0xfc,0x00 -+// 46588 뗼 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x0b,0x0d,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x34,0x14,0x14,0x00,0x04,0x04,0xbc,0x00,0xfe,0x00 -+// 46589 뗽 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0x34,0x54,0x94,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46590 뗾 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0c,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x74,0x14,0x14,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 46591 뗿 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0c,0x00,0x01,0x01,0x06,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x34,0x14,0x14,0x08,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 46592 똀 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x74,0x14,0x14,0x00,0x88,0x88,0x18,0x24,0x02,0x00 -+// 46593 똁 ; -+,0x00,0x00,0x00,0x00,0x1b,0x09,0x09,0x0b,0x0d,0x00,0x0d,0x01,0x0f,0x00,0x07,0x00,0x00,0x08,0x24,0x14,0xf4,0x14,0x74,0x14,0x14,0x00,0x70,0x00,0x30,0x00,0x3c,0x00 -+// 46594 똂 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x74,0x14,0x14,0x00,0x38,0x08,0x28,0x08,0x7e,0x00 -+// 46595 똃 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x0b,0x0d,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0xf4,0x14,0x74,0x14,0x14,0x38,0x02,0x18,0x3c,0x44,0x2c,0x00 -+// 46596 똄 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x0b,0x0d,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x74,0x14,0x74,0x14,0x14,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 46597 똅 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x0b,0x0d,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x74,0x14,0x14,0x00,0x04,0xfc,0x04,0x04,0x8c,0x00 -+// 46598 똆 ; -+,0x00,0x00,0x00,0x00,0x1b,0x09,0x09,0x0b,0x09,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0xf4,0x14,0x74,0x14,0x04,0x18,0x88,0x88,0x9c,0xa6,0x82,0x00 -+// 46599 똇 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x0b,0x0d,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x74,0x14,0x14,0x44,0x20,0x60,0x98,0x0c,0x00,0x00 -+// 46600 똈 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x08,0x34,0x14,0xf4,0x14,0x74,0x14,0x14,0x00,0x08,0x08,0x94,0x62,0x42,0x00 -+// 46601 똉 ; -+,0x00,0x00,0x00,0x00,0x19,0x08,0x08,0x0b,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x74,0x14,0x74,0x14,0x04,0x24,0x70,0x88,0x88,0x88,0x78,0x00 -+// 46602 똊 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x34,0x14,0x54,0x14,0x74,0x14,0x94,0x00,0xfc,0x60,0xd0,0x8c,0x04,0x00 -+// 46603 똋 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0c,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x34,0x14,0x74,0x14,0x34,0x54,0x14,0xe0,0x00,0xe4,0x60,0x98,0x06,0x00 -+// 46604 똌 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x09,0x0d,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0x54,0x14,0x34,0x14,0x94,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 46605 똍 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x09,0x0d,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0x54,0x94,0x00,0xfc,0x00,0xfc,0x00,0xdc,0x00 -+// 46606 똎 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x0d,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x74,0x14,0x14,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46607 똏 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x0b,0x0d,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xb4,0x14,0x74,0x14,0x04,0x60,0x04,0x60,0xd0,0x88,0xf0,0x00 -+// 46608 또 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x40,0x40,0x40,0x40,0x3c,0x80,0x40,0x40,0xff,0x00,0x00,0x00 -+// 46609 똑 ; -+,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x40,0x80,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 46610 똒 ; -+,0x00,0x00,0x0f,0x00,0x00,0x05,0x04,0x00,0x1e,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x64,0xc0,0x40,0x02,0x00,0xac,0x84,0x84,0x00,0x08,0x00 -+// 46611 똓 ; -+,0x00,0x00,0x0c,0x00,0x00,0x07,0x00,0x00,0x1e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0xc0,0x40,0x02,0x00,0x10,0x10,0x30,0x44,0x80,0x00 -+// 46612 똔 ; -+,0x00,0x00,0x0b,0x08,0x08,0x08,0x07,0x00,0x00,0x1c,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x7c,0x40,0x40,0x40,0xfc,0x40,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 46613 똕 ; -+,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x00,0x1e,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x6c,0xc0,0x40,0x06,0x04,0xf0,0x30,0x30,0x44,0x80,0x00 -+// 46614 똖 ; -+,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x00,0x1f,0x00,0x08,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x40,0x02,0x30,0x00,0xf0,0x78,0x48,0x78,0x00 -+// 46615 똗 ; -+,0x00,0x00,0x0f,0x00,0x00,0x05,0x04,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0xc0,0x40,0xfe,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00 -+// 46616 똘 ; -+,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x00,0x1f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x40,0xfe,0x00,0xd0,0x10,0x20,0x00,0xfc,0x00 -+// 46617 똙 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x80,0x42,0x00,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 46618 똚 ; -+,0x00,0x00,0x0e,0x00,0x00,0x05,0x04,0x00,0x1f,0x00,0x05,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x78,0x40,0x40,0x6c,0xc0,0x40,0xfe,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 46619 똛 ; -+,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x00,0x1f,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0xc0,0x40,0x00,0x08,0x64,0x2c,0x24,0x2c,0x20,0x00 -+// 46620 똜 ; -+,0x00,0x00,0x0e,0x00,0x00,0x05,0x04,0x00,0x1f,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x40,0x00,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 46621 똝 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x00,0x1f,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x5c,0x80,0x00,0xfe,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 46622 똞 ; -+,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x00,0x1f,0x00,0x05,0x01,0x0e,0x04,0x06,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x40,0x00,0x00,0x50,0x08,0x28,0x00,0x7c,0x00 -+// 46623 똟 ; -+,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x00,0x1f,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0xc0,0x40,0x00,0x30,0x84,0x30,0x28,0x44,0x38,0x00 -+// 46624 똠 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x00,0x1e,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x78,0x40,0x40,0x44,0xc0,0x40,0xdf,0x00,0x78,0x10,0x10,0x10,0x00,0x00 -+// 46625 똡 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x1f,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0xc0,0x40,0x02,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 46626 똢 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x1f,0x01,0x08,0x07,0x00,0x04,0x04,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x40,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 46627 똣 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x70,0x40,0x40,0x6c,0x80,0x40,0xff,0x00,0xc0,0xc0,0x20,0x18,0x0c,0x00 -+// 46628 똤 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x1e,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x42,0x00,0x00,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 46629 똥 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x04,0x00,0x19,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x78,0x40,0x40,0x44,0x80,0x40,0xff,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 46630 똦 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x1e,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0xc0,0x42,0x00,0x00,0xcc,0xc0,0x20,0x18,0x04,0x00 -+// 46631 똧 ; -+,0x00,0x00,0x0f,0x00,0x00,0x05,0x04,0x00,0x1f,0x01,0x00,0x07,0x00,0x03,0x04,0x00,0x00,0x00,0x78,0x40,0x40,0x6c,0xc0,0x40,0x86,0xc0,0x00,0xc0,0xe0,0x18,0x04,0x00 -+// 46632 똨 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x00,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x4c,0xc0,0x40,0x06,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 46633 똩 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x1c,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0xc0,0x42,0x00,0x00,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 46634 똪 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0d,0x04,0x00,0x1f,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x78,0x40,0x40,0x44,0xc0,0x40,0xfe,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46635 똫 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x1f,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0xc0,0x40,0x00,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 46636 똬 ; -+,0x00,0x00,0x00,0x00,0x31,0x11,0x11,0x1d,0x02,0x01,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0xe8,0x08,0x08,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 46637 똭 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x01,0x03,0x1c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0xc8,0x08,0x08,0xe8,0x18,0xc8,0x00,0x00,0x08,0x08,0x08,0x00,0x00 -+// 46638 똮 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x01,0x03,0x08,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xea,0x18,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 46639 똯 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x01,0x03,0x18,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0xc8,0x08,0x08,0xe8,0x18,0xc8,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 46640 똰 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x13,0x0f,0x01,0x03,0x08,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x48,0x08,0x08,0x08,0x4e,0x18,0x88,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 46641 똱 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x01,0x03,0x18,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xca,0x18,0x88,0x00,0x1c,0x30,0x30,0x48,0x84,0x00 -+// 46642 똲 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x0e,0x01,0x07,0x00,0x08,0x05,0x04,0x05,0x04,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0a,0x18,0x88,0x30,0x00,0xf0,0x78,0x48,0x78,0x00 -+// 46643 똳 ; -+,0x00,0x00,0x00,0x05,0x11,0x11,0x1f,0x03,0x01,0x1c,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xe8,0x0e,0xd8,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 46644 똴 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x0e,0x01,0x07,0x08,0x03,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x4a,0x18,0x80,0x00,0xf8,0x10,0x30,0x00,0xfc,0x00 -+// 46645 똵 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1e,0x01,0x03,0x18,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xc8,0x18,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 46646 똶 ; -+,0x00,0x00,0x00,0x1d,0x11,0x13,0x0e,0x01,0x07,0x08,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0a,0x18,0x80,0x00,0x78,0x48,0x48,0x48,0x40,0x00 -+// 46647 똷 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x0e,0x01,0x07,0x00,0x1f,0x02,0x18,0x08,0x0c,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0a,0x18,0x88,0x00,0x98,0x48,0x48,0x48,0x48,0x00 -+// 46648 똸 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1e,0x01,0x03,0x08,0x0f,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x18,0xc8,0x08,0x08,0x0a,0x18,0x88,0x00,0x10,0x10,0x30,0x0c,0x84,0x00 -+// 46649 똹 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x0e,0x01,0x0f,0x00,0x0d,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0a,0x38,0x88,0x00,0x70,0x40,0x78,0x40,0x3c,0x00 -+// 46650 똺 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1d,0x01,0x03,0x18,0x0f,0x01,0x0a,0x08,0x0e,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xe8,0x18,0x80,0x00,0x78,0x18,0x48,0x10,0xfc,0x00 -+// 46651 똻 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x0e,0x01,0x07,0x18,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0a,0x18,0x80,0x30,0x00,0x54,0x38,0x44,0x28,0x00 -+// 46652 똼 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x01,0x03,0x1c,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xe8,0x18,0xc8,0x00,0x18,0x18,0x10,0x10,0x00,0x00 -+// 46653 똽 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x03,0x03,0x18,0x02,0x03,0x01,0x00,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xc8,0x18,0x88,0x00,0x18,0x08,0x18,0x08,0xf8,0x00 -+// 46654 똾 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x0e,0x01,0x07,0x00,0x01,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0a,0x18,0x88,0x00,0x98,0x90,0x98,0xa4,0x40,0x00 -+// 46655 똿 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x01,0x01,0x18,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x08,0xc8,0x08,0x08,0xea,0x18,0xc8,0x08,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 46656 뙀 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x0e,0x01,0x03,0x18,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xc8,0x18,0x88,0x00,0x10,0x10,0xb8,0x64,0x00,0x00 -+// 46657 뙁 ; -+,0x00,0x00,0x00,0x19,0x11,0x11,0x1f,0x01,0x01,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x08,0x08,0xca,0x18,0xc8,0x08,0x40,0x10,0x00,0x10,0xf0,0x00 -+// 46658 뙂 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x01,0x03,0x08,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xca,0x18,0x80,0x00,0xf8,0x40,0xe0,0x18,0x0c,0x00 -+// 46659 뙃 ; -+,0x00,0x00,0x00,0x1d,0x11,0x13,0x0a,0x01,0x07,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x0a,0x18,0x80,0x00,0xc0,0xf8,0xc0,0xb0,0x08,0x00 -+// 46660 뙄 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x00,0x03,0x08,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xca,0x18,0x80,0x00,0xb8,0x18,0xd8,0x00,0x00,0x00 -+// 46661 뙅 ; -+,0x00,0x00,0x00,0x0d,0x11,0x11,0x1f,0x03,0x03,0x1c,0x00,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xc8,0x18,0x80,0x00,0x38,0x00,0xf8,0x00,0xfc,0x00 -+// 46662 뙆 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1f,0x03,0x03,0x1c,0x00,0x00,0x01,0x01,0x09,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0xc8,0x18,0xc8,0x00,0x18,0x20,0x10,0x00,0x7c,0x00 -+// 46663 뙇 ; -+,0x00,0x00,0x00,0x1d,0x11,0x11,0x1c,0x03,0x03,0x08,0x00,0x06,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0xc8,0x08,0x08,0x4a,0x18,0x80,0xc0,0x08,0xc0,0x30,0x10,0xe0,0x00 -+// 46664 뙈 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x10,0xd0,0x10,0x12,0x52,0x1e,0x12,0x52,0x12,0x10,0x10,0x00,0x00 -+// 46665 뙉 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0f,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x34,0x04,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 46666 뙊 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x01,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x14,0x94,0x00,0x34,0x84,0x84,0x84,0x84,0x00 -+// 46667 뙋 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x34,0x94,0x00,0x08,0x88,0x98,0x86,0x82,0x00 -+// 46668 뙌 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x0f,0x00,0x03,0x0c,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x14,0x14,0x14,0x34,0x94,0x14,0x04,0x00,0x00,0x00,0x00 -+// 46669 뙍 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x02,0x03,0x1c,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0xd4,0x14,0x94,0x00,0x06,0x18,0x18,0x24,0x42,0x00 -+// 46670 뙎 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x00,0x03,0x0c,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x34,0x94,0x30,0x00,0xf8,0x2c,0xe4,0x38,0x00 -+// 46671 뙏 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0b,0x0a,0x03,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0x54,0x14,0xb4,0x00,0x04,0x80,0x00,0x00,0xfe,0x00 -+// 46672 뙐 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x1b,0x0a,0x03,0x1c,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0xf4,0x14,0xa4,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x00 -+// 46673 뙑 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x0f,0x01,0x03,0x08,0x07,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x24,0x54,0x14,0x14,0xd4,0x14,0x94,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46674 뙒 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x00,0x03,0x08,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x34,0x94,0x00,0xbc,0xa4,0xa4,0x24,0x00,0x00 -+// 46675 뙓 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x0f,0x01,0x03,0x0c,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x14,0x94,0x00,0xe4,0xa4,0x24,0x24,0x24,0x00 -+// 46676 뙔 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x00,0x03,0x08,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x34,0x94,0x00,0x88,0x88,0x1c,0x26,0x42,0x00 -+// 46677 뙕 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0f,0x02,0x03,0x0c,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x14,0x94,0x00,0xfc,0x20,0x28,0x20,0x1c,0x00 -+// 46678 뙖 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0f,0x02,0x03,0x08,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0xf4,0x34,0x94,0x00,0xbe,0x84,0x24,0x00,0x7e,0x00 -+// 46679 뙗 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x02,0x03,0x0c,0x05,0x00,0x06,0x04,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x14,0x94,0x10,0x80,0x78,0x34,0x24,0x3c,0x00 -+// 46680 뙘 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x0f,0x01,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x14,0x94,0x00,0x00,0x84,0x84,0x84,0xf0,0x00 -+// 46681 뙙 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0f,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x34,0x94,0x0c,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 46682 뙚 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0f,0x02,0x03,0x1c,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0xf4,0x34,0xa4,0x00,0x88,0x08,0x98,0x92,0xe2,0x00 -+// 46683 뙛 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x1d,0x03,0x01,0x0c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0xd4,0x14,0xf4,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 46684 뙜 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x0f,0x00,0x03,0x08,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0xd4,0x34,0x94,0x10,0x08,0x08,0x94,0x66,0x42,0x00 -+// 46685 뙝 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0d,0x02,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0xd4,0x14,0x74,0x04,0x10,0x48,0x84,0x84,0x48,0x00 -+// 46686 뙞 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0f,0x00,0x03,0x08,0x02,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0xd4,0x34,0x94,0x00,0x3c,0x60,0x70,0x88,0x04,0x00 -+// 46687 뙟 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x00,0x03,0x1c,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0xd4,0x14,0x94,0x00,0x60,0x1e,0x60,0x58,0x06,0x00 -+// 46688 뙠 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0f,0x03,0x03,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xf4,0x14,0xb4,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 46689 뙡 ; -+,0x00,0x00,0x00,0x00,0x19,0x01,0x0f,0x01,0x03,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xf4,0x14,0x94,0x00,0x0c,0x00,0x0c,0x00,0xce,0x00 -+// 46690 뙢 ; -+,0x00,0x00,0x00,0x00,0x19,0x11,0x1f,0x02,0x03,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x34,0x04,0x04,0xf4,0x34,0xa4,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46691 뙣 ; -+,0x00,0x00,0x00,0x00,0x11,0x11,0x1f,0x02,0x03,0x18,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0xf4,0x34,0xa4,0x20,0x00,0x60,0x90,0x88,0x90,0x00 -+// 46692 뙤 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x01,0x00,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x84,0x84,0x84,0xe4,0x84,0x84,0xf4,0x04,0x04,0x04,0x04,0x00 -+// 46693 뙥 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x01,0x0c,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x84,0xe4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 46694 뙦 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0xf4,0x84,0xc4,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 46695 뙧 ; -+,0x00,0x00,0x00,0x06,0x08,0x08,0x0f,0x01,0x01,0x0c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 46696 뙨 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x01,0x01,0x0e,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0x84,0xe4,0x04,0xe4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46697 뙩 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x0f,0x00,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x00,0x0e,0x18,0x18,0xa4,0x42,0x00 -+// 46698 뙪 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x0f,0x01,0x01,0x08,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x00,0x00,0xfe,0x18,0x04,0x24,0x00 -+// 46699 뙫 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0f,0x01,0x01,0x0c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x64,0x84,0x84,0xf4,0x04,0xe4,0x00,0x00,0xe0,0x00,0x00,0xfc,0x00 -+// 46700 뙬 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0f,0x01,0x01,0x0c,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0xf8,0x00,0x18,0x00,0x06,0x00 -+// 46701 뙭 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x07,0x00,0x00,0x0c,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0xe4,0x84,0x84,0xf4,0x84,0xe4,0x00,0x00,0x84,0x84,0x04,0x84,0x00 -+// 46702 뙮 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x07,0x00,0x03,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x00,0x0c,0x04,0xe4,0x84,0x84,0xf4,0x84,0xe4,0x00,0xbc,0xa4,0xa4,0x24,0xbc,0x00 -+// 46703 뙯 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x01,0x0c,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x84,0xe4,0x00,0xcc,0x24,0x24,0x24,0x3c,0x00 -+// 46704 뙰 ; -+,0x00,0x00,0x00,0x06,0x08,0x08,0x0f,0x01,0x01,0x0c,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0x98,0x98,0x98,0x24,0x42,0x00 -+// 46705 뙱 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x07,0x00,0x03,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x84,0xe4,0x00,0xbc,0xa0,0xbc,0x20,0xbe,0x00 -+// 46706 뙲 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0f,0x01,0x01,0x0c,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0xac,0x08,0x24,0x08,0x1e,0x00 -+// 46707 뙳 ; -+,0x00,0x00,0x00,0x0f,0x08,0x09,0x0f,0x01,0x01,0x0c,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xe4,0x04,0xe4,0x00,0x00,0x7e,0x1c,0x24,0x24,0x00 -+// 46708 뙴 ; -+,0x00,0x00,0x00,0x06,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x00,0x00,0x0c,0x00,0x08,0x80,0x00 -+// 46709 뙵 ; -+,0x00,0x00,0x00,0x06,0x08,0x08,0x0f,0x00,0x01,0x08,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0x0c,0x84,0x8c,0x84,0x8c,0x00 -+// 46710 뙶 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x01,0x04,0x00,0x04,0x07,0x04,0x04,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x04,0xc4,0x00,0x88,0x48,0xd8,0x56,0xa2,0x00 -+// 46711 뙷 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x00,0x0e,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x84,0xe4,0x04,0x20,0x60,0x58,0x8c,0x02,0x00 -+// 46712 뙸 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x01,0x0c,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0x08,0x88,0x98,0x54,0x22,0x00 -+// 46713 뙹 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x0f,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x8c,0xe4,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 46714 뙺 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x01,0x04,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x84,0xe4,0x00,0x04,0x20,0x60,0xc8,0x04,0x00 -+// 46715 뙻 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x0f,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xa4,0x0c,0xc4,0x00,0xe0,0x1c,0x60,0xf0,0x0c,0x00 -+// 46716 뙼 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0xcc,0x04,0xec,0x04,0x04,0x00 -+// 46717 뙽 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0f,0x01,0x01,0x0e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x04,0xe4,0x00,0x00,0xf0,0x08,0x00,0x04,0x00 -+// 46718 뙾 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x0f,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0x04,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x00,0xfc,0x10,0x80,0x90,0x1e,0x00 -+// 46719 뙿 ; -+,0x00,0x00,0x00,0x04,0x08,0x09,0x0f,0x01,0x01,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xe4,0x00,0x00,0xe4,0x70,0x88,0x90,0x00 -+// 46720 뚀 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x7c,0x40,0x40,0x40,0x40,0x3c,0x30,0x10,0x10,0x10,0x02,0x00,0x00 -+// 46721 뚁 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x00,0x01,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x40,0x40,0x40,0x7c,0x30,0x10,0xbe,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 46722 뚂 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x03,0x1f,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x20,0x00,0x3e,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 46723 뚃 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x03,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x20,0x10,0xbf,0x00,0x30,0x10,0x38,0x4c,0x84,0x00 -+// 46724 뚄 ; -+,0x00,0x00,0x03,0x0c,0x00,0x00,0x07,0x02,0x01,0x1f,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x7c,0x40,0x40,0x40,0x3c,0x10,0x10,0xbf,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 46725 뚅 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x03,0x1f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x30,0x00,0x3f,0x00,0xf8,0x30,0x30,0x4c,0x84,0x00 -+// 46726 뚆 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x06,0x00,0x1e,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x20,0x20,0x00,0x70,0x04,0xb0,0x78,0x08,0x78,0x00 -+// 46727 뚇 ; -+,0x00,0x00,0x0e,0x08,0x08,0x08,0x04,0x02,0x1f,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x30,0x20,0x3e,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 46728 뚈 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x06,0x02,0x1f,0x00,0x07,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x20,0x20,0x3e,0x00,0xf0,0x10,0xe0,0x00,0xf8,0x00 -+// 46729 뚉 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x06,0x01,0x1f,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x20,0x20,0x02,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 46730 뚊 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x06,0x02,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x30,0x20,0x06,0x00,0x64,0x24,0x20,0x28,0x20,0x00 -+// 46731 뚋 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x02,0x01,0x1f,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x20,0x10,0x02,0x08,0x40,0x38,0x00,0x28,0x00,0x00 -+// 46732 뚌 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x06,0x02,0x1f,0x00,0x09,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x30,0x20,0x3e,0x20,0x10,0x10,0x28,0x44,0x84,0x00 -+// 46733 뚍 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x06,0x00,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x40,0x40,0x40,0x5c,0x30,0x20,0x3e,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 46734 뚎 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x06,0x02,0x1f,0x00,0x09,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x70,0x40,0x40,0x5c,0x20,0x20,0x3e,0x00,0x70,0x08,0x48,0x00,0xfc,0x00 -+// 46735 뚏 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0d,0x06,0x00,0x1f,0x00,0x0d,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x20,0x00,0x3e,0x30,0x8c,0x30,0x48,0x40,0x38,0x00 -+// 46736 뚐 ; -+,0x00,0x00,0x0c,0x08,0x08,0x09,0x04,0x02,0x1f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x20,0x20,0x3e,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 46737 뚑 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x06,0x00,0x1e,0x00,0x04,0x07,0x04,0x04,0x06,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x20,0x20,0x0e,0x30,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 46738 뚒 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x06,0x02,0x1c,0x01,0x08,0x0f,0x08,0x09,0x08,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x20,0x20,0x00,0x30,0x10,0x10,0x28,0x44,0x80,0x00 -+// 46739 뚓 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x06,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x10,0x10,0x3f,0x00,0xc0,0x80,0x20,0x18,0x08,0x00 -+// 46740 뚔 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x06,0x01,0x1c,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x20,0x30,0x00,0x20,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 46741 뚕 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x06,0x02,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x30,0x10,0x3e,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 46742 뚖 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x04,0x02,0x1f,0x00,0x07,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x20,0x20,0x3e,0x00,0xd8,0xc0,0x20,0x18,0x08,0x00 -+// 46743 뚗 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x06,0x02,0x1f,0x01,0x00,0x0f,0x00,0x03,0x0c,0x00,0x00,0x00,0x78,0x40,0x40,0x5c,0x20,0x20,0x3e,0xc0,0x00,0xc8,0xc0,0x10,0x08,0x00 -+// 46744 뚘 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x04,0x02,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x5c,0x20,0x20,0xfe,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 46745 뚙 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x06,0x01,0x08,0x00,0x07,0x06,0x06,0x02,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x20,0x22,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00 -+// 46746 뚚 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x04,0x02,0x1f,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x30,0x20,0x3e,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46747 뚛 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x02,0x03,0x1d,0x00,0x0e,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x20,0x32,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 46748 뚜 ; -+,0x00,0x00,0x0e,0x08,0x08,0x08,0x06,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x40,0x40,0x40,0x00,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x00,0x00 -+// 46749 뚝 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x40,0x40,0x40,0x7c,0x00,0xfe,0x40,0x00,0xf8,0x08,0x08,0x08,0x00,0x00 -+// 46750 뚞 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1e,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0xdf,0x00,0x00,0x6c,0x00,0x00,0x00,0x08,0x00 -+// 46751 뚟 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0a,0x00,0x1e,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x00,0x7e,0x80,0x80,0x30,0x10,0x38,0x4c,0x80,0x00 -+// 46752 뚠 ; -+,0x00,0x00,0x02,0x08,0x08,0x08,0x0e,0x00,0x1f,0x00,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x40,0x00,0x00,0xff,0x40,0x40,0x00,0x00,0x08,0x00,0x00 -+// 46753 뚡 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x1e,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x3c,0x00,0xdf,0x40,0x04,0xf0,0x30,0x30,0x4c,0x80,0x00 -+// 46754 뚢 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1e,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0xff,0x00,0x70,0x04,0x30,0x48,0x48,0x70,0x00 -+// 46755 뚣 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x1e,0x80,0x80,0x90,0x00,0x00,0x00,0xf8,0x00 -+// 46756 뚤 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1f,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0xfe,0x80,0x80,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 46757 뚥 ; -+,0x00,0x00,0x0a,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x3e,0x00,0x80,0x88,0x08,0x08,0x08,0x08,0x00 -+// 46758 뚦 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1f,0x00,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0xde,0x80,0xec,0x24,0x24,0x00,0x28,0x20,0x00 -+// 46759 뚧 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x00,0x01,0x01,0x09,0x04,0x05,0x04,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x00,0xdf,0x80,0xc8,0x40,0x38,0x00,0x38,0x00,0x00 -+// 46760 뚨 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1e,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x40,0x40,0x40,0x3c,0x00,0xfe,0x40,0xb0,0x10,0x10,0x28,0x44,0x00,0x00 -+// 46761 뚩 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x70,0x40,0x40,0x3c,0x00,0xfe,0x00,0xc8,0x60,0x40,0x60,0x44,0x00,0x00 -+// 46762 뚪 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1e,0x00,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0xff,0x00,0xc0,0x00,0x48,0x28,0x00,0xfc,0x00 -+// 46763 뚫 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x00,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0xfe,0x80,0xb0,0x0c,0x10,0x48,0x48,0x38,0x00 -+// 46764 뚬 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x3e,0x80,0x80,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 46765 뚭 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x04,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x1e,0x80,0x80,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 46766 뚮 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1e,0x00,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0xfe,0x00,0x90,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 46767 뚯 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x10,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x3e,0x40,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 46768 뚰 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1e,0x00,0x00,0x03,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0xdf,0x00,0x00,0x10,0x10,0xa8,0xc4,0x80,0x00 -+// 46769 뚱 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1c,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x70,0x40,0x40,0x3c,0x00,0x1f,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 46770 뚲 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0b,0x00,0x18,0x00,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x7e,0x00,0x00,0xc8,0xc0,0x30,0x18,0x00,0x00 -+// 46771 뚳 ; -+,0x00,0x00,0x0f,0x00,0x00,0x07,0x00,0x1f,0x00,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x70,0x40,0x40,0x3c,0x00,0xff,0x40,0xc0,0x00,0xc8,0xc0,0x18,0x0c,0x00 -+// 46772 뚴 ; -+,0x00,0x00,0x1e,0x08,0x08,0x0e,0x00,0x1f,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0xfe,0x80,0x80,0x98,0x18,0x88,0x08,0x00,0x00 -+// 46773 뚵 ; -+,0x00,0x00,0x0f,0x08,0x00,0x05,0x04,0x1f,0x00,0x00,0x07,0x02,0x03,0x02,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0xff,0x40,0x00,0xf0,0x00,0xf0,0x00,0x00,0x00 -+// 46774 뚶 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x1e,0x00,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x00,0xdf,0x40,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46775 뚷 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0d,0x00,0x1f,0x00,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x70,0x40,0x40,0x3c,0x00,0xfe,0x00,0xc0,0xfc,0xc0,0x30,0x00,0xe0,0x00 -+// 46776 뚸 ; -+,0x00,0x00,0x00,0x02,0x0c,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xb4,0x84,0x84,0x84,0x74,0x04,0x84,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 46777 뚹 ; -+,0x00,0x00,0x00,0x0e,0x04,0x05,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0xd4,0x04,0xc4,0xbc,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 46778 뚺 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0d,0x04,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0xb4,0x04,0x84,0x3c,0x04,0x34,0x84,0x84,0x84,0x84,0x00 -+// 46779 뚻 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0xf4,0x04,0x84,0x3c,0x00,0x08,0x88,0x98,0x96,0x82,0x00 -+// 46780 뚼 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0x84,0x84,0xe4,0x04,0x04,0x3c,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 46781 뚽 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x00,0x03,0x01,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0xa4,0x04,0x84,0x3c,0x00,0x0e,0x18,0x18,0xa4,0x42,0x00 -+// 46782 뚾 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0a,0x00,0x1f,0x01,0x01,0x0c,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x0c,0x84,0x84,0xa4,0x04,0x84,0x3c,0x38,0x00,0xf8,0x38,0x04,0x38,0x00 -+// 46783 뚿 ; -+,0x00,0x00,0x00,0x0e,0x08,0x00,0x06,0x00,0x0d,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0xc4,0x3c,0x04,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 46784 뛀 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x04,0x00,0x0d,0x01,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x84,0x84,0x04,0xc4,0x3c,0x00,0xfc,0x00,0xf8,0x00,0xfe,0x00 -+// 46785 뛁 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0e,0x00,0x0f,0x01,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0xb4,0x04,0x84,0x3c,0x00,0xbc,0x84,0x04,0x04,0x00,0x00 -+// 46786 뛂 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0b,0x00,0x0f,0x01,0x01,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0x84,0x3c,0x00,0xbc,0xa4,0x24,0x24,0x20,0x00 -+// 46787 뛃 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x01,0x0d,0x01,0x0f,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x84,0x3c,0x00,0x4c,0x24,0x24,0x24,0x24,0x00 -+// 46788 뛄 ; -+,0x00,0x00,0x00,0x0e,0x00,0x07,0x00,0x0f,0x01,0x01,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x84,0xf4,0x04,0x84,0x34,0x10,0x88,0x98,0x14,0x26,0x42,0x00 -+// 46789 뛅 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x01,0x01,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0xc4,0x3c,0x04,0xbc,0x20,0x28,0x20,0x1c,0x00 -+// 46790 뛆 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x03,0x01,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x0c,0xe4,0x84,0xa4,0x04,0xc4,0x3c,0x04,0xb8,0x08,0x28,0x08,0x7e,0x00 -+// 46791 뛇 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0b,0x00,0x03,0x01,0x01,0x05,0x01,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0xe4,0x84,0xa4,0x04,0x84,0x3c,0x18,0x80,0x78,0x3c,0xa4,0x3c,0x00 -+// 46792 뛈 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x03,0x01,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0xa4,0x04,0xc4,0x3c,0x00,0x00,0x8c,0x04,0x08,0xf0,0x00 -+// 46793 뛉 ; -+,0x00,0x00,0x00,0x0e,0x00,0x07,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xf4,0x04,0x84,0x3c,0x00,0x84,0xb4,0x84,0x84,0x84,0x00 -+// 46794 뛊 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x01,0x01,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0x84,0x3c,0x00,0x88,0x48,0xdc,0x52,0x60,0x00 -+// 46795 뛋 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0e,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x84,0x84,0xb4,0x04,0x84,0x3c,0x40,0x20,0x60,0x58,0x84,0x02,0x00 -+// 46796 뛌 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0b,0x00,0x0f,0x01,0x01,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x00,0x04,0xe4,0x84,0xa4,0x04,0x84,0x3c,0x00,0x08,0x08,0x94,0x22,0x02,0x00 -+// 46797 뛍 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0d,0x04,0x00,0x0d,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0xb4,0x04,0x84,0x3c,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 46798 뛎 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0e,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0xf4,0x04,0x84,0x3c,0x00,0x3c,0x20,0x70,0x88,0x04,0x00 -+// 46799 뛏 ; -+,0x00,0x00,0x00,0x0e,0x04,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0x84,0xf4,0x04,0xc4,0x3c,0x00,0x60,0x3e,0x20,0x58,0x06,0x00 -+// 46800 뛐 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x01,0x09,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0x84,0x3c,0x00,0x0c,0x04,0xec,0x04,0x04,0x00 -+// 46801 뛑 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0xf4,0x04,0xc4,0x3c,0x00,0x1c,0x00,0x1c,0x00,0x8e,0x00 -+// 46802 뛒 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x0c,0x17,0x01,0x01,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0x84,0x84,0xa4,0x04,0x84,0x3c,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46803 뛓 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0a,0x00,0x17,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x84,0xa4,0x04,0x84,0x3c,0x00,0x00,0x60,0xd0,0x88,0xd0,0x00 -+// 46804 뛔 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x09,0x0c,0x00,0x1e,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0x54,0x10,0x10,0x74,0x14,0x14,0x14,0x04,0x00 -+// 46805 뛕 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x08,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0x04,0x04,0x04,0x04,0x00 -+// 46806 뛖 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x84,0x84,0x84,0x84,0x84,0x00 -+// 46807 뛗 ; -+,0x00,0x00,0x00,0x00,0x08,0x0a,0x08,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x14,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 46808 뛘 ; -+,0x00,0x00,0x00,0x00,0x19,0x09,0x0d,0x00,0x1f,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x14,0x14,0x14,0xd4,0x14,0x14,0x74,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 46809 뛙 ; -+,0x00,0x00,0x00,0x05,0x09,0x0b,0x00,0x1f,0x02,0x02,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x54,0x14,0x14,0x74,0x10,0x7e,0x10,0x18,0x24,0x42,0x00 -+// 46810 뛚 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x08,0x1f,0x02,0x02,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0xfe,0x38,0x04,0x28,0x00 -+// 46811 뛛 ; -+,0x00,0x00,0x00,0x01,0x08,0x0b,0x08,0x1e,0x02,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x14,0x00,0xc0,0x00,0x00,0xdc,0x00 -+// 46812 뛜 ; -+,0x00,0x00,0x00,0x01,0x08,0x0b,0x08,0x1f,0x02,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x14,0xfc,0x04,0x0c,0x00,0xfe,0x00 -+// 46813 뛝 ; -+,0x00,0x00,0x00,0x05,0x09,0x0b,0x00,0x1f,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 46814 뛞 ; -+,0x00,0x00,0x00,0x05,0x09,0x0b,0x00,0x0f,0x02,0x02,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x54,0x14,0x74,0x10,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 46815 뛟 ; -+,0x00,0x00,0x00,0x01,0x09,0x09,0x0c,0x03,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0xc4,0x24,0x24,0x24,0x34,0x00 -+// 46816 뛠 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x0c,0x0f,0x02,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x98,0x88,0x98,0x24,0x42,0x00 -+// 46817 뛡 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x00,0x0f,0x02,0x02,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0xfc,0x20,0x38,0x20,0x3c,0x00 -+// 46818 뛢 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x08,0x1e,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x14,0xa4,0x0c,0x24,0x08,0x7e,0x00 -+// 46819 뛣 ; -+,0x00,0x00,0x00,0x05,0x09,0x0b,0x00,0x0f,0x02,0x02,0x05,0x00,0x07,0x04,0x06,0x00,0x00,0x00,0x34,0x94,0x14,0x54,0x14,0x14,0x74,0x14,0x00,0x7e,0x1c,0x24,0x34,0x00 -+// 46820 뛤 ; -+,0x00,0x00,0x00,0x01,0x08,0x0b,0x08,0x1f,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x54,0x14,0xf4,0x04,0x0c,0x84,0x04,0x84,0x80,0x00 -+// 46821 뛥 ; -+,0x00,0x00,0x00,0x00,0x09,0x0b,0x0c,0x0f,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x04,0x84,0x84,0x84,0x84,0x00 -+// 46822 뛦 ; -+,0x00,0x00,0x00,0x00,0x09,0x0b,0x00,0x0f,0x02,0x02,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x88,0x48,0xdc,0x52,0x60,0x00 -+// 46823 뛧 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x08,0x1f,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x04,0x20,0x60,0x58,0x0c,0x02,0x00 -+// 46824 뛨 ; -+,0x00,0x00,0x00,0x05,0x09,0x0b,0x00,0x1f,0x02,0x02,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x08,0x08,0x98,0x64,0x42,0x00 -+// 46825 뛩 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x08,0x0f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x04,0x30,0x80,0x84,0x84,0x78,0x00 -+// 46826 뛪 ; -+,0x00,0x00,0x00,0x05,0x09,0x09,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x14,0x1c,0x20,0x60,0x98,0x04,0x00 -+// 46827 뛫 ; -+,0x00,0x00,0x00,0x05,0x09,0x0b,0x00,0x1f,0x02,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x00,0x60,0x7c,0x60,0xd8,0x04,0x00 -+// 46828 뛬 ; -+,0x00,0x00,0x00,0x01,0x09,0x0b,0x08,0x1e,0x02,0x02,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x04,0xcc,0x04,0xec,0x04,0x04,0x00 -+// 46829 뛭 ; -+,0x00,0x00,0x00,0x00,0x08,0x0b,0x08,0x13,0x02,0x02,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x14,0x08,0x00,0x18,0x00,0x8c,0x00 -+// 46830 뛮 ; -+,0x00,0x00,0x00,0x01,0x08,0x0b,0x08,0x1e,0x02,0x02,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x04,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46831 뛯 ; -+,0x00,0x00,0x00,0x00,0x09,0x0b,0x08,0x03,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x14,0x74,0x10,0x00,0xe6,0x70,0x88,0xd0,0x00 -+// 46832 뛰 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x06,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xb4,0x84,0x84,0x84,0x74,0x04,0xf4,0x84,0x84,0x84,0x04,0x04,0x00 -+// 46833 뛱 ; -+,0x00,0x00,0x00,0x0e,0x00,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0xb4,0x04,0xe4,0x04,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 46834 뛲 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x00,0x0d,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0x84,0xa4,0x04,0xe4,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 46835 뛳 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x84,0xa4,0x04,0xe4,0x04,0x00,0x08,0x88,0x98,0x84,0x82,0x00 -+// 46836 뛴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x00,0x07,0x01,0x01,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46837 뛵 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x0c,0x00,0x0d,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0xa4,0x04,0xe4,0x04,0x00,0x06,0x18,0x18,0x24,0xc2,0x00 -+// 46838 뛶 ; -+,0x00,0x00,0x00,0x0e,0x00,0x05,0x00,0x01,0x0d,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0xe4,0x84,0xa4,0x04,0xe4,0x84,0x18,0x00,0xf8,0x3c,0x24,0x38,0x00 -+// 46839 뛷 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x04,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0x84,0x84,0x04,0x74,0x84,0x04,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 46840 뛸 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x00,0x0f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0xa4,0x04,0x64,0x04,0x04,0xfc,0x00,0xb8,0x00,0xfe,0x00 -+// 46841 뛹 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x01,0x08,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0xb4,0x04,0xe4,0x84,0x00,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 46842 뛺 ; -+,0x00,0x00,0x00,0x0e,0x00,0x05,0x04,0x00,0x0d,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xa4,0x84,0x84,0x04,0xe4,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 46843 뛻 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x00,0x0d,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0xb4,0x04,0xe4,0x84,0x04,0xc4,0x24,0x24,0x24,0x24,0x00 -+// 46844 뛼 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x01,0x0d,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0xa4,0x04,0xe4,0x04,0x00,0x98,0x90,0x18,0x24,0x42,0x00 -+// 46845 뛽 ; -+,0x00,0x00,0x00,0x0e,0x00,0x05,0x00,0x00,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0x64,0x84,0x04,0xbc,0x20,0x28,0x20,0x3e,0x00 -+// 46846 뛾 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x00,0x00,0x0d,0x01,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0xe4,0x84,0xa4,0x04,0xec,0x04,0x04,0x68,0x08,0x28,0x28,0x7e,0x00 -+// 46847 뛿 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x04,0x74,0x84,0x00,0x80,0x7e,0x1c,0x24,0x34,0x00 -+// 46848 뜀 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x04,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0x74,0x84,0x04,0x04,0x84,0x04,0x04,0x80,0x00 -+// 46849 뜁 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x01,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xf4,0x04,0xe4,0x84,0x04,0x04,0x84,0x84,0x84,0x84,0x00 -+// 46850 뜂 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x00,0x00,0x0d,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0xe4,0x84,0x04,0x88,0xc8,0x5c,0x82,0x40,0x00 -+// 46851 뜃 ; -+,0x00,0x00,0x00,0x0e,0x04,0x05,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0xe4,0x04,0xf4,0x04,0x14,0x84,0x80,0x30,0x20,0x58,0x84,0x02,0x00 -+// 46852 뜄 ; -+,0x00,0x00,0x00,0x0e,0x00,0x07,0x00,0x01,0x04,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xe4,0x84,0xf4,0x04,0xe4,0x84,0x00,0x8c,0x88,0x54,0x72,0x20,0x00 -+// 46853 뜅 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0x04,0x84,0x04,0x30,0x44,0x84,0x84,0x78,0x00 -+// 46854 뜆 ; -+,0x00,0x00,0x00,0x0e,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0x84,0xf4,0x04,0xe4,0x84,0x00,0x0c,0x20,0x70,0x88,0x06,0x00 -+// 46855 뜇 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x01,0x0d,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x84,0xf4,0x04,0xe4,0x04,0x00,0x00,0x7c,0x60,0xd8,0x06,0x00 -+// 46856 뜈 ; -+,0x00,0x00,0x00,0x0e,0x00,0x05,0x04,0x00,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xf4,0x04,0xe4,0x84,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 46857 뜉 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0d,0x00,0x01,0x0d,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0xa4,0x04,0xe4,0x84,0x00,0xfc,0x00,0xfc,0x00,0xfe,0x00 -+// 46858 뜊 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x06,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x04,0x64,0x84,0x04,0xfc,0x00,0x88,0x80,0xfe,0x00 -+// 46859 뜋 ; -+,0x00,0x00,0x00,0x0e,0x08,0x0f,0x00,0x00,0x0d,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0xe4,0x04,0xe4,0x04,0x40,0x00,0x20,0x58,0x88,0x50,0x00 -+// 46860 뜌 ; -+,0x00,0x00,0x0f,0x04,0x04,0x05,0x06,0x00,0x1f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x00,0x24,0x00,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 46861 뜍 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x1f,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x3c,0x00,0x3f,0x10,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 46862 뜎 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x1f,0x02,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0x3e,0x10,0x00,0x28,0x00,0x00,0x00,0x08,0x00 -+// 46863 뜏 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x1f,0x02,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x40,0x40,0x40,0x3c,0x00,0x3f,0x10,0x00,0x10,0x10,0x38,0x44,0x82,0x00 -+// 46864 뜐 ; -+,0x00,0x00,0x02,0x0c,0x08,0x08,0x06,0x00,0x1f,0x01,0x01,0x04,0x02,0x02,0x03,0x00,0x00,0x00,0x5c,0x40,0x40,0x40,0x08,0x00,0xbe,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 46865 뜑 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x00,0x1f,0x02,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x3c,0x00,0x3f,0x10,0x14,0xf0,0x10,0x30,0x44,0x80,0x00 -+// 46866 뜒 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x02,0x00,0x08,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x3c,0x00,0x3e,0x10,0x30,0x0c,0x30,0x48,0x48,0x78,0x00 -+// 46867 뜓 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x00,0x10,0x02,0x02,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x1f,0x10,0x10,0x10,0x00,0x00,0x00,0xfc,0x00 -+// 46868 뜔 ; -+,0x00,0x00,0x01,0x0c,0x00,0x05,0x04,0x1f,0x02,0x02,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x7c,0x40,0x40,0xfc,0x00,0x3f,0x10,0x10,0x10,0x10,0x70,0x00,0xf8,0x00 -+// 46869 뜕 ; -+,0x00,0x00,0x0f,0x08,0x00,0x07,0x00,0x1f,0x02,0x02,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x3f,0x10,0x10,0x88,0x88,0x00,0x08,0x00,0x00 -+// 46870 뜖 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1f,0x02,0x03,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x40,0x40,0x40,0x3c,0x00,0x3f,0x10,0x14,0x24,0x24,0x24,0x24,0x20,0x00 -+// 46871 뜗 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x02,0x02,0x01,0x09,0x04,0x04,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x3f,0x10,0x0c,0x24,0x3c,0x24,0x2c,0x20,0x00 -+// 46872 뜘 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1f,0x02,0x02,0x0d,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x40,0x40,0x40,0x3c,0x00,0x3e,0x10,0x10,0x10,0x10,0x28,0x44,0x84,0x00 -+// 46873 뜙 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x02,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0x3e,0x10,0x00,0x60,0x40,0x60,0x40,0x00,0x00 -+// 46874 뜚 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x01,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x3f,0x10,0x00,0x40,0x08,0x28,0x00,0xfc,0x00 -+// 46875 뜛 ; -+,0x00,0x00,0x0f,0x00,0x00,0x07,0x00,0x1f,0x02,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0x10,0x10,0x30,0xd4,0x10,0x44,0x44,0x38,0x00 -+// 46876 뜜 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1f,0x02,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x3f,0x10,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 46877 뜝 ; -+,0x00,0x00,0x0f,0x08,0x00,0x07,0x00,0x1f,0x02,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x00,0x3f,0x10,0x10,0x18,0xf0,0x00,0x10,0x10,0x00 -+// 46878 뜞 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1a,0x02,0x01,0x08,0x07,0x00,0x04,0x04,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0x10,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 46879 뜟 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x00,0x1f,0x02,0x02,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x40,0x40,0x40,0x3c,0x00,0x3f,0x10,0x90,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 46880 뜠 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x02,0x02,0x02,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x3e,0x10,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 46881 뜡 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x1f,0x02,0x02,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0x3e,0x10,0x50,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 46882 뜢 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1f,0x02,0x00,0x07,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x3f,0x10,0x10,0xcc,0xc0,0xb0,0x08,0x04,0x00 -+// 46883 뜣 ; -+,0x00,0x00,0x0f,0x08,0x00,0x07,0x00,0x1f,0x02,0x02,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0x10,0x10,0xe0,0x00,0xc0,0xe0,0x10,0x0c,0x00 -+// 46884 뜤 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x1f,0x02,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x3f,0x10,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 46885 뜥 ; -+,0x00,0x00,0x0b,0x08,0x08,0x09,0x04,0x00,0x02,0x02,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x7c,0x40,0x40,0xec,0x00,0x07,0x10,0x10,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 46886 뜦 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x1e,0x02,0x02,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x78,0x40,0x40,0x7c,0x00,0x3f,0x10,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46887 뜧 ; -+,0x00,0x00,0x0f,0x08,0x08,0x0f,0x00,0x1f,0x02,0x02,0x0f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x60,0x40,0x40,0x3c,0x00,0x10,0x10,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 46888 뜨 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x7c,0x00,0x00,0x00,0xff,0x00,0x00,0x00 -+// 46889 뜩 ; -+,0x00,0x00,0x0f,0x08,0x08,0x09,0x04,0x00,0x1e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x6c,0x00,0x00,0x00,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 46890 뜪 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x00,0x1c,0x00,0x0d,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x4c,0x00,0x00,0x00,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 46891 뜫 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x06,0x00,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 46892 뜬 ; -+,0x00,0x00,0x03,0x08,0x08,0x08,0x0f,0x00,0x00,0x1f,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x7c,0x40,0x40,0x40,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 46893 뜭 ; -+,0x00,0x00,0x0c,0x00,0x00,0x07,0x04,0x00,0x1c,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x00,0x00,0x00,0xf8,0x30,0x30,0x4c,0x84,0x00 -+// 46894 뜮 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x18,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x00,0x02,0x00,0x30,0x04,0x30,0x68,0x48,0x78,0x00 -+// 46895 뜯 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x04,0x00,0x1f,0x00,0x00,0x06,0x04,0x06,0x03,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x00,0x00,0x06,0x00,0x30,0x00,0x00,0x00,0xf8,0x00 -+// 46896 뜰 ; -+,0x00,0x00,0x0e,0x08,0x08,0x09,0x04,0x00,0x1f,0x00,0x03,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x78,0x40,0x40,0x4c,0x00,0x00,0x3e,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x00 -+// 46897 뜱 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x40,0x40,0x40,0x7c,0x00,0x0e,0x00,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 46898 뜲 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x00,0x06,0x00,0x40,0x24,0x24,0x20,0x2c,0x20,0x00 -+// 46899 뜳 ; -+,0x00,0x02,0x08,0x08,0x08,0x0e,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x08,0x40,0x40,0x40,0x7c,0x00,0x02,0x00,0x08,0x44,0x7c,0x04,0x6c,0x48,0x00 -+// 46900 뜴 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x06,0x00,0x30,0x10,0x10,0x28,0x44,0x84,0x00 -+// 46901 뜵 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x1e,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x00,0x00,0x00,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 46902 뜶 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x10,0x00,0x01,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x02,0x00,0x00,0x40,0x08,0x28,0x00,0xfc,0x00 -+// 46903 뜷 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x02,0x00,0x30,0x0c,0x30,0x48,0x40,0x38,0x00 -+// 46904 뜸 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0e,0x00,0x00,0x18,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x40,0x40,0x40,0x7c,0x00,0x06,0x00,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 46905 뜹 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x06,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x00,0x06,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 46906 뜺 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x18,0x01,0x08,0x05,0x00,0x00,0x04,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x00,0x02,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 46907 뜻 ; -+,0x00,0x00,0x0e,0x08,0x08,0x08,0x06,0x00,0x1f,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x78,0x40,0x40,0x44,0x00,0x00,0x3e,0x80,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 46908 뜼 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x00,0x02,0x00,0x00,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 46909 뜽 ; -+,0x00,0x00,0x0c,0x00,0x00,0x07,0x04,0x00,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x04,0x40,0x40,0x40,0x7c,0x00,0x00,0x3e,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 46910 뜾 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x00,0x00,0x18,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x78,0x40,0x40,0x5c,0x00,0x02,0x00,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 46911 뜿 ; -+,0x00,0x00,0x0c,0x00,0x00,0x07,0x04,0x00,0x00,0x01,0x00,0x07,0x00,0x01,0x0c,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x00,0x06,0x00,0xc0,0x00,0xc8,0xc0,0x10,0x08,0x00 -+// 46912 띀 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0d,0x04,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x7c,0x00,0x00,0x00,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 46913 띁 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0f,0x00,0x00,0x1e,0x00,0x07,0x06,0x03,0x02,0x03,0x00,0x00,0x00,0x60,0x40,0x40,0x7c,0x00,0x00,0x00,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 46914 띂 ; -+,0x00,0x00,0x0e,0x08,0x08,0x0d,0x04,0x00,0x1c,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x70,0x40,0x40,0x7c,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 46915 띃 ; -+,0x00,0x00,0x0c,0x08,0x08,0x0f,0x00,0x00,0x18,0x01,0x0f,0x00,0x01,0x00,0x01,0x00,0x00,0x08,0x40,0x40,0x40,0x7c,0x00,0x06,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 46916 띄 ; -+,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x0e,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x84,0x84,0x84,0x64,0x04,0x0c,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 46917 띅 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x74,0x04,0xe4,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 46918 띆 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x06,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x84,0x04,0x04,0xc4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 46919 띇 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x74,0x04,0xc4,0x00,0x08,0x88,0x9c,0x96,0xa2,0x00 -+// 46920 띈 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x00,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0x84,0x24,0x0c,0xc4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46921 띉 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x06,0x00,0x0f,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x74,0x04,0xc4,0x00,0x7e,0x08,0x18,0xa6,0x42,0x00 -+// 46922 띊 ; -+,0x00,0x00,0x00,0x0c,0x08,0x09,0x0c,0x00,0x07,0x00,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x04,0x0c,0xc4,0x00,0x00,0xfe,0x38,0x44,0x2c,0x00 -+// 46923 띋 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x74,0x04,0xe4,0x04,0x00,0xc0,0x00,0x00,0xfe,0x00 -+// 46924 띌 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x01,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x74,0x04,0xc4,0x04,0xfc,0x04,0xfc,0x00,0xfe,0x00 -+// 46925 띍 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x06,0x00,0x01,0x04,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x84,0x84,0x74,0x04,0xe4,0x04,0xa4,0x84,0x84,0x04,0x84,0x00 -+// 46926 띎 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0xc4,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 46927 띏 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x06,0x00,0x07,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x74,0x04,0xc4,0x04,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 46928 띐 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x03,0x08,0x0f,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x00,0x98,0x90,0x18,0x24,0x42,0x00 -+// 46929 띑 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x04,0x00,0x0f,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x04,0x04,0x84,0x04,0xf8,0x20,0x3c,0x20,0x3c,0x00 -+// 46930 띒 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x03,0x00,0x05,0x00,0x07,0x04,0x06,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x04,0xb8,0x0c,0x20,0x08,0x7e,0x00 -+// 46931 띓 ; -+,0x00,0x00,0x00,0x0d,0x08,0x09,0x0c,0x00,0x0f,0x00,0x05,0x00,0x07,0x04,0x02,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x04,0x0c,0x84,0x18,0x80,0x78,0x1c,0x24,0x3c,0x00 -+// 46932 띔 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x74,0x04,0x84,0x00,0x0c,0x84,0x04,0x8c,0x80,0x00 -+// 46933 띕 ; -+,0x00,0x00,0x00,0x0a,0x08,0x00,0x06,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x74,0x04,0xe4,0x04,0x04,0x84,0x84,0x84,0x84,0x00 -+// 46934 띖 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x0c,0x00,0x0f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x24,0x0c,0xc4,0x00,0x88,0x88,0x9c,0x82,0x40,0x00 -+// 46935 띗 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x04,0xc4,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 46936 띘 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x0f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x04,0x04,0xc4,0x04,0x08,0x88,0x9c,0x72,0x20,0x00 -+// 46937 띙 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x74,0x04,0xc4,0x04,0x30,0x44,0x84,0x84,0x78,0x00 -+// 46938 띚 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x07,0x00,0x02,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x74,0x04,0xc4,0x00,0x1c,0x20,0x70,0x8c,0x06,0x00 -+// 46939 띛 ; -+,0x00,0x00,0x00,0x0e,0x08,0x09,0x0c,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x3c,0x04,0x00,0x60,0xfc,0x60,0x98,0x04,0x00 -+// 46940 띜 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x07,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x74,0x04,0xc4,0x04,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 46941 띝 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x01,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x74,0x04,0xe4,0x04,0x04,0x00,0x0c,0x00,0x8e,0x00 -+// 46942 띞 ; -+,0x00,0x00,0x00,0x0d,0x08,0x09,0x0c,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xf4,0x0c,0xc4,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 46943 띟 ; -+,0x00,0x00,0x00,0x0e,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0xf4,0x04,0xc4,0x00,0x00,0xa0,0x78,0x88,0x58,0x00 -+// 46944 띠 ; -+,0x00,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xf4,0x84,0x84,0x84,0x84,0x8c,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 46945 띡 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 46946 띢 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x09,0x04,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 46947 띣 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x9c,0x44,0x08,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 46948 띤 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x09,0x0c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x84,0x84,0x84,0x9c,0x44,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 46949 띥 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x84,0x94,0x44,0x00,0x7e,0x08,0x18,0x26,0x42,0x00 -+// 46950 띦 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x00,0x00,0x04,0x04,0x00,0x02,0x02,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xe4,0x04,0x18,0x02,0x18,0x24,0xc4,0x3c,0x00 -+// 46951 띧 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x0c,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x84,0x94,0xc4,0x00,0x3c,0x00,0x00,0x00,0xfe,0x00 -+// 46952 띨 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x0c,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x00,0xfc,0x00,0x18,0x00,0x86,0x00 -+// 46953 띩 ; -+,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xe4,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 46954 띪 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x00,0xb4,0xa4,0x24,0x24,0x20,0x00 -+// 46955 띫 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x04,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 46956 띬 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 46957 띭 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x00,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x84,0xf4,0x04,0x00,0xf0,0x20,0x30,0x20,0x3e,0x00 -+// 46958 띮 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0xf4,0x04,0x00,0xb8,0x04,0x24,0x08,0x7e,0x00 -+// 46959 띯 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x84,0xf4,0x04,0x18,0x80,0x18,0x34,0x20,0x34,0x00 -+// 46960 띰 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x94,0x44,0x00,0x0c,0x04,0x04,0x84,0x80,0x00 -+// 46961 띱 ; -+,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xf4,0x04,0x04,0x84,0x74,0x04,0x0c,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 46962 띲 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x00,0x00,0x04,0x07,0x04,0x06,0x04,0x00,0x00,0x00,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x08,0x48,0xc8,0x54,0x92,0x40,0x00 -+// 46963 띳 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 46964 띴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0x84,0xe4,0x04,0x08,0x88,0x08,0xd4,0x62,0x42,0x00 -+// 46965 띵 ; -+,0x00,0x00,0x00,0x00,0x0e,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x84,0x84,0xdc,0x44,0x04,0x30,0x80,0x84,0x84,0x78,0x00 -+// 46966 띶 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x00,0xfc,0x60,0x50,0x8c,0x02,0x00 -+// 46967 띷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x70,0x06,0x20,0x70,0x8c,0x02,0x00 -+// 46968 띸 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0x84,0xd4,0x04,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 46969 띹 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xa4,0x84,0x84,0x84,0xf4,0x04,0x00,0xfc,0x00,0xfc,0x00,0xfe,0x00 -+// 46970 띺 ; -+,0x00,0x00,0x00,0x00,0x1c,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x94,0x04,0x00,0x0c,0x10,0x88,0x90,0xbe,0x00 -+// 46971 띻 ; -+,0x00,0x00,0x00,0x06,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x84,0x84,0x8c,0xe4,0x04,0x70,0x06,0x20,0xd8,0x88,0xd0,0x00 -+// 46972 라 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x1f,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x08,0x08,0x0e,0x18,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 46973 락 ; -+,0x00,0x00,0x00,0x1c,0x00,0x01,0x18,0x08,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x0e,0x18,0x88,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 46974 띾 ; -+,0x00,0x00,0x00,0x08,0x00,0x03,0x10,0x10,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x0e,0x18,0x08,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 46975 띿 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x18,0x10,0x1b,0x08,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x0e,0x18,0x88,0x00,0x10,0x10,0x10,0x24,0x42,0x00 -+// 46976 란 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x01,0x08,0x08,0x09,0x0c,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x88,0x0e,0x18,0xc8,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 46977 랁 ; -+,0x00,0x00,0x00,0x1c,0x00,0x03,0x18,0x08,0x0f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x0e,0x18,0x08,0x00,0xfc,0x30,0x30,0x48,0x84,0x00 -+// 46978 랂 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x18,0x08,0x0f,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0f,0x18,0x00,0x30,0x04,0x30,0x48,0xc8,0x78,0x00 -+// 46979 랃 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x18,0x10,0x11,0x0c,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x0f,0x18,0x88,0x00,0x18,0x00,0x00,0x00,0x1c,0x00 -+// 46980 랄 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x08,0x08,0x0f,0x00,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0x78,0x00,0x00,0x90,0x10,0x70,0x00,0x1c,0x00 -+// 46981 랅 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x08,0x0f,0x00,0x0f,0x01,0x0a,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x0e,0x18,0x00,0x00,0x58,0x08,0x08,0x08,0x00,0x00 -+// 46982 랆 ; -+,0x00,0x00,0x00,0x1d,0x00,0x03,0x18,0x08,0x0e,0x00,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x88,0x08,0x0e,0x58,0x00,0x00,0x48,0x48,0x48,0x48,0x58,0x00 -+// 46983 랇 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x08,0x0f,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x08,0x08,0x0e,0x18,0x00,0x10,0xc8,0x58,0x48,0x48,0x58,0x00 -+// 46984 랈 ; -+,0x00,0x00,0x00,0x19,0x01,0x03,0x18,0x00,0x0f,0x00,0x01,0x01,0x0d,0x08,0x0f,0x00,0x00,0x30,0x18,0x08,0x08,0x08,0x1e,0x58,0x00,0x00,0x10,0x10,0x30,0x28,0xc4,0x00 -+// 46985 랉 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x08,0x0e,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x20,0x18,0x18,0x18,0x18,0x1e,0x58,0x00,0x00,0x40,0x40,0x40,0x40,0x7c,0x00 -+// 46986 랊 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x00,0x0f,0x00,0x0e,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x18,0x10,0x10,0x18,0x1a,0x18,0x90,0x00,0x78,0x10,0x50,0x50,0xfc,0x00 -+// 46987 랋 ; -+,0x00,0x00,0x00,0x1d,0x01,0x03,0x08,0x08,0x0e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x1e,0x50,0x00,0x30,0x0c,0x10,0x28,0x44,0x68,0x00 -+// 46988 람 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x18,0x08,0x09,0x0c,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0x18,0xc8,0x00,0x38,0x08,0x00,0x10,0x00,0x00 -+// 46989 랍 ; -+,0x00,0x00,0x00,0x19,0x01,0x01,0x18,0x00,0x0f,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x30,0x18,0x10,0x10,0x18,0x1e,0x70,0x00,0x00,0x10,0x10,0x10,0x10,0xf0,0x00 -+// 46990 랎 ; -+,0x00,0x00,0x00,0x1d,0x01,0x03,0x08,0x08,0x0e,0x01,0x08,0x07,0x00,0x05,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0x48,0x00,0x10,0x90,0x90,0xb8,0xa4,0x40,0x00 -+// 46991 랏 ; -+,0x00,0x00,0x00,0x1d,0x00,0x03,0x10,0x10,0x1f,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x0e,0x38,0x08,0x80,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 46992 랐 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x1f,0x08,0x09,0x0e,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x0e,0x18,0xc8,0x00,0x18,0x10,0xa8,0x64,0x00,0x00 -+// 46993 랑 ; -+,0x00,0x00,0x00,0x1d,0x00,0x07,0x10,0x10,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x0e,0x18,0x08,0x40,0x60,0x10,0x08,0x00,0xb0,0x00 -+// 46994 랒 ; -+,0x00,0x00,0x00,0x1d,0x00,0x01,0x10,0x10,0x1f,0x00,0x07,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x0e,0x18,0x00,0x00,0xf8,0xc0,0xb0,0x18,0x04,0x00 -+// 46995 랓 ; -+,0x00,0x00,0x00,0x19,0x01,0x03,0x08,0x08,0x0f,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x30,0x18,0x08,0x08,0x08,0x1e,0x50,0x00,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 46996 랔 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x18,0x10,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x0e,0x18,0x80,0x00,0x98,0x18,0xd8,0x08,0x00,0x00 -+// 46997 랕 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x00,0x0f,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x0a,0x38,0x80,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 46998 랖 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x10,0x10,0x11,0x08,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x0e,0x18,0x80,0x00,0xf8,0x20,0x10,0x20,0xfc,0x00 -+// 46999 랗 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x08,0x08,0x0f,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0e,0x78,0x00,0xc0,0x0c,0x40,0x30,0x10,0xe0,0x00 -+// 47000 래 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x1b,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x3c,0x24,0xa4,0x24,0x24,0x24,0x04,0x00 -+// 47001 랙 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 47002 랚 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x0c,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 47003 랛 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x10,0x88,0x98,0x94,0xa4,0xc2,0x00 -+// 47004 랜 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x18,0x08,0x09,0x0c,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0xa4,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 47005 랝 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xfc,0x10,0x18,0x24,0xc2,0x00 -+// 47006 랞 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x30,0x06,0x30,0x6c,0x44,0x38,0x00 -+// 47007 랟 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x0b,0x08,0x09,0x04,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x7c,0x00,0x00,0x00,0xfc,0x00 -+// 47008 랠 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x18,0x08,0x0f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xfc,0x04,0xfc,0x00,0x02,0x00 -+// 47009 랡 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x0d,0x04,0x04,0x04,0x00,0x04,0x24,0x24,0x24,0x20,0x3c,0x24,0x00,0x00,0xa4,0x84,0x84,0x04,0x84,0x00 -+// 47010 랢 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x08,0x08,0x0f,0x00,0x07,0x00,0x0d,0x04,0x05,0x00,0x00,0x04,0x24,0x24,0x24,0x20,0x1c,0x24,0x20,0x00,0xb6,0xa4,0xa4,0x24,0xb4,0x00 -+// 47011 랣 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x08,0x08,0x0f,0x00,0x01,0x00,0x0f,0x04,0x07,0x00,0x00,0x04,0x24,0x24,0x24,0x20,0x3c,0x24,0x20,0x04,0xa4,0x24,0x24,0x24,0x3c,0x00 -+// 47012 랤 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x3c,0xa4,0x24,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 47013 랥 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x0d,0x01,0x0d,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0x64,0x24,0x00,0x60,0x20,0x20,0x20,0x3e,0x00 -+// 47014 랦 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x0d,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x7c,0x08,0x28,0x28,0x0e,0x00 -+// 47015 랧 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x0d,0x01,0x0f,0x00,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x38,0x02,0x18,0x2c,0x44,0x24,0x00 -+// 47016 램 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x0c,0x04,0x04,0x04,0xf8,0x00 -+// 47017 랩 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x08,0x04,0xfc,0x04,0x04,0x8c,0x00 -+// 47018 랪 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x08,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 47019 랫 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x44,0x20,0x60,0x90,0x0c,0x02,0x00 -+// 47020 랬 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x08,0x08,0x08,0x94,0x62,0x42,0x00 -+// 47021 랭 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x18,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x04,0x30,0x88,0x84,0x84,0x88,0x20 -+// 47022 랮 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0xec,0x60,0x90,0x0c,0x04,0x00 -+// 47023 랯 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0xe0,0x00,0xe4,0x60,0x98,0x04,0x00 -+// 47024 랰 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 47025 랱 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 47026 랲 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 47027 랳 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x60,0x0c,0x60,0x90,0x88,0xf0,0x00 -+// 47028 랴 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x18,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x0e,0x08,0x08,0x18,0x8e,0x08,0x08,0x08,0x08,0x00 -+// 47029 략 ; -+,0x00,0x00,0x00,0x19,0x00,0x01,0x10,0x10,0x1b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x0e,0x88,0x08,0x1e,0x80,0x00,0xb0,0x08,0x08,0x00,0x00,0x00 -+// 47030 랶 ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x88,0x08,0x8e,0x08,0x18,0x08,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 47031 랷 ; -+,0x00,0x00,0x00,0x19,0x00,0x01,0x10,0x10,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x80,0x08,0x8e,0x08,0x18,0x08,0x00,0x10,0x10,0x38,0x44,0x04,0x00 -+// 47032 랸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x08,0x09,0x0e,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x88,0x88,0x88,0x8e,0x08,0x18,0xce,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 47033 랹 ; -+,0x00,0x00,0x00,0x18,0x00,0x13,0x10,0x10,0x1f,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x8e,0x08,0x5a,0x00,0x00,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 47034 랺 ; -+,0x00,0x00,0x00,0x1d,0x01,0x01,0x18,0x00,0x0f,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x18,0x00,0x00,0x0e,0x18,0x10,0x0e,0x70,0x04,0xf0,0x48,0x88,0x58,0x00 -+// 47035 랻 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x18,0x10,0x1f,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x8e,0x08,0x18,0x88,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 47036 랼 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x08,0x0f,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x1e,0x10,0x50,0x1e,0x00,0x10,0x10,0xf0,0x00,0xfc,0x00 -+// 47037 랽 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x10,0x10,0x1f,0x00,0x0f,0x01,0x0a,0x08,0x0b,0x00,0x00,0x30,0x18,0x10,0x10,0x1e,0x18,0x10,0x1e,0x00,0x58,0x08,0x08,0x08,0x00,0x00 -+// 47038 랾 ; -+,0x00,0x00,0x00,0x01,0x01,0x13,0x10,0x08,0x0e,0x00,0x0f,0x01,0x0a,0x08,0x0a,0x00,0x00,0x00,0x18,0x08,0x08,0x0e,0x18,0xd8,0x08,0x00,0x48,0x48,0x48,0x48,0x58,0x00 -+// 47039 랿 ; -+,0x00,0x00,0x00,0x19,0x01,0x03,0x18,0x00,0x0f,0x00,0x02,0x02,0x1e,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0x0e,0x08,0x78,0x0e,0x10,0x88,0x58,0x48,0x08,0x78,0x00 -+// 47040 럀 ; -+,0x00,0x00,0x00,0x1d,0x01,0x01,0x18,0x10,0x0f,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x20,0x10,0x10,0x10,0x1e,0x10,0x10,0x1e,0x00,0x10,0x10,0x30,0x08,0x84,0x00 -+// 47041 럁 ; -+,0x00,0x00,0x00,0x09,0x01,0x1f,0x10,0x08,0x0e,0x00,0x0b,0x01,0x0e,0x08,0x0e,0x00,0x00,0x30,0x10,0x10,0x10,0x1e,0x10,0xd8,0x18,0x00,0x60,0x40,0x70,0x40,0x7c,0x00 -+// 47042 럂 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x00,0x0f,0x00,0x0b,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x10,0x1e,0x10,0x30,0x1e,0x00,0x48,0x10,0x50,0x10,0xfc,0x00 -+// 47043 럃 ; -+,0x00,0x00,0x00,0x19,0x01,0x03,0x18,0x10,0x0f,0x00,0x03,0x00,0x0c,0x08,0x0e,0x00,0x00,0x20,0x10,0x10,0x10,0x1e,0x10,0x50,0x10,0x30,0x0c,0x30,0x68,0x44,0x48,0x00 -+// 47044 럄 ; -+,0x00,0x00,0x00,0x19,0x00,0x01,0x10,0x10,0x1f,0x00,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x8e,0x08,0x3a,0x08,0x00,0xf8,0x08,0x10,0x10,0xe0,0x00 -+// 47045 럅 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x18,0x08,0x0f,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x1e,0x10,0x50,0x18,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 47046 럆 ; -+,0x00,0x00,0x00,0x1d,0x01,0x03,0x08,0x08,0x0e,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0x10,0x90,0x10,0x1e,0x10,0x58,0x18,0x10,0x90,0x90,0xb8,0xa4,0x40,0x00 -+// 47047 럇 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x18,0x10,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x8e,0x08,0x18,0x0e,0x80,0x40,0xc0,0xb0,0x18,0x0c,0x00 -+// 47048 럈 ; -+,0x00,0x00,0x00,0x19,0x01,0x03,0x18,0x00,0x0f,0x00,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x1e,0x10,0x50,0x18,0x00,0x10,0x10,0x38,0xec,0x44,0x00 -+// 47049 량 ; -+,0x00,0x00,0x00,0x19,0x00,0x03,0x10,0x10,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x08,0x18,0x08,0x40,0xe0,0x10,0x08,0x10,0xf0,0x00 -+// 47050 럊 ; -+,0x00,0x00,0x00,0x1d,0x00,0x01,0x10,0x10,0x1f,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x8e,0x08,0x18,0x88,0x00,0xf8,0xc0,0xa0,0x18,0x00,0x00 -+// 47051 럋 ; -+,0x00,0x00,0x00,0x19,0x01,0x1f,0x10,0x10,0x0e,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x20,0x10,0x10,0x10,0x1e,0x10,0x58,0x18,0xc0,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 47052 럌 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x10,0x10,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x10,0x90,0x10,0x9e,0x10,0x10,0x18,0x00,0xb0,0x10,0xd0,0x10,0x10,0x00 -+// 47053 럍 ; -+,0x00,0x00,0x00,0x1d,0x01,0x01,0x18,0x10,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x1e,0x10,0x30,0x9e,0x00,0xf8,0x00,0x78,0x00,0x08,0x00 -+// 47054 럎 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x10,0x10,0x1b,0x08,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x88,0x08,0x8e,0x08,0x18,0x88,0x00,0xf8,0x20,0x10,0x20,0xfc,0x00 -+// 47055 럏 ; -+,0x00,0x00,0x00,0x1d,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x06,0x01,0x01,0x01,0x00,0x00,0x30,0x10,0x10,0x10,0x1e,0x10,0x58,0x18,0xc0,0x0c,0xc0,0xa0,0x10,0xa0,0x00 -+// 47056 럐 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x0b,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0xbc,0x24,0x24,0x24,0x04,0x00 -+// 47057 럑 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 47058 럒 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x00,0xac,0x84,0x84,0x84,0x00,0x00 -+// 47059 럓 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0x64,0x24,0x00,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 47060 럔 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x0c,0x08,0x09,0x04,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0xbc,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 47061 럕 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x3c,0x24,0x00,0xfc,0x10,0x38,0x64,0x80,0x00 -+// 47062 럖 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x24,0x24,0x30,0x0e,0x30,0x48,0x44,0x38,0x00 -+// 47063 럗 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x3c,0x24,0x24,0x3c,0x24,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00 -+// 47064 럘 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x3c,0x24,0x00,0xec,0x04,0x3c,0x00,0x86,0x00 -+// 47065 럙 ; -+,0x00,0x00,0x00,0x0d,0x00,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x3c,0x24,0x34,0xb4,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47066 럚 ; -+,0x00,0x00,0x00,0x0d,0x00,0x01,0x0c,0x08,0x0f,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x3c,0x24,0x24,0x34,0x24,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 47067 럛 ; -+,0x00,0x00,0x00,0x0d,0x00,0x01,0x0c,0x04,0x06,0x00,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0xa4,0x3c,0x24,0x34,0x64,0x24,0x4c,0xa4,0x3c,0x24,0x24,0x24,0x00 -+// 47068 럜 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0e,0x04,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x10,0x88,0x98,0x18,0x24,0x42,0x00 -+// 47069 럝 ; -+,0x00,0x00,0x00,0x0d,0x00,0x01,0x0c,0x00,0x07,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0x3c,0x24,0x24,0x74,0x24,0x00,0xb0,0x20,0x20,0x20,0x3c,0x00 -+// 47070 럞 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0e,0x00,0x01,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x24,0x24,0x00,0x78,0x08,0x28,0x08,0x7e,0x00 -+// 47071 럟 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x34,0x24,0x38,0x06,0x18,0x2c,0x04,0x3c,0x00 -+// 47072 럠 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x0c,0x08,0x0f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x3c,0x24,0x00,0x8c,0x04,0x04,0x8c,0x80,0x00 -+// 47073 럡 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0xa4,0x24,0x08,0x04,0xfc,0x04,0x84,0x84,0x00 -+// 47074 럢 ; -+,0x00,0x00,0x00,0x0b,0x01,0x01,0x0c,0x08,0x0f,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x34,0x24,0x98,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 47075 럣 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x34,0x24,0x44,0x20,0x60,0xd0,0x0c,0x04,0x00 -+// 47076 럤 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0xa4,0x20,0x18,0x08,0x18,0x94,0x62,0x40,0x00 -+// 47077 럥 ; -+,0x00,0x00,0x00,0x00,0x01,0x00,0x0d,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x34,0x24,0x24,0x3c,0xa4,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 47078 럦 ; -+,0x00,0x00,0x00,0x0d,0x00,0x01,0x0c,0x04,0x07,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0xa4,0x1c,0x84,0x34,0x74,0x00,0x00,0xe4,0x60,0xd8,0x0c,0x00,0x00 -+// 47079 럧 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x02,0x00,0x01,0x02,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x24,0x24,0xe0,0x04,0x60,0x60,0x88,0x04,0x00 -+// 47080 럨 ; -+,0x00,0x00,0x00,0x0d,0x00,0x01,0x0c,0x08,0x0f,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x3c,0x24,0x24,0x34,0x24,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 47081 럩 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x0c,0x00,0x07,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x3c,0x24,0x24,0x34,0x24,0x00,0xf0,0x00,0x00,0x00,0xfc,0x00 -+// 47082 럪 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x0c,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x34,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 47083 럫 ; -+,0x00,0x00,0x00,0x0d,0x00,0x01,0x0c,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xa4,0x3c,0x24,0x34,0x34,0x04,0x60,0x0e,0x20,0x98,0x88,0xf0,0x00 -+// 47084 러 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x84,0x3c,0x04,0x04,0x84,0x04,0x04,0x04,0x04,0x00 -+// 47085 럭 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0x84,0x04,0xec,0x04,0x04,0x04,0x04,0x00 -+// 47086 럮 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x04,0x05,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x04,0x04,0x84,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 47087 럯 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x06,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x3c,0x04,0x84,0x04,0x88,0x88,0x94,0xa6,0x82,0x00 -+// 47088 런 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x0f,0x08,0x08,0x0d,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0xbc,0x04,0x04,0x84,0x04,0x00,0x00,0x00,0xfc,0x00 -+// 47089 럱 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x08,0x08,0x0d,0x04,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0x84,0x04,0x7c,0x18,0x18,0x24,0x42,0x00 -+// 47090 럲 ; -+,0x00,0x00,0x00,0x0e,0x00,0x01,0x08,0x08,0x07,0x00,0x0c,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x04,0x04,0x38,0x06,0x18,0x24,0xc4,0x38,0x00 -+// 47091 럳 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x08,0x06,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x34,0x04,0x84,0x04,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 47092 럴 ; -+,0x00,0x00,0x00,0x0e,0x00,0x01,0x08,0x08,0x07,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x04,0x04,0x04,0x0c,0x08,0xf8,0x00,0xce,0x00 -+// 47093 럵 ; -+,0x00,0x00,0x00,0x0e,0x00,0x01,0x0c,0x00,0x07,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0x04,0x04,0x8c,0x84,0x04,0x04,0x00,0x00 -+// 47094 럶 ; -+,0x00,0x00,0x00,0x0e,0x00,0x09,0x04,0x04,0x07,0x00,0x06,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0x04,0x04,0xa4,0xa4,0x24,0x24,0xa0,0x00 -+// 47095 럷 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x04,0x07,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x14,0x04,0x04,0x0c,0x64,0x3c,0x24,0x24,0x24,0x00 -+// 47096 럸 ; -+,0x00,0x00,0x00,0x0e,0x00,0x09,0x08,0x00,0x07,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0x04,0x04,0x88,0x98,0x18,0x24,0x42,0x00 -+// 47097 럹 ; -+,0x00,0x00,0x00,0x0f,0x00,0x09,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x04,0x04,0x04,0x04,0xa0,0xa4,0x20,0x20,0x1c,0x00 -+// 47098 럺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x08,0x0f,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x3c,0x04,0x84,0x04,0x24,0x08,0x28,0x28,0x7e,0x00 -+// 47099 럻 ; -+,0x00,0x00,0x00,0x0f,0x00,0x09,0x08,0x08,0x0f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x84,0x8c,0x04,0x04,0x04,0x18,0x06,0x18,0x3c,0x04,0x2c,0x00 -+// 47100 럼 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x0c,0x08,0x08,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x04,0x84,0x00,0x0c,0x04,0x04,0x04,0x80,0x00 -+// 47101 럽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0d,0x00,0x04,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x14,0x04,0x04,0x00,0x04,0x84,0x04,0x04,0xfc,0x00 -+// 47102 럾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0b,0x08,0x08,0x0f,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x84,0x84,0x8c,0x04,0x04,0x04,0x98,0x88,0x98,0x98,0xa6,0x82,0x00 -+// 47103 럿 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0x84,0x44,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 47104 렀 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x08,0x08,0x0e,0x01,0x01,0x01,0x02,0x08,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x3c,0x04,0x04,0x00,0x08,0x08,0x9c,0x52,0x00,0x00 -+// 47105 렁 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x04,0x84,0x04,0x70,0x88,0x84,0x88,0xf8,0x00 -+// 47106 렂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x08,0x08,0x09,0x04,0x03,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x0c,0x04,0x84,0x04,0xfc,0x60,0x90,0x0c,0x04,0x00 -+// 47107 렃 ; -+,0x00,0x00,0x00,0x0e,0x00,0x09,0x08,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0x04,0xe0,0x00,0x60,0x60,0x88,0x06,0x00 -+// 47108 렄 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x0d,0x04,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x04,0x84,0x04,0xcc,0x0c,0xe4,0x04,0x00,0x00 -+// 47109 렅 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x3c,0x04,0x04,0x04,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 47110 렆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x08,0x08,0x09,0x04,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x0c,0x84,0x84,0x8c,0x0c,0x04,0x04,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 47111 렇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x08,0x08,0x0e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x84,0xbc,0x04,0x00,0x00,0x00,0x7c,0x70,0x88,0x88,0x70,0x00 -+// 47112 레 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x0b,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x04,0x00 -+// 47113 렉 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0x14,0x34,0x14,0x14,0x04,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 47114 렊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x0c,0x08,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47115 렋 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x10,0x88,0x88,0x9c,0xa6,0xc2,0x00 -+// 47116 렌 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x0f,0x08,0x08,0x06,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x64,0x24,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 47117 렍 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x00,0xfe,0x18,0x18,0x24,0x42,0x00 -+// 47118 렎 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x08,0x08,0x0f,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x30,0x0e,0x30,0x48,0x44,0x38,0x00 -+// 47119 렏 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x0b,0x08,0x09,0x04,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0x74,0x14,0x14,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 47120 렐 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x0b,0x08,0x09,0x04,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xfc,0x04,0x3c,0x00,0xfe,0x00 -+// 47121 렑 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x00,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47122 렒 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x00,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 47123 렓 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x04,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x08,0xa4,0x3c,0x24,0x24,0x24,0x00 -+// 47124 렔 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x05,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x34,0x04,0x24,0x14,0x04,0x00,0x90,0x88,0x98,0x18,0x24,0x42,0x00 -+// 47125 렕 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x0f,0x08,0x0f,0x00,0x05,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x34,0x14,0x14,0x00,0x60,0x20,0x20,0x20,0x3c,0x00 -+// 47126 렖 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x34,0x14,0x34,0x14,0x14,0x04,0x00,0x20,0x08,0x28,0x08,0x7e,0x00 -+// 47127 렗 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x0f,0x08,0x0f,0x00,0x0d,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x04,0x18,0x86,0x18,0x24,0x24,0x3c,0x00 -+// 47128 렘 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x04,0x00,0x8c,0x04,0x04,0x8c,0x80,0x00 -+// 47129 렙 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x00,0x08,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 47130 렚 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x0c,0x08,0x0f,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x04,0x18,0x88,0x88,0x94,0xa2,0x02,0x00 -+// 47131 렛 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x34,0x04,0x24,0x34,0x04,0x04,0x44,0x20,0x60,0x90,0x0c,0x00,0x00 -+// 47132 렜 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x08,0x88,0x08,0x94,0x62,0x40,0x00 -+// 47133 렝 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x0a,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x30,0x88,0x80,0x88,0xf8,0x00 -+// 47134 렞 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x00,0xe0,0x60,0x90,0x0c,0x04,0x00 -+// 47135 렟 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x34,0x14,0x04,0xe0,0x00,0x7c,0x60,0x98,0x04,0x00 -+// 47136 렠 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x0f,0x08,0x0d,0x04,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x14,0x14,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 47137 렡 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x0c,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x04,0x24,0x34,0x04,0x04,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 47138 렢 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x08,0x0b,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 47139 렣 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x04,0x60,0x04,0x20,0xd0,0x88,0xd0,0x00 -+// 47140 려 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x0f,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0xfc,0x84,0x84,0x0c,0x04,0x04,0x84,0x04,0x04,0x04,0x00 -+// 47141 력 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x0c,0x84,0x04,0x24,0x84,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47142 렦 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x08,0x08,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x3c,0x84,0x04,0x2c,0x04,0x04,0xa4,0x84,0x84,0x84,0x80,0x00 -+// 47143 렧 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x08,0x09,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x8c,0x84,0x04,0x04,0x8c,0x18,0x88,0x98,0x94,0xa6,0xc2,0x00 -+// 47144 련 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x09,0x08,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x84,0xbc,0x84,0x04,0x7c,0x04,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 47145 렩 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x08,0x0f,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0xc4,0x0c,0x84,0x04,0x24,0x04,0x04,0x78,0x18,0x18,0xa4,0x42,0x00 -+// 47146 렪 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x04,0x84,0x8c,0x84,0x04,0x44,0x04,0x38,0x06,0x38,0x24,0xc4,0x38,0x00 -+// 47147 렫 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x00,0x05,0x04,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x04,0x24,0x84,0x04,0x3c,0x00,0x00,0x00,0xfc,0x00 -+// 47148 렬 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x08,0x08,0x0e,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x8c,0x84,0x04,0x44,0x04,0x00,0xc8,0x08,0x38,0x00,0xfe,0x00 -+// 47149 렭 ; -+,0x00,0x00,0x00,0x04,0x00,0x09,0x04,0x04,0x07,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0xbc,0x84,0x04,0x44,0x04,0x04,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 47150 렮 ; -+,0x00,0x00,0x00,0x04,0x00,0x0d,0x08,0x04,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0xec,0x04,0x04,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 47151 렯 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x08,0x08,0x07,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x44,0x04,0x08,0x64,0x2c,0x24,0x24,0x2c,0x00 -+// 47152 렰 ; -+,0x00,0x00,0x00,0x0e,0x00,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x8c,0x84,0x04,0x44,0x04,0x04,0x88,0x90,0x18,0x24,0x42,0x00 -+// 47153 렱 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x06,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0x8c,0x04,0x04,0xa0,0x20,0x20,0x20,0x3e,0x00 -+// 47154 렲 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x08,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x04,0x44,0x2c,0x04,0x20,0x08,0x28,0x08,0x7e,0x00 -+// 47155 렳 ; -+,0x00,0x00,0x00,0x0c,0x00,0x09,0x08,0x08,0x0e,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0x4c,0x04,0x18,0x82,0x18,0x2c,0x04,0x2c,0x00 -+// 47156 렴 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0xbc,0x84,0x04,0x24,0x04,0x00,0xfc,0x04,0x00,0x08,0xe0,0x00 -+// 47157 렵 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x0c,0x08,0x0f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x8c,0x84,0x04,0x24,0x04,0x08,0x04,0xfc,0x04,0x04,0x84,0x00 -+// 47158 렶 ; -+,0x00,0x00,0x00,0x0c,0x00,0x09,0x08,0x08,0x0e,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0xcc,0x04,0x98,0x88,0x88,0x9c,0xa6,0x02,0x00 -+// 47159 렷 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x84,0x0c,0x84,0x04,0x24,0x84,0x44,0x20,0x60,0xd0,0x8c,0x02,0x00 -+// 47160 렸 ; -+,0x00,0x00,0x00,0x04,0x00,0x09,0x08,0x08,0x06,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x0c,0x04,0x84,0xbc,0x84,0x04,0xc4,0x04,0x04,0x88,0x88,0x9c,0x66,0x02,0x00 -+// 47161 령 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0x24,0x84,0x00,0x10,0x84,0x84,0x84,0x78,0x00 -+// 47162 렺 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x0c,0x04,0x05,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xc4,0x0c,0x84,0x04,0x24,0x84,0x04,0xfc,0x60,0x50,0x8c,0x00,0x00 -+// 47163 렻 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x08,0x0c,0x06,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0xbc,0x04,0xe0,0x04,0x60,0x60,0x88,0x06,0x00 -+// 47164 렼 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x00,0x07,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x04,0x24,0x84,0x04,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 47165 렽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0x3c,0x04,0xfc,0x00,0xfc,0x00,0x0c,0x00 -+// 47166 렾 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0x2c,0x04,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 47167 렿 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0f,0x08,0x08,0x0e,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0xbc,0x84,0x04,0x44,0x04,0x60,0x04,0x60,0xd0,0x88,0xd0,0x00 -+// 47168 례 ; -+,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x01,0x0c,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x04,0x04,0x24,0x14,0x14,0xf4,0x14,0x04,0x04,0x04,0x04,0x00 -+// 47169 롁 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x0c,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0xf4,0x14,0x00,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 47170 롂 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x0c,0x00,0x06,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x34,0x14,0xf4,0x14,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47171 롃 ; -+,0x00,0x00,0x00,0x0b,0x01,0x00,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0xa4,0x24,0x10,0x88,0x98,0x98,0xa4,0xc2,0x00 -+// 47172 롄 ; -+,0x00,0x00,0x00,0x00,0x0b,0x01,0x01,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 47173 롅 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x08,0x08,0x0e,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x04,0x24,0x24,0x64,0x24,0xa4,0x24,0x00,0xfc,0x10,0x18,0x24,0x82,0x00 -+// 47174 롆 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x34,0x34,0x34,0x14,0xf4,0x04,0x38,0x06,0x18,0x24,0xc4,0x38,0x00 -+// 47175 롇 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x0e,0x08,0x0e,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x64,0x14,0xb4,0x24,0x00,0x7c,0x00,0x00,0x00,0xfe,0x00 -+// 47176 롈 ; -+,0x00,0x00,0x00,0x12,0x00,0x02,0x08,0x08,0x0e,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0xa4,0x24,0x00,0xcc,0x04,0xfc,0x00,0x86,0x00 -+// 47177 롉 ; -+,0x00,0x00,0x00,0x0f,0x01,0x0b,0x08,0x09,0x04,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x34,0x34,0x14,0x14,0xf4,0x04,0x24,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47178 롊 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x08,0x08,0x0e,0x00,0x06,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x34,0x24,0x24,0x14,0xb4,0x04,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 47179 롋 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0xf4,0x14,0x4c,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 47180 롌 ; -+,0x00,0x00,0x00,0x09,0x01,0x03,0x08,0x08,0x0c,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x34,0x34,0x34,0x14,0xb4,0x04,0x10,0x88,0x88,0x14,0x26,0x42,0x00 -+// 47181 롍 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x0c,0x00,0x06,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0xb4,0x14,0x00,0xa0,0xa0,0x20,0x20,0x3e,0x00 -+// 47182 롎 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x08,0x08,0x0c,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0xe4,0x04,0x00,0x28,0x0c,0x28,0x08,0x7e,0x00 -+// 47183 롏 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x08,0x08,0x0e,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0xa4,0x24,0x38,0x02,0x18,0x24,0x04,0x2c,0x00 -+// 47184 롐 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x08,0x08,0x0e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x34,0x14,0xb4,0x14,0x00,0x8c,0x84,0x84,0x84,0xe0,0x00 -+// 47185 롑 ; -+,0x00,0x00,0x00,0x09,0x01,0x0b,0x08,0x09,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x34,0x14,0x14,0xb4,0x04,0x0c,0x84,0x84,0x84,0x84,0x84,0x00 -+// 47186 롒 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x08,0x08,0x0c,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0xa4,0x04,0x98,0x88,0x88,0x94,0x82,0x00,0x00 -+// 47187 롓 ; -+,0x00,0x00,0x00,0x0b,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x04,0xa4,0x04,0x64,0x24,0x60,0x50,0x8c,0x02,0x00 -+// 47188 롔 ; -+,0x00,0x00,0x00,0x0b,0x01,0x1a,0x08,0x09,0x0c,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x04,0xa4,0x04,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 47189 롕 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x24,0x04,0xa4,0x24,0x04,0x34,0x84,0x84,0x84,0x78,0x00 -+// 47190 롖 ; -+,0x00,0x00,0x00,0x0b,0x01,0x02,0x08,0x08,0x0e,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0xe4,0x24,0x04,0xec,0x60,0x90,0x0c,0x04,0x00 -+// 47191 롗 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x08,0x08,0x0e,0x00,0x00,0x03,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0xe4,0x24,0xe0,0x00,0x60,0x60,0x88,0x04,0x00 -+// 47192 롘 ; -+,0x00,0x00,0x00,0x09,0x01,0x00,0x08,0x08,0x0e,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x24,0xe4,0x24,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 47193 롙 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x64,0x04,0xe4,0x04,0x00,0xf8,0x00,0xf0,0x00,0xfc,0x00 -+// 47194 롚 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x08,0x08,0x0e,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x24,0x24,0x64,0x24,0xa4,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 47195 롛 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0xa4,0x24,0x60,0x1c,0x60,0x90,0x80,0xf0,0x00 -+// 47196 로 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x08,0x00,0x70,0x00,0x00,0xf8,0x00,0x00,0xff,0x00,0x00,0x00 -+// 47197 록 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x98,0x10,0x00,0x00,0xf8,0x40,0xfe,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 47198 롞 ; -+,0x00,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x1f,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0xf8,0x40,0xfe,0x00,0x2c,0x00,0x00,0x00,0x00,0x00 -+// 47199 롟 ; -+,0x00,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0xf8,0x40,0xdf,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 47200 론 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x04,0x03,0x00,0x1e,0x00,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0xb8,0x00,0x10,0x00,0x00,0xf8,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00 -+// 47201 롡 ; -+,0x00,0x00,0x02,0x00,0x06,0x00,0x00,0x00,0x1e,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0xc0,0x40,0xfe,0x04,0xf0,0x10,0x30,0x44,0x80,0x00 -+// 47202 롢 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xc0,0xc0,0x00,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 47203 롣 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0xf8,0x40,0xff,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 47204 롤 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x02,0x00,0x1e,0x00,0x03,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0x10,0x00,0xf8,0x80,0x02,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 47205 롥 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1c,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x98,0x10,0x30,0x00,0xf8,0x00,0xce,0x00,0x88,0x88,0x08,0x08,0x08,0x00 -+// 47206 롦 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xc0,0x80,0x00,0x04,0x24,0x24,0x00,0x28,0x20,0x00 -+// 47207 롧 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1c,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x98,0x10,0x00,0x00,0xf8,0x40,0x02,0x08,0x64,0x3c,0x24,0x2c,0x20,0x00 -+// 47208 롨 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x03,0x00,0x1c,0x00,0x0d,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xc0,0x80,0x02,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 47209 롩 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x00,0x00,0x00,0x00,0x09,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xc0,0x82,0x00,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 47210 롪 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x00,0x1e,0x00,0x01,0x01,0x0e,0x04,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x80,0x06,0x00,0x50,0x08,0x08,0x00,0xfc,0x00 -+// 47211 롫 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x00,0x18,0x00,0x09,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xc0,0xc0,0x00,0x30,0x04,0x10,0x48,0x40,0x38,0x00 -+// 47212 롬 ; -+,0x00,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x1e,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0xf8,0x40,0xff,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 47213 롭 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x00,0x1e,0x00,0x04,0x07,0x04,0x06,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x80,0x9e,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 47214 롮 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x00,0x00,0x18,0x01,0x08,0x07,0x00,0x05,0x04,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xc0,0xc2,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 47215 롯 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0xf8,0x40,0xff,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 47216 롰 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1e,0x00,0x02,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0xf0,0x00,0xf8,0x80,0x9f,0x00,0x10,0x10,0xa8,0xc4,0x80,0x00 -+// 47217 롱 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x00,0x00,0x1e,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xc0,0x40,0xff,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 47218 롲 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1e,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x10,0xc0,0x00,0xf0,0x40,0xfe,0x00,0xcc,0xc0,0x30,0x08,0x04,0x00 -+// 47219 롳 ; -+,0x00,0x00,0x04,0x00,0x06,0x04,0x03,0x00,0x1e,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xc0,0x80,0x9e,0x80,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 47220 롴 ; -+,0x00,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x98,0x10,0x00,0x00,0xf0,0x40,0xff,0x00,0x88,0x08,0xc8,0x08,0x08,0x00 -+// 47221 롵 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x03,0x00,0x1c,0x00,0x04,0x06,0x03,0x02,0x03,0x00,0x00,0x00,0xb8,0x10,0x70,0x00,0xf8,0x80,0xcf,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 47222 롶 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1e,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x98,0x00,0x00,0x00,0xf8,0x40,0xff,0x00,0xf8,0x00,0x10,0x20,0xfc,0x00 -+// 47223 롷 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1e,0x01,0x0f,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xf8,0x00,0x0e,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 47224 롸 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x08,0x08,0x0f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x08,0x08,0xc8,0x0e,0x38,0x08,0x08,0x08,0x08,0x00 -+// 47225 롹 ; -+,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x02,0x03,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0xcf,0x18,0x88,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 47226 롺 ; -+,0x00,0x00,0x00,0x1c,0x00,0x08,0x08,0x03,0x03,0x1c,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x08,0x08,0xc8,0x00,0x50,0x08,0x08,0x08,0x00,0x00 -+// 47227 롻 ; -+,0x00,0x00,0x00,0x0c,0x00,0x08,0x08,0x02,0x03,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x0a,0x18,0xc8,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 47228 롼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x02,0x03,0x1c,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x08,0xca,0x18,0xc8,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 47229 롽 ; -+,0x00,0x00,0x00,0x0c,0x00,0x08,0x08,0x07,0x02,0x1e,0x00,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x08,0xc8,0x58,0x00,0x0c,0x30,0x30,0x48,0x84,0x00 -+// 47230 롾 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0d,0x02,0x03,0x1c,0x00,0x05,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0xc8,0x18,0xc8,0x30,0x00,0xf0,0x78,0xc8,0x58,0x00 -+// 47231 롿 ; -+,0x00,0x00,0x00,0x1c,0x00,0x09,0x08,0x0b,0x02,0x1f,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x08,0xce,0x18,0x08,0x00,0xe0,0x00,0x00,0xb8,0x00 -+// 47232 뢀 ; -+,0x00,0x00,0x00,0x0c,0x00,0x08,0x08,0x03,0x03,0x1e,0x03,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x08,0x0e,0xd8,0x00,0xf0,0x10,0x30,0x00,0xfc,0x00 -+// 47233 뢁 ; -+,0x00,0x00,0x00,0x00,0x0b,0x08,0x0b,0x02,0x03,0x1c,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x88,0x88,0x88,0x08,0xca,0x18,0xc8,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 47234 뢂 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x02,0x03,0x1c,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0xc8,0x08,0xc8,0x00,0x78,0x48,0x48,0x48,0x40,0x00 -+// 47235 뢃 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x02,0x03,0x1e,0x0a,0x02,0x1e,0x08,0x0e,0x00,0x00,0x00,0x88,0x88,0x88,0x08,0xc8,0x08,0xc8,0x00,0x98,0x48,0x48,0x48,0x78,0x00 -+// 47236 뢄 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x02,0x03,0x1c,0x0f,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0xc8,0x18,0xc8,0x00,0x10,0x10,0x38,0x4c,0x84,0x00 -+// 47237 뢅 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x02,0x03,0x1e,0x09,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x48,0x08,0x48,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 47238 뢆 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x02,0x03,0x1c,0x0b,0x00,0x0e,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0xc8,0x08,0xc8,0x08,0x78,0x18,0x48,0x10,0xfc,0x00 -+// 47239 뢇 ; -+,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x01,0x03,0x1e,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0xc8,0x08,0xc8,0x20,0x00,0x50,0x28,0x04,0x38,0x00 -+// 47240 뢈 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0c,0x08,0x07,0x03,0x1e,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x08,0xc8,0xc8,0x00,0x00,0x18,0x10,0x10,0x80,0x00 -+// 47241 뢉 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x00,0x03,0x1c,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0xca,0x18,0xc8,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 47242 뢊 ; -+,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x03,0x03,0x1e,0x01,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x48,0x08,0xc8,0x00,0x90,0x90,0x98,0xa4,0xc0,0x00 -+// 47243 뢋 ; -+,0x00,0x00,0x00,0x0c,0x00,0x08,0x08,0x03,0x03,0x1e,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x08,0x08,0xc8,0x88,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 47244 뢌 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x02,0x03,0x1c,0x03,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0xc8,0x08,0xc8,0x00,0x10,0x10,0xa8,0x64,0x40,0x00 -+// 47245 뢍 ; -+,0x00,0x00,0x00,0x0c,0x00,0x09,0x08,0x07,0x00,0x1f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x08,0xce,0x18,0x08,0x60,0x10,0x00,0x10,0xf0,0x00 -+// 47246 뢎 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0c,0x08,0x03,0x03,0x0c,0x04,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0a,0x18,0xc8,0x00,0x38,0x40,0xe0,0x18,0x0c,0x00 -+// 47247 뢏 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x0d,0x02,0x03,0x1c,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x88,0x88,0x88,0x08,0xc8,0x08,0xc8,0x00,0xc0,0xfc,0x40,0xb0,0x08,0x00 -+// 47248 뢐 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0d,0x08,0x07,0x03,0x1e,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x08,0xc8,0xc8,0x00,0x98,0x08,0xf8,0x00,0x00,0x00 -+// 47249 뢑 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0c,0x08,0x02,0x03,0x1e,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x48,0x08,0x48,0x08,0x18,0x00,0x18,0x00,0x0c,0x00 -+// 47250 뢒 ; -+,0x00,0x00,0x00,0x0c,0x00,0x09,0x08,0x07,0x03,0x1e,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x08,0xc8,0xc8,0x00,0xf8,0x20,0x10,0x20,0xfc,0x00 -+// 47251 뢓 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x02,0x03,0x1f,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x10,0x88,0x88,0x88,0x08,0xc8,0x08,0xc8,0x00,0x00,0xcc,0xa0,0x10,0x20,0x00 -+// 47252 뢔 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x09,0x08,0x03,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x1c,0x94,0x14,0x94,0x14,0x04,0x04,0x04,0x00 -+// 47253 뢕 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x03,0x02,0x0e,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x9c,0x34,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 47254 뢖 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x03,0x03,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x14,0x94,0xf4,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 47255 뢗 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x03,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x14,0x94,0x64,0x00,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 47256 뢘 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x08,0x03,0x02,0x0e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x14,0x1c,0x74,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 47257 뢙 ; -+,0x00,0x00,0x00,0x08,0x00,0x0d,0x04,0x03,0x01,0x0e,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x04,0x32,0x92,0x92,0x92,0x16,0x96,0xd0,0x00,0x06,0x18,0x18,0x24,0x42,0x00 -+// 47258 뢚 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x03,0x02,0x0e,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x9c,0x34,0x30,0x00,0xfe,0x38,0x44,0x28,0x00 -+// 47259 뢛 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x07,0x02,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x14,0xdc,0x34,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 47260 뢜 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x0b,0x02,0x1e,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0xbc,0x24,0x00,0xfc,0x04,0x0c,0x00,0x86,0x00 -+// 47261 뢝 ; -+,0x00,0x00,0x00,0x08,0x00,0x09,0x00,0x07,0x02,0x1f,0x04,0x00,0x05,0x04,0x05,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x9c,0x34,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 47262 뢞 ; -+,0x00,0x00,0x00,0x01,0x00,0x09,0x08,0x03,0x02,0x1e,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x84,0x94,0x14,0x94,0xa4,0x00,0xbc,0xa4,0x24,0x24,0x20,0x00 -+// 47263 뢟 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x07,0x02,0x0f,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x9c,0x34,0x00,0x4c,0x24,0x24,0x24,0x3c,0x00 -+// 47264 뢠 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x03,0x02,0x1f,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x34,0x84,0x94,0x14,0x9c,0x24,0x00,0x18,0x90,0x18,0x24,0x42,0x00 -+// 47265 뢡 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x03,0x03,0x0e,0x0d,0x00,0x0d,0x04,0x05,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x94,0x74,0x00,0xfc,0x20,0x3c,0x20,0x3e,0x00 -+// 47266 뢢 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x03,0x02,0x1e,0x05,0x01,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x84,0x84,0x04,0x94,0x24,0x00,0x24,0x08,0x28,0x08,0x7e,0x00 -+// 47267 뢣 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x03,0x00,0x0f,0x05,0x01,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x94,0x34,0x10,0x00,0x7e,0x18,0x24,0x24,0x00 -+// 47268 뢤 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x07,0x03,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x94,0x74,0x00,0x04,0x84,0x84,0x84,0xf0,0x00 -+// 47269 뢥 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x03,0x02,0x0e,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0x84,0x94,0x14,0x9c,0x64,0x00,0x0c,0x84,0x8c,0x84,0x8c,0x00 -+// 47270 뢦 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x03,0x02,0x0e,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x84,0x94,0x14,0x94,0x24,0x10,0x88,0x88,0x98,0xa6,0xc2,0x00 -+// 47271 뢧 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x03,0x02,0x0f,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x94,0x34,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 47272 뢨 ; -+,0x00,0x00,0x00,0x08,0x00,0x0d,0x00,0x03,0x01,0x0e,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0xd4,0x34,0x10,0x08,0x08,0x98,0x64,0x02,0x00 -+// 47273 뢩 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x03,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x94,0x94,0x14,0x94,0x14,0x00,0x30,0x48,0x84,0x84,0x48,0x00 -+// 47274 뢪 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x03,0x01,0x0f,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x04,0x24,0x14,0x94,0x94,0x14,0xd4,0x34,0x00,0x04,0x60,0x60,0x98,0x04,0x00 -+// 47275 뢫 ; -+,0x00,0x00,0x00,0x08,0x00,0x0d,0x04,0x03,0x01,0x0e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x32,0x92,0x92,0x92,0x16,0xd6,0x70,0x00,0x60,0x1e,0x20,0x58,0x04,0x00 -+// 47276 뢬 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x03,0x01,0x0e,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x94,0x34,0x00,0x2c,0x04,0x7c,0x04,0x04,0x00 -+// 47277 뢭 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x07,0x02,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0xdc,0x34,0x04,0x00,0x40,0x08,0x00,0x0c,0x00 -+// 47278 뢮 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x07,0x03,0x0e,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0xd4,0x74,0x00,0x0c,0x10,0x98,0x90,0xfe,0x00 -+// 47279 뢯 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x0f,0x02,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x24,0xbc,0x24,0x04,0x40,0xfc,0xf0,0x00,0x90,0x00 -+// 47280 뢰 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x07,0x04,0x04,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xc4,0x04,0x64,0x84,0x1c,0xc4,0x04,0x04,0x04,0x00 -+// 47281 뢱 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x06,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0x04,0xe4,0x04,0xe4,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47282 뢲 ; -+,0x00,0x00,0x00,0x07,0x00,0x04,0x04,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x44,0x04,0x24,0x84,0xe4,0x00,0x24,0x84,0x84,0x84,0x84,0x00 -+// 47283 뢳 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x01,0x01,0x1e,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x64,0x04,0x64,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 47284 뢴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x01,0x0c,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x04,0x64,0x04,0xe4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 47285 뢵 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x01,0x01,0x0e,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x04,0xe4,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 47286 뢶 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x01,0x01,0x0c,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x04,0xe4,0x30,0x00,0xfe,0x38,0x24,0x38,0x00 -+// 47287 뢷 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x01,0x01,0x0f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x44,0xc4,0x04,0x84,0x64,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 47288 뢸 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x0e,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x84,0xb4,0x00,0xfc,0x04,0x1c,0x00,0x82,0x00 -+// 47289 뢹 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x07,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x44,0x44,0xc4,0x04,0xe4,0x84,0xc4,0x00,0xbc,0x84,0x84,0x04,0x04,0x00 -+// 47290 뢺 ; -+,0x00,0x00,0x00,0x06,0x00,0x06,0x02,0x00,0x01,0x0c,0x07,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x04,0x64,0x44,0x04,0x24,0x84,0xe4,0x00,0xbc,0xa4,0xa4,0x24,0x90,0x00 -+// 47291 뢻 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x06,0x01,0x01,0x0c,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xe4,0x00,0xc4,0x24,0x24,0x24,0x24,0x00 -+// 47292 뢼 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x0c,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x24,0x04,0xe4,0x00,0x98,0x90,0x18,0x24,0x42,0x00 -+// 47293 뢽 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x01,0x0c,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x64,0x04,0xe4,0x00,0xbc,0xa0,0x3c,0x20,0x3e,0x00 -+// 47294 뢾 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x0c,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0x44,0x0c,0xe4,0x00,0x00,0x08,0x28,0x28,0x7e,0x00 -+// 47295 뢿 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x01,0x01,0x0e,0x06,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x64,0x84,0xe4,0x10,0x80,0xbe,0x94,0x22,0x14,0x00 -+// 47296 룀 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x84,0x64,0x00,0x00,0x8c,0x04,0x08,0xe0,0x00 -+// 47297 룁 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x01,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0xe4,0x04,0xe4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 47298 룂 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x0c,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0x04,0x04,0xe4,0x00,0x88,0x88,0x94,0xa2,0x40,0x00 -+// 47299 룃 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x44,0x44,0x04,0x64,0x04,0xf4,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 47300 룄 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x06,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x84,0xc4,0x00,0x88,0x88,0xd4,0x22,0x00,0x00 -+// 47301 룅 ; -+,0x00,0x00,0x00,0x07,0x00,0x04,0x04,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x44,0x04,0x04,0x84,0x24,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 47302 룆 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x07,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0xe4,0x04,0xc4,0x00,0x7c,0x20,0x70,0x8c,0x04,0x00 -+// 47303 룇 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x08,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xe4,0x00,0x00,0xfc,0x60,0xd8,0x06,0x00 -+// 47304 룈 ; -+,0x00,0x00,0x00,0x07,0x00,0x04,0x04,0x01,0x01,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x64,0x44,0x04,0x04,0x84,0xe4,0x00,0x0c,0x04,0x7c,0x04,0x04,0x00 -+// 47305 룉 ; -+,0x00,0x00,0x00,0x06,0x00,0x06,0x02,0x00,0x01,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x64,0x64,0x04,0x24,0x84,0xe4,0x00,0x0c,0x00,0x1c,0x00,0x86,0x00 -+// 47306 룊 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x0f,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x84,0xe4,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 47307 룋 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x01,0x01,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xe4,0x00,0x00,0xa0,0x58,0x88,0x50,0x00 -+// 47308 료 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x07,0x04,0x04,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x10,0xf0,0x00,0x00,0x20,0x10,0x10,0xff,0x00,0x00,0x00 -+// 47309 룍 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf0,0x20,0x3f,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 47310 룎 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x0d,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0xf0,0x10,0x70,0x00,0xf8,0x20,0x3f,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 47311 룏 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf0,0x20,0x3f,0x00,0x30,0x30,0x38,0x44,0x80,0x00 -+// 47312 룐 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x04,0x02,0x02,0x03,0x08,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0xf0,0x00,0x10,0x00,0x00,0x30,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00 -+// 47313 룑 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x02,0x02,0x1e,0x00,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x20,0x20,0x1e,0x04,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 47314 룒 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x02,0x1f,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x20,0x3e,0x30,0x04,0xb0,0x48,0x08,0x70,0x00 -+// 47315 룓 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x00,0x06,0x04,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x70,0x00,0xf8,0x20,0x3e,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 47316 룔 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x03,0x02,0x1e,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x20,0x2e,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 47317 룕 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf0,0x10,0x30,0x00,0xf8,0x20,0x3e,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 47318 룖 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1c,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xd0,0x10,0x00,0x00,0x20,0x20,0x00,0x4c,0x24,0x00,0x00,0x28,0x20,0x00 -+// 47319 룗 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x02,0x1e,0x00,0x01,0x01,0x0c,0x00,0x04,0x00,0x00,0x00,0xd0,0x10,0xf0,0x00,0xf8,0x20,0x3e,0x08,0x4c,0x78,0x40,0x78,0x40,0x00 -+// 47320 룘 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x20,0x3e,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 47321 룙 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x03,0x02,0x18,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x20,0x22,0x00,0x00,0x70,0x40,0x78,0x40,0x3c,0x00 -+// 47322 룚 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x20,0x3e,0x00,0x70,0x08,0x08,0x00,0xfc,0x00 -+// 47323 룛 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x02,0x1c,0x00,0x0d,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x30,0x20,0x00,0x30,0x04,0x10,0x48,0x40,0x38,0x00 -+// 47324 룜 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf0,0x10,0x70,0x00,0xf8,0x20,0x7e,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 47325 룝 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1f,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x20,0x7e,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 47326 룞 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1c,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0xd0,0x10,0xd0,0x00,0xf8,0x20,0x00,0x10,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 47327 룟 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x02,0x03,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x10,0xf0,0x00,0xf8,0x20,0x3e,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 47328 룠 ; -+,0x00,0x00,0x06,0x00,0x07,0x04,0x03,0x02,0x1e,0x00,0x02,0x03,0x03,0x04,0x10,0x00,0x00,0x00,0x10,0x10,0xf0,0x00,0xf0,0x20,0x1e,0x00,0x10,0x10,0xa8,0xc4,0x80,0x00 -+// 47329 룡 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x02,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0xd0,0x00,0xf0,0x20,0x7f,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 47330 룢 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1e,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xf0,0x10,0x70,0x00,0xf8,0x20,0x3f,0x00,0xfc,0xc0,0x20,0x18,0x04,0x00 -+// 47331 룣 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x03,0x02,0x1f,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf0,0x20,0x3e,0xc0,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 47332 룤 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1e,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x20,0x3e,0x00,0x88,0x08,0xc8,0x08,0x08,0x00 -+// 47333 룥 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x03,0x02,0x1f,0x00,0x07,0x04,0x07,0x04,0x03,0x00,0x00,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x20,0x3f,0x00,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 47334 룦 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x07,0x02,0x1f,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x20,0x3e,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 47335 룧 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x02,0x1e,0x01,0x0e,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0xd0,0x10,0xd0,0x00,0xf0,0x20,0x1e,0xc0,0xfc,0xc0,0x20,0x20,0xc0,0x00 -+// 47336 루 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x06,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd8,0x00,0xf0,0x00,0x18,0x00,0x02,0xc0,0x40,0x40,0x40,0x40,0x00,0x00 -+// 47337 룩 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1c,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x98,0x00,0x60,0x00,0xf8,0x02,0xc0,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 47338 룪 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x06,0x00,0x1c,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf8,0x00,0x70,0x00,0x38,0x00,0xc0,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 47339 룫 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x98,0x10,0x70,0x00,0xf8,0x06,0x40,0x00,0x10,0x30,0x28,0x44,0x80,0x00 -+// 47340 룬 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x00,0x70,0x00,0x18,0x00,0x0e,0x40,0x40,0x40,0x00,0x00,0x00,0x00 -+// 47341 룭 ; -+,0x00,0x00,0x02,0x00,0x07,0x04,0x03,0x00,0x10,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0x10,0xc0,0x00,0xf8,0x02,0xc0,0x00,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 47342 룮 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x0e,0x80,0x70,0x04,0x30,0x48,0x48,0x78,0x00 -+// 47343 룯 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x18,0x00,0x04,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x98,0x00,0x70,0x00,0xf8,0x02,0x40,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00 -+// 47344 룰 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x03,0x00,0x1e,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0xf0,0x00,0xf8,0x00,0xde,0x00,0xf0,0x10,0x00,0x00,0xf8,0x00 -+// 47345 룱 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x10,0x10,0x80,0x00,0x00,0x06,0x00,0x80,0x88,0x88,0x08,0x08,0x08,0x00 -+// 47346 룲 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf0,0x06,0x00,0x4c,0x24,0x24,0x24,0x2c,0x20,0x00 -+// 47347 룳 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x06,0xc0,0x48,0x64,0x3c,0x24,0x2c,0x24,0x00 -+// 47348 룴 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x98,0x10,0xf0,0x00,0xf8,0x06,0xc0,0x90,0x90,0x10,0x28,0x44,0x00,0x00 -+// 47349 룵 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x18,0x00,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x90,0x10,0xc0,0x00,0xf8,0x06,0xc0,0x00,0x70,0x00,0x38,0x20,0x0c,0x00 -+// 47350 룶 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x00,0x00,0x01,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x10,0x10,0xf0,0x00,0xf0,0x06,0x80,0x00,0x00,0x08,0x28,0x00,0xfc,0x00 -+// 47351 룷 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x90,0x10,0x70,0x00,0xf8,0x02,0xc0,0x70,0x0c,0x10,0x48,0x44,0x38,0x00 -+// 47352 룸 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xf8,0x06,0x40,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 47353 룹 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x03,0x00,0x1e,0x00,0x04,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xf0,0x02,0x80,0xb0,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 47354 룺 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x03,0x00,0x00,0x01,0x08,0x07,0x00,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x1e,0x40,0x90,0x90,0x90,0xac,0xa4,0x80,0x00 -+// 47355 룻 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x98,0x10,0x60,0x00,0xf8,0x0e,0x40,0xc0,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 47356 룼 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x00,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x90,0x10,0x80,0x00,0xf0,0x0e,0x80,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 47357 룽 ; -+,0x00,0x00,0x06,0x00,0x07,0x04,0x03,0x00,0x1c,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x10,0xe0,0x00,0xf8,0x02,0xc0,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 47358 룾 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xf8,0x10,0x70,0x00,0xf8,0x06,0x40,0x00,0xc0,0xc0,0x30,0x18,0x04,0x00 -+// 47359 룿 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x00,0x00,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x10,0x80,0x00,0xf8,0x1f,0x40,0xc0,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 47360 뤀 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1c,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x98,0x00,0xf0,0x00,0xf8,0x02,0xc0,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 47361 뤁 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x90,0x10,0x70,0x00,0xf0,0x02,0xc0,0x00,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 47362 뤂 ; -+,0x00,0x00,0x07,0x00,0x04,0x04,0x03,0x00,0x18,0x00,0x07,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0xf8,0x00,0x70,0x00,0xf8,0x02,0xc0,0x00,0xf8,0x20,0x20,0x20,0x80,0x00 -+// 47363 뤃 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x10,0x00,0x01,0x07,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xe0,0x3f,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 47364 뤄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0c,0x04,0x07,0x00,0x00,0x0d,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x04,0xc4,0x04,0xe4,0x04,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47365 뤅 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0xe4,0x04,0x8c,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47366 뤆 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x03,0x00,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0xe4,0x04,0xbc,0x80,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47367 뤇 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0xe4,0x04,0x0c,0x00,0x08,0x88,0x98,0xa6,0xc2,0x00 -+// 47368 뤈 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x03,0x00,0x0d,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0xc4,0x04,0xe4,0x04,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 47369 뤉 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0d,0x00,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x44,0x44,0xc4,0x04,0xe4,0x04,0x3c,0x00,0x1e,0x10,0x18,0x24,0x42,0x00 -+// 47370 뤊 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x0f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0x64,0x04,0xbc,0x04,0x00,0x7e,0x1c,0x24,0x2c,0x00 -+// 47371 뤋 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x06,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0x64,0x04,0x8c,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 47372 뤌 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x00,0x0f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0x64,0x04,0x3c,0x00,0xf8,0x00,0x18,0x00,0xfe,0x00 -+// 47373 뤍 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x00,0x0f,0x00,0x06,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x04,0x24,0x64,0x04,0xe4,0x04,0xbc,0x00,0xbc,0x84,0x84,0x04,0x04,0x00 -+// 47374 뤎 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x0c,0x00,0x07,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x04,0x24,0x64,0x04,0xe4,0x04,0x9c,0x00,0xb4,0xa4,0xa4,0x24,0x00,0x00 -+// 47375 뤏 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x0f,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0x64,0x04,0xbc,0x04,0xcc,0x24,0x24,0x24,0x24,0x00 -+// 47376 뤐 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0d,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x04,0xbc,0x00,0x98,0x98,0x98,0x24,0x42,0x00 -+// 47377 뤑 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0d,0x00,0x07,0x00,0x0d,0x04,0x05,0x00,0x00,0x08,0x44,0x04,0x44,0x04,0xe4,0x04,0x3c,0x04,0x7c,0x20,0x3c,0x20,0x3e,0x00 -+// 47378 뤒 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x07,0x00,0x0d,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0xe4,0x04,0x3c,0x04,0x38,0x08,0x28,0x08,0x7e,0x00 -+// 47379 뤓 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0d,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0xe4,0x04,0x3c,0x00,0x80,0x7e,0x1c,0x24,0x24,0x00 -+// 47380 뤔 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x04,0xbc,0x00,0x0c,0x04,0x04,0x04,0x80,0x00 -+// 47381 뤕 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x04,0xbc,0x04,0x04,0x84,0x84,0x84,0x84,0x00 -+// 47382 뤖 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x0f,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x44,0xc4,0x04,0xe4,0x04,0x3c,0x00,0x88,0x88,0x98,0xa6,0xc2,0x00 -+// 47383 뤗 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x03,0x00,0x0f,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x04,0x0c,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 47384 뤘 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x03,0x00,0x0d,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x44,0x04,0x64,0x04,0xe4,0x04,0xbc,0x00,0x08,0x08,0x9c,0x52,0x22,0x00 -+// 47385 뤙 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x03,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x04,0x0c,0x04,0x30,0x40,0x84,0x84,0x78,0x00 -+// 47386 뤚 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x44,0x44,0xc4,0x04,0xe4,0x04,0x3c,0x00,0x1c,0x20,0x60,0x88,0x04,0x00 -+// 47387 뤛 ; -+,0x00,0x00,0x04,0x00,0x04,0x04,0x03,0x00,0x0d,0x01,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x44,0x04,0x44,0x04,0xe4,0x84,0x3c,0x00,0x60,0xfe,0x60,0xd8,0x04,0x00 -+// 47388 뤜 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0f,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x44,0x04,0x44,0x04,0xe4,0x04,0xbc,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 47389 뤝 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x24,0x24,0x84,0x04,0x00,0x00,0x0c,0x00,0x8c,0x00 -+// 47390 뤞 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0f,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x44,0xc4,0x04,0xe4,0x04,0x1c,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 47391 뤟 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x09,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0x44,0x04,0xe4,0x04,0x3c,0x70,0x02,0x20,0x48,0x88,0x58,0x00 -+// 47392 뤠 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x05,0x00,0x1f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x94,0x14,0x14,0x74,0x14,0x14,0x14,0x04,0x00 -+// 47393 뤡 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x05,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x14,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47394 뤢 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x04,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x04,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47395 뤣 ; -+,0x00,0x00,0x00,0x09,0x00,0x0d,0x00,0x00,0x1f,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x14,0x94,0x94,0x34,0x14,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 47396 뤤 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x00,0x01,0x00,0x1e,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x94,0x14,0x14,0x74,0x14,0x00,0x00,0xfe,0x00 -+// 47397 뤥 ; -+,0x00,0x00,0x00,0x09,0x00,0x0c,0x04,0x00,0x0e,0x00,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x10,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 47398 뤦 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x05,0x00,0x1e,0x02,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x94,0x74,0x34,0x00,0xfe,0x38,0x44,0x2c,0x00 -+// 47399 뤧 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x1f,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0x94,0x34,0x14,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 47400 뤨 ; -+,0x00,0x00,0x00,0x01,0x00,0x09,0x08,0x00,0x1e,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x94,0xb4,0x24,0xfc,0x04,0x1c,0x00,0x82,0x00 -+// 47401 뤩 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x05,0x00,0x0f,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x00,0x04,0x36,0x92,0x92,0x12,0x92,0x12,0x70,0x10,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 47402 뤪 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0c,0x04,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x36,0x92,0x92,0x12,0x92,0x92,0x70,0x10,0xbc,0xa4,0xa4,0x24,0x94,0x00 -+// 47403 뤫 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x04,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x36,0x90,0x92,0x12,0x92,0x92,0x70,0x10,0xe4,0xa4,0xa4,0x24,0xbc,0x00 -+// 47404 뤬 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x04,0x00,0x0e,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 47405 뤭 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0d,0x04,0x00,0x1f,0x02,0x07,0x00,0x0d,0x04,0x05,0x00,0x00,0x0c,0x34,0x94,0x94,0x14,0x94,0x94,0x34,0x14,0x3c,0x20,0x3c,0x20,0x3e,0x00 -+// 47406 뤮 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x05,0x00,0x1e,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x04,0xbe,0x84,0xa4,0x00,0x0e,0x00 -+// 47407 뤯 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x05,0x00,0x1e,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x14,0x80,0x7e,0x1c,0x24,0x24,0x00 -+// 47408 뤰 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x04,0x00,0x1f,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x94,0x94,0x74,0x14,0x00,0x84,0x84,0x84,0xc0,0x00 -+// 47409 뤱 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x04,0x00,0x1e,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x14,0x14,0x94,0x94,0x74,0x14,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 47410 뤲 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x00,0x0e,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x94,0x94,0x74,0x14,0x88,0x88,0x9c,0x92,0x20,0x00 -+// 47411 뤳 ; -+,0x00,0x00,0x00,0x09,0x00,0x0d,0x04,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x34,0x94,0x94,0x14,0x94,0x94,0x14,0x64,0x24,0x20,0x50,0x8c,0x02,0x00 -+// 47412 뤴 ; -+,0x00,0x00,0x00,0x08,0x00,0x0c,0x05,0x00,0x0f,0x00,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x00,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x10,0x08,0x08,0x9c,0x66,0x02,0x00 -+// 47413 뤵 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x94,0x14,0x04,0x34,0x48,0x84,0x84,0x78,0x00 -+// 47414 뤶 ; -+,0x00,0x00,0x00,0x0c,0x00,0x0c,0x05,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x10,0x0c,0x60,0x60,0x98,0x04,0x00 -+// 47415 뤷 ; -+,0x00,0x00,0x00,0x08,0x00,0x0c,0x04,0x01,0x0a,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x36,0x92,0x92,0x12,0x92,0x90,0x70,0x10,0x00,0xfe,0x20,0xc8,0x06,0x00 -+// 47416 뤸 ; -+,0x00,0x00,0x00,0x08,0x00,0x0d,0x04,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x14,0xec,0x04,0x3c,0x04,0x04,0x00 -+// 47417 뤹 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x04,0x00,0x1f,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x94,0x94,0x14,0x14,0x94,0x74,0x14,0x1c,0x00,0x1c,0x00,0xce,0x00 -+// 47418 뤺 ; -+,0x00,0x00,0x00,0x01,0x00,0x0d,0x04,0x00,0x0e,0x02,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x14,0x94,0x94,0x74,0x04,0x0c,0x10,0x88,0x90,0xfe,0x00 -+// 47419 뤻 ; -+,0x00,0x00,0x00,0x0d,0x00,0x0c,0x04,0x01,0x0e,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x14,0x94,0x94,0x74,0x14,0x00,0xf2,0x50,0x88,0x50,0x00 -+// 47420 뤼 ; -+,0x00,0x00,0x00,0x06,0x00,0x06,0x04,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0x04,0xe4,0x04,0xc4,0x84,0x84,0x84,0x84,0x04,0x00 -+// 47421 뤽 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x44,0x04,0x64,0x04,0x84,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 47422 뤾 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x44,0x04,0x64,0x14,0x84,0x00,0x24,0x84,0x84,0x84,0x84,0x00 -+// 47423 뤿 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x44,0x44,0x04,0xe4,0x0c,0x00,0x00,0x18,0x88,0x98,0xa4,0x82,0x00 -+// 47424 륀 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x0f,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0xc4,0x04,0xe4,0x0c,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 47425 륁 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0xe4,0x04,0x84,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 47426 륂 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x1f,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0x44,0xc4,0x04,0xe4,0x6c,0x00,0x38,0x00,0xf8,0x2c,0x44,0x38,0x00 -+// 47427 륃 ; -+,0x00,0x00,0x00,0x06,0x00,0x06,0x04,0x00,0x03,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x04,0xc4,0x04,0x00,0xf0,0x00,0x00,0xfe,0x00 -+// 47428 륄 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x00,0x0f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0xc4,0x04,0xe4,0x2c,0x04,0x00,0xfc,0x00,0xfc,0x00,0xfe,0x00 -+// 47429 륅 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x44,0x04,0xe4,0x24,0x84,0x00,0xbc,0x84,0x84,0x04,0x04,0x00 -+// 47430 륆 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x03,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x44,0x04,0xe4,0x04,0x84,0x00,0xb4,0xa4,0xa4,0x24,0x00,0x00 -+// 47431 륇 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x64,0x04,0xe4,0x04,0x84,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 47432 륈 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x44,0x04,0xe4,0x1c,0x84,0x00,0x98,0x98,0x98,0x24,0x42,0x00 -+// 47433 륉 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x64,0x04,0xe4,0x34,0x84,0x00,0xbc,0xa0,0x3c,0x20,0x1e,0x00 -+// 47434 륊 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0x84,0x00,0xbc,0x0c,0x24,0x08,0x7e,0x00 -+// 47435 륋 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x0c,0x84,0x00,0x80,0x7e,0x1c,0x20,0x34,0x00 -+// 47436 륌 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x02,0x00,0x0f,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0x04,0x64,0x1c,0x84,0x00,0x04,0x04,0x04,0x0c,0x80,0x00 -+// 47437 륍 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x44,0x04,0x24,0x34,0x84,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 47438 륎 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x00,0x0f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x44,0x04,0x64,0x24,0x84,0x00,0xc8,0x48,0x5c,0x52,0x60,0x00 -+// 47439 륏 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x44,0x24,0x64,0x04,0xe4,0x14,0x84,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 47440 륐 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x00,0x0f,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x24,0x44,0x04,0xe4,0x04,0x84,0x00,0x8c,0x88,0x5c,0x32,0x00,0x00 -+// 47441 륑 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x64,0x04,0xe4,0x04,0x84,0x04,0x10,0x40,0x84,0x84,0x78,0x00 -+// 47442 륒 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x24,0x64,0x04,0xe4,0x14,0x84,0x00,0x0c,0x20,0x70,0xcc,0x06,0x00 -+// 47443 륓 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x03,0x00,0x0e,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x24,0x64,0x04,0xe4,0x34,0x84,0x84,0x60,0xfe,0x20,0x58,0x06,0x00 -+// 47444 륔 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x03,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0x04,0xe4,0x34,0x84,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 47445 륕 ; -+,0x00,0x00,0x00,0x06,0x00,0x06,0x02,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x44,0x04,0x24,0x14,0x84,0x00,0x1c,0x00,0xfc,0x00,0xfe,0x00 -+// 47446 륖 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x64,0x14,0x84,0x00,0x1c,0x10,0x88,0x80,0x9e,0x00 -+// 47447 륗 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x02,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x34,0x84,0xf0,0x02,0x70,0x48,0x88,0x50,0x00 -+// 47448 류 ; -+,0x00,0x00,0x07,0x00,0x04,0x02,0x02,0x00,0x00,0x0b,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x00,0xf0,0x00,0x18,0x00,0x06,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 47449 륙 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x1f,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0xf8,0x3f,0x10,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 47450 륚 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x02,0x02,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd8,0x00,0x70,0x00,0xf8,0x0e,0x10,0x00,0x2c,0x04,0x84,0x00,0x00,0x00 -+// 47451 륛 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x02,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xd8,0x00,0x30,0x00,0xf8,0x06,0x10,0x10,0x10,0x10,0x38,0x44,0x80,0x00 -+// 47452 륜 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x01,0x00,0x06,0x04,0x06,0x03,0x00,0x00,0x00,0xf8,0x00,0xf0,0x00,0xb8,0x00,0xfe,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 47453 륝 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x02,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0x10,0xf0,0x00,0xf8,0x06,0x10,0x10,0xf0,0x10,0x30,0x44,0x80,0x00 -+// 47454 륞 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x00,0x1e,0x02,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0x70,0x3f,0x10,0x30,0x04,0x30,0x48,0x40,0x78,0x00 -+// 47455 륟 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x0a,0x02,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xd8,0x00,0xf0,0x00,0xf8,0x03,0x10,0x10,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 47456 률 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1f,0x02,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0x60,0x00,0xf8,0x02,0x30,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 47457 륡 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1a,0x02,0x00,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x10,0x10,0xe0,0x00,0xf0,0x02,0x20,0x20,0x88,0x88,0x08,0x08,0x08,0x00 -+// 47458 륢 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x00,0x18,0x02,0x0f,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x00,0x3f,0x20,0x7c,0x24,0x24,0x20,0x2c,0x20,0x00 -+// 47459 륣 ; -+,0x00,0x00,0x06,0x00,0x07,0x04,0x03,0x00,0x1a,0x02,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x10,0x10,0xc0,0x00,0xf8,0x02,0x20,0x08,0x64,0x3c,0x24,0x2c,0x20,0x00 -+// 47460 륤 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x00,0x01,0x02,0x02,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x90,0x10,0xe0,0x00,0x70,0x3f,0x10,0x10,0x90,0x10,0x28,0x44,0x80,0x00 -+// 47461 륥 ; -+,0x00,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x1f,0x00,0x07,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x10,0x70,0x00,0xf8,0x02,0x30,0x00,0x78,0x00,0x30,0x20,0x00,0x00 -+// 47462 륦 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1a,0x02,0x05,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x90,0x10,0x70,0x00,0xf8,0x02,0x20,0x20,0x70,0x08,0x28,0x00,0x7c,0x00 -+// 47463 륧 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x1e,0x02,0x02,0x01,0x01,0x0c,0x05,0x04,0x00,0x00,0x00,0x90,0x10,0xe0,0x00,0xe0,0x3f,0x10,0x30,0xfc,0x10,0x48,0x40,0x38,0x00 -+// 47464 륨 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x98,0x00,0xf0,0x00,0xf8,0x06,0x10,0x10,0x38,0x10,0x10,0x10,0x00,0x00 -+// 47465 륩 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x00,0x1e,0x02,0x02,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x10,0xe0,0x00,0x00,0x3f,0x10,0x10,0x10,0xf0,0x10,0x10,0x00,0x00 -+// 47466 륪 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x1f,0x02,0x01,0x08,0x07,0x04,0x05,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf0,0xff,0x10,0x10,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 47467 륫 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x10,0xf0,0x00,0xf8,0x06,0x10,0x90,0xc0,0xc0,0x30,0x08,0x04,0x00 -+// 47468 륬 ; -+,0x00,0x00,0x07,0x00,0x06,0x00,0x03,0x1f,0x02,0x02,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xf0,0xbf,0x10,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 47469 륭 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1a,0x02,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0xf0,0x00,0xf8,0x02,0x10,0x10,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 47470 륮 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x02,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x98,0x10,0xf0,0x00,0xf8,0x3f,0x10,0x10,0xc0,0xc0,0xb0,0x18,0x04,0x00 -+// 47471 륯 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x00,0x00,0x02,0x01,0x00,0x07,0x00,0x03,0x04,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x70,0xff,0x10,0xc0,0x00,0xc0,0xc0,0x18,0x0c,0x00 -+// 47472 륰 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x02,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x98,0x00,0xf0,0x00,0xf8,0x0f,0x10,0x00,0x88,0x08,0xc8,0x08,0x08,0x00 -+// 47473 륱 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1f,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x98,0x10,0x20,0x00,0xf8,0x02,0x30,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 47474 륲 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x02,0x00,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x0f,0x10,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 47475 륳 ; -+,0x00,0x00,0x06,0x00,0x07,0x04,0x03,0x00,0x02,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x80,0x00,0xf0,0x3f,0x10,0xc0,0xfc,0xc0,0x20,0x10,0xe0,0x00 -+// 47476 르 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x08,0x08,0x78,0x00,0x00,0xf8,0x00,0x00,0xbe,0x00,0x00,0x00 -+// 47477 륵 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0xc0,0x00,0xf8,0x00,0x82,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 47478 륶 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x98,0x00,0xe0,0x00,0xf8,0x00,0xbe,0x00,0x3c,0x04,0x84,0x00,0x00,0x00 -+// 47479 륷 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x98,0x10,0xf0,0x00,0xf8,0x00,0x86,0x00,0x30,0x30,0x28,0x44,0x80,0x00 -+// 47480 른 ; -+,0x00,0x00,0x00,0x06,0x00,0x07,0x02,0x03,0x00,0x1f,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xf0,0x00,0xf8,0x00,0x1e,0x00,0x00,0x00,0x08,0x00,0x00 -+// 47481 륹 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x02,0x00,0x04,0xb0,0x30,0x30,0x44,0x80,0x00 -+// 47482 륺 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x06,0x00,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 47483 륻 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x10,0x80,0x00,0xf8,0x00,0xbf,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 47484 를 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x00,0x1f,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x00,0x00,0xb8,0x08,0xf0,0x00,0x38,0x00,0x9f,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 47485 륽 ; -+,0x00,0x00,0x04,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x00,0x82,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 47486 륾 ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x00,0x00,0x08,0x01,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0x10,0x00,0x00,0x00,0x06,0x00,0x4c,0x24,0x24,0x24,0x24,0x20,0x00 -+// 47487 륿 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x00,0x1e,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xf8,0x00,0x00,0x08,0x64,0x3c,0x24,0x2c,0x24,0x00 -+// 47488 릀 ; -+,0x00,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x1e,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x00,0xf0,0x00,0xf8,0x00,0x00,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 47489 릁 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x1c,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0x78,0x00,0x38,0x00,0x3c,0x00 -+// 47490 릂 ; -+,0x00,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x1c,0x00,0x01,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0xe0,0x00,0xf8,0x00,0x00,0x00,0x50,0x08,0x28,0x00,0x7c,0x00 -+// 47491 릃 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0xc0,0x00,0xf8,0x00,0x02,0x30,0x84,0x30,0x28,0x44,0x38,0x00 -+// 47492 름 ; -+,0x00,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x18,0x00,0xf0,0x00,0xf8,0x00,0x1e,0x00,0xf8,0x10,0x10,0x30,0x00,0x00 -+// 47493 릅 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xb8,0x00,0xf0,0x00,0xf8,0x00,0x06,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 47494 릆 ; -+,0x00,0x00,0x00,0x00,0x06,0x02,0x00,0x00,0x18,0x01,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x06,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 47495 릇 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x06,0x00,0x00,0x08,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x98,0x00,0xf0,0x00,0x18,0x00,0x06,0x00,0xc0,0xc0,0x20,0x18,0x08,0x00 -+// 47496 릈 ; -+,0x00,0x00,0x06,0x00,0x07,0x00,0x03,0x00,0x1e,0x00,0x03,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xf8,0x00,0x00,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 47497 릉 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x00,0x18,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xe0,0x02,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x00 -+// 47498 릊 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x98,0x00,0xf0,0x00,0xf8,0x00,0x82,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 47499 릋 ; -+,0x00,0x00,0x06,0x00,0x06,0x04,0x03,0x00,0x18,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x10,0x00,0x00,0xf8,0x06,0x00,0xc0,0x00,0xf8,0xc0,0x10,0x08,0x00 -+// 47500 릌 ; -+,0x00,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0xf8,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x08,0x00 -+// 47501 릍 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x07,0x06,0x03,0x02,0x03,0x00,0x00,0x00,0xb8,0x00,0xf0,0x00,0xf8,0x00,0xbe,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 47502 릎 ; -+,0x00,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x18,0x10,0xf0,0x00,0xf8,0x00,0x86,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 47503 릏 ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x00,0x00,0x18,0x00,0x07,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x08,0x10,0x00,0x00,0x00,0x06,0x00,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 47504 릐 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0x04,0x04,0xe4,0x04,0x3c,0x84,0x04,0x04,0x04,0x00 -+// 47505 릑 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x64,0x04,0x64,0x04,0xc4,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 47506 릒 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x06,0x00,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0x04,0x64,0x04,0xc4,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 47507 릓 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x03,0x08,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x24,0x04,0xe4,0x04,0x08,0x88,0x88,0x96,0xa2,0x00 -+// 47508 릔 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x07,0x00,0x00,0x0e,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0xc4,0x04,0xe4,0x04,0xe4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 47509 릕 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x00,0x03,0x08,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x0c,0xc4,0x00,0x0e,0x18,0x18,0x24,0xc2,0x00 -+// 47510 릖 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x03,0x08,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xc4,0x04,0x00,0xfe,0x38,0x04,0x2c,0x00 -+// 47511 릗 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x00,0x00,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x04,0xe4,0x04,0x08,0x00,0x00,0x00,0xfe,0x00 -+// 47512 릘 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x01,0x08,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x04,0xe4,0x04,0xfc,0x00,0xf8,0x00,0xce,0x00 -+// 47513 릙 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x64,0x04,0xc4,0x00,0xbc,0x84,0x84,0x04,0x04,0x00 -+// 47514 릚 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x07,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xc4,0x04,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 47515 릛 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x00,0x03,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x64,0x04,0xc4,0x04,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 47516 릜 ; -+,0x00,0x00,0x00,0x04,0x00,0x06,0x02,0x00,0x07,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x44,0x04,0x24,0x04,0xc4,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 47517 릝 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x01,0x0c,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x24,0x04,0xe4,0x04,0x3c,0x20,0x3c,0x20,0x3e,0x00 -+// 47518 릞 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x03,0x08,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xe4,0x04,0xb0,0x0c,0x24,0x08,0x7e,0x00 -+// 47519 릟 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x07,0x00,0x05,0x00,0x07,0x04,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x64,0x04,0xc4,0x00,0x80,0x7e,0x1c,0x24,0x34,0x00 -+// 47520 릠 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x00,0x01,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x04,0x04,0xe4,0x00,0x0c,0x04,0x00,0x08,0x80,0x00 -+// 47521 릡 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x03,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0xe4,0x04,0xc4,0x00,0x0c,0x8c,0x84,0x04,0x8c,0x00 -+// 47522 릢 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x00,0x0f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xc4,0x04,0x88,0x88,0x9c,0x92,0x40,0x00 -+// 47523 릣 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x64,0x44,0x04,0x24,0x04,0x74,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 47524 릤 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x06,0x00,0x0f,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xc4,0x00,0x08,0x88,0x9c,0x62,0x02,0x00 -+// 47525 릥 ; -+,0x00,0x00,0x00,0x06,0x00,0x06,0x04,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x04,0x04,0x04,0x04,0x64,0x04,0x10,0x44,0x84,0x84,0x78,0x00 -+// 47526 릦 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x04,0x64,0x04,0xe4,0x04,0xc4,0x00,0x1c,0x20,0x70,0x8c,0x06,0x00 -+// 47527 릧 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0xe4,0x04,0xc4,0x00,0x00,0xfc,0x60,0x98,0x06,0x00 -+// 47528 릨 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0x04,0x24,0x04,0xe4,0x04,0xcc,0x04,0xfc,0x04,0x04,0x00 -+// 47529 릩 ; -+,0x00,0x00,0x00,0x06,0x00,0x04,0x04,0x00,0x03,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x24,0x04,0xe4,0x04,0x0c,0x00,0xfc,0x00,0xfe,0x00 -+// 47530 릪 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x00,0x01,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x24,0x04,0xe4,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 47531 릫 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x64,0x04,0xe4,0x04,0x00,0xb0,0x58,0x88,0x58,0x00 -+// 47532 리 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x0f,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xc4,0x44,0x44,0xc4,0x04,0x04,0x24,0x84,0x04,0x04,0x04,0x00 -+// 47533 릭 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x04,0x04,0x06,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0xc4,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 47534 릮 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x04,0x05,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x04,0x04,0xc4,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 47535 릯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0f,0x08,0x08,0x06,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x04,0x0c,0xc4,0x10,0x88,0x98,0x9c,0xa6,0xc2,0x00 -+// 47536 린 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x84,0x04,0x04,0x84,0x04,0x00,0x00,0x00,0x00,0x00 -+// 47537 릱 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x0c,0x04,0x04,0x06,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x04,0xc4,0x00,0x7e,0x08,0x18,0x24,0x42,0x00 -+// 47538 릲 ; -+,0x00,0x00,0x00,0x0e,0x00,0x19,0x08,0x08,0x0f,0x00,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0xc4,0x04,0x24,0x04,0x18,0x06,0x18,0x24,0xa4,0x3c,0x00 -+// 47539 릳 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0d,0x04,0x04,0x07,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x04,0x04,0x64,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 47540 릴 ; -+,0x00,0x00,0x00,0x0e,0x00,0x09,0x08,0x08,0x07,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0xc4,0x04,0x64,0x04,0x00,0x0c,0x00,0xf8,0x00,0xfe,0x00 -+// 47541 릵 ; -+,0x00,0x00,0x00,0x0e,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x44,0xc4,0x04,0x24,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47542 릶 ; -+,0x00,0x00,0x00,0x04,0x00,0x0c,0x04,0x04,0x07,0x00,0x02,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0x34,0x04,0x00,0xb4,0x84,0x84,0x04,0x90,0x00 -+// 47543 릷 ; -+,0x00,0x00,0x00,0x0e,0x00,0x08,0x04,0x04,0x07,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0x24,0x04,0x0c,0xa4,0x3c,0x24,0x24,0x24,0x00 -+// 47544 릸 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x0c,0x08,0x07,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0xc4,0x04,0x04,0x84,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 47545 릹 ; -+,0x00,0x00,0x00,0x0e,0x00,0x0d,0x04,0x04,0x07,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0x64,0x04,0x04,0xa0,0xa0,0x20,0x20,0x1e,0x00 -+// 47546 릺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x08,0x0f,0x00,0x07,0x00,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0xc4,0x04,0x84,0x04,0x14,0x84,0x00,0xbc,0x0c,0x28,0x08,0x7e,0x00 -+// 47547 릻 ; -+,0x00,0x00,0x00,0x04,0x00,0x09,0x08,0x08,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0xc4,0x04,0x24,0x04,0x18,0x82,0x18,0x24,0x20,0x24,0x00 -+// 47548 림 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x00,0x05,0x04,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x04,0xc4,0x00,0x8c,0x0c,0x08,0x08,0x00,0x00 -+// 47549 립 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x04,0x05,0x06,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x44,0xc4,0x04,0x04,0xc4,0x08,0x04,0xfc,0x04,0x04,0x84,0x00 -+// 47550 릾 ; -+,0x00,0x00,0x00,0x08,0x00,0x19,0x08,0x08,0x0e,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x0c,0x64,0x04,0x18,0x88,0x88,0x9c,0xa6,0xc2,0x00 -+// 47551 릿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x00,0x05,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x04,0xc4,0x40,0x20,0x60,0xd0,0x8c,0x02,0x00 -+// 47552 맀 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x0f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x64,0x04,0x18,0x88,0x18,0x94,0x66,0x42,0x00 -+// 47553 링 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x14,0xc4,0x20,0x30,0x88,0x00,0x88,0xd8,0x00 -+// 47554 맂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x04,0x0c,0xc4,0x00,0xfc,0x60,0x90,0x0c,0x00,0x00 -+// 47555 맃 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x07,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x64,0x04,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 47556 맄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x04,0x05,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x04,0x04,0xc4,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 47557 맅 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x08,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0xc4,0x04,0x34,0x04,0x00,0x3c,0x00,0x0c,0x00,0xfc,0x00 -+// 47558 맆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x08,0x08,0x0f,0x00,0x03,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x08,0x08,0x88,0x00,0x9c,0x10,0x10,0x90,0x3e,0x00 -+// 47559 맇 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x64,0x04,0x60,0x0e,0x20,0x88,0x88,0x70,0x00 -+// 47560 마 ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x88,0x88,0x8e,0x88,0x08,0x08,0x08,0x08,0x08,0x00 -+// 47561 막 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x8a,0x88,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 47562 맊 ; -+,0x00,0x00,0x00,0x01,0x10,0x10,0x00,0x09,0x08,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8a,0x88,0x00,0x00,0x78,0x08,0x08,0x08,0x00,0x00 -+// 47563 맋 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x00,0x09,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8e,0x88,0x00,0x00,0x10,0x10,0x30,0x2c,0x44,0x00 -+// 47564 만 ; -+,0x00,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x88,0x8a,0x88,0x08,0x00,0x00,0x00,0x00,0xb8,0x00 -+// 47565 맍 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x00,0x09,0x00,0x00,0x08,0x08,0x08,0x0b,0x04,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8a,0x88,0x00,0x00,0xfc,0x30,0x30,0x48,0x84,0x00 -+// 47566 많 ; -+,0x00,0x00,0x00,0x1d,0x00,0x08,0x08,0x08,0x00,0x08,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x88,0x00,0x60,0x00,0xb0,0x78,0x88,0x48,0x70,0x00 -+// 47567 맏 ; -+,0x00,0x00,0x00,0x17,0x10,0x00,0x08,0x08,0x08,0x00,0x04,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x8a,0x88,0x08,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 47568 말 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00,0x02,0x00,0x03,0x02,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x8a,0x88,0x00,0x00,0x00,0x00,0x30,0x00,0x0c,0x00 -+// 47569 맑 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x10,0x10,0x80,0x80,0x80,0x8e,0x80,0x00,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 47570 맒 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x01,0x01,0x08,0x08,0x0c,0x00,0x00,0x10,0x18,0x80,0x80,0x80,0x88,0x00,0x00,0x08,0x48,0x48,0x48,0x48,0x40,0x00 -+// 47571 맓 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x00,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8a,0x88,0x00,0x00,0xc8,0x48,0x48,0x48,0x48,0x00 -+// 47572 맔 ; -+,0x00,0x00,0x00,0x1d,0x00,0x08,0x08,0x09,0x00,0x0f,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x10,0x10,0x80,0x80,0x80,0x88,0x00,0x00,0x10,0x10,0x10,0x28,0x44,0x84,0x00 -+// 47573 맕 ; -+,0x00,0x00,0x00,0x1d,0x00,0x08,0x08,0x09,0x00,0x00,0x01,0x00,0x08,0x08,0x0e,0x00,0x00,0x10,0x18,0x80,0x80,0x80,0x8e,0x80,0x00,0x00,0x40,0x40,0x40,0x40,0x08,0x00 -+// 47574 맖 ; -+,0x00,0x00,0x00,0x1d,0x00,0x08,0x08,0x09,0x00,0x00,0x0b,0x00,0x0e,0x08,0x0c,0x00,0x00,0x00,0x18,0x80,0x80,0x80,0x8e,0x80,0x00,0x00,0x58,0x10,0x50,0x10,0x9c,0x00 -+// 47575 맗 ; -+,0x00,0x00,0x00,0x1d,0x10,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8e,0x80,0x00,0x30,0x04,0x10,0x48,0x44,0x28,0x00 -+// 47576 맘 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x08,0x08,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8e,0x88,0x00,0x00,0x10,0x18,0x10,0x10,0x10,0x00 -+// 47577 맙 ; -+,0x00,0x00,0x00,0x1d,0x10,0x00,0x00,0x09,0x00,0x00,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x80,0x80,0x80,0x8e,0x80,0x00,0x10,0x10,0x10,0x08,0x08,0x18,0x00 -+// 47578 맚 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x09,0x00,0x00,0x09,0x09,0x09,0x08,0x08,0x00,0x00,0x00,0x10,0x90,0x90,0x90,0x9a,0x90,0x10,0x00,0x10,0x10,0x30,0x2c,0x44,0x00 -+// 47579 맛 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8a,0x88,0x00,0x00,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 47580 맜 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x03,0x02,0x03,0x04,0x00,0x00,0x00,0x10,0x18,0x80,0x80,0x80,0x8e,0x80,0x00,0x10,0x10,0x10,0x28,0xc4,0x04,0x00 -+// 47581 망 ; -+,0x00,0x00,0x00,0x00,0x1c,0x10,0x00,0x00,0x09,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x8a,0x88,0x80,0x00,0x60,0x10,0x00,0x10,0xb0,0x00 -+// 47582 맞 ; -+,0x00,0x00,0x00,0x03,0x10,0x00,0x00,0x09,0x00,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x8a,0x88,0x00,0x00,0xc0,0xc0,0xb0,0x08,0x04,0x00 -+// 47583 맟 ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x09,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x00,0x10,0x90,0x90,0x80,0x9a,0x90,0x10,0x00,0x00,0xd8,0xc0,0x30,0x08,0x00 -+// 47584 맠 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8a,0x88,0x00,0x00,0x90,0x18,0xf8,0x00,0x00,0x00 -+// 47585 맡 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x00,0x00,0x02,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0x80,0x80,0x80,0x8e,0x80,0x00,0x10,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 47586 맢 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x07,0x00,0x01,0x00,0x0e,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8e,0x80,0x00,0x00,0x38,0x10,0x10,0x20,0x04,0x00 -+// 47587 맣 ; -+,0x00,0x00,0x00,0x1f,0x00,0x08,0x08,0x09,0x00,0x00,0x00,0x04,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x90,0x90,0x80,0x9e,0x90,0x00,0xc0,0x08,0x40,0x20,0x10,0xa0,0x00 -+// 47588 매 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x84,0x84,0x04,0x14,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47589 맥 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0x14,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47590 맦 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x84,0x84,0x94,0x84,0x04,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47591 맧 ; -+,0x00,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x34,0x24,0x24,0x00,0x88,0x88,0x94,0xa2,0xc2,0x00 -+// 47592 맨 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x09,0x08,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 47593 맩 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0x84,0x34,0xa4,0x00,0x00,0x18,0x10,0x18,0x24,0x82,0x00 -+// 47594 맪 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x09,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x64,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x30,0x02,0x30,0x4c,0xc4,0x38,0x00 -+// 47595 맫 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x94,0x84,0x04,0x00,0x1c,0x00,0x00,0x00,0xde,0x00 -+// 47596 맬 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x2c,0x24,0x20,0x00,0x00,0x08,0x00,0x00,0xfe,0x00 -+// 47597 맭 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x34,0x14,0x94,0x94,0x94,0x94,0x00,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47598 맮 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0x00,0x04,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 47599 맯 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x04,0x00,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x00 -+// 47600 맰 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x09,0x08,0x01,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x3c,0x24,0x20,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 47601 맱 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0x04,0x84,0x84,0x94,0x84,0x00,0x04,0x20,0x20,0x20,0x20,0x3e,0x00 -+// 47602 맲 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x09,0x08,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x34,0x24,0x20,0x00,0x00,0x08,0x28,0x08,0x4e,0x00 -+// 47603 맳 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x09,0x09,0x00,0x09,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0x24,0x24,0x38,0x02,0x10,0x24,0x44,0x2c,0x00 -+// 47604 맴 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0x94,0x94,0x94,0x94,0x84,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 47605 맵 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0x24,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 47606 맶 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0xb4,0x24,0x24,0x88,0x88,0x88,0x14,0x82,0x40,0x00 -+// 47607 맷 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x34,0x24,0x24,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 47608 맸 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x34,0x24,0x24,0x00,0x08,0x08,0x9c,0x62,0x42,0x00 -+// 47609 맹 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x34,0x24,0x24,0x24,0x70,0x84,0x84,0x84,0x78,0x00 -+// 47610 맺 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x94,0x04,0x84,0x00,0xfc,0x60,0x50,0x8c,0x04,0x00 -+// 47611 맻 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0x34,0x24,0x24,0x60,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 47612 맼 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x94,0x04,0x04,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 47613 맽 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x09,0x09,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x34,0x24,0x24,0x00,0x38,0x00,0x08,0x00,0xfc,0x00 -+// 47614 맾 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x24,0x24,0xa4,0xa4,0x34,0x24,0x00,0x00,0xdc,0x18,0x80,0x90,0x1e,0x00 -+// 47615 맿 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x84,0x84,0x94,0x84,0x04,0x70,0x0e,0x20,0x88,0x88,0x70,0x00 -+// 47616 먀 ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x8e,0x88,0x88,0x88,0x0f,0x08,0x08,0x08,0x08,0x00 -+// 47617 먁 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x9a,0x90,0x90,0x18,0x00,0x90,0x10,0x10,0x10,0x10,0x00 -+// 47618 먂 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x00,0x09,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x10,0x00,0x58,0x08,0x08,0x08,0x00,0x00 -+// 47619 먃 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x9a,0x90,0x90,0x18,0x00,0x10,0x10,0x30,0x2c,0x44,0x00 -+// 47620 먄 ; -+,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x09,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x00,0x80,0x80,0x88,0x80,0x80,0x08,0x00,0x00,0x00,0x00,0x00,0x00 -+// 47621 먅 ; -+,0x00,0x00,0x00,0x17,0x10,0x00,0x00,0x09,0x00,0x00,0x18,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x18,0x00,0xbc,0x20,0x30,0x48,0x84,0x00 -+// 47622 먆 ; -+,0x00,0x00,0x00,0x19,0x10,0x00,0x00,0x09,0x00,0x00,0x08,0x00,0x00,0x05,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x9a,0x90,0x90,0x10,0x70,0x04,0x30,0x48,0x88,0x78,0x00 -+// 47623 먇 ; -+,0x00,0x00,0x00,0x17,0x10,0x10,0x10,0x11,0x00,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x18,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 47624 먈 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x03,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x18,0x00,0x10,0x10,0x30,0x00,0x08,0x00 -+// 47625 먉 ; -+,0x00,0x00,0x00,0x1d,0x10,0x00,0x00,0x09,0x00,0x00,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x90,0x90,0x9a,0x90,0x90,0x18,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 47626 먊 ; -+,0x00,0x00,0x00,0x1d,0x10,0x00,0x00,0x09,0x00,0x00,0x0b,0x00,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x18,0x00,0xc8,0x48,0x40,0x40,0x40,0x00 -+// 47627 먋 ; -+,0x00,0x00,0x00,0x1d,0x10,0x00,0x00,0x09,0x00,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x9a,0x90,0x98,0x18,0x10,0x88,0x58,0x00,0x00,0x50,0x00 -+// 47628 먌 ; -+,0x00,0x00,0x00,0x19,0x10,0x00,0x00,0x09,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x10,0x00,0x10,0x10,0x28,0x4c,0x84,0x00 -+// 47629 먍 ; -+,0x00,0x00,0x00,0x1f,0x08,0x00,0x08,0x09,0x00,0x00,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x10,0x90,0x90,0x9a,0x90,0x90,0x1a,0x00,0xc8,0x40,0x58,0x40,0x7c,0x00 -+// 47630 먎 ; -+,0x00,0x00,0x00,0x1d,0x10,0x00,0x00,0x09,0x00,0x00,0x0e,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x18,0x00,0x58,0x10,0x50,0x50,0x9c,0x00 -+// 47631 먏 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x00,0x09,0x00,0x00,0x01,0x00,0x0c,0x08,0x0e,0x00,0x00,0x30,0x10,0x90,0x90,0x9e,0x10,0x90,0x10,0x30,0x04,0x30,0x48,0x40,0x48,0x00 -+// 47632 먐 ; -+,0x00,0x00,0x00,0x17,0x10,0x10,0x10,0x11,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x10,0x90,0x18,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 47633 먑 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 47634 먒 ; -+,0x00,0x00,0x00,0x1d,0x10,0x00,0x00,0x09,0x00,0x01,0x09,0x0d,0x08,0x09,0x08,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x10,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 47635 먓 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x98,0x90,0x90,0x18,0x00,0x40,0xc0,0xa0,0x18,0x08,0x00 -+// 47636 먔 ; -+,0x00,0x00,0x00,0x1d,0x10,0x00,0x00,0x09,0x00,0x00,0x01,0x02,0x01,0x04,0x00,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x10,0x9a,0x10,0x30,0x10,0x10,0xa8,0xc4,0x84,0x00 -+// 47637 먕 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x80,0x80,0x88,0x88,0x88,0x08,0x00,0xe0,0x10,0x08,0x10,0xe0,0x00 -+// 47638 먖 ; -+,0x00,0x00,0x00,0x1f,0x10,0x10,0x10,0x19,0x00,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x10,0x90,0x10,0x00,0xf8,0xc0,0xa0,0x18,0x08,0x00 -+// 47639 먗 ; -+,0x00,0x00,0x00,0x11,0x10,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x01,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x10,0xc0,0x00,0xc0,0xc0,0x30,0x08,0x00 -+// 47640 먘 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x18,0x80,0x80,0x8e,0x88,0x88,0x08,0x00,0x90,0x10,0xf0,0x10,0x10,0x00 -+// 47641 먙 ; -+,0x00,0x00,0x00,0x13,0x10,0x10,0x00,0x09,0x00,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x10,0x00,0x40,0x00,0x00,0x00,0xf8,0x00 -+// 47642 먚 ; -+,0x00,0x00,0x00,0x13,0x10,0x10,0x00,0x08,0x08,0x00,0x07,0x00,0x01,0x01,0x0e,0x00,0x00,0x00,0x18,0x80,0x80,0x8e,0x88,0x88,0x0a,0x00,0xb8,0x20,0x00,0x20,0x3c,0x00 -+// 47643 먛 ; -+,0x00,0x00,0x00,0x1f,0x10,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x10,0x90,0x10,0xc0,0x08,0xc0,0x20,0x10,0x20,0x00 -+// 47644 먜 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x04,0x84,0x94,0x84,0x04,0x84,0x14,0x04,0x04,0x04,0x04,0x00 -+// 47645 먝 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x94,0x84,0x84,0x94,0x84,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 47646 먞 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x94,0x84,0x94,0x94,0x04,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47647 먟 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0xb4,0xa4,0x24,0x34,0x24,0x00,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 47648 먠 ; -+,0x00,0x00,0x00,0x00,0x00,0x19,0x09,0x09,0x09,0x08,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0xdc,0x00 -+// 47649 먡 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x09,0x08,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0x24,0x24,0x00,0x00,0xf8,0x10,0x18,0xa4,0xc2,0x00 -+// 47650 먢 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x24,0xb4,0xa4,0x24,0x34,0x24,0x38,0x06,0x18,0x44,0xc4,0x38,0x00 -+// 47651 먣 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x94,0x04,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 47652 먤 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0x24,0x20,0x00,0x04,0x08,0x00,0x00,0x06,0x00 -+// 47653 먥 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0x24,0x34,0x24,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47654 먦 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x94,0x84,0x94,0x84,0x04,0x00,0xa4,0xa4,0x24,0x24,0x00,0x00 -+// 47655 먧 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x08,0x00,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0x24,0x24,0x24,0x44,0x24,0x24,0x24,0x24,0x24,0x00 -+// 47656 먨 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x24,0x24,0x24,0x00,0x88,0x10,0x18,0x24,0x42,0x00 -+// 47657 먩 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x00,0x00,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x94,0x84,0x94,0x84,0x00,0x4c,0x20,0x2c,0x20,0x20,0x00,0x00 -+// 47658 먪 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0xa4,0x34,0x24,0x00,0xa8,0x08,0x20,0x08,0x4e,0x00 -+// 47659 먫 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x08,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0x24,0x24,0x18,0x02,0x18,0x24,0x04,0x2c,0x00 -+// 47660 먬 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x94,0x84,0x84,0x94,0x84,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 47661 먭 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0x24,0x34,0x24,0x00,0x04,0x8c,0x04,0x84,0x84,0x00 -+// 47662 먮 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x24,0xb4,0xa4,0x24,0x34,0x24,0x88,0x88,0x88,0x9c,0x82,0x02,0x00 -+// 47663 먯 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0xa4,0x34,0x24,0x24,0x20,0x60,0x58,0x84,0x02,0x00 -+// 47664 먰 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0xa4,0x34,0x24,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 47665 먱 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x94,0x84,0x84,0x14,0x04,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 47666 먲 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x04,0x94,0x84,0x94,0x94,0x04,0x00,0xe0,0x60,0x98,0x04,0x00,0x00 -+// 47667 먳 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x24,0xb4,0xa4,0xa4,0x34,0x24,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 47668 먴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x94,0x00,0x00,0x04,0x04,0xc4,0x04,0x04,0x00 -+// 47669 먵 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0xb4,0xa4,0xa4,0x34,0x24,0x00,0x20,0x00,0x00,0x00,0xfc,0x00 -+// 47670 먶 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x09,0x08,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0x34,0x24,0x04,0x00,0xdc,0x10,0x90,0x90,0x0e,0x00 -+// 47671 먷 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0x24,0x24,0x24,0x60,0x2e,0x60,0x88,0x88,0x70,0x00 -+// 47672 머 ; -+,0x00,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xc4,0x44,0x44,0x7c,0x04,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47673 먹 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x4c,0x04,0x84,0x04,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 47674 먺 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x44,0x84,0x84,0x84,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 47675 먻 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0xfc,0x84,0x84,0x04,0x18,0x88,0x88,0x94,0xa2,0xc2,0x00 -+// 47676 먼 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x44,0xfc,0x84,0x84,0x04,0x04,0x00,0x00,0x00,0xdc,0x00 -+// 47677 먽 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0xc4,0xc4,0x84,0x84,0x84,0x00,0x7e,0x18,0x18,0x24,0x42,0x00 -+// 47678 먾 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x00,0x08,0x04,0x84,0x44,0xfc,0x84,0x84,0x04,0x38,0x02,0x18,0x24,0xc4,0x38,0x00 -+// 47679 먿 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0xc4,0x44,0xc4,0x84,0x84,0x00,0x0c,0x00,0x00,0x00,0xfc,0x00 -+// 47680 멀 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0xc4,0xfc,0x84,0x84,0x04,0x00,0x8c,0x00,0x18,0x00,0xfe,0x00 -+// 47681 멁 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x44,0x64,0x04,0x84,0x04,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47682 멂 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0x04,0x84,0x04,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x00 -+// 47683 멃 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0c,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x44,0x74,0x44,0xc4,0x04,0x04,0x24,0x24,0x24,0x24,0x24,0x00 -+// 47684 멄 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x44,0xfc,0x84,0x84,0x04,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 47685 멅 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x44,0x7c,0x84,0x84,0x04,0x04,0x60,0x20,0x20,0x20,0x1c,0x00 -+// 47686 멆 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x84,0x84,0xfc,0x84,0x84,0x04,0x04,0x00,0x08,0x28,0x08,0x40,0x00 -+// 47687 멇 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x44,0xfc,0x84,0x84,0x04,0x18,0x06,0x18,0x24,0x04,0x38,0x00 -+// 47688 멈 ; -+,0x00,0x00,0x00,0x0b,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x44,0x7c,0x04,0x84,0x04,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 47689 멉 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x74,0x04,0xc4,0x04,0x0c,0x84,0x84,0x84,0x84,0x84,0x00 -+// 47690 멊 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x09,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x84,0x44,0xfc,0x84,0x84,0x04,0x18,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 47691 멋 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x84,0xc4,0xfc,0x84,0x84,0x04,0x44,0x20,0x60,0xd0,0x8c,0x04,0x00 -+// 47692 멌 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xc4,0x44,0xfc,0x84,0x84,0x04,0x18,0x08,0x18,0x94,0x66,0x40,0x00 -+// 47693 멍 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x44,0x4c,0x84,0x84,0x84,0x04,0x30,0x88,0x84,0x84,0xd8,0x00 -+// 47694 멎 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x84,0xc4,0xfc,0x84,0x84,0x04,0x04,0xe0,0x60,0x90,0x0c,0x04,0x00 -+// 47695 멏 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x44,0x7c,0x84,0x84,0x04,0x60,0x00,0xe0,0x60,0x98,0x06,0x00 -+// 47696 멐 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x44,0x44,0x04,0x84,0x04,0x04,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 47697 멑 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x7c,0x04,0xc4,0x04,0x04,0xb8,0x00,0x0c,0x00,0xfc,0x00 -+// 47698 멒 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x00,0x03,0x00,0x00,0x00,0x06,0x00,0x00,0x08,0x04,0x84,0x84,0xfc,0x84,0x84,0x04,0x00,0xf8,0x18,0x90,0x10,0x00,0x00 -+// 47699 멓 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x7c,0x04,0xc4,0x04,0x70,0x06,0x20,0xd8,0x88,0xd0,0x00 -+// 47700 메 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x12,0x12,0x92,0x92,0xf2,0x92,0x92,0x12,0x12,0x10,0x10,0x00,0x00 -+// 47701 멕 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0xe4,0x04,0x04,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 47702 멖 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0xb4,0x94,0x04,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47703 멗 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x94,0x14,0x00,0x88,0x88,0x94,0xa2,0x80,0x00 -+// 47704 멘 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x34,0x04,0x84,0xe4,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0xdc,0x00 -+// 47705 멙 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x09,0x08,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0x04,0x10,0x10,0x28,0x44,0x82,0x00 -+// 47706 멚 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0xa4,0xa4,0xe4,0x24,0x24,0x30,0x02,0x30,0x4c,0xc4,0x38,0x00 -+// 47707 멛 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x09,0x09,0x09,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0xe4,0x24,0x24,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 47708 멜 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x09,0x09,0x09,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x04,0x04,0x80,0x00,0xfe,0x00 -+// 47709 멝 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0d,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0xb4,0xb4,0x84,0x04,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 47710 멞 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x84,0xa4,0xa4,0x04,0x04,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 47711 멟 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x05,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0x94,0x94,0x94,0x94,0x94,0x00,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 47712 멠 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 47713 멡 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0x04,0x84,0xa4,0xa4,0x04,0x04,0x04,0x20,0x20,0x20,0x20,0x1c,0x00 -+// 47714 멢 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x09,0x09,0x08,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0xa4,0xa4,0x24,0x24,0x00,0x04,0x00,0x08,0x28,0x08,0x40,0x00 -+// 47715 멣 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x24,0x38,0x02,0x18,0x3c,0x04,0x24,0x00 -+// 47716 멤 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0xf4,0x94,0x84,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 47717 멥 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x04,0x08,0x04,0x84,0x04,0x84,0x84,0x00 -+// 47718 멦 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x09,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x98,0x88,0x88,0x9c,0xa6,0x42,0x00 -+// 47719 멧 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0xf4,0x14,0x04,0x04,0x20,0x60,0x58,0x84,0x02,0x00 -+// 47720 멨 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x08,0x08,0x94,0x66,0x42,0x00 -+// 47721 멩 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0xb4,0x94,0x04,0x14,0x78,0x84,0x84,0x84,0x78,0x00 -+// 47722 멪 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0xf4,0x14,0x04,0x00,0xfc,0x60,0x50,0x8c,0x04,0x00 -+// 47723 멫 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x09,0x08,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x04,0xe0,0x04,0x60,0x60,0x88,0x04,0x00 -+// 47724 멬 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0xb4,0x14,0x04,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 47725 멭 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x0d,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0xf4,0x94,0x84,0x00,0x3c,0x00,0x0c,0x00,0xfc,0x00 -+// 47726 멮 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x24,0x00,0x0c,0x10,0x90,0x90,0x1e,0x00 -+// 47727 멯 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x60,0x0c,0x60,0x90,0x80,0xf0,0x00 -+// 47728 며 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x7c,0x44,0x44,0x44,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 47729 멱 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x7c,0x44,0x04,0xb4,0x04,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 47730 멲 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x7c,0x44,0x04,0xb4,0x04,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 47731 멳 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0c,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x7c,0x44,0x04,0xb4,0x04,0x00,0x88,0x88,0x9c,0x96,0xa2,0x00 -+// 47732 면 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xcc,0x84,0x84,0x8c,0x84,0x04,0x04,0x00,0x00,0x00,0xce,0x00 -+// 47733 멵 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0x04,0xfc,0x84,0x84,0xac,0x04,0x00,0x78,0x10,0x18,0xa4,0x42,0x00 -+// 47734 멶 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0xc4,0x7c,0x04,0x84,0xe4,0x04,0x18,0x00,0x18,0x24,0x44,0x2c,0x00 -+// 47735 멷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x7c,0x44,0x84,0x94,0x04,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 47736 멸 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x8c,0x84,0x00,0x00,0x00,0x08,0x00,0x00,0xfe,0x00 -+// 47737 멹 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x44,0x44,0x3c,0x84,0x04,0x24,0x84,0x84,0x04,0x04,0x04,0x00 -+// 47738 멺 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x4c,0x84,0x8c,0x84,0x00,0x00,0xa4,0x24,0x20,0x24,0x20,0x00 -+// 47739 멻 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x00,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x04,0xc4,0x44,0x44,0x04,0xc4,0x04,0x00,0x24,0x24,0x24,0x24,0x24,0x00 -+// 47740 멼 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x7c,0x04,0x8c,0x84,0x04,0x00,0x88,0x90,0x18,0x24,0x42,0x00 -+// 47741 멽 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x04,0x00,0x00,0x05,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x7c,0x44,0x44,0xc4,0x04,0x00,0xa0,0xa0,0x20,0x20,0x1e,0x00 -+// 47742 멾 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0x84,0xfc,0x84,0x84,0x84,0x04,0x00,0x20,0x08,0x28,0x28,0x4e,0x00 -+// 47743 멿 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x08,0x00,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x6c,0x84,0x8c,0x84,0x04,0x18,0x86,0x18,0x24,0x04,0x3c,0x00 -+// 47744 몀 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x7c,0x44,0x44,0x1c,0x04,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 47745 몁 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0c,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x5c,0x44,0x44,0xc4,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 47746 몂 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x09,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x88,0xf8,0x88,0x88,0x88,0x00,0x18,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 47747 몃 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x84,0xfc,0x84,0x84,0xbc,0x04,0x44,0x20,0x60,0xd0,0x0c,0x06,0x00 -+// 47748 몄 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0x1c,0xc4,0x04,0x08,0x88,0x88,0xd4,0x22,0x02,0x00 -+// 47749 명 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x6c,0x44,0x04,0x3c,0x84,0x04,0x70,0x84,0x84,0x8c,0x78,0x00 -+// 47750 몆 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x7c,0x04,0x84,0xb4,0x04,0x00,0xfc,0x60,0x50,0x8c,0x04,0x00 -+// 47751 몇 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x02,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x0c,0xc8,0x48,0x80,0xa8,0x80,0x00,0x00,0x4c,0x40,0x90,0x08,0x04,0x00 -+// 47752 몈 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x7c,0x44,0x04,0x14,0x84,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 47753 몉 ; -+,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0x09,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x8c,0x84,0x00,0x00,0x20,0x00,0x08,0x00,0xfc,0x00 -+// 47754 몊 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x84,0xfc,0x84,0x84,0x8c,0x00,0x00,0xbc,0x10,0x90,0x90,0x1e,0x00 -+// 47755 몋 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x8c,0x84,0x04,0x60,0x0e,0x60,0x90,0x88,0xf0,0x00 -+// 47756 몌 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x94,0x94,0x94,0x94,0x94,0x14,0x14,0x14,0x14,0x04,0x00 -+// 47757 몍 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 47758 몎 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47759 몏 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0x94,0x94,0x94,0xf4,0x14,0x10,0x88,0x88,0x9c,0xa6,0x82,0x00 -+// 47760 몐 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x2c,0x24,0x24,0xe4,0x24,0x24,0xe4,0x24,0x04,0x00,0x00,0x04,0x00,0x00 -+// 47761 몑 ; -+,0x00,0x00,0x00,0x00,0x19,0x08,0x09,0x09,0x09,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0x14,0xf4,0x14,0x00,0xf4,0x10,0x18,0x24,0x42,0x00 -+// 47762 몒 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x0c,0x04,0x04,0x07,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x30,0x06,0x10,0x04,0xc4,0x38,0x00 -+// 47763 몓 ; -+,0x00,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0xf4,0x94,0xf4,0x94,0x04,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 47764 몔 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x2c,0x24,0xa4,0xa4,0x24,0xe4,0x20,0x00,0x04,0x00,0x98,0x00,0xfe,0x00 -+// 47765 몕 ; -+,0x00,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0xa4,0x04,0x00,0x84,0x84,0x04,0x04,0x00,0x00 -+// 47766 몖 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x0d,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 47767 몗 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x14,0x94,0xb4,0x94,0xf4,0x14,0x4c,0x24,0x24,0x24,0x24,0x24,0x00 -+// 47768 몘 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0x88,0x88,0x18,0x24,0x02,0x00 -+// 47769 몙 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x09,0x08,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0xb4,0xb4,0x04,0x4c,0x60,0x20,0x20,0x00,0x1c,0x00 -+// 47770 몚 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0xb4,0xb4,0x14,0xf4,0x04,0x00,0x08,0x08,0x28,0x08,0x4e,0x00 -+// 47771 몛 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x38,0x02,0x18,0x24,0x24,0x24,0x00 -+// 47772 몜 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 47773 몝 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x09,0x09,0x09,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x2c,0x24,0xa4,0xe4,0x24,0xe4,0x24,0x00,0x0c,0x8c,0x04,0x04,0x8c,0x00 -+// 47774 몞 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x09,0x09,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0x34,0xb4,0x04,0x98,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 47775 몟 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 47776 몠 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x14,0x94,0xb4,0x14,0xf4,0x04,0x08,0x08,0x08,0x94,0x22,0x42,0x00 -+// 47777 몡 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0xd2,0x92,0x92,0xf2,0x92,0x12,0x30,0x44,0x84,0x04,0x7c,0x00 -+// 47778 몢 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x08,0x09,0x08,0x00,0x03,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0x94,0xf4,0x14,0x04,0xe0,0x40,0x90,0x0c,0x00,0x00 -+// 47779 몣 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x09,0x09,0x09,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0x24,0xe4,0x24,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 47780 몤 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 47781 몥 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x09,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 47782 몦 ; -+,0x00,0x00,0x00,0x00,0x19,0x08,0x08,0x09,0x08,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0x14,0xf4,0x14,0x00,0x9c,0x10,0x90,0x90,0x1e,0x00 -+// 47783 몧 ; -+,0x00,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0x94,0xf4,0x14,0x60,0xae,0x60,0x88,0x88,0x70,0x00 -+// 47784 모 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x00,0x10,0x00,0x80,0x40,0x40,0xff,0x00,0x00,0x00 -+// 47785 목 ; -+,0x00,0x00,0x07,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x80,0x00,0x9e,0x00,0x10,0x18,0x18,0x10,0x10,0x00 -+// 47786 몪 ; -+,0x00,0x00,0x07,0x04,0x00,0x02,0x00,0x00,0x1e,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x40,0x00,0xde,0x00,0x7c,0x04,0x04,0x00,0x00,0x00 -+// 47787 몫 ; -+,0x00,0x00,0x07,0x04,0x00,0x02,0x00,0x00,0x1e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x80,0x00,0xde,0x00,0x10,0x10,0x30,0x44,0x80,0x00 -+// 47788 몬 ; -+,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0xc0,0x00,0xc6,0x00,0x00,0x00,0x00,0x08,0x00,0x00 -+// 47789 몭 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x00,0x00,0x1e,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xd8,0x10,0x10,0x30,0x00,0x00,0xfe,0x00,0xf0,0x20,0x30,0x44,0x80,0x00 -+// 47790 몮 ; -+,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x00,0x18,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x38,0x10,0x10,0x30,0x00,0x82,0x00,0x70,0x00,0xb0,0x48,0x08,0x78,0x00 -+// 47791 몯 ; -+,0x00,0x00,0x07,0x04,0x00,0x02,0x00,0x00,0x1e,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0x10,0x30,0x00,0x00,0x06,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 47792 몰 ; -+,0x00,0x00,0x06,0x06,0x02,0x02,0x02,0x00,0x1c,0x00,0x07,0x00,0x06,0x02,0x01,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0xc0,0x80,0x0f,0x00,0x10,0x10,0x10,0x00,0xf8,0x00 -+// 47793 몱 ; -+,0x00,0x00,0x07,0x04,0x00,0x02,0x00,0x00,0x1e,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0xf8,0x10,0x10,0x30,0x00,0x40,0x00,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 47794 몲 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x00,0x40,0x00,0x00,0x64,0x04,0x20,0x20,0x20,0x00 -+// 47795 몳 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x00,0x00,0x06,0x08,0x44,0x2c,0x04,0x04,0x00,0x00 -+// 47796 몴 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0xc2,0x00,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 47797 몵 ; -+,0x00,0x00,0x07,0x04,0x00,0x02,0x00,0x00,0x1e,0x00,0x09,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x38,0x10,0x10,0x30,0xc0,0x80,0x02,0x00,0x68,0x40,0x78,0x40,0x3c,0x00 -+// 47798 몶 ; -+,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x1c,0x00,0x01,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x40,0x00,0x00,0x00,0x08,0x28,0x00,0x44,0x00 -+// 47799 몷 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x38,0x10,0x10,0x70,0x80,0x80,0x00,0x30,0x04,0x30,0x48,0x40,0x38,0x00 -+// 47800 몸 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x1e,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x40,0x40,0xfe,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 47801 몹 ; -+,0x00,0x00,0x07,0x04,0x04,0x07,0x00,0x00,0x18,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0xf0,0x10,0x10,0xf0,0x80,0x80,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 47802 몺 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x00,0x00,0x1c,0x00,0x08,0x0d,0x08,0x08,0x04,0x00,0x00,0x00,0xf8,0x10,0x10,0x70,0x80,0x80,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 47803 못 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x00,0xde,0x00,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 47804 몼 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x18,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x38,0x10,0x10,0x70,0x40,0x40,0x00,0x00,0x10,0x10,0xa8,0xe4,0x44,0x00 -+// 47805 몽 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0xc0,0x80,0xdf,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 47806 몾 ; -+,0x00,0x00,0x07,0x04,0x04,0x07,0x00,0x00,0x1e,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0xf0,0x80,0x80,0x06,0x00,0xf8,0x80,0x20,0x18,0x0c,0x00 -+// 47807 몿 ; -+,0x00,0x00,0x07,0x04,0x00,0x02,0x00,0x00,0x1c,0x01,0x00,0x04,0x00,0x01,0x04,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x80,0x80,0x06,0x00,0x00,0xc0,0xc0,0x30,0x08,0x00 -+// 47808 뫀 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x80,0x80,0xfe,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 47809 뫁 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x1c,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x00,0x00,0x1e,0x00,0x70,0x00,0x30,0x00,0xf8,0x00 -+// 47810 뫂 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x1e,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0xc0,0x00,0xfe,0x00,0x38,0x20,0x20,0x20,0x3c,0x00 -+// 47811 뫃 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x1c,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0xc0,0x00,0x02,0xc0,0x1c,0xc0,0x20,0x00,0xe0,0x00 -+// 47812 뫄 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x00,0x00,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x48,0x48,0x08,0x88,0x08,0x08,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 47813 뫅 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0b,0x02,0x03,0x18,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x88,0x1c,0xc8,0x00,0x00,0x18,0x08,0x00,0x00,0x00 -+// 47814 뫆 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x08,0x08,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 47815 뫇 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0b,0x01,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0a,0x08,0x08,0x00,0x10,0x10,0x30,0x48,0x84,0x00 -+// 47816 뫈 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x03,0x18,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x48,0x48,0x48,0x08,0x08,0x08,0xc8,0x08,0x00,0x00,0x00,0x9c,0x00 -+// 47817 뫉 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x01,0x1f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0xc8,0x0a,0x18,0x08,0x00,0x2c,0x10,0x30,0x48,0x84,0x00 -+// 47818 뫊 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x07,0x00,0x00,0x05,0x04,0x05,0x04,0x00,0x00,0x00,0x18,0xc8,0x08,0x88,0x08,0x18,0x88,0x70,0x00,0xb0,0x58,0x48,0x78,0x00 -+// 47819 뫋 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0b,0x01,0x03,0x18,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x08,0x08,0x0c,0xc8,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 47820 뫌 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0b,0x02,0x0f,0x00,0x03,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x08,0x18,0x88,0x00,0x10,0x10,0x30,0x00,0xfc,0x00 -+// 47821 뫍 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x0f,0x00,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x08,0x18,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 47822 뫎 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x1f,0x00,0x0b,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0a,0x18,0x08,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 47823 뫏 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x1f,0x00,0x0a,0x02,0x1a,0x08,0x0c,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x0a,0x18,0x08,0x00,0x88,0x48,0x48,0x48,0x48,0x00 -+// 47824 뫐 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x1f,0x00,0x0f,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x08,0x18,0x88,0x00,0x10,0x10,0x28,0x4c,0x84,0x00 -+// 47825 뫑 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0b,0x00,0x03,0x08,0x09,0x01,0x0d,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0x18,0x88,0x00,0x48,0x40,0x58,0x40,0x7c,0x00 -+// 47826 뫒 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0b,0x00,0x1f,0x00,0x0b,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0a,0x08,0x08,0x00,0x50,0x08,0x48,0x00,0xd4,0x00 -+// 47827 뫓 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0b,0x00,0x03,0x18,0x07,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x08,0xc8,0x48,0x08,0x88,0x08,0x88,0x08,0x00,0x54,0x38,0x04,0x28,0x00 -+// 47828 뫔 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x07,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x08,0x18,0x88,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 47829 뫕 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x0f,0x00,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0xc8,0x48,0x08,0x08,0x18,0x88,0x00,0x18,0x18,0x08,0x08,0x08,0x00 -+// 47830 뫖 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x03,0x18,0x01,0x08,0x05,0x00,0x04,0x00,0x00,0x00,0x18,0xc8,0x48,0x08,0x88,0x0e,0xc8,0x00,0x10,0x90,0x90,0xa4,0x40,0x00 -+// 47831 뫗 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x03,0x10,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x08,0x18,0x88,0x00,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 47832 뫘 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0b,0x00,0x03,0x18,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x88,0x0c,0x88,0x00,0x10,0x10,0x38,0xe4,0x44,0x00 -+// 47833 뫙 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x03,0x18,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x08,0x0c,0xc8,0x00,0x60,0x10,0x00,0x10,0xf0,0x00 -+// 47834 뫚 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x08,0x18,0x88,0x00,0x08,0x40,0xc0,0x10,0x0c,0x00 -+// 47835 뫛 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x08,0x18,0x88,0x00,0xc0,0x08,0x40,0xa0,0x08,0x00 -+// 47836 뫜 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0b,0x00,0x0f,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x08,0x08,0x18,0x88,0x00,0x98,0x08,0xf8,0x08,0x00,0x00 -+// 47837 뫝 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x03,0x18,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x48,0x08,0x08,0x1c,0xc8,0x00,0x18,0x00,0x18,0x00,0xfc,0x00 -+// 47838 뫞 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x07,0x00,0x07,0x00,0x01,0x01,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x08,0x18,0x88,0x00,0xf8,0x00,0x10,0x00,0x3c,0x00 -+// 47839 뫟 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x1f,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x18,0xc8,0x08,0x88,0x0a,0x18,0x00,0xc0,0x18,0xc0,0x20,0x10,0xe0,0x00 -+// 47840 뫠 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x03,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x94,0x94,0x94,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x00 -+// 47841 뫡 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x0a,0x03,0x18,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0xa4,0x3c,0xe4,0x00,0x00,0x0c,0x04,0x04,0x00,0x00 -+// 47842 뫢 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x04,0x02,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x14,0xe4,0x00,0x14,0x84,0x84,0x84,0x84,0x00 -+// 47843 뫣 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x02,0x03,0x1c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xe4,0x00,0x18,0x88,0x98,0xa4,0x82,0x00 -+// 47844 뫤 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x03,0x18,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xa4,0x34,0x24,0xa4,0x24,0x04,0x00,0x00,0xdc,0x00 -+// 47845 뫥 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x02,0x03,0x08,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xa4,0x34,0xe4,0x00,0x04,0x10,0x38,0x44,0x80,0x00 -+// 47846 뫦 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x04,0x02,0x03,0x08,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x14,0x84,0x94,0x94,0x34,0xa4,0x30,0x00,0xd6,0x38,0xc4,0x38,0x00 -+// 47847 뫧 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x04,0x02,0x03,0x0c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x14,0xe4,0x00,0x04,0x00,0x00,0x00,0xfc,0x00 -+// 47848 뫨 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x03,0x1c,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xe4,0x00,0xcc,0x04,0x1c,0x00,0x86,0x00 -+// 47849 뫩 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0d,0x02,0x03,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xa4,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 47850 뫪 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x04,0x02,0x03,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xa4,0x00,0xa4,0xa4,0xa4,0x24,0x20,0x00 -+// 47851 뫫 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x03,0x0c,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0xa4,0x00,0x44,0x24,0x24,0x24,0x24,0x00 -+// 47852 뫬 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0f,0x02,0x07,0x00,0x05,0x00,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xa4,0x00,0x90,0x10,0x18,0x24,0x42,0x00 -+// 47853 뫭 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x03,0x1c,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xe4,0x00,0x4c,0x40,0x28,0x40,0x3c,0x00 -+// 47854 뫮 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x02,0x03,0x08,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xe4,0x00,0x24,0x08,0x20,0x28,0x0e,0x00 -+// 47855 뫯 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x05,0x00,0x03,0x08,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x94,0x34,0x84,0x10,0x00,0x18,0x24,0x24,0x3c,0x00 -+// 47856 뫰 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x02,0x03,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x90,0x14,0xf4,0x00,0x00,0x84,0x84,0x84,0x80,0x00 -+// 47857 뫱 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0b,0x02,0x03,0x08,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0xa4,0x00,0x0c,0x84,0x04,0x04,0x84,0x00 -+// 47858 뫲 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x02,0x03,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xa4,0x00,0x88,0x88,0x98,0xa6,0xc2,0x00 -+// 47859 뫳 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x04,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x84,0x14,0x24,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 47860 뫴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0d,0x02,0x03,0x08,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x34,0xe4,0x00,0x18,0x10,0x98,0x64,0x42,0x00 -+// 47861 뫵 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x04,0x02,0x02,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0x34,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 47862 뫶 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x03,0x1c,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x84,0x14,0xe4,0x00,0x00,0x60,0x60,0x90,0x04,0x00 -+// 47863 뫷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x06,0x02,0x0f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x94,0x34,0xa4,0x00,0x00,0x6c,0x60,0x98,0x04,0x00 -+// 47864 뫸 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x03,0x1c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x84,0x14,0xe4,0x00,0x0c,0x04,0x3c,0x04,0x04,0x00 -+// 47865 뫹 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x04,0x02,0x03,0x08,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x04,0x24,0x14,0x94,0x94,0x94,0x34,0x84,0x00,0x0c,0x00,0x0c,0x00,0xfe,0x00 -+// 47866 뫺 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x02,0x07,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0xb4,0x34,0xa4,0x00,0xdc,0x10,0x90,0x10,0xfe,0x00 -+// 47867 뫻 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x02,0x03,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0xb4,0x20,0x00,0x60,0x90,0x88,0xf0,0x00 -+// 47868 뫼 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x24,0x24,0x04,0x44,0x04,0x04,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 47869 뫽 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x01,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0xc4,0x04,0xf4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 47870 뫾 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x44,0x84,0x04,0xe4,0x00,0x28,0x84,0x84,0x84,0x84,0x00 -+// 47871 뫿 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x44,0x44,0xc4,0x0c,0xc4,0x00,0x08,0x88,0x98,0xb4,0x82,0x00 -+// 47872 묀 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x05,0x01,0x03,0x08,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x0c,0xc0,0x00,0x00,0x00,0x00,0x00,0x00 -+// 47873 묁 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x01,0x0c,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x44,0x04,0x04,0xc4,0x00,0x16,0x18,0x18,0xa4,0x42,0x00 -+// 47874 묂 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x84,0x04,0x04,0x18,0x00,0x18,0x24,0xa4,0x3c,0x00 -+// 47875 묃 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x01,0x0e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x04,0x44,0xc4,0x04,0xe4,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 47876 묄 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x84,0x04,0xc4,0x00,0xc4,0x04,0x8c,0x00,0xfe,0x00 -+// 47877 묅 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x1f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x04,0x84,0x00,0xbc,0x84,0x04,0x04,0x00,0x00 -+// 47878 묆 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x00,0x03,0x08,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x84,0x04,0xc4,0x00,0xa4,0xa4,0xa4,0x24,0x20,0x00 -+// 47879 묇 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x05,0x00,0x0f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x84,0x04,0xc4,0x00,0x64,0x24,0x24,0x24,0x24,0x00 -+// 47880 묈 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x00,0x07,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x84,0x04,0xc4,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 47881 묉 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x05,0x00,0x1f,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x84,0x04,0xc4,0x04,0xa0,0xa0,0x2c,0x20,0x1e,0x00 -+// 47882 묊 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x1f,0x00,0x01,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x64,0x04,0x44,0x04,0x0c,0xc4,0x04,0x80,0x04,0x20,0x08,0x6e,0x00 -+// 47883 묋 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x1f,0x00,0x05,0x00,0x06,0x04,0x02,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x0c,0x84,0x18,0x80,0x98,0x14,0x20,0x1c,0x00 -+// 47884 묌 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x01,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0xc4,0x0c,0xc4,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 47885 묍 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x01,0x0c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0xc4,0x04,0xe4,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 47886 묎 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x0c,0xc4,0x00,0x88,0x88,0x9c,0x12,0x60,0x00 -+// 47887 묏 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x84,0x04,0xe4,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 47888 묐 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x1f,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x04,0x64,0x04,0x44,0x84,0x04,0xc4,0x00,0x08,0x08,0x94,0x62,0x42,0x00 -+// 47889 묑 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x05,0x00,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x84,0x04,0xe4,0x00,0x30,0x44,0x84,0x84,0x78,0x00 -+// 47890 묒 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x03,0x08,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x64,0x44,0x44,0x84,0x0c,0xc4,0x00,0xfc,0x20,0x70,0x88,0x04,0x00 -+// 47891 묓 ; -+,0x00,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x24,0x24,0x24,0x84,0x84,0xc4,0x00,0x00,0xb6,0x30,0x48,0x02,0x00 -+// 47892 묔 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x05,0x00,0x01,0x0c,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x84,0x04,0xe4,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 47893 묕 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x05,0x00,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x84,0x04,0xc4,0x00,0xbc,0x00,0x8c,0x00,0xfc,0x00 -+// 47894 묖 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x01,0x0c,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x64,0x04,0x44,0x84,0x04,0xe4,0x00,0x9c,0x10,0x80,0x90,0x1e,0x00 -+// 47895 묗 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x44,0x44,0x84,0x0c,0x84,0x70,0x0e,0x20,0x88,0x88,0x70,0x00 -+// 47896 묘 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x10,0x10,0x30,0x00,0x20,0x10,0x00,0xff,0x00,0x00,0x00 -+// 47897 묙 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x02,0x1e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x10,0x10,0x70,0x20,0x20,0x06,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 47898 묚 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x02,0x1f,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf0,0x10,0x10,0x10,0x20,0x20,0x3e,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 47899 묛 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x02,0x1e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf0,0x10,0x10,0x30,0x20,0x20,0x3e,0x00,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 47900 묜 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x02,0x01,0x18,0x08,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x30,0x20,0x22,0x00,0x00,0x00,0x00,0x38,0x00,0x00 -+// 47901 묝 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x02,0x1f,0x00,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x20,0x20,0x3e,0x00,0xb0,0x30,0x30,0x4c,0x84,0x00 -+// 47902 묞 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x02,0x1e,0x00,0x08,0x08,0x08,0x0a,0x04,0x00,0x00,0x00,0xf0,0x10,0x10,0x30,0x20,0x20,0x00,0x70,0x04,0x30,0x48,0x08,0x78,0x00 -+// 47903 묟 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x02,0x1f,0x00,0x00,0x06,0x00,0x00,0x03,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x20,0x20,0x3f,0x00,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 47904 묠 ; -+,0x00,0x00,0x06,0x04,0x04,0x02,0x02,0x00,0x1e,0x00,0x00,0x00,0x06,0x02,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x00,0x00,0x1e,0x00,0x10,0x10,0x00,0x00,0x18,0x00 -+// 47905 묡 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x02,0x00,0x18,0x00,0x00,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x20,0x20,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 47906 묢 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x02,0x03,0x00,0x05,0x01,0x09,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x70,0x20,0x26,0x00,0x68,0x04,0x00,0x00,0x28,0x00,0x00 -+// 47907 묣 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x02,0x00,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xd8,0x10,0x10,0x70,0x20,0x20,0x1e,0x08,0x44,0x2c,0x04,0x2c,0x00,0x00 -+// 47908 묤 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x02,0x00,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xd8,0x10,0x10,0x70,0x20,0x20,0x1e,0x20,0x10,0x10,0x28,0x44,0x84,0x00 -+// 47909 묥 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x02,0x00,0x1e,0x00,0x09,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0xd8,0x10,0x10,0x70,0x20,0x20,0x1e,0x00,0x40,0x40,0x60,0x40,0x18,0x00 -+// 47910 묦 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x02,0x00,0x1e,0x00,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x10,0x10,0x10,0x70,0x20,0x20,0x02,0x00,0x00,0x08,0x08,0x00,0xd4,0x00 -+// 47911 묧 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x02,0x1f,0x00,0x0f,0x01,0x0c,0x00,0x04,0x00,0x00,0x00,0xf8,0x10,0x10,0x70,0x20,0x20,0x3e,0x30,0x04,0x30,0x48,0x40,0x38,0x00 -+// 47912 묨 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x02,0x00,0x1e,0x00,0x06,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x20,0x20,0x1e,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 47913 묩 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x00,0x1c,0x00,0x04,0x07,0x04,0x02,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x20,0x20,0x00,0x30,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 47914 묪 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x02,0x02,0x1e,0x01,0x08,0x0f,0x08,0x09,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x70,0x20,0x20,0x02,0x10,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 47915 묫 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x02,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x70,0x00,0x20,0x02,0x80,0xc0,0x80,0x20,0x08,0x00,0x00 -+// 47916 묬 ; -+,0x00,0x00,0x06,0x04,0x04,0x02,0x02,0x00,0x1e,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x20,0x20,0x02,0x00,0x10,0x10,0x28,0xc4,0x00,0x00 -+// 47917 묭 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x01,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x00,0x3f,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 47918 묮 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x02,0x00,0x1e,0x00,0x06,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x20,0x20,0x02,0x00,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 47919 묯 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x02,0x00,0x1e,0x01,0x00,0x04,0x00,0x03,0x0c,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x20,0x20,0x02,0xc0,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 47920 묰 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x02,0x00,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x20,0x20,0x3e,0x00,0xc8,0x08,0x88,0x08,0x08,0x00 -+// 47921 묱 ; -+,0x00,0x00,0x06,0x04,0x04,0x03,0x02,0x00,0x1f,0x00,0x07,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x20,0x20,0x3e,0x00,0x70,0x00,0x70,0x00,0xf8,0x00 -+// 47922 묲 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x00,0x1f,0x00,0x04,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0xf8,0x10,0x10,0x10,0x20,0x20,0x3e,0x00,0x18,0x20,0x20,0x20,0x04,0x00 -+// 47923 묳 ; -+,0x00,0x00,0x06,0x04,0x04,0x07,0x02,0x00,0x1f,0x00,0x0e,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0xf0,0x20,0x20,0xc2,0xc0,0xdc,0xc0,0x20,0x20,0xc0,0x00 -+// 47924 무 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x10,0x10,0x00,0x00,0xc0,0x40,0x40,0x40,0x40,0x00,0x00,0x00 -+// 47925 묵 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x02,0xc0,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 47926 묶 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x1f,0x00,0x00,0x2c,0x00,0x00,0x00,0x00,0x00 -+// 47927 묷 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x00,0x00,0x10,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x00,0x02,0x40,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 47928 문 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x04,0x00,0x1e,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00,0xc2,0x40,0x40,0x00,0x00,0x00,0x00,0x00 -+// 47929 묹 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x0f,0x40,0x00,0xf0,0x10,0x30,0x4c,0x84,0x00 -+// 47930 묺 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x18,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x5f,0x00,0x70,0x04,0x30,0x48,0x48,0x78,0x00 -+// 47931 묻 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x10,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x30,0x00,0x02,0xc0,0x00,0xf8,0x00,0x00,0x00,0x00,0x00 -+// 47932 물 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x06,0x40,0x00,0x10,0x10,0x00,0x00,0x18,0x00 -+// 47933 묽 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x06,0x40,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 47934 묾 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1c,0x00,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x1f,0x00,0xc0,0x24,0x24,0x20,0x20,0x20,0x00 -+// 47935 묿 ; -+,0x00,0x00,0x06,0x00,0x02,0x02,0x00,0x10,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x0e,0x00,0x08,0x44,0x3c,0x04,0x04,0x28,0x00 -+// 47936 뭀 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x10,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x0e,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 47937 뭁 ; -+,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x1c,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x00,0x00,0xdf,0x00,0x00,0x60,0x00,0x28,0x00,0x3c,0x00 -+// 47938 뭂 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1c,0x00,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x5e,0x00,0x00,0x00,0x08,0x28,0x00,0x40,0x00 -+// 47939 뭃 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x0e,0x00,0x70,0x04,0x10,0x28,0x44,0x28,0x00 -+// 47940 뭄 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x00,0x0e,0x00,0x00,0xb8,0x10,0x10,0x10,0x00,0x00 -+// 47941 뭅 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x06,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x0e,0x40,0x10,0x10,0xf0,0x10,0x10,0x00,0x00 -+// 47942 뭆 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1e,0x00,0x01,0x08,0x05,0x00,0x04,0x04,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0xdf,0x40,0x90,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 47943 뭇 ; -+,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x00,0x06,0x40,0x80,0xc0,0xc0,0x20,0x08,0x00,0x00 -+// 47944 뭈 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x1e,0x00,0x00,0x10,0x10,0x28,0xc4,0x04,0x00 -+// 47945 뭉 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x0f,0x40,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 47946 뭊 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x02,0x04,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x0f,0x40,0x00,0xc8,0xc0,0xa0,0x18,0x04,0x00 -+// 47947 뭋 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x01,0x00,0x0e,0x00,0x01,0x04,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x00,0x1e,0x80,0xc0,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 47948 뭌 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x10,0x10,0x00,0x02,0x40,0x40,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 47949 뭍 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x06,0x40,0x00,0xd8,0x00,0x10,0x00,0xf8,0x00 -+// 47950 뭎 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x00,0x0e,0x00,0x00,0xd8,0x20,0x20,0x20,0x3c,0x00 -+// 47951 뭏 ; -+,0x00,0x00,0x06,0x00,0x02,0x02,0x00,0x1f,0x00,0x00,0x0f,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0xde,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 47952 뭐 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0x44,0x04,0x04,0x04,0x2c,0x04,0x04,0x04,0x04,0x00 -+// 47953 뭑 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x84,0x3c,0x00,0x08,0x04,0x04,0x04,0x00,0x00 -+// 47954 뭒 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x01,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x84,0x3c,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 47955 뭓 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x04,0x04,0x38,0x00,0x18,0x88,0x98,0x84,0x82,0x00 -+// 47956 뭔 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x40,0x40,0x40,0x04,0x04,0x04,0x1c,0x00,0x00,0x00,0x00,0x04,0x00 -+// 47957 뭕 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x09,0x01,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x06,0x10,0x18,0x24,0x42,0x00 -+// 47958 뭖 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x24,0x38,0x00,0xd8,0x2c,0x84,0x38,0x00 -+// 47959 뭗 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x09,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 47960 뭘 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x13,0x01,0x01,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0xcc,0x00,0x08,0x00,0x06,0x00 -+// 47961 뭙 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x07,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x24,0x00,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 47962 뭚 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x07,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0xa4,0xa4,0xa4,0x24,0x20,0x00 -+// 47963 뭛 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x34,0x00,0x44,0x24,0x24,0x24,0x24,0x00 -+// 47964 뭜 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x0f,0x00,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x90,0x10,0x18,0x24,0x02,0x00 -+// 47965 뭝 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0xe8,0x20,0x2c,0x20,0x3c,0x00 -+// 47966 뭞 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x00,0x0c,0x28,0x08,0x4e,0x00 -+// 47967 뭟 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x10,0x80,0x38,0x1c,0x24,0x34,0x00 -+// 47968 뭠 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x09,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x00,0x08,0x08,0x08,0x00,0x00 -+// 47969 뭡 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x04,0x38,0x00,0x0c,0x00,0x0c,0x04,0xf8,0x00 -+// 47970 뭢 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x88,0x88,0x94,0xa2,0x40,0x00 -+// 47971 뭣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x09,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x04,0x1c,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 47972 뭤 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x34,0x00,0x08,0x08,0x94,0x66,0x42,0x00 -+// 47973 뭥 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x04,0x1c,0x04,0x30,0x8c,0x84,0x84,0x78,0x00 -+// 47974 뭦 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x13,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x84,0x3c,0x00,0x04,0x20,0x60,0x88,0x04,0x00 -+// 47975 뭧 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x17,0x01,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x34,0x00,0x00,0x7c,0x60,0x98,0x04,0x00 -+// 47976 뭨 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0b,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x04,0x44,0x04,0x84,0x3c,0x00,0x0c,0x04,0xe4,0x04,0x04,0x00 -+// 47977 뭩 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x04,0x84,0x34,0x00,0x0c,0x00,0x7c,0x00,0xfc,0x00 -+// 47978 뭪 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x0c,0x10,0x90,0x90,0x1e,0x00 -+// 47979 뭫 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x17,0x01,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x34,0x40,0x00,0xf0,0x58,0x88,0x58,0x00 -+// 47980 뭬 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x05,0x00,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0x94,0x14,0x74,0x14,0x14,0x14,0x04,0x00 -+// 47981 뭭 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x14,0x14,0x00,0x04,0x04,0x04,0x04,0x00 -+// 47982 뭮 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x34,0x14,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 47983 뭯 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x03,0x02,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x34,0x04,0x18,0x88,0x98,0x84,0x82,0x00 -+// 47984 뭰 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x05,0x00,0x1f,0x02,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x14,0x94,0x94,0x94,0x14,0x14,0x34,0x14,0x04,0x00,0x00,0xde,0x00 -+// 47985 뭱 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x1f,0x02,0x02,0x08,0x04,0x04,0x07,0x04,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x34,0x04,0x0c,0x10,0x18,0x24,0x84,0x00 -+// 47986 뭲 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x03,0x02,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x34,0x30,0x00,0xf8,0x2c,0xc4,0x38,0x00 -+// 47987 뭳 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x01,0x0a,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x14,0x14,0x14,0x04,0x00,0x00,0x00,0xfc,0x00 -+// 47988 뭴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x07,0x02,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x34,0x00,0xfc,0x04,0xfc,0x00,0xfe,0x00 -+// 47989 뭵 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x1f,0x02,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 47990 뭶 ; -+,0x00,0x00,0x00,0x08,0x08,0x04,0x00,0x03,0x02,0x02,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 47991 뭷 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x1f,0x02,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0xe4,0x3c,0x24,0x24,0x24,0x00 -+// 47992 뭸 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x02,0x00,0x04,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 47993 뭹 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x1f,0x00,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x04,0xe0,0x20,0x20,0x20,0x1c,0x00 -+// 47994 뭺 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x03,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x14,0x14,0x74,0x00,0x26,0x04,0x24,0x08,0x6e,0x00 -+// 47995 뭻 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x07,0x02,0x02,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x10,0x00,0x78,0x3c,0x24,0x24,0x00 -+// 47996 뭼 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x14,0x14,0x04,0x84,0x84,0x84,0x80,0x00 -+// 47997 뭽 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x01,0x0e,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x14,0x14,0x34,0x00,0x04,0x84,0x84,0x04,0xfc,0x00 -+// 47998 뭾 ; -+,0x00,0x00,0x00,0x08,0x08,0x04,0x04,0x1f,0x02,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x10,0x88,0x88,0x9c,0x12,0x20,0x00 -+// 47999 뭿 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 48000 뮀 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x01,0x0a,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x74,0x10,0x08,0x08,0x98,0x64,0x42,0x00 -+// 48001 뮁 ; -+,0x00,0x00,0x00,0x0c,0x08,0x04,0x00,0x0f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x04,0x30,0xc8,0x84,0x84,0x78,0x00 -+// 48002 뮂 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x07,0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x34,0x04,0x0c,0x60,0x60,0x98,0x04,0x00 -+// 48003 뮃 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x00,0x1f,0x02,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x34,0x00,0x00,0x6c,0x60,0x98,0x04,0x00 -+// 48004 뮄 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x1f,0x02,0x02,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x04,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 48005 뮅 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x01,0x0a,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x74,0x00,0x0c,0x00,0x0c,0x00,0xfc,0x00 -+// 48006 뮆 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x07,0x02,0x02,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x34,0x04,0xfc,0x10,0x90,0x90,0x9e,0x00 -+// 48007 뮇 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x74,0x10,0x00,0x70,0x98,0x88,0x70,0x00 -+// 48008 뮈 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x04,0x04,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x64,0x04,0x04,0xe4,0x84,0x84,0x84,0x04,0x04,0x00 -+// 48009 뮉 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0xe4,0x04,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 48010 뮊 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x04,0x44,0x04,0x74,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 48011 뮋 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x6c,0x04,0x00,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 48012 뮌 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x04,0x44,0xc4,0x04,0xe4,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 48013 뮍 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0x04,0x2c,0x84,0x00,0x02,0x18,0x18,0xa4,0x42,0x00 -+// 48014 뮎 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x00,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0xc4,0x04,0x38,0x00,0x78,0x2c,0x84,0x2c,0x00 -+// 48015 뮏 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0x04,0x1c,0x84,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 48016 뮐 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x09,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0xc4,0x04,0xe4,0x04,0x00,0xcc,0x08,0x08,0x00,0x06,0x00 -+// 48017 뮑 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0xc4,0x04,0x84,0x04,0x00,0xac,0x84,0x04,0x04,0x04,0x00 -+// 48018 뮒 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0xc4,0x04,0x00,0xa4,0xa4,0x24,0x24,0x00,0x00 -+// 48019 뮓 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x00,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0xc4,0x04,0x00,0x44,0x24,0x24,0x24,0x24,0x00 -+// 48020 뮔 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x01,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x0c,0x84,0x00,0x10,0x88,0x90,0x0c,0x26,0x00,0x00 -+// 48021 뮕 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x0c,0xc4,0x04,0x00,0xe0,0x20,0x20,0x20,0x00,0x00 -+// 48022 뮖 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x00,0x01,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0xc4,0x04,0x00,0x80,0x04,0x20,0x08,0x4e,0x00 -+// 48023 뮗 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x00,0x07,0x00,0x06,0x04,0x02,0x00,0x00,0x00,0x04,0x44,0x44,0xc4,0x04,0xe4,0x04,0x10,0x80,0x18,0x24,0x24,0x18,0x00 -+// 48024 뮘 ; -+,0x00,0x00,0x00,0x07,0x04,0x04,0x00,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x3c,0x04,0x00,0x00,0x0c,0x08,0x08,0x00,0x00 -+// 48025 뮙 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0xc4,0x0c,0xc4,0x00,0x00,0x04,0x8c,0x00,0x08,0x00,0x00 -+// 48026 뮚 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x09,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x44,0x44,0xc4,0x04,0xe4,0x04,0x00,0x88,0x88,0x9c,0xa2,0x00,0x00 -+// 48027 뮛 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x64,0x04,0xc4,0x04,0x64,0x04,0x04,0x20,0x60,0x50,0x8c,0x00,0x00 -+// 48028 뮜 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x0c,0x84,0x00,0x10,0x08,0x18,0x94,0x22,0x40,0x00 -+// 48029 뮝 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x0f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0x04,0x2c,0x84,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 48030 뮞 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x0d,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x24,0x04,0x44,0x04,0xe4,0x04,0x00,0x04,0x20,0x60,0x88,0x04,0x00 -+// 48031 뮟 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x44,0x44,0x44,0xc4,0x0c,0xc4,0x04,0x00,0x00,0x64,0x60,0x98,0x04,0x00 -+// 48032 뮠 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x01,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x6c,0x04,0x00,0xcc,0x04,0xec,0x04,0x00,0x00 -+// 48033 뮡 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x04,0xc4,0x04,0x00,0x1c,0x00,0x18,0x00,0xfc,0x00 -+// 48034 뮢 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x1d,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0xe4,0x04,0x00,0x0c,0x10,0x80,0x90,0x1e,0x00 -+// 48035 뮣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x09,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x0c,0xc4,0x04,0x70,0x06,0x60,0x88,0x88,0x70,0x00 -+// 48036 뮤 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x02,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 48037 뮥 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1a,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb0,0x10,0x10,0x10,0x00,0x02,0x10,0x10,0x38,0x08,0x08,0x08,0x00,0x00 -+// 48038 뮦 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xb8,0x10,0x10,0x10,0x00,0x06,0x10,0x10,0x78,0x00,0x00,0x00,0x08,0x00 -+// 48039 뮧 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x00,0x3f,0x10,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 48040 뮨 ; -+,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x06,0x04,0x06,0x00,0x00,0x00,0x00,0xd0,0x10,0x10,0x10,0x00,0x00,0x3e,0x10,0x10,0x10,0x00,0x00,0x08,0x00 -+// 48041 뮩 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x12,0x02,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xb8,0x10,0x10,0x10,0x00,0x07,0x10,0x10,0xf0,0x10,0x30,0x4c,0x84,0x00 -+// 48042 뮪 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x02,0x02,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x98,0x10,0x10,0x30,0x00,0x0f,0x10,0x30,0x00,0xb0,0x68,0x44,0x48,0x00 -+// 48043 뮫 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x12,0x02,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x38,0x10,0x10,0x30,0x00,0x07,0x10,0x10,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 48044 뮬 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x1f,0x02,0x02,0x00,0x00,0x06,0x02,0x01,0x00,0x00,0x00,0x38,0x10,0x10,0x30,0x00,0x3f,0x10,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 48045 뮭 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x1f,0x02,0x02,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x3f,0x10,0x10,0x88,0x08,0x08,0x08,0x08,0x00 -+// 48046 뮮 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1f,0x02,0x02,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x36,0x10,0x14,0x24,0x24,0x20,0x20,0x20,0x00 -+// 48047 뮯 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1f,0x02,0x02,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x3f,0x10,0x08,0x24,0x3c,0x24,0x2c,0x20,0x00 -+// 48048 뮰 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1e,0x02,0x02,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x3f,0x10,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 48049 뮱 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1f,0x02,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0x00,0x00,0x36,0x10,0x00,0x60,0x40,0x60,0x40,0x1c,0x00 -+// 48050 뮲 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x1f,0x02,0x02,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0x98,0x10,0x10,0x30,0x00,0x3e,0x10,0x14,0x00,0x48,0x28,0x00,0x40,0x00 -+// 48051 뮳 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1e,0x02,0x02,0x01,0x01,0x0c,0x00,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x3e,0x10,0x30,0x54,0x10,0x48,0x44,0x38,0x00 -+// 48052 뮴 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x1e,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x00,0x3e,0x10,0x10,0x38,0x10,0x10,0x10,0x00,0x00 -+// 48053 뮵 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x02,0x02,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x98,0x10,0x10,0x30,0x00,0x3f,0x10,0x10,0x10,0x10,0x00,0x10,0x00,0x00 -+// 48054 뮶 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x1f,0x02,0x00,0x08,0x05,0x00,0x04,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x00,0x00,0x3f,0x10,0x10,0x90,0x90,0xac,0xa4,0x00,0x00 -+// 48055 뮷 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x12,0x02,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x38,0x10,0x10,0x70,0x00,0x06,0x10,0x10,0xc0,0x80,0x20,0x08,0x00,0x00 -+// 48056 뮸 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x00,0x02,0x02,0x02,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x00,0x3e,0x10,0x10,0x10,0x10,0x28,0xc4,0x00,0x00 -+// 48057 뮹 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x00,0x1f,0x10,0x50,0x20,0x10,0x10,0x30,0xe0,0x00 -+// 48058 뮺 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x3f,0x10,0x10,0xc0,0xc0,0x20,0x08,0x04,0x00 -+// 48059 뮻 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x1f,0x02,0x03,0x00,0x07,0x00,0x03,0x0c,0x00,0x00,0x00,0x18,0x10,0x10,0x00,0x00,0x32,0x10,0xf0,0x00,0xc0,0xc0,0x18,0x04,0x00 -+// 48060 뮼 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x30,0x00,0x3f,0x10,0x10,0xf8,0x08,0xc8,0x08,0x08,0x00 -+// 48061 뮽 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x1f,0x02,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x00,0x3e,0x10,0x10,0x70,0x00,0x30,0x00,0xf8,0x00 -+// 48062 뮾 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x07,0x00,0x00,0x01,0x0e,0x00,0x00,0x00,0x38,0x10,0x10,0x30,0x00,0x3f,0x10,0x10,0x18,0x20,0x20,0x20,0x0c,0x00 -+// 48063 뮿 ; -+,0x00,0x00,0x07,0x02,0x02,0x02,0x00,0x1f,0x02,0x02,0x06,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x3e,0x10,0xe0,0xdc,0xc0,0x20,0x20,0xe0,0x00 -+// 48064 므 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x10,0x10,0x10,0xf0,0x00,0x00,0x02,0x00,0x00,0x00,0x00 -+// 48065 믁 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x3f,0x00,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 48066 믂 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x18,0x00,0x0d,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x02,0x00,0x00,0x28,0x00,0x00,0x00,0x00,0x00 -+// 48067 믃 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x1f,0x00,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 48068 믄 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x0c,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x38,0x00,0x00 -+// 48069 믅 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x10,0x00,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x02,0x00,0x00,0x10,0x30,0x38,0x44,0x00,0x00 -+// 48070 믆 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x07,0x00,0x30,0x04,0x30,0x48,0x40,0x78,0x00 -+// 48071 믇 ; -+,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x00,0x10,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x06,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00 -+// 48072 믈 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x18,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x02,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 48073 믉 ; -+,0x00,0x00,0x07,0x04,0x00,0x02,0x00,0x00,0x18,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x38,0x10,0x10,0xf0,0x00,0x02,0x00,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 48074 믊 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x02,0x00,0x00,0x64,0x24,0x04,0x20,0x20,0x00 -+// 48075 믋 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x1f,0x00,0x08,0x04,0x3c,0x04,0x3c,0x00,0x00 -+// 48076 믌 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x02,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 48077 믍 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x18,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x02,0x00,0x00,0x60,0x00,0x28,0x00,0x1c,0x00 -+// 48078 믎 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x07,0x00,0x00,0x00,0x48,0x28,0x00,0x44,0x00 -+// 48079 믏 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x10,0xf0,0x00,0x02,0x00,0x30,0x04,0x10,0x48,0x40,0x38,0x00 -+// 48080 믐 ; -+,0x00,0x00,0x07,0x04,0x02,0x02,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x98,0x00,0x10,0x30,0x00,0x02,0x00,0x00,0x18,0x00,0x10,0x10,0x00,0x00 -+// 48081 믑 ; -+,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x18,0x00,0x04,0x07,0x04,0x06,0x00,0x00,0x00,0x10,0x18,0x10,0x10,0x30,0x00,0x06,0x00,0x10,0x10,0xf0,0x10,0x10,0x00,0x00 -+// 48082 믒 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x01,0x08,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x70,0x00,0x3e,0x00,0x10,0x10,0x10,0x28,0x04,0x80,0x00 -+// 48083 믓 ; -+,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x00,0x3e,0x00,0xc0,0x80,0x20,0x18,0x08,0x00 -+// 48084 믔 ; -+,0x00,0x00,0x06,0x04,0x00,0x02,0x00,0x00,0x18,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x06,0x00,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 48085 믕 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x1c,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0x00,0x00,0x00,0x80,0x60,0x10,0x10,0x20,0xc0,0x00 -+// 48086 믖 ; -+,0x00,0x00,0x07,0x04,0x04,0x02,0x00,0x00,0x18,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xd8,0x10,0x10,0x30,0x00,0x00,0x00,0x00,0xf8,0x80,0x20,0x18,0x0c,0x00 -+// 48087 믗 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x00,0x01,0x00,0x04,0x00,0x03,0x0c,0x00,0x00,0x00,0x30,0x10,0x10,0x70,0x00,0x1e,0x00,0xc0,0x08,0xc0,0xc0,0x10,0x08,0x00 -+// 48088 믘 ; -+,0x00,0x00,0x07,0x04,0x04,0x06,0x00,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x00,0x00,0x02,0x00,0x98,0x08,0xe8,0x08,0x08,0x00 -+// 48089 믙 ; -+,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x06,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x70,0x00,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 48090 믚 ; -+,0x00,0x00,0x06,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x00,0x0e,0x00,0x00,0x00,0x10,0x10,0x10,0xf0,0x00,0x06,0x00,0x00,0x18,0x20,0x20,0x20,0x3c,0x00 -+// 48091 믛 ; -+,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x18,0x00,0x00,0x0f,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0xf0,0x00,0x3e,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xc0,0x00 -+// 48092 믜 ; -+,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x64,0x44,0x44,0xc4,0x04,0x04,0x7c,0x04,0x04,0x04,0x04,0x00 -+// 48093 믝 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x24,0x44,0xc4,0x0c,0x84,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 48094 믞 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x04,0x1c,0x84,0x00,0x28,0x84,0x84,0x84,0x80,0x00 -+// 48095 믟 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x04,0x0c,0x84,0x00,0x18,0x88,0x98,0xa4,0x82,0x00 -+// 48096 믠 ; -+,0x00,0x00,0x00,0x0a,0x08,0x00,0x04,0x00,0x00,0x1e,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x44,0x44,0x44,0x04,0x2c,0x04,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 48097 믡 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x07,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xc4,0x0c,0x84,0x00,0x04,0x10,0x10,0x2c,0x44,0x00 -+// 48098 믢 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0xc4,0x44,0x44,0x04,0x28,0x00,0x38,0x00,0xf0,0x38,0x44,0x28,0x00 -+// 48099 믣 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x07,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xc4,0x0c,0xc4,0x00,0x08,0x00,0x00,0x00,0x0c,0x00 -+// 48100 믤 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x64,0x04,0x44,0x04,0x2c,0x04,0x00,0x8c,0x00,0x98,0x00,0x9e,0x00 -+// 48101 믥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x05,0x00,0x1f,0x00,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x0c,0x84,0x00,0x00,0x08,0x00,0x00,0x08,0x00 -+// 48102 믦 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x1f,0x00,0x00,0x00,0x01,0x04,0x05,0x00,0x00,0x08,0x04,0xe4,0x04,0x44,0xc4,0x0c,0xc4,0x00,0x00,0x24,0xa4,0x20,0xac,0x00 -+// 48103 믧 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x1f,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x1c,0x04,0x00,0x48,0x40,0x40,0x40,0x68,0x00 -+// 48104 믨 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x1f,0x00,0x05,0x00,0x09,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x0c,0x84,0x00,0x10,0x90,0x90,0x24,0x44,0x00 -+// 48105 믩 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x00,0x1f,0x00,0x05,0x00,0x0d,0x04,0x05,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xc4,0x0c,0x04,0x00,0x6c,0x00,0x2c,0x00,0x3c,0x00 -+// 48106 믪 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x00,0x1f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0xc4,0x1c,0x04,0x04,0x00,0x08,0x20,0x08,0x4e,0x00 -+// 48107 믫 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0x04,0x1c,0x04,0x00,0x00,0x7a,0x1c,0x24,0x24,0x00 -+// 48108 믬 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x1c,0x84,0x00,0x08,0x0c,0x08,0x08,0x00,0x00 -+// 48109 믭 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x0c,0x84,0x00,0x0c,0x04,0x0c,0x04,0x0c,0x00 -+// 48110 믮 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0x04,0x2c,0x04,0x00,0x88,0x88,0x98,0x26,0x42,0x00 -+// 48111 믯 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x04,0x0c,0xc4,0x00,0x60,0x40,0x90,0x08,0x04,0x00 -+// 48112 믰 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x07,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x1c,0x04,0x00,0x08,0x08,0x90,0x64,0x42,0x00 -+// 48113 믱 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x04,0xe4,0x04,0x20,0x88,0x80,0x80,0xd8,0x00 -+// 48114 믲 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x04,0x3c,0x00,0x00,0x0c,0x60,0x60,0x88,0x04,0x00 -+// 48115 믳 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x08,0x0c,0xe4,0x44,0x44,0xc4,0x0c,0xc4,0x00,0xe0,0x0c,0x60,0xf0,0x0c,0x00 -+// 48116 믴 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x1f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x1c,0x84,0x00,0xcc,0x04,0xfc,0x04,0x00,0x00 -+// 48117 믵 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x04,0x00,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x24,0x44,0xc4,0x0c,0xc4,0x00,0x00,0x00,0x0c,0x00,0x1c,0x00 -+// 48118 믶 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x0c,0xc4,0x00,0x0c,0x10,0x90,0x90,0x9e,0x00 -+// 48119 믷 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x05,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xc4,0x0c,0x84,0x40,0x00,0x60,0x58,0x88,0x50,0x00 -+// 48120 미 ; -+,0x00,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x08,0x0b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xc4,0x44,0x44,0x44,0x04,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 48121 믹 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x84,0x84,0x00,0x00,0xcc,0x04,0x04,0x00,0x00,0x00 -+// 48122 믺 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x84,0x84,0x04,0x00,0xac,0x84,0x84,0x84,0x80,0x00 -+// 48123 믻 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x09,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x84,0x84,0x84,0x00,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 48124 민 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0d,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x44,0x44,0xc4,0x04,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 48125 믽 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0xc4,0x84,0x84,0x84,0x04,0x00,0xfe,0x10,0x18,0x24,0x42,0x00 -+// 48126 믾 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x08,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x84,0x04,0x38,0x02,0x10,0x2c,0xc4,0x2c,0x00 -+// 48127 믿 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0xc4,0x04,0x00,0x3c,0x00,0x00,0x00,0xfc,0x00 -+// 48128 밀 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0c,0x00,0x03,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0x44,0xc4,0x00,0xcc,0x00,0x08,0x00,0x00,0x00,0x00 -+// 48129 밁 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x0d,0x00,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x44,0x44,0x04,0x84,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 48130 밂 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x0d,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x04,0x84,0x84,0x04,0x04,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 48131 밃 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0x04,0x84,0x04,0x00,0x64,0x24,0x24,0x24,0x24,0x00 -+// 48132 밄 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x84,0x04,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 48133 밅 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x09,0x00,0x00,0x05,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x84,0x04,0x04,0xe0,0x24,0x20,0x20,0x3c,0x00 -+// 48134 밆 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00,0x07,0x00,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0x84,0xc4,0x84,0x84,0x84,0x04,0x00,0x60,0x08,0x28,0x08,0x0e,0x00 -+// 48135 밇 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x84,0x04,0x18,0x02,0x18,0x24,0x24,0x3c,0x00 -+// 48136 밈 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x84,0x84,0x00,0x00,0x9c,0x08,0x08,0x08,0x00,0x00 -+// 48137 밉 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x04,0x84,0x84,0x04,0x08,0x04,0x8c,0x04,0x04,0x84,0x00 -+// 48138 밊 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x0d,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0x04,0xc4,0x04,0x88,0x48,0xc8,0x54,0x52,0x61,0x00 -+// 48139 밋 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x04,0xc4,0x44,0x44,0x04,0xc4,0x04,0x60,0x20,0x60,0xc8,0x04,0x02,0x00 -+// 48140 밌 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x09,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x04,0xc4,0x44,0x84,0x84,0x84,0x04,0x18,0x88,0x18,0x94,0x62,0x42,0x00 -+// 48141 밍 ; -+,0x00,0x00,0x00,0x0d,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x04,0x84,0x84,0x04,0x20,0x70,0x88,0x04,0x88,0x70,0x00 -+// 48142 밎 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x04,0xc4,0x44,0x84,0x84,0x84,0x04,0x00,0xe0,0x60,0xd0,0x0c,0x04,0x00 -+// 48143 및 ; -+,0x00,0x00,0x00,0x0f,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0x44,0xc4,0x00,0x00,0x0e,0x60,0x50,0x88,0x04,0x00 -+// 48144 밐 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x84,0x84,0x04,0x00,0x8c,0x0c,0xc4,0x04,0x00,0x00 -+// 48145 밑 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0xc4,0x84,0x84,0x84,0x04,0x00,0x78,0x00,0x18,0x00,0xfc,0x00 -+// 48146 밒 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x0c,0x80,0x84,0x84,0x84,0x84,0x00,0x00,0xbc,0x10,0x10,0x90,0x3e,0x00 -+// 48147 밓 ; -+,0x00,0x00,0x00,0x1f,0x08,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x84,0x04,0x60,0x04,0x60,0x90,0x88,0x90,0x00 -+// 48148 바 ; -+,0x00,0x00,0x00,0x00,0x10,0x18,0x18,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x88,0x88,0x8f,0x88,0x88,0x08,0x08,0x08,0x08,0x00 -+// 48149 박 ; -+,0x00,0x00,0x00,0x10,0x18,0x18,0x00,0x00,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x8e,0x88,0x88,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 48150 밖 ; -+,0x00,0x00,0x01,0x10,0x18,0x10,0x10,0x18,0x00,0x00,0x1b,0x01,0x01,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x88,0x88,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 48151 밗 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x18,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8f,0x88,0x88,0x00,0x10,0x10,0x38,0x24,0x42,0x00 -+// 48152 반 ; -+,0x00,0x00,0x00,0x01,0x10,0x08,0x08,0x00,0x00,0x08,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x88,0x8f,0x88,0x88,0x08,0x00,0x00,0x00,0xbc,0x00 -+// 48153 밙 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x08,0x00,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8f,0x88,0x88,0x00,0xf0,0x10,0x30,0x48,0x84,0x00 -+// 48154 밚 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8f,0x88,0x00,0x30,0x04,0x30,0x48,0x88,0x78,0x00 -+// 48155 받 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x18,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8e,0x88,0x88,0x00,0x18,0x00,0x00,0x00,0x9c,0x00 -+// 48156 발 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x18,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8f,0x88,0x00,0x00,0x10,0x10,0x00,0x00,0xfc,0x00 -+// 48157 밝 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x88,0x88,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 48158 밞 ; -+,0x00,0x00,0x00,0x10,0x18,0x10,0x10,0x18,0x00,0x00,0x09,0x01,0x0a,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8e,0x88,0x00,0x00,0x48,0x48,0x48,0x48,0x58,0x00 -+// 48159 밟 ; -+,0x00,0x00,0x00,0x10,0x18,0x08,0x00,0x08,0x00,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8f,0x88,0x00,0x10,0x48,0x48,0x48,0x48,0x48,0x00 -+// 48160 밠 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x08,0x00,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8e,0x88,0x00,0x00,0x10,0x10,0x30,0x2c,0x04,0x00 -+// 48161 밡 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x18,0x00,0x00,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8e,0x88,0x00,0x00,0x40,0x40,0x50,0x40,0x7c,0x00 -+// 48162 밢 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x18,0x00,0x00,0x02,0x00,0x08,0x08,0x0c,0x00,0x00,0x20,0x18,0x88,0x88,0x88,0x8e,0x80,0x00,0x00,0x50,0x10,0x50,0x10,0xdc,0x00 -+// 48163 밣 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x00,0x08,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8e,0x88,0x80,0x30,0x04,0x10,0x48,0x44,0x68,0x00 -+// 48164 밤 ; -+,0x00,0x00,0x00,0x00,0x10,0x18,0x10,0x10,0x18,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8e,0x88,0x80,0x00,0xb8,0x10,0x10,0x10,0x00,0x00 -+// 48165 밥 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x08,0x00,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8e,0x88,0x00,0x10,0x08,0x18,0x08,0x08,0x00,0x00 -+// 48166 밦 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x00,0x00,0x08,0x0d,0x08,0x09,0x08,0x00,0x00,0x30,0x18,0x90,0x88,0x88,0x9e,0x90,0x00,0x10,0x10,0x10,0x28,0x04,0x00,0x00 -+// 48167 밧 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x10,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x8e,0x88,0x00,0xc0,0x40,0xc0,0x90,0x08,0x04,0x00 -+// 48168 밨 ; -+,0x00,0x00,0x00,0x10,0x18,0x08,0x00,0x08,0x00,0x00,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8e,0x88,0x00,0x00,0x10,0x10,0xa8,0xe4,0x40,0x00 -+// 48169 방 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x00,0x08,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8e,0x88,0x88,0x40,0xe0,0x10,0x08,0x10,0xf0,0x00 -+// 48170 밪 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x18,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8f,0x88,0x88,0x00,0xd8,0x40,0xa0,0x08,0x04,0x00 -+// 48171 밫 ; -+,0x00,0x00,0x00,0x10,0x18,0x18,0x10,0x08,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8e,0x88,0x00,0xc0,0x08,0xc0,0xc0,0x10,0x04,0x00 -+// 48172 밬 ; -+,0x00,0x00,0x00,0x00,0x10,0x18,0x10,0x10,0x18,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8e,0x88,0x80,0x00,0x98,0x18,0xd8,0x08,0x00,0x00 -+// 48173 밭 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8b,0x88,0x88,0x00,0x78,0x00,0x18,0x00,0xfc,0x00 -+// 48174 밮 ; -+,0x00,0x00,0x00,0x00,0x10,0x18,0x10,0x10,0x18,0x00,0x07,0x00,0x01,0x01,0x0e,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x8e,0x88,0x88,0x00,0xf8,0x00,0x10,0x20,0x3c,0x00 -+// 48175 밯 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x18,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x30,0x18,0x88,0x88,0x88,0x8e,0x80,0x00,0xc0,0x08,0x40,0x20,0x10,0x20,0x00 -+// 48176 배 ; -+,0x00,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x84,0x84,0x84,0x84,0x94,0x84,0x84,0x04,0x04,0x04,0x04,0x00 -+// 48177 백 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x94,0x84,0x84,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 48178 밲 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0x00,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 48179 밳 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0x34,0x24,0x24,0x00,0x08,0x88,0x98,0xa4,0x42,0x00 -+// 48180 밴 ; -+,0x00,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x24,0x04,0x00,0x00,0x00,0x00 -+// 48181 밵 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0xa4,0x00,0xd8,0x10,0x18,0x24,0x82,0x00 -+// 48182 밶 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0x24,0x30,0x06,0x10,0x24,0xc4,0x38,0x00 -+// 48183 밷 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0x84,0x94,0xa4,0x80,0x00,0x0c,0x00,0x00,0x00,0xfc,0x00 -+// 48184 밸 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x00,0x09,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x34,0x24,0x24,0x00,0xfc,0x04,0x8c,0x00,0x8e,0x00 -+// 48185 밹 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x24,0x84,0x84,0x84,0x94,0x84,0x00,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 48186 밺 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x90,0x90,0x90,0x94,0x90,0x80,0x00,0xa4,0xa4,0x24,0x04,0x90,0x00 -+// 48187 밻 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x34,0x90,0x90,0x90,0x94,0x90,0x80,0x04,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 48188 밼 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0x20,0x10,0x88,0x88,0x18,0x24,0x02,0x00 -+// 48189 밽 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x04,0x24,0xa4,0xa4,0x84,0x94,0xa4,0xa4,0x00,0x60,0x20,0x20,0x20,0x3e,0x00 -+// 48190 밾 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x07,0x01,0x05,0x04,0x07,0x00,0x00,0x04,0x24,0xa4,0xa4,0x84,0xb4,0xa4,0x00,0x00,0x00,0x08,0x20,0x28,0x0e,0x00 -+// 48191 밿 ; -+,0x00,0x00,0x00,0x01,0x18,0x09,0x08,0x08,0x08,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x20,0x38,0x02,0x10,0x24,0x44,0x2c,0x00 -+// 48192 뱀 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x84,0x94,0xa4,0xa4,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 48193 뱁 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xb4,0xa4,0x24,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48194 뱂 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x34,0x24,0x20,0x98,0x88,0x88,0x94,0xa2,0x02,0x00 -+// 48195 뱃 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x34,0x24,0x24,0x44,0x20,0x60,0x90,0x0c,0x04,0x00 -+// 48196 뱄 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0x34,0x24,0x00,0x18,0x08,0x08,0x94,0x62,0x42,0x00 -+// 48197 뱅 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0xa4,0x24,0x70,0x88,0x84,0x88,0x78,0x00 -+// 48198 뱆 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0xa4,0x00,0x6c,0x40,0x90,0x0c,0x04,0x00 -+// 48199 뱇 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x84,0x84,0x84,0x94,0x84,0x00,0xe0,0x04,0x60,0x60,0x88,0x06,0x00 -+// 48200 뱈 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x84,0x84,0x84,0x94,0x84,0x84,0x00,0x84,0x04,0xf4,0x04,0x04,0x00 -+// 48201 뱉 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0xa4,0x00,0x38,0x00,0x38,0x00,0xfe,0x00 -+// 48202 뱊 ; -+,0x00,0x00,0x00,0x01,0x19,0x09,0x09,0x08,0x09,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x2c,0x24,0x20,0x00,0x1c,0x10,0x10,0x10,0x3e,0x00 -+// 48203 뱋 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xb4,0xa4,0x20,0x60,0x06,0x60,0x90,0x88,0xf0,0x00 -+// 48204 뱌 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x8e,0x88,0x88,0x88,0x8e,0x08,0x08,0x08,0x08,0x00 -+// 48205 뱍 ; -+,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0x10,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x90,0x90,0x8e,0x90,0x90,0x9c,0x00,0xb0,0x10,0x10,0x10,0x10,0x00 -+// 48206 뱎 ; -+,0x00,0x00,0x00,0x10,0x10,0x19,0x10,0x10,0x10,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x80,0x88,0x8e,0x88,0x88,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 48207 뱏 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x80,0x88,0x8e,0x88,0x88,0x88,0x00,0x10,0x10,0x30,0x2c,0x06,0x00 -+// 48208 뱐 ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x80,0x80,0x80,0x8e,0x80,0x80,0x0e,0x00,0x00,0x00,0x00,0xf0,0x00 -+// 48209 뱑 ; -+,0x00,0x00,0x00,0x10,0x10,0x11,0x10,0x10,0x10,0x00,0x18,0x08,0x08,0x0b,0x0c,0x00,0x00,0x10,0x10,0x90,0x90,0x8e,0x90,0x98,0x98,0x00,0xfc,0x20,0x30,0x48,0x84,0x00 -+// 48210 뱒 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x18,0x00,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x10,0x10,0x90,0x90,0x8a,0x90,0x98,0x10,0x30,0x0c,0x30,0x48,0x88,0x58,0x00 -+// 48211 뱓 ; -+,0x00,0x00,0x00,0x01,0x10,0x19,0x10,0x10,0x10,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x90,0x90,0x8e,0x90,0x90,0x9e,0x00,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 48212 뱔 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x00,0x06,0x02,0x02,0x00,0x00,0x30,0x10,0x90,0x90,0x98,0x90,0x90,0x10,0x00,0x10,0x10,0x10,0x00,0x3c,0x00 -+// 48213 뱕 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x10,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x8e,0x90,0x98,0x18,0x00,0x08,0x08,0x08,0x00,0x00,0x00 -+// 48214 뱖 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x10,0x00,0x0b,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x9e,0x00,0xc8,0x48,0x48,0x40,0x40,0x00 -+// 48215 뱗 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x18,0x00,0x00,0x02,0x02,0x18,0x08,0x0c,0x00,0x00,0x10,0x18,0x88,0x88,0x8e,0x88,0x88,0x08,0x10,0x88,0x58,0x08,0x48,0x00,0x00 -+// 48216 뱘 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x10,0x00,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x10,0x18,0x88,0x88,0x8e,0x88,0x88,0x08,0x00,0x10,0x10,0x30,0x28,0x84,0x00 -+// 48217 뱙 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x0b,0x00,0x0a,0x08,0x0e,0x00,0x00,0x30,0x18,0x90,0x90,0x8c,0x90,0x98,0x18,0x08,0x40,0x40,0x40,0x40,0x7c,0x00 -+// 48218 뱚 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x10,0x00,0x0a,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x18,0x90,0x90,0x8e,0x80,0x90,0x9e,0x00,0x58,0x10,0x50,0x10,0x9c,0x00 -+// 48219 뱛 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x00,0x08,0x08,0x0e,0x00,0x00,0x30,0x10,0x90,0x90,0x9c,0x90,0x98,0x10,0x30,0x04,0x30,0x48,0x44,0x48,0x00 -+// 48220 뱜 ; -+,0x00,0x00,0x00,0x10,0x10,0x19,0x10,0x10,0x10,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x30,0x18,0x90,0x90,0x8e,0x90,0x9a,0x90,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 48221 뱝 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x30,0x10,0x90,0x90,0x9e,0x90,0x90,0x18,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 48222 뱞 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x01,0x09,0x0d,0x09,0x09,0x08,0x00,0x00,0x30,0x18,0x90,0x90,0x8c,0x90,0x9a,0x10,0x10,0x10,0x10,0x38,0x24,0x44,0x00 -+// 48223 뱟 ; -+,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0x10,0x10,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x88,0x88,0x88,0x80,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 48224 뱠 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x02,0x05,0x00,0x00,0x00,0x00,0x30,0x10,0x90,0x90,0x9e,0x90,0x9a,0x10,0x10,0x10,0x10,0x28,0xc4,0x04,0x00 -+// 48225 뱡 ; -+,0x00,0x00,0x00,0x10,0x10,0x18,0x10,0x10,0x18,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x8a,0x88,0x88,0x88,0x8e,0x00,0x60,0x10,0x08,0x00,0xb0,0x00 -+// 48226 뱢 ; -+,0x00,0x00,0x00,0x01,0x10,0x11,0x10,0x10,0x10,0x00,0x07,0x00,0x01,0x03,0x04,0x00,0x00,0x30,0x18,0x90,0x90,0x8e,0x90,0x98,0x90,0x00,0xc8,0xc0,0xa0,0x18,0x00,0x00 -+// 48227 뱣 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x18,0x00,0x01,0x00,0x04,0x00,0x01,0x04,0x00,0x00,0x30,0x10,0x90,0x90,0x9e,0x90,0x9a,0x10,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 48228 뱤 ; -+,0x00,0x00,0x00,0x00,0x10,0x19,0x10,0x10,0x10,0x00,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x8e,0x88,0x8a,0x88,0x00,0x98,0x18,0xd8,0x00,0x00,0x00 -+// 48229 뱥 ; -+,0x00,0x00,0x00,0x01,0x10,0x11,0x10,0x10,0x10,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x90,0x90,0x9e,0x90,0x90,0x1e,0x00,0x70,0x00,0x70,0x00,0xf8,0x00 -+// 48230 뱦 ; -+,0x00,0x00,0x00,0x01,0x10,0x11,0x10,0x10,0x10,0x00,0x06,0x00,0x01,0x01,0x0e,0x00,0x00,0x00,0x18,0x90,0x90,0x8e,0x80,0x90,0x9e,0x00,0x38,0x00,0x10,0x20,0x3c,0x00 -+// 48231 뱧 ; -+,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x18,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x88,0x88,0x8e,0x88,0x8a,0x00,0xc0,0x0c,0x40,0x10,0x10,0xe0,0x00 -+// 48232 뱨 ; -+,0x00,0x00,0x00,0x00,0x01,0x08,0x09,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x34,0x24,0x24,0x24,0x34,0x24,0x24,0x24,0x04,0x00 -+// 48233 뱩 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 48234 뱪 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0xb4,0xb4,0xa4,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 48235 뱫 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 48236 뱬 ; -+,0x00,0x00,0x00,0x00,0x11,0x09,0x09,0x01,0x00,0x09,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0xde,0x00 -+// 48237 뱭 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x08,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0x00,0xfc,0x10,0x18,0x24,0x82,0x00 -+// 48238 뱮 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x08,0x08,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x30,0x06,0x10,0x48,0xc4,0x28,0x00 -+// 48239 뱯 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0xa4,0xa4,0xa4,0x00,0x3c,0x00,0x00,0x00,0xfe,0x00 -+// 48240 뱰 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x00,0x08,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x44,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 48241 뱱 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xb4,0xa4,0xa4,0xa4,0x24,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 48242 뱲 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0xa4,0xb4,0x84,0x94,0xb4,0xa4,0x00,0xa4,0xa4,0x24,0x24,0x30,0x00 -+// 48243 뱳 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0xa4,0xb4,0xa4,0x00,0x24,0x24,0x24,0x24,0x24,0x00 -+// 48244 뱴 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x00,0x09,0x00,0x0f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x90,0x88,0x98,0x18,0x24,0x42,0x00 -+// 48245 뱵 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0xa4,0xb4,0x24,0x04,0x60,0x24,0x20,0x20,0x1c,0x00 -+// 48246 뱶 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x08,0x08,0x00,0x07,0x01,0x0f,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x40,0x08,0x28,0x28,0x4e,0x00 -+// 48247 뱷 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0xb4,0xa4,0x24,0x24,0x24,0x18,0x72,0x18,0x24,0x04,0x3c,0x00 -+// 48248 뱸 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x0c,0x04,0x04,0x00,0x80,0x00 -+// 48249 뱹 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0xb4,0xa4,0x24,0x00,0x04,0x84,0x04,0x84,0x84,0x00 -+// 48250 뱺 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x00,0x09,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x18,0x88,0x88,0x94,0xa6,0x42,0x00 -+// 48251 뱻 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x44,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 48252 뱼 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x64,0x24,0xb4,0xa4,0x24,0x24,0x24,0x08,0x08,0x08,0x94,0x62,0x42,0x00 -+// 48253 뱽 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0xb4,0xa4,0xa4,0xb4,0xa4,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 48254 뱾 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0x00,0xe0,0x40,0x90,0x0c,0x04,0x00 -+// 48255 뱿 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0x24,0xb4,0xa4,0xa4,0xb4,0x24,0xe0,0x00,0x60,0x60,0x88,0x04,0x00 -+// 48256 벀 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xb4,0xa4,0xa4,0xb4,0xa4,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 48257 벁 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0xb4,0xa4,0xa4,0xb4,0xa4,0x00,0x08,0x00,0x1c,0x00,0xfc,0x00 -+// 48258 벂 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x0c,0x10,0x90,0x90,0x1e,0x00 -+// 48259 벃 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0xb4,0xa4,0xa4,0xb4,0x24,0x60,0x06,0x20,0x98,0x88,0xd0,0x00 -+// 48260 버 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x44,0x44,0xc4,0x7c,0x44,0x44,0x44,0x04,0x04,0x04,0x04,0x00 -+// 48261 벅 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0xcc,0x44,0x44,0x44,0x00,0xc8,0x04,0x04,0x00,0x00,0x00 -+// 48262 벆 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x04,0xfc,0x04,0x04,0x00,0x00,0xa8,0x88,0x88,0x88,0x08,0x00 -+// 48263 벇 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x80,0x00,0xcc,0x4c,0x04,0x80,0x08,0x88,0x98,0x90,0xa4,0x42,0x00 -+// 48264 번 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x80,0x00,0x80,0x4c,0x4c,0x04,0x04,0x00,0x00,0x00,0x00,0x1e,0x00 -+// 48265 벉 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0x80,0x00,0xcc,0x04,0x04,0x80,0x00,0xf8,0x10,0x18,0xa4,0x42,0x00 -+// 48266 벊 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x84,0x84,0x84,0xfc,0x04,0x84,0x00,0x38,0x06,0x10,0x04,0xc4,0x28,0x00 -+// 48267 벋 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0xfc,0x04,0x04,0x84,0x00,0x08,0x00,0x00,0x00,0x9c,0x00 -+// 48268 벌 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0xcc,0x44,0x44,0x00,0x00,0x0c,0x08,0x00,0x00,0xfe,0x00 -+// 48269 벍 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x0d,0x04,0x05,0x00,0x00,0x0c,0x84,0x44,0x44,0x7c,0x44,0xc4,0x04,0x00,0xac,0x84,0x04,0x04,0x80,0x00 -+// 48270 벎 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0x84,0x7c,0x04,0x84,0x04,0x00,0x24,0x24,0x20,0x20,0x20,0x00 -+// 48271 벏 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x0d,0x04,0x07,0x00,0x00,0x0c,0x84,0x44,0x44,0x7c,0x44,0x44,0x04,0x08,0x44,0x24,0x04,0x04,0x24,0x00 -+// 48272 벐 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x44,0x7c,0x44,0x44,0x04,0x00,0x88,0x80,0x18,0x24,0x42,0x00 -+// 48273 벑 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x05,0x00,0x0d,0x04,0x05,0x00,0x00,0x08,0x84,0x44,0xc4,0x7c,0x44,0xc4,0x04,0x04,0x60,0x20,0x28,0x20,0x2e,0x00 -+// 48274 벒 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0xfc,0x44,0x44,0x04,0x04,0x08,0x08,0x28,0x08,0x4e,0x00 -+// 48275 벓 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x00,0x08,0x00,0x00,0x09,0x01,0x0f,0x04,0x06,0x00,0x00,0x08,0x80,0x80,0x80,0xfc,0x84,0x84,0x00,0x38,0x02,0x10,0x24,0x44,0x2c,0x00 -+// 48276 범 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x4c,0x44,0x44,0x04,0x00,0x0c,0x04,0x00,0x08,0x00,0x00 -+// 48277 법 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0xc4,0x7c,0x44,0x40,0x00,0x04,0x8c,0x04,0x04,0x8c,0x00 -+// 48278 벖 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x44,0x44,0x7c,0x04,0xc4,0x04,0x08,0x88,0x88,0x98,0x96,0xa2,0x00 -+// 48279 벗 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xc4,0x44,0xc4,0x6c,0x44,0x44,0x04,0x60,0x60,0xd0,0x0c,0x04,0x00 -+// 48280 벘 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x84,0x44,0x44,0xfc,0x44,0xc4,0x04,0x10,0x08,0x08,0x98,0x64,0x02,0x00 -+// 48281 벙 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x7c,0x44,0x44,0x44,0x24,0x70,0x88,0x00,0x88,0xf8,0x00 -+// 48282 벚 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x84,0x44,0x44,0xcc,0x44,0x44,0x44,0x00,0xfc,0x40,0x60,0x88,0x04,0x00 -+// 48283 벛 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x84,0x44,0xc4,0x4c,0x44,0xc4,0x04,0xe0,0x00,0x40,0x60,0x98,0x04,0x00 -+// 48284 벜 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x44,0xfc,0x44,0x44,0x44,0x00,0xcc,0x0c,0xc4,0x04,0x00,0x00 -+// 48285 벝 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x44,0x44,0x7c,0x44,0x44,0x04,0x00,0x0c,0x00,0x08,0x00,0xfc,0x00 -+// 48286 벞 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x00,0x01,0x00,0x06,0x00,0x00,0x08,0x8c,0x00,0x00,0xfc,0x04,0x04,0x00,0x00,0xfc,0x10,0x10,0x90,0xbe,0x00 -+// 48287 벟 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x84,0x7c,0x04,0x84,0x04,0x60,0x04,0x60,0x90,0x08,0x90,0x00 -+// 48288 베 ; -+,0x00,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x04,0x84,0x84,0xe4,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 48289 벡 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0xa4,0xa4,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 48290 벢 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0xa4,0xa4,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 48291 벣 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x08,0x10,0x98,0xa4,0x42,0x00 -+// 48292 벤 ; -+,0x00,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0xb4,0x94,0x14,0x14,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 48293 벥 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x04,0x84,0x84,0xe4,0x84,0x84,0x00,0x56,0x10,0x18,0x24,0x42,0x00 -+// 48294 벦 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0x30,0x06,0x10,0x04,0xc4,0x28,0x00 -+// 48295 벧 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x24,0x00,0x1c,0x00,0x00,0x00,0xdc,0x00 -+// 48296 벨 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x00,0x09,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0xa4,0x24,0x24,0x00,0x84,0x00,0x08,0x00,0x06,0x00 -+// 48297 벩 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x84,0xa4,0xa4,0x84,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 48298 벪 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0xb4,0xb4,0x84,0x84,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 48299 벫 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0xb4,0xb4,0x84,0x84,0x00,0x24,0x24,0x24,0x24,0x24,0x00 -+// 48300 벬 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0xf4,0x94,0x84,0x00,0x88,0x88,0x18,0x04,0x02,0x00 -+// 48301 벭 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0xb4,0x94,0x84,0x00,0xe0,0x20,0x28,0x20,0x3e,0x00 -+// 48302 벮 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x28,0x08,0x28,0x28,0x0e,0x00 -+// 48303 벯 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0xa4,0xa4,0xa4,0xa4,0x24,0x38,0x02,0x10,0x3c,0x04,0x24,0x00 -+// 48304 벰 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x84,0x84,0xe4,0x84,0x84,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 48305 벱 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0xb4,0x94,0x94,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48306 벲 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0xa4,0x24,0x24,0x18,0x88,0x88,0x94,0xa2,0x02,0x00 -+// 48307 벳 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x04,0x84,0xa4,0xa4,0x84,0x84,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 48308 벴 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x00,0x08,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x04,0x08,0x08,0x08,0x94,0x62,0x42,0x00 -+// 48309 벵 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x24,0x24,0x30,0x88,0x84,0x80,0x78,0x00 -+// 48310 벶 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x94,0x94,0x00,0xfc,0x60,0x50,0x8c,0x00,0x00 -+// 48311 벷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x94,0x84,0x60,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 48312 벸 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x84,0xa4,0xa4,0x84,0x84,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 48313 벹 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0xb4,0xb4,0x84,0x04,0x00,0x20,0x00,0x00,0x00,0xfc,0x00 -+// 48314 벺 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xa4,0x24,0x24,0x00,0x0c,0x10,0x10,0x10,0x3e,0x00 -+// 48315 벻 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x84,0xa4,0xa4,0x84,0x04,0x60,0x0e,0x20,0x98,0x88,0xf0,0x00 -+// 48316 벼 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x7c,0x84,0x04,0x7c,0x04,0x84,0x04,0x04,0x04,0x04,0x00 -+// 48317 벽 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x44,0x7c,0x44,0x44,0x7c,0x44,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 48318 벾 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x7c,0xc4,0x44,0x7c,0x04,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 48319 벿 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x80,0xfc,0x84,0x04,0x7c,0x80,0x10,0x08,0x18,0x98,0x24,0x42,0x00 -+// 48320 변 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x80,0x4c,0xcc,0x44,0x4c,0x4c,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 48321 볁 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x84,0x44,0xfc,0x84,0x44,0x6c,0x00,0x00,0xd8,0x10,0x18,0xa4,0x42,0x00 -+// 48322 볂 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x08,0x84,0x44,0x74,0x44,0x44,0x44,0x04,0x38,0x02,0x18,0x24,0xc4,0x3c,0x00 -+// 48323 볃 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x44,0x7c,0xc4,0x44,0x7c,0x44,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 48324 별 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x44,0xc4,0x44,0x7c,0x44,0x00,0xfc,0x04,0x0c,0x00,0x00,0x06,0x00 -+// 48325 볅 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x44,0x7c,0x44,0x44,0x44,0x04,0x00,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 48326 볆 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x7c,0x44,0x44,0x44,0x04,0x00,0xa4,0xa4,0x24,0x24,0xac,0x00 -+// 48327 볇 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x7c,0x44,0x44,0x44,0x04,0x00,0x44,0x24,0x04,0x04,0x24,0x00 -+// 48328 볈 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x64,0x44,0x44,0x44,0x04,0x00,0x88,0x80,0x18,0x24,0x42,0x00 -+// 48329 볉 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x0c,0x04,0x05,0x00,0x00,0x08,0x84,0x44,0x7c,0x44,0x44,0xc4,0x04,0x04,0x60,0x20,0x20,0x20,0x3e,0x00 -+// 48330 볊 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x84,0x44,0x64,0x44,0x44,0xc4,0x04,0x00,0x00,0x04,0x20,0x08,0x42,0x00 -+// 48331 볋 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x00,0x00,0x09,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x84,0x84,0xcc,0x84,0x4c,0x84,0x00,0x38,0x02,0x10,0x24,0x04,0x24,0x00 -+// 48332 볌 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x7c,0x44,0x44,0x7c,0x44,0x00,0x8c,0x04,0x00,0x08,0x80,0x00 -+// 48333 볍 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x44,0x7c,0xc4,0x44,0x44,0x04,0x00,0x04,0x04,0x04,0x04,0x84,0x00 -+// 48334 볎 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x84,0xc4,0xec,0x84,0x4c,0xc4,0x04,0x18,0x88,0x88,0x98,0x86,0x82,0x00 -+// 48335 볏 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x84,0x44,0x7c,0x84,0x04,0x7c,0x84,0x44,0x60,0x60,0x90,0x08,0x04,0x00 -+// 48336 볐 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x04,0xc4,0x7c,0xc4,0x44,0x4c,0x04,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 48337 병 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0xc8,0x78,0x80,0x08,0x78,0x88,0x20,0x70,0x88,0x80,0x88,0x70,0x00 -+// 48338 볒 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x00,0x08,0x84,0x44,0x7c,0xc4,0x44,0x6c,0x00,0x00,0xe0,0x60,0x90,0x0c,0x00,0x00 -+// 48339 볓 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x0c,0x80,0xfc,0x84,0xcc,0xc8,0x00,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 48340 볔 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x7c,0xc4,0x44,0x7c,0x44,0x00,0xcc,0x04,0xe4,0x04,0x00,0x00 -+// 48341 볕 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x44,0x7c,0xc4,0x44,0x64,0x04,0x00,0x3c,0x00,0x0c,0x00,0xfc,0x00 -+// 48342 볖 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x44,0x7c,0xc4,0x44,0x7c,0x44,0x00,0x0c,0x10,0x90,0x90,0x1e,0x00 -+// 48343 볗 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x7c,0x84,0x4c,0xc4,0x04,0x60,0x0e,0x60,0x90,0x08,0xd0,0x00 -+// 48344 볘 ; -+,0x00,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0x94,0xb4,0x94,0x14,0x14,0x14,0x14,0x04,0x00 -+// 48345 볙 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0xb4,0x94,0x94,0x94,0x94,0x00,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 48346 볚 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xb4,0xb4,0x94,0xf4,0x94,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 48347 볛 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0xf4,0x94,0x94,0xb4,0x04,0x10,0x88,0x88,0x94,0xa2,0xc2,0x00 -+// 48348 볜 ; -+,0x00,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0xf4,0x14,0x14,0xf4,0x14,0x04,0x04,0x00,0x00,0xfc,0x00 -+// 48349 볝 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x94,0x00,0x76,0x10,0x18,0x24,0x42,0x00 -+// 48350 볞 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x38,0x06,0x10,0x04,0xc4,0x28,0x00 -+// 48351 볟 ; -+,0x00,0x00,0x00,0x01,0x18,0x09,0x08,0x08,0x09,0x00,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0xa4,0xb4,0x14,0xf4,0x04,0x00,0x0c,0x00,0x00,0x00,0xfc,0x00 -+// 48352 볠 ; -+,0x00,0x00,0x00,0x01,0x11,0x09,0x01,0x01,0x09,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0xa4,0x24,0xe4,0x24,0x00,0x8c,0x00,0x08,0x00,0xfe,0x00 -+// 48353 볡 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0xf4,0x94,0x94,0x94,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 48354 볢 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 48355 볣 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0x94,0xf4,0x14,0x00,0x24,0x24,0x24,0x24,0x24,0x00 -+// 48356 볤 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xf4,0x94,0x94,0x94,0x14,0x00,0x88,0x88,0x1c,0x26,0x02,0x00 -+// 48357 볥 ; -+,0x00,0x00,0x00,0x01,0x18,0x09,0x08,0x08,0x08,0x00,0x05,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0xb4,0x94,0xf4,0x14,0x04,0x60,0x20,0x20,0x20,0x3e,0x00 -+// 48358 볦 ; -+,0x00,0x00,0x00,0x01,0x18,0x09,0x08,0x08,0x08,0x00,0x05,0x01,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0xb4,0x94,0xf4,0x04,0x00,0x24,0x08,0x28,0x28,0x4e,0x00 -+// 48359 볧 ; -+,0x00,0x00,0x00,0x01,0x10,0x09,0x08,0x08,0x09,0x00,0x09,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x34,0x94,0xb4,0x14,0xf4,0x04,0x38,0x02,0x10,0x24,0x04,0x2c,0x00 -+// 48360 볨 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x14,0xb4,0xb4,0x94,0xf4,0x84,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 48361 볩 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48362 볪 ; -+,0x00,0x00,0x00,0x01,0x18,0x09,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x34,0xa4,0xa4,0x14,0xe4,0x04,0x10,0x88,0x98,0x9c,0xa6,0x42,0x00 -+// 48363 볫 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0xb4,0x94,0x94,0xf4,0x04,0x44,0x20,0x60,0x90,0x0c,0x00,0x00 -+// 48364 볬 ; -+,0x00,0x00,0x00,0x01,0x18,0x09,0x08,0x08,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x14,0xb4,0xb4,0x14,0xf4,0x04,0x18,0x08,0x08,0x94,0x62,0x40,0x00 -+// 48365 볭 ; -+,0x00,0x00,0x00,0x01,0x08,0x0d,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x94,0x04,0x30,0x88,0x84,0x84,0x58,0x00 -+// 48366 볮 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x34,0x14,0x94,0x94,0x94,0xf4,0x94,0x04,0xe0,0x60,0x90,0x0c,0x04,0x00 -+// 48367 볯 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x94,0xf4,0x14,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 48368 볰 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0xf4,0x94,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 48369 볱 ; -+,0x00,0x00,0x00,0x01,0x08,0x09,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0xf4,0x14,0x00,0x38,0x00,0x08,0x00,0xfc,0x00 -+// 48370 볲 ; -+,0x00,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x09,0x00,0x06,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0xe4,0x24,0x00,0x0c,0x10,0x10,0x10,0x3e,0x00 -+// 48371 볳 ; -+,0x00,0x00,0x00,0x01,0x18,0x09,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xa4,0xb4,0x34,0xa4,0x04,0xe0,0x04,0x60,0x90,0x00,0xf0,0x00 -+// 48372 보 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xd0,0x80,0x80,0xc6,0x00,0x00,0x00 -+// 48373 복 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0xc0,0x00,0xfe,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 48374 볶 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x1e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0xd0,0x00,0xfe,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 48375 볷 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x1f,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xd0,0x00,0xfe,0x00,0x10,0x10,0x30,0x44,0x80,0x00 -+// 48376 본 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x06,0x00,0x00,0x1f,0x00,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x80,0x80,0xff,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 48377 볹 ; -+,0x00,0x00,0x04,0x06,0x04,0x00,0x02,0x00,0x1e,0x00,0x08,0x08,0x08,0x0b,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xd0,0x80,0xfe,0x00,0xb0,0x30,0x30,0x48,0x84,0x00 -+// 48378 볺 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x80,0x06,0x00,0x00,0xf0,0x78,0x08,0x48,0x00 -+// 48379 볻 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x1e,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0xc0,0x00,0xfe,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 48380 볼 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0xc0,0x00,0x02,0x00,0x10,0x10,0x00,0x00,0x18,0x00 -+// 48381 볽 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x00,0x1e,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 48382 볾 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x80,0xc6,0x00,0x00,0x64,0x04,0x00,0x00,0x20,0x00 -+// 48383 볿 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0xc0,0x80,0x06,0x00,0x44,0x2c,0x00,0x20,0x20,0x00 -+// 48384 봀 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x09,0x00,0x0d,0x00,0x06,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x40,0xfe,0x00,0x10,0x10,0x38,0x44,0x84,0x00 -+// 48385 봁 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x18,0x00,0x09,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x80,0x80,0x00,0x00,0x68,0x40,0x68,0x40,0x3c,0x00 -+// 48386 봂 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1c,0x00,0x0b,0x01,0x0d,0x00,0x06,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x00,0x02,0x00,0x58,0x08,0x08,0x00,0x5c,0x00 -+// 48387 봃 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x1e,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0xc0,0x40,0x02,0x30,0x00,0x10,0x38,0x44,0x48,0x00 -+// 48388 봄 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x00,0xfe,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 48389 봅 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x1e,0x00,0x04,0x06,0x02,0x00,0x02,0x00,0x00,0x00,0x10,0x08,0x18,0x08,0xd0,0x00,0xff,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 48390 봆 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x08,0x08,0x04,0x00,0x04,0x00,0x00,0x00,0x18,0x18,0x08,0x08,0xc0,0x40,0xfe,0x00,0x90,0x90,0x98,0xa4,0xc2,0x00 -+// 48391 봇 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x00,0xdf,0x00,0xc0,0x80,0x20,0x18,0x04,0x00 -+// 48392 봈 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x1e,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0xc0,0x00,0x1e,0x00,0x10,0x10,0x38,0xe4,0x44,0x00 -+// 48393 봉 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x00,0x1e,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0xd0,0x00,0xdf,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 48394 봊 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0xc0,0x00,0xfe,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 48395 봋 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x1c,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0xc0,0xc0,0x00,0xc0,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 48396 봌 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xc0,0x80,0xfe,0x00,0x98,0x08,0x88,0x08,0x08,0x00 -+// 48397 봍 ; -+,0x00,0x00,0x04,0x06,0x04,0x00,0x02,0x00,0x1e,0x00,0x00,0x04,0x06,0x04,0x03,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0xd0,0x00,0xfe,0x00,0x30,0x00,0x30,0x00,0xf8,0x00 -+// 48398 봎 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1e,0x00,0x04,0x00,0x02,0x00,0x0f,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0xc0,0x00,0xfe,0x00,0x08,0x20,0x20,0x20,0x3c,0x00 -+// 48399 봏 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x1e,0x01,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0xc0,0x40,0x00,0xc0,0x1c,0xc0,0x20,0x20,0x60,0x00 -+// 48400 봐 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0a,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x48,0xc8,0x48,0x48,0x08,0x0e,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 48401 봑 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x0a,0x18,0x08,0x00,0x10,0x08,0x08,0x08,0x00,0x00 -+// 48402 봒 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x1f,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x88,0x48,0xc8,0x48,0x0a,0x18,0x08,0x00,0x78,0x08,0x08,0x08,0x00,0x00 -+// 48403 봓 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x88,0x48,0x48,0x48,0x08,0x18,0x88,0x00,0x30,0x10,0x30,0x08,0x04,0x00 -+// 48404 봔 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x1f,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x48,0x48,0x48,0x0a,0x18,0x08,0x08,0x00,0x00,0x00,0xbc,0x00 -+// 48405 봕 ; -+,0x00,0x00,0x00,0x08,0x0c,0x08,0x0b,0x00,0x07,0x00,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x88,0x48,0x48,0x48,0x08,0x18,0x88,0x00,0x2c,0x10,0x30,0x48,0x84,0x00 -+// 48406 봖 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x88,0x48,0xc8,0x48,0x0a,0x18,0x08,0x70,0x00,0xf0,0x78,0xc8,0x78,0x00 -+// 48407 봗 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x03,0x18,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x98,0x48,0xc8,0x48,0x08,0x1c,0xc8,0x00,0x08,0x00,0x00,0x00,0xf8,0x00 -+// 48408 봘 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x07,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x08,0x18,0x88,0x00,0x90,0x10,0x30,0x00,0xfc,0x00 -+// 48409 봙 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x01,0x1f,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x88,0x48,0x48,0x48,0x0b,0x18,0x08,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 48410 봚 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x0f,0x00,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x98,0x08,0x88,0x08,0x08,0x18,0x88,0x00,0x58,0x48,0x48,0x48,0x40,0x00 -+// 48411 봛 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x1f,0x00,0x0a,0x02,0x1a,0x08,0x0c,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x0a,0x18,0x08,0x00,0x88,0x48,0x48,0x48,0x48,0x00 -+// 48412 봜 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x1f,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x0a,0x18,0x00,0x00,0x10,0x20,0x30,0x4c,0x84,0x00 -+// 48413 봝 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x0f,0x00,0x0b,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x08,0x18,0x88,0x00,0x48,0x40,0x58,0x40,0x3c,0x00 -+// 48414 봞 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x1f,0x00,0x0a,0x00,0x0a,0x08,0x0e,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x0a,0x18,0x08,0x00,0x50,0x10,0x40,0x50,0x9c,0x00 -+// 48415 봟 ; -+,0x00,0x00,0x00,0x08,0x0c,0x08,0x0b,0x00,0x07,0x00,0x01,0x01,0x0d,0x08,0x06,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x48,0x18,0x88,0x00,0x00,0x54,0x38,0x44,0x28,0x00 -+// 48416 봠 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x03,0x10,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x98,0x48,0xc8,0x48,0x08,0x18,0x88,0x00,0x00,0x10,0x10,0x10,0x00,0x00 -+// 48417 봡 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x00,0x1f,0x00,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x88,0x48,0xc8,0x48,0x0a,0x18,0x88,0x00,0x10,0x18,0x00,0x00,0x10,0x00 -+// 48418 봢 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x1f,0x00,0x01,0x0d,0x08,0x09,0x00,0x00,0x00,0x00,0x18,0x48,0xc8,0x48,0x08,0x18,0x80,0x00,0x10,0x10,0x28,0x04,0x00,0x00 -+// 48419 봣 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x03,0x10,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x88,0x48,0x48,0x48,0x08,0x18,0xc8,0x00,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 48420 봤 ; -+,0x00,0x00,0x00,0x08,0x0c,0x08,0x0b,0x00,0x1f,0x00,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0x4a,0x18,0x08,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 48421 봥 ; -+,0x00,0x00,0x00,0x08,0x0c,0x08,0x0b,0x00,0x03,0x18,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0x48,0x0e,0xc8,0x00,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 48422 봦 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x1f,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x0a,0x18,0x08,0x00,0x08,0x40,0xe0,0x10,0x08,0x00 -+// 48423 봧 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x1f,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x0a,0x18,0x00,0x00,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 48424 봨 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x1f,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x00,0x10,0x88,0x48,0xc8,0x48,0x0a,0x18,0x88,0x00,0x10,0x10,0xd0,0x10,0x10,0x00 -+// 48425 봩 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x1f,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x08,0x18,0x00,0x00,0x78,0x00,0x10,0x00,0xf8,0x00 -+// 48426 봪 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0b,0x02,0x07,0x00,0x00,0x00,0x01,0x01,0x0e,0x00,0x00,0x00,0x98,0x48,0xc8,0x48,0x08,0x18,0x88,0x00,0x18,0x20,0x10,0x20,0x3c,0x00 -+// 48427 봫 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x1f,0x00,0x00,0x04,0x01,0x01,0x01,0x00,0x00,0x10,0x98,0x08,0x88,0x08,0x0a,0x38,0x08,0xc0,0x00,0xc0,0x20,0x10,0xe0,0x00 -+// 48428 봬 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0a,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x94,0x94,0x34,0x94,0x14,0x04,0x04,0x04,0x00 -+// 48429 봭 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0x84,0x84,0x34,0xa4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 48430 봮 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x07,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0x84,0x94,0x34,0xa4,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 48431 봯 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x02,0x03,0x1c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0xa4,0xa4,0xa4,0xa4,0x34,0xa4,0x00,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 48432 봰 ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x00,0x04,0x02,0x03,0x1c,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x94,0x94,0x94,0x94,0x14,0xb4,0x04,0x04,0x00,0x00,0xde,0x00 -+// 48433 봱 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x02,0x03,0x1c,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x94,0x14,0xf4,0x00,0x04,0x10,0x10,0xac,0x46,0x00 -+// 48434 봲 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x02,0x03,0x08,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0xa4,0xa4,0x84,0xb4,0x34,0xa4,0x30,0x00,0xd0,0x38,0xc4,0x28,0x00 -+// 48435 봳 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x02,0x03,0x1c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0x84,0xa4,0x34,0xe4,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 48436 봴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0a,0x02,0x03,0x08,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0xa4,0xa4,0xa4,0xa4,0x34,0xa4,0x00,0xcc,0x04,0x0c,0x00,0x86,0x00 -+// 48437 봵 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x07,0x02,0x03,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x84,0x84,0x94,0x94,0x34,0xa4,0x00,0xb4,0x84,0x04,0x04,0x04,0x00 -+// 48438 봶 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x07,0x00,0x03,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x94,0x14,0xb4,0x00,0xb4,0xa4,0xa4,0x24,0x20,0x00 -+// 48439 봷 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x03,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x24,0x94,0x94,0x94,0x90,0x14,0x94,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 48440 봸 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x02,0x03,0x18,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0x84,0x84,0x94,0x94,0x34,0xa4,0x00,0x98,0x80,0x18,0x24,0x42,0x00 -+// 48441 봹 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x07,0x00,0x03,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x34,0x94,0x00,0xe8,0x20,0x2c,0x20,0x3e,0x00 -+// 48442 봺 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x02,0x03,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0x84,0x94,0x94,0x34,0xa4,0x00,0x04,0x00,0x24,0x00,0x0a,0x00 -+// 48443 봻 ; -+,0x00,0x00,0x00,0x08,0x0c,0x00,0x07,0x02,0x03,0x00,0x05,0x01,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x84,0x84,0x94,0x94,0x34,0xa4,0x20,0x00,0x18,0x3c,0x24,0x2c,0x00 -+// 48444 봼 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x02,0x03,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x34,0xa4,0x00,0x04,0x84,0x04,0x84,0x80,0x00 -+// 48445 봽 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x03,0x0c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x94,0x14,0xf4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48446 봾 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0a,0x02,0x03,0x18,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0x34,0xa4,0x00,0x88,0x88,0x98,0x84,0xa2,0x00 -+// 48447 봿 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x84,0x84,0x94,0x94,0x14,0x64,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 48448 뵀 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x02,0x03,0x08,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x24,0x84,0x84,0x94,0x94,0x34,0xa4,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 48449 뵁 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x94,0x14,0x34,0x04,0x30,0x48,0x84,0x84,0x48,0x00 -+// 48450 뵂 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x06,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x84,0x84,0x94,0x94,0x34,0xa4,0x00,0x0c,0x40,0x60,0x98,0x04,0x00 -+// 48451 뵃 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x24,0x84,0x84,0x94,0x94,0x34,0xa4,0x00,0x60,0x04,0x60,0x90,0x0c,0x00 -+// 48452 뵄 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x08,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x24,0x94,0xd4,0x14,0x94,0x14,0x94,0x00,0xec,0x04,0x3c,0x04,0x04,0x00 -+// 48453 뵅 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x02,0x03,0x1c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0x84,0xa4,0x34,0xe4,0x04,0x04,0x00,0x08,0x00,0x0c,0x00 -+// 48454 뵆 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0xa4,0xa4,0x84,0xa4,0x34,0xa4,0x00,0x0c,0x00,0x10,0x90,0x1e,0x00 -+// 48455 뵇 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x02,0x03,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0x84,0xa4,0x34,0xa4,0x20,0x00,0x60,0x90,0x88,0x90,0x00 -+// 48456 뵈 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x05,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x44,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 48457 뵉 ; -+,0x00,0x00,0x00,0x0c,0x07,0x04,0x07,0x01,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0xc4,0x44,0xc4,0x0c,0xc4,0x00,0x00,0x0c,0x04,0x04,0x00,0x00 -+// 48458 뵊 ; -+,0x00,0x00,0x00,0x08,0x07,0x04,0x07,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0xc4,0x44,0x44,0x04,0x64,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 48459 뵋 ; -+,0x00,0x00,0x00,0x08,0x07,0x04,0x07,0x01,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0xc4,0x44,0xc4,0x04,0xe4,0x00,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 48460 뵌 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x07,0x01,0x01,0x0c,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0xc4,0x0c,0xc4,0x04,0x00,0x00,0x00,0xde,0x00 -+// 48461 뵍 ; -+,0x00,0x00,0x00,0x08,0x07,0x04,0x07,0x01,0x01,0x1e,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x44,0x44,0xc4,0x44,0xc4,0x04,0x6c,0x00,0x00,0x10,0x10,0x24,0x46,0x00 -+// 48462 뵎 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x1f,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x44,0x0c,0x84,0x38,0x00,0xd0,0x38,0xc4,0x2c,0x00 -+// 48463 뵏 ; -+,0x00,0x00,0x00,0x0c,0x07,0x04,0x07,0x01,0x01,0x1c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x44,0xc4,0x44,0xc4,0x04,0xe4,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 48464 뵐 ; -+,0x00,0x00,0x00,0x08,0x07,0x04,0x07,0x01,0x01,0x08,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0xc4,0x04,0xc4,0x04,0xe4,0x00,0xcc,0x04,0x0c,0x00,0x82,0x00 -+// 48465 뵑 ; -+,0x00,0x00,0x00,0x04,0x07,0x04,0x07,0x00,0x0f,0x00,0x07,0x00,0x04,0x00,0x02,0x00,0x00,0x0c,0x04,0x24,0xe4,0x24,0xe4,0x84,0xc4,0x00,0x84,0x84,0x84,0x04,0x84,0x00 -+// 48466 뵒 ; -+,0x00,0x00,0x00,0x04,0x07,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x0c,0x06,0x24,0xe4,0x24,0xe4,0x84,0xc4,0x00,0xb6,0x80,0x80,0x14,0x94,0x00 -+// 48467 뵓 ; -+,0x00,0x00,0x00,0x04,0x07,0x04,0x07,0x00,0x03,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0xe4,0x24,0xe4,0x04,0xc4,0x00,0x04,0x24,0x24,0x24,0x34,0x00 -+// 48468 뵔 ; -+,0x00,0x00,0x00,0x04,0x07,0x04,0x07,0x00,0x1f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0xe4,0x24,0xe4,0x04,0xc4,0x00,0x88,0x88,0x98,0x24,0x02,0x00 -+// 48469 뵕 ; -+,0x00,0x00,0x00,0x04,0x07,0x04,0x07,0x01,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0xe4,0x24,0xe4,0x04,0xc4,0x04,0xec,0x20,0x2c,0x20,0x3e,0x00 -+// 48470 뵖 ; -+,0x00,0x00,0x00,0x08,0x07,0x04,0x07,0x01,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0xc4,0x04,0x44,0x0c,0xc4,0x04,0x20,0x08,0x20,0x28,0x4e,0x00 -+// 48471 뵗 ; -+,0x00,0x00,0x00,0x08,0x07,0x04,0x07,0x01,0x1f,0x00,0x05,0x00,0x06,0x04,0x03,0x00,0x00,0x08,0x04,0x44,0xc4,0x04,0xc4,0x0c,0xc4,0x10,0x80,0x38,0x14,0x24,0x34,0x00 -+// 48472 뵘 ; -+,0x00,0x00,0x00,0x0c,0x07,0x04,0x07,0x01,0x01,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0xc4,0x44,0xc4,0x04,0xe4,0x00,0x00,0x0c,0x08,0x08,0x98,0x00 -+// 48473 뵙 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x64,0x24,0x84,0x04,0x84,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48474 뵚 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x0c,0x84,0x00,0x88,0x88,0x98,0xa6,0x42,0x00 -+// 48475 뵛 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x44,0x44,0x04,0x44,0x04,0xe4,0x00,0x60,0x60,0x50,0x8c,0x06,0x00 -+// 48476 뵜 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x1f,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x44,0x04,0x44,0x04,0x44,0x0c,0x84,0x00,0x08,0x08,0x9c,0x66,0x02,0x00 -+// 48477 뵝 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x44,0x04,0x2c,0x00,0x30,0x48,0x84,0x84,0x48,0x00 -+// 48478 뵞 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0x04,0x44,0x04,0xe4,0x00,0x04,0x20,0x60,0x88,0x04,0x00 -+// 48479 뵟 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x00,0x0c,0x44,0x24,0x44,0x04,0x84,0x04,0x84,0x00,0x00,0x24,0x20,0x98,0x04,0x00 -+// 48480 뵠 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x01,0x01,0x0c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x44,0x04,0xe4,0x00,0x0c,0x04,0x7c,0x04,0x00,0x00 -+// 48481 뵡 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x05,0x01,0x03,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0x04,0xc4,0x04,0xc4,0x00,0x04,0x00,0x0c,0x00,0x8e,0x00 -+// 48482 뵢 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x05,0x01,0x03,0x08,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x44,0x0c,0xc8,0x00,0x0c,0x10,0x10,0x90,0xbe,0x00 -+// 48483 뵣 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x05,0x01,0x1f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0x44,0x04,0xc4,0x0c,0x84,0x40,0x00,0x20,0x58,0x88,0x50,0x00 -+// 48484 뵤 ; -+,0x00,0x00,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x07,0x02,0x02,0x02,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x10,0x00,0x3e,0x00,0x00,0x00 -+// 48485 뵥 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x2e,0x00,0xb0,0x08,0x08,0x00,0x00,0x00 -+// 48486 뵦 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x02,0x1e,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x2e,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 48487 뵧 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x00,0x1b,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x2e,0x00,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 48488 뵨 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x04,0x02,0x00,0x1f,0x00,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 48489 뵩 ; -+,0x00,0x00,0x04,0x06,0x04,0x06,0x02,0x02,0x1e,0x00,0x18,0x08,0x08,0x0b,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x2e,0x00,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 48490 뵪 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x02,0x1e,0x00,0x18,0x09,0x08,0x08,0x0c,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x2e,0x60,0x00,0xb0,0x78,0x88,0x58,0x00 -+// 48491 뵫 ; -+,0x00,0x00,0x04,0x06,0x04,0x00,0x02,0x02,0x1f,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x3f,0x00,0x10,0x00,0x00,0x00,0xb8,0x00 -+// 48492 뵬 ; -+,0x00,0x00,0x04,0x06,0x04,0x00,0x02,0x02,0x1e,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x2e,0x00,0x10,0x10,0x50,0x00,0xf8,0x00 -+// 48493 뵭 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x00,0x09,0x01,0x0d,0x08,0x0f,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x2e,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 48494 뵮 ; -+,0x00,0x00,0x04,0x06,0x04,0x06,0x02,0x02,0x1c,0x00,0x01,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x00,0x00,0x64,0x44,0x00,0x00,0x28,0x00 -+// 48495 뵯 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x02,0x1e,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x2e,0x08,0x48,0x68,0x40,0x48,0x48,0x00 -+// 48496 뵰 ; -+,0x00,0x00,0x04,0x06,0x04,0x00,0x02,0x00,0x1f,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x30,0x20,0x3e,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 48497 뵱 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x02,0x1f,0x00,0x09,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x30,0x20,0x3f,0x00,0x4c,0x40,0x68,0x40,0x3c,0x00 -+// 48498 뵲 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x00,0x03,0x00,0x0a,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x2e,0x00,0x00,0x08,0x40,0x10,0x94,0x00 -+// 48499 뵳 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1f,0x00,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x2e,0x30,0x00,0x30,0x28,0x48,0x48,0x00 -+// 48500 뵴 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x00,0x06,0x04,0x04,0x00,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x2e,0x00,0x30,0x10,0x10,0x10,0x10,0x00 -+// 48501 뵵 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1f,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x30,0x20,0x2e,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 48502 뵶 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x00,0x01,0x09,0x09,0x08,0x09,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x2e,0x00,0x10,0x10,0x28,0x04,0x04,0x00 -+// 48503 뵷 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x3e,0x00,0x80,0x80,0x60,0x10,0x08,0x00 -+// 48504 뵸 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1b,0x00,0x02,0x02,0x03,0x04,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x3f,0x00,0x10,0x10,0x30,0xcc,0x84,0x00 -+// 48505 뵹 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x00,0x01,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x3e,0x80,0xc0,0x20,0x10,0x20,0x60,0x00 -+// 48506 뵺 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x01,0x1f,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0x30,0x00,0x3f,0x00,0xfc,0xc0,0xa0,0x10,0x0c,0x00 -+// 48507 뵻 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x3e,0x80,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 48508 뵼 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x1e,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x3e,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 48509 뵽 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x02,0x03,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x3f,0x00,0x10,0x00,0x10,0x00,0x18,0x00 -+// 48510 뵾 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x02,0x1f,0x00,0x00,0x00,0x02,0x02,0x0f,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x3f,0x00,0x18,0x00,0x20,0x20,0x3c,0x00 -+// 48511 뵿 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x02,0x1f,0x01,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x30,0x20,0x3e,0xc0,0x1c,0xc0,0x20,0x20,0x60,0x00 -+// 48512 부 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x1e,0x40,0x40,0x40,0x00,0x00,0x00,0x00 -+// 48513 북 ; -+,0x00,0x00,0x04,0x06,0x00,0x02,0x00,0x10,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x1f,0x00,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 48514 붂 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x1e,0x80,0x80,0x28,0x08,0x08,0x00,0x00,0x00 -+// 48515 붃 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x06,0x80,0x80,0x30,0x10,0x30,0x4c,0x84,0x00 -+// 48516 분 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x06,0x00,0x1e,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x9e,0x80,0x80,0x80,0x00,0x00,0xf8,0x00 -+// 48517 붅 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x0f,0x80,0x80,0xf0,0x30,0x30,0x44,0x80,0x00 -+// 48518 붆 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x0e,0x00,0x70,0x00,0xb0,0x68,0x40,0x78,0x00 -+// 48519 붇 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x00,0x00,0x06,0x06,0x02,0x02,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x80,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00 -+// 48520 불 ; -+,0x00,0x00,0x04,0x06,0x04,0x00,0x02,0x00,0x10,0x00,0x02,0x00,0x06,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0xc0,0x80,0x10,0x10,0x00,0x00,0x18,0x00 -+// 48521 붉 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x00,0x1c,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x10,0x08,0x10,0x00,0x10,0x00,0x0f,0x00,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 48522 붊 ; -+,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x00,0x00,0x01,0x01,0x0f,0x08,0x0f,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x06,0x80,0x80,0x6c,0x04,0x00,0x00,0x28,0x00 -+// 48523 붋 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x00,0x1c,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x0f,0x80,0xc8,0x44,0x2c,0x04,0x2c,0x00,0x00 -+// 48524 붌 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x0d,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x06,0x80,0xa0,0x10,0x10,0x28,0x44,0x04,0x00 -+// 48525 붍 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x10,0x00,0x09,0x01,0x0f,0x08,0x0f,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x80,0x80,0x48,0x40,0x68,0x40,0x3c,0x00 -+// 48526 붎 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x0f,0x08,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x0e,0x80,0x80,0x40,0x08,0x08,0x00,0x54,0x00 -+// 48527 붏 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x09,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x02,0x80,0xf0,0x00,0x10,0x28,0x44,0x68,0x00 -+// 48528 붐 ; -+,0x00,0x00,0x04,0x06,0x04,0x00,0x02,0x00,0x10,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x10,0x00,0xc0,0x00,0xd0,0x10,0x10,0x10,0x30,0x00 -+// 48529 붑 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 48530 붒 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x00,0x01,0x08,0x0d,0x08,0x08,0x0d,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x0e,0x80,0x90,0x90,0x10,0x28,0x24,0xc0,0x00 -+// 48531 붓 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x10,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x80,0x80,0x80,0x40,0x10,0x08,0x00 -+// 48532 붔 ; -+,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x1c,0x00,0x00,0x03,0x02,0x05,0x08,0x10,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x8e,0x80,0x00,0x10,0x10,0xa8,0xc4,0x80,0x00 -+// 48533 붕 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x00,0x10,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x80,0xc0,0x30,0x10,0x10,0xe0,0x00 -+// 48534 붖 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x02,0x80,0x00,0xcc,0x80,0xc0,0x10,0x0c,0x00 -+// 48535 붗 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x10,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x00,0x02,0xc0,0xc0,0x00,0xfc,0xc0,0x20,0x18,0x00 -+// 48536 붘 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x10,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x80,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 48537 붙 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x10,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0x38,0x00 -+// 48538 붚 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0x00,0x02,0x40,0x40,0xd8,0x00,0x10,0x20,0x3c,0x00 -+// 48539 붛 ; -+,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x1c,0x00,0x01,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x9f,0x80,0xc0,0x1c,0xc0,0x20,0x20,0x20,0x00 -+// 48540 붜 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x44,0x24,0x64,0x24,0x24,0x04,0x04,0x04,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 48541 붝 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x0d,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x44,0x04,0x04,0x04,0x0c,0x00,0x00,0xc4,0x04,0x04,0x04,0x00 -+// 48542 붞 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x28,0x84,0x84,0x84,0x84,0x00 -+// 48543 붟 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x09,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 48544 붠 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x84,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 48545 붡 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 48546 붢 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x3c,0x30,0x00,0xd8,0x28,0xc4,0x2c,0x00 -+// 48547 붣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x0d,0x01,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x44,0x44,0x04,0x04,0x04,0x3c,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 48548 붤 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x1f,0x01,0x01,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0xcc,0x08,0x38,0x00,0x0e,0x00 -+// 48549 붥 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0xa8,0x84,0x04,0x04,0x00,0x00 -+// 48550 붦 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0xa4,0xa4,0xa4,0x24,0x20,0x00 -+// 48551 붧 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x01,0x01,0x0f,0x01,0x0d,0x08,0x0e,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x48,0x04,0x04,0x04,0x24,0x00 -+// 48552 붨 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x98,0x80,0x98,0x24,0x42,0x00 -+// 48553 붩 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x04,0x04,0x00,0xe0,0x20,0x28,0x20,0x3e,0x00 -+// 48554 붪 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x24,0x08,0x20,0x28,0x0e,0x00 -+// 48555 붫 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x00,0x3a,0x1c,0x24,0x24,0x00 -+// 48556 붬 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x3c,0x00,0x08,0x04,0x08,0x08,0x80,0x00 -+// 48557 붭 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x24,0x44,0x04,0x04,0x84,0x3c,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48558 붮 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x88,0x08,0x98,0x16,0xa2,0x00 -+// 48559 붯 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x04,0x3c,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 48560 붰 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x1f,0x01,0x01,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x08,0x08,0x9c,0x66,0x02,0x00 -+// 48561 붱 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x04,0x30,0xc8,0x84,0x84,0x78,0x00 -+// 48562 붲 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x0c,0x60,0x60,0x88,0x04,0x00 -+// 48563 붳 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0xe0,0x04,0x60,0x50,0x0c,0x00 -+// 48564 붴 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x24,0x24,0x24,0x04,0x84,0x3c,0x00,0xcc,0x04,0x7c,0x04,0x04,0x00 -+// 48565 붵 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x09,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0x0c,0x00,0x1c,0x00,0xfe,0x00 -+// 48566 붶 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x07,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0x84,0x3c,0x00,0xfc,0x10,0x10,0x90,0x9e,0x00 -+// 48567 붷 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x84,0x3c,0x60,0x06,0x60,0x98,0x88,0xf0,0x00 -+// 48568 붸 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x00,0x04,0x00,0x1e,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x94,0x94,0x94,0x94,0x14,0x14,0x74,0x14,0x14,0x14,0x04,0x00 -+// 48569 붹 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x04,0x04,0x00 -+// 48570 붺 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x01,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x14,0x14,0x00,0x84,0x84,0x84,0x84,0x00 -+// 48571 붻 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x0a,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x14,0x14,0x18,0x88,0x98,0x94,0xa2,0x00 -+// 48572 붼 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x1e,0x02,0x02,0x06,0x02,0x00,0x01,0x00,0x00,0x08,0x04,0x34,0x94,0x94,0x94,0x14,0x14,0xf4,0x14,0x04,0x00,0x00,0xde,0x00 -+// 48573 붽 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x0a,0x02,0x00,0x04,0x04,0x05,0x04,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x34,0x14,0x04,0x10,0x10,0xa4,0x42,0x00 -+// 48574 붾 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x07,0x02,0x02,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x30,0x00,0xf0,0x38,0x04,0x2c,0x00 -+// 48575 붿 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x01,0x0e,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0x00,0x00,0x00,0x8e,0x00 -+// 48576 뷀 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x01,0x1a,0x02,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x00,0xc4,0x04,0x0c,0x00,0x82,0x00 -+// 48577 뷁 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x1f,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0xa4,0x84,0x84,0x04,0x04,0x00 -+// 48578 뷂 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0xb4,0xa4,0xa4,0x24,0x00,0x00 -+// 48579 뷃 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0x04,0x24,0x24,0x24,0x24,0x00 -+// 48580 뷄 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x1f,0x02,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 48581 뷅 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x00,0xec,0x20,0x20,0x20,0x1e,0x00 -+// 48582 뷆 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x07,0x0a,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0xf4,0x00,0x04,0x00,0x24,0x08,0x0e,0x00 -+// 48583 뷇 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x01,0x0a,0x02,0x07,0x01,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x30,0x00,0x78,0x3c,0x24,0x2c,0x00 -+// 48584 뷈 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x01,0x0a,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x34,0x14,0x00,0x84,0x04,0x04,0x80,0x00 -+// 48585 뷉 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 48586 뷊 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0x88,0x88,0x94,0xa2,0x40,0x00 -+// 48587 뷋 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 48588 뷌 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x10,0x08,0x08,0x9c,0x66,0x02,0x00 -+// 48589 뷍 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x01,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x14,0x30,0x48,0x84,0x84,0x78,0x00 -+// 48590 뷎 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x34,0x14,0x04,0x60,0x60,0x98,0x04,0x00 -+// 48591 뷏 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x0f,0x02,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0x60,0x64,0x60,0xd8,0x04,0x00 -+// 48592 뷐 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x01,0x0a,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x14,0x14,0x5c,0x04,0x24,0x04,0x04,0x00 -+// 48593 뷑 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0x04,0x00,0x0c,0x00,0x8c,0x00 -+// 48594 뷒 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x03,0x0a,0x02,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x14,0x34,0x04,0x0c,0x10,0x90,0x90,0xbe,0x00 -+// 48595 뷓 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x0a,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x10,0x00,0x60,0x90,0x88,0xd0,0x00 -+// 48596 뷔 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x03,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x64,0x24,0x24,0x04,0x04,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 48597 뷕 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x04,0x74,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 48598 뷖 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x64,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48599 뷗 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1d,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x6c,0x04,0x00,0x08,0x88,0x98,0xa4,0x82,0x00 -+// 48600 뷘 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x1d,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0x44,0x04,0xe4,0x04,0x04,0x04,0x00,0x00,0xde,0x00 -+// 48601 뷙 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x01,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0xe4,0x04,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 48602 뷚 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x01,0x01,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x04,0xe4,0x04,0x30,0x00,0xf0,0x38,0xc4,0x38,0x00 -+// 48603 뷛 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x04,0x6c,0x04,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 48604 뷜 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0xe4,0x04,0x00,0xc8,0x08,0x08,0x00,0x06,0x00 -+// 48605 뷝 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x09,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0xe4,0x04,0x00,0xbc,0x84,0x84,0x04,0x04,0x00 -+// 48606 뷞 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x0c,0xc4,0x04,0x00,0xac,0x24,0x24,0x24,0x20,0x00 -+// 48607 뷟 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x01,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0xe4,0x04,0x00,0x44,0x24,0x24,0x24,0x24,0x00 -+// 48608 뷠 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x00,0x05,0x00,0x0d,0x04,0x06,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x0c,0xc4,0x04,0x00,0x98,0x10,0x18,0x24,0x02,0x00 -+// 48609 뷡 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x03,0x01,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x04,0xc4,0x04,0x00,0xe8,0x20,0x2c,0x20,0x3e,0x00 -+// 48610 뷢 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x00,0x01,0x01,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x0c,0xec,0x00,0x00,0x48,0x08,0x28,0x28,0x4e,0x00 -+// 48611 뷣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x07,0x01,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x0c,0xc4,0x04,0x18,0x00,0x18,0x24,0x24,0x3c,0x00 -+// 48612 뷤 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0xe4,0x04,0x00,0x0c,0x0c,0x08,0x08,0x00,0x00 -+// 48613 뷥 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x09,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x44,0x04,0x04,0xe4,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 48614 뷦 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x01,0x01,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x0c,0xc4,0x00,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 48615 뷧 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x1f,0x01,0x01,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x44,0x44,0x44,0x44,0x04,0x24,0x04,0x04,0x20,0x60,0xd0,0x8c,0x02,0x00 -+// 48616 뷨 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x01,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x0c,0xec,0x00,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 48617 뷩 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x04,0x6c,0x04,0x04,0x30,0x88,0x84,0x88,0x78,0x00 -+// 48618 뷪 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x64,0x04,0x00,0x04,0x60,0x60,0x88,0x04,0x00 -+// 48619 뷫 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x01,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x0c,0x04,0x00,0x00,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 48620 뷬 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x04,0x44,0x04,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 48621 뷭 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x0d,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x04,0xe4,0x04,0x00,0x0c,0x00,0x0c,0x00,0x1c,0x00 -+// 48622 뷮 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x01,0x01,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x0c,0xe4,0x00,0x00,0x0c,0x10,0x10,0x90,0x9e,0x00 -+// 48623 뷯 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x0c,0xc4,0x00,0x60,0x04,0x60,0x90,0x88,0xf0,0x00 -+// 48624 뷰 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x06,0x00,0x1e,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x3f,0x10,0x10,0x10,0x10,0x00,0x00,0x00 -+// 48625 뷱 ; -+,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x1e,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x3f,0x10,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 48626 뷲 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x07,0x10,0x10,0x78,0x08,0x08,0x00,0x00,0x00 -+// 48627 뷳 ; -+,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x1e,0x10,0x00,0x30,0x10,0x30,0x44,0x80,0x00 -+// 48628 뷴 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x06,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x3f,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 48629 뷵 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x12,0x02,0x18,0x08,0x08,0x0b,0x0c,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x02,0x30,0x00,0xfc,0x20,0x30,0x48,0x84,0x00 -+// 48630 뷶 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x18,0x02,0x02,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x3e,0x10,0x30,0x00,0xb0,0x78,0x48,0x58,0x00 -+// 48631 뷷 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x00,0x12,0x02,0x02,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0x10,0x02,0x30,0x10,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 48632 뷸 ; -+,0x00,0x00,0x04,0x02,0x02,0x02,0x00,0x1f,0x02,0x02,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x3f,0x10,0x10,0xb0,0x10,0x70,0x00,0xfc,0x00 -+// 48633 뷹 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1f,0x02,0x02,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x3f,0x10,0x10,0x08,0x08,0x08,0x08,0x08,0x00 -+// 48634 뷺 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1f,0x02,0x02,0x01,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x3f,0x10,0x10,0x24,0x24,0x24,0x20,0x20,0x00 -+// 48635 뷻 ; -+,0x00,0x00,0x04,0x06,0x00,0x02,0x00,0x1f,0x02,0x02,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x3f,0x10,0x08,0x44,0x28,0x00,0x00,0x20,0x00 -+// 48636 뷼 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x18,0x02,0x02,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x00,0x3f,0x10,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 48637 뷽 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1e,0x02,0x02,0x09,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x3f,0x10,0x00,0x48,0x40,0x68,0x40,0x3c,0x00 -+// 48638 뷾 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1f,0x02,0x02,0x01,0x01,0x0f,0x00,0x06,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x3f,0x10,0x10,0x00,0x08,0x08,0x28,0x5c,0x00 -+// 48639 뷿 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x18,0x02,0x02,0x0b,0x01,0x0d,0x08,0x06,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x3f,0x10,0x30,0x04,0x10,0x08,0x44,0x28,0x00 -+// 48640 븀 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x06,0x10,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 48641 븁 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x1e,0x10,0x10,0x10,0x10,0x00,0x00,0x10,0x00 -+// 48642 븂 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x02,0x02,0x08,0x0d,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x1e,0x10,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 48643 븃 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x06,0x10,0x10,0xc0,0x80,0x20,0x18,0x00,0x00 -+// 48644 븄 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1e,0x02,0x02,0x03,0x03,0x01,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x3f,0x10,0x10,0x10,0x10,0xa8,0xc4,0x00,0x00 -+// 48645 븅 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x12,0x02,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x10,0x10,0xc0,0x00,0x10,0x10,0xe0,0x00 -+// 48646 븆 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x18,0x02,0x02,0x07,0x00,0x00,0x02,0x04,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x1e,0x10,0x10,0xfc,0xc0,0xa0,0x10,0x04,0x00 -+// 48647 븇 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1e,0x02,0x03,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x00,0x3f,0x10,0x30,0x00,0xe0,0xc0,0x30,0x08,0x00 -+// 48648 븈 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x12,0x02,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x02,0x10,0x10,0xb8,0x08,0xe8,0x08,0x08,0x00 -+// 48649 븉 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1e,0x02,0x02,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x3f,0x10,0x00,0x70,0x00,0x10,0x00,0xf8,0x00 -+// 48650 븊 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x02,0x00,0x0e,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x02,0x10,0x00,0x18,0x20,0x20,0x20,0x3c,0x00 -+// 48651 븋 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x1e,0x02,0x02,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x3f,0x10,0xf0,0x1c,0xc0,0x20,0x20,0x20,0x00 -+// 48652 브 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x18,0x08,0x08,0x08,0x00,0x00,0x00,0x1f,0x00,0x00,0x00 -+// 48653 븍 ; -+,0x00,0x00,0x04,0x06,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x00,0x02,0x00,0x10,0x08,0x08,0x08,0x08,0x00 -+// 48654 븎 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x18,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x08,0x00,0x00,0x08,0x00 -+// 48655 븏 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x18,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x30,0x4c,0x84,0x00 -+// 48656 븐 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x02,0x00,0x00,0x18,0x00,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 48657 븑 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x10,0x00,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x02,0x00,0x00,0xf0,0x10,0x30,0x48,0x84,0x00 -+// 48658 븒 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x10,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xb0,0x68,0x40,0x48,0x00 -+// 48659 븓 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x1c,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x0e,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 48660 블 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x10,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x02,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 48661 븕 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x1c,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x00,0x02,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 48662 븖 ; -+,0x00,0x00,0x06,0x02,0x00,0x02,0x00,0x00,0x18,0x00,0x01,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x08,0x18,0x08,0x08,0x00,0x02,0x00,0x00,0x24,0x24,0x24,0x20,0x28,0x00 -+// 48663 븗 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x00,0x0e,0x08,0x44,0x28,0x00,0x28,0x20,0x00 -+// 48664 븘 ; -+,0x00,0x00,0x04,0x06,0x00,0x02,0x00,0x00,0x1e,0x00,0x09,0x01,0x0d,0x08,0x0f,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x00,0x06,0x00,0x10,0x10,0x38,0x4c,0x84,0x00 -+// 48665 븙 ; -+,0x00,0x00,0x04,0x06,0x00,0x02,0x00,0x00,0x10,0x00,0x09,0x01,0x0d,0x08,0x0f,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x02,0x00,0x00,0x60,0x40,0x68,0x40,0x3c,0x00 -+// 48666 븚 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x02,0x00,0x1e,0x00,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x3e,0x00,0x48,0x08,0x48,0x00,0x1c,0x00 -+// 48667 븛 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x1c,0x00,0x09,0x01,0x0d,0x08,0x0f,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x30,0x00,0x30,0x28,0x40,0x48,0x00 -+// 48668 븜 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x18,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 48669 븝 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x1e,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x10,0x00,0x00,0x00,0x00,0x1e,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 48670 븞 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x1c,0x00,0x08,0x04,0x00,0x00,0x05,0x00,0x00,0x10,0x10,0x10,0x00,0x10,0x00,0x00,0x00,0x10,0x90,0x90,0x88,0xa4,0xc0,0x00 -+// 48671 븟 ; -+,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x08,0x10,0x00,0x00,0x00,0x00,0x1e,0x00,0xc0,0x80,0x60,0x18,0x0c,0x00 -+// 48672 븠 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x1e,0x00,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x10,0x00,0x00,0x00,0x00,0x1e,0x00,0x10,0x10,0x38,0xe4,0x04,0x00 -+// 48673 븡 ; -+,0x00,0x00,0x04,0x06,0x04,0x02,0x00,0x00,0x1e,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x06,0x00,0xc0,0x00,0x10,0x10,0x60,0x00 -+// 48674 븢 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x18,0x00,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x10,0x10,0x10,0x10,0x00,0x02,0x00,0x00,0xf8,0xc0,0x20,0x18,0x04,0x00 -+// 48675 븣 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x18,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 48676 븤 ; -+,0x00,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x10,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x08,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 48677 븥 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x1e,0x00,0x04,0x04,0x06,0x04,0x03,0x00,0x00,0x10,0x08,0x18,0x00,0x00,0x00,0x00,0x1e,0x00,0x78,0x00,0x10,0x00,0xf8,0x00 -+// 48678 븦 ; -+,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x1c,0x00,0x00,0x00,0x02,0x00,0x0e,0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x00,0x00,0x02,0x00,0x18,0x00,0x20,0x20,0x3c,0x00 -+// 48679 븧 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x02,0x00,0x18,0x01,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x10,0x00,0x10,0x00,0x00,0x00,0x02,0x00,0xc0,0x1c,0xc0,0x20,0x20,0x60,0x00 -+// 48680 븨 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x64,0x24,0x24,0x24,0x04,0x04,0x04,0x84,0x04,0x04,0x04,0x00 -+// 48681 븩 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x0c,0x04,0x00,0x08,0x04,0x04,0x04,0x00,0x00 -+// 48682 븪 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x04,0x44,0x04,0xc4,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 48683 븫 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x0c,0x84,0x00,0x18,0x88,0x98,0x94,0x82,0x00 -+// 48684 븬 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x44,0x1c,0x04,0x04,0x04,0x00,0x00,0xde,0x00 -+// 48685 븭 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x44,0x0c,0x84,0x00,0x06,0x10,0x10,0xa4,0x42,0x00 -+// 48686 븮 ; -+,0x00,0x00,0x00,0x08,0x04,0x00,0x04,0x00,0x1f,0x00,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x44,0x3c,0x00,0x38,0x00,0xf0,0x38,0x44,0x28,0x00 -+// 48687 븯 ; -+,0x00,0x00,0x00,0x08,0x0c,0x08,0x04,0x00,0x03,0x18,0x00,0x07,0x02,0x02,0x01,0x00,0x00,0x08,0x08,0x48,0x48,0x48,0x48,0x08,0xc8,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 48688 븰 ; -+,0x00,0x00,0x00,0x08,0x04,0x00,0x04,0x00,0x0f,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x0c,0xc4,0x00,0xcc,0x08,0x18,0x00,0x1e,0x00 -+// 48689 븱 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1e,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x04,0x6c,0x04,0x00,0xbc,0x04,0x04,0x04,0x00,0x00 -+// 48690 븲 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x1f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x04,0x44,0x04,0x04,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 48691 븳 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x0f,0x00,0x09,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0x04,0x44,0x04,0x84,0x00,0x44,0x24,0x24,0x24,0x24,0x00 -+// 48692 븴 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1e,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x44,0x6c,0x04,0x10,0x98,0x10,0x18,0x24,0x42,0x00 -+// 48693 븵 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1f,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x0c,0x84,0x00,0x6c,0x20,0x2c,0x20,0x3c,0x00 -+// 48694 븶 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x44,0x1c,0x84,0x04,0x24,0x08,0x20,0x28,0x4e,0x00 -+// 48695 븷 ; -+,0x00,0x00,0x00,0x08,0x04,0x00,0x04,0x00,0x1f,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x0c,0x84,0x00,0x00,0x78,0x1c,0x24,0x24,0x00 -+// 48696 븸 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x44,0x44,0x44,0x44,0x0c,0x84,0x00,0x00,0x0c,0x00,0x08,0x00,0x00 -+// 48697 븹 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x2c,0x04,0x00,0x04,0x84,0x04,0x04,0x84,0x00 -+// 48698 븺 ; -+,0x00,0x00,0x00,0x08,0x04,0x00,0x04,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x44,0x0c,0x80,0x00,0x88,0x88,0x98,0x84,0x82,0x00 -+// 48699 븻 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x07,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x0c,0xc4,0x04,0x20,0x60,0x50,0x0c,0x06,0x00 -+// 48700 븼 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x1c,0x04,0x00,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 48701 븽 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x04,0xe4,0x04,0x30,0x48,0x84,0x84,0x48,0x00 -+// 48702 븾 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x44,0x44,0x44,0x04,0x44,0x14,0x84,0x00,0x1c,0x20,0x60,0x88,0x04,0x00 -+// 48703 븿 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x44,0x44,0x44,0x04,0x44,0x04,0x84,0x00,0x60,0x2c,0x20,0x50,0x04,0x00 -+// 48704 빀 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0c,0x44,0x24,0x64,0x24,0x64,0x04,0xc4,0x00,0x0c,0x04,0x7c,0x04,0x04,0x00 -+// 48705 빁 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1f,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x44,0x3c,0x04,0x00,0x1c,0x00,0x0c,0x00,0xfe,0x00 -+// 48706 빂 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x1f,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x0c,0x44,0x44,0x44,0x44,0x1c,0x84,0x00,0x0c,0x10,0x10,0x90,0xfe,0x00 -+// 48707 빃 ; -+,0x00,0x00,0x00,0x08,0x0c,0x08,0x04,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x40,0x40,0x44,0x44,0x1c,0x80,0x00,0x00,0x60,0x90,0x88,0x90,0x00 -+// 48708 비 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x44,0x44,0xc4,0x44,0x44,0x44,0x04,0x04,0x04,0x04,0x04,0x00 -+// 48709 빅 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x44,0x44,0x44,0x00,0xc8,0x04,0x04,0x04,0x00,0x00 -+// 48710 빆 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x44,0x44,0x04,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 48711 빇 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x00,0x00,0x08,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x88,0x88,0x88,0x18,0x88,0x10,0x1c,0x26,0x42,0x00 -+// 48712 빈 ; -+,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x88,0x88,0x08,0x88,0x08,0x00,0x00,0x00,0xde,0x00 -+// 48713 빉 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x04,0x04,0x00,0x00,0x10,0x10,0x38,0xa4,0x82,0x00 -+// 48714 빊 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x08,0x88,0x88,0x88,0x88,0x88,0x08,0x38,0x06,0x30,0x48,0xc4,0x38,0x00 -+// 48715 빋 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x44,0xc4,0x44,0x44,0x44,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 48716 빌 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x44,0xc4,0x44,0x44,0x04,0x00,0xcc,0x00,0x18,0x00,0x06,0x00 -+// 48717 빍 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x07,0x00,0x04,0x04,0x05,0x00,0x00,0x08,0x84,0x44,0x44,0x44,0x44,0x44,0x04,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 48718 빎 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x44,0x44,0x44,0x44,0x04,0x00,0xa4,0x24,0x24,0x20,0x20,0x00 -+// 48719 빏 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x44,0x04,0x00,0x44,0x2c,0x04,0x04,0x24,0x00 -+// 48720 빐 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x04,0x84,0x04,0x04,0x04,0x00,0x88,0x90,0x18,0x24,0x42,0x00 -+// 48721 빑 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x44,0x44,0x44,0xc4,0x04,0x00,0xe0,0x20,0x20,0x20,0x3e,0x00 -+// 48722 빒 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x0c,0x84,0x04,0x84,0x04,0x04,0x00,0x00,0x4c,0x08,0x28,0x28,0x4e,0x00 -+// 48723 빓 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x8c,0x04,0x04,0x84,0x04,0x84,0x04,0x18,0x02,0x18,0x24,0x44,0x2c,0x00 -+// 48724 빔 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0xc4,0x44,0x44,0x44,0x00,0x0c,0x0c,0x08,0x08,0x00,0x00 -+// 48725 빕 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x04,0x84,0x04,0x84,0x04,0x00,0x04,0x0c,0x04,0x04,0x8c,0x00 -+// 48726 빖 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x84,0x44,0x44,0xc4,0x44,0xc4,0x04,0x08,0x88,0x88,0x9c,0x86,0x82,0x00 -+// 48727 빗 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x44,0x44,0xc4,0x44,0x44,0x44,0x40,0x20,0x60,0x90,0x0c,0x00,0x00 -+// 48728 빘 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x84,0x44,0x44,0xc4,0x44,0xc4,0x04,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 48729 빙 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x80,0x04,0x84,0x04,0x04,0x00,0x20,0x70,0x88,0x08,0x08,0xf0,0x00 -+// 48730 빚 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x44,0x44,0x44,0x44,0x44,0x00,0x00,0xfc,0x60,0x90,0x0c,0x00,0x00 -+// 48731 빛 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0x44,0x44,0x04,0xe0,0x04,0xe0,0x60,0x98,0x04,0x00 -+// 48732 빜 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0xc4,0x44,0x44,0x44,0x00,0xcc,0x0c,0xc4,0x04,0x00,0x00 -+// 48733 빝 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x44,0x44,0x04,0x00,0x3c,0x00,0x0c,0x00,0xfc,0x00 -+// 48734 빞 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x00,0x02,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x8c,0x04,0x84,0x84,0x04,0x04,0x00,0x00,0x0c,0x10,0x10,0x90,0x3e,0x00 -+// 48735 빟 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0xc4,0x44,0x44,0x04,0x60,0x04,0x60,0xd0,0x88,0x90,0x00 -+// 48736 빠 ; -+,0x00,0x00,0x00,0x00,0x35,0x15,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x08,0x08,0xc8,0x08,0x0f,0x08,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 48737 빡 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x40,0x08,0xc8,0x0e,0x40,0x00,0x00,0xb0,0x10,0x10,0x10,0x10,0x00 -+// 48738 빢 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x40,0x08,0xc8,0x0e,0x48,0x00,0x00,0x50,0x00,0x00,0x00,0x00,0x00 -+// 48739 빣 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x1d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x40,0x08,0xc8,0x0e,0x08,0x00,0x00,0x10,0x10,0x30,0x2c,0x44,0x00 -+// 48740 빤 ; -+,0x00,0x00,0x00,0x00,0x25,0x15,0x15,0x15,0x15,0x15,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x18,0x48,0x48,0x48,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x9c,0x00 -+// 48741 빥 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x19,0x08,0x08,0x0e,0x09,0x00,0x00,0x10,0x10,0x40,0x40,0x40,0x4e,0x40,0x00,0x00,0xf0,0x20,0x70,0x88,0x00,0x00 -+// 48742 빦 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x08,0x00,0x00,0x05,0x04,0x00,0x00,0x00,0x08,0x28,0x28,0xe8,0x2f,0xe8,0x00,0x70,0x04,0x30,0x48,0x88,0x78,0x00 -+// 48743 빧 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x15,0x15,0x1d,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x48,0x08,0xc8,0x08,0x08,0x40,0x00,0x10,0x00,0x00,0x00,0xb8,0x00 -+// 48744 빨 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x08,0x28,0x28,0xe8,0x2b,0x28,0x08,0x00,0x98,0x10,0x30,0x00,0x0c,0x00 -+// 48745 빩 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x08,0x48,0x0e,0xc8,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 48746 빪 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x08,0x28,0x28,0xe8,0x2f,0x68,0x00,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 48747 빫 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x02,0x02,0x1a,0x08,0x0e,0x00,0x00,0x10,0x08,0x28,0x28,0xe8,0x2f,0xe8,0x00,0x00,0x88,0x58,0x08,0x08,0x48,0x00 -+// 48748 빬 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x11,0x14,0x10,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x28,0x28,0xe8,0x2f,0xa8,0x00,0x00,0x10,0x10,0x28,0x04,0x04,0x00 -+// 48749 빭 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x28,0x28,0xe8,0x2f,0xe8,0x00,0x00,0x40,0x40,0x40,0x40,0x7c,0x00 -+// 48750 빮 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x0a,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x08,0x28,0x28,0xe8,0x2f,0xe8,0x00,0x00,0x58,0x10,0x50,0x10,0x9c,0x00 -+// 48751 빯 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x10,0x08,0x48,0x08,0xc8,0x0e,0x48,0x00,0x30,0x04,0x10,0x68,0x44,0x68,0x00 -+// 48752 빰 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x1c,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x48,0x08,0xc8,0x0a,0x48,0x00,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 48753 빱 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x48,0x08,0x48,0x0e,0xc8,0x00,0x10,0x10,0x10,0x00,0x00,0x10,0x00 -+// 48754 빲 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x08,0x0d,0x08,0x0d,0x00,0x00,0x00,0x00,0x08,0x48,0x08,0xc8,0x0e,0xc8,0x00,0x10,0x10,0x10,0x28,0x04,0x80,0x00 -+// 48755 빳 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x08,0x40,0x48,0xc8,0x4a,0x48,0x00,0x80,0x40,0xc0,0x20,0x18,0x08,0x00 -+// 48756 빴 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x08,0x28,0x28,0xe8,0x2f,0xe8,0x00,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 48757 빵 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x15,0x14,0x00,0x00,0x01,0x02,0x01,0x01,0x00,0x00,0x00,0x10,0x40,0x40,0x40,0x48,0x48,0x00,0x00,0x40,0x10,0x10,0x10,0xe0,0x00 -+// 48758 빶 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x15,0x14,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x10,0x40,0x40,0x40,0x4e,0x40,0x00,0x00,0xf8,0xc0,0xa0,0x18,0x00,0x00 -+// 48759 빷 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x01,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x48,0x08,0x48,0x0f,0x48,0x00,0xc0,0x08,0xc0,0xc0,0x10,0x0c,0x00 -+// 48760 빸 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x1c,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x08,0xc8,0x0f,0x08,0x08,0x00,0xb0,0x10,0xd0,0x10,0x00,0x00 -+// 48761 빹 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x48,0x08,0xc8,0x0f,0xc8,0x00,0x00,0x70,0x00,0x10,0x00,0xfc,0x00 -+// 48762 빺 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x15,0x15,0x00,0x00,0x00,0x00,0x01,0x0e,0x00,0x00,0x00,0x18,0x48,0x48,0x48,0x4a,0x08,0x40,0x00,0x18,0x20,0x00,0x20,0x3c,0x00 -+// 48763 빻 ; -+,0x00,0x00,0x00,0x25,0x15,0x15,0x15,0x15,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x10,0x48,0x48,0x48,0x48,0x0e,0xc8,0x00,0xc0,0x1c,0xc0,0x30,0x10,0xe0,0x00 -+// 48764 빼 ; -+,0x00,0x00,0x00,0x00,0x01,0x15,0x09,0x0d,0x09,0x09,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0x54,0x54,0x5c,0x54,0x54,0x14,0x14,0x14,0x04,0x00 -+// 48765 빽 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x0a,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x54,0x54,0x54,0x54,0x54,0x54,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 48766 빾 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x54,0x54,0x54,0x54,0x54,0x10,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 48767 빿 ; -+,0x00,0x00,0x00,0x01,0x01,0x0d,0x01,0x09,0x08,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x00,0x00,0x08,0x10,0x18,0x24,0x42,0x00 -+// 48768 뺀 ; -+,0x00,0x00,0x00,0x00,0x00,0x15,0x15,0x15,0x11,0x0d,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0x54,0x54,0x54,0x54,0x14,0x04,0x00,0x00,0xde,0x00 -+// 48769 뺁 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x09,0x08,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0xf8,0x10,0x18,0x24,0xc2,0x00 -+// 48770 뺂 ; -+,0x00,0x00,0x00,0x00,0x15,0x05,0x05,0x05,0x0d,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x2c,0x80,0x40,0xc4,0x5c,0x40,0x00,0x30,0x04,0x30,0x48,0xc8,0x78,0x00 -+// 48771 뺃 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x09,0x09,0x0d,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x54,0x54,0x00,0x0c,0x00,0x00,0x00,0x1c,0x00 -+// 48772 뺄 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x09,0x01,0x0c,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x54,0xd4,0x5c,0x54,0x00,0x00,0x04,0x08,0x00,0x00,0x06,0x00 -+// 48773 뺅 ; -+,0x00,0x00,0x00,0x00,0x03,0x0b,0x0b,0x0b,0x0a,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x54,0x54,0xd4,0x54,0x54,0xd4,0x00,0xa4,0x04,0x04,0x04,0x00,0x00 -+// 48774 뺆 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x08,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0xa4,0x24,0x24,0x24,0x20,0x00 -+// 48775 뺇 ; -+,0x00,0x00,0x00,0x00,0x03,0x0b,0x0b,0x0b,0x0a,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x54,0xd4,0x00,0x44,0x2c,0x04,0x24,0x24,0x00 -+// 48776 뺈 ; -+,0x00,0x00,0x00,0x00,0x11,0x0d,0x01,0x01,0x0c,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x24,0x84,0x44,0xc4,0x5c,0x44,0x00,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 48777 뺉 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0x04,0x20,0x20,0x20,0x20,0x3c,0x00 -+// 48778 뺊 ; -+,0x00,0x00,0x00,0x00,0x11,0x09,0x09,0x01,0x0d,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x04,0x00,0x40,0x08,0x28,0x28,0x4e,0x00 -+// 48779 뺋 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x09,0x09,0x08,0x00,0x0d,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x04,0x38,0x06,0x10,0x24,0x44,0x28,0x00 -+// 48780 뺌 ; -+,0x00,0x00,0x00,0x01,0x03,0x0b,0x0b,0x0b,0x08,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x8c,0x04,0x04,0x04,0x00,0x00 -+// 48781 뺍 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0a,0x0a,0x0a,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x34,0x54,0x54,0xd4,0x54,0x54,0xd4,0x00,0x04,0x84,0x04,0x04,0x84,0x00 -+// 48782 뺎 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x01,0x01,0x0d,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x5c,0x54,0x00,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 48783 뺏 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x44,0x20,0x60,0xd0,0x8c,0x02,0x00 -+// 48784 뺐 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x09,0x01,0x0d,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x24,0xd4,0x54,0x54,0x5c,0x54,0x04,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 48785 뺑 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x04,0x30,0x88,0x84,0x84,0x48,0x00 -+// 48786 뺒 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x34,0x54,0x54,0x54,0x54,0x54,0x10,0x00,0xfc,0x40,0x90,0x0c,0x04,0x00 -+// 48787 뺓 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x08,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0xe0,0x00,0x60,0x60,0x98,0x04,0x00 -+// 48788 뺔 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x34,0x54,0x54,0xd4,0x54,0x54,0x10,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 48789 뺕 ; -+,0x00,0x00,0x00,0x00,0x03,0x0b,0x0b,0x0b,0x0e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x54,0xd4,0x00,0x3c,0x00,0x08,0x00,0xfc,0x00 -+// 48790 뺖 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x01,0x01,0x0d,0x00,0x00,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x5c,0x54,0x40,0x00,0x0c,0x10,0x10,0x90,0x3e,0x00 -+// 48791 뺗 ; -+,0x00,0x00,0x00,0x00,0x09,0x0d,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x04,0xe0,0x0c,0x60,0x90,0x00,0xb0,0x00 -+// 48792 뺘 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x15,0x15,0x11,0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x08,0x08,0xca,0x08,0x08,0x08,0xce,0x08,0x08,0x08,0x08,0x00 -+// 48793 뺙 ; -+,0x00,0x00,0x00,0x15,0x15,0x1d,0x15,0x15,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x40,0x0e,0x48,0x08,0xc8,0x08,0x00,0x90,0x10,0x10,0x10,0x10,0x00 -+// 48794 뺚 ; -+,0x00,0x00,0x00,0x05,0x15,0x1d,0x11,0x15,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x2e,0xc8,0x08,0xc8,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 48795 뺛 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x40,0x4e,0x40,0x40,0x48,0x08,0x00,0x10,0x10,0x30,0x44,0x04,0x00 -+// 48796 뺜 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x14,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x48,0x08,0x4e,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 48797 뺝 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x18,0x08,0x08,0x0b,0x08,0x00,0x00,0x10,0x18,0x40,0x4e,0x48,0x40,0x40,0x0e,0x00,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 48798 뺞 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x00,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x10,0x48,0x28,0x0e,0x48,0x08,0xc8,0x08,0x30,0x04,0x30,0x48,0x88,0x78,0x00 -+// 48799 뺟 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x15,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x40,0x4a,0x48,0x40,0x40,0x0e,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 48800 뺠 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x14,0x00,0x03,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x08,0x48,0x28,0xc8,0x08,0x48,0x0e,0x00,0x10,0x10,0x30,0x00,0xfc,0x00 -+// 48801 뺡 ; -+,0x00,0x00,0x00,0x15,0x15,0x15,0x15,0x15,0x10,0x00,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x10,0x48,0x28,0x2e,0x68,0x28,0xe8,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 48802 뺢 ; -+,0x00,0x00,0x00,0x15,0x10,0x14,0x10,0x14,0x10,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x08,0x28,0x2b,0xe8,0x28,0xe8,0x08,0x08,0x48,0x48,0x48,0x48,0x40,0x00 -+// 48803 뺣 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x48,0x28,0x0a,0xc8,0x08,0xc8,0x08,0x10,0x88,0x58,0x08,0x08,0x48,0x00 -+// 48804 뺤 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x18,0x60,0x0e,0x48,0x08,0xc8,0x08,0x10,0x10,0x10,0x28,0x44,0x04,0x00 -+// 48805 뺥 ; -+,0x00,0x00,0x00,0x05,0x10,0x1c,0x10,0x10,0x10,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x08,0x28,0x28,0xe8,0x28,0xa8,0x0e,0x08,0x50,0x40,0x40,0x40,0x3c,0x00 -+// 48806 뺦 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x0b,0x00,0x0e,0x08,0x0c,0x00,0x00,0x00,0x18,0x28,0x2a,0xe8,0x28,0xe8,0x0e,0x00,0x58,0x08,0x40,0x10,0x9c,0x00 -+// 48807 뺧 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x18,0x48,0x2a,0xc8,0x08,0xc8,0x08,0x10,0x44,0x10,0x44,0x44,0x28,0x00 -+// 48808 뺨 ; -+,0x00,0x00,0x00,0x05,0x15,0x1d,0x15,0x15,0x1c,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x40,0x4a,0xc8,0x40,0x40,0x08,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 48809 뺩 ; -+,0x00,0x00,0x00,0x15,0x11,0x15,0x11,0x14,0x10,0x00,0x02,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x28,0x2a,0xe8,0x28,0xe8,0x08,0x10,0x00,0x10,0x00,0x00,0x00,0x00 -+// 48810 뺪 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x01,0x08,0x0d,0x00,0x04,0x00,0x00,0x00,0x00,0x08,0x68,0x2a,0xc8,0x08,0xc8,0x0e,0x10,0x10,0x10,0x38,0x24,0x40,0x00 -+// 48811 뺫 ; -+,0x00,0x00,0x00,0x05,0x15,0x1d,0x15,0x15,0x10,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x10,0x08,0x40,0x0e,0xc8,0x08,0xc8,0x08,0x80,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 48812 뺬 ; -+,0x00,0x00,0x00,0x05,0x11,0x15,0x11,0x14,0x10,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x28,0x2f,0xe8,0x28,0xe8,0x08,0x10,0x10,0x10,0xb8,0xe4,0x00,0x00 -+// 48813 뺭 ; -+,0x00,0x00,0x00,0x05,0x15,0x1d,0x15,0x15,0x1c,0x00,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x10,0x08,0x40,0x0e,0xc8,0x08,0x08,0x0e,0x40,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 48814 뺮 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x15,0x10,0x00,0x06,0x00,0x01,0x02,0x04,0x00,0x00,0x10,0x10,0x40,0x4e,0x40,0x40,0x48,0x08,0x00,0xc0,0xc0,0x20,0x18,0x08,0x00 -+// 48815 뺯 ; -+,0x00,0x00,0x00,0x15,0x15,0x15,0x15,0x14,0x00,0x00,0x00,0x06,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x28,0x2e,0xa8,0x28,0xe8,0x08,0xc0,0x08,0xc0,0xc0,0x10,0x0c,0x00 -+// 48816 뺰 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x15,0x14,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x40,0x48,0xc8,0x48,0x48,0x0e,0x00,0xb0,0x10,0xf0,0x10,0x10,0x00 -+// 48817 뺱 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x15,0x14,0x10,0x00,0x07,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x28,0x2a,0xe8,0x28,0x28,0x0e,0x00,0x78,0x00,0x18,0x00,0xfc,0x00 -+// 48818 뺲 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x15,0x15,0x00,0x06,0x00,0x01,0x01,0x0e,0x00,0x00,0x00,0x10,0x40,0x48,0x48,0x40,0x40,0x0e,0x00,0x00,0x20,0x20,0x20,0x0c,0x00 -+// 48819 뺳 ; -+,0x00,0x00,0x00,0x15,0x14,0x14,0x14,0x14,0x10,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x28,0x2a,0xe8,0x28,0xe8,0x0e,0xe0,0x0c,0x40,0x10,0x10,0xa0,0x00 -+// 48820 뺴 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x09,0x0d,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x14,0x54,0x54,0xd4,0x54,0x54,0x54,0x14,0x14,0x14,0x14,0x04,0x00 -+// 48821 뺵 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x0a,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 48822 뺶 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0a,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 48823 뺷 ; -+,0x00,0x00,0x00,0x01,0x13,0x0b,0x0b,0x0b,0x09,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x54,0x14,0x10,0x88,0x98,0x98,0xa4,0xc2,0x00 -+// 48824 뺸 ; -+,0x00,0x00,0x00,0x00,0x05,0x11,0x0d,0x01,0x01,0x0c,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0x54,0x54,0x54,0x54,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 48825 뺹 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x01,0x09,0x08,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x04,0x00,0xf0,0x10,0x28,0x44,0x84,0x00 -+// 48826 뺺 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x08,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x24,0x44,0x54,0xd4,0x54,0x54,0x44,0x30,0x06,0x30,0x48,0xc4,0x38,0x00 -+// 48827 뺻 ; -+,0x00,0x00,0x00,0x00,0x11,0x0f,0x0b,0x0b,0x09,0x00,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 48828 뺼 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x09,0x09,0x0d,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x5c,0xc4,0x44,0x5c,0x04,0x00,0x8c,0x08,0x18,0x00,0xfe,0x00 -+// 48829 뺽 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x54,0x54,0xd4,0x54,0x54,0xd4,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 48830 뺾 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0e,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x44,0x54,0xd4,0x54,0x54,0x04,0x00,0xa4,0x24,0x24,0x20,0x28,0x00 -+// 48831 뺿 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x54,0x54,0xd4,0x54,0x54,0xd4,0x00,0x24,0x2c,0x24,0x24,0x24,0x00 -+// 48832 뻀 ; -+,0x00,0x00,0x00,0x01,0x13,0x0f,0x0b,0x0b,0x0e,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x54,0x54,0xd4,0x54,0x54,0x44,0x00,0x88,0x10,0x18,0x24,0x42,0x00 -+// 48833 뻁 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0a,0x0a,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x54,0x54,0xd4,0x54,0x54,0x54,0x00,0x60,0x00,0x20,0x00,0x3c,0x00 -+// 48834 뻂 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x01,0x01,0x0d,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x24,0x84,0x5c,0xc4,0x44,0x5c,0x04,0x00,0x40,0x08,0x08,0x08,0x5c,0x00 -+// 48835 뻃 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x01,0x01,0x0d,0x00,0x09,0x01,0x0d,0x08,0x06,0x00,0x00,0x08,0x24,0x84,0x5c,0xc4,0x44,0x5c,0x04,0x30,0x00,0x10,0x38,0x44,0x4c,0x00 -+// 48836 뻄 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x09,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x54,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 48837 뻅 ; -+,0x00,0x00,0x00,0x00,0x0b,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x54,0x54,0xd4,0x54,0x54,0xd4,0x00,0x04,0x84,0x04,0x04,0x84,0x00 -+// 48838 뻆 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x01,0x09,0x0c,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x44,0x54,0x44,0x44,0x54,0x04,0x10,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 48839 뻇 ; -+,0x00,0x00,0x00,0x01,0x13,0x0f,0x0b,0x0b,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x14,0x44,0x20,0x60,0x90,0x0c,0x04,0x00 -+// 48840 뻈 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x24,0x54,0x54,0xd4,0x54,0x54,0x04,0x10,0x08,0x08,0x94,0x66,0x42,0x00 -+// 48841 뻉 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x04,0x30,0x88,0x84,0x84,0xd8,0x00 -+// 48842 뻊 ; -+,0x00,0x00,0x00,0x01,0x13,0x0b,0x0b,0x0b,0x09,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x54,0x00,0xfc,0x40,0xb0,0x08,0x04,0x00 -+// 48843 뻋 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x0c,0x34,0x54,0x54,0xd4,0x54,0x54,0x04,0xe0,0x04,0xe0,0x60,0x98,0x04,0x00 -+// 48844 뻌 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0a,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 48845 뻍 ; -+,0x00,0x00,0x00,0x00,0x03,0x0b,0x0b,0x0b,0x0a,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0xd4,0x00,0x38,0x00,0x08,0x00,0x1c,0x00 -+// 48846 뻎 ; -+,0x00,0x00,0x00,0x01,0x15,0x0d,0x01,0x01,0x09,0x00,0x00,0x00,0x01,0x00,0x04,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x0c,0x10,0x10,0x90,0xbe,0x00 -+// 48847 뻏 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x54,0x54,0xd4,0x54,0x54,0x04,0x60,0x0c,0x60,0x90,0x00,0x90,0x00 -+// 48848 뻐 ; -+,0x00,0x00,0x00,0x00,0x12,0x02,0x1a,0x02,0x02,0x02,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0x84,0x84,0xb4,0x94,0x84,0xa4,0x84,0x04,0x04,0x04,0x04,0x00 -+// 48849 뻑 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x84,0x84,0xbc,0x84,0xa4,0x04,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 48850 뻒 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x94,0x94,0xf4,0x94,0x94,0x04,0x04,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 48851 뻓 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x02,0x02,0x0a,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xbc,0xa4,0xa4,0x04,0x18,0x88,0x98,0x9c,0xa6,0xc2,0x00 -+// 48852 뻔 ; -+,0x00,0x00,0x00,0x00,0x12,0x0a,0x02,0x02,0x0a,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xa4,0xa4,0xa4,0xbc,0xa4,0xa4,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 48853 뻕 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x94,0x94,0xf4,0x94,0x94,0x04,0x04,0x78,0x08,0x18,0xa6,0x42,0x00 -+// 48854 뻖 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xbc,0xa4,0x84,0x38,0x02,0x18,0x24,0xc4,0x28,0x00 -+// 48855 뻗 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0x94,0xf4,0x94,0x84,0x84,0x04,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 48856 뻘 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xbc,0xa4,0x84,0x00,0xc8,0x08,0x18,0x00,0x04,0x00 -+// 48857 뻙 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xb4,0x94,0xb4,0x94,0xe4,0x04,0x04,0x84,0x84,0x04,0x04,0x00,0x00 -+// 48858 뻚 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xb4,0x94,0xf4,0x94,0xa4,0x04,0x04,0xa4,0x24,0x24,0x24,0x20,0x00 -+// 48859 뻛 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0xd4,0x94,0x94,0x74,0x04,0x04,0x24,0x24,0x04,0x04,0x24,0x00 -+// 48860 뻜 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x94,0xa4,0x04,0x10,0x88,0x10,0x18,0x24,0x42,0x00 -+// 48861 뻝 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0xa4,0x84,0xa4,0x9c,0xa4,0x04,0x04,0xe0,0x20,0x20,0x00,0x3e,0x00 -+// 48862 뻞 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xbc,0xa4,0x84,0x00,0x4c,0x08,0x28,0x28,0x0e,0x00 -+// 48863 뻟 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xbc,0xa4,0x04,0x38,0x02,0x10,0x24,0x04,0x24,0x00 -+// 48864 뻠 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0x94,0xf4,0x94,0x84,0x84,0x00,0x0c,0x04,0x00,0x08,0x00,0x00 -+// 48865 뻡 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0xb4,0x94,0xe4,0x04,0x08,0x04,0x8c,0x04,0x04,0x8c,0x00 -+// 48866 뻢 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0xa0,0xa0,0xa0,0xb8,0xa0,0x80,0x18,0x88,0x90,0x98,0xa4,0x82,0x00 -+// 48867 뻣 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x84,0x84,0xfc,0x84,0x84,0x84,0x04,0x20,0x60,0x90,0x08,0x04,0x00 -+// 48868 뻤 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xbc,0xa4,0x04,0x10,0x08,0x10,0x98,0x64,0x42,0x00 -+// 48869 뻥 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0x84,0xb4,0x84,0xa4,0x84,0x24,0x70,0x88,0x08,0x88,0xf8,0x00 -+// 48870 뻦 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xa4,0x84,0xfc,0x84,0xa4,0x04,0x00,0xfc,0x40,0xd0,0x88,0x04,0x00 -+// 48871 뻧 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x94,0xa4,0x04,0xe0,0x0c,0x40,0x60,0x88,0x04,0x00 -+// 48872 뻨 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xbc,0xa4,0xa4,0x84,0x00,0xcc,0x0c,0xcc,0x00,0x00,0x00 -+// 48873 뻩 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0x94,0xf4,0x9c,0xa4,0x04,0x04,0x30,0x00,0x08,0x00,0xfc,0x00 -+// 48874 뻪 ; -+,0x00,0x00,0x00,0x16,0x12,0x1e,0x02,0x02,0x0a,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x08,0xa8,0xa8,0xa8,0xa8,0xa8,0x88,0x00,0xfc,0x10,0x10,0x90,0x3e,0x00 -+// 48875 뻫 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xac,0xac,0xa4,0x00,0xe0,0x1c,0x60,0x90,0x00,0x90,0x00 -+// 48876 뻬 ; -+,0x00,0x00,0x00,0x00,0x05,0x19,0x09,0x0d,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x14,0x54,0x54,0x54,0x74,0x54,0x54,0x14,0x14,0x14,0x04,0x04,0x00 -+// 48877 뻭 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0b,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x54,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 48878 뻮 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0a,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 48879 뻯 ; -+,0x00,0x00,0x00,0x05,0x19,0x0d,0x09,0x09,0x09,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x54,0x10,0x88,0x88,0x98,0xa4,0xc2,0x00 -+// 48880 뻰 ; -+,0x00,0x00,0x00,0x00,0x01,0x15,0x0d,0x01,0x01,0x0d,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0x54,0x54,0x54,0x54,0x14,0x04,0x00,0x00,0xce,0x00 -+// 48881 뻱 ; -+,0x00,0x00,0x00,0x07,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x08,0x04,0x04,0x05,0x06,0x00,0x00,0x0c,0x14,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0xf8,0x10,0x18,0x24,0xc2,0x00 -+// 48882 뻲 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x34,0x54,0x54,0xf4,0x54,0x54,0x14,0x30,0x16,0x10,0x44,0xc4,0x38,0x00 -+// 48883 뻳 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0a,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x14,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0x0c,0x00,0x00,0x00,0xfc,0x00 -+// 48884 뻴 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x01,0x09,0x08,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x34,0x54,0x54,0x74,0x54,0x54,0x00,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 48885 뻵 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0a,0x0a,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x54,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 48886 뻶 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0e,0x0a,0x0a,0x08,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x14,0x54,0x54,0xd4,0x54,0xd4,0x14,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 48887 뻷 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0xd4,0x04,0x24,0x24,0x24,0x24,0x24,0x00 -+// 48888 뻸 ; -+,0x00,0x00,0x00,0x05,0x11,0x0d,0x01,0x09,0x08,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x08,0x10,0x18,0x24,0x42,0x00 -+// 48889 뻹 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0a,0x08,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x0c,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0x04,0x60,0x20,0x20,0x20,0x3c,0x00 -+// 48890 뻺 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x09,0x09,0x0d,0x00,0x0f,0x01,0x0f,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x54,0xd4,0x54,0x54,0x54,0x00,0x48,0x08,0x08,0x28,0x5e,0x00 -+// 48891 뻻 ; -+,0x00,0x00,0x00,0x05,0x11,0x0d,0x01,0x09,0x09,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x08,0x34,0x54,0x54,0xf4,0x54,0x54,0x04,0x38,0x06,0x10,0x2c,0x44,0x2c,0x00 -+// 48892 뻼 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x0a,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0x8c,0x04,0x84,0x84,0x80,0x00 -+// 48893 뻽 ; -+,0x00,0x00,0x00,0x01,0x1b,0x0f,0x0b,0x0b,0x09,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x54,0x00,0x04,0x04,0x04,0x04,0x84,0x00 -+// 48894 뻾 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x09,0x09,0x09,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x54,0x18,0x88,0x90,0x98,0xa4,0x82,0x00 -+// 48895 뻿 ; -+,0x00,0x00,0x00,0x01,0x1b,0x0f,0x0b,0x0b,0x0a,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x54,0x04,0x20,0x60,0x50,0x8c,0x06,0x00 -+// 48896 뼀 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x09,0x09,0x0d,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x54,0x10,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 48897 뼁 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x14,0x54,0x54,0xf4,0x54,0x54,0x14,0x04,0x30,0x80,0x84,0x84,0x78,0x00 -+// 48898 뼂 ; -+,0x00,0x00,0x00,0x00,0x1b,0x0f,0x0b,0x0b,0x09,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x54,0x04,0xfc,0x40,0x90,0x08,0x04,0x00 -+// 48899 뼃 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0e,0x0a,0x0a,0x08,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x0c,0x34,0x54,0x54,0xf4,0x54,0x54,0x14,0xe0,0x00,0xe0,0x60,0x98,0x06,0x00 -+// 48900 뼄 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0a,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x0c,0x14,0x54,0x54,0xf4,0x54,0x54,0x14,0x00,0xc4,0x04,0xf4,0x04,0x04,0x00 -+// 48901 뼅 ; -+,0x00,0x00,0x00,0x00,0x15,0x0b,0x0b,0x0b,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x54,0x54,0x00,0x3c,0x00,0x08,0x00,0xfc,0x00 -+// 48902 뼆 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x01,0x01,0x09,0x00,0x06,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x0c,0x10,0x10,0x90,0x3e,0x00 -+// 48903 뼇 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x54,0x54,0x54,0xe0,0x1c,0x60,0x90,0x00,0xf0,0x00 -+// 48904 뼈 ; -+,0x00,0x00,0x00,0x00,0x12,0x02,0x1e,0x02,0x02,0x02,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0xb4,0xa4,0xa4,0xb4,0xa4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 48905 뼉 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x94,0xe4,0x94,0xb4,0x04,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 48906 뼊 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0x9c,0xa4,0x84,0xbc,0x04,0x00,0xac,0x84,0x84,0x84,0x00,0x00 -+// 48907 뼋 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0x9c,0xa4,0x84,0x9c,0x84,0x00,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 48908 뼌 ; -+,0x00,0x00,0x00,0x00,0x12,0x0a,0x0a,0x02,0x0a,0x0a,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xa4,0xa4,0xa4,0xa4,0xb4,0xa4,0x04,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 48909 뼍 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0x9c,0xa4,0x84,0x9c,0x84,0x00,0x7c,0x10,0x18,0xa4,0x42,0x00 -+// 48910 뼎 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xbc,0xa4,0xa4,0xbc,0x04,0x38,0x02,0x10,0x24,0xc4,0x28,0x00 -+// 48911 뼏 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0x94,0xe4,0x84,0x94,0x84,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 48912 뼐 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xbc,0xa4,0xa4,0xbc,0x84,0x00,0x88,0x08,0x18,0x00,0x0e,0x00 -+// 48913 뼑 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x94,0x94,0xf4,0x94,0xf4,0x04,0x04,0xa4,0x84,0x04,0x04,0x84,0x00 -+// 48914 뼒 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0x94,0xe4,0x84,0xf4,0x04,0x04,0xa4,0x24,0x24,0x24,0x20,0x00 -+// 48915 뼓 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x04,0x94,0x94,0xf4,0x94,0x54,0x04,0x00,0x44,0x24,0x04,0x04,0x24,0x00 -+// 48916 뼔 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x94,0xa4,0x94,0xb4,0x04,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 48917 뼕 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x09,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0x9c,0xe4,0x84,0xb4,0x84,0x04,0x60,0x20,0x20,0x00,0x3c,0x00 -+// 48918 뼖 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x04,0xa4,0x9c,0xe4,0x84,0xbc,0x84,0x04,0x40,0x08,0x28,0x28,0x4e,0x00 -+// 48919 뼗 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0e,0x0a,0x0a,0x08,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x04,0xa4,0xbc,0xa4,0xa4,0xbc,0x04,0x38,0x06,0x10,0x24,0x44,0x2c,0x00 -+// 48920 뼘 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x24,0xa4,0x9c,0xa4,0x84,0xbc,0x04,0x00,0x0c,0x0c,0x08,0x08,0x80,0x00 -+// 48921 뼙 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0x94,0xa4,0x94,0xf4,0x04,0x08,0x04,0x8c,0x04,0x04,0x04,0x00 -+// 48922 뼚 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xa4,0xbc,0xa4,0xa4,0xbc,0x84,0x18,0x88,0x90,0x98,0xa4,0x82,0x00 -+// 48923 뼛 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xa4,0xbc,0xa4,0x84,0xb4,0x04,0x04,0x20,0x60,0xd0,0x88,0x04,0x00 -+// 48924 뼜 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xa4,0x9c,0xa4,0x84,0xbc,0x04,0x10,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 48925 뼝 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x94,0xe4,0x84,0x94,0x84,0x04,0x30,0x88,0x00,0x88,0xd8,0x00 -+// 48926 뼞 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0x84,0x94,0xa4,0x84,0xb4,0x04,0x00,0xe0,0x60,0x90,0x0c,0x04,0x00 -+// 48927 뼟 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x0c,0x04,0x84,0x94,0xa4,0x84,0xb4,0x04,0xe0,0x04,0xe0,0x60,0x98,0x06,0x00 -+// 48928 뼠 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x94,0xe4,0x84,0x94,0x04,0x00,0xcc,0x0c,0xe4,0x04,0x00,0x00 -+// 48929 뼡 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0x94,0xe4,0x84,0xb4,0x04,0x04,0x3c,0x00,0x0c,0x00,0xfc,0x00 -+// 48930 뼢 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x02,0x02,0x0a,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xa4,0xbc,0xa4,0xa4,0xbc,0x84,0x00,0x0c,0x10,0x10,0x90,0x9e,0x00 -+// 48931 뼣 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xbc,0xa4,0x84,0xbc,0x04,0x60,0x1c,0x60,0x90,0x88,0xd0,0x00 -+// 48932 뼤 ; -+,0x00,0x00,0x00,0x00,0x05,0x0d,0x0d,0x0d,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x54,0x54,0xd4,0x54,0x54,0x54,0x14,0x14,0x14,0x14,0x04,0x00 -+// 48933 뼥 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0a,0x0a,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x54,0x54,0xd4,0x14,0x34,0x94,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 48934 뼦 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0xd4,0x54,0x54,0x14,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 48935 뼧 ; -+,0x00,0x00,0x00,0x01,0x13,0x0f,0x0b,0x0b,0x09,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x10,0x88,0x98,0x94,0xa6,0xc2,0x00 -+// 48936 뼨 ; -+,0x00,0x00,0x00,0x00,0x05,0x15,0x0d,0x01,0x01,0x0d,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0x54,0x54,0x54,0x54,0x14,0x04,0x00,0x00,0xce,0x00 -+// 48937 뼩 ; -+,0x00,0x00,0x00,0x05,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x08,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0xf8,0x10,0x18,0x24,0x42,0x00 -+// 48938 뼪 ; -+,0x00,0x00,0x00,0x01,0x15,0x0d,0x09,0x09,0x0d,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x30,0x06,0x30,0x48,0xc4,0x78,0x00 -+// 48939 뼫 ; -+,0x00,0x00,0x00,0x01,0x1b,0x0f,0x0b,0x0b,0x0b,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 48940 뼬 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x05,0x05,0x0d,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x74,0xd4,0x54,0x54,0x00,0x00,0x08,0x08,0x18,0x00,0xfe,0x00 -+// 48941 뼭 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0a,0x0a,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x54,0x54,0xd4,0x54,0x54,0xd4,0x00,0xa4,0x84,0x04,0x04,0x04,0x00 -+// 48942 뼮 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x14,0x54,0x74,0xd4,0x54,0xd4,0x14,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 48943 뼯 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0e,0x0a,0x0a,0x08,0x00,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x04,0x14,0x54,0x74,0xd4,0x54,0xd4,0x14,0x04,0x24,0x24,0x24,0x24,0x24,0x00 -+// 48944 뼰 ; -+,0x00,0x00,0x00,0x05,0x11,0x0d,0x09,0x09,0x08,0x00,0x00,0x00,0x0c,0x04,0x06,0x00,0x00,0x0c,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x88,0x10,0x18,0x24,0x42,0x00 -+// 48945 뼱 ; -+,0x00,0x00,0x00,0x05,0x0a,0x0e,0x0a,0x0a,0x08,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x04,0x14,0x54,0x74,0xd4,0x54,0xd4,0x14,0x04,0x60,0x20,0x20,0x20,0x3c,0x00 -+// 48946 뼲 ; -+,0x00,0x00,0x00,0x05,0x09,0x0d,0x09,0x09,0x08,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x04,0x00,0x08,0x28,0x28,0x4e,0x00 -+// 48947 뼳 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x09,0x09,0x09,0x00,0x09,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x38,0x04,0x10,0x2c,0x44,0x28,0x00 -+// 48948 뼴 ; -+,0x00,0x00,0x00,0x05,0x13,0x0f,0x0b,0x0b,0x09,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 48949 뼵 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0a,0x0a,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0x54,0xd4,0x54,0x54,0x54,0x00,0x04,0x84,0x04,0x84,0x84,0x00 -+// 48950 뼶 ; -+,0x00,0x00,0x00,0x01,0x15,0x0d,0x01,0x09,0x0d,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x54,0x04,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 48951 뼷 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0a,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0x44,0x20,0x60,0x98,0x04,0x00,0x00 -+// 48952 뼸 ; -+,0x00,0x00,0x00,0x05,0x09,0x0d,0x09,0x09,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x10,0x08,0x18,0x9c,0x64,0x42,0x00 -+// 48953 뼹 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x50,0x50,0xd0,0x50,0x50,0x10,0x00,0x30,0x84,0x84,0x84,0x58,0x00 -+// 48954 뼺 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x0a,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x14,0x54,0x74,0xd4,0x54,0x54,0x14,0x00,0xe0,0x60,0x90,0x0c,0x00,0x00 -+// 48955 뼻 ; -+,0x00,0x00,0x00,0x01,0x0a,0x0e,0x0a,0x0a,0x08,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x0c,0x14,0x54,0x74,0xd4,0x54,0xd4,0x14,0xe0,0x00,0x60,0x60,0x98,0x04,0x00 -+// 48956 뼼 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x14,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x84,0x04,0xe4,0x04,0x04,0x00 -+// 48957 뼽 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0b,0x0b,0x0a,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x54,0x00,0x3c,0x00,0x08,0x00,0x1c,0x00 -+// 48958 뼾 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x01,0x09,0x08,0x00,0x02,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x34,0x54,0x54,0x54,0x54,0x54,0x14,0x00,0x0c,0x10,0x10,0x90,0x3e,0x00 -+// 48959 뼿 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0f,0x0b,0x0b,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x54,0x54,0xd4,0x54,0x54,0x14,0xe0,0x1c,0x60,0x90,0x88,0xf0,0x00 -+// 48960 뽀 ; -+,0x00,0x00,0x00,0x10,0x09,0x0b,0x01,0x09,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x40,0x40,0x48,0x40,0x40,0x48,0x00,0x80,0x80,0xc6,0x00,0x00,0x00 -+// 48961 뽁 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x1c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x2c,0x04,0x28,0x80,0x80,0x00,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 48962 뽂 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x2c,0x24,0x24,0x20,0x80,0xce,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 48963 뽃 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x2c,0x24,0x24,0x80,0x80,0xce,0x00,0x10,0x10,0x30,0x44,0x80,0x00 -+// 48964 뽄 ; -+,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x08,0x24,0x2c,0x04,0x28,0x80,0xc2,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 48965 뽅 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x08,0x24,0x2c,0x24,0x24,0x80,0x80,0xce,0x00,0xb0,0x30,0x30,0x44,0x80,0x00 -+// 48966 뽆 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x08,0x04,0x2c,0x04,0x24,0x80,0x80,0xce,0x30,0x00,0xf0,0x78,0x08,0x48,0x00 -+// 48967 뽇 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x48,0x28,0x20,0x00,0x28,0x80,0xce,0x00,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 48968 뽈 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x08,0x00,0x28,0x00,0x20,0x80,0x80,0x8e,0x00,0x90,0x10,0x70,0x00,0xf8,0x00 -+// 48969 뽉 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x01,0x00,0x0c,0x08,0x0f,0x00,0x00,0x08,0x00,0x28,0x00,0x28,0x80,0x80,0x06,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 48970 뽊 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x08,0x24,0x2c,0x24,0x24,0x80,0x00,0x06,0x00,0x24,0x24,0x24,0x20,0x20,0x00 -+// 48971 뽋 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x24,0x2c,0x04,0x24,0x80,0x80,0x00,0x08,0x44,0x2c,0x04,0x04,0x24,0x00 -+// 48972 뽌 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x24,0x2c,0x24,0x24,0x80,0x00,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 48973 뽍 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x1c,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x80,0x40,0x4e,0x00,0xe8,0x00,0x2c,0x00,0x3c,0x00 -+// 48974 뽎 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x01,0x01,0x0d,0x08,0x0e,0x00,0x00,0x00,0x04,0x2c,0x04,0x24,0x80,0x80,0x06,0x00,0x00,0x08,0x08,0x00,0x5c,0x00 -+// 48975 뽏 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x01,0x00,0x1c,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x08,0x24,0x2c,0x24,0x24,0x80,0x80,0x0e,0x30,0x04,0x10,0x28,0x44,0x28,0x00 -+// 48976 뽐 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x01,0x00,0x1c,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x24,0x2c,0x24,0x24,0x80,0x00,0xce,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 48977 뽑 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x04,0x06,0x04,0x04,0x02,0x00,0x00,0x08,0x00,0x28,0x00,0x20,0x80,0x80,0x06,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 48978 뽒 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x08,0x0d,0x08,0x08,0x04,0x00,0x00,0x00,0x04,0x2c,0x24,0x24,0x20,0x80,0x8e,0x10,0x90,0x10,0x08,0x24,0x42,0x00 -+// 48979 뽓 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x00,0x1c,0x00,0x00,0x00,0x01,0x06,0x08,0x00,0x00,0x08,0x00,0x28,0x00,0x28,0x80,0x80,0x8e,0x80,0xc0,0x80,0x20,0x18,0x00,0x00 -+// 48980 뽔 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x24,0x2c,0x24,0x24,0xa0,0x40,0x06,0x00,0x10,0x10,0xa8,0xc4,0x00,0x00 -+// 48981 뽕 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x40,0x28,0x20,0x00,0x28,0x80,0xc6,0x00,0xc0,0x00,0x10,0x10,0xe0,0x00 -+// 48982 뽖 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x24,0x2c,0x24,0x24,0x80,0x40,0xce,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 48983 뽗 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x01,0x00,0x0f,0x00,0x03,0x0c,0x00,0x00,0x00,0x24,0x2c,0x24,0x24,0xa0,0x80,0x0e,0xc0,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 48984 뽘 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x01,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x2c,0x24,0x24,0x80,0x00,0xcf,0x00,0x08,0x08,0xe8,0x08,0x08,0x00 -+// 48985 뽙 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1c,0x00,0x06,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x20,0x00,0x4e,0x00,0xf0,0x00,0x10,0x00,0xf8,0x00 -+// 48986 뽚 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x01,0x00,0x1c,0x00,0x04,0x00,0x02,0x01,0x0e,0x00,0x00,0x00,0x24,0x2c,0x24,0x24,0x80,0x00,0xce,0x00,0x08,0x20,0x20,0x20,0x3c,0x00 -+// 48987 뽛 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1d,0x00,0x0e,0x00,0x00,0x02,0x01,0x00,0x00,0x08,0x00,0x28,0x00,0x28,0x80,0x80,0x00,0xc0,0xdc,0xc0,0x20,0x20,0xe0,0x00 -+// 48988 뽜 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x15,0x02,0x02,0x03,0x18,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x08,0xc8,0x08,0x18,0xc8,0x08,0x08,0x08,0x00,0x00 -+// 48989 뽝 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x00,0x18,0x08,0x00,0x10,0x00 -+// 48990 뽞 ; -+,0x00,0x00,0x00,0x15,0x1d,0x11,0x1f,0x02,0x03,0x10,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x8f,0x08,0xc8,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 48991 뽟 ; -+,0x00,0x00,0x00,0x15,0x1d,0x10,0x1f,0x02,0x03,0x18,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x18,0x48,0x08,0xc8,0x08,0x8e,0x08,0xc8,0x00,0x20,0x20,0x20,0x48,0x84,0x00 -+// 48992 뽠 ; -+,0x00,0x00,0x00,0x15,0x15,0x15,0x1f,0x02,0x03,0x1e,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0xce,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x1e,0x00 -+// 48993 뽡 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x18,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0xf0,0x10,0x30,0x4c,0x84,0x00 -+// 48994 뽢 ; -+,0x00,0x00,0x00,0x12,0x0e,0x02,0x0a,0x01,0x01,0x1c,0x08,0x04,0x04,0x05,0x06,0x00,0x00,0x18,0x08,0xa8,0xa8,0xa8,0xaf,0x08,0xe8,0x38,0x00,0xd0,0x38,0x44,0x68,0x00 -+// 48995 뽣 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x14,0x03,0x02,0x1f,0x00,0x06,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x08,0xc8,0x08,0xcf,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 48996 뽤 ; -+,0x00,0x00,0x00,0x15,0x15,0x15,0x1f,0x02,0x03,0x1e,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0xce,0x08,0xf8,0x00,0xb0,0x10,0x70,0x00,0x08,0x00 -+// 48997 뽥 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x1f,0x02,0x03,0x1c,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0xce,0x08,0xe8,0x00,0xac,0x84,0x04,0x00,0x08,0x00 -+// 48998 뽦 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x1e,0x01,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x64,0x44,0x00,0x00,0x28,0x00 -+// 48999 뽧 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x1c,0x0b,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x08,0x48,0x68,0x48,0x48,0x48,0x00 -+// 49000 뽨 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x1c,0x09,0x01,0x0d,0x08,0x0e,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x10,0x10,0x38,0x44,0x04,0x00 -+// 49001 뽩 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x09,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x4c,0x40,0x68,0x40,0x3c,0x00 -+// 49002 뽪 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x1c,0x03,0x00,0x0a,0x08,0x0e,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x08,0x00,0x08,0x40,0x10,0x94,0x00 -+// 49003 뽫 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x09,0x01,0x09,0x00,0x07,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x30,0x00,0x10,0x28,0x44,0x28,0x00 -+// 49004 뽬 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x06,0x04,0x00,0x00,0x02,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x30,0x10,0x10,0x10,0x10,0x00 -+// 49005 뽭 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x1f,0x02,0x03,0x1c,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0xce,0x08,0xe8,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 49006 뽮 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x19,0x01,0x09,0x09,0x08,0x09,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x10,0x10,0x10,0x28,0x04,0x04,0x00 -+// 49007 뽯 ; -+,0x00,0x00,0x00,0x15,0x15,0x15,0x1f,0x02,0x03,0x1e,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0xce,0x08,0xf8,0x08,0x44,0x24,0x24,0x24,0x24,0x00 -+// 49008 뽰 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x02,0x02,0x03,0x04,0x08,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x10,0x10,0x30,0xcc,0x84,0x00 -+// 49009 뽱 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x1f,0x02,0x03,0x1c,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0xce,0x08,0xe8,0x40,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 49010 뽲 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0xfc,0xc0,0xa0,0x10,0x0c,0x00 -+// 49011 뽳 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x1b,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x80,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 49012 뽴 ; -+,0x00,0x00,0x00,0x15,0x15,0x15,0x17,0x02,0x03,0x1c,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0xce,0x08,0xf8,0x00,0x0c,0x04,0x04,0x00,0x88,0x00 -+// 49013 뽵 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x1c,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x10,0x00,0x10,0x00,0x18,0x00 -+// 49014 뽶 ; -+,0x00,0x00,0x00,0x15,0x15,0x11,0x17,0x02,0x03,0x18,0x00,0x00,0x02,0x02,0x0f,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xce,0x08,0xc8,0x00,0x18,0x00,0x20,0x20,0x3c,0x00 -+// 49015 뽷 ; -+,0x00,0x00,0x00,0x15,0x1d,0x10,0x1f,0x02,0x03,0x19,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x18,0x48,0x08,0xc8,0x08,0x8c,0x08,0xc8,0xc0,0x1c,0xc0,0x20,0x20,0x20,0x00 -+// 49016 뽸 ; -+,0x00,0x00,0x00,0x00,0x11,0x0d,0x01,0x09,0x03,0x01,0x03,0x1e,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x50,0x50,0xd0,0x50,0xd4,0x14,0x10,0xd0,0x10,0x10,0x10,0x00,0x00 -+// 49017 뽹 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0e,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x52,0xd2,0x12,0xde,0x12,0x90,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 49018 뽺 ; -+,0x00,0x00,0x00,0x01,0x0b,0x0b,0x0e,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x52,0xd2,0x12,0xde,0x12,0x90,0x00,0x94,0x84,0x84,0x84,0x84,0x00 -+// 49019 뽻 ; -+,0x00,0x00,0x00,0x05,0x15,0x05,0x0d,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x54,0x54,0x50,0x54,0x14,0x94,0x00,0x08,0x88,0x98,0x94,0x82,0x00 -+// 49020 뽼 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x15,0x1d,0x02,0x02,0x1e,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x54,0x54,0x54,0x54,0x14,0x54,0x14,0x04,0x00,0x00,0xde,0x00 -+// 49021 뽽 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x0d,0x02,0x03,0x1c,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x04,0x14,0x54,0x54,0x50,0x54,0x10,0xd4,0x00,0x00,0x10,0x10,0xa4,0x46,0x00 -+// 49022 뽾 ; -+,0x00,0x00,0x00,0x05,0x1d,0x05,0x0d,0x02,0x07,0x00,0x04,0x04,0x04,0x04,0x06,0x00,0x00,0x04,0x14,0x54,0x54,0x50,0x54,0x14,0x94,0x38,0x00,0xd8,0x2c,0xc4,0x2c,0x00 -+// 49023 뽿 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x0d,0x02,0x03,0x0c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x04,0x34,0x50,0x50,0x50,0xd4,0x10,0xd0,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 49024 뾀 ; -+,0x00,0x00,0x00,0x01,0x15,0x15,0x15,0x02,0x03,0x1c,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x0c,0x34,0x54,0x54,0x54,0x54,0x14,0x94,0x00,0xc4,0x04,0x9c,0x00,0xfe,0x00 -+// 49025 뾁 ; -+,0x00,0x00,0x00,0x05,0x1d,0x15,0x1d,0x02,0x07,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x14,0x54,0x54,0x50,0x54,0x14,0x94,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 49026 뾂 ; -+,0x00,0x00,0x00,0x01,0x15,0x0d,0x0d,0x02,0x03,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x54,0x54,0x50,0x54,0x14,0x94,0x00,0xb4,0xa4,0xa4,0x24,0x30,0x00 -+// 49027 뾃 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x0d,0x02,0x03,0x0c,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x30,0x50,0x50,0x50,0x54,0x10,0xd0,0x00,0x24,0x24,0x24,0x24,0x24,0x00 -+// 49028 뾄 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x0d,0x02,0x03,0x08,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x04,0x34,0x54,0x54,0x50,0x54,0x14,0x94,0x10,0x88,0x88,0x98,0x26,0x42,0x00 -+// 49029 뾅 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x0d,0x03,0x03,0x1c,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x04,0x10,0x50,0xd0,0x10,0xdc,0x10,0xd0,0x00,0xe4,0xa0,0x2c,0x20,0x3e,0x00 -+// 49030 뾆 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x0d,0x02,0x03,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x34,0x54,0x54,0x54,0x54,0x14,0x94,0x00,0xa6,0x04,0x24,0x00,0x0e,0x00 -+// 49031 뾇 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x0d,0x02,0x03,0x08,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x04,0x34,0x54,0x54,0x54,0x54,0x14,0x94,0x10,0x00,0x78,0x24,0x24,0x24,0x00 -+// 49032 뾈 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x0d,0x02,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x50,0x50,0x50,0x54,0x10,0xd0,0x00,0x00,0x84,0x84,0x84,0x80,0x00 -+// 49033 뾉 ; -+,0x00,0x00,0x00,0x01,0x01,0x0d,0x0d,0x03,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x50,0xd0,0x10,0xdc,0x10,0x90,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 49034 뾊 ; -+,0x00,0x00,0x00,0x05,0x15,0x15,0x1d,0x02,0x03,0x1c,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x34,0x54,0x54,0x54,0x54,0x14,0x94,0x00,0x88,0x88,0x9c,0x12,0xe2,0x00 -+// 49035 뾋 ; -+,0x00,0x00,0x00,0x05,0x1d,0x01,0x0d,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x14,0x54,0x54,0x54,0x54,0x14,0x94,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 49036 뾌 ; -+,0x00,0x00,0x00,0x05,0x09,0x09,0x0d,0x03,0x03,0x08,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x50,0xd0,0x10,0xdc,0x10,0x90,0x00,0x08,0x08,0x9c,0x62,0x02,0x00 -+// 49037 뾍 ; -+,0x00,0x00,0x00,0x05,0x15,0x0d,0x0d,0x02,0x03,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0x50,0x54,0x14,0xd4,0x04,0x30,0x48,0x84,0x84,0x48,0x00 -+// 49038 뾎 ; -+,0x00,0x00,0x00,0x05,0x15,0x05,0x0d,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x10,0x50,0xd0,0x50,0x5c,0x10,0x90,0x00,0x0c,0x60,0x60,0x98,0x04,0x00 -+// 49039 뾏 ; -+,0x00,0x00,0x00,0x05,0x15,0x05,0x0d,0x02,0x03,0x08,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x14,0x54,0x54,0x50,0x54,0x14,0x94,0x00,0x00,0xe4,0x60,0xd8,0x06,0x00 -+// 49040 뾐 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x0d,0x02,0x03,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x34,0x50,0xd0,0x50,0xdc,0x10,0xd0,0x00,0x6c,0x04,0x3c,0x04,0x04,0x00 -+// 49041 뾑 ; -+,0x00,0x00,0x00,0x01,0x11,0x0d,0x0d,0x03,0x03,0x08,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x34,0x50,0xd0,0x50,0xdc,0x10,0xd0,0x00,0x0c,0x00,0x0c,0x00,0xfe,0x00 -+// 49042 뾒 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x15,0x02,0x03,0x08,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x54,0x54,0x54,0x54,0x14,0x94,0x00,0x0c,0x10,0x90,0x10,0x1e,0x00 -+// 49043 뾓 ; -+,0x00,0x00,0x00,0x01,0x15,0x1d,0x1d,0x02,0x03,0x18,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0x54,0x54,0x54,0x14,0x94,0x00,0x00,0x60,0x90,0x88,0xd0,0x00 -+// 49044 뾔 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0x84,0xa4,0x84,0x84,0x04,0x84,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 49045 뾕 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x04,0xc4,0x00,0x08,0x04,0x04,0x04,0x00,0x00 -+// 49046 뾖 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x08,0x0b,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x84,0xe4,0x04,0xc4,0x04,0xc4,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 49047 뾗 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x01,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x00,0x08,0x88,0x98,0xa6,0x82,0x00 -+// 49048 뾘 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x01,0x08,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x04,0x04,0x00,0x00,0xce,0x00 -+// 49049 뾙 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0b,0x01,0x03,0x08,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x04,0xa4,0xe4,0x84,0xa4,0x04,0xc4,0x00,0x36,0x18,0x18,0xa4,0x42,0x00 -+// 49050 뾚 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x01,0x08,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x00,0x00,0xd0,0x38,0xc4,0x28,0x00 -+// 49051 뾛 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0b,0x01,0x01,0x0c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xa4,0xe4,0x84,0xe4,0x04,0xe4,0x04,0x0c,0x00,0x00,0x00,0xfc,0x00 -+// 49052 뾜 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x01,0x1c,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xa4,0xe4,0xa4,0xa4,0x04,0xe4,0x04,0xdc,0x00,0x9c,0x00,0xfe,0x00 -+// 49053 뾝 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x08,0x07,0x00,0x01,0x0c,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x94,0x74,0x14,0x44,0x04,0xe4,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 49054 뾞 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x08,0x0f,0x00,0x03,0x00,0x07,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x94,0x74,0x14,0xc4,0x04,0xc4,0x00,0xb4,0xa4,0xa4,0x24,0x20,0x00 -+// 49055 뾟 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x08,0x07,0x00,0x01,0x0c,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x94,0x74,0x14,0x54,0x84,0xe4,0x04,0x84,0x24,0x24,0x24,0x24,0x00 -+// 49056 뾠 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x01,0x08,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xe4,0x04,0xe4,0x04,0x98,0x90,0x98,0x24,0x42,0x00 -+// 49057 뾡 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x01,0x0e,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x04,0xc4,0x04,0xa0,0x20,0x20,0x20,0x3e,0x00 -+// 49058 뾢 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x01,0x18,0x07,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x04,0x28,0x08,0x28,0x08,0x4e,0x00 -+// 49059 뾣 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x03,0x00,0x07,0x01,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x00,0x00,0x78,0x3c,0x24,0x3c,0x00 -+// 49060 뾤 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0xe4,0x04,0xc4,0x04,0xc4,0x00,0x0c,0x04,0x04,0x0c,0x00,0x00 -+// 49061 뾥 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x01,0x08,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x04,0xe4,0x00,0x04,0x84,0x84,0x04,0x84,0x00 -+// 49062 뾦 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x03,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x00,0x88,0x88,0x98,0xa6,0x42,0x00 -+// 49063 뾧 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x01,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x84,0xe4,0x84,0xe4,0x04,0xe4,0x04,0x20,0x60,0x50,0x84,0x02,0x00 -+// 49064 뾨 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x01,0x08,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xe4,0x84,0x84,0x04,0xc4,0x00,0x08,0x08,0x98,0x66,0x02,0x00 -+// 49065 뾩 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x08,0x0f,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0xe4,0x04,0xc4,0x04,0xe4,0x04,0x30,0x44,0x84,0x84,0x78,0x00 -+// 49066 뾪 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0xa4,0xe4,0x84,0x84,0x04,0xc4,0x00,0x1c,0x20,0x60,0x88,0x04,0x00 -+// 49067 뾫 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0b,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0xa4,0xe4,0x84,0x84,0x04,0xc4,0x00,0x00,0xe4,0x60,0x98,0x04,0x00 -+// 49068 뾬 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0b,0x01,0x01,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xe4,0x04,0xe4,0x00,0xcc,0x04,0x7c,0x04,0x04,0x00 -+// 49069 뾭 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x01,0x1e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xe4,0x04,0xe4,0x04,0x04,0x00,0x0c,0x00,0x0c,0x00 -+// 49070 뾮 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0b,0x01,0x03,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x04,0x0c,0x10,0x90,0x90,0x1e,0x00 -+// 49071 뾯 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x01,0x01,0x1c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xe4,0x04,0x00,0xe0,0xd0,0x88,0xd0,0x00 -+// 49072 뾰 ; -+,0x00,0x00,0x00,0x02,0x09,0x0b,0x09,0x09,0x09,0x08,0x02,0x02,0x02,0x1c,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x68,0x40,0x40,0x48,0x00,0x30,0x10,0x32,0x00,0x00,0x00 -+// 49073 뾱 ; -+,0x00,0x00,0x00,0x0b,0x09,0x09,0x06,0x02,0x1e,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x68,0x00,0x28,0x30,0x10,0x00,0x00,0x90,0x10,0x10,0x10,0x10,0x00 -+// 49074 뾲 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x40,0x28,0x00,0x00,0x30,0x10,0x3e,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 49075 뾳 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x1a,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x48,0x28,0x00,0x28,0x30,0x10,0x1e,0x00,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 49076 뾴 ; -+,0x00,0x00,0x00,0x09,0x0b,0x09,0x09,0x02,0x02,0x1c,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x48,0x00,0x28,0x00,0x28,0x10,0x10,0x00,0x00,0x00,0x00,0x08,0x00,0x00 -+// 49077 뾵 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x18,0x08,0x08,0x0b,0x09,0x00,0x00,0x08,0x48,0x68,0x00,0x00,0x30,0x10,0x3e,0x00,0xf0,0x20,0x30,0x48,0x04,0x00 -+// 49078 뾶 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x08,0x40,0x28,0x00,0x28,0x30,0x10,0x1e,0x70,0x04,0x30,0x48,0x08,0x78,0x00 -+// 49079 뾷 ; -+,0x00,0x00,0x02,0x09,0x0b,0x09,0x0e,0x02,0x02,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x48,0x28,0x28,0x00,0x38,0x10,0x3e,0x00,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 49080 뾸 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x07,0x00,0x06,0x04,0x02,0x00,0x00,0x00,0x48,0x28,0x08,0x08,0x30,0x00,0x3e,0x00,0x10,0x10,0x70,0x00,0x18,0x00 -+// 49081 뾹 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x00,0x48,0x28,0x00,0x08,0x30,0x10,0x3e,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49082 뾺 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x08,0x48,0x28,0x00,0x28,0x30,0x10,0x1e,0x00,0x6c,0x40,0x40,0x48,0x20,0x00 -+// 49083 뾻 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x48,0x28,0x00,0x28,0x30,0x10,0x1e,0x08,0x40,0x68,0x40,0x48,0x00,0x00 -+// 49084 뾼 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x40,0x28,0x00,0x28,0x30,0x10,0x06,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 49085 뾽 ; -+,0x00,0x00,0x01,0x0b,0x09,0x09,0x0e,0x02,0x1e,0x00,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x08,0x40,0x28,0x00,0x28,0x30,0x10,0x3e,0x00,0x48,0x40,0x58,0x40,0x3c,0x00 -+// 49086 뾾 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x0b,0x00,0x0a,0x08,0x0e,0x00,0x00,0x08,0x48,0x68,0x00,0x28,0x30,0x10,0x1e,0x00,0x00,0x08,0x40,0x10,0xdc,0x00 -+// 49087 뾿 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x0b,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x48,0x28,0x00,0x28,0x30,0x10,0x1e,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 49088 뿀 ; -+,0x00,0x00,0x11,0x0b,0x09,0x09,0x0e,0x02,0x1f,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x40,0x28,0x00,0x00,0x30,0x10,0x3e,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 49089 뿁 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x48,0x28,0x00,0x28,0x30,0x10,0x06,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 49090 뿂 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x0e,0x02,0x1e,0x01,0x09,0x09,0x08,0x08,0x08,0x00,0x00,0x08,0x48,0x28,0x00,0x28,0x30,0x10,0x1e,0x10,0x10,0x10,0x28,0x04,0x80,0x00 -+// 49091 뿃 ; -+,0x00,0x00,0x01,0x0b,0x09,0x09,0x0c,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x30,0x10,0x3f,0x00,0x80,0x80,0x60,0x18,0x08,0x00 -+// 49092 뿄 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x08,0x48,0x28,0x00,0x28,0x30,0x10,0x06,0x20,0x10,0x10,0x28,0xc4,0x80,0x00 -+// 49093 뿅 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x08,0x02,0x02,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x08,0x40,0x28,0x00,0x00,0x30,0x10,0x3e,0x80,0xc0,0x20,0x10,0x10,0xe0,0x00 -+// 49094 뿆 ; -+,0x00,0x00,0x10,0x0b,0x01,0x09,0x06,0x02,0x1e,0x00,0x0f,0x00,0x01,0x02,0x08,0x00,0x00,0x08,0x48,0x68,0x00,0x28,0x20,0x10,0x3e,0x00,0xc0,0x80,0x60,0x18,0x08,0x00 -+// 49095 뿇 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x01,0x00,0x0c,0x00,0x03,0x0c,0x00,0x00,0x00,0x48,0x28,0x00,0x00,0x30,0x10,0x3e,0x00,0x00,0xc0,0xc0,0x30,0x08,0x00 -+// 49096 뿈 ; -+,0x00,0x00,0x02,0x0b,0x09,0x09,0x0e,0x02,0x1e,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x48,0x28,0x00,0x00,0x30,0x10,0x3e,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 49097 뿉 ; -+,0x00,0x00,0x02,0x09,0x0b,0x09,0x0e,0x02,0x02,0x00,0x0e,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x48,0x08,0x08,0x00,0x38,0x10,0x3e,0x00,0xf0,0x00,0x30,0x00,0xf8,0x00 -+// 49098 뿊 ; -+,0x00,0x00,0x02,0x09,0x09,0x09,0x0e,0x02,0x1e,0x00,0x00,0x00,0x02,0x02,0x0e,0x00,0x00,0x00,0x48,0x28,0x00,0x00,0x30,0x10,0x3e,0x00,0x18,0x20,0x20,0x20,0x7c,0x00 -+// 49099 뿋 ; -+,0x00,0x00,0x12,0x0b,0x09,0x09,0x0e,0x02,0x1f,0x00,0x0e,0x00,0x00,0x02,0x01,0x00,0x00,0x08,0x48,0x68,0x00,0x28,0x30,0x10,0xc0,0xc0,0x9c,0xc0,0x20,0x20,0x60,0x00 -+// 49100 뿌 ; -+,0x00,0x00,0x11,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x24,0x04,0x2c,0x00,0x0f,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 49101 뿍 ; -+,0x00,0x00,0x11,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x68,0x00,0x08,0x20,0x02,0x80,0x80,0x98,0x08,0x08,0x08,0x08,0x00 -+// 49102 뿎 ; -+,0x00,0x00,0x19,0x0b,0x09,0x09,0x09,0x1e,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x48,0x00,0x28,0x00,0x28,0x00,0x9f,0x80,0x00,0x28,0x00,0x00,0x00,0x00,0x00 -+// 49103 뿏 ; -+,0x00,0x00,0x11,0x0b,0x09,0x09,0x09,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x48,0x48,0x68,0x00,0x08,0x00,0x06,0x80,0x80,0x10,0x10,0x30,0x44,0x80,0x00 -+// 49104 뿐 ; -+,0x00,0x00,0x03,0x09,0x0b,0x09,0x09,0x08,0x00,0x00,0x00,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0x40,0x00,0x28,0x00,0x28,0x00,0x02,0xc0,0x00,0x00,0x00,0x00,0x78,0x00 -+// 49105 뿑 ; -+,0x00,0x00,0x11,0x0b,0x09,0x09,0x08,0x1e,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x48,0x68,0x00,0x28,0x00,0xdf,0x80,0x84,0x30,0x20,0x30,0x44,0x00,0x00 -+// 49106 뿒 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x10,0x00,0x18,0x08,0x08,0x09,0x04,0x00,0x00,0x00,0x64,0x2c,0x24,0x24,0x00,0x06,0x80,0xf0,0x00,0x30,0x48,0x08,0x78,0x00 -+// 49107 뿓 ; -+,0x00,0x00,0x13,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x40,0x28,0x00,0x00,0x20,0x02,0x80,0x80,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 49108 뿔 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x44,0x2c,0x24,0x2c,0x00,0x0e,0x80,0x80,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 49109 뿕 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x18,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x64,0x2c,0x24,0x24,0x00,0x02,0x80,0x80,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 49110 뿖 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x0e,0x00,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x08,0x64,0x2c,0x24,0x2c,0x00,0x8e,0x80,0x40,0x64,0x04,0x00,0x00,0x20,0x00 -+// 49111 뿗 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x44,0x2c,0x24,0x2c,0x00,0x06,0x80,0x88,0x44,0x68,0x00,0x28,0x00,0x00 -+// 49112 뿘 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x24,0x2c,0x24,0x24,0x00,0x1f,0x80,0x80,0x10,0x10,0x28,0x44,0x00,0x00 -+// 49113 뿙 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x00,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x44,0x2c,0x24,0x2c,0x00,0x0f,0x80,0x80,0x60,0x40,0x68,0x40,0x3c,0x00 -+// 49114 뿚 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x10,0x00,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x08,0x64,0x2c,0x24,0x24,0x00,0x06,0x80,0x80,0x50,0x08,0x48,0x00,0x54,0x00 -+// 49115 뿛 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x00,0x00,0x00,0x09,0x01,0x0d,0x08,0x06,0x00,0x00,0x00,0x64,0x2c,0x24,0x24,0x00,0x1e,0x80,0x30,0x04,0x10,0x08,0x40,0x28,0x00 -+// 49116 뿜 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x10,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x48,0x28,0x00,0x00,0x20,0x0e,0x80,0x80,0xb8,0x10,0x10,0x10,0x00,0x00 -+// 49117 뿝 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x00,0x10,0x00,0x04,0x02,0x00,0x02,0x02,0x00,0x00,0x08,0x24,0x2c,0x24,0x2c,0x00,0x06,0x80,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 49118 뿞 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x00,0x00,0x01,0x08,0x0d,0x08,0x08,0x0c,0x00,0x00,0x08,0x24,0x2c,0x24,0x2c,0x00,0x1f,0x80,0x90,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 49119 뿟 ; -+,0x00,0x00,0x11,0x09,0x09,0x09,0x09,0x00,0x18,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x48,0x68,0x08,0x08,0x20,0x06,0xc0,0x80,0xc0,0x80,0x20,0x18,0x0c,0x00 -+// 49120 뿠 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x18,0x00,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x64,0x2c,0x24,0x24,0x20,0x06,0x80,0x80,0x10,0x10,0x28,0xc4,0x04,0x00 -+// 49121 뿡 ; -+,0x00,0x00,0x11,0x0b,0x09,0x09,0x08,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x48,0x68,0x00,0x28,0x00,0x0f,0x80,0x80,0xe0,0x10,0x10,0x20,0xe0,0x00 -+// 49122 뿢 ; -+,0x00,0x00,0x11,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x48,0x28,0x08,0x00,0x20,0x0f,0x80,0x80,0xf8,0xc0,0x20,0x08,0x04,0x00 -+// 49123 뿣 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x08,0x1c,0x00,0x01,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x08,0x24,0x2c,0x24,0x2c,0x00,0x1f,0x80,0xc0,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 49124 뿤 ; -+,0x00,0x00,0x13,0x09,0x09,0x09,0x08,0x1c,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x48,0x68,0x48,0x08,0x00,0x1f,0x80,0x80,0x88,0x08,0x88,0x08,0x08,0x00 -+// 49125 뿥 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x18,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x44,0x2c,0x24,0x24,0x20,0x02,0x80,0x80,0xd0,0x00,0x30,0x00,0xf8,0x00 -+// 49126 뿦 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x04,0x00,0x02,0x01,0x0e,0x00,0x00,0x00,0x40,0x28,0x20,0x00,0x20,0x06,0x80,0x80,0x98,0x20,0x20,0x20,0x3c,0x00 -+// 49127 뿧 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x44,0x2c,0x20,0x20,0x00,0x0e,0x00,0xc0,0x9c,0xc0,0x20,0x20,0xe0,0x00 -+// 49128 뿨 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x08,0x06,0x00,0x00,0x1f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0x94,0x74,0x14,0x54,0x04,0x04,0x84,0x24,0x04,0x04,0x04,0x04,0x00 -+// 49129 뿩 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x0e,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x54,0x04,0x84,0x24,0x00,0x4c,0x04,0x04,0x04,0x00,0x00 -+// 49130 뿪 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x06,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x54,0x54,0x54,0x04,0x84,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 49131 뿫 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xe4,0x04,0x84,0x24,0x00,0x08,0x88,0x98,0x96,0x82,0x00 -+// 49132 뿬 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xa4,0xe4,0x84,0xa4,0x04,0x04,0x3c,0x04,0x04,0x00,0x00,0xde,0x00 -+// 49133 뿭 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x24,0xa4,0xa4,0xe4,0x04,0x84,0x3c,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 49134 뿮 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x00,0x08,0xa4,0xe4,0x84,0x64,0x04,0x84,0x24,0x38,0x00,0x18,0x2c,0xc4,0x38,0x00 -+// 49135 뿯 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0x00,0x00,0x00,0x00,0xde,0x00 -+// 49136 뿰 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x01,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x04,0x84,0x3c,0x00,0x8c,0x00,0x1c,0x00,0x9e,0x00 -+// 49137 뿱 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 49138 뿲 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0xb4,0xa4,0xa4,0x24,0x20,0x00 -+// 49139 뿳 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0x24,0x24,0x24,0x24,0x24,0x00 -+// 49140 뿴 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0x88,0x88,0x98,0x26,0x42,0x00 -+// 49141 뿵 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0xe4,0xa0,0x2c,0x20,0x3e,0x00 -+// 49142 뿶 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x01,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0xa4,0xa4,0xa4,0x04,0x84,0x3c,0x00,0xac,0x04,0x24,0x00,0x6e,0x00 -+// 49143 뿷 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x01,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x24,0x84,0xa4,0xa4,0x04,0x84,0x3c,0x00,0x00,0x78,0x24,0x24,0x24,0x00 -+// 49144 뿸 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 49145 뿹 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 49146 뿺 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0xa4,0xa4,0xa4,0x04,0x84,0x3c,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 49147 뿻 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0x20,0x20,0x50,0x84,0x02,0x00 -+// 49148 뿼 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x0a,0x00,0x1f,0x01,0x01,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0xf4,0x74,0x04,0x84,0x3c,0x00,0x08,0x08,0x9c,0x66,0x02,0x00 -+// 49149 뿽 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x06,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x14,0x54,0x54,0x04,0x84,0x3c,0x00,0x30,0x48,0x84,0x84,0x78,0x00 -+// 49150 뿾 ; -+,0x00,0x00,0x00,0x08,0x06,0x06,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x04,0x54,0x54,0x54,0x04,0x84,0x3c,0x00,0xfc,0x60,0x60,0x88,0x04,0x00 -+// 49151 뿿 ; -+,0x00,0x00,0x00,0x0a,0x06,0x06,0x00,0x0f,0x00,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x54,0x54,0x54,0x04,0x84,0x3c,0x80,0x00,0x6c,0x60,0x98,0x04,0x00 -+// 49152 쀀 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x00,0x0c,0x04,0x3c,0x04,0x04,0x00 -+// 49153 쀁 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x0a,0x00,0x03,0x01,0x01,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x94,0xf4,0x54,0x04,0x84,0x3c,0x00,0x0c,0x00,0x8c,0x00,0xfe,0x00 -+// 49154 쀂 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x0d,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xa4,0xe4,0x84,0x04,0x04,0x0c,0x04,0x0c,0x10,0x90,0x10,0x0e,0x00 -+// 49155 쀃 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x02,0x00,0x0f,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x94,0x54,0x54,0x04,0x84,0x3c,0x80,0x00,0x60,0x90,0x88,0xd0,0x00 -+// 49156 쀄 ; -+,0x00,0x00,0x00,0x00,0x0b,0x0f,0x0b,0x08,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x52,0x42,0xc2,0x42,0x02,0x02,0x02,0x72,0x02,0x02,0x02,0x02,0x00 -+// 49157 쀅 ; -+,0x00,0x00,0x00,0x00,0x1d,0x0d,0x08,0x00,0x0e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x50,0xd0,0x50,0x10,0x10,0x70,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49158 쀆 ; -+,0x00,0x00,0x00,0x00,0x15,0x05,0x0c,0x00,0x0a,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0xd4,0x50,0x14,0x14,0x74,0x00,0x94,0x84,0x04,0x04,0x00,0x00 -+// 49159 쀇 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x04,0x00,0x0a,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x10,0x08,0x88,0x98,0x86,0x82,0x00 -+// 49160 쀈 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x00,0x00,0x00,0x00,0xde,0x00 -+// 49161 쀉 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x04,0x00,0x0a,0x02,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x00,0x06,0x10,0x10,0xa4,0x42,0x00 -+// 49162 쀊 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x04,0x00,0x0a,0x02,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x38,0x00,0xf8,0x24,0xc4,0x2c,0x00 -+// 49163 쀋 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 49164 쀌 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x15,0x00,0x1e,0x02,0x03,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x24,0x94,0xd4,0x54,0x14,0x14,0xf4,0x14,0xc4,0x04,0x8c,0x00,0xfe,0x00 -+// 49165 쀍 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 49166 쀎 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0xb4,0xa4,0xa4,0x24,0x20,0x00 -+// 49167 쀏 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x24,0x24,0x24,0x24,0x24,0x00 -+// 49168 쀐 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x88,0x88,0x98,0x26,0x42,0x00 -+// 49169 쀑 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0xe4,0xa0,0x2c,0x20,0x3e,0x00 -+// 49170 쀒 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x07,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0xa6,0x84,0x84,0x14,0x2e,0x00 -+// 49171 쀓 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x80,0x38,0x14,0x20,0x14,0x00 -+// 49172 쀔 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 49173 쀕 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x84,0x84,0x84,0x84,0x84,0x00 -+// 49174 쀖 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x88,0x48,0xcc,0x52,0x61,0x00 -+// 49175 쀗 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x04,0x00,0x0a,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x10,0x20,0x20,0x58,0x84,0x02,0x00 -+// 49176 쀘 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x04,0x00,0x0a,0x02,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x10,0x08,0x08,0x9c,0x62,0x02,0x00 -+// 49177 쀙 ; -+,0x00,0x00,0x00,0x00,0x15,0x05,0x0c,0x00,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x54,0xd4,0x50,0x14,0x14,0x74,0x10,0x30,0x4c,0x84,0x84,0x78,0x00 -+// 49178 쀚 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x00,0x00,0x0a,0x02,0x02,0x00,0x00,0x00,0x03,0x00,0x00,0x04,0x10,0x50,0x50,0x50,0x10,0x10,0x70,0x00,0xfc,0x60,0x60,0x88,0x04,0x00 -+// 49179 쀛 ; -+,0x00,0x00,0x00,0x00,0x1d,0x0d,0x08,0x00,0x0e,0x02,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x04,0x34,0x50,0xd0,0x50,0x10,0x10,0x70,0x10,0x00,0x64,0x60,0x98,0x04,0x00 -+// 49180 쀜 ; -+,0x00,0x00,0x00,0x00,0x1d,0x09,0x08,0x00,0x0e,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x50,0x50,0x50,0x10,0x10,0x70,0x00,0xec,0x04,0x7c,0x04,0x04,0x00 -+// 49181 쀝 ; -+,0x00,0x00,0x00,0x00,0x15,0x15,0x0d,0x00,0x1e,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x54,0x14,0x14,0xf4,0x14,0x1c,0x00,0x8c,0x00,0xfe,0x00 -+// 49182 쀞 ; -+,0x00,0x00,0x00,0x00,0x15,0x1d,0x15,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x24,0x94,0x54,0x54,0x14,0x14,0x94,0x14,0x0c,0x10,0x90,0x10,0x00,0x00 -+// 49183 쀟 ; -+,0x00,0x00,0x00,0x00,0x15,0x0d,0x0c,0x00,0x0e,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x50,0xd0,0x50,0x10,0x10,0x70,0x10,0x00,0x60,0x98,0x88,0x50,0x00 -+// 49184 쀠 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x94,0x54,0x14,0x54,0x04,0x34,0x84,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49185 쀡 ; -+,0x00,0x00,0x00,0x0b,0x01,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x94,0x54,0x14,0x54,0x04,0xc4,0x84,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 49186 쀢 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x06,0x00,0x03,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xa4,0x54,0x14,0x54,0x04,0xe4,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 49187 쀣 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x1d,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x0c,0xe4,0x04,0x00,0x18,0x88,0x98,0x94,0x82,0x00 -+// 49188 쀤 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xa4,0xa4,0x84,0xa4,0x0c,0xc4,0x04,0x04,0x00,0x00,0x00,0xde,0x00 -+// 49189 쀥 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x1d,0x01,0x00,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0xa4,0xa4,0xe4,0x04,0xe4,0x04,0x00,0x06,0x18,0x18,0xa4,0xc2,0x00 -+// 49190 쀦 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x01,0x09,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x0c,0xa4,0xe4,0x84,0xe4,0x04,0xc4,0x04,0x38,0x00,0xd8,0x2c,0xc4,0x2c,0x00 -+// 49191 쀧 ; -+,0x00,0x00,0x00,0x0a,0x06,0x00,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x54,0x54,0x04,0x74,0x84,0x04,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 49192 쀨 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x1d,0x01,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x04,0xe4,0x04,0x00,0x8c,0x00,0x18,0x00,0x1e,0x00 -+// 49193 쀩 ; -+,0x00,0x00,0x00,0x09,0x05,0x07,0x00,0x07,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x94,0x54,0x14,0x54,0x04,0xc4,0x84,0x00,0xb4,0x84,0x04,0x04,0x04,0x00 -+// 49194 쀪 ; -+,0x00,0x00,0x00,0x09,0x07,0x07,0x00,0x00,0x0f,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x14,0x54,0x54,0x54,0x04,0x74,0x84,0x00,0xb4,0xa4,0xa4,0x24,0xa0,0x00 -+// 49195 쀫 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0e,0x00,0x00,0x09,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x0c,0xa4,0x64,0x04,0x44,0x04,0xe4,0x04,0x00,0x44,0x24,0x24,0x04,0x24,0x00 -+// 49196 쀬 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0e,0x00,0x00,0x09,0x01,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0xa4,0xe4,0x84,0x64,0x04,0xe4,0x04,0x00,0x88,0x90,0x18,0x24,0x42,0x00 -+// 49197 쀭 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x1f,0x01,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0xa4,0xa4,0x84,0xe4,0x04,0x64,0x04,0x04,0xec,0x20,0x2c,0x20,0x3e,0x00 -+// 49198 쀮 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x1d,0x01,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x04,0x64,0x04,0x04,0x44,0x08,0x28,0x28,0x0e,0x00 -+// 49199 쀯 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x1d,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0xa4,0xa4,0x84,0xe4,0x04,0xe4,0x04,0x10,0x00,0x78,0x14,0x20,0x24,0x00 -+// 49200 쀰 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x0a,0x00,0x00,0x0d,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x84,0x04,0x64,0x04,0xe4,0x04,0x00,0x00,0x04,0x04,0x00,0x80,0x00 -+// 49201 쀱 ; -+,0x00,0x00,0x00,0x0a,0x04,0x06,0x00,0x00,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x54,0x14,0x54,0x04,0xe4,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 49202 쀲 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x0e,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x84,0x44,0x64,0x04,0x74,0x04,0x00,0x88,0x48,0x9c,0x12,0x60,0x00 -+// 49203 쀳 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x06,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x54,0x54,0x54,0x04,0x74,0x04,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 49204 쀴 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0e,0x00,0x01,0x09,0x01,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0xa4,0xc4,0x84,0x44,0x04,0xe4,0x04,0x00,0x08,0x08,0x9c,0x62,0x02,0x00 -+// 49205 쀵 ; -+,0x00,0x00,0x00,0x0a,0x0e,0x0a,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x84,0x64,0x64,0x04,0x74,0x04,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 49206 쀶 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0e,0x00,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x0c,0xa4,0x64,0x04,0x44,0x04,0xc4,0x04,0x00,0x0c,0x20,0x60,0x88,0x04,0x00 -+// 49207 쀷 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0e,0x00,0x07,0x01,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0xa4,0xc4,0x04,0x64,0x04,0xc4,0x04,0x00,0x00,0xe4,0x60,0xd8,0x04,0x00 -+// 49208 쀸 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0e,0x00,0x03,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xa4,0x64,0x04,0x44,0x04,0xc4,0x04,0x00,0xcc,0x04,0x7c,0x04,0x04,0x00 -+// 49209 쀹 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x00,0x1d,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x84,0x84,0x64,0x04,0xe4,0x04,0x00,0x1c,0x00,0x0c,0x00,0xfe,0x00 -+// 49210 쀺 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x01,0x19,0x01,0x03,0x00,0x00,0x00,0x06,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x04,0xe4,0x04,0x00,0x9c,0x10,0x10,0x90,0x1e,0x00 -+// 49211 쀻 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0e,0x00,0x1f,0x01,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0xa4,0xe4,0x84,0xe4,0x0c,0x84,0x04,0x40,0x00,0x20,0x50,0x88,0xd0,0x00 -+// 49212 쀼 ; -+,0x00,0x00,0x11,0x09,0x0b,0x09,0x0b,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x40,0x48,0x40,0x00,0x28,0x00,0x06,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 49213 쀽 ; -+,0x00,0x00,0x11,0x09,0x09,0x09,0x09,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x68,0x40,0x00,0x28,0x02,0x10,0x10,0x10,0x08,0x08,0x08,0x08,0x00 -+// 49214 쀾 ; -+,0x00,0x00,0x11,0x0b,0x09,0x09,0x08,0x00,0x12,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x48,0x68,0x40,0x08,0x00,0x06,0x10,0x10,0x68,0x08,0x08,0x08,0x08,0x00 -+// 49215 쀿 ; -+,0x00,0x00,0x11,0x09,0x09,0x09,0x09,0x00,0x1e,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x48,0x68,0x40,0x00,0x28,0x02,0x10,0x10,0x10,0x30,0x30,0x4c,0x84,0x00 -+// 49216 쁀 ; -+,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x02,0x02,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0x48,0x08,0x28,0x00,0x28,0x00,0x1e,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 49217 쁁 ; -+,0x00,0x00,0x10,0x0a,0x00,0x08,0x08,0x00,0x16,0x02,0x18,0x08,0x08,0x0b,0x08,0x00,0x00,0x00,0x48,0x68,0x48,0x48,0x00,0x06,0x10,0x00,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 49218 쁂 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x00,0x02,0x02,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x08,0x40,0x28,0x00,0x28,0x00,0x02,0x10,0x30,0x04,0x30,0x48,0x08,0x58,0x00 -+// 49219 쁃 ; -+,0x00,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x1e,0x02,0x02,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x48,0x28,0x08,0x08,0x28,0x00,0x36,0x10,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 49220 쁄 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x12,0x02,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x48,0x28,0x00,0x28,0x00,0x02,0x10,0x10,0x10,0x10,0x10,0x00,0xf8,0x00 -+// 49221 쁅 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x12,0x02,0x01,0x00,0x0c,0x00,0x07,0x00,0x00,0x00,0x40,0x28,0x00,0x20,0x00,0x02,0x10,0x10,0x88,0x08,0x08,0x08,0x08,0x00 -+// 49222 쁆 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x00,0x02,0x02,0x01,0x01,0x0d,0x08,0x0f,0x00,0x00,0x08,0x00,0x28,0x00,0x28,0x00,0x06,0x10,0x10,0x6c,0x04,0x00,0x08,0x20,0x00 -+// 49223 쁇 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x00,0x02,0x02,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x04,0x2c,0x04,0x2c,0x00,0x02,0x10,0x18,0x40,0x28,0x00,0x28,0x00,0x00 -+// 49224 쁈 ; -+,0x00,0x00,0x09,0x09,0x09,0x09,0x00,0x00,0x12,0x02,0x0f,0x01,0x0d,0x08,0x0e,0x00,0x00,0x08,0x24,0x2c,0x04,0x2c,0x00,0x02,0x10,0x30,0x10,0x10,0x28,0x44,0x84,0x00 -+// 49225 쁉 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x00,0x10,0x02,0x02,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x08,0x00,0x28,0x00,0x28,0x00,0x1f,0x10,0x00,0x60,0x40,0x60,0x40,0x1c,0x00 -+// 49226 쁊 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x12,0x02,0x0f,0x01,0x0d,0x08,0x0e,0x00,0x00,0x08,0x40,0x28,0x00,0x28,0x00,0x02,0x10,0x00,0x50,0x08,0x48,0x00,0xdc,0x00 -+// 49227 쁋 ; -+,0x00,0x00,0x01,0x0b,0x09,0x09,0x00,0x00,0x02,0x02,0x0f,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x40,0x28,0x00,0x28,0x00,0x06,0x10,0x30,0x04,0x10,0x48,0x40,0x48,0x00 -+// 49228 쁌 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x12,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x48,0x28,0x00,0x00,0x00,0x06,0x10,0x10,0x30,0x10,0x10,0x10,0x00,0x00 -+// 49229 쁍 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1e,0x02,0x04,0x06,0x04,0x04,0x02,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 49230 쁎 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x02,0x03,0x08,0x0d,0x08,0x08,0x0d,0x00,0x00,0x08,0x04,0x2c,0x04,0x2c,0x00,0x02,0x10,0x10,0x90,0x90,0xa8,0xa4,0xc4,0x00 -+// 49231 쁏 ; -+,0x00,0x00,0x11,0x0b,0x09,0x09,0x08,0x00,0x12,0x02,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x48,0x68,0x48,0x08,0x00,0x02,0x10,0x10,0xc0,0x80,0x20,0x18,0x08,0x00 -+// 49232 쁐 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1e,0x02,0x02,0x02,0x03,0x04,0x08,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x00,0x30,0x00,0x10,0x10,0x38,0xcc,0x04,0x00 -+// 49233 쁑 ; -+,0x00,0x00,0x12,0x09,0x09,0x09,0x0a,0x00,0x12,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x08,0x48,0x68,0x48,0x48,0x28,0x02,0x10,0x10,0xc0,0x30,0x10,0x10,0xe0,0x00 -+// 49234 쁒 ; -+,0x00,0x00,0x12,0x09,0x09,0x09,0x08,0x00,0x02,0x02,0x07,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0x48,0x68,0x48,0x48,0x00,0x0e,0x10,0x10,0xc0,0x80,0x20,0x18,0x00,0x00 -+// 49235 쁓 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x12,0x03,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x08,0x40,0x28,0x00,0x28,0x00,0x02,0x10,0x30,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 49236 쁔 ; -+,0x00,0x00,0x11,0x09,0x09,0x09,0x00,0x00,0x02,0x02,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x48,0x68,0x48,0x08,0x00,0x3f,0x10,0x10,0x88,0x08,0xc8,0x08,0x08,0x00 -+// 49237 쁕 ; -+,0x00,0x00,0x03,0x09,0x09,0x09,0x09,0x00,0x1e,0x02,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x40,0x28,0x20,0x20,0x20,0x00,0x3e,0x10,0x30,0x00,0x30,0x00,0xf8,0x00 -+// 49238 쁖 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x09,0x00,0x1a,0x02,0x07,0x00,0x02,0x00,0x0e,0x00,0x00,0x00,0x48,0x28,0x00,0x00,0x20,0x02,0x10,0x10,0x38,0x20,0x20,0x20,0x3c,0x00 -+// 49239 쁗 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x12,0x03,0x0e,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x40,0x28,0x00,0x28,0x00,0x06,0x10,0xc0,0x9c,0xc0,0x20,0x20,0xe0,0x00 -+// 49240 쁘 ; -+,0x00,0x00,0x00,0x02,0x09,0x09,0x09,0x09,0x09,0x09,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x44,0x44,0x6c,0x44,0x44,0x44,0x00,0x00,0x00,0x00,0x1e,0x00,0x00 -+// 49241 쁙 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xb8,0x08,0x08,0x08,0x00,0x00 -+// 49242 쁚 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 49243 쁛 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x18,0x88,0x98,0x94,0x82,0x00 -+// 49244 쁜 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0xde,0x00 -+// 49245 쁝 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x02,0x18,0x18,0xa4,0x42,0x00 -+// 49246 쁞 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x38,0x00,0x18,0x24,0xc4,0x3c,0x00 -+// 49247 쁟 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 49248 쁠 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x8c,0x00,0x18,0x00,0x1e,0x00 -+// 49249 쁡 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xb4,0x84,0x04,0x04,0x04,0x00 -+// 49250 쁢 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xb4,0xa4,0xa4,0x24,0xa0,0x00 -+// 49251 쁣 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x44,0x24,0x24,0x24,0x24,0x00 -+// 49252 쁤 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x0d,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x98,0x10,0x18,0x24,0x02,0x00 -+// 49253 쁥 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xec,0x20,0x2c,0x20,0x3e,0x00 -+// 49254 쁦 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x44,0x08,0x28,0x28,0x0e,0x00 -+// 49255 쁧 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x38,0x00,0x58,0x2c,0x04,0x2c,0x00 -+// 49256 쁨 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 49257 쁩 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1e,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x40,0x28,0x00,0x00,0x20,0x00,0x02,0x00,0x10,0x10,0x00,0x10,0x00,0x00 -+// 49258 쁪 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x10,0x88,0x98,0x94,0xa2,0x40,0x00 -+// 49259 쁫 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xc0,0xc0,0x20,0x18,0x08,0x00 -+// 49260 쁬 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x10,0x10,0x10,0xa8,0xc4,0x00,0x00 -+// 49261 쁭 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1e,0x00,0x00,0x01,0x02,0x03,0x01,0x00,0x00,0x00,0x40,0x28,0x00,0x00,0x20,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 49262 쁮 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xfc,0x40,0xa0,0x18,0x08,0x00 -+// 49263 쁯 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0xc0,0x00,0xc0,0xc0,0x18,0x04,0x00 -+// 49264 쁰 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0xd8,0x08,0xf8,0x08,0x08,0x00 -+// 49265 쁱 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x70,0x00,0x10,0x00,0xf8,0x00 -+// 49266 쁲 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x07,0x00,0x01,0x01,0x0e,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x00,0x38,0x30,0x00,0x20,0x3c,0x00 -+// 49267 쁳 ; -+,0x00,0x00,0x01,0x09,0x09,0x09,0x08,0x00,0x1c,0x00,0x00,0x04,0x01,0x00,0x01,0x00,0x00,0x08,0x40,0x28,0x00,0x20,0x00,0x02,0x00,0x80,0x00,0xc0,0x20,0x20,0x20,0x00 -+// 49268 쁴 ; -+,0x00,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0xa4,0xa4,0xa4,0xa4,0x04,0x04,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 49269 쁵 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0xc4,0x00,0x00,0x0c,0x04,0x04,0x00,0x00 -+// 49270 쁶 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x0c,0xc4,0x00,0x00,0x84,0x84,0x84,0x84,0x00 -+// 49271 쁷 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0x84,0x00,0x08,0x88,0x98,0xa6,0xc2,0x00 -+// 49272 쁸 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x1f,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0x3c,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 49273 쁹 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x1f,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0x84,0x00,0x16,0x10,0x18,0xa4,0x42,0x00 -+// 49274 쁺 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0x84,0x20,0x00,0xd6,0x38,0x44,0x28,0x00 -+// 49275 쁻 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0x84,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 49276 쁼 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0xc4,0x00,0x8c,0x00,0x18,0x00,0xfe,0x00 -+// 49277 쁽 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x08,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x84,0xe4,0x84,0xe4,0x04,0xc4,0x00,0x04,0x84,0x84,0x04,0x84,0x00 -+// 49278 쁾 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0xa4,0xe4,0x84,0x84,0x04,0x84,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 49279 쁿 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x09,0x01,0x0d,0x00,0x07,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x0c,0xc4,0x00,0x48,0x24,0x24,0x04,0x24,0x00 -+// 49280 삀 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x03,0x08,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x0c,0xc4,0x00,0x98,0x80,0x18,0x24,0x42,0x00 -+// 49281 삁 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x0f,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0x1c,0x84,0x00,0xec,0x20,0x2c,0x20,0x3e,0x00 -+// 49282 삂 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x00,0x03,0x08,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0xc4,0x00,0x6c,0x08,0x28,0x28,0x0e,0x00 -+// 49283 삃 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0x84,0x00,0x00,0x78,0x1c,0x24,0x34,0x00 -+// 49284 삄 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0x0c,0x04,0x00,0x0c,0x04,0x08,0x08,0x00,0x00 -+// 49285 삅 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x03,0x08,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0xc4,0x00,0x0c,0x04,0x04,0x04,0x84,0x00 -+// 49286 삆 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x08,0x00,0x0f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0x0c,0x84,0x00,0x88,0x88,0x9c,0xa2,0x40,0x00 -+// 49287 삇 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x01,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x04,0xc4,0x04,0x20,0x60,0x90,0x0c,0x02,0x00 -+// 49288 삈 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0xa4,0x0c,0x84,0x00,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 49289 삉 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xe4,0x84,0xa4,0x04,0xc4,0x04,0x30,0x84,0x84,0x84,0x78,0x00 -+// 49290 삊 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x04,0x84,0x00,0x0c,0x60,0x60,0x88,0x04,0x00 -+// 49291 삋 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x08,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0x84,0x3c,0x04,0x00,0x00,0x6c,0x60,0x98,0x04,0x00 -+// 49292 삌 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x0f,0x00,0x03,0x00,0x05,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xe4,0x84,0xa4,0x04,0x84,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 49293 삍 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x03,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0x0c,0xc4,0x00,0x0c,0x00,0x0c,0x00,0xfc,0x00 -+// 49294 삎 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x1f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0xa4,0x0c,0x04,0x00,0xfc,0x10,0x90,0x90,0x1e,0x00 -+// 49295 삏 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0x0c,0xc4,0x00,0x00,0x60,0xd0,0x88,0x90,0x00 -+// 49296 삐 ; -+,0x00,0x00,0x00,0x00,0x12,0x02,0x0a,0x02,0x02,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xa4,0x84,0xa4,0xa4,0x84,0x84,0xa4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49297 삑 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x84,0xa4,0x04,0x00,0xdc,0x0c,0x0c,0x0c,0x08,0x00 -+// 49298 삒 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x84,0xa4,0x04,0x00,0x8c,0x80,0x84,0x80,0x00,0x00 -+// 49299 삓 ; -+,0x00,0x00,0x00,0x10,0x02,0x0a,0x02,0x02,0x0a,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xa4,0xa4,0xa4,0xa4,0xa4,0x80,0x10,0x88,0x98,0x98,0xa6,0x42,0x00 -+// 49300 삔 ; -+,0x00,0x00,0x00,0x01,0x12,0x0a,0x02,0x02,0x0a,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0xa4,0xa4,0x04,0x04,0x00,0x00,0x00,0xdc,0x00 -+// 49301 삕 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x84,0xa4,0x84,0x00,0x78,0x10,0x18,0xa4,0x82,0x00 -+// 49302 삖 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0xa4,0xa4,0xa4,0xa4,0xa4,0x80,0x38,0x02,0x10,0x04,0xc4,0x28,0x00 -+// 49303 삗 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0x84,0xa4,0x84,0x84,0x84,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 49304 삘 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x84,0xa4,0x84,0x00,0x8c,0x00,0x38,0x00,0x06,0x00 -+// 49305 삙 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0xa4,0x84,0xe4,0x04,0x00,0x84,0x04,0x04,0x04,0x00,0x00 -+// 49306 삚 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0x84,0xa4,0x84,0xa4,0x04,0x00,0x24,0x24,0x24,0x20,0x20,0x00 -+// 49307 삛 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x0c,0x04,0x94,0x94,0x94,0x94,0xf4,0x04,0x40,0x04,0x24,0x04,0x04,0x24,0x00 -+// 49308 삜 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xa4,0x84,0xa4,0x84,0xa4,0x04,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 49309 삝 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x84,0xa4,0x84,0xa4,0x04,0x00,0xe0,0x20,0x20,0x00,0x3c,0x00 -+// 49310 삞 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x02,0x0a,0x08,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x0c,0xa4,0xa4,0xa4,0xa4,0xa4,0x80,0x00,0x00,0x08,0x28,0x28,0x4e,0x00 -+// 49311 삟 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0x00,0x38,0x02,0x10,0x24,0x04,0x2c,0x00 -+// 49312 삠 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0xa4,0x84,0x84,0x84,0x00,0x0c,0x04,0x08,0x08,0x00,0x00 -+// 49313 삡 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x84,0xa4,0x00,0x08,0x04,0x8c,0x00,0x00,0x00,0x00 -+// 49314 삢 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x08,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x84,0xa4,0x00,0x98,0x88,0x98,0x94,0xa2,0x42,0x00 -+// 49315 삣 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0xa4,0xa4,0xa4,0x84,0xa4,0x04,0x44,0x20,0x60,0x90,0x0c,0x04,0x00 -+// 49316 삤 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x84,0xa4,0x00,0x18,0x08,0x18,0x94,0x66,0x42,0x00 -+// 49317 삥 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x94,0x94,0xf4,0x94,0x94,0x04,0x24,0x30,0x88,0x04,0x88,0xf8,0x00 -+// 49318 삦 ; -+,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x94,0x94,0xf4,0x94,0x94,0x04,0x00,0x6c,0x60,0xd0,0x8c,0x00,0x00 -+// 49319 삧 ; -+,0x00,0x00,0x00,0x00,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0x00,0xe0,0x04,0x60,0x60,0x98,0x04,0x00 -+// 49320 삨 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x0a,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0xa4,0x84,0x84,0x04,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 49321 삩 ; -+,0x00,0x00,0x00,0x02,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0x84,0xa4,0x00,0x00,0x20,0x00,0x08,0x00,0xfc,0x00 -+// 49322 삪 ; -+,0x00,0x00,0x00,0x10,0x02,0x0a,0x02,0x02,0x0a,0x00,0x00,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x04,0xa4,0xa4,0xa4,0xa4,0xa4,0x80,0x00,0x1c,0x10,0x10,0x90,0x1e,0x00 -+// 49323 삫 ; -+,0x00,0x00,0x00,0x12,0x0a,0x0a,0x0a,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0x84,0xa4,0x00,0xe0,0x1c,0x60,0x90,0x00,0x90,0x00 -+// 49324 사 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x04,0x06,0x09,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x8f,0x88,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49325 삭 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x0d,0x10,0x20,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0xc8,0x08,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 49326 삮 ; -+,0x00,0x00,0x02,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49327 삯 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x09,0x10,0x20,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0xc8,0x08,0x00,0x98,0x10,0x18,0x24,0x42,0x00 -+// 49328 산 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x08,0x08,0x00,0x00,0x9c,0x00 -+// 49329 삱 ; -+,0x00,0x00,0x02,0x03,0x02,0x06,0x09,0x10,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8e,0xc8,0x08,0x00,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 49330 삲 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x0c,0x10,0x00,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x30,0x04,0x30,0x48,0xc4,0x78,0x00 -+// 49331 삳 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x0d,0x10,0x20,0x00,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0xc8,0x08,0x00,0x38,0x00,0x00,0x00,0xbc,0x00 -+// 49332 살 ; -+,0x00,0x00,0x00,0x03,0x02,0x07,0x08,0x10,0x00,0x03,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x98,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 49333 삵 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x08,0x20,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 49334 삶 ; -+,0x00,0x00,0x02,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x00,0x00,0x6c,0x40,0x08,0x08,0x20,0x00 -+// 49335 삷 ; -+,0x00,0x00,0x02,0x03,0x02,0x07,0x0c,0x10,0x00,0x00,0x00,0x02,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x00,0x08,0x48,0x48,0x48,0x48,0x48,0x00 -+// 49336 삸 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x08,0x10,0x20,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x98,0x10,0x18,0x24,0x44,0x00 -+// 49337 삹 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x40,0x40,0x60,0x40,0x3c,0x00 -+// 49338 삺 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x0c,0x10,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x58,0x08,0x08,0x00,0x44,0x00 -+// 49339 삻 ; -+,0x00,0x00,0x02,0x03,0x02,0x05,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8e,0x48,0x08,0x00,0x04,0x10,0x24,0x44,0x2c,0x00 -+// 49340 삼 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x10,0x00,0x00,0x03,0x02,0x00,0x00,0x01,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 49341 삽 ; -+,0x00,0x00,0x02,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49342 삾 ; -+,0x00,0x00,0x02,0x03,0x02,0x07,0x08,0x10,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 49343 삿 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x09,0x10,0x20,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8b,0xc8,0x08,0x08,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 49344 샀 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x10,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x10,0x08,0x10,0xa8,0x64,0x00,0x00 -+// 49345 상 ; -+,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x0f,0xc8,0x48,0x08,0x60,0x08,0x08,0x08,0xf0,0x00 -+// 49346 샂 ; -+,0x00,0x00,0x02,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x40,0x40,0x90,0x0c,0x04,0x00 -+// 49347 샃 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x08,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0xe0,0x00,0xc0,0x40,0x98,0x04,0x00 -+// 49348 샄 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 49349 샅 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x08,0x00,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0x00,0x38,0x00,0x18,0x00,0xfc,0x00 -+// 49350 샆 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x0d,0x10,0x20,0x00,0x07,0x00,0x01,0x00,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8f,0xc8,0x08,0x00,0xbc,0x10,0x10,0x10,0x1c,0x00 -+// 49351 샇 ; -+,0x00,0x00,0x00,0x03,0x02,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8f,0x48,0x08,0xe0,0x1c,0x60,0x90,0x10,0xb0,0x00 -+// 49352 새 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0x34,0xa4,0xa4,0x24,0x24,0x24,0x04,0x00 -+// 49353 색 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x05,0x08,0x10,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x94,0x14,0x00,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 49354 샊 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x06,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x94,0x00,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 49355 샋 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x04,0x04,0x14,0x84,0x84,0x00,0x88,0x88,0x9c,0x96,0xa2,0x00 -+// 49356 샌 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x08,0x10,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0xb4,0xa4,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 49357 샍 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x05,0x08,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x04,0x04,0x04,0x14,0x04,0x84,0x00,0x7e,0x18,0x18,0xa4,0x42,0x00 -+// 49358 샎 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x04,0x04,0x04,0x07,0x02,0x00,0x00,0x0c,0x24,0x04,0x04,0x04,0x14,0x84,0x04,0x38,0x02,0x18,0x24,0xc4,0x3c,0x00 -+// 49359 샏 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x06,0x01,0x00,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0x24,0xa4,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 49360 샐 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x06,0x04,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x04,0x04,0x14,0x84,0x84,0x00,0x84,0x04,0x9c,0x80,0xfe,0x00 -+// 49361 샑 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x94,0x00,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 49362 샒 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x94,0x00,0x00,0xa4,0xa4,0x24,0x24,0x10,0x00 -+// 49363 샓 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x06,0x09,0x10,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0xa4,0xa4,0x00,0x64,0x24,0x24,0x24,0x24,0x00 -+// 49364 샔 ; -+,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x08,0x10,0x01,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0xa4,0x00,0x90,0x88,0x88,0x1c,0x26,0x02,0x00 -+// 49365 샕 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x07,0x08,0x10,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x04,0x04,0x14,0x84,0x04,0x00,0xa0,0x20,0x20,0x20,0x3c,0x00 -+// 49366 샖 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0xa4,0x24,0x00,0x20,0x04,0x20,0x28,0x4e,0x00 -+// 49367 샗 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x07,0x00,0x10,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x04,0x04,0x04,0x14,0x84,0x00,0x18,0x82,0x18,0x24,0x20,0x34,0x00 -+// 49368 샘 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x09,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0x24,0x84,0x00,0x0c,0x04,0x04,0x04,0x80,0x00 -+// 49369 샙 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x04,0x04,0x04,0x14,0x84,0x00,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 49370 샚 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x05,0x08,0x10,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0xa4,0x20,0x88,0x08,0x88,0x14,0x82,0x00,0x00 -+// 49371 샛 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x94,0x04,0x20,0x20,0x20,0x48,0x84,0x02,0x00 -+// 49372 샜 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x05,0x08,0x10,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0xa4,0x00,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 49373 생 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x04,0x04,0x04,0x14,0x04,0x84,0x24,0x30,0x88,0x84,0x84,0x78,0x00 -+// 49374 샞 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x08,0x00,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x24,0x04,0x04,0x04,0x14,0x84,0x80,0x00,0xfc,0x40,0xd0,0x0c,0x04,0x00 -+// 49375 샟 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x04,0x04,0x04,0x14,0x84,0x00,0x60,0x00,0x60,0x60,0x88,0x06,0x00 -+// 49376 샠 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x01,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0x24,0xa4,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 49377 샡 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x06,0x01,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x34,0xa4,0xa4,0x00,0x3c,0x00,0x0c,0x00,0xfe,0x00 -+// 49378 샢 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x09,0x10,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x34,0xa4,0xa0,0x00,0x9c,0x10,0x90,0x10,0x1e,0x00 -+// 49379 샣 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x04,0x04,0x04,0x14,0x84,0x04,0x70,0x0e,0x20,0x88,0x88,0xd0,0x00 -+// 49380 샤 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x05,0x09,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0e,0x08,0x88,0x88,0x0c,0x08,0x08,0x08,0x08,0x00 -+// 49381 샥 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x05,0x08,0x20,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x88,0xc8,0x08,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 49382 샦 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x88,0xcb,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49383 샧 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x05,0x10,0x20,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x88,0xc8,0x08,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 49384 샨 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x88,0x48,0x0f,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 49385 샩 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x88,0x4b,0x08,0x00,0xf0,0x10,0x38,0x44,0x84,0x00 -+// 49386 샪 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x0c,0x10,0x00,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x88,0x48,0x08,0x30,0x04,0x30,0x48,0x40,0x68,0x00 -+// 49387 샫 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x10,0x00,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x08,0x88,0x08,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 49388 샬 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x10,0x00,0x00,0x02,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x88,0xc8,0x08,0x00,0x10,0x10,0x30,0x00,0x0c,0x00 -+// 49389 샭 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x0c,0x88,0x48,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49390 샮 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x88,0x49,0x08,0x00,0x48,0x48,0x48,0x48,0x60,0x00 -+// 49391 샯 ; -+,0x00,0x00,0x02,0x02,0x02,0x06,0x08,0x10,0x00,0x00,0x02,0x02,0x08,0x08,0x0c,0x00,0x00,0x10,0x08,0x08,0x08,0x0c,0x88,0x48,0x08,0x08,0x48,0x48,0x48,0x48,0x48,0x00 -+// 49392 샰 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x88,0x48,0x08,0x00,0x98,0x10,0x18,0x24,0x02,0x00 -+// 49393 샱 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x88,0x4a,0x08,0x08,0x40,0x40,0x40,0x40,0x3c,0x00 -+// 49394 샲 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x00,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x88,0x48,0x08,0x00,0x58,0x48,0x08,0x00,0xc4,0x00 -+// 49395 샳 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x08,0x10,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x88,0x48,0x08,0x10,0x06,0x10,0x24,0x44,0x2c,0x00 -+// 49396 샴 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x10,0x00,0x00,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x08,0x8b,0x08,0x00,0x18,0x08,0x00,0x10,0x00,0x00 -+// 49397 샵 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x08,0x00,0x00,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x88,0x48,0x08,0x00,0x08,0x18,0x08,0x08,0x08,0x00 -+// 49398 샶 ; -+,0x00,0x00,0x00,0x02,0x02,0x07,0x08,0x10,0x00,0x00,0x08,0x05,0x00,0x04,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x88,0x4b,0x08,0x18,0x88,0x90,0x8c,0xa4,0x42,0x00 -+// 49399 샷 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x09,0x10,0x20,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x88,0xc8,0x08,0x40,0x40,0x40,0x90,0x08,0x04,0x00 -+// 49400 샸 ; -+,0x00,0x00,0x02,0x01,0x02,0x07,0x08,0x10,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x88,0x4b,0x08,0x10,0x08,0x10,0xac,0x64,0x00,0x00 -+// 49401 샹 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x0b,0x08,0x88,0x4b,0x08,0x20,0xb0,0x08,0x08,0x08,0xf0,0x00 -+// 49402 샺 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x10,0x00,0x00,0x07,0x00,0x00,0x02,0x04,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x88,0xcb,0x08,0x00,0xc0,0xc0,0x90,0x08,0x00,0x00 -+// 49403 샻 ; -+,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x08,0x0a,0x08,0x88,0x4f,0x00,0xc0,0x08,0x40,0xa0,0x18,0x04,0x00 -+// 49404 샼 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x05,0x08,0x20,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x08,0xc8,0x48,0x00,0x98,0x08,0xe8,0x08,0x08,0x00 -+// 49405 샽 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x04,0x08,0x00,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x0f,0x88,0x48,0x0e,0x00,0x78,0x00,0x18,0x00,0xfc,0x00 -+// 49406 샾 ; -+,0x00,0x00,0x02,0x02,0x02,0x06,0x08,0x10,0x00,0x00,0x06,0x01,0x01,0x00,0x04,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x88,0x4f,0x08,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 49407 샿 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x08,0x10,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x0e,0x88,0x48,0x08,0xe0,0x1c,0x40,0x10,0x10,0xa0,0x00 -+// 49408 섀 ; -+,0x00,0x00,0x00,0x00,0x06,0x02,0x04,0x04,0x0a,0x11,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0x14,0x04,0x04,0x04,0x94,0x04,0x04,0x04,0x04,0x00 -+// 49409 섁 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x07,0x08,0x10,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0x84,0x80,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 49410 섂 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x09,0x10,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0x24,0x84,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 49411 섃 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x09,0x10,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x34,0x24,0x24,0xa4,0xa4,0x00,0x88,0x88,0x94,0xa6,0xc2,0x00 -+// 49412 섄 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x05,0x08,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x34,0x24,0x24,0xa4,0x24,0x24,0x00,0x00,0x06,0x00,0x00 -+// 49413 섅 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x05,0x00,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0xb4,0x84,0x00,0x7e,0x18,0x18,0xa4,0x42,0x00 -+// 49414 섆 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x07,0x09,0x10,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0xa4,0xa4,0x30,0x02,0x10,0x4c,0x44,0x38,0x00 -+// 49415 섇 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x09,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x34,0x24,0x24,0xb4,0x84,0x00,0x3c,0x00,0x00,0x00,0xfc,0x00 -+// 49416 섈 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x09,0x10,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0xa4,0x00,0xc4,0x04,0x8c,0x00,0x86,0x00 -+// 49417 섉 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x26,0x12,0x14,0x10,0x14,0x90,0x00,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 49418 섊 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x10,0x14,0x10,0x14,0x94,0x00,0x00,0xb4,0x80,0x04,0x04,0x10,0x00 -+// 49419 섋 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x34,0x04,0x04,0x94,0x00,0x04,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 49420 섌 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x14,0x14,0x10,0x10,0x94,0x10,0x00,0x88,0x88,0x08,0x16,0xa2,0x00 -+// 49421 섍 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x10,0x14,0x10,0x14,0x94,0x00,0x04,0xa0,0xa0,0x20,0x20,0x1e,0x00 -+// 49422 섎 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x06,0x04,0x02,0x00,0x00,0x04,0x26,0x12,0x16,0x12,0x16,0x92,0x00,0x00,0x80,0x84,0x04,0x00,0x6a,0x00 -+// 49423 섏 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0x94,0x00,0x18,0x02,0x18,0x24,0x24,0x3c,0x00 -+// 49424 섐 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0xb4,0x84,0x00,0x8c,0x04,0x04,0x84,0x80,0x00 -+// 49425 섑 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0x84,0x00,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 49426 섒 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x04,0x24,0x24,0x34,0x24,0x24,0xa4,0x00,0x88,0x88,0x88,0x14,0xa2,0x40,0x00 -+// 49427 섓 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x07,0x09,0x10,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x04,0x34,0x04,0x04,0x94,0x84,0x24,0x20,0x60,0x58,0x84,0x02,0x00 -+// 49428 섔 ; -+,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x08,0x10,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x24,0x34,0x24,0x24,0xa4,0x00,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 49429 섕 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x14,0x04,0x04,0x94,0x84,0x04,0x30,0x84,0x84,0x84,0x78,0x00 -+// 49430 섖 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x07,0x04,0x00,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x94,0x00,0x00,0xf0,0x60,0x58,0x84,0x00,0x00 -+// 49431 섗 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0x34,0x04,0x04,0x94,0x00,0xe0,0x04,0x60,0x60,0x88,0x06,0x00 -+// 49432 섘 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x07,0x04,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x04,0x14,0x94,0x00,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 49433 섙 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x10,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x04,0x14,0x94,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 49434 섚 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x06,0x09,0x10,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x24,0x34,0x24,0x24,0x24,0xa4,0x00,0x9c,0x10,0x90,0x90,0x1e,0x00 -+// 49435 섛 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x14,0x04,0x14,0x84,0x00,0x70,0x0e,0x20,0x88,0x88,0xd0,0x00 -+// 49436 서 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x3c,0x04,0x84,0x44,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49437 석 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x3c,0x84,0x84,0x44,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49438 섞 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x3c,0x84,0x44,0x04,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 49439 섟 ; -+,0x00,0x00,0x02,0x01,0x03,0x02,0x05,0x08,0x10,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x04,0x84,0x44,0x08,0x88,0x88,0x94,0xa2,0x80,0x00 -+// 49440 선 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x10,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x3c,0x84,0x44,0x04,0x04,0x04,0x00,0x00,0xde,0x00 -+// 49441 섡 ; -+,0x00,0x00,0x02,0x01,0x03,0x02,0x05,0x08,0x10,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x04,0x3c,0x84,0x84,0x04,0x00,0x78,0x08,0x18,0x24,0x42,0x00 -+// 49442 섢 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x04,0x04,0x04,0x07,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x3c,0x04,0xc4,0x00,0x38,0x02,0x18,0x24,0xc4,0x38,0x00 -+// 49443 섣 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x3c,0x84,0x84,0x44,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 49444 설 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x84,0xc4,0x00,0xc4,0x04,0x04,0x80,0x00,0xfe,0x00 -+// 49445 섥 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x06,0x08,0x10,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x04,0x3c,0x84,0x44,0x00,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 49446 섦 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x04,0x84,0x04,0x3c,0x84,0x44,0x00,0x00,0xb4,0xa4,0x24,0x04,0x90,0x00 -+// 49447 섧 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x01,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x84,0x04,0x3c,0x84,0x44,0x00,0x04,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 49448 섨 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x04,0x3c,0x84,0x44,0x00,0x00,0x88,0x88,0x18,0x26,0x02,0x00 -+// 49449 섩 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x04,0x3c,0x84,0x44,0x00,0x04,0xa0,0xa0,0x20,0x20,0x1e,0x00 -+// 49450 섪 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x07,0x00,0x05,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x04,0x84,0x40,0x00,0x28,0x04,0x20,0x08,0x4e,0x00 -+// 49451 섫 ; -+,0x00,0x00,0x02,0x01,0x03,0x02,0x04,0x08,0x00,0x00,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x84,0x44,0x00,0x18,0x02,0x18,0x24,0x20,0x24,0x00 -+// 49452 섬 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x3c,0x84,0x44,0x04,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 49453 섭 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x3c,0x84,0xc4,0x40,0x00,0x04,0x84,0x04,0x04,0x84,0x00 -+// 49454 섮 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x0c,0x04,0x04,0x04,0x24,0x84,0x44,0x00,0x88,0x48,0x88,0x14,0x02,0x40,0x00 -+// 49455 섯 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x04,0x04,0x3c,0x84,0xc4,0x44,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 49456 섰 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x01,0x01,0x02,0x00,0x08,0x00,0x00,0x08,0x04,0x04,0x04,0x24,0x84,0xc4,0x00,0x00,0x88,0x08,0x94,0x62,0x40,0x00 -+// 49457 성 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x3c,0x84,0xc4,0x44,0x14,0x38,0xc4,0x84,0x84,0x78,0x00 -+// 49458 섲 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x3c,0x84,0x44,0x04,0x00,0xec,0x20,0x58,0x84,0x02,0x00 -+// 49459 섳 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x0c,0x04,0x04,0x04,0x34,0x84,0x44,0x00,0x60,0x00,0x60,0x60,0x8c,0x02,0x00 -+// 49460 섴 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x84,0x44,0x04,0x00,0xc4,0x04,0xc4,0x04,0x04,0x00 -+// 49461 섵 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x07,0x0c,0x10,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x3c,0x04,0xc4,0x44,0x00,0x9c,0x00,0xfc,0x00,0xfe,0x00 -+// 49462 섶 ; -+,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x00,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x84,0x84,0x04,0x00,0x9c,0x10,0x88,0x90,0x1e,0x00 -+// 49463 섷 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x84,0x44,0x00,0x60,0x2e,0x60,0x88,0x88,0x70,0x00 -+// 49464 세 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x05,0x09,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0xf4,0x14,0x14,0x94,0x14,0x14,0x14,0x04,0x00 -+// 49465 섹 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x74,0x14,0x94,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 49466 섺 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0xf4,0x14,0x94,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 49467 섻 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x05,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0xf4,0x14,0x84,0x00,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 49468 센 ; -+,0x00,0x00,0x00,0x00,0x03,0x03,0x02,0x05,0x08,0x10,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0x64,0x04,0x84,0x84,0x04,0x04,0x00,0x00,0x00,0x00 -+// 49469 섽 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x05,0x08,0x10,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0xf4,0x14,0x84,0x00,0x7e,0x10,0x18,0xa4,0x42,0x00 -+// 49470 섾 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0x04,0x04,0xe4,0x04,0x84,0x30,0x02,0x10,0x24,0x44,0x28,0x00 -+// 49471 섿 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x10,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x74,0x14,0x94,0x00,0x1c,0x00,0x00,0x00,0xde,0x00 -+// 49472 셀 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x09,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x84,0x00,0x9c,0x00,0xfe,0x00 -+// 49473 셁 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x03,0x04,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x34,0x14,0x94,0x94,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 49474 셂 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x94,0x94,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 49475 셃 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x05,0x08,0x00,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x54,0x14,0x94,0x04,0x24,0x24,0x24,0x24,0x24,0x00 -+// 49476 셄 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x07,0x09,0x10,0x07,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x94,0x04,0x98,0x88,0x88,0x14,0x26,0x42,0x00 -+// 49477 셅 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xf4,0x14,0x94,0x04,0x20,0x20,0x20,0x20,0x3e,0x00 -+// 49478 셆 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x06,0x05,0x10,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x04,0x04,0x24,0x24,0x04,0x84,0x00,0x00,0x08,0x28,0x28,0x4e,0x00 -+// 49479 셇 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x04,0x04,0xe4,0x04,0x84,0x38,0x02,0x10,0x24,0x04,0x38,0x00 -+// 49480 셈 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xf4,0x14,0x94,0x00,0x8c,0x04,0x84,0x84,0x80,0x00 -+// 49481 셉 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x03,0x05,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x14,0x94,0x94,0x04,0x04,0x84,0x84,0x84,0x84,0x00 -+// 49482 셊 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x34,0x14,0x84,0x98,0x88,0x88,0x94,0xa2,0x40,0x00 -+// 49483 셋 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x05,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0xf4,0x14,0x84,0x64,0x20,0x60,0xd8,0x04,0x02,0x00 -+// 49484 셌 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x06,0x01,0x10,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x04,0x04,0x24,0x24,0x04,0x04,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 49485 셍 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x74,0x14,0x94,0x14,0x30,0x84,0x84,0x84,0x78,0x00 -+// 49486 셎 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x10,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xf4,0x14,0x94,0x00,0xfc,0x60,0xd0,0x8c,0x00,0x00 -+// 49487 셏 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x34,0x14,0x84,0xe0,0x00,0x60,0x60,0x88,0x06,0x00 -+// 49488 셐 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x74,0x14,0x94,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 49489 셑 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0xf4,0x14,0x84,0x00,0x3c,0x00,0x0c,0x00,0xfe,0x00 -+// 49490 셒 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x06,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0xf4,0x14,0x84,0x00,0xdc,0x10,0x90,0x90,0x1e,0x00 -+// 49491 셓 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x34,0x14,0x84,0x60,0x0e,0x60,0x90,0x88,0xd0,0x00 -+// 49492 셔 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x14,0x00,0x80,0xbc,0x40,0x00,0x00,0x00,0x00,0x00,0x00 -+// 49493 셕 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x14,0x04,0x84,0x94,0x44,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49494 셖 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x02,0x04,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x1c,0x04,0x84,0x9c,0x44,0x00,0x94,0x04,0x04,0x04,0x04,0x00 -+// 49495 셗 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0xbc,0x04,0x08,0x88,0x88,0x94,0xa2,0x80,0x00 -+// 49496 션 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x02,0x05,0x08,0x10,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x04,0x84,0xec,0x44,0x04,0x04,0x00,0x00,0xde,0x00 -+// 49497 셙 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x3c,0x04,0x04,0x84,0x04,0x00,0x78,0x08,0x18,0x24,0x42,0x00 -+// 49498 셚 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x04,0x04,0x04,0x07,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0xbc,0xc4,0x00,0x38,0x02,0x18,0x24,0xc4,0x3c,0x00 -+// 49499 셛 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x01,0x04,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x04,0x04,0x34,0x04,0x04,0xbc,0x44,0x00,0x1c,0x00,0x00,0x00,0x9e,0x00 -+// 49500 셜 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x9c,0x44,0x00,0x00,0x04,0x04,0x9c,0x00,0x8e,0x00 -+// 49501 셝 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x04,0x04,0x9c,0x44,0x00,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 49502 셞 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x00,0x0c,0x04,0x84,0x04,0x04,0x9c,0x44,0x00,0x00,0xb4,0xa4,0xa4,0x24,0x94,0x00 -+// 49503 셟 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x04,0x84,0x04,0x04,0x9c,0x44,0x00,0x04,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 49504 셠 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x04,0x84,0x44,0x00,0x00,0x88,0x88,0x18,0x24,0x02,0x00 -+// 49505 셡 ; -+,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x04,0x04,0x9c,0x44,0x00,0x00,0xa0,0xa0,0x20,0x20,0x9e,0x00 -+// 49506 셢 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x01,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x8c,0x44,0x00,0x00,0x80,0x84,0x24,0x00,0x6a,0x00 -+// 49507 셣 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x9c,0xc4,0x40,0x18,0x82,0x18,0x24,0x22,0x34,0x00 -+// 49508 셤 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x34,0x04,0x84,0x84,0x04,0x00,0x0c,0x04,0x04,0x04,0x80,0x00 -+// 49509 셥 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x34,0x04,0x84,0x84,0x04,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 49510 셦 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0xbc,0xc4,0x00,0x88,0x08,0x88,0x14,0x82,0x00,0x00 -+// 49511 셧 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0xa4,0x04,0x64,0x20,0x60,0x58,0x84,0x02,0x00 -+// 49512 셨 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x9c,0x44,0x00,0x08,0x88,0x88,0xdc,0x72,0x02,0x00 -+// 49513 셩 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x3c,0x04,0x04,0xb4,0x04,0x04,0x70,0x88,0x84,0x84,0x78,0x00 -+// 49514 셪 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0xa4,0x04,0x00,0xf0,0x60,0x50,0x8c,0x02,0x00 -+// 49515 셫 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x9c,0x44,0x00,0x60,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 49516 셬 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x34,0x04,0x04,0xa4,0x04,0x00,0xc4,0x04,0xe4,0x04,0x04,0x00 -+// 49517 셭 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x84,0xc4,0x40,0x00,0x3c,0x00,0x0c,0x00,0xfe,0x00 -+// 49518 셮 ; -+,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x2c,0x04,0x04,0xbc,0x84,0x00,0x1c,0x10,0x90,0x90,0x1e,0x00 -+// 49519 셯 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x9c,0x44,0x00,0x70,0x0e,0x20,0x88,0x88,0x50,0x00 -+// 49520 셰 ; -+,0x00,0x00,0x00,0x00,0x03,0x03,0x02,0x04,0x06,0x09,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x14,0x74,0x14,0x14,0x14,0x14,0x14,0x00,0x00 -+// 49521 셱 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 49522 셲 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x10,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x34,0x14,0x14,0x14,0x94,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 49523 셳 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x10,0x88,0x88,0x9c,0x92,0x82,0x00 -+// 49524 셴 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x02,0x06,0x09,0x10,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x34,0x14,0x14,0x74,0x94,0x14,0x04,0x00,0x00,0xce,0x00 -+// 49525 셵 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x00,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x34,0x94,0x00,0x78,0x10,0x18,0xa4,0x42,0x00 -+// 49526 셶 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x09,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x24,0x14,0x34,0x14,0x14,0x74,0x04,0x38,0x02,0x10,0x24,0xc4,0x28,0x00 -+// 49527 셷 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x09,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x14,0x74,0x14,0x74,0x14,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 49528 셸 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x06,0x01,0x11,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x04,0x64,0x04,0x00,0x84,0x04,0x8c,0x00,0xfe,0x00 -+// 49529 셹 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x34,0x14,0x14,0x14,0x94,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 49530 셺 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x14,0x94,0x00,0xa4,0xa4,0x24,0x24,0x00,0x00 -+// 49531 셻 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x04,0x24,0x24,0x24,0x24,0x24,0x00 -+// 49532 셼 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x06,0x09,0x10,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x34,0x14,0x14,0x14,0x84,0x00,0x88,0x88,0x18,0x26,0x02,0x00 -+// 49533 셽 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x04,0xe0,0x20,0x20,0x20,0x3e,0x00 -+// 49534 셾 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x00,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x34,0x14,0x14,0x34,0x84,0x00,0x28,0x08,0x20,0x28,0x4e,0x00 -+// 49535 셿 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x06,0x05,0x00,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x34,0x14,0x14,0x34,0x84,0x18,0x82,0x18,0x24,0x04,0x2c,0x00 -+// 49536 솀 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 49537 솁 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x34,0x14,0x14,0x74,0x94,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 49538 솂 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x06,0x09,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x34,0x14,0x34,0x34,0x04,0x88,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 49539 솃 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x04,0x20,0x60,0x50,0x84,0x02,0x00 -+// 49540 솄 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x06,0x09,0x10,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x24,0x14,0x74,0x14,0x34,0x14,0x04,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 49541 솅 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x04,0x70,0x84,0x84,0x84,0x78,0x00 -+// 49542 솆 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x10,0x14,0x54,0x94,0x00,0xec,0x60,0x50,0x8c,0x00,0x00 -+// 49543 솇 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x02,0x05,0x10,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x14,0x34,0x14,0x14,0x14,0x94,0x60,0x00,0x60,0x60,0x88,0x06,0x00 -+// 49544 솈 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x54,0x94,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 49545 솉 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x00,0x3c,0x00,0x0c,0x00,0xfe,0x00 -+// 49546 솊 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x01,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x34,0x34,0x34,0x14,0x74,0x04,0x00,0x9c,0x10,0x90,0x90,0x1e,0x00 -+// 49547 솋 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x06,0x01,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x34,0x14,0x14,0x34,0x84,0x60,0x0c,0x20,0x90,0x88,0xd0,0x00 -+// 49548 소 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x80,0x30,0x0c,0x00,0x80,0x40,0x40,0xdf,0x00,0x00,0x00 -+// 49549 속 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x40,0xce,0x00,0x00,0x18,0x08,0x00,0x00,0x00 -+// 49550 솎 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0xc0,0x40,0x06,0x00,0x7c,0x00,0x04,0x00,0x00,0x00 -+// 49551 솏 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0xc0,0x40,0x00,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 49552 손 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x1c,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xc0,0x80,0x20,0x0c,0x80,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x08,0x00 -+// 49553 솑 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x09,0x04,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0xc0,0x40,0x00,0x00,0xf0,0x10,0x30,0x4c,0x84,0x00 -+// 49554 솒 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1e,0x00,0x08,0x00,0x00,0x01,0x04,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0xc0,0x40,0x00,0x30,0x00,0xb0,0x38,0x44,0x48,0x00 -+// 49555 솓 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0xc0,0x40,0x06,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 49556 솔 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0xc0,0x40,0x00,0x00,0x10,0x10,0x70,0x00,0x3c,0x00 -+// 49557 솕 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x00,0x06,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 49558 솖 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x80,0xc0,0x80,0x18,0x04,0xc0,0x40,0x00,0x00,0x24,0x24,0x24,0x20,0x20,0x00 -+// 49559 솗 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0xc0,0x40,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x00 -+// 49560 솘 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1e,0x00,0x05,0x01,0x0d,0x08,0x0e,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0x80,0x00,0x06,0x00,0x10,0x10,0x28,0x44,0x04,0x00 -+// 49561 솙 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0xc0,0x40,0x00,0x00,0x68,0x40,0x78,0x40,0x3c,0x00 -+// 49562 솚 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0xc0,0x40,0x06,0x00,0x4c,0x08,0x28,0x28,0x4e,0x00 -+// 49563 솛 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x80,0xc0,0x80,0x18,0x04,0xc0,0x40,0x00,0x30,0x04,0x10,0x28,0x44,0x28,0x00 -+// 49564 솜 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0x80,0x40,0x00,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 49565 솝 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1e,0x00,0x04,0x06,0x04,0x00,0x02,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0xc0,0x40,0xfe,0x00,0x10,0x10,0x00,0x00,0x10,0x00 -+// 49566 솞 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x08,0x0c,0x08,0x08,0x04,0x00,0x00,0x80,0xc0,0x80,0x18,0x04,0xc0,0x40,0x00,0x10,0x90,0x90,0x98,0xa4,0xc2,0x00 -+// 49567 솟 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x80,0xce,0x00,0xc0,0x80,0x20,0x18,0x0c,0x00 -+// 49568 솠 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x02,0x03,0x02,0x04,0x00,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x40,0x00,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 49569 송 ; -+,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x80,0x80,0x30,0x04,0x80,0x80,0xce,0x00,0xc0,0x20,0x10,0x10,0xe0,0x00 -+// 49570 솢 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x40,0x00,0x00,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 49571 솣 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1e,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x80,0xc0,0x80,0x30,0x0c,0x80,0x00,0x86,0x00,0x00,0xc8,0xc0,0x30,0x08,0x00 -+// 49572 솤 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1c,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0xc0,0x40,0x00,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 49573 솥 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x06,0x00,0x02,0x00,0x03,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x00,0x06,0x00,0x70,0x00,0x30,0x00,0xf8,0x00 -+// 49574 솦 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x00,0x06,0x00,0x38,0x20,0x20,0x20,0x3c,0x00 -+// 49575 솧 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x06,0x00,0x01,0x00,0x01,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x80,0x40,0x00,0xc0,0xdc,0xc0,0x20,0x00,0xe0,0x00 -+// 49576 솨 ; -+,0x00,0x00,0x00,0x01,0x02,0x02,0x04,0x10,0x02,0x00,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0xc8,0x08,0x08,0x08,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 49577 솩 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x12,0x00,0x07,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x0f,0x18,0x88,0x00,0x10,0x08,0x08,0x08,0x00,0x00 -+// 49578 솪 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x02,0x00,0x07,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x0a,0x18,0x80,0x00,0x78,0x08,0x08,0x08,0x00,0x00 -+// 49579 솫 ; -+,0x00,0x00,0x00,0x02,0x02,0x01,0x10,0x02,0x07,0x18,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x1a,0x18,0x90,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 49580 솬 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x00,0x07,0x10,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x48,0x0e,0x18,0x08,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 49581 솭 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x00,0x08,0x08,0x0b,0x00,0x00,0x00,0x10,0x18,0x00,0x08,0x88,0x08,0x18,0x90,0x00,0x0c,0x30,0x30,0x48,0x84,0x00 -+// 49582 솮 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x02,0x00,0x1f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0xc8,0x0e,0x18,0x00,0x70,0x00,0xb4,0x78,0x48,0x48,0x00 -+// 49583 솯 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x03,0x18,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x80,0x18,0x18,0xd0,0x00,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 49584 솰 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x03,0x18,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x10,0x80,0x18,0x18,0x90,0x00,0x10,0x10,0x30,0x00,0x3c,0x00 -+// 49585 솱 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x12,0x00,0x07,0x18,0x09,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x0a,0x18,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 49586 솲 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x02,0x00,0x1f,0x00,0x0b,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x0f,0x18,0x00,0x00,0x68,0x48,0x48,0x48,0x40,0x00 -+// 49587 솳 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x00,0x07,0x10,0x0a,0x02,0x1a,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x0a,0x18,0x80,0x00,0x98,0x48,0x48,0x48,0x48,0x00 -+// 49588 솴 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x12,0x00,0x1f,0x00,0x0f,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0xc8,0x0e,0x38,0x00,0x00,0x10,0x10,0x38,0x4c,0x84,0x00 -+// 49589 솵 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x02,0x0f,0x00,0x0b,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x0a,0x18,0x00,0x00,0xc8,0x40,0x58,0x40,0x3c,0x00 -+// 49590 솶 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x12,0x02,0x0f,0x00,0x0f,0x00,0x0a,0x08,0x0e,0x00,0x00,0x10,0x18,0x00,0x08,0x88,0x0a,0x18,0x00,0x00,0x48,0x10,0x40,0x50,0x9c,0x00 -+// 49591 솷 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x12,0x02,0x0f,0x00,0x0f,0x01,0x0c,0x08,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x90,0x1a,0x38,0x10,0x30,0x00,0x30,0x28,0x40,0x38,0x00 -+// 49592 솸 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x03,0x1c,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x18,0x00,0x00,0x88,0x48,0x18,0xd0,0x00,0x00,0x18,0x10,0x10,0x00,0x00 -+// 49593 솹 ; -+,0x00,0x00,0x00,0x02,0x02,0x08,0x12,0x02,0x1f,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x10,0x10,0x00,0x90,0x1e,0x30,0x10,0x00,0x10,0x10,0x10,0x00,0x10,0x00 -+// 49594 솺 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x12,0x02,0x0f,0x10,0x01,0x09,0x08,0x08,0x08,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x1a,0x18,0x10,0x00,0x10,0x10,0x38,0x24,0x40,0x00 -+// 49595 솻 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x10,0x02,0x03,0x18,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x18,0x00,0x00,0x88,0x0e,0x18,0x90,0x00,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 49596 솼 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x12,0x02,0x1f,0x00,0x03,0x02,0x03,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x1e,0x30,0x00,0x00,0x10,0x10,0x28,0xc4,0x04,0x00 -+// 49597 솽 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x5a,0x18,0xd0,0x00,0x40,0x10,0x10,0x10,0xf0,0x00 -+// 49598 솾 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x0e,0x18,0x00,0x00,0x38,0x40,0xc0,0x10,0x08,0x00 -+// 49599 솿 ; -+,0x00,0x00,0x02,0x02,0x02,0x04,0x02,0x01,0x1e,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x08,0x08,0xc8,0x0e,0x78,0x00,0x00,0x00,0xc8,0xc0,0xb0,0x0c,0x00 -+// 49600 쇀 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x03,0x18,0x07,0x00,0x0b,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x48,0x18,0x80,0x00,0x90,0x10,0xd8,0x00,0x00,0x00 -+// 49601 쇁 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x10,0x10,0x10,0x90,0x58,0x18,0x90,0x00,0x18,0x00,0x18,0x00,0xfc,0x00 -+// 49602 쇂 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x10,0x02,0x07,0x10,0x07,0x00,0x01,0x01,0x0e,0x00,0x00,0x10,0x18,0x00,0x08,0x88,0x0a,0x18,0x80,0x00,0xb8,0x30,0x00,0x20,0x3c,0x00 -+// 49603 쇃 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x10,0x18,0x00,0x08,0x88,0x4a,0x18,0x80,0x00,0x00,0xc0,0xe0,0x10,0x20,0x00 -+// 49604 쇄 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x04,0x08,0x02,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0xd4,0x14,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x00 -+// 49605 쇅 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x34,0x94,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 49606 쇆 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x34,0x94,0x00,0x14,0x84,0x84,0x84,0x84,0x00 -+// 49607 쇇 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x04,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 49608 쇈 ; -+,0x00,0x00,0x00,0x00,0x02,0x06,0x08,0x00,0x02,0x03,0x1c,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0x94,0x1c,0x34,0xb4,0x04,0x04,0x00,0x00,0xde,0x00 -+// 49609 쇉 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x08,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x14,0x00,0x76,0x10,0x18,0xa4,0x82,0x00 -+// 49610 쇊 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x04,0x30,0x00,0xd0,0x28,0xc4,0x38,0x00 -+// 49611 쇋 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x03,0x1c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x34,0x94,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 49612 쇌 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x34,0x34,0x24,0x00,0xc4,0x04,0x8c,0x00,0xfe,0x00 -+// 49613 쇍 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x1c,0x06,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x14,0x94,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 49614 쇎 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x02,0x03,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x14,0x00,0xb4,0xa4,0xa4,0x24,0x20,0x00 -+// 49615 쇏 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x02,0x03,0x08,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x14,0x34,0x14,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 49616 쇐 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x02,0x03,0x18,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x14,0x00,0x88,0x98,0x18,0x26,0x42,0x00 -+// 49617 쇑 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x00,0x03,0x08,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0x14,0x94,0x14,0x14,0x94,0x00,0xec,0x20,0x2c,0x20,0x3e,0x00 -+// 49618 쇒 ; -+,0x00,0x00,0x00,0x02,0x02,0x09,0x00,0x02,0x03,0x10,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0x24,0x24,0x00,0x20,0x04,0x20,0x08,0x4a,0x00 -+// 49619 쇓 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x84,0x30,0x00,0x78,0x34,0x24,0x3c,0x00 -+// 49620 쇔 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x14,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 49621 쇕 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x02,0x03,0x18,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x14,0x14,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 49622 쇖 ; -+,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x02,0x03,0x18,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0x34,0xa4,0x00,0x88,0x88,0x98,0x82,0x40,0x00 -+// 49623 쇗 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x84,0x04,0x20,0x60,0x58,0x84,0x02,0x00 -+// 49624 쇘 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x24,0x14,0x04,0x94,0x14,0x34,0x84,0x00,0x08,0x08,0x98,0x66,0x42,0x00 -+// 49625 쇙 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0xa4,0x04,0x30,0x80,0x84,0x84,0x78,0x00 -+// 49626 쇚 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x1c,0x34,0x14,0x00,0x0c,0x20,0x70,0x8c,0x04,0x00 -+// 49627 쇛 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x02,0x02,0x03,0x08,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0x14,0x14,0xd4,0x14,0x34,0x14,0x00,0x00,0xe4,0x20,0xd8,0x04,0x00 -+// 49628 쇜 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x08,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x04,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 49629 쇝 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x02,0x03,0x18,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x34,0x94,0x00,0x1c,0x00,0x0c,0x00,0xfe,0x00 -+// 49630 쇞 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x02,0x03,0x18,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x34,0x04,0x84,0x14,0x34,0xa4,0x00,0xbc,0x10,0x90,0x90,0x1e,0x00 -+// 49631 쇟 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x00,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0xd4,0x14,0x34,0x14,0x60,0x06,0x20,0x88,0x88,0x70,0x00 -+// 49632 쇠 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x01,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x84,0x34,0x04,0x84,0x84,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 49633 쇡 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x01,0x00,0x01,0x0c,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x84,0x64,0x04,0x84,0xe4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 49634 쇢 ; -+,0x00,0x00,0x01,0x01,0x01,0x06,0x01,0x00,0x1f,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x24,0x04,0x84,0x84,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 49635 쇣 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x01,0x08,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x44,0x04,0x0c,0xc4,0x00,0x18,0x88,0x98,0x94,0x82,0x00 -+// 49636 쇤 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x01,0x01,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x84,0x24,0x04,0x0c,0x84,0x04,0x04,0x00,0x00,0xce,0x00 -+// 49637 쇥 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x03,0x00,0x00,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0xc4,0x00,0x06,0x10,0x18,0xa4,0x42,0x00 -+// 49638 쇦 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x07,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0xc4,0x00,0x00,0xf6,0x38,0xc4,0x2c,0x00 -+// 49639 쇧 ; -+,0x00,0x00,0x00,0x01,0x01,0x06,0x09,0x01,0x01,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x44,0x04,0x0c,0xc4,0x00,0x08,0x00,0x00,0x00,0xdc,0x00 -+// 49640 쇨 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0x84,0x00,0xc8,0x08,0x38,0x00,0xfe,0x00 -+// 49641 쇩 ; -+,0x00,0x00,0x01,0x01,0x01,0x04,0x01,0x00,0x0f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x84,0x84,0xc4,0x24,0x84,0x94,0x04,0x00,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 49642 쇪 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x01,0x00,0x0f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x84,0x24,0x04,0x84,0x84,0x00,0xb4,0xa4,0xa4,0x24,0x20,0x00 -+// 49643 쇫 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x01,0x00,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x84,0x84,0x80,0x24,0x84,0x84,0xc4,0x00,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 49644 쇬 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x84,0x24,0x04,0x1c,0x04,0x00,0x88,0x90,0x18,0x24,0x42,0x00 -+// 49645 쇭 ; -+,0x00,0x00,0x01,0x01,0x01,0x04,0x01,0x01,0x03,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x04,0x64,0x04,0x04,0xc4,0x00,0xe8,0x20,0x28,0x20,0x3c,0x00 -+// 49646 쇮 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x04,0x04,0x84,0x64,0x04,0x0c,0x84,0x00,0x00,0x08,0x28,0x08,0x4e,0x00 -+// 49647 쇯 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x05,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0x80,0x18,0x00,0x78,0x24,0x24,0x3c,0x00 -+// 49648 쇰 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0x80,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 49649 쇱 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x03,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x04,0x04,0x84,0x64,0x04,0x0c,0xc4,0x00,0x0c,0x04,0x84,0x04,0x84,0x00 -+// 49650 쇲 ; -+,0x00,0x00,0x00,0x01,0x03,0x04,0x01,0x01,0x0f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x44,0x04,0x0c,0x80,0x00,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 49651 쇳 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x01,0x01,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0xc4,0x00,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 49652 쇴 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x04,0x84,0x64,0x04,0x0c,0x84,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 49653 쇵 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x64,0x04,0x0c,0xc4,0x04,0x70,0x88,0x84,0x88,0x70,0x00 -+// 49654 쇶 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x84,0x64,0x04,0x0c,0x84,0x00,0x3c,0x60,0x60,0x88,0x04,0x00 -+// 49655 쇷 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0x84,0x00,0x00,0x6c,0x60,0x98,0x04,0x00 -+// 49656 쇸 ; -+,0x00,0x00,0x01,0x01,0x01,0x04,0x01,0x01,0x0f,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x64,0x04,0x04,0xc4,0x00,0xcc,0x04,0xec,0x04,0x00,0x00 -+// 49657 쇹 ; -+,0x00,0x00,0x00,0x01,0x01,0x06,0x01,0x01,0x03,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x04,0x64,0x04,0x04,0xc4,0x00,0x0c,0x00,0x0c,0x00,0xfe,0x00 -+// 49658 쇺 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x1f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x04,0x04,0x84,0x64,0x04,0x0c,0x84,0x00,0xfc,0x10,0x90,0x90,0x1e,0x00 -+// 49659 쇻 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x64,0x04,0x0c,0x84,0x60,0x06,0x20,0x88,0x88,0x70,0x00 -+// 49660 쇼 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x02,0x03,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x80,0x30,0x0c,0x20,0x10,0x10,0x10,0x3f,0x00,0x00,0x00 -+// 49661 쇽 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x02,0x1f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x30,0x04,0x20,0x20,0x3e,0x00,0x90,0x10,0x10,0x10,0x10,0x00 -+// 49662 쇾 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x02,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0x80,0x80,0x38,0x04,0x20,0x20,0x3e,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 49663 쇿 ; -+,0x00,0x00,0x00,0x00,0x02,0x04,0x00,0x02,0x1f,0x00,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0x80,0x80,0x30,0x04,0x20,0x20,0x3e,0x00,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 49664 숀 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x02,0x01,0x3f,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0xc0,0x80,0x60,0x0c,0x00,0x10,0x10,0x3f,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 49665 숁 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x02,0x1f,0x00,0x18,0x08,0x08,0x0d,0x00,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x20,0x00,0x3f,0x00,0xb8,0x10,0x30,0x4c,0x84,0x00 -+// 49666 숂 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x00,0x1f,0x00,0x18,0x08,0x08,0x08,0x04,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x20,0x10,0x00,0x70,0x04,0x30,0x48,0x08,0x58,0x00 -+// 49667 숃 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x03,0x1f,0x00,0x00,0x06,0x00,0x00,0x03,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x00,0x7f,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 49668 숄 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x02,0x1f,0x00,0x07,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x30,0x06,0x00,0x90,0x10,0xf0,0x00,0x18,0x00 -+// 49669 숅 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x02,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x00,0x3e,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 49670 숆 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x01,0x1f,0x00,0x0d,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x10,0x3e,0x00,0x6c,0x24,0x00,0x00,0x28,0x00 -+// 49671 숇 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x02,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x20,0x30,0x06,0x08,0x64,0x3c,0x24,0x2c,0x28,0x00 -+// 49672 숈 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x02,0x1f,0x00,0x0d,0x01,0x0d,0x08,0x0f,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x00,0x3f,0x00,0x10,0x10,0x38,0x0c,0x84,0x00 -+// 49673 숉 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x00,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x20,0x10,0x06,0x00,0x7c,0x40,0x78,0x40,0x3c,0x00 -+// 49674 숊 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x00,0x3f,0x00,0x40,0x08,0x48,0x00,0xfc,0x00 -+// 49675 숋 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x00,0x1f,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x80,0x80,0x80,0x30,0x04,0x20,0x00,0x3e,0x30,0x00,0x10,0x08,0x40,0x48,0x00 -+// 49676 숌 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x03,0x1f,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x20,0x10,0x3f,0x00,0x30,0x10,0x10,0x10,0x80,0x00 -+// 49677 숍 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x02,0x1f,0x00,0x04,0x06,0x06,0x04,0x07,0x00,0x00,0x00,0xc0,0x80,0x60,0x0c,0x20,0x00,0x3f,0x00,0x10,0x70,0x10,0x10,0xf0,0x00 -+// 49678 숎 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x00,0x1f,0x01,0x08,0x0d,0x08,0x08,0x0f,0x00,0x00,0x80,0x80,0x80,0x30,0x04,0x20,0x10,0x3e,0x10,0x90,0x90,0xa8,0xa4,0xc4,0x00 -+// 49679 숏 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x20,0x00,0x3f,0x00,0xc0,0x80,0x20,0x18,0x08,0x00 -+// 49680 숐 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x02,0x1f,0x00,0x02,0x02,0x03,0x04,0x00,0x00,0x00,0x00,0x80,0x80,0x30,0x0c,0x20,0x20,0x7f,0x00,0x10,0x10,0x38,0xcc,0x84,0x00 -+// 49681 숑 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x02,0x13,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x80,0x80,0x80,0x30,0x04,0x20,0x00,0x7f,0xc0,0xc0,0x20,0x10,0x10,0xe0,0x00 -+// 49682 숒 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x02,0x1f,0x00,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x20,0x20,0x3e,0x00,0xc0,0xc0,0x20,0x18,0x08,0x00 -+// 49683 숓 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x02,0x1f,0x01,0x00,0x0f,0x00,0x03,0x0c,0x00,0x00,0x80,0x80,0x80,0x30,0x04,0x20,0x20,0x7e,0x00,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 49684 숔 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x02,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x20,0x20,0x3f,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 49685 숕 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x02,0x1f,0x00,0x07,0x04,0x07,0x04,0x03,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x00,0x3e,0x00,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 49686 숖 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x02,0x1f,0x00,0x00,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x20,0x20,0x3f,0x00,0x18,0x20,0x20,0x20,0x7c,0x00 -+// 49687 숗 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x02,0x02,0x1f,0x01,0x0c,0x00,0x01,0x02,0x01,0x00,0x00,0x80,0x80,0x80,0x30,0x04,0x20,0x20,0xfe,0xc0,0xbc,0xc0,0x20,0x20,0xe0,0x00 -+// 49688 수 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x38,0x04,0x00,0x00,0xff,0x40,0x40,0x40,0x40,0x00,0x00,0x00 -+// 49689 숙 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x02,0xc0,0x40,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 49690 숚 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x40,0x80,0x30,0x04,0x00,0x02,0xc0,0x00,0xfc,0x04,0x04,0x00,0x00,0x00 -+// 49691 숛 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x06,0xc0,0x00,0x30,0x10,0x30,0x2c,0x06,0x00 -+// 49692 순 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x3f,0x00,0x00,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x00,0x00,0xfe,0x80,0x80,0x00,0x00,0x00,0x78,0x00 -+// 49693 숝 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x80,0x40,0xc0,0x30,0x04,0x00,0x02,0xc0,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 49694 숞 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x80,0xc0,0xc0,0x18,0x00,0x00,0x3f,0x80,0x70,0x00,0xb0,0x50,0x48,0x48,0x00 -+// 49695 숟 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x80,0x40,0xc0,0x30,0x04,0x00,0x02,0xc0,0x00,0x10,0x00,0x00,0x00,0xb8,0x00 -+// 49696 술 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x18,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x80,0x40,0x80,0x38,0x04,0x00,0x06,0xc0,0x00,0x10,0x10,0x30,0x00,0xfc,0x00 -+// 49697 숡 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x09,0x00,0x0f,0x04,0x05,0x00,0x00,0x80,0xc0,0x80,0x18,0x00,0x00,0x0e,0xc0,0x00,0xb8,0x88,0x08,0x08,0x08,0x00 -+// 49698 숢 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x18,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x80,0xc0,0xc0,0x18,0x00,0x00,0xff,0x00,0x40,0x24,0x24,0x24,0x24,0x20,0x00 -+// 49699 숣 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x80,0xc0,0x80,0x18,0x00,0x00,0x0e,0xc0,0x40,0x44,0x3c,0x24,0x24,0x24,0x00 -+// 49700 숤 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x10,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0xc0,0x80,0x38,0x04,0x00,0x1f,0x00,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 49701 숥 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x09,0x01,0x0f,0x04,0x06,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0x00,0x0e,0xc0,0x00,0x6c,0x00,0x38,0x00,0x3c,0x00 -+// 49702 숦 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x01,0x01,0x0f,0x04,0x06,0x00,0x00,0x80,0xc0,0x80,0x18,0x00,0x00,0x0f,0x40,0x00,0x1c,0x08,0x28,0x28,0x4c,0x00 -+// 49703 숧 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x09,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0xc0,0x80,0x18,0x04,0x00,0x0e,0x00,0x70,0x04,0x10,0x08,0x44,0x38,0x00 -+// 49704 숨 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x02,0xc0,0x00,0xd0,0x10,0x10,0x10,0x30,0x00 -+// 49705 숩 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x18,0x00,0x00,0x04,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x80,0x38,0x04,0x00,0x7f,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 49706 숪 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x10,0x00,0x00,0x08,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x40,0xc0,0x38,0x04,0x00,0x1f,0x40,0x90,0x90,0x90,0x98,0xa4,0xc2,0x00 -+// 49707 숫 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x18,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x02,0x40,0x00,0xc0,0xc0,0x20,0x18,0x0c,0x00 -+// 49708 숬 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x18,0x00,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x80,0x40,0xc0,0x18,0x00,0x00,0x3f,0x40,0x00,0x10,0x10,0xa8,0xc4,0x00,0x00 -+// 49709 숭 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x00,0xc2,0x40,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 49710 숮 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x07,0x40,0x00,0xfc,0xc0,0xe0,0x18,0x0c,0x00 -+// 49711 숯 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x18,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0x00,0x3f,0x00,0xc0,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 49712 숰 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x18,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x02,0xc0,0x00,0xc8,0x08,0xe8,0x08,0x08,0x00 -+// 49713 숱 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x40,0xc0,0x38,0x04,0x00,0x07,0x40,0x00,0xf8,0x00,0x78,0x00,0xf8,0x00 -+// 49714 숲 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x40,0x80,0x38,0x04,0x00,0x06,0x80,0x00,0xd8,0x20,0x20,0x20,0xfc,0x00 -+// 49715 숳 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x10,0x00,0x01,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x80,0xc0,0x80,0x18,0x04,0x00,0x1f,0x00,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 49716 숴 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x44,0x14,0x04,0x04,0x04,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 49717 숵 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x74,0x04,0x04,0x3c,0x00,0x0c,0x0c,0x04,0x04,0x00,0x00 -+// 49718 숶 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0xbc,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 49719 숷 ; -+,0x00,0x00,0x00,0x01,0x01,0x06,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x74,0x04,0x04,0x3c,0x00,0x08,0x88,0x98,0xa6,0x82,0x00 -+// 49720 숸 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x01,0x09,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x04,0x64,0x14,0x04,0x84,0x04,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 49721 숹 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x1f,0x01,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x00,0x3e,0x18,0x18,0xa4,0x42,0x00 -+// 49722 숺 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x13,0x01,0x01,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0x04,0x3c,0x30,0x00,0xde,0x28,0xc4,0x38,0x00 -+// 49723 숻 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0d,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x74,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 49724 숼 ; -+,0x00,0x00,0x00,0x01,0x01,0x06,0x00,0x11,0x01,0x01,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0x04,0x3c,0x00,0xfc,0x00,0x18,0x00,0xfe,0x00 -+// 49725 숽 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x00,0x84,0x84,0x84,0x04,0x84,0x00 -+// 49726 숾 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x0f,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x86,0x82,0x82,0x12,0x02,0x84,0xbc,0x80,0xb6,0x80,0x80,0x04,0x90,0x00 -+// 49727 숿 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x0f,0x00,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x84,0x34,0x04,0x84,0xbc,0x00,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 49728 쉀 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x13,0x01,0x00,0x04,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 49729 쉁 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x1f,0x00,0x00,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x00,0xac,0xa0,0xac,0x20,0xbe,0x00 -+// 49730 쉂 ; -+,0x00,0x00,0x00,0x01,0x01,0x06,0x00,0x13,0x01,0x01,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x04,0xa8,0x04,0x20,0x08,0x7e,0x00 -+// 49731 쉃 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x1f,0x01,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x34,0x04,0x84,0x3c,0x00,0x80,0x78,0x14,0x20,0x34,0x00 -+// 49732 쉄 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x1f,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x00,0x0c,0x04,0x00,0x08,0x00,0x00 -+// 49733 쉅 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x13,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 49734 쉆 ; -+,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x24,0x04,0x04,0x3c,0x00,0x88,0x88,0x9c,0x86,0x82,0x00 -+// 49735 쉇 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x04,0x3c,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 49736 쉈 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x01,0x01,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x04,0x3c,0x00,0x08,0x08,0x9c,0x76,0x02,0x00 -+// 49737 쉉 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x04,0x34,0xc4,0x84,0x84,0x78,0x00 -+// 49738 쉊 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x00,0x1e,0x20,0x70,0x88,0x06,0x00 -+// 49739 쉋 ; -+,0x00,0x00,0x01,0x00,0x03,0x04,0x00,0x1f,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x04,0x84,0x04,0x14,0x04,0x84,0x34,0x00,0x60,0xfe,0x20,0xd8,0x06,0x00 -+// 49740 쉌 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x0f,0x00,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x34,0x04,0x84,0xbc,0x00,0xc4,0x04,0xe4,0x04,0x04,0x00 -+// 49741 쉍 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x34,0x04,0x04,0x3c,0x00,0x00,0x80,0x0c,0x00,0x9e,0x00 -+// 49742 쉎 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x11,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x34,0x04,0x04,0x3c,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 49743 쉏 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x13,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x84,0x3c,0x60,0x02,0xb0,0x48,0x88,0x78,0x00 -+// 49744 쉐 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1e,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x94,0x14,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x00 -+// 49745 쉑 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x00,0x03,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0xd4,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49746 쉒 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x00,0x03,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x14,0x10,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 49747 쉓 ; -+,0x00,0x00,0x00,0x02,0x01,0x03,0x04,0x01,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0x34,0x14,0x18,0x88,0x98,0xa4,0x82,0x00 -+// 49748 쉔 ; -+,0x00,0x00,0x00,0x00,0x03,0x03,0x04,0x00,0x1f,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0xd4,0x14,0x14,0xf4,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 49749 쉕 ; -+,0x00,0x00,0x00,0x02,0x01,0x03,0x04,0x01,0x0a,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0x34,0x14,0x0e,0x18,0x18,0x24,0x82,0x00 -+// 49750 쉖 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x00,0x03,0x0a,0x00,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x30,0x00,0xde,0x28,0x44,0x38,0x00 -+// 49751 쉗 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x00,0x03,0x0a,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 49752 쉘 ; -+,0x00,0x00,0x00,0x02,0x02,0x07,0x00,0x01,0x1a,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0x74,0x04,0xfc,0x04,0x1c,0x00,0x8e,0x00 -+// 49753 쉙 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x00,0x03,0x00,0x00,0x06,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 49754 쉚 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x00,0x01,0x0d,0x01,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x26,0x10,0x10,0xd0,0x10,0x10,0x70,0x00,0xa6,0x80,0x84,0x04,0x90,0x00 -+// 49755 쉛 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x00,0x01,0x0a,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x00,0x84,0x24,0x24,0x24,0x24,0x00 -+// 49756 쉜 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x00,0x03,0x0a,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 49757 쉝 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x00,0x00,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x10,0xac,0x20,0xac,0x20,0x3e,0x00 -+// 49758 쉞 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x03,0x02,0x02,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0x74,0x00,0xac,0x0c,0x20,0x28,0x7e,0x00 -+// 49759 쉟 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x00,0x01,0x0a,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x10,0x00,0x7e,0x18,0x24,0x24,0x00 -+// 49760 쉠 ; -+,0x00,0x00,0x00,0x02,0x01,0x03,0x04,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x14,0x14,0x14,0x00,0x84,0x84,0x84,0x80,0x00 -+// 49761 쉡 ; -+,0x00,0x00,0x00,0x03,0x03,0x06,0x00,0x03,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0xd4,0x14,0x14,0x74,0x10,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 49762 쉢 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x00,0x07,0x02,0x02,0x00,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0x74,0x10,0x88,0x88,0x1c,0xa2,0x42,0x00 -+// 49763 쉣 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x00,0x01,0x0b,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x34,0x14,0x14,0xd4,0x14,0x14,0x74,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 49764 쉤 ; -+,0x00,0x00,0x00,0x03,0x01,0x04,0x00,0x0f,0x01,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0xd4,0x14,0x14,0x74,0x10,0x88,0x08,0x9c,0x62,0x02,0x00 -+// 49765 쉥 ; -+,0x00,0x00,0x00,0x02,0x01,0x03,0x04,0x01,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x14,0x74,0x14,0x30,0xcc,0x84,0x84,0x78,0x00 -+// 49766 쉦 ; -+,0x00,0x00,0x00,0x02,0x01,0x02,0x00,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x14,0x14,0xd4,0x14,0x14,0x34,0x14,0x0c,0x60,0x60,0x88,0x04,0x00 -+// 49767 쉧 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x00,0x07,0x01,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x74,0x00,0x00,0x6c,0x20,0xd8,0x06,0x00 -+// 49768 쉨 ; -+,0x00,0x00,0x00,0x02,0x01,0x03,0x04,0x01,0x0e,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x14,0x14,0x14,0x1c,0x04,0x3c,0x04,0x04,0x00 -+// 49769 쉩 ; -+,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x01,0x0a,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x14,0x74,0x10,0x0c,0x00,0x1c,0x00,0xfe,0x00 -+// 49770 쉪 ; -+,0x00,0x00,0x00,0x02,0x03,0x03,0x00,0x00,0x0a,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x14,0x14,0x34,0x14,0x1c,0x10,0x90,0x90,0xfe,0x00 -+// 49771 쉫 ; -+,0x00,0x00,0x00,0x03,0x02,0x04,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0x14,0xd4,0x14,0x14,0x74,0x10,0x00,0xf0,0x50,0x88,0xd0,0x00 -+// 49772 쉬 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x00,0x01,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0xc4,0x14,0x04,0x04,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49773 쉭 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x04,0x74,0x04,0x04,0x84,0x04,0x00,0x04,0x04,0x04,0x04,0x00 -+// 49774 쉮 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x64,0x84,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 49775 쉯 ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x08,0x00,0x1f,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x74,0x04,0x2c,0x04,0x00,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 49776 쉰 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x00,0x1f,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x44,0x14,0x04,0x64,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 49777 쉱 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x00,0x1f,0x01,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x64,0x04,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 49778 쉲 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x01,0x01,0x00,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0x84,0x04,0x24,0x04,0xe4,0x04,0x38,0x00,0xd8,0x28,0xc4,0x38,0x00 -+// 49779 쉳 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x74,0x04,0x24,0x84,0x80,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 49780 쉴 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x00,0x01,0x09,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x24,0x04,0xe4,0x04,0x00,0xfc,0x08,0x18,0x00,0xde,0x00 -+// 49781 쉵 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x01,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0x84,0x84,0x34,0x04,0xe4,0x84,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 49782 쉶 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x01,0x08,0x00,0x06,0x00,0x04,0x00,0x03,0x00,0x00,0x00,0x04,0x84,0x84,0x34,0x04,0xe4,0x84,0x00,0xa4,0xa4,0xa4,0x24,0x00,0x00 -+// 49783 쉷 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x00,0x08,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x04,0x34,0x04,0xe4,0x84,0x00,0xa4,0x3c,0x24,0x24,0x24,0x00 -+// 49784 쉸 ; -+,0x00,0x00,0x01,0x01,0x01,0x06,0x00,0x00,0x09,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0xe4,0x04,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 49785 쉹 ; -+,0x00,0x00,0x01,0x01,0x01,0x04,0x00,0x1f,0x00,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0xc4,0x04,0x00,0xa0,0x20,0x2c,0x20,0x3c,0x00 -+// 49786 쉺 ; -+,0x00,0x00,0x00,0x01,0x01,0x06,0x00,0x00,0x09,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x04,0x34,0x04,0xe4,0x04,0x00,0xa8,0x0c,0x20,0x08,0x6a,0x00 -+// 49787 쉻 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x01,0x01,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x34,0x04,0xe4,0x04,0x00,0x80,0x7a,0x1c,0x24,0x24,0x00 -+// 49788 쉼 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x34,0x04,0x24,0x84,0x00,0x04,0x84,0x84,0x84,0x80,0x00 -+// 49789 쉽 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x00,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x34,0x04,0xf4,0x84,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 49790 쉾 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x03,0x01,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x34,0x04,0xc4,0x04,0x00,0x88,0x88,0x98,0x92,0xa2,0x00 -+// 49791 쉿 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x34,0x84,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 49792 슀 ; -+,0x00,0x00,0x01,0x01,0x01,0x04,0x00,0x01,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0xe4,0x04,0x00,0x08,0x08,0x94,0x66,0x42,0x00 -+// 49793 슁 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x84,0x84,0x34,0x04,0x24,0x84,0x84,0x10,0x44,0x84,0x84,0x78,0x00 -+// 49794 슂 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x64,0x84,0x00,0x1c,0x20,0x70,0x8c,0x06,0x00 -+// 49795 슃 ; -+,0x00,0x00,0x01,0x00,0x01,0x06,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x84,0x84,0x14,0x04,0xe4,0x04,0x00,0x60,0xfe,0x20,0x58,0x06,0x00 -+// 49796 슄 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x34,0x04,0xe4,0x84,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 49797 슅 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x74,0x04,0x64,0x84,0x00,0x04,0x00,0x0c,0x00,0xfe,0x00 -+// 49798 슆 ; -+,0x00,0x00,0x01,0x01,0x01,0x06,0x00,0x00,0x1d,0x01,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x34,0x04,0x6c,0x04,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 49799 슇 ; -+,0x00,0x00,0x00,0x01,0x01,0x06,0x00,0x01,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x24,0x04,0xe4,0x04,0x70,0x06,0x20,0x88,0x88,0x70,0x00 -+// 49800 슈 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x1e,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x00,0x00,0x00 -+// 49801 슉 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x3f,0x10,0x00,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 49802 슊 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x12,0x02,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x02,0x10,0x10,0x78,0x08,0x08,0x08,0x00,0x00 -+// 49803 슋 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x07,0x10,0x00,0x30,0x10,0x30,0x4c,0x02,0x00 -+// 49804 슌 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1f,0x00,0x00,0x06,0x04,0x04,0x00,0x00,0x00,0x00,0x40,0xc0,0x30,0x04,0x00,0x00,0x3f,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 49805 슍 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x12,0x02,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x02,0x10,0x10,0xf8,0x10,0x30,0x4c,0x84,0x00 -+// 49806 슎 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x02,0x02,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x80,0xc0,0xc0,0x18,0x04,0x00,0x3f,0x10,0x30,0x00,0x30,0x48,0x48,0x48,0x00 -+// 49807 슏 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x12,0x02,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x40,0xc0,0x30,0x04,0x00,0x02,0x10,0x10,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 49808 슐 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x02,0x02,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x40,0xc0,0x30,0x04,0x00,0x7f,0x10,0x10,0xf0,0x10,0x30,0x00,0xfc,0x00 -+// 49809 슑 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x1f,0x02,0x02,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x80,0xc0,0xc0,0x1c,0x00,0x00,0x3f,0x10,0x10,0xa8,0x08,0x08,0x08,0x00,0x00 -+// 49810 슒 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x1f,0x02,0x03,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0x40,0xc0,0x38,0x04,0x00,0x3f,0x10,0x10,0x24,0x24,0x24,0x24,0x20,0x00 -+// 49811 슓 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x1f,0x02,0x02,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x80,0xc0,0xc0,0x18,0x04,0x00,0x3f,0x10,0x08,0x44,0x3c,0x04,0x24,0x24,0x00 -+// 49812 슔 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x10,0x02,0x02,0x00,0x01,0x0c,0x00,0x06,0x00,0x00,0x80,0xc0,0xc0,0x18,0x04,0x00,0x3f,0x10,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 49813 슕 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x1f,0x02,0x02,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0xc0,0x80,0x38,0x04,0x00,0x3f,0x10,0x00,0x48,0x40,0x68,0x40,0x1c,0x00 -+// 49814 슖 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x1f,0x02,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0xc0,0xc0,0x38,0x04,0x00,0x3f,0x10,0x00,0x60,0x08,0x28,0x20,0x5c,0x00 -+// 49815 슗 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x02,0x02,0x0d,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xc0,0xc0,0x38,0x04,0x00,0x1f,0x10,0x30,0x04,0x10,0x48,0x40,0x38,0x00 -+// 49816 슘 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x12,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x02,0x10,0x10,0x30,0x10,0x10,0x10,0x70,0x00 -+// 49817 슙 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x02,0x00,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x00,0xc0,0xc0,0x38,0x04,0x00,0x3f,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 49818 슚 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x02,0x03,0x08,0x0f,0x08,0x08,0x04,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0x00,0x3f,0x10,0x10,0x90,0x90,0xa8,0xa4,0x80,0x00 -+// 49819 슛 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x12,0x02,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x02,0x10,0x10,0xd0,0x80,0x20,0x18,0x0c,0x00 -+// 49820 슜 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x10,0x02,0x02,0x03,0x03,0x03,0x04,0x00,0x00,0x00,0x80,0xc0,0xc0,0x18,0x04,0x00,0xff,0x10,0x10,0x10,0x10,0xa8,0xc4,0x00,0x00 -+// 49821 슝 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1f,0x02,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x00,0x10,0x10,0xd0,0x10,0x10,0x10,0xe0,0x00 -+// 49822 슞 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x02,0x02,0x0f,0x00,0x00,0x01,0x04,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x0f,0x10,0x10,0xdc,0xc0,0xa0,0x18,0x04,0x00 -+// 49823 슟 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x1e,0x02,0x02,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x1f,0x10,0x30,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 49824 슠 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x12,0x02,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x02,0x10,0x10,0xf8,0x08,0xc8,0x08,0x08,0x00 -+// 49825 슡 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x1f,0x02,0x02,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x80,0xc0,0x80,0x38,0x04,0x00,0x3f,0x10,0x00,0x78,0x00,0x30,0x00,0xf8,0x00 -+// 49826 슢 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x12,0x02,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x80,0x40,0xc0,0x38,0x04,0x00,0x03,0x10,0x10,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 49827 슣 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x1e,0x02,0x03,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x80,0x40,0xc0,0x18,0x04,0x00,0x1f,0x10,0xf0,0x3c,0xc0,0x20,0x00,0xe0,0x00 -+// 49828 스 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x80,0xe0,0x0c,0x00,0x00,0x00,0x00,0x82,0x00,0x00,0x00 -+// 49829 슥 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x18,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 49830 슦 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0xa8,0x80,0x88,0x00,0x00,0x00 -+// 49831 슧 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 49832 슨 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x3f,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0xc0,0x40,0xc0,0x1c,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x10,0x00 -+// 49833 슩 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x02,0x00,0x00,0xb0,0x10,0x30,0x4c,0x86,0x00 -+// 49834 슪 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1e,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x00,0x00,0x00,0x30,0x00,0xb0,0x48,0x40,0x78,0x00 -+// 49835 슫 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 49836 슬 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1f,0x00,0x03,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xc0,0x80,0x30,0x04,0x00,0x00,0x80,0x00,0x10,0x10,0x00,0x00,0xfc,0x00 -+// 49837 슭 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1f,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x00,0x00,0x80,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 49838 슮 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x18,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x80,0x40,0x80,0x18,0x04,0x00,0x02,0x00,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 49839 슯 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1f,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x08,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 49840 슰 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1f,0x00,0x01,0x00,0x0c,0x04,0x06,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x90,0x10,0x28,0x44,0x00,0x00 -+// 49841 슱 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0xc0,0x00,0x4c,0x00,0x2c,0x00,0x3c,0x00 -+// 49842 슲 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x01,0x01,0x0d,0x04,0x06,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x54,0x00 -+// 49843 슳 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x30,0x00,0x10,0x28,0x44,0x28,0x00 -+// 49844 슴 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x10,0x30,0x00 -+// 49845 습 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1f,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x10,0x10,0xf0,0x10,0x10,0x00,0x00 -+// 49846 슶 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1f,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x10,0x90,0x90,0x98,0xa4,0xc2,0x00 -+// 49847 슷 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x80,0x40,0x80,0x38,0x04,0x00,0x00,0x00,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 49848 슸 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1f,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x38,0xe4,0x04,0x00 -+// 49849 승 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1c,0x00,0x01,0x02,0x02,0x03,0x01,0x00,0x00,0x00,0xc0,0x80,0x30,0x0c,0x00,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00 -+// 49850 슺 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x18,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x40,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 49851 슻 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x00,0x02,0x00,0x00,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 49852 슼 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x80,0x40,0x80,0x30,0x04,0x00,0x02,0x00,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 49853 슽 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xc0,0x80,0x20,0x0c,0x00,0x00,0xfe,0x00,0x38,0x00,0x70,0x00,0xf8,0x00 -+// 49854 슾 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x1c,0x00,0x06,0x00,0x02,0x01,0x0f,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x00,0x00,0x00,0x00,0x38,0x00,0x20,0x20,0xfc,0x00 -+// 49855 슿 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x18,0x01,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x80,0xc0,0x80,0x30,0x04,0x00,0x02,0x00,0xc0,0x1c,0xc0,0x20,0x00,0x20,0x00 -+// 49856 싀 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x84,0x04,0x04,0x64,0x04,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 49857 싁 ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x01,0x08,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x64,0x04,0x0c,0xc4,0x00,0x00,0x0c,0x04,0x04,0x04,0x00 -+// 49858 싂 ; -+,0x00,0x00,0x01,0x01,0x01,0x06,0x00,0x00,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x84,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 49859 싃 ; -+,0x00,0x00,0x00,0x01,0x03,0x06,0x00,0x00,0x03,0x08,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x04,0x44,0x04,0x0c,0x84,0x00,0x18,0x88,0x98,0xb4,0x82,0x00 -+// 49860 싄 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x64,0x04,0x0c,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 49861 싅 ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x1f,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x64,0x04,0x04,0x84,0x00,0x0e,0x18,0x18,0xa4,0x42,0x00 -+// 49862 싆 ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x04,0x00,0x02,0x03,0x00,0x00,0x08,0x04,0x84,0x04,0x64,0x04,0x0c,0x84,0x28,0x00,0xda,0x08,0x24,0x3c,0x00 -+// 49863 싇 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0xc4,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 49864 싈 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x04,0x64,0x04,0x0c,0x84,0x04,0xcc,0x00,0x1c,0x00,0x8e,0x00 -+// 49865 싉 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x84,0x24,0x04,0x04,0x04,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 49866 싊 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0f,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0x84,0x84,0x64,0x04,0x04,0x84,0x00,0xa4,0xa4,0x84,0x04,0x90,0x00 -+// 49867 싋 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x04,0x84,0x84,0x64,0x04,0x04,0x84,0x00,0xa4,0xa4,0xa4,0x24,0x3c,0x00 -+// 49868 싌 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x04,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 49869 싍 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x84,0x00,0xec,0xa0,0xac,0x20,0x3e,0x00 -+// 49870 싎 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x84,0x04,0xbc,0x04,0xa4,0x00,0x0e,0x00 -+// 49871 싏 ; -+,0x00,0x00,0x01,0x01,0x01,0x06,0x00,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0x0c,0x04,0x08,0x00,0x78,0x24,0x24,0x2c,0x00 -+// 49872 싐 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x01,0x08,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x64,0x04,0x04,0xc4,0x00,0x00,0x84,0x04,0x04,0xb8,0x00 -+// 49873 싑 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x64,0x04,0x04,0xc4,0x04,0x04,0x84,0xfc,0x84,0xfc,0x00 -+// 49874 싒 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x04,0x00,0x88,0xc8,0xdc,0x52,0x42,0x00 -+// 49875 싓 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x64,0x04,0x04,0xe4,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 49876 싔 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x04,0x00,0x88,0x08,0x9c,0x72,0x02,0x00 -+// 49877 싕 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x64,0x04,0x04,0xe4,0x04,0x18,0x44,0x04,0x44,0x38,0x00 -+// 49878 싖 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0xc4,0x00,0x04,0x20,0x60,0xc8,0x06,0x00 -+// 49879 싗 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x04,0x00,0x00,0xfc,0x20,0xd8,0x06,0x00 -+// 49880 싘 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x01,0x0c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0xc4,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 49881 싙 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0x64,0x04,0x04,0x84,0x00,0x04,0x00,0x0c,0x00,0x9e,0x00 -+// 49882 싚 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x1f,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x84,0x04,0x64,0x04,0x0c,0x84,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 49883 싛 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x00,0x03,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x64,0x04,0x04,0xc4,0x00,0x00,0xf0,0x50,0x88,0x58,0x00 -+// 49884 시 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x04,0x04,0x84,0x44,0x24,0x04,0x04,0x04,0x04,0x04,0x00 -+// 49885 식 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x00,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 49886 싞 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x84,0x44,0x24,0x04,0x00,0xd4,0x44,0x44,0x04,0x04,0x00 -+// 49887 싟 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x0c,0x10,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x04,0xc4,0x64,0x04,0x18,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 49888 신 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x04,0x84,0x44,0x24,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 49889 싡 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x04,0xc4,0x64,0x04,0x00,0x7e,0x08,0x18,0x24,0x42,0x00 -+// 49890 싢 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x10,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x38,0x02,0x18,0x24,0xe4,0x3c,0x00 -+// 49891 싣 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 49892 실 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x44,0x24,0x04,0x0c,0x04,0x04,0x80,0x00,0xfe,0x00 -+// 49893 싥 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x44,0x24,0x04,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 49894 싦 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x44,0x24,0x04,0x00,0xb4,0xa4,0x04,0x04,0x90,0x00 -+// 49895 싧 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x06,0x82,0x82,0x82,0x42,0x30,0x00,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 49896 싨 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x00,0x88,0x88,0x18,0x14,0xe2,0x00 -+// 49897 싩 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x84,0x04,0x44,0x24,0x04,0x04,0xa0,0xa0,0x20,0x20,0x3e,0x00 -+// 49898 싪 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x00,0x05,0x00,0x06,0x04,0x06,0x00,0x00,0x00,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x04,0xa8,0xa4,0x20,0x08,0x6a,0x00 -+// 49899 싫 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x10,0x00,0x0f,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x04,0xc4,0x24,0x04,0x18,0x82,0x18,0x24,0x20,0x2c,0x00 -+// 49900 심 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x04,0xc4,0x64,0x04,0x00,0xc6,0x84,0x84,0x84,0x9c,0x00 -+// 49901 십 ; -+,0x00,0x00,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x84,0xc4,0x24,0x00,0x04,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 49902 싮 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x10,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x04,0xc4,0x24,0x04,0x08,0x48,0xc8,0x4c,0x52,0xe2,0x00 -+// 49903 싯 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x44,0x24,0x04,0x20,0x30,0x20,0x48,0x84,0x02,0x00 -+// 49904 싰 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x08,0x88,0x88,0xd4,0x72,0x00,0x00 -+// 49905 싱 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x84,0x44,0x24,0x04,0x04,0x30,0x44,0x84,0x84,0x68,0x00 -+// 49906 싲 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x0c,0x04,0x84,0x84,0x04,0x44,0x24,0x04,0x00,0xfc,0x20,0x58,0x84,0x02,0x00 -+// 49907 싳 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x60,0x00,0xfc,0x20,0xc8,0x06,0x00 -+// 49908 싴 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x06,0x82,0x82,0x82,0x42,0x22,0x02,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 49909 싵 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x02,0x04,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x00,0x1c,0x00,0x9c,0x00,0xfe,0x00 -+// 49910 싶 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x04,0xc4,0x64,0x04,0x00,0x0c,0x10,0x88,0x90,0xfe,0x00 -+// 49911 싷 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x84,0x04,0xc4,0x24,0x04,0x70,0x06,0x20,0x88,0x88,0xd8,0x00 -+// 49912 싸 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x13,0x21,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x48,0x48,0x48,0x88,0xc9,0x2c,0x28,0x08,0x08,0x08,0x08,0x00 -+// 49913 싹 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x13,0x01,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0xcf,0x68,0x28,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 49914 싺 ; -+,0x00,0x00,0x00,0x0c,0x04,0x0c,0x0b,0x03,0x02,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x8f,0x48,0x28,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 49915 싻 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x03,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x8f,0x68,0x28,0x00,0x98,0x90,0x98,0x24,0xc2,0x00 -+// 49916 싼 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0e,0x03,0x01,0x02,0x04,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x48,0x48,0x88,0xce,0x68,0x28,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 49917 싽 ; -+,0x00,0x00,0x00,0x0c,0x04,0x0c,0x0f,0x03,0x02,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x8f,0x48,0x28,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 49918 싾 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x13,0x02,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0xc8,0xc8,0x88,0xcf,0x68,0x08,0x30,0x04,0xb0,0x48,0xc8,0x58,0x00 -+// 49919 싿 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x13,0x02,0x04,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x8f,0x68,0x28,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 49920 쌀 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x04,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0xcb,0x68,0x28,0x00,0x98,0x00,0x30,0x00,0x3c,0x00 -+// 49921 쌁 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x13,0x02,0x00,0x0d,0x01,0x0f,0x08,0x0f,0x00,0x00,0x10,0x08,0xc8,0xc8,0x88,0xcf,0x68,0x08,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 49922 쌂 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x11,0x02,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x00,0x08,0xc8,0xc8,0x88,0xcf,0x28,0x08,0x00,0x48,0x48,0x48,0x48,0x58,0x00 -+// 49923 쌃 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x04,0x02,0x00,0x08,0x08,0x0e,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0xcb,0x68,0x28,0x00,0x48,0x78,0x48,0x48,0x48,0x00 -+// 49924 쌄 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x13,0x02,0x04,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0xc8,0xc8,0x88,0xcf,0x28,0x08,0x00,0x10,0x10,0x38,0x24,0x44,0x00 -+// 49925 쌅 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x13,0x02,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x08,0xc8,0xc8,0x88,0xcf,0x68,0x08,0x00,0x40,0x48,0x40,0x40,0x3c,0x00 -+// 49926 쌆 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x0f,0x01,0x0e,0x08,0x06,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0xcf,0x68,0x28,0x00,0x58,0x08,0x40,0x10,0xdc,0x00 -+// 49927 쌇 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x02,0x04,0x08,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x08,0xc8,0xc8,0x88,0xcf,0x28,0x08,0x10,0x04,0x10,0x00,0x44,0x28,0x00 -+// 49928 쌈 ; -+,0x00,0x00,0x00,0x0c,0x04,0x0c,0x0e,0x13,0x02,0x04,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x48,0x28,0x00,0x18,0x08,0x00,0x10,0x30,0x00 -+// 49929 쌉 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x13,0x02,0x00,0x02,0x03,0x02,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0xcf,0x28,0x08,0x10,0x08,0xf8,0x08,0x08,0x18,0x00 -+// 49930 쌊 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x11,0x02,0x01,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x10,0x08,0xc8,0xc8,0x88,0xcf,0x28,0x08,0x10,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 49931 쌋 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x13,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x8f,0x68,0x28,0x08,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 49932 쌌 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x02,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x08,0x48,0xc8,0x88,0xce,0x28,0x08,0x10,0x10,0x10,0xa8,0x64,0x40,0x00 -+// 49933 쌍 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0e,0x13,0x02,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8b,0x48,0x28,0x08,0x60,0x10,0x08,0x08,0xf0,0x00 -+// 49934 쌎 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x01,0x02,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x68,0x28,0x00,0xfc,0x40,0xa0,0x08,0x04,0x00 -+// 49935 쌏 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x13,0x02,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0xc8,0xc8,0x88,0xcf,0x28,0x08,0xc0,0x08,0xc0,0xc0,0x10,0x0c,0x00 -+// 49936 쌐 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x13,0x02,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x8f,0x48,0x28,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 49937 쌑 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x04,0x06,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0xc8,0x88,0xcf,0x68,0x28,0x00,0x38,0x00,0x38,0x00,0x3c,0x00 -+// 49938 쌒 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x13,0x02,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x48,0x48,0x88,0x8f,0x68,0x28,0x00,0xf8,0x10,0x10,0x10,0xfc,0x00 -+// 49939 쌓 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x00,0x04,0x00,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0xcf,0x28,0x08,0xe0,0x04,0x40,0xb0,0x10,0xb0,0x00 -+// 49940 쌔 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x94,0x94,0x54,0x54,0x14,0x14,0x14,0x14,0x04,0x00 -+// 49941 쌕 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x01,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x54,0x14,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 49942 쌖 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x01,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x9c,0x54,0x34,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 49943 쌗 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x64,0x04,0x10,0x88,0x88,0x94,0xa6,0x82,0x00 -+// 49944 쌘 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x02,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x94,0x14,0x9c,0x54,0x14,0x14,0x14,0x00,0x00,0xde,0x00 -+// 49945 쌙 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x04,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x54,0x24,0x00,0xfe,0x18,0x18,0x24,0x42,0x00 -+// 49946 쌚 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x24,0x34,0x84,0x84,0x9c,0x64,0x04,0x30,0x06,0x10,0x00,0xc4,0x38,0x00 -+// 49947 쌛 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x0b,0x02,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x9c,0xd4,0x74,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 49948 쌜 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0x3c,0xe4,0x24,0x00,0xc4,0x04,0x1c,0x00,0x8e,0x00 -+// 49949 쌝 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x9c,0x54,0x14,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 49950 쌞 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x01,0x02,0x00,0x06,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x9c,0x74,0x14,0x00,0xb4,0xa4,0xa4,0x04,0x94,0x00 -+// 49951 쌟 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x01,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x54,0x14,0x04,0xa4,0x3c,0x24,0x24,0x3c,0x00 -+// 49952 쌠 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x34,0x84,0x84,0x9c,0x64,0x04,0x10,0x88,0x88,0x18,0x24,0x02,0x00 -+// 49953 쌡 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x74,0x04,0x00,0xe8,0x20,0x2c,0x20,0x3e,0x00 -+// 49954 쌢 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x0b,0x02,0x00,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xbc,0x64,0x04,0x00,0x08,0x08,0x28,0x28,0x7e,0x00 -+// 49955 쌣 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x54,0x14,0x38,0x82,0x18,0x24,0x24,0x3c,0x00 -+// 49956 쌤 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0xd4,0x94,0x9c,0x54,0x10,0x00,0xcc,0x84,0x84,0x84,0x80,0x00 -+// 49957 쌥 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x9c,0x74,0x04,0x00,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 49958 쌦 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x02,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x34,0x84,0x84,0x9c,0x64,0x24,0x18,0x88,0x88,0x98,0x96,0xa2,0x00 -+// 49959 쌧 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x34,0x94,0x94,0x94,0x9c,0x54,0x14,0x64,0x20,0x20,0x48,0x84,0x02,0x00 -+// 49960 쌨 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x64,0x04,0x10,0x08,0x08,0x9c,0x72,0x42,0x00 -+// 49961 쌩 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0x94,0x94,0x9c,0x54,0x14,0x14,0x38,0xc4,0x84,0x84,0x78,0x00 -+// 49962 쌪 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x09,0x02,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x9c,0x54,0x34,0x00,0xfc,0x60,0x50,0x8c,0x02,0x00 -+// 49963 쌫 ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x07,0x09,0x02,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x24,0x94,0xd4,0x94,0x9c,0x74,0x10,0x60,0x00,0xf8,0x60,0xc8,0x06,0x00 -+// 49964 쌬 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x09,0x02,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0xd4,0x94,0x9c,0x54,0x10,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 49965 쌭 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x09,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x54,0x34,0x00,0x3c,0x00,0x3c,0x00,0xfe,0x00 -+// 49966 쌮 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x02,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x34,0x84,0x84,0x1c,0xe4,0x64,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 49967 쌯 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x9c,0x74,0x04,0xf0,0x04,0x20,0x90,0x88,0x90,0x00 -+// 49968 쌰 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x13,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x48,0x48,0x4f,0x88,0x48,0x28,0x2f,0x08,0x08,0x08,0x08,0x00 -+// 49969 쌱 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x01,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x48,0x4b,0x88,0xc8,0x6f,0x28,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 49970 쌲 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x02,0x03,0x02,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x2f,0x28,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49971 쌳 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x01,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x6f,0x28,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 49972 쌴 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0e,0x0b,0x01,0x02,0x04,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x48,0x4f,0x88,0xc8,0x28,0x28,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 49973 쌵 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x02,0x01,0x02,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x6f,0x28,0x00,0xf0,0x10,0x38,0x4c,0x84,0x00 -+// 49974 쌶 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0x48,0x2f,0x08,0x30,0x04,0x30,0x48,0xc0,0x78,0x00 -+// 49975 쌷 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0a,0x13,0x02,0x00,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x88,0x6f,0x28,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 49976 쌸 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x03,0x00,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0xc8,0x2f,0x28,0x00,0xd8,0x08,0x38,0x00,0x0c,0x00 -+// 49977 쌹 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x00,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0x48,0x4f,0x88,0x48,0x2f,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 49978 쌺 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x02,0x00,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x2f,0x08,0x00,0x48,0x48,0x48,0x48,0x20,0x00 -+// 49979 쌻 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x0b,0x00,0x0a,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0xc8,0x2f,0x08,0x00,0x48,0x48,0x48,0x48,0x78,0x00 -+// 49980 쌼 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x01,0x02,0x04,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x2f,0x08,0x10,0x98,0x10,0x18,0x24,0x42,0x00 -+// 49981 쌽 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x0d,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0xc8,0x2f,0x08,0x00,0x48,0x40,0x78,0x40,0x7c,0x00 -+// 49982 쌾 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x0d,0x01,0x0f,0x08,0x06,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0xc8,0x2f,0x28,0x00,0x48,0x08,0x48,0x00,0xdc,0x00 -+// 49983 쌿 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x04,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x2f,0x08,0x30,0x04,0x10,0x24,0x44,0x2c,0x00 -+// 49984 썀 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x13,0x02,0x00,0x03,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0x88,0x4f,0x28,0x00,0x18,0x08,0x08,0x18,0x00,0x00 -+// 49985 썁 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x10,0x00,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0x48,0x2f,0x08,0x00,0x08,0xf8,0x08,0x08,0xf8,0x00 -+// 49986 썂 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x12,0x00,0x00,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0x48,0x2f,0x08,0x18,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 49987 썃 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x13,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x6f,0x28,0x08,0x40,0x40,0x90,0x08,0x04,0x00 -+// 49988 썄 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x02,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x08,0x48,0x4f,0x88,0x48,0x2e,0x08,0x10,0x18,0x10,0xa8,0x64,0x00,0x00 -+// 49989 썅 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x03,0x02,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0x88,0xc8,0x2f,0x28,0x08,0xe0,0x08,0x08,0x08,0xf0,0x00 -+// 49990 썆 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x13,0x02,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0x88,0x6f,0x28,0x00,0xfc,0x40,0xb0,0x08,0x04,0x00 -+// 49991 썇 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x13,0x00,0x00,0x00,0x04,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x48,0x4b,0x88,0xc8,0x2f,0x08,0xe0,0x0c,0x40,0xe0,0x18,0x04,0x00 -+// 49992 썈 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0a,0x03,0x02,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x88,0x6f,0x28,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 49993 썉 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0xc8,0x2f,0x08,0x00,0x38,0x00,0x38,0x00,0xfc,0x00 -+// 49994 썊 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x13,0x02,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x00,0x08,0x48,0x48,0x88,0x88,0x4f,0x28,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 49995 썋 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x10,0x88,0x48,0x4b,0x88,0xc8,0x2f,0x08,0xe0,0x0c,0x40,0xb0,0x10,0xf0,0x00 -+// 49996 썌 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x04,0x0b,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0xd4,0x54,0x94,0x94,0x54,0x7c,0x14,0x14,0x14,0x14,0x04,0x00 -+// 49997 썍 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x02,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x9c,0x94,0x14,0x5c,0x74,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 49998 썎 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x9c,0x94,0x94,0x54,0x14,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 49999 썏 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x13,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x9c,0x94,0x94,0x54,0x04,0x00,0x88,0x88,0x9c,0xa6,0x82,0x00 -+// 50000 썐 ; -+,0x00,0x00,0x00,0x00,0x08,0x04,0x0d,0x0b,0x02,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0xbc,0x24,0xa4,0x7c,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 50001 썑 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x0b,0x12,0x02,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0xa4,0xbc,0xa4,0x24,0xf4,0x24,0x00,0xd6,0x10,0x18,0x24,0x42,0x00 -+// 50002 썒 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x24,0x34,0x9c,0x84,0x84,0x7c,0x04,0x30,0x06,0x10,0x44,0x44,0x38,0x00 -+// 50003 썓 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x0b,0x02,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x9c,0x44,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 50004 썔 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0x24,0x7c,0x24,0x00,0x84,0x04,0x0c,0x00,0x86,0x00 -+// 50005 썕 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x00,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x9c,0x94,0x94,0x5c,0x14,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 50006 썖 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x34,0x94,0x9c,0x94,0x94,0x54,0x14,0x00,0xb4,0xa4,0xa4,0x24,0x10,0x00 -+// 50007 썗 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x9c,0x94,0x94,0x5c,0x14,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 50008 썘 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xbc,0xa4,0xa4,0x7c,0x24,0x00,0x88,0x88,0x18,0x24,0x02,0x00 -+// 50009 썙 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x00,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x9c,0x94,0x94,0x54,0x14,0x04,0x20,0x24,0x20,0x20,0x1c,0x00 -+// 50010 썚 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x05,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xbc,0xa4,0x24,0x7c,0x24,0x00,0x48,0x08,0x28,0x28,0x6e,0x00 -+// 50011 썛 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x02,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x34,0x9c,0x84,0x84,0x7c,0x24,0x38,0x80,0x18,0x24,0x04,0x2c,0x00 -+// 50012 썜 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x9c,0x94,0x94,0x5c,0x14,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 50013 썝 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x9c,0x94,0x94,0x5c,0x14,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 50014 썞 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xbc,0xa4,0xa4,0x7c,0x24,0x18,0x88,0x88,0x9c,0x86,0x42,0x00 -+// 50015 썟 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x9c,0x94,0x94,0x5c,0x14,0x04,0x20,0x60,0x58,0x84,0x02,0x00 -+// 50016 썠 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x02,0x00,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x08,0x24,0x34,0x9c,0x84,0x84,0x7c,0x24,0x00,0x08,0x08,0x9c,0x62,0x42,0x00 -+// 50017 썡 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x06,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x92,0x5e,0x92,0x92,0x5e,0x12,0x12,0x30,0x44,0x84,0x84,0x78,0x00 -+// 50018 썢 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x34,0x94,0x9c,0x94,0x94,0x5c,0x14,0x00,0x64,0x60,0xd0,0x8c,0x02,0x00 -+// 50019 썣 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0x14,0x9c,0x94,0x94,0x5c,0x14,0x60,0x00,0xf0,0x60,0x98,0x04,0x00 -+// 50020 썤 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x01,0x02,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x9c,0x94,0x94,0x54,0x14,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 50021 썥 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x01,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x5c,0x14,0x00,0x1c,0x00,0xbc,0x00,0xfe,0x00 -+// 50022 썦 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x0d,0x13,0x02,0x04,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x24,0xbc,0xa4,0x24,0xbc,0x64,0x00,0x0c,0x10,0x10,0x90,0xfe,0x00 -+// 50023 썧 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x9c,0x94,0x94,0x7c,0x04,0x60,0x0e,0x20,0x90,0x88,0xf0,0x00 -+// 50024 써 ; -+,0x00,0x00,0x00,0x04,0x02,0x02,0x06,0x05,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x24,0x24,0x44,0x44,0xa4,0x34,0x14,0x04,0x04,0x04,0x04,0x00 -+// 50025 썩 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x10,0x01,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x64,0x64,0x5c,0xc4,0xa4,0x14,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50026 썪 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x00,0x01,0x02,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x64,0x24,0x5c,0x44,0xa4,0x14,0x00,0xd4,0x44,0x44,0x04,0x04,0x00 -+// 50027 썫 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x11,0x01,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x5c,0xc4,0x24,0x24,0x08,0x88,0x88,0x94,0x92,0x81,0x00 -+// 50028 썬 ; -+,0x00,0x00,0x00,0x00,0x02,0x06,0x06,0x09,0x11,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x9c,0xc4,0x24,0x04,0x04,0x04,0x00,0x80,0xfe,0x00 -+// 50029 썭 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x11,0x01,0x02,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x0c,0x04,0x64,0x44,0x44,0xc4,0xe4,0x24,0x00,0x5e,0x08,0x18,0x36,0x42,0x00 -+// 50030 썮 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x04,0x00,0x00,0x02,0x03,0x00,0x00,0x08,0x04,0x44,0x44,0x9c,0xc4,0x64,0x04,0x38,0x02,0x18,0x24,0x64,0x2c,0x00 -+// 50031 썯 ; -+,0x00,0x00,0x00,0x04,0x02,0x04,0x0a,0x01,0x01,0x02,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x64,0x44,0x44,0xa4,0x24,0x00,0x04,0x00,0x00,0x00,0x8e,0x00 -+// 50032 썰 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x8c,0xc4,0x64,0x24,0x00,0xcc,0x00,0x0c,0x00,0xfe,0x00 -+// 50033 썱 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x01,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x06,0x62,0x42,0x5e,0xc2,0x20,0x00,0x00,0x94,0x04,0x84,0x04,0x84,0x00 -+// 50034 썲 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x01,0x02,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0x44,0x44,0x5c,0xc4,0x24,0x04,0x00,0xb4,0x84,0x84,0x04,0x90,0x00 -+// 50035 썳 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x02,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x9c,0xc4,0x24,0x04,0x90,0x88,0x88,0x1c,0x26,0x02,0x00 -+// 50036 썴 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x11,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x9c,0xc4,0x24,0x04,0x00,0xa0,0xa0,0x20,0x20,0x1e,0x00 -+// 50037 썵 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x8c,0x84,0x64,0x24,0x00,0xa4,0x0c,0x24,0x08,0x6a,0x00 -+// 50038 썶 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x04,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x44,0x44,0x9c,0xc4,0x64,0x04,0x18,0x86,0x88,0x24,0x20,0x3c,0x00 -+// 50039 썷 ; -+,0x00,0x00,0x00,0x04,0x02,0x04,0x0b,0x11,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x44,0x8c,0xc4,0x64,0x04,0x18,0x82,0x88,0x24,0x20,0x3c,0x00 -+// 50040 썸 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x62,0x22,0x4e,0x46,0xa0,0x30,0x00,0x0c,0x84,0x84,0x84,0x8c,0x00 -+// 50041 썹 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x44,0x44,0x9c,0xc4,0x24,0x04,0x04,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 50042 썺 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0b,0x11,0x02,0x00,0x04,0x07,0x04,0x06,0x04,0x00,0x00,0x08,0x04,0x44,0x44,0xbc,0xc4,0x64,0x04,0x98,0x08,0x88,0x14,0xa2,0x42,0x00 -+// 50043 썻 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x64,0x44,0x5c,0xc4,0xa4,0x24,0x24,0x30,0x20,0x48,0x84,0x02,0x00 -+// 50044 썼 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x00,0x01,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0x64,0x44,0x4c,0xc4,0x24,0x04,0x08,0x8c,0x88,0x4c,0x32,0x02,0x00 -+// 50045 썽 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x64,0x64,0x44,0xc4,0xa4,0x24,0x14,0x30,0xc4,0x84,0x84,0x78,0x00 -+// 50046 썾 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x00,0x01,0x02,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x06,0x62,0x22,0x5e,0x42,0xa0,0x10,0x00,0xfe,0x20,0x58,0x84,0x02,0x00 -+// 50047 썿 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x02,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x84,0xc4,0x24,0x24,0x60,0x00,0xfc,0x20,0xd8,0x06,0x00 -+// 50048 쎀 ; -+,0x00,0x00,0x00,0x04,0x02,0x06,0x07,0x08,0x01,0x02,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x44,0x44,0xa4,0x34,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 50049 쎁 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x9c,0xc4,0x24,0x04,0x00,0x1c,0x00,0xbc,0x00,0xfe,0x00 -+// 50050 쎂 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x11,0x02,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x5c,0xc4,0x64,0x24,0x00,0xfc,0x08,0x88,0x80,0xfe,0x00 -+// 50051 쎃 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x9c,0xc4,0x24,0x04,0x70,0x02,0x20,0x50,0x88,0xd8,0x00 -+// 50052 쎄 ; -+,0x00,0x00,0x00,0x00,0x04,0x06,0x04,0x0a,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x16,0x12,0xd2,0x52,0x92,0x92,0x92,0x52,0x12,0x12,0x10,0x10,0x00,0x00 -+// 50053 쎅 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x0b,0x01,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x94,0x94,0x94,0x14,0x94,0x54,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50054 쎆 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x00,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x94,0xb4,0x14,0x94,0x54,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 50055 쎇 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x12,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x14,0x94,0x54,0x10,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 50056 쎈 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x12,0x02,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x94,0x14,0x94,0x54,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 50057 쎉 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x12,0x02,0x00,0x0c,0x04,0x04,0x05,0x02,0x00,0x00,0x00,0x24,0x94,0x94,0xb4,0x14,0x94,0x54,0x00,0x58,0x18,0x18,0xa4,0x42,0x00 -+// 50058 쎊 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x0b,0x02,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x14,0x94,0x14,0x30,0x06,0x10,0x28,0xc4,0x38,0x00 -+// 50059 쎋 ; -+,0x00,0x00,0x00,0x04,0x02,0x04,0x0b,0x01,0x02,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x94,0x94,0x94,0x94,0x94,0x54,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 50060 쎌 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0d,0x02,0x04,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x34,0x94,0xb4,0x34,0x94,0x04,0x00,0x04,0x04,0x18,0x00,0xfe,0x00 -+// 50061 쎍 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x09,0x02,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x14,0x94,0x54,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 50062 쎎 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x09,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x94,0x94,0x94,0x94,0x54,0x10,0x00,0xb6,0xa4,0x84,0x04,0x94,0x00 -+// 50063 쎏 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x08,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x14,0x54,0x14,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 50064 쎐 ; -+,0x00,0x00,0x00,0x01,0x04,0x05,0x0d,0x02,0x04,0x08,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x14,0x94,0xb4,0x14,0x94,0x10,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 50065 쎑 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x00,0x00,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0xf4,0x14,0xd4,0x14,0x04,0x20,0x24,0x20,0x20,0x1c,0x00 -+// 50066 쎒 ; -+,0x00,0x00,0x00,0x01,0x04,0x05,0x0f,0x02,0x04,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x14,0x94,0xb4,0x14,0x94,0x10,0x00,0x00,0x08,0x28,0x08,0x4e,0x00 -+// 50067 쎓 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x0f,0x02,0x00,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x14,0x94,0xb4,0x14,0x94,0x14,0x38,0x06,0x18,0x24,0x04,0x3c,0x00 -+// 50068 쎔 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0xd4,0x94,0x94,0x94,0x54,0x54,0x00,0xce,0x84,0x84,0x84,0x80,0x00 -+// 50069 쎕 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x14,0xd4,0x14,0x00,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 50070 쎖 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x02,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x14,0x94,0x14,0x98,0x08,0x88,0x14,0x82,0x42,0x00 -+// 50071 쎗 ; -+,0x00,0x00,0x00,0x00,0x02,0x04,0x06,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x90,0xd0,0x90,0x90,0x90,0x50,0x00,0x30,0x20,0x48,0x84,0x02,0x00 -+// 50072 쎘 ; -+,0x00,0x00,0x00,0x01,0x04,0x05,0x0d,0x02,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x14,0x94,0xb4,0x14,0x94,0x14,0x10,0x08,0x08,0x94,0x66,0x42,0x00 -+// 50073 쎙 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x94,0x94,0xb4,0x14,0xd4,0x54,0x14,0x38,0x84,0x84,0x84,0x78,0x00 -+// 50074 쎚 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x01,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x94,0x94,0x94,0x14,0x94,0x54,0x04,0xfc,0x20,0x58,0x84,0x02,0x00 -+// 50075 쎛 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x02,0x00,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x34,0x94,0x94,0xb4,0x94,0x54,0x14,0xe0,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 50076 쎜 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x0b,0x01,0x02,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x14,0x90,0x90,0x90,0x10,0xd0,0x50,0x00,0xe6,0x04,0xe4,0x04,0x04,0x00 -+// 50077 쎝 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x0b,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x14,0x94,0x54,0x00,0x3c,0x00,0x3c,0x00,0xfc,0x00 -+// 50078 쎞 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x12,0x02,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x94,0x94,0x94,0x14,0x94,0x54,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 50079 쎟 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x94,0x14,0x70,0x06,0x20,0x90,0x88,0xf0,0x00 -+// 50080 쎠 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x09,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x42,0x22,0x26,0x46,0x42,0xbe,0x12,0x12,0x02,0x02,0x02,0x02,0x00 -+// 50081 쎡 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x01,0x01,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x62,0x7e,0x42,0xce,0xa2,0x12,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50082 쎢 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x05,0x00,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x22,0x2e,0x42,0x4e,0xa2,0x12,0x00,0xd6,0x40,0x44,0x40,0x40,0x00 -+// 50083 쎣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0a,0x11,0x01,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x44,0x9c,0x44,0x24,0x08,0x88,0x88,0x94,0x92,0x81,0x00 -+// 50084 쎤 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x06,0x09,0x11,0x02,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0x5c,0x84,0xdc,0x24,0x24,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 50085 쎥 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x0a,0x11,0x01,0x02,0x04,0x04,0x04,0x06,0x02,0x00,0x00,0x08,0x04,0x44,0x64,0x44,0xdc,0xa4,0x24,0x00,0x7e,0x08,0x1c,0xa6,0x42,0x00 -+// 50086 쎦 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x08,0x04,0x44,0x5c,0x84,0xdc,0x64,0x04,0x38,0x02,0x18,0x24,0xc4,0x3c,0x00 -+// 50087 쎧 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x09,0x01,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x62,0x66,0x42,0xce,0xa2,0x10,0x00,0x8c,0x80,0x80,0x80,0xfe,0x00 -+// 50088 쎨 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x5c,0x84,0xdc,0x64,0x24,0x00,0xec,0x00,0x0c,0x00,0x8e,0x00 -+// 50089 쎩 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x01,0x02,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x04,0x04,0x64,0x5c,0xc4,0xdc,0x24,0x00,0x04,0x84,0x84,0x04,0x04,0x84,0x00 -+// 50090 쎪 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x05,0x01,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x06,0x62,0x46,0x46,0xde,0x20,0x00,0x00,0xb6,0x84,0x84,0x04,0x90,0x00 -+// 50091 쎫 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x01,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x06,0x42,0x5e,0x42,0xce,0x22,0x00,0x04,0xa4,0xa4,0x24,0x24,0x3c,0x00 -+// 50092 쎬 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x11,0x02,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x5c,0x84,0xdc,0x24,0x04,0x00,0x88,0x88,0x18,0x24,0x02,0x00 -+// 50093 쎭 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x11,0x02,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x0c,0x04,0x44,0x5c,0x84,0xdc,0x24,0x24,0x00,0xa0,0xa0,0x20,0x20,0x3e,0x00 -+// 50094 쎮 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x84,0x9c,0x64,0x24,0x00,0xac,0x04,0x24,0x00,0x2a,0x00 -+// 50095 쎯 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x02,0x00,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x84,0x9c,0x44,0x04,0x18,0x80,0x18,0x24,0x20,0x24,0x00 -+// 50096 쎰 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x05,0x09,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x62,0x26,0x42,0x4e,0xa2,0x12,0x00,0x84,0x84,0x84,0x84,0x80,0x00 -+// 50097 쎱 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x62,0x5e,0x42,0xde,0x20,0x00,0x04,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 50098 쎲 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x11,0x00,0x00,0x04,0x07,0x04,0x06,0x04,0x00,0x00,0x00,0x04,0x44,0x4c,0x84,0xdc,0x24,0x04,0x88,0x08,0x88,0x14,0xa2,0x40,0x00 -+// 50099 쎳 ; -+,0x00,0x00,0x00,0x04,0x02,0x04,0x0a,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x64,0x6c,0x44,0xdc,0xa4,0x24,0x04,0x20,0x20,0x48,0x84,0x02,0x00 -+// 50100 쎴 ; -+,0x00,0x00,0x00,0x06,0x04,0x06,0x0b,0x01,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x44,0x5c,0x84,0x5c,0x24,0x04,0x08,0x88,0x88,0x54,0x22,0x40,0x00 -+// 50101 쎵 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x05,0x09,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x62,0x26,0x46,0x4e,0xa2,0x12,0x12,0x18,0x44,0x84,0x44,0x78,0x00 -+// 50102 쎶 ; -+,0x00,0x00,0x00,0x04,0x02,0x06,0x0b,0x01,0x01,0x02,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x64,0x7c,0x44,0xdc,0xa4,0x34,0x00,0xe6,0x20,0x58,0x84,0x02,0x00 -+// 50103 쎷 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x44,0x5c,0x84,0xdc,0x24,0x04,0x60,0x04,0x20,0x70,0x8c,0x02,0x00 -+// 50104 쎸 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x01,0x01,0x02,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x7c,0x44,0xdc,0xa4,0x34,0x00,0xe4,0x04,0xc4,0x04,0x04,0x00 -+// 50105 쎹 ; -+,0x00,0x00,0x00,0x04,0x02,0x04,0x0b,0x11,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0x44,0xc4,0xdc,0x24,0x24,0x00,0x3c,0x00,0xbc,0x00,0xfe,0x00 -+// 50106 쎺 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x0a,0x11,0x01,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x44,0x64,0x44,0xdc,0xa4,0x24,0x00,0x0c,0x08,0x88,0x00,0xfe,0x00 -+// 50107 쎻 ; -+,0x00,0x00,0x00,0x06,0x04,0x06,0x09,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x5c,0x84,0xdc,0x24,0x04,0x70,0x06,0x20,0x88,0x88,0xf0,0x00 -+// 50108 쎼 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x04,0x0a,0x09,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x16,0x12,0xd2,0x52,0xd2,0x92,0xf2,0x52,0x32,0x12,0x12,0x12,0x02,0x00 -+// 50109 쎽 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x94,0x94,0x34,0x94,0x54,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50110 쎾 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x0b,0x01,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x92,0xd2,0x92,0xb2,0x12,0x52,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50111 쎿 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x94,0x94,0x74,0x94,0x54,0x10,0x88,0x88,0x94,0x82,0x82,0x00 -+// 50112 쏀 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x12,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0xb4,0x94,0x74,0x94,0x54,0x14,0x04,0x00,0x00,0xde,0x00 -+// 50113 쏁 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x13,0x02,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x04,0x34,0x94,0x94,0x94,0x74,0x94,0x54,0x00,0x52,0x08,0x18,0x24,0x42,0x00 -+// 50114 쏂 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x02,0x00,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x74,0x94,0x14,0x38,0x06,0x10,0x04,0xc4,0x38,0x00 -+// 50115 쏃 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x13,0x02,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x34,0x94,0x94,0x94,0x34,0x94,0x54,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 50116 쏄 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0d,0x02,0x04,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0xb4,0x14,0x74,0x84,0x04,0x00,0x04,0x04,0x08,0x00,0xfe,0x00 -+// 50117 쏅 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x07,0x09,0x02,0x04,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x14,0x10,0xd0,0x90,0xb0,0x50,0x10,0x00,0x84,0x84,0x84,0x04,0x04,0x00 -+// 50118 쏆 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x0b,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0xd4,0x94,0x34,0x94,0x10,0x00,0xb4,0xa4,0xa4,0x24,0x90,0x00 -+// 50119 쏇 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x0a,0x02,0x04,0x00,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0x94,0x94,0x74,0x94,0x14,0x04,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 50120 쏈 ; -+,0x00,0x00,0x00,0x01,0x04,0x05,0x0d,0x02,0x04,0x00,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xb4,0x14,0x74,0x94,0x14,0x00,0x88,0x98,0x18,0x24,0x42,0x00 -+// 50121 쏉 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x02,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x94,0x94,0x74,0xd4,0x10,0x04,0xa0,0xa0,0x20,0x20,0x3e,0x00 -+// 50122 쏊 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x02,0x00,0x00,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x74,0x94,0x14,0x00,0x20,0x08,0x28,0x28,0x7e,0x00 -+// 50123 쏋 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x0d,0x02,0x04,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0xb4,0x14,0x74,0x94,0x14,0x18,0x02,0x10,0x24,0x44,0x2c,0x00 -+// 50124 쏌 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x92,0xd2,0x92,0x32,0x90,0x50,0x00,0xce,0x84,0x84,0x84,0x80,0x00 -+// 50125 쏍 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x0b,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x94,0x94,0x34,0x94,0x14,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50126 쏎 ; -+,0x00,0x00,0x00,0x01,0x04,0x05,0x0d,0x02,0x04,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0xb4,0x14,0x74,0x94,0x14,0x18,0x88,0x88,0x98,0x86,0xa2,0x00 -+// 50127 쏏 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x0b,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x36,0x90,0xd0,0x90,0x30,0x90,0x50,0x40,0x20,0x20,0x58,0x84,0x02,0x00 -+// 50128 쏐 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x02,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x14,0xb4,0x14,0x74,0x94,0x14,0x18,0x08,0x08,0x94,0x66,0x42,0x00 -+// 50129 쏑 ; -+,0x00,0x00,0x00,0x04,0x02,0x04,0x03,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x92,0xd2,0x92,0xb2,0x92,0x52,0x12,0x30,0x44,0x84,0x84,0x6c,0x00 -+// 50130 쏒 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x0b,0x01,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x16,0x92,0xd2,0x92,0xb2,0x90,0x50,0x00,0x60,0x20,0x58,0x84,0x02,0x00 -+// 50131 쏓 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x0a,0x02,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x34,0x14,0x94,0x94,0x74,0x94,0x14,0x60,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 50132 쏔 ; -+,0x00,0x00,0x00,0x04,0x02,0x04,0x0b,0x01,0x02,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x12,0xd2,0xd2,0x92,0xb2,0x52,0x52,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 50133 쏕 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x0b,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x34,0x94,0x54,0x00,0x3c,0x00,0xbc,0x00,0xfc,0x00 -+// 50134 쏖 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x13,0x02,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x74,0x94,0x54,0x00,0x1c,0x00,0x88,0x90,0xd6,0x00 -+// 50135 쏗 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x74,0x94,0x14,0x70,0x06,0x20,0x90,0x88,0xf0,0x00 -+// 50136 쏘 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x05,0x08,0x10,0x01,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0xcc,0x82,0x00,0xc0,0x40,0x40,0x8e,0x00,0x00 -+// 50137 쏙 ; -+,0x00,0x00,0x03,0x02,0x05,0x18,0x01,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0xc0,0x40,0xff,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 50138 쏚 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x20,0xfc,0x82,0x80,0x40,0xff,0x00,0x7c,0x00,0x00,0x00,0x00,0x00 -+// 50139 쏛 ; -+,0x00,0x00,0x03,0x02,0x05,0x10,0x01,0x00,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0xc0,0x40,0xff,0x00,0x10,0x10,0x30,0x4c,0x04,0x00 -+// 50140 쏜 ; -+,0x00,0x00,0x02,0x02,0x06,0x0d,0x10,0x00,0x00,0x1e,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x20,0x4e,0x80,0xc0,0x40,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 50141 쏝 ; -+,0x00,0x00,0x03,0x02,0x05,0x18,0x01,0x00,0x1f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x30,0x10,0x20,0xcc,0x82,0xc0,0x40,0xff,0x00,0xf0,0x10,0x30,0x4c,0x84,0x00 -+// 50142 쏞 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x1f,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0xc0,0x40,0x86,0x00,0x00,0xfc,0x30,0x48,0x48,0x00 -+// 50143 쏟 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x20,0x10,0x20,0x78,0x86,0x80,0x40,0xff,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 50144 쏠 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x10,0x20,0x78,0x86,0x80,0x40,0xff,0x00,0xf0,0x10,0x30,0x00,0x18,0x00 -+// 50145 쏡 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x05,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0xc0,0x40,0x02,0x00,0xa8,0x08,0x88,0x08,0x08,0x00 -+// 50146 쏢 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0xc0,0x40,0x00,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 50147 쏣 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x00,0x07,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0xc0,0x40,0x0e,0x00,0x44,0x3c,0x00,0x20,0x28,0x00 -+// 50148 쏤 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x00,0x00,0x18,0x00,0x0d,0x01,0x0d,0x00,0x06,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0xc0,0x42,0x00,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 50149 쏥 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x20,0x10,0x20,0x78,0x82,0xc0,0x40,0x5f,0x00,0x4c,0x00,0x3c,0x00,0x3c,0x00 -+// 50150 쏦 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0xc0,0x40,0x00,0x00,0x68,0x08,0x08,0x20,0x1c,0x00 -+// 50151 쏧 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x3e,0x00,0x0d,0x01,0x0f,0x00,0x06,0x00,0x00,0x20,0x30,0x20,0x5c,0x82,0xc0,0x40,0x00,0x30,0x04,0x10,0x48,0x40,0x78,0x00 -+// 50152 쏨 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x20,0x10,0x20,0x7c,0x82,0x80,0x40,0xff,0x00,0x30,0x10,0x10,0x10,0x30,0x00 -+// 50153 쏩 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x1c,0x00,0x04,0x03,0x02,0x02,0x02,0x00,0x00,0x20,0x10,0x20,0x7c,0x82,0xc0,0x40,0x00,0x10,0x18,0xf0,0x10,0x10,0x10,0x00 -+// 50154 쏪 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x08,0x04,0x04,0x00,0x07,0x00,0x00,0x20,0x10,0x20,0x7c,0x82,0xc0,0x40,0x8e,0x10,0x90,0x90,0x98,0xa4,0xc2,0x00 -+// 50155 쏫 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x20,0x10,0x20,0xcc,0x82,0xc0,0x40,0xff,0x00,0xc0,0x80,0x20,0x18,0x0c,0x00 -+// 50156 쏬 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x01,0x00,0x1e,0x00,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0xc0,0x40,0x00,0x00,0x10,0x10,0xa8,0xc4,0x04,0x00 -+// 50157 쏭 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x20,0x10,0x20,0x78,0x82,0x80,0x40,0xff,0x00,0xc0,0x20,0x10,0x10,0x20,0x00 -+// 50158 쏮 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x1f,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0xc0,0x40,0xff,0x00,0xf8,0xc0,0xa0,0x18,0x0c,0x00 -+// 50159 쏯 ; -+,0x00,0x00,0x03,0x02,0x05,0x18,0x01,0x00,0x1e,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0xc0,0x40,0x02,0x00,0x00,0xf8,0xc0,0x30,0x0c,0x00 -+// 50160 쏰 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x19,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x20,0x10,0x20,0xf8,0x82,0x80,0x40,0xff,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 50161 쏱 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x04,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x20,0x78,0x86,0xc0,0x40,0xff,0x00,0x38,0x00,0x30,0x00,0x18,0x00 -+// 50162 쏲 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x10,0x20,0x78,0x86,0x80,0x40,0xff,0x00,0x18,0x20,0x20,0x20,0xfc,0x00 -+// 50163 쏳 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1e,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x20,0x10,0x20,0xfc,0x82,0xc0,0x40,0x02,0xc0,0x0c,0xc0,0x20,0x00,0xe0,0x00 -+// 50164 쏴 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x0b,0x02,0x07,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0x48,0x28,0x0f,0x08,0x48,0x08,0x08,0x08,0x08,0x00 -+// 50165 쏵 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x13,0x01,0x07,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x88,0xe8,0x0a,0x18,0x88,0x00,0x00,0x18,0x18,0x10,0x10,0x00 -+// 50166 쏶 ; -+,0x00,0x00,0x00,0x04,0x04,0x09,0x13,0x01,0x07,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x88,0x68,0x0b,0x18,0x88,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 50167 쏷 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x13,0x01,0x1f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x88,0xe8,0x0b,0x18,0x88,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 50168 쏸 ; -+,0x00,0x00,0x00,0x00,0x04,0x0c,0x0b,0x03,0x01,0x01,0x18,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x68,0x08,0x08,0xc8,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 50169 쏹 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x13,0x01,0x1f,0x00,0x18,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x88,0x48,0x88,0x68,0x0b,0x18,0x88,0x00,0x0c,0x10,0x30,0x48,0x84,0x00 -+// 50170 쏺 ; -+,0x00,0x00,0x00,0x06,0x04,0x09,0x11,0x01,0x03,0x10,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x48,0x48,0xe8,0x08,0x0e,0x88,0x00,0x00,0xb4,0x18,0x48,0x78,0x00 -+// 50171 쏻 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x13,0x01,0x01,0x18,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x48,0x88,0xe8,0x0a,0x08,0x88,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 50172 쏼 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x03,0x00,0x03,0x00,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0x0e,0x88,0x00,0x98,0x00,0x10,0x00,0xfc,0x00 -+// 50173 쏽 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x11,0x01,0x01,0x10,0x01,0x01,0x09,0x08,0x07,0x00,0x00,0x10,0x08,0x48,0x48,0xe8,0x08,0x0f,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 50174 쏾 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x11,0x01,0x07,0x00,0x0d,0x01,0x09,0x00,0x07,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0x0e,0x88,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 50175 쏿 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x01,0x10,0x0b,0x00,0x1a,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x48,0xe8,0x08,0x0f,0x88,0x00,0x08,0x48,0x48,0x48,0x78,0x00 -+// 50176 쐀 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x03,0x10,0x0d,0x00,0x0d,0x00,0x06,0x00,0x00,0x10,0x08,0x48,0x48,0xe8,0x08,0x0e,0x88,0x00,0x10,0x10,0x38,0x44,0x84,0x00 -+// 50177 쐁 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x13,0x01,0x27,0x00,0x0d,0x01,0x0d,0x00,0x06,0x00,0x00,0x10,0x08,0x48,0xc8,0xa8,0x08,0x08,0x88,0x00,0x48,0x40,0x48,0x40,0x3c,0x00 -+// 50178 쐂 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x3f,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x10,0x08,0x48,0x48,0xe8,0x08,0x0e,0x88,0x00,0x70,0x08,0x08,0x00,0x44,0x00 -+// 50179 쐃 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x01,0x10,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x10,0x08,0x48,0x48,0xa8,0x08,0x0f,0x88,0x00,0x00,0x7c,0x28,0x04,0x2c,0x00 -+// 50180 쐄 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1f,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x48,0x88,0x68,0x0b,0x18,0x08,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 50181 쐅 ; -+,0x00,0x00,0x00,0x06,0x04,0x0b,0x11,0x01,0x03,0x10,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0x0e,0x88,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 50182 쐆 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x07,0x10,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x48,0xc8,0xe8,0x08,0x0e,0x88,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 50183 쐇 ; -+,0x00,0x00,0x00,0x04,0x04,0x09,0x13,0x01,0x03,0x10,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x10,0x08,0x48,0x88,0xe8,0x0b,0x08,0x88,0x08,0x40,0xc0,0xb0,0x08,0x04,0x00 -+// 50184 쐈 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x01,0x10,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x48,0x48,0xc8,0xe8,0x08,0x0f,0x88,0x00,0x18,0x10,0x98,0xe4,0x42,0x00 -+// 50185 쐉 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x13,0x01,0x01,0x18,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x48,0x88,0xe8,0x0a,0x08,0xc8,0x08,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 50186 쐊 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x13,0x01,0x07,0x10,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x48,0x88,0xe8,0x0b,0x18,0x88,0x00,0x08,0x40,0xc0,0x10,0x08,0x00 -+// 50187 쐋 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x13,0x01,0x3f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x10,0x48,0x48,0xc8,0xa8,0x08,0x08,0x88,0x00,0xe0,0x0c,0x40,0xb0,0x0c,0x00 -+// 50188 쐌 ; -+,0x00,0x00,0x00,0x04,0x04,0x09,0x13,0x01,0x07,0x10,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x88,0xe8,0x0b,0x18,0x88,0x00,0x98,0x08,0x98,0x08,0x00,0x00 -+// 50189 쐍 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x11,0x01,0x01,0x18,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0x0f,0x88,0x00,0x08,0x00,0x18,0x00,0xfc,0x00 -+// 50190 쐎 ; -+,0x00,0x00,0x00,0x04,0x04,0x09,0x13,0x01,0x07,0x00,0x02,0x00,0x01,0x01,0x0f,0x00,0x00,0x10,0x08,0x48,0x88,0x68,0x0b,0x18,0x88,0x00,0x18,0x00,0x10,0x20,0xfc,0x00 -+// 50191 쐏 ; -+,0x00,0x00,0x00,0x06,0x04,0x0b,0x11,0x01,0x01,0x18,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0x0f,0x88,0x00,0x00,0xec,0x80,0x10,0xb0,0x00 -+// 50192 쐐 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x07,0x09,0x03,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x12,0xd2,0x92,0x92,0x52,0x1e,0x12,0x92,0x12,0x10,0x10,0x00,0x00 -+// 50193 쐑 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x52,0x1e,0x10,0x10,0x00,0x04,0x04,0x04,0x04,0x00 -+// 50194 쐒 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x92,0x92,0x92,0x56,0x14,0x10,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 50195 쐓 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x54,0x14,0x14,0x10,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 50196 쐔 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x01,0x01,0x1e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x36,0x12,0x92,0x92,0x56,0x1e,0x12,0x52,0x10,0x10,0x00,0x00,0x86,0x00 -+// 50197 쐕 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x08,0x04,0x04,0x04,0x02,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x52,0x1e,0x52,0x00,0x02,0x08,0x18,0xa4,0x42,0x00 -+// 50198 쐖 ; -+,0x00,0x00,0x00,0x00,0x04,0x0f,0x13,0x03,0x01,0x1e,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x54,0x14,0x34,0x10,0x00,0xde,0x18,0x24,0x2c,0x00 -+// 50199 쐗 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x26,0x92,0x92,0x92,0x56,0x1c,0x10,0x00,0x04,0x80,0x00,0x00,0xfe,0x00 -+// 50200 쐘 ; -+,0x00,0x00,0x00,0x08,0x04,0x0d,0x12,0x02,0x01,0x1e,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x54,0x1c,0x34,0x10,0xfc,0x04,0x0c,0x00,0x82,0x00 -+// 50201 쐙 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x01,0x01,0x1c,0x06,0x00,0x06,0x00,0x03,0x00,0x00,0x04,0x32,0x92,0x92,0xd2,0x36,0x16,0xd2,0x00,0xbc,0x04,0x84,0x04,0x84,0x00 -+// 50202 쐚 ; -+,0x00,0x00,0x00,0x04,0x04,0x0e,0x01,0x01,0x01,0x1e,0x06,0x00,0x04,0x00,0x03,0x00,0x00,0x04,0x12,0xd2,0x92,0x92,0x72,0x1e,0xd2,0x00,0xb6,0x12,0x90,0x10,0x96,0x00 -+// 50203 쐛 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x03,0x01,0x1e,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x56,0x16,0x52,0x10,0xa4,0xa4,0xa4,0x24,0x3c,0x00 -+// 50204 쐜 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x12,0x03,0x01,0x1c,0x04,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x54,0x14,0x94,0x10,0x88,0x88,0x98,0x34,0x62,0x00 -+// 50205 쐝 ; -+,0x00,0x00,0x00,0x04,0x04,0x06,0x0b,0x03,0x01,0x1e,0x0c,0x00,0x0c,0x04,0x07,0x00,0x00,0x04,0x32,0x92,0x92,0x92,0x52,0x1e,0x12,0x10,0xa4,0xa0,0xac,0x20,0xbe,0x00 -+// 50206 쐞 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x12,0x01,0x01,0x1c,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x54,0x14,0x94,0x00,0xae,0x84,0xa4,0x00,0x7e,0x00 -+// 50207 쐟 ; -+,0x00,0x00,0x00,0x00,0x04,0x0d,0x12,0x03,0x01,0x1e,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x54,0x14,0x14,0x10,0x80,0x7e,0x18,0x24,0x24,0x00 -+// 50208 쐠 ; -+,0x00,0x00,0x00,0x00,0x04,0x0c,0x03,0x03,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0x94,0x94,0x54,0x14,0xd4,0x00,0x04,0x84,0x84,0x84,0x98,0x00 -+// 50209 쐡 ; -+,0x00,0x00,0x00,0x04,0x04,0x0e,0x03,0x03,0x01,0x1e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x92,0x92,0x92,0x52,0x1e,0x10,0x10,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50210 쐢 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x12,0x01,0x01,0x1c,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x0c,0x24,0x94,0x94,0x94,0x54,0x14,0xd4,0x10,0xc8,0x48,0xdc,0x52,0x63,0x00 -+// 50211 쐣 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x56,0x16,0xd0,0x00,0x30,0x20,0x58,0x84,0x02,0x00 -+// 50212 쐤 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x01,0x01,0x1e,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x56,0x14,0xd0,0x10,0x08,0x88,0x9c,0x56,0x22,0x00 -+// 50213 쐥 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x92,0x92,0x92,0x56,0x16,0xd0,0x10,0x10,0x44,0x84,0xc4,0x78,0x00 -+// 50214 쐦 ; -+,0x00,0x00,0x00,0x00,0x06,0x06,0x09,0x03,0x01,0x0e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x12,0x92,0xd2,0x92,0x72,0x1e,0xd2,0x00,0x0c,0x20,0x60,0xcc,0x06,0x00 -+// 50215 쐧 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x01,0x1c,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x04,0x32,0x92,0x92,0x92,0x56,0x16,0x92,0x10,0x00,0xfe,0x20,0x58,0x86,0x00 -+// 50216 쐨 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x03,0x01,0x1e,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x56,0x1e,0x50,0x10,0x0c,0x04,0x04,0x84,0x04,0x00 -+// 50217 쐩 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x03,0x01,0x1e,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x56,0x14,0xd0,0x00,0x0c,0x00,0x0c,0x00,0x8e,0x00 -+// 50218 쐪 ; -+,0x00,0x00,0x00,0x01,0x04,0x0d,0x13,0x03,0x01,0x1e,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x54,0x14,0xf4,0x00,0x0c,0x10,0x98,0x90,0xfe,0x00 -+// 50219 쐫 ; -+,0x00,0x00,0x00,0x04,0x04,0x0f,0x03,0x03,0x01,0x1e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x92,0x92,0x92,0x56,0x14,0x10,0x10,0x00,0xf0,0x50,0x88,0xd8,0x00 -+// 50220 쐬 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x01,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x24,0x64,0xf4,0x9c,0x84,0x84,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 50221 쐭 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x00,0x0e,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x24,0x44,0xe4,0x94,0x84,0xe4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 50222 쐮 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x94,0x84,0xc4,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50223 쐯 ; -+,0x00,0x00,0x00,0x06,0x06,0x05,0x01,0x00,0x01,0x0c,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x64,0x44,0xe4,0x14,0x8c,0xc4,0x00,0x18,0x88,0x98,0x94,0xa2,0x00 -+// 50224 쐰 ; -+,0x00,0x00,0x00,0x04,0x02,0x06,0x09,0x03,0x00,0x03,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0x64,0x44,0xc4,0xb4,0x04,0x8c,0xc4,0x04,0x04,0x00,0x00,0xde,0x00 -+// 50225 쐱 ; -+,0x00,0x00,0x00,0x06,0x06,0x05,0x09,0x01,0x01,0x1e,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x44,0x64,0x44,0xe4,0x14,0x84,0xc4,0x00,0x02,0x78,0x18,0xb4,0x42,0x00 -+// 50226 쐲 ; -+,0x00,0x00,0x00,0x02,0x06,0x0d,0x01,0x00,0x1f,0x00,0x08,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x8c,0xc4,0x38,0x00,0xfe,0x38,0x64,0x2c,0x00 -+// 50227 쐳 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x00,0x0c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x44,0xe4,0x94,0x84,0xc4,0x00,0x00,0x00,0x00,0x00,0xde,0x00 -+// 50228 쐴 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x01,0x0c,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x84,0xc4,0x00,0xfc,0x04,0x0c,0x00,0x86,0x00 -+// 50229 쐵 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x01,0x0c,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x44,0x24,0x44,0xe4,0x94,0x84,0xc4,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 50230 쐶 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x0e,0x00,0x00,0x04,0x02,0x03,0x02,0x00,0x0c,0x44,0x24,0x64,0xf4,0x84,0x84,0xe4,0x00,0xa4,0xa6,0x84,0x04,0x9c,0x00 -+// 50231 쐷 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x0f,0x00,0x0f,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x84,0x84,0xc4,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 50232 쐸 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x01,0x0c,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x44,0x24,0x44,0xe4,0x94,0x84,0xc4,0x00,0x88,0x88,0x98,0x14,0xc2,0x00 -+// 50233 쐹 ; -+,0x00,0x00,0x00,0x02,0x06,0x0d,0x01,0x00,0x0f,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0xb4,0x84,0x84,0xc4,0x00,0xec,0x20,0x3c,0x20,0x3e,0x00 -+// 50234 쐺 ; -+,0x00,0x00,0x00,0x06,0x06,0x05,0x01,0x00,0x01,0x0c,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x84,0xc4,0x00,0xac,0x0c,0x24,0x28,0x7e,0x00 -+// 50235 쐻 ; -+,0x00,0x00,0x00,0x06,0x06,0x0d,0x01,0x00,0x01,0x0c,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x8c,0xc4,0x00,0x80,0x7e,0x18,0x24,0x24,0x00 -+// 50236 쐼 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x01,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x44,0xe4,0x94,0x84,0xe4,0x00,0x04,0x84,0x84,0x84,0x80,0x00 -+// 50237 쐽 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x24,0x44,0xe4,0x94,0x84,0xe4,0x00,0x04,0x84,0xfc,0x84,0xfc,0x00 -+// 50238 쐾 ; -+,0x00,0x00,0x00,0x06,0x06,0x05,0x01,0x00,0x03,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x8c,0xc4,0x10,0x88,0x88,0x9c,0x92,0xe2,0x00 -+// 50239 쐿 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0xa4,0x94,0x84,0xe4,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 50240 쑀 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x03,0x08,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x0c,0x44,0x64,0x44,0xa4,0x94,0x84,0xc4,0x10,0x88,0x08,0x9c,0x72,0x22,0x00 -+// 50241 쑁 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x24,0x64,0xe4,0x94,0x84,0xf4,0x04,0x10,0x4c,0x44,0x44,0x6c,0x00 -+// 50242 쑂 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x64,0x24,0x44,0xb4,0x84,0x84,0xc4,0x00,0x0e,0x20,0x70,0xcc,0x06,0x00 -+// 50243 쑃 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0xe4,0x94,0x84,0xc4,0x00,0x60,0x7e,0x20,0x58,0x06,0x00 -+// 50244 쑄 ; -+,0x00,0x00,0x00,0x03,0x03,0x04,0x09,0x00,0x03,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x64,0xd4,0x84,0x84,0xc4,0x00,0xec,0x04,0x64,0x04,0x04,0x00 -+// 50245 쑅 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x00,0x0c,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0xe4,0x94,0x84,0xc4,0x00,0x0c,0x00,0xbc,0x00,0xfe,0x00 -+// 50246 쑆 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x11,0x00,0x01,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0xa4,0x14,0x8c,0xc4,0x00,0xfc,0x10,0x98,0x90,0xfe,0x00 -+// 50247 쑇 ; -+,0x00,0x00,0x00,0x06,0x06,0x05,0x01,0x00,0x01,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x8c,0xc4,0x70,0x02,0x20,0x50,0x88,0xd8,0x00 -+// 50248 쑈 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x05,0x08,0x10,0x01,0x02,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x18,0x10,0x10,0x30,0xcc,0x82,0x20,0x10,0x10,0x12,0x00,0x00,0x00 -+// 50249 쑉 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x02,0x02,0x1f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0xdc,0x82,0x10,0x10,0x1e,0x00,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 50250 쑊 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x02,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x10,0x20,0x78,0x86,0x30,0x10,0x3f,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 50251 쑋 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x02,0x1f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x30,0x20,0xdc,0x82,0x30,0x10,0x3f,0x00,0x30,0x10,0x30,0x6c,0x44,0x00 -+// 50252 쑌 ; -+,0x00,0x00,0x02,0x02,0x06,0x0d,0x10,0x03,0x01,0x3f,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x10,0x10,0x20,0x4e,0x80,0x10,0x10,0x17,0x00,0x00,0x00,0x00,0xb8,0x00 -+// 50253 쑍 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x02,0x13,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x00,0x20,0x10,0x20,0x58,0x86,0x30,0x10,0x37,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 50254 쑎 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x02,0x02,0x1f,0x00,0x18,0x08,0x08,0x08,0x04,0x00,0x00,0x20,0x10,0x20,0xcc,0x82,0x10,0x10,0x02,0x30,0x00,0x30,0x48,0x48,0x48,0x00 -+// 50255 쑏 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x02,0x1f,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x20,0x30,0x20,0x78,0x86,0x30,0x10,0x37,0x00,0x18,0x00,0x00,0x00,0xb8,0x00 -+// 50256 쑐 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x02,0x1f,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0x30,0x10,0x3f,0x00,0xf0,0x10,0x30,0x00,0x18,0x00 -+// 50257 쑑 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x02,0x1f,0x00,0x0d,0x00,0x09,0x00,0x05,0x04,0x00,0x20,0x10,0x20,0x78,0x86,0x30,0x10,0x37,0x00,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 50258 쑒 ; -+,0x00,0x00,0x02,0x06,0x0d,0x10,0x02,0x02,0x1f,0x00,0x01,0x01,0x09,0x08,0x0f,0x00,0x00,0x20,0x30,0x20,0xdc,0x82,0x30,0x10,0x02,0x00,0x6c,0x44,0x00,0x00,0x28,0x00 -+// 50259 쑓 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x02,0x1e,0x00,0x0d,0x01,0x0d,0x08,0x0e,0x00,0x00,0x30,0x10,0x20,0xdc,0x82,0x30,0x10,0x02,0x08,0x44,0x78,0x00,0x28,0x28,0x00 -+// 50260 쑔 ; -+,0x00,0x00,0x02,0x06,0x09,0x10,0x02,0x02,0x1e,0x00,0x0d,0x01,0x09,0x08,0x0f,0x00,0x00,0x30,0x30,0x20,0xcc,0x82,0x10,0x10,0x00,0x20,0x10,0x10,0x38,0x4c,0x84,0x00 -+// 50261 쑕 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x02,0x3f,0x00,0x0f,0x01,0x0d,0x08,0x0f,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0x30,0x10,0x17,0x00,0x48,0x40,0x58,0x40,0x3c,0x00 -+// 50262 쑖 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x02,0x1f,0x00,0x0d,0x01,0x0b,0x08,0x0f,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0x30,0x10,0x13,0x00,0x48,0x08,0x48,0x20,0xbc,0x00 -+// 50263 쑗 ; -+,0x00,0x00,0x02,0x02,0x0d,0x10,0x00,0x02,0x3f,0x00,0x0f,0x01,0x09,0x08,0x0f,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0x30,0x10,0x06,0x30,0x04,0x10,0x68,0x40,0x48,0x00 -+// 50264 쑘 ; -+,0x00,0x00,0x02,0x02,0x0d,0x10,0x00,0x02,0x1e,0x00,0x04,0x06,0x02,0x02,0x02,0x00,0x00,0x20,0x30,0x20,0x58,0x82,0x30,0x10,0x17,0x00,0x30,0x10,0x10,0x10,0x70,0x00 -+// 50265 쑙 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x02,0x1f,0x00,0x04,0x07,0x06,0x06,0x07,0x00,0x00,0x20,0x10,0x20,0x5c,0x82,0x10,0x10,0x17,0x10,0x10,0xf0,0x10,0x10,0xf0,0x00 -+// 50266 쑚 ; -+,0x00,0x04,0x02,0x06,0x0d,0x10,0x02,0x02,0x1f,0x01,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x30,0x10,0x20,0xcc,0x82,0x10,0x10,0x02,0x30,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 50267 쑛 ; -+,0x00,0x00,0x02,0x02,0x0d,0x10,0x02,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x20,0x10,0x20,0xcc,0x82,0x10,0x10,0x17,0x00,0xc0,0x80,0x60,0x18,0x0c,0x00 -+// 50268 쑜 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x02,0x1f,0x00,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x20,0x10,0x20,0xcc,0x82,0x10,0x10,0x17,0x00,0x10,0x10,0x38,0xec,0x04,0x00 -+// 50269 쑝 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x02,0x02,0x00,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x20,0x30,0x20,0x58,0x86,0x30,0x10,0x13,0x00,0xc0,0x20,0x10,0x10,0x20,0xc0 -+// 50270 쑞 ; -+,0x00,0x00,0x02,0x02,0x0d,0x10,0x02,0x02,0x3f,0x00,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x20,0x30,0x20,0xdc,0x82,0x30,0x10,0x16,0x00,0xf8,0xc0,0x20,0x18,0x0c,0x00 -+// 50271 쑟 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x00,0x02,0x1f,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x20,0x10,0x20,0x58,0x86,0x30,0x10,0x37,0x00,0x00,0xf8,0xc0,0x20,0x08,0x00 -+// 50272 쑠 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x00,0x02,0x1f,0x00,0x07,0x00,0x0f,0x04,0x00,0x00,0x00,0x20,0x10,0x20,0x78,0x86,0x30,0x10,0x17,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 50273 쑡 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x02,0x13,0x00,0x00,0x06,0x06,0x06,0x02,0x00,0x00,0x00,0x30,0x20,0x78,0x86,0x30,0x10,0x37,0x00,0x10,0x00,0x10,0x00,0x78,0x00 -+// 50274 쑢 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x00,0x02,0x1f,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0x10,0x10,0x16,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 50275 쑣 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x00,0x02,0x1e,0x01,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0x30,0x10,0x16,0xc0,0x0c,0xc0,0x20,0x20,0x20,0x00 -+// 50276 쑤 ; -+,0x00,0x00,0x02,0x02,0x07,0x08,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x30,0x38,0xc6,0x80,0x00,0xff,0xc0,0x40,0x40,0x40,0x40,0x00,0x00 -+// 50277 쑥 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x3f,0x40,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 50278 쑦 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x07,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x10,0x30,0x2c,0xc2,0x00,0x7f,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 50279 쑧 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x03,0x00,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x10,0x30,0x2c,0xc2,0x00,0x7f,0x00,0x40,0x30,0x30,0x30,0x4c,0x84,0x00 -+// 50280 쑨 ; -+,0x00,0x00,0x03,0x02,0x07,0x09,0x10,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x20,0x10,0x10,0x30,0xcc,0x80,0x00,0x3f,0xc0,0x40,0x00,0x00,0x00,0xf8,0x00 -+// 50281 쑩 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x1f,0x00,0x00,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x30,0x10,0x30,0x6c,0xc2,0x00,0xff,0x00,0x00,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 50282 쑪 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x0c,0x00,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0x3f,0x80,0x40,0x00,0xf0,0x50,0x48,0x48,0x00 -+// 50283 쑫 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x02,0x00,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x00,0x20,0x10,0x30,0x2c,0xc2,0x00,0x1f,0xc0,0x00,0x00,0x00,0x00,0x00,0x38,0x00 -+// 50284 쑬 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x00,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x20,0x10,0x30,0x2c,0xc2,0x00,0x1f,0x40,0x00,0xf0,0x10,0x30,0x00,0x18,0x00 -+// 50285 쑭 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x18,0x00,0x0f,0x00,0x09,0x04,0x05,0x04,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0x0f,0xc0,0x00,0xb8,0x88,0x88,0x08,0x08,0x00 -+// 50286 쑮 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x1f,0x00,0x00,0x01,0x01,0x0f,0x08,0x0f,0x00,0x00,0x30,0x10,0x30,0xae,0xc0,0x00,0xff,0x40,0x40,0x64,0x24,0x24,0x20,0x2c,0x00 -+// 50287 쑯 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x20,0x10,0x30,0x2c,0xc2,0x00,0x3f,0x40,0x08,0x44,0x3c,0x04,0x2c,0x24,0x00 -+// 50288 쑰 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x02,0x00,0x00,0x0d,0x00,0x0d,0x00,0x07,0x00,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0x7f,0x40,0x00,0x90,0x10,0x38,0x2c,0x44,0x00 -+// 50289 쑱 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x10,0x00,0x09,0x01,0x09,0x04,0x05,0x04,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x0f,0xc0,0x00,0xcc,0x40,0x68,0x40,0x3c,0x00 -+// 50290 쑲 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x1e,0x00,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x30,0x10,0x30,0xec,0x80,0x00,0xff,0x00,0x00,0x10,0x08,0x08,0x20,0xfc,0x00 -+// 50291 쑳 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x00,0x00,0x0f,0x01,0x09,0x00,0x07,0x00,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0x3f,0x80,0x70,0x80,0x50,0x38,0x40,0x48,0x00 -+// 50292 쑴 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x1f,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0xff,0x40,0x00,0xf0,0x10,0x10,0x10,0x70,0x00 -+// 50293 쑵 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x00,0x00,0x04,0x07,0x06,0x02,0x02,0x00,0x00,0x20,0x10,0x30,0x2c,0xc2,0x00,0x3f,0x80,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 50294 쑶 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x08,0x04,0x05,0x00,0x07,0x00,0x00,0x20,0x10,0x10,0xac,0xc0,0x00,0x3f,0x40,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 50295 쑷 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x30,0x10,0x10,0xac,0xc2,0x80,0x7f,0x40,0xc0,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 50296 쑸 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0x3f,0x80,0x00,0x10,0x10,0x30,0xac,0x44,0x00 -+// 50297 쑹 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x03,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x00,0x7f,0x40,0x00,0xc0,0x10,0x10,0x10,0xa0,0x00 -+// 50298 쑺 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x03,0x04,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x00,0x3f,0x40,0x00,0xfc,0xc0,0xa0,0x18,0x0c,0x00 -+// 50299 쑻 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x30,0x10,0x10,0xac,0xc0,0x00,0x3f,0x40,0xc0,0x00,0xf8,0xc0,0xb0,0x08,0x00 -+// 50300 쑼 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x00,0x7f,0x40,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 50301 쑽 ; -+,0x00,0x00,0x02,0x02,0x07,0x08,0x00,0x00,0x1e,0x00,0x00,0x06,0x06,0x06,0x02,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x02,0xc0,0x00,0x10,0x00,0x10,0x00,0x08,0x00 -+// 50302 쑾 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x03,0x00,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x20,0x10,0x30,0x2c,0xc2,0x00,0x7f,0x40,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 50303 쑿 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0xac,0xc2,0x80,0x1f,0x40,0xe0,0x0c,0xc0,0x20,0x10,0x20,0x00 -+// 50304 쒀 ; -+,0x00,0x00,0x00,0x02,0x02,0x07,0x08,0x01,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x24,0x24,0x64,0x94,0x04,0x04,0x84,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 50305 쒁 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x03,0x0c,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x24,0x64,0x94,0x04,0xc4,0xbc,0x04,0x00,0x04,0x04,0x04,0x04,0x00 -+// 50306 쒂 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x64,0x94,0x04,0x84,0xbc,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50307 쒃 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0x44,0xb4,0x04,0x84,0x3c,0x00,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 50308 쒄 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x24,0x44,0xa4,0x14,0x04,0x84,0x3c,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 50309 쒅 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x01,0x1f,0x01,0x01,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x44,0x64,0x44,0xb4,0x04,0x84,0x3c,0x00,0x1e,0x10,0x18,0xa4,0x42,0x00 -+// 50310 쒆 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x03,0x09,0x01,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x08,0x44,0x44,0x44,0x94,0x04,0xc4,0x3c,0x20,0x00,0xfe,0x18,0x44,0x2c,0x00 -+// 50311 쒇 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x03,0x09,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x44,0xb4,0x04,0xc4,0x3c,0x04,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 50312 쒈 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x01,0x09,0x01,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x64,0x44,0xb4,0x04,0xc4,0x3c,0x04,0xfc,0x00,0x1c,0x00,0x9e,0x00 -+// 50313 쒉 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x00,0x0f,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x26,0x22,0x62,0x92,0x02,0xc6,0x9c,0x80,0xfc,0x04,0x84,0x04,0x84,0x00 -+// 50314 쒊 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x03,0x00,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x0c,0x64,0x24,0x64,0x94,0x04,0xc4,0xbc,0x84,0xb4,0x84,0x84,0x04,0x94,0x00 -+// 50315 쒋 ; -+,0x00,0x00,0x00,0x02,0x03,0x0c,0x00,0x07,0x00,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x64,0x94,0x04,0xc4,0xbc,0x04,0xa4,0xa4,0xa4,0x24,0x3c,0x00 -+// 50316 쒌 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x17,0x01,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0x94,0x04,0xc4,0x3c,0x04,0x88,0x88,0x98,0x24,0x42,0x00 -+// 50317 쒍 ; -+,0x00,0x00,0x00,0x02,0x07,0x0c,0x01,0x00,0x0d,0x01,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x04,0xc4,0x3c,0x04,0xac,0xa0,0xac,0x20,0xbe,0x00 -+// 50318 쒎 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x17,0x01,0x01,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x44,0x44,0x44,0xb4,0x04,0x84,0x3c,0x04,0x88,0x0c,0x28,0x08,0x7e,0x00 -+// 50319 쒏 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x03,0x09,0x01,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0xb4,0x04,0xc4,0x3c,0x00,0x80,0xf8,0x9c,0x20,0x34,0x00 -+// 50320 쒐 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x01,0x1f,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x64,0x94,0x04,0x84,0x3c,0x04,0x0c,0x84,0x84,0x84,0xb8,0x00 -+// 50321 쒑 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x00,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x64,0x94,0x04,0xc4,0x3c,0x04,0x04,0x84,0xf4,0x84,0xfc,0x00 -+// 50322 쒒 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x44,0x44,0xc4,0x94,0x04,0x84,0x3c,0x10,0x88,0x88,0x9c,0x92,0x42,0x00 -+// 50323 쒓 ; -+,0x00,0x00,0x00,0x02,0x07,0x0c,0x01,0x03,0x09,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x64,0x24,0x64,0x94,0x04,0x84,0x3c,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 50324 쒔 ; -+,0x00,0x00,0x04,0x02,0x07,0x09,0x00,0x1f,0x01,0x01,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x08,0x44,0x44,0xe4,0x94,0x04,0x84,0x3c,0x10,0x88,0x08,0x9c,0x66,0x02,0x00 -+// 50325 쒕 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x00,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x04,0x84,0x3c,0x04,0x30,0x44,0x84,0xc4,0x78,0x00 -+// 50326 쒖 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x44,0x64,0x64,0x94,0x04,0x84,0x3c,0x00,0x0c,0x20,0x70,0xc8,0x06,0x00 -+// 50327 쒗 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x1f,0x00,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x64,0x24,0x64,0x94,0x04,0x84,0x34,0x00,0x00,0xfe,0x20,0xd8,0x06,0x00 -+// 50328 쒘 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x64,0x94,0x04,0xc4,0xbc,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 50329 쒙 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0x94,0x04,0xc4,0x3c,0x04,0x0c,0x00,0x1c,0x00,0x9e,0x00 -+// 50330 쒚 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x44,0x44,0x44,0xb4,0x04,0x84,0x3c,0x04,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 50331 쒛 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x1f,0x01,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0xc4,0x94,0x04,0x84,0x3c,0x70,0x02,0xb0,0x58,0x88,0xf8,0x00 -+// 50332 쒜 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x00,0x1f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x36,0x12,0x92,0x92,0x92,0x12,0x12,0x12,0x72,0x12,0x10,0x10,0x00,0x00 -+// 50333 쒝 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x0f,0x02,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x14,0x00,0x04,0x04,0x04,0x04,0x00 -+// 50334 쒞 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0xf4,0x14,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50335 쒟 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x1f,0x02,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0xf4,0x14,0x18,0x88,0x98,0x94,0xa2,0x00 -+// 50336 쒠 ; -+,0x00,0x00,0x00,0x00,0x04,0x0f,0x12,0x00,0x1f,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0x54,0x14,0x94,0x74,0x14,0x14,0x00,0x00,0xfe,0x00 -+// 50337 쒡 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x07,0x02,0x02,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x14,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 50338 쒢 ; -+,0x00,0x00,0x00,0x05,0x04,0x0b,0x02,0x1f,0x02,0x02,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0x54,0x3c,0x00,0xf8,0x38,0x44,0x2c,0x00 -+// 50339 쒣 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x17,0x02,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x14,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 50340 쒤 ; -+,0x00,0x00,0x00,0x09,0x04,0x0b,0x02,0x1f,0x02,0x02,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0xd4,0x14,0x14,0xf4,0x14,0xfc,0x04,0x1c,0x00,0x86,0x00 -+// 50341 쒥 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x0f,0x02,0x00,0x06,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x36,0x92,0x92,0x52,0x12,0x12,0x72,0x10,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 50342 쒦 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x0f,0x02,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x36,0x92,0x92,0xd2,0x12,0x12,0x70,0x10,0xb6,0xa4,0x84,0x04,0x10,0x00 -+// 50343 쒧 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x1f,0x02,0x02,0x0f,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x14,0xe4,0x24,0xa4,0x24,0x24,0x00 -+// 50344 쒨 ; -+,0x00,0x00,0x00,0x05,0x04,0x0b,0x02,0x1f,0x02,0x02,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0xd4,0x14,0x14,0xf4,0x14,0x88,0x88,0x98,0x24,0x42,0x00 -+// 50345 쒩 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x1f,0x02,0x02,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x14,0xec,0x20,0x20,0x20,0x3e,0x00 -+// 50346 쒪 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x1f,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0xf4,0x14,0xfe,0x04,0x24,0x00,0x7e,0x00 -+// 50347 쒫 ; -+,0x00,0x00,0x00,0x05,0x04,0x0b,0x02,0x1f,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x14,0x00,0x5e,0x18,0x24,0x24,0x00 -+// 50348 쒬 ; -+,0x00,0x00,0x00,0x00,0x04,0x0b,0x02,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x10,0x04,0x84,0x84,0x84,0x80,0x00 -+// 50349 쒭 ; -+,0x00,0x00,0x00,0x04,0x04,0x07,0x02,0x07,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x92,0x92,0xd2,0x12,0x12,0x70,0x10,0x04,0x84,0xfc,0x84,0xfc,0x00 -+// 50350 쒮 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x1f,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x54,0x14,0xf4,0x14,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 50351 쒯 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 50352 쒰 ; -+,0x00,0x00,0x00,0x05,0x04,0x0b,0x02,0x1f,0x02,0x02,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x04,0x36,0x92,0x92,0xd2,0x12,0x12,0x70,0x10,0x08,0x08,0x9c,0x76,0x22,0x00 -+// 50353 쒱 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x05,0x0a,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x14,0x30,0x48,0x84,0x84,0x78,0x00 -+// 50354 쒲 ; -+,0x00,0x00,0x00,0x04,0x04,0x0b,0x02,0x1f,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x36,0x92,0x92,0x52,0x12,0x12,0x72,0x10,0x0e,0x20,0x70,0xc8,0x04,0x00 -+// 50355 쒳 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x1f,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x10,0x60,0x1e,0x20,0x58,0x06,0x00 -+// 50356 쒴 ; -+,0x00,0x00,0x00,0x04,0x06,0x0b,0x02,0x1f,0x02,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x36,0x92,0x92,0x52,0x12,0x12,0x72,0x10,0xec,0x04,0x24,0x04,0x04,0x00 -+// 50357 쒵 ; -+,0x00,0x00,0x00,0x00,0x04,0x0b,0x02,0x0f,0x02,0x02,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x10,0x0c,0x00,0x1c,0x00,0xfe,0x00 -+// 50358 쒶 ; -+,0x00,0x00,0x00,0x01,0x04,0x0b,0x02,0x06,0x02,0x02,0x00,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0x24,0x94,0x94,0xd4,0x14,0x14,0xf4,0x14,0x04,0x10,0x98,0x90,0xfe,0x00 -+// 50359 쒷 ; -+,0x00,0x00,0x00,0x05,0x04,0x0b,0x02,0x1f,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x14,0x14,0x74,0x50,0x02,0x70,0xd0,0x88,0xf8,0x00 -+// 50360 쒸 ; -+,0x00,0x00,0x00,0x02,0x02,0x07,0x04,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x06,0x26,0x26,0x66,0xd6,0x06,0x06,0x76,0x86,0x86,0x86,0x84,0x04,0x00 -+// 50361 쒹 ; -+,0x00,0x00,0x00,0x02,0x07,0x0c,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x64,0x94,0x04,0xe4,0x84,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 50362 쒺 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x64,0x94,0x04,0xe4,0x84,0x80,0xac,0x84,0x84,0x84,0x84,0x00 -+// 50363 쒻 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x01,0x00,0x1d,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x44,0x44,0xb4,0x04,0xc4,0x04,0x04,0x18,0x88,0x88,0x94,0xa2,0x00 -+// 50364 쒼 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x4c,0x24,0x44,0xa4,0x04,0x0c,0x84,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 50365 쒽 ; -+,0x00,0x00,0x00,0x02,0x06,0x0d,0x01,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x44,0x64,0x44,0xb4,0x04,0x64,0x04,0x04,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 50366 쒾 ; -+,0x00,0x00,0x00,0x06,0x07,0x09,0x00,0x00,0x19,0x01,0x00,0x04,0x04,0x06,0x02,0x00,0x00,0x08,0x44,0x44,0x44,0xb4,0x04,0xc4,0x04,0x38,0x00,0xf8,0x28,0xc4,0x3c,0x00 -+// 50367 쒿 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x04,0x24,0x84,0x84,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 50368 쓀 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x00,0x1d,0x01,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x44,0x44,0xb4,0x04,0x44,0x04,0x04,0xfc,0x04,0x0c,0x00,0x86,0x00 -+// 50369 쓁 ; -+,0x00,0x00,0x00,0x03,0x03,0x04,0x01,0x00,0x0e,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x22,0x22,0x62,0xd2,0x02,0x22,0x82,0x80,0x84,0x04,0xc4,0x04,0x84,0x00 -+// 50370 쓂 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x00,0x00,0x0c,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x66,0x22,0x62,0x92,0x06,0xe2,0x80,0x80,0xb6,0x90,0x94,0x14,0x94,0x00 -+// 50371 쓃 ; -+,0x00,0x00,0x00,0x03,0x03,0x04,0x01,0x00,0x0e,0x00,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x04,0x26,0x22,0x62,0xd2,0x02,0x36,0x82,0x80,0xa4,0xa6,0xb6,0x20,0xbc,0x00 -+// 50372 쓄 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x00,0x0d,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0x94,0x04,0xe4,0x04,0x04,0x98,0x88,0x98,0x24,0xc2,0x00 -+// 50373 쓅 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x00,0x0f,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x44,0x24,0x64,0x94,0x04,0x04,0x84,0x84,0xac,0xa0,0xbc,0x20,0x9e,0x00 -+// 50374 쓆 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x01,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x44,0x64,0x44,0xb4,0x04,0x44,0x04,0x04,0xa4,0x0c,0x24,0x28,0x7e,0x00 -+// 50375 쓇 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x01,0x08,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0x94,0x04,0xc4,0x04,0x1c,0x80,0xa8,0x14,0x22,0x34,0x00 -+// 50376 쓈 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x24,0x64,0xd4,0x04,0x64,0x84,0x80,0x00,0x84,0x84,0x84,0x8c,0x00 -+// 50377 쓉 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x00,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x64,0x94,0x04,0x44,0x84,0x84,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50378 쓊 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x02,0x00,0x1d,0x01,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x44,0x44,0xc4,0xb4,0x04,0x84,0x04,0x04,0x88,0x88,0x98,0x96,0xe2,0x00 -+// 50379 쓋 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x64,0x24,0x64,0x94,0x04,0x04,0x84,0x04,0x30,0x20,0x50,0x84,0x02,0x00 -+// 50380 쓌 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x00,0x0d,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x44,0x44,0x44,0xb4,0x04,0xc4,0x04,0x04,0x08,0x08,0x9c,0x76,0x22,0x00 -+// 50381 쓍 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x09,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x64,0xd4,0x04,0x04,0x84,0x84,0x90,0x44,0x44,0x44,0x6c,0x00 -+// 50382 쓎 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x44,0x24,0x64,0x94,0x04,0xc4,0x84,0x00,0x0e,0x20,0x30,0xcc,0x06,0x00 -+// 50383 쓏 ; -+,0x00,0x00,0x00,0x02,0x07,0x04,0x01,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x64,0x24,0x64,0x94,0x04,0x44,0x84,0x80,0x60,0x26,0x20,0x58,0x86,0x00 -+// 50384 쓐 ; -+,0x00,0x00,0x00,0x02,0x03,0x04,0x01,0x01,0x0c,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x44,0x24,0x64,0x94,0x04,0xe4,0x84,0x80,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 50385 쓑 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x04,0x04,0x84,0x84,0x00,0x00,0x04,0x00,0x86,0x00 -+// 50386 쓒 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x00,0x01,0x09,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x64,0x44,0xb4,0x04,0xc4,0x04,0x04,0xfc,0x18,0x88,0x90,0xfe,0x00 -+// 50387 쓓 ; -+,0x00,0x00,0x00,0x02,0x07,0x09,0x00,0x00,0x1d,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x64,0x44,0xb4,0x04,0xc4,0x04,0xd4,0x00,0xb0,0x48,0x88,0x58,0x00 -+// 50388 쓔 ; -+,0x00,0x00,0x02,0x02,0x07,0x08,0x00,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x20,0x10,0x10,0x28,0xc6,0x80,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 50389 쓕 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x1f,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x07,0x10,0x10,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 50390 쓖 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x1f,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x07,0x10,0x10,0x7c,0x84,0x84,0x80,0x00,0x00 -+// 50391 쓗 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x30,0x10,0x10,0x2c,0xc2,0x00,0xff,0x10,0x10,0x10,0x10,0x30,0x2c,0x46,0x00 -+// 50392 쓘 ; -+,0x00,0x00,0x03,0x02,0x03,0x0c,0x00,0x00,0x1f,0x01,0x01,0x07,0x06,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x30,0xcc,0x80,0x00,0xff,0x10,0x10,0x10,0x00,0x00,0xfc,0x00 -+// 50393 쓙 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0xff,0x10,0x00,0xfc,0x10,0x30,0x4c,0x86,0x00 -+// 50394 쓚 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x3f,0x02,0x00,0x08,0x08,0x08,0x08,0x06,0x00,0x00,0x30,0x10,0x30,0xae,0xc0,0x00,0xff,0x10,0x30,0x00,0xf0,0x18,0x40,0x48,0x00 -+// 50395 쓛 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x07,0x10,0x10,0x18,0x00,0x00,0x00,0x3c,0x00 -+// 50396 쓜 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x02,0x02,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x03,0x10,0x10,0xf8,0x10,0x30,0x00,0x08,0x00 -+// 50397 쓝 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x02,0x02,0x0f,0x00,0x0d,0x04,0x05,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x02,0x10,0x10,0xb8,0x88,0x88,0x08,0x88,0x00 -+// 50398 쓞 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x30,0x10,0x10,0xa6,0xc0,0x00,0xff,0x10,0x10,0xa4,0x24,0x24,0x24,0x2c,0x00 -+// 50399 쓟 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x02,0x02,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x30,0x10,0x10,0xac,0xc2,0x00,0x03,0x10,0x18,0x64,0x2c,0x24,0x24,0x24,0x00 -+// 50400 쓠 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x3f,0x02,0x02,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x30,0x10,0x10,0x2c,0xc2,0x00,0xff,0x10,0x10,0x98,0x10,0x38,0x24,0x46,0x00 -+// 50401 쓡 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x01,0x02,0x02,0x0f,0x00,0x0d,0x04,0x05,0x00,0x00,0x30,0x10,0x10,0xac,0x42,0x80,0x03,0x10,0x10,0xdc,0x20,0x3c,0x20,0x3c,0x00 -+// 50402 쓢 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x02,0x02,0x0f,0x01,0x09,0x04,0x07,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x00,0x03,0x10,0x10,0x44,0x08,0x08,0x28,0x1c,0x00 -+// 50403 쓣 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x1f,0x02,0x02,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x30,0x10,0x10,0x2c,0xc2,0x80,0xff,0x10,0x30,0x00,0x50,0x28,0x44,0x28,0x00 -+// 50404 쓤 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x10,0x01,0x02,0x02,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x2c,0xc2,0x80,0x07,0x10,0x10,0x10,0x18,0x00,0x10,0x38,0x00 -+// 50405 쓥 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x00,0xff,0x10,0x10,0x18,0xf8,0x00,0x10,0x10,0x00 -+// 50406 쓦 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x30,0x10,0x10,0xac,0xc2,0x00,0xff,0x10,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 50407 쓧 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x3f,0x02,0x02,0x02,0x00,0x01,0x03,0x04,0x00,0x00,0x30,0x10,0x10,0x2c,0xc2,0x00,0xff,0x10,0x90,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 50408 쓨 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x30,0x10,0x10,0xac,0x42,0x80,0xff,0x10,0x10,0x18,0x10,0x18,0xac,0x44,0x00 -+// 50409 쓩 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x02,0x03,0x02,0x02,0x01,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0xff,0x10,0x10,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 50410 쓪 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0x07,0x10,0x00,0xfc,0x40,0xa0,0x18,0x0c,0x00 -+// 50411 쓫 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x3f,0x02,0x02,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x30,0x10,0x30,0x2c,0xc2,0x00,0xbe,0x10,0x10,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 50412 쓬 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x1f,0x02,0x02,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x30,0x10,0x10,0x2c,0xc2,0x80,0xff,0x10,0x10,0xb8,0x08,0xc8,0x08,0x08,0x00 -+// 50413 쓭 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x10,0x00,0x1b,0x02,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x10,0x2c,0xc2,0x80,0x00,0x10,0x10,0x18,0x00,0x00,0x00,0x08,0x00 -+// 50414 쓮 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x3f,0x02,0x02,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x20,0x10,0x10,0x2c,0xc2,0x80,0xff,0x10,0x10,0xf8,0x20,0x30,0x20,0xfc,0x00 -+// 50415 쓯 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x3f,0x02,0x03,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x30,0x10,0x10,0x2c,0xc2,0x80,0xff,0x10,0xf0,0x14,0xc0,0x20,0x10,0x20,0x40 -+// 50416 쓰 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x07,0x08,0x10,0x01,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0xcc,0x82,0x00,0x00,0x00,0x00,0x3f,0x00,0x00 -+// 50417 쓱 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x30,0x20,0x78,0x86,0x00,0x00,0x3e,0x00,0x10,0x08,0x08,0x08,0x08,0x00 -+// 50418 쓲 ; -+,0x00,0x00,0x02,0x02,0x0d,0x10,0x00,0x00,0x18,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x30,0x10,0x20,0xdc,0x82,0x00,0x02,0x00,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 50419 쓳 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0x00,0x00,0x00,0x00,0x10,0x10,0x38,0x4c,0x06,0x00 -+// 50420 쓴 ; -+,0x00,0x00,0x02,0x02,0x06,0x08,0x10,0x00,0x00,0x1e,0x00,0x0c,0x04,0x04,0x03,0x00,0x00,0x20,0x10,0x30,0x30,0xc6,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 50421 쓵 ; -+,0x00,0x00,0x02,0x02,0x05,0x18,0x01,0x00,0x1c,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x20,0x30,0x20,0x58,0x82,0x00,0x00,0x00,0x00,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 50422 쓶 ; -+,0x00,0x00,0x03,0x02,0x05,0x18,0x01,0x00,0x3f,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x00,0x30,0x10,0x20,0x5c,0x82,0x00,0x00,0x3e,0x00,0x00,0xf8,0x10,0x48,0x48,0x00 -+// 50423 쓷 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x20,0x30,0x20,0x78,0x86,0x00,0x00,0x06,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 50424 쓸 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x20,0x10,0x20,0x78,0xc6,0x00,0x00,0x3f,0x00,0xf0,0x10,0x30,0x00,0x08,0x00 -+// 50425 쓹 ; -+,0x00,0x00,0x03,0x02,0x05,0x18,0x01,0x00,0x1c,0x00,0x04,0x00,0x0d,0x04,0x07,0x00,0x00,0x20,0x10,0x20,0xcc,0x82,0x00,0x00,0x00,0x00,0x88,0x88,0x08,0x08,0x08,0x00 -+// 50426 쓺 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1e,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x20,0x10,0x20,0xfc,0x82,0x00,0x00,0x00,0x00,0xec,0x24,0x24,0x20,0x2c,0x00 -+// 50427 쓻 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x20,0x10,0x20,0xfc,0x82,0x00,0x00,0x06,0x00,0x44,0x3c,0x24,0x24,0x2c,0x00 -+// 50428 쓼 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x0f,0x00,0x0d,0x00,0x07,0x00,0x00,0x20,0x10,0x20,0x78,0x86,0x00,0x00,0x06,0x00,0x90,0x10,0x38,0x6c,0x84,0x00 -+// 50429 쓽 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x0d,0x01,0x09,0x04,0x07,0x00,0x00,0x20,0x10,0x20,0xf8,0x86,0x00,0x00,0x3e,0x00,0xcc,0x40,0x6c,0x40,0x3c,0x00 -+// 50430 쓾 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1c,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0x00,0x00,0x00,0x00,0x08,0x08,0x28,0x20,0xc4,0x00 -+// 50431 쓿 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x0d,0x01,0x0b,0x00,0x07,0x00,0x00,0x20,0x10,0x20,0xf8,0x82,0x00,0x00,0x3e,0x30,0x00,0x50,0x28,0x40,0x48,0x00 -+// 50432 씀 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1e,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x20,0x10,0x20,0xd8,0x86,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x70,0x00 -+// 50433 씁 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x04,0x03,0x02,0x02,0x03,0x00,0x00,0x30,0x10,0x20,0x78,0x82,0x00,0x00,0x3e,0x00,0x10,0xf0,0x10,0x10,0xf0,0x00 -+// 50434 씂 ; -+,0x00,0x02,0x03,0x02,0x05,0x10,0x00,0x00,0x18,0x01,0x08,0x0c,0x0c,0x08,0x0f,0x00,0x00,0x30,0x10,0x20,0xcc,0x82,0x00,0x02,0x00,0x10,0x90,0x90,0x98,0xa4,0xc6,0x00 -+// 50435 씃 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x20,0x10,0x20,0xdc,0x82,0x00,0x00,0xff,0x00,0xc0,0xc0,0xa0,0x18,0x0c,0x00 -+// 50436 씄 ; -+,0x00,0x00,0x02,0x02,0x05,0x10,0x01,0x00,0x1c,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x30,0x10,0x20,0xcc,0x82,0x00,0x02,0x00,0x00,0x10,0x10,0x38,0xac,0x44,0x00 -+// 50437 씅 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x20,0x10,0x20,0xf8,0x82,0x00,0x00,0x3f,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 50438 씆 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x20,0x10,0x20,0xf8,0x82,0x00,0x00,0x3e,0x00,0xdc,0xc0,0xe0,0x18,0x0c,0x00 -+// 50439 씇 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x10,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x30,0x10,0x20,0xcc,0x82,0x00,0x1f,0x00,0xe0,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 50440 씈 ; -+,0x00,0x00,0x02,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x20,0x10,0x20,0xf8,0x86,0x00,0x00,0x3e,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 50441 씉 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x20,0x10,0x20,0xf8,0x82,0x00,0x00,0x00,0x00,0x78,0x00,0x70,0x00,0xf8,0x00 -+// 50442 씊 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x00,0x00,0x02,0x01,0x0f,0x00,0x00,0x20,0x10,0x20,0xf8,0x86,0x00,0x00,0x3e,0x00,0x18,0x20,0x30,0x20,0xfc,0x00 -+// 50443 씋 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1c,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x30,0x10,0x20,0xcc,0x82,0x00,0x02,0x00,0xe0,0x0c,0xc0,0x20,0x10,0x20,0x00 -+// 50444 씌 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x05,0x01,0x02,0x00,0x1f,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x44,0xb4,0x14,0x04,0x0c,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 50445 씍 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x24,0x44,0xf4,0x14,0x04,0xc4,0x04,0x00,0x04,0x04,0x04,0x04,0x00 -+// 50446 씎 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x44,0xb4,0x04,0x04,0x84,0x00,0xfc,0x84,0x84,0x84,0x84,0x00 -+// 50447 씏 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x64,0x44,0xe4,0x14,0x0c,0xc4,0x04,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 50448 씐 ; -+,0x00,0x00,0x00,0x04,0x02,0x06,0x09,0x00,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x44,0xc4,0xb4,0x04,0x0c,0x84,0x04,0x04,0x00,0x00,0xde,0x00 -+// 50449 씑 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x01,0x0c,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x44,0x64,0x44,0xe4,0x14,0x04,0xc4,0x04,0x06,0x18,0x18,0xb4,0x42,0x00 -+// 50450 씒 ; -+,0x00,0x00,0x00,0x02,0x06,0x0d,0x01,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x0c,0x84,0x38,0x00,0xf8,0x28,0x44,0x2c,0x00 -+// 50451 씓 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x00,0x0c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x44,0xe4,0x14,0x04,0xc4,0x04,0x00,0x00,0x00,0x00,0xde,0x00 -+// 50452 씔 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x13,0x08,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x64,0x44,0xa4,0x14,0x04,0xc4,0x04,0xfc,0x04,0x0c,0x00,0x86,0x00 -+// 50453 씕 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x03,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x44,0x24,0x64,0xf4,0x94,0x04,0xc4,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 50454 씖 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x01,0x04,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x0c,0x44,0x24,0x44,0xf4,0x14,0x04,0xc4,0x04,0xa4,0xa4,0xa4,0x24,0x90,0x00 -+// 50455 씗 ; -+,0x00,0x00,0x00,0x03,0x03,0x04,0x08,0x00,0x0f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0x64,0xf4,0x84,0x04,0xc4,0x04,0xa4,0xa4,0xa4,0x24,0x3c,0x00 -+// 50456 씘 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x00,0x0c,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0xe4,0x14,0x04,0xc4,0x04,0x98,0x88,0x98,0x24,0xc2,0x00 -+// 50457 씙 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x04,0x04,0x84,0x04,0xac,0xa0,0xac,0x20,0x3e,0x00 -+// 50458 씚 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x03,0x08,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0xe4,0x14,0x04,0xc4,0x04,0xbc,0x84,0x24,0x08,0x6a,0x00 -+// 50459 씛 ; -+,0x00,0x00,0x00,0x02,0x06,0x05,0x01,0x00,0x17,0x08,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x0c,0xc4,0x04,0x80,0xb8,0x14,0x24,0x34,0x00 -+// 50460 씜 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x09,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x64,0xf4,0x14,0x04,0xc4,0x00,0x04,0x84,0x84,0x84,0x80,0x00 -+// 50461 씝 ; -+,0x00,0x00,0x00,0x02,0x02,0x07,0x08,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x44,0xe4,0x94,0x04,0xe4,0x04,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50462 씞 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x44,0x64,0x44,0xa4,0x14,0x0c,0x84,0x1c,0x88,0x88,0x9c,0x96,0xe2,0x00 -+// 50463 씟 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x44,0x24,0x44,0xe4,0x14,0x04,0xe4,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 50464 씠 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x44,0x24,0x44,0xb4,0x14,0x04,0x84,0x1c,0x88,0x88,0xd4,0x72,0x02,0x00 -+// 50465 씡 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x44,0xe4,0x94,0x04,0xe4,0x04,0x10,0x48,0x84,0x84,0x7c,0x00 -+// 50466 씢 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x64,0x24,0x44,0xb4,0x04,0x04,0x84,0x00,0x1e,0x20,0x20,0x4c,0x06,0x00 -+// 50467 씣 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x44,0x24,0x44,0xb4,0x14,0x04,0x84,0x00,0x70,0x3e,0x20,0x58,0x86,0x00 -+// 50468 씤 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x0f,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x44,0xb4,0x04,0x04,0xc4,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 50469 씥 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x09,0x00,0x17,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x44,0x24,0x44,0xa4,0x14,0x04,0xc4,0x04,0x0c,0x00,0xbc,0x00,0xfe,0x00 -+// 50470 씦 ; -+,0x00,0x00,0x00,0x06,0x06,0x05,0x01,0x00,0x01,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x44,0x64,0x44,0xa4,0x14,0x0c,0xc4,0x04,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 50471 씧 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x64,0x44,0xa4,0x04,0x04,0x04,0x70,0x02,0x30,0x48,0x88,0x58,0x00 -+// 50472 씨 ; -+,0x00,0x00,0x00,0x02,0x03,0x02,0x02,0x07,0x09,0x11,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x24,0x24,0x64,0x44,0xa4,0x94,0x04,0x04,0x04,0x04,0x04,0x00 -+// 50473 씩 ; -+,0x00,0x00,0x00,0x03,0x02,0x03,0x05,0x08,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x32,0x22,0x22,0x52,0x9a,0x0a,0x00,0xe6,0x06,0x06,0x06,0x04,0x00 -+// 50474 씪 ; -+,0x00,0x00,0x00,0x03,0x02,0x02,0x05,0x08,0x01,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x32,0x22,0x22,0x62,0x92,0x0a,0x00,0xd6,0x42,0x42,0x40,0x40,0x00 -+// 50475 씫 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x0f,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x44,0xe4,0x94,0x14,0x08,0x8c,0x88,0x8c,0x92,0xa1,0x00 -+// 50476 씬 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0x24,0x44,0x44,0xa4,0x14,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 50477 씭 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x09,0x01,0x02,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x08,0x04,0x24,0x24,0x44,0x64,0x94,0x14,0x00,0x7e,0x08,0x18,0x16,0x22,0x00 -+// 50478 씮 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0a,0x11,0x01,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x08,0x04,0x64,0x64,0x44,0xe4,0x94,0x04,0x18,0x06,0x18,0x24,0xe4,0x3c,0x00 -+// 50479 씯 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x05,0x09,0x01,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x64,0x64,0x94,0x0c,0x00,0x04,0x80,0x80,0x80,0x8e,0x00 -+// 50480 씰 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x11,0x01,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x44,0xe4,0x94,0x14,0x00,0x84,0x04,0x9c,0x00,0x8e,0x00 -+// 50481 씱 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x05,0x08,0x01,0x02,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x46,0x22,0x22,0x62,0x62,0x90,0x08,0x00,0xd4,0x04,0x84,0x04,0x84,0x00 -+// 50482 씲 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x0d,0x00,0x01,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x02,0x22,0x22,0x62,0x72,0x9a,0x02,0x00,0xb6,0x90,0x90,0x10,0x94,0x00 -+// 50483 씳 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x01,0x02,0x00,0x00,0x07,0x04,0x07,0x00,0x00,0x04,0x06,0x32,0x22,0x22,0x62,0x92,0x08,0x04,0xa4,0xb4,0xa4,0x24,0x34,0x00 -+// 50484 씴 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x10,0x01,0x02,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0x24,0x24,0x44,0x64,0x94,0x04,0x00,0x88,0x88,0x98,0x14,0xa2,0x00 -+// 50485 씵 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x08,0x01,0x00,0x06,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x04,0x24,0x24,0x44,0x64,0x94,0x04,0x00,0xb0,0xa0,0xb0,0x20,0x9e,0x00 -+// 50486 씶 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x06,0x08,0x01,0x02,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x24,0x44,0x64,0x94,0x14,0x00,0xa0,0x84,0xa4,0x00,0x7e,0x00 -+// 50487 씷 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x11,0x01,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0x24,0x24,0x44,0xa4,0x94,0x04,0x1c,0x82,0x88,0x94,0x22,0x24,0x00 -+// 50488 씸 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x08,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x24,0x44,0x64,0x94,0x0c,0x00,0x04,0x84,0x84,0x84,0x8c,0x00 -+// 50489 씹 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x22,0x22,0x62,0x62,0x90,0x08,0x04,0x84,0x84,0x84,0x84,0xfc,0x00 -+// 50490 씺 ; -+,0x00,0x00,0x00,0x06,0x02,0x04,0x0a,0x11,0x01,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x64,0x64,0x44,0xe4,0xb4,0x14,0x18,0xc8,0xc8,0x54,0xd2,0x62,0x00 -+// 50491 씻 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x08,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x64,0x64,0x94,0x0c,0x04,0x30,0x20,0x58,0x84,0x02,0x00 -+// 50492 씼 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x10,0x01,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x0c,0x44,0x24,0x24,0x44,0x64,0x94,0x04,0x08,0x8c,0x88,0xdc,0x32,0x20,0x00 -+// 50493 씽 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x46,0x22,0x22,0x42,0x62,0x92,0x08,0x00,0x30,0x44,0x84,0x84,0x7c,0x00 -+// 50494 씾 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x0d,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x46,0x22,0x22,0x62,0x72,0x90,0x00,0x00,0xe0,0x20,0x48,0x86,0x02,0x00 -+// 50495 씿 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x01,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x04,0x06,0x22,0x22,0x62,0x62,0x90,0x08,0x70,0x02,0xf0,0x20,0x4c,0x02,0x00 -+// 50496 앀 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x01,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x06,0x22,0x22,0x62,0x62,0x92,0x0a,0x00,0xe6,0x06,0xe6,0x04,0x04,0x00 -+// 50497 앁 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x05,0x08,0x01,0x02,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x06,0x26,0x26,0x26,0x66,0x96,0x0c,0x00,0x0e,0x80,0x9c,0x80,0x86,0x00 -+// 50498 앂 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x0b,0x11,0x02,0x00,0x01,0x00,0x00,0x00,0x04,0x00,0x00,0x08,0x04,0x64,0x64,0x44,0xa4,0x94,0x04,0x00,0xfc,0x08,0x88,0x80,0xfe,0x00 -+// 50499 앃 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x05,0x08,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x24,0x44,0x64,0x94,0x04,0x70,0x02,0x30,0x48,0x88,0x58,0x00 -+// 50500 아 ; -+,0x00,0x00,0x00,0x00,0x06,0x19,0x10,0x20,0x10,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x88,0x88,0x8f,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 50501 악 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x19,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x8f,0x08,0x08,0x00,0xb8,0x08,0x08,0x08,0x00,0x00 -+// 50502 앆 ; -+,0x00,0x00,0x00,0x06,0x11,0x30,0x20,0x11,0x0e,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x30,0x18,0x08,0x08,0x88,0x8f,0x08,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 50503 앇 ; -+,0x00,0x00,0x00,0x06,0x11,0x20,0x20,0x11,0x0e,0x00,0x1d,0x01,0x01,0x01,0x01,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9f,0x18,0x18,0x20,0x10,0x10,0x38,0x2c,0x46,0x00 -+// 50504 안 ; -+,0x00,0x00,0x00,0x06,0x0b,0x10,0x20,0x10,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x30,0x18,0x08,0x08,0x88,0x88,0x88,0x08,0x08,0x08,0x08,0x00,0x00,0x3c,0x00 -+// 50505 앉 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x06,0x00,0x19,0x08,0x08,0x0f,0x04,0x00,0x00,0x30,0x18,0x08,0x08,0x88,0x8f,0x08,0x08,0x00,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 50506 않 ; -+,0x00,0x00,0x04,0x0e,0x10,0x20,0x11,0x1f,0x00,0x10,0x09,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x18,0x08,0x88,0x88,0x88,0x08,0x40,0x00,0xfc,0x30,0xc8,0x88,0x78,0x00 -+// 50507 앋 ; -+,0x00,0x00,0x00,0x04,0x11,0x30,0x20,0x11,0x0e,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x8b,0x08,0x08,0x00,0x18,0x00,0x00,0x00,0x1c,0x00 -+// 50508 알 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x19,0x04,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x8f,0x08,0x08,0x00,0x90,0x10,0x70,0x00,0x0c,0x00 -+// 50509 앍 ; -+,0x00,0x00,0x04,0x0e,0x11,0x10,0x10,0x1b,0x00,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x04,0x00,0x10,0x08,0x08,0x08,0x88,0x8f,0x08,0x08,0x00,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 50510 앎 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x11,0x1f,0x00,0x00,0x09,0x01,0x0c,0x08,0x0e,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9e,0x18,0x00,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 50511 앏 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x19,0x06,0x00,0x1a,0x02,0x1e,0x08,0x0e,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9a,0x18,0x10,0x10,0x88,0x58,0x48,0x08,0x78,0x00 -+// 50512 앐 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x1b,0x00,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x30,0x18,0x08,0x08,0x88,0x8e,0x08,0x00,0x20,0x10,0x10,0x38,0x2c,0x44,0x00 -+// 50513 앑 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x19,0x06,0x00,0x0f,0x01,0x0b,0x08,0x0f,0x04,0x00,0x30,0x18,0x08,0x08,0x88,0x8b,0x08,0x08,0x00,0xd8,0x40,0x58,0x40,0x7c,0x00 -+// 50514 앒 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x1b,0x00,0x00,0x0f,0x00,0x0b,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x8f,0x08,0x00,0x00,0xf8,0x18,0x48,0x10,0xfc,0x00 -+// 50515 앓 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x06,0x00,0x09,0x01,0x0e,0x08,0x0e,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9e,0x18,0x10,0x30,0x04,0x10,0x28,0x44,0x68,0x00 -+// 50516 암 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x06,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x8e,0x08,0x08,0x00,0x38,0x18,0x10,0x10,0x30,0x00 -+// 50517 압 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x10,0x1b,0x00,0x00,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9f,0x18,0x00,0x10,0x18,0xf8,0x00,0x10,0x10,0x00 -+// 50518 앖 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x19,0x04,0x00,0x08,0x0d,0x0c,0x08,0x0c,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x8f,0x08,0x08,0x10,0x98,0x90,0x98,0xa4,0xc6,0x00 -+// 50519 앗 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x19,0x06,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x8b,0x08,0x08,0xc8,0x40,0xc0,0xb0,0x18,0x04,0x00 -+// 50520 았 ; -+,0x00,0x00,0x00,0x06,0x09,0x10,0x10,0x10,0x0f,0x00,0x03,0x02,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x8b,0x88,0x08,0x10,0x18,0x10,0x18,0xa4,0x46,0x00 -+// 50521 앙 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x0e,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x8b,0x08,0x08,0x48,0xe0,0x10,0x08,0x10,0xf0,0x00 -+// 50522 앚 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x0e,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9e,0x18,0x18,0x00,0xf8,0xc0,0xa0,0x18,0x08,0x00 -+// 50523 앛 ; -+,0x00,0x00,0x00,0x0e,0x10,0x10,0x10,0x1f,0x00,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x8f,0x08,0x08,0xc0,0x00,0xc0,0xc0,0x18,0x0c,0x00 -+// 50524 앜 ; -+,0x00,0x00,0x00,0x04,0x11,0x10,0x20,0x11,0x0e,0x00,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9f,0x18,0x18,0x00,0xb8,0x18,0xd8,0x00,0x00,0x00 -+// 50525 앝 ; -+,0x00,0x00,0x00,0x06,0x19,0x10,0x10,0x11,0x0e,0x00,0x06,0x02,0x03,0x02,0x03,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x8a,0x08,0x08,0x00,0x38,0x00,0x78,0x00,0x3c,0x00 -+// 50526 앞 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x06,0x00,0x0f,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x18,0x18,0x98,0x9e,0x10,0x10,0x00,0xf8,0x30,0x00,0x20,0xfc,0x00 -+// 50527 앟 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x06,0x00,0x00,0x06,0x01,0x01,0x01,0x00,0x00,0x30,0x18,0x18,0x18,0x98,0x9a,0x18,0x10,0xc0,0x00,0x40,0x20,0x10,0x30,0x00 -+// 50528 애 ; -+,0x00,0x00,0x00,0x00,0x02,0x0b,0x10,0x10,0x19,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x34,0x34,0x34,0xb4,0xb4,0x3c,0x34,0x34,0x34,0x34,0x24,0x04,0x00 -+// 50529 액 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 50530 앢 ; -+,0x00,0x00,0x00,0x02,0x0f,0x08,0x10,0x09,0x06,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 50531 앣 ; -+,0x00,0x00,0x00,0x02,0x0f,0x10,0x10,0x09,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x10,0x88,0x98,0x98,0xa4,0xc2,0x00 -+// 50532 앤 ; -+,0x00,0x00,0x00,0x00,0x02,0x09,0x10,0x10,0x09,0x06,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0xa4,0xb4,0x34,0x24,0x24,0x24,0x00,0x00,0xde,0x00 -+// 50533 앥 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x10,0x18,0x0f,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0xfe,0x10,0x18,0x24,0x42,0x00 -+// 50534 앦 ; -+,0x00,0x00,0x00,0x00,0x0e,0x10,0x10,0x11,0x0e,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xbc,0x24,0x24,0x30,0x02,0x90,0x08,0xc4,0x78,0x00 -+// 50535 앧 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x10,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 50536 앨 ; -+,0x00,0x00,0x00,0x00,0x0e,0x11,0x10,0x11,0x0e,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xbc,0x24,0x24,0x00,0xec,0x00,0x0c,0x00,0x06,0x00 -+// 50537 앩 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x09,0x06,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x9c,0x84,0x00,0x00,0x84,0x84,0x04,0x04,0x84,0x00 -+// 50538 앪 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x09,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x9c,0x84,0x04,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 50539 앫 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x64,0x34,0x14,0x94,0x9c,0x84,0x04,0x00,0xa4,0x3c,0x24,0x24,0x34,0x00 -+// 50540 앬 ; -+,0x00,0x00,0x00,0x00,0x0e,0x10,0x10,0x19,0x04,0x01,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xbc,0x24,0x24,0x90,0x88,0x90,0x18,0x24,0x42,0x00 -+// 50541 앭 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x10,0x08,0x07,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0xf8,0x20,0x20,0x20,0x3c,0x00 -+// 50542 앮 ; -+,0x00,0x00,0x00,0x00,0x0e,0x10,0x10,0x09,0x02,0x00,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0x24,0x24,0x00,0x00,0x0c,0x28,0x28,0x6e,0x00 -+// 50543 앯 ; -+,0x00,0x00,0x00,0x00,0x06,0x11,0x10,0x11,0x0e,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xbc,0x24,0x24,0x38,0x02,0x10,0x28,0x44,0x2c,0x00 -+// 50544 앰 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x09,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 50545 앱 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x10,0x08,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50546 앲 ; -+,0x00,0x00,0x00,0x00,0x0b,0x10,0x10,0x19,0x06,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0x24,0x24,0x98,0x88,0x88,0x9c,0x86,0xe2,0x00 -+// 50547 앳 ; -+,0x00,0x00,0x00,0x02,0x0f,0x00,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x64,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 50548 앴 ; -+,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x09,0x06,0x00,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0x24,0x24,0x18,0x08,0x08,0x94,0x66,0x42,0x00 -+// 50549 앵 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x00,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x04,0x70,0x84,0x84,0x84,0x78,0x00 -+// 50550 앶 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x00,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x00,0xfc,0x60,0x50,0x88,0x04,0x00 -+// 50551 앷 ; -+,0x00,0x00,0x00,0x02,0x09,0x00,0x10,0x09,0x00,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0xbc,0xa4,0x00,0xe0,0x00,0xe0,0x60,0x98,0x06,0x00 -+// 50552 앸 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x0f,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x9c,0x84,0x04,0x00,0xec,0x04,0x64,0x04,0x04,0x00 -+// 50553 앹 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x34,0x14,0x94,0x9c,0x84,0x04,0x00,0x1c,0x00,0x3c,0x00,0x0c,0x00 -+// 50554 앺 ; -+,0x00,0x00,0x00,0x00,0x0e,0x10,0x10,0x19,0x06,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xbc,0x24,0x24,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 50555 앻 ; -+,0x00,0x00,0x00,0x02,0x0e,0x10,0x10,0x09,0x06,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x24,0xa4,0xbc,0xa4,0x24,0x60,0x00,0x20,0x90,0x88,0x90,0x00 -+// 50556 야 ; -+,0x00,0x00,0x00,0x00,0x04,0x11,0x30,0x20,0x11,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x08,0x08,0x08,0x8e,0x88,0x88,0x08,0x0e,0x08,0x08,0x08,0x08,0x00 -+// 50557 약 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x19,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x88,0x08,0x0e,0x00,0xb8,0x18,0x18,0x10,0x10,0x00 -+// 50558 앾 ; -+,0x00,0x00,0x00,0x04,0x11,0x20,0x20,0x11,0x0e,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x10,0x9e,0x90,0x10,0x18,0x00,0x78,0x08,0x08,0x08,0x00,0x00 -+// 50559 앿 ; -+,0x00,0x00,0x04,0x06,0x11,0x20,0x20,0x11,0x0e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x08,0x08,0x8e,0x88,0x08,0x08,0x00,0x10,0x10,0x38,0x24,0x46,0x00 -+// 50560 얀 ; -+,0x00,0x00,0x00,0x04,0x1b,0x10,0x10,0x10,0x1f,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x8e,0x88,0x08,0x0e,0x08,0x00,0x00,0x00,0x08,0x00 -+// 50561 얁 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x0e,0x00,0x18,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x10,0x10,0x10,0x9e,0x90,0x10,0x1e,0x00,0xbc,0x20,0x30,0x48,0x84,0x00 -+// 50562 얂 ; -+,0x00,0x00,0x00,0x0e,0x11,0x10,0x10,0x1b,0x00,0x00,0x08,0x08,0x08,0x0d,0x06,0x00,0x00,0x20,0x10,0x10,0x10,0x9e,0x90,0x10,0x18,0x70,0x00,0x30,0x48,0x88,0x58,0x00 -+// 50563 얃 ; -+,0x00,0x00,0x00,0x04,0x19,0x10,0x10,0x11,0x0e,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x8f,0x88,0x08,0x0e,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 50564 얄 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x11,0x1b,0x00,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x20,0x10,0x10,0x10,0x9e,0x10,0x10,0x1e,0x10,0xd0,0x10,0x30,0x00,0x18,0x00 -+// 50565 얅 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x10,0x1b,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x20,0x10,0x10,0x10,0x9e,0x90,0x10,0x18,0x00,0x08,0x08,0x08,0x00,0x00,0x00 -+// 50566 얆 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x10,0x1b,0x00,0x00,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x90,0x10,0x1e,0x00,0x58,0x48,0x48,0x48,0x58,0x00 -+// 50567 얇 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x1f,0x00,0x00,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x90,0x10,0x18,0x10,0x88,0x78,0x48,0x48,0x78,0x00 -+// 50568 얈 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x11,0x19,0x00,0x00,0x09,0x01,0x09,0x08,0x0f,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x10,0x10,0x1e,0x00,0x10,0x10,0x30,0x28,0x44,0x00 -+// 50569 얉 ; -+,0x00,0x00,0x04,0x06,0x11,0x20,0x10,0x1b,0x00,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x90,0x10,0x18,0x00,0x50,0x40,0x58,0x40,0x7c,0x00 -+// 50570 얊 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x11,0x1b,0x00,0x00,0x0b,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x10,0x10,0x10,0x9e,0x10,0x10,0x1e,0x00,0xd8,0x10,0x50,0x50,0xfc,0x00 -+// 50571 얋 ; -+,0x00,0x00,0x04,0x0e,0x11,0x10,0x11,0x19,0x00,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x10,0x10,0x1e,0x30,0x0c,0x10,0x08,0x44,0x68,0x00 -+// 50572 얌 ; -+,0x00,0x00,0x00,0x04,0x11,0x20,0x20,0x11,0x0e,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x10,0x10,0x18,0x00,0x70,0x10,0x10,0x10,0x30,0x00 -+// 50573 얍 ; -+,0x00,0x00,0x04,0x0e,0x11,0x10,0x11,0x19,0x04,0x00,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x10,0x10,0x1e,0x10,0x10,0xf0,0x10,0x10,0xd0,0x00 -+// 50574 얎 ; -+,0x00,0x00,0x04,0x0e,0x11,0x20,0x11,0x1f,0x00,0x01,0x09,0x0f,0x08,0x09,0x09,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x90,0x12,0x10,0x30,0x10,0x10,0x28,0x24,0x44,0x00 -+// 50575 얏 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x0e,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x18,0x08,0x08,0x8e,0x88,0x08,0x0e,0x80,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 50576 얐 ; -+,0x00,0x00,0x04,0x0e,0x11,0x10,0x11,0x1f,0x00,0x00,0x03,0x03,0x02,0x04,0x08,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x10,0x1a,0x10,0x30,0x10,0x10,0xa8,0xc4,0x84,0x00 -+// 50577 양 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x11,0x06,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x20,0x10,0x10,0x10,0x9e,0x90,0x10,0x1a,0x50,0xc0,0x10,0x10,0x10,0xf0,0x00 -+// 50578 얒 ; -+,0x00,0x00,0x04,0x06,0x11,0x20,0x20,0x11,0x0e,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x90,0x10,0x18,0x00,0xf8,0xc0,0xa0,0x18,0x08,0x00 -+// 50579 얓 ; -+,0x00,0x00,0x04,0x06,0x11,0x10,0x10,0x1b,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x10,0x10,0x10,0x10,0x9e,0x90,0x10,0x18,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 50580 얔 ; -+,0x00,0x00,0x00,0x06,0x11,0x30,0x20,0x11,0x0e,0x00,0x07,0x00,0x0b,0x04,0x00,0x00,0x00,0x10,0x18,0x08,0x08,0x8f,0x88,0x08,0x08,0x00,0x90,0x08,0xd8,0x00,0x00,0x00 -+// 50581 얕 ; -+,0x00,0x00,0x00,0x06,0x11,0x10,0x10,0x1b,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0x10,0x9e,0x90,0x10,0x1e,0x00,0x78,0x00,0x78,0x00,0xf8,0x00 -+// 50582 얖 ; -+,0x00,0x00,0x00,0x04,0x11,0x10,0x20,0x11,0x0e,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x08,0x08,0x8f,0x88,0x08,0x0e,0x00,0xf8,0x20,0x10,0x00,0xfc,0x00 -+// 50583 얗 ; -+,0x00,0x00,0x04,0x0e,0x11,0x10,0x11,0x1f,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x30,0x10,0x10,0x10,0x9e,0x10,0x1a,0x10,0xc0,0x0c,0x40,0x20,0x10,0x20,0x00 -+// 50584 얘 ; -+,0x00,0x00,0x00,0x00,0x04,0x0e,0x11,0x10,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x24,0x24,0x3c,0xa4,0xa4,0x24,0x34,0x24,0x24,0x24,0x04,0x00 -+// 50585 얙 ; -+,0x00,0x00,0x00,0x02,0x0f,0x10,0x10,0x09,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xa4,0x24,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50586 얚 ; -+,0x00,0x00,0x00,0x02,0x0f,0x10,0x10,0x09,0x06,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x24,0x3c,0xa4,0xa4,0xa4,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50587 얛 ; -+,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x19,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xa4,0x24,0x00,0x88,0x88,0x98,0xa4,0xc2,0x00 -+// 50588 얜 ; -+,0x00,0x00,0x00,0x00,0x06,0x09,0x10,0x10,0x19,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0x34,0xa4,0xa4,0x24,0x34,0x24,0x04,0x00,0x00,0xde,0x00 -+// 50589 얝 ; -+,0x00,0x00,0x00,0x02,0x0f,0x08,0x10,0x09,0x0f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xa4,0x24,0x00,0xdc,0x10,0x18,0x24,0x42,0x00 -+// 50590 얞 ; -+,0x00,0x00,0x00,0x02,0x0f,0x10,0x10,0x09,0x06,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xa4,0x24,0x30,0x06,0x10,0x40,0x44,0x38,0x00 -+// 50591 얟 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x10,0x10,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0x00,0x0c,0x00,0x00,0x00,0x1e,0x00 -+// 50592 얠 ; -+,0x00,0x00,0x00,0x00,0x0b,0x10,0x10,0x19,0x06,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0x24,0x24,0x00,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 50593 얡 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x07,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x1c,0x94,0x94,0x94,0x04,0x00,0x94,0x84,0x84,0x04,0x84,0x00 -+// 50594 얢 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x08,0x09,0x02,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x64,0x34,0x3c,0xa4,0xb4,0xb4,0x04,0x00,0xa4,0xa4,0xa4,0x24,0x10,0x00 -+// 50595 얣 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x1c,0x94,0x94,0x94,0x04,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 50596 얤 ; -+,0x00,0x00,0x00,0x02,0x09,0x10,0x10,0x09,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x64,0x24,0x34,0xa4,0xa4,0x24,0x24,0x90,0x88,0x88,0x18,0x24,0x02,0x00 -+// 50597 얥 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x09,0x06,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0x04,0x20,0x20,0x20,0x20,0x3c,0x00 -+// 50598 얦 ; -+,0x00,0x00,0x00,0x02,0x0f,0x08,0x10,0x09,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0x00,0xa8,0x0c,0x20,0x28,0x7e,0x00 -+// 50599 얧 ; -+,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x09,0x06,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0x24,0x24,0x38,0x02,0x18,0x24,0x04,0x24,0x00 -+// 50600 얨 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x0f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0x00,0xfc,0x04,0x04,0x04,0x80,0x00 -+// 50601 얩 ; -+,0x00,0x00,0x00,0x02,0x0f,0x08,0x08,0x09,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x34,0x1c,0x94,0x94,0x94,0x04,0x04,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 50602 얪 ; -+,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x19,0x06,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0x24,0x24,0x98,0x88,0x98,0x94,0xa6,0x82,0x00 -+// 50603 얫 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0x44,0x20,0x60,0x50,0x8c,0x06,0x00 -+// 50604 얬 ; -+,0x00,0x00,0x00,0x02,0x0f,0x10,0x10,0x09,0x02,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0x24,0x24,0x18,0x08,0x08,0x94,0x62,0x42,0x00 -+// 50605 얭 ; -+,0x00,0x00,0x00,0x00,0x02,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x34,0xb4,0xa4,0xb4,0x24,0x04,0x34,0x48,0x84,0x84,0x48,0x00 -+// 50606 얮 ; -+,0x00,0x00,0x00,0x02,0x0f,0x08,0x00,0x08,0x07,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xb4,0xb4,0x24,0x00,0xe0,0x60,0xd0,0x0c,0x04,0x00 -+// 50607 얯 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x09,0x06,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x0c,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0xe0,0x00,0xe0,0x60,0x98,0x06,0x00 -+// 50608 얰 ; -+,0x00,0x00,0x00,0x02,0x0f,0x08,0x00,0x09,0x06,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x64,0x34,0x3c,0xa4,0xb4,0xb4,0x04,0x00,0xc4,0x04,0xc4,0x04,0x04,0x00 -+// 50609 얱 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0x00,0x3c,0x00,0x3c,0x00,0xfc,0x00 -+// 50610 얲 ; -+,0x00,0x00,0x00,0x00,0x0f,0x08,0x10,0x09,0x0f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0x3c,0xa4,0xa4,0xa4,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 50611 얳 ; -+,0x00,0x00,0x00,0x02,0x0f,0x08,0x10,0x09,0x06,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0xa4,0xa4,0xb4,0x24,0x70,0x06,0x20,0x90,0x88,0xd0,0x00 -+// 50612 어 ; -+,0x00,0x00,0x00,0x02,0x03,0x08,0x08,0x10,0x08,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x44,0x7c,0x44,0x84,0x04,0x04,0x04,0x04,0x04,0x00 -+// 50613 억 ; -+,0x00,0x00,0x02,0x03,0x08,0x08,0x08,0x0c,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50614 얶 ; -+,0x00,0x00,0x02,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x04,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50615 얷 ; -+,0x00,0x00,0x02,0x06,0x08,0x10,0x10,0x08,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x84,0xcc,0x84,0x84,0x04,0x18,0x88,0x88,0x94,0xa6,0xc2,0x00 -+// 50616 언 ; -+,0x00,0x00,0x00,0x02,0x0d,0x10,0x10,0x10,0x0d,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x7c,0xc4,0x84,0x04,0x04,0x04,0x00,0x00,0x9e,0x00 -+// 50617 얹 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x08,0x06,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x00,0x78,0x18,0x18,0x24,0x42,0x00 -+// 50618 얺 ; -+,0x00,0x00,0x02,0x07,0x18,0x10,0x10,0x09,0x06,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x0c,0x04,0x84,0xfc,0x84,0x84,0x04,0x38,0x00,0x10,0x28,0x44,0x24,0x00 -+// 50619 얻 ; -+,0x00,0x00,0x00,0x03,0x08,0x10,0x10,0x08,0x07,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x04,0x1c,0x00,0x00,0x00,0x9c,0x00 -+// 50620 얼 ; -+,0x00,0x00,0x02,0x07,0x18,0x10,0x10,0x0d,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x0c,0x04,0x84,0x7c,0x84,0x84,0x00,0x08,0x08,0x08,0x18,0x00,0x8e,0x00 -+// 50621 얽 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x0c,0x03,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x08,0x04,0x04,0x44,0x7c,0x44,0x84,0x04,0x04,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 50622 얾 ; -+,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x0d,0x00,0x00,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x44,0x7c,0x44,0x84,0x04,0x04,0xa4,0xa4,0xa4,0x24,0xbc,0x00 -+// 50623 얿 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x0c,0x00,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x44,0x7c,0x44,0x84,0x04,0x04,0xa4,0x24,0x24,0x24,0x3c,0x00 -+// 50624 엀 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x0d,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 50625 엁 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x18,0x08,0x03,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x04,0xec,0xa0,0xac,0x20,0x3e,0x00 -+// 50626 엂 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x09,0x00,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x84,0x84,0x04,0x04,0xa8,0x00,0x20,0x28,0x1e,0x00 -+// 50627 엃 ; -+,0x00,0x00,0x02,0x06,0x08,0x10,0x10,0x08,0x07,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0xfc,0x84,0x84,0x04,0x18,0x00,0x78,0x28,0x24,0x24,0x00 -+// 50628 엄 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x04,0x0c,0x04,0x04,0x00,0x88,0x00 -+// 50629 업 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x0c,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 50630 없 ; -+,0x00,0x00,0x02,0x0f,0x10,0x10,0x10,0x0f,0x00,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x84,0xfc,0x84,0x84,0x04,0x18,0x88,0x88,0x94,0xa2,0x82,0x00 -+// 50631 엇 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x44,0x24,0x60,0x48,0x84,0x02,0x00 -+// 50632 었 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x09,0x06,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x84,0x84,0x04,0x10,0x08,0x08,0x98,0xe6,0x42,0x00 -+// 50633 엉 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xc4,0x7c,0x44,0x84,0x04,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 50634 엊 ; -+,0x00,0x00,0x02,0x03,0x08,0x08,0x08,0x08,0x03,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x04,0x6c,0x60,0x50,0x8c,0x04,0x00 -+// 50635 엋 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x0d,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0xe0,0x00,0xf0,0x60,0x88,0x06,0x00 -+// 50636 엌 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x02,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x04,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 50637 엍 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x04,0x3c,0x00,0x9c,0x00,0x8e,0x00 -+// 50638 엎 ; -+,0x00,0x00,0x00,0x06,0x08,0x10,0x10,0x19,0x06,0x00,0x00,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x0c,0x04,0x84,0xfc,0x84,0x84,0x04,0x00,0x3c,0x10,0x10,0x90,0xfe,0x00 -+// 50639 엏 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x0d,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x7c,0x44,0x84,0x04,0x70,0x00,0xe0,0x30,0x88,0x98,0x20 -+// 50640 에 ; -+,0x00,0x00,0x00,0x00,0x02,0x0d,0x00,0x10,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x94,0xf4,0x94,0x14,0x14,0x14,0x14,0x04,0x04,0x00 -+// 50641 엑 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x10,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0xf4,0x94,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 50642 엒 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0xb4,0x94,0x14,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50643 엓 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x10,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x10,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 50644 엔 ; -+,0x00,0x00,0x00,0x00,0x06,0x09,0x10,0x10,0x19,0x06,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0x14,0x14,0xf4,0x94,0x14,0x14,0x14,0x04,0x00,0x00,0xde,0x00 -+// 50645 엕 ; -+,0x00,0x00,0x00,0x00,0x0e,0x10,0x10,0x11,0x0f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xa4,0x24,0x24,0x00,0xfc,0x10,0x38,0x24,0x42,0x00 -+// 50646 엖 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x10,0x10,0x0f,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xe4,0xa4,0x24,0x30,0x00,0xd0,0x28,0x44,0x68,0x00 -+// 50647 엗 ; -+,0x00,0x00,0x00,0x00,0x07,0x08,0x00,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0xf4,0x94,0x14,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 50648 엘 ; -+,0x00,0x00,0x00,0x00,0x06,0x11,0x10,0x11,0x0f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xe4,0xa4,0x24,0x00,0xfc,0x04,0x0c,0x00,0x06,0x00 -+// 50649 엙 ; -+,0x00,0x00,0x00,0x02,0x03,0x08,0x00,0x08,0x07,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0xb4,0xb4,0x94,0x14,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 50650 엚 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x09,0x06,0x00,0x06,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0xb4,0xb4,0x94,0x04,0x00,0xa4,0xa4,0xa4,0x24,0xa4,0x00 -+// 50651 엛 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0x14,0x94,0xb4,0x94,0x14,0x0c,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 50652 엜 ; -+,0x00,0x00,0x00,0x02,0x0b,0x10,0x10,0x09,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0xa4,0x24,0x24,0x10,0x88,0x98,0x18,0x24,0x02,0x00 -+// 50653 엝 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x10,0x08,0x0f,0x00,0x0d,0x00,0x0d,0x04,0x05,0x04,0x00,0x08,0x24,0x24,0x24,0xa4,0xe4,0xa4,0x24,0x00,0xec,0x20,0x3c,0x20,0x3e,0x00 -+// 50654 엞 ; -+,0x00,0x00,0x00,0x00,0x06,0x10,0x10,0x19,0x06,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xa4,0x24,0x24,0x00,0x60,0x08,0x28,0x28,0xfe,0x00 -+// 50655 엟 ; -+,0x00,0x00,0x00,0x00,0x06,0x11,0x10,0x19,0x0f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x38,0x02,0x10,0x28,0x04,0x24,0x00 -+// 50656 엠 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0xb4,0xb4,0x94,0x14,0x00,0xcc,0x84,0x84,0x84,0xb8,0x00 -+// 50657 엡 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0xb4,0x94,0x14,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50658 엢 ; -+,0x00,0x00,0x00,0x00,0x0e,0x10,0x10,0x19,0x06,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xa4,0x24,0x24,0x98,0x88,0x98,0x98,0xa6,0x82,0x00 -+// 50659 엣 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x44,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 50660 엤 ; -+,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x09,0x06,0x00,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0xa4,0x24,0x24,0x18,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 50661 엥 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0xf4,0x94,0x14,0x04,0x30,0xc4,0x84,0x84,0x78,0x00 -+// 50662 엦 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0xf4,0x94,0x14,0x04,0xfc,0x60,0x50,0x8c,0x04,0x00 -+// 50663 엧 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x06,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x34,0x14,0x14,0xb4,0xb4,0x94,0x14,0x60,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 50664 엨 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0xf4,0x94,0x14,0x00,0xec,0x04,0x24,0x04,0x04,0x00 -+// 50665 엩 ; -+,0x00,0x00,0x00,0x02,0x03,0x08,0x00,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0xb4,0x94,0x14,0x00,0x3c,0x00,0x3c,0x00,0x8e,0x00 -+// 50666 엪 ; -+,0x00,0x00,0x00,0x00,0x06,0x10,0x10,0x10,0x0f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0xa4,0xa4,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 50667 엫 ; -+,0x00,0x00,0x00,0x00,0x0e,0x10,0x10,0x09,0x06,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0xa4,0x24,0x24,0xe0,0x04,0x60,0x90,0x88,0x90,0x00 -+// 50668 여 ; -+,0x00,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xfc,0x44,0x44,0x44,0xbc,0x04,0x04,0x04,0x04,0x04,0x00 -+// 50669 역 ; -+,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x0c,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xfc,0x44,0x44,0xbc,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50670 엮 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xbc,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 50671 엯 ; -+,0x00,0x00,0x00,0x02,0x08,0x10,0x10,0x18,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0xbc,0x84,0x84,0xbc,0x04,0x10,0x88,0x98,0x98,0xa4,0xc2,0x00 -+// 50672 연 ; -+,0x00,0x00,0x00,0x02,0x0d,0x10,0x10,0x18,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x0c,0x84,0x44,0x84,0xbc,0x04,0x04,0x00,0x00,0x00,0xde,0x00 -+// 50673 엱 ; -+,0x00,0x00,0x02,0x06,0x08,0x10,0x10,0x08,0x07,0x00,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x0c,0x04,0xbc,0x84,0x84,0xbc,0x04,0x00,0xfe,0x10,0x18,0x24,0x42,0x00 -+// 50674 엲 ; -+,0x00,0x00,0x02,0x07,0x18,0x10,0x10,0x09,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x0c,0x04,0xbc,0x84,0xcc,0x8c,0x04,0x38,0x02,0x90,0x28,0x44,0x2c,0x00 -+// 50675 엳 ; -+,0x00,0x00,0x00,0x03,0x08,0x10,0x10,0x08,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xfc,0x04,0x00,0x0c,0x00,0x00,0x00,0x1c,0x00 -+// 50676 열 ; -+,0x00,0x00,0x02,0x07,0x18,0x10,0x10,0x09,0x02,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0xfc,0x84,0x84,0xbc,0x00,0x00,0x08,0x08,0x18,0x00,0xfe,0x00 -+// 50677 엵 ; -+,0x00,0x00,0x02,0x03,0x08,0x08,0x08,0x0c,0x02,0x00,0x06,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0x84,0x04,0x00,0xa4,0x84,0x04,0x04,0x84,0x00 -+// 50678 엶 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x03,0x00,0x07,0x00,0x05,0x04,0x06,0x02,0x00,0x0c,0x04,0x04,0xfc,0x44,0x44,0x84,0x04,0x00,0xbc,0xa4,0xa4,0x24,0x94,0x00 -+// 50679 엷 ; -+,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x0d,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x7c,0x44,0x44,0x84,0x04,0x0c,0x24,0x3c,0x24,0x24,0x3c,0x00 -+// 50680 엸 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x18,0x08,0x03,0x00,0x04,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0x84,0x04,0x00,0x98,0x88,0x98,0x24,0x42,0x00 -+// 50681 엹 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x18,0x0d,0x00,0x00,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0xc4,0x84,0x04,0x04,0xa0,0x20,0x2c,0x20,0x3e,0x00 -+// 50682 엺 ; -+,0x00,0x00,0x02,0x06,0x08,0x10,0x10,0x08,0x07,0x00,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x0c,0x04,0xbc,0x84,0x84,0xbc,0x04,0x00,0xcc,0x08,0x28,0x28,0x6e,0x00 -+// 50683 엻 ; -+,0x00,0x00,0x02,0x07,0x18,0x10,0x10,0x08,0x06,0x00,0x0d,0x00,0x0d,0x04,0x05,0x00,0x00,0x08,0x04,0x04,0xbc,0x84,0x8c,0xac,0x04,0x08,0x00,0x58,0x08,0x04,0x24,0x18 -+// 50684 염 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x03,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xbc,0x04,0x00,0xec,0x04,0x04,0x04,0x80,0x00 -+// 50685 엽 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x08,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xbc,0x04,0x00,0x04,0x84,0x84,0x04,0xfc,0x00 -+// 50686 엾 ; -+,0x00,0x00,0x02,0x0f,0x18,0x10,0x10,0x0d,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0xbc,0x04,0xcc,0x84,0x04,0x98,0x88,0x88,0x9c,0xa6,0x42,0x00 -+// 50687 엿 ; -+,0x00,0x00,0x02,0x03,0x08,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xbc,0x04,0x44,0x20,0x60,0x50,0x8c,0x06,0x00 -+// 50688 였 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x09,0x02,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0xc4,0x84,0x04,0x18,0x88,0x08,0x9c,0x66,0x02,0x00 -+// 50689 영 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xcc,0x84,0x04,0x30,0x88,0x84,0x84,0xd8,0x00 -+// 50690 옂 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x03,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xbc,0x04,0x00,0xfc,0x60,0x50,0x8c,0x06,0x00 -+// 50691 옃 ; -+,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x04,0x04,0xfc,0x44,0x44,0x84,0x04,0x60,0x00,0xf0,0x60,0xc8,0x06,0x00 -+// 50692 옄 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xbc,0x44,0x44,0xbc,0x04,0x00,0xec,0x04,0xec,0x04,0x04,0x00 -+// 50693 옅 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0xbc,0x44,0x44,0xbc,0x04,0x00,0x3c,0x00,0x3c,0x00,0xfc,0x00 -+// 50694 옆 ; -+,0x00,0x00,0x00,0x06,0x08,0x10,0x10,0x18,0x0f,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0xbc,0x84,0x84,0xbc,0x04,0x00,0x0c,0x10,0x10,0x90,0x9e,0x00 -+// 50695 옇 ; -+,0x00,0x00,0x00,0x07,0x08,0x10,0x10,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xbc,0x84,0xc4,0x84,0x04,0x60,0x00,0x20,0x90,0x88,0x90,0x00 -+// 50696 예 ; -+,0x00,0x00,0x00,0x00,0x02,0x06,0x08,0x10,0x00,0x09,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x14,0x14,0x14,0xf4,0x94,0x94,0xf4,0x14,0x14,0x14,0x14,0x04,0x00 -+// 50697 옉 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x34,0xb4,0x94,0xf4,0x14,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 50698 옊 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x34,0xb4,0x94,0xf4,0x14,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 50699 옋 ; -+,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x11,0x0f,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x34,0x24,0xa4,0xa4,0xe4,0x24,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 50700 옌 ; -+,0x00,0x00,0x00,0x00,0x02,0x09,0x10,0x10,0x09,0x06,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x74,0x94,0x94,0xf4,0x14,0x14,0x04,0x00,0x00,0xde,0x00 -+// 50701 옍 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x10,0x08,0x0f,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0x94,0xf4,0x14,0x00,0xde,0x10,0x18,0x24,0x42,0x00 -+// 50702 옎 ; -+,0x00,0x00,0x00,0x00,0x07,0x10,0x10,0x19,0x06,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x14,0x34,0xb4,0x94,0xf4,0x04,0x30,0x06,0x10,0x48,0x44,0x38,0x00 -+// 50703 옏 ; -+,0x00,0x00,0x00,0x00,0x06,0x09,0x10,0x10,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0x14,0xf4,0x94,0xf4,0x04,0x04,0x0c,0x00,0x00,0x00,0x0c,0x00 -+// 50704 옐 ; -+,0x00,0x00,0x00,0x00,0x06,0x11,0x10,0x11,0x0e,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0x24,0xa4,0xa4,0xe4,0x24,0x00,0x04,0x04,0x08,0x00,0xfe,0x00 -+// 50705 옑 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x10,0x08,0x07,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0x94,0xf4,0x14,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 50706 옒 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x08,0x09,0x02,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x94,0xb4,0x14,0x00,0xb4,0xa4,0xa4,0x24,0x80,0x00 -+// 50707 옓 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x09,0x07,0x00,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0x94,0xf4,0x14,0x0c,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 50708 옔 ; -+,0x00,0x00,0x00,0x00,0x0b,0x10,0x10,0x09,0x06,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x34,0xb4,0xb4,0x24,0x04,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 50709 옕 ; -+,0x00,0x00,0x00,0x00,0x07,0x08,0x10,0x09,0x06,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0x94,0xf4,0x14,0x04,0xe0,0x20,0x20,0x20,0x3c,0x00 -+// 50710 옖 ; -+,0x00,0x00,0x00,0x00,0x06,0x11,0x10,0x11,0x0f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x34,0x34,0xf4,0x94,0xf4,0x04,0x00,0x40,0x08,0x28,0x28,0x2e,0x00 -+// 50711 옗 ; -+,0x00,0x00,0x00,0x00,0x0e,0x11,0x10,0x19,0x06,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x34,0x24,0xa4,0xa4,0x64,0x04,0x38,0x06,0x10,0x24,0x44,0x2c,0x00 -+// 50712 옘 ; -+,0x00,0x00,0x00,0x00,0x06,0x08,0x10,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0xf4,0x94,0xf4,0x14,0x14,0x04,0x84,0x84,0x84,0x9c,0x00 -+// 50713 옙 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x09,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x94,0xf4,0x14,0x0c,0x04,0x84,0x84,0x84,0x84,0x00 -+// 50714 옚 ; -+,0x00,0x00,0x00,0x00,0x06,0x11,0x10,0x11,0x0e,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x34,0x14,0xb4,0x94,0xf4,0x14,0x18,0x88,0x88,0x9c,0xa6,0x82,0x00 -+// 50715 옛 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x94,0xf4,0x14,0x44,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 50716 옜 ; -+,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x09,0x06,0x00,0x01,0x01,0x02,0x06,0x08,0x00,0x00,0x08,0x24,0x14,0x34,0xb4,0x94,0xf4,0x04,0x18,0x08,0x08,0x94,0x62,0x42,0x00 -+// 50717 옝 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x00,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0x94,0xf4,0x14,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 50718 옞 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x07,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x94,0xf4,0x14,0x00,0xfc,0x60,0xd0,0x8c,0x04,0x00 -+// 50719 옟 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x07,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x14,0x14,0x94,0x94,0xf4,0x14,0x70,0x00,0xfc,0x60,0x98,0x06,0x00 -+// 50720 옠 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x00,0x09,0x07,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0x14,0x94,0x94,0xf4,0x14,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 50721 옡 ; -+,0x00,0x00,0x00,0x02,0x06,0x08,0x10,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x14,0xb4,0x94,0xf4,0x14,0x00,0x1c,0x00,0x3c,0x00,0x1c,0x00 -+// 50722 옢 ; -+,0x00,0x00,0x00,0x00,0x06,0x11,0x10,0x11,0x0f,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x64,0x34,0x24,0xa4,0xa4,0xe4,0x24,0x00,0xfc,0x10,0x10,0x90,0x9e,0x00 -+// 50723 옣 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x10,0x08,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x14,0x94,0x94,0xf4,0x14,0x70,0x06,0x20,0x30,0x88,0x90,0x00 -+// 50724 오 ; -+,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x80,0xc0,0x10,0x10,0x10,0x10,0x20,0x00,0x80,0x40,0x40,0xfe,0x00,0x00 -+// 50725 옥 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 50726 옦 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x3c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x40,0xdf,0x00,0x7c,0x84,0x84,0x84,0x00,0x00 -+// 50727 옧 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0x10,0x10,0x30,0x2c,0x46,0x00 -+// 50728 온 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x3f,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0x30,0xc0,0x00,0xfe,0x00,0x00,0x00,0x00,0xbc,0x00 -+// 50729 옩 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x00,0x00,0x3f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x40,0x20,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0xf0,0x10,0x30,0x4c,0x84,0x00 -+// 50730 옪 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0x00,0xf4,0x10,0x48,0x48,0x30 -+// 50731 옫 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x40,0xc7,0x00,0x00,0x00,0x00,0x00,0x3c,0x00 -+// 50732 올 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0xf0,0x10,0x10,0x00,0xf8,0x00 -+// 50733 옭 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x05,0x04,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0xf8,0x08,0x88,0x08,0x08,0x00 -+// 50734 옮 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x05,0x01,0x0d,0x08,0x0d,0x04,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x40,0xfe,0x00,0x6c,0x24,0x24,0x20,0x3c,0x00 -+// 50735 옯 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x0d,0x01,0x0d,0x08,0x0f,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x40,0xff,0x08,0x44,0x2c,0x24,0x04,0x3c,0x00 -+// 50736 옰 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x40,0xfe,0x10,0x90,0x10,0x28,0x44,0x82,0x00 -+// 50737 옱 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x04,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0xdc,0x40,0x7c,0x40,0x3c,0x00 -+// 50738 옲 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x0d,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x60,0x10,0x10,0x30,0xc0,0x00,0xfe,0x00,0x40,0x08,0x48,0x28,0xbc,0x00 -+// 50739 옳 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x09,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xfe,0x30,0x00,0x10,0x08,0x40,0x48,0x00 -+// 50740 옴 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0x70,0x10,0x10,0x10,0x30,0x00 -+// 50741 옵 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x04,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x40,0xff,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 50742 옶 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x08,0x08,0x0d,0x08,0x07,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x00,0xff,0x10,0x90,0x90,0x98,0xa4,0xc6,0x00 -+// 50743 옷 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0xc0,0xc0,0xa0,0x18,0x0c,0x00 -+// 50744 옸 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0x10,0x10,0x30,0xac,0x44,0x00 -+// 50745 옹 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x40,0xc0,0x10,0x10,0x10,0xe0,0x40,0xc7,0x40,0x40,0x10,0x10,0x10,0x30,0x00 -+// 50746 옺 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x0f,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0xfc,0xc0,0xa0,0x10,0x0c,0x00 -+// 50747 옻 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0x00,0xfc,0xc0,0x30,0x08,0x00 -+// 50748 옼 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x07,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 50749 옽 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x04,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0xc0,0xff,0x00,0x18,0x00,0x10,0x00,0x18,0x00 -+// 50750 옾 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x40,0xff,0x00,0x38,0x00,0x30,0x20,0xac,0x00 -+// 50751 옿 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x01,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0x80,0xfe,0xc0,0x0c,0xc0,0x20,0x00,0x20,0x00 -+// 50752 와 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0d,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x48,0x48,0x88,0x0f,0x78,0x08,0x08,0x08,0x08,0x08,0x00 -+// 50753 왁 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0c,0x03,0x03,0x1c,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x88,0x08,0xc8,0x08,0x00,0x18,0x18,0x18,0x00,0x00 -+// 50754 왂 ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x07,0x02,0x03,0x18,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x48,0x88,0x8b,0x18,0x88,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 50755 왃 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0c,0x03,0x03,0x1e,0x00,0x0b,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x88,0x0e,0xc8,0x08,0x30,0x10,0x30,0x48,0x44,0x00 -+// 50756 완 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x07,0x02,0x03,0x1c,0x02,0x03,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x48,0x48,0x88,0x08,0xc8,0x08,0x08,0x00,0x00,0x0c,0x00 -+// 50757 왅 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x05,0x03,0x03,0x18,0x18,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0x88,0x08,0x48,0x88,0x18,0xc8,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 50758 왆 ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x0d,0x02,0x03,0x1c,0x00,0x0d,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x88,0x0e,0xc8,0x10,0x00,0xbc,0x10,0x48,0x48,0x00 -+// 50759 왇 ; -+,0x00,0x00,0x02,0x07,0x08,0x08,0x0d,0x02,0x03,0x1c,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x88,0x18,0xc8,0x08,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 50760 왈 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0c,0x03,0x03,0x1e,0x03,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x88,0x0e,0x58,0x00,0x10,0x10,0x10,0x00,0x0c,0x00 -+// 50761 왉 ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x07,0x02,0x03,0x1c,0x09,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x88,0x18,0xc8,0x08,0x58,0x08,0x08,0x08,0x08,0x00 -+// 50762 왊 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0f,0x02,0x03,0x1c,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x88,0x18,0xc8,0x00,0x58,0x48,0x48,0x48,0x40,0x00 -+// 50763 왋 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0d,0x03,0x03,0x1e,0x1a,0x02,0x1a,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x08,0x48,0x88,0x0e,0xc8,0x08,0x90,0x48,0x58,0x48,0x78,0x00 -+// 50764 왌 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0f,0x02,0x03,0x1c,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x88,0x18,0xc8,0x00,0x10,0x10,0x30,0x48,0x84,0x00 -+// 50765 왍 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0c,0x03,0x03,0x1e,0x09,0x01,0x0b,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x08,0x48,0x88,0x0e,0xc8,0x08,0x48,0x40,0x48,0x40,0x7c,0x00 -+// 50766 왎 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0f,0x02,0x03,0x1c,0x0b,0x00,0x0b,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x88,0x18,0xc8,0x08,0x48,0x18,0x48,0x10,0x1c,0x00 -+// 50767 왏 ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x0f,0x02,0x03,0x1c,0x0d,0x01,0x0d,0x00,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x88,0x18,0xc8,0x30,0x00,0x50,0x38,0x44,0x28,0x00 -+// 50768 왐 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0d,0x02,0x03,0x18,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x8b,0x18,0x88,0x00,0x30,0x18,0x10,0x10,0x00,0x00 -+// 50769 왑 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0d,0x02,0x03,0x1c,0x02,0x02,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x88,0x08,0xc8,0x08,0x10,0x18,0x18,0x10,0xf0,0x00 -+// 50770 왒 ; -+,0x00,0x00,0x02,0x0c,0x08,0x08,0x07,0x02,0x03,0x1c,0x01,0x0c,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x8a,0x18,0xc8,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 50771 왓 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0c,0x03,0x02,0x1f,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x18,0x88,0x88,0x08,0x88,0x0e,0x78,0x88,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 50772 왔 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0c,0x03,0x03,0x1c,0x03,0x01,0x03,0x02,0x08,0x00,0x00,0x10,0x18,0x88,0x08,0x48,0x88,0x18,0xc8,0x00,0x18,0x18,0x18,0xa4,0x44,0x00 -+// 50773 왕 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x03,0x03,0x1e,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x48,0x88,0x0e,0x18,0x08,0x60,0x90,0x08,0x08,0xf0,0x00 -+// 50774 왖 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0d,0x03,0x03,0x1c,0x00,0x04,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x88,0x08,0xc8,0x08,0x08,0x40,0xc0,0x90,0x08,0x00 -+// 50775 왗 ; -+,0x00,0x00,0x02,0x0c,0x08,0x08,0x07,0x02,0x03,0x18,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x10,0x08,0x88,0x48,0x88,0x8b,0x18,0x88,0x00,0x00,0xf8,0x40,0xb0,0x08,0x00 -+// 50776 왘 ; -+,0x00,0x00,0x00,0x05,0x08,0x08,0x0c,0x03,0x03,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x08,0x88,0x48,0x48,0x88,0x08,0xc8,0x08,0x18,0x08,0x18,0x08,0x00,0x00 -+// 50777 왙 ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x0f,0x02,0x03,0x1c,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x18,0x88,0x88,0x88,0x88,0x18,0xc8,0x00,0x18,0x00,0x18,0x00,0x3c,0x00 -+// 50778 왚 ; -+,0x00,0x00,0x02,0x05,0x08,0x08,0x0c,0x03,0x03,0x1c,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x88,0x08,0xc8,0x00,0x38,0x00,0x10,0x00,0x3c,0x00 -+// 50779 왛 ; -+,0x00,0x00,0x02,0x04,0x08,0x08,0x05,0x02,0x03,0x1d,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x48,0x08,0x88,0x08,0xc8,0x88,0x00,0xf8,0xa0,0x10,0x30,0x00 -+// 50780 왜 ; -+,0x00,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x07,0x02,0x03,0x1e,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x94,0x94,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x00 -+// 50781 왝 ; -+,0x00,0x00,0x00,0x00,0x05,0x08,0x08,0x07,0x02,0x1f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x94,0x1c,0x34,0x14,0x00,0xc4,0x04,0x04,0x04,0x00 -+// 50782 왞 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x54,0x94,0x14,0x14,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 50783 왟 ; -+,0x00,0x00,0x00,0x02,0x04,0x00,0x04,0x03,0x03,0x1e,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x14,0x34,0x00,0x18,0x88,0x98,0x94,0xa2,0x00 -+// 50784 왠 ; -+,0x00,0x00,0x00,0x00,0x05,0x08,0x08,0x05,0x02,0x03,0x1c,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x94,0x94,0x1c,0xb4,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 50785 왡 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x0c,0x07,0x02,0x1f,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x1c,0x34,0x10,0x06,0x58,0x18,0xac,0x42,0x00 -+// 50786 왢 ; -+,0x00,0x00,0x00,0x02,0x04,0x08,0x04,0x03,0x03,0x1e,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x1c,0x34,0x30,0x00,0xde,0x18,0x64,0x24,0x18 -+// 50787 왣 ; -+,0x00,0x00,0x00,0x00,0x05,0x00,0x04,0x07,0x01,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x94,0x1c,0x14,0x10,0x00,0x80,0x00,0x00,0x9e,0x00 -+// 50788 왤 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x08,0x07,0x02,0x1f,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x34,0x14,0x94,0x84,0x1c,0x24,0x04,0xfc,0x04,0x0c,0x00,0x80,0x00 -+// 50789 왥 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x1e,0x06,0x00,0x06,0x02,0x03,0x02,0x00,0x04,0x32,0x12,0x92,0x52,0x92,0x9e,0x12,0x00,0xb4,0x04,0x84,0x04,0x84,0x00 -+// 50790 왦 ; -+,0x00,0x00,0x00,0x01,0x05,0x04,0x04,0x07,0x01,0x1f,0x00,0x00,0x00,0x04,0x07,0x02,0x00,0x04,0x32,0x12,0x92,0x52,0x92,0x9e,0x12,0x10,0x04,0xa6,0x84,0x04,0x94,0x00 -+// 50791 왧 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x04,0x03,0x01,0x1e,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x36,0x12,0x92,0x52,0x96,0x16,0x10,0x00,0xa4,0xa4,0xa4,0x24,0xbc,0x00 -+// 50792 왨 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x08,0x07,0x02,0x1f,0x0c,0x00,0x08,0x04,0x05,0x04,0x00,0x0c,0x34,0x14,0x14,0x94,0x94,0x1c,0x34,0x10,0x98,0x88,0x98,0x14,0xe2,0x00 -+// 50793 왩 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x0e,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x32,0x12,0x92,0x52,0x92,0x1e,0x12,0x10,0xac,0xa0,0xac,0x20,0xbe,0x00 -+// 50794 왪 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x08,0x07,0x02,0x1e,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x94,0x1c,0x34,0x00,0xa6,0x04,0xa4,0x00,0x0a,0x00 -+// 50795 왫 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x08,0x07,0x02,0x1e,0x0d,0x01,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x1c,0x34,0x14,0x00,0x56,0x18,0x24,0x24,0x08 -+// 50796 왬 ; -+,0x00,0x00,0x00,0x00,0x05,0x04,0x04,0x03,0x01,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0x94,0x1c,0x34,0x10,0x00,0x86,0x84,0x84,0x8c,0x00 -+// 50797 왭 ; -+,0x00,0x00,0x00,0x00,0x05,0x00,0x04,0x07,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x94,0x1c,0x34,0x10,0x0c,0x84,0xfc,0x84,0xf4,0x00 -+// 50798 왮 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x08,0x07,0x02,0x1e,0x00,0x04,0x06,0x04,0x07,0x00,0x00,0x0c,0x24,0x34,0x14,0x94,0x94,0x1c,0x24,0x10,0x88,0x88,0x98,0x96,0xa2,0x00 -+// 50799 왯 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x03,0x01,0x1f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x14,0x94,0x14,0x94,0x1c,0x14,0x54,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 50800 왰 ; -+,0x00,0x00,0x00,0x02,0x04,0x08,0x04,0x03,0x03,0x1e,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x14,0x34,0x10,0x08,0x08,0x9c,0x66,0x02,0x00 -+// 50801 왱 ; -+,0x00,0x00,0x00,0x00,0x05,0x00,0x04,0x07,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x94,0x1c,0x34,0x94,0x10,0x48,0x84,0x84,0x48,0x00 -+// 50802 왲 ; -+,0x00,0x00,0x00,0x03,0x04,0x08,0x04,0x03,0x03,0x1e,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x14,0x94,0x14,0x94,0x14,0x34,0x00,0x04,0x60,0x60,0x98,0x04,0x00 -+// 50803 왳 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x03,0x01,0x1e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x36,0x14,0x94,0x14,0x94,0x1c,0x14,0x00,0x60,0x06,0x20,0x58,0x06,0x00 -+// 50804 왴 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x1e,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x34,0x14,0x94,0x14,0x94,0x1c,0x34,0x10,0x04,0x04,0x04,0x04,0x04,0x00 -+// 50805 왵 ; -+,0x00,0x00,0x00,0x00,0x05,0x00,0x04,0x03,0x01,0x1e,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0x1c,0x34,0x00,0x0c,0x00,0x1c,0x00,0x9e,0x00 -+// 50806 왶 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x08,0x07,0x02,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x94,0x1c,0x34,0x04,0x04,0x10,0x88,0x90,0x16,0x00 -+// 50807 왷 ; -+,0x00,0x00,0x00,0x02,0x05,0x08,0x04,0x03,0x03,0x1e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0x1c,0x34,0x10,0x00,0xe0,0x50,0x88,0x98,0x20 -+// 50808 외 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x07,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x24,0x24,0x24,0xc4,0x84,0x84,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 50809 왹 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x01,0x01,0x0e,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x24,0x24,0xc4,0x84,0xe4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 50810 왺 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x84,0xe4,0x00,0x8c,0x84,0x84,0x84,0x84,0x00 -+// 50811 왻 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x07,0x01,0x01,0x1e,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x04,0xe4,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 50812 왼 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x01,0x0c,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x44,0x04,0x44,0x84,0x04,0xe4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 50813 왽 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x06,0x01,0x01,0x1e,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0xc4,0x44,0x04,0x44,0x84,0xe4,0x04,0x02,0x18,0x18,0xb4,0x42,0x00 -+// 50814 왾 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x01,0x08,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x04,0xc4,0x38,0x00,0xfe,0x28,0x44,0x2c,0x00 -+// 50815 왿 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x06,0x01,0x01,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0x44,0x04,0x44,0x84,0xa4,0x04,0x00,0x38,0x00,0x00,0x8e,0x00 -+// 50816 욀 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x07,0x01,0x01,0x08,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x44,0x04,0x44,0xc4,0x04,0xc4,0x00,0xfc,0x04,0x8c,0x00,0xfe,0x00 -+// 50817 욁 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x00,0x0e,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0x44,0x84,0xc4,0x00,0x84,0x04,0x84,0x04,0x84,0x00 -+// 50818 욂 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x01,0x0c,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x84,0xc4,0x00,0xb6,0x80,0x84,0x04,0x94,0x00 -+// 50819 욃 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x00,0x0c,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x84,0xc4,0x00,0xa4,0xa4,0xa4,0x24,0x24,0x00 -+// 50820 욄 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x01,0x01,0x0c,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x24,0x24,0xc4,0x84,0xc4,0x00,0x88,0x88,0x98,0x14,0xc2,0x00 -+// 50821 욅 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x01,0x0c,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x24,0x24,0xc4,0x84,0xc4,0x00,0xac,0xa0,0xac,0x20,0x1e,0x00 -+// 50822 욆 ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x03,0x01,0x01,0x1e,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x24,0x44,0xc4,0x04,0xc4,0x00,0xa4,0x84,0xa4,0x00,0x8e,0x00 -+// 50823 욇 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x01,0x08,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x04,0x44,0xc4,0x04,0xc4,0x18,0x80,0xb8,0x1c,0x20,0x24,0x00 -+// 50824 욈 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x84,0xe4,0x00,0x00,0x84,0x84,0x84,0x8c,0x00 -+// 50825 욉 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x84,0xe4,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50826 욊 ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x03,0x01,0x01,0x0c,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x04,0xe4,0x00,0x88,0x88,0x8c,0x92,0xa2,0x00 -+// 50827 욋 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x07,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x04,0x34,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 50828 욌 ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x03,0x01,0x01,0x1c,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0x44,0x24,0x44,0xc4,0x04,0xc4,0x00,0x08,0x88,0x88,0x56,0x22,0x00 -+// 50829 욍 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x24,0x24,0x44,0x84,0x84,0x84,0x10,0x48,0x84,0x84,0x68,0x00 -+// 50830 욎 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x01,0x0e,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x84,0xe4,0x00,0x06,0x20,0x20,0x48,0x06,0x00 -+// 50831 욏 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x84,0xc4,0x00,0x60,0x2e,0x20,0x58,0x84,0x00 -+// 50832 욐 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x01,0x01,0x0e,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x84,0x44,0x24,0x24,0xc4,0x84,0xe4,0x00,0xec,0x04,0x24,0x04,0x04,0x00 -+// 50833 욑 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x01,0x01,0x1e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x24,0x24,0x44,0x84,0xa4,0x00,0x04,0x80,0x04,0x00,0x8e,0x00 -+// 50834 욒 ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x03,0x01,0x01,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x44,0x04,0x44,0xc4,0x04,0xc4,0x00,0xfc,0x08,0x88,0x90,0x96,0x00 -+// 50835 욓 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x01,0x01,0x1c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x04,0xc4,0x40,0x00,0xa0,0x50,0x88,0x58,0x00 -+// 50836 요 ; -+,0x00,0x00,0x00,0x00,0x03,0x02,0x04,0x02,0x03,0x00,0x02,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x10,0x10,0x10,0x30,0xe0,0x10,0x10,0x10,0x02,0x00,0x00 -+// 50837 욕 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0x3f,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 50838 욖 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x13,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0x7f,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 50839 욗 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0xff,0x00,0x30,0x10,0x30,0x2c,0x44,0x00 -+// 50840 욘 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x02,0x02,0x18,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0x30,0xe0,0x00,0x32,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 50841 욙 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x03,0x02,0x1f,0x00,0x18,0x08,0x08,0x0b,0x04,0x00,0x00,0x80,0xe0,0x10,0x10,0x30,0xe0,0x20,0xfe,0x00,0xb0,0x30,0x30,0x48,0x84,0x00 -+// 50842 욚 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x60,0x10,0x10,0x30,0xe0,0x20,0x3f,0x20,0x00,0xb0,0x50,0x48,0x48,0x00 -+// 50843 욛 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x02,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x20,0x3e,0x00,0x00,0x00,0x00,0x00,0x18,0x00 -+// 50844 욜 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0x3f,0x00,0xd0,0x10,0x30,0x00,0x08,0x00 -+// 50845 욝 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x05,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x20,0x7f,0x00,0xa8,0x08,0x88,0x08,0x08,0x00 -+// 50846 욞 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x01,0x03,0x1f,0x00,0x01,0x00,0x0d,0x04,0x07,0x00,0x00,0x40,0xe0,0x10,0x10,0x30,0xe0,0x20,0x02,0x00,0x2c,0x24,0x24,0x20,0x2c,0x00 -+// 50847 욟 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x0d,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0x3f,0x08,0x44,0x2c,0x24,0x04,0x3c,0x00 -+// 50848 욠 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x0d,0x00,0x0d,0x00,0x06,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0x20,0x7f,0x20,0x90,0x10,0x28,0x44,0x04,0x00 -+// 50849 욡 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x01,0x01,0x01,0x04,0x05,0x04,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x20,0x7f,0x00,0x4c,0x40,0x48,0x40,0x7c,0x00 -+// 50850 욢 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x0f,0x01,0x09,0x00,0x06,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0x20,0x7e,0x00,0x50,0x08,0x48,0x20,0x1c,0x00 -+// 50851 욣 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x0f,0x01,0x09,0x00,0x07,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x20,0xff,0x30,0x00,0x10,0x38,0x44,0x48,0x00 -+// 50852 욤 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x13,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x20,0x3f,0x00,0x10,0x10,0x10,0x10,0x30,0x00 -+// 50853 욥 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0xff,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 50854 욦 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x3f,0x00,0x09,0x08,0x0d,0x08,0x0f,0x00,0x00,0xc0,0xe0,0x10,0x10,0x10,0xe0,0x20,0xff,0x00,0x90,0x90,0x98,0xa4,0xc6,0x00 -+// 50855 욧 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x13,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x20,0x7f,0x80,0xc0,0x80,0x20,0x18,0x0c,0x00 -+// 50856 욨 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0x7f,0x00,0x10,0x10,0x30,0xac,0x44,0x00 -+// 50857 용 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x03,0x03,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x10,0x3f,0xc0,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 50858 욪 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0xff,0x00,0xfc,0xc0,0xa0,0x18,0x0c,0x00 -+// 50859 욫 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0x20,0x3e,0x00,0x00,0xd8,0xc0,0x20,0x18,0x00 -+// 50860 욬 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0x3f,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 50861 욭 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x04,0x04,0x02,0x00,0x03,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x20,0xff,0x00,0x38,0x00,0x30,0x00,0xf8,0x00 -+// 50862 욮 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x00,0x00,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x20,0x7f,0x00,0x78,0x00,0x20,0x20,0xfc,0x00 -+// 50863 욯 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x02,0x1f,0x01,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0x20,0xff,0xc0,0x0c,0xc0,0x20,0x20,0x20,0x40 -+// 50864 우 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x40,0x00 -+// 50865 욱 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xc0,0x40,0x48,0x08,0x08,0x08,0x08,0x00 -+// 50866 욲 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x0f,0x40,0x40,0x7c,0x00,0x08,0x00,0x00,0x00 -+// 50867 욳 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x18,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x02,0xc0,0x40,0x10,0x10,0x30,0x6c,0x06,0x00 -+// 50868 운 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1e,0x00,0x00,0x04,0x02,0x02,0x03,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0x7f,0x40,0x40,0x40,0x40,0x00,0xb8,0x00 -+// 50869 욵 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1c,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x02,0xc0,0x40,0xf0,0x10,0x30,0x48,0x84,0x00 -+// 50870 욶 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x18,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0xc0,0x10,0x10,0x30,0xe0,0x02,0xc0,0x40,0x00,0xb4,0x30,0x48,0x48,0x30 -+// 50871 욷 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x10,0x00,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x06,0xc0,0x40,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 50872 울 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x3e,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0xc0,0x30,0x10,0x10,0xe0,0x00,0xfe,0x40,0xf0,0x10,0x10,0x00,0x18,0x00 -+// 50873 욹 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x40,0x10,0x10,0x30,0xe0,0x0f,0x40,0x40,0xa8,0x88,0x88,0x08,0x08,0x00 -+// 50874 욺 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x01,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x60,0x10,0x10,0x30,0xc0,0x1f,0x40,0xc0,0x24,0x24,0x24,0x24,0x28,0x00 -+// 50875 욻 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1c,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0xc0,0x48,0x44,0x2c,0x24,0x24,0x3c,0x00 -+// 50876 욼 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x40,0x10,0x10,0x30,0xe0,0x1f,0x40,0x50,0x90,0x10,0x28,0x24,0x46,0x00 -+// 50877 욽 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1c,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0xc0,0x40,0xcc,0x00,0x2c,0x00,0x3c,0x00 -+// 50878 욾 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x40,0x10,0x10,0x10,0xe0,0x0f,0xc0,0x40,0x4c,0x08,0x28,0x28,0x1c,0x00 -+// 50879 욿 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x18,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0xc0,0x70,0x00,0x50,0x28,0x44,0x48,0x00 -+// 50880 움 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1e,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xc0,0x40,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 50881 웁 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xc0,0x40,0x10,0x10,0x10,0x00,0xf0,0x00 -+// 50882 웂 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x10,0x00,0x01,0x08,0x05,0x04,0x00,0x07,0x00,0x00,0x00,0x60,0x10,0x10,0x20,0xc0,0x3f,0x80,0x90,0x90,0x90,0x98,0xa4,0xc2,0x00 -+// 50883 웃 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xff,0x40,0x80,0x80,0xc0,0x10,0x0c,0x00 -+// 50884 웄 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x60,0x10,0x10,0x30,0xc0,0x0f,0x40,0x40,0x10,0x10,0x38,0xe4,0x44,0x00 -+// 50885 웅 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xc0,0x40,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 50886 웆 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x18,0x00,0x0f,0x00,0x00,0x01,0x04,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x02,0xc0,0x40,0xfc,0xc0,0xa0,0x10,0x0c,0x00 -+// 50887 웇 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x00,0x0c,0x00,0x01,0x06,0x00,0x00,0x00,0x40,0x10,0x10,0x20,0xc0,0x3f,0x80,0xc0,0x00,0x88,0xc0,0x30,0x08,0x00 -+// 50888 웈 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xc0,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 50889 웉 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x10,0x00,0x04,0x06,0x06,0x06,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0xc0,0x40,0xf8,0x00,0x30,0x00,0x18,0x00 -+// 50890 웊 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x10,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x80,0x40,0x10,0x10,0x30,0xe0,0x06,0xc0,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 50891 웋 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x01,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x80,0xe0,0x10,0x10,0x30,0xc0,0x0e,0x80,0xc0,0x0c,0xc0,0x20,0x20,0x20,0x00 -+// 50892 워 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x06,0x01,0x00,0x1f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x24,0x24,0x44,0x84,0x44,0x84,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 50893 웍 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x0d,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x24,0x64,0xc4,0x04,0x9c,0x80,0x00,0x04,0x04,0x04,0x04,0x00 -+// 50894 웎 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x24,0x24,0x64,0x84,0xc4,0xbc,0x80,0x84,0x84,0x84,0x84,0x84,0x00 -+// 50895 웏 ; -+,0x00,0x00,0x01,0x04,0x04,0x06,0x01,0x01,0x09,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x24,0x44,0x84,0x84,0x3c,0x00,0x08,0x88,0x88,0x96,0xa2,0x00 -+// 50896 원 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x04,0x01,0x01,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x44,0x44,0x44,0x84,0x84,0x0c,0x04,0x04,0x00,0x00,0x8e,0x00 -+// 50897 웑 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x09,0x00,0x00,0x04,0x04,0x06,0x02,0x00,0x00,0x0c,0x84,0x24,0x24,0x64,0x84,0x84,0x1c,0x00,0x02,0x18,0x18,0xb4,0x42,0x00 -+// 50898 웒 ; -+,0x00,0x00,0x03,0x04,0x04,0x02,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x08,0x84,0x04,0x24,0x44,0x04,0x84,0x3c,0x38,0x00,0x5e,0x08,0x24,0x24,0x00 -+// 50899 웓 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x0f,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x24,0x24,0x24,0xc4,0x04,0x84,0x80,0x00,0x98,0x00,0x00,0x86,0x00 -+// 50900 월 ; -+,0x00,0x00,0x01,0x04,0x04,0x06,0x01,0x1f,0x01,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x0c,0x84,0x44,0x24,0x44,0x04,0x84,0x3c,0x00,0xfc,0x04,0x0c,0x00,0xfe,0x00 -+// 50901 웕 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x00,0x0f,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0xc6,0x22,0x22,0x22,0x82,0xc2,0xbe,0x80,0xbc,0x04,0x84,0x04,0x84,0x00 -+// 50902 웖 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x00,0x0f,0x00,0x00,0x04,0x00,0x04,0x00,0x03,0x00,0x00,0x0c,0xc4,0x24,0x24,0x24,0x84,0xc4,0xbc,0x80,0xa4,0xa2,0x80,0x00,0x94,0x00 -+// 50903 웗 ; -+,0x00,0x00,0x00,0x02,0x00,0x02,0x01,0x03,0x00,0x00,0x05,0x00,0x05,0x04,0x05,0x02,0x00,0x00,0x84,0x24,0x24,0x24,0x84,0xc4,0xbc,0x80,0x84,0xa4,0xb4,0x24,0xbc,0x00 -+// 50904 웘 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x03,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x24,0x24,0x64,0x84,0xc4,0xbc,0x00,0x88,0x88,0x98,0x14,0xe2,0x00 -+// 50905 웙 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x00,0x1f,0x00,0x00,0x04,0x00,0x05,0x04,0x04,0x02,0x00,0x0c,0xc4,0x24,0x24,0x64,0x04,0xc4,0xbc,0x80,0xec,0xa0,0xac,0x20,0xbe,0x00 -+// 50906 웚 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x00,0x1f,0x00,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x84,0x24,0x24,0x44,0x84,0x84,0x3c,0x00,0xa0,0x84,0xa4,0x08,0x7e,0x00 -+// 50907 웛 ; -+,0x00,0x00,0x01,0x04,0x04,0x06,0x01,0x13,0x01,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0x24,0x44,0x84,0xc4,0x3c,0x00,0x80,0x7e,0x98,0x24,0xa4,0x18 -+// 50908 웜 ; -+,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x24,0x64,0x84,0x84,0xbc,0x80,0x04,0x84,0x84,0x84,0x80,0x00 -+// 50909 웝 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x24,0x64,0xc4,0x84,0xbc,0x00,0x0c,0x84,0xf4,0x84,0xfc,0x00 -+// 50910 웞 ; -+,0x00,0x00,0x01,0x04,0x04,0x02,0x00,0x1f,0x01,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x04,0x84,0x3c,0x00,0x88,0x48,0xcc,0x52,0xe3,0x00 -+// 50911 웟 ; -+,0x00,0x00,0x00,0x02,0x04,0x02,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x8c,0xc4,0x24,0x24,0x64,0x04,0xc4,0x3c,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 50912 웠 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x04,0x84,0x3c,0x00,0x88,0x88,0x9c,0x52,0x22,0x00 -+// 50913 웡 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x01,0x00,0x0d,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x24,0x24,0x24,0xc4,0x04,0x1c,0x04,0x14,0x44,0x84,0x84,0x68,0x00 -+// 50914 웢 ; -+,0x00,0x00,0x02,0x02,0x00,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x8c,0xc4,0x24,0x24,0x44,0x04,0x84,0xbc,0x00,0x0c,0x20,0x20,0xc8,0x06,0x00 -+// 50915 웣 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x00,0x13,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0xc4,0x24,0x24,0x64,0x84,0x84,0xbc,0x00,0x60,0x06,0x20,0x58,0x84,0x00 -+// 50916 웤 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x8c,0xc4,0x24,0x24,0x64,0x84,0x84,0xbc,0x80,0xcc,0x04,0x24,0x04,0x04,0x00 -+// 50917 웥 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x00,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x24,0x24,0x64,0x84,0xc4,0xbc,0x00,0x3c,0x00,0xbc,0x00,0xfe,0x00 -+// 50918 웦 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x00,0x09,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x24,0x44,0x84,0x84,0x1c,0x00,0x0c,0x10,0x88,0x90,0x16,0x00 -+// 50919 웧 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x00,0x13,0x01,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x84,0xc4,0x3c,0x40,0x00,0xf0,0x50,0x88,0x48,0x20 -+// 50920 웨 ; -+,0x00,0x00,0x00,0x02,0x04,0x08,0x08,0x07,0x00,0x1f,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x94,0x14,0x14,0x14,0x74,0x14,0x14,0x14,0x14,0x00 -+// 50921 웩 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x14,0x94,0x14,0x14,0x74,0x10,0x04,0x04,0x04,0x04,0x04,0x00 -+// 50922 웪 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x03,0x0b,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x14,0x94,0x14,0x14,0x14,0x10,0x84,0x84,0x84,0x84,0x84,0x00 -+// 50923 웫 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x01,0x0a,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x14,0x14,0x18,0x88,0x88,0x94,0xa2,0x00 -+// 50924 웬 ; -+,0x00,0x00,0x00,0x03,0x04,0x00,0x07,0x00,0x1e,0x02,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0x14,0x74,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 50925 웭 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x01,0x0e,0x00,0x00,0x04,0x04,0x05,0x06,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x14,0x14,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 50926 웮 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x04,0x00,0x02,0x03,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x38,0x00,0xfe,0x28,0x44,0x2c,0x00 -+// 50927 웯 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x07,0x00,0x0e,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x94,0x14,0x14,0x14,0x04,0x00,0x00,0x00,0x86,0x00 -+// 50928 웰 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x07,0x01,0x0a,0x02,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0xf4,0x04,0xfc,0x04,0x8c,0x00,0x86,0x00 -+// 50929 웱 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x03,0x00,0x0f,0x01,0x01,0x00,0x04,0x02,0x03,0x00,0x00,0x04,0x32,0x12,0x52,0x12,0x92,0x12,0x72,0x10,0x84,0x04,0x84,0x04,0x84,0x00 -+// 50930 웲 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x00,0x1f,0x02,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x74,0x00,0xa4,0xa4,0xa4,0x24,0x94,0x00 -+// 50931 웳 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x03,0x00,0x0f,0x01,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x04,0x36,0x12,0x12,0x52,0x92,0x92,0x72,0x10,0xa4,0xa4,0xb4,0x24,0xbc,0x00 -+// 50932 웴 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x13,0x02,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x10,0x88,0x88,0x98,0x14,0xe2,0x00 -+// 50933 웵 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x01,0x0a,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x74,0x10,0xec,0xa0,0xac,0x20,0x3e,0x00 -+// 50934 웶 ; -+,0x00,0x00,0x00,0x03,0x00,0x04,0x07,0x01,0x1a,0x02,0x03,0x00,0x01,0x04,0x05,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0xf4,0x04,0x04,0x08,0x24,0x20,0x0a,0x40 -+// 50935 웷 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x13,0x02,0x02,0x0f,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x74,0x10,0x80,0x7e,0x18,0x24,0x24,0x08 -+// 50936 웸 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x01,0x0a,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x14,0x10,0x00,0x84,0x84,0x84,0x8c,0x00 -+// 50937 웹 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x03,0x0a,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x14,0x14,0x74,0x14,0x0c,0x84,0x84,0x84,0xfc,0x00 -+// 50938 웺 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x03,0x0a,0x02,0x00,0x04,0x06,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0xf4,0x14,0x88,0x88,0x98,0x94,0xa2,0x00 -+// 50939 웻 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x01,0x03,0x09,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x32,0x92,0x12,0x92,0x12,0x12,0x72,0x02,0x30,0x20,0x50,0x8c,0x02,0x00 -+// 50940 웼 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x01,0x1f,0x00,0x00,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x74,0x10,0x08,0x08,0x9c,0x76,0x22,0x00 -+// 50941 웽 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x12,0x12,0x92,0x92,0x12,0x72,0x12,0x10,0x48,0x84,0x84,0x6c,0x00 -+// 50942 웾 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x01,0x03,0x01,0x01,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x04,0x32,0x92,0x52,0x92,0x12,0x92,0x12,0x10,0x04,0x20,0x20,0xc8,0x04,0x00 -+// 50943 웿 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x32,0x92,0x12,0x92,0x12,0x12,0x70,0x10,0x70,0x06,0x20,0x50,0x8c,0x00 -+// 50944 윀 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x03,0x01,0x09,0x01,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0x36,0x12,0x12,0x92,0x12,0x12,0x10,0x10,0xf4,0x04,0x24,0x04,0x04,0x00 -+// 50945 윁 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x00,0x0f,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x34,0x10,0x90,0x90,0x90,0x10,0x10,0x10,0x00,0x80,0x04,0x00,0x06,0x00 -+// 50946 윂 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x03,0x0a,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x14,0x14,0x34,0x14,0x04,0x10,0x98,0x90,0x16,0x00 -+// 50947 윃 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x01,0x0a,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x94,0x14,0x14,0x74,0x10,0x60,0xfc,0x70,0x88,0xd8,0x00 -+// 50948 위 ; -+,0x00,0x00,0x00,0x03,0x04,0x04,0x06,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x86,0xc2,0x22,0x22,0x22,0xc2,0x06,0xc2,0x82,0x82,0x82,0x82,0x02,0x00 -+// 50949 윅 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x24,0x24,0x64,0x84,0x64,0x84,0x80,0x04,0x04,0x04,0x04,0x04,0x00 -+// 50950 윆 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x24,0x24,0x24,0xc4,0x24,0x84,0x80,0x00,0x84,0x84,0x84,0x84,0x00 -+// 50951 윇 ; -+,0x00,0x00,0x01,0x04,0x04,0x02,0x01,0x00,0x0d,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x24,0x44,0x84,0xe4,0x04,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 50952 윈 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x06,0x01,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x24,0x24,0x64,0x84,0x64,0x84,0x04,0x04,0x00,0x00,0xde,0x00 -+// 50953 윉 ; -+,0x00,0x00,0x01,0x04,0x04,0x02,0x01,0x00,0x1f,0x01,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x84,0x44,0x24,0x44,0x84,0xe4,0x04,0x00,0x02,0x18,0x18,0xa4,0x42,0x00 -+// 50954 윊 ; -+,0x00,0x00,0x03,0x04,0x04,0x02,0x00,0x03,0x09,0x00,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x08,0x84,0x04,0x24,0x44,0x04,0xc4,0x04,0x00,0x00,0xfe,0x38,0x44,0x2c,0x00 -+// 50955 윋 ; -+,0x00,0x00,0x01,0x02,0x04,0x06,0x03,0x00,0x1f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x44,0x24,0x64,0x84,0x04,0x84,0x04,0x00,0x38,0x00,0x00,0x0e,0x00 -+// 50956 윌 ; -+,0x00,0x00,0x01,0x04,0x04,0x02,0x00,0x13,0x01,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x84,0x04,0x24,0x44,0x04,0xc4,0x04,0x00,0xfc,0x04,0x1c,0x00,0x8e,0x00 -+// 50957 윍 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x00,0x01,0x0c,0x00,0x06,0x00,0x07,0x04,0x07,0x00,0x00,0x8c,0xc4,0x24,0x24,0x64,0x84,0xe4,0x84,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 50958 윎 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x00,0x01,0x04,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x84,0xc6,0x22,0x22,0x62,0x06,0xc0,0x80,0x80,0xb6,0x92,0x90,0x00,0x94,0x00 -+// 50959 윏 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x00,0x01,0x04,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x84,0xc6,0x22,0x22,0x62,0x06,0xe0,0x80,0x80,0xa4,0xa4,0xa4,0x24,0x24,0x00 -+// 50960 윐 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x00,0x13,0x00,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x04,0xc4,0x84,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 50961 윑 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x0d,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x84,0xc4,0x04,0x00,0xec,0xa0,0xac,0x20,0x3e,0x00 -+// 50962 윒 ; -+,0x00,0x00,0x01,0x04,0x04,0x02,0x00,0x01,0x09,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x04,0xc4,0x04,0x00,0xa4,0x04,0xa4,0x20,0x8e,0x00 -+// 50963 윓 ; -+,0x00,0x00,0x01,0x04,0x04,0x06,0x01,0x00,0x0d,0x01,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x84,0x44,0x24,0x44,0x84,0xc4,0x04,0x00,0x80,0xfe,0x18,0x24,0x24,0x08 -+// 50964 윔 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x01,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x24,0x24,0x64,0x84,0x24,0x84,0x80,0x00,0x84,0x84,0x84,0x8c,0x00 -+// 50965 윕 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0xc4,0x24,0x24,0x64,0x04,0xe4,0x84,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 50966 윖 ; -+,0x00,0x00,0x01,0x04,0x04,0x02,0x01,0x00,0x0d,0x00,0x00,0x04,0x06,0x04,0x07,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x84,0xe4,0x04,0x00,0x88,0x08,0x88,0x16,0xa2,0x00 -+// 50967 윗 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x8c,0xc4,0x24,0x24,0x64,0x04,0x24,0x84,0x84,0x30,0x20,0x50,0x84,0x02,0x00 -+// 50968 윘 ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x0f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x84,0x44,0x84,0x00,0x08,0x88,0x88,0x54,0x22,0x00 -+// 50969 윙 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8c,0xc4,0x24,0x24,0x24,0x84,0x04,0x84,0x84,0x90,0x44,0x44,0x44,0x4c,0x00 -+// 50970 윚 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x84,0x24,0x24,0x64,0x84,0x64,0x84,0x80,0x00,0x20,0x20,0x48,0x86,0x00 -+// 50971 윛 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x8c,0xc4,0x24,0x24,0x64,0x04,0xe4,0x84,0x00,0x70,0x06,0x20,0x58,0x86,0x00 -+// 50972 윜 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0xc6,0x22,0x22,0x22,0x86,0x76,0x82,0x80,0xac,0x04,0x14,0x04,0x04,0x00 -+// 50973 윝 ; -+,0x00,0x00,0x00,0x02,0x00,0x02,0x01,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x24,0x24,0x24,0xc4,0x24,0x84,0x80,0x00,0x80,0x04,0x80,0x86,0x00 -+// 50974 윞 ; -+,0x00,0x00,0x01,0x04,0x04,0x06,0x01,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x44,0x24,0x44,0x04,0x64,0x04,0x00,0x1c,0x10,0x08,0x90,0x12,0x00 -+// 50975 윟 ; -+,0x00,0x00,0x01,0x04,0x04,0x02,0x00,0x00,0x0d,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x24,0x44,0x04,0xc4,0x04,0x00,0x00,0xf0,0x48,0x88,0xc8,0x00 -+// 50976 유 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xc0,0x30,0x10,0x10,0xe0,0x00,0xff,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 50977 육 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x02,0x10,0x10,0x18,0x08,0x08,0x08,0x08,0x00 -+// 50978 윢 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0x0f,0x10,0x10,0x78,0x08,0x08,0x08,0x08,0x00 -+// 50979 윣 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1a,0x02,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0xc0,0x10,0x10,0x10,0xe0,0x02,0x30,0x10,0x30,0x10,0x30,0x4c,0x04,0x00 -+// 50980 윤 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x01,0x01,0x01,0x04,0x04,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xa0,0x00,0xff,0x10,0x10,0x10,0x10,0x00,0x08,0x00 -+// 50981 윥 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x12,0x02,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x07,0x10,0x10,0xf0,0x10,0x30,0x4c,0x86,0x00 -+// 50982 윦 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x02,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x02,0x10,0x10,0x00,0xb4,0x10,0x48,0x48,0x30 -+// 50983 윧 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1e,0x02,0x02,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0x10,0x10,0x18,0x00,0x00,0x00,0x38,0x00 -+// 50984 율 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1b,0x02,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0x10,0x10,0xf0,0x10,0x30,0x00,0x00,0x00 -+// 50985 윩 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x1f,0x02,0x02,0x0f,0x00,0x0d,0x04,0x05,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0xff,0x10,0x10,0xa8,0x08,0x88,0x08,0x08,0x00 -+// 50986 윪 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x1f,0x02,0x02,0x05,0x01,0x0f,0x00,0x05,0x04,0x00,0x00,0xc0,0x10,0x10,0x10,0xc0,0xff,0x10,0x10,0x6c,0x24,0x24,0x20,0x2c,0x00 -+// 50987 윫 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x02,0x02,0x0d,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x7f,0x10,0x18,0x64,0x24,0x24,0x24,0x3c,0x00 -+// 50988 윬 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x02,0x02,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x60,0x10,0x10,0x30,0xc0,0x7f,0x10,0x30,0x90,0x10,0x28,0x24,0x46,0x00 -+// 50989 윭 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x12,0x02,0x0b,0x01,0x09,0x04,0x05,0x04,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x0f,0x10,0x10,0x5c,0x40,0x4c,0x40,0x7c,0x00 -+// 50990 윮 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x1b,0x02,0x02,0x0f,0x01,0x0b,0x00,0x04,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x7f,0x10,0x10,0x5c,0x08,0x48,0x28,0x1c,0x00 -+// 50991 윯 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x12,0x02,0x0f,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x07,0x10,0x30,0x00,0x50,0x38,0x44,0x44,0x38 -+// 50992 윰 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x12,0x02,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x06,0x10,0x10,0x38,0x18,0x10,0x10,0x30,0x00 -+// 50993 윱 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1e,0x02,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0x10,0x10,0x10,0x10,0x10,0x10,0xf0,0x00 -+// 50994 윲 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x01,0x00,0x02,0x03,0x08,0x0c,0x04,0x00,0x07,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xc0,0x7f,0x10,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 50995 윳 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x02,0x02,0x00,0x01,0x03,0x04,0x00,0x00,0x80,0xc0,0x10,0x10,0x10,0xe0,0x00,0x36,0x10,0xd0,0x80,0xc0,0x10,0x08,0x00 -+// 50996 윴 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x12,0x02,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0xe0,0x10,0x10,0x30,0xe0,0x07,0x10,0x10,0x10,0x10,0x38,0xac,0x44,0x00 -+// 50997 융 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x02,0x02,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xa0,0x00,0x7e,0x10,0xd0,0x30,0x10,0x10,0x20,0x00 -+// 50998 윶 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1a,0x02,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0x30,0x10,0xfc,0xc0,0xc0,0x10,0x0c,0x00 -+// 50999 윷 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x1e,0x02,0x02,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x3f,0x10,0x10,0x00,0xf8,0xc0,0xa0,0x08,0x00 -+// 51000 윸 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1a,0x02,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0x10,0x10,0xf8,0x08,0x48,0x08,0x08,0x00 -+// 51001 윹 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x02,0x02,0x06,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x3f,0x10,0x10,0x18,0x00,0x10,0x00,0x18,0x00 -+// 51002 윺 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x12,0x02,0x02,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x02,0x10,0x10,0x18,0x20,0x30,0x20,0x3c,0x00 -+// 51003 윻 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x10,0x02,0x03,0x00,0x04,0x01,0x01,0x01,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x07,0x10,0xf0,0x1c,0xc0,0x20,0x00,0x20,0x00 -+// 51004 으 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x10,0x10,0x10,0x30,0xe0,0x00,0x00,0x06,0x00,0x00,0x00 -+// 51005 윽 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 51006 윾 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0x78,0x04,0x0c,0x08,0x08,0x00 -+// 51007 윿 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0x06,0x00,0x30,0x10,0x30,0x2c,0x46,0x00 -+// 51008 은 ; -+,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x40,0x20,0x10,0x10,0x10,0xe0,0x00,0x06,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 51009 읁 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x08,0x08,0x08,0x0c,0x06,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0xbf,0x00,0xfc,0x10,0x30,0x68,0x84,0x00 -+// 51010 읂 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x00,0x00,0x3e,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x40,0x20,0x10,0x10,0x10,0xe0,0x00,0x02,0x20,0x00,0xb0,0x10,0x40,0x48,0x30 -+// 51011 읃 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00,0xbf,0x00,0x00,0x00,0x00,0x00,0x1c,0x00 -+// 51012 을 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x07,0x00,0x04,0x02,0x02,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0x20,0x00,0x3f,0x00,0xb0,0x10,0x30,0x00,0x08,0x00 -+// 51013 읅 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x0c,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x60,0x10,0x10,0x10,0xe0,0x00,0xbe,0x00,0xa8,0x88,0x88,0x08,0x08,0x00 -+// 51014 읆 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x05,0x04,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00,0xbf,0x00,0xac,0x24,0x24,0x24,0x2c,0x00 -+// 51015 읇 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00,0x00,0x08,0x44,0x2c,0x24,0x24,0x3c,0x00 -+// 51016 읈 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xbe,0x00,0x90,0x10,0x38,0x2c,0xc4,0x00 -+// 51017 읉 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x0d,0x01,0x09,0x04,0x05,0x04,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00,0xbe,0x00,0x4c,0x40,0x2c,0x00,0x3c,0x00 -+// 51018 읊 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00,0x3e,0x00,0x44,0x08,0x28,0x28,0x0e,0x00 -+// 51019 읋 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x09,0x01,0x09,0x04,0x05,0x04,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00,0x3f,0x00,0x00,0x50,0x10,0x40,0x48,0x38 -+// 51020 음 ; -+,0x00,0x00,0x01,0x02,0x00,0x02,0x03,0x00,0x3f,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x80,0xc0,0x10,0x10,0x30,0xe0,0x00,0x3e,0x00,0x30,0x10,0x10,0x10,0x70,0x00 -+// 51021 읍 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00,0xbf,0x00,0x10,0x10,0x10,0x10,0xf0,0x00 -+// 51022 읎 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x00,0x00,0x1f,0x01,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00,0x02,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 51023 읏 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x3f,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x00,0xff,0x00,0xc0,0xc0,0xa0,0x18,0x0c,0x00 -+// 51024 읐 ; -+,0x00,0x00,0x01,0x02,0x02,0x03,0x00,0x00,0x1e,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x40,0x60,0x10,0x10,0x10,0xe0,0x02,0x00,0x00,0x18,0x10,0xb8,0xe4,0x40,0x00 -+// 51025 응 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0x3f,0x00,0xc0,0x20,0x10,0x10,0x20,0x00 -+// 51026 읒 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x18,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x02,0x00,0x00,0xfc,0xc0,0xa0,0x18,0x0c,0x00 -+// 51027 읓 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0x3f,0x00,0xc0,0xf8,0xc0,0xb0,0x08,0x00 -+// 51028 읔 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1c,0x00,0x07,0x00,0x09,0x06,0x00,0x00,0x00,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00,0x02,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 51029 읕 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xbf,0x00,0x38,0x00,0x38,0x00,0x18,0x00 -+// 51030 읖 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x02,0x01,0x03,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00,0x3e,0x00,0x18,0x20,0x20,0x20,0xfc,0x00 -+// 51031 읗 ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x00,0x00,0x18,0x01,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x40,0x60,0x10,0x10,0x30,0xc0,0x06,0x00,0xc0,0x1c,0xc0,0x20,0x00,0x20,0x00 -+// 51032 의 ; -+,0x00,0x00,0x00,0x00,0x02,0x04,0x04,0x04,0x03,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x0c,0x06,0x86,0x46,0x26,0x26,0x66,0xc6,0x06,0xe6,0x06,0x06,0x06,0x06,0x00 -+// 51033 읙 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x86,0x44,0x24,0x24,0xc4,0x04,0xc4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 51034 읚 ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x86,0x46,0x26,0x26,0x46,0x06,0xe6,0x00,0x04,0xc4,0x04,0x04,0x04,0x00 -+// 51035 읛 ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x06,0x00,0x01,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xc4,0x04,0xc4,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 51036 읜 ; -+,0x00,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x44,0x24,0x44,0xc4,0x04,0x84,0x04,0x04,0x04,0x00,0x8e,0x00 -+// 51037 읝 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x00,0x01,0x0c,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x04,0x44,0x04,0x44,0xc4,0x04,0xc4,0x04,0x02,0x18,0x18,0xb4,0x42,0x00 -+// 51038 읞 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x07,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x0c,0x04,0x00,0x00,0xd6,0x18,0x04,0x24,0x18 -+// 51039 읟 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x02,0x00,0x01,0x0c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x44,0x24,0x24,0x44,0x04,0xe4,0x04,0x00,0x80,0x00,0x00,0x8e,0x00 -+// 51040 읠 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x06,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x44,0x44,0xc4,0x0c,0x84,0x04,0xcc,0x00,0x0c,0x00,0x86,0x00 -+// 51041 읡 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x02,0x00,0x0f,0x00,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0x44,0x04,0xc4,0x00,0x04,0x84,0x84,0x04,0x84,0x00 -+// 51042 읢 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x1f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x04,0x04,0x00,0xa4,0xa4,0xa4,0x24,0x90,0x00 -+// 51043 읣 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x02,0x00,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0x44,0x04,0xc4,0x00,0xa4,0xa4,0xa4,0x24,0x3c,0x00 -+// 51044 읤 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x1f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0xc4,0x04,0x84,0x00,0x88,0x88,0x98,0x14,0xc2,0x00 -+// 51045 읥 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x1f,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x24,0x04,0xc4,0x04,0x84,0x00,0xec,0xa0,0xac,0x20,0x3e,0x00 -+// 51046 읦 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x06,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x04,0x04,0x44,0x04,0x84,0x04,0xa4,0x84,0xa4,0x00,0x0a,0x00 -+// 51047 읧 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x04,0x04,0x00,0x80,0x7a,0x18,0x20,0xa4,0x08 -+// 51048 읨 ; -+,0x00,0x00,0x00,0x02,0x02,0x00,0x02,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x86,0x42,0x22,0x22,0x62,0x06,0x62,0x00,0x00,0xe6,0x84,0x84,0x8c,0x00 -+// 51049 읩 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0x44,0x04,0x84,0x00,0x04,0x84,0xfc,0x84,0xfc,0x00 -+// 51050 읪 ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x02,0x00,0x1f,0x00,0x00,0x04,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x04,0x04,0xc4,0x04,0xc4,0x00,0x88,0x48,0xc8,0x56,0xa2,0x00 -+// 51051 읫 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x03,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x84,0x44,0x24,0x24,0x44,0x04,0x64,0x04,0x30,0x20,0x70,0xc4,0x02,0x00 -+// 51052 읬 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x84,0x44,0x24,0x04,0xc4,0x04,0x04,0x00,0x88,0x88,0x9c,0x52,0x22,0x00 -+// 51053 읭 ; -+,0x00,0x00,0x00,0x02,0x00,0x04,0x02,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x44,0x24,0x24,0x44,0x04,0x34,0x04,0x10,0x4c,0x44,0x44,0x6c,0x00 -+// 51054 읮 ; -+,0x00,0x00,0x00,0x02,0x04,0x00,0x03,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x86,0x42,0x22,0x22,0xc2,0x04,0xc0,0x00,0x02,0x30,0x30,0x48,0x86,0x00 -+// 51055 읯 ; -+,0x00,0x00,0x01,0x02,0x04,0x04,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x86,0x44,0x24,0x24,0xc4,0x04,0xc4,0x00,0x70,0x0e,0x20,0x58,0x86,0x00 -+// 51056 읰 ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x0f,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x86,0x42,0x22,0x22,0xc2,0x04,0xc0,0x00,0xec,0x04,0x64,0x04,0x04,0x00 -+// 51057 읱 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x02,0x00,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x44,0x24,0x24,0x44,0x04,0xc4,0x04,0x00,0x80,0x00,0x00,0x86,0x00 -+// 51058 읲 ; -+,0x00,0x00,0x01,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x0c,0x84,0x00,0xfc,0x10,0x90,0x90,0x9e,0x00 -+// 51059 읳 ; -+,0x00,0x00,0x01,0x06,0x04,0x04,0x06,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x44,0x44,0xc4,0x0c,0xc4,0x00,0x00,0xf0,0x50,0x88,0xd8,0x00 -+// 51060 이 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x84,0x44,0x44,0x44,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 51061 익 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x0c,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0xc4,0x44,0x44,0x84,0x04,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 51062 읶 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x08,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 51063 읷 ; -+,0x00,0x00,0x02,0x06,0x08,0x10,0x10,0x09,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x84,0x84,0x04,0x18,0x88,0x98,0x94,0xa4,0xc2,0x00 -+// 51064 인 ; -+,0x00,0x00,0x00,0x02,0x0d,0x08,0x10,0x18,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x84,0x84,0x04,0x04,0x04,0x00,0x00,0x06,0x00 -+// 51065 읹 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x09,0x02,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x84,0x84,0x04,0x00,0xf8,0x10,0x18,0x24,0x42,0x00 -+// 51066 읺 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x09,0x02,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0x04,0x84,0x84,0x84,0x84,0x04,0x38,0x00,0x10,0x20,0x44,0x2c,0x00 -+// 51067 읻 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x00,0x08,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x84,0x00,0x04,0x00,0x00,0x00,0x04,0x00 -+// 51068 일 ; -+,0x00,0x00,0x00,0x03,0x08,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x84,0x44,0x44,0x84,0x04,0x0c,0x00,0x08,0x18,0x00,0x0c,0x00 -+// 51069 읽 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x04,0x84,0x84,0x84,0x04,0x84,0x00 -+// 51070 읾 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x0d,0x00,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x44,0x44,0x44,0x84,0x04,0x00,0xa4,0xa4,0xa4,0x24,0xa4,0x00 -+// 51071 읿 ; -+,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x0d,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x44,0x44,0x44,0x84,0x04,0x0c,0x24,0x24,0x24,0x24,0x24,0x00 -+// 51072 잀 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x0d,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0xc4,0x84,0x04,0x90,0x88,0x88,0x18,0x24,0x42,0x00 -+// 51073 잁 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x00,0x08,0x02,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x00,0xec,0xa0,0xac,0x20,0x3e,0x00 -+// 51074 잂 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x0d,0x00,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0xc4,0x84,0x04,0x04,0xa0,0x0c,0x24,0x28,0x6e,0x00 -+// 51075 잃 ; -+,0x00,0x00,0x02,0x07,0x10,0x10,0x10,0x09,0x00,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x84,0x84,0x84,0x84,0x04,0x38,0x00,0x18,0x2c,0x04,0x24,0x10 -+// 51076 임 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x00,0x08,0x07,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x44,0x44,0xc4,0x04,0x04,0x04,0x04,0x04,0x04,0x8c,0x00 -+// 51077 입 ; -+,0x00,0x00,0x00,0x07,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x44,0x44,0x44,0x84,0x04,0x0c,0x04,0xfc,0x04,0x04,0xfc,0x00 -+// 51078 잆 ; -+,0x00,0x00,0x02,0x07,0x10,0x10,0x10,0x09,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x84,0x84,0x84,0x84,0x04,0x18,0x88,0x88,0x98,0x94,0xa2,0x00 -+// 51079 잇 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0xc4,0x84,0x04,0x60,0x20,0x60,0xd0,0x8c,0x06,0x00 -+// 51080 있 ; -+,0x00,0x00,0x00,0x02,0x08,0x10,0x10,0x08,0x07,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x0c,0x04,0x84,0x84,0x84,0x84,0x00,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 51081 잉 ; -+,0x00,0x00,0x02,0x07,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x84,0x44,0x44,0x44,0x84,0x04,0x04,0x30,0x8c,0x84,0x84,0xc8,0x00 -+// 51082 잊 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x00,0x08,0x02,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x00,0xfc,0x60,0x50,0x8c,0x06,0x00 -+// 51083 잋 ; -+,0x00,0x00,0x02,0x07,0x08,0x00,0x08,0x0c,0x02,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x04,0x44,0x44,0x44,0x84,0x04,0xe0,0x00,0xfe,0x20,0x58,0x86,0x02 -+// 51084 잌 ; -+,0x00,0x00,0x00,0x03,0x08,0x08,0x08,0x0c,0x03,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x44,0x44,0xc4,0x04,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 51085 잍 ; -+,0x00,0x00,0x02,0x03,0x08,0x00,0x00,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x44,0x84,0x04,0x00,0x0c,0x00,0x0c,0x00,0x06,0x00 -+// 51086 잎 ; -+,0x00,0x00,0x02,0x06,0x08,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x44,0x84,0x84,0x04,0x00,0x0c,0x10,0x10,0x90,0x16,0x00 -+// 51087 잏 ; -+,0x00,0x00,0x02,0x07,0x08,0x10,0x10,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x84,0x84,0x04,0x70,0x00,0x20,0x90,0x88,0x90,0x00 -+// 51088 자 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x08,0x08,0x0f,0xc8,0x48,0x08,0x08,0x08,0x08,0x00 -+// 51089 작 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x08,0x88,0x48,0x08,0x18,0x08,0x08,0x08,0x08,0x00 -+// 51090 잒 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0x88,0x48,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 51091 잓 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0b,0x88,0x48,0x00,0x10,0x10,0x10,0x2c,0x46,0x00 -+// 51092 잔 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x03,0x04,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x08,0x8f,0x48,0x68,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 51093 잕 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x18,0x08,0x08,0x0d,0x04,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0x88,0x48,0x00,0xbc,0x30,0x30,0x48,0x84,0x00 -+// 51094 잖 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0b,0xc8,0x48,0x70,0x00,0xb0,0x48,0xc8,0x48,0x00 -+// 51095 잗 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x0b,0x88,0x48,0x00,0x08,0x00,0x00,0x00,0x0c,0x00 -+// 51096 잘 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x10,0x18,0x88,0x88,0x08,0x0a,0x88,0x48,0x00,0xf0,0x10,0x10,0x00,0x00,0x00 -+// 51097 잙 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x0d,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 51098 잚 ; -+,0x00,0x00,0x00,0x11,0x00,0x01,0x03,0x04,0x10,0x00,0x0d,0x01,0x09,0x08,0x09,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 51099 잛 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x00,0x00,0x02,0x00,0x1a,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x10,0xc8,0x48,0x48,0x48,0x78,0x00 -+// 51100 잜 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x10,0x00,0x01,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x00,0x10,0x10,0x10,0x28,0x44,0x00 -+// 51101 잝 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x0d,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x00,0x40,0x40,0x48,0x40,0x3c,0x00 -+// 51102 잞 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x00,0x00,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x00,0x48,0x18,0x48,0x10,0xfc,0x00 -+// 51103 잟 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x30,0x00,0x10,0x28,0x44,0x4c,0x10 -+// 51104 잠 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x20,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x09,0x88,0x48,0x08,0x08,0x08,0x08,0x08,0x18,0x00 -+// 51105 잡 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x00,0x00,0x02,0x03,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0b,0xc8,0x48,0x00,0x18,0x18,0x08,0x08,0xf8,0x00 -+// 51106 잢 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x01,0x08,0x0d,0x0c,0x08,0x0d,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x10,0x98,0x90,0x98,0xa4,0xc4,0x00 -+// 51107 잣 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0b,0x88,0x48,0x88,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 51108 잤 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x40,0x10,0x10,0x10,0x38,0xec,0x44,0x00 -+// 51109 장 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x08,0x88,0x48,0x08,0x60,0x90,0x08,0x08,0x90,0x00 -+// 51110 잦 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0b,0x88,0x48,0x00,0xf8,0x40,0xa0,0x18,0x0c,0x00 -+// 51111 잧 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0x48,0x08,0xc0,0x00,0xe0,0xc0,0xb0,0x0c,0x00 -+// 51112 잨 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0b,0x88,0x48,0x00,0x98,0x08,0x18,0x08,0x00,0x00 -+// 51113 잩 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0x00,0x38,0x00,0x18,0x00,0x0c,0x00 -+// 51114 잪 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0x88,0x48,0x00,0xf8,0x10,0x10,0x00,0x7c,0x00 -+// 51115 잫 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x06,0x00,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0xc8,0x48,0xe0,0x00,0x40,0x60,0x10,0x10,0x40 -+// 51116 재 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x10,0x10,0x90,0x10,0x10,0x1c,0x90,0xd0,0x10,0x10,0x10,0x00,0x00 -+// 51117 잭 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x92,0x12,0x1e,0x92,0xd0,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 51118 잮 ; -+,0x00,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x92,0x92,0x1e,0x92,0x52,0x00,0xfe,0xc4,0xc4,0x84,0x84,0x00 -+// 51119 잯 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x02,0x00,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x94,0x14,0x1c,0x94,0xc4,0x00,0x88,0x88,0x9c,0x96,0xa2,0x00 -+// 51120 잰 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x03,0x04,0x08,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x24,0x34,0xb4,0x24,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 51121 잱 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x10,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0x1c,0x84,0xc4,0x00,0xfe,0x18,0x18,0x24,0x42,0x00 -+// 51122 잲 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x38,0x06,0x10,0x28,0x44,0x2c,0x00 -+// 51123 잳 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x03,0x04,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x1c,0x14,0x94,0x00,0x04,0x00,0x00,0x00,0x86,0x00 -+// 51124 잴 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x04,0x08,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x00,0xfc,0x04,0x0c,0x00,0x82,0x00 -+// 51125 잵 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x04,0x32,0x12,0x92,0x12,0x1e,0xd2,0x50,0x00,0x84,0x84,0x84,0x04,0x84,0x00 -+// 51126 잶 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x34,0x14,0x94,0x14,0x1c,0x94,0x50,0x00,0xb6,0xa4,0xa4,0x04,0x94,0x00 -+// 51127 잷 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x36,0x12,0x92,0x12,0x1e,0xd2,0x50,0x04,0xa4,0xb4,0xa4,0x24,0xbc,0x00 -+// 51128 잸 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x00,0x88,0x88,0x18,0x16,0x22,0x00 -+// 51129 잹 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x04,0x00,0x0d,0x04,0x05,0x00,0x00,0x04,0x36,0x12,0x92,0x12,0x1e,0x90,0x50,0x00,0xac,0x20,0xac,0x20,0x3e,0x00 -+// 51130 잺 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x00,0xa8,0x0c,0x20,0x28,0x0e,0x00 -+// 51131 잻 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x0c,0x64,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x38,0x00,0x18,0x28,0x24,0x24,0x10 -+// 51132 잼 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x12,0x92,0x92,0x1e,0x92,0x50,0x00,0x84,0x84,0x84,0x84,0x8c,0x00 -+// 51133 잽 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x04,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0x1c,0x84,0x44,0x08,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 51134 잾 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x98,0x88,0x88,0x9c,0x96,0xa2,0x00 -+// 51135 잿 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x36,0x12,0x92,0x92,0x1e,0x92,0x52,0x60,0x30,0x20,0x48,0x84,0x02,0x00 -+// 51136 쟀 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x0c,0x64,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x08,0x08,0x08,0x9c,0x52,0x22,0x00 -+// 51137 쟁 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x12,0x92,0x92,0x16,0x16,0x92,0x50,0x10,0x48,0x84,0x84,0xcc,0x10 -+// 51138 쟂 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x32,0x12,0x92,0x92,0x1e,0x92,0x52,0x00,0xfc,0x20,0x50,0x8c,0x02,0x00 -+// 51139 쟃 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x04,0x36,0x12,0x92,0x12,0x1e,0x90,0x40,0xe0,0x00,0xfc,0x60,0xd8,0x06,0x00 -+// 51140 쟄 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x01,0x02,0x04,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x92,0x12,0x1e,0x92,0x50,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 51141 쟅 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x04,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x36,0x12,0x92,0x12,0x1e,0x92,0x50,0x00,0x9c,0x00,0xbc,0x00,0x9e,0x00 -+// 51142 쟆 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0xa4,0x24,0x3c,0x24,0xa4,0x00,0x0c,0x10,0x88,0x80,0x96,0x00 -+// 51143 쟇 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0xa4,0x24,0x3c,0xa4,0x04,0x70,0x06,0x20,0x50,0x88,0x98,0x20 -+// 51144 쟈 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x0f,0x08,0x08,0xc8,0x4f,0x08,0x08,0x08,0x08,0x00 -+// 51145 쟉 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x0e,0x08,0xc8,0x48,0x00,0xb8,0x18,0x18,0x18,0x10,0x00 -+// 51146 쟊 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x0a,0x08,0x88,0x48,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51147 쟋 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x08,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0x88,0x4f,0x00,0x10,0x10,0x10,0x2c,0x46,0x00 -+// 51148 쟌 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x02,0x04,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x0e,0x88,0x48,0x0b,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 51149 쟍 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x18,0x08,0x08,0x09,0x04,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0x88,0x4f,0x00,0xac,0x30,0x30,0x48,0x84,0x00 -+// 51150 쟎 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0xc8,0x4e,0x70,0x00,0xb0,0x48,0xc8,0x48,0x20 -+// 51151 쟏 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0x88,0x4f,0x00,0x18,0x00,0x00,0x00,0x0c,0x00 -+// 51152 쟐 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x00,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x0f,0x08,0xc8,0x4e,0x00,0x18,0x00,0x30,0x00,0x0c,0x00 -+// 51153 쟑 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x00,0x0d,0x01,0x09,0x08,0x0f,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0xc8,0x4e,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 51154 쟒 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x08,0x10,0x00,0x09,0x01,0x0b,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x88,0x0e,0x88,0x48,0x08,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 51155 쟓 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x02,0x02,0x1a,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0xc8,0x4e,0x10,0xc8,0x58,0x48,0x48,0x78,0x00 -+// 51156 쟔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x10,0x00,0x01,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0xc8,0x08,0x00,0x10,0x10,0x10,0x28,0x44,0x00 -+// 51157 쟕 ; -+,0x00,0x00,0x00,0x11,0x01,0x01,0x03,0x04,0x10,0x00,0x09,0x01,0x0a,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0xc8,0x4e,0x08,0x40,0x40,0x40,0x40,0x7c,0x00 -+// 51158 쟖 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0xc8,0x4f,0x00,0x78,0x18,0x48,0x10,0xfc,0x00 -+// 51159 쟗 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0xc8,0x08,0x30,0x04,0x10,0x28,0x44,0x6c,0x10 -+// 51160 쟘 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0x88,0x4e,0x00,0x18,0x18,0x10,0x10,0x10,0x00 -+// 51161 쟙 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x00,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0xc8,0x48,0x10,0x18,0x18,0x18,0x08,0xf8,0x00 -+// 51162 쟚 ; -+,0x00,0x00,0x00,0x11,0x00,0x01,0x03,0x04,0x10,0x01,0x08,0x05,0x00,0x04,0x04,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0xc8,0x48,0x10,0x98,0x90,0x98,0xa4,0x42,0x00 -+// 51163 쟛 ; -+,0x00,0x00,0x00,0x09,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x18,0x88,0x88,0x0e,0x08,0x88,0x4e,0x08,0x40,0x40,0xa0,0x18,0x0c,0x00 -+// 51164 쟜 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0xc8,0x08,0x10,0x10,0x10,0x38,0xe4,0x44,0x00 -+// 51165 쟝 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x0e,0x08,0x88,0x4f,0x48,0x60,0x10,0x08,0x08,0xb0,0x00 -+// 51166 쟞 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x00,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0x88,0x48,0x00,0xf8,0x40,0xa0,0x18,0x0c,0x00 -+// 51167 쟟 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x88,0xc8,0x08,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 51168 쟠 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x03,0x04,0x10,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0x88,0x48,0x00,0x98,0x08,0x98,0x08,0x00,0x00 -+// 51169 쟡 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x88,0x88,0x0f,0x08,0x88,0x4f,0x00,0x38,0x00,0x18,0x00,0x0c,0x00 -+// 51170 쟢 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x10,0x18,0x88,0x88,0x0f,0x08,0x88,0x48,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 51171 쟣 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x03,0x04,0x10,0x00,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x30,0x18,0x88,0x88,0x0f,0x08,0xc8,0x4e,0xe0,0x00,0xc0,0x60,0x10,0x30,0x40 -+// 51172 쟤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x12,0x92,0x1e,0x12,0x12,0x92,0xde,0x12,0x10,0x10,0x00,0x00 -+// 51173 쟥 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x02,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x9e,0x92,0x12,0x96,0x52,0x00,0xee,0x06,0x06,0x04,0x04,0x00 -+// 51174 쟦 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x12,0x9e,0x92,0x12,0x9e,0x52,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 51175 쟧 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x02,0x00,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x9c,0x14,0x14,0x94,0x40,0x18,0x88,0x88,0x9c,0x92,0xa2,0x00 -+// 51176 쟨 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x03,0x04,0x08,0x10,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0xb4,0x34,0x24,0xa4,0xfc,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 51177 쟩 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x02,0x04,0x10,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x0c,0x24,0x14,0x9c,0x14,0x14,0x94,0x40,0x00,0x5e,0x08,0x18,0xa4,0x42,0x00 -+// 51178 쟪 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x34,0xbc,0x24,0x34,0xb4,0x04,0x38,0x06,0x10,0x24,0x44,0x3c,0x00 -+// 51179 쟫 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x04,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x26,0x12,0x9e,0x92,0x12,0x9c,0xd0,0x00,0x04,0x00,0x00,0x00,0x8e,0x00 -+// 51180 쟬 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x03,0x04,0x08,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0xb4,0x24,0x00,0x84,0x04,0x0c,0x00,0x82,0x00 -+// 51181 쟭 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x26,0x12,0x9e,0x12,0x16,0xd4,0x50,0x00,0x84,0x84,0x84,0x04,0x84,0x00 -+// 51182 쟮 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x26,0x12,0x9e,0x12,0x16,0xd4,0x50,0x00,0xb6,0xa4,0xa4,0x24,0x94,0x00 -+// 51183 쟯 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x02,0x08,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x22,0x12,0x9e,0x92,0x12,0xde,0x52,0x04,0xa4,0xb4,0x24,0x24,0xbc,0x00 -+// 51184 쟰 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x01,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x64,0x24,0xbc,0x24,0x24,0xb4,0x24,0x98,0x88,0x88,0x10,0x24,0x02,0x00 -+// 51185 쟱 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x06,0x08,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x9c,0x14,0x14,0x94,0x54,0x00,0xac,0xa0,0xac,0x20,0x3e,0x00 -+// 51186 쟲 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xbc,0x24,0x24,0xb4,0x24,0x00,0xa8,0x0c,0x28,0x28,0x7e,0x00 -+// 51187 쟳 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x04,0x08,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xbc,0x24,0x24,0xbc,0x24,0x28,0x00,0x58,0x28,0x04,0x24,0x18 -+// 51188 쟴 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x01,0x02,0x04,0x10,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x9e,0x12,0x16,0x94,0x50,0x00,0xcc,0x84,0x84,0x84,0x8c,0x00 -+// 51189 쟵 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x9e,0x12,0x16,0xd4,0x50,0x0c,0x84,0xfc,0x84,0x84,0xfc,0x00 -+// 51190 쟶 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x0c,0x64,0x24,0x3c,0x24,0x24,0xb4,0x24,0x98,0x88,0x88,0x9c,0x86,0xa2,0x00 -+// 51191 쟷 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x32,0x12,0x9e,0x92,0x12,0x96,0x52,0x22,0x30,0x20,0x48,0x84,0x02,0x00 -+// 51192 쟸 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x0c,0x64,0x24,0xbc,0x24,0x24,0xb4,0x24,0x08,0x88,0x08,0x94,0x62,0x42,0x00 -+// 51193 쟹 ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x9e,0x92,0x12,0x9e,0x52,0x12,0x10,0x44,0x04,0x04,0x4c,0x00 -+// 51194 쟺 ; -+,0x00,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x04,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x32,0x12,0x9e,0x92,0x16,0x96,0x50,0x00,0xfc,0x20,0x58,0x84,0x02,0x00 -+// 51195 쟻 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x04,0x08,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x0c,0x24,0x34,0x9c,0x14,0x14,0x9c,0x44,0x60,0x00,0xfc,0x60,0xd0,0x04,0x00 -+// 51196 쟼 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x01,0x02,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x36,0x12,0x9e,0x12,0x16,0x94,0x50,0x00,0xe4,0x04,0xf4,0x04,0x04,0x00 -+// 51197 쟽 ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x03,0x02,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x9c,0x14,0x14,0x9c,0x54,0x00,0x3c,0x00,0x1c,0x00,0xfe,0x00 -+// 51198 쟾 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x03,0x05,0x08,0x10,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x34,0xbc,0x24,0x34,0xb4,0xa4,0x00,0xfc,0x10,0x88,0x90,0x1e,0x00 -+// 51199 쟿 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x03,0x04,0x08,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x9c,0x14,0x14,0x9c,0x40,0x70,0x00,0x20,0x50,0x88,0x88,0x20 -+// 51200 저 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x44,0xc4,0x84,0xb4,0x44,0x64,0x24,0x04,0x04,0x04,0x04,0x00 -+// 51201 적 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x01,0x02,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x84,0x84,0x44,0x24,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 51202 젂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xbc,0x84,0x44,0x24,0x04,0xbc,0x84,0x84,0x84,0x84,0x04 -+// 51203 젃 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x3c,0x04,0x44,0x64,0x00,0x88,0x88,0x98,0x96,0xa2,0x00 -+// 51204 전 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x0c,0x84,0x44,0x64,0x04,0x04,0x00,0x00,0x8e,0x00 -+// 51205 젅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x04,0x08,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x84,0x3c,0x84,0x44,0x24,0x00,0x5c,0x08,0x18,0x24,0x42,0x00 -+// 51206 젆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x08,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0xc4,0x84,0x3c,0x84,0x44,0x04,0x38,0x00,0x18,0x24,0xc4,0x2c,0x00 -+// 51207 젇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x00,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0xc4,0xbc,0x84,0x44,0x24,0x04,0x0c,0x00,0x00,0x00,0x0e,0x00 -+// 51208 절 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x01,0x02,0x00,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x04,0xc4,0x44,0x04,0x04,0x04,0x0c,0x00,0x86,0x00 -+// 51209 젉 ; -+,0x00,0x00,0x00,0x04,0x00,0x01,0x02,0x04,0x08,0x00,0x06,0x00,0x06,0x04,0x07,0x02,0x00,0x0c,0x04,0xc4,0x84,0xbc,0x84,0x44,0x00,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 51210 젊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x00,0x08,0x00,0x06,0x00,0x06,0x00,0x03,0x02,0x00,0x04,0x06,0xc2,0x82,0xbe,0x82,0x40,0x20,0x00,0xb6,0x84,0x84,0x04,0x94,0x00 -+// 51211 젋 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x00,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x06,0xc2,0x42,0xbe,0x82,0x42,0x20,0x00,0xa4,0xa4,0xa4,0x24,0xbc,0x00 -+// 51212 젌 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x84,0x3c,0x84,0x44,0x00,0x00,0x88,0x88,0x18,0x14,0x82,0x00 -+// 51213 젍 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x04,0x08,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x84,0xbc,0x84,0x44,0x20,0x00,0xac,0xa0,0xa4,0x20,0xbe,0x00 -+// 51214 젎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x3c,0x84,0x44,0x04,0x00,0xa4,0x84,0xa4,0x00,0x7e,0x00 -+// 51215 젏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x08,0x00,0x0d,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x84,0x3c,0x84,0x44,0x00,0x18,0x82,0x08,0xa4,0x22,0x24,0x08 -+// 51216 점 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0xc4,0x84,0x84,0x44,0x24,0x00,0x8c,0x84,0x84,0x84,0x8c,0x00 -+// 51217 접 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x00,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0xbc,0x84,0x44,0x20,0x00,0x84,0x84,0x84,0x84,0xf4,0x00 -+// 51218 젒 ; -+,0x00,0x00,0x00,0x0e,0x00,0x01,0x02,0x04,0x00,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x0c,0x04,0xc4,0x84,0x3c,0x84,0x44,0x00,0x88,0x48,0x88,0x1c,0x92,0xa2,0x00 -+// 51219 젓 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0xc4,0xc4,0xbc,0x84,0x44,0x24,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 51220 젔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x08,0x00,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xc4,0x84,0x3c,0x84,0x44,0x04,0x18,0x88,0x88,0xdc,0x72,0x22,0x00 -+// 51221 정 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x44,0x84,0x94,0x44,0x24,0x14,0x38,0x44,0x00,0x44,0x6c,0x00 -+// 51222 젖 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0xc4,0x44,0xbc,0x84,0x44,0x24,0x00,0xfe,0x20,0x50,0x8c,0x02,0x00 -+// 51223 젗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0xc4,0x84,0xbc,0x84,0x44,0x00,0x60,0x00,0xe0,0x60,0xc8,0x06,0x00 -+// 51224 젘 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x44,0xbc,0x84,0x44,0x24,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 51225 젙 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0xbc,0x84,0x44,0x20,0x00,0x8c,0x00,0x8c,0x00,0x9e,0x00 -+// 51226 젚 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x3c,0x84,0x44,0x24,0x00,0x1c,0x10,0x18,0x90,0x9e,0x00 -+// 51227 젛 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x34,0x84,0x44,0x04,0x60,0x00,0x20,0x90,0x88,0xd0,0x00 -+// 51228 제 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x12,0x12,0x92,0x12,0x32,0x12,0x92,0x92,0x12,0x12,0x12,0x02,0x00 -+// 51229 젝 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x04,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x22,0x12,0x92,0x92,0xf2,0x12,0x92,0x50,0x2c,0x04,0x04,0x04,0x04,0x00 -+// 51230 젞 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x10,0x90,0x10,0x70,0x10,0x90,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 51231 젟 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x03,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0xf4,0x14,0x94,0x90,0x88,0x88,0x98,0x84,0xa2,0x00 -+// 51232 젠 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x12,0x12,0x12,0x12,0x92,0x10,0x10,0x00,0x00,0xee,0x00 -+// 51233 젡 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x03,0x04,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0xf4,0x14,0x94,0x80,0xd6,0x08,0x18,0x24,0x42,0x00 -+// 51234 젢 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x34,0x14,0x34,0x34,0x04,0x84,0x38,0x02,0x10,0x28,0x44,0x28,0x00 -+// 51235 젣 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x94,0x94,0xb4,0x14,0x94,0x90,0x04,0x00,0x00,0x00,0x8e,0x00 -+// 51236 젤 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0xe4,0x24,0xa4,0x00,0xc4,0x04,0x0c,0x00,0x8e,0x00 -+// 51237 젥 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x32,0x12,0x92,0x12,0x72,0x92,0x92,0x00,0x84,0x04,0x84,0x04,0x84,0x00 -+// 51238 젦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x32,0x12,0x92,0x92,0x72,0x92,0xd2,0x00,0xf6,0x12,0x92,0x10,0x94,0x00 -+// 51239 젧 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x32,0x12,0x92,0x12,0x72,0x92,0x92,0x04,0xa4,0xb4,0xa4,0x24,0xbc,0x00 -+// 51240 젨 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x04,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0xf4,0x14,0x94,0x10,0x88,0x88,0x98,0x14,0x22,0x00 -+// 51241 젩 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x00,0x00,0x07,0x00,0x0d,0x04,0x05,0x00,0x00,0x04,0x36,0x12,0x92,0x12,0x72,0x92,0x92,0x00,0xac,0xa0,0xac,0x20,0xbe,0x00 -+// 51242 젪 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x05,0x08,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0x34,0x14,0x94,0x00,0xa8,0x04,0x24,0x20,0x7e,0x00 -+// 51243 젫 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0x34,0x94,0x14,0xf4,0x14,0x84,0x38,0x02,0x18,0x24,0x24,0x24,0x00 -+// 51244 젬 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x03,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x94,0x14,0xf4,0x14,0x94,0x00,0x84,0x84,0x84,0x84,0x8c,0x00 -+// 51245 젭 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x03,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x94,0x14,0x74,0x14,0x94,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 51246 젮 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x10,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0x94,0x94,0x14,0x34,0x14,0x94,0x98,0x88,0x88,0x9c,0x96,0xa2,0x00 -+// 51247 젯 ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x01,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0xf4,0x14,0x94,0x64,0x20,0x20,0x58,0x84,0x02,0x00 -+// 51248 젰 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0xf4,0x14,0x94,0x18,0x88,0x08,0x94,0x62,0x00,0x00 -+// 51249 젱 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x12,0x92,0x92,0x72,0x12,0x92,0x12,0x10,0x44,0x84,0x84,0x4c,0x00 -+// 51250 젲 ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x01,0x03,0x04,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x74,0x14,0x94,0x00,0x64,0x60,0xd0,0x0c,0x02,0x00 -+// 51251 젳 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x24,0x14,0x94,0x14,0x74,0x14,0x94,0xf0,0x00,0xfc,0x60,0x98,0x06,0x00 -+// 51252 젴 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x01,0x03,0x04,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x92,0x12,0x72,0x10,0x90,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 51253 젵 ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x01,0x03,0x04,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x74,0x14,0x94,0x00,0x0c,0x00,0x1c,0x00,0xfe,0x00 -+// 51254 젶 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x34,0x94,0x14,0xb4,0x14,0x84,0x80,0x0c,0x10,0x10,0x90,0xf6,0x00 -+// 51255 젷 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x74,0x14,0x94,0x70,0x02,0x20,0x00,0x88,0xd0,0x00 -+// 51256 져 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x44,0x44,0x84,0x04,0x04,0x14,0x44,0x04,0x04,0x04,0x04,0x00 -+// 51257 젹 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x7c,0x84,0x84,0x44,0x40,0x00,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 51258 젺 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x04,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xc2,0x7e,0x82,0x82,0x7c,0x40,0x00,0xd4,0x44,0x44,0x44,0x04,0x00 -+// 51259 젻 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x00,0x08,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0xbc,0x44,0x00,0x88,0x88,0x94,0x82,0x82,0x00 -+// 51260 젼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0xbc,0x04,0x04,0xbc,0x44,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 51261 젽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0xbc,0x44,0x00,0x42,0x08,0x18,0x24,0x42,0x00 -+// 51262 젾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x04,0xc4,0x84,0x04,0x3c,0x84,0x40,0x18,0x02,0x18,0x24,0x04,0x3c,0x00 -+// 51263 젿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x44,0x44,0x84,0x04,0xbc,0x44,0x00,0x04,0x80,0x00,0x00,0x86,0x00 -+// 51264 졀 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x04,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0xf4,0x84,0x04,0x84,0x44,0x00,0xc4,0x04,0x0c,0x00,0x82,0x00 -+// 51265 졁 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x94,0x44,0x40,0x00,0x84,0x84,0x84,0x04,0x84,0x00 -+// 51266 졂 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x84,0x44,0x40,0x00,0xb4,0x84,0x84,0x04,0x90,0x00 -+// 51267 졃 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x06,0xc6,0x46,0x82,0x86,0x42,0x20,0x04,0xa4,0xb4,0x24,0x24,0x24,0x00 -+// 51268 졄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x00,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x04,0x04,0x44,0x40,0x00,0x88,0x88,0x18,0x24,0x02,0x00 -+// 51269 졅 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0xc4,0x84,0x04,0x84,0x40,0x00,0xa0,0xa0,0x20,0x20,0x0e,0x00 -+// 51270 졆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x00,0x08,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0xa4,0x04,0x04,0x84,0x44,0x00,0xa4,0x04,0x24,0x08,0x4a,0x00 -+// 51271 졇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x00,0x08,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x04,0x84,0x44,0x18,0x82,0x88,0x24,0x22,0x3c,0x00 -+// 51272 졈 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x01,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0xbc,0x44,0x00,0x0c,0x04,0x04,0x04,0x88,0x00 -+// 51273 졉 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x9c,0x44,0x40,0x0c,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 51274 졊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xc4,0x84,0x04,0x0c,0x84,0x44,0x98,0x08,0x88,0x14,0x82,0x62,0x00 -+// 51275 졋 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0xe4,0x44,0x24,0x20,0x20,0x58,0x84,0x02,0x00 -+// 51276 졌 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xc4,0xbc,0x04,0x04,0xbc,0x44,0x08,0x0c,0x08,0x8c,0x52,0x02,0x00 -+// 51277 졍 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0xbc,0x44,0x04,0x30,0x88,0x84,0x84,0x58,0x00 -+// 51278 졎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x08,0x00,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0xbc,0x44,0x00,0x6c,0x20,0x50,0x8c,0x02,0x00 -+// 51279 졏 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x0c,0x04,0xc4,0x84,0x84,0x1c,0xc4,0x40,0x60,0x00,0x20,0x60,0x8c,0x02,0x00 -+// 51280 졐 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x04,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x7c,0x84,0x04,0xbc,0x44,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 51281 졑 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x84,0x44,0x40,0x00,0x9c,0x00,0x8c,0x00,0xfe,0x00 -+// 51282 졒 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xc4,0xfc,0x84,0x04,0xbc,0x44,0x00,0x0c,0x10,0x88,0x90,0xfe,0x00 -+// 51283 졓 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x04,0x3c,0x84,0x40,0x60,0x06,0x20,0x80,0x88,0xf0,0x00 -+// 51284 졔 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x14,0x14,0xf4,0x14,0x94,0x14,0x14,0x14,0x04,0x00 -+// 51285 졕 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x12,0x92,0x12,0x12,0x72,0x92,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 51286 졖 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x05,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x12,0x12,0x12,0x12,0x12,0x92,0x00,0xd4,0x44,0x44,0x04,0x04,0x00 -+// 51287 졗 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x05,0x08,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x10,0x88,0x88,0x94,0x82,0x80,0x00 -+// 51288 졘 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x05,0x08,0x10,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x74,0x14,0x14,0x74,0x94,0x94,0x04,0x00,0x00,0xee,0x00 -+// 51289 졙 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x05,0x08,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x14,0x94,0x00,0x78,0x08,0x18,0xa4,0x42,0x00 -+// 51290 졚 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0x14,0x14,0x54,0x14,0x74,0x94,0x18,0x02,0x18,0x24,0x84,0x3c,0x00 -+// 51291 졛 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x05,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x26,0x12,0x12,0x12,0x12,0x70,0x90,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 51292 졜 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x09,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x74,0x14,0x74,0x14,0x04,0xc4,0x04,0x84,0x80,0xce,0x00 -+// 51293 졝 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x05,0x08,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x12,0x92,0x12,0x12,0x12,0x72,0x92,0x00,0xd6,0x02,0x82,0x02,0x80,0x00 -+// 51294 졞 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x05,0x08,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x00,0x04,0x36,0x12,0x12,0x12,0x12,0x72,0x92,0x00,0xb6,0x82,0x80,0x00,0x94,0x00 -+// 51295 졟 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 51296 졠 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x09,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x80,0x88,0x88,0x18,0x12,0x22,0x00 -+// 51297 졡 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x05,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x54,0x94,0x04,0xa0,0x20,0x20,0x20,0x3e,0x00 -+// 51298 졢 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x05,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x74,0x94,0x00,0xa8,0x84,0x20,0x08,0x6a,0x00 -+// 51299 졣 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x08,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x1c,0x82,0x08,0x04,0x22,0x34,0x00 -+// 51300 졤 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x12,0x12,0x12,0x12,0x72,0x92,0x00,0xc6,0x84,0x84,0x84,0x80,0x00 -+// 51301 졥 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x12,0x92,0x12,0x12,0x72,0x92,0x04,0x80,0xc4,0x80,0xc4,0x80,0x00 -+// 51302 졦 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x05,0x00,0x00,0x04,0x06,0x04,0x06,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x88,0x48,0xc8,0x5c,0x52,0x60,0x00 -+// 51303 졧 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x06,0x12,0x12,0x12,0x12,0x72,0x90,0x20,0x30,0x20,0x48,0x84,0x02,0x00 -+// 51304 졨 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x05,0x00,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x0c,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x08,0x8c,0x08,0x94,0x72,0x00,0x00 -+// 51305 졩 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x12,0x92,0x12,0x12,0x72,0x92,0x12,0x38,0x44,0x84,0x44,0x78,0x00 -+// 51306 졪 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x12,0x92,0x12,0x12,0x72,0x92,0x00,0x24,0x20,0x50,0x84,0x02,0x00 -+// 51307 졫 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x02,0x05,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x32,0x12,0x12,0x12,0x12,0x12,0x90,0x70,0x00,0xe0,0x20,0x88,0x02,0x00 -+// 51308 졬 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x05,0x08,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x26,0x12,0x12,0x12,0x12,0x70,0x90,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 51309 졭 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x06,0x12,0x92,0x12,0x12,0x72,0x92,0x00,0x1c,0x00,0x8c,0x00,0xfe,0x00 -+// 51310 졮 ; -+,0x00,0x00,0x00,0x01,0x01,0x02,0x02,0x05,0x09,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 51311 졯 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x14,0x14,0x74,0x94,0x70,0x06,0x20,0x40,0x88,0x58,0x00 -+// 51312 조 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x01,0x06,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x10,0x20,0xc0,0x38,0x06,0x80,0x40,0x40,0xcf,0x00,0x00,0x00 -+// 51313 족 ; -+,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x10,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x60,0xd0,0x00,0xc0,0x42,0x00,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 51314 졲 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1c,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x06,0xc0,0x40,0x00,0x00,0x2c,0x04,0x04,0x00,0x00,0x00 -+// 51315 졳 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xb0,0x60,0xc0,0x04,0x80,0x40,0xfe,0x00,0x10,0x10,0x30,0x4c,0x82,0x00 -+// 51316 존 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x10,0x30,0x40,0x98,0x00,0xc0,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 51317 졵 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0e,0xc0,0x40,0x7f,0x00,0xf0,0x10,0x30,0x44,0x82,0x00 -+// 51318 졶 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1c,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0xc0,0x40,0x00,0x70,0x00,0x30,0x48,0x48,0x78,0x00 -+// 51319 졷 ; -+,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x1e,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x80,0x40,0xff,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 51320 졸 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0xc0,0x40,0x06,0x00,0x10,0x10,0x10,0x00,0xfc,0x00 -+// 51321 졹 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x18,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0xf0,0x60,0xc0,0x06,0xc0,0x42,0x00,0x08,0x88,0x88,0x08,0x08,0x08,0x00 -+// 51322 졺 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0xc0,0x42,0x00,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 51323 졻 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x18,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x30,0x60,0xd0,0x00,0x40,0x42,0x00,0x0c,0x24,0x3c,0x24,0x2c,0x24,0x00 -+// 51324 졼 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf0,0x60,0xc0,0x06,0xc0,0x42,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 51325 졽 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0xc0,0x40,0x00,0x00,0x6c,0x00,0x28,0x00,0x3c,0x00 -+// 51326 졾 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0xc0,0x42,0x00,0x00,0x00,0x48,0x28,0x00,0x4c,0x00 -+// 51327 졿 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x09,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x30,0x60,0xc0,0x04,0xc0,0x40,0x00,0x30,0x04,0x10,0x48,0x44,0x38,0x00 -+// 51328 좀 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x60,0xc0,0x06,0xc0,0x40,0xfe,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 51329 좁 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x10,0x00,0x02,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x60,0xd0,0x00,0xc0,0xc2,0x00,0x10,0x10,0xf0,0x10,0x10,0x00,0x00 -+// 51330 좂 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x10,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x80,0xc2,0x00,0x10,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 51331 좃 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x30,0x60,0xc0,0x06,0x80,0x00,0xff,0x00,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 51332 좄 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0xc0,0x42,0x00,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 51333 종 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x1e,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf0,0x30,0x40,0x1c,0x80,0x40,0xff,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 51334 좆 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1c,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x30,0x60,0xc0,0x04,0xc0,0x40,0x00,0x00,0xf8,0xc0,0xa0,0x18,0x04,0x00 -+// 51335 좇 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1c,0x01,0x00,0x06,0x00,0x03,0x04,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0xc0,0x40,0x00,0xe0,0x00,0xc0,0xc0,0x18,0x04,0x00 -+// 51336 좈 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xb0,0x60,0xc0,0x04,0x80,0x40,0xfe,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 51337 좉 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1c,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0xc0,0x40,0x00,0x00,0x30,0x00,0x00,0x00,0xf8,0x00 -+// 51338 좊 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x04,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x80,0x40,0xfe,0x00,0x18,0x20,0x20,0x20,0xfc,0x00 -+// 51339 좋 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x18,0x00,0x0f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0xc0,0x42,0x00,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 51340 좌 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x02,0x01,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x88,0x08,0x68,0x0f,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51341 좍 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x0e,0x01,0x03,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x08,0xc8,0x08,0x08,0xc8,0x00,0x00,0x08,0x08,0x08,0x00,0x00 -+// 51342 좎 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x03,0x18,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0xc8,0x0a,0x18,0x88,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 51343 좏 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x0e,0x01,0x03,0x18,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x08,0xc8,0x08,0x08,0xc8,0x00,0x30,0x10,0x30,0x48,0x04,0x00 -+// 51344 좐 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x02,0x01,0x03,0x18,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x88,0x3e,0x18,0x80,0x00,0x00,0x00,0x00,0xbc,0x00 -+// 51345 좑 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x0a,0x01,0x03,0x18,0x00,0x08,0x08,0x0f,0x04,0x00,0x00,0x00,0x08,0x88,0x08,0xc8,0x0a,0x18,0x88,0x00,0x0c,0x10,0x30,0x48,0x84,0x00 -+// 51346 좒 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x07,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0x88,0x88,0xc8,0x0a,0x18,0x88,0x30,0x00,0xb0,0x40,0x48,0x78,0x00 -+// 51347 좓 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x04,0x03,0x01,0x1c,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x28,0x0e,0xc8,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 51348 좔 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x07,0x00,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x2a,0x18,0x88,0x00,0x98,0x00,0x10,0x00,0xfc,0x00 -+// 51349 좕 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x06,0x01,0x03,0x18,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x28,0x18,0x88,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 51350 좖 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x07,0x10,0x09,0x01,0x0b,0x08,0x0f,0x00,0x00,0x00,0x08,0x88,0x08,0xc8,0x0a,0x18,0x88,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 51351 좗 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x06,0x01,0x07,0x00,0x0a,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x28,0x18,0x88,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 51352 좘 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x06,0x01,0x03,0x18,0x0d,0x01,0x09,0x08,0x0f,0x00,0x00,0x00,0x18,0xc8,0x88,0xc8,0x28,0x18,0x88,0x00,0x10,0x10,0x30,0x48,0x84,0x00 -+// 51353 좙 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x07,0x00,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x08,0xc8,0x0b,0x18,0x88,0x00,0x58,0x40,0x58,0x40,0x3c,0x00 -+// 51354 좚 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x03,0x18,0x0b,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x08,0x88,0x28,0x18,0x88,0x00,0x48,0x00,0x48,0x10,0xdc,0x00 -+// 51355 좛 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x06,0x01,0x07,0x00,0x0d,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x08,0x88,0x08,0xc8,0x0a,0x18,0x88,0x00,0x00,0x5c,0x28,0x04,0x28,0x00 -+// 51356 좜 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0c,0x01,0x03,0x18,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x28,0x18,0x80,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 51357 좝 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0c,0x02,0x03,0x18,0x00,0x02,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0x88,0x08,0xc8,0x28,0x18,0x88,0x00,0x10,0x08,0x18,0x08,0xd8,0x00 -+// 51358 좞 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x02,0x07,0x18,0x01,0x08,0x05,0x00,0x07,0x00,0x00,0x10,0x08,0x88,0x08,0xc8,0x0b,0x18,0x88,0x00,0x98,0x90,0x98,0xa4,0x42,0x00 -+// 51359 좟 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0c,0x03,0x03,0x1c,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x08,0x88,0x08,0xc8,0x0a,0x18,0xc8,0x00,0x40,0x40,0xa0,0x18,0x04,0x00 -+// 51360 좠 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x04,0x03,0x03,0x18,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0x28,0x18,0x88,0x00,0x10,0x10,0x38,0xe4,0x44,0x00 -+// 51361 좡 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0c,0x01,0x03,0x1c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0xc8,0x0f,0x18,0x80,0x00,0x60,0x10,0x08,0x00,0xf0,0x00 -+// 51362 좢 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x03,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x88,0x08,0xc8,0x0a,0x18,0x80,0x00,0x08,0x40,0xa0,0x18,0x04,0x00 -+// 51363 좣 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x07,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x88,0x08,0xc8,0x0a,0x18,0x80,0x00,0x00,0x58,0x40,0xb0,0x0c,0x00 -+// 51364 좤 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x06,0x01,0x03,0x18,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0xc8,0x28,0x18,0x88,0x00,0x98,0x08,0xd8,0x08,0x00,0x00 -+// 51365 좥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x06,0x03,0x03,0x18,0x04,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x28,0x18,0x80,0x00,0x08,0x00,0x18,0x00,0x9c,0x00 -+// 51366 좦 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x0e,0x01,0x03,0x18,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x88,0x08,0xc8,0x08,0x18,0xc8,0x00,0xf8,0x00,0x10,0x00,0xfc,0x00 -+// 51367 좧 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x06,0x01,0x07,0x18,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0x28,0x18,0x88,0x00,0x00,0x40,0x80,0x10,0xa0,0x00 -+// 51368 좨 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x10,0x90,0x90,0x10,0xd0,0x1c,0x10,0x30,0x10,0x10,0x10,0x00,0x00 -+// 51369 좩 ; -+,0x00,0x00,0x00,0x01,0x00,0x03,0x02,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x32,0x92,0x92,0x92,0x1e,0x12,0x92,0x00,0xee,0x02,0x06,0x06,0x04,0x00 -+// 51370 좪 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x06,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x10,0x90,0x10,0x54,0x14,0x90,0x00,0x94,0x04,0x04,0x04,0x04,0x00 -+// 51371 좫 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x0e,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x54,0x34,0x94,0x00,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 51372 좬 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x03,0x06,0x00,0x03,0x0c,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x14,0x94,0x1c,0x34,0x94,0x14,0x04,0x00,0x00,0xde,0x00 -+// 51373 좭 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x06,0x01,0x03,0x1c,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x90,0x90,0x10,0x54,0x14,0x90,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 51374 좮 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x06,0x00,0x03,0x08,0x00,0x04,0x00,0x02,0x03,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x54,0x34,0x94,0x38,0x00,0xd8,0x28,0x44,0x38,0x00 -+// 51375 좯 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x04,0x03,0x01,0x1e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0xd4,0x14,0x94,0x00,0x04,0x80,0x00,0x00,0xde,0x00 -+// 51376 좰 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x02,0x03,0x1c,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0x04,0x04,0x74,0x34,0xa4,0x00,0xfc,0x04,0x8c,0x00,0xfe,0x00 -+// 51377 좱 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x02,0x01,0x03,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x34,0x90,0x90,0xd0,0x1c,0x10,0x90,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 51378 좲 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x01,0x03,0x08,0x07,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x24,0x90,0x90,0x10,0x34,0x14,0x90,0x00,0xb6,0x84,0x84,0x14,0x10,0x00 -+// 51379 좳 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x01,0x01,0x0c,0x06,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x22,0x92,0x92,0x12,0x36,0x12,0x92,0x00,0xa4,0xb4,0xa4,0x24,0x34,0x00 -+// 51380 좴 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x06,0x01,0x03,0x08,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x34,0x34,0x14,0x10,0x88,0x88,0x18,0x26,0x42,0x00 -+// 51381 좵 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x06,0x01,0x03,0x0c,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x94,0x14,0x74,0x14,0x14,0x00,0xa4,0xa0,0x20,0x20,0x04,0x00 -+// 51382 좶 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x0e,0x02,0x03,0x18,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x04,0xa4,0x34,0x34,0x04,0x00,0xae,0x04,0x24,0x00,0x6e,0x00 -+// 51383 좷 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x02,0x03,0x1c,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x74,0x34,0x94,0x10,0x80,0x78,0x24,0x24,0x3c,0x00 -+// 51384 좸 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x01,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x90,0x90,0x10,0x54,0x14,0x90,0x00,0x04,0x84,0x84,0x84,0x80,0x00 -+// 51385 좹 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x01,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x92,0x92,0x92,0x36,0x12,0x92,0x00,0x84,0xfc,0x80,0x84,0x80,0x00 -+// 51386 좺 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x02,0x03,0x18,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x74,0x34,0x94,0x10,0x88,0x88,0x1c,0x92,0x40,0x00 -+// 51387 좻 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x03,0x01,0x1c,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x34,0x90,0x10,0x10,0x1c,0x10,0x90,0x00,0x20,0x20,0x58,0x84,0x02,0x00 -+// 51388 좼 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x06,0x01,0x03,0x08,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0x94,0x10,0x08,0x08,0xd4,0x62,0x40,0x00 -+// 51389 좽 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x03,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x10,0x90,0x10,0x5c,0x10,0x10,0x00,0x10,0x40,0x84,0x84,0x78,0x00 -+// 51390 좾 ; -+,0x00,0x00,0x00,0x01,0x00,0x03,0x02,0x01,0x03,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x32,0x92,0x92,0x92,0x16,0x12,0x92,0x00,0x24,0x20,0x70,0x8c,0x06,0x00 -+// 51391 좿 ; -+,0x00,0x00,0x00,0x07,0x01,0x03,0x06,0x01,0x03,0x08,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x04,0x24,0x90,0x10,0x10,0x14,0x14,0x10,0x00,0x60,0x26,0x20,0x48,0x06,0x00 -+// 51392 죀 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x01,0x01,0x0c,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x32,0x92,0x92,0x12,0x12,0x12,0x92,0x00,0x86,0x02,0xe6,0x00,0x00,0x00 -+// 51393 죁 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x06,0x01,0x03,0x1c,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0x34,0x14,0x94,0x00,0x04,0x00,0x0c,0x00,0xfe,0x00 -+// 51394 죂 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x54,0x34,0x84,0x00,0x0c,0x10,0x98,0x90,0xfe,0x00 -+// 51395 죃 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x02,0x03,0x1c,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x74,0x14,0x14,0x00,0x00,0x20,0x50,0x88,0x70,0x00 -+// 51396 죄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x60,0xc0,0x80,0x10,0x80,0x84,0xe4,0x00,0x00,0x00,0x00,0x00 -+// 51397 죅 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x00,0x0c,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe0,0x40,0xc0,0x00,0x84,0xe0,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 51398 죆 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0xe4,0x04,0x84,0xe4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 51399 죇 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x07,0x01,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xc4,0x14,0x0c,0xc4,0x00,0x08,0x88,0x98,0x84,0x82,0x00 -+// 51400 죈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x01,0x1c,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x04,0x14,0x04,0xc4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 51401 죉 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x00,0x17,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0xc4,0xc4,0x84,0x14,0x04,0xc4,0x00,0x06,0x08,0x18,0xa4,0x42,0x00 -+// 51402 죊 ; -+,0x00,0x00,0x00,0x05,0x00,0x01,0x03,0x01,0x01,0x08,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0xc4,0xc4,0x84,0x14,0x04,0x84,0x00,0x00,0xd6,0x18,0x04,0x2c,0x00 -+// 51403 죋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x0e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0xc4,0x14,0x84,0xe4,0x00,0x00,0x80,0x00,0x00,0x9e,0x00 -+// 51404 죌 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x01,0x01,0x0c,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x34,0x04,0xc4,0x00,0xcc,0x00,0x0c,0x00,0x06,0x00 -+// 51405 죍 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x00,0x0e,0x00,0x00,0x00,0x04,0x02,0x02,0x00,0x04,0x04,0xe0,0x40,0xc0,0x00,0x84,0xe4,0x00,0x00,0x84,0x84,0x04,0x84,0x00 -+// 51406 죎 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x00,0x01,0x0c,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x44,0x84,0x14,0x84,0xc4,0x00,0xa4,0xa4,0xa4,0x24,0xa4,0x00 -+// 51407 죏 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x00,0x0c,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x44,0xc4,0x04,0x84,0xe4,0x00,0x84,0xa4,0xa4,0x24,0x24,0x00 -+// 51408 죐 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x00,0x01,0x0c,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x44,0x84,0x14,0x84,0xc4,0x00,0x98,0x90,0x98,0x24,0x42,0x00 -+// 51409 죑 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x07,0x00,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0xc4,0xf4,0x04,0x84,0xc4,0x00,0xac,0xa0,0xac,0x20,0x3e,0x00 -+// 51410 죒 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x01,0x01,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0xc4,0x84,0x14,0x04,0xc4,0x00,0x24,0x08,0x28,0x08,0x4e,0x00 -+// 51411 죓 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x07,0x01,0x01,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0xc4,0xc4,0x14,0x04,0xc4,0x00,0x00,0x7e,0x08,0x24,0x24,0x00 -+// 51412 죔 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0xe4,0x04,0x84,0xc4,0x00,0x04,0x84,0x84,0x04,0x80,0x00 -+// 51413 죕 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x84,0x14,0x84,0xc4,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 51414 죖 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x07,0x01,0x03,0x08,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0xc4,0x14,0x04,0xc4,0x00,0x88,0x88,0x98,0x94,0x82,0x00 -+// 51415 죗 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x01,0x0c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0xc4,0xe4,0x04,0x84,0xc4,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 51416 죘 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x00,0x01,0x08,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xe4,0xc4,0xe4,0x04,0x84,0xc4,0x00,0x08,0x08,0x98,0x66,0x02,0x00 -+// 51417 죙 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0xe4,0x04,0x84,0xc4,0x04,0x30,0x44,0x84,0x84,0x78,0x00 -+// 51418 죚 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x44,0xe4,0x04,0x84,0xc4,0x00,0x04,0x20,0x60,0x88,0x06,0x00 -+// 51419 죛 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0xe4,0x44,0xb4,0x04,0x84,0xc4,0x00,0x70,0x1e,0x20,0x58,0x86,0x00 -+// 51420 죜 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x03,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0xa4,0x04,0x84,0xc4,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 51421 죝 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x01,0x00,0x0e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x14,0x84,0xc4,0x04,0x00,0x00,0x04,0x00,0x06,0x00 -+// 51422 죞 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x07,0x01,0x17,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0xe4,0x04,0x04,0xc4,0x00,0x0c,0x10,0x98,0x90,0xfe,0x00 -+// 51423 죟 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x01,0x01,0x0e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x14,0x84,0xc4,0x00,0x00,0x26,0x50,0x88,0x48,0x00 -+// 51424 죠 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x10,0x20,0xc0,0x1c,0x00,0x10,0x10,0x10,0x1f,0x00,0x00,0x00 -+// 51425 죡 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x03,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x40,0xd0,0x04,0x20,0x10,0x3e,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 51426 죢 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x03,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x20,0x10,0x3f,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 51427 죣 ; -+,0x00,0x00,0x04,0x00,0x01,0x04,0x00,0x02,0x1f,0x00,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x30,0x40,0xc0,0x04,0x20,0x20,0x3f,0x00,0x30,0x30,0x30,0x4c,0x80,0x00 -+// 51428 죤 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x04,0x03,0x01,0x1f,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0x40,0x1c,0x20,0x10,0x10,0x06,0x00,0x00,0x00,0x00,0x00,0x00 -+// 51429 죥 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x03,0x1f,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x20,0x10,0x3f,0x00,0xb0,0x30,0x30,0x44,0x00,0x00 -+// 51430 죦 ; -+,0x00,0x00,0x04,0x00,0x01,0x04,0x02,0x03,0x18,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x20,0x40,0xb0,0x04,0x30,0x32,0x00,0x70,0x0c,0x30,0x48,0x48,0x78,0x00 -+// 51431 죧 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x02,0x1f,0x00,0x04,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x20,0x20,0x3e,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 51432 죨 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x02,0x01,0x1f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x30,0x10,0x06,0x00,0x90,0x10,0x30,0x00,0xb8,0x00 -+// 51433 죩 ; -+,0x00,0x00,0x06,0x00,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x30,0x40,0x90,0x04,0x20,0x36,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51434 죪 ; -+,0x00,0x00,0x06,0x00,0x01,0x00,0x02,0x03,0x00,0x09,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x30,0x40,0x90,0x04,0x20,0x32,0x00,0x40,0x24,0x24,0x00,0x28,0x20,0x00 -+// 51435 죫 ; -+,0x00,0x00,0x04,0x00,0x01,0x00,0x02,0x03,0x18,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x20,0x40,0x90,0x04,0x20,0x32,0x00,0x08,0x44,0x3c,0x04,0x2c,0x00,0x00 -+// 51436 죬 ; -+,0x00,0x00,0x0f,0x00,0x01,0x00,0x02,0x03,0x10,0x00,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0xf0,0x40,0xc0,0x04,0x20,0x32,0x00,0x30,0x10,0x30,0x28,0x44,0x80,0x00 -+// 51437 죭 ; -+,0x00,0x00,0x07,0x00,0x01,0x06,0x02,0x02,0x1c,0x00,0x09,0x01,0x0d,0x08,0x06,0x00,0x00,0x00,0x20,0x40,0xc0,0x04,0x20,0x30,0x00,0x00,0x48,0x40,0x68,0x40,0x3c,0x00 -+// 51438 죮 ; -+,0x00,0x00,0x07,0x00,0x01,0x04,0x02,0x02,0x18,0x00,0x01,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x30,0x40,0xc0,0x04,0x20,0x32,0x00,0x00,0x00,0x48,0x48,0x00,0xd4,0x00 -+// 51439 죯 ; -+,0x00,0x00,0x06,0x00,0x01,0x04,0x02,0x02,0x10,0x00,0x09,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x30,0x40,0x90,0x04,0x20,0x32,0x00,0x30,0x04,0x10,0x48,0x40,0x38,0x00 -+// 51440 죰 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x03,0x1f,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x60,0xc0,0x04,0x20,0x00,0x3f,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 51441 죱 ; -+,0x00,0x00,0x07,0x00,0x01,0x06,0x02,0x00,0x1e,0x00,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x20,0x20,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 51442 죲 ; -+,0x00,0x00,0x07,0x00,0x01,0x04,0x02,0x03,0x00,0x01,0x08,0x0f,0x08,0x09,0x00,0x00,0x00,0x00,0x30,0x40,0xd0,0x04,0x20,0x33,0x00,0x10,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 51443 죳 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x03,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x30,0x60,0xc0,0x04,0x20,0x10,0x3f,0x00,0xc0,0x80,0x20,0x18,0x00,0x00 -+// 51444 죴 ; -+,0x00,0x00,0x07,0x00,0x01,0x04,0x02,0x03,0x18,0x00,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0xf0,0x40,0xc0,0x04,0x20,0x32,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 51445 죵 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x03,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x20,0x20,0x3f,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 51446 죶 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x03,0x1f,0x00,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x30,0x40,0xd0,0x04,0x20,0x20,0x3e,0x00,0xf8,0xc0,0x20,0x18,0x00,0x00 -+// 51447 죷 ; -+,0x00,0x00,0x06,0x00,0x01,0x04,0x02,0x03,0x00,0x01,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x20,0x40,0x90,0x04,0x20,0x33,0x00,0xc0,0x08,0x80,0xc0,0x10,0x08,0x00 -+// 51448 죸 ; -+,0x00,0x00,0x04,0x00,0x01,0x04,0x00,0x03,0x1f,0x00,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x30,0x40,0x80,0x04,0x20,0x20,0x3f,0x00,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 51449 죹 ; -+,0x00,0x00,0x0f,0x00,0x00,0x04,0x02,0x02,0x18,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x20,0x20,0x00,0x00,0x30,0x00,0x30,0x00,0xf8,0x00 -+// 51450 죺 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x02,0x1f,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x20,0x20,0x3e,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 51451 죻 ; -+,0x00,0x00,0x04,0x00,0x01,0x04,0x02,0x03,0x10,0x00,0x0f,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x40,0x10,0x04,0x20,0x32,0x00,0xc0,0xdc,0xc0,0x20,0x20,0xe0,0x00 -+// 51452 주 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb0,0x20,0xc0,0x0c,0x00,0x00,0xc0,0x40,0x40,0x40,0x00,0x00,0x00,0x00 -+// 51453 죽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x06,0x00,0x1f,0x40,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 51454 죾 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x10,0x00,0x00,0x0d,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x06,0x00,0x1f,0x00,0x00,0x2c,0x04,0x04,0x00,0x00,0x00 -+// 51455 죿 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x30,0x20,0xc0,0x06,0x00,0x1f,0x40,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 51456 준 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x1c,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xf0,0x30,0x40,0x1c,0x00,0x00,0xce,0x40,0x40,0x00,0x00,0x00,0x00,0x00 -+// 51457 줁 ; -+,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x1c,0x00,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x06,0x00,0x1f,0x40,0x00,0xb0,0x10,0x30,0x44,0x80,0x00 -+// 51458 줂 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x08,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x00,0xdf,0x00,0x70,0x04,0x10,0x48,0x40,0x78,0x00 -+// 51459 줃 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x18,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf0,0x30,0x40,0x0c,0x00,0x00,0xc0,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 51460 줄 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf0,0x30,0x40,0x0c,0x00,0x02,0xc0,0x00,0x10,0x10,0x10,0x00,0xb8,0x00 -+// 51461 줅 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x5f,0x40,0xc8,0x88,0x88,0x08,0x08,0x00,0x00 -+// 51462 줆 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1c,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0xb0,0x20,0xe0,0x04,0x00,0x5f,0x40,0xc0,0x24,0x24,0x24,0x24,0x20,0x00 -+// 51463 줇 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x1e,0x00,0x0d,0x01,0x09,0x04,0x05,0x04,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0xdf,0x40,0x44,0x24,0x24,0x24,0x3c,0x00,0x00 -+// 51464 줈 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x10,0x00,0x00,0x01,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x1f,0x40,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 51465 줉 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x3c,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x00,0xde,0x00,0x80,0x60,0x00,0x28,0x00,0x00,0x00 -+// 51466 줊 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x00,0x5f,0x00,0x4c,0x00,0x48,0x28,0x00,0x40,0x00 -+// 51467 줋 ; -+,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x1c,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x5f,0x40,0x30,0x04,0x10,0x00,0x44,0x38,0x00 -+// 51468 줌 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x18,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xb0,0x20,0xc0,0x06,0x00,0x1f,0x40,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 51469 줍 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x1c,0x00,0x00,0x04,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x1f,0x00,0x10,0x10,0xf0,0x00,0x10,0x00,0x00 -+// 51470 줎 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x1e,0x00,0x01,0x08,0x07,0x04,0x05,0x04,0x00,0x00,0x00,0x30,0x20,0xd0,0x04,0x00,0xfe,0x00,0x90,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 51471 줏 ; -+,0x00,0x00,0x02,0x00,0x00,0x02,0x00,0x10,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x06,0x00,0x1e,0x40,0xc0,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 51472 줐 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1c,0x00,0x00,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x00,0x5f,0x40,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 51473 중 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x00,0x03,0xc0,0x00,0xc0,0x20,0x10,0x30,0xe0,0x00 -+// 51474 줒 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x3c,0x00,0x00,0x04,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0xdf,0x00,0x04,0xc0,0xc0,0x20,0x08,0x04,0x00 -+// 51475 줓 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1c,0x00,0x01,0x00,0x04,0x00,0x01,0x04,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x1f,0x00,0xc0,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 51476 줔 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x06,0x00,0x5f,0x40,0x00,0x88,0x08,0xc8,0x08,0x08,0x00 -+// 51477 줕 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf0,0x30,0x40,0x1c,0x00,0x06,0x40,0x00,0x78,0x00,0x30,0x00,0xf8,0x00 -+// 51478 줖 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x04,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xb0,0x20,0xc0,0x06,0x00,0x1e,0x40,0x00,0x18,0x20,0x20,0x20,0xfc,0x00 -+// 51479 줗 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x06,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x00,0x8f,0x80,0x00,0xc0,0x40,0x20,0x20,0xe0,0x00 -+// 51480 줘 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x74,0x04,0x04,0x84,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 51481 줙 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x84,0xb4,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 51482 줚 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x84,0x34,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 51483 줛 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x00,0x11,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x84,0x3c,0x00,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 51484 줜 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x84,0x34,0x04,0x84,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 51485 줝 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x10,0x09,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0xc4,0x84,0x44,0x04,0x04,0x0c,0x00,0x02,0x18,0x18,0xa4,0x42,0x00 -+// 51486 줞 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x84,0x3c,0x00,0x00,0xd6,0x18,0x04,0x24,0x00 -+// 51487 줟 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x0c,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x14,0x04,0x84,0x80,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 51488 줠 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x18,0x09,0x01,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x04,0x04,0x3c,0x00,0x8c,0x00,0x0c,0x00,0x82,0x00 -+// 51489 줡 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x0f,0x00,0x00,0x04,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x04,0xc4,0x84,0x74,0x14,0x84,0xb4,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 51490 줢 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x0f,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x06,0xc0,0x80,0x20,0x10,0x80,0xb4,0x00,0xb4,0xa4,0x84,0x04,0x90,0x00 -+// 51491 줣 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x0f,0x00,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x84,0x24,0x14,0x84,0xb4,0x00,0x84,0x24,0xa4,0x24,0x24,0x00 -+// 51492 줤 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x00,0x1f,0x01,0x01,0x0c,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x14,0x84,0x34,0x00,0x88,0x90,0x98,0x24,0x42,0x00 -+// 51493 줥 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x1f,0x00,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x14,0x84,0x34,0x00,0xa4,0xa0,0x24,0x20,0x1e,0x00 -+// 51494 줦 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x04,0x1f,0x01,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x44,0x04,0x84,0x3c,0x00,0xa0,0x08,0x20,0x28,0x4e,0x00 -+// 51495 줧 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x00,0x1f,0x01,0x01,0x05,0x00,0x06,0x04,0x03,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x14,0x84,0x3c,0x18,0x80,0x18,0x04,0x24,0x1c,0x00 -+// 51496 줨 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0xa4,0x04,0x84,0xb4,0x80,0x00,0x84,0x84,0x84,0x80,0x00 -+// 51497 줩 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x14,0x84,0xb4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 51498 줪 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x14,0x84,0x34,0x00,0x88,0x48,0x5c,0x52,0x40,0x00 -+// 51499 줫 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x14,0xc4,0x3c,0x04,0x24,0x20,0x50,0x8c,0x02,0x00 -+// 51500 줬 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x1f,0x01,0x00,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x14,0x84,0x34,0x00,0x08,0x08,0x94,0x62,0x02,0x00 -+// 51501 줭 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x14,0x04,0x04,0x04,0x14,0x44,0x84,0x84,0x68,0x00 -+// 51502 줮 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x84,0xb4,0x00,0x06,0x20,0x20,0xc8,0x06,0x00 -+// 51503 줯 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x04,0x1b,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0xc4,0x84,0x64,0x14,0x84,0xbc,0x00,0x70,0x0e,0x20,0x58,0x86,0x00 -+// 51504 줰 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x09,0x00,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xe4,0x14,0x84,0xb4,0x00,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 51505 줱 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x08,0x08,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x14,0x84,0xb4,0x00,0x04,0x80,0x04,0x00,0x9e,0x00 -+// 51506 줲 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x00,0x1f,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xc4,0x84,0x64,0x04,0x84,0x3c,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 51507 줳 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x04,0x11,0x09,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x44,0x14,0x84,0x3c,0x00,0x00,0xf0,0x40,0x88,0x50,0x00 -+// 51508 줴 ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x06,0x00,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x12,0x92,0x12,0x92,0x12,0x12,0x12,0x72,0x12,0x10,0x10,0x00,0x00 -+// 51509 줵 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x54,0x14,0x34,0x14,0x04,0x04,0x04,0x04,0x04,0x00 -+// 51510 줶 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x54,0x94,0x14,0x14,0x94,0x84,0x84,0x84,0x84,0x00 -+// 51511 줷 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x54,0x14,0x34,0x14,0x88,0x88,0x98,0xa4,0xc2,0x00 -+// 51512 줸 ; -+,0x00,0x00,0x00,0x00,0x07,0x01,0x06,0x00,0x1f,0x02,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0xd4,0x54,0x14,0x74,0x14,0x14,0x00,0x00,0xde,0x00 -+// 51513 줹 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x03,0x01,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x54,0x14,0x14,0x10,0x06,0x10,0x18,0xa4,0x42,0x00 -+// 51514 줺 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x00,0x0e,0x00,0x00,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x54,0x14,0x74,0x30,0x00,0xd6,0x18,0x04,0x2c,0x00 -+// 51515 줻 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x1e,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x54,0x14,0x14,0x74,0x00,0x00,0x00,0x00,0x9e,0x00 -+// 51516 줼 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x0a,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0x54,0x14,0xf4,0x00,0xc4,0x04,0x0c,0x00,0xfe,0x00 -+// 51517 줽 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x00,0x0d,0x01,0x04,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x36,0x92,0x92,0x92,0x12,0x92,0x72,0x00,0xb4,0x04,0x84,0x04,0x84,0x00 -+// 51518 줾 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x01,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x14,0x74,0x00,0xa4,0xa4,0xa4,0x04,0x90,0x00 -+// 51519 줿 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x09,0x01,0x04,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x24,0x94,0x94,0x14,0x14,0x14,0x74,0x10,0xa4,0xa4,0xa4,0x24,0x24,0x00 -+// 51520 쥀 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x00,0x0f,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x54,0x94,0x74,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 51521 쥁 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x01,0x01,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x34,0x94,0x14,0x94,0x14,0x14,0x74,0x10,0xa4,0xa0,0xa4,0x20,0x3e,0x00 -+// 51522 쥂 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x03,0x02,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x54,0x14,0x74,0x00,0xa4,0x04,0xa4,0x00,0x0e,0x00 -+// 51523 쥃 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x0a,0x00,0x05,0x00,0x05,0x04,0x03,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x54,0x14,0x74,0x10,0x00,0x5a,0x00,0x24,0x3c,0x00 -+// 51524 쥄 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x54,0x14,0x14,0x14,0x04,0x84,0x84,0x84,0x80,0x00 -+// 51525 쥅 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x12,0x92,0x92,0x12,0x12,0x72,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 51526 쥆 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x01,0x0a,0x00,0x00,0x04,0x06,0x04,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x14,0x14,0x74,0x10,0x88,0x48,0xdc,0xd2,0x42,0x00 -+// 51527 쥇 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0x94,0x14,0x94,0x54,0x14,0x74,0x00,0x20,0x20,0x58,0x84,0x02,0x00 -+// 51528 쥈 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x01,0x0a,0x00,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x54,0x14,0x74,0x10,0x08,0x08,0x98,0x64,0x02,0x00 -+// 51529 쥉 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x92,0x92,0x92,0x12,0x92,0x72,0x12,0x10,0x44,0x84,0x84,0x68,0x00 -+// 51530 쥊 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x16,0x92,0x92,0xd2,0x12,0x92,0x12,0x10,0x0c,0x20,0x70,0x8c,0x02,0x00 -+// 51531 쥋 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x34,0x94,0x14,0x94,0x54,0x14,0x74,0x10,0x60,0x0e,0x20,0x58,0x86,0x00 -+// 51532 쥌 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x03,0x01,0x01,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x94,0x14,0x94,0x14,0x10,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 51533 쥍 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x00,0x0f,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x14,0x14,0x34,0x10,0x04,0x80,0x8c,0x00,0xde,0x00 -+// 51534 쥎 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x00,0x03,0x02,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x54,0x14,0x34,0x14,0x0c,0x10,0x98,0x90,0xfe,0x00 -+// 51535 쥏 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x01,0x0f,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x54,0x14,0x74,0x10,0x00,0x26,0x10,0x88,0x98,0x00 -+// 51536 쥐 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x84,0x34,0x04,0x04,0xc4,0x84,0x84,0x84,0x04,0x04,0x00 -+// 51537 쥑 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x24,0x04,0x24,0x84,0x80,0x00,0x04,0x04,0x04,0x04,0x00 -+// 51538 쥒 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0xc4,0xa4,0x04,0x64,0x84,0x80,0xbc,0x04,0x04,0x04,0x04,0x00 -+// 51539 쥓 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x1f,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x04,0x0c,0x84,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 51540 쥔 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0d,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x84,0x34,0x04,0x64,0x84,0x04,0x04,0x00,0x00,0xde,0x00 -+// 51541 쥕 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x0f,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x04,0x24,0x84,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 51542 쥖 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x01,0x09,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0xc4,0x84,0x64,0x04,0xc4,0x04,0x30,0x00,0xd8,0x20,0x04,0x38,0x00 -+// 51543 쥗 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0xc4,0x84,0x14,0x04,0x84,0x00,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 51544 쥘 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x0d,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0xc4,0x04,0xe4,0x04,0x00,0xcc,0x00,0x0c,0x00,0xce,0x00 -+// 51545 쥙 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x0f,0x00,0x00,0x06,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x04,0xc4,0x84,0x34,0x04,0xc4,0x84,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 51546 쥚 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x04,0x09,0x00,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x04,0x44,0x84,0x24,0x14,0xc4,0x84,0x00,0xa4,0xa4,0xa4,0x04,0x10,0x00 -+// 51547 쥛 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x04,0x01,0x04,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x04,0x44,0x84,0x34,0x04,0xe4,0x84,0x00,0xa4,0xa4,0xa4,0x24,0x24,0x00 -+// 51548 쥜 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x0b,0x00,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0xc4,0x84,0x00,0x88,0x88,0x90,0x26,0x42,0x00 -+// 51549 쥝 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x0d,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0xc4,0x04,0x00,0xac,0xa0,0x2c,0x20,0x3e,0x00 -+// 51550 쥞 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x00,0x11,0x09,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0xc4,0x04,0x00,0xa8,0x04,0x20,0x08,0x4e,0x00 -+// 51551 쥟 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x00,0x11,0x09,0x00,0x05,0x00,0x07,0x04,0x03,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0xc4,0x04,0x10,0x80,0x78,0x14,0x24,0x3c,0x00 -+// 51552 쥠 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x14,0x24,0x84,0x80,0x00,0x84,0x84,0x84,0x80,0x00 -+// 51553 쥡 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x03,0x09,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0xc4,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 51554 쥢 ; -+,0x00,0x00,0x00,0x04,0x00,0x02,0x00,0x1f,0x01,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0xc4,0x04,0x08,0x88,0x88,0x14,0xa2,0x40,0x00 -+// 51555 쥣 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x04,0x84,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 51556 쥤 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x00,0x1f,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x1c,0x84,0x04,0x10,0x08,0x08,0x94,0x66,0x42,0x00 -+// 51557 쥥 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x84,0x14,0x04,0x84,0x84,0x90,0x44,0x44,0x44,0x7c,0x00 -+// 51558 쥦 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0x84,0x24,0x04,0x04,0x84,0x80,0x06,0x20,0x20,0x48,0x06,0x00 -+// 51559 쥧 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x84,0x34,0x14,0xc4,0x04,0x00,0x00,0x64,0x20,0xc8,0x02,0x00 -+// 51560 쥨 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x14,0x04,0x84,0x80,0x04,0x04,0x04,0x04,0x04,0x00 -+// 51561 쥩 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x03,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0xc4,0x84,0x00,0x0c,0x00,0x0c,0x00,0xfe,0x00 -+// 51562 쥪 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x04,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x44,0x04,0x0c,0x04,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 51563 쥫 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x01,0x09,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x64,0x04,0xc4,0x04,0x70,0x00,0x30,0x50,0x88,0x58,0x00 -+// 51564 쥬 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x0c,0x00,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 51565 쥭 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x1e,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x06,0x00,0x1f,0x10,0x10,0x98,0x08,0x08,0x08,0x08,0x00 -+// 51566 쥮 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1f,0x02,0x02,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x06,0x00,0x3f,0x10,0x10,0x28,0x00,0x00,0x00,0x00,0x00 -+// 51567 쥯 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x18,0x02,0x02,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x20,0xc0,0x06,0x00,0x3f,0x10,0x10,0x10,0x10,0x38,0x44,0x82,0x00 -+// 51568 쥰 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x1f,0x01,0x01,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0x60,0x98,0x02,0x00,0x3f,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 51569 쥱 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1e,0x02,0x02,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x00,0x30,0x20,0xe0,0x06,0x00,0x1f,0x10,0x10,0xf0,0x10,0x30,0x4c,0x86,0x00 -+// 51570 쥲 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1e,0x02,0x02,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x3f,0x10,0x30,0x06,0x30,0x48,0x48,0x78,0x00 -+// 51571 쥳 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x12,0x02,0x02,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x30,0x40,0x1c,0x00,0x02,0x10,0x10,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 51572 쥴 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x02,0x02,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x00,0x3e,0x10,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 51573 쥵 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x02,0x02,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x3e,0x10,0x10,0x88,0x88,0x08,0x08,0x00,0x00 -+// 51574 쥶 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x00,0x01,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x3f,0x10,0x10,0x24,0x24,0x24,0x24,0x20,0x00 -+// 51575 쥷 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x02,0x03,0x01,0x09,0x04,0x04,0x04,0x00,0x00,0x00,0xf0,0x20,0xc0,0x06,0x00,0x30,0x10,0x0c,0x24,0x2c,0x24,0x3c,0x20,0x00 -+// 51576 쥸 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x1e,0x02,0x02,0x00,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x1f,0x10,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 51577 쥹 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1f,0x02,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x10,0x10,0x00,0x60,0x00,0x20,0x20,0x00,0x00 -+// 51578 쥺 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x02,0x02,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x3e,0x10,0x10,0x00,0x08,0x28,0x00,0x40,0x00 -+// 51579 쥻 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x02,0x02,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0xb0,0x20,0xc0,0x04,0x00,0x3f,0x10,0x30,0x04,0x10,0x08,0x44,0x38,0x00 -+// 51580 쥼 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1e,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x90,0x20,0xc0,0x06,0x00,0x1f,0x10,0x10,0x18,0x10,0x10,0x10,0x00,0x00 -+// 51581 쥽 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x02,0x02,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x1f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00 -+// 51582 쥾 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x1f,0x02,0x03,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x3f,0x10,0x90,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 51583 쥿 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x3f,0x10,0x90,0xc0,0xc0,0x20,0x08,0x00,0x00 -+// 51584 즀 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x1f,0x02,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x04,0x00,0x3f,0x10,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 51585 즁 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x02,0x02,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x06,0x10,0x10,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 51586 즂 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1e,0x02,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x90,0x20,0xc0,0x04,0x00,0x3f,0x10,0x1c,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 51587 즃 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x02,0x03,0x00,0x06,0x00,0x03,0x04,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x3f,0x10,0xe0,0x00,0xc0,0xc0,0x18,0x04,0x00 -+// 51588 즄 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1e,0x02,0x02,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x06,0x00,0x3f,0x10,0x10,0x08,0x08,0x88,0x08,0x08,0x00 -+// 51589 즅 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1f,0x02,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf0,0x30,0x40,0x0c,0x00,0x3f,0x10,0x00,0x18,0x00,0x30,0x00,0x00,0x00 -+// 51590 즆 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x02,0x02,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0e,0x00,0x06,0x10,0x10,0xb8,0x20,0x20,0x20,0xfc,0x00 -+// 51591 즇 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x1f,0x02,0x02,0x0f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0x3f,0x10,0xe0,0xfc,0x40,0x00,0x00,0xe0,0x00 -+// 51592 즈 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x40,0xc0,0x0c,0x00,0x00,0x00,0x3f,0x00,0x00,0x00 -+// 51593 즉 ; -+,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x60,0x98,0x02,0x00,0x1f,0x00,0x00,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 51594 즊 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x18,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xb0,0x20,0xc0,0x06,0x00,0x02,0x00,0x00,0xac,0x04,0x04,0x00,0x00,0x00 -+// 51595 즋 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x30,0x60,0xd8,0x00,0x00,0x06,0x00,0x00,0x10,0x10,0x28,0x44,0x00,0x00 -+// 51596 즌 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x18,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x30,0x40,0x90,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 51597 즍 ; -+,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x00,0x18,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x30,0x60,0xc0,0x06,0x00,0x00,0x00,0x00,0xb0,0x10,0x30,0x44,0x82,0x00 -+// 51598 즎 ; -+,0x00,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x30,0x40,0x90,0x04,0x00,0x1f,0x00,0x30,0x06,0x30,0x48,0x40,0x78,0x00 -+// 51599 즏 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x1c,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0e,0x00,0x00,0x02,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 51600 즐 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x00,0x1f,0x00,0x03,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x00,0x00,0xe2,0x00,0xf0,0x10,0x30,0x00,0xf8,0x00 -+// 51601 즑 ; -+,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x10,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x02,0x00,0x00,0x88,0x88,0x08,0x08,0x08,0x00 -+// 51602 즒 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x02,0x00,0x00,0x24,0x24,0x24,0x24,0x28,0x00 -+// 51603 즓 ; -+,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x30,0x40,0xd0,0x04,0x00,0x02,0x00,0x08,0x24,0x2c,0x24,0x24,0x24,0x00 -+// 51604 즔 ; -+,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x30,0x60,0xc0,0x04,0x00,0x07,0x00,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 51605 즕 ; -+,0x00,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x1e,0x00,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xb0,0x20,0xc0,0x0c,0x00,0x00,0x00,0x00,0x78,0x00,0x38,0x00,0x3c,0x00 -+// 51606 즖 ; -+,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x18,0x00,0x07,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x02,0x00,0x00,0x70,0x08,0x28,0x28,0xfe,0x00 -+// 51607 즗 ; -+,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x00,0x1e,0x00,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x00,0x00,0x30,0x04,0x10,0x08,0x44,0x38,0x00 -+// 51608 즘 ; -+,0x00,0x00,0x04,0x00,0x01,0x06,0x00,0x00,0x18,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x60,0xd0,0x04,0x00,0x00,0x00,0x00,0x38,0x10,0x10,0x10,0x10,0x00 -+// 51609 즙 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x00,0x18,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x02,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 51610 즚 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x00,0x18,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x02,0x00,0x10,0x98,0x90,0x88,0xa4,0xc2,0x00 -+// 51611 즛 ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x1e,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x30,0x40,0x98,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x20,0x18,0x0c,0x00 -+// 51612 즜 ; -+,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x10,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x02,0x00,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 51613 증 ; -+,0x00,0x00,0x07,0x00,0x00,0x03,0x08,0x00,0x3f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x20,0xc0,0x1c,0x00,0x00,0xe7,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 51614 즞 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x00,0x1e,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x30,0x60,0xc0,0x04,0x00,0x00,0x00,0x00,0xfc,0xc0,0xa0,0x10,0x0c,0x00 -+// 51615 즟 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x00,0x10,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x00,0x02,0x00,0x80,0x00,0xf8,0xc0,0x10,0x08,0x00 -+// 51616 즠 ; -+,0x00,0x00,0x07,0x00,0x00,0x02,0x08,0x00,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x30,0x60,0xc0,0x06,0x00,0x00,0xe6,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 51617 즡 ; -+,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x10,0x00,0x06,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x00,0x02,0x00,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 51618 즢 ; -+,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x00,0x18,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x30,0x60,0xc0,0x04,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x3c,0x00 -+// 51619 즣 ; -+,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xf0,0x40,0xf0,0x04,0x00,0x06,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 51620 즤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x84,0x84,0x14,0x04,0x04,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 51621 즥 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xc4,0x04,0x0c,0xc4,0x00,0x00,0x0c,0x04,0x00,0x00,0x00 -+// 51622 즦 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc0,0x80,0x60,0x00,0x18,0x80,0x00,0x08,0x80,0x80,0x80,0x00,0x00 -+// 51623 즧 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x88,0x68,0x08,0x08,0x88,0x00,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 51624 즨 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x08,0x00,0x1f,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x88,0x08,0xc8,0x28,0x18,0x88,0x08,0x08,0x00,0x00,0xde,0x00 -+// 51625 즩 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x00,0x00,0x1f,0x00,0x08,0x0c,0x04,0x05,0x04,0x00,0x00,0x18,0x08,0xc8,0x88,0x68,0x08,0x18,0x08,0x00,0x9c,0x10,0x30,0x24,0xc6,0x00 -+// 51626 즪 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x08,0xc8,0x88,0xe8,0x08,0x18,0x08,0x20,0x00,0xfc,0x38,0x44,0x28,0x00 -+// 51627 즫 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0xc4,0x84,0xe4,0x04,0x0c,0xc0,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 51628 즬 ; -+,0x00,0x00,0x00,0x0c,0x01,0x03,0x00,0x00,0x1f,0x00,0x03,0x00,0x03,0x00,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x68,0x08,0x08,0x08,0x00,0xf8,0x08,0x78,0x00,0xfc,0x00 -+// 51629 즭 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x04,0x00,0x1f,0x00,0x00,0x01,0x0d,0x00,0x07,0x00,0x00,0x08,0x08,0xc8,0x88,0x68,0x08,0x18,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51630 즮 ; -+,0x00,0x00,0x00,0x04,0x01,0x02,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x18,0x08,0xc8,0x88,0x68,0x08,0x78,0x08,0x00,0x68,0x08,0x08,0x08,0x28,0x00 -+// 51631 즯 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x38,0x00,0x00,0xc8,0x48,0x48,0x48,0x68,0x00 -+// 51632 즰 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x00,0x0f,0x00,0x0d,0x00,0x07,0x00,0x00,0x08,0x0c,0xc4,0x84,0xc4,0x04,0x1c,0x80,0x00,0x10,0x10,0x18,0x24,0x46,0x00 -+// 51633 즱 ; -+,0x00,0x00,0x00,0x06,0x01,0x02,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x08,0xc8,0x88,0x68,0x08,0x78,0x08,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 51634 즲 ; -+,0x00,0x00,0x00,0x0c,0x00,0x03,0x04,0x00,0x1f,0x00,0x07,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x08,0xc8,0x88,0x48,0x08,0x08,0x08,0x00,0x78,0x08,0x28,0x00,0xfc,0x00 -+// 51635 즳 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x04,0x00,0x1f,0x00,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x18,0x08,0xc8,0x88,0x68,0x08,0x18,0x88,0x08,0x00,0x7c,0x38,0x04,0x2c,0x00 -+// 51636 즴 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x04,0x00,0x1f,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0xc8,0x88,0x68,0x08,0x18,0x88,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 51637 즵 ; -+,0x00,0x00,0x00,0x0e,0x00,0x03,0x04,0x00,0x1f,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x48,0x08,0x38,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51638 즶 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x04,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x08,0xc8,0x88,0x68,0x08,0x08,0x08,0x00,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 51639 즷 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x03,0x1c,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0xc8,0x88,0x68,0x08,0x08,0xc8,0x08,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 51640 즸 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x04,0x00,0x1f,0x00,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xc4,0x84,0x64,0x04,0x1c,0x84,0x00,0x08,0x18,0x98,0x64,0x42,0x00 -+// 51641 즹 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x88,0x68,0x08,0x18,0xc8,0x08,0x70,0x88,0x88,0x88,0xf8,0x00 -+// 51642 즺 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x0c,0xc4,0x84,0xe4,0x04,0x0c,0x80,0x00,0x0c,0x60,0x60,0x98,0x04,0x00 -+// 51643 즻 ; -+,0x00,0x00,0x00,0x06,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x18,0x08,0xc8,0x88,0x68,0x08,0x38,0x08,0x00,0x40,0xfc,0x40,0x90,0x0c,0x00 -+// 51644 즼 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x04,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x88,0x68,0x08,0x08,0x88,0x00,0xd8,0x08,0xf8,0x08,0x08,0x00 -+// 51645 즽 ; -+,0x00,0x00,0x00,0x0c,0x01,0x03,0x04,0x00,0x1f,0x00,0x00,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x08,0x08,0x18,0x88,0x00,0x00,0x00,0x18,0x00,0x3c,0x00 -+// 51646 즾 ; -+,0x00,0x00,0x00,0x04,0x01,0x02,0x00,0x00,0x1f,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x18,0x08,0xc8,0x88,0x68,0x08,0x78,0x08,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 51647 즿 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x00,0x00,0x3f,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x68,0x08,0x38,0x88,0xe0,0x04,0x60,0x90,0x90,0xf0,0x00 -+// 51648 지 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x84,0x04,0x84,0x64,0x24,0x04,0x04,0x04,0x04,0x00 -+// 51649 직 ; -+,0x00,0x00,0x00,0x09,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xc4,0x84,0x84,0x04,0x44,0x24,0x00,0xdc,0x04,0x04,0x04,0x00,0x00 -+// 51650 짂 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xc4,0xc4,0x84,0x04,0x44,0x24,0x00,0x8c,0x88,0x80,0x80,0x08,0x00 -+// 51651 짃 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x10,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x08,0xc8,0x68,0x10,0x08,0x10,0x18,0x24,0x42,0x00 -+// 51652 진 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x10,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x04,0x84,0x64,0x04,0x04,0x00,0x00,0x00,0xde,0x00 -+// 51653 짅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x0c,0x04,0x84,0x84,0x04,0x44,0x24,0x00,0xf8,0x10,0x38,0x64,0x82,0x00 -+// 51654 짆 ; -+,0x00,0x00,0x00,0x09,0x00,0x01,0x03,0x04,0x08,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x0c,0xc4,0x84,0x84,0x04,0x44,0x20,0x38,0x06,0x30,0x44,0x44,0x38,0x00 -+// 51655 짇 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x04,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x84,0x84,0x04,0x44,0x24,0x00,0x78,0x00,0x00,0x00,0xfc,0x00 -+// 51656 질 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x08,0xc8,0x88,0x88,0x08,0x68,0x20,0x00,0x08,0x08,0x00,0x00,0xdc,0x00 -+// 51657 짉 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x84,0x84,0x04,0x44,0x24,0x00,0x8c,0x08,0x00,0x00,0x08,0x00 -+// 51658 짊 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x06,0x08,0x10,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x0c,0x84,0x84,0x84,0x04,0xc0,0x20,0x00,0x6c,0x20,0x20,0x28,0x28,0x00 -+// 51659 짋 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x84,0x44,0x24,0x88,0x48,0x68,0x40,0x40,0x48,0x00 -+// 51660 짌 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x03,0x04,0x08,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x08,0xc8,0x88,0x88,0x08,0x48,0x28,0x00,0x10,0x10,0x38,0x24,0x04,0x00 -+// 51661 짍 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0xc0,0x80,0x00,0x00,0x40,0x20,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 51662 짎 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x10,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x08,0x88,0x88,0x88,0x08,0x48,0x28,0x00,0x08,0x08,0x28,0x08,0x7e,0x00 -+// 51663 짏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x00,0x00,0x09,0x01,0x0c,0x08,0x06,0x00,0x00,0x08,0x08,0x88,0x88,0x08,0x08,0x48,0x20,0x38,0x06,0x10,0x24,0x44,0x28,0x00 -+// 51664 짐 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x08,0x10,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0xc8,0xc8,0x88,0x08,0xc8,0x28,0x00,0x98,0x08,0x08,0x08,0x28,0x00 -+// 51665 집 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x0c,0xc4,0x84,0x04,0x04,0xc0,0x00,0x08,0x00,0xf8,0x04,0x04,0x08,0x00 -+// 51666 짒 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x01,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0xc0,0x80,0x80,0x00,0x40,0x20,0x98,0x88,0x90,0x98,0xa6,0x42,0x00 -+// 51667 짓 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x08,0xc8,0x28,0x08,0x68,0x60,0x90,0x08,0x04,0x00 -+// 51668 짔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x84,0x44,0x24,0x10,0x08,0x18,0x94,0x64,0x42,0x00 -+// 51669 징 ; -+,0x00,0x00,0x00,0x09,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x0c,0xc4,0x84,0x84,0x04,0x44,0x20,0x20,0xf0,0x08,0x08,0x88,0x70,0x00 -+// 51670 짖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x10,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x0c,0x84,0x84,0x84,0x04,0x44,0x24,0x00,0xfc,0x40,0xb0,0x08,0x04,0x00 -+// 51671 짗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x04,0x08,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x0c,0xc4,0x84,0x84,0x04,0x40,0x20,0xe0,0x0c,0x40,0xe0,0x18,0x04,0x00 -+// 51672 짘 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x88,0x08,0x48,0x28,0x00,0x88,0x08,0xe8,0x08,0x08,0x00 -+// 51673 짙 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0x88,0x88,0x08,0x08,0xc8,0x28,0x00,0x68,0x00,0x08,0x00,0xfc,0x00 -+// 51674 짚 ; -+,0x00,0x00,0x00,0x11,0x00,0x01,0x03,0x04,0x08,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x08,0x0c,0x88,0x88,0x08,0x08,0x48,0x28,0x00,0xfc,0x10,0x10,0x10,0xfe,0x00 -+// 51675 짛 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x08,0x08,0x48,0x20,0xe0,0x0c,0x60,0x90,0x10,0xf0,0x00 -+// 51676 짜 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x04,0x0c,0x13,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x48,0x48,0x88,0x48,0x28,0x28,0x08,0x08,0x08,0x08,0x00 -+// 51677 짝 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x0a,0x11,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0xcf,0x28,0x28,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 51678 짞 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x02,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0xc8,0xcf,0x28,0x28,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 51679 짟 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0xc8,0xcf,0x28,0x28,0x00,0x10,0x10,0x38,0x24,0x46,0x00 -+// 51680 짠 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x0e,0x0b,0x11,0x02,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x48,0x88,0xce,0x28,0x28,0x08,0x08,0x00,0x00,0x00,0x00 -+// 51681 짡 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x03,0x01,0x00,0x00,0x19,0x08,0x08,0x0b,0x04,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0xce,0x28,0x08,0x00,0xf0,0x20,0x30,0x48,0x84,0x00 -+// 51682 짢 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x02,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0xcf,0x28,0x08,0x70,0x0c,0x30,0x48,0x88,0x78,0x00 -+// 51683 짣 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0a,0x11,0x02,0x00,0x07,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xc8,0xcf,0x68,0x28,0x00,0xf8,0x00,0x00,0x00,0xfc,0x00 -+// 51684 짤 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0xcf,0x28,0x00,0x00,0x10,0x10,0x00,0x00,0xfc,0x00 -+// 51685 짥 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x0a,0x01,0x02,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0xcf,0x28,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51686 짦 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0xcf,0x28,0x08,0x00,0x48,0x48,0x48,0x48,0x70,0x00 -+// 51687 짧 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x00,0x0f,0x00,0x0a,0x08,0x0a,0x00,0x00,0x00,0x00,0x08,0xe8,0x48,0x88,0xcf,0x28,0x00,0x98,0x48,0x48,0x48,0x48,0x00,0x00 -+// 51688 짨 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x02,0x00,0x01,0x01,0x0d,0x08,0x0f,0x00,0x00,0x10,0x08,0xe8,0x48,0x88,0xcf,0x28,0x08,0x00,0x10,0x10,0x30,0x24,0x44,0x00 -+// 51689 짩 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x03,0x00,0x00,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0xe8,0x48,0x88,0xcf,0x28,0x08,0x00,0x40,0x40,0x40,0x40,0x3c,0x00 -+// 51690 짪 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x0a,0x11,0x02,0x00,0x07,0x01,0x0e,0x08,0x04,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0xcf,0x28,0x08,0x00,0x70,0x48,0x40,0x10,0xfc,0x00 -+// 51691 짫 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x00,0x01,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0xc8,0x48,0x88,0xc8,0x28,0x00,0x00,0x7c,0x10,0x04,0x44,0x38,0x00 -+// 51692 짬 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0a,0x01,0x02,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0xc8,0x48,0x88,0x8f,0x68,0x20,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 51693 짭 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x0a,0x11,0x02,0x00,0x02,0x03,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xcf,0x28,0x08,0x00,0x18,0x08,0x08,0x08,0xf8,0x00 -+// 51694 짮 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x01,0x08,0x07,0x04,0x04,0x00,0x00,0x00,0x10,0x08,0xe8,0x48,0x88,0xcf,0x28,0x08,0x10,0x90,0x90,0xa8,0xa4,0x40,0x00 -+// 51695 짯 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0a,0x11,0x02,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x48,0x48,0xc8,0x8f,0x28,0x28,0x08,0x40,0x40,0xa0,0x18,0x0c,0x00 -+// 51696 짰 ; -+,0x00,0x00,0x00,0x07,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xcf,0x28,0x08,0x00,0x10,0x10,0xa8,0x64,0x40,0x00 -+// 51697 짱 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0a,0x11,0x02,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0xcf,0x28,0x08,0x48,0xe0,0x10,0x08,0x10,0xf0,0x00 -+// 51698 짲 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0a,0x11,0x02,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0xc8,0x48,0xc8,0xcf,0x28,0x08,0x00,0xf8,0xc0,0xa0,0x18,0x04,0x00 -+// 51699 짳 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xe8,0x48,0xc8,0xcf,0x28,0x08,0xc0,0x00,0xc0,0xc0,0x18,0x04,0x00 -+// 51700 짴 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0a,0x11,0x02,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0xcf,0x28,0x08,0x00,0x98,0x08,0xd8,0x08,0x00,0x00 -+// 51701 짵 ; -+,0x00,0x00,0x00,0x06,0x02,0x04,0x0a,0x11,0x02,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0xcf,0x28,0x08,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 51702 짶 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x0a,0x11,0x02,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x10,0x08,0xc8,0x48,0xc8,0xcf,0x28,0x08,0x00,0xf8,0x30,0x10,0x20,0xfc,0x00 -+// 51703 짷 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x0a,0x11,0x02,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xe8,0x48,0xc8,0xcf,0x28,0x08,0xe0,0x0c,0x40,0x10,0x10,0xe0,0x00 -+// 51704 째 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x04,0x0b,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x94,0x94,0x14,0x9c,0x54,0x54,0x14,0x14,0x04,0x04,0x00 -+// 51705 짹 ; -+,0x00,0x00,0x00,0x00,0x06,0x05,0x0f,0x12,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x24,0xa4,0xa4,0x3c,0xa4,0x60,0x00,0xdc,0x0c,0x0c,0x0c,0x00,0x00 -+// 51706 짺 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x02,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6c,0x24,0xa4,0xa4,0x3c,0xa4,0x64,0x00,0xbc,0x8c,0x80,0x80,0x00,0x00 -+// 51707 짻 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0f,0x12,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x6c,0x24,0xa4,0x24,0x3c,0xa4,0x60,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 51708 짼 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x0d,0x13,0x02,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0xa4,0x24,0xbc,0x64,0x24,0x24,0x24,0x00,0x04,0x00,0x00 -+// 51709 짽 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0d,0x12,0x20,0x00,0x08,0x08,0x08,0x08,0x0c,0x00,0x00,0x08,0x68,0x28,0xa8,0x28,0x28,0xa8,0x68,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 51710 짾 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x0f,0x02,0x04,0x00,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x10,0x48,0x28,0xa8,0x28,0x28,0xe8,0x28,0x70,0x0c,0x30,0x48,0x88,0x70,0x00 -+// 51711 짿 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x12,0x02,0x04,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x48,0x20,0xa0,0xa0,0x28,0xa0,0x60,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 51712 쨀 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x0d,0x12,0x04,0x00,0x01,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x48,0x28,0xa8,0x28,0x28,0xa8,0x68,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x00 -+// 51713 쨁 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xa4,0xa4,0xbc,0x64,0x24,0x00,0xac,0x04,0x04,0x00,0x00,0x00 -+// 51714 쨂 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x02,0x02,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xbc,0x64,0x24,0x00,0xac,0x24,0x24,0x24,0x20,0x00 -+// 51715 쨃 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x06,0x01,0x02,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0xc4,0x84,0x94,0x64,0x24,0x00,0x64,0x24,0x24,0x24,0x24,0x00 -+// 51716 쨄 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x01,0x02,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x94,0x64,0x24,0x10,0x88,0x88,0x18,0x24,0x02,0x00 -+// 51717 쨅 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x06,0x09,0x02,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0xc4,0x84,0x94,0x44,0x24,0x00,0xfc,0x20,0x38,0x20,0x3e,0x00 -+// 51718 쨆 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x07,0x01,0x02,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xbc,0x64,0x24,0x00,0x44,0x08,0x28,0x28,0x6e,0x00 -+// 51719 쨇 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x07,0x01,0x02,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xb4,0x64,0x24,0x38,0x02,0x10,0x24,0x04,0x2c,0x00 -+// 51720 쨈 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x05,0x0b,0x02,0x04,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x34,0xa4,0x64,0x00,0x0c,0x04,0x04,0x00,0xb8,0x00 -+// 51721 쨉 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x12,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xbc,0x64,0x24,0x08,0x04,0x8c,0x04,0x04,0xfc,0x00 -+// 51722 쨊 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x0f,0x01,0x02,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0xb4,0x64,0x24,0x00,0x88,0x88,0x98,0x86,0xa2,0x00 -+// 51723 쨋 ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x0f,0x02,0x02,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x1c,0x44,0x44,0x44,0x20,0x60,0x90,0x0c,0x04,0x00 -+// 51724 쨌 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x0b,0x02,0x02,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0xbc,0x64,0x24,0x00,0x08,0x08,0x94,0x66,0x42,0x00 -+// 51725 쨍 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x24,0xb4,0x64,0x24,0x20,0x88,0x88,0x88,0xd8,0x00 -+// 51726 쨎 ; -+,0x00,0x00,0x00,0x00,0x02,0x04,0x03,0x01,0x02,0x04,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0x84,0x84,0x94,0x64,0x00,0x00,0xe0,0x40,0x90,0x0c,0x04,0x00 -+// 51727 쨏 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x0d,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0x2c,0xa4,0x64,0x00,0x00,0xfc,0x40,0x90,0x0c,0x00 -+// 51728 쨐 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x03,0x02,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0xa4,0x34,0xa4,0x64,0x00,0x0c,0x04,0x3c,0x04,0x04,0x00 -+// 51729 쨑 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x0b,0x01,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x84,0x84,0x94,0x64,0x24,0x00,0x7c,0x00,0x78,0x00,0x0c,0x00 -+// 51730 쨒 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x05,0x03,0x02,0x04,0x00,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x04,0x24,0xa4,0xa4,0x3c,0xa4,0x64,0x00,0x1c,0x10,0x10,0x90,0xfe,0x00 -+// 51731 쨓 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x06,0x09,0x02,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x94,0x54,0x34,0x70,0x00,0xe0,0x70,0x88,0x88,0x20 -+// 51732 쨔 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x13,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xe8,0x48,0x4f,0x88,0x48,0x28,0x0e,0x08,0x08,0x08,0x08,0x00 -+// 51733 쨕 ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x0a,0x11,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0xc8,0x2f,0x08,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 51734 쨖 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0a,0x11,0x02,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xe8,0x4b,0x48,0xc8,0x2e,0x08,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 51735 쨗 ; -+,0x00,0x00,0x00,0x1e,0x04,0x04,0x0a,0x01,0x02,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xe8,0x4a,0x48,0xc8,0x2e,0x08,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 51736 쨘 ; -+,0x00,0x00,0x00,0x00,0x07,0x04,0x0c,0x03,0x01,0x02,0x04,0x03,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x48,0x4f,0x88,0xc8,0x28,0x28,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 51737 쨙 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x01,0x02,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x10,0x08,0xe8,0x4f,0xc8,0xc8,0x2e,0x08,0x00,0xf0,0x30,0x30,0x48,0x84,0x00 -+// 51738 쨚 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x08,0x04,0x04,0x05,0x06,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0xc8,0x2f,0x08,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 51739 쨛 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0a,0x11,0x02,0x04,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x48,0x4a,0x48,0xc8,0x2f,0x08,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 51740 쨜 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x02,0x00,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0xe8,0x4a,0x88,0xc8,0x2f,0x08,0x00,0x98,0x10,0x00,0x00,0xfc,0x00 -+// 51741 쨝 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x00,0x0f,0x01,0x0f,0x08,0x0d,0x04,0x00,0x18,0x08,0xe8,0x4b,0x48,0xc8,0x2f,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 51742 쨞 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x02,0x00,0x0f,0x01,0x09,0x08,0x0f,0x00,0x00,0x18,0x08,0xe8,0x4f,0x88,0xc8,0x2f,0x08,0x00,0x48,0x48,0x48,0x48,0x78,0x00 -+// 51743 쨟 ; -+,0x00,0x00,0x00,0x1f,0x06,0x04,0x0a,0x11,0x02,0x00,0x02,0x00,0x1a,0x08,0x0e,0x00,0x00,0x18,0x08,0xe8,0x4f,0x48,0xc8,0x2f,0x08,0x08,0x48,0x48,0x48,0x48,0x48,0x00 -+// 51744 쨠 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x10,0x08,0xe8,0x48,0x48,0xc8,0x2f,0x08,0x00,0x98,0x10,0x18,0x24,0x42,0x00 -+// 51745 쨡 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x08,0xe8,0x4a,0x48,0xc8,0x2f,0x08,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 51746 쨢 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x05,0x01,0x0c,0x08,0x04,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x2f,0x08,0x00,0x58,0x48,0x28,0x00,0xfc,0x00 -+// 51747 쨣 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0xe8,0x4a,0x48,0xc8,0x2f,0x08,0x30,0x04,0x10,0x24,0x44,0x28,0x00 -+// 51748 쨤 ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x0a,0x11,0x02,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x18,0x48,0x48,0x48,0xc8,0x2f,0x08,0x00,0xf8,0x08,0x00,0x10,0x00,0x00 -+// 51749 쨥 ; -+,0x00,0x00,0x00,0x06,0x02,0x04,0x0a,0x11,0x02,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0xc8,0x2f,0x08,0x00,0x08,0x18,0x08,0x08,0x08,0x00 -+// 51750 쨦 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0xe8,0x4a,0x48,0xc8,0x2f,0x08,0x10,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 51751 쨧 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0a,0x11,0x02,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x08,0x48,0x48,0xc8,0x6e,0x28,0x88,0x40,0xc0,0xb0,0x18,0x04,0x00 -+// 51752 쨨 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0xe8,0x4f,0x48,0xc8,0x2f,0x08,0x10,0x18,0x10,0x98,0x24,0x40,0x00 -+// 51753 쨩 ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x0a,0x11,0x02,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x48,0x48,0xc8,0x2f,0x08,0x48,0xe0,0x10,0x08,0x18,0xf0,0x00 -+// 51754 쨪 ; -+,0x00,0x00,0x00,0x0e,0x04,0x04,0x0a,0x11,0x02,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0xe8,0x4a,0x48,0xc8,0x2f,0x08,0x00,0xc0,0xc0,0xb0,0x08,0x04,0x00 -+// 51755 쨫 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xe8,0x4f,0x48,0xc8,0x2f,0x08,0xe0,0x00,0xe0,0x40,0x98,0x04,0x00 -+// 51756 쨬 ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x0a,0x11,0x02,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x48,0x48,0xc8,0x2e,0x28,0x00,0x98,0x18,0xc8,0x08,0x00,0x00 -+// 51757 쨭 ; -+,0x00,0x00,0x00,0x07,0x02,0x04,0x0a,0x11,0x00,0x00,0x03,0x02,0x01,0x00,0x01,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x2f,0x08,0x00,0xf8,0x00,0x38,0x00,0xfc,0x00 -+// 51758 쨮 ; -+,0x00,0x00,0x00,0x06,0x06,0x04,0x0a,0x11,0x02,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0xc8,0x2e,0x08,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 51759 쨯 ; -+,0x00,0x00,0x00,0x1f,0x02,0x04,0x0a,0x11,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0xe8,0x4f,0x48,0xc8,0x2f,0x08,0xe0,0x0c,0x40,0x90,0x10,0xb0,0x00 -+// 51760 쨰 ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x0c,0x03,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0xe4,0xb4,0xa4,0xa4,0x74,0x64,0x24,0x24,0x24,0x04,0x00 -+// 51761 쨱 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0f,0x02,0x02,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0xa4,0xf4,0x64,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 51762 쨲 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x12,0x02,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xbc,0xa4,0x24,0xbc,0x64,0x00,0xbc,0x84,0x84,0x80,0x00,0x00 -+// 51763 쨳 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x03,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0xbc,0xa4,0x24,0xbc,0x64,0x00,0x98,0x90,0x98,0x24,0x42,0x00 -+// 51764 쨴 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x04,0x0b,0x02,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0xb4,0xa4,0xa4,0x74,0x24,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 51765 쨵 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x05,0x03,0x02,0x04,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x34,0x94,0x94,0x84,0x94,0x64,0x00,0xfe,0x10,0x18,0x24,0x82,0x00 -+// 51766 쨶 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x03,0x02,0x00,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x00,0x24,0x24,0xbc,0xa4,0xa4,0x7c,0x24,0x30,0x04,0x30,0x48,0x40,0x38,0x00 -+// 51767 쨷 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x12,0x02,0x04,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x64,0x24,0xac,0xa4,0x24,0xbc,0x64,0x00,0x78,0x00,0x00,0x00,0xfc,0x00 -+// 51768 쨸 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x0d,0x12,0x04,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0xac,0x24,0x24,0xa8,0x60,0x00,0xe8,0x08,0xf8,0x00,0x3c,0x00 -+// 51769 쨹 ; -+,0x00,0x00,0x00,0x00,0x06,0x05,0x0b,0x12,0x04,0x08,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x6c,0x24,0xac,0x24,0xa4,0x6c,0x24,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 51770 쨺 ; -+,0x00,0x00,0x00,0x00,0x07,0x04,0x0f,0x12,0x00,0x00,0x0f,0x01,0x0d,0x08,0x0f,0x00,0x00,0x00,0x6c,0x24,0xac,0x24,0x24,0xac,0x24,0x00,0x6c,0x08,0x08,0x08,0x20,0x00 -+// 51771 쨻 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x00,0x02,0x04,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0xa4,0x74,0x24,0x08,0x44,0x6c,0x44,0x64,0x6c,0x00 -+// 51772 쨼 ; -+,0x00,0x00,0x00,0x00,0x06,0x05,0x0f,0x12,0x00,0x04,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x6c,0x24,0xac,0x24,0x24,0xec,0x20,0x00,0x10,0x10,0x28,0x24,0x42,0x00 -+// 51773 쨽 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x0f,0x03,0x02,0x00,0x0f,0x01,0x0c,0x08,0x0f,0x00,0x00,0x00,0x64,0x24,0xbc,0xa4,0xa4,0x7c,0x24,0x00,0x78,0x40,0x60,0x40,0x3c,0x00 -+// 51774 쨾 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0f,0x12,0x00,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x64,0x24,0xbc,0x24,0x24,0xfc,0x24,0x00,0x50,0x08,0x08,0x28,0x1c,0x00 -+// 51775 쨿 ; -+,0x00,0x00,0x00,0x00,0x0e,0x04,0x0d,0x02,0x00,0x00,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x6c,0x24,0xac,0xa4,0x24,0xec,0x64,0x38,0x04,0x10,0x28,0x44,0x28,0x00 -+// 51776 쩀 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0d,0x12,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x6c,0x24,0xac,0x24,0x24,0xac,0x64,0x00,0x0c,0x08,0x08,0x08,0x00,0x00 -+// 51777 쩁 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x12,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0xac,0xa4,0x24,0xac,0x24,0x00,0x08,0x08,0x08,0x00,0xf8,0x00 -+// 51778 쩂 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x12,0x00,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0xbc,0x24,0xa4,0x7c,0x24,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 51779 쩃 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x02,0x02,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0xbc,0x24,0x24,0xbc,0x64,0x04,0x60,0x40,0x90,0x08,0x04,0x00 -+// 51780 쩄 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x12,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0xa4,0x74,0x24,0x08,0x08,0x08,0x94,0x66,0x42,0x00 -+// 51781 쩅 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x12,0x02,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xbc,0xa4,0x24,0xbc,0x64,0x24,0x30,0x88,0x08,0x88,0xf0,0x00 -+// 51782 쩆 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x03,0x02,0x04,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0x24,0xb4,0x64,0x00,0xfc,0x40,0xa0,0x08,0x04,0x00 -+// 51783 쩇 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x12,0x02,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x24,0xb4,0xa4,0xa4,0x74,0x24,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 51784 쩈 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0d,0x03,0x02,0x04,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xb4,0xa4,0x24,0xb4,0x64,0x00,0xcc,0x04,0xfc,0x04,0x00,0x00 -+// 51785 쩉 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x12,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0xbc,0xa4,0xa4,0x7c,0x24,0x00,0xf8,0x00,0x08,0x00,0xfc,0x00 -+// 51786 쩊 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0d,0x12,0x00,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0xbc,0xa4,0x24,0xbc,0x64,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 51787 쩋 ; -+,0x00,0x00,0x00,0x00,0x06,0x04,0x0b,0x12,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xbc,0xa4,0xa4,0x7c,0x24,0xe0,0x04,0x60,0xf0,0x10,0x90,0x00 -+// 51788 쩌 ; -+,0x00,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x44,0x4c,0x84,0xc4,0x24,0x24,0x04,0x04,0x04,0x04,0x00 -+// 51789 쩍 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0b,0x11,0x02,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x4c,0xc4,0x24,0x04,0x00,0x18,0x0c,0x0c,0x0c,0x08,0x00 -+// 51790 쩎 ; -+,0x00,0x00,0x00,0x0f,0x06,0x04,0x09,0x11,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x5c,0xc4,0x24,0x04,0x00,0xac,0x84,0x84,0x84,0x80,0x00 -+// 51791 쩏 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x09,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0xc4,0xa4,0x04,0x08,0x8c,0x88,0x94,0x92,0xa1,0x00 -+// 51792 쩐 ; -+,0x00,0x00,0x00,0x06,0x02,0x04,0x0e,0x13,0x01,0x02,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x64,0x44,0xbc,0x84,0x64,0x24,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 51793 쩑 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0b,0x11,0x02,0x04,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0xe8,0x48,0xf8,0xc8,0x28,0x08,0x00,0xfc,0x10,0x18,0x24,0x42,0x00 -+// 51794 쩒 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x00,0x00,0x0c,0x04,0x04,0x05,0x02,0x00,0x00,0x00,0x08,0xc8,0x48,0xb8,0xc8,0x28,0x08,0x30,0x06,0x30,0x28,0x44,0x28,0x00 -+// 51795 쩓 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x44,0x4c,0xc4,0x24,0x24,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 51796 쩔 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x09,0x11,0x02,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x0c,0xe4,0x44,0x4c,0xc4,0x24,0x00,0x00,0x08,0x08,0x08,0x00,0x7c,0x00 -+// 51797 쩕 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x02,0x00,0x0f,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0xcc,0xc4,0x24,0x04,0x00,0xac,0x04,0x04,0x00,0x00,0x00 -+// 51798 쩖 ; -+,0x00,0x00,0x00,0x0f,0x06,0x04,0x0a,0x11,0x02,0x00,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0xc8,0x48,0x88,0xc8,0x28,0x08,0x00,0x6c,0x08,0x08,0x08,0x28,0x00 -+// 51799 쩗 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x04,0xc4,0x44,0xbc,0xc4,0x24,0x04,0x08,0x44,0x6c,0x44,0x44,0x6c,0x00 -+// 51800 쩘 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x02,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x0c,0xc4,0x44,0xcc,0xc4,0x24,0x04,0x00,0x98,0x10,0x18,0x24,0x46,0x00 -+// 51801 쩙 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x0c,0xc4,0x44,0xbc,0xc4,0x24,0x00,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 51802 쩚 ; -+,0x00,0x00,0x00,0x0e,0x06,0x04,0x0a,0x11,0x02,0x00,0x07,0x01,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0x44,0x44,0xcc,0xc4,0x24,0x04,0x00,0x40,0x08,0x28,0x08,0x7e,0x00 -+// 51803 쩛 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x0b,0x01,0x00,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x08,0x0c,0xc4,0x44,0xbc,0xc4,0x24,0x00,0x38,0x00,0x10,0x2c,0x44,0x2c,0x00 -+// 51804 쩜 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0b,0x01,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x44,0xfc,0xc4,0x20,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x00 -+// 51805 쩝 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0xc4,0x44,0xcc,0xc4,0x24,0x04,0x00,0x08,0x88,0x08,0x08,0x88,0x00 -+// 51806 쩞 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x02,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0xc4,0x44,0xfc,0xc4,0x24,0x04,0x18,0x88,0x98,0x9c,0xa4,0x82,0x00 -+// 51807 쩟 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x09,0x11,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x7c,0xc4,0x24,0x04,0x44,0x20,0x60,0xd0,0x0c,0x06,0x00 -+// 51808 쩠 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x4c,0xc4,0x24,0x04,0x10,0x88,0x08,0x94,0x66,0x42,0x00 -+// 51809 쩡 ; -+,0x00,0x00,0x00,0x0f,0x04,0x06,0x09,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x7c,0xc4,0x24,0x04,0x24,0x70,0x88,0x00,0x88,0xf8,0x00 -+// 51810 쩢 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x09,0x11,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x7c,0xc4,0x24,0x04,0x00,0xfc,0x60,0x90,0x0c,0x00,0x00 -+// 51811 쩣 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x0c,0xc4,0x44,0xfc,0xc4,0x24,0x04,0xe0,0x04,0x60,0x60,0x98,0x04,0x00 -+// 51812 쩤 ; -+,0x00,0x00,0x00,0x0f,0x06,0x06,0x09,0x11,0x02,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x7c,0xc4,0x24,0x04,0x00,0x0c,0x0c,0xc4,0x04,0x00,0x00 -+// 51813 쩥 ; -+,0x00,0x00,0x00,0x16,0x06,0x04,0x0a,0x11,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0x44,0xcc,0xc4,0x24,0x04,0x00,0x78,0x00,0x40,0x00,0xfc,0x00 -+// 51814 쩦 ; -+,0x00,0x00,0x00,0x0f,0x04,0x06,0x09,0x01,0x02,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x64,0x44,0xfc,0xc4,0x24,0x04,0x00,0xfc,0x10,0x90,0x90,0xd6,0x00 -+// 51815 쩧 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x7c,0xc4,0x24,0x04,0xe0,0x06,0x60,0x90,0x88,0xd0,0x00 -+// 51816 쩨 ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x04,0x08,0x05,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x94,0xf4,0x14,0x94,0x94,0x14,0x14,0x14,0x04,0x00 -+// 51817 쩩 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0f,0x12,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x34,0x14,0x94,0x14,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 51818 쩪 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x0f,0x12,0x04,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0x34,0x14,0x94,0x04,0x00,0xbc,0x84,0x84,0x84,0x00,0x00 -+// 51819 쩫 ; -+,0x00,0x00,0x00,0x04,0x04,0x09,0x0f,0x12,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xa4,0x84,0x24,0x04,0x84,0x04,0x10,0x98,0x90,0x98,0x24,0x42,0x00 -+// 51820 쩬 ; -+,0x00,0x00,0x00,0x00,0x17,0x04,0x0d,0x0b,0x02,0x02,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x84,0x84,0xa4,0x04,0x84,0x44,0x04,0x04,0x00,0x00,0x7c,0x00 -+// 51821 쩭 ; -+,0x00,0x00,0x00,0x00,0x06,0x05,0x0f,0x02,0x00,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x04,0x94,0x94,0x94,0x14,0x94,0x54,0x00,0xfc,0x10,0x18,0x24,0x82,0x00 -+// 51822 쩮 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0b,0x12,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0xb4,0x14,0x94,0x14,0x30,0x0e,0x10,0x4c,0x44,0x38,0x00 -+// 51823 쩯 ; -+,0x00,0x00,0x00,0x00,0x04,0x09,0x0f,0x12,0x04,0x00,0x03,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x2c,0xa4,0x84,0x24,0x24,0x80,0x00,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 51824 쩰 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x0f,0x12,0x04,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xa4,0x84,0x24,0x24,0x80,0x00,0x00,0x0c,0x0c,0x00,0x00,0xfe,0x00 -+// 51825 쩱 ; -+,0x00,0x00,0x00,0x0f,0x04,0x05,0x0b,0x12,0x00,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x94,0x34,0x14,0x94,0x14,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 51826 쩲 ; -+,0x00,0x00,0x00,0x04,0x04,0x05,0x0b,0x12,0x04,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x94,0xb4,0x14,0x94,0x10,0x04,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 51827 쩳 ; -+,0x00,0x00,0x00,0x04,0x04,0x05,0x0d,0x12,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x14,0x94,0x14,0x08,0x64,0x3c,0x24,0x24,0x24,0x00 -+// 51828 쩴 ; -+,0x00,0x00,0x00,0x07,0x04,0x0d,0x0b,0x02,0x04,0x0c,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x94,0x94,0x74,0x14,0x94,0x00,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 51829 쩵 ; -+,0x00,0x00,0x00,0x04,0x04,0x05,0x0f,0x12,0x04,0x08,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x24,0x94,0x94,0x34,0x14,0x94,0x14,0x00,0x60,0x20,0x20,0x20,0x00,0x00 -+// 51830 쩶 ; -+,0x00,0x00,0x00,0x06,0x04,0x05,0x0b,0x12,0x00,0x00,0x07,0x00,0x05,0x04,0x06,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x94,0x14,0x00,0xa8,0x0c,0x20,0x08,0x7e,0x00 -+// 51831 쩷 ; -+,0x00,0x00,0x00,0x06,0x04,0x05,0x0f,0x12,0x04,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x94,0x94,0x34,0x14,0x94,0x10,0x38,0x56,0x18,0x24,0x04,0x38,0x00 -+// 51832 쩸 ; -+,0x00,0x00,0x00,0x04,0x04,0x05,0x0f,0x12,0x04,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x14,0x14,0x94,0x14,0x00,0xfc,0x04,0x04,0x04,0x80,0x00 -+// 51833 쩹 ; -+,0x00,0x00,0x00,0x02,0x04,0x05,0x0b,0x12,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0x74,0x14,0x94,0x10,0x08,0x04,0xfc,0x04,0x84,0x84,0x00 -+// 51834 쩺 ; -+,0x00,0x00,0x00,0x04,0x04,0x05,0x0f,0x12,0x04,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x2c,0x94,0x94,0x34,0x14,0x94,0x04,0x98,0x88,0x98,0x94,0xa2,0x40,0x00 -+// 51835 쩻 ; -+,0x00,0x00,0x00,0x04,0x04,0x05,0x0f,0x12,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x2c,0x94,0x94,0x34,0x14,0x94,0x04,0x04,0x60,0x60,0x90,0x08,0x04,0x00 -+// 51836 쩼 ; -+,0x00,0x00,0x00,0x06,0x04,0x05,0x0b,0x12,0x00,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0xd4,0x14,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 51837 쩽 ; -+,0x00,0x00,0x00,0x06,0x04,0x05,0x0f,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x14,0x94,0x14,0x04,0x70,0x88,0x84,0x88,0x78,0x00 -+// 51838 쩾 ; -+,0x00,0x00,0x00,0x07,0x04,0x05,0x0b,0x12,0x04,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x08,0x24,0x94,0x94,0x74,0x14,0x94,0x14,0x00,0xe0,0x40,0x90,0x0c,0x04,0x00 -+// 51839 쩿 ; -+,0x00,0x00,0x00,0x07,0x04,0x05,0x0b,0x12,0x04,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x08,0x24,0x94,0x94,0x34,0x14,0x94,0x04,0xe0,0x04,0xe0,0x60,0x98,0x04,0x00 -+// 51840 쪀 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x0b,0x12,0x00,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x94,0x94,0x94,0x14,0x94,0x54,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 51841 쪁 ; -+,0x00,0x00,0x00,0x0f,0x04,0x05,0x0b,0x12,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0x14,0x14,0x94,0x54,0x00,0x7c,0x00,0xfc,0x00,0xfc,0x00 -+// 51842 쪂 ; -+,0x00,0x00,0x00,0x06,0x04,0x05,0x0b,0x12,0x04,0x00,0x07,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x94,0x94,0x34,0x14,0x94,0x14,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 51843 쪃 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x0b,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x14,0x94,0x14,0x60,0x04,0x60,0x90,0x88,0xf0,0x00 -+// 51844 쪄 ; -+,0x00,0x00,0x00,0x00,0x0b,0x04,0x04,0x0a,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x64,0x44,0x84,0xfc,0x24,0x24,0x04,0x04,0x04,0x04,0x00 -+// 51845 쪅 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x09,0x01,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0xdc,0x24,0x04,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 51846 쪆 ; -+,0x00,0x00,0x00,0x0f,0x04,0x06,0x09,0x11,0x02,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x7c,0x44,0xdc,0x24,0x04,0x00,0xac,0x84,0x84,0x84,0x80,0x00 -+// 51847 쪇 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x09,0x11,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x7c,0x44,0xdc,0x24,0x04,0x08,0x88,0x88,0x94,0xa2,0x80,0x00 -+// 51848 쪈 ; -+,0x00,0x00,0x00,0x02,0x06,0x04,0x0c,0x13,0x21,0x00,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0x78,0x88,0xb8,0x48,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 51849 쪉 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x09,0x11,0x02,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0xe4,0x64,0x44,0xdc,0x24,0x04,0x00,0x7e,0x08,0x18,0x24,0x42,0x00 -+// 51850 쪊 ; -+,0x00,0x00,0x00,0x06,0x02,0x04,0x0a,0x11,0x02,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0c,0xc4,0x7c,0x84,0xdc,0x24,0x04,0x38,0x06,0x10,0x04,0xc4,0x38,0x00 -+// 51851 쪋 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x09,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0xc4,0xa4,0x14,0x00,0x0c,0x00,0x00,0x00,0xbe,0x00 -+// 51852 쪌 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0x5c,0x84,0xdc,0x24,0x04,0x00,0x08,0x08,0x00,0x00,0xfe,0x00 -+// 51853 쪍 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x06,0x09,0x00,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x64,0x44,0xc4,0xa4,0x04,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 51854 쪎 ; -+,0x00,0x00,0x00,0x0b,0x02,0x06,0x08,0x11,0x02,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xe4,0x5c,0x44,0xa4,0x24,0x00,0x04,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 51855 쪏 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x7c,0x44,0xdc,0x24,0x04,0x08,0x64,0x3c,0x24,0x24,0x24,0x00 -+// 51856 쪐 ; -+,0x00,0x00,0x00,0x00,0x02,0x06,0x02,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x64,0x44,0xdc,0x24,0x04,0x00,0x88,0x88,0x18,0x24,0x42,0x00 -+// 51857 쪑 ; -+,0x00,0x00,0x00,0x03,0x02,0x06,0x05,0x00,0x00,0x00,0x07,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x04,0xe4,0x3c,0x44,0xdc,0xa4,0x04,0x00,0xbc,0xa0,0xbc,0x20,0xbe,0x00 -+// 51858 쪒 ; -+,0x00,0x00,0x00,0x03,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0xe4,0x6c,0x44,0xdc,0x24,0x04,0x00,0x08,0x0c,0x28,0x08,0x7e,0x00 -+// 51859 쪓 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x0a,0x11,0x02,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x6c,0x44,0xdc,0x24,0x04,0x38,0x00,0x10,0x2c,0x04,0x24,0x00 -+// 51860 쪔 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x03,0x01,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0xc8,0x78,0x88,0xf8,0x28,0x00,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 51861 쪕 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x0a,0x11,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x6c,0x84,0xdc,0x24,0x04,0x08,0x08,0xf8,0x00,0x08,0x08,0x00 -+// 51862 쪖 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x0a,0x11,0x02,0x00,0x0c,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0xe4,0x7c,0x44,0xdc,0x24,0x04,0x18,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 51863 쪗 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x09,0x11,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xe4,0x64,0x44,0xdc,0x24,0x04,0x44,0x20,0x60,0xd8,0x8c,0x02,0x00 -+// 51864 쪘 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x0a,0x01,0x00,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x04,0x44,0x64,0x44,0xcc,0x24,0x04,0x00,0x08,0x08,0x98,0x44,0x22,0x00 -+// 51865 쪙 ; -+,0x00,0x00,0x00,0x03,0x02,0x04,0x0b,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x64,0x44,0xdc,0x24,0x04,0x24,0x30,0x88,0x84,0x88,0xd8,0x00 -+// 51866 쪚 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x09,0x11,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xe4,0x7c,0x44,0xdc,0x24,0x04,0x00,0xfc,0x60,0x90,0x0c,0x00,0x00 -+// 51867 쪛 ; -+,0x00,0x00,0x00,0x0f,0x04,0x06,0x08,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x04,0xe4,0x5c,0x84,0xfc,0x24,0x04,0xe0,0x0c,0x40,0x70,0x0c,0x00,0x00 -+// 51868 쪜 ; -+,0x00,0x00,0x00,0x03,0x02,0x04,0x0a,0x11,0x02,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x64,0x44,0xdc,0x24,0x04,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 51869 쪝 ; -+,0x00,0x00,0x00,0x03,0x02,0x04,0x0a,0x01,0x02,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x64,0x44,0xdc,0x24,0x04,0x00,0x7c,0x00,0x38,0x00,0xfc,0x00 -+// 51870 쪞 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0c,0x0b,0x01,0x02,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x0c,0xc0,0x78,0x80,0xf8,0x20,0x00,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 51871 쪟 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x5c,0xc4,0xdc,0x24,0x04,0xe0,0x04,0x60,0x90,0x08,0x90,0x00 -+// 51872 쪠 ; -+,0x00,0x00,0x00,0x00,0x00,0x16,0x04,0x0c,0x05,0x12,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0xb4,0x14,0x74,0x94,0x54,0x14,0x14,0x14,0x04,0x00 -+// 51873 쪡 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x0f,0x12,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0xb4,0x14,0x74,0x94,0x04,0x00,0xfc,0x04,0x04,0x04,0x00,0x00 -+// 51874 쪢 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x0f,0x12,0x04,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0xa4,0x24,0x64,0x84,0x04,0x00,0xbc,0x80,0x80,0x00,0x00,0x00 -+// 51875 쪣 ; -+,0x00,0x00,0x00,0x04,0x05,0x09,0x0f,0x12,0x04,0x00,0x0d,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x84,0xa4,0x24,0x64,0x84,0x04,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 51876 쪤 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x0d,0x03,0x02,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0xf4,0x14,0x74,0x94,0x04,0x04,0x04,0x00,0x04,0x00,0x00 -+// 51877 쪥 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x0f,0x12,0x04,0x00,0x08,0x08,0x00,0x05,0x00,0x00,0x00,0x00,0x24,0x94,0xb4,0x14,0x74,0x94,0x04,0x00,0xf8,0x10,0x28,0x44,0x80,0x00 -+// 51878 쪦 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x0f,0x12,0x04,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x2c,0x04,0xa4,0x24,0x64,0x84,0x04,0x30,0x04,0x30,0x48,0x40,0x38,0x00 -+// 51879 쪧 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x0f,0x12,0x04,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x2c,0x04,0xa4,0x24,0x64,0x84,0x04,0x00,0xf8,0x00,0x00,0x00,0xfc,0x00 -+// 51880 쪨 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x0f,0x12,0x04,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x2c,0x84,0xa4,0x24,0x64,0x84,0x00,0x00,0x0c,0x08,0x38,0x00,0xfe,0x00 -+// 51881 쪩 ; -+,0x00,0x00,0x00,0x06,0x04,0x05,0x0b,0x12,0x04,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0xf4,0x14,0x74,0x94,0x10,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 51882 쪪 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0f,0x12,0x04,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0xb4,0x14,0x74,0x94,0x14,0x00,0xa4,0x24,0x24,0x24,0x20,0x00 -+// 51883 쪫 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0f,0x12,0x00,0x04,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x94,0xb4,0x14,0x74,0x94,0x04,0x08,0x44,0x3c,0x04,0x24,0x24,0x00 -+// 51884 쪬 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0f,0x12,0x04,0x08,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x84,0xa4,0x04,0x64,0x84,0x00,0x10,0x18,0x90,0x18,0x24,0x42,0x00 -+// 51885 쪭 ; -+,0x00,0x00,0x00,0x04,0x04,0x09,0x0d,0x12,0x04,0x00,0x0f,0x01,0x0d,0x08,0x0e,0x00,0x00,0x00,0x24,0x84,0xa4,0x24,0x64,0x84,0x04,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 51886 쪮 ; -+,0x00,0x00,0x00,0x06,0x04,0x05,0x0f,0x12,0x04,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0xb4,0x14,0x74,0x94,0x14,0x00,0x20,0x08,0x28,0x28,0x7e,0x00 -+// 51887 쪯 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0d,0x12,0x00,0x00,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x24,0x94,0x94,0x14,0x74,0x94,0x14,0x38,0x06,0x10,0x2c,0x44,0x2c,0x00 -+// 51888 쪰 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0d,0x12,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x74,0x94,0x14,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 51889 쪱 ; -+,0x00,0x00,0x00,0x07,0x04,0x0d,0x0f,0x12,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0xf4,0x14,0x74,0x84,0x04,0x08,0x04,0xfc,0x04,0x04,0x88,0x00 -+// 51890 쪲 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x0f,0x12,0x04,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x94,0xf4,0x14,0x74,0x84,0x00,0x98,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 51891 쪳 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x0d,0x13,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0x64,0xa4,0xa4,0x04,0x60,0x60,0x90,0x08,0x04,0x00 -+// 51892 쪴 ; -+,0x00,0x00,0x00,0x05,0x04,0x0d,0x0b,0x12,0x04,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x84,0xe4,0x04,0x64,0x84,0x00,0x18,0x08,0x18,0x94,0x66,0x42,0x00 -+// 51893 쪵 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x0f,0x12,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x64,0xa4,0x24,0x24,0x70,0x88,0x08,0x88,0xf0,0x00 -+// 51894 쪶 ; -+,0x00,0x00,0x00,0x04,0x05,0x09,0x0f,0x12,0x04,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x24,0x84,0xe4,0x04,0x64,0x84,0x04,0x00,0xfc,0x40,0xb0,0x08,0x04,0x00 -+// 51895 쪷 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x0f,0x12,0x04,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x84,0xa4,0x24,0x64,0x84,0x00,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 51896 쪸 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x0f,0x12,0x04,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0x64,0x84,0x04,0x00,0xcc,0x0c,0xec,0x00,0x00,0x00 -+// 51897 쪹 ; -+,0x00,0x00,0x00,0x04,0x05,0x09,0x0f,0x12,0x04,0x00,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0x64,0xa4,0x00,0x00,0x00,0x00,0x78,0x00,0xfc,0x00 -+// 51898 쪺 ; -+,0x00,0x00,0x00,0x05,0x04,0x09,0x0f,0x12,0x04,0x00,0x07,0x01,0x01,0x00,0x07,0x00,0x00,0x08,0x24,0x84,0xe4,0x04,0x64,0x84,0x04,0x00,0xfc,0x10,0x10,0x10,0xfe,0x00 -+// 51899 쪻 ; -+,0x00,0x00,0x00,0x07,0x04,0x05,0x0f,0x12,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0xf4,0x14,0x74,0x84,0x04,0xe0,0x0c,0x60,0x90,0x10,0xf0,0x00 -+// 51900 쪼 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x08,0x00,0x01,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x10,0xb8,0x46,0x80,0x80,0x40,0x40,0xfe,0x00,0x00,0x00 -+// 51901 쪽 ; -+,0x00,0x00,0x0f,0x02,0x07,0x08,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x80,0x40,0xff,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 51902 쪾 ; -+,0x00,0x00,0x0f,0x02,0x07,0x08,0x01,0x00,0x3f,0x00,0x0d,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0xc0,0x40,0xff,0x00,0x68,0x08,0x08,0x00,0x00,0x00 -+// 51903 쪿 ; -+,0x00,0x00,0x0f,0x02,0x07,0x08,0x01,0x00,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x10,0x30,0xc4,0xc0,0x40,0xff,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 51904 쫀 ; -+,0x00,0x00,0x0f,0x01,0x03,0x04,0x10,0x00,0x00,0x10,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0xb8,0x18,0x10,0xee,0x80,0x40,0x43,0x00,0x00,0x00,0x00,0x18,0x00,0x00 -+// 51905 쫁 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x01,0x00,0x1f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0xc0,0x40,0xfe,0x00,0xf0,0x30,0x30,0x4c,0x80,0x00 -+// 51906 쫂 ; -+,0x00,0x00,0x05,0x03,0x05,0x00,0x00,0x00,0x10,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0x18,0x10,0x38,0xc2,0x40,0x42,0x00,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 51907 쫃 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x01,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x78,0x10,0x30,0x4c,0x80,0x40,0xff,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 51908 쫄 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0x38,0xc2,0x40,0xc6,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 51909 쫅 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x18,0x00,0x07,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0xc0,0x42,0x00,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 51910 쫆 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x38,0xc2,0x40,0x42,0x00,0x00,0x24,0x24,0x20,0x28,0x20,0x00 -+// 51911 쫇 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x78,0x10,0x38,0xc6,0xc0,0x42,0x00,0x08,0x44,0x2c,0x04,0x2c,0x00,0x00 -+// 51912 쫈 ; -+,0x00,0x00,0x03,0x03,0x05,0x08,0x01,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x38,0xc6,0xc0,0x40,0x80,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 51913 쫉 ; -+,0x00,0x00,0x07,0x03,0x05,0x00,0x00,0x00,0x00,0x00,0x07,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x10,0x3c,0xc2,0xc0,0xc7,0x00,0x00,0x60,0x40,0x78,0x40,0x1c,0x00 -+// 51914 쫊 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x1e,0x00,0x01,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x38,0xc6,0xc0,0x42,0x00,0x00,0x00,0x48,0x28,0x00,0xfc,0x00 -+// 51915 쫋 ; -+,0x00,0x00,0x03,0x03,0x05,0x08,0x00,0x00,0x18,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x3c,0xc2,0xc0,0x42,0x00,0x30,0x04,0x10,0x28,0x40,0x38,0x00 -+// 51916 쫌 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x00,0x1f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x80,0x40,0xfe,0x00,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 51917 쫍 ; -+,0x00,0x00,0x07,0x02,0x05,0x08,0x00,0x00,0x1f,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0xc0,0x40,0x80,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 51918 쫎 ; -+,0x00,0x00,0x07,0x02,0x05,0x00,0x00,0x00,0x10,0x01,0x08,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x18,0x10,0x3c,0xc2,0xc0,0x42,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 51919 쫏 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0xc0,0x40,0xfe,0x00,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 51920 쫐 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x18,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x18,0x10,0x38,0xc6,0xc0,0x42,0x00,0x00,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 51921 쫑 ; -+,0x00,0x00,0x0f,0x02,0x07,0x08,0x01,0x00,0x3f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x80,0x40,0xff,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 51922 쫒 ; -+,0x00,0x00,0x03,0x03,0x03,0x08,0x01,0x00,0x1f,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0xc0,0x40,0xfe,0x00,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 51923 쫓 ; -+,0x00,0x00,0x0b,0x02,0x05,0x08,0x00,0x00,0x1e,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x00,0x00,0x18,0x10,0x38,0xc6,0xc0,0x42,0x00,0xc0,0x00,0xe0,0xc0,0x10,0x0c,0x00 -+// 51924 쫔 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x01,0x00,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x78,0x10,0x38,0xc6,0xc0,0x40,0xfe,0x00,0x88,0x08,0xc8,0x08,0x08,0x00 -+// 51925 쫕 ; -+,0x00,0x00,0x01,0x03,0x07,0x08,0x01,0x00,0x1f,0x00,0x07,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0xc0,0x42,0x80,0x00,0xf0,0x00,0x10,0x00,0x30,0x00 -+// 51926 쫖 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x01,0x00,0x3f,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x78,0x10,0x30,0xc4,0x80,0x40,0xfe,0x00,0xd8,0x20,0x20,0x20,0x80,0x00 -+// 51927 쫗 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x19,0x00,0x0f,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x78,0x10,0x3c,0xc2,0xc0,0x42,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 51928 쫘 ; -+,0x00,0x00,0x00,0x02,0x04,0x04,0x0a,0x11,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x88,0x88,0x68,0x0f,0x08,0x38,0x08,0x08,0x08,0x08,0x00 -+// 51929 쫙 ; -+,0x00,0x00,0x00,0x06,0x04,0x0b,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0xc8,0x2f,0x38,0x08,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 51930 쫚 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x01,0x01,0x03,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x48,0x48,0xc8,0x2a,0x18,0x88,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 51931 쫛 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x03,0x01,0x03,0x10,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0xc8,0x2b,0x18,0x88,0x00,0x30,0x10,0x30,0x48,0x04,0x00 -+// 51932 쫜 ; -+,0x00,0x00,0x00,0x04,0x04,0x0c,0x03,0x03,0x01,0x1f,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x18,0x48,0x48,0xc8,0x28,0x0a,0x18,0x88,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 51933 쫝 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x03,0x01,0x03,0x00,0x00,0x08,0x08,0x0b,0x04,0x00,0x00,0x10,0x08,0x48,0xc8,0xc8,0x2a,0x18,0x88,0x00,0x0c,0x30,0x30,0x48,0x84,0x00 -+// 51934 쫞 ; -+,0x00,0x00,0x00,0x0e,0x06,0x03,0x01,0x01,0x1f,0x00,0x08,0x04,0x04,0x05,0x06,0x00,0x00,0x00,0x08,0x48,0x48,0xc8,0x28,0x18,0xc8,0x30,0x00,0xf0,0x78,0x48,0x78,0x00 -+// 51935 쫟 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x03,0x01,0x03,0x10,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x68,0x48,0xc8,0x2a,0x18,0x88,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 51936 쫠 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x01,0x01,0x1f,0x00,0x03,0x00,0x03,0x02,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0xc8,0x28,0x18,0x88,0x00,0xf8,0x00,0xe0,0x00,0xfc,0x00 -+// 51937 쫡 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x01,0x01,0x17,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x08,0x68,0x48,0xc8,0x28,0x08,0xc8,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 51938 쫢 ; -+,0x00,0x00,0x00,0x06,0x06,0x0a,0x01,0x01,0x1f,0x00,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x08,0x68,0x48,0xc8,0x28,0x18,0x88,0x00,0x78,0x48,0x48,0x48,0x40,0x00 -+// 51939 쫣 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x01,0x01,0x13,0x00,0x0b,0x00,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x68,0x48,0xc8,0x28,0x08,0xc8,0x00,0x48,0x48,0x48,0x48,0x48,0x00 -+// 51940 쫤 ; -+,0x00,0x00,0x00,0x0e,0x06,0x0b,0x01,0x01,0x1f,0x00,0x0f,0x00,0x0d,0x00,0x06,0x00,0x00,0x10,0x08,0x68,0x48,0xc8,0x28,0x08,0x88,0x00,0x10,0x10,0x38,0x64,0x84,0x00 -+// 51941 쫥 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x03,0x01,0x3f,0x00,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x48,0xc8,0xc8,0x28,0x18,0xc8,0x00,0x60,0x40,0x40,0x40,0x00,0x00 -+// 51942 쫦 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x03,0x01,0x3f,0x00,0x0b,0x01,0x0c,0x08,0x04,0x00,0x00,0x10,0x08,0xc8,0x88,0xc8,0x0a,0x18,0x88,0x00,0x50,0x08,0x40,0x10,0xfc,0x00 -+// 51943 쫧 ; -+,0x00,0x00,0x00,0x0e,0x06,0x0b,0x03,0x01,0x3f,0x00,0x05,0x01,0x04,0x04,0x04,0x00,0x00,0x10,0x08,0x48,0x48,0xc8,0x28,0x18,0xc8,0x30,0x00,0x10,0x24,0x04,0x38,0x00 -+// 51944 쫨 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x03,0x01,0x1f,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x10,0x08,0xc8,0xc8,0xc8,0x2f,0x18,0x88,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 51945 쫩 ; -+,0x00,0x00,0x00,0x0e,0x06,0x0b,0x01,0x01,0x3f,0x00,0x02,0x01,0x01,0x00,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xc8,0x28,0x08,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51946 쫪 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x11,0x01,0x3f,0x00,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x08,0xc8,0xc8,0xc8,0x28,0x18,0xc8,0x00,0x98,0x90,0x98,0xa4,0x42,0x00 -+// 51947 쫫 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x03,0x01,0x01,0x18,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x08,0xc8,0x48,0xc8,0x2a,0x18,0xc8,0x08,0xc0,0x40,0xa0,0x18,0x0c,0x00 -+// 51948 쫬 ; -+,0x00,0x00,0x00,0x0e,0x06,0x0a,0x01,0x01,0x3f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0xc8,0x48,0xc8,0x28,0x18,0x88,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 51949 쫭 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x13,0x01,0x01,0x18,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0xc8,0xc8,0x2a,0x18,0x88,0x08,0x60,0x10,0x00,0x10,0xf0,0x00 -+// 51950 쫮 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x03,0x01,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x18,0xc8,0xc8,0xc8,0x2e,0x18,0x88,0x00,0x78,0x40,0xe0,0x18,0x0c,0x00 -+// 51951 쫯 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x01,0x01,0x1f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x10,0x08,0x68,0x48,0xc8,0x28,0x08,0xc8,0x00,0xc0,0xfc,0x40,0xb0,0x0c,0x00 -+// 51952 쫰 ; -+,0x00,0x00,0x00,0x0e,0x04,0x02,0x01,0x01,0x01,0x18,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x08,0x68,0x48,0xc8,0x28,0x08,0xc8,0x00,0x10,0x08,0x78,0x08,0x08,0x00 -+// 51953 쫱 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x03,0x01,0x3f,0x00,0x02,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x48,0xc8,0xe8,0x08,0x18,0x88,0x00,0x38,0x00,0xf8,0x00,0xfc,0x00 -+// 51954 쫲 ; -+,0x00,0x00,0x00,0x06,0x04,0x0b,0x03,0x01,0x3f,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x18,0x08,0x48,0x88,0xc8,0x2f,0x18,0x08,0x00,0xf8,0x30,0x10,0x20,0xfc,0x00 -+// 51955 쫳 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x01,0x01,0x1f,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0xc8,0x28,0x18,0xc8,0x80,0x04,0xe0,0x90,0x10,0xe0,0x00 -+// 51956 쫴 ; -+,0x00,0x00,0x00,0x00,0x16,0x00,0x0d,0x12,0x06,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x94,0x14,0xd4,0x1c,0x34,0x14,0x14,0x14,0x04,0x04,0x00 -+// 51957 쫵 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x12,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0xa4,0xa4,0x24,0x74,0x34,0xe4,0x00,0x00,0x04,0x04,0x04,0x00,0x00 -+// 51958 쫶 ; -+,0x00,0x00,0x00,0x05,0x04,0x0d,0x12,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0xa4,0x24,0x24,0x74,0x34,0xe4,0x00,0x38,0x84,0x84,0x80,0x00,0x00 -+// 51959 쫷 ; -+,0x00,0x00,0x00,0x00,0x09,0x0d,0x12,0x02,0x03,0x1c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0xa4,0x24,0x24,0xe4,0x3c,0xe4,0x00,0x10,0x90,0x98,0x24,0x46,0x00 -+// 51960 쫸 ; -+,0x00,0x00,0x00,0x00,0x1f,0x09,0x0d,0x02,0x02,0x03,0x1c,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0x94,0x14,0x94,0x14,0x24,0xe4,0x04,0x04,0x00,0x00,0xfc,0x00 -+// 51961 쫹 ; -+,0x00,0x00,0x00,0x1f,0x01,0x0d,0x02,0x02,0x03,0x1c,0x08,0x0c,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0xb4,0x14,0x94,0x54,0x34,0xa4,0x00,0xfc,0x10,0x30,0x2c,0x84,0x00 -+// 51962 쫺 ; -+,0x00,0x00,0x00,0x00,0x04,0x0d,0x02,0x02,0x03,0x1c,0x08,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x74,0x34,0xe4,0x30,0x00,0xfc,0x38,0x40,0x38,0x00 -+// 51963 쫻 ; -+,0x00,0x00,0x00,0x06,0x04,0x0d,0x12,0x02,0x03,0x1e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0xb4,0x94,0x14,0x54,0x14,0xe4,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 51964 쫼 ; -+,0x00,0x00,0x00,0x00,0x05,0x0d,0x12,0x02,0x03,0x18,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x6c,0x24,0xa4,0x24,0xac,0x2c,0xa4,0x00,0xc8,0x08,0xf8,0x00,0xfe,0x00 -+// 51965 쫽 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x12,0x02,0x02,0x3c,0x0d,0x00,0x0f,0x04,0x07,0x00,0x00,0x0c,0x64,0xa4,0xa4,0x24,0xa4,0x34,0xa4,0x00,0x2c,0x04,0x04,0x04,0x00,0x00 -+// 51966 쫾 ; -+,0x00,0x00,0x00,0x00,0x04,0x0d,0x12,0x02,0x03,0x1c,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x24,0xa4,0xa4,0xa4,0x74,0x34,0xa4,0x00,0xac,0x24,0x24,0x24,0x20,0x00 -+// 51967 쫿 ; -+,0x00,0x00,0x00,0x00,0x04,0x0d,0x02,0x02,0x03,0x1c,0x0f,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0x74,0x34,0xe4,0x00,0xcc,0x6c,0x24,0x04,0x2c,0x00 -+// 51968 쬀 ; -+,0x00,0x00,0x00,0x00,0x04,0x0d,0x02,0x02,0x03,0x1c,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0xa4,0x3c,0xe4,0x00,0x10,0x10,0x38,0x24,0x04,0x00 -+// 51969 쬁 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x02,0x02,0x03,0x1c,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x08,0x64,0xa4,0x24,0x24,0x34,0x24,0xe4,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 51970 쬂 ; -+,0x00,0x00,0x00,0x00,0x05,0x09,0x12,0x02,0x03,0x18,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xac,0x2c,0xa4,0x00,0x4c,0x08,0x28,0x28,0x7e,0x00 -+// 51971 쬃 ; -+,0x00,0x00,0x00,0x00,0x04,0x0d,0x02,0x02,0x02,0x1c,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0xa4,0x34,0xe4,0x20,0x00,0x54,0x38,0x04,0x28,0x00 -+// 51972 쬄 ; -+,0x00,0x00,0x00,0x07,0x09,0x0d,0x00,0x02,0x03,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0xa4,0x24,0x24,0x2c,0x24,0xe4,0x00,0x00,0x0c,0x08,0x08,0x00,0x00 -+// 51973 쬅 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x02,0x06,0x02,0x3c,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xac,0x28,0xe0,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 51974 쬆 ; -+,0x00,0x00,0x00,0x00,0x0d,0x09,0x12,0x06,0x02,0x1c,0x01,0x0c,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xa4,0x3c,0xe4,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 51975 쬇 ; -+,0x00,0x00,0x00,0x04,0x05,0x0d,0x12,0x02,0x03,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0xa4,0x24,0x24,0x74,0x34,0xe4,0x04,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 51976 쬈 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x12,0x02,0x02,0x1c,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0xa4,0x3c,0xe4,0x00,0x10,0x10,0x18,0xa4,0x44,0x00 -+// 51977 쬉 ; -+,0x00,0x00,0x00,0x05,0x01,0x0d,0x02,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0x24,0xa4,0x74,0x34,0xa4,0x24,0x30,0x88,0x88,0x88,0xf8,0x00 -+// 51978 쬊 ; -+,0x00,0x00,0x00,0x1f,0x09,0x0d,0x02,0x02,0x03,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0x94,0x14,0x94,0x54,0x34,0xf4,0x00,0x3c,0x40,0x60,0x98,0x04,0x00 -+// 51979 쬋 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x12,0x02,0x03,0x1c,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0x34,0x24,0xa4,0x00,0xe0,0xfc,0x40,0x90,0x0c,0x00 -+// 51980 쬌 ; -+,0x00,0x00,0x00,0x15,0x01,0x0d,0x02,0x02,0x03,0x1c,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0xb4,0x14,0x94,0x54,0x34,0xa4,0x00,0xcc,0x04,0xfc,0x04,0x00,0x00 -+// 51981 쬍 ; -+,0x00,0x00,0x00,0x04,0x04,0x0d,0x12,0x02,0x02,0x1c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x0c,0x24,0x94,0x94,0x14,0x54,0x34,0xe4,0x00,0x18,0x00,0x38,0x00,0xfc,0x00 -+// 51982 쬎 ; -+,0x00,0x00,0x00,0x1f,0x09,0x07,0x02,0x02,0x03,0x1c,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x7c,0x24,0xa4,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 51983 쬏 ; -+,0x00,0x00,0x00,0x00,0x04,0x0d,0x02,0x02,0x03,0x1c,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0xa4,0x24,0xf4,0x34,0xe4,0xe0,0x04,0xe0,0x90,0x10,0xf0,0x00 -+// 51984 쬐 ; -+,0x00,0x00,0x00,0x16,0x02,0x04,0x0a,0x11,0x03,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x44,0xc4,0x34,0x04,0x0c,0xec,0x04,0x04,0x04,0x04,0x00 -+// 51985 쬑 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x64,0x44,0xa4,0x14,0x0c,0xc4,0x00,0x00,0x0c,0x0c,0x08,0x08,0x00 -+// 51986 쬒 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x11,0x01,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x68,0x48,0xa8,0x08,0x08,0x88,0x00,0x78,0x88,0x88,0x88,0x08,0x00 -+// 51987 쬓 ; -+,0x00,0x00,0x00,0x1e,0x04,0x0a,0x11,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x68,0x48,0xe8,0x08,0x08,0xc8,0x00,0x18,0x98,0x98,0xa4,0x42,0x00 -+// 51988 쬔 ; -+,0x00,0x00,0x00,0x0e,0x04,0x06,0x01,0x03,0x00,0x1f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x0c,0xe4,0x44,0xc4,0x34,0x04,0x8c,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 51989 쬕 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x01,0x01,0x1f,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0x68,0x48,0xa8,0x08,0x08,0x88,0x00,0xfc,0x10,0x38,0x44,0x80,0x00 -+// 51990 쬖 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x01,0x00,0x1f,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x0c,0x64,0x44,0xa4,0x14,0x8c,0xc0,0x38,0x00,0xf0,0x28,0xc4,0x38,0x00 -+// 51991 쬗 ; -+,0x00,0x00,0x00,0x06,0x04,0x0a,0x11,0x01,0x1f,0x00,0x03,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x68,0x48,0xa8,0x08,0x08,0x80,0x00,0xf8,0x00,0x00,0x00,0x3c,0x00 -+// 51992 쬘 ; -+,0x00,0x00,0x00,0x06,0x04,0x08,0x01,0x01,0x03,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x08,0x68,0x48,0xa8,0x18,0x08,0xc8,0x00,0xf8,0x08,0xf8,0x00,0x7e,0x00 -+// 51993 쬙 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x01,0x00,0x1f,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x0c,0x64,0x44,0xa4,0x94,0x8c,0x80,0x00,0xbc,0x84,0x04,0x04,0x00,0x00 -+// 51994 쬚 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x01,0x01,0x01,0x00,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0xe8,0x48,0xe8,0x18,0x08,0xc8,0x00,0x6c,0x20,0x20,0x28,0x20,0x00 -+// 51995 쬛 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x01,0x00,0x0f,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x04,0x24,0x44,0xb4,0x84,0x8c,0xc4,0x00,0x4c,0x2c,0x24,0x24,0x24,0x00 -+// 51996 쬜 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x01,0x00,0x1f,0x00,0x07,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x0c,0xe4,0x44,0xa4,0x14,0x88,0x80,0x10,0x98,0x10,0x38,0x24,0x00,0x00 -+// 51997 쬝 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x01,0x00,0x01,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x44,0xe4,0x94,0x8c,0xc4,0x00,0xfc,0x20,0x3c,0x20,0x3c,0x00 -+// 51998 쬞 ; -+,0x00,0x00,0x00,0x02,0x06,0x09,0x01,0x00,0x1f,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x64,0x44,0xb4,0x04,0x8c,0x80,0x04,0x08,0x08,0x28,0x08,0x7c,0x00 -+// 51999 쬟 ; -+,0x00,0x00,0x00,0x0a,0x06,0x08,0x01,0x00,0x1f,0x00,0x07,0x01,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x14,0x0c,0x80,0x38,0x80,0x18,0x24,0x24,0x3c,0x00 -+// 52000 쬠 ; -+,0x00,0x00,0x00,0x0e,0x04,0x06,0x01,0x01,0x01,0x18,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xe8,0x48,0xc8,0x18,0x08,0xc8,0x00,0x00,0x08,0x08,0x08,0x00,0x00 -+// 52001 쬡 ; -+,0x00,0x00,0x00,0x0e,0x06,0x08,0x11,0x01,0x03,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0x64,0x44,0xa4,0x04,0x0c,0xc4,0x00,0x0c,0x04,0x04,0x04,0xfc,0x00 -+// 52002 쬢 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x11,0x01,0x03,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0xe8,0x48,0xe8,0x18,0x08,0xc8,0x10,0x88,0x90,0x98,0xa6,0x42,0x00 -+// 52003 쬣 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x11,0x01,0x01,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x08,0xe8,0x48,0xa8,0x18,0x08,0xc8,0x00,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 52004 쬤 ; -+,0x00,0x00,0x00,0x0a,0x02,0x05,0x01,0x00,0x01,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x0c,0x34,0x24,0x64,0x94,0x84,0xe4,0x00,0x08,0x88,0x9c,0x56,0x22,0x00 -+// 52005 쬥 ; -+,0x00,0x00,0x00,0x0a,0x06,0x06,0x01,0x02,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xa4,0x64,0x64,0x94,0x8c,0xe4,0x04,0x30,0x88,0x84,0x8c,0x78,0x00 -+// 52006 쬦 ; -+,0x00,0x00,0x00,0x0a,0x02,0x05,0x08,0x00,0x00,0x0c,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x34,0x24,0x64,0x94,0x84,0xe4,0x00,0x04,0x20,0x60,0x88,0x04,0x00 -+// 52007 쬧 ; -+,0x00,0x00,0x00,0x0a,0x02,0x05,0x01,0x01,0x00,0x0c,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x0c,0xb4,0x24,0x64,0x94,0x84,0xe4,0x00,0x60,0x0e,0x60,0x50,0x04,0x00 -+// 52008 쬨 ; -+,0x00,0x00,0x00,0x0f,0x02,0x05,0x08,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x34,0x24,0x74,0x84,0x84,0xe4,0x00,0xec,0x04,0x74,0x04,0x04,0x00 -+// 52009 쬩 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x24,0x74,0x84,0x84,0xe4,0x00,0x1c,0x00,0xbc,0x00,0xfe,0x00 -+// 52010 쬪 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x11,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x0c,0xe4,0x44,0xa4,0x04,0x0c,0x80,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 52011 쬫 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x24,0x74,0x84,0x84,0xe4,0x40,0x00,0xf0,0x48,0x08,0x58,0x00 -+// 52012 쬬 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x00,0x02,0x02,0x03,0x1e,0x00,0x00,0x00,0x00,0x00,0x04,0x0c,0x18,0x10,0xac,0x42,0x20,0x10,0x10,0x12,0x00,0x00,0x00 -+// 52013 쬭 ; -+,0x00,0x00,0x0f,0x02,0x06,0x09,0x00,0x02,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0x4c,0xb0,0x10,0xff,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 52014 쬮 ; -+,0x00,0x00,0x0f,0x02,0x06,0x09,0x00,0x02,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x10,0x30,0x4c,0xb0,0x10,0xff,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52015 쬯 ; -+,0x00,0x00,0x0f,0x03,0x02,0x05,0x00,0x02,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x10,0x30,0x4c,0xb0,0x10,0xff,0x00,0x30,0x10,0x30,0x4c,0x84,0x00 -+// 52016 쬰 ; -+,0x00,0x00,0x03,0x01,0x03,0x04,0x00,0x03,0x00,0x3f,0x00,0x04,0x04,0x04,0x01,0x00,0x00,0x00,0x78,0x18,0x10,0xac,0xc2,0x10,0x10,0xff,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 52017 쬱 ; -+,0x00,0x00,0x0f,0x02,0x06,0x09,0x01,0x02,0x1f,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x30,0x10,0xff,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 52018 쬲 ; -+,0x00,0x00,0x05,0x03,0x05,0x08,0x03,0x02,0x1f,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x78,0x10,0x38,0xc6,0x10,0x10,0x00,0x30,0x0c,0x30,0x48,0x48,0x78,0x00 -+// 52019 쬳 ; -+,0x00,0x00,0x0f,0x03,0x02,0x0c,0x10,0x03,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0x30,0xce,0x90,0x10,0xff,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 52020 쬴 ; -+,0x00,0x00,0x03,0x03,0x05,0x00,0x03,0x02,0x1f,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x30,0x10,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 52021 쬵 ; -+,0x00,0x00,0x05,0x01,0x07,0x08,0x00,0x02,0x1f,0x00,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x10,0x10,0xff,0x00,0xa8,0x88,0x08,0x00,0x00,0x00 -+// 52022 쬶 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x01,0x02,0x1f,0x00,0x09,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x30,0x10,0xfe,0x00,0x6c,0x04,0x00,0x00,0x28,0x00 -+// 52023 쬷 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x01,0x02,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x30,0x10,0xfe,0x08,0x40,0x28,0x00,0x28,0x00,0x00 -+// 52024 쬸 ; -+,0x00,0x00,0x01,0x03,0x07,0x08,0x00,0x02,0x1f,0x00,0x0f,0x00,0x0d,0x00,0x07,0x00,0x00,0x00,0x18,0x10,0x30,0x46,0x30,0x10,0xff,0x00,0x10,0x10,0x38,0x24,0xc4,0x00 -+// 52025 쬹 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x03,0x02,0x1e,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x78,0x10,0x30,0x86,0x10,0x10,0x00,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52026 쬺 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x30,0x10,0xfe,0x00,0x50,0x08,0x48,0x00,0xfc,0x00 -+// 52027 쬻 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x03,0x02,0x1f,0x00,0x0f,0x01,0x0d,0x08,0x06,0x00,0x00,0x00,0x78,0x10,0x38,0xc6,0x10,0x10,0xfe,0x30,0x04,0x10,0x28,0x40,0x68,0x00 -+// 52028 쬼 ; -+,0x00,0x00,0x0b,0x02,0x06,0x09,0x01,0x02,0x1f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x30,0x10,0xfe,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 52029 쬽 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x02,0x1f,0x00,0x04,0x07,0x04,0x06,0x04,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x30,0x10,0xff,0x20,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 52030 쬾 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x03,0x02,0x1f,0x01,0x08,0x0d,0x08,0x08,0x0d,0x00,0x00,0x00,0x78,0x10,0x78,0x86,0x30,0x10,0xfe,0x10,0x90,0x10,0x28,0x04,0xc4,0x00 -+// 52031 쬿 ; -+,0x00,0x00,0x0f,0x02,0x06,0x09,0x01,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x10,0x10,0xff,0x00,0xc0,0x80,0x20,0x18,0x04,0x00 -+// 52032 쭀 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x02,0x1f,0x00,0x03,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x30,0x10,0xfe,0x00,0x10,0x10,0xa8,0xc4,0x80,0x00 -+// 52033 쭁 ; -+,0x00,0x00,0x0b,0x02,0x07,0x08,0x01,0x02,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x10,0x10,0xfe,0x00,0xc0,0x20,0x10,0x10,0xe0,0x00 -+// 52034 쭂 ; -+,0x00,0x00,0x03,0x03,0x07,0x08,0x03,0x02,0x1f,0x00,0x04,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x10,0x10,0xf0,0x00,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 52035 쭃 ; -+,0x00,0x00,0x05,0x01,0x07,0x08,0x00,0x02,0x1f,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x90,0x10,0xff,0x00,0x00,0xfc,0xc0,0x30,0x08,0x00 -+// 52036 쭄 ; -+,0x00,0x00,0x01,0x01,0x02,0x05,0x00,0x02,0x1f,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x30,0xcc,0xb0,0x10,0xff,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 52037 쭅 ; -+,0x00,0x00,0x01,0x01,0x03,0x00,0x00,0x02,0x1f,0x00,0x07,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x18,0x30,0xce,0xb0,0x10,0xff,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 52038 쭆 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x02,0x1f,0x00,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x90,0x10,0xff,0x00,0xf8,0x20,0x10,0x20,0xec,0x00 -+// 52039 쭇 ; -+,0x00,0x00,0x01,0x01,0x03,0x08,0x00,0x02,0x1f,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x18,0x30,0xce,0xb0,0x10,0xff,0xc0,0x0c,0xc0,0x20,0x00,0x20,0x00 -+// 52040 쭈 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x08,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x10,0xac,0xc2,0x00,0xff,0x40,0x40,0x40,0x40,0x40,0x00,0x00 -+// 52041 쭉 ; -+,0x00,0x00,0x01,0x03,0x07,0x08,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xfe,0x40,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 52042 쭊 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x1f,0x00,0x00,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf8,0x10,0x30,0xcc,0x80,0xff,0x80,0x00,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 52043 쭋 ; -+,0x00,0x00,0x01,0x01,0x03,0x0c,0x00,0x1f,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x10,0x30,0xc4,0x80,0xff,0x80,0x00,0x30,0x10,0x30,0x4c,0x84,0x00 -+// 52044 쭌 ; -+,0x00,0x00,0x0f,0x01,0x03,0x04,0x10,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xf8,0x18,0xb0,0xcc,0x80,0x00,0xfe,0x40,0x40,0x00,0x00,0x00,0x10,0x00 -+// 52045 쭍 ; -+,0x00,0x00,0x0f,0x01,0x03,0x04,0x10,0x03,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xf8,0x10,0x30,0xcc,0x80,0x9f,0xc0,0x00,0xfc,0x30,0x30,0x4c,0x84,0x00 -+// 52046 쭎 ; -+,0x00,0x00,0x03,0x03,0x05,0x08,0x01,0x1f,0x00,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x78,0x10,0xb8,0xc4,0x00,0xfe,0x80,0x70,0x04,0x30,0x48,0x48,0x78,0x00 -+// 52047 쭏 ; -+,0x00,0x00,0x0f,0x01,0x03,0x04,0x10,0x03,0x00,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0x00,0xf8,0x10,0x30,0xcc,0x80,0x07,0xc0,0x80,0xd0,0x00,0x00,0x00,0xf8,0x00 -+// 52048 쭐 ; -+,0x00,0x00,0x03,0x03,0x07,0x08,0x01,0x03,0x00,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0x30,0xc6,0x80,0x0f,0xc0,0x00,0xf0,0x10,0x10,0x00,0xf8,0x00 -+// 52049 쭑 ; -+,0x00,0x00,0x03,0x03,0x05,0x08,0x01,0x1f,0x00,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xfe,0x40,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 52050 쭒 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x3f,0x00,0x01,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x78,0x10,0xb8,0xc6,0x00,0xfe,0x40,0xcc,0x24,0x24,0x00,0x28,0x20,0x00 -+// 52051 쭓 ; -+,0x00,0x00,0x01,0x03,0x07,0x08,0x01,0x1f,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x98,0x10,0x38,0xc6,0x00,0xff,0x40,0x48,0x44,0x2c,0x04,0x2c,0x00,0x00 -+// 52052 쭔 ; -+,0x00,0x00,0x03,0x03,0x07,0x08,0x00,0x1f,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x38,0xc6,0x00,0xff,0x40,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 52053 쭕 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x01,0x1f,0x00,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x78,0x10,0x38,0xc6,0x00,0xff,0x40,0x00,0x78,0x40,0x78,0x40,0x08,0x00 -+// 52054 쭖 ; -+,0x00,0x00,0x03,0x03,0x07,0x08,0x01,0x1f,0x00,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x00,0xff,0x40,0x00,0x40,0x08,0x08,0x00,0xfc,0x00 -+// 52055 쭗 ; -+,0x00,0x00,0x01,0x03,0x03,0x08,0x01,0x1f,0x00,0x00,0x0d,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf8,0x10,0x30,0xc6,0x00,0xff,0x40,0x70,0x04,0x30,0x48,0x40,0x38,0x00 -+// 52056 쭘 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x1f,0x00,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x80,0xff,0x40,0x00,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 52057 쭙 ; -+,0x00,0x00,0x03,0x03,0x05,0x08,0x01,0x1f,0x00,0x00,0x04,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x78,0x10,0xb8,0xc6,0x00,0xff,0x40,0x10,0x10,0xd0,0x10,0x10,0x10,0x00 -+// 52058 쭚 ; -+,0x00,0x00,0x03,0x03,0x05,0x08,0x01,0x1f,0x00,0x01,0x08,0x0d,0x08,0x08,0x08,0x00,0x00,0x00,0x78,0x10,0xb8,0xc6,0x00,0xff,0x40,0x90,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 52059 쭛 ; -+,0x00,0x00,0x05,0x01,0x03,0x08,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xf8,0x10,0x30,0xc6,0x80,0xfe,0x00,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 52060 쭜 ; -+,0x00,0x00,0x03,0x03,0x07,0x08,0x01,0x1f,0x00,0x00,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x78,0x10,0x38,0xc6,0x00,0xff,0x40,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 52061 쭝 ; -+,0x00,0x00,0x05,0x01,0x03,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x10,0xb0,0xc6,0x80,0xff,0xc0,0x40,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 52062 쭞 ; -+,0x00,0x00,0x01,0x03,0x03,0x08,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0xf8,0x10,0x30,0xc6,0x80,0xff,0x40,0x00,0xc0,0xc0,0xa0,0x18,0x04,0x00 -+// 52063 쭟 ; -+,0x00,0x00,0x01,0x03,0x07,0x08,0x01,0x1f,0x00,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x78,0x10,0xb8,0xc6,0x80,0xff,0x00,0xc0,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 52064 쭠 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x01,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0xb8,0x10,0x30,0xcc,0x80,0x07,0xc0,0x80,0xf8,0x08,0xe8,0x08,0x08,0x00 -+// 52065 쭡 ; -+,0x00,0x00,0x05,0x01,0x03,0x08,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xff,0x40,0x40,0xf8,0x00,0x70,0x00,0xf8,0x00 -+// 52066 쭢 ; -+,0x00,0x00,0x0f,0x03,0x03,0x0c,0x00,0x1f,0x00,0x00,0x07,0x02,0x02,0x01,0x0e,0x00,0x00,0x00,0xf8,0x10,0x30,0xcc,0x80,0xff,0x40,0x00,0xf8,0x20,0x20,0x20,0x00,0x00 -+// 52067 쭣 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xb8,0x10,0xb0,0xc6,0x80,0x0f,0x40,0xc0,0x1c,0xc0,0x20,0x00,0xe0,0x00 -+// 52068 쭤 ; -+,0x00,0x00,0x00,0x02,0x02,0x06,0x09,0x11,0x02,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x44,0xa4,0x04,0x64,0x04,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 52069 쭥 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0xe4,0x24,0x84,0x3c,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 52070 쭦 ; -+,0x00,0x00,0x00,0x06,0x06,0x01,0x00,0x1f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x44,0xa4,0x04,0x04,0x3c,0x00,0xb8,0x80,0x80,0x80,0x80,0x00 -+// 52071 쭧 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x00,0x1f,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x28,0x88,0x38,0x00,0x88,0x88,0x98,0xa4,0xc2,0x00 -+// 52072 쭨 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x01,0x00,0x1f,0x01,0x01,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x64,0x44,0xc4,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x1c,0x00 -+// 52073 쭩 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0c,0x64,0x44,0xa4,0x04,0x08,0x38,0x00,0xfc,0x10,0x38,0x64,0x82,0x00 -+// 52074 쭪 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x00,0x1f,0x01,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x28,0x88,0x78,0x30,0x00,0xf0,0x48,0x48,0x30,0x00 -+// 52075 쭫 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x00,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x10,0x08,0x48,0xc8,0x68,0x28,0x08,0x78,0x00,0x18,0x00,0x00,0x00,0x78,0x00 -+// 52076 쭬 ; -+,0x00,0x00,0x00,0x0e,0x04,0x09,0x00,0x1f,0x02,0x02,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0x48,0x28,0x08,0x78,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 52077 쭭 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0c,0x08,0x06,0x00,0x00,0x10,0x08,0x48,0x88,0xe8,0x28,0x08,0x78,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52078 쭮 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x10,0x08,0x48,0xc8,0x68,0x28,0x08,0x78,0x00,0x68,0x48,0x48,0x48,0x00,0x00 -+// 52079 쭯 ; -+,0x00,0x00,0x00,0x03,0x02,0x01,0x00,0x1f,0x01,0x01,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x0c,0x64,0x44,0xe4,0x04,0x84,0x38,0x08,0x48,0x68,0x48,0x48,0x48,0x00 -+// 52080 쭰 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x01,0x03,0x19,0x01,0x0f,0x01,0x0d,0x08,0x0f,0x00,0x00,0x00,0x08,0x68,0x48,0xe8,0x08,0x88,0x38,0x00,0x10,0x10,0x38,0x24,0x84,0x00 -+// 52081 쭱 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x28,0x08,0x38,0x08,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52082 쭲 ; -+,0x00,0x00,0x00,0x06,0x06,0x01,0x00,0x1f,0x01,0x01,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0x68,0x48,0xe8,0x28,0x88,0x38,0x08,0x10,0x08,0x28,0x08,0x7c,0x00 -+// 52083 쭳 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x03,0x09,0x01,0x07,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x28,0x88,0x38,0x38,0x00,0x7c,0x28,0x04,0x28,0x00 -+// 52084 쭴 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0xc8,0xe8,0x28,0x08,0x78,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 52085 쭵 ; -+,0x00,0x00,0x00,0x0e,0x04,0x09,0x00,0x03,0x1a,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0xc8,0x28,0x88,0x78,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52086 쭶 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x01,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x28,0x88,0x78,0x00,0x88,0x98,0x98,0xa6,0xc2,0x00 -+// 52087 쭷 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x00,0x03,0x02,0x02,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x48,0xc8,0x68,0x08,0x08,0x78,0x00,0x40,0x40,0x90,0x0c,0x04,0x00 -+// 52088 쭸 ; -+,0x00,0x00,0x00,0x06,0x06,0x01,0x00,0x1f,0x01,0x01,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x0c,0x64,0x44,0xa4,0x04,0x84,0x3c,0x00,0x08,0x18,0x98,0x66,0x42,0x00 -+// 52089 쭹 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x00,0x3f,0x02,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0x68,0x08,0x08,0x78,0x20,0x70,0x88,0x08,0x88,0xf0,0x00 -+// 52090 쭺 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x48,0x48,0xe8,0x28,0x08,0x78,0x00,0x1c,0x40,0xe0,0x18,0x04,0x00 -+// 52091 쭻 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x3f,0x00,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x18,0x08,0x48,0xc8,0x68,0x28,0x08,0x78,0x00,0xc0,0xfc,0x40,0xb0,0x0c,0x00 -+// 52092 쭼 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x01,0x1f,0x01,0x01,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0xe4,0x04,0x84,0x3c,0x00,0xdc,0x0c,0xec,0x04,0x00,0x00 -+// 52093 쭽 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x00,0x02,0x02,0x01,0x00,0x01,0x00,0x00,0x18,0x08,0x68,0x48,0xe8,0x28,0x88,0x38,0x00,0x38,0x00,0xf8,0x00,0xfc,0x00 -+// 52094 쭾 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x3f,0x00,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x18,0x08,0x48,0xc8,0x68,0x28,0x08,0x78,0x08,0xf8,0x10,0x10,0x10,0xfe,0x00 -+// 52095 쭿 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0xc8,0xe8,0x28,0x08,0x78,0xe0,0x04,0x60,0x90,0x90,0xf0,0x00 -+// 52096 쮀 ; -+,0x00,0x00,0x00,0x00,0x0d,0x0d,0x17,0x04,0x00,0x1e,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0x94,0x14,0x14,0x94,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x00 -+// 52097 쮁 ; -+,0x00,0x00,0x00,0x0d,0x09,0x16,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2c,0xa4,0x24,0xa4,0x24,0x24,0xe4,0x04,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52098 쮂 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x12,0x04,0x1f,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0xd4,0x54,0x14,0x74,0x10,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 52099 쮃 ; -+,0x00,0x00,0x00,0x0d,0x09,0x16,0x04,0x1e,0x02,0x00,0x00,0x0d,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x14,0xf4,0x04,0x18,0x18,0x18,0x24,0x46,0x00 -+// 52100 쮄 ; -+,0x00,0x00,0x00,0x00,0x0d,0x0f,0x06,0x00,0x1e,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0xa4,0xa4,0x24,0xa4,0x24,0x24,0x24,0x24,0x00,0x00,0x04,0x00,0x00 -+// 52101 쮅 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x17,0x04,0x1f,0x02,0x02,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x54,0x14,0xf4,0x14,0x1c,0x10,0x30,0x64,0x82,0x00 -+// 52102 쮆 ; -+,0x00,0x00,0x00,0x05,0x0d,0x03,0x04,0x1e,0x02,0x02,0x08,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x54,0x14,0xe4,0x34,0x00,0xf0,0x38,0x48,0x38,0x00 -+// 52103 쮇 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x17,0x04,0x1f,0x02,0x02,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x2c,0x94,0x14,0x94,0x14,0x14,0xe4,0x04,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 52104 쮈 ; -+,0x00,0x00,0x00,0x0d,0x09,0x17,0x04,0x3e,0x04,0x04,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x48,0xa8,0x28,0xa8,0x28,0x28,0xe8,0x28,0xf8,0x08,0xf8,0x00,0xfc,0x00 -+// 52105 쮉 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x12,0x00,0x1e,0x04,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x6c,0xa4,0x24,0xa4,0x24,0x24,0xe0,0x20,0x68,0x08,0x08,0x08,0x08,0x00 -+// 52106 쮊 ; -+,0x00,0x00,0x00,0x06,0x04,0x03,0x00,0x1f,0x02,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x34,0xd4,0x94,0xd4,0x54,0x14,0xf4,0x04,0xac,0xa4,0x24,0x24,0x20,0x00 -+// 52107 쮋 ; -+,0x00,0x00,0x00,0x06,0x04,0x02,0x00,0x1e,0x02,0x02,0x05,0x01,0x04,0x04,0x02,0x00,0x00,0x08,0x34,0xd4,0x94,0x54,0x14,0x14,0x54,0x04,0x64,0x24,0x24,0x24,0x00,0x00 -+// 52108 쮌 ; -+,0x00,0x00,0x00,0x07,0x05,0x03,0x00,0x1f,0x02,0x02,0x0f,0x00,0x0c,0x04,0x06,0x00,0x00,0x08,0x24,0x94,0x94,0xd4,0x54,0x14,0xf4,0x14,0x98,0x10,0x18,0x24,0x42,0x00 -+// 52109 쮍 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x13,0x04,0x1f,0x02,0x02,0x0f,0x01,0x09,0x08,0x0f,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x54,0x14,0xf4,0x04,0x7c,0x40,0x7c,0x40,0x3c,0x00 -+// 52110 쮎 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x12,0x04,0x1e,0x00,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x08,0x2c,0xa4,0x24,0xa4,0x24,0x24,0xe4,0x20,0x7c,0x08,0x28,0x28,0x7e,0x00 -+// 52111 쮏 ; -+,0x00,0x00,0x00,0x0f,0x0d,0x13,0x04,0x1f,0x00,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x24,0xa4,0x04,0x84,0x44,0x04,0xe4,0x34,0x00,0x70,0x38,0x44,0x28,0x00 -+// 52112 쮐 ; -+,0x00,0x00,0x00,0x0d,0x09,0x17,0x04,0x1e,0x02,0x02,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x14,0xf4,0x04,0x00,0x04,0x00,0x08,0x00,0x00 -+// 52113 쮑 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x12,0x04,0x1e,0x00,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x2c,0xa4,0x24,0xa4,0x24,0x24,0xe4,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52114 쮒 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x12,0x04,0x1f,0x00,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x2c,0xa4,0x24,0xa4,0x24,0x24,0xe4,0x10,0x98,0x90,0x98,0xa4,0x40,0x00 -+// 52115 쮓 ; -+,0x00,0x00,0x00,0x06,0x04,0x03,0x00,0x0f,0x02,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x16,0xd2,0x92,0xd2,0x12,0x12,0x70,0x00,0x30,0x20,0x58,0x84,0x02,0x00 -+// 52116 쮔 ; -+,0x00,0x00,0x00,0x06,0x04,0x0b,0x00,0x1f,0x02,0x02,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0xd4,0x94,0xd4,0x54,0x14,0x74,0x14,0x08,0x18,0x94,0x24,0x40,0x00 -+// 52117 쮕 ; -+,0x00,0x00,0x00,0x05,0x0d,0x13,0x04,0x1b,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x14,0xf4,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 52118 쮖 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x12,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x14,0x14,0xf4,0x04,0x1c,0x60,0x60,0x98,0x04,0x00 -+// 52119 쮗 ; -+,0x00,0x00,0x00,0x07,0x0d,0x13,0x04,0x1f,0x02,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x94,0x94,0x94,0x54,0x14,0xf4,0x00,0x40,0xfc,0x60,0x98,0x04,0x00 -+// 52120 쮘 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x13,0x04,0x1f,0x02,0x02,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x54,0x14,0xf4,0x14,0xcc,0x04,0x3c,0x04,0x04,0x00 -+// 52121 쮙 ; -+,0x00,0x00,0x00,0x06,0x05,0x03,0x00,0x1f,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x94,0x94,0xd4,0x54,0x14,0xf4,0x00,0xf8,0x00,0x78,0x00,0xfc,0x00 -+// 52122 쮚 ; -+,0x00,0x00,0x00,0x0d,0x0d,0x13,0x04,0x1f,0x02,0x02,0x00,0x01,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x14,0x14,0xf4,0x14,0x1c,0x10,0x90,0x90,0xfe,0x00 -+// 52123 쮛 ; -+,0x00,0x00,0x00,0x0f,0x0d,0x12,0x00,0x1e,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x84,0x04,0x84,0x44,0x04,0xe4,0xa0,0x04,0x60,0x90,0x10,0xf0,0x00 -+// 52124 쮜 ; -+,0x00,0x00,0x00,0x06,0x02,0x06,0x09,0x11,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x44,0xa4,0x14,0x0c,0xc4,0x04,0x04,0x04,0x04,0x04,0x00 -+// 52125 쮝 ; -+,0x00,0x00,0x00,0x06,0x06,0x05,0x01,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x44,0xe4,0x0c,0x6c,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 52126 쮞 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x68,0x48,0xa8,0x08,0xc8,0x08,0x00,0x78,0x88,0x88,0x88,0x08,0x00 -+// 52127 쮟 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x00,0x1b,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0xc8,0xc8,0x08,0xc8,0x08,0x08,0x18,0x98,0x18,0x24,0x42,0x00 -+// 52128 쮠 ; -+,0x00,0x00,0x00,0x02,0x02,0x05,0x01,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x68,0x48,0xc8,0x08,0x08,0x88,0x08,0x08,0x08,0x00,0x00,0x1c,0x00 -+// 52129 쮡 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x00,0x00,0x09,0x01,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x0c,0x64,0x44,0xa4,0x0c,0xec,0x04,0x00,0x0c,0x10,0x10,0x24,0xc2,0x00 -+// 52130 쮢 ; -+,0x00,0x00,0x00,0x02,0x03,0x00,0x00,0x1f,0x01,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x0c,0x04,0x24,0x44,0xa4,0x04,0xc4,0x04,0x38,0x02,0x78,0x24,0xa4,0x38,0x00 -+// 52131 쮣 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x01,0x19,0x01,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0xe8,0x08,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 52132 쮤 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x00,0x01,0x01,0x01,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0xc8,0x08,0x00,0xf8,0x08,0x78,0x00,0xfe,0x00 -+// 52133 쮥 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x00,0x01,0x01,0x01,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0xe4,0x44,0xa4,0x0c,0xc4,0x04,0x00,0xbc,0x04,0x04,0x00,0x00,0x00 -+// 52134 쮦 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x00,0x01,0x01,0x01,0x07,0x00,0x05,0x04,0x06,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x0c,0xc4,0x04,0x00,0x6c,0x24,0x20,0x28,0x20,0x00 -+// 52135 쮧 ; -+,0x00,0x00,0x00,0x03,0x02,0x01,0x00,0x03,0x01,0x01,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x0c,0xc4,0x04,0x00,0x44,0x6c,0x44,0x44,0x44,0x00 -+// 52136 쮨 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x19,0x01,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0xa4,0x04,0xe4,0x04,0x04,0x98,0x10,0x18,0x24,0x42,0x00 -+// 52137 쮩 ; -+,0x00,0x00,0x00,0x03,0x02,0x00,0x00,0x03,0x01,0x01,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0xa4,0x0c,0xc4,0x04,0x00,0xf8,0x20,0x38,0x20,0x1c,0x00 -+// 52138 쮪 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x09,0x01,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0xe4,0x44,0xa4,0x04,0xe4,0x04,0x04,0x00,0x08,0x28,0x08,0x7e,0x00 -+// 52139 쮫 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x00,0x01,0x01,0x01,0x07,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x0c,0xc4,0x04,0x18,0x00,0x78,0x3c,0x24,0x3c,0x00 -+// 52140 쮬 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x1f,0x01,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0x68,0x48,0xe8,0x08,0xc8,0x08,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 52141 쮭 ; -+,0x00,0x00,0x00,0x03,0x06,0x01,0x00,0x00,0x19,0x01,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0x64,0x44,0xe4,0x0c,0xcc,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52142 쮮 ; -+,0x00,0x00,0x00,0x06,0x06,0x01,0x00,0x01,0x19,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x0c,0x64,0x44,0xe4,0x0c,0xec,0x00,0x08,0x88,0x88,0x98,0xa6,0xc2,0x00 -+// 52143 쮯 ; -+,0x00,0x00,0x00,0x03,0x02,0x01,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0xe4,0x44,0xa4,0x04,0x2c,0x04,0x40,0x60,0x60,0x90,0x0c,0x00,0x00 -+// 52144 쮰 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x01,0x00,0x1d,0x01,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0xe4,0x44,0xa4,0x04,0xe4,0x04,0x04,0x08,0x08,0x98,0x64,0x42,0x00 -+// 52145 쮱 ; -+,0x00,0x00,0x00,0x02,0x06,0x01,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x04,0x2c,0x04,0x04,0x30,0x88,0x84,0x80,0xf8,0x00 -+// 52146 쮲 ; -+,0x00,0x00,0x00,0x06,0x06,0x01,0x00,0x03,0x09,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x0c,0xe4,0x04,0x00,0x1c,0x60,0x60,0x98,0x04,0x00 -+// 52147 쮳 ; -+,0x00,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x1d,0x01,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x0c,0xe4,0x04,0x00,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 52148 쮴 ; -+,0x00,0x00,0x00,0x03,0x02,0x04,0x00,0x01,0x09,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0xa4,0x04,0xe4,0x04,0x04,0xcc,0x04,0xfc,0x04,0x04,0x00 -+// 52149 쮵 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x01,0x19,0x01,0x03,0x02,0x01,0x00,0x01,0x00,0x00,0x00,0x08,0x68,0x48,0xe8,0x08,0xc8,0x08,0x00,0x78,0x00,0xf8,0x00,0xfc,0x00 -+// 52150 쮶 ; -+,0x00,0x00,0x00,0x06,0x06,0x09,0x00,0x01,0x19,0x01,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x18,0x08,0x48,0x48,0xe8,0x08,0xc8,0x08,0x00,0xf8,0x10,0x10,0x90,0xfe,0x00 -+// 52151 쮷 ; -+,0x00,0x00,0x00,0x06,0x06,0x01,0x00,0x01,0x19,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x68,0x48,0xe8,0x08,0xc8,0x08,0x60,0x04,0x60,0x90,0x88,0xf0,0x00 -+// 52152 쮸 ; -+,0x00,0x00,0x0f,0x01,0x02,0x05,0x00,0x01,0x00,0x1b,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x7c,0x08,0x10,0x28,0xc6,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x00 -+// 52153 쮹 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0xb0,0xc6,0x80,0xff,0x10,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 52154 쮺 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x1f,0x02,0x02,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x18,0x30,0xc6,0x80,0xcf,0x10,0x00,0x7c,0x84,0x84,0x00,0x00,0x00 -+// 52155 쮻 ; -+,0x00,0x00,0x05,0x03,0x03,0x08,0x00,0x3f,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x10,0xb0,0xc6,0x80,0xfe,0x10,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 52156 쮼 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x00,0x00,0x1f,0x01,0x01,0x05,0x02,0x02,0x03,0x00,0x00,0x00,0xb8,0x08,0x10,0x6c,0x80,0x00,0xfe,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 52157 쮽 ; -+,0x00,0x00,0x03,0x02,0x07,0x08,0x00,0x3f,0x02,0x02,0x18,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xc4,0x80,0xfe,0x00,0x00,0xf0,0x20,0x30,0x4c,0x84,0x00 -+// 52158 쮾 ; -+,0x00,0x00,0x05,0x01,0x03,0x08,0x00,0x1f,0x02,0x02,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xff,0x10,0x30,0x00,0xf0,0x38,0x44,0x48,0x00 -+// 52159 쮿 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x3f,0x02,0x02,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x18,0x30,0xc6,0x80,0xbf,0x10,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00 -+// 52160 쯀 ; -+,0x00,0x00,0x01,0x01,0x03,0x08,0x00,0x1f,0x02,0x02,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xff,0x10,0x10,0xd0,0x10,0x00,0x00,0xfc,0x00 -+// 52161 쯁 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x01,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0xb8,0x10,0xb0,0xc6,0x80,0x07,0x10,0x10,0xb8,0x88,0x88,0x08,0x00,0x00 -+// 52162 쯂 ; -+,0x00,0x00,0x05,0x01,0x03,0x08,0x01,0x1f,0x02,0x02,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xff,0x10,0x14,0x24,0x24,0x24,0x24,0x20,0x00 -+// 52163 쯃 ; -+,0x00,0x00,0x05,0x03,0x03,0x08,0x00,0x1f,0x02,0x02,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x10,0xb0,0xc6,0x80,0xfe,0x10,0x18,0x64,0x2c,0x24,0x24,0x20,0x00 -+// 52164 쯄 ; -+,0x00,0x00,0x05,0x01,0x03,0x08,0x01,0x1f,0x02,0x02,0x01,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xfe,0x10,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 52165 쯅 ; -+,0x00,0x00,0x01,0x03,0x07,0x08,0x01,0x1f,0x02,0x02,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xff,0x10,0x00,0x60,0x00,0x20,0x20,0x00,0x00 -+// 52166 쯆 ; -+,0x00,0x00,0x05,0x01,0x03,0x08,0x01,0x1f,0x02,0x02,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0xf8,0x10,0xb0,0xc6,0x00,0xfe,0x10,0x00,0x00,0x08,0x28,0x00,0x7c,0x00 -+// 52167 쯇 ; -+,0x00,0x00,0x05,0x01,0x03,0x08,0x01,0x1f,0x02,0x02,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xfe,0x10,0x30,0xc4,0x10,0x48,0x40,0x38,0x00 -+// 52168 쯈 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x1f,0x02,0x02,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x10,0x30,0xc6,0x80,0xff,0x10,0x10,0xf8,0x18,0x10,0x10,0x00,0x00 -+// 52169 쯉 ; -+,0x00,0x00,0x01,0x01,0x07,0x08,0x01,0x3f,0x02,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xfe,0x10,0x30,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 52170 쯊 ; -+,0x00,0x00,0x05,0x03,0x04,0x08,0x01,0x1f,0x02,0x01,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc2,0x00,0xfe,0x10,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 52171 쯋 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x1f,0x02,0x02,0x02,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0xf8,0x18,0xb0,0x46,0x80,0xff,0x10,0x10,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 52172 쯌 ; -+,0x00,0x00,0x05,0x01,0x07,0x08,0x01,0x1f,0x02,0x02,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0xb8,0x10,0xb8,0xc6,0x00,0xfe,0x10,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 52173 쯍 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x1f,0x02,0x02,0x03,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x18,0x30,0xc6,0x80,0xff,0x10,0x50,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 52174 쯎 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x1f,0x02,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0xb8,0x18,0x30,0xe6,0x80,0xff,0x10,0x00,0xfc,0x40,0xa0,0x18,0x04,0x00 -+// 52175 쯏 ; -+,0x00,0x00,0x05,0x03,0x07,0x08,0x01,0x1f,0x02,0x03,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xfe,0x10,0xf0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 52176 쯐 ; -+,0x00,0x00,0x0f,0x01,0x03,0x04,0x10,0x01,0x02,0x02,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x98,0x18,0x30,0xec,0x80,0x07,0x10,0x10,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 52177 쯑 ; -+,0x00,0x00,0x05,0x03,0x07,0x08,0x01,0x3f,0x02,0x02,0x07,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x10,0xb8,0xc6,0x00,0xff,0x10,0x00,0xf8,0x00,0x70,0x00,0xf8,0x00 -+// 52178 쯒 ; -+,0x00,0x00,0x05,0x01,0x03,0x00,0x00,0x3f,0x02,0x02,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0xf8,0x10,0x30,0xc6,0x80,0xbf,0x10,0x00,0xf8,0x20,0x20,0x20,0xbc,0x00 -+// 52179 쯓 ; -+,0x00,0x00,0x05,0x01,0x03,0x04,0x00,0x1f,0x02,0x03,0x02,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x10,0xb8,0x46,0x80,0xff,0x10,0xf0,0x3c,0xc0,0x20,0x10,0xa0,0x00 -+// 52180 쯔 ; -+,0x00,0x00,0x00,0x0f,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x18,0x10,0xb8,0x46,0x80,0x00,0x00,0x00,0xff,0x00,0x00,0x00 -+// 52181 쯕 ; -+,0x00,0x00,0x0f,0x03,0x02,0x0d,0x00,0x00,0x18,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x80,0x02,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 52182 쯖 ; -+,0x00,0x00,0x0f,0x03,0x06,0x0d,0x10,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x80,0x00,0xfe,0x00,0x78,0x08,0x08,0x08,0x00,0x00 -+// 52183 쯗 ; -+,0x00,0x00,0x0f,0x02,0x07,0x08,0x01,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x10,0x30,0xc4,0x00,0x02,0x00,0x20,0x10,0x30,0x28,0x44,0x80,0x00 -+// 52184 쯘 ; -+,0x00,0x00,0x0f,0x01,0x03,0x04,0x10,0x00,0x00,0x1e,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xbc,0x18,0x10,0xec,0x80,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x78,0x00 -+// 52185 쯙 ; -+,0x00,0x00,0x0f,0x02,0x07,0x08,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x00,0x07,0x00,0x04,0xb0,0x30,0x30,0x4c,0x84,0x00 -+// 52186 쯚 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x01,0x00,0x18,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x02,0x00,0x30,0x00,0xb0,0x48,0x08,0x78,0x00 -+// 52187 쯛 ; -+,0x00,0x00,0x0b,0x02,0x07,0x08,0x01,0x00,0x18,0x00,0x00,0x06,0x00,0x02,0x03,0x00,0x00,0x00,0x18,0x10,0x30,0xcc,0x00,0x02,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 52188 쯜 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x18,0x10,0x38,0x86,0x00,0x02,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 52189 쯝 ; -+,0x00,0x00,0x05,0x03,0x07,0x08,0x00,0x00,0x1f,0x00,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x00,0xc0,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 52190 쯞 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x18,0x10,0x38,0x80,0x00,0x06,0x00,0x00,0x24,0x24,0x00,0x28,0x20,0x00 -+// 52191 쯟 ; -+,0x00,0x00,0x03,0x02,0x05,0x08,0x01,0x00,0x3f,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x00,0x80,0x08,0x64,0x2c,0x24,0x24,0x2c,0x00 -+// 52192 쯠 ; -+,0x00,0x00,0x01,0x03,0x05,0x08,0x00,0x00,0x3f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x00,0x80,0x00,0x10,0x10,0x28,0x44,0x02,0x00 -+// 52193 쯡 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x18,0x10,0x38,0xc2,0x00,0x00,0x80,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52194 쯢 ; -+,0x00,0x00,0x01,0x03,0x05,0x08,0x00,0x00,0x1e,0x00,0x01,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x02,0x00,0x00,0x50,0x08,0x28,0x00,0xfc,0x00 -+// 52195 쯣 ; -+,0x00,0x00,0x01,0x02,0x05,0x08,0x01,0x00,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x00,0x80,0x30,0x04,0x10,0x28,0x44,0x28,0x00 -+// 52196 쯤 ; -+,0x00,0x00,0x01,0x01,0x03,0x04,0x10,0x00,0x3f,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x38,0x08,0x10,0xac,0x42,0x00,0xff,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 52197 쯥 ; -+,0x00,0x00,0x01,0x01,0x03,0x08,0x00,0x00,0x1f,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x00,0xfe,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 52198 쯦 ; -+,0x00,0x00,0x03,0x02,0x05,0x00,0x00,0x00,0x1e,0x01,0x08,0x05,0x00,0x00,0x04,0x00,0x00,0x00,0x18,0x10,0x38,0xc6,0x00,0x02,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 52199 쯧 ; -+,0x00,0x00,0x03,0x03,0x07,0x08,0x01,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x00,0x00,0xf2,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 52200 쯨 ; -+,0x00,0x00,0x07,0x03,0x05,0x08,0x01,0x00,0x1e,0x00,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x18,0x10,0x38,0xc6,0x00,0x02,0x00,0x00,0x10,0x10,0x38,0xc4,0x04,0x00 -+// 52201 쯩 ; -+,0x00,0x00,0x01,0x03,0x03,0x08,0x00,0x00,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x10,0x30,0xc6,0x00,0x00,0xf2,0x40,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 52202 쯪 ; -+,0x00,0x00,0x03,0x03,0x07,0x08,0x01,0x00,0x10,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x00,0x02,0x00,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 52203 쯫 ; -+,0x00,0x00,0x05,0x01,0x07,0x08,0x01,0x00,0x1f,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x38,0x10,0x30,0xc6,0x00,0x02,0x80,0x00,0x00,0xf8,0xc0,0xb0,0x0c,0x00 -+// 52204 쯬 ; -+,0x00,0x00,0x01,0x03,0x02,0x01,0x00,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x78,0x10,0x30,0xcc,0x80,0x00,0x00,0x00,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 52205 쯭 ; -+,0x00,0x00,0x07,0x03,0x05,0x08,0x01,0x00,0x1f,0x00,0x07,0x04,0x02,0x00,0x03,0x00,0x00,0x00,0x78,0x10,0x30,0xc6,0x00,0x00,0xfe,0x00,0xf8,0x00,0x70,0x00,0xf8,0x00 -+// 52206 쯮 ; -+,0x00,0x00,0x0f,0x03,0x07,0x0c,0x11,0x00,0x1e,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf8,0x10,0x30,0xcc,0x00,0x00,0x00,0x00,0x98,0x20,0x20,0x20,0xbc,0x00 -+// 52207 쯯 ; -+,0x00,0x00,0x05,0x03,0x05,0x08,0x00,0x00,0x11,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x10,0x38,0xc2,0x00,0x07,0x00,0xc0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 52208 쯰 ; -+,0x00,0x00,0x00,0x02,0x02,0x04,0x0a,0x11,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x28,0x68,0x48,0xc8,0x28,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x00 -+// 52209 쯱 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x01,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x68,0x48,0xa8,0x08,0x08,0xc8,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 52210 쯲 ; -+,0x00,0x00,0x00,0x06,0x04,0x0a,0x01,0x00,0x1f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x68,0x48,0xa8,0x08,0x08,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52211 쯳 ; -+,0x00,0x00,0x00,0x1f,0x04,0x0a,0x11,0x00,0x07,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x48,0xe8,0x08,0x08,0xc8,0x00,0x18,0x98,0x98,0xa4,0x42,0x00 -+// 52212 쯴 ; -+,0x00,0x00,0x00,0x0e,0x02,0x06,0x09,0x00,0x00,0x1f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x64,0x44,0xa4,0x0c,0x2c,0x04,0x00,0x00,0x00,0x00,0x3c,0x00 -+// 52213 쯵 ; -+,0x00,0x00,0x00,0x0e,0x04,0x02,0x01,0x00,0x1f,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0xe4,0x14,0x0c,0xc4,0x00,0x7e,0x10,0x18,0x24,0xc2,0x00 -+// 52214 쯶 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0b,0x11,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0x64,0x44,0xa4,0x14,0x0c,0xc4,0x38,0x00,0xfc,0x38,0x44,0x28,0x00 -+// 52215 쯷 ; -+,0x00,0x00,0x00,0x07,0x04,0x0a,0x11,0x00,0x1f,0x00,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0xc8,0x28,0x08,0x88,0x00,0x00,0x00,0x00,0x00,0x78,0x00 -+// 52216 쯸 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x11,0x00,0x1f,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0x68,0x48,0xa8,0x08,0x08,0x88,0x08,0xf8,0x08,0x38,0x00,0xfe,0x00 -+// 52217 쯹 ; -+,0x00,0x00,0x00,0x0f,0x04,0x0a,0x00,0x00,0x1f,0x00,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0xe8,0x48,0xa8,0x08,0x08,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52218 쯺 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x01,0x00,0x1f,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x0c,0xe4,0x44,0xa4,0x14,0x0c,0x84,0x00,0x6c,0x24,0x20,0x28,0x20,0x00 -+// 52219 쯻 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x01,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x14,0x0c,0xc4,0x00,0x4c,0x2c,0x24,0x24,0x00,0x00 -+// 52220 쯼 ; -+,0x00,0x00,0x00,0x0e,0x06,0x0a,0x01,0x00,0x1f,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x0c,0xe4,0x44,0xa4,0x14,0x0c,0x84,0x00,0x90,0x10,0x28,0x24,0x00,0x00 -+// 52221 쯽 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x01,0x00,0x07,0x08,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x0c,0x64,0x44,0xa4,0x14,0x0c,0xc4,0x00,0x78,0x00,0x38,0x00,0x3c,0x00 -+// 52222 쯾 ; -+,0x00,0x00,0x00,0x06,0x04,0x0a,0x00,0x00,0x1f,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x08,0x48,0x48,0xa8,0x08,0x08,0x08,0x08,0x00,0x08,0x08,0x00,0xfc,0x00 -+// 52223 쯿 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x00,0x00,0x1f,0x00,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x08,0x68,0x48,0xe8,0x08,0x08,0x88,0x38,0x00,0x78,0x28,0x04,0x28,0x00 -+// 52224 찀 ; -+,0x00,0x00,0x00,0x0e,0x04,0x02,0x01,0x00,0x07,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x64,0x44,0xe4,0x14,0x0c,0xc4,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 52225 찁 ; -+,0x00,0x00,0x00,0x0e,0x06,0x09,0x01,0x00,0x07,0x08,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x64,0x44,0xa4,0x14,0x0c,0xc4,0x00,0x0c,0x04,0x8c,0x04,0xf8,0x00 -+// 52226 찂 ; -+,0x00,0x00,0x00,0x0e,0x06,0x0b,0x01,0x00,0x1f,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0xe8,0x48,0xa8,0x08,0x08,0x88,0x08,0x88,0x98,0x9c,0xa6,0x42,0x00 -+// 52227 찃 ; -+,0x00,0x00,0x00,0x0e,0x04,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x0c,0xe4,0x44,0xe4,0x14,0x0c,0xc0,0x00,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 52228 찄 ; -+,0x00,0x00,0x00,0x0a,0x02,0x01,0x01,0x00,0x1f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0xe4,0x44,0xa4,0x14,0x0c,0xc4,0x00,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 52229 찅 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x01,0x00,0x1f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0xe4,0x14,0x0c,0xc0,0x00,0x30,0x88,0x88,0x88,0x70,0x00 -+// 52230 찆 ; -+,0x00,0x00,0x00,0x0e,0x04,0x0a,0x11,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x08,0x68,0x48,0xa8,0x18,0x08,0x88,0x00,0x1c,0x60,0x60,0x88,0x04,0x00 -+// 52231 찇 ; -+,0x00,0x00,0x00,0x0e,0x06,0x08,0x11,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x0c,0xe4,0x44,0xa4,0x04,0x0c,0x00,0x00,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 52232 찈 ; -+,0x00,0x00,0x00,0x0e,0x06,0x03,0x01,0x00,0x1f,0x00,0x03,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0xe4,0x14,0x0c,0xc4,0x00,0xc8,0x04,0xfc,0x00,0x00,0x00 -+// 52233 찉 ; -+,0x00,0x00,0x00,0x06,0x04,0x09,0x00,0x00,0x1f,0x00,0x03,0x02,0x01,0x00,0x01,0x00,0x00,0x08,0x08,0x68,0x48,0xa8,0x08,0x08,0x08,0x00,0xf8,0x00,0x78,0x00,0xfc,0x00 -+// 52234 찊 ; -+,0x00,0x00,0x00,0x0f,0x04,0x0a,0x11,0x00,0x1f,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x08,0xe8,0x48,0xe8,0x08,0x08,0x88,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 52235 찋 ; -+,0x00,0x00,0x00,0x0f,0x04,0x0a,0x11,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xe8,0x48,0xe8,0x08,0x08,0x88,0x00,0x00,0xe0,0xd0,0x88,0x90,0x00 -+// 52236 찌 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x04,0x44,0xc4,0xc4,0x24,0x14,0x04,0x04,0x04,0x04,0x00 -+// 52237 찍 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x28,0x08,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 52238 찎 ; -+,0x00,0x00,0x00,0x0f,0x02,0x02,0x05,0x08,0x01,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xf4,0x24,0x44,0x64,0x94,0x04,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 52239 찏 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x04,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x28,0x08,0x10,0x88,0x98,0x9c,0x24,0x42,0x00 -+// 52240 찐 ; -+,0x00,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0xe8,0x48,0xc8,0xc8,0x28,0x08,0x08,0x08,0x00,0x00,0x00,0x00 -+// 52241 찑 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x04,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x28,0x18,0x00,0xfc,0x10,0x38,0x24,0x42,0x00 -+// 52242 찒 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x02,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x28,0x18,0x30,0x04,0x30,0x48,0x40,0x38,0x00 -+// 52243 찓 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x00,0x04,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0xe8,0x48,0x48,0xc8,0x28,0x18,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 52244 찔 ; -+,0x00,0x00,0x00,0x1f,0x04,0x04,0x0a,0x11,0x02,0x04,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xc4,0x20,0x00,0x00,0x08,0x08,0x38,0x00,0xfe,0x00 -+// 52245 찕 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x01,0x01,0x01,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0xe4,0xb4,0x14,0x00,0xac,0x84,0x04,0x04,0x00,0x00 -+// 52246 찖 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x02,0x04,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x20,0x00,0x00,0x6c,0x20,0x28,0x28,0x20,0x00 -+// 52247 찗 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x09,0x01,0x00,0x06,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0xe4,0x34,0x14,0x48,0x44,0x2c,0x04,0x04,0x20,0x00 -+// 52248 찘 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x00,0x04,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x64,0x44,0xe4,0x24,0x14,0x00,0x98,0x90,0x18,0x24,0x42,0x00 -+// 52249 찙 ; -+,0x00,0x00,0x00,0x0f,0x02,0x06,0x09,0x01,0x00,0x00,0x05,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x64,0x44,0xe4,0x34,0x14,0x00,0xe0,0x20,0x20,0x20,0x3c,0x00 -+// 52250 찚 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x00,0x04,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0xe4,0x64,0x44,0xc4,0xa4,0x14,0x00,0x00,0x08,0x28,0x08,0x7e,0x00 -+// 52251 찛 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x02,0x04,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x08,0xe8,0x48,0x48,0xc8,0x28,0x08,0x38,0x00,0x10,0x2c,0x44,0x28,0x00 -+// 52252 찜 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0b,0x01,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x64,0x44,0xe4,0x24,0x10,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 52253 찝 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x64,0x44,0xe4,0xa4,0x14,0x00,0x04,0x8c,0x04,0x04,0x8c,0x00 -+// 52254 찞 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x00,0x04,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xc4,0x24,0x14,0x18,0x88,0x98,0x98,0xa4,0x82,0x00 -+// 52255 찟 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x01,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x0c,0xe4,0x64,0x44,0xc4,0xa4,0x14,0x44,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 52256 찠 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x01,0x04,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x00,0x04,0xe4,0x64,0x44,0xc4,0xa4,0x14,0x10,0x88,0x18,0x94,0x66,0x42,0x00 -+// 52257 찡 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xc4,0x24,0x14,0x04,0x60,0x88,0x08,0x08,0xf0,0x00 -+// 52258 찢 ; -+,0x00,0x00,0x00,0x0f,0x06,0x04,0x0a,0x11,0x02,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xe4,0x34,0x14,0x00,0xfc,0x40,0x90,0x0c,0x04,0x00 -+// 52259 찣 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x00,0x04,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xc4,0x24,0x14,0xe0,0x00,0xe0,0x60,0x98,0x04,0x00 -+// 52260 찤 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x11,0x00,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x64,0x44,0xe4,0x34,0x14,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 52261 찥 ; -+,0x00,0x00,0x00,0x0f,0x02,0x04,0x0a,0x01,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xe4,0x64,0x44,0xc4,0xa4,0x14,0x00,0x1c,0x00,0x38,0x00,0xfc,0x00 -+// 52262 찦 ; -+,0x00,0x00,0x00,0x0f,0x04,0x04,0x0a,0x11,0x02,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xe4,0x24,0x14,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 52263 찧 ; -+,0x00,0x00,0x00,0x0f,0x06,0x04,0x0a,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0xe4,0x44,0x44,0xc4,0x24,0x10,0xe0,0x0c,0x60,0x90,0x00,0xf0,0x00 -+// 52264 차 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x01,0x02,0x05,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x88,0x08,0x0f,0x08,0xc8,0x48,0x08,0x08,0x08,0x00 -+// 52265 착 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x08,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x0e,0x88,0x48,0x00,0xb8,0x08,0x08,0x08,0x08,0x00 -+// 52266 찪 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x0f,0x88,0x48,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52267 찫 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x01,0x03,0x04,0x10,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x0f,0x88,0x48,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 52268 찬 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x01,0x03,0x04,0x08,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x88,0x08,0xc8,0x88,0x0b,0xc8,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 52269 찭 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x18,0x00,0x00,0x05,0x04,0x00,0x00,0x10,0x08,0x08,0x48,0x88,0x8f,0x88,0x48,0x00,0xfc,0x10,0x30,0x68,0x84,0x00 -+// 52270 찮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x0e,0x88,0x40,0x70,0x04,0x30,0x48,0x08,0x48,0x00 -+// 52271 찯 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x0f,0x88,0x48,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 52272 찰 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x01,0x03,0x04,0x10,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x0e,0x88,0x40,0x00,0x90,0x10,0x70,0x00,0xfc,0x00 -+// 52273 찱 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x01,0x02,0x04,0x18,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x0e,0xc8,0x40,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 52274 찲 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x02,0x0c,0x10,0x09,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x88,0x88,0x0e,0x88,0x40,0x00,0x48,0x48,0x48,0x48,0x70,0x00 -+// 52275 찳 ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x01,0x02,0x04,0x10,0x0e,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x0e,0x88,0x48,0x10,0xc8,0x48,0x48,0x48,0x48,0x00 -+// 52276 찴 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x02,0x0c,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x0e,0x88,0x40,0x00,0x10,0x10,0x38,0x24,0x44,0x00 -+// 52277 찵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x08,0x88,0x0e,0x88,0x40,0x00,0x40,0x40,0x40,0x40,0x08,0x00 -+// 52278 찶 ; -+,0x00,0x00,0x00,0x02,0x00,0x00,0x01,0x02,0x04,0x10,0x0f,0x01,0x0e,0x08,0x04,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x0e,0x88,0x48,0x00,0x58,0x18,0x40,0x10,0xfc,0x00 -+// 52279 찷 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x0c,0x18,0x01,0x01,0x0c,0x08,0x04,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x0e,0x88,0x40,0x30,0x44,0x10,0x48,0x44,0x38,0x00 -+// 52280 참 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x00,0x03,0x00,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x08,0x88,0x48,0x00,0x18,0x08,0x08,0x00,0xf8,0x00 -+// 52281 찹 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x08,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x88,0x08,0xc8,0x88,0x88,0x48,0x00,0x18,0x08,0xf8,0x08,0xf8,0x00,0x00 -+// 52282 찺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x11,0x0c,0x06,0x04,0x07,0x04,0x00,0x00,0x10,0x08,0x08,0x48,0x88,0x8f,0x48,0x20,0x98,0x88,0x90,0x94,0xa6,0x42,0x00 -+// 52283 찻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x88,0x88,0x48,0x08,0x60,0x40,0xa0,0x08,0x04,0x00 -+// 52284 찼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x08,0x48,0xc8,0x8f,0xc8,0x08,0x10,0x18,0x10,0x98,0x64,0x40,0x00 -+// 52285 창 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0xc8,0x88,0x88,0x48,0x28,0x60,0x90,0x08,0x08,0x90,0x00 -+// 52286 찾 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x0c,0x10,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x88,0x08,0xc8,0x88,0x0e,0xc8,0x48,0x00,0xe0,0x40,0x90,0x0c,0x04,0x00 -+// 52287 찿 ; -+,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x10,0x08,0x08,0xc8,0xc8,0x8f,0xc8,0x28,0xe0,0x04,0xe0,0x60,0x98,0x04,0x00 -+// 52288 챀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x18,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0xc8,0x8f,0x88,0x48,0x00,0x98,0x08,0xf8,0x08,0x00,0x00 -+// 52289 챁 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x0e,0x88,0x40,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 52290 챂 ; -+,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x0f,0x88,0x48,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 52291 챃 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x00,0x04,0x00,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x0f,0x88,0x48,0xe0,0x0c,0x40,0xb0,0x10,0xa0,0x00 -+// 52292 채 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x0f,0x01,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0x24,0x3c,0x24,0xa4,0x24,0x24,0x24,0x04,0x00 -+// 52293 책 ; -+,0x00,0x00,0x00,0x07,0x00,0x0d,0x01,0x03,0x04,0x10,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x3c,0x24,0xa4,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 52294 챆 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x03,0x07,0x08,0x10,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0xa4,0x3c,0x24,0xa0,0x00,0xbc,0x84,0x80,0x00,0x00,0x00 -+// 52295 챇 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x03,0x05,0x08,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0xa0,0x10,0x98,0x90,0xa8,0x24,0x40,0x00 -+// 52296 챈 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x01,0x03,0x04,0x10,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x24,0xa4,0xa4,0x24,0x24,0xa4,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 52297 챉 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x03,0x05,0x08,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0xa0,0x04,0xf0,0x10,0x28,0x44,0x80,0x00 -+// 52298 챊 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x03,0x0c,0x10,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0xa4,0x2c,0x24,0xa0,0x30,0x0c,0x30,0x48,0x48,0x78,0x00 -+// 52299 챋 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x07,0x08,0x10,0x03,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0xa4,0x00,0xf8,0x00,0x00,0x00,0xfc,0x00 -+// 52300 챌 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x07,0x08,0x10,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x48,0x20,0x20,0x20,0x38,0x20,0x80,0x00,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 52301 챍 ; -+,0x00,0x00,0x00,0x07,0x00,0x09,0x01,0x03,0x04,0x18,0x01,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x3c,0x24,0xa4,0x00,0xac,0x04,0x04,0x00,0x00,0x00 -+// 52302 챎 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x01,0x03,0x04,0x18,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x3c,0x24,0xa0,0x00,0xa4,0x24,0x24,0x24,0x20,0x00 -+// 52303 챏 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x01,0x03,0x04,0x18,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x64,0x24,0x24,0xa4,0x2c,0x24,0xa0,0x88,0x44,0x7c,0x44,0x4c,0x40,0x00 -+// 52304 챐 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x07,0x08,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x48,0x28,0x28,0x28,0x28,0x28,0x88,0x00,0x10,0x10,0x38,0x24,0x46,0x00 -+// 52305 챑 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x03,0x03,0x0c,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x2c,0x24,0xa0,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 52306 챒 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x07,0x08,0x10,0x0d,0x01,0x0f,0x00,0x06,0x00,0x00,0x08,0x4c,0x24,0x24,0x24,0x3c,0x20,0xa0,0x00,0x78,0x08,0x08,0x20,0xfe,0x00 -+// 52307 챓 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x07,0x08,0x10,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x68,0x20,0x20,0x20,0x28,0x20,0xa0,0x30,0x00,0x10,0x28,0x44,0x28,0x00 -+// 52308 챔 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x02,0x05,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x2c,0x24,0xa0,0x00,0x8c,0x08,0x08,0x08,0x00,0x00 -+// 52309 챕 ; -+,0x00,0x00,0x00,0x07,0x00,0x09,0x03,0x03,0x04,0x10,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0x24,0xa4,0x2c,0x24,0xa0,0x00,0x08,0x88,0x00,0x08,0x08,0x00 -+// 52310 챖 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x03,0x07,0x08,0x11,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x68,0x20,0xa0,0x20,0x28,0x20,0xa0,0x10,0x88,0x90,0x98,0xa4,0xc2,0x00 -+// 52311 챗 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x2c,0x24,0xa4,0x40,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 52312 챘 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0c,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x2c,0x24,0xa0,0x10,0x08,0x18,0x90,0x24,0x42,0x00 -+// 52313 챙 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x03,0x07,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x3c,0x24,0xa4,0x24,0x70,0x88,0x88,0x88,0xf8,0x00 -+// 52314 챚 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x01,0x03,0x04,0x10,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x34,0x24,0xa4,0x00,0xfc,0x40,0xb0,0x0c,0x04,0x00 -+// 52315 챛 ; -+,0x00,0x00,0x00,0x07,0x01,0x01,0x02,0x07,0x08,0x10,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x08,0x6c,0x24,0xa4,0x24,0x2c,0x24,0xa0,0xe0,0x00,0xe0,0x40,0x90,0x0c,0x00 -+// 52316 챜 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x05,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0x2c,0x20,0xa0,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 52317 챝 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x06,0x09,0x10,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x08,0x48,0x28,0x28,0x28,0x28,0x28,0xa0,0x00,0xf8,0x00,0x78,0x00,0xfc,0x00 -+// 52318 챞 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x2c,0x24,0xa0,0x00,0xfc,0x10,0x10,0x10,0xfe,0x00 -+// 52319 챟 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x07,0x08,0x10,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0x2c,0x20,0xa0,0xe0,0x0c,0x40,0x90,0x10,0xf0,0x00 -+// 52320 챠 ; -+,0x00,0x00,0x00,0x07,0x00,0x1f,0x00,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0xc8,0x8f,0x08,0x08,0x88,0x4f,0x08,0x08,0x08,0x08,0x00 -+// 52321 챡 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x04,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x8e,0x08,0x88,0x48,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 52322 챢 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x0c,0x10,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x8e,0x08,0x88,0x48,0x00,0x48,0x08,0x08,0x08,0x08,0x00 -+// 52323 챣 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x04,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x88,0x08,0xc8,0x8e,0x08,0x88,0x48,0x00,0x98,0x90,0x98,0x24,0xc2,0x00 -+// 52324 챤 ; -+,0x00,0x00,0x00,0x03,0x00,0x0d,0x01,0x03,0x04,0x08,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x08,0x08,0xc8,0x48,0x08,0x08,0x00,0x0c,0x00,0x00 -+// 52325 챥 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x03,0x04,0x10,0x19,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x8e,0x08,0x88,0x4e,0x00,0xfc,0x30,0x30,0x48,0x84,0x00 -+// 52326 챦 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x04,0x10,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0x88,0x48,0x70,0x00,0xf0,0x48,0x88,0x48,0x00 -+// 52327 챧 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x07,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x8f,0x08,0x88,0x4e,0x00,0xf8,0x00,0x00,0x00,0xfc,0x00 -+// 52328 챨 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x0c,0x10,0x02,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0x88,0x4e,0x00,0x10,0x10,0xf0,0x00,0xfc,0x00 -+// 52329 챩 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x06,0x08,0x18,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x88,0x8e,0x08,0xca,0x48,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 52330 챪 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x0c,0x10,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x88,0x8e,0x08,0x88,0x4e,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 52331 챫 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x02,0x0c,0x10,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x88,0x8e,0x08,0x88,0x48,0x10,0x48,0x58,0x48,0x48,0x58,0x00 -+// 52332 챬 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x08,0x18,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x10,0x18,0x08,0x88,0x8e,0x08,0x8a,0x48,0x10,0x10,0x10,0x38,0x44,0x04,0x00 -+// 52333 챭 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x0c,0x10,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x88,0x8e,0x08,0x88,0x4e,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 52334 챮 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x06,0x08,0x10,0x03,0x00,0x0e,0x08,0x0c,0x00,0x00,0x10,0x18,0x08,0x88,0x8e,0x08,0x88,0x48,0x00,0xf8,0x18,0x50,0x10,0xfc,0x00 -+// 52335 챯 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x0c,0x18,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x08,0x88,0x8e,0x00,0x88,0x48,0x30,0x0c,0x10,0x08,0x44,0x28,0x00 -+// 52336 챰 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x03,0x04,0x10,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x00,0x00,0x4e,0x00,0x38,0x18,0x10,0x10,0x00,0x00 -+// 52337 챱 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x04,0x10,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0x88,0x48,0x10,0x18,0x18,0x08,0x08,0xf8,0x00 -+// 52338 챲 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x01,0x02,0x0c,0x11,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0x8a,0x48,0x10,0x90,0x90,0xa8,0x04,0x40,0x00 -+// 52339 챳 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x01,0x02,0x0c,0x10,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x08,0x88,0x4e,0x00,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 52340 챴 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x08,0x10,0x01,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0xca,0x48,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 52341 챵 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x0c,0x10,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x08,0x88,0x4e,0x40,0xe0,0x10,0x08,0x10,0xe0,0x00 -+// 52342 챶 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x01,0x02,0x0c,0x10,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0x8a,0x48,0x00,0xf8,0x40,0xb0,0x08,0x04,0x00 -+// 52343 챷 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x0c,0x10,0x00,0x04,0x00,0x01,0x04,0x00,0x00,0x00,0x10,0x00,0x80,0x8e,0x00,0x8a,0x48,0xc0,0x08,0xc0,0xe0,0x18,0x04,0x00 -+// 52344 챸 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x01,0x03,0x0c,0x10,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x8f,0x08,0x88,0x4e,0x00,0xd8,0x08,0xf8,0x08,0x00,0x00 -+// 52345 챹 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x0c,0x10,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0x88,0x48,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 52346 챺 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x0c,0x10,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x08,0x88,0x8e,0x08,0x88,0x48,0x00,0xf8,0x30,0x10,0x20,0x00,0x00 -+// 52347 챻 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x06,0x08,0x10,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x10,0x10,0x10,0x90,0x9e,0x10,0x9a,0x58,0xe0,0x0c,0xc0,0x20,0x10,0xa0,0x00 -+// 52348 챼 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x0f,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0xac,0x24,0x24,0x24,0x04,0x00 -+// 52349 챽 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x08,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x2c,0xa4,0x00,0xdc,0x04,0x0c,0x08,0x08,0x00 -+// 52350 챾 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x08,0x10,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xbc,0x24,0x24,0x24,0xa4,0x00,0xbc,0x84,0x84,0x84,0x00,0x00 -+// 52351 챿 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x03,0x07,0x08,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x24,0x3c,0xa4,0x24,0x24,0xa4,0x10,0x88,0x98,0x98,0x24,0x42,0x00 -+// 52352 첀 ; -+,0x00,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x05,0x08,0x10,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x2c,0x2c,0x24,0x24,0xbc,0x20,0x00,0x00,0x04,0x00,0x00 -+// 52353 첁 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x08,0x44,0x24,0x3c,0x24,0x24,0x2c,0xa4,0x00,0xf8,0x10,0x30,0x6c,0x84,0x00 -+// 52354 첂 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x10,0x18,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x48,0x48,0x78,0x48,0x48,0x68,0xc8,0x70,0x1c,0x70,0x48,0x88,0x70,0x00 -+// 52355 첃 ; -+,0x00,0x00,0x00,0x06,0x00,0x0b,0x02,0x07,0x08,0x10,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x0c,0x24,0x3c,0x24,0x24,0x38,0xa0,0x00,0xf8,0x00,0x00,0x00,0xfc,0x00 -+// 52356 첄 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x07,0x09,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x10,0x48,0x48,0x78,0x48,0x48,0x68,0x48,0x00,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 52357 첅 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x48,0x48,0x78,0x48,0x48,0x68,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52358 첆 ; -+,0x00,0x00,0x00,0x00,0x07,0x03,0x02,0x05,0x08,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x18,0x48,0x48,0x68,0x48,0x68,0x48,0x00,0x08,0x48,0x48,0x48,0x48,0x40,0x00 -+// 52359 첇 ; -+,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x05,0x08,0x1b,0x01,0x03,0x08,0x09,0x04,0x00,0x00,0x00,0x48,0x28,0x38,0x28,0x28,0x28,0x80,0x88,0x48,0x48,0x48,0x48,0x48,0x00 -+// 52360 첈 ; -+,0x00,0x00,0x00,0x04,0x01,0x01,0x02,0x07,0x08,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x08,0x4c,0x24,0x3c,0x24,0x2c,0x28,0xa0,0x00,0x18,0x10,0x38,0x24,0x46,0x00 -+// 52361 첉 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x05,0x08,0x1f,0x01,0x03,0x08,0x08,0x0c,0x00,0x00,0x10,0x48,0x28,0x38,0x08,0x38,0x08,0x00,0xd8,0x40,0x78,0x40,0x40,0x00,0x00 -+// 52362 첊 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x07,0x08,0x10,0x03,0x00,0x08,0x08,0x0c,0x00,0x00,0x00,0x48,0x48,0x78,0x48,0x68,0x68,0x88,0x00,0x10,0x48,0x40,0x10,0xe4,0x00 -+// 52363 첋 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x05,0x08,0x10,0x0b,0x00,0x08,0x08,0x0c,0x00,0x00,0x00,0x48,0x48,0x78,0x48,0x68,0x68,0x80,0x30,0x0c,0x30,0x48,0x48,0x78,0x00 -+// 52364 첌 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x05,0x08,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x2c,0x2c,0xa0,0x00,0x9c,0x08,0x08,0x08,0x00,0x00 -+// 52365 첍 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x10,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x48,0x68,0x38,0x08,0x28,0x28,0x88,0x10,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 52366 첎 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x07,0x09,0x01,0x08,0x0f,0x08,0x0d,0x08,0x00,0x00,0x00,0x48,0x48,0x78,0x48,0x48,0x48,0x48,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 52367 첏 ; -+,0x00,0x00,0x00,0x06,0x00,0x0b,0x02,0x06,0x08,0x10,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x48,0x28,0x38,0x28,0x28,0x38,0xa8,0x88,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 52368 첐 ; -+,0x00,0x00,0x00,0x06,0x00,0x0b,0x02,0x06,0x09,0x10,0x03,0x02,0x07,0x04,0x10,0x00,0x00,0x10,0xc8,0x48,0x78,0x48,0x48,0x68,0x48,0x10,0x10,0x10,0x28,0xe4,0x80,0x00 -+// 52369 첑 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x18,0x48,0x28,0x38,0x28,0x28,0x28,0xa8,0x28,0x70,0x88,0x08,0x08,0xf0,0x00 -+// 52370 첒 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x07,0x08,0x00,0x07,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x4c,0x24,0x3c,0x24,0x2c,0x28,0xa0,0x00,0xf8,0xc0,0xb0,0x18,0x04,0x00 -+// 52371 첓 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x07,0x09,0x11,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x10,0xc8,0x68,0x78,0x48,0x68,0x68,0x88,0xc0,0x08,0xc0,0xc0,0x10,0x0c,0x00 -+// 52372 첔 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x05,0x08,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x48,0x68,0x38,0x28,0x28,0x28,0x80,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 52373 첕 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x03,0x06,0x09,0x10,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0x68,0x38,0x28,0x28,0x38,0xa8,0x00,0x78,0x00,0x38,0x00,0xfc,0x00 -+// 52374 첖 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x07,0x08,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x00,0x48,0x28,0x38,0x28,0x28,0x28,0xa0,0x00,0xfc,0x30,0x10,0x00,0xfe,0x00 -+// 52375 첗 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x07,0x08,0x10,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x48,0x48,0x78,0x48,0x68,0x68,0x88,0xe0,0xfc,0x40,0x10,0x10,0xe0,0x00 -+// 52376 처 ; -+,0x00,0x00,0x00,0x07,0x00,0x1f,0x00,0x01,0x03,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0xc8,0x88,0x78,0x08,0x88,0x48,0x08,0x08,0x08,0x08,0x00 -+// 52377 척 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x08,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 52378 첚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x10,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x08,0x68,0x08,0x08,0x08,0x08,0x00 -+// 52379 첛 ; -+,0x00,0x00,0x03,0x00,0x03,0x00,0x01,0x02,0x04,0x10,0x0f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x18,0x98,0x10,0x28,0x24,0x42,0x00 -+// 52380 천 ; -+,0x00,0x00,0x00,0x03,0x00,0x0f,0x01,0x03,0x04,0x08,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0xc4,0x84,0x7c,0x84,0x44,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 52381 첝 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x08,0x08,0x08,0x0c,0x06,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x38,0x88,0xc8,0x08,0xfc,0x10,0x30,0x6c,0x84,0x00 -+// 52382 첞 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x01,0x06,0x08,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x18,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0x38,0x04,0x30,0x48,0xc4,0x68,0x00 -+// 52383 첟 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x03,0x0c,0x10,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x18,0x08,0x08,0xc8,0x88,0x38,0x88,0xc8,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 52384 철 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x06,0x08,0x10,0x03,0x00,0x03,0x00,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x00 -+// 52385 첡 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x03,0x06,0x08,0x10,0x0d,0x01,0x0c,0x08,0x0f,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52386 첢 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x01,0x06,0x08,0x10,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0x08,0x48,0x48,0x48,0x48,0x00,0x00 -+// 52387 첣 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x06,0x08,0x10,0x03,0x00,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0x18,0x48,0x68,0x48,0x48,0x48,0x00 -+// 52388 첤 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x03,0x06,0x08,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x00,0x10,0x10,0x38,0x4c,0x84,0x00 -+// 52389 첥 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x08,0x10,0x0f,0x01,0x0d,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 52390 첦 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x01,0x06,0x08,0x10,0x0f,0x01,0x0e,0x08,0x06,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x08,0x50,0x08,0x48,0x00,0xfc,0x00 -+// 52391 첧 ; -+,0x00,0x00,0x07,0x00,0x1f,0x01,0x03,0x06,0x08,0x00,0x0f,0x01,0x08,0x08,0x0c,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x30,0x04,0x30,0x48,0x40,0x78,0x00 -+// 52392 첨 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x03,0x0c,0x10,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x58,0x08,0x88,0x00,0x18,0x08,0x08,0x08,0xc0,0x00 -+// 52393 첩 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x03,0x06,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0x18,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 52394 첪 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x02,0x08,0x01,0x08,0x05,0x00,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x18,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 52395 첫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x08,0x48,0x40,0x90,0x08,0x04,0x00 -+// 52396 첬 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x02,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x88,0x08,0xc8,0x88,0x38,0x88,0x48,0x18,0x18,0x10,0xb8,0x64,0x40,0x00 -+// 52397 청 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x08,0x08,0x88,0x48,0x60,0x90,0x08,0x08,0xf0,0x00 -+// 52398 첮 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x01,0x03,0x0c,0x10,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x08,0xf8,0x40,0xa0,0x08,0x04,0x00 -+// 52399 첯 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x03,0x06,0x08,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x18,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0xe0,0x08,0xc0,0xc0,0x10,0x0c,0x00 -+// 52400 첰 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x01,0x03,0x0c,0x10,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x38,0x08,0xc8,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 52401 첱 ; -+,0x00,0x00,0x07,0x00,0x0f,0x01,0x03,0x06,0x08,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0x08,0x78,0x00,0x78,0x00,0xfc,0x00 -+// 52402 첲 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x06,0x08,0x10,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0x38,0x88,0x48,0x00,0xf8,0x30,0x10,0x20,0xfc,0x00 -+// 52403 첳 ; -+,0x00,0x00,0x07,0x00,0x1f,0x01,0x03,0x06,0x08,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x88,0x38,0x88,0x48,0xe0,0x0c,0x40,0xb0,0x10,0xb0,0x00 -+// 52404 체 ; -+,0x00,0x00,0x00,0x06,0x00,0x07,0x02,0x02,0x06,0x09,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x4c,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x04,0x00 -+// 52405 첵 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x68,0x28,0x28,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 52406 첶 ; -+,0x00,0x00,0x00,0x02,0x01,0x03,0x02,0x05,0x09,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x68,0x28,0x28,0x28,0xe8,0x28,0x28,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52407 첷 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x19,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0x20,0x10,0x10,0x28,0x24,0x44,0x00 -+// 52408 첸 ; -+,0x00,0x00,0x00,0x06,0x00,0x1f,0x03,0x02,0x06,0x09,0x10,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x4c,0x24,0x24,0xa4,0x24,0x64,0x24,0x24,0x20,0x00,0x00,0x00,0xfc,0x00 -+// 52409 첹 ; -+,0x00,0x00,0x00,0x02,0x07,0x03,0x02,0x0d,0x11,0x00,0x18,0x08,0x08,0x09,0x0c,0x00,0x00,0x10,0x68,0x28,0x28,0x28,0xe8,0x28,0x28,0x00,0xf0,0x30,0x30,0x48,0x84,0x00 -+// 52410 첺 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x00,0x18,0x08,0x08,0x0f,0x04,0x00,0x00,0x10,0x68,0x28,0x28,0x28,0xe8,0x28,0x28,0x70,0x0c,0x30,0x48,0x88,0x70,0x00 -+// 52411 첻 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0x00,0x78,0x00,0x00,0x00,0xfc,0x00 -+// 52412 첼 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0x00,0x08,0x08,0x78,0x00,0xfc,0x00 -+// 52413 첽 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x10,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x10,0x68,0x28,0x28,0x28,0x68,0x28,0x28,0x08,0x68,0x08,0x08,0x08,0x08,0x00 -+// 52414 첾 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x00,0x01,0x01,0x0c,0x08,0x0f,0x00,0x00,0x18,0x68,0x28,0x28,0x28,0xe8,0x28,0x28,0x08,0x48,0x48,0x48,0x48,0x60,0x00 -+// 52415 첿 ; -+,0x00,0x00,0x00,0x07,0x01,0x03,0x02,0x06,0x09,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0xe4,0x20,0x20,0x98,0x48,0x78,0x48,0x48,0x48,0x00 -+// 52416 쳀 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0xe4,0x24,0x20,0x20,0x10,0x10,0x38,0x24,0x44,0x00 -+// 52417 쳁 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x05,0x08,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0xe4,0x24,0xa4,0x00,0x40,0x40,0x40,0x40,0x3c,0x00 -+// 52418 쳂 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x03,0x07,0x09,0x10,0x0f,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x78,0x48,0x28,0x20,0xfc,0x00 -+// 52419 쳃 ; -+,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x07,0x09,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0xe4,0x24,0x24,0x38,0x06,0x10,0x28,0x44,0x28,0x00 -+// 52420 쳄 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x05,0x18,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0xe4,0x20,0xa0,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 52421 쳅 ; -+,0x00,0x00,0x00,0x06,0x00,0x0b,0x03,0x06,0x09,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x68,0x28,0x28,0x18,0x08,0xe8,0x08,0x08,0x08,0x00 -+// 52422 쳆 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x01,0x08,0x0d,0x00,0x04,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0x10,0x90,0x90,0xb8,0xa4,0x40,0x00 -+// 52423 쳇 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x07,0x09,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0xc8,0x40,0x40,0x90,0x08,0x04,0x00 -+// 52424 쳈 ; -+,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x06,0x09,0x00,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0xe4,0x24,0x24,0x10,0x18,0x10,0x98,0xa4,0x42,0x00 -+// 52425 쳉 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x02,0x05,0x08,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0xe4,0x24,0xa4,0x24,0x70,0x88,0x08,0x08,0xf0,0x00 -+// 52426 쳊 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x03,0x07,0x08,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0xe4,0x24,0xa4,0x00,0xfc,0x40,0xb0,0x08,0x04,0x00 -+// 52427 쳋 ; -+,0x00,0x00,0x00,0x06,0x01,0x01,0x02,0x07,0x08,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x08,0x6c,0x24,0xa4,0x24,0xe4,0x24,0xa4,0xe0,0x00,0xe0,0x40,0x98,0x0c,0x00 -+// 52428 쳌 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xe8,0x28,0x28,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 52429 쳍 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x10,0x68,0x28,0x28,0x28,0xe8,0x28,0x28,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 52430 쳎 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x06,0x09,0x11,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x10,0x48,0x28,0x28,0x28,0xe8,0x28,0x08,0x00,0xf8,0x30,0x00,0x20,0xfc,0x00 -+// 52431 쳏 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x18,0x68,0x28,0x28,0x28,0xe8,0x28,0x28,0xe0,0x0c,0x40,0x90,0x10,0xe0,0x00 -+// 52432 쳐 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0xf8,0x08,0x08,0xf8,0x88,0x08,0x08,0x08,0x08,0x00 -+// 52433 쳑 ; -+,0x00,0x00,0x07,0x00,0x1f,0x01,0x03,0x05,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x08,0x08,0x38,0x88,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 52434 쳒 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x03,0x05,0x08,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0x08,0x88,0x38,0x08,0x08,0x88,0x08,0x48,0x08,0x08,0x08,0x08,0x00 -+// 52435 쳓 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x03,0x07,0x08,0x10,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x18,0x18,0x10,0x28,0x24,0x42,0x00 -+// 52436 쳔 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x01,0x02,0x05,0x08,0x00,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x28,0x08,0x08,0x88,0x08,0x08,0x00,0x04,0x00,0x00 -+// 52437 쳕 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x03,0x07,0x08,0x10,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x10,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x08,0xf8,0x10,0x38,0x44,0x80,0x00 -+// 52438 쳖 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x03,0x07,0x08,0x10,0x0c,0x04,0x04,0x05,0x06,0x00,0x00,0x10,0x08,0x08,0x88,0x78,0x08,0x08,0x88,0x38,0x0c,0x30,0x48,0x40,0x78,0x00 -+// 52439 쳗 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x0c,0x10,0x03,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0xf8,0x08,0x08,0x88,0x08,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 52440 쳘 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x0c,0x10,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x08,0x98,0x08,0xf0,0x00,0xfc,0x00 -+// 52441 쳙 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x08,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52442 쳚 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x01,0x03,0x04,0x10,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x10,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x08,0x48,0x48,0x48,0x48,0x20,0x00 -+// 52443 쳛 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x03,0x07,0x0c,0x18,0x03,0x00,0x18,0x08,0x0e,0x00,0x00,0x18,0x08,0x08,0x88,0xb8,0x08,0x08,0x88,0x98,0x48,0x48,0x48,0x48,0x48,0x00 -+// 52444 쳜 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x07,0x08,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x08,0x10,0x10,0x30,0x4c,0x84,0x00 -+// 52445 쳝 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x08,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x18,0x08,0x08,0x08,0xf8,0x08,0x08,0x88,0x08,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52446 쳞 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x01,0x03,0x04,0x08,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0xf8,0x08,0x08,0x88,0x08,0x78,0x08,0x08,0x20,0xfc,0x00 -+// 52447 쳟 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x01,0x03,0x04,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0xf8,0x08,0x08,0x88,0x38,0x00,0x10,0x28,0x44,0x48,0x00 -+// 52448 쳠 ; -+,0x00,0x00,0x04,0x00,0x00,0x01,0x01,0x03,0x0c,0x10,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x88,0xb8,0x08,0x08,0x88,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 52449 쳡 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x03,0x07,0x08,0x10,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x78,0x08,0x08,0x88,0x18,0x08,0xf8,0x08,0x08,0x08,0x00 -+// 52450 쳢 ; -+,0x00,0x00,0x00,0x02,0x00,0x01,0x03,0x03,0x04,0x11,0x08,0x0d,0x08,0x0d,0x08,0x00,0x00,0x10,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 52451 쳣 ; -+,0x00,0x00,0x07,0x00,0x07,0x01,0x03,0x05,0x08,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x08,0x88,0x78,0x08,0x08,0x88,0x88,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 52452 쳤 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x90,0x08,0x10,0x98,0x24,0x40,0x00 -+// 52453 쳥 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x08,0x10,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0xb8,0x08,0x08,0x88,0x08,0x60,0x10,0x08,0x08,0xf0,0x00 -+// 52454 쳦 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x03,0x05,0x08,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x08,0x88,0x78,0x08,0x08,0x88,0x08,0xf8,0xc0,0xa0,0x18,0x00,0x00 -+// 52455 쳧 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x03,0x04,0x10,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0xc8,0x08,0xc0,0xc0,0x18,0x04,0x00 -+// 52456 쳨 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x03,0x07,0x08,0x10,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x08,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 52457 쳩 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x07,0x08,0x10,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x78,0x08,0x08,0x88,0x08,0x00,0x00,0xf8,0x00,0xfc,0x00 -+// 52458 쳪 ; -+,0x00,0x00,0x07,0x00,0x00,0x01,0x03,0x07,0x08,0x10,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x18,0x08,0x08,0x88,0xf8,0x08,0x08,0x88,0x00,0xf8,0x10,0x10,0x00,0xfc,0x00 -+// 52459 쳫 ; -+,0x00,0x00,0x07,0x00,0x07,0x01,0x02,0x07,0x08,0x10,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x78,0x08,0x08,0x88,0xe0,0x0c,0x40,0x10,0x10,0xe0,0x00 -+// 52460 쳬 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x1b,0x02,0x04,0x0e,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 52461 쳭 ; -+,0x00,0x00,0x00,0x04,0x01,0x03,0x06,0x06,0x09,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 52462 쳮 ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x06,0x01,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 52463 쳯 ; -+,0x00,0x00,0x00,0x04,0x00,0x03,0x02,0x06,0x09,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x20,0x10,0x10,0x28,0x44,0x04,0x00 -+// 52464 쳰 ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x03,0x02,0x06,0x09,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x08,0x28,0x28,0x28,0xe8,0x28,0x28,0x28,0x28,0x00,0x00,0x00,0x08,0x00 -+// 52465 쳱 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x04,0x06,0x01,0x00,0x19,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x00,0xf0,0x30,0x30,0x48,0x84,0x00 -+// 52466 쳲 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x04,0x0b,0x10,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0x28,0xe8,0x28,0x70,0x3c,0x30,0x48,0x88,0x70,0x00 -+// 52467 쳳 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x06,0x06,0x09,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0x28,0xe8,0x28,0x20,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 52468 쳴 ; -+,0x00,0x00,0x00,0x0e,0x00,0x02,0x06,0x04,0x0a,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x48,0x28,0x28,0xe8,0x28,0xe8,0x28,0x00,0x08,0x08,0x80,0x00,0xfc,0x00 -+// 52469 쳵 ; -+,0x00,0x00,0x00,0x0e,0x00,0x02,0x06,0x04,0x0a,0x11,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 52470 쳶 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x06,0x04,0x0b,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x08,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 52471 쳷 ; -+,0x00,0x00,0x00,0x0e,0x00,0x03,0x02,0x04,0x0a,0x11,0x00,0x02,0x08,0x08,0x0c,0x00,0x00,0x00,0x48,0x28,0x28,0xe8,0x28,0xe8,0x28,0x98,0x48,0x78,0x48,0x78,0x48,0x00 -+// 52472 쳸 ; -+,0x00,0x00,0x00,0x0e,0x00,0x03,0x02,0x04,0x0a,0x11,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x20,0x10,0x10,0x30,0x08,0x04,0x00 -+// 52473 쳹 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x19,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x24,0x04,0x04,0x64,0x04,0x64,0x04,0x00,0x40,0x48,0x40,0x40,0x3c,0x00 -+// 52474 쳺 ; -+,0x00,0x00,0x00,0x06,0x00,0x0b,0x02,0x04,0x0a,0x10,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x00,0x28,0x28,0x28,0x28,0x28,0xe8,0x28,0x00,0x70,0x08,0x48,0x00,0xfc,0x00 -+// 52475 쳻 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x06,0x04,0x0a,0x10,0x0b,0x00,0x08,0x08,0x04,0x00,0x00,0x00,0x68,0x28,0x28,0xe8,0x28,0xe8,0x28,0x30,0x0c,0x30,0x48,0x48,0x78,0x00 -+// 52476 쳼 ; -+,0x00,0x00,0x00,0x00,0x07,0x03,0x02,0x07,0x09,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x14,0x14,0xf4,0x14,0xf4,0x04,0x00,0xfc,0x04,0x08,0x08,0x00,0x00 -+// 52477 쳽 ; -+,0x00,0x00,0x00,0x06,0x01,0x03,0x02,0x06,0x09,0x10,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x04,0x04,0xe4,0x04,0xe4,0x04,0x08,0x0c,0x08,0x00,0x08,0x08,0x00 -+// 52478 쳾 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x02,0x05,0x08,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x14,0xf4,0x14,0x74,0x14,0x98,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 52479 쳿 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x03,0x02,0x05,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x34,0x94,0x04,0x24,0x60,0x50,0x8c,0x06,0x00 -+// 52480 촀 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x10,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x2c,0x24,0x24,0xe4,0x24,0xe4,0x20,0x10,0x08,0x18,0x98,0x64,0x02,0x00 -+// 52481 촁 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x74,0x14,0x74,0x94,0x04,0x34,0x88,0x84,0x84,0xf8,0x00 -+// 52482 촂 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x02,0x07,0x08,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0xf4,0x14,0xf4,0x84,0x00,0xfc,0x40,0xb0,0x08,0x04,0x00 -+// 52483 촃 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x08,0x24,0x04,0x04,0x64,0x04,0x64,0x04,0xe0,0x04,0xc0,0x40,0x98,0x04,0x00 -+// 52484 촄 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x05,0x08,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x04,0xe4,0x04,0x64,0x04,0x00,0xcc,0x0c,0xcc,0x00,0x00,0x00 -+// 52485 촅 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x24,0x04,0x64,0x04,0x64,0x04,0x00,0x00,0x00,0x00,0x00,0x18,0x00 -+// 52486 촆 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x02,0x06,0x09,0x00,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x08,0x24,0x24,0x24,0xe4,0x24,0xe4,0x24,0x00,0xfc,0x10,0x10,0x00,0xfe,0x00 -+// 52487 촇 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x06,0x09,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x2c,0x24,0x24,0xe4,0x24,0xe4,0x20,0x60,0xfc,0x60,0x10,0x10,0xf0,0x00 -+// 52488 초 ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xf0,0x20,0x40,0x1c,0x02,0xc0,0x40,0x40,0xfe,0x00,0x00 -+// 52489 촉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x10,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x30,0x20,0xc0,0x04,0xc0,0xc2,0x00,0x00,0x10,0x10,0x10,0x10,0x00 -+// 52490 촊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0xe0,0x84,0x40,0xfe,0x00,0x38,0x80,0x00,0x00,0x00,0x00 -+// 52491 촋 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x04,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x84,0x00,0xfe,0x00,0x30,0x10,0x30,0x0c,0x44,0x00 -+// 52492 촌 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x1f,0x00,0x04,0x04,0x04,0x01,0x00,0x00,0x00,0xc0,0x00,0x20,0xc0,0x9c,0x00,0x40,0x82,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 52493 촍 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x06,0x00,0x1f,0x00,0x08,0x08,0x08,0x0d,0x04,0x00,0x00,0x40,0x00,0xf0,0x20,0xc0,0x84,0x00,0xfe,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 52494 촎 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x08,0x08,0x08,0x08,0x06,0x00,0x00,0x80,0x00,0xf0,0x20,0xe0,0x8c,0x40,0xcf,0x00,0x00,0xfc,0x38,0x48,0x48,0x30 -+// 52495 촏 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x84,0x00,0xce,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 52496 촐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x00,0x70,0x20,0xc0,0x8c,0x40,0xfe,0x00,0xb0,0x10,0x70,0x00,0xfc,0x00 -+// 52497 촑 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x8c,0x40,0xff,0x00,0xa8,0x88,0x88,0x00,0x08,0x00 -+// 52498 촒 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x1f,0x00,0x01,0x01,0x0d,0x04,0x07,0x00,0x00,0x40,0x00,0xf0,0x20,0xe0,0xc4,0x40,0x82,0x00,0x24,0x24,0x24,0x20,0x2c,0x00 -+// 52499 촓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0x70,0x20,0xe0,0x8c,0x40,0xfe,0x08,0x44,0x2c,0x04,0x04,0x2c,0x00 -+// 52500 촔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x1f,0x00,0x0f,0x00,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0xc4,0x40,0xe2,0x00,0x10,0x10,0x28,0x04,0xc4,0x00 -+// 52501 촕 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x06,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x8c,0x40,0xfe,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52502 촖 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x03,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x8c,0x40,0xff,0x00,0x4c,0x08,0x08,0x28,0x1e,0x00 -+// 52503 촗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x84,0x00,0xfe,0x30,0x00,0x10,0x28,0x44,0x48,0x00 -+// 52504 촘 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0e,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf0,0x84,0x40,0xff,0x00,0x30,0x18,0x10,0x10,0xf0,0x00 -+// 52505 촙 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0xc4,0x40,0xfe,0x10,0x10,0xd0,0x10,0x10,0x10,0x00 -+// 52506 촚 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x00,0x08,0x04,0x04,0x00,0x05,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x84,0x40,0xfe,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 52507 촛 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x84,0x40,0xc6,0x00,0xc0,0xc0,0xc0,0x10,0x0c,0x00 -+// 52508 촜 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x06,0x00,0x1c,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0xe0,0x00,0xf0,0x20,0xf8,0x40,0x42,0x00,0x10,0x18,0x10,0xa8,0x64,0x40,0x00 -+// 52509 총 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x01,0x0c,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x30,0x60,0x9c,0x40,0x40,0xfb,0x40,0x30,0x10,0x10,0xb0,0x00 -+// 52510 촞 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0c,0x00,0x1f,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0xc0,0x00,0xf0,0x20,0xdc,0xc0,0x40,0xff,0x00,0xfc,0x40,0xa0,0x18,0x04,0x00 -+// 52511 촟 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x1f,0x01,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0xe0,0x00,0xf0,0x20,0xf0,0xc4,0x40,0xf2,0xc0,0x00,0xe0,0xc0,0x10,0x0c,0x00 -+// 52512 촠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x1f,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x70,0x30,0xe0,0xc4,0x40,0xff,0x00,0x18,0x08,0x78,0x08,0x08,0x00 -+// 52513 촡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x8c,0x40,0xff,0x00,0x38,0x00,0x30,0x00,0xf8,0x00 -+// 52514 촢 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x04,0x00,0x1f,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0xc0,0x00,0xf8,0x20,0xf8,0x40,0x40,0xf3,0x00,0xfc,0x00,0x10,0x00,0xfe,0x00 -+// 52515 촣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x1f,0x00,0x00,0x04,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x10,0x30,0xe0,0xc4,0x40,0xff,0xe0,0x04,0xc0,0x20,0x10,0x20,0x00 -+// 52516 촤 ; -+,0x00,0x00,0x03,0x00,0x01,0x00,0x01,0x02,0x09,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x08,0xc8,0xc8,0x08,0xc8,0x2c,0x0c,0x68,0x08,0x08,0x08,0x08,0x00 -+// 52517 촥 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x01,0x03,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x28,0x18,0x88,0x00,0x18,0x08,0x08,0x08,0x00,0x00 -+// 52518 촦 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x06,0x03,0x03,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x68,0x18,0xd8,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 52519 촧 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x06,0x01,0x03,0x18,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x28,0x18,0x88,0x00,0x10,0x10,0x30,0x48,0x84,0x00 -+// 52520 촨 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x03,0x0a,0x01,0x07,0x08,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x88,0x0e,0x18,0x88,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 52521 촩 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x02,0x03,0x18,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x28,0x18,0x88,0x00,0x0c,0x30,0x30,0x48,0x84,0x00 -+// 52522 촪 ; -+,0x00,0x00,0x03,0x00,0x09,0x03,0x06,0x03,0x03,0x18,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x68,0x18,0x88,0x00,0x00,0xfc,0x30,0x48,0x48,0x00 -+// 52523 촫 ; -+,0x00,0x00,0x03,0x00,0x09,0x03,0x06,0x03,0x03,0x1c,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x68,0x18,0xd0,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 52524 촬 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x01,0x1f,0x00,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x2a,0x18,0x80,0x00,0xf0,0x10,0x30,0x00,0xfc,0x00 -+// 52525 촭 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x06,0x03,0x03,0x18,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x28,0x18,0xc8,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 52526 촮 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x0e,0x01,0x1f,0x00,0x0f,0x01,0x0d,0x08,0x0f,0x00,0x00,0x10,0x88,0x88,0x88,0x08,0x28,0x18,0x88,0x00,0x58,0x48,0x48,0x48,0x78,0x00 -+// 52527 촯 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x0e,0x01,0x1f,0x00,0x0e,0x02,0x0a,0x08,0x0e,0x00,0x00,0x10,0x88,0x08,0x88,0x88,0x2a,0x18,0x88,0x00,0xc8,0x48,0x48,0x48,0x48,0x00 -+// 52528 촰 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x02,0x1f,0x00,0x0f,0x01,0x0d,0x08,0x0e,0x00,0x00,0x10,0x18,0x08,0x88,0x88,0x2a,0x18,0x80,0x00,0x10,0x10,0x38,0x4c,0x84,0x00 -+// 52529 촱 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x06,0x03,0x03,0x18,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x28,0x18,0x80,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 52530 촲 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x03,0x07,0x18,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x28,0x18,0x80,0x00,0x78,0x10,0x48,0x50,0x1c,0x00 -+// 52531 촳 ; -+,0x00,0x00,0x03,0x00,0x09,0x03,0x06,0x03,0x03,0x18,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x68,0x18,0x88,0x00,0x00,0x54,0x38,0x04,0x28,0x00 -+// 52532 촴 ; -+,0x00,0x00,0x03,0x00,0x09,0x03,0x06,0x03,0x03,0x1c,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x68,0x18,0xd8,0x00,0x00,0x18,0x10,0x10,0xf0,0x00 -+// 52533 촵 ; -+,0x00,0x00,0x03,0x00,0x09,0x03,0x06,0x02,0x03,0x18,0x02,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x6a,0x18,0x88,0x00,0x18,0x18,0x18,0x08,0x18,0x00 -+// 52534 촶 ; -+,0x00,0x00,0x03,0x00,0x09,0x01,0x06,0x02,0x03,0x18,0x01,0x08,0x05,0x00,0x05,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x68,0x18,0xc8,0x00,0x10,0x90,0x98,0xa4,0x42,0x00 -+// 52535 촷 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x02,0x03,0x18,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x18,0x08,0x88,0x08,0x2e,0x18,0x88,0x80,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 52536 촸 ; -+,0x00,0x00,0x03,0x00,0x09,0x01,0x06,0x01,0x03,0x18,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x68,0x18,0xc8,0x00,0x10,0x10,0x18,0xe4,0x44,0x00 -+// 52537 촹 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0c,0x03,0x03,0x1c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x0e,0x18,0xd8,0x00,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 52538 촺 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x03,0x03,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x18,0x08,0x88,0x88,0x0a,0x18,0x88,0x00,0x18,0x40,0xe0,0x10,0x0c,0x00 -+// 52539 촻 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x01,0x07,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x10,0x18,0x08,0x88,0x88,0x0e,0x18,0x80,0x00,0xc0,0xf8,0x40,0xb0,0x08,0x00 -+// 52540 촼 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x03,0x03,0x18,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x2a,0x18,0x88,0x00,0xd8,0x08,0xd8,0x08,0x00,0x00 -+// 52541 촽 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x06,0x03,0x03,0x1c,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x68,0x1e,0xc8,0x00,0x00,0x00,0x18,0x00,0xfc,0x00 -+// 52542 촾 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x01,0x03,0x18,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x10,0x18,0x08,0x88,0x88,0x0a,0x18,0x88,0x00,0xf8,0x20,0x10,0x00,0xfc,0x00 -+// 52543 촿 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x0e,0x02,0x03,0x18,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x10,0x18,0x08,0x88,0x08,0x2a,0x18,0x88,0x00,0x00,0xf8,0xa0,0x10,0x30,0x00 -+// 52544 쵀 ; -+,0x00,0x00,0x00,0x06,0x00,0x0b,0x02,0x05,0x04,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0x08,0x4c,0x24,0x24,0x24,0x24,0xa4,0x3c,0x24,0xa4,0x24,0x24,0x24,0x04,0x00 -+// 52545 쵁 ; -+,0x00,0x00,0x04,0x00,0x0d,0x02,0x07,0x02,0x03,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0xac,0x24,0xa4,0x00,0x00,0x0c,0x04,0x04,0x00,0x00 -+// 52546 쵂 ; -+,0x00,0x00,0x04,0x00,0x0f,0x03,0x0e,0x02,0x1f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xbc,0x24,0x24,0x00,0xbc,0x84,0x84,0x80,0x00,0x00 -+// 52547 쵃 ; -+,0x00,0x00,0x00,0x02,0x0d,0x03,0x07,0x02,0x03,0x18,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x6c,0x24,0xa4,0x24,0xac,0x2c,0x24,0x00,0x10,0x90,0x98,0x24,0x42,0x00 -+// 52548 쵄 ; -+,0x00,0x00,0x00,0x07,0x00,0x09,0x03,0x0e,0x02,0x03,0x18,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0xbc,0x24,0x24,0x24,0x04,0x00,0x00,0xfc,0x00 -+// 52549 쵅 ; -+,0x00,0x00,0x00,0x03,0x0d,0x03,0x07,0x02,0x03,0x18,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xac,0x2c,0x24,0x00,0xfc,0x10,0x38,0x44,0x84,0x00 -+// 52550 쵆 ; -+,0x00,0x00,0x00,0x00,0x0d,0x02,0x07,0x02,0x03,0x18,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0xac,0x2c,0x24,0x30,0x00,0xfc,0x38,0x40,0x38,0x00 -+// 52551 쵇 ; -+,0x00,0x00,0x00,0x03,0x0d,0x01,0x07,0x02,0x03,0x18,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x24,0xa4,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 52552 쵈 ; -+,0x00,0x00,0x00,0x02,0x0d,0x03,0x07,0x02,0x03,0x18,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xa4,0x2c,0xa4,0x00,0xfc,0x00,0x18,0x00,0xfe,0x00 -+// 52553 쵉 ; -+,0x00,0x00,0x00,0x00,0x0d,0x03,0x06,0x02,0x03,0x18,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0xbc,0x24,0x24,0x00,0xbc,0x04,0x04,0x04,0x00,0x00 -+// 52554 쵊 ; -+,0x00,0x00,0x00,0x00,0x0d,0x03,0x06,0x02,0x03,0x18,0x0f,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x6c,0x24,0xa4,0x24,0xac,0x24,0x24,0x00,0x6c,0x24,0x20,0x2c,0x20,0x00 -+// 52555 쵋 ; -+,0x00,0x00,0x00,0x00,0x0d,0x03,0x06,0x02,0x03,0x18,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0xb4,0x24,0xa4,0x00,0x4c,0x24,0x24,0x04,0x2c,0x00 -+// 52556 쵌 ; -+,0x00,0x00,0x00,0x00,0x0d,0x03,0x06,0x02,0x07,0x00,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0xbc,0x24,0x24,0x10,0x18,0x10,0x18,0x24,0x42,0x00 -+// 52557 쵍 ; -+,0x00,0x00,0x00,0x00,0x0d,0x03,0x07,0x02,0x03,0x18,0x0f,0x01,0x0d,0x00,0x06,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0xa4,0x34,0xa4,0x00,0xf8,0x40,0x78,0x40,0x3c,0x00 -+// 52558 쵎 ; -+,0x00,0x00,0x00,0x00,0x0d,0x02,0x06,0x02,0x07,0x10,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xbc,0x24,0x24,0x00,0x2c,0x08,0x28,0x28,0x7e,0x00 -+// 52559 쵏 ; -+,0x00,0x00,0x00,0x00,0x0d,0x03,0x07,0x02,0x03,0x38,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xa4,0x2c,0xa4,0x20,0x00,0x7c,0x38,0x44,0x28,0x00 -+// 52560 쵐 ; -+,0x00,0x00,0x00,0x02,0x0d,0x03,0x07,0x02,0x03,0x18,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xac,0x24,0x24,0x00,0x0c,0x0c,0x08,0x08,0x00,0x00 -+// 52561 쵑 ; -+,0x00,0x00,0x00,0x00,0x09,0x02,0x07,0x02,0x03,0x18,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x4c,0x24,0x24,0x24,0xac,0x2c,0xa4,0x00,0x08,0x08,0x08,0x00,0xf8,0x00 -+// 52562 쵒 ; -+,0x00,0x00,0x00,0x00,0x0b,0x02,0x07,0x02,0x07,0x10,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xa8,0x28,0x28,0x10,0x98,0x90,0x98,0xa4,0x42,0x00 -+// 52563 쵓 ; -+,0x00,0x00,0x00,0x02,0x0b,0x02,0x05,0x06,0x02,0x1c,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xb8,0x28,0xe8,0x08,0x40,0x40,0xa0,0x08,0x04,0x00 -+// 52564 쵔 ; -+,0x00,0x00,0x00,0x00,0x0d,0x02,0x07,0x02,0x07,0x18,0x03,0x03,0x03,0x04,0x08,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0xbc,0x24,0x24,0x00,0x18,0x10,0xb8,0x24,0x40,0x00 -+// 52565 쵕 ; -+,0x00,0x00,0x00,0x02,0x0b,0x02,0x05,0x02,0x03,0x1c,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x48,0x28,0x28,0x28,0xb8,0x28,0xa8,0x20,0x70,0x88,0x08,0x88,0x70,0x00 -+// 52566 쵖 ; -+,0x00,0x00,0x00,0x00,0x0d,0x02,0x07,0x02,0x03,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xac,0x24,0x24,0x00,0x1c,0x40,0xe0,0x18,0x04,0x00 -+// 52567 쵗 ; -+,0x00,0x00,0x00,0x00,0x0b,0x02,0x07,0x02,0x0f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xac,0x24,0x20,0x00,0x00,0xfc,0x40,0x98,0x04,0x00 -+// 52568 쵘 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x07,0x02,0x03,0x1c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x4c,0x24,0xa4,0x24,0xa4,0x3c,0xa4,0x00,0x0c,0x04,0x3c,0x04,0x00,0x00 -+// 52569 쵙 ; -+,0x00,0x00,0x00,0x00,0x0b,0x02,0x07,0x02,0x07,0x10,0x03,0x02,0x01,0x00,0x01,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0xac,0x24,0x24,0x00,0x38,0x00,0x78,0x00,0xfc,0x00 -+// 52570 쵚 ; -+,0x00,0x00,0x00,0x00,0x0b,0x02,0x07,0x02,0x07,0x10,0x07,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xac,0x28,0x20,0x00,0xfc,0x10,0x90,0x00,0xc4,0x00 -+// 52571 쵛 ; -+,0x00,0x00,0x00,0x00,0x0d,0x02,0x07,0x02,0x07,0x18,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0xac,0x24,0x24,0xe0,0x04,0x60,0x90,0x10,0xf0,0x00 -+// 52572 최 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x02,0x09,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x10,0x88,0x08,0xc8,0xc8,0x88,0xe8,0x08,0x08,0xe8,0x08,0x08,0x08,0x08,0x00 -+// 52573 쵝 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x06,0x01,0x03,0x18,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 52574 쵞 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x07,0x01,0x07,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x68,0x08,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52575 쵟 ; -+,0x00,0x00,0x03,0x00,0x09,0x03,0x06,0x01,0x07,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x48,0x08,0x88,0x00,0x10,0x90,0x10,0x2c,0x44,0x00 -+// 52576 쵠 ; -+,0x00,0x00,0x00,0x00,0x0e,0x01,0x02,0x09,0x01,0x1f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x88,0x68,0x08,0x08,0x88,0x08,0x00,0x00,0x00,0x04,0x00 -+// 52577 쵡 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x06,0x01,0x01,0x1c,0x00,0x0c,0x04,0x05,0x04,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0x04,0xf0,0x10,0x28,0x44,0x00 -+// 52578 쵢 ; -+,0x00,0x00,0x03,0x00,0x0d,0x03,0x07,0x01,0x1f,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x8c,0x04,0x84,0x04,0x24,0x08,0x80,0x20,0x00,0xfc,0x38,0x44,0x28,0x00 -+// 52579 쵣 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x06,0x01,0x01,0x18,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 52580 쵤 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x07,0x01,0x1f,0x00,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x18,0x88,0x08,0x88,0x08,0x08,0x08,0x88,0x00,0xf8,0x08,0x78,0x00,0xfc,0x00 -+// 52581 쵥 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x07,0x01,0x03,0x00,0x0b,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0x38,0x08,0x08,0x08,0x08,0x00 -+// 52582 쵦 ; -+,0x00,0x00,0x03,0x00,0x06,0x01,0x03,0x00,0x01,0x0c,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x24,0x84,0xe4,0x00,0x2c,0xa4,0xa4,0x24,0xac,0x00 -+// 52583 쵧 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x07,0x00,0x1f,0x00,0x07,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x24,0x84,0x84,0x00,0x64,0x24,0x24,0x24,0x24,0x00 -+// 52584 쵨 ; -+,0x00,0x00,0x01,0x00,0x00,0x01,0x03,0x00,0x01,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x84,0x04,0xc4,0x84,0x14,0x84,0xe4,0x00,0x88,0x88,0x98,0x06,0x42,0x00 -+// 52585 쵩 ; -+,0x00,0x00,0x01,0x00,0x00,0x03,0x01,0x00,0x0f,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x0c,0x84,0xc4,0x84,0xe4,0x04,0x84,0x04,0x00,0xa0,0xa0,0x20,0x20,0x00,0x00 -+// 52586 쵪 ; -+,0x00,0x00,0x01,0x00,0x06,0x01,0x03,0x00,0x01,0x0c,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0xc4,0x84,0x34,0x84,0xe4,0x00,0xb4,0x84,0xa4,0x00,0x6e,0x00 -+// 52587 쵫 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x07,0x01,0x01,0x08,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0x84,0x84,0x24,0x04,0xc4,0x00,0x00,0x7e,0x1c,0x24,0x24,0x00 -+// 52588 쵬 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x07,0x00,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x24,0x84,0xc4,0x00,0x0c,0x04,0x04,0x0c,0x00,0x00 -+// 52589 쵭 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x03,0x01,0x01,0x08,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x24,0x04,0xe4,0x00,0x0c,0x84,0x84,0x04,0xfc,0x00 -+// 52590 쵮 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x05,0x00,0x1f,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x84,0xc4,0x84,0xe4,0x04,0x8c,0x84,0x00,0x88,0x88,0x14,0x82,0x00,0x00 -+// 52591 쵯 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x03,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x24,0x84,0xe4,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 52592 쵰 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x07,0x01,0x03,0x00,0x01,0x01,0x02,0x06,0x08,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x24,0x0c,0xc4,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 52593 쵱 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x06,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x84,0x84,0x24,0x04,0xe4,0x04,0x30,0x88,0x84,0x88,0xd8,0x00 -+// 52594 쵲 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x07,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x8c,0x04,0x84,0x84,0x24,0x0c,0x80,0x00,0x1c,0x40,0x60,0x98,0x04,0x00 -+// 52595 쵳 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x07,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x84,0x04,0x84,0x84,0x24,0x0c,0xc4,0x00,0xe0,0x1c,0x60,0xd0,0x0c,0x00 -+// 52596 쵴 ; -+,0x00,0x00,0x03,0x00,0x05,0x01,0x07,0x01,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8c,0x04,0x84,0x84,0x24,0x0c,0xc4,0x00,0xd8,0x08,0x78,0x08,0x08,0x00 -+// 52597 쵵 ; -+,0x00,0x00,0x03,0x00,0x0d,0x03,0x06,0x01,0x03,0x00,0x00,0x03,0x01,0x00,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0x18,0x00,0x38,0x00,0xfc,0x00 -+// 52598 쵶 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x07,0x01,0x01,0x18,0x04,0x00,0x01,0x00,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0xfc,0x10,0x10,0x90,0xbe,0x00 -+// 52599 쵷 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x07,0x01,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0x00,0xe0,0xd0,0x80,0x90,0x00 -+// 52600 쵸 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x06,0x03,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xf0,0x20,0xc0,0x3c,0x30,0x10,0x10,0x12,0x00,0x00,0x00 -+// 52601 쵹 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x06,0x03,0x03,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xf0,0x20,0xe0,0x24,0x10,0x37,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 52602 쵺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x10,0x30,0xe0,0x0c,0x30,0x37,0x00,0x78,0x88,0x08,0x08,0x08,0x00 -+// 52603 쵻 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x06,0x03,0x01,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x24,0x10,0x13,0x00,0x10,0x10,0x30,0x2c,0x46,0x00 -+// 52604 쵼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0b,0x01,0x1f,0x00,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x3c,0x30,0x10,0xff,0x00,0x00,0x00,0x00,0x78,0x00 -+// 52605 쵽 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x06,0x03,0x01,0x00,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0xf0,0x30,0xe0,0x04,0x10,0x13,0x00,0xfc,0x10,0x30,0x28,0x46,0x00 -+// 52606 쵾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x03,0x1f,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x00,0x00,0xc0,0xf0,0x20,0xc0,0x3c,0x20,0xff,0x00,0x00,0xfc,0x30,0x48,0x48,0x20 -+// 52607 쵿 ; -+,0x00,0x00,0x01,0x00,0x04,0x00,0x03,0x02,0x01,0x1f,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x00,0x30,0xe0,0x1c,0x30,0x10,0x00,0x00,0xf8,0x00,0x00,0x08,0x00 -+// 52608 춀 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x06,0x02,0x1f,0x00,0x07,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0xc0,0xf0,0x20,0xc0,0x3c,0x20,0xff,0x00,0xf0,0x10,0xf0,0x00,0x78,0x00 -+// 52609 춁 ; -+,0x00,0x00,0x00,0x03,0x00,0x00,0x06,0x02,0x1f,0x00,0x0f,0x00,0x0f,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x3c,0x20,0xff,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52610 춂 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x02,0x1f,0x00,0x01,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x34,0x00,0xfe,0x00,0x6c,0x04,0x00,0x08,0x30,0x00 -+// 52611 춃 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x3c,0x20,0xff,0x08,0x4c,0x28,0x00,0x00,0x28,0x00 -+// 52612 춄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x06,0x02,0x1f,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x34,0x20,0xfe,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 52613 춅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0xc0,0xf0,0x20,0xc0,0x3c,0x20,0xfe,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52614 춆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x1f,0x00,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0xc0,0x30,0x20,0xc0,0x3c,0x20,0xff,0x00,0x4c,0x00,0x48,0x00,0x1c,0x00 -+// 52615 춇 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x03,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0xc0,0x10,0x20,0xc0,0x3c,0x20,0xff,0x30,0x04,0x30,0x28,0x40,0x48,0x00 -+// 52616 춈 ; -+,0x00,0x01,0x00,0x0f,0x00,0x03,0x0c,0x03,0x1f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0xc0,0x00,0xf0,0x40,0xbc,0x20,0x20,0xfe,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 52617 춉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x01,0x1f,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xe0,0x10,0x30,0xe0,0x36,0x10,0xff,0x00,0x18,0x08,0x08,0x08,0xf8,0x00 -+// 52618 춊 ; -+,0x00,0x00,0x01,0x00,0x06,0x00,0x03,0x0b,0x1f,0x00,0x01,0x08,0x07,0x00,0x07,0x00,0x00,0x00,0xc0,0x00,0x30,0xc0,0x3c,0x10,0x3f,0x00,0x98,0x90,0x98,0xa4,0x86,0x00 -+// 52619 춋 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0e,0x03,0x01,0x10,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x80,0x00,0xf0,0x60,0xf0,0x34,0x10,0x13,0x80,0xc0,0x80,0xe0,0x10,0x0c,0x00 -+// 52620 춌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x03,0x1f,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0xc0,0x10,0x30,0xe0,0x3c,0x10,0xff,0x00,0x10,0x10,0x30,0xac,0x44,0x00 -+// 52621 춍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x01,0x1f,0x00,0x01,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x30,0x30,0xc0,0x3c,0x20,0x10,0xc0,0x40,0x20,0x10,0x10,0x20,0xc0 -+// 52622 춎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x0c,0x02,0x03,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x24,0x20,0x37,0x00,0x3c,0x80,0xc0,0x10,0x08,0x00 -+// 52623 춏 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x02,0x1f,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x3c,0x20,0xfe,0x00,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 52624 춐 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x02,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x60,0xe0,0x24,0x00,0xff,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 52625 춑 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x07,0x01,0x1f,0x00,0x07,0x02,0x02,0x02,0x03,0x00,0x00,0xc0,0x00,0xf0,0x60,0xe0,0x34,0x10,0xfe,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 52626 춒 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x02,0x1f,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0xf0,0x60,0xf0,0x24,0x00,0xff,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 52627 춓 ; -+,0x00,0x01,0x00,0x01,0x00,0x00,0x03,0x03,0x1f,0x01,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x3c,0x20,0xff,0xc0,0x0c,0xc0,0x20,0x00,0x20,0x00 -+// 52628 추 ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x30,0x20,0xc0,0x0c,0x00,0x03,0xc0,0x40,0x40,0x40,0x40,0x00,0x00 -+// 52629 축 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0xc0,0x40,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 52630 춖 ; -+,0x00,0x01,0x00,0x06,0x00,0x00,0x03,0x00,0x1f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0xc0,0x40,0x78,0x88,0x80,0x00,0x00,0x00 -+// 52631 춗 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x10,0x10,0x00,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x04,0x02,0x80,0x80,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 52632 춘 ; -+,0x00,0x02,0x00,0x00,0x00,0x00,0x06,0x00,0x3f,0x00,0x00,0x0c,0x04,0x04,0x01,0x00,0x00,0x00,0x00,0x60,0x60,0x80,0x18,0x00,0xfe,0x80,0x80,0x80,0x00,0x00,0xf0,0x00 -+// 52633 춙 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x00,0x00,0x18,0x08,0x08,0x0f,0x00,0x00,0x00,0xc0,0x00,0xf0,0x60,0xd8,0x00,0x06,0x80,0x04,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 52634 춚 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x06,0x00,0x10,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x02,0x80,0xc0,0x00,0xf0,0x78,0x08,0x48,0x00 -+// 52635 춛 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x00,0xc0,0x40,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 52636 출 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0x3f,0x00,0x07,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0xc0,0x00,0x20,0xc0,0x0c,0x00,0xfe,0x80,0xf0,0x10,0x70,0x00,0xf8,0x00 -+// 52637 춝 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x10,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x06,0x80,0x80,0xe8,0x08,0x08,0x08,0x08,0x00 -+// 52638 춞 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x06,0x00,0x18,0x00,0x0f,0x01,0x09,0x08,0x08,0x04,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x06,0x80,0x80,0x6c,0x44,0x40,0x40,0x38,0x00 -+// 52639 춟 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x06,0x00,0x18,0x00,0x0f,0x01,0x0c,0x08,0x0e,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x06,0x80,0x88,0x48,0x68,0x48,0x48,0x48,0x00 -+// 52640 춠 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x06,0x10,0x10,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x02,0xc0,0x00,0x90,0x10,0x28,0x44,0x04,0x00 -+// 52641 춡 ; -+,0x00,0x01,0x00,0x0f,0x00,0x03,0x08,0x3f,0x00,0x00,0x0f,0x01,0x0c,0x08,0x06,0x00,0x00,0xc0,0x00,0xf0,0x40,0x38,0x00,0x8e,0x80,0x80,0x40,0x40,0x58,0x40,0x00,0x00 -+// 52642 춢 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x06,0x10,0x00,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x06,0x80,0x00,0x10,0x48,0x28,0x00,0xfc,0x00 -+// 52643 춣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1c,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x0c,0x02,0xc0,0xc0,0x00,0x70,0x38,0x40,0x48,0x00 -+// 52644 춤 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x10,0x10,0x00,0x07,0x04,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0xf0,0x60,0xf0,0x04,0x06,0x80,0x80,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 52645 춥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x00,0xc0,0x30,0x20,0xc0,0x0c,0x00,0xc0,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 52646 춦 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x00,0x00,0x08,0x0d,0x08,0x08,0x08,0x00,0x00,0xc0,0x00,0xf0,0x60,0xd8,0x04,0x06,0x80,0x90,0x90,0x90,0xa8,0x24,0xc0,0x00 -+// 52647 춧 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0xc0,0x00,0xf0,0x60,0xd8,0x00,0x06,0x80,0x80,0x80,0xc0,0x20,0x18,0x00,0x00 -+// 52648 춨 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0e,0x10,0x00,0x00,0x02,0x02,0x03,0x04,0x00,0x00,0x00,0x80,0x00,0xf0,0x60,0xf0,0x04,0x06,0x80,0x80,0x10,0x10,0x28,0xcc,0x84,0x00 -+// 52649 충 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x3f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xc0,0x30,0x20,0xc0,0x04,0x00,0xfe,0x80,0xc0,0x20,0x10,0x10,0xe0,0x00 -+// 52650 춪 ; -+,0x00,0x00,0x01,0x00,0x0f,0x00,0x03,0x08,0x1f,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0xc0,0x00,0x70,0x40,0x1c,0x00,0xfe,0x80,0x88,0x80,0xc0,0x30,0x08,0x00 -+// 52651 춫 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x01,0x03,0x00,0x01,0x06,0x00,0x00,0x00,0xc0,0x00,0x20,0xc0,0x0c,0x00,0xc0,0x80,0xc0,0xf8,0x80,0x20,0x18,0x00 -+// 52652 춬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x0c,0x00,0xc0,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 52653 춭 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x06,0x00,0x1e,0x00,0x07,0x02,0x02,0x02,0x03,0x00,0x00,0x80,0x00,0xf0,0x20,0xc0,0x04,0x02,0xc0,0x40,0xf8,0x00,0x70,0x00,0xfc,0x00 -+// 52654 춮 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x06,0x00,0x1c,0x00,0x00,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x02,0xc0,0x00,0xd8,0x00,0x20,0x20,0xec,0x00 -+// 52655 춯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1c,0x00,0x00,0x04,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x10,0x30,0xc0,0x0c,0x02,0xc0,0xc0,0x0c,0xc0,0x20,0x00,0x20,0x00 -+// 52656 춰 ; -+,0x00,0x00,0x03,0x00,0x09,0x00,0x03,0x0c,0x00,0x00,0x1f,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x84,0x24,0x04,0x84,0x04,0x3c,0x04,0x04,0x04,0x00 -+// 52657 춱 ; -+,0x00,0x00,0x03,0x04,0x00,0x03,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x8c,0xc4,0x84,0xe4,0x04,0x80,0x78,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 52658 춲 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x13,0x09,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x8c,0x44,0x84,0xe4,0x04,0x84,0x38,0x00,0x38,0x88,0x88,0x88,0x08,0x00 -+// 52659 춳 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x03,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0xc8,0x08,0x88,0x78,0x00,0x18,0x88,0x98,0xa4,0x42,0x00 -+// 52660 춴 ; -+,0x00,0x00,0x03,0x00,0x0c,0x01,0x06,0x00,0x1f,0x01,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x88,0x08,0xc8,0x88,0x68,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 52661 춵 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x13,0x09,0x01,0x00,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x88,0x08,0x88,0xc8,0x08,0x08,0x78,0x00,0x1c,0x10,0x30,0x4c,0x84,0x00 -+// 52662 춶 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x88,0x48,0x88,0xe8,0x08,0x08,0x78,0x00,0x00,0xfe,0x38,0x40,0x48,0x00 -+// 52663 춷 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x13,0x09,0x01,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x88,0x08,0x88,0xc8,0x08,0xc8,0x78,0x00,0xf8,0x00,0x00,0x00,0x08,0x00 -+// 52664 춸 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x3f,0x00,0x00,0x03,0x00,0x03,0x02,0x01,0x00,0x00,0x10,0x88,0x88,0x88,0xc8,0x28,0x88,0x78,0x00,0xf8,0x08,0xf8,0x00,0xfc,0x00 -+// 52665 춹 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x18,0x88,0xc8,0x88,0xe8,0x28,0x08,0x78,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52666 춺 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x1f,0x01,0x00,0x0f,0x01,0x0d,0x08,0x07,0x00,0x00,0x00,0x88,0x08,0x88,0x88,0x28,0x88,0x78,0x00,0x78,0x48,0x48,0x48,0x20,0x00 -+// 52667 춻 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x10,0x88,0x08,0x88,0xc8,0x28,0x88,0x78,0x00,0xc8,0x48,0x48,0x48,0x48,0x00 -+// 52668 춼 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x3f,0x00,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x10,0x88,0x08,0x88,0xc8,0x28,0x08,0x78,0x00,0x10,0x10,0x30,0x4c,0x84,0x00 -+// 52669 춽 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x13,0x09,0x01,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x18,0x88,0x08,0x88,0x88,0x28,0x88,0x78,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52670 춾 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x1b,0x09,0x01,0x07,0x01,0x07,0x04,0x07,0x00,0x00,0x00,0x84,0x04,0xc4,0x84,0x04,0xc4,0x3c,0x00,0x2c,0x08,0x20,0x28,0x0e,0x00 -+// 52671 춿 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x13,0x09,0x01,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x88,0x08,0x88,0x88,0x28,0x88,0x78,0x00,0x00,0x7c,0x38,0x04,0x28,0x00 -+// 52672 췀 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x00,0x1b,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x10,0x88,0x08,0x88,0x88,0x08,0x88,0x58,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 52673 췁 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x1f,0x01,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x88,0x08,0x88,0xc8,0x28,0x88,0x78,0x00,0x08,0x08,0x08,0x08,0xf8,0x00 -+// 52674 췂 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x8c,0x04,0x84,0x84,0x24,0x80,0x38,0x00,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 52675 췃 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x04,0x03,0x0a,0x02,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x88,0x08,0x88,0xc8,0x08,0x88,0x58,0x08,0x48,0x40,0xb0,0x08,0x04,0x00 -+// 52676 췄 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x1f,0x01,0x00,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x18,0x88,0xc8,0x88,0xe8,0x28,0x08,0x78,0x10,0x18,0x10,0x98,0x24,0x42,0x00 -+// 52677 췅 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x04,0x00,0x1e,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x88,0x08,0x88,0x88,0x08,0xc8,0x08,0x08,0x28,0x88,0x08,0x88,0xf0,0x00 -+// 52678 췆 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x18,0x88,0xc8,0x88,0xe8,0x08,0x88,0x78,0x00,0x1c,0x40,0x60,0x98,0x04,0x00 -+// 52679 췇 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x3f,0x01,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x18,0x88,0xc8,0x88,0xe8,0x28,0x88,0x78,0x00,0x00,0xfc,0x40,0x90,0x0c,0x00 -+// 52680 췈 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x01,0x19,0x01,0x01,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x8c,0x04,0x84,0x84,0x24,0x00,0x38,0x00,0x08,0x08,0x28,0x08,0x08,0x00 -+// 52681 췉 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x1f,0x01,0x01,0x00,0x03,0x03,0x03,0x01,0x00,0x00,0x00,0x8c,0x04,0x84,0xc4,0x24,0x80,0x78,0x00,0x08,0x00,0x18,0x00,0x1c,0x00 -+// 52682 췊 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x01,0x19,0x01,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x88,0x08,0x88,0xc8,0x08,0xc8,0x78,0x00,0xfc,0x10,0x10,0x90,0xfe,0x00 -+// 52683 췋 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x13,0x09,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x10,0x88,0x08,0x88,0xc8,0x28,0x88,0x78,0x00,0x00,0xf0,0x90,0x10,0x90,0x00 -+// 52684 췌 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x02,0x08,0x00,0x1f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x94,0x14,0x14,0xf4,0x14,0x14,0x14,0x04,0x00 -+// 52685 췍 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x00,0x03,0x1a,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x0c,0x0c,0x08,0x08,0x00 -+// 52686 췎 ; -+,0x00,0x00,0x00,0x00,0x07,0x03,0x00,0x17,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x08,0x8c,0x84,0x84,0x00,0x00 -+// 52687 췏 ; -+,0x00,0x00,0x00,0x02,0x0d,0x03,0x04,0x01,0x1a,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x34,0x04,0x04,0x84,0x04,0x24,0x24,0x10,0x88,0x98,0xac,0x26,0x00 -+// 52688 췐 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x03,0x04,0x12,0x0a,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x24,0x00,0x00,0xfc,0x00 -+// 52689 췑 ; -+,0x00,0x00,0x00,0x00,0x05,0x03,0x00,0x17,0x02,0x02,0x00,0x0c,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x54,0x14,0x34,0x14,0x0e,0x10,0x10,0x24,0x42,0x00 -+// 52690 췒 ; -+,0x00,0x00,0x00,0x00,0x05,0x03,0x00,0x03,0x0a,0x02,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x34,0x94,0x14,0x14,0x14,0xe4,0x30,0x00,0xfc,0x38,0x44,0x28,0x00 -+// 52691 췓 ; -+,0x00,0x00,0x00,0x03,0x0d,0x03,0x04,0x00,0x1a,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0x04,0x04,0x24,0x24,0x00,0xf8,0x00,0x00,0xfc,0x00 -+// 52692 췔 ; -+,0x00,0x00,0x00,0x00,0x0b,0x07,0x00,0x3e,0x02,0x00,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x48,0x28,0x28,0xa8,0xa8,0x28,0xe8,0x00,0xe8,0x08,0xf8,0x00,0xfe,0x00 -+// 52693 췕 ; -+,0x00,0x00,0x00,0x02,0x0d,0x03,0x00,0x02,0x0a,0x02,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x00,0xbc,0x04,0x04,0x04,0x00,0x00 -+// 52694 췖 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x00,0x1f,0x02,0x00,0x07,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0x14,0xd4,0x54,0x14,0x74,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 52695 췗 ; -+,0x00,0x00,0x00,0x03,0x05,0x01,0x04,0x03,0x0a,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x54,0x14,0x74,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 52696 췘 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x00,0x1f,0x02,0x02,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0x14,0x14,0x94,0x14,0x14,0x74,0x10,0x88,0x98,0x18,0x26,0x02,0x00 -+// 52697 췙 ; -+,0x00,0x00,0x00,0x00,0x01,0x03,0x00,0x1f,0x02,0x00,0x07,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x24,0x14,0x94,0xd4,0x54,0x14,0x74,0x00,0xe4,0x20,0x20,0x20,0x3c,0x00 -+// 52698 췚 ; -+,0x00,0x00,0x00,0x03,0x05,0x03,0x04,0x01,0x0a,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x54,0x14,0x74,0x00,0xa6,0x0c,0x24,0x00,0x7e,0x00 -+// 52699 췛 ; -+,0x00,0x00,0x02,0x00,0x01,0x03,0x00,0x1f,0x02,0x02,0x07,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x54,0x14,0x74,0x38,0x00,0x78,0x24,0x24,0x38,0x00 -+// 52700 췜 ; -+,0x00,0x00,0x00,0x00,0x05,0x03,0x00,0x13,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x94,0x54,0x14,0x74,0x14,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 52701 췝 ; -+,0x00,0x00,0x00,0x02,0x05,0x03,0x04,0x00,0x1e,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0xa4,0x24,0x24,0x20,0x08,0x04,0xfc,0x04,0xfc,0x00 -+// 52702 췞 ; -+,0x00,0x00,0x00,0x00,0x07,0x03,0x00,0x03,0x0a,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0xe4,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 52703 췟 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x08,0x1e,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x24,0x24,0xe4,0x04,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 52704 췠 ; -+,0x00,0x00,0x00,0x03,0x05,0x03,0x04,0x00,0x1e,0x02,0x01,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0xd4,0x14,0x34,0x04,0x18,0x08,0x98,0x64,0x42,0x00 -+// 52705 췡 ; -+,0x00,0x00,0x00,0x00,0x03,0x07,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0xa4,0x24,0x24,0xe4,0x24,0x20,0x88,0x08,0x88,0xf0,0x00 -+// 52706 췢 ; -+,0x00,0x00,0x00,0x00,0x0f,0x07,0x08,0x1e,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x24,0x24,0xe4,0x20,0x3c,0x40,0xc0,0x18,0x0c,0x00 -+// 52707 췣 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x08,0x02,0x0a,0x02,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x00,0xe0,0x1c,0x40,0xb0,0x0c,0x00 -+// 52708 췤 ; -+,0x00,0x00,0x00,0x00,0x0f,0x07,0x00,0x1e,0x02,0x02,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x24,0x24,0xe4,0x00,0xcc,0x0c,0xfc,0x00,0x00,0x00 -+// 52709 췥 ; -+,0x00,0x00,0x00,0x02,0x0f,0x03,0x08,0x03,0x02,0x02,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0xe4,0x00,0x78,0x00,0xf8,0x00,0xfc,0x00 -+// 52710 췦 ; -+,0x00,0x00,0x00,0x00,0x0b,0x03,0x08,0x06,0x02,0x02,0x02,0x00,0x01,0x00,0x0f,0x00,0x00,0x08,0x6c,0x24,0x24,0x24,0x24,0x24,0x24,0x20,0x1c,0x10,0x10,0x00,0xfe,0x00 -+// 52711 췧 ; -+,0x00,0x00,0x00,0x06,0x0f,0x03,0x08,0x03,0x0a,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0xa4,0x24,0xe4,0x20,0x00,0xe0,0x90,0x10,0xb0,0x00 -+// 52712 취 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x03,0x0c,0x00,0x03,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x8c,0x04,0xc4,0x84,0x84,0x24,0x0c,0xec,0x04,0x04,0x00,0x00,0x00,0x00 -+// 52713 췩 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0xc8,0x08,0xe8,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52714 췪 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x04,0x00,0x1f,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0xc8,0x88,0x28,0x78,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52715 췫 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x0c,0x00,0x1f,0x01,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x88,0x08,0x48,0x08,0x00,0x10,0x88,0x98,0xa4,0x42,0x00 -+// 52716 췬 ; -+,0x00,0x00,0x03,0x00,0x06,0x01,0x06,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc4,0x04,0xc4,0x84,0x24,0x1c,0x84,0x04,0x04,0x00,0x00,0x0e,0x00,0x00 -+// 52717 췭 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x1f,0x01,0x00,0x08,0x08,0x0c,0x04,0x00,0x00,0x10,0x88,0x08,0x88,0x08,0x28,0x38,0x08,0x00,0x04,0xf0,0x10,0x28,0xc4,0x00 -+// 52718 췮 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x08,0x03,0x01,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x88,0xc8,0x88,0xe8,0x08,0xc8,0x08,0x20,0x00,0xfc,0x38,0x40,0x48,0x00 -+// 52719 췯 ; -+,0x00,0x00,0x03,0x00,0x05,0x01,0x04,0x00,0x1f,0x01,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x88,0x08,0x88,0x88,0x28,0x08,0x08,0x08,0x00,0xf8,0x00,0x00,0xfc,0x00 -+// 52720 췰 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x04,0x00,0x1d,0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x8c,0x04,0xc4,0x84,0x2c,0xec,0x04,0x00,0xf8,0x08,0x78,0x00,0x7e,0x00 -+// 52721 췱 ; -+,0x00,0x00,0x01,0x07,0x00,0x03,0x00,0x1f,0x01,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x84,0xc4,0x84,0x64,0x1c,0xc4,0x04,0x00,0xbc,0x84,0x04,0x04,0x00,0x00 -+// 52722 췲 ; -+,0x00,0x03,0x00,0x07,0x01,0x06,0x00,0x1f,0x01,0x01,0x00,0x0d,0x04,0x05,0x00,0x00,0x00,0x8c,0x04,0xc4,0x84,0x24,0x7c,0x04,0x00,0x0c,0x24,0x24,0x20,0xa8,0x00,0x00 -+// 52723 췳 ; -+,0x00,0x00,0x01,0x06,0x00,0x03,0x00,0x1f,0x01,0x00,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x84,0xc4,0x84,0x64,0x0c,0xc4,0x04,0x00,0x4c,0x6c,0x44,0x68,0x40,0x00 -+// 52724 췴 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x1f,0x01,0x01,0x01,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x8c,0xc4,0x84,0x64,0x1c,0x84,0x00,0x10,0x90,0x10,0x28,0x44,0x00,0x00 -+// 52725 췵 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x1f,0x01,0x01,0x00,0x01,0x04,0x05,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x64,0x1c,0x84,0x00,0x00,0xa0,0xac,0x20,0xbe,0x00,0x00 -+// 52726 췶 ; -+,0x00,0x00,0x01,0x02,0x00,0x01,0x00,0x0b,0x01,0x01,0x01,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x84,0x44,0xc4,0xe4,0x04,0xc4,0x04,0x00,0xa8,0x24,0x20,0x08,0x7e,0x00 -+// 52727 췷 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x19,0x01,0x07,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x8c,0x04,0x84,0x84,0x0c,0xc4,0x04,0x00,0x00,0x78,0x2c,0x24,0x2c,0x00 -+// 52728 췸 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x06,0x00,0x1f,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0xc4,0x04,0xc4,0x84,0x04,0x34,0x84,0x00,0x00,0x8c,0x04,0x00,0x80,0x00 -+// 52729 췹 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x13,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x84,0xc4,0xc4,0xe4,0x0c,0xc4,0x04,0x00,0x0c,0x8c,0x04,0x04,0x0c,0x00 -+// 52730 췺 ; -+,0x00,0x00,0x01,0x07,0x00,0x03,0x00,0x1f,0x01,0x01,0x0c,0x07,0x04,0x07,0x00,0x00,0x00,0x08,0x84,0xc4,0x84,0x64,0x1c,0x84,0x00,0x10,0x88,0x98,0x94,0xa2,0x00,0x00 -+// 52731 췻 ; -+,0x00,0x00,0x01,0x07,0x00,0x03,0x08,0x00,0x1f,0x01,0x01,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x84,0xc4,0x84,0x64,0x04,0x64,0x04,0x44,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 52732 췼 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x01,0x09,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x84,0x04,0xc4,0xc4,0x0c,0xc4,0x04,0x00,0x08,0x18,0x98,0x64,0x42,0x00 -+// 52733 췽 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0xc4,0x84,0xc4,0x04,0x2c,0x04,0x04,0x30,0x88,0x84,0x88,0xf8,0x00 -+// 52734 췾 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x01,0x1f,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x88,0xc8,0x88,0xe8,0x08,0xe8,0x08,0x00,0x1c,0x40,0x60,0x98,0x0c,0x00 -+// 52735 췿 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x01,0x09,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x84,0x04,0xc4,0xe4,0x0c,0xe4,0x04,0x00,0x60,0xec,0x60,0x98,0x04,0x00 -+// 52736 츀 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x06,0x00,0x1f,0x01,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x88,0x08,0xc8,0x88,0x28,0x08,0x08,0x00,0x18,0x08,0x68,0x08,0x08,0x00 -+// 52737 츁 ; -+,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x17,0x01,0x01,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x8c,0x44,0x84,0xe4,0x0c,0xc4,0x00,0x00,0x08,0x00,0x18,0x00,0xfc,0x00 -+// 52738 츂 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x0d,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x84,0x04,0xc4,0xe4,0x04,0xe4,0x04,0x00,0xfc,0x18,0x80,0x90,0xfe,0x00 -+// 52739 츃 ; -+,0x00,0x00,0x03,0x07,0x00,0x03,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x8c,0xc4,0x84,0x64,0x0c,0xc4,0x00,0x60,0x06,0x60,0x90,0x88,0x70,0x00 -+// 52740 츄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x08,0x00,0x1a,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x80,0x00,0x20,0xc0,0x1c,0x00,0x02,0x30,0x10,0x10,0x10,0x10,0x00,0x00 -+// 52741 츅 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x10,0x3e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x60,0xc0,0x0c,0x02,0x30,0x20,0x30,0x10,0x10,0x10,0x10,0x00 -+// 52742 츆 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x10,0x02,0x02,0x0f,0x01,0x01,0x01,0x00,0x00,0x00,0xc0,0x00,0xf0,0x60,0xd8,0x00,0x0e,0x30,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52743 츇 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1e,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x02,0x30,0x20,0x30,0x20,0x30,0x4c,0x84,0x00 -+// 52744 츈 ; -+,0x00,0x01,0x00,0x0f,0x00,0x00,0x06,0x00,0x3f,0x02,0x02,0x0c,0x04,0x04,0x00,0x00,0x00,0x80,0x00,0xe0,0x60,0xc0,0x1c,0x00,0xfe,0x20,0x20,0x20,0x00,0x00,0x00,0x00 -+// 52745 츉 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x10,0x02,0x02,0x18,0x08,0x08,0x0f,0x04,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf8,0x04,0x06,0x10,0x10,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 52746 츊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1e,0x02,0x18,0x09,0x08,0x08,0x0c,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x0c,0x02,0x30,0x30,0x00,0xf0,0x70,0x08,0x48,0x00 -+// 52747 츋 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x02,0x02,0x00,0x06,0x04,0x04,0x03,0x00,0x00,0xc0,0x00,0xf0,0x40,0xf0,0x04,0x06,0x30,0x00,0x30,0x00,0x00,0x00,0xf8,0x00 -+// 52748 츌 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x1f,0x02,0x02,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x00,0xf0,0x60,0xf0,0x04,0xfe,0x10,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 52749 츍 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x06,0x18,0x02,0x02,0x0f,0x00,0x0f,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x07,0x10,0x10,0xb8,0x88,0x88,0x08,0x08,0x00 -+// 52750 츎 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0c,0x1f,0x02,0x02,0x01,0x00,0x0d,0x04,0x07,0x00,0x00,0x80,0x00,0xf0,0x20,0xf0,0x04,0xff,0x10,0x10,0x2c,0x24,0x24,0x20,0x38,0x00 -+// 52751 츏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x18,0x02,0x02,0x0f,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0x70,0x20,0xe0,0x04,0x0f,0x10,0x18,0x44,0x2c,0x24,0x24,0x24,0x00 -+// 52752 츐 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x06,0x00,0x1f,0x02,0x0f,0x00,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x02,0xb0,0x10,0x10,0x10,0x18,0x24,0xc4,0x00 -+// 52753 츑 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0c,0x3f,0x02,0x02,0x0f,0x01,0x0f,0x00,0x07,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf8,0x00,0xfe,0x10,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 52754 츒 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x38,0x02,0x02,0x0f,0x01,0x0a,0x08,0x0e,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x0e,0x20,0x20,0x78,0x18,0x48,0x10,0xfc,0x00 -+// 52755 츓 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x3f,0x02,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x00,0x00,0x30,0x60,0xc0,0x0c,0x02,0x30,0x30,0x00,0xf0,0x30,0x48,0x48,0x00 -+// 52756 츔 ; -+,0x00,0x01,0x00,0x0f,0x00,0x00,0x06,0x00,0x3f,0x02,0x06,0x06,0x00,0x02,0x02,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x02,0x30,0x10,0x30,0x10,0x10,0x10,0xf0,0x00 -+// 52757 츕 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x3e,0x02,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x30,0x60,0xc0,0x0c,0x02,0x30,0x20,0x10,0x10,0x10,0x10,0x10,0x00 -+// 52758 츖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x0e,0x00,0x1e,0x02,0x01,0x09,0x09,0x09,0x0f,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x02,0x30,0x20,0x10,0x10,0x30,0x28,0x44,0x00 -+// 52759 츗 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x3e,0x02,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0xc0,0x00,0xf0,0x60,0xc0,0x04,0x02,0x30,0x10,0x80,0x80,0x60,0x18,0x08,0x00 -+// 52760 츘 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x3e,0x02,0x02,0x02,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0xf0,0x60,0xc0,0x0c,0x02,0x30,0x20,0x30,0x30,0x30,0xc8,0x84,0x00 -+// 52761 츙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x3f,0x02,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x30,0x20,0xc0,0x0c,0x00,0xfe,0x10,0xd0,0x20,0x10,0x10,0x20,0xc0 -+// 52762 츚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x1f,0x02,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0x30,0x60,0xc0,0x0c,0x02,0xb0,0x10,0xfc,0xc0,0xc0,0x10,0x0c,0x00 -+// 52763 츛 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x0e,0x10,0x02,0x02,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x04,0x06,0x30,0x00,0xc0,0xf8,0xc0,0x20,0x08,0x00 -+// 52764 츜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x08,0x1b,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0xe0,0x04,0x02,0x30,0x10,0xb8,0x08,0xc8,0x08,0x08,0x00 -+// 52765 츝 ; -+,0x00,0x00,0x01,0x00,0x00,0x00,0x07,0x00,0x3f,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0xc0,0x00,0x20,0xc0,0x1c,0x06,0xf0,0x20,0x20,0x00,0x00,0x00,0x00,0x00 -+// 52766 츞 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x10,0x12,0x02,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf8,0x04,0x06,0x20,0x20,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 52767 츟 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x30,0x02,0x03,0x00,0x01,0x01,0x02,0x01,0x00,0x00,0xc0,0x00,0xf0,0x60,0xe0,0x04,0x1e,0x20,0xe0,0x38,0xc0,0x20,0x20,0x60,0x00 -+// 52768 츠 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xf0,0x20,0x40,0xb8,0x00,0x00,0x00,0x02,0xc0,0x00,0x00 -+// 52769 측 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0c,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf8,0x00,0x02,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x00 -+// 52770 츢 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x1f,0x00,0x0f,0x01,0x01,0x00,0x00,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf8,0x04,0x02,0xfe,0x00,0x28,0x08,0x08,0x00,0x00,0x00 -+// 52771 츣 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x3f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0x00,0xf0,0x60,0xf0,0x04,0x00,0xfe,0x00,0x30,0x10,0x30,0x4c,0x04,0x00 -+// 52772 츤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x08,0x00,0x1e,0x00,0x04,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x10,0x20,0xc0,0x1c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 52773 츥 ; -+,0x00,0x01,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x08,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x00,0xff,0x00,0xfc,0x10,0x30,0x4c,0x82,0x00 -+// 52774 츦 ; -+,0x00,0x01,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x00,0x08,0x08,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x00,0xfe,0x20,0x00,0xf0,0x38,0x44,0x48,0x00 -+// 52775 츧 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xf0,0x30,0xe0,0x04,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 52776 츨 ; -+,0x00,0x01,0x00,0x0f,0x00,0x00,0x02,0x00,0x3f,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0xf0,0x20,0xc0,0x0c,0x00,0xff,0x00,0xf0,0x10,0x70,0x00,0x1c,0x00 -+// 52777 츩 ; -+,0x00,0x01,0x00,0x0f,0x00,0x00,0x06,0x00,0x1e,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xf8,0x04,0x03,0x00,0x00,0x8c,0x84,0x04,0x00,0x00,0x00 -+// 52778 츪 ; -+,0x00,0x01,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x00,0xfe,0x00,0xa4,0x24,0x24,0x24,0x20,0x00 -+// 52779 츫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x1f,0x00,0x0f,0x01,0x0d,0x04,0x05,0x00,0x00,0x00,0xe0,0x10,0x30,0xe0,0x0c,0x00,0xff,0x00,0xc4,0x24,0x24,0x24,0x3c,0x00 -+// 52780 츬 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x3f,0x00,0x0f,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x00,0xfe,0x00,0x10,0x10,0x28,0x44,0x82,0x00 -+// 52781 츭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x1f,0x00,0x00,0x00,0x05,0x04,0x05,0x00,0x00,0x00,0xc0,0x10,0x30,0x60,0x0e,0x00,0xff,0x00,0x2c,0xa0,0xac,0x20,0x3e,0x00 -+// 52782 츮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x1f,0x00,0x07,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x00,0x70,0x30,0xe0,0x06,0x00,0xfe,0x00,0x4c,0x08,0x28,0x28,0x5e,0x00 -+// 52783 츯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x3f,0x00,0x0f,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0xc0,0x30,0x20,0xe0,0x0c,0x00,0xfe,0x20,0x00,0x70,0x38,0x40,0x48,0x10 -+// 52784 츰 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0c,0x00,0x1f,0x00,0x03,0x02,0x02,0x02,0x02,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf8,0x00,0x00,0xfe,0x00,0x18,0x08,0x00,0x10,0x00,0x00 -+// 52785 츱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0xf0,0x20,0xe0,0x04,0x00,0xfe,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 52786 츲 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x06,0x00,0xff,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 52787 츳 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0xe0,0x00,0xf0,0x60,0xbc,0x00,0x00,0xff,0x80,0x40,0xc0,0xb0,0x08,0x04,0x00 -+// 52788 츴 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x06,0x00,0x18,0x00,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0xe0,0x00,0xf0,0x20,0xfc,0x00,0x03,0x00,0x00,0x18,0x10,0xa8,0x64,0x40,0x00 -+// 52789 층 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x70,0x30,0xe0,0x04,0x00,0xff,0x00,0xc0,0x10,0x10,0x10,0xa0,0x00 -+// 52790 츶 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x04,0x00,0xfe,0x00,0xfc,0x40,0xa0,0x18,0x04,0x00 -+// 52791 츷 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x06,0x00,0x1f,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0xf0,0x20,0xe0,0x06,0x02,0x00,0x00,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 52792 츸 ; -+,0x00,0x01,0x00,0x0f,0x00,0x01,0x0c,0x00,0x3f,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0xc0,0x00,0xf0,0x60,0xf8,0x04,0x00,0xfe,0x00,0x98,0x08,0xe8,0x08,0x08,0x00 -+// 52793 츹 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x07,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xf8,0x30,0xe0,0x02,0x01,0x00,0x00,0xf8,0x00,0xf8,0x00,0xfc,0x00 -+// 52794 츺 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x0c,0x00,0x1f,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0xc0,0x00,0xf0,0x20,0xf8,0x00,0x00,0xfe,0x00,0xf8,0x20,0x10,0x00,0xfc,0x00 -+// 52795 츻 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x08,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x80,0x00,0xf8,0x30,0xf0,0x02,0x03,0x00,0xe0,0x1c,0x40,0x10,0x10,0xa0,0x00 -+// 52796 츼 ; -+,0x00,0x00,0x00,0x01,0x00,0x0e,0x00,0x01,0x04,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0xc4,0x84,0x84,0x34,0x04,0x0c,0x84,0x04,0x04,0x04,0x00 -+// 52797 츽 ; -+,0x00,0x00,0x03,0x00,0x0e,0x01,0x02,0x00,0x00,0x0e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x64,0x04,0xe4,0x04,0x00,0xcc,0x04,0x04,0x04,0x00 -+// 52798 츾 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x84,0x84,0x24,0x0c,0x84,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 52799 츿 ; -+,0x00,0x00,0x03,0x00,0x0d,0x03,0x04,0x00,0x07,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x08,0x68,0x08,0xc8,0x00,0x18,0x88,0x98,0xa4,0x46,0x00 -+// 52800 칀 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x03,0x00,0x00,0x1f,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0xe4,0x04,0x0c,0x84,0x00,0x00,0x00,0x00,0x3c,0x00 -+// 52801 칁 ; -+,0x00,0x00,0x02,0x00,0x0d,0x01,0x04,0x00,0x1f,0x00,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0x04,0x84,0x04,0x64,0x0c,0xc0,0x00,0x04,0x50,0x10,0x2c,0x46,0x00 -+// 52802 칂 ; -+,0x00,0x00,0x03,0x00,0x01,0x01,0x04,0x00,0x1f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x8c,0x04,0x84,0x84,0x24,0x08,0x00,0x38,0x00,0xfc,0x28,0x44,0x28,0x00 -+// 52803 칃 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x04,0x00,0x0f,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x10,0x88,0x08,0x88,0x08,0x28,0x08,0x88,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 52804 칄 ; -+,0x00,0x00,0x07,0x00,0x09,0x03,0x04,0x00,0x1f,0x00,0x03,0x00,0x03,0x00,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x68,0x28,0x08,0x00,0xf8,0x08,0x78,0x00,0xfc,0x00 -+// 52805 칅 ; -+,0x00,0x00,0x02,0x00,0x0d,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x0c,0x04,0x84,0x04,0x64,0x0c,0xc4,0x00,0x08,0x08,0x08,0x00,0x00,0x00 -+// 52806 칆 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x04,0x00,0x1f,0x00,0x07,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x8c,0x04,0x84,0x84,0x24,0x28,0x00,0x00,0x6c,0x20,0x28,0x28,0x20,0x00 -+// 52807 칇 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x04,0x00,0x1f,0x00,0x0f,0x01,0x08,0x08,0x0c,0x00,0x00,0x08,0x8c,0x04,0x84,0x84,0x24,0x28,0x00,0x00,0x48,0x68,0x48,0x48,0x48,0x00 -+// 52808 칈 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x00,0x00,0x1e,0x00,0x01,0x01,0x0c,0x08,0x0c,0x00,0x00,0x18,0x08,0x88,0x08,0xc8,0x08,0x68,0x08,0x20,0x10,0x10,0x28,0x44,0x84,0x00 -+// 52809 칉 ; -+,0x00,0x00,0x03,0x00,0x01,0x03,0x04,0x00,0x1e,0x00,0x0f,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x8c,0x04,0x84,0x84,0x2c,0x68,0x00,0x00,0x78,0x40,0x60,0x40,0x3c,0x00 -+// 52810 칊 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x04,0x00,0x1f,0x00,0x05,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x88,0x08,0x88,0x88,0x28,0x08,0x08,0x00,0x18,0x08,0x28,0x08,0x7c,0x00 -+// 52811 칋 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x04,0x00,0x1f,0x00,0x07,0x01,0x07,0x04,0x07,0x00,0x00,0x00,0x8c,0x04,0x84,0x04,0x24,0x0c,0x80,0x08,0x00,0x7e,0x38,0x24,0x24,0x00 -+// 52812 칌 ; -+,0x00,0x00,0x03,0x00,0x04,0x01,0x04,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x24,0x04,0x84,0x00,0x0c,0x04,0x04,0x08,0x00,0x00 -+// 52813 칍 ; -+,0x00,0x00,0x03,0x00,0x01,0x01,0x04,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x8c,0x08,0x88,0x08,0x28,0x18,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52814 칎 ; -+,0x00,0x00,0x02,0x00,0x0d,0x01,0x04,0x00,0x1f,0x00,0x01,0x0c,0x06,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x68,0x08,0x88,0x00,0x98,0x88,0x98,0xa4,0xa2,0x00 -+// 52815 칏 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x64,0x04,0x7c,0x04,0x60,0x60,0x60,0x88,0x04,0x00 -+// 52816 칐 ; -+,0x00,0x00,0x03,0x00,0x0f,0x01,0x06,0x00,0x1f,0x00,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x00,0x8c,0x04,0xc4,0x84,0x24,0x0c,0xc4,0x00,0x08,0x08,0x98,0x66,0x42,0x00 -+// 52817 칑 ; -+,0x00,0x00,0x00,0x00,0x06,0x01,0x02,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x84,0x24,0x04,0x64,0x04,0x10,0x48,0x84,0x84,0x78,0x00 -+// 52818 칒 ; -+,0x00,0x00,0x00,0x00,0x06,0x01,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0xc4,0x84,0x24,0x04,0xc4,0x00,0x0c,0x20,0x60,0x88,0x06,0x00 -+// 52819 칓 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x08,0x84,0x04,0x84,0x84,0x04,0x0c,0x84,0x00,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 52820 칔 ; -+,0x00,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x84,0x84,0x24,0x0c,0x84,0x00,0xcc,0x04,0xe4,0x04,0x00,0x00 -+// 52821 칕 ; -+,0x00,0x00,0x03,0x00,0x0d,0x03,0x04,0x00,0x1f,0x00,0x00,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x28,0x08,0x88,0x00,0x18,0x00,0x38,0x00,0xfc,0x00 -+// 52822 칖 ; -+,0x00,0x00,0x03,0x00,0x0d,0x01,0x04,0x00,0x03,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x8c,0x04,0x84,0x84,0x24,0x0c,0xc4,0x00,0x0c,0x10,0x10,0x90,0x96,0x00 -+// 52823 칗 ; -+,0x00,0x00,0x03,0x00,0x01,0x01,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x88,0x28,0x08,0x88,0x60,0x04,0x60,0x90,0x88,0x70,0x00 -+// 52824 치 ; -+,0x00,0x00,0x00,0x03,0x00,0x08,0x00,0x00,0x01,0x02,0x04,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0xc4,0xc4,0x84,0x84,0x44,0x24,0x04,0x04,0x04,0x04,0x00 -+// 52825 칙 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0xc4,0x84,0x44,0x34,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 52826 칚 ; -+,0x00,0x00,0x00,0x01,0x00,0x0f,0x00,0x01,0x02,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0xc4,0x84,0x84,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 52827 칛 ; -+,0x00,0x00,0x03,0x00,0x03,0x00,0x01,0x03,0x04,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0xc4,0x84,0x44,0x24,0x08,0x88,0x88,0x94,0xa2,0x00,0x00 -+// 52828 친 ; -+,0x00,0x00,0x00,0x01,0x00,0x04,0x00,0x01,0x02,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0xc4,0xc4,0x84,0x64,0x24,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 52829 칝 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x04,0x04,0xc4,0x84,0xc4,0x24,0x00,0x7e,0x08,0x18,0x34,0x42,0x00 -+// 52830 칞 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x01,0x04,0x08,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x84,0x04,0x44,0xc4,0x84,0x44,0x24,0x18,0x06,0x18,0x24,0xe4,0x3c,0x00 -+// 52831 칟 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x01,0x06,0x08,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x04,0x04,0xc4,0x84,0xc4,0x24,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 52832 칠 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x04,0x10,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x84,0x44,0x24,0x00,0x04,0x08,0x00,0x00,0xfe,0x00 -+// 52833 칡 ; -+,0x00,0x02,0x00,0x00,0x00,0x01,0x03,0x04,0x08,0x07,0x00,0x05,0x04,0x05,0x00,0x00,0x00,0x0c,0x04,0x04,0xc4,0x84,0x84,0x64,0x00,0x3c,0x04,0x04,0x00,0x80,0x00,0x00 -+// 52834 칢 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x08,0x07,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x84,0x04,0xc4,0x84,0x84,0x64,0x00,0x2c,0x24,0x24,0x20,0x2c,0x20,0x00 -+// 52835 칣 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x06,0x08,0x0f,0x01,0x09,0x08,0x0d,0x04,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x84,0x64,0x00,0x48,0x48,0x68,0x40,0x68,0x00,0x00 -+// 52836 칤 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x06,0x08,0x0f,0x00,0x0d,0x04,0x05,0x04,0x00,0x00,0x0c,0x84,0x04,0xc4,0x84,0x84,0x64,0x00,0x98,0x98,0x90,0x24,0xe6,0x00,0x00 -+// 52837 칥 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x06,0x08,0x0f,0x01,0x0d,0x04,0x05,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x84,0x64,0x00,0x7c,0x00,0x38,0x00,0x3c,0x00,0x00 -+// 52838 칦 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x88,0x08,0x08,0x88,0x08,0x88,0x68,0x00,0x58,0x08,0x28,0x08,0x7c,0x00 -+// 52839 칧 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x02,0x0c,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x8c,0x04,0xc4,0x84,0x04,0xc0,0x20,0x38,0x06,0x10,0x24,0x44,0x38,0x00 -+// 52840 침 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x0c,0x10,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x04,0x44,0x20,0x00,0x8c,0x00,0x08,0x18,0x00,0x00 -+// 52841 칩 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x84,0x64,0x24,0x08,0x04,0xfc,0x04,0x8c,0x00,0x00 -+// 52842 칪 ; -+,0x00,0x00,0x03,0x00,0x03,0x00,0x01,0x02,0x0c,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x8c,0x04,0xc4,0x84,0x04,0x44,0x24,0x98,0x88,0x98,0x94,0xa2,0x42,0x00 -+// 52843 칫 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0x88,0x08,0xc8,0x88,0x08,0xc8,0x28,0x40,0x60,0x60,0x90,0x0c,0x00,0x00 -+// 52844 칬 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x08,0x01,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x84,0x64,0x04,0x08,0x88,0x18,0x54,0x62,0x40,0x00 -+// 52845 칭 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0xc4,0xc4,0x84,0x44,0x24,0x20,0x50,0x88,0x80,0x88,0x30,0x00 -+// 52846 칮 ; -+,0x00,0x00,0x03,0x00,0x03,0x00,0x01,0x02,0x04,0x10,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x8c,0x04,0xc4,0x84,0x04,0xc4,0x24,0x00,0xfc,0x40,0x90,0x0c,0x04,0x00 -+// 52847 칯 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x06,0x08,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x00,0x0c,0x84,0x04,0xc4,0x84,0x84,0x64,0x20,0x40,0xfc,0x60,0xd0,0x0c,0x00,0x00 -+// 52848 칰 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x03,0x04,0x10,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x84,0x04,0x44,0xc4,0x84,0x44,0x24,0x00,0xcc,0x0c,0xc4,0x04,0x00,0x00 -+// 52849 칱 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x03,0x04,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0xc4,0x84,0x44,0x24,0x00,0x7c,0x00,0x78,0x00,0xfc,0x00 -+// 52850 칲 ; -+,0x00,0x00,0x03,0x00,0x0f,0x00,0x01,0x02,0x08,0x00,0x07,0x01,0x00,0x00,0x07,0x00,0x00,0x08,0x8c,0x04,0xc4,0x84,0x84,0x40,0x20,0x00,0xf8,0x10,0x90,0x90,0xde,0x00 -+// 52851 칳 ; -+,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x03,0x04,0x10,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x8c,0x04,0x04,0xc4,0x84,0x84,0x24,0x60,0x04,0x60,0x90,0x88,0x90,0x00 -+// 52852 카 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x3d,0x01,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x88,0x08,0x0e,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52853 칵 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x02,0x02,0x00,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x00,0x00,0x00,0x90,0x10,0x10,0x10,0x10,0x00 -+// 52854 칶 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x13,0x02,0x04,0x08,0x13,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0a,0x08,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 52855 칷 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x04,0x08,0x10,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0f,0x08,0x08,0x00,0x18,0x10,0x18,0x24,0x42,0x00 -+// 52856 칸 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x1f,0x02,0x02,0x04,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x08,0x0e,0x08,0x08,0x08,0x00,0x00,0x0c,0x00,0x00 -+// 52857 칹 ; -+,0x00,0x00,0x00,0x08,0x01,0x1f,0x02,0x04,0x08,0x10,0x08,0x08,0x08,0x0e,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x00,0x0c,0x30,0x20,0x30,0x4c,0x04,0x00 -+// 52858 칺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x04,0x08,0x10,0x0d,0x04,0x04,0x07,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x00,0x30,0xfc,0x30,0x48,0x48,0x30,0x00 -+// 52859 칻 ; -+,0x00,0x00,0x00,0x0c,0x01,0x1f,0x02,0x04,0x08,0x10,0x07,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x08,0x00,0xf8,0x00,0x00,0x00,0xf8,0x00 -+// 52860 칼 ; -+,0x00,0x00,0x00,0x1f,0x01,0x1f,0x02,0x04,0x08,0x10,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x10,0x18,0x88,0x88,0x00,0x0e,0x00,0x00,0x00,0x10,0x10,0x00,0x00,0xbc,0x00 -+// 52861 칽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x00,0x00,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 52862 칾 ; -+,0x00,0x00,0x00,0x08,0x01,0x1f,0x02,0x04,0x08,0x10,0x01,0x01,0x0c,0x08,0x0e,0x00,0x00,0x18,0x08,0x88,0x08,0x08,0x08,0x08,0x00,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 52863 칿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x04,0x08,0x10,0x02,0x02,0x18,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x00,0x10,0x48,0x58,0x48,0x48,0x48,0x00 -+// 52864 캀 ; -+,0x00,0x00,0x00,0x1f,0x01,0x01,0x12,0x04,0x08,0x10,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x10,0x1e,0x10,0x10,0x00,0x10,0x10,0x30,0x48,0x84,0x00 -+// 52865 캁 ; -+,0x00,0x00,0x00,0x1f,0x01,0x07,0x02,0x04,0x08,0x10,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x30,0x10,0x90,0x90,0x10,0x1e,0x10,0x10,0x00,0x40,0x40,0x78,0x40,0x7c,0x00 -+// 52866 캂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x04,0x08,0x10,0x01,0x03,0x08,0x08,0x04,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x00,0x00,0x10,0x48,0x40,0x10,0xfc,0x00 -+// 52867 캃 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x12,0x04,0x08,0x10,0x0f,0x01,0x0e,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x90,0x10,0x1e,0x10,0x10,0x30,0x00,0x30,0x38,0x40,0x48,0x00 -+// 52868 캄 ; -+,0x00,0x00,0x00,0x0c,0x01,0x1f,0x02,0x04,0x08,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x08,0x08,0x00,0x00,0xd8,0x10,0x10,0x70,0x00,0x00 -+// 52869 캅 ; -+,0x00,0x00,0x00,0x1f,0x00,0x1f,0x02,0x04,0x08,0x10,0x02,0x03,0x02,0x03,0x02,0x00,0x00,0x10,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0x10,0x18,0xf8,0x08,0x10,0x00,0x00 -+// 52870 캆 ; -+,0x00,0x00,0x00,0x08,0x01,0x1f,0x02,0x04,0x08,0x11,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x08,0x00,0x00,0x10,0x90,0x90,0xa8,0xc4,0x00,0x00 -+// 52871 캇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x06,0x08,0x10,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0a,0x08,0x08,0x00,0x40,0xc0,0xa0,0x18,0x0c,0x00 -+// 52872 캈 ; -+,0x00,0x00,0x00,0x1f,0x01,0x1f,0x02,0x04,0x08,0x10,0x03,0x02,0x03,0x04,0x08,0x00,0x00,0x30,0x18,0x90,0x90,0x10,0x1e,0x10,0x00,0x30,0x10,0x10,0x28,0xc4,0x84,0x00 -+// 52873 캉 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x04,0x08,0x10,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x08,0x00,0x40,0xe0,0x10,0x08,0x10,0xf0,0x00 -+// 52874 캊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x07,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x08,0x08,0x00,0xf8,0x40,0xa0,0x18,0x04,0x00 -+// 52875 캋 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x04,0x08,0x10,0x00,0x06,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x00,0xc0,0x08,0xc0,0xc0,0x18,0x0c,0x00 -+// 52876 캌 ; -+,0x00,0x00,0x00,0x1f,0x00,0x01,0x02,0x04,0x08,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x08,0x0e,0x00,0x00,0x00,0x90,0x10,0xd0,0x10,0x10,0x00 -+// 52877 캍 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x02,0x00,0x00,0x10,0x03,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x00,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 52878 캎 ; -+,0x00,0x00,0x00,0x0f,0x01,0x1f,0x02,0x04,0x08,0x10,0x06,0x00,0x01,0x01,0x00,0x00,0x00,0x30,0x18,0x90,0x90,0x10,0x18,0x10,0x00,0x08,0x20,0x30,0x20,0x2c,0x00,0x00 -+// 52879 캏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x04,0x08,0x10,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x0e,0x08,0x08,0xe0,0x1c,0x40,0x10,0x10,0xe0,0x00 -+// 52880 캐 ; -+,0x00,0x00,0x00,0x00,0x00,0x09,0x01,0x03,0x12,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0xa4,0x24,0x24,0x2c,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 52881 캑 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 52882 캒 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1e,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xbc,0x84,0x84,0x80,0x00,0x00 -+// 52883 캓 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1f,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0x88,0x88,0x98,0x94,0xa2,0x00 -+// 52884 캔 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1e,0x02,0x04,0x08,0x10,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x04,0x00,0x04,0x00,0x00 -+// 52885 캕 ; -+,0x00,0x00,0x00,0x00,0x09,0x02,0x3e,0x04,0x00,0x00,0x18,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x3c,0x24,0x20,0x00,0xfc,0x10,0x38,0x4c,0x84,0x00 -+// 52886 캖 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1e,0x02,0x04,0x08,0x1c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x30,0x06,0x30,0x48,0x44,0x38,0x00 -+// 52887 캗 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x1f,0x02,0x04,0x08,0x13,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0xa4,0x24,0x3c,0x24,0x24,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 52888 캘 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1e,0x04,0x04,0x08,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xfc,0x00,0x7c,0x00,0xfe,0x00 -+// 52889 캙 ; -+,0x00,0x00,0x00,0x0f,0x01,0x1f,0x02,0x04,0x00,0x0f,0x00,0x00,0x04,0x04,0x02,0x00,0x00,0x04,0x24,0xa4,0x24,0x34,0x34,0x24,0x00,0xbc,0x84,0x84,0x04,0x04,0x00,0x00 -+// 52890 캚 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 52891 캛 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0xa4,0x24,0x24,0x24,0x24,0x24,0x4c,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 52892 캜 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1a,0x02,0x04,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x88,0x90,0x18,0x24,0x42,0x00 -+// 52893 캝 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x60,0x20,0x20,0x20,0x3c,0x00 -+// 52894 캞 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x12,0x04,0x04,0x08,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x24,0x24,0x20,0x04,0x00,0x08,0x28,0x08,0x7e,0x00 -+// 52895 캟 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x0f,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x38,0x06,0x10,0x24,0x04,0x2c,0x00 -+// 52896 캠 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x3e,0x04,0x08,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0x2c,0x24,0x20,0x00,0x0c,0x08,0x08,0x08,0x00,0x00 -+// 52897 캡 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x1a,0x04,0x04,0x08,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x2c,0x24,0x24,0x00,0x0c,0x8c,0x8c,0x04,0xfc,0x00 -+// 52898 캢 ; -+,0x00,0x00,0x00,0x1f,0x01,0x06,0x02,0x04,0x08,0x10,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x2c,0x24,0x00,0x98,0x98,0x98,0xa4,0xa2,0x00,0x00 -+// 52899 캣 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x12,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x34,0x24,0x24,0x60,0x20,0x60,0x88,0x04,0x00,0x00 -+// 52900 캤 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x1a,0x04,0x04,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x6c,0x24,0x24,0x24,0x2c,0x24,0x20,0x10,0x08,0x18,0x9c,0x66,0x42,0x00 -+// 52901 캥 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1e,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x70,0x88,0x80,0x88,0xf8,0x00 -+// 52902 캦 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x1a,0x04,0x00,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x2c,0x24,0x20,0x00,0xf8,0x40,0x90,0x0c,0x04,0x00 -+// 52903 캧 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x12,0x02,0x04,0x00,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x00,0x60,0x1c,0x40,0x60,0x0c,0x00,0x00 -+// 52904 캨 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x24,0x34,0x24,0x24,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 52905 캩 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x12,0x04,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 52906 캪 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x1e,0x02,0x04,0x08,0x10,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x0c,0x10,0x10,0x90,0x96,0x00 -+// 52907 캫 ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x3e,0x04,0x08,0x00,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x2c,0x20,0x20,0xe0,0x04,0x40,0xb0,0x10,0x90,0x00 -+// 52908 캬 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x01,0x39,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x10,0x18,0x08,0xc8,0x88,0x8e,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52909 캭 ; -+,0x00,0x00,0x00,0x0f,0x00,0x17,0x02,0x04,0x08,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x88,0x88,0x0e,0x08,0x08,0x08,0x00,0xf8,0x08,0x08,0x08,0x00,0x00 -+// 52910 캮 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x10,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x08,0x0b,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52911 캯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x0f,0x08,0x09,0x08,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 52912 캰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x03,0x02,0x04,0x13,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0x8a,0x08,0x08,0x0a,0x08,0x08,0x00,0x00,0xfc,0x00,0x00 -+// 52913 캱 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0b,0x01,0x02,0x04,0x08,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0xc8,0xc8,0x8f,0x08,0x08,0x0c,0x00,0xfc,0x10,0x18,0xa4,0x42,0x00 -+// 52914 캲 ; -+,0x00,0x00,0x00,0x06,0x00,0x1f,0x01,0x02,0x00,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x8c,0x08,0x0f,0x08,0x00,0xfe,0x38,0x44,0x44,0x30,0x00 -+// 52915 캳 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0xc8,0x8f,0x08,0x08,0x0c,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00 -+// 52916 캴 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1f,0x01,0x02,0x08,0x10,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x08,0x08,0x0b,0x08,0x00,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 52917 캵 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x02,0x04,0x08,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0xc8,0x88,0x8f,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 52918 캶 ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x00,0x1f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x18,0x08,0xc8,0x88,0x08,0x08,0x0f,0x08,0x4c,0x84,0xa0,0x20,0xac,0x00,0x00 -+// 52919 캷 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1f,0x03,0x02,0x08,0x1f,0x01,0x0b,0x08,0x09,0x04,0x00,0x00,0x10,0x08,0xc8,0x88,0x0c,0x08,0x0f,0x08,0xc8,0x48,0x48,0x48,0x48,0x00,0x00 -+// 52920 캸 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x08,0xc8,0x88,0x8f,0x08,0x08,0x08,0x00,0x98,0x10,0x18,0x24,0x42,0x00 -+// 52921 캹 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x04,0x08,0x10,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x18,0x08,0x88,0x88,0x08,0x08,0x0b,0x08,0x08,0x40,0x68,0x40,0x40,0x1c,0x00 -+// 52922 캺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x18,0x08,0xc8,0x88,0x8f,0x08,0x09,0x08,0x00,0x08,0x08,0x28,0x08,0x60,0x00 -+// 52923 캻 ; -+,0x00,0x00,0x00,0x04,0x00,0x1f,0x02,0x00,0x08,0x17,0x00,0x05,0x04,0x05,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x08,0x08,0x0f,0x08,0x00,0x7e,0x18,0x24,0x24,0x18,0x00 -+// 52924 캼 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1f,0x02,0x04,0x08,0x10,0x03,0x02,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x08,0x0f,0x08,0x00,0xf8,0x08,0x00,0x38,0x00,0x00 -+// 52925 캽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x02,0x04,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x88,0x8f,0x08,0x08,0x08,0x10,0x08,0x18,0x08,0x08,0x08,0x00 -+// 52926 캾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x11,0x0c,0x06,0x04,0x07,0x04,0x00,0x00,0x10,0x08,0xc8,0x88,0x0e,0x08,0x0b,0x08,0x98,0x88,0x98,0x94,0xa6,0x42,0x00 -+// 52927 캿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x09,0x02,0x04,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x08,0xc8,0x88,0x8f,0x08,0x08,0x0f,0x08,0x60,0x40,0x90,0x08,0x04,0x00 -+// 52928 컀 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x19,0x02,0x04,0x08,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x18,0xc8,0x88,0x8f,0x08,0x08,0x0f,0x00,0x18,0x10,0x98,0x64,0x42,0x00 -+// 52929 컁 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0x08,0x08,0x08,0x0f,0x08,0x60,0x08,0x08,0x08,0xf0,0x00 -+// 52930 컂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x07,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0xc8,0x88,0x8f,0x08,0x08,0x08,0x00,0xfc,0x40,0xb0,0x08,0x04,0x00 -+// 52931 컃 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x00,0x08,0xc8,0x88,0x8f,0x08,0x08,0x08,0xe0,0x04,0xe0,0x60,0x98,0x04,0x00 -+// 52932 컄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x88,0x0f,0x08,0x08,0x08,0x00,0x98,0x08,0xf8,0x08,0x08,0x00 -+// 52933 컅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x02,0x04,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0x8f,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x00 -+// 52934 컆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x02,0x06,0x08,0x10,0x07,0x00,0x01,0x00,0x0f,0x00,0x00,0x10,0x08,0x88,0x88,0x0f,0x08,0x08,0x08,0x00,0xf8,0x10,0x10,0x04,0xc0,0x00 -+// 52935 컇 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x04,0x08,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x08,0x08,0x0f,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x00 -+// 52936 컈 ; -+,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x0f,0x02,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0xa4,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x04,0x00 -+// 52937 컉 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x12,0x04,0x08,0x10,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x20,0x00,0x8c,0x04,0x04,0x04,0x00,0x00 -+// 52938 컊 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x12,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0xa4,0x3c,0x24,0x34,0x24,0x00,0x00,0x84,0x84,0x84,0x84,0x00,0x00 -+// 52939 컋 ; -+,0x00,0x00,0x00,0x0f,0x01,0x07,0x02,0x04,0x00,0x10,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x3c,0x24,0x00,0x18,0x88,0x98,0x94,0xa2,0x40,0x00 -+// 52940 컌 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x1b,0x02,0x04,0x08,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0x14,0x14,0x14,0x1c,0x14,0x04,0x00,0x00,0xde,0x00,0x00 -+// 52941 컍 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x1a,0x00,0x04,0x08,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x0c,0x64,0xa4,0x34,0x24,0x24,0x24,0x24,0x00,0xf8,0x10,0x18,0x24,0x82,0x00 -+// 52942 컎 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x12,0x02,0x04,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x30,0xfe,0x38,0x44,0x44,0x38,0x00 -+// 52943 컏 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1e,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x64,0x24,0xb4,0x24,0x24,0x34,0x24,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00 -+// 52944 컐 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x1f,0x02,0x04,0x08,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x3c,0x24,0x00,0xfc,0x04,0xbc,0x00,0xce,0x00 -+// 52945 컑 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x64,0xa4,0x3c,0x24,0x24,0x24,0x24,0x00,0x84,0x84,0x04,0x04,0x00,0x00 -+// 52946 컒 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1f,0x02,0x04,0x08,0x06,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x94,0x04,0x04,0x14,0x04,0x00,0xb4,0xa4,0xa4,0x24,0xbc,0x00 -+// 52947 컓 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1f,0x02,0x04,0x08,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0xb4,0x94,0x04,0x14,0x14,0x04,0x0c,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 52948 컔 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1f,0x02,0x04,0x08,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0xb4,0x24,0x24,0x34,0x24,0x00,0x88,0x88,0x98,0x34,0x22,0x00 -+// 52949 컕 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x12,0x04,0x08,0x18,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x20,0x48,0x40,0x78,0x40,0x64,0x00,0x00 -+// 52950 컖 ; -+,0x00,0x00,0x00,0x0f,0x01,0x0f,0x02,0x04,0x00,0x08,0x01,0x01,0x04,0x04,0x02,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x3c,0x24,0x00,0x0c,0x08,0x28,0x28,0x08,0x00,0x00 -+// 52951 컗 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1a,0x02,0x04,0x08,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x18,0xf6,0x18,0x24,0x04,0x38,0x00 -+// 52952 컘 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1f,0x02,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x9c,0x14,0x14,0x14,0x04,0x00,0xfc,0x84,0x84,0x84,0x80,0x00 -+// 52953 컙 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1a,0x02,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x08,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 52954 컚 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1a,0x02,0x04,0x08,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0x3c,0x24,0x24,0x34,0x24,0x88,0x88,0x88,0x94,0xa2,0x40,0x00 -+// 52955 컛 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x1f,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x24,0xb4,0x24,0x24,0x3c,0x24,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 52956 컜 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1e,0x02,0x04,0x08,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x04,0x24,0xbc,0x24,0x24,0x34,0x24,0x08,0x08,0x08,0x94,0x62,0x42,0x00 -+// 52957 컝 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x3c,0x24,0x24,0x3c,0x24,0x24,0x70,0x88,0x84,0x88,0x78,0x00 -+// 52958 컞 ; -+,0x00,0x00,0x00,0x0f,0x01,0x03,0x1a,0x02,0x04,0x08,0x03,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x24,0xa4,0x34,0x24,0x34,0x24,0x00,0x00,0x60,0x60,0x90,0x0c,0x00,0x00 -+// 52959 컟 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1a,0x02,0x04,0x08,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0xa4,0x3c,0x24,0x24,0x34,0x24,0xe0,0x04,0xe0,0x60,0x98,0x04,0x00 -+// 52960 컠 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x1a,0x04,0x04,0x08,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x00,0xcc,0x0c,0xe4,0x04,0x00,0x00 -+// 52961 컡 ; -+,0x00,0x00,0x00,0x0f,0x01,0x07,0x02,0x04,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x34,0x24,0x34,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x3c,0x00 -+// 52962 컢 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1e,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 52963 컣 ; -+,0x00,0x00,0x00,0x01,0x01,0x03,0x1a,0x04,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x60,0x1c,0x60,0x90,0x80,0xf0,0x00 -+// 52964 커 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xc4,0x84,0x84,0x7c,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 52965 컥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x7c,0x04,0x04,0x00,0xdc,0x0c,0x0c,0x08,0x08,0x00 -+// 52966 컦 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x7c,0x04,0x04,0x00,0xbc,0x84,0x84,0x80,0x00,0x00 -+// 52967 컧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x44,0x84,0x3c,0x04,0x04,0x08,0x88,0x88,0x94,0xa6,0xc2,0x00 -+// 52968 컨 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x1d,0x03,0x02,0x04,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x84,0x84,0x8c,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x00 -+// 52969 컩 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x2c,0x04,0x04,0x06,0x58,0x10,0x18,0xa4,0x42,0x00 -+// 52970 컪 ; -+,0x00,0x00,0x00,0x06,0x00,0x1f,0x01,0x02,0x00,0x10,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x0c,0x04,0x04,0x10,0xfe,0x38,0x44,0x44,0x38,0x00 -+// 52971 컫 ; -+,0x00,0x00,0x09,0x00,0x00,0x1d,0x01,0x02,0x00,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0xc4,0x84,0x3c,0x04,0x04,0x04,0x00,0xf8,0x00,0x00,0x04,0x00,0x00 -+// 52972 컬 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x03,0x02,0x00,0x10,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x08,0xc8,0x88,0x88,0x08,0x08,0x08,0x00,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 52973 컭 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x02,0x04,0x08,0x0f,0x00,0x0f,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x7c,0x04,0x04,0x00,0xb8,0x08,0x08,0x08,0x00,0x00 -+// 52974 컮 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x3c,0x04,0x04,0x04,0xac,0x24,0x20,0x20,0x28,0x00 -+// 52975 컯 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x01,0x02,0x04,0x0f,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x04,0x04,0x04,0x48,0x44,0x3c,0x04,0x28,0x00,0x00 -+// 52976 컰 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x0f,0x00,0x01,0x04,0x05,0x04,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x2c,0x04,0x04,0x10,0x98,0x90,0x28,0xc4,0x00,0x00 -+// 52977 컱 ; -+,0x00,0x00,0x00,0x00,0x00,0x1d,0x01,0x02,0x00,0x0f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x44,0x44,0x84,0xbc,0x04,0x04,0x04,0x7c,0x20,0x3c,0x20,0x24,0x00,0x00 -+// 52978 컲 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x09,0x01,0x01,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x84,0x24,0x04,0x04,0x04,0x00,0x28,0x28,0x08,0x00,0x00 -+// 52979 컳 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x07,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0xc4,0xc4,0x84,0x3c,0x04,0x04,0x18,0x86,0x18,0x24,0x24,0x3c,0x00 -+// 52980 컴 ; -+,0x00,0x00,0x00,0x00,0x00,0x1d,0x02,0x00,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x1c,0x04,0x04,0x04,0x00,0x08,0x08,0x08,0x18,0x00,0x00 -+// 52981 컵 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1d,0x01,0x02,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0x84,0x8c,0x0c,0x04,0x04,0x08,0x00,0xf8,0x00,0xf8,0x00,0x00 -+// 52982 컶 ; -+,0x00,0x00,0x00,0x00,0x00,0x1d,0x01,0x02,0x00,0x11,0x04,0x06,0x04,0x07,0x04,0x00,0x00,0x0c,0x04,0xc4,0x84,0x0c,0x04,0x04,0x04,0x88,0x88,0x98,0x94,0xa2,0x40,0x00 -+// 52983 컷 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1f,0x03,0x06,0x08,0x00,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x0c,0xc4,0x84,0x0c,0x04,0x04,0x04,0x60,0x40,0x60,0x88,0x04,0x00,0x00 -+// 52984 컸 ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x03,0x04,0x08,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x0c,0xc4,0x44,0x84,0x1c,0x04,0x04,0x04,0x08,0x88,0x98,0x64,0x22,0x00,0x00 -+// 52985 컹 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x84,0x8c,0x0c,0x04,0x04,0x20,0x70,0x88,0x08,0x88,0xf0,0x00 -+// 52986 컺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x04,0xc4,0x84,0x84,0x2c,0x04,0x04,0x00,0xe0,0x60,0x98,0x04,0x00,0x00 -+// 52987 컻 ; -+,0x00,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x00,0x10,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x04,0xc4,0x84,0x0c,0x04,0x04,0x04,0xe0,0x3c,0x40,0xf0,0x0c,0x00,0x00 -+// 52988 컼 ; -+,0x00,0x00,0x00,0x04,0x00,0x0d,0x01,0x02,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x8c,0x04,0x04,0x04,0xcc,0x04,0x6c,0x04,0x00,0x00,0x00 -+// 52989 컽 ; -+,0x00,0x00,0x00,0x04,0x00,0x1f,0x01,0x02,0x04,0x10,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x8c,0x0c,0x04,0x04,0x00,0x00,0x00,0x00,0x04,0x00,0x00 -+// 52990 컾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0xc4,0xc4,0x84,0x3c,0x04,0x04,0x00,0xfc,0x10,0x80,0x90,0xf6,0x00 -+// 52991 컿 ; -+,0x00,0x00,0x00,0x04,0x00,0x1f,0x01,0x02,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0x8c,0x04,0x04,0x04,0x60,0xfc,0x70,0x88,0x80,0x60,0x00 -+// 52992 케 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x1f,0x04,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x20,0x00,0x00,0x00 -+// 52993 켁 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1b,0x00,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 52994 켂 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x00,0x04,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 52995 켃 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1f,0x04,0x04,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x88,0x90,0x98,0xa4,0x42,0x00 -+// 52996 켄 ; -+,0x00,0x00,0x00,0x00,0x1f,0x01,0x1e,0x02,0x04,0x08,0x10,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x00,0x04,0x00,0x00 -+// 52997 켅 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1f,0x04,0x04,0x08,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0xf8,0x10,0x28,0x44,0x80,0x00 -+// 52998 켆 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1f,0x02,0x04,0x08,0x1c,0x04,0x04,0x05,0x06,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xe4,0x24,0x24,0x30,0x04,0xb0,0x48,0x44,0x78,0x00 -+// 52999 켇 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1f,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0x24,0x24,0x64,0x24,0x24,0x00,0x78,0x00,0x00,0x00,0xfc,0x00 -+// 53000 켈 ; -+,0x00,0x00,0x00,0x00,0x09,0x03,0x3f,0x04,0x04,0x08,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0x24,0x24,0xe4,0x20,0x20,0x00,0xec,0x08,0x78,0x00,0xfe,0x00 -+// 53001 켉 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x04,0x04,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0xe4,0x24,0x20,0x00,0x8c,0x84,0x04,0x00,0x00,0x00 -+// 53002 켊 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0xa4,0x24,0x24,0x2c,0x20,0x00 -+// 53003 켋 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1f,0x02,0x04,0x08,0x17,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x64,0x24,0x24,0x24,0x2c,0x00 -+// 53004 켌 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1f,0x04,0x04,0x08,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0xe4,0x24,0x24,0x10,0x88,0x10,0x18,0x24,0x42,0x00 -+// 53005 켍 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1f,0x02,0x04,0x08,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x44,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0xf8,0x00,0x38,0x00,0x3c,0x00 -+// 53006 켎 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x07,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x64,0x24,0x24,0x24,0xe4,0x24,0x24,0x00,0x70,0x08,0x28,0x28,0x7e,0x00 -+// 53007 켏 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1f,0x02,0x04,0x08,0x0f,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0xe4,0x24,0x24,0x38,0x00,0x10,0x24,0x44,0x2c,0x00 -+// 53008 켐 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0xf4,0x14,0x14,0x00,0xcc,0x84,0x84,0x84,0x80,0x00 -+// 53009 켑 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0xf4,0x14,0x14,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 53010 켒 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0x14,0x94,0x14,0xf4,0x04,0x04,0x88,0x08,0x88,0x14,0x82,0x00,0x00 -+// 53011 켓 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1b,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x24,0x84,0x04,0xe4,0x04,0x04,0x04,0x20,0x20,0x50,0x8c,0x06,0x00 -+// 53012 켔 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x01,0x01,0x02,0x02,0x00,0x00,0x00,0x08,0x24,0x04,0x04,0x04,0xe4,0x04,0x04,0x08,0x08,0x08,0x94,0x42,0x02,0x00 -+// 53013 켕 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0xb4,0x04,0x04,0x04,0x30,0x84,0x84,0x84,0x78,0x00 -+// 53014 켖 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x34,0x94,0x14,0x34,0x14,0x14,0x14,0x04,0x60,0x60,0x98,0x04,0x00 -+// 53015 켗 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x13,0x02,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0x04,0x04,0x04,0xa4,0x04,0x04,0xe0,0x04,0x60,0x60,0x88,0x06,0x00 -+// 53016 켘 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0xf4,0x14,0x14,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53017 켙 ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x1b,0x02,0x04,0x08,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x84,0x04,0x04,0xe4,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 53018 켚 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x03,0x00,0x00,0x00,0x06,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0xf4,0x14,0x14,0x00,0xfc,0x00,0x88,0x90,0x16,0x00 -+// 53019 켛 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0xf4,0x14,0x04,0x70,0x00,0x20,0x10,0x88,0x98,0x00 -+// 53020 켜 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x01,0x19,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0x8c,0xbc,0x04,0x04,0x7c,0x04,0x04,0x00,0x00,0x00,0x00 -+// 53021 켝 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x00,0xcc,0x04,0x04,0x00,0x00,0x00 -+// 53022 켞 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x00,0xa8,0x88,0x88,0x88,0x08,0x00 -+// 53023 켟 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x08,0x88,0x88,0x94,0xa6,0xc2,0x00 -+// 53024 켠 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x1d,0x02,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0xa8,0x08,0x08,0x68,0x08,0x08,0x00,0x00,0x00,0x00,0x00 -+// 53025 켡 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x0c,0xc4,0xfc,0x84,0x0c,0x68,0x00,0x00,0xf8,0x10,0x18,0x24,0x42,0x00 -+// 53026 켢 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0c,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x30,0x06,0x10,0x04,0xc4,0x38,0x00 -+// 53027 켣 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x00,0x02,0x02,0x00,0x01,0x01,0x00,0x00,0x08,0x0c,0xc4,0xfc,0x04,0x0c,0x78,0x00,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 53028 켤 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0xc4,0xfc,0x84,0x0c,0x4c,0x00,0x08,0x08,0x08,0x00,0x00,0xfe,0x00 -+// 53029 켥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x01,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x0c,0xc4,0xdc,0x84,0x04,0x7c,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 53030 켦 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x09,0x02,0x04,0x08,0x0d,0x01,0x01,0x04,0x05,0x04,0x00,0x00,0x0c,0xc4,0xcc,0x8c,0x04,0x7c,0x04,0x00,0x6c,0x20,0x20,0x20,0x28,0x00 -+// 53031 켧 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x0c,0xc4,0xdc,0x84,0x04,0x7c,0x04,0x08,0x40,0x78,0x40,0x48,0x48,0x00 -+// 53032 켨 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x02,0x04,0x08,0x04,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x0c,0xc4,0xcc,0x84,0x04,0x7c,0x04,0x00,0x98,0x10,0x18,0x24,0x46,0x00 -+// 53033 켩 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x02,0x04,0x08,0x05,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x0c,0xc4,0xcc,0x84,0x04,0x7c,0x04,0x04,0x60,0x20,0x20,0x20,0x3e,0x00 -+// 53034 켪 ; -+,0x00,0x00,0x00,0x0f,0x00,0x07,0x01,0x02,0x04,0x08,0x01,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xc4,0x7c,0x84,0x04,0x7c,0x04,0x04,0x80,0x04,0x20,0x08,0x40,0x00 -+// 53035 켫 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0x6c,0x04,0x18,0x82,0x08,0x24,0x04,0x2c,0x00 -+// 53036 켬 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0xc4,0xcc,0x8c,0x04,0x7c,0x00,0x00,0x08,0x08,0x08,0x08,0x18,0x00 -+// 53037 켭 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x01,0x02,0x00,0x08,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x7c,0x84,0x04,0x7c,0x04,0x04,0x04,0x84,0x84,0x04,0xfc,0x00 -+// 53038 켮 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0x6c,0x04,0x98,0x88,0x88,0x90,0xa6,0x82,0x00 -+// 53039 켯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x40,0x20,0x60,0xd0,0x88,0x04,0x00 -+// 53040 켰 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x08,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x04,0x7c,0x04,0x08,0x88,0x08,0x94,0x62,0x42,0x00 -+// 53041 켱 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x20,0x20,0x88,0x08,0x08,0xd8,0x00 -+// 53042 켲 ; -+,0x00,0x00,0x00,0x07,0x00,0x0c,0x01,0x02,0x04,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0xfc,0x84,0x04,0x6c,0x04,0x00,0x60,0x60,0x90,0x04,0x00,0x00 -+// 53043 켳 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x08,0x00,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0xc4,0xfc,0x84,0x04,0x7c,0x04,0xe0,0x00,0x60,0x60,0x98,0x06,0x00 -+// 53044 켴 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0xcc,0x84,0x04,0x7c,0x04,0x00,0x8c,0x0c,0xc0,0x00,0x00,0x00 -+// 53045 켵 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1d,0x01,0x02,0x04,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0xfc,0x84,0x04,0x6c,0x04,0x00,0x00,0x00,0x00,0x04,0x00,0x00 -+// 53046 켶 ; -+,0x00,0x00,0x00,0x07,0x00,0x0c,0x01,0x02,0x04,0x08,0x02,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0xc4,0xfc,0x84,0x04,0x7c,0x04,0x00,0x0c,0x10,0x80,0x90,0x16,0x00 -+// 53047 켷 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x4c,0x84,0x04,0x7c,0x04,0x60,0x04,0x20,0x90,0x88,0xf0,0x00 -+// 53048 켸 ; -+,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x1f,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0xf4,0x14,0x14,0x34,0x14,0x14,0x04,0x04,0x04,0x00 -+// 53049 켹 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1b,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x74,0x14,0xf4,0x14,0x00,0x2c,0x04,0x04,0x04,0x04,0x00 -+// 53050 켺 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0xf4,0x14,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 53051 켻 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x0a,0x02,0x04,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0xb4,0x14,0x14,0x14,0x14,0x18,0x88,0x88,0x94,0xa2,0x80,0x00 -+// 53052 켼 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1b,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x84,0xe4,0x04,0x04,0xe4,0x04,0x04,0x04,0x00,0x06,0x00,0x00 -+// 53053 켽 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x1d,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0xf4,0x14,0xf4,0x14,0x10,0x06,0x08,0x18,0x34,0x42,0x00 -+// 53054 켾 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x02,0x02,0x04,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x94,0xf4,0x14,0x14,0x24,0x00,0x00,0xde,0x18,0x04,0x04,0x38,0x00 -+// 53055 켿 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x1b,0x02,0x04,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x24,0x94,0x94,0x14,0x14,0xf4,0x14,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 53056 콀 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x1f,0x02,0x04,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x26,0x12,0x92,0xb2,0x12,0x30,0x10,0x00,0xe4,0x04,0x8c,0x80,0xfe,0x00 -+// 53057 콁 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xa4,0x04,0x04,0xa4,0x04,0x00,0xa4,0x84,0x84,0x04,0x84,0x00 -+// 53058 콂 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1a,0x02,0x04,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0x04,0xa4,0x00,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 53059 콃 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x1b,0x02,0x04,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xb4,0x14,0x14,0xb4,0x04,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 53060 콄 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x09,0x02,0x04,0x06,0x00,0x04,0x02,0x02,0x03,0x00,0x00,0x04,0x32,0x92,0xf2,0x12,0x12,0x12,0x00,0x88,0x08,0x88,0x14,0x12,0x00,0x00 -+// 53061 콅 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x09,0x02,0x04,0x0c,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x04,0x24,0x94,0xb4,0x14,0x14,0xb4,0x00,0x04,0xa0,0xa4,0x20,0x22,0x00,0x00 -+// 53062 콆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x02,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x22,0x12,0xd2,0x92,0x12,0x52,0x12,0x00,0xb2,0x84,0x94,0x14,0xa7,0x00 -+// 53063 콇 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x1f,0x02,0x04,0x08,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x24,0xa4,0x24,0x04,0xa4,0x04,0x18,0x82,0x08,0x24,0x20,0x3c,0x00 -+// 53064 콈 ; -+,0x00,0x00,0x00,0x00,0x04,0x01,0x1f,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x12,0x92,0x92,0x12,0x52,0x10,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 53065 콉 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x92,0x92,0x12,0x12,0x12,0x00,0x04,0x84,0xfc,0x84,0xc4,0x80,0x00 -+// 53066 콊 ; -+,0x00,0x00,0x00,0x00,0x05,0x01,0x1f,0x02,0x04,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0xb4,0x04,0x08,0x48,0xc8,0x4c,0x52,0x20,0x00 -+// 53067 콋 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0d,0x00,0x02,0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x26,0x12,0x92,0xf2,0x12,0x12,0x52,0x02,0x32,0x30,0x48,0xc4,0x02,0x00 -+// 53068 콌 ; -+,0x00,0x00,0x00,0x00,0x0d,0x01,0x1b,0x02,0x04,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x04,0x34,0x94,0xf4,0x14,0x34,0x04,0x00,0x8c,0x08,0x8c,0x52,0x20,0x00 -+// 53069 콍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x92,0x92,0x92,0x12,0x12,0x12,0x12,0x18,0x44,0x00,0x44,0x7c,0x00 -+// 53070 콎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x12,0x8a,0x92,0x92,0x02,0x52,0x02,0x00,0x26,0x20,0x48,0x86,0x02,0x00 -+// 53071 콏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x01,0x02,0x04,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x04,0x12,0x12,0xd2,0x92,0x12,0x52,0x02,0x70,0x02,0x30,0x30,0xc4,0x02,0x00 -+// 53072 콐 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x1f,0x02,0x04,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x92,0x12,0x12,0x52,0x12,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 53073 콑 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x09,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x92,0xd2,0x12,0x12,0x52,0x02,0x00,0x88,0x80,0x80,0x80,0xfe,0x00 -+// 53074 콒 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x0f,0x02,0x04,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x06,0x12,0x92,0x92,0x12,0x52,0x12,0x00,0x04,0x08,0x88,0x00,0xfe,0x00 -+// 53075 콓 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x0b,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0xb4,0x14,0x14,0xb4,0x00,0x70,0x06,0x20,0x48,0x88,0x78,0x00 -+// 53076 코 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc6,0x04,0x04,0x84,0x00,0xc0,0x40,0x40,0xff,0x00,0x00,0x00 -+// 53077 콕 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x00,0x18,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0xc0,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 53078 콖 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x10,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xc0,0x42,0x00,0x00,0xac,0x80,0x80,0x00,0x00,0x00 -+// 53079 콗 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x00,0x10,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0x80,0xc2,0x00,0x20,0x10,0x30,0x28,0x44,0x00,0x00 -+// 53080 콘 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x10,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x00,0x0c,0x04,0x08,0x88,0x08,0x40,0x42,0x00,0x00,0x00,0x00,0x08,0x00,0x00 -+// 53081 콙 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x88,0x08,0x88,0x00,0x80,0xce,0x00,0x0c,0x30,0x20,0x38,0x44,0x00,0x00 -+// 53082 콚 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x18,0x00,0x18,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0x80,0x00,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 53083 콛 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0x40,0x00,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 53084 콜 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x02,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x80,0x80,0x00,0x00,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 53085 콝 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x8c,0x08,0x88,0x00,0x80,0xc6,0x00,0x08,0x88,0x08,0x08,0x08,0x08,0x00 -+// 53086 콞 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x09,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x88,0x80,0xcf,0x00,0x44,0x24,0x24,0x24,0x24,0x20,0x00 -+// 53087 콟 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0xc2,0x00,0x08,0x04,0x3c,0x04,0x2c,0x20,0x00 -+// 53088 콠 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x01,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x80,0x40,0x00,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 53089 콡 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x80,0xc6,0x00,0x00,0x60,0x00,0x20,0x20,0x00,0x00 -+// 53090 콢 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x80,0xc2,0x00,0x08,0x00,0x48,0x20,0x10,0x00,0x00 -+// 53091 콣 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0xc6,0x00,0x30,0xd4,0x10,0x48,0x40,0x38,0x00 -+// 53092 콤 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x00,0x10,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x80,0xc2,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 53093 콥 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x04,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x80,0x80,0x00,0x10,0x10,0xf0,0x10,0xf0,0x00,0x00 -+// 53094 콦 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0x80,0xc6,0x00,0x10,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 53095 콧 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x00,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0x00,0x8e,0x80,0x40,0xc0,0x30,0x08,0x00,0x00 -+// 53096 콨 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x10,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0xc2,0x00,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 53097 콩 ; -+,0x00,0x00,0x07,0x00,0x00,0x0c,0x00,0x00,0x1c,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0x80,0x80,0x00,0x40,0x20,0x10,0x10,0x10,0xe0,0x00 -+// 53098 콪 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x18,0x00,0x06,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x80,0x80,0x00,0x00,0xc0,0xc0,0x20,0x08,0x00,0x00 -+// 53099 콫 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0x80,0xce,0x00,0xc0,0x00,0xc0,0x80,0x18,0x00,0x00 -+// 53100 콬 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0xc0,0x40,0x00,0x00,0x88,0x08,0x88,0x08,0x08,0x00 -+// 53101 콭 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x04,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x00 -+// 53102 콮 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x00,0x10,0x00,0x06,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x80,0xc2,0x00,0x00,0x38,0x20,0x20,0x20,0x00,0x00 -+// 53103 콯 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1d,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x80,0x40,0x00,0xc0,0x0c,0xc0,0x20,0x00,0xe0,0x00 -+// 53104 콰 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x1c,0x00,0x02,0x02,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x48,0x48,0x48,0x08,0x0f,0x08,0x38,0x08,0x08,0x08,0x08,0x00 -+// 53105 콱 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0e,0x02,0x02,0x03,0x18,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0a,0x18,0x88,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 53106 콲 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0c,0x02,0x02,0x07,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0a,0x18,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 53107 콳 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1e,0x02,0x02,0x03,0x18,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x0a,0x18,0x88,0x00,0x10,0x10,0x30,0x48,0x04,0x00 -+// 53108 콴 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x08,0x02,0x02,0x1e,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x08,0x0a,0x18,0x08,0x08,0x08,0x00,0x00,0xbc,0x00 -+// 53109 콵 ; -+,0x00,0x00,0x00,0x0f,0x00,0x06,0x00,0x02,0x03,0x18,0x00,0x08,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x08,0x18,0x88,0x00,0x0c,0x10,0x30,0x4c,0x84,0x00 -+// 53110 콶 ; -+,0x00,0x00,0x00,0x0c,0x00,0x1c,0x02,0x02,0x07,0x18,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0a,0x18,0x88,0x10,0x00,0xbc,0x10,0x48,0x48,0x00 -+// 53111 콷 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x02,0x03,0x1c,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x48,0x1e,0xc8,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 53112 콸 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x00,0x02,0x03,0x1c,0x03,0x00,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0x18,0x88,0x00,0x98,0x00,0x10,0x00,0x0c,0x00 -+// 53113 콹 ; -+,0x00,0x00,0x00,0x0e,0x00,0x0c,0x02,0x02,0x07,0x00,0x0d,0x01,0x0d,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0b,0x18,0x08,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 53114 콺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1c,0x00,0x02,0x03,0x18,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0a,0x18,0x88,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 53115 콻 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1c,0x00,0x02,0x07,0x18,0x1a,0x02,0x1a,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0a,0x18,0x88,0x00,0x98,0x48,0x48,0x48,0x78,0x00 -+// 53116 콼 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1e,0x00,0x02,0x03,0x18,0x0d,0x00,0x0d,0x00,0x06,0x00,0x00,0x00,0x08,0x48,0x48,0x48,0x0a,0x18,0x88,0x00,0x10,0x10,0x38,0x44,0x84,0x00 -+// 53117 콽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1c,0x00,0x02,0x03,0x18,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x08,0x18,0x88,0x00,0x58,0x40,0x58,0x40,0x7c,0x00 -+// 53118 콾 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1c,0x00,0x02,0x07,0x18,0x0b,0x00,0x0b,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0a,0x18,0x88,0x00,0x48,0x08,0x48,0x40,0x1c,0x00 -+// 53119 콿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1c,0x00,0x02,0x03,0x18,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0a,0x18,0x88,0x10,0x00,0x5c,0x28,0x04,0x28,0x00 -+// 53120 쾀 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x02,0x03,0x18,0x00,0x02,0x02,0x00,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x48,0x18,0x88,0x00,0x00,0x08,0x00,0x10,0x00,0x00 -+// 53121 쾁 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0c,0x02,0x02,0x03,0x18,0x02,0x01,0x01,0x00,0x01,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x0a,0x18,0x88,0x00,0x18,0x08,0x18,0x08,0xf8,0x00 -+// 53122 쾂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x00,0x02,0x03,0x18,0x01,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x0a,0x18,0x88,0x00,0x98,0x90,0x98,0xa4,0x40,0x00 -+// 53123 쾃 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0c,0x02,0x02,0x03,0x18,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x0a,0x18,0x88,0x08,0x40,0x40,0xa0,0x08,0x04,0x00 -+// 53124 쾄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0c,0x02,0x02,0x03,0x08,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x0a,0x18,0x80,0x10,0x10,0x10,0xa8,0x64,0x00,0x00 -+// 53125 쾅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x03,0x18,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x08,0x18,0x88,0x08,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 53126 쾆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x0e,0x02,0x02,0x03,0x18,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x0a,0x18,0x88,0x00,0x0c,0x40,0x40,0x90,0x0c,0x00 -+// 53127 쾇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x06,0x00,0x02,0x03,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x18,0xc8,0x48,0x48,0x0a,0x18,0x88,0x00,0xc0,0x4c,0x40,0x90,0x0c,0x00 -+// 53128 쾈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x06,0x00,0x02,0x03,0x18,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x08,0xc8,0x48,0x48,0x08,0x18,0x88,0x00,0x98,0x08,0x18,0x08,0x08,0x00 -+// 53129 쾉 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x03,0x18,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x0a,0x18,0x88,0x00,0x18,0x00,0x38,0x00,0xfc,0x00 -+// 53130 쾊 ; -+,0x00,0x00,0x00,0x0f,0x00,0x06,0x00,0x02,0x03,0x18,0x00,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0xc8,0x48,0x48,0x08,0x18,0x88,0x00,0x78,0x10,0x10,0x00,0xbc,0x00 -+// 53131 쾋 ; -+,0x00,0x00,0x00,0x0e,0x00,0x1e,0x02,0x02,0x07,0x00,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x10,0x08,0x48,0x48,0x48,0x0b,0x18,0x08,0xe0,0x00,0x40,0x80,0x10,0xe0,0x00 -+// 53132 쾌 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x0c,0x02,0x02,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0xd4,0x54,0x94,0x94,0x94,0x14,0x14,0x14,0x14,0x14,0x04,0x00 -+// 53133 쾍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x52,0x52,0x1e,0x12,0x10,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53134 쾎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x10,0x50,0x50,0x14,0x30,0x10,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 53135 쾏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x14,0x54,0x94,0x1c,0x34,0x14,0x00,0x08,0x88,0x98,0x84,0x82,0x00 -+// 53136 쾐 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x02,0x02,0x1e,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x94,0x9c,0x14,0xf4,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 53137 쾑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x0f,0x00,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x04,0x24,0x10,0x50,0x90,0x14,0x30,0x10,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 53138 쾒 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x02,0x07,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x24,0x14,0x54,0x94,0x1c,0x34,0x14,0x30,0x00,0xd8,0x28,0x04,0x38,0x00 -+// 53139 쾓 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0c,0x02,0x03,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x54,0x14,0x1c,0x34,0x94,0x00,0x04,0x00,0x00,0x00,0xce,0x00 -+// 53140 쾔 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x02,0x1f,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xc4,0x84,0x9c,0x24,0x04,0x00,0xc4,0x04,0x8c,0x00,0xfe,0x00 -+// 53141 쾕 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x06,0x02,0x03,0x08,0x06,0x00,0x04,0x00,0x03,0x00,0x00,0x04,0x32,0x12,0x52,0x52,0x1e,0x12,0x90,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 53142 쾖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x54,0x54,0x1c,0x34,0x14,0x00,0xa4,0xa4,0xa4,0x24,0xa0,0x00 -+// 53143 쾗 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x06,0x02,0x03,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x10,0x50,0x50,0x1c,0x10,0x90,0x00,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 53144 쾘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x08,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0x54,0x14,0x1c,0x34,0x14,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 53145 쾙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x1f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x54,0x94,0x1c,0x34,0x14,0x00,0xe0,0x20,0x20,0x20,0x1e,0x00 -+// 53146 쾚 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0c,0x02,0x03,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x1c,0x34,0x94,0x00,0x86,0x84,0xa4,0x10,0x0e,0x00 -+// 53147 쾛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x54,0x94,0x1c,0x34,0x14,0x10,0x00,0x78,0x04,0x24,0x34,0x00 -+// 53148 쾜 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x54,0x54,0x14,0x34,0x14,0x00,0x04,0x84,0x84,0x84,0x80,0x00 -+// 53149 쾝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x54,0x14,0x1c,0x34,0x14,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 53150 쾞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x07,0x00,0x00,0x06,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x14,0x54,0x94,0x1c,0x34,0x14,0x00,0xc8,0x48,0x5c,0x52,0x60,0x00 -+// 53151 쾟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0x14,0x54,0x94,0x14,0x14,0x94,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 53152 쾠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x03,0x08,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x04,0x24,0x14,0x54,0x14,0x1c,0x34,0x94,0x10,0x08,0x08,0x98,0x66,0x42,0x00 -+// 53153 쾡 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x14,0x34,0x84,0x04,0x30,0x48,0x84,0x84,0x58,0x00 -+// 53154 쾢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x0f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x34,0x10,0x50,0x50,0x14,0x10,0x10,0x00,0x0c,0x20,0x50,0x8c,0x00,0x00 -+// 53155 쾣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x0f,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x00,0x04,0x24,0x14,0x54,0x94,0x1c,0x34,0x14,0x00,0x00,0x24,0x20,0xc8,0x06,0x00 -+// 53156 쾤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x0f,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x52,0x52,0x16,0x10,0x10,0x00,0xe4,0x04,0xf4,0x04,0x04,0x00 -+// 53157 쾥 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0c,0x02,0x03,0x1c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x10,0x50,0x50,0x14,0x14,0x90,0x00,0x00,0x00,0x04,0x00,0x8e,0x00 -+// 53158 쾦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0x54,0x94,0x1c,0x34,0x14,0x00,0x1c,0x00,0x88,0x90,0x9e,0x00 -+// 53159 쾧 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x54,0x94,0x1c,0x34,0x94,0x00,0x00,0x60,0x80,0x88,0x70,0x00 -+// 53160 쾨 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x0b,0x00,0x01,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xf4,0x24,0x24,0xa4,0x24,0x24,0x04,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 53161 쾩 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0x04,0x84,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 53162 쾪 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x04,0x84,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 53163 쾫 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x04,0x04,0x0c,0x84,0x00,0x08,0x88,0x98,0xa4,0x82,0x00 -+// 53164 쾬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x01,0x01,0x01,0x1c,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x24,0x04,0x04,0x04,0xc4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 53165 쾭 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x01,0x08,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x04,0x84,0x04,0x02,0x18,0x18,0xa4,0x42,0x00 -+// 53166 쾮 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x07,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x04,0x0c,0x84,0x30,0x00,0x58,0x28,0x04,0x2c,0x00 -+// 53167 쾯 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x01,0x08,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0x04,0xc4,0x04,0x00,0x00,0x00,0x00,0xcc,0x00 -+// 53168 쾰 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x03,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0x04,0xc4,0x04,0x8c,0x00,0x08,0x00,0x06,0x00 -+// 53169 쾱 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x00,0x1f,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x0c,0x04,0x24,0x24,0x24,0x04,0x84,0x84,0x00,0xa4,0x84,0x84,0x04,0x04,0x00 -+// 53170 쾲 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x01,0x00,0x07,0x00,0x04,0x00,0x04,0x04,0x03,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0x04,0x84,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 53171 쾳 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x01,0x00,0x03,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0x04,0xc4,0x00,0x44,0x24,0x24,0x24,0x24,0x00 -+// 53172 쾴 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x1f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0x04,0x84,0x00,0x88,0x90,0x18,0x24,0x02,0x00 -+// 53173 쾵 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x03,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0x04,0x84,0x04,0xe4,0x20,0x20,0x20,0x04,0x00 -+// 53174 쾶 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x1f,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x04,0x0c,0x84,0x04,0x08,0x0c,0x28,0x08,0x4e,0x00 -+// 53175 쾷 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x01,0x01,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x04,0x04,0xc4,0x00,0x00,0x78,0x04,0x24,0x34,0x00 -+// 53176 쾸 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x01,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0x0c,0xc4,0x04,0x00,0x0c,0x00,0x08,0x00,0x00 -+// 53177 쾹 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x04,0x04,0x04,0x04,0x0c,0x04,0xfc,0x04,0x84,0x00,0x00 -+// 53178 쾺 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x07,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x24,0x24,0x04,0x04,0x04,0x84,0x00,0x88,0x88,0x9c,0x82,0x40,0x00 -+// 53179 쾻 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x07,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x04,0x04,0x84,0x00,0x20,0x60,0x50,0x8c,0x06,0x00 -+// 53180 쾼 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x03,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0x04,0xc4,0x04,0x08,0x08,0x94,0x62,0x02,0x00 -+// 53181 쾽 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0x04,0xc4,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 53182 쾾 ; -+,0x00,0x00,0x00,0x02,0x00,0x0e,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x24,0x24,0x04,0x04,0x04,0x04,0x00,0x2c,0x20,0x50,0x88,0x06,0x00 -+// 53183 쾿 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x03,0x00,0x00,0x01,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x04,0x84,0x04,0x60,0x6c,0x20,0xd8,0x06,0x00 -+// 53184 쿀 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x03,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x04,0x04,0x84,0x04,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 53185 쿁 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x01,0x08,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x04,0xc4,0x04,0x04,0x00,0x0c,0x00,0x9c,0x00 -+// 53186 쿂 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x04,0x0c,0xc4,0x04,0x0c,0x10,0x88,0x90,0x96,0x00 -+// 53187 쿃 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x01,0x01,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x04,0x04,0x0c,0x84,0x04,0x00,0x20,0x10,0x88,0x50,0x00 -+// 53188 쿄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x80,0x08,0x48,0x40,0x40,0x7e,0x00,0x00,0x00 -+// 53189 쿅 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1c,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x40,0x40,0x60,0x00,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 53190 쿆 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1f,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x48,0x20,0x20,0x7e,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 53191 쿇 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1e,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x48,0x00,0x20,0x00,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 53192 쿈 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x1f,0x00,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x1c,0x04,0x04,0x88,0x48,0x20,0x20,0x06,0x00,0x00,0x00,0x00,0x00,0x00 -+// 53193 쿉 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x18,0x00,0x08,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0xfc,0x08,0x88,0x48,0x20,0x22,0x00,0x04,0x10,0x10,0x38,0x44,0x00,0x00 -+// 53194 쿊 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x10,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0xfc,0x08,0x88,0x40,0x00,0x62,0x00,0x30,0x04,0x30,0x48,0x48,0x30,0x00 -+// 53195 쿋 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1f,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xfc,0x08,0x08,0x48,0x20,0x20,0x7f,0x00,0x18,0x00,0x00,0x00,0xbc,0x00 -+// 53196 쿌 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1c,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0xc8,0x40,0x60,0x00,0x00,0x10,0x10,0x00,0x00,0xb8,0x00 -+// 53197 쿍 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x02,0x1c,0x00,0x00,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0x40,0x40,0x40,0x00,0x08,0x08,0x08,0x08,0x08,0x00,0x00 -+// 53198 쿎 ; -+,0x00,0x00,0x06,0x00,0x0b,0x06,0x02,0x02,0x00,0x0d,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0x08,0x08,0xc8,0x40,0x40,0x7e,0x00,0x4c,0x24,0x24,0x20,0x28,0x20,0x00 -+// 53199 쿏 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x18,0x01,0x01,0x09,0x08,0x08,0x06,0x00,0x00,0x00,0xf8,0x08,0x08,0x40,0x40,0x62,0x00,0x48,0x40,0x38,0x00,0x28,0x00,0x00 -+// 53200 쿐 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1e,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x08,0x08,0xc8,0x40,0x40,0x00,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 53201 쿑 ; -+,0x00,0x00,0x06,0x00,0x00,0x06,0x02,0x02,0x18,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x0c,0x08,0x88,0x48,0x40,0x62,0x00,0x00,0x40,0x40,0x68,0x40,0x18,0x00 -+// 53202 쿒 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x10,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x08,0x08,0x48,0x40,0x62,0x00,0x08,0x00,0x48,0x28,0x00,0x40,0x00 -+// 53203 쿓 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x02,0x02,0x1f,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0xfc,0x08,0x08,0xc8,0x40,0x00,0x7f,0x30,0x04,0x10,0x28,0x44,0x38,0x00 -+// 53204 쿔 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x18,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xfc,0x08,0x08,0x48,0x00,0x20,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 53205 쿕 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1c,0x00,0x04,0x07,0x04,0x03,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0xc8,0x40,0x40,0x00,0x10,0x10,0xf0,0x10,0xf0,0x00,0x00 -+// 53206 쿖 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x02,0x10,0x01,0x08,0x0f,0x08,0x0d,0x00,0x00,0x00,0x00,0xe8,0x08,0x88,0x40,0x40,0x42,0x00,0x10,0x10,0x10,0x28,0x44,0x80,0x00 -+// 53207 쿗 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x02,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x8c,0x08,0x88,0x08,0x60,0x20,0x3f,0x80,0x40,0xc0,0x30,0x08,0x04,0x00 -+// 53208 쿘 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x02,0x18,0x00,0x03,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0xfc,0x08,0x88,0x40,0x40,0x62,0x00,0x30,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 53209 쿙 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x00,0x1f,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0xfc,0x00,0x08,0x08,0x60,0x20,0x7f,0x40,0x60,0x10,0x10,0x10,0xe0,0x00 -+// 53210 쿚 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x02,0x02,0x18,0x00,0x04,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x8c,0x08,0x08,0x48,0x20,0x20,0x00,0x00,0xc0,0xc0,0x30,0x08,0x04,0x00 -+// 53211 쿛 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x02,0x1e,0x01,0x00,0x0e,0x00,0x03,0x04,0x00,0x00,0x00,0xfc,0x08,0x08,0x48,0x40,0x40,0x06,0xc0,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 53212 쿜 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x00,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x08,0x48,0x20,0x20,0x06,0x00,0x08,0x08,0xc8,0x08,0x08,0x00 -+// 53213 쿝 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x02,0x02,0x1f,0x00,0x04,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0xc8,0x40,0x00,0x7f,0x00,0x38,0x00,0x30,0x00,0xf8,0x00 -+// 53214 쿞 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0xfc,0x04,0x08,0x48,0x20,0x20,0x7f,0x00,0x08,0x00,0x10,0x00,0xfc,0x00 -+// 53215 쿟 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x02,0x02,0x11,0x00,0x0f,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0xf8,0x08,0x08,0x40,0x40,0x62,0x80,0x00,0xf8,0x40,0x20,0x20,0xc0,0x00 -+// 53216 쿠 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x04,0x08,0x88,0x08,0x00,0xc6,0x40,0x40,0x40,0x40,0x40,0x00,0x00 -+// 53217 쿡 ; -+,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x1c,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x10,0xc0,0x80,0x80,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 53218 쿢 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x1f,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x18,0x00,0x10,0xfe,0x80,0x80,0xac,0x84,0x80,0x00,0x00,0x00 -+// 53219 쿣 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1f,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x18,0x00,0x10,0xff,0x80,0x80,0x10,0x10,0x38,0x44,0x00,0x00 -+// 53220 쿤 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x10,0x3f,0x40,0x40,0x40,0x40,0x00,0x00,0xf8,0x00 -+// 53221 쿥 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0xe8,0x08,0x08,0x00,0x10,0xfe,0x80,0x00,0xf0,0x10,0x30,0x44,0x82,0x00 -+// 53222 쿦 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x1e,0x00,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x10,0xc0,0x00,0x30,0x00,0xb0,0x48,0x40,0x78,0x00 -+// 53223 쿧 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xfc,0x08,0x08,0x00,0x00,0xff,0x40,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 53224 쿨 ; -+,0x00,0x00,0x06,0x00,0x00,0x04,0x00,0x1f,0x00,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0x88,0x00,0x10,0xff,0x00,0x00,0xf0,0x10,0x30,0x00,0x08,0x00 -+// 53225 쿩 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x18,0x00,0x00,0x04,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x12,0xc0,0x40,0x00,0x88,0x88,0x08,0x08,0x00,0x00 -+// 53226 쿪 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1c,0x00,0x00,0x01,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x12,0xc0,0x00,0x40,0x24,0x24,0x24,0x24,0x20,0x00 -+// 53227 쿫 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x1e,0x00,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x10,0xc0,0x40,0x08,0x64,0x3c,0x24,0x24,0x3c,0x00 -+// 53228 쿬 ; -+,0x00,0x00,0x06,0x00,0x0b,0x00,0x00,0x1e,0x00,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x88,0x10,0x10,0xc0,0x00,0x10,0x90,0x10,0x28,0x44,0x02,0x00 -+// 53229 쿭 ; -+,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x1e,0x00,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x88,0x00,0x10,0xc0,0x40,0x00,0x4c,0x00,0x2c,0x00,0x3c,0x00 -+// 53230 쿮 ; -+,0x00,0x00,0x06,0x00,0x0b,0x00,0x00,0x1e,0x00,0x00,0x0d,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x08,0x10,0x10,0xc0,0x00,0x00,0x70,0x08,0x08,0x28,0x1c,0x00 -+// 53231 쿯 ; -+,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x1e,0x00,0x00,0x09,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0x00,0x10,0x10,0xc0,0x80,0x30,0x04,0x10,0x08,0x40,0x38,0x00 -+// 53232 쿰 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x10,0xff,0x80,0x80,0x10,0x10,0x10,0x10,0x00,0x00 -+// 53233 쿱 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x00,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x00,0x08,0x18,0x90,0x10,0x12,0xc0,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 53234 쿲 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x18,0x00,0x01,0x08,0x07,0x00,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x12,0xc0,0x00,0x90,0x90,0x90,0xa8,0xa4,0xc2,0x00 -+// 53235 쿳 ; -+,0x00,0x00,0x06,0x00,0x00,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x08,0x08,0x18,0x00,0x10,0xff,0x40,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 53236 쿴 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1e,0x00,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x10,0xc0,0x00,0x00,0x10,0x10,0x38,0xec,0x44,0x00 -+// 53237 쿵 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1e,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xe8,0x08,0x18,0x00,0x10,0xff,0x40,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 53238 쿶 ; -+,0x00,0x00,0x02,0x00,0x00,0x04,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x08,0x08,0x88,0x00,0x10,0xc2,0x80,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 53239 쿷 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1e,0x00,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x08,0x08,0x88,0x00,0x10,0xc0,0x40,0xc0,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 53240 쿸 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x18,0x00,0x10,0xfe,0x80,0x80,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 53241 쿹 ; -+,0x00,0x00,0x06,0x00,0x0b,0x00,0x00,0x1e,0x00,0x00,0x06,0x04,0x02,0x00,0x03,0x00,0x00,0x00,0x08,0x08,0x90,0x10,0x10,0xc0,0x00,0x00,0x78,0x00,0xf0,0x00,0xf8,0x00 -+// 53242 쿺 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x1f,0x00,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xe8,0x08,0x18,0x00,0x10,0xfe,0x80,0x80,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 53243 쿻 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x18,0x00,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x08,0x08,0x80,0x00,0x12,0xc0,0x00,0xc0,0x1c,0xc0,0x20,0x10,0x20,0x00 -+// 53244 쿼 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x24,0x24,0x24,0x04,0xc4,0x84,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 53245 쿽 ; -+,0x00,0x00,0x00,0x07,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x24,0xa4,0x04,0x84,0x3c,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 53246 쿾 ; -+,0x00,0x00,0x00,0x06,0x00,0x07,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x84,0x34,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 53247 쿿 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x44,0x84,0x3c,0x00,0x88,0x88,0x98,0x96,0x82,0x00 -+// 53248 퀀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x64,0x24,0x64,0x04,0x44,0x04,0x3c,0x04,0x04,0x00,0x00,0xde,0x00 -+// 53249 퀁 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x04,0x84,0x34,0x04,0x06,0x08,0x18,0xa4,0x42,0x00 -+// 53250 퀂 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x44,0x04,0x04,0x38,0x00,0xf8,0x28,0x04,0x28,0x00 -+// 53251 퀃 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x01,0x09,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x64,0x04,0xc4,0x3c,0x04,0x00,0x00,0x00,0x00,0xde,0x00 -+// 53252 퀄 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x44,0x04,0x04,0x00,0xcc,0x04,0x0c,0x00,0xfe,0x00 -+// 53253 퀅 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x00,0x04,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x24,0x84,0x04,0x00,0xa4,0x84,0x84,0x04,0x04,0x00 -+// 53254 퀆 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x01,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x24,0x84,0x3c,0x00,0xa4,0xa4,0xa4,0x24,0xa4,0x00 -+// 53255 퀇 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x64,0x24,0x24,0x64,0x04,0x04,0x00,0x64,0x24,0x24,0x24,0x24,0x00 -+// 53256 퀈 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x01,0x04,0x00,0x0c,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x44,0x04,0x24,0x00,0x98,0x88,0x98,0x24,0x42,0x00 -+// 53257 퀉 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x44,0x04,0x04,0x00,0xac,0xa0,0x2c,0x20,0x1e,0x00 -+// 53258 퀊 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x01,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x64,0x24,0x44,0x44,0x04,0x0c,0x00,0x00,0x08,0x28,0x08,0x7e,0x00 -+// 53259 퀋 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x44,0x44,0x44,0x04,0x2c,0x00,0x00,0x7e,0x18,0x24,0x34,0x00 -+// 53260 퀌 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x04,0x44,0x84,0x24,0x00,0x0c,0x04,0x00,0x0c,0x80,0x00 -+// 53261 퀍 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x1f,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x44,0x84,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 53262 퀎 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x1f,0x01,0x01,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x44,0x04,0x04,0x00,0x88,0x08,0x9c,0x16,0xe2,0x00 -+// 53263 퀏 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x04,0x24,0x24,0x04,0x44,0x84,0x3c,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 53264 퀐 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x00,0x01,0x01,0x02,0x02,0x08,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x44,0x04,0x04,0x00,0x08,0x08,0x94,0x62,0x02,0x00 -+// 53265 퀑 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0xc4,0x3c,0x04,0x10,0x40,0x84,0x84,0x48,0x00 -+// 53266 퀒 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x04,0x84,0x24,0x00,0x0c,0x20,0x60,0x88,0x06,0x00 -+// 53267 퀓 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x04,0x84,0x3c,0x04,0x60,0x04,0x20,0x58,0x04,0x00 -+// 53268 퀔 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x1f,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x04,0x44,0x84,0x34,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 53269 퀕 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x64,0x04,0x04,0x00,0x1c,0x00,0x1c,0x00,0xfc,0x00 -+// 53270 퀖 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x17,0x01,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0x64,0x24,0x44,0x44,0x84,0x3c,0x00,0x0c,0x10,0x80,0x90,0xfe,0x00 -+// 53271 퀗 ; -+,0x00,0x00,0x00,0x04,0x00,0x0f,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0x44,0x04,0x2c,0x74,0x02,0x20,0x08,0x88,0x70,0x00 -+// 53272 퀘 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x0e,0x00,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x14,0x94,0x94,0x94,0x14,0x94,0x14,0x74,0x14,0x14,0x14,0x04,0x00 -+// 53273 퀙 ; -+,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x94,0x14,0x14,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 53274 퀚 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0x84,0x84,0x84,0x84,0x84,0x00 -+// 53275 퀛 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0x08,0x88,0x98,0x94,0x82,0x00 -+// 53276 퀜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x03,0x0a,0x02,0x02,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x94,0x14,0x14,0x34,0x14,0x14,0x04,0x00,0x00,0xde,0x00 -+// 53277 퀝 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x14,0x02,0x18,0x18,0xa4,0x42,0x00 -+// 53278 퀞 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x34,0x00,0xfe,0x38,0x04,0x28,0x00 -+// 53279 퀟 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0x74,0x14,0x04,0x00,0x00,0x00,0xfc,0x00 -+// 53280 퀠 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0x74,0x14,0xe4,0x04,0x8c,0x00,0xfe,0x00 -+// 53281 퀡 ; -+,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x1f,0x02,0x02,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 53282 퀢 ; -+,0x00,0x00,0x00,0x06,0x00,0x0c,0x00,0x0f,0x01,0x00,0x06,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x34,0x94,0x14,0x94,0x94,0x14,0x14,0x10,0xb4,0x84,0x84,0x14,0x10,0x00 -+// 53283 퀣 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0xa4,0xa4,0xa4,0x24,0x24,0x00 -+// 53284 퀤 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 53285 퀥 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x10,0xac,0x20,0x20,0x20,0x3e,0x00 -+// 53286 퀦 ; -+,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x1f,0x02,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0xa6,0x84,0xa4,0x00,0x6e,0x00 -+// 53287 퀧 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1e,0x02,0x02,0x05,0x00,0x06,0x04,0x02,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x14,0x18,0x80,0x18,0x24,0x24,0x1c,0x00 -+// 53288 퀨 ; -+,0x00,0x00,0x00,0x06,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0x00,0x84,0x84,0x84,0x80,0x00 -+// 53289 퀩 ; -+,0x00,0x00,0x00,0x06,0x00,0x0c,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x94,0x14,0x14,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 53290 퀪 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0x88,0x88,0x9c,0x12,0x42,0x00 -+// 53291 퀫 ; -+,0x00,0x00,0x00,0x04,0x00,0x0c,0x00,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 53292 퀬 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0x08,0x08,0x94,0x66,0x42,0x00 -+// 53293 퀭 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x04,0x10,0x48,0x84,0x84,0x78,0x00 -+// 53294 퀮 ; -+,0x00,0x00,0x00,0x06,0x00,0x0c,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x36,0x92,0x12,0x92,0x92,0x12,0x70,0x10,0x04,0x20,0x60,0x88,0x04,0x00 -+// 53295 퀯 ; -+,0x00,0x00,0x00,0x06,0x00,0x0c,0x00,0x0e,0x02,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x94,0x14,0x74,0x00,0x20,0x24,0x20,0xd8,0x06,0x00 -+// 53296 퀰 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0x74,0x14,0xcc,0x04,0x44,0x04,0x04,0x00 -+// 53297 퀱 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x94,0x94,0x94,0x94,0x14,0x74,0x14,0x04,0x00,0x0c,0x00,0xfe,0x00 -+// 53298 퀲 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1e,0x02,0x02,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x34,0x84,0x84,0x84,0x24,0x64,0x04,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 53299 퀳 ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x1f,0x02,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x94,0x94,0x14,0xf4,0x04,0x60,0x24,0x10,0x88,0xd0,0x00 -+// 53300 퀴 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x0f,0x00,0x00,0x1f,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0x44,0x64,0x84,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53301 퀵 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x04,0xc4,0x04,0x00,0x08,0x04,0x04,0x04,0x04,0x00 -+// 53302 퀶 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x01,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x44,0x04,0xc4,0x04,0x00,0x88,0x84,0x84,0x84,0x80,0x00 -+// 53303 퀷 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x44,0x4c,0x84,0x04,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 53304 퀸 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x00,0x1f,0x01,0x01,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0x24,0x44,0x44,0x4c,0x84,0x04,0x04,0x00,0x00,0x00,0xde,0x00 -+// 53305 퀹 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x0c,0x84,0x04,0x00,0x0e,0x08,0x18,0xa4,0x42,0x00 -+// 53306 퀺 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x07,0x01,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x44,0x84,0x04,0x20,0x00,0xda,0x28,0x04,0x2c,0x00 -+// 53307 퀻 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x0d,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x04,0xc4,0x84,0x04,0x00,0x00,0x00,0x00,0xde,0x00 -+// 53308 퀼 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x24,0x04,0xc4,0x04,0x04,0x8c,0x00,0x0c,0x00,0xfe,0x00 -+// 53309 퀽 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x08,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0xc4,0x84,0x04,0x04,0x84,0x84,0x04,0x84,0x00 -+// 53310 퀾 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x24,0x04,0x04,0x84,0x04,0x00,0xa4,0xa4,0xa4,0x24,0x20,0x00 -+// 53311 퀿 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x1f,0x00,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0x84,0x84,0x04,0x44,0x24,0x24,0x24,0x24,0x00 -+// 53312 큀 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x08,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0xc4,0x84,0x04,0x88,0x88,0x98,0x14,0x62,0x00 -+// 53313 큁 ; -+,0x00,0x00,0x00,0x06,0x00,0x0e,0x00,0x1f,0x01,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x0c,0x84,0x04,0x04,0x6c,0x20,0x2c,0x20,0x3e,0x00 -+// 53314 큂 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x1f,0x01,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0x44,0x84,0x04,0x04,0xa8,0x0c,0x20,0x08,0x4e,0x00 -+// 53315 큃 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x03,0x01,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x44,0x84,0x04,0x00,0x00,0x7a,0x04,0x20,0x34,0x00 -+// 53316 큄 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x03,0x09,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x04,0xc4,0x04,0x00,0x00,0x84,0x00,0x00,0x88,0x00 -+// 53317 큅 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x03,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0xc4,0x84,0x04,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 53318 큆 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x07,0x01,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xe4,0x64,0x44,0x4c,0x84,0x04,0x00,0x88,0x88,0x98,0xa4,0xc2,0x00 -+// 53319 큇 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xe4,0x24,0x44,0x4c,0xc4,0x04,0x04,0x20,0x60,0xd0,0x8c,0x02,0x00 -+// 53320 큈 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x1f,0x00,0x00,0x01,0x01,0x03,0x06,0x08,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x4c,0x84,0x04,0x00,0x08,0x08,0x94,0x66,0x42,0x00 -+// 53321 큉 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x04,0xc4,0x04,0x04,0x30,0x48,0x84,0x84,0x48,0x00 -+// 53322 큊 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x03,0x09,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x0c,0xc4,0x04,0x00,0x04,0x20,0x60,0x88,0x04,0x00 -+// 53323 큋 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xe4,0x24,0x04,0x04,0x84,0x84,0x84,0x60,0x06,0x20,0x50,0x84,0x00 -+// 53324 큌 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x07,0x00,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0xc4,0x84,0x00,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 53325 큍 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x09,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x24,0x64,0x04,0xc4,0x04,0x04,0x04,0x00,0x0c,0x00,0xfc,0x00 -+// 53326 큎 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x03,0x09,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x4c,0xc4,0x04,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 53327 큏 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x1f,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x44,0x4c,0x84,0x04,0x40,0x00,0xf0,0x50,0x88,0xd8,0x00 -+// 53328 큐 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x13,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xfc,0x08,0x08,0x88,0x00,0x1a,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 53329 큑 ; -+,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x00,0x10,0x3e,0x10,0x00,0xf8,0x08,0x08,0x08,0x08,0x00 -+// 53330 큒 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1f,0x02,0x02,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x08,0xc8,0x00,0x10,0x3e,0x10,0x10,0xac,0x84,0x04,0x00,0x00,0x00 -+// 53331 큓 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x02,0x02,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xe8,0x08,0x58,0x00,0x10,0x3f,0x10,0x00,0x10,0x10,0x30,0x44,0x80,0x00 -+// 53332 큔 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x11,0x01,0x01,0x0c,0x04,0x04,0x03,0x00,0x00,0x00,0x38,0x08,0x18,0x80,0x10,0x12,0x10,0x10,0x10,0x00,0x00,0x00,0xf8,0x00 -+// 53333 큕 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1e,0x02,0x02,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0xf8,0x08,0x58,0x00,0x10,0x3e,0x10,0x00,0xb0,0x30,0x30,0x4c,0x00,0x00 -+// 53334 큖 ; -+,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x1a,0x02,0x02,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x10,0x30,0x10,0x30,0x00,0xb0,0x48,0x48,0x68,0x00 -+// 53335 큗 ; -+,0x00,0x00,0x07,0x00,0x00,0x06,0x00,0x1f,0x02,0x02,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x08,0x58,0x00,0x10,0x3e,0x10,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 53336 큘 ; -+,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x1f,0x02,0x02,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0xc8,0x00,0x10,0x3e,0x10,0x00,0x10,0x10,0x30,0x00,0x18,0x00 -+// 53337 큙 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1e,0x02,0x02,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0xc0,0x10,0x12,0x30,0x10,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 53338 큚 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1f,0x02,0x02,0x01,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0xc0,0x10,0x10,0x10,0x10,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 53339 큛 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1e,0x02,0x02,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x12,0x30,0x10,0x08,0x44,0x3c,0x04,0x2c,0x20,0x00 -+// 53340 큜 ; -+,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x1f,0x02,0x02,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0x88,0x00,0x10,0x10,0x10,0x10,0x90,0x90,0x28,0x24,0x02,0x00 -+// 53341 큝 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x1f,0x02,0x02,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x10,0x30,0x10,0x00,0x4c,0x40,0x68,0x40,0x3c,0x00 -+// 53342 큞 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1a,0x02,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0x88,0x10,0x12,0x10,0x10,0x00,0x40,0x08,0x28,0x28,0x5c,0x00 -+// 53343 큟 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1e,0x02,0x02,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0xc0,0x10,0x10,0x10,0x10,0x30,0x04,0x10,0x28,0x44,0x38,0x00 -+// 53344 큠 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x3e,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x08,0x58,0x00,0x10,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 53345 큡 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1e,0x02,0x02,0x04,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0x08,0xc0,0x10,0x10,0x10,0x10,0x30,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 53346 큢 ; -+,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x1a,0x02,0x03,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0x88,0x00,0x12,0x10,0x10,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 53347 큣 ; -+,0x00,0x00,0x06,0x00,0x00,0x04,0x00,0x1e,0x02,0x02,0x02,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x08,0x08,0xc8,0x00,0x00,0x1f,0x10,0x10,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 53348 큤 ; -+,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x02,0x02,0x00,0x03,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x12,0x10,0x10,0x30,0x10,0x10,0xa8,0xc4,0x00,0x00 -+// 53349 큥 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x1e,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x08,0x18,0x00,0x10,0x1f,0x10,0x10,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 53350 큦 ; -+,0x00,0x00,0x02,0x00,0x03,0x00,0x00,0x1f,0x02,0x02,0x07,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x00,0x10,0x32,0x10,0x10,0xe0,0xc0,0x20,0x08,0x04,0x00 -+// 53351 큧 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x00,0x1f,0x02,0x03,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x88,0x08,0xc8,0x10,0x10,0x3f,0x10,0xf0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 53352 큨 ; -+,0x00,0x00,0x06,0x00,0x01,0x04,0x00,0x1f,0x02,0x02,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0xc8,0x00,0x10,0x3e,0x10,0x10,0x88,0x08,0x88,0x08,0x08,0x00 -+// 53353 큩 ; -+,0x00,0x00,0x07,0x00,0x00,0x0c,0x00,0x1e,0x02,0x02,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x08,0x58,0x10,0x10,0x3e,0x10,0x00,0x38,0x00,0x30,0x00,0xf8,0x00 -+// 53354 큪 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x1e,0x02,0x02,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x00,0x3f,0x10,0x10,0xf8,0x00,0x20,0x20,0xfc,0x00 -+// 53355 큫 ; -+,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x1e,0x02,0x03,0x02,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0x80,0x10,0x10,0x3e,0x10,0xf0,0x3c,0xc0,0x20,0x00,0xe0,0x00 -+// 53356 크 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x1e,0x00,0x00,0x00 -+// 53357 큭 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x88,0x00,0x1f,0x00,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 53358 큮 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x10,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x10,0x3e,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 53359 큯 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x1c,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x1f,0x00,0x30,0x10,0x10,0x28,0x44,0x80,0x00 -+// 53360 큰 ; -+,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x1c,0x00,0x0c,0x04,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x00,0x1f,0x00,0x00,0x00,0x00,0xb8,0x00,0x00 -+// 53361 큱 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1c,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x88,0x08,0x08,0x08,0x00,0x1f,0x00,0x1c,0x10,0x30,0x30,0x4c,0x84,0x00 -+// 53362 큲 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x18,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0xf8,0x08,0x88,0x08,0x12,0x00,0x00,0x00,0xf6,0x10,0x44,0x44,0x38,0x00 -+// 53363 큳 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x1e,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x00 -+// 53364 클 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x18,0x00,0x07,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x02,0x00,0x00,0x98,0x00,0x18,0x00,0x00,0x00,0x00 -+// 53365 큵 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1c,0x00,0x0d,0x00,0x09,0x04,0x04,0x06,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x06,0x00,0x38,0x08,0x08,0x08,0x08,0x08,0x00 -+// 53366 큶 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1e,0x00,0x09,0x01,0x09,0x08,0x04,0x04,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x06,0x00,0x48,0x44,0x40,0x40,0x08,0x00,0x00 -+// 53367 큷 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1c,0x00,0x0d,0x01,0x01,0x08,0x04,0x06,0x00,0x00,0x00,0xf8,0x08,0x88,0x08,0x12,0x00,0x00,0x48,0x04,0x2c,0x04,0x2c,0x00,0x00 -+// 53368 큸 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1e,0x00,0x09,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0xfc,0x08,0x88,0x08,0x00,0x06,0x00,0x10,0x10,0x90,0x28,0x44,0x00,0x00 -+// 53369 큹 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x00,0x18,0x00,0x0d,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0xfc,0x08,0x88,0x08,0x1a,0x00,0x00,0x5c,0x40,0x28,0x00,0x00,0x18,0x00 -+// 53370 큺 ; -+,0x00,0x00,0x07,0x00,0x03,0x00,0x00,0x18,0x00,0x09,0x01,0x01,0x08,0x08,0x06,0x00,0x00,0x00,0xfc,0x08,0x88,0x08,0x0a,0x00,0x00,0x0c,0x00,0x08,0x28,0x08,0x40,0x00 -+// 53371 큻 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1e,0x00,0x09,0x01,0x09,0x00,0x05,0x04,0x00,0x00,0x00,0xfc,0x08,0x88,0x08,0x00,0x00,0x20,0x00,0x70,0x10,0x44,0x44,0x38,0x00 -+// 53372 큼 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x3c,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x1f,0x00,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 53373 큽 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1e,0x00,0x04,0x02,0x02,0x02,0x03,0x02,0x00,0x00,0x00,0x88,0x08,0x88,0x08,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0xf0,0x00,0x00 -+// 53374 큾 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0xfc,0x08,0x88,0x08,0x00,0x00,0x00,0x98,0x90,0x98,0xa4,0x84,0x00,0x00 -+// 53375 큿 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x00,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x88,0x00,0x12,0x00,0x80,0x80,0xc0,0x10,0x08,0x04,0x00 -+// 53376 킀 ; -+,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1e,0x00,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x1e,0x00,0x10,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 53377 킁 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x00,0x10,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xfc,0x08,0x08,0x08,0x00,0x1f,0x00,0x40,0x20,0x10,0x10,0x10,0xe0,0x00 -+// 53378 킂 ; -+,0x00,0x00,0x07,0x00,0x00,0x0f,0x00,0x10,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x1f,0x00,0x00,0xc0,0xc0,0x20,0x08,0x00,0x00 -+// 53379 킃 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1e,0x00,0x01,0x00,0x04,0x00,0x01,0x04,0x00,0x00,0x00,0xfc,0x08,0x88,0x08,0x00,0x3f,0x00,0xc0,0x00,0x80,0xc0,0x18,0x04,0x00 -+// 53380 킄 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x1c,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x1e,0x00,0x18,0x08,0x08,0x88,0x08,0x08,0x00 -+// 53381 킅 ; -+,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x1e,0x00,0x06,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x00,0x1e,0x00,0x38,0x00,0x30,0x00,0x08,0x00,0x00 -+// 53382 킆 ; -+,0x00,0x00,0x07,0x00,0x00,0x0c,0x00,0x1f,0x00,0x00,0x00,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0xf8,0x08,0x08,0x00,0x00,0xfe,0x00,0x18,0x20,0x10,0x20,0x20,0xfc,0x00 -+// 53383 킇 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x0f,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xfc,0x08,0x88,0x08,0x00,0x1f,0x00,0x00,0xd8,0xc0,0x20,0x00,0xe0,0x00 -+// 53384 킈 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0e,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x34,0x24,0x24,0x24,0x24,0x24,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 53385 킉 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x24,0x24,0x24,0x64,0x04,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 53386 킊 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x64,0x04,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 53387 킋 ; -+,0x00,0x00,0x00,0x04,0x00,0x0f,0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x64,0x04,0x00,0x88,0x88,0x98,0x96,0x82,0x00 -+// 53388 킌 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x0e,0x00,0x01,0x08,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x24,0x04,0xe4,0x04,0x04,0x00,0x00,0x00,0xee,0x00 -+// 53389 킍 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x64,0x04,0x00,0x06,0x08,0x18,0xa4,0x42,0x00 -+// 53390 킎 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x0c,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0xc4,0x04,0x38,0x00,0xfe,0x08,0x24,0x2c,0x00 -+// 53391 킏 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x24,0x24,0x84,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 53392 킐 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x04,0x64,0x04,0x00,0xcc,0x04,0x0c,0x00,0x9e,0x00 -+// 53393 킑 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x0c,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x24,0xe4,0x04,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 53394 킒 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x08,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x24,0xe4,0x04,0x00,0xb4,0xa4,0x24,0x24,0x00,0x00 -+// 53395 킓 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x0e,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xf4,0x24,0x24,0x24,0x64,0x04,0x00,0xa4,0x24,0x24,0x24,0x24,0x00 -+// 53396 킔 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x00,0x01,0x08,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x04,0xe4,0x04,0x10,0x88,0x98,0x98,0x24,0x42,0x00 -+// 53397 킕 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0xe4,0x24,0x24,0x04,0x64,0x04,0x00,0xa0,0xa0,0x20,0x20,0x00,0x00 -+// 53398 킖 ; -+,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x0c,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x64,0x04,0x00,0xa8,0x04,0x20,0x08,0x4e,0x00 -+// 53399 킗 ; -+,0x00,0x00,0x00,0x06,0x00,0x07,0x00,0x00,0x08,0x00,0x05,0x00,0x06,0x04,0x02,0x00,0x00,0x08,0x04,0x24,0x24,0x44,0x04,0xc4,0x04,0x18,0x02,0x18,0x24,0xa4,0x1c,0x00 -+// 53400 킘 ; -+,0x00,0x00,0x00,0x06,0x00,0x01,0x00,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x24,0x24,0x64,0x04,0x64,0x04,0x00,0x00,0x04,0x00,0x08,0x00,0x00 -+// 53401 킙 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x00,0x01,0x08,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0xe4,0x04,0x00,0x04,0x8c,0x84,0x84,0x84,0x00 -+// 53402 킚 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x04,0xc4,0x04,0x00,0x88,0x88,0x9c,0x82,0x40,0x00 -+// 53403 킛 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x0c,0xc4,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 53404 킜 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x00,0x00,0x08,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x0c,0x64,0x24,0x64,0x04,0xe4,0x04,0x10,0x08,0x08,0x94,0x26,0x42,0x00 -+// 53405 킝 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x24,0x24,0x24,0x04,0xc4,0x04,0x10,0x48,0x84,0x84,0x78,0x00 -+// 53406 킞 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x24,0x64,0x04,0x00,0x0c,0x20,0x60,0x88,0x06,0x00 -+// 53407 킟 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x00,0x00,0x0e,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x04,0x64,0x04,0x00,0x00,0x2c,0x20,0xc8,0x06,0x00 -+// 53408 킠 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x00,0x00,0x0e,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x24,0x64,0x04,0x00,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 53409 킡 ; -+,0x00,0x00,0x00,0x06,0x00,0x0f,0x00,0x00,0x0c,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0x24,0x24,0xe4,0x04,0x00,0x0c,0x00,0x0c,0x00,0xfe,0x00 -+// 53410 킢 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x1e,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0x64,0x24,0x44,0x04,0x4c,0x04,0x00,0x1c,0x18,0x90,0x90,0xfe,0x00 -+// 53411 킣 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x24,0x64,0x04,0x64,0x04,0x40,0x00,0x20,0x50,0x88,0x58,0x00 -+// 53412 키 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x44,0x44,0x84,0x84,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53413 킥 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x00,0x00,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 53414 킦 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x01,0x02,0x04,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 53415 킧 ; -+,0x00,0x00,0x00,0x0f,0x00,0x13,0x01,0x02,0x04,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0xc4,0x84,0x04,0x04,0x04,0x18,0x88,0x98,0x94,0xa2,0x80,0x00 -+// 53416 킨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x01,0x02,0x04,0x08,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x44,0x84,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x06,0x00 -+// 53417 킩 ; -+,0x00,0x00,0x00,0x0f,0x00,0x1f,0x01,0x02,0x04,0x08,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0x58,0x18,0x18,0xa4,0x42,0x00 -+// 53418 킪 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x38,0x02,0x18,0x24,0x84,0x38,0x00 -+// 53419 킫 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x02,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 53420 킬 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0x04,0x00,0x80,0x00,0xfe,0x00 -+// 53421 킭 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x44,0x84,0x84,0x04,0x04,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 53422 킮 ; -+,0x00,0x00,0x00,0x07,0x00,0x06,0x01,0x01,0x00,0x08,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0xa4,0xa4,0xa4,0x24,0xa0,0x00 -+// 53423 킯 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x00,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x0c,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 53424 킰 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 53425 킱 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x01,0x02,0x04,0x08,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x04,0xa0,0xa0,0x20,0x20,0x2e,0x00 -+// 53426 킲 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x09,0x02,0x04,0x08,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0x08,0x0c,0x28,0x08,0x7e,0x00 -+// 53427 킳 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x01,0x02,0x04,0x08,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x18,0x82,0x08,0x24,0x20,0x3c,0x00 -+// 53428 킴 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x01,0x01,0x00,0x08,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 53429 킵 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x84,0x04,0x04,0x08,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 53430 킶 ; -+,0x00,0x00,0x00,0x0f,0x00,0x03,0x01,0x02,0x04,0x08,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x88,0x88,0x88,0x94,0x82,0x22,0x00 -+// 53431 킷 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x20,0x20,0x20,0x48,0x84,0x02,0x00 -+// 53432 킸 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x08,0x88,0x88,0xdc,0x72,0x20,0x00 -+// 53433 킹 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x84,0x84,0x04,0x04,0x00,0x70,0x84,0x84,0x84,0x78,0x00 -+// 53434 킺 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x04,0x04,0x00,0xe4,0x20,0x58,0x84,0x02,0x00 -+// 53435 킻 ; -+,0x00,0x00,0x00,0x07,0x00,0x0e,0x00,0x01,0x02,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x04,0x04,0x70,0x00,0xe0,0x60,0xc8,0x02,0x00 -+// 53436 킼 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x84,0x04,0x04,0x00,0xc4,0x04,0xe4,0x04,0x04,0x00 -+// 53437 킽 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x02,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0xe4,0x44,0x84,0x84,0x04,0x04,0x00,0x0c,0x00,0x8c,0x00,0xfe,0x00 -+// 53438 킾 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x01,0x02,0x04,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x00,0xfc,0x10,0x80,0x90,0xfe,0x00 -+// 53439 킿 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x01,0x01,0x00,0x08,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x84,0x04,0x04,0x04,0x70,0x02,0x20,0x10,0x88,0x98,0x00 -+// 53440 타 ; -+,0x00,0x00,0x00,0x00,0x1b,0x08,0x08,0x0b,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x08,0x08,0x88,0x0b,0x08,0xc8,0x08,0x08,0x08,0x08,0x00 -+// 53441 탁 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x18,0x08,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 53442 탂 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x18,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 53443 탃 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x18,0x08,0x00,0x10,0x10,0x18,0x24,0x42,0x00 -+// 53444 탄 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x88,0x08,0x38,0x08,0x08,0x08,0x00,0x00,0xdc,0x00 -+// 53445 탅 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x08,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x0b,0x18,0x88,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 53446 탆 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x18,0x88,0x30,0x00,0xb0,0x48,0xc8,0x78,0x00 -+// 53447 탇 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x0a,0x18,0x88,0x00,0x38,0x00,0x00,0x00,0xbc,0x00 -+// 53448 탈 ; -+,0x00,0x00,0x00,0x11,0x18,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x08,0x88,0x08,0x08,0x0e,0x18,0x88,0x00,0xf0,0x10,0x10,0x00,0xbc,0x00 -+// 53449 탉 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x0e,0x18,0x00,0x00,0x08,0x08,0x08,0x08,0x00,0x00 -+// 53450 탊 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x38,0x08,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 53451 탋 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x02,0x02,0x18,0x08,0x0c,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x0e,0x58,0x00,0x10,0x08,0x78,0x08,0x48,0x40,0x00 -+// 53452 탌 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x08,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x0e,0x18,0x00,0x20,0x10,0x10,0x38,0x4c,0x04,0x00 -+// 53453 탍 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x09,0x01,0x0b,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0b,0x18,0x88,0x00,0x58,0x40,0x58,0x40,0x7c,0x00 -+// 53454 탎 ; -+,0x00,0x00,0x00,0x1b,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x01,0x0e,0x08,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0e,0x18,0x08,0x00,0x50,0x48,0x40,0x10,0xfc,0x00 -+// 53455 탏 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x08,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x0f,0x38,0x80,0x30,0x04,0x10,0x28,0x44,0x28,0x00 -+// 53456 탐 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0b,0x18,0x88,0x00,0x38,0x08,0x00,0x10,0x00,0x00 -+// 53457 탑 ; -+,0x00,0x00,0x00,0x19,0x00,0x0b,0x08,0x00,0x0f,0x00,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x0f,0x10,0x00,0x00,0x10,0x10,0x10,0x00,0xf0,0x00 -+// 53458 탒 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x01,0x08,0x07,0x00,0x05,0x04,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x18,0x00,0x10,0x90,0x90,0xa8,0xa4,0x40,0x00 -+// 53459 탓 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x0b,0x38,0x08,0x00,0x40,0xc0,0xa0,0x08,0x04,0x00 -+// 53460 탔 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x0b,0x18,0x00,0x10,0x10,0x10,0xb8,0xe4,0x44,0x00 -+// 53461 탕 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x0a,0x18,0x08,0x08,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 53462 탖 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0b,0x18,0x08,0x00,0xd8,0x40,0xa0,0x08,0x04,0x00 -+// 53463 탗 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x04,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x18,0x88,0xc0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 53464 탘 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x00,0x00,0x04,0x00,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0f,0x18,0x88,0x00,0x98,0x08,0xd8,0x08,0x00,0x00 -+// 53465 탙 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x06,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0x88,0x08,0x88,0x0b,0x18,0x00,0x00,0x10,0x00,0x78,0x00,0xfc,0x00 -+// 53466 탚 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x06,0x00,0x01,0x01,0x0c,0x00,0x00,0x10,0x08,0x88,0x08,0x08,0x0b,0x18,0x88,0x00,0x18,0x00,0x10,0x00,0x2c,0x00 -+// 53467 탛 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x04,0x00,0x01,0x01,0x00,0x00,0x10,0x18,0x88,0x08,0x88,0x0f,0x18,0x00,0xe0,0x00,0x40,0x00,0x10,0x30,0x00 -+// 53468 태 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x00,0x05,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0x94,0x1c,0x34,0x94,0x14,0x14,0x14,0x04,0x00 -+// 53469 택 ; -+,0x00,0x00,0x00,0x09,0x0c,0x00,0x04,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x14,0x14,0x1c,0x34,0x90,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 53470 탞 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0xa4,0x24,0x24,0x3c,0x24,0x24,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 53471 탟 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x0c,0x08,0x0f,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x3c,0x24,0x24,0x00,0x88,0x88,0x98,0xa4,0x82,0x00 -+// 53472 탠 ; -+,0x00,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0x24,0x24,0x24,0x34,0xa4,0x24,0x04,0x00,0x00,0xde,0x00 -+// 53473 탡 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0xa4,0x24,0x24,0x3c,0x24,0x24,0x00,0x58,0x10,0x18,0xa4,0x42,0x00 -+// 53474 탢 ; -+,0x00,0x00,0x00,0x00,0x0c,0x09,0x08,0x08,0x06,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0xa4,0x24,0x24,0x3c,0x24,0x24,0x10,0xd6,0x18,0x44,0x44,0x38,0x00 -+// 53475 탣 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x84,0x04,0x04,0x1c,0x24,0x04,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 53476 탤 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0xa4,0x20,0x04,0x04,0x04,0x80,0x00,0xfe,0x00 -+// 53477 탥 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x07,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x34,0x04,0x04,0x1c,0x24,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 53478 탦 ; -+,0x00,0x00,0x00,0x00,0x0c,0x0c,0x0c,0x08,0x07,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 53479 탧 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0x04,0x04,0x14,0x24,0x04,0x0c,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 53480 탨 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x24,0xa4,0x24,0x24,0x3c,0x24,0x24,0x00,0x88,0x88,0x18,0x04,0x02,0x00 -+// 53481 탩 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0e,0x00,0x00,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x04,0x20,0x20,0x20,0x20,0x3c,0x00 -+// 53482 탪 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x00,0x88,0x0c,0x20,0x28,0x4e,0x00 -+// 53483 탫 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x38,0x82,0x18,0x24,0x04,0x3c,0x00 -+// 53484 탬 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xb4,0x04,0x04,0x1c,0x24,0x04,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 53485 탭 ; -+,0x00,0x00,0x00,0x00,0x0c,0x09,0x0c,0x08,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0x14,0x14,0x3c,0x64,0x04,0x08,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 53486 탮 ; -+,0x00,0x00,0x00,0x00,0x0c,0x09,0x08,0x08,0x0e,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0x24,0x24,0x3c,0x24,0x24,0x88,0x88,0x88,0x14,0x82,0x00,0x00 -+// 53487 탯 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x64,0xa4,0x24,0x24,0x3c,0x24,0x24,0x64,0x20,0x60,0x50,0x84,0x02,0x00 -+// 53488 탰 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x08,0x88,0x08,0x94,0x62,0x40,0x00 -+// 53489 탱 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xb4,0x14,0x14,0x1c,0x24,0x04,0x04,0x30,0x04,0x84,0x84,0x78,0x00 -+// 53490 탲 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x02,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0xb4,0x14,0x14,0x1c,0x24,0x00,0x00,0x60,0x60,0xd0,0x04,0x00,0x00 -+// 53491 탳 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x24,0x94,0x14,0x14,0x1c,0x24,0x00,0x60,0x00,0x60,0x60,0x88,0x06,0x00 -+// 53492 탴 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x0c,0x08,0x0f,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0xa4,0x24,0x24,0x3c,0x24,0x04,0x00,0xc4,0x04,0xc4,0x04,0x04,0x00 -+// 53493 탵 ; -+,0x00,0x00,0x00,0x00,0x09,0x08,0x0c,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x34,0x04,0x04,0x14,0x24,0x04,0x00,0x0c,0x00,0x1c,0x00,0xfe,0x00 -+// 53494 탶 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xb4,0x14,0x14,0x1c,0x24,0x84,0x00,0x1c,0x00,0x88,0x80,0x1e,0x00 -+// 53495 탷 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x3c,0x24,0x24,0x70,0x06,0x20,0x80,0x88,0x70,0x00 -+// 53496 탸 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x0f,0x88,0x08,0x08,0x4f,0x08,0x08,0x08,0x08,0x00 -+// 53497 탹 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0e,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x88,0x08,0x8e,0x08,0x59,0x08,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 53498 탺 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x90,0x10,0x9e,0x10,0x30,0x18,0x00,0x58,0x08,0x08,0x08,0x00,0x00 -+// 53499 탻 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x88,0x08,0x8f,0x08,0x19,0x08,0x00,0x10,0x10,0x18,0x24,0x42,0x00 -+// 53500 탼 ; -+,0x00,0x00,0x00,0x00,0x18,0x08,0x09,0x08,0x08,0x0f,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x8e,0x08,0x18,0x8a,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 53501 탽 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x08,0x08,0x08,0x0f,0x04,0x00,0x00,0x10,0x08,0x88,0x08,0x8f,0x08,0x18,0x88,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 53502 탾 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x10,0x08,0x88,0x08,0x8f,0x08,0x18,0x08,0x30,0x04,0x30,0x48,0xc8,0x78,0x00 -+// 53503 탿 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x08,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 53504 턀 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x8b,0x00,0x18,0x00,0x10,0x00,0x9c,0x00 -+// 53505 턁 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x01,0x08,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x08,0x8e,0x08,0x38,0x08,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 53506 턂 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x08,0x00,0x48,0x48,0x48,0x48,0x40,0x00 -+// 53507 턃 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x02,0x02,0x08,0x08,0x0e,0x00,0x00,0x10,0x18,0x88,0x08,0x8f,0x08,0x18,0x08,0x10,0x48,0x78,0x48,0x48,0x48,0x00 -+// 53508 턄 ; -+,0x00,0x00,0x00,0x19,0x08,0x0b,0x08,0x08,0x0e,0x01,0x00,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x18,0x88,0x08,0x8e,0x18,0x1a,0x08,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 53509 턅 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x09,0x01,0x08,0x08,0x0e,0x00,0x00,0x00,0x10,0x90,0x10,0x1f,0x10,0x10,0x1e,0x00,0x40,0x40,0x40,0x40,0x38,0x00 -+// 53510 턆 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x0b,0x00,0x0a,0x08,0x0c,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x38,0x0e,0x00,0x58,0x08,0x40,0x10,0xdc,0x00 -+// 53511 턇 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x08,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x88,0x30,0x04,0x10,0x00,0x44,0x38,0x00 -+// 53512 턈 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x88,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 53513 턉 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x02,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x58,0x08,0x10,0x08,0xf8,0x08,0x18,0x10,0x00 -+// 53514 턊 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x10,0x18,0x88,0x08,0x8f,0x08,0x18,0x08,0x10,0x90,0x90,0xa8,0xa4,0x40,0x00 -+// 53515 턋 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x08,0x18,0x08,0x80,0x40,0xc0,0xa0,0x08,0x04,0x00 -+// 53516 턌 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x8e,0x18,0x58,0x08,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 53517 턍 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x88,0x08,0x18,0x8e,0x08,0x60,0x10,0x08,0x10,0xf0,0x00 -+// 53518 턎 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x06,0x00,0x00,0x03,0x04,0x00,0x00,0x10,0x18,0x88,0x08,0x8e,0x08,0x5a,0x08,0x00,0xc0,0xc0,0xb0,0x08,0x00,0x00 -+// 53519 턏 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x06,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0x88,0x08,0x8f,0x08,0x18,0x08,0xc0,0x00,0xc0,0xc0,0x10,0x04,0x00 -+// 53520 턐 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x07,0x00,0x0b,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x0f,0x08,0x18,0x8a,0x00,0x98,0x08,0x98,0x08,0x00,0x00 -+// 53521 턑 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x08,0x00,0x78,0x00,0x78,0x00,0xfc,0x00 -+// 53522 턒 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x0f,0x00,0x06,0x00,0x01,0x00,0x0f,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x08,0x00,0x08,0x10,0x10,0x20,0x00,0x00 -+// 53523 턓 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x08,0x8f,0x08,0x18,0x08,0xe0,0x00,0x40,0xa0,0x10,0xb0,0x00 -+// 53524 턔 ; -+,0x00,0x00,0x00,0x00,0x11,0x08,0x08,0x0f,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0x24,0x3c,0x24,0x24,0x24,0x3c,0x24,0x24,0x24,0x04,0x00 -+// 53525 턕 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0x3c,0x24,0x24,0x34,0x24,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 53526 턖 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xa4,0x3c,0x24,0x24,0x34,0x24,0x00,0xbc,0x84,0x84,0x84,0x84,0x00 -+// 53527 턗 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0f,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x34,0x24,0x10,0x88,0x98,0x90,0xa4,0xc2,0x00 -+// 53528 턘 ; -+,0x00,0x00,0x00,0x00,0x1b,0x08,0x08,0x08,0x08,0x0b,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x3c,0x24,0x04,0x00,0x00,0xde,0x00 -+// 53529 턙 ; -+,0x00,0x00,0x00,0x11,0x08,0x09,0x08,0x08,0x0e,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x64,0x24,0x3c,0x24,0x24,0x24,0x20,0x00,0xf8,0x10,0x28,0x44,0x82,0x00 -+// 53530 턚 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0e,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x24,0x24,0x30,0x0e,0x10,0x40,0x44,0x38,0x00 -+// 53531 턛 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xa4,0x3c,0x24,0x24,0x3c,0x24,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 53532 턜 ; -+,0x00,0x00,0x00,0x00,0x18,0x09,0x08,0x08,0x0e,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x44,0x24,0x3c,0x24,0x24,0x24,0x24,0x00,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 53533 턝 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x3c,0x24,0x24,0x3c,0x24,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 53534 턞 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x07,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x1c,0x14,0x14,0x34,0x00,0x00,0xb4,0xa4,0x24,0x24,0x90,0x00 -+// 53535 턟 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x34,0x1c,0x14,0x14,0x34,0x04,0x0c,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 53536 턠 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x08,0x0e,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x64,0x24,0x3c,0x24,0x24,0x24,0x24,0x90,0x88,0x98,0x10,0x24,0x42,0x00 -+// 53537 턡 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x00,0x07,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x90,0x1c,0x90,0x14,0x34,0x10,0x00,0xa0,0xa0,0x20,0x20,0x3e,0x00 -+// 53538 턢 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0x3c,0x24,0x24,0x34,0x24,0x00,0xa8,0x0c,0x20,0x28,0x0e,0x00 -+// 53539 턣 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0xb4,0x1c,0x04,0x04,0x34,0x04,0x18,0x82,0x08,0x24,0x20,0x3c,0x00 -+// 53540 턤 ; -+,0x00,0x00,0x00,0x01,0x0c,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x90,0x1c,0x10,0x14,0x34,0x00,0x00,0x84,0x84,0x84,0x84,0x80,0x00 -+// 53541 턥 ; -+,0x00,0x00,0x00,0x00,0x0c,0x0c,0x0c,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x1c,0x14,0x14,0x34,0x00,0x0c,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 53542 턦 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0x3c,0x24,0x24,0x34,0x24,0x88,0x88,0x88,0x14,0x82,0x40,0x00 -+// 53543 턧 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0d,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x24,0xa4,0x3c,0x24,0x24,0x3c,0x24,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 53544 턨 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x00,0x24,0xa4,0x3c,0x24,0x24,0x34,0x24,0x08,0x88,0x08,0x94,0x62,0x00,0x00 -+// 53545 턩 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x92,0x1e,0x12,0x12,0x3e,0x90,0x10,0x10,0x44,0x84,0x84,0x48,0x00 -+// 53546 턪 ; -+,0x00,0x00,0x00,0x09,0x04,0x04,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x22,0x92,0x1e,0x12,0x12,0x16,0x90,0x00,0x64,0x20,0x50,0x84,0x02,0x00 -+// 53547 턫 ; -+,0x00,0x00,0x00,0x00,0x0c,0x0d,0x08,0x08,0x07,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x24,0x94,0x1c,0x94,0x14,0x34,0x00,0x60,0x00,0xf8,0x60,0x88,0x06,0x00 -+// 53548 턬 ; -+,0x00,0x00,0x00,0x09,0x08,0x0c,0x0c,0x08,0x07,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0xb4,0x1c,0x04,0x14,0x34,0x00,0x00,0xc4,0x04,0xc4,0x04,0x04,0x00 -+// 53549 턭 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x00,0x07,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x10,0x1c,0x10,0x10,0x3c,0x90,0x00,0x9c,0x00,0xbc,0x00,0xfe,0x00 -+// 53550 턮 ; -+,0x00,0x00,0x00,0x1b,0x08,0x09,0x08,0x08,0x0f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0xa4,0x3c,0x24,0x34,0x34,0x24,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 53551 턯 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xb4,0x1c,0x04,0x14,0x34,0x04,0x70,0x06,0x20,0x00,0x88,0xd8,0x00 -+// 53552 터 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0xbc,0x04,0x04,0x84,0x04,0x04,0x04,0x04,0x00 -+// 53553 턱 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x1c,0x04,0x04,0x84,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53554 턲 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0x84,0x04,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 53555 턳 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x09,0x08,0x08,0x0e,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x3c,0x04,0x84,0x04,0x88,0x88,0x94,0x82,0x82,0x00 -+// 53556 턴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x09,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x04,0x04,0xbc,0x04,0x04,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 53557 턵 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x04,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x14,0x04,0x84,0x04,0x58,0x08,0x14,0x22,0x42,0x00 -+// 53558 턶 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x0f,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x34,0x04,0x84,0x1c,0x00,0x18,0x24,0x24,0x2c,0x00 -+// 53559 턷 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x04,0x84,0x04,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 53560 털 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x14,0x04,0x84,0x04,0x84,0x04,0x0c,0x00,0xce,0x00 -+// 53561 턹 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0d,0x08,0x08,0x0f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x04,0x84,0x04,0x04,0x04,0x04,0x84,0x84,0x84,0x04,0x84,0x00 -+// 53562 턺 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0x04,0x04,0xa4,0xa4,0xa4,0x24,0x2c,0x00 -+// 53563 턻 ; -+,0x00,0x00,0x00,0x08,0x08,0x0c,0x0c,0x08,0x0f,0x00,0x01,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x14,0x04,0x84,0x0c,0x24,0x24,0x24,0x24,0x34,0x00 -+// 53564 턼 ; -+,0x00,0x00,0x00,0x18,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x04,0x84,0x04,0x04,0x04,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 53565 턽 ; -+,0x00,0x00,0x00,0x0c,0x08,0x04,0x04,0x00,0x07,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0xc4,0x04,0x84,0x14,0x04,0x84,0x04,0xa0,0xa0,0xa0,0x20,0x3e,0x00 -+// 53566 턾 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x14,0x04,0x84,0x04,0xa4,0x84,0xa4,0x00,0x6e,0x00 -+// 53567 턿 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0x04,0x1c,0x80,0x08,0x24,0x20,0x24,0x00 -+// 53568 텀 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0d,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0x84,0x00,0x8c,0x84,0x84,0x8c,0x80,0x00 -+// 53569 텁 ; -+,0x00,0x00,0x00,0x0c,0x00,0x05,0x04,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x84,0x04,0x04,0x84,0x0c,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 53570 텂 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x04,0x07,0x04,0x06,0x04,0x00,0x00,0x08,0x04,0x84,0x04,0x84,0x04,0x04,0x04,0x88,0x08,0x88,0x14,0x82,0x02,0x00 -+// 53571 텃 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x04,0x84,0x44,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 53572 텄 ; -+,0x00,0x00,0x00,0x19,0x08,0x0f,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x84,0x04,0x04,0x04,0x18,0x88,0x08,0xd4,0x66,0x42,0x00 -+// 53573 텅 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x14,0x04,0xc4,0x04,0x30,0x80,0x84,0x84,0x78,0x00 -+// 53574 텆 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0c,0x04,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x04,0x84,0x04,0xfc,0x20,0x50,0x84,0x02,0x00 -+// 53575 텇 ; -+,0x00,0x00,0x00,0x08,0x08,0x0d,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xc4,0x04,0x84,0x04,0x44,0x04,0x60,0x06,0x20,0x70,0x8c,0x02,0x00 -+// 53576 텈 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x00,0x04,0x06,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x1c,0x04,0xc4,0x04,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 53577 텉 ; -+,0x00,0x00,0x00,0x18,0x08,0x0d,0x0c,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0x84,0x04,0x04,0x04,0x04,0xbc,0x00,0x9c,0x00,0xfe,0x00 -+// 53578 텊 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x08,0x08,0x09,0x0c,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x3c,0x04,0x84,0x04,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 53579 텋 ; -+,0x00,0x00,0x00,0x19,0x08,0x0d,0x08,0x08,0x0f,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0x84,0x04,0x04,0x04,0x74,0x02,0x20,0x10,0x88,0x98,0x00 -+// 53580 테 ; -+,0x00,0x00,0x00,0x00,0x09,0x04,0x04,0x07,0x04,0x04,0x05,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x92,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x02,0x00 -+// 53581 텍 ; -+,0x00,0x00,0x00,0x0b,0x04,0x04,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x92,0x12,0x12,0x12,0x12,0x12,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 53582 텎 ; -+,0x00,0x00,0x00,0x0b,0x08,0x08,0x0c,0x08,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 53583 텏 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x0c,0x08,0x0f,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x10,0x88,0x88,0x94,0xa6,0x82,0x00 -+// 53584 텐 ; -+,0x00,0x00,0x00,0x00,0x1b,0x08,0x08,0x0c,0x08,0x0d,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0xee,0x00 -+// 53585 텑 ; -+,0x00,0x00,0x00,0x0b,0x08,0x08,0x0c,0x08,0x0f,0x00,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0xfe,0x18,0x18,0x24,0x42,0x00 -+// 53586 텒 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x10,0x38,0x06,0x18,0x24,0xc4,0x38,0x00 -+// 53587 텓 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x0f,0x08,0x0c,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x90,0x10,0x10,0x70,0x10,0x10,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 53588 텔 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x08,0x0f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x24,0x24,0x04,0x04,0x00,0xcc,0x00,0x8c,0x00,0xfe,0x00 -+// 53589 텕 ; -+,0x00,0x00,0x00,0x01,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x06,0x04,0x03,0x00,0x00,0x00,0x24,0x90,0x10,0x10,0x10,0x10,0x10,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 53590 텖 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 53591 텗 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x10,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 53592 텘 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0e,0x08,0x0f,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x10,0x88,0x88,0x18,0x24,0x02,0x00 -+// 53593 텙 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x14,0x14,0x04,0x20,0x20,0x20,0x20,0x3e,0x00 -+// 53594 텚 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x28,0x0c,0x20,0x08,0x4e,0x00 -+// 53595 텛 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x34,0x14,0x04,0x38,0x02,0x10,0x20,0x04,0x2c,0x00 -+// 53596 템 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x0c,0x08,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0x8c,0x84,0x84,0x84,0x88,0x00 -+// 53597 텝 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x0e,0x08,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x34,0x14,0x14,0x08,0x04,0xfc,0x84,0x84,0x84,0x00 -+// 53598 텞 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x04,0x98,0x88,0x88,0x1c,0x86,0x62,0x00 -+// 53599 텟 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x44,0x20,0x60,0xd0,0x8c,0x02,0x00 -+// 53600 텠 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x01,0x01,0x02,0x06,0x08,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x08,0x88,0x08,0x94,0x62,0x00,0x00 -+// 53601 텡 ; -+,0x00,0x00,0x00,0x1b,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 53602 텢 ; -+,0x00,0x00,0x00,0x13,0x08,0x08,0x08,0x08,0x0f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0x04,0x24,0x24,0x04,0x04,0x00,0xfc,0x40,0x90,0x08,0x04,0x00 -+// 53603 텣 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x14,0x14,0xe0,0x00,0x60,0x60,0x98,0x06,0x00 -+// 53604 텤 ; -+,0x00,0x00,0x00,0x13,0x08,0x08,0x0c,0x08,0x0f,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x14,0x04,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 53605 텥 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x34,0x04,0x04,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 53606 텦 ; -+,0x00,0x00,0x00,0x13,0x08,0x08,0x08,0x08,0x0b,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x04,0x04,0x24,0x24,0x04,0x04,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 53607 텧 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x04,0x04,0x60,0x04,0x20,0x90,0x88,0xf0,0x00 -+// 53608 텨 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x00,0x00,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x44,0x04,0x3c,0x04,0x04,0x0c,0x04,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 53609 텩 ; -+,0x00,0x00,0x00,0x1d,0x08,0x08,0x0c,0x08,0x0d,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0x3c,0x84,0x00,0xcc,0x04,0x04,0x04,0x04,0x00 -+// 53610 텪 ; -+,0x00,0x00,0x00,0x1c,0x08,0x08,0x0c,0x08,0x0d,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x3c,0x84,0x04,0x3c,0x84,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 53611 텫 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x09,0x0c,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x04,0x3c,0x84,0x00,0x88,0x88,0x90,0xa4,0xc2,0x00 -+// 53612 텬 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0xde,0x00 -+// 53613 텭 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x09,0x08,0x08,0x0e,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x3c,0x04,0x84,0x3c,0x84,0x00,0x7e,0x08,0x18,0x24,0x42,0x00 -+// 53614 텮 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0b,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x2c,0x84,0x38,0x00,0x90,0x28,0x44,0x2c,0x00 -+// 53615 텯 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x0d,0x08,0x08,0x06,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x3c,0x04,0x04,0x3c,0x84,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 53616 텰 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x3c,0x84,0x04,0x2c,0x84,0x00,0xcc,0x00,0x08,0x00,0xce,0x00 -+// 53617 텱 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x07,0x00,0x06,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x3c,0x84,0x04,0x04,0x84,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 53618 텲 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x07,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x04,0x84,0x00,0xa4,0xa4,0x24,0x24,0xa0,0x00 -+// 53619 텳 ; -+,0x00,0x00,0x00,0x1c,0x08,0x08,0x0c,0x08,0x0f,0x04,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x24,0x84,0x0c,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 53620 텴 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x84,0x3c,0x84,0x04,0x04,0x04,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 53621 텵 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x3c,0x84,0x04,0x04,0x84,0x00,0xa0,0xa0,0x20,0x20,0x1c,0x00 -+// 53622 텶 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x09,0x04,0x05,0x00,0x05,0x04,0x06,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x2c,0x84,0x00,0x4c,0x08,0x28,0x28,0x4e,0x00 -+// 53623 텷 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x0c,0x04,0x04,0x18,0x06,0x18,0x24,0x24,0x3c,0x00 -+// 53624 텸 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0d,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x3c,0x04,0x04,0x3c,0x84,0x00,0x0c,0x84,0x04,0x04,0x80,0x00 -+// 53625 텹 ; -+,0x00,0x00,0x00,0x18,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x3c,0x84,0x04,0x04,0x04,0x08,0x04,0xfc,0x04,0x84,0x84,0x00 -+// 53626 텺 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x0c,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x04,0x04,0x98,0x88,0x88,0x94,0xa2,0x02,0x00 -+// 53627 텻 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x3c,0x84,0x04,0x3c,0x84,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 53628 텼 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x01,0x01,0x03,0x02,0x04,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x04,0x04,0x08,0x88,0x08,0xd4,0x66,0x02,0x00 -+// 53629 텽 ; -+,0x00,0x00,0x00,0x1c,0x08,0x00,0x04,0x00,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x1c,0x04,0x04,0x3c,0x84,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 53630 텾 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0d,0x04,0x02,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x3c,0x84,0x04,0x3c,0x84,0x00,0x6c,0x20,0x50,0x8c,0x00,0x00 -+// 53631 텿 ; -+,0x00,0x00,0x00,0x19,0x08,0x09,0x08,0x08,0x0f,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x04,0x04,0xe0,0x00,0x60,0x60,0x88,0x04,0x00 -+// 53632 톀 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x0c,0x08,0x0d,0x04,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x3c,0x04,0x04,0x3c,0x84,0x00,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 53633 톁 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x08,0x04,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x3c,0x84,0x04,0x3c,0x84,0x00,0x0c,0x00,0x1c,0x00,0x0c,0x00 -+// 53634 톂 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x09,0x04,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x3c,0x84,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 53635 톃 ; -+,0x00,0x00,0x00,0x19,0x08,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x3c,0x84,0x04,0x04,0x04,0x70,0x00,0x20,0x90,0x88,0xf0,0x00 -+// 53636 톄 ; -+,0x00,0x00,0x00,0x00,0x13,0x08,0x08,0x0b,0x08,0x08,0x0b,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x34,0x14,0x14,0x14,0x14,0x14,0x04,0x00 -+// 53637 톅 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x74,0x14,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 53638 톆 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0d,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 53639 톇 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0xf4,0x14,0x10,0x88,0x98,0x94,0xa6,0xc2,0x00 -+// 53640 톈 ; -+,0x00,0x00,0x00,0x00,0x1b,0x08,0x08,0x0c,0x08,0x09,0x04,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x74,0x14,0x14,0x74,0x14,0x14,0x04,0x00,0x00,0x00,0x00 -+// 53641 톉 ; -+,0x00,0x00,0x00,0x11,0x08,0x08,0x0c,0x08,0x0f,0x00,0x08,0x04,0x04,0x05,0x04,0x00,0x00,0x08,0x24,0x14,0x34,0x14,0x14,0xf4,0x14,0x00,0xf8,0x10,0x18,0x24,0x42,0x00 -+// 53642 톊 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0e,0x08,0x0f,0x04,0x0c,0x04,0x04,0x07,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x74,0x14,0x38,0x06,0x10,0x04,0xc4,0x38,0x00 -+// 53643 톋 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x04,0x00,0x05,0x04,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 53644 톌 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0a,0x08,0x0f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x74,0x14,0x04,0x04,0x04,0x88,0x00,0xfe,0x00 -+// 53645 톍 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0e,0x08,0x0d,0x04,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 53646 톎 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0xb4,0xa4,0xa4,0x24,0xa4,0x00 -+// 53647 톏 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x00,0x07,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0x14,0x14,0x14,0x74,0x14,0x04,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 53648 톐 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x74,0x14,0x10,0x88,0x98,0x18,0x24,0x42,0x00 -+// 53649 톑 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0x14,0x14,0x14,0x74,0x14,0x04,0xa0,0x20,0x20,0x20,0x3e,0x00 -+// 53650 톒 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x08,0x0f,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0x08,0x04,0x28,0x08,0x4e,0x00 -+// 53651 톓 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x38,0x02,0x18,0x24,0x24,0x3c,0x00 -+// 53652 톔 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x0c,0x08,0x0d,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 53653 톕 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x06,0x04,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x0c,0x84,0xfc,0x84,0x84,0x84,0x00 -+// 53654 톖 ; -+,0x00,0x00,0x00,0x01,0x0c,0x08,0x0c,0x08,0x0f,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x98,0x88,0x88,0x1c,0x82,0x00,0x00 -+// 53655 톗 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0xf4,0x14,0x64,0x20,0x60,0xd8,0x84,0x02,0x00 -+// 53656 톘 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0e,0x08,0x0f,0x04,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x14,0x14,0x34,0x14,0x74,0x14,0x10,0x08,0x08,0x94,0x62,0x42,0x00 -+// 53657 톙 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x14,0x14,0x14,0x54,0x14,0x14,0x30,0x84,0x84,0x84,0x78,0x00 -+// 53658 톚 ; -+,0x00,0x00,0x00,0x09,0x04,0x04,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x36,0x92,0x12,0x12,0x12,0x70,0x10,0x00,0x60,0x60,0x58,0x04,0x00,0x00 -+// 53659 톛 ; -+,0x00,0x00,0x00,0x01,0x0c,0x00,0x04,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x34,0x14,0x14,0x14,0x14,0x74,0x14,0x60,0x00,0x60,0x60,0x88,0x06,0x00 -+// 53660 톜 ; -+,0x00,0x00,0x00,0x09,0x08,0x08,0x0c,0x08,0x0f,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x74,0x14,0x00,0x84,0x04,0xe4,0x04,0x04,0x00 -+// 53661 톝 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0f,0x08,0x0c,0x04,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x54,0x14,0x74,0x14,0x00,0x1c,0x00,0x0c,0x00,0xfe,0x00 -+// 53662 톞 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0e,0x08,0x0f,0x04,0x07,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x24,0x14,0x34,0x34,0x14,0xf4,0x14,0x00,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 53663 톟 ; -+,0x00,0x00,0x00,0x01,0x08,0x08,0x0e,0x08,0x0f,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x70,0x06,0x20,0x10,0x88,0xd8,0x00 -+// 53664 토 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x3c,0x00,0x00,0x18,0x00,0x00,0xfc,0x40,0x40,0xc7,0x00,0x00,0x00 -+// 53665 톡 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x00,0x00,0x3f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xc0,0x40,0xff,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 53666 톢 ; -+,0x00,0x00,0x0c,0x04,0x06,0x04,0x03,0x00,0x3f,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x40,0xff,0x00,0xac,0x80,0x80,0x00,0x00,0x00 -+// 53667 톣 ; -+,0x00,0x00,0x06,0x04,0x06,0x06,0x03,0x00,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x38,0x00,0x20,0x00,0xf8,0x40,0xff,0x00,0x10,0x10,0x38,0x64,0x82,0x00 -+// 53668 톤 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x1f,0x00,0x04,0x04,0x06,0x01,0x00,0x00,0x00,0x78,0x00,0x38,0x00,0x18,0x40,0x40,0xfe,0x00,0x00,0x00,0x00,0x78,0x00 -+// 53669 톥 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1e,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x38,0x00,0x20,0x00,0xd8,0x40,0xff,0x00,0x10,0x10,0x28,0x44,0x80,0x00 -+// 53670 톦 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x00,0xff,0x00,0x00,0xb0,0x10,0x48,0x48,0x00 -+// 53671 톧 ; -+,0x00,0x00,0x0c,0x04,0x06,0x04,0x03,0x00,0x1e,0x00,0x06,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x00,0xfe,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 53672 톨 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x80,0xff,0x00,0x10,0x10,0x30,0x00,0xf8,0x00 -+// 53673 톩 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x00,0x00,0x1c,0x00,0x04,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x00,0x00,0x88,0x88,0x08,0x08,0x08,0x00 -+// 53674 톪 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0xc0,0x42,0x00,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 53675 톫 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x0d,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x00,0xdf,0x08,0x44,0x3c,0x04,0x2c,0x28,0x00 -+// 53676 톬 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xd8,0x40,0x00,0x00,0x10,0x10,0x28,0x44,0x84,0x00 -+// 53677 톭 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x40,0xff,0x00,0x4c,0x00,0x2c,0x00,0x3c,0x00 -+// 53678 톮 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x40,0x08,0x28,0x00,0xd4,0x00 -+// 53679 톯 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0xd8,0x00,0x02,0x30,0x04,0x10,0x08,0x40,0x28,0x00 -+// 53680 톰 ; -+,0x00,0x00,0x06,0x06,0x02,0x02,0x03,0x00,0x1f,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x40,0xff,0x00,0x18,0x00,0x10,0x10,0x00,0x00 -+// 53681 톱 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x1e,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 53682 톲 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1e,0x01,0x08,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x40,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 53683 톳 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x40,0xdf,0x00,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 53684 톴 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x1c,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xc0,0x40,0x00,0x20,0x10,0x10,0xa8,0xc4,0x00,0x00 -+// 53685 통 ; -+,0x00,0x00,0x0c,0x04,0x06,0x04,0x02,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x01,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0x78,0x00,0xbf,0x00,0x40,0x10,0x10,0x10,0xe0,0x00 -+// 53686 톶 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x40,0xff,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 53687 톷 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1e,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x40,0x00,0xc0,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 53688 톸 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x40,0xff,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 53689 톹 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xd8,0x40,0x06,0x00,0x18,0x00,0x30,0x00,0xf8,0x00 -+// 53690 톺 ; -+,0x00,0x00,0x0c,0x04,0x06,0x04,0x03,0x00,0x3f,0x00,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x40,0xfe,0x00,0xf8,0x20,0x20,0x20,0xe0,0x00 -+// 53691 톻 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1e,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x38,0x00,0x20,0x00,0xf8,0x40,0xdf,0xc0,0x0c,0xc0,0x20,0x00,0x20,0x00 -+// 53692 톼 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x07,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x08,0x08,0xc8,0x0f,0x08,0x08,0x08,0x08,0x08,0x00 -+// 53693 톽 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0d,0x08,0x03,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x08,0x88,0x08,0x08,0xc8,0x08,0x10,0x08,0x08,0x08,0x00,0x00 -+// 53694 톾 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x03,0x03,0x18,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x48,0x18,0x88,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 53695 톿 ; -+,0x00,0x00,0x00,0x0d,0x08,0x0d,0x08,0x03,0x03,0x1c,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x08,0x08,0x08,0x18,0xc8,0x00,0x30,0x10,0x30,0x48,0x04,0x00 -+// 53696 퇀 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x0d,0x02,0x03,0x18,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x48,0x08,0x88,0x08,0xc8,0x18,0x88,0x08,0x00,0x00,0x00,0xbc,0x00 -+// 53697 퇁 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x03,0x03,0x1c,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x48,0x18,0xc8,0x00,0x0c,0x10,0x30,0x48,0x84,0x00 -+// 53698 퇂 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x05,0x00,0x03,0x18,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0xc8,0x08,0xc8,0x30,0x00,0xb0,0x48,0x48,0x78,0x00 -+// 53699 퇃 ; -+,0x00,0x00,0x00,0x18,0x08,0x09,0x08,0x07,0x03,0x1e,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x08,0xc8,0x08,0xce,0x48,0x08,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 53700 퇄 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x04,0x00,0x03,0x1c,0x03,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0xc8,0x08,0xc8,0x08,0x18,0x00,0x18,0x00,0x0c,0x00 -+// 53701 퇅 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x02,0x03,0x1c,0x09,0x01,0x09,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0xc8,0x08,0x88,0x00,0x48,0x08,0x08,0x08,0x00,0x00 -+// 53702 퇆 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x04,0x00,0x01,0x1c,0x09,0x01,0x09,0x00,0x07,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0xc8,0x08,0x88,0x08,0x48,0x48,0x48,0x48,0x40,0x00 -+// 53703 퇇 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0d,0x02,0x03,0x18,0x1a,0x02,0x18,0x08,0x0c,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0xc8,0x08,0x88,0x08,0xc8,0x58,0x48,0x48,0x48,0x00 -+// 53704 퇈 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x02,0x03,0x1c,0x0d,0x01,0x09,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x48,0x08,0xc8,0x08,0x88,0x00,0x10,0x10,0x30,0x48,0x84,0x00 -+// 53705 퇉 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x07,0x00,0x03,0x18,0x09,0x01,0x0d,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0xc8,0x08,0xc8,0x08,0x88,0x08,0x58,0x40,0x48,0x40,0x3c,0x00 -+// 53706 퇊 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0c,0x02,0x03,0x1c,0x0b,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0xc8,0x08,0x88,0x00,0x48,0x08,0x48,0x00,0xd4,0x00 -+// 53707 퇋 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x07,0x00,0x03,0x18,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x48,0x08,0xc8,0x08,0xc9,0x08,0x88,0x38,0x00,0x10,0x28,0x04,0x38,0x00 -+// 53708 퇌 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x03,0x03,0x18,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x08,0xc8,0x08,0x08,0x48,0x18,0x88,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 53709 퇍 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0c,0x0c,0x02,0x03,0x1e,0x02,0x03,0x01,0x00,0x01,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x48,0x08,0xc8,0x08,0x18,0x08,0x18,0x08,0x18,0x00 -+// 53710 퇎 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x03,0x1c,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x08,0x08,0xc8,0x08,0xc9,0x08,0xc8,0x18,0x98,0x90,0x98,0xa4,0x42,0x00 -+// 53711 퇏 ; -+,0x00,0x00,0x00,0x08,0x08,0x09,0x08,0x03,0x02,0x1e,0x00,0x00,0x01,0x03,0x04,0x00,0x00,0x10,0x08,0xc8,0x08,0x08,0x08,0x08,0x48,0x88,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 53712 퇐 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x02,0x03,0x1c,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x08,0x48,0x08,0xc8,0x08,0xc8,0x00,0x10,0x10,0xb8,0xe4,0x04,0x00 -+// 53713 퇑 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x03,0x01,0x1e,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x48,0x08,0x48,0x08,0x60,0x90,0x08,0x08,0xf0,0x00 -+// 53714 퇒 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x03,0x03,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x48,0x18,0xc8,0x00,0x0c,0x40,0xe0,0x10,0x0c,0x00 -+// 53715 퇓 ; -+,0x00,0x00,0x10,0x08,0x0d,0x08,0x07,0x02,0x03,0x18,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x48,0x08,0xc8,0x08,0xc8,0x18,0x88,0x00,0x80,0x08,0x40,0xb0,0x0c,0x00 -+// 53716 퇔 ; -+,0x00,0x00,0x00,0x08,0x08,0x0c,0x08,0x02,0x03,0x18,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x18,0x88,0x08,0x08,0x48,0x18,0x88,0x00,0x10,0x10,0x90,0x00,0x00,0x00 -+// 53717 퇕 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0c,0x02,0x03,0x1c,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0xc8,0x08,0x88,0x00,0x18,0x00,0x18,0x00,0xb8,0x00 -+// 53718 퇖 ; -+,0x00,0x00,0x00,0x0c,0x08,0x0c,0x08,0x03,0x03,0x1c,0x00,0x00,0x01,0x01,0x0f,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x48,0x18,0xc8,0x08,0x18,0x10,0x10,0x20,0xfc,0x00 -+// 53719 퇗 ; -+,0x00,0x00,0x00,0x0c,0x08,0x08,0x0c,0x02,0x03,0x1c,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x08,0x48,0x08,0x48,0x08,0xc8,0xc0,0x00,0x40,0x00,0x10,0xe0,0x00 -+// 53720 퇘 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x0d,0x08,0x07,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0x12,0x92,0x12,0x92,0x16,0x96,0x12,0x12,0x12,0x12,0x12,0x02,0x00 -+// 53721 퇙 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x12,0x12,0x92,0x12,0xd6,0x12,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53722 퇚 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x04,0x03,0x03,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x14,0x14,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 53723 퇛 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x04,0x07,0x01,0x1e,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0x14,0x94,0x14,0x94,0x14,0x00,0x08,0x88,0x88,0x94,0xa2,0x00 -+// 53724 퇜 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x02,0x03,0x18,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x94,0x1c,0xb4,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 53725 퇝 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x07,0x00,0x1f,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x04,0x24,0x94,0x14,0x94,0x14,0xdc,0x34,0x04,0x00,0x58,0x10,0x24,0x46,0x00 -+// 53726 퇞 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x03,0x1e,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x14,0x9c,0x34,0x30,0x00,0xde,0x18,0x04,0x2c,0x00 -+// 53727 퇟 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x01,0x1f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0xdc,0x14,0x10,0x00,0x80,0x00,0x00,0xde,0x00 -+// 53728 퇠 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x07,0x02,0x1f,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x14,0x14,0x94,0x04,0x9c,0x24,0x04,0xfc,0x04,0x0c,0x00,0x86,0x00 -+// 53729 퇡 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x01,0x0e,0x04,0x00,0x06,0x02,0x03,0x00,0x00,0x04,0x36,0xd0,0x10,0x90,0x14,0x14,0x10,0x00,0xb4,0x04,0x84,0x04,0x84,0x00 -+// 53730 퇢 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x07,0x01,0x1e,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x94,0x14,0x94,0x14,0x14,0x34,0x00,0xa4,0xa4,0xa4,0x24,0x20,0x00 -+// 53731 퇣 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x01,0x1e,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x32,0xd2,0x12,0x92,0x12,0x1e,0x12,0x00,0xa4,0xa4,0xa4,0x24,0xbc,0x00 -+// 53732 퇤 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x03,0x01,0x0c,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x90,0x10,0x90,0x14,0x14,0x10,0x10,0x88,0x88,0x98,0x24,0x02,0x00 -+// 53733 퇥 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x01,0x1f,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x10,0x10,0x90,0x10,0xdc,0x10,0x00,0xa4,0xa0,0xa4,0x20,0x1e,0x00 -+// 53734 퇦 ; -+,0x00,0x00,0x00,0x08,0x08,0x04,0x00,0x07,0x01,0x1e,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x24,0x94,0x14,0x94,0x14,0x9c,0x34,0x00,0x86,0x84,0xa4,0x14,0x0e,0x00 -+// 53735 퇧 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x01,0x1e,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x14,0x34,0x10,0x00,0x58,0x24,0x24,0x3c,0x00 -+// 53736 퇨 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x12,0x92,0x12,0xde,0x10,0x10,0x00,0x84,0x84,0x84,0x8c,0x00 -+// 53737 퇩 ; -+,0x00,0x00,0x00,0x00,0x08,0x05,0x00,0x03,0x03,0x1e,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x14,0x94,0x14,0x94,0x34,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 53738 퇪 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x00,0x07,0x02,0x1f,0x00,0x04,0x06,0x04,0x07,0x00,0x00,0x0c,0x24,0x94,0x14,0x94,0x14,0x9c,0x34,0x10,0x88,0x08,0x98,0x16,0xa2,0x00 -+// 53739 퇫 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x01,0x0f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x24,0x94,0x14,0x94,0x14,0x14,0x14,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 53740 퇬 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x01,0x0e,0x01,0x01,0x03,0x02,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0xd4,0x14,0x10,0x08,0x08,0x94,0x66,0x02,0x00 -+// 53741 퇭 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x01,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x26,0x12,0x12,0x92,0x12,0xde,0x12,0x92,0x10,0x48,0x04,0x84,0x4c,0x10 -+// 53742 퇮 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x01,0x1e,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x04,0x34,0x94,0x14,0x94,0x14,0x9c,0x14,0x00,0x04,0x20,0x60,0x90,0x04,0x00 -+// 53743 퇯 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x01,0x1f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x36,0x12,0x12,0xd2,0x12,0xde,0x10,0x10,0x60,0x06,0x20,0x58,0x84,0x00 -+// 53744 퇰 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x01,0x1f,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x24,0x14,0x14,0x94,0x14,0xdc,0x14,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53745 퇱 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x00,0x07,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0xdc,0x34,0x10,0x00,0x00,0x04,0x00,0x0e,0x00 -+// 53746 퇲 ; -+,0x00,0x00,0x00,0x00,0x0c,0x04,0x00,0x07,0x02,0x1f,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x9c,0x34,0x00,0x04,0x10,0x98,0x90,0xde,0x00 -+// 53747 퇳 ; -+,0x00,0x00,0x00,0x08,0x08,0x05,0x00,0x07,0x02,0x1e,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x94,0x14,0x94,0x14,0x94,0x34,0x80,0x00,0xe0,0x10,0x88,0xd0,0x00 -+// 53748 퇴 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x01,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x04,0x64,0x04,0x24,0x04,0x04,0x34,0x04,0x04,0x04,0x04,0x00 -+// 53749 퇵 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x24,0x04,0x24,0x84,0xe4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 53750 퇶 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0x64,0x04,0xc4,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 53751 퇷 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0x64,0x0c,0xc4,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 53752 퇸 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x01,0x01,0x1e,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x64,0x04,0x64,0x04,0x64,0x04,0xc4,0x04,0x04,0x00,0x00,0xde,0x00 -+// 53753 퇹 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x0c,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x64,0x04,0xc4,0x00,0x06,0x10,0x18,0xa4,0x42,0x00 -+// 53754 퇺 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x08,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x04,0x44,0x04,0x04,0x64,0x04,0x84,0x20,0x00,0xda,0x28,0x04,0x38,0x00 -+// 53755 퇻 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x0e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x24,0x84,0x84,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 53756 퇼 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x01,0x01,0x08,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x64,0x04,0x84,0x00,0xcc,0x00,0x0c,0x00,0xfe,0x00 -+// 53757 퇽 ; -+,0x00,0x00,0x00,0x06,0x04,0x06,0x06,0x00,0x01,0x0e,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x24,0x84,0x84,0x00,0x84,0x84,0x84,0x04,0x84,0x00 -+// 53758 퇾 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x01,0x0c,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x24,0x04,0x64,0x04,0xc4,0x00,0xa4,0xa4,0xa4,0x24,0xac,0x00 -+// 53759 퇿 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x01,0x01,0x0c,0x0d,0x00,0x0d,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0x64,0x04,0xc4,0x00,0x64,0x24,0x24,0x24,0x24,0x00 -+// 53760 툀 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x1e,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x64,0x04,0x04,0x24,0x84,0xc4,0x00,0x98,0x88,0x98,0x24,0x42,0x00 -+// 53761 툁 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x01,0x08,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0xc4,0x00,0xac,0xa0,0xac,0x20,0x1e,0x00 -+// 53762 툂 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x0c,0x04,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x64,0x04,0x84,0x04,0x88,0x0c,0x28,0x08,0x7e,0x00 -+// 53763 툃 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x18,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x64,0x04,0x84,0x00,0x80,0x7a,0x04,0x24,0x24,0x00 -+// 53764 툄 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x01,0x01,0x0c,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x24,0x04,0x64,0x04,0xc4,0x00,0x0c,0x04,0x04,0x04,0x80,0x00 -+// 53765 툅 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x64,0x04,0xc4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 53766 툆 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x01,0x01,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0xe4,0x04,0x84,0x00,0x88,0xc8,0x5c,0x92,0x20,0x00 -+// 53767 툇 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x1f,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x24,0x04,0x84,0x44,0x20,0x60,0x50,0x84,0x02,0x00 -+// 53768 툈 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x0c,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x64,0x04,0x84,0x00,0x08,0x08,0x9c,0x76,0x22,0x00 -+// 53769 툉 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0x64,0x04,0xc4,0x04,0x30,0x40,0x84,0x84,0x78,0x00 -+// 53770 툊 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x06,0x01,0x01,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x04,0x24,0x04,0x24,0x04,0xe4,0x00,0x04,0x20,0x70,0x8c,0x02,0x00 -+// 53771 툋 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x01,0x08,0x00,0x01,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0xe4,0x04,0xc4,0x00,0x60,0xec,0x20,0xd8,0x06,0x00 -+// 53772 툌 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x06,0x01,0x01,0x0c,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0x24,0x04,0xe4,0x00,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 53773 툍 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x1e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x64,0x04,0x04,0x24,0x04,0x84,0x00,0x00,0x00,0x0c,0x00,0x9c,0x00 -+// 53774 툎 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x0e,0x03,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x24,0x04,0xe4,0x00,0xfc,0x08,0x88,0x80,0xfe,0x00 -+// 53775 툏 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x01,0x01,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x64,0x04,0xc4,0x60,0x02,0xf0,0x48,0x88,0x70,0x00 -+// 53776 툐 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x04,0x00,0x02,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x7c,0x00,0x00,0x78,0x00,0x08,0x20,0x10,0x10,0x3f,0x00,0x00,0x00 -+// 53777 툑 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x20,0x06,0x00,0xd8,0x08,0x08,0x08,0x00,0x00 -+// 53778 툒 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x20,0x3f,0x00,0x2c,0x04,0x00,0x00,0x00,0x00 -+// 53779 툓 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x20,0x1f,0x20,0x10,0x10,0x28,0x44,0x80,0x00 -+// 53780 툔 ; -+,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x18,0x00,0x18,0x00,0x08,0x20,0x20,0xff,0x00,0x00,0x00,0x00,0x00,0x00 -+// 53781 툕 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xb0,0x20,0x3f,0x00,0xb0,0x10,0x30,0x44,0x00,0x00 -+// 53782 툖 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x20,0x06,0x30,0x00,0x30,0x48,0x48,0x78,0x00 -+// 53783 툗 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x78,0x00,0x38,0x00,0xf8,0x20,0x3f,0x00,0x38,0x00,0x00,0x00,0xb8,0x00 -+// 53784 툘 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xf8,0x20,0x3f,0x00,0x90,0x10,0x10,0x00,0xbc,0x00 -+// 53785 툙 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x00,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0xb8,0x20,0x06,0x00,0x88,0x08,0x08,0x08,0x08,0x00 -+// 53786 툚 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x01,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xb8,0x20,0x0f,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 53787 툛 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0xb8,0x20,0x07,0x08,0x64,0x3c,0x24,0x2c,0x24,0x00 -+// 53788 툜 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x20,0x2f,0x30,0x10,0x10,0x28,0x44,0x80,0x00 -+// 53789 툝 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0xb8,0x20,0x3f,0x00,0x4c,0x40,0x78,0x40,0x3c,0x00 -+// 53790 툞 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x0d,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0xb8,0x20,0x07,0x00,0x58,0x08,0x08,0x20,0x5c,0x00 -+// 53791 툟 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0xf8,0x20,0x3f,0x30,0x04,0x10,0x08,0x40,0x78,0x00 -+// 53792 툠 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x20,0x3f,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 53793 툡 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x20,0x20,0x02,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 53794 툢 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1c,0x01,0x08,0x07,0x00,0x04,0x04,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x20,0x02,0x10,0x90,0x90,0xa8,0x84,0x80,0x00 -+// 53795 툣 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x30,0x20,0x3f,0x80,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 53796 툤 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1c,0x00,0x03,0x03,0x00,0x04,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x20,0x20,0x00,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 53797 툥 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x03,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x20,0x3f,0x40,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 53798 툦 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x02,0x1e,0x00,0x0f,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0x20,0x20,0x3e,0x00,0xf8,0x80,0x20,0x18,0x00,0x00 -+// 53799 툧 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1f,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0xf8,0x20,0x3f,0xc0,0x00,0xc0,0xc0,0x10,0x08,0x00 -+// 53800 툨 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x02,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x00,0x00,0xf0,0x20,0x3f,0x00,0xd8,0x08,0x88,0x08,0x08,0x00 -+// 53801 툩 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1e,0x00,0x06,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x20,0x06,0x00,0x30,0x00,0x30,0x00,0xf8,0x00 -+// 53802 툪 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x02,0x1f,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x20,0x3f,0x00,0x38,0x20,0x20,0x20,0x80,0x00 -+// 53803 툫 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x02,0x1f,0x00,0x0f,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x60,0x00,0x00,0x08,0x20,0x20,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 53804 투 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x38,0x00,0x38,0x00,0x1e,0xc0,0xc0,0x40,0x40,0x00,0x00,0x00 -+// 53805 툭 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x00,0x30,0x00,0xf8,0x00,0xc0,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 53806 툮 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x00,0xc0,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 53807 툯 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x00,0xc0,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 53808 툰 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x78,0x00,0x38,0x00,0x38,0x00,0x02,0x40,0x40,0x40,0x00,0x00,0xb8,0x00 -+// 53809 툱 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x60,0x00,0x30,0x00,0xf8,0x02,0x40,0x00,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 53810 툲 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x10,0x00,0x08,0x00,0x00,0x04,0x04,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x02,0xc0,0x70,0x04,0x30,0x48,0x40,0x78,0x00 -+// 53811 툳 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x70,0x00,0x30,0x00,0xf8,0x00,0xc0,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 53812 툴 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x70,0x00,0x30,0x00,0x00,0x0e,0x00,0xc0,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 53813 툵 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x60,0x00,0x30,0x00,0xf0,0x06,0x40,0xc8,0x88,0x88,0x08,0x08,0x00,0x00 -+// 53814 툶 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x60,0x00,0x30,0x00,0xe0,0x06,0x40,0x40,0x24,0x24,0x24,0x24,0x20,0x00 -+// 53815 툷 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x00,0xc0,0x48,0x64,0x3c,0x24,0x24,0x24,0x00 -+// 53816 툸 ; -+,0x00,0x00,0x06,0x04,0x04,0x04,0x03,0x00,0x10,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x60,0x00,0x30,0x00,0xf8,0x02,0xc0,0x10,0x90,0x10,0x28,0x44,0x84,0x00 -+// 53817 툹 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x02,0x80,0x00,0x60,0x00,0x38,0x00,0x3c,0x00 -+// 53818 툺 ; -+,0x00,0x00,0x0e,0x04,0x04,0x04,0x03,0x00,0x18,0x00,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x78,0x00,0x38,0x00,0xf8,0x00,0xc0,0x00,0x00,0x08,0x28,0x08,0x44,0x00 -+// 53819 툻 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xe0,0x06,0x40,0x70,0x04,0x10,0x08,0x44,0x38,0x00 -+// 53820 툼 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x70,0x00,0x30,0x00,0xf8,0x02,0x40,0x00,0x18,0x10,0x10,0x10,0x00,0x00 -+// 53821 툽 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x00,0x38,0x00,0xf8,0x00,0xc0,0x40,0x08,0xf8,0x08,0x08,0x10,0x00 -+// 53822 툾 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x00,0x01,0x08,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x02,0x40,0x90,0x90,0x90,0x88,0xa4,0xc2,0x00 -+// 53823 툿 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x10,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xf8,0x06,0xc0,0x80,0xc0,0xc0,0x20,0x18,0x00,0x00 -+// 53824 퉀 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x10,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x70,0x00,0x30,0x00,0xf8,0x02,0xc0,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 53825 퉁 ; -+,0x00,0x00,0x06,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x70,0x00,0x30,0x00,0xf8,0x02,0x40,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 53826 퉂 ; -+,0x00,0x00,0x06,0x00,0x02,0x00,0x03,0x00,0x18,0x00,0x06,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x78,0x00,0x38,0x00,0xf8,0x00,0x40,0x40,0xc0,0xc0,0xa0,0x08,0x04,0x00 -+// 53827 퉃 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x10,0x00,0x01,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xf8,0x0f,0x40,0xe0,0x00,0xc0,0xc0,0x10,0x0c,0x00 -+// 53828 퉄 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x10,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x30,0x00,0xf8,0x02,0xc0,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 53829 퉅 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x00,0xc0,0x00,0x78,0x00,0x30,0x00,0xf8,0x00 -+// 53830 퉆 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x18,0x00,0x00,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x00,0xc0,0x00,0xd8,0x00,0x20,0x20,0xfc,0x00 -+// 53831 퉇 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x00,0x38,0x00,0xf8,0x0f,0x40,0xc0,0x0c,0x40,0x00,0x00,0xe0,0x00 -+// 53832 퉈 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x07,0x00,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x64,0x04,0xe4,0x04,0x44,0x84,0x3c,0x04,0x04,0x04,0x00 -+// 53833 퉉 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0xf4,0x04,0xbc,0x80,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 53834 퉊 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x04,0x64,0x04,0x8c,0x84,0x84,0x84,0x84,0x84,0x84,0x00 -+// 53835 퉋 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x04,0x3c,0x00,0x08,0x88,0x98,0x96,0x82,0x00 -+// 53836 퉌 ; -+,0x00,0x00,0x00,0x04,0x04,0x06,0x04,0x03,0x00,0x09,0x01,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x64,0x04,0x64,0x04,0x64,0x84,0x04,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 53837 퉍 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x0f,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0x64,0x04,0xbc,0x84,0x06,0x08,0x18,0xa4,0x42,0x00 -+// 53838 퉎 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x03,0x00,0x0d,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x44,0x3c,0x38,0x00,0xd8,0x28,0x24,0x3c,0x00 -+// 53839 퉏 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x04,0x04,0x34,0x04,0xa4,0x84,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 53840 퉐 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0xe4,0x04,0x9c,0x00,0xfc,0x04,0x0c,0x00,0xce,0x00 -+// 53841 퉑 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x0c,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0x64,0x44,0xbc,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 53842 퉒 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x0e,0x00,0x04,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x04,0x04,0x24,0x04,0x64,0x04,0xbc,0x04,0xa4,0xa4,0xa4,0x24,0x00,0x00 -+// 53843 퉓 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x0e,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0xf4,0x04,0xbc,0x84,0xe4,0x24,0xa4,0x24,0x24,0x00 -+// 53844 퉔 ; -+,0x00,0x00,0x00,0x06,0x06,0x04,0x03,0x00,0x0d,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0xe4,0xc4,0x3c,0x10,0x88,0x98,0x18,0x24,0x42,0x00 -+// 53845 퉕 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0xe4,0x04,0xbc,0x04,0xec,0x20,0x2c,0x20,0x1e,0x00 -+// 53846 퉖 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x0d,0x00,0x05,0x00,0x05,0x04,0x06,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0xe4,0x04,0x3c,0x04,0x88,0x04,0x28,0x08,0x4e,0x00 -+// 53847 퉗 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0xe4,0x04,0x3c,0x00,0x80,0x78,0x04,0x24,0x1c,0x00 -+// 53848 퉘 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0xe4,0x04,0x8c,0x04,0x00,0x04,0x00,0x00,0x00,0x00 -+// 53849 퉙 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x03,0x00,0x0c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0xe4,0x04,0xbc,0x04,0x04,0x84,0x84,0x84,0x84,0x00 -+// 53850 퉚 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0xe4,0x04,0x0c,0x04,0x88,0x88,0x98,0x96,0xa2,0x00 -+// 53851 퉛 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x44,0x64,0x04,0xe4,0x44,0x0c,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 53852 퉜 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x0d,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0xe4,0x04,0x3c,0x10,0x08,0x08,0x94,0x62,0x40,0x00 -+// 53853 퉝 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0xe4,0x04,0x04,0x34,0x30,0x48,0x84,0x84,0x78,0x00 -+// 53854 퉞 ; -+,0x00,0x00,0x00,0x06,0x06,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x04,0xbc,0x00,0x04,0x20,0x60,0x88,0x04,0x00 -+// 53855 퉟 ; -+,0x00,0x00,0x00,0x06,0x06,0x04,0x03,0x00,0x0d,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0x3c,0x00,0x60,0x24,0x20,0xd8,0x06,0x00 -+// 53856 퉠 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x1f,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0x64,0x04,0xbc,0x04,0x8c,0x04,0xe4,0x04,0x00,0x00 -+// 53857 퉡 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x1f,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0xe4,0x04,0x3c,0x00,0x0c,0x00,0x1c,0x00,0xfc,0x00 -+// 53858 퉢 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x1f,0x01,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0x44,0x44,0x04,0xe4,0x04,0x3c,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 53859 퉣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1d,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0xc4,0x1c,0x70,0x00,0xa0,0x40,0x88,0x58,0x00 -+// 53860 퉤 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x05,0x00,0x1f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x94,0x14,0x14,0x74,0x14,0x14,0x14,0x04,0x00 -+// 53861 퉥 ; -+,0x00,0x00,0x00,0x00,0x08,0x0d,0x04,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x94,0xf4,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 53862 퉦 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x94,0x14,0x74,0x14,0x84,0x84,0x84,0x84,0x84,0x00 -+// 53863 퉧 ; -+,0x00,0x00,0x00,0x00,0x08,0x0d,0x04,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x14,0xf4,0x14,0x08,0x88,0x98,0xa4,0xc2,0x00 -+// 53864 퉨 ; -+,0x00,0x00,0x00,0x00,0x0c,0x0c,0x08,0x07,0x00,0x1e,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0x14,0x94,0x14,0x14,0x74,0x14,0x00,0x00,0x0e,0x00 -+// 53865 퉩 ; -+,0x00,0x00,0x00,0x01,0x08,0x04,0x05,0x00,0x1e,0x02,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x94,0x14,0x14,0x04,0x14,0x10,0x18,0x24,0x02,0x00 -+// 53866 퉪 ; -+,0x00,0x00,0x00,0x00,0x08,0x0d,0x00,0x00,0x1e,0x02,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x94,0x94,0xf4,0x34,0x00,0x9e,0x18,0x44,0x28,0x00 -+// 53867 퉫 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x00,0x1f,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x14,0xb4,0x14,0x04,0x00,0x00,0x00,0xde,0x00 -+// 53868 퉬 ; -+,0x00,0x00,0x00,0x00,0x08,0x09,0x08,0x00,0x1e,0x02,0x03,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0xa4,0x24,0x24,0xa4,0xa4,0xe4,0x24,0xec,0x04,0x0c,0x00,0x86,0x00 -+// 53869 퉭 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x00,0x1f,0x02,0x02,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x94,0xf4,0x14,0xa4,0x84,0x84,0x04,0x84,0x00 -+// 53870 퉮 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x04,0x00,0x1e,0x00,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x94,0x94,0x74,0x14,0xb4,0xa4,0xa4,0x04,0x90,0x00 -+// 53871 퉯 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x00,0x1f,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x94,0xf4,0x14,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 53872 퉰 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x00,0x1e,0x02,0x06,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x94,0xf4,0x14,0x88,0x90,0x18,0x24,0x42,0x00 -+// 53873 퉱 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x1e,0x02,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x94,0x14,0xf4,0x04,0xec,0x20,0x2c,0x20,0x1c,0x00 -+// 53874 퉲 ; -+,0x00,0x00,0x00,0x00,0x08,0x0d,0x04,0x00,0x1e,0x02,0x05,0x00,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x94,0xf4,0x04,0xac,0x04,0x20,0x08,0x4e,0x00 -+// 53875 퉳 ; -+,0x00,0x00,0x00,0x09,0x08,0x0c,0x0d,0x00,0x1e,0x02,0x05,0x01,0x0d,0x04,0x06,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x14,0xf4,0x30,0x00,0x58,0x20,0x24,0x3c,0x00 -+// 53876 퉴 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x04,0x00,0x1e,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x14,0x74,0x04,0x04,0x84,0x84,0x84,0x80,0x00 -+// 53877 퉵 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x00,0x1e,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x94,0xf4,0x14,0x04,0x84,0x84,0x84,0x84,0x00 -+// 53878 퉶 ; -+,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x00,0x1e,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x94,0x14,0xf4,0x14,0x88,0x88,0x9c,0x92,0x00,0x00 -+// 53879 퉷 ; -+,0x00,0x00,0x00,0x00,0x08,0x0d,0x04,0x00,0x1e,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x94,0x34,0x74,0x24,0x60,0xd0,0x84,0x02,0x00 -+// 53880 퉸 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x04,0x00,0x1e,0x02,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x94,0xf4,0x14,0x08,0x18,0x98,0x64,0x42,0x00 -+// 53881 퉹 ; -+,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x94,0x14,0x14,0x94,0x14,0x74,0x14,0x30,0x44,0x84,0x84,0x78,0x00 -+// 53882 퉺 ; -+,0x00,0x00,0x00,0x00,0x04,0x05,0x04,0x00,0x1e,0x00,0x02,0x00,0x00,0x00,0x03,0x00,0x00,0x04,0x34,0x94,0x14,0x14,0x94,0x14,0x14,0x14,0x0c,0x20,0x60,0x88,0x04,0x00 -+// 53883 퉻 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x04,0x01,0x0a,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x34,0x94,0x14,0x14,0x94,0x14,0x74,0x10,0x60,0x26,0x20,0xd8,0x06,0x00 -+// 53884 퉼 ; -+,0x00,0x00,0x00,0x00,0x08,0x05,0x04,0x00,0x1e,0x02,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x94,0x94,0xf4,0x04,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 53885 퉽 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x04,0x00,0x1f,0x02,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x14,0x94,0xb4,0x14,0x04,0x00,0x0c,0x00,0xfc,0x00 -+// 53886 퉾 ; -+,0x00,0x00,0x00,0x00,0x08,0x0d,0x05,0x00,0x1e,0x02,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x14,0xf4,0x04,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 53887 퉿 ; -+,0x00,0x00,0x00,0x00,0x0c,0x05,0x00,0x01,0x1e,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x94,0x14,0x94,0xf4,0x14,0x00,0x20,0x10,0x88,0xd0,0x00 -+// 53888 튀 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x04,0xc4,0x04,0xe4,0x04,0xc4,0x84,0x84,0x84,0x84,0x04,0x00 -+// 53889 튁 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x04,0x84,0x00,0x00,0x04,0x04,0x04,0x00,0x00 -+// 53890 튂 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x24,0x84,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 53891 튃 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x0c,0x84,0x00,0x08,0x88,0x98,0x84,0x82,0x00 -+// 53892 튄 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x02,0x00,0x1f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x64,0x04,0x64,0x04,0xe4,0x3c,0x84,0x04,0x04,0x00,0x00,0xde,0x00 -+// 53893 튅 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0xe4,0x0c,0x84,0x00,0x06,0x10,0x18,0xa4,0x42,0x00 -+// 53894 튆 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x1f,0x01,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0x04,0x64,0x04,0xe4,0x0c,0x04,0x38,0x00,0xde,0x18,0x44,0x38,0x00 -+// 53895 튇 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x64,0x64,0x04,0xe4,0x04,0x84,0x00,0x0c,0x00,0x00,0x00,0xfc,0x00 -+// 53896 튈 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x0c,0x04,0x00,0xcc,0x00,0x08,0x00,0xfe,0x00 -+// 53897 튉 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x0f,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0x84,0x00,0xbc,0x84,0x84,0x04,0x04,0x00 -+// 53898 튊 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x1f,0x00,0x04,0x00,0x07,0x04,0x03,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0x84,0x00,0xa4,0xa4,0xa4,0x24,0x00,0x00 -+// 53899 튋 ; -+,0x00,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x0f,0x00,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0x84,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 53900 튌 ; -+,0x00,0x00,0x00,0x06,0x02,0x00,0x03,0x00,0x0f,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0x84,0x10,0x88,0x98,0x98,0x24,0x42,0x00 -+// 53901 튍 ; -+,0x00,0x00,0x00,0x06,0x06,0x04,0x03,0x00,0x1f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x0c,0x84,0x00,0xec,0x20,0xac,0x20,0x3e,0x00 -+// 53902 튎 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x1f,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x0c,0x04,0x44,0x04,0xe4,0x0c,0x04,0x00,0x20,0x08,0x28,0x28,0x7e,0x00 -+// 53903 튏 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x6c,0x04,0x64,0x04,0xe4,0x0c,0x04,0x18,0x80,0x18,0x24,0x24,0x3c,0x00 -+// 53904 튐 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x1f,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x24,0x04,0xe4,0x04,0x84,0x00,0x04,0x04,0x04,0x04,0x80,0x00 -+// 53905 튑 ; -+,0x00,0x00,0x00,0x04,0x06,0x04,0x03,0x00,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x64,0x04,0xe4,0x04,0x84,0x00,0x04,0x84,0x84,0x84,0xfc,0x00 -+// 53906 튒 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x0c,0x04,0x44,0x04,0xe4,0x0c,0x04,0x00,0x88,0x88,0x94,0xa2,0x42,0x00 -+// 53907 튓 ; -+,0x00,0x00,0x00,0x06,0x02,0x00,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x0c,0x84,0x04,0x20,0x20,0x50,0x84,0x02,0x00 -+// 53908 튔 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x03,0x00,0x1f,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0x04,0x00,0x08,0x08,0x94,0x42,0x02,0x00 -+// 53909 튕 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x24,0x04,0xe4,0x04,0x84,0x04,0x30,0x40,0x84,0x84,0x78,0x00 -+// 53910 튖 ; -+,0x00,0x00,0x00,0x06,0x06,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x0c,0x84,0x00,0x04,0x20,0x60,0x88,0x04,0x00 -+// 53911 튗 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x0c,0x00,0x00,0x01,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x44,0x84,0x80,0x40,0x6c,0x20,0xd8,0x04,0x00 -+// 53912 튘 ; -+,0x00,0x00,0x00,0x06,0x06,0x04,0x03,0x00,0x1f,0x00,0x01,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x04,0x84,0x04,0x8c,0x04,0x04,0x04,0x04,0x00 -+// 53913 튙 ; -+,0x00,0x00,0x00,0x06,0x02,0x00,0x03,0x00,0x1f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0xe4,0x04,0x84,0x00,0x0c,0x00,0x0c,0x00,0xfe,0x00 -+// 53914 튚 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x1f,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x0c,0x04,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 53915 튛 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x44,0x04,0xe4,0x0c,0x84,0x84,0x00,0x20,0x10,0x88,0x98,0x00 -+// 53916 튜 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x06,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf8,0x00,0x3e,0x10,0x10,0x10,0x10,0x10,0x00,0x00 -+// 53917 튝 ; -+,0x00,0x00,0x06,0x00,0x02,0x00,0x03,0x00,0x12,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x30,0x00,0xf8,0x02,0x10,0x10,0x18,0x08,0x08,0x08,0x08,0x00 -+// 53918 튞 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x12,0x02,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x02,0x10,0x10,0x7c,0x04,0x84,0x04,0x00,0x00 -+// 53919 튟 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x02,0x02,0x0b,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xf8,0x1f,0x10,0x00,0x10,0x10,0x30,0x44,0x80,0x00 -+// 53920 튠 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x07,0x00,0x1c,0x01,0x00,0x06,0x04,0x04,0x01,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x00,0x3e,0x10,0x10,0x10,0x00,0x00,0xf8,0x00 -+// 53921 튡 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xf8,0x06,0x10,0x00,0xf0,0x30,0x30,0x4c,0x84,0x00 -+// 53922 튢 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x1e,0x02,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xc0,0x1e,0x10,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 53923 튣 ; -+,0x00,0x00,0x04,0x04,0x06,0x04,0x03,0x00,0x12,0x02,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x02,0x10,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 53924 튤 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x12,0x02,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xe0,0x02,0x20,0x20,0x10,0x10,0x30,0x00,0xbc,0x00 -+// 53925 튥 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x12,0x02,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x02,0x20,0x20,0x88,0x08,0x08,0x08,0x08,0x00 -+// 53926 튦 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x13,0x01,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf8,0x02,0x20,0x20,0x24,0x24,0x24,0x24,0x20,0x00 -+// 53927 튧 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x02,0x03,0x01,0x09,0x04,0x04,0x06,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xc0,0x0e,0x20,0x68,0x04,0x2c,0x04,0x28,0x00,0x00 -+// 53928 튨 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x02,0x00,0x01,0x00,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xf8,0x1f,0x10,0x10,0x10,0x10,0x28,0x44,0x00,0x00 -+// 53929 튩 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x00,0x09,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x20,0x00,0x60,0x00,0x28,0x00,0x1c,0x00 -+// 53930 튪 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x02,0x02,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xc0,0x06,0x20,0x20,0x00,0x48,0x28,0x00,0x40,0x00 -+// 53931 튫 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x02,0x02,0x09,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x10,0x30,0x04,0x10,0x08,0x40,0x38,0x00 -+// 53932 튬 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x1c,0x02,0x02,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf0,0x3e,0x10,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 53933 튭 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x02,0x02,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf8,0x1e,0x10,0x10,0x10,0xf0,0x10,0x10,0x00,0x00 -+// 53934 튮 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x1c,0x02,0x01,0x08,0x07,0x00,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x10,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 53935 튯 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x12,0x02,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xf8,0x06,0x10,0x90,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 53936 튰 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x10,0x02,0x02,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf0,0x1f,0x10,0x10,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 53937 튱 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x1e,0x02,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf8,0x00,0x30,0x10,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 53938 튲 ; -+,0x00,0x00,0x06,0x00,0x02,0x00,0x03,0x10,0x02,0x02,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x18,0x00,0x30,0x00,0xf8,0x1f,0x10,0x10,0xc0,0xc0,0xa0,0x18,0x04,0x00 -+// 53939 튳 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x02,0x03,0x00,0x06,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0xf0,0x0f,0x10,0x30,0x00,0xc0,0xc0,0x30,0x0c,0x00 -+// 53940 튴 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x02,0x02,0x06,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf8,0x0e,0x10,0x00,0x18,0x08,0xc8,0x08,0x08,0x00 -+// 53941 튵 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1a,0x02,0x06,0x04,0x02,0x00,0x03,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x02,0x20,0x20,0x30,0x00,0x30,0x00,0xf8,0x00 -+// 53942 튶 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x12,0x02,0x06,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0xf8,0x06,0x10,0x00,0x18,0x20,0x20,0x20,0xfc,0x00 -+// 53943 튷 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x1c,0x02,0x02,0x0c,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0x00,0x1e,0x10,0xc0,0x0c,0xc0,0x20,0x20,0xe0,0x00 -+// 53944 트 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x06,0x00,0x00,0x00 -+// 53945 특 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1c,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x00,0x1e,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 53946 튺 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1c,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 53947 튻 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x1c,0x00,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xe0,0x00,0x06,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 53948 튼 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x04,0x00,0x00,0x1c,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x38,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 53949 튽 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1c,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x00,0x1e,0x00,0xf0,0x10,0x30,0x4c,0x82,0x00 -+// 53950 튾 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x18,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x30,0x00,0x30,0x48,0x48,0x78,0x00 -+// 53951 튿 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x3e,0x00,0x04,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x00,0x1e,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 53952 틀 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x06,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x00,0x00,0x00,0x10,0x10,0x30,0x00,0xfc,0x00 -+// 53953 틁 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x06,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 53954 틂 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x18,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x24,0x24,0x20,0x20,0x20,0x00 -+// 53955 틃 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x08,0x44,0x3c,0x04,0x24,0x24,0x00 -+// 53956 틄 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x1c,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x30,0x10,0x10,0x28,0x44,0x80,0x00 -+// 53957 틅 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x03,0x00,0x1c,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xf8,0x02,0x00,0x00,0x60,0x00,0x20,0x20,0x00,0x00 -+// 53958 틆 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xf8,0x00,0x86,0x00,0x58,0x08,0x28,0x00,0x5c,0x00 -+// 53959 틇 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x00,0x10,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x06,0x00,0x30,0x04,0x10,0x48,0x40,0x38,0x00 -+// 53960 틈 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x03,0x00,0x1e,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 53961 틉 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x00,0x00,0x18,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x10,0x18,0xf8,0x08,0x10,0x00,0x00 -+// 53962 틊 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x18,0x01,0x08,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x02,0x00,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 53963 틋 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x00,0x00,0x18,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x02,0x00,0x80,0x40,0xc0,0x20,0x18,0x04,0x00 -+// 53964 틌 ; -+,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x18,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 53965 틍 ; -+,0x00,0x00,0x0e,0x04,0x06,0x04,0x03,0x00,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x00,0x00,0x00,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 53966 틎 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x00,0x00,0x18,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0xc0,0xc0,0xa0,0x08,0x04,0x00 -+// 53967 틏 ; -+,0x00,0x00,0x06,0x04,0x06,0x04,0x00,0x00,0x18,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0xe0,0x00,0xe0,0xc0,0x10,0x04,0x00 -+// 53968 틐 ; -+,0x00,0x00,0x0c,0x04,0x06,0x04,0x03,0x00,0x1e,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x30,0x00,0xf8,0x00,0x00,0x00,0x98,0x08,0x88,0x08,0x08,0x00 -+// 53969 틑 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1c,0x00,0x06,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x30,0x00,0x00,0x00,0xf8,0x00,0x06,0x00,0x38,0x00,0x30,0x00,0xf8,0x00 -+// 53970 틒 ; -+,0x00,0x00,0x0c,0x04,0x06,0x04,0x03,0x00,0x1c,0x00,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0x38,0x00,0x38,0x00,0xf8,0x02,0x00,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 53971 틓 ; -+,0x00,0x00,0x0c,0x04,0x04,0x04,0x03,0x00,0x1c,0x01,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x00,0x00,0xc0,0x9c,0xc0,0x20,0x20,0xe0,0x00 -+// 53972 틔 ; -+,0x00,0x00,0x00,0x0d,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x64,0x04,0x04,0xe4,0x04,0x14,0x84,0x04,0x04,0x04,0x00 -+// 53973 틕 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x64,0x04,0xc4,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 53974 틖 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0x64,0x04,0xc4,0x00,0xac,0x84,0x84,0x84,0x80,0x00 -+// 53975 틗 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0xe4,0x0c,0x84,0x00,0x88,0x88,0x94,0xa6,0x82,0x00 -+// 53976 틘 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x1e,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x64,0x04,0x64,0x04,0x64,0x04,0x44,0x04,0x04,0x00,0x00,0xde,0x00 -+// 53977 틙 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x03,0x00,0x1f,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0xc4,0x00,0x7e,0x08,0x18,0xa6,0x42,0x00 -+// 53978 틚 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x00,0x04,0x04,0x06,0x02,0x00,0x00,0x08,0x04,0x04,0x44,0x04,0x64,0x0c,0xc4,0x38,0x00,0xd8,0x28,0x04,0x3c,0x00 -+// 53979 틛 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x24,0x04,0x24,0x04,0x44,0x04,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 53980 틜 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x1f,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0xe4,0x0c,0x84,0x04,0x8c,0x00,0x08,0x00,0xce,0x00 -+// 53981 틝 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x04,0x04,0x24,0x04,0xc4,0x04,0xac,0x84,0x84,0x04,0x84,0x00 -+// 53982 틞 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x03,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x24,0x04,0xe4,0x04,0xc4,0x04,0xa4,0xa4,0xa4,0x24,0x20,0x00 -+// 53983 틟 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x03,0x00,0x05,0x00,0x05,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0xe4,0x04,0xc4,0x04,0xe4,0x2c,0x24,0x24,0x24,0x00 -+// 53984 틠 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x03,0x00,0x04,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0x44,0x04,0x04,0xe4,0x04,0xc4,0x04,0x88,0x88,0x18,0x24,0x42,0x00 -+// 53985 틡 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x08,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x44,0x04,0xe4,0x0c,0xc4,0x04,0xec,0x20,0x2c,0x20,0x3c,0x00 -+// 53986 틢 ; -+,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x00,0x1f,0x08,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0xe4,0x0c,0x84,0x04,0x08,0x0c,0x28,0x08,0x4e,0x00 -+// 53987 틣 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x05,0x00,0x06,0x04,0x02,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x64,0x0c,0x84,0x08,0x00,0x78,0x04,0x24,0x3c,0x00 -+// 53988 틤 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x64,0x04,0x64,0x04,0xc4,0x04,0x00,0x04,0x04,0x04,0x80,0x00 -+// 53989 틥 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0xe4,0x04,0xc4,0x04,0x04,0xfc,0x04,0x84,0x04,0x00 -+// 53990 틦 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x08,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x64,0x04,0xc4,0x04,0x88,0x88,0x9c,0x82,0x00,0x00 -+// 53991 틧 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0x64,0x04,0xc4,0x00,0x20,0x60,0x50,0x84,0x02,0x00 -+// 53992 틨 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x03,0x08,0x01,0x01,0x02,0x06,0x08,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x64,0x04,0xc4,0x04,0x08,0x08,0x94,0x66,0x02,0x00 -+// 53993 틩 ; -+,0x00,0x00,0x00,0x06,0x04,0x04,0x02,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x24,0x04,0x64,0x04,0xe4,0x04,0x30,0x44,0x84,0x04,0x78,0x00 -+// 53994 틪 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0x64,0x04,0xc4,0x00,0x04,0x20,0x60,0x88,0x06,0x00 -+// 53995 틫 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x04,0x64,0x04,0xe4,0x04,0xc4,0x00,0x60,0x26,0x20,0x58,0x06,0x00 -+// 53996 틬 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x07,0x00,0x1f,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x04,0x64,0x04,0xe4,0x04,0x84,0x00,0x0c,0x04,0xe4,0x04,0x04,0x00 -+// 53997 틭 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x64,0x04,0xc4,0x04,0x0c,0x00,0x0c,0x00,0xfc,0x00 -+// 53998 틮 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x01,0x08,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x04,0x44,0x04,0x64,0x0c,0xc4,0x00,0x0c,0x10,0x90,0x90,0xd6,0x00 -+// 53999 틯 ; -+,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x44,0x04,0xe4,0x0c,0xc4,0x70,0x02,0x20,0x08,0x88,0x70,0x00 -+// 54000 티 ; -+,0x00,0x00,0x00,0x00,0x0c,0x08,0x08,0x0c,0x08,0x08,0x0c,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x04,0x04,0x04,0xc4,0x04,0x0c,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 54001 틱 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x44,0x04,0x0c,0xc4,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 54002 틲 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0f,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 54003 틳 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x09,0x08,0x08,0x0e,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x84,0x0c,0xc4,0x00,0x88,0x88,0x90,0xa4,0xc2,0x00 -+// 54004 틴 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x09,0x08,0x08,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x84,0x0c,0x64,0x04,0x04,0x00,0x00,0x00,0xfc,0x00 -+// 54005 틵 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0d,0x08,0x0d,0x04,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x00,0x78,0x10,0x18,0x24,0x02,0x00 -+// 54006 틶 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x09,0x04,0x0c,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x38,0x00,0x10,0x20,0xc4,0x38,0x00 -+// 54007 틷 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x0d,0x08,0x0d,0x04,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x00,0x1c,0x00,0x00,0x00,0xfc,0x00 -+// 54008 틸 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x00,0x88,0x08,0x18,0x00,0xfe,0x00 -+// 54009 틹 ; -+,0x00,0x00,0x00,0x08,0x08,0x0c,0x0c,0x08,0x0f,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x44,0x04,0x04,0x84,0x00,0x84,0x84,0x04,0x04,0x00,0x00 -+// 54010 틺 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0f,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x0c,0x84,0x00,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 54011 틻 ; -+,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x05,0x07,0x01,0x01,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x04,0xc4,0x0c,0x24,0x3c,0x24,0x24,0x24,0x00 -+// 54012 틼 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0f,0x04,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x44,0x04,0x04,0x84,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 54013 틽 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0d,0x04,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x04,0xec,0x20,0x20,0x20,0x3e,0x00 -+// 54014 틾 ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x0c,0x08,0x0d,0x04,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x04,0x20,0x0c,0x20,0x08,0x4e,0x00 -+// 54015 틿 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0f,0x00,0x0d,0x01,0x05,0x04,0x07,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x18,0x02,0x18,0x24,0x04,0x2c,0x00 -+// 54016 팀 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x00,0x0c,0x04,0x00,0x08,0x00,0x00 -+// 54017 팁 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x08,0x04,0x8c,0x84,0x84,0x8c,0x00 -+// 54018 팂 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x0c,0x08,0x0f,0x00,0x04,0x07,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x0c,0x84,0x98,0x88,0x98,0x94,0xa2,0x42,0x00 -+// 54019 팃 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0d,0x04,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x40,0x20,0x60,0xd8,0x84,0x02,0x00 -+// 54020 팄 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x08,0x88,0x08,0x98,0x66,0x02,0x00 -+// 54021 팅 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x04,0xc4,0x04,0x70,0x80,0x84,0x84,0x78,0x00 -+// 54022 팆 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x00,0x04,0x06,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x04,0xc4,0x00,0x24,0x20,0x50,0x8c,0x02,0x00 -+// 54023 팇 ; -+,0x00,0x00,0x00,0x08,0x08,0x08,0x0c,0x08,0x0f,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x04,0x44,0x04,0x14,0x84,0x60,0x06,0x20,0x60,0x88,0x02,0x00 -+// 54024 팈 ; -+,0x00,0x00,0x00,0x08,0x08,0x00,0x04,0x00,0x04,0x06,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x04,0xc4,0x00,0xcc,0x04,0xc4,0x04,0x04,0x00 -+// 54025 팉 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x0c,0x08,0x0f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x04,0x04,0x04,0x1c,0xc4,0x00,0x1c,0x00,0x18,0x00,0xfc,0x00 -+// 54026 팊 ; -+,0x00,0x00,0x00,0x10,0x08,0x08,0x09,0x08,0x09,0x04,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x00,0x0c,0x10,0x10,0x90,0xfe,0x00 -+// 54027 팋 ; -+,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x09,0x04,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0x04,0x04,0x0c,0xc4,0x60,0x00,0x20,0x90,0x88,0x90,0x00 -+// 54028 파 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x48,0x08,0x8f,0x88,0x88,0x08,0x08,0x08,0x08,0x00 -+// 54029 팍 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x04,0x03,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x48,0x8f,0x88,0x88,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 54030 팎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x04,0x0f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x48,0x8f,0x88,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 54031 팏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x04,0x07,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0x48,0x8f,0x88,0x88,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 54032 판 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x04,0x04,0x04,0x1f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x88,0x8b,0x98,0x88,0x08,0x08,0x00,0x00,0xdc,0x00 -+// 54033 팑 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x04,0x04,0x03,0x18,0x08,0x08,0x00,0x05,0x04,0x00,0x00,0x10,0x08,0xc8,0x88,0xc8,0x8f,0x98,0x88,0x00,0xfc,0x10,0x30,0x48,0x84,0x00 -+// 54034 팒 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x04,0x04,0x1f,0x00,0x0c,0x04,0x04,0x05,0x00,0x00,0x00,0x00,0x08,0xc8,0x88,0x88,0x8f,0x98,0x08,0x30,0x04,0x30,0x48,0xc0,0x78,0x00 -+// 54035 팓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x1c,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0x48,0x88,0xc8,0x8b,0x98,0x88,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 54036 팔 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x04,0x3f,0x00,0x03,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x88,0x88,0x8f,0x88,0x08,0x00,0x08,0x00,0x18,0x00,0x0c,0x00 -+// 54037 팕 ; -+,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x04,0x1f,0x00,0x0d,0x01,0x0c,0x04,0x07,0x00,0x00,0x00,0x08,0x48,0x88,0x48,0x8b,0x88,0x08,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 54038 팖 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x3f,0x00,0x0d,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x08,0xc8,0x88,0xc8,0x8f,0x88,0x08,0x00,0x68,0x48,0x48,0x48,0x68,0x00 -+// 54039 팗 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x01,0x01,0x08,0x08,0x0e,0x00,0x00,0x10,0x08,0x48,0x88,0x48,0x8b,0x88,0x08,0x98,0x48,0x78,0x48,0x48,0x48,0x00 -+// 54040 팘 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x8f,0x88,0x08,0x00,0x98,0x10,0x18,0x24,0x44,0x00 -+// 54041 팙 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x3e,0x00,0x09,0x01,0x0c,0x00,0x07,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x8f,0xc8,0x08,0x00,0x60,0x40,0x60,0x40,0x3c,0x00 -+// 54042 팚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x00,0x09,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x08,0xc8,0x08,0xc8,0x8b,0x98,0x08,0x00,0x7c,0x08,0x08,0x00,0xd4,0x00 -+// 54043 팛 ; -+,0x00,0x00,0x00,0x18,0x00,0x00,0x04,0x04,0x1f,0x00,0x05,0x01,0x0f,0x04,0x07,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x8f,0x98,0x08,0x30,0x04,0x10,0x28,0x44,0x24,0x00 -+// 54044 팜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x10,0x03,0x02,0x00,0x00,0x01,0x00,0x00,0x00,0x08,0xc8,0x88,0xc8,0x8f,0x98,0x88,0x00,0x18,0x08,0x08,0x10,0x00,0x00 -+// 54045 팝 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x04,0x04,0x07,0x10,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x08,0xc8,0x8b,0x88,0x88,0x00,0x08,0x08,0x08,0x08,0xf8,0x00 -+// 54046 팞 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x3f,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x8f,0x88,0x08,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 54047 팟 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x04,0x04,0x07,0x10,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0xc8,0x88,0xc8,0x8b,0x98,0x08,0x08,0x40,0x40,0x90,0x08,0x04,0x00 -+// 54048 팠 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x1e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x8f,0x88,0x08,0x10,0x10,0x10,0xa8,0x64,0x40,0x00 -+// 54049 팡 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x04,0x04,0x01,0x18,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0xc8,0x8b,0x88,0x88,0x08,0x60,0x10,0x08,0x08,0xb0,0x00 -+// 54050 팢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x00,0x06,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x08,0xc8,0x88,0xc8,0x8f,0x88,0x08,0x00,0x40,0x40,0x90,0x08,0x04,0x00 -+// 54051 팣 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x00,0x1f,0x00,0x00,0x06,0x00,0x01,0x06,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x8b,0x88,0x08,0xe0,0x00,0x40,0xc0,0x18,0x04,0x00 -+// 54052 팤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0xc8,0x88,0x88,0x8f,0x98,0x88,0x00,0x98,0x08,0xc8,0x08,0x00,0x00 -+// 54053 팥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x1f,0x00,0x06,0x02,0x03,0x02,0x01,0x00,0x00,0x00,0x08,0xc8,0x08,0xc8,0x8b,0x88,0x08,0x00,0x18,0x00,0x18,0x00,0xfc,0x00 -+// 54054 팦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x18,0x06,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x48,0x88,0x88,0x8b,0x98,0x88,0x00,0x18,0x10,0x10,0x00,0x3c,0x00 -+// 54055 팧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x3e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x18,0xc8,0x88,0x88,0x8f,0x98,0x00,0xe0,0x0c,0x40,0x10,0x10,0xb0,0x00 -+// 54056 패 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0xd4,0x14,0x94,0x94,0x1c,0x34,0x14,0x14,0x14,0x14,0x04,0x00 -+// 54057 팩 ; -+,0x00,0x00,0x00,0x00,0x09,0x00,0x04,0x04,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x04,0x84,0x9c,0x24,0x80,0x00,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 54058 팪 ; -+,0x00,0x00,0x00,0x00,0x0d,0x00,0x04,0x04,0x03,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x04,0x84,0x94,0x24,0x80,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 54059 팫 ; -+,0x00,0x00,0x00,0x00,0x09,0x01,0x04,0x05,0x03,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x24,0x24,0x24,0x10,0x88,0x98,0x94,0xa6,0x80,0x00 -+// 54060 팬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0xa4,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0x00,0x00 -+// 54061 팭 ; -+,0x00,0x00,0x00,0x00,0x0d,0x00,0x04,0x04,0x01,0x08,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x04,0x04,0x84,0x94,0x24,0xa4,0x00,0x5e,0x18,0x18,0x24,0x42,0x00 -+// 54062 팮 ; -+,0x00,0x00,0x00,0x00,0x09,0x00,0x04,0x05,0x1f,0x00,0x04,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0x3c,0x24,0x24,0x38,0x06,0x10,0x24,0xc4,0x38,0x00 -+// 54063 팯 ; -+,0x00,0x00,0x00,0x00,0x0d,0x00,0x04,0x04,0x01,0x0c,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0xa4,0xbc,0x24,0xa4,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 54064 팰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0x84,0x04,0x80,0x9c,0x24,0x00,0x00,0x04,0x04,0x80,0x80,0xfe,0x00 -+// 54065 팱 ; -+,0x00,0x00,0x00,0x19,0x01,0x00,0x05,0x01,0x1c,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0xa4,0x24,0xa4,0x24,0xa4,0x00,0x04,0x84,0x84,0x04,0x04,0x04,0x00 -+// 54066 팲 ; -+,0x00,0x00,0x00,0x0d,0x01,0x01,0x05,0x01,0x1c,0x05,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x34,0xa4,0x00,0xa4,0xa4,0xa4,0x24,0x24,0x00,0x00 -+// 54067 팳 ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x05,0x01,0x1e,0x08,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x3c,0x64,0x20,0x04,0x24,0x24,0x24,0x24,0x24,0x00 -+// 54068 팴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x1e,0x05,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0xa4,0x24,0xa4,0x3c,0xa4,0x00,0x80,0x88,0x88,0x18,0x06,0x02,0x00 -+// 54069 팵 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x01,0x1e,0x08,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x04,0x24,0xa4,0x24,0xa4,0x3c,0x24,0x00,0x44,0x20,0x24,0x20,0x20,0x00,0x00 -+// 54070 팶 ; -+,0x00,0x00,0x00,0x01,0x01,0x09,0x05,0x01,0x1e,0x00,0x05,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x3c,0x24,0x20,0x00,0x08,0x08,0x28,0x08,0x4e,0x00 -+// 54071 팷 ; -+,0x00,0x00,0x00,0x00,0x01,0x09,0x05,0x01,0x1f,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x08,0x24,0xa4,0x24,0xa4,0x3c,0x24,0x24,0x38,0x06,0x10,0x24,0x04,0x3c,0x00 -+// 54072 팸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x05,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x3c,0x24,0x20,0x00,0x8c,0x04,0x04,0x04,0x80,0x00 -+// 54073 팹 ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x05,0x01,0x1e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x3c,0x24,0x00,0x0c,0x04,0x84,0x04,0x84,0x84,0x00 -+// 54074 팺 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x05,0x01,0x1e,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x3c,0xe4,0x20,0x88,0x08,0x88,0x14,0xa2,0x40,0x00 -+// 54075 팻 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x01,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x24,0xa4,0x24,0xa4,0x3c,0x24,0x04,0x60,0x20,0x60,0xc8,0x04,0x02,0x00 -+// 54076 팼 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x01,0x1e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x3c,0xa4,0x00,0x08,0x08,0x08,0x94,0x62,0x40,0x00 -+// 54077 팽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x32,0xd2,0x12,0x92,0x96,0x32,0x80,0x10,0x38,0x84,0x84,0x84,0x78,0x00 -+// 54078 팾 ; -+,0x00,0x00,0x00,0x09,0x01,0x01,0x05,0x01,0x1e,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x04,0x24,0xa4,0x24,0xa4,0x24,0x64,0x00,0x04,0x40,0x40,0x90,0x04,0x00,0x00 -+// 54079 팿 ; -+,0x00,0x00,0x00,0x0d,0x00,0x00,0x05,0x01,0x1e,0x00,0x00,0x02,0x00,0x01,0x02,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x34,0xe4,0x00,0xe0,0x04,0x60,0x60,0x88,0x04,0x00 -+// 54080 퍀 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x03,0x08,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x3c,0x24,0xa4,0x00,0xcc,0x04,0xe4,0x04,0x04,0x00 -+// 54081 퍁 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x01,0x1e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x34,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 54082 퍂 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x05,0x03,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x24,0x24,0x24,0xa4,0x34,0x24,0x24,0x00,0x9c,0x10,0x90,0x90,0x1e,0x00 -+// 54083 퍃 ; -+,0x00,0x00,0x00,0x0d,0x01,0x00,0x05,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x24,0xa4,0x34,0x64,0x00,0x60,0x0e,0x20,0x90,0x88,0xd0,0x00 -+// 54084 퍄 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x48,0x4f,0x48,0x48,0x98,0xce,0x08,0x08,0x08,0x08,0x00 -+// 54085 퍅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x08,0x8f,0x88,0x98,0x8c,0x00,0x98,0x08,0x08,0x08,0x08,0x00 -+// 54086 퍆 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x0f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x18,0x08,0x48,0x08,0x4f,0x88,0x88,0x88,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 54087 퍇 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x04,0x1f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0xc8,0x88,0xcf,0x88,0x88,0x08,0x00,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 54088 퍈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x68,0x08,0x48,0x4f,0x88,0x98,0x8f,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 54089 퍉 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x04,0x0f,0x00,0x08,0x00,0x00,0x05,0x04,0x00,0x00,0x10,0x08,0x48,0x08,0x4f,0x88,0x88,0x88,0x00,0xf0,0x10,0x30,0x48,0x84,0x00 -+// 54090 퍊 ; -+,0x00,0x00,0x00,0x18,0x00,0x08,0x04,0x00,0x1e,0x00,0x0c,0x04,0x04,0x05,0x04,0x00,0x00,0x10,0x18,0xc8,0x88,0x8f,0x88,0xd8,0x08,0x30,0x04,0x30,0x48,0x88,0x78,0x00 -+// 54091 퍋 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x04,0x1f,0x00,0x06,0x02,0x02,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x88,0x88,0x99,0x08,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 54092 퍌 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x00,0x00,0x03,0x00,0x01,0x00,0x00,0x18,0x08,0x08,0x88,0x4e,0x88,0xc8,0x08,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 54093 퍍 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x05,0x01,0x0d,0x00,0x07,0x00,0x00,0x18,0x08,0x08,0x88,0x8f,0x88,0xe8,0x0c,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 54094 퍎 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x18,0x08,0x08,0xc8,0x4c,0x88,0xc9,0x08,0x00,0x6c,0x00,0x00,0x08,0x20,0x00 -+// 54095 퍏 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x01,0x00,0x08,0x08,0x0e,0x00,0x00,0x18,0x08,0x08,0x88,0x4f,0x88,0xe8,0x08,0x08,0x48,0x48,0x48,0x48,0x48,0x00 -+// 54096 퍐 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x00,0x00,0x0c,0x04,0x06,0x00,0x00,0x18,0x08,0x08,0x88,0x8e,0x88,0xc8,0x08,0x10,0x88,0x90,0x18,0x24,0x42,0x00 -+// 54097 퍑 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x0d,0x01,0x0d,0x00,0x07,0x00,0x00,0x10,0x08,0x48,0x88,0x8f,0x88,0xe8,0x0c,0x00,0x60,0x40,0x78,0x40,0x3c,0x00 -+// 54098 퍒 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1c,0x00,0x01,0x01,0x08,0x04,0x04,0x00,0x00,0x18,0x08,0x08,0x88,0x88,0x88,0xcb,0x08,0x00,0x08,0x48,0x28,0x00,0x00,0x00 -+// 54099 퍓 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x01,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x18,0x08,0x08,0x88,0x4e,0x88,0xcb,0x08,0x10,0x06,0x18,0x24,0x04,0x3c,0x00 -+// 54100 퍔 ; -+,0x00,0x00,0x00,0x04,0x00,0x08,0x04,0x04,0x1f,0x00,0x03,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0xc8,0x88,0x8e,0x88,0x99,0x08,0x00,0x18,0x08,0x00,0x10,0x00,0x00 -+// 54101 퍕 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0xcf,0x88,0xc8,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00 -+// 54102 퍖 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1c,0x00,0x08,0x04,0x04,0x04,0x00,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0x88,0xcb,0x08,0x18,0x90,0x90,0x98,0xa4,0x40,0x00 -+// 54103 퍗 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1f,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x18,0x08,0x48,0x88,0x48,0x88,0xc8,0x08,0x40,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 54104 퍘 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x10,0x08,0x08,0x88,0x8f,0x88,0xd9,0x08,0x10,0x18,0x10,0xb8,0x64,0x40,0x00 -+// 54105 퍙 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x48,0x88,0x48,0x88,0xb8,0x08,0x20,0xf0,0x08,0x08,0x08,0xf0,0x00 -+// 54106 퍚 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x18,0x08,0x48,0x88,0x88,0x88,0xcb,0x08,0x00,0xc0,0x40,0x90,0x0c,0x04,0x00 -+// 54107 퍛 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1e,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x48,0x88,0x8f,0x88,0xe8,0x08,0xe0,0x00,0xc0,0x40,0x90,0x0c,0x00 -+// 54108 퍜 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x88,0x4e,0x88,0x89,0x08,0x00,0x88,0x08,0x88,0x08,0x08,0x00 -+// 54109 퍝 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x04,0x1f,0x00,0x07,0x02,0x03,0x02,0x01,0x00,0x00,0x10,0x08,0xc8,0x88,0x8f,0x88,0x98,0x0f,0x00,0x38,0x00,0x18,0x00,0xfc,0x00 -+// 54110 퍞 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x1f,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x10,0x08,0x48,0x88,0x4f,0x88,0x89,0x08,0x00,0xb8,0x10,0x10,0x10,0x1c,0x00 -+// 54111 퍟 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x00,0x1c,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x8e,0x88,0xcb,0x08,0xe0,0x5c,0x40,0x10,0x10,0xe0,0x00 -+// 54112 퍠 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x04,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x00,0xc0,0x00,0x94,0x80,0x00,0x20,0x14,0x00,0x00,0x00,0x00,0x00 -+// 54113 퍡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0xd0,0x14,0x92,0x94,0x34,0x00,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 54114 퍢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x22,0x12,0x16,0x92,0x92,0xb6,0x80,0x00,0x94,0x84,0x80,0x00,0x04,0x00 -+// 54115 퍣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xa4,0x34,0xa4,0xa4,0x34,0x24,0x00,0x88,0x88,0x9c,0xa6,0xc2,0x00 -+// 54116 퍤 ; -+,0x00,0x00,0x00,0x00,0x0c,0x01,0x01,0x05,0x01,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x34,0xa4,0x24,0x24,0x24,0x24,0x04,0x00,0x00,0x00,0x00 -+// 54117 퍥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x84,0x14,0x84,0x94,0x34,0x00,0x00,0x58,0x18,0x18,0xa6,0x82,0x00 -+// 54118 퍦 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x01,0x1e,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x04,0x24,0x94,0x14,0x90,0x14,0xb4,0x20,0x10,0x76,0x18,0x24,0x04,0x38,0x00 -+// 54119 퍧 ; -+,0x00,0x00,0x00,0x00,0x09,0x00,0x04,0x04,0x03,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x26,0x10,0x14,0x90,0x94,0x34,0x80,0x00,0x1c,0x00,0x00,0x00,0xfe,0x00 -+// 54120 퍨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x0f,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x0c,0x24,0xa4,0x34,0x84,0x34,0x34,0x04,0x00,0x04,0x04,0x80,0x00,0xfe,0x00 -+// 54121 퍩 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x01,0x0e,0x04,0x00,0x00,0x04,0x04,0x03,0x00,0x00,0x04,0x32,0xd2,0x96,0x92,0x96,0xf0,0x00,0xb4,0x84,0x84,0x04,0x04,0x04,0x00 -+// 54122 퍪 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x0f,0x00,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x04,0x32,0xd2,0x16,0x92,0x92,0xb2,0x10,0x00,0xb2,0x80,0x00,0x14,0x10,0x00 -+// 54123 퍫 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x00,0x0e,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x04,0x32,0xd2,0x96,0x92,0x96,0xb0,0x00,0x04,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 54124 퍬 ; -+,0x00,0x00,0x00,0x08,0x00,0x00,0x04,0x01,0x1e,0x04,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x24,0xa4,0x34,0xa4,0x34,0xa4,0x00,0x98,0x88,0x88,0x14,0xa2,0x42,0x00 -+// 54125 퍭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x08,0x01,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x24,0x90,0x14,0x92,0x94,0x34,0x00,0x04,0xa0,0x20,0x20,0x20,0x3e,0x00 -+// 54126 퍮 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x01,0x1e,0x00,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x04,0x24,0xd0,0x94,0x92,0x94,0xb4,0x00,0x04,0x80,0xa4,0x24,0x00,0x62,0x00 -+// 54127 퍯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x0f,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x22,0x92,0x16,0x92,0x92,0xb6,0x00,0x18,0x82,0x18,0x24,0x20,0x34,0x00 -+// 54128 퍰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x03,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0x24,0x14,0x84,0x04,0x34,0x84,0x00,0x8c,0x84,0x84,0x84,0x80,0x00 -+// 54129 퍱 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x05,0x01,0x1e,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0xa4,0x34,0xa4,0x34,0x24,0x24,0x08,0x04,0x84,0x04,0x84,0x84,0x00 -+// 54130 퍲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x0f,0x00,0x04,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x26,0xd0,0x14,0x90,0x94,0xb4,0x00,0x88,0x48,0xc8,0x54,0x52,0x61,0x00 -+// 54131 퍳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x94,0x14,0x94,0x94,0x34,0x84,0x24,0x20,0x20,0x58,0x84,0x02,0x00 -+// 54132 퍴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x0e,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x04,0x24,0x84,0x14,0x84,0x14,0xe4,0x00,0x08,0x88,0x08,0x54,0x22,0x40,0x00 -+// 54133 퍵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x26,0x12,0x16,0x92,0x92,0x36,0x92,0x10,0x38,0x84,0x84,0x84,0x78,0x00 -+// 54134 퍶 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x07,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x22,0xd2,0x16,0x92,0x96,0xb6,0x00,0x00,0xe0,0x60,0xd8,0x04,0x00,0x00 -+// 54135 퍷 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x04,0x24,0xd0,0x14,0x92,0x94,0xb4,0x00,0x60,0x06,0x20,0x70,0x8c,0x02,0x00 -+// 54136 퍸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x04,0x24,0x94,0x14,0x94,0x94,0x34,0x00,0x00,0xe4,0x04,0xe4,0x04,0x04,0x00 -+// 54137 퍹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x26,0x90,0x14,0x90,0x94,0xf4,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 54138 퍺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x07,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x24,0x14,0x14,0x90,0x94,0x34,0x00,0x00,0x9c,0x08,0x88,0x80,0x1e,0x00 -+// 54139 퍻 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x24,0xd0,0x14,0x92,0x14,0xb4,0x00,0x70,0x0e,0x20,0x88,0x88,0x50,0x00 -+// 54140 퍼 ; -+,0x00,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x06,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x04,0x44,0x44,0x64,0x04,0x84,0x04,0x04,0x04,0x04,0x04,0x00 -+// 54141 퍽 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0xfc,0x84,0x84,0x84,0x00,0xcc,0x04,0x04,0x04,0x00,0x00 -+// 54142 퍾 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x04,0x84,0xfc,0x84,0xc4,0x00,0x08,0x88,0x80,0x80,0x00,0x08,0x00 -+// 54143 퍿 ; -+,0x00,0x00,0x00,0x1e,0x00,0x08,0x04,0x04,0x3f,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x04,0x84,0xfc,0x84,0x04,0x00,0x18,0x08,0x18,0x14,0x26,0x02,0x00 -+// 54144 펀 ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x01,0x1e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xc4,0x04,0x8c,0x84,0x84,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00 -+// 54145 펁 ; -+,0x00,0x00,0x00,0x1e,0x00,0x00,0x04,0x04,0x3f,0x00,0x08,0x00,0x00,0x05,0x06,0x00,0x00,0x18,0x08,0x08,0x80,0xf8,0x80,0x08,0x08,0x00,0xf0,0x10,0x38,0x44,0x82,0x00 -+// 54146 펂 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x1f,0x00,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0xcc,0x84,0x84,0x08,0x00,0xf6,0x38,0x44,0x44,0x38,0x00 -+// 54147 펃 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x07,0x18,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0xc4,0x84,0xfc,0x84,0x84,0x80,0x00,0x38,0x00,0x00,0x00,0xfc,0x00 -+// 54148 펄 ; -+,0x00,0x00,0x00,0x1e,0x00,0x00,0x04,0x04,0x1f,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x0c,0x04,0x8c,0xec,0x84,0x80,0x00,0x08,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 54149 펅 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x04,0x1f,0x08,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x84,0xec,0x84,0x84,0x00,0x08,0x08,0x08,0x00,0x08,0x00,0x00 -+// 54150 펆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x04,0x1f,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0x84,0xe4,0x84,0x84,0x84,0x00,0xa4,0x24,0x24,0x20,0x20,0x00 -+// 54151 펇 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x04,0x04,0x1f,0x0d,0x01,0x01,0x08,0x08,0x04,0x00,0x00,0x08,0x04,0x84,0x84,0xec,0x84,0x84,0x00,0x48,0x44,0x68,0x40,0x48,0x00,0x00 -+// 54152 펈 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x1f,0x0d,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x44,0x04,0x84,0xc4,0x84,0x84,0x00,0x10,0x98,0x90,0x38,0x64,0x02,0x00 -+// 54153 펉 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x1f,0x08,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x0c,0x04,0x04,0xc4,0xc4,0x84,0x84,0x04,0x4c,0x20,0x2c,0x20,0x20,0x1c,0x00 -+// 54154 펊 ; -+,0x00,0x00,0x00,0x1e,0x00,0x00,0x04,0x04,0x1f,0x08,0x01,0x01,0x04,0x05,0x04,0x00,0x00,0x08,0x0c,0x04,0x8c,0xcc,0x84,0x80,0x00,0x0c,0x00,0x08,0x28,0x08,0x00,0x00 -+// 54155 펋 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x3e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x44,0x04,0x8c,0x8c,0x84,0xc0,0x00,0x38,0x56,0x10,0x44,0x44,0x38,0x00 -+// 54156 펌 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x04,0x1e,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0x84,0xfc,0x84,0x84,0x04,0x00,0x0c,0x08,0x08,0x08,0x00,0x00 -+// 54157 펍 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x07,0x08,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0x84,0xfc,0x84,0x84,0x84,0x08,0x08,0x0c,0x04,0x04,0x0c,0x00 -+// 54158 펎 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x04,0x1f,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x84,0xe4,0x84,0x84,0x04,0x88,0x88,0x88,0x94,0xa6,0x42,0x00 -+// 54159 펏 ; -+,0x00,0x00,0x00,0x0e,0x00,0x04,0x04,0x04,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x04,0x04,0x84,0xfc,0x84,0x84,0x04,0x40,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 54160 펐 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x05,0x18,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0xc4,0x04,0xfc,0x84,0x84,0xc4,0x00,0x08,0x08,0x98,0x64,0x42,0x00 -+// 54161 펑 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x1f,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0xfc,0x84,0x84,0x04,0x20,0x70,0x88,0x08,0x08,0xd8,0x00 -+// 54162 펒 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x1f,0x00,0x03,0x00,0x00,0x01,0x06,0x00,0x00,0x08,0x04,0xc4,0x84,0xfc,0x84,0x84,0x00,0x00,0xe0,0x40,0x90,0x0c,0x04,0x00 -+// 54163 펓 ; -+,0x00,0x00,0x00,0x0e,0x00,0x00,0x04,0x04,0x1f,0x00,0x00,0x06,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x8c,0xec,0x84,0x84,0x00,0xe0,0x00,0x60,0x60,0x98,0x04,0x00 -+// 54164 펔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x04,0x1e,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0xfc,0x84,0x84,0x00,0x00,0x08,0x08,0x80,0x08,0x08,0x00 -+// 54165 펕 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x07,0x08,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x0c,0xc4,0x84,0xfc,0x84,0x84,0x84,0x00,0x38,0x00,0x08,0x00,0xfc,0x00 -+// 54166 펖 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x07,0x18,0x00,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x0c,0xc4,0x84,0xfc,0x84,0x04,0x80,0x00,0x0c,0x10,0x10,0x90,0xbe,0x00 -+// 54167 펗 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x84,0xfc,0x84,0x84,0x84,0xe0,0x0c,0x60,0x90,0x00,0x90,0x00 -+// 54168 페 ; -+,0x00,0x00,0x00,0x00,0x19,0x00,0x01,0x09,0x08,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x24,0xa4,0x24,0x24,0xe4,0x24,0x24,0x24,0x24,0x24,0x24,0x04,0x00 -+// 54169 펙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0xd2,0x12,0xd2,0x92,0x12,0x12,0x00,0xe6,0x06,0x06,0x06,0x04,0x00 -+// 54170 펚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x03,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x36,0x94,0x14,0x92,0x96,0x14,0x14,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 54171 펛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x03,0x18,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0xd4,0x14,0x94,0x14,0x14,0x14,0x00,0x88,0x88,0x9c,0x92,0xa2,0x00 -+// 54172 펜 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x04,0x05,0x05,0x07,0x08,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0xf4,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0xde,0x00 -+// 54173 펝 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x05,0x05,0x03,0x08,0x08,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x34,0x94,0x14,0xb4,0x14,0x14,0x04,0x00,0x7e,0x18,0x18,0xa4,0x42,0x00 -+// 54174 펞 ; -+,0x00,0x00,0x00,0x07,0x00,0x00,0x04,0x01,0x1e,0x00,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x0c,0x36,0xd2,0x12,0x92,0x12,0x10,0x10,0x18,0x02,0x18,0x24,0xe4,0x3c,0x00 -+// 54175 펟 ; -+,0x00,0x00,0x00,0x00,0x0c,0x00,0x04,0x05,0x01,0x1c,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x34,0x14,0x14,0x94,0xf4,0x14,0x14,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 54176 펠 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x05,0x01,0x0f,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x84,0x04,0xb4,0x34,0x04,0x04,0x00,0x04,0x04,0x80,0x00,0xfe,0x00 -+// 54177 펡 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x01,0x07,0x08,0x00,0x00,0x06,0x00,0x03,0x00,0x00,0x04,0x12,0xd2,0x12,0x92,0x12,0x12,0x10,0x00,0x84,0x84,0x80,0x00,0x84,0x00 -+// 54178 펢 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x01,0x1e,0x08,0x00,0x00,0x06,0x04,0x03,0x00,0x00,0x04,0x36,0xd2,0x12,0x92,0x12,0x12,0x00,0x00,0xb2,0x80,0x00,0x14,0x10,0x00 -+// 54179 펣 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x01,0x1f,0x08,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x12,0xd2,0x12,0xb2,0x12,0x12,0x10,0x04,0xa4,0xa4,0x24,0x24,0x20,0x00 -+// 54180 펤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x1e,0x0c,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x04,0x34,0x94,0x14,0xb0,0x14,0x14,0x00,0x88,0x88,0x88,0x1c,0x12,0x22,0x00 -+// 54181 펥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x05,0x01,0x1e,0x08,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0x34,0x94,0x14,0xb4,0x14,0x14,0x00,0x04,0x20,0x24,0x20,0x20,0x00,0x00 -+// 54182 펦 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x01,0x1e,0x00,0x00,0x00,0x06,0x04,0x06,0x00,0x00,0x04,0x34,0x90,0x10,0xf0,0x10,0x10,0x00,0x00,0x80,0x84,0x24,0x00,0x2a,0x00 -+// 54183 펧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x03,0x08,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0x74,0x14,0x04,0x18,0x82,0x18,0x24,0x20,0x34,0x00 -+// 54184 펨 ; -+,0x00,0x00,0x00,0x00,0x0c,0x01,0x04,0x05,0x01,0x1c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x36,0x14,0x14,0x90,0xf4,0x14,0x14,0x00,0x04,0x84,0x84,0x84,0x9c,0x00 -+// 54185 펩 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x01,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0xb4,0x34,0x14,0x04,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54186 펪 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x07,0x08,0x04,0x06,0x04,0x04,0x04,0x00,0x00,0x0c,0x34,0x94,0x14,0x94,0x34,0x14,0x04,0x88,0x48,0xc8,0x54,0xd2,0x60,0x00 -+// 54187 펫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x03,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x34,0x94,0x14,0xb4,0x14,0x14,0x04,0x24,0x20,0x20,0x48,0x84,0x02,0x00 -+// 54188 펬 ; -+,0x00,0x00,0x00,0x0c,0x00,0x00,0x05,0x01,0x1e,0x00,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x34,0x94,0x14,0xb4,0x14,0x14,0x00,0x08,0x88,0x08,0x54,0x22,0x40,0x00 -+// 54189 펭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x14,0x94,0xb4,0x14,0x14,0x04,0x30,0xcc,0x84,0x84,0x78,0x00 -+// 54190 펮 ; -+,0x00,0x00,0x00,0x01,0x00,0x00,0x04,0x00,0x07,0x08,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x12,0xd2,0x12,0xb2,0x92,0x12,0x10,0x00,0xe0,0x60,0x58,0x84,0x02,0x00 -+// 54191 펯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x01,0x1f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x04,0x14,0x94,0x14,0x90,0x14,0x14,0x00,0x60,0x00,0xe0,0x60,0x88,0x06,0x00 -+// 54192 펰 ; -+,0x00,0x00,0x00,0x00,0x1e,0x01,0x00,0x05,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x94,0xf4,0x14,0x14,0x00,0xec,0x04,0x74,0x04,0x04,0x00 -+// 54193 펱 ; -+,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x01,0x07,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x36,0x92,0x12,0x92,0x12,0x10,0x10,0x00,0xb8,0x00,0x08,0x00,0xfe,0x00 -+// 54194 펲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x05,0x03,0x08,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x34,0x94,0x14,0x94,0x14,0x14,0x14,0x00,0x9c,0x08,0x88,0x80,0x1e,0x00 -+// 54195 펳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x03,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0x36,0x90,0x10,0x92,0x12,0x10,0x10,0x70,0x02,0x20,0x58,0x88,0x48,0x00 -+// 54196 펴 ; -+,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x04,0x04,0x04,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x04,0xbc,0x84,0x84,0xbc,0x84,0x04,0x04,0x04,0x04,0x04,0x00 -+// 54197 펵 ; -+,0x00,0x00,0x00,0x1f,0x00,0x08,0x04,0x04,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xc4,0x0c,0x84,0x84,0x3c,0x04,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 54198 펶 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x01,0x1c,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x3c,0x84,0x84,0x3c,0x84,0x00,0xbc,0x84,0x84,0x84,0x80,0x00 -+// 54199 펷 ; -+,0x00,0x00,0x00,0x18,0x00,0x00,0x04,0x05,0x1f,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x04,0xac,0x84,0x04,0x24,0x00,0x18,0x88,0x98,0x94,0xa2,0x00,0x00 -+// 54200 편 ; -+,0x00,0x00,0x00,0x1f,0x00,0x08,0x04,0x04,0x00,0x1e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0xbc,0x84,0x84,0xbc,0x84,0x04,0x04,0x00,0x00,0x00,0xde,0x00 -+// 54201 펹 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x01,0x18,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x3c,0x84,0x84,0x3c,0x84,0x00,0x7e,0x10,0x18,0x24,0x42,0x00 -+// 54202 펺 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x04,0x04,0x1f,0x00,0x04,0x04,0x04,0x07,0x02,0x00,0x00,0x08,0x04,0xc4,0xac,0x84,0x8c,0x84,0x04,0x38,0x06,0x18,0x24,0xc4,0x38,0x00 -+// 54203 펻 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x01,0x18,0x02,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0xbc,0x84,0x84,0x3c,0x84,0x00,0x18,0x00,0x00,0x00,0xfc,0x00 -+// 54204 펼 ; -+,0x00,0x00,0x00,0x1c,0x00,0x04,0x04,0x04,0x1f,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x44,0x04,0x84,0x84,0x8c,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 54205 펽 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x07,0x00,0x0f,0x00,0x0d,0x04,0x05,0x00,0x00,0x0c,0x44,0x04,0x84,0x84,0x84,0x04,0x84,0x00,0xac,0x04,0x04,0x04,0x00,0x00 -+// 54206 펾 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x05,0x1c,0x00,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x0c,0xc4,0x0c,0x84,0x84,0x3c,0x84,0x00,0x48,0x24,0x20,0x20,0x28,0x20,0x00 -+// 54207 펿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x04,0x04,0x1f,0x08,0x01,0x01,0x0c,0x04,0x07,0x00,0x00,0x0c,0x04,0x84,0xa4,0x84,0x84,0x84,0x04,0x00,0x44,0x24,0x04,0x04,0x24,0x00 -+// 54208 폀 ; -+,0x00,0x00,0x00,0x1c,0x00,0x04,0x04,0x04,0x1f,0x08,0x00,0x01,0x0c,0x04,0x06,0x00,0x00,0x0c,0x44,0x04,0x84,0x84,0xbc,0x84,0x04,0x10,0x88,0x90,0x18,0x24,0x02,0x00 -+// 54209 폁 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x01,0x1c,0x01,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x0c,0xc4,0x1c,0x84,0x84,0x3c,0x84,0x00,0x0c,0x40,0x68,0x40,0x40,0x00,0x00 -+// 54210 폂 ; -+,0x00,0x00,0x00,0x0c,0x00,0x04,0x04,0x04,0x1e,0x08,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x0c,0x04,0x04,0x84,0x84,0xbc,0x84,0x04,0x04,0x00,0x24,0x28,0x08,0x00,0x00 -+// 54211 폃 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x05,0x1e,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x0c,0x44,0x0c,0x84,0x84,0xbc,0x04,0x00,0x18,0x06,0x10,0x24,0x04,0x38,0x00 -+// 54212 폄 ; -+,0x00,0x00,0x00,0x1e,0x00,0x00,0x04,0x05,0x1f,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0xbc,0x84,0x04,0x64,0x00,0x00,0x0c,0x08,0x08,0x08,0x00,0x00 -+// 54213 폅 ; -+,0x00,0x00,0x00,0x1f,0x00,0x00,0x04,0x04,0x1f,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xc4,0xbc,0x84,0x84,0x24,0x04,0x08,0x04,0x8c,0x04,0x04,0x00,0x00 -+// 54214 폆 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x00,0x1e,0x00,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x0c,0x44,0x0c,0x84,0x84,0xbc,0x84,0x04,0x88,0x88,0x88,0x94,0xa2,0x40,0x00 -+// 54215 폇 ; -+,0x00,0x00,0x00,0x1f,0x01,0x08,0x04,0x05,0x07,0x18,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x08,0x0c,0x04,0x3c,0x84,0x04,0x3c,0x04,0x40,0x60,0x60,0x90,0x0c,0x04,0x00 -+// 54216 폈 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x05,0x1e,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x0c,0x44,0x0c,0x84,0x84,0x3c,0x84,0x00,0x18,0x08,0x18,0x9c,0x66,0x40,0x00 -+// 54217 평 ; -+,0x00,0x00,0x00,0x1f,0x00,0x08,0x04,0x04,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xc4,0xbc,0x84,0x84,0x04,0x84,0x24,0x70,0x84,0x84,0x8c,0x78,0x00 -+// 54218 폊 ; -+,0x00,0x00,0x00,0x18,0x00,0x04,0x04,0x04,0x1f,0x00,0x03,0x00,0x00,0x01,0x04,0x00,0x00,0x0c,0x44,0x04,0xa4,0x84,0x84,0x24,0x04,0x00,0x60,0x60,0x98,0x0c,0x00,0x00 -+// 54219 폋 ; -+,0x00,0x00,0x01,0x00,0x00,0x04,0x04,0x05,0x1c,0x00,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x0c,0xc4,0x1c,0x84,0x84,0x3c,0x84,0x00,0x60,0x0c,0x40,0xf0,0x0c,0x00,0x00 -+// 54220 폌 ; -+,0x00,0x00,0x00,0x1c,0x00,0x04,0x04,0x05,0x1f,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x0c,0x44,0x04,0xbc,0x84,0x84,0x24,0x04,0x00,0x04,0x0c,0x84,0x04,0x00,0x00 -+// 54221 폍 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x04,0x04,0x1e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x44,0x0c,0x84,0x84,0x8c,0x04,0x00,0x00,0x20,0x00,0x00,0x00,0xfc,0x00 -+// 54222 폎 ; -+,0x00,0x00,0x00,0x18,0x00,0x00,0x04,0x05,0x1f,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x44,0x04,0xbc,0x84,0x0c,0x04,0x00,0x00,0x9c,0x10,0x90,0x90,0x1e,0x00 -+// 54223 폏 ; -+,0x00,0x00,0x00,0x1d,0x00,0x04,0x04,0x04,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x44,0x04,0x84,0x84,0x8c,0x04,0x04,0xe0,0x0c,0x60,0x90,0x08,0x90,0x00 -+// 54224 폐 ; -+,0x00,0x00,0x00,0x00,0x1f,0x00,0x09,0x09,0x0d,0x00,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x24,0x14,0x94,0x34,0x14,0x14,0x74,0x14,0x14,0x14,0x14,0x14,0x00,0x00 -+// 54225 폑 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x05,0x04,0x03,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x74,0x14,0x14,0x14,0x14,0x00,0xe4,0x04,0x04,0x04,0x04,0x00 -+// 54226 폒 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x05,0x05,0x03,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x94,0x14,0x14,0x14,0x14,0x14,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 54227 폓 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x05,0x01,0x07,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x74,0x14,0x14,0x14,0x14,0x08,0x88,0x88,0x94,0xa2,0x80,0x00 -+// 54228 폔 ; -+,0x00,0x00,0x00,0x00,0x08,0x01,0x01,0x05,0x01,0x1e,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x74,0x14,0x14,0x04,0x00,0x00,0xde,0x00,0x00 -+// 54229 폕 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x05,0x04,0x07,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x34,0x94,0x74,0x14,0x14,0x14,0x14,0x02,0x18,0x18,0x34,0x46,0x82,0x00 -+// 54230 폖 ; -+,0x00,0x00,0x00,0x0f,0x01,0x09,0x05,0x00,0x0e,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x34,0x94,0x74,0x14,0x74,0x14,0x14,0x00,0xfe,0x38,0x44,0x44,0x38,0x00 -+// 54231 폗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x05,0x04,0x07,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x34,0x94,0x34,0x14,0x14,0x14,0x14,0x00,0x00,0x00,0x00,0x04,0x00,0x00 -+// 54232 폘 ; -+,0x00,0x00,0x00,0x0f,0x01,0x09,0x05,0x00,0x06,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x0c,0x14,0x94,0x74,0x14,0x14,0x14,0x14,0x04,0x04,0x04,0x80,0x00,0xfe,0x00 -+// 54233 폙 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x05,0x04,0x03,0x0c,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x08,0x34,0x94,0x14,0x14,0x14,0x14,0x14,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 54234 폚 ; -+,0x00,0x00,0x00,0x03,0x00,0x01,0x05,0x04,0x06,0x0c,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x0c,0x34,0x94,0x74,0x14,0x34,0x14,0x00,0x84,0xa4,0xa4,0x24,0x24,0x00,0x00 -+// 54235 폛 ; -+,0x00,0x00,0x00,0x07,0x01,0x01,0x05,0x05,0x07,0x0c,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x04,0x14,0x94,0x74,0x14,0x14,0x14,0x14,0x04,0xa4,0xa4,0x24,0x24,0x24,0x00 -+// 54236 폜 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x05,0x04,0x03,0x0e,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x0c,0x34,0x94,0x14,0x14,0x14,0x14,0x14,0x88,0x88,0x88,0x14,0x22,0x00,0x00 -+// 54237 폝 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x05,0x01,0x0e,0x0f,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x04,0x14,0x94,0x74,0x14,0x14,0x14,0x00,0x4c,0x20,0x2c,0x20,0x20,0x00,0x00 -+// 54238 폞 ; -+,0x00,0x00,0x00,0x03,0x01,0x01,0x05,0x04,0x07,0x0c,0x00,0x00,0x04,0x04,0x06,0x00,0x00,0x04,0x34,0x94,0x74,0x14,0x14,0x14,0x14,0x04,0x80,0x04,0x24,0x00,0x6a,0x00 -+// 54239 폟 ; -+,0x00,0x00,0x00,0x0f,0x01,0x01,0x05,0x05,0x07,0x08,0x00,0x01,0x04,0x04,0x06,0x00,0x00,0x04,0x14,0x94,0x74,0x14,0x14,0x14,0x14,0x18,0x3a,0x18,0x24,0xa4,0x1c,0x00 -+// 54240 폠 ; -+,0x00,0x00,0x00,0x00,0x08,0x01,0x05,0x05,0x01,0x1c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x36,0x92,0x12,0x12,0x12,0x72,0x10,0x00,0xce,0x84,0x84,0x84,0x80,0x00 -+// 54241 폡 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x01,0x1c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x36,0x94,0x14,0x10,0x14,0x74,0x14,0x00,0x84,0x84,0x84,0x84,0xfc,0x00 -+// 54242 폢 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x03,0x08,0x04,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x34,0x94,0x14,0x14,0x14,0x54,0x14,0x88,0x48,0xc8,0x54,0xd2,0x60,0x00 -+// 54243 폣 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x05,0x05,0x01,0x1c,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x34,0x94,0x14,0x14,0x14,0x74,0x14,0x04,0x20,0x20,0x58,0x84,0x02,0x00 -+// 54244 폤 ; -+,0x00,0x00,0x00,0x01,0x00,0x01,0x05,0x05,0x03,0x18,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x08,0x34,0x94,0x14,0x14,0x14,0x54,0x14,0x08,0x8c,0x08,0x94,0x72,0x00,0x00 -+// 54245 폥 ; -+,0x00,0x00,0x00,0x00,0x08,0x01,0x05,0x05,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x74,0x14,0x04,0x30,0x80,0x84,0x84,0x78,0x00 -+// 54246 폦 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x01,0x1c,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x34,0x94,0x14,0x14,0x14,0x74,0x14,0x00,0xec,0x60,0x70,0x8c,0x04,0x00 -+// 54247 폧 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x03,0x08,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x74,0x14,0x60,0x04,0xe0,0x60,0x88,0x06,0x00 -+// 54248 폨 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x01,0x1c,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x14,0x14,0x14,0x74,0x14,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 54249 폩 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x05,0x05,0x01,0x1c,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x74,0x14,0x00,0xfc,0x00,0xfc,0x00,0xfe,0x00 -+// 54250 폪 ; -+,0x00,0x00,0x00,0x00,0x08,0x01,0x05,0x05,0x03,0x1c,0x07,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0x14,0x34,0x14,0x74,0x14,0x00,0xfc,0x10,0x80,0x90,0x9e,0x00 -+// 54251 폫 ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x01,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x74,0x14,0x70,0x04,0x60,0xd0,0x88,0xd0,0x00 -+// 54252 포 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x03,0x01,0x0f,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0xfc,0x20,0x10,0x20,0x20,0xfc,0x80,0x40,0x40,0xc2,0x00,0x00,0x00 -+// 54253 폭 ; -+,0x00,0x00,0x06,0x02,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0xf8,0x00,0xff,0x00,0x00,0x10,0x10,0x10,0x10,0x00 -+// 54254 폮 ; -+,0x00,0x00,0x06,0x02,0x01,0x01,0x04,0x00,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x60,0x20,0x20,0x28,0xc0,0x40,0xfe,0x00,0x6c,0x04,0x04,0x00,0x00,0x00 -+// 54255 폯 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x06,0x00,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x78,0x20,0x20,0x20,0xc0,0x40,0xfe,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 54256 폰 ; -+,0x00,0x00,0x06,0x00,0x02,0x01,0x07,0x00,0x00,0x1f,0x00,0x04,0x04,0x06,0x03,0x00,0x00,0x00,0x1c,0x20,0x20,0x20,0x7c,0x40,0x40,0xfe,0x00,0x00,0x00,0x00,0xf8,0x00 -+// 54257 폱 ; -+,0x00,0x00,0x06,0x02,0x01,0x01,0x06,0x00,0x1f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0xc8,0x40,0xfe,0x00,0xfc,0x10,0x30,0x4c,0x84,0x00 -+// 54258 폲 ; -+,0x00,0x00,0x04,0x02,0x01,0x01,0x07,0x00,0x1e,0x00,0x08,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0xf8,0x40,0x00,0x30,0x00,0xf0,0x78,0x40,0x48,0x00 -+// 54259 폳 ; -+,0x00,0x00,0x0f,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0xff,0x00,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 54260 폴 ; -+,0x00,0x00,0x0f,0x00,0x00,0x01,0x07,0x00,0x1e,0x00,0x07,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0xf8,0x00,0xfe,0x00,0xf0,0x10,0xf0,0x00,0x08,0x00 -+// 54261 폵 ; -+,0x00,0x00,0x0f,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xf8,0x00,0xde,0x00,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 54262 폶 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x0d,0x01,0x0f,0x00,0x07,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0xf8,0x00,0xfe,0x00,0x6c,0x24,0x24,0x20,0x3c,0x00 -+// 54263 폷 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x07,0x00,0x1e,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0xc0,0x40,0x00,0x08,0x64,0x3c,0x24,0x2c,0x24,0x00 -+// 54264 폸 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x07,0x00,0x1e,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0xf8,0x40,0xde,0x00,0x98,0x10,0x38,0x24,0xc4,0x00 -+// 54265 폹 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x06,0x00,0x1e,0x00,0x0f,0x01,0x0f,0x04,0x07,0x00,0x00,0x08,0x20,0x20,0x20,0x20,0xc0,0x00,0x06,0x00,0x7c,0x40,0x78,0x40,0x3c,0x00 -+// 54266 폺 ; -+,0x00,0x00,0x06,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x05,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0xf8,0x40,0x5e,0x00,0x7c,0x08,0x28,0x28,0x7c,0x00 -+// 54267 폻 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0xf8,0x40,0xfe,0x30,0x00,0x70,0x38,0x44,0x28,0x00 -+// 54268 폼 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x04,0x00,0x1f,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0xc0,0x40,0x86,0x00,0x38,0x10,0x10,0x10,0x00,0x00 -+// 54269 폽 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x04,0x03,0x02,0x02,0x02,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0xf8,0x80,0xfe,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 54270 폾 ; -+,0x00,0x00,0x00,0x02,0x01,0x00,0x06,0x00,0x1e,0x00,0x08,0x04,0x04,0x04,0x07,0x00,0x00,0x18,0x00,0x20,0x20,0x20,0xc0,0x40,0x02,0x10,0x98,0x90,0x98,0xa4,0xc2,0x00 -+// 54271 폿 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x60,0x20,0x20,0x28,0xc0,0x40,0xff,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 54272 퐀 ; -+,0x00,0x00,0x06,0x00,0x01,0x01,0x07,0x00,0x1e,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x78,0x20,0x20,0x20,0xf8,0x40,0xfe,0x00,0x10,0x10,0xa8,0xe4,0x00,0x00 -+// 54273 퐁 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x06,0x00,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0xc0,0x00,0xff,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00 -+// 54274 퐂 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x00,0x00,0x1e,0x00,0x07,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0xf8,0x20,0x20,0x28,0xc0,0xc0,0x00,0x00,0xc0,0xc0,0xb0,0x18,0x04,0x00 -+// 54275 퐃 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1e,0x00,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0xf8,0x40,0xfe,0x00,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 54276 퐄 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x28,0xc0,0x00,0xfe,0x00,0xd8,0x08,0xc8,0x08,0x08,0x00 -+// 54277 퐅 ; -+,0x00,0x00,0x0f,0x00,0x02,0x01,0x07,0x00,0x1e,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x80,0xde,0x00,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 54278 퐆 ; -+,0x00,0x00,0x0f,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x00,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x80,0xfe,0x00,0x18,0x20,0x20,0x20,0x3c,0x00 -+// 54279 퐇 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x07,0x00,0x0d,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0xf8,0x42,0x00,0xc0,0xfc,0xc0,0x10,0x10,0xe0,0x00 -+// 54280 퐈 ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x1f,0x01,0x01,0x1e,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x88,0x08,0x08,0x0e,0x68,0x08,0x08,0x08,0x08,0x00 -+// 54281 퐉 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x0f,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x48,0x88,0x88,0x88,0x0a,0x18,0x08,0x00,0x10,0x08,0x08,0x08,0x00,0x00 -+// 54282 퐊 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x0f,0x01,0x1f,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x48,0x88,0x88,0x88,0xc8,0x18,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 54283 퐋 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x1f,0x00,0x03,0x00,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x10,0x48,0x88,0x88,0x88,0xc8,0x18,0x88,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 54284 퐌 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x04,0x0b,0x00,0x1f,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x88,0x88,0xa8,0x0e,0x18,0x88,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 54285 퐍 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x1f,0x01,0x03,0x08,0x00,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xc8,0x08,0xc8,0x00,0x0c,0x10,0x30,0x48,0x84,0x00 -+// 54286 퐎 ; -+,0x00,0x00,0x00,0x01,0x00,0x04,0x1f,0x01,0x1f,0x00,0x00,0x05,0x04,0x04,0x06,0x00,0x00,0x10,0x48,0x88,0x88,0x88,0xe8,0x18,0x88,0x30,0x00,0xfc,0x38,0x48,0x48,0x00 -+// 54287 퐏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x1f,0x01,0x03,0x18,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0xc8,0x88,0x88,0xe8,0x0e,0xc8,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 54288 퐐 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x1f,0x00,0x03,0x00,0x03,0x00,0x03,0x02,0x03,0x00,0x00,0x00,0x08,0xc8,0x88,0x88,0xe8,0x18,0xc8,0x00,0xf8,0x10,0xf0,0x00,0xfc,0x00 -+// 54289 퐑 ; -+,0x00,0x00,0x00,0x01,0x00,0x04,0x1f,0x00,0x03,0x08,0x0d,0x01,0x0f,0x08,0x0f,0x00,0x00,0x10,0x48,0x88,0x88,0x88,0xe8,0x18,0x88,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 54290 퐒 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x1f,0x00,0x1f,0x00,0x0d,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xe8,0x18,0x88,0x00,0x78,0x48,0x48,0x48,0x40,0x00 -+// 54291 퐓 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x1f,0x00,0x17,0x00,0x1b,0x00,0x1a,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xe8,0x18,0xc8,0x00,0x98,0x48,0x48,0x48,0x48,0x00 -+// 54292 퐔 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x1f,0x00,0x1f,0x00,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0xe8,0x18,0x88,0x00,0x10,0x10,0x30,0x4c,0x84,0x00 -+// 54293 퐕 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x1f,0x00,0x1f,0x00,0x0f,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xc8,0x18,0x88,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 54294 퐖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x0f,0x00,0x03,0x08,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x08,0xc8,0x88,0x88,0xe8,0x0e,0xc8,0x00,0x78,0x10,0x48,0x10,0xfc,0x00 -+// 54295 퐗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x1f,0x01,0x1f,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xe8,0x18,0x08,0x30,0x00,0x78,0x28,0x44,0x38,0x00 -+// 54296 퐘 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x1f,0x00,0x03,0x18,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0xc8,0x88,0x88,0xc8,0x0e,0xc8,0x00,0x00,0x18,0x10,0x10,0xf0,0x00 -+// 54297 퐙 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x1f,0x00,0x1f,0x00,0x02,0x03,0x03,0x02,0x03,0x00,0x00,0x10,0x08,0x88,0x88,0x88,0xe8,0x18,0x88,0x00,0x18,0x08,0x18,0x08,0xf8,0x00 -+// 54298 퐚 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x1f,0x00,0x1f,0x00,0x01,0x0d,0x04,0x04,0x00,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0xe8,0x18,0x88,0x00,0x90,0x90,0xb8,0xa4,0x40,0x00 -+// 54299 퐛 ; -+,0x00,0x00,0x00,0x01,0x04,0x00,0x1f,0x00,0x03,0x18,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x10,0x48,0x88,0x88,0x88,0xc8,0x08,0xc8,0x00,0x40,0xc0,0xa0,0x18,0x04,0x00 -+// 54300 퐜 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x1f,0x00,0x1f,0x00,0x03,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xca,0x18,0x08,0x00,0x10,0x10,0xa8,0x64,0x04,0x00 -+// 54301 퐝 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x1f,0x00,0x03,0x1c,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0x88,0x88,0xc8,0x0e,0xc8,0x08,0x60,0x90,0x08,0x08,0xf0,0x00 -+// 54302 퐞 ; -+,0x00,0x00,0x00,0x00,0x04,0x00,0x1f,0x01,0x1f,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x48,0x88,0x88,0x88,0x0a,0x18,0x88,0x00,0x08,0x40,0xe0,0x98,0x0c,0x00 -+// 54303 퐟 ; -+,0x00,0x00,0x00,0x01,0x00,0x04,0x1f,0x00,0x1f,0x00,0x00,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x48,0x88,0x88,0x88,0xea,0x18,0x08,0x00,0x00,0xfc,0x40,0xb0,0x0c,0x00 -+// 54304 퐠 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x1f,0x02,0x07,0x00,0x07,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xc8,0x18,0x88,0x00,0x98,0x08,0xd8,0x08,0x00,0x00 -+// 54305 퐡 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x1d,0x02,0x03,0x18,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x88,0x88,0x88,0xe8,0x1e,0xc8,0x00,0x00,0x00,0x18,0x00,0x1c,0x00 -+// 54306 퐢 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x1f,0x02,0x17,0x00,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0xc8,0x88,0x88,0xc8,0x18,0x88,0x00,0xf8,0x20,0x10,0x20,0x3c,0x00 -+// 54307 퐣 ; -+,0x00,0x00,0x00,0x1f,0x00,0x04,0x1f,0x00,0x03,0x00,0x00,0x07,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x88,0x88,0x88,0xc8,0x1c,0x88,0x80,0x00,0xe0,0xa0,0x10,0xa0,0x00 -+// 54308 퐤 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x05,0x01,0x1e,0x02,0x03,0x0e,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x14,0x14,0x1c,0x14,0xf4,0x14,0x14,0x04,0x04,0x00 -+// 54309 퐥 ; -+,0x00,0x00,0x00,0x01,0x00,0x04,0x05,0x02,0x03,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0xf4,0x24,0xa4,0xe4,0x34,0xe4,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 54310 퐦 ; -+,0x00,0x00,0x00,0x0f,0x01,0x04,0x05,0x02,0x03,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0xf4,0x04,0x94,0xf4,0x14,0xa4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54311 퐧 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x07,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0xe4,0x24,0x24,0xf4,0x34,0xa4,0x00,0x08,0x88,0x98,0xa4,0xc2,0x00 -+// 54312 퐨 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x04,0x0f,0x02,0x03,0x1c,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0x94,0x94,0x14,0xfc,0x14,0xb4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 54313 퐩 ; -+,0x00,0x00,0x00,0x0f,0x01,0x04,0x0f,0x02,0x03,0x08,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x24,0xf4,0x14,0x14,0xf4,0x34,0xa4,0x00,0x1c,0x10,0x10,0x24,0xc2,0x00 -+// 54314 퐪 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x05,0x02,0x03,0x08,0x08,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x64,0xe4,0x24,0xa4,0xf4,0x34,0xa4,0x30,0x00,0xfe,0x38,0x44,0x28,0x00 -+// 54315 퐫 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x0b,0x03,0x1e,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0xf4,0x14,0x94,0xf4,0x3c,0x64,0x04,0x00,0x38,0x00,0x00,0xce,0x00 -+// 54316 퐬 ; -+,0x00,0x00,0x00,0x0f,0x00,0x05,0x05,0x02,0x03,0x18,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0xa4,0x24,0x24,0xe4,0x34,0xa4,0x04,0xfc,0x04,0xfc,0x00,0xce,0x00 -+// 54317 퐭 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x05,0x03,0x03,0x1c,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0xd4,0x14,0x94,0xf4,0x1c,0xe4,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 54318 퐮 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x0f,0x00,0x03,0x08,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0xd4,0x14,0x94,0xf4,0x14,0xa4,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54319 퐯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x05,0x02,0x03,0x08,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x64,0xf4,0x24,0xa4,0xf4,0x34,0xa4,0x00,0xc4,0x24,0x24,0x24,0x24,0x00 -+// 54320 퐰 ; -+,0x00,0x00,0x00,0x01,0x01,0x05,0x05,0x02,0x03,0x08,0x0d,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x64,0xf4,0x24,0x24,0xf4,0x34,0xa4,0x00,0x98,0x90,0x18,0x24,0x42,0x00 -+// 54321 퐱 ; -+,0x00,0x00,0x00,0x0f,0x01,0x04,0x05,0x02,0x03,0x1c,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0xf4,0x04,0x14,0xf4,0x34,0xa4,0x00,0x7c,0x20,0x3c,0x20,0x3c,0x00 -+// 54322 퐲 ; -+,0x00,0x00,0x00,0x01,0x00,0x05,0x05,0x02,0x03,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x64,0xa4,0x24,0x24,0xe4,0x34,0xa4,0x00,0x7c,0x08,0x28,0x08,0x7e,0x00 -+// 54323 퐳 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x02,0x03,0x0c,0x05,0x01,0x07,0x04,0x06,0x00,0x00,0x00,0x64,0xb4,0x24,0x24,0xe4,0x3c,0xe4,0x20,0x00,0x78,0x38,0x24,0x38,0x00 -+// 54324 퐴 ; -+,0x00,0x00,0x00,0x0f,0x01,0x05,0x07,0x02,0x03,0x08,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x64,0xf4,0x24,0x24,0xf4,0x34,0xa4,0x00,0x04,0x84,0x04,0x04,0x80,0x00 -+// 54325 퐵 ; -+,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x02,0x03,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0xa4,0x24,0x24,0xe4,0x34,0xa4,0x00,0x0c,0xfc,0x84,0x84,0x80,0x00 -+// 54326 퐶 ; -+,0x00,0x00,0x00,0x0f,0x01,0x05,0x05,0x02,0x03,0x1c,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0xa4,0x24,0x24,0xe4,0x34,0xe4,0x00,0x88,0x88,0x98,0xa6,0x42,0x00 -+// 54327 퐷 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x07,0x02,0x03,0x1c,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0xf4,0x14,0x14,0xf4,0x14,0xa4,0x44,0x20,0x60,0xd8,0x0c,0x02,0x00 -+// 54328 퐸 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x05,0x01,0x01,0x0c,0x01,0x01,0x03,0x02,0x08,0x00,0x00,0x00,0x24,0xd4,0x14,0x94,0xd4,0x14,0xf4,0x10,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 54329 퐹 ; -+,0x00,0x00,0x00,0x09,0x00,0x04,0x05,0x02,0x03,0x1e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xd4,0x14,0x94,0xf4,0x14,0x34,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 54330 퐺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x0f,0x01,0x03,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x24,0xd4,0x14,0x94,0xf4,0x14,0x94,0x00,0x3c,0x60,0x70,0x88,0x04,0x00 -+// 54331 퐻 ; -+,0x00,0x00,0x00,0x0f,0x01,0x04,0x07,0x02,0x03,0x08,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0xf4,0x04,0x14,0xf4,0x34,0xa4,0x00,0x60,0xfc,0x60,0xd8,0x04,0x00 -+// 54332 퐼 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x0f,0x02,0x07,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0xd4,0x14,0x94,0xf4,0x34,0xb4,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 54333 퐽 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x05,0x0f,0x03,0x1e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0xb4,0x14,0x94,0x34,0x1c,0x34,0x04,0x00,0x00,0x18,0x00,0x8c,0x00 -+// 54334 퐾 ; -+,0x00,0x00,0x00,0x0f,0x01,0x05,0x05,0x02,0x03,0x0c,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x64,0xb4,0x24,0x24,0xe4,0x34,0xa4,0x00,0x0c,0x10,0x90,0x90,0x9e,0x00 -+// 54335 퐿 ; -+,0x00,0x00,0x00,0x01,0x00,0x04,0x05,0x02,0x03,0x0c,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0xb4,0x14,0x94,0xf4,0x14,0xa4,0x20,0x00,0x70,0x90,0x88,0xf0,0x00 -+// 54336 푀 ; -+,0x00,0x00,0x00,0x00,0x06,0x00,0x02,0x02,0x05,0x00,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x44,0x44,0x84,0x84,0x04,0xb4,0x04,0x04,0x04,0x04,0x00 -+// 54337 푁 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x01,0x0e,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x84,0xf4,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 54338 푂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x01,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0xe4,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 54339 푃 ; -+,0x00,0x00,0x00,0x0f,0x04,0x02,0x02,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xe4,0x04,0xe4,0x00,0x08,0x88,0x98,0x96,0xa2,0x00 -+// 54340 푄 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x00,0x09,0x01,0x03,0x08,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0xc4,0x44,0xa4,0x04,0x0c,0xc4,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 54341 푅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0a,0x01,0x01,0x0e,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xe4,0x04,0xe4,0x00,0x7e,0x18,0x18,0x24,0xc2,0x00 -+// 54342 푆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x01,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x04,0xe4,0x10,0x00,0xfe,0x3c,0x24,0x38,0x00 -+// 54343 푇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x01,0x0e,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0xf4,0x00,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 54344 푈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x01,0x0c,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x04,0xe4,0x04,0xec,0x04,0xfc,0x00,0x8e,0x00 -+// 54345 푉 ; -+,0x00,0x00,0x00,0x07,0x02,0x02,0x07,0x00,0x0f,0x00,0x06,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x8c,0xc4,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 54346 푊 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x07,0x00,0x03,0x00,0x06,0x00,0x07,0x02,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x84,0xe4,0x00,0xbc,0xa4,0xa4,0x24,0x00,0x00 -+// 54347 푋 ; -+,0x00,0x00,0x00,0x07,0x02,0x02,0x07,0x00,0x01,0x0c,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x44,0x64,0x44,0xf0,0x84,0xe4,0x00,0xe4,0xa4,0xa4,0x24,0x24,0x00 -+// 54348 푌 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x07,0x00,0x1f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x8c,0xc4,0x00,0x88,0x88,0x9c,0x26,0x42,0x00 -+// 54349 푍 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x07,0x00,0x01,0x0c,0x06,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x84,0xf4,0x00,0xbc,0xa0,0xbc,0x20,0x1e,0x00 -+// 54350 푎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x07,0x00,0x0f,0x00,0x04,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x04,0xe4,0x04,0xb8,0x84,0x04,0x00,0x7e,0x00 -+// 54351 푏 ; -+,0x00,0x00,0x00,0x04,0x00,0x02,0x0f,0x00,0x13,0x00,0x06,0x00,0x07,0x02,0x03,0x00,0x00,0x08,0x24,0x44,0x44,0x44,0xf4,0x0c,0xc4,0x18,0x80,0xbc,0x1c,0x22,0x14,0x00 -+// 54352 푐 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x01,0x0e,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0xe4,0x00,0x0c,0x84,0x04,0x8c,0x80,0x00 -+// 54353 푑 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x07,0x00,0x01,0x0c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x04,0xe4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54354 푒 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x01,0x00,0x00,0x06,0x02,0x00,0x02,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0xe4,0x00,0xcc,0x48,0x4c,0x52,0x61,0x00 -+// 54355 푓 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0xf4,0x00,0x20,0x20,0x58,0x84,0x02,0x00 -+// 54356 푔 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x0f,0x00,0x1f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0x8c,0x88,0x5c,0x32,0x20,0x00 -+// 54357 푕 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xf4,0x04,0xb4,0x00,0x30,0x44,0x84,0x84,0x78,0x00 -+// 54358 푖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x01,0x01,0x0e,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x04,0xe4,0x00,0x0c,0x20,0x60,0x88,0x06,0x00 -+// 54359 푗 ; -+,0x00,0x00,0x00,0x06,0x02,0x02,0x0f,0x00,0x1f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x04,0x84,0x00,0x00,0xfe,0x20,0xc8,0x06,0x00 -+// 54360 푘 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0xf4,0x00,0xcc,0x04,0x74,0x04,0x04,0x00 -+// 54361 푙 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x0f,0x00,0x03,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xc4,0x44,0x44,0xf4,0x0c,0xe4,0x00,0x1c,0x00,0x9c,0x00,0xfe,0x00 -+// 54362 푚 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x01,0x0e,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xe4,0x04,0xf4,0x00,0xfc,0x10,0x90,0x90,0x9e,0x00 -+// 54363 푛 ; -+,0x00,0x00,0x00,0x04,0x00,0x02,0x0f,0x00,0x01,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x04,0xe4,0x40,0x00,0x30,0x48,0x08,0x58,0x00 -+// 54364 표 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x01,0x01,0x0f,0x00,0x02,0x02,0x02,0x1e,0x00,0x00,0x00,0x00,0x00,0xe0,0x30,0x10,0x20,0x20,0xfc,0x20,0x10,0x10,0x32,0x00,0x00,0x00 -+// 54365 푝 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xb0,0x20,0xfe,0x00,0x98,0x08,0x08,0x08,0x00,0x00 -+// 54366 푞 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x30,0x20,0xfe,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 54367 푟 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x30,0x20,0x3e,0x00,0x10,0x30,0x28,0x44,0x80,0x00 -+// 54368 푠 ; -+,0x00,0x00,0x06,0x00,0x02,0x01,0x03,0x02,0x01,0x1f,0x00,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x78,0x20,0x20,0x20,0xf8,0x20,0x20,0x3f,0x00,0x00,0x00,0x00,0x00,0x00 -+// 54369 푡 ; -+,0x00,0x00,0x06,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x60,0x20,0x20,0x20,0x30,0x20,0x3e,0x00,0xf8,0x30,0x30,0x4c,0x84,0x00 -+// 54370 푢 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x07,0x02,0x1f,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0x38,0x20,0x3e,0x30,0x04,0xb0,0x58,0x08,0x48,0x00 -+// 54371 푣 ; -+,0x00,0x00,0x0f,0x02,0x00,0x00,0x07,0x02,0x1f,0x00,0x00,0x06,0x04,0x06,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x20,0x3f,0x00,0x30,0x00,0x00,0x00,0xf8,0x00 -+// 54372 푤 ; -+,0x00,0x00,0x0e,0x02,0x02,0x00,0x07,0x02,0x1f,0x00,0x07,0x00,0x07,0x02,0x02,0x00,0x00,0x00,0x60,0x20,0x20,0x00,0xf8,0x20,0x3e,0x00,0xf0,0x10,0xf0,0x00,0x18,0x00 -+// 54373 푥 ; -+,0x00,0x00,0x0f,0x00,0x02,0x00,0x07,0x02,0x1f,0x00,0x0f,0x01,0x0d,0x00,0x07,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x20,0xff,0x00,0x28,0x08,0x08,0x08,0x08,0x00 -+// 54374 푦 ; -+,0x00,0x00,0x04,0x02,0x02,0x00,0x07,0x02,0x1f,0x00,0x0d,0x01,0x0f,0x08,0x0f,0x00,0x00,0x18,0x00,0x20,0x20,0x00,0xf8,0x20,0x7f,0x00,0x6c,0x04,0x08,0x08,0x28,0x00 -+// 54375 푧 ; -+,0x00,0x00,0x0f,0x00,0x02,0x00,0x07,0x02,0x1f,0x00,0x01,0x01,0x0c,0x08,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x00,0xf8,0x20,0x7e,0x08,0x48,0x78,0x48,0x48,0x48,0x00 -+// 54376 푨 ; -+,0x00,0x00,0x0e,0x02,0x02,0x00,0x07,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xf8,0x20,0xff,0x00,0x10,0x10,0x30,0x4c,0x84,0x00 -+// 54377 푩 ; -+,0x00,0x00,0x04,0x02,0x00,0x00,0x07,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0x30,0x20,0x3f,0x00,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 54378 푪 ; -+,0x00,0x00,0x0f,0x00,0x02,0x00,0x07,0x02,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x20,0xff,0x00,0x50,0x08,0x48,0x00,0xfc,0x00 -+// 54379 푫 ; -+,0x00,0x00,0x06,0x00,0x02,0x00,0x07,0x02,0x1f,0x00,0x09,0x01,0x0f,0x08,0x06,0x00,0x00,0x00,0x40,0x20,0x20,0x00,0xf8,0x20,0x7e,0x30,0x04,0x30,0x68,0x48,0x68,0x00 -+// 54380 푬 ; -+,0x00,0x00,0x0f,0x02,0x00,0x00,0x07,0x02,0x1f,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x38,0x20,0xfe,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 54381 푭 ; -+,0x00,0x00,0x06,0x00,0x02,0x01,0x07,0x02,0x1f,0x00,0x04,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xf8,0x20,0x3e,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 54382 푮 ; -+,0x00,0x00,0x00,0x02,0x02,0x00,0x07,0x02,0x1f,0x00,0x09,0x09,0x0d,0x08,0x0f,0x00,0x00,0x08,0x40,0x20,0x20,0x00,0xf8,0x20,0xff,0x00,0x10,0x10,0x38,0x24,0xc4,0x00 -+// 54383 푯 ; -+,0x00,0x00,0x07,0x02,0x00,0x00,0x07,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0x30,0x20,0x3f,0x80,0xc0,0x80,0x20,0x18,0x08,0x00 -+// 54384 푰 ; -+,0x00,0x00,0x0f,0x00,0x02,0x01,0x07,0x01,0x1f,0x00,0x02,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x00,0xf8,0x20,0xfe,0x00,0x10,0x10,0xa8,0xc4,0x80,0x00 -+// 54385 푱 ; -+,0x00,0x00,0x04,0x02,0x02,0x00,0x07,0x02,0x1f,0x00,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x08,0x60,0x20,0x20,0x20,0x30,0x20,0xff,0x00,0xc0,0x20,0x10,0x10,0xe0,0x00 -+// 54386 푲 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x06,0x00,0x01,0x02,0x0c,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x30,0x20,0x06,0x08,0xc0,0xc0,0x30,0x18,0x00,0x00 -+// 54387 푳 ; -+,0x00,0x00,0x0f,0x02,0x02,0x00,0x07,0x02,0x1f,0x00,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0x60,0x20,0x20,0x00,0xf8,0x20,0xfe,0x00,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 54388 푴 ; -+,0x00,0x00,0x0f,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x38,0x20,0x3e,0x00,0x98,0x08,0xc8,0x08,0x08,0x00 -+// 54389 푵 ; -+,0x00,0x00,0x0f,0x00,0x02,0x00,0x07,0x02,0x1f,0x00,0x04,0x04,0x07,0x04,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x20,0xfe,0x00,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 54390 푶 ; -+,0x00,0x00,0x0f,0x02,0x02,0x00,0x07,0x02,0x1f,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x20,0x3f,0x00,0xf8,0x20,0x20,0x20,0x3c,0x00 -+// 54391 푷 ; -+,0x00,0x00,0x0f,0x00,0x02,0x00,0x07,0x02,0x1f,0x01,0x0f,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x40,0x20,0x20,0x00,0xf8,0x20,0xff,0xc0,0xfc,0xc0,0x20,0x20,0x60,0x00 -+// 54392 푸 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x20,0x20,0x20,0xf8,0x00,0xfe,0x40,0x40,0x40,0x40,0x00,0x00,0x00 -+// 54393 푹 ; -+,0x00,0x00,0x04,0x02,0x01,0x01,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x20,0x20,0x38,0x00,0xff,0x00,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 54394 푺 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0xf8,0x06,0x40,0x00,0xec,0x80,0x80,0x00,0x08,0x00 -+// 54395 푻 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x00,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x06,0x40,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 54396 푼 ; -+,0x00,0x00,0x00,0x00,0x02,0x01,0x07,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0x1c,0x20,0x30,0x20,0xf8,0x00,0xfe,0x40,0x40,0x00,0x00,0x00,0xf8,0x00 -+// 54397 푽 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0xf8,0x06,0x40,0x00,0xfc,0x10,0x38,0x4c,0x84,0x00 -+// 54398 푾 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x00,0x00,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0xf8,0x20,0x20,0x78,0x00,0x7f,0x40,0x70,0x00,0xb0,0x48,0x48,0x78,0x00 -+// 54399 푿 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x18,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x02,0xc0,0x00,0x78,0x00,0x00,0x00,0xf8,0x00 -+// 54400 풀 ; -+,0x00,0x00,0x07,0x00,0x02,0x01,0x07,0x00,0x1f,0x00,0x07,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0xc0,0x00,0xf0,0x10,0x00,0x00,0xf8,0x00 -+// 54401 풁 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x06,0xc0,0x80,0xa8,0x08,0x08,0x08,0x08,0x00 -+// 54402 풂 ; -+,0x00,0x00,0x07,0x02,0x01,0x05,0x00,0x1e,0x00,0x01,0x01,0x01,0x04,0x04,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x78,0x00,0xff,0x00,0xcc,0x24,0x24,0x24,0x2c,0x20,0x00 -+// 54403 풃 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x0f,0x40,0xc8,0x64,0x3c,0x24,0x2c,0x20,0x00 -+// 54404 풄 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x18,0x00,0x00,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x78,0x00,0x1f,0x00,0x90,0x10,0x10,0x28,0x44,0x80,0x00 -+// 54405 풅 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x28,0x00,0x1f,0x00,0x80,0x70,0x40,0x70,0x40,0x1c,0x00 -+// 54406 풆 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x0f,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x28,0x00,0x06,0xc0,0x00,0x40,0x08,0x28,0x00,0xfc,0x00 -+// 54407 풇 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x18,0x00,0x00,0x01,0x01,0x0c,0x04,0x04,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x5f,0x00,0xb0,0x4c,0x30,0x48,0x44,0x38,0x00 -+// 54408 품 ; -+,0x00,0x00,0x07,0x00,0x02,0x01,0x07,0x00,0x1e,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0xfe,0x40,0xf0,0x10,0x10,0x10,0x00,0x00 -+// 54409 풉 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1b,0x00,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0xff,0x00,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 54410 풊 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x18,0x00,0x01,0x08,0x07,0x00,0x05,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x78,0x00,0x5e,0x80,0x90,0x90,0x90,0xa8,0xa4,0x80,0x00 -+// 54411 풋 ; -+,0x00,0x00,0x06,0x02,0x01,0x01,0x06,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x60,0x20,0x20,0x28,0x00,0x06,0x40,0x80,0xc0,0xc0,0x20,0x18,0x04,0x00 -+// 54412 풌 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x00,0x00,0x03,0x03,0x02,0x04,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x78,0x00,0xff,0x00,0x30,0x10,0x10,0xa8,0x44,0x80,0x00 -+// 54413 풍 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1e,0x00,0x00,0x03,0x02,0x03,0x01,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x00,0x00,0xfe,0x40,0xc0,0x10,0x10,0x10,0xe0,0x00 -+// 54414 풎 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x04,0x1c,0x00,0x00,0x07,0x00,0x01,0x03,0x04,0x00,0x00,0x00,0xf8,0x20,0x20,0x28,0x00,0xff,0x40,0x00,0xf8,0xc0,0xa0,0x18,0x04,0x00 -+// 54415 풏 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1e,0x00,0x01,0x00,0x0f,0x00,0x01,0x04,0x00,0x00,0x00,0xe0,0x20,0x20,0x78,0x00,0x7f,0x80,0xc0,0x00,0xc0,0xc0,0x30,0x0c,0x00 -+// 54416 풐 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x18,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x02,0x40,0x40,0xd8,0x08,0xe8,0x08,0x08,0x00 -+// 54417 풑 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0xe0,0x20,0x20,0x38,0x00,0x7f,0x40,0x00,0xf8,0x00,0xf0,0x00,0xf8,0x00 -+// 54418 풒 ; -+,0x00,0x00,0x07,0x00,0x00,0x00,0x07,0x00,0x18,0x00,0x07,0x00,0x02,0x01,0x0f,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x06,0xc0,0x00,0xf8,0x20,0x20,0x20,0x3c,0x00 -+// 54419 풓 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1e,0x00,0x00,0x0f,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xe0,0x20,0x20,0x78,0x00,0x7f,0x00,0xc0,0xfc,0xc0,0x20,0x20,0xe0,0x00 -+// 54420 풔 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x0f,0x00,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x44,0xf4,0x64,0x04,0x3c,0x04,0x04,0x04,0x04,0x00 -+// 54421 풕 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x44,0x44,0x44,0x84,0x44,0xbc,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 54422 풖 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x0c,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x44,0x44,0x44,0x04,0xc4,0x3c,0x00,0x24,0x84,0x84,0x84,0x84,0x00 -+// 54423 풗 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x0e,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x44,0x44,0x04,0x84,0x3c,0x00,0x08,0x88,0x98,0x92,0x82,0x00 -+// 54424 풘 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x00,0x08,0x00,0x09,0x01,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x84,0x84,0xa4,0x04,0x84,0x04,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 54425 풙 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x64,0x44,0x44,0x64,0x04,0x84,0x3c,0x00,0x7e,0x08,0x18,0xa4,0x42,0x00 -+// 54426 풚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x17,0x01,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x0c,0x84,0xc4,0x84,0x04,0x84,0x3c,0x20,0x00,0xfe,0x38,0x04,0x28,0x00 -+// 54427 풛 ; -+,0x00,0x00,0x00,0x04,0x00,0x02,0x0f,0x00,0x0d,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x84,0x44,0x04,0xe4,0x04,0x1c,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 54428 풜 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x07,0x01,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x44,0xe4,0x04,0x84,0x3c,0x00,0xfc,0x04,0x9c,0x00,0xee,0x00 -+// 54429 풝 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x0c,0x01,0x0d,0x00,0x00,0x00,0x05,0x04,0x05,0x00,0x00,0x08,0x24,0x04,0x44,0x44,0x04,0x84,0xbc,0x00,0x04,0x84,0x84,0x04,0x84,0x00 -+// 54430 풞 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0x84,0x3c,0x00,0xbc,0xa4,0xa4,0x24,0xbc,0x00 -+// 54431 풟 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x0d,0x00,0x0f,0x04,0x07,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0x84,0x3c,0x00,0xcc,0x24,0x24,0x24,0x24,0x00 -+// 54432 풠 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x07,0x01,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0x84,0x3c,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 54433 풡 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0x84,0x3c,0x00,0xbc,0xa0,0xbc,0x20,0x3e,0x00 -+// 54434 풢 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x1f,0x01,0x01,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x44,0x84,0x44,0xe4,0x04,0x84,0x3c,0x00,0xa8,0x0c,0x28,0x08,0x7e,0x00 -+// 54435 풣 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x07,0x01,0x01,0x05,0x00,0x07,0x04,0x03,0x00,0x00,0x08,0x64,0x84,0x44,0xe4,0x04,0x84,0x3c,0x00,0x80,0x7e,0x1c,0x24,0x24,0x00 -+// 54436 풤 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x0c,0x0f,0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x64,0x84,0x44,0xe4,0x04,0x84,0x3c,0x00,0x0c,0x04,0x04,0x0c,0xa0,0x00 -+// 54437 풥 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x0c,0x07,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x04,0x44,0x44,0x04,0x84,0x3c,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54438 풦 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x01,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x08,0x64,0x84,0x44,0xe4,0x04,0x84,0x3c,0x00,0x88,0x48,0xdc,0x52,0x62,0x00 -+// 54439 풧 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x0e,0x00,0x09,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x64,0x84,0x44,0xc4,0x04,0x84,0x3c,0x04,0x20,0x60,0x58,0x84,0x02,0x00 -+// 54440 풨 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x01,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0x84,0x3c,0x00,0x08,0x08,0x98,0x56,0x22,0x00 -+// 54441 풩 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x0c,0x03,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x84,0x44,0x44,0x04,0xc4,0x3c,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 54442 풪 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x0e,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0xc4,0x44,0x44,0x04,0x84,0x3c,0x00,0x04,0x20,0x60,0x88,0x06,0x00 -+// 54443 풫 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0xc4,0x34,0x00,0x60,0xfc,0x20,0xd8,0x04,0x00 -+// 54444 풬 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x0c,0x07,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x04,0x44,0xc4,0x04,0x84,0x3c,0x00,0xec,0x04,0xfc,0x04,0x04,0x00 -+// 54445 풭 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x0e,0x01,0x09,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x24,0x84,0x44,0x84,0x04,0x84,0x3c,0x00,0x0c,0x00,0x0c,0x00,0x8c,0x00 -+// 54446 풮 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x0c,0x03,0x09,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x84,0x44,0x84,0x04,0x84,0x3c,0x00,0xfc,0x10,0x88,0x90,0x9e,0x00 -+// 54447 풯 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x01,0x09,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x84,0x44,0xe4,0x04,0x84,0x3c,0x60,0x00,0x70,0x58,0x88,0x50,0x00 -+// 54448 풰 ; -+,0x00,0x00,0x00,0x00,0x0e,0x01,0x05,0x0f,0x00,0x1e,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0xd4,0x14,0x14,0x74,0x14,0x14,0x04,0x04,0x00 -+// 54449 풱 ; -+,0x00,0x00,0x00,0x05,0x01,0x01,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x34,0x14,0x04,0x04,0x04,0x04,0x04,0x00 -+// 54450 풲 ; -+,0x00,0x00,0x00,0x05,0x01,0x00,0x0c,0x07,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x54,0x14,0x74,0x14,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 54451 풳 ; -+,0x00,0x00,0x00,0x09,0x01,0x05,0x0e,0x03,0x02,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x34,0x14,0x08,0x88,0x98,0xa4,0x82,0x00 -+// 54452 풴 ; -+,0x00,0x00,0x00,0x00,0x01,0x05,0x05,0x00,0x0f,0x00,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xb4,0x14,0x14,0xd4,0x14,0x14,0x74,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 54453 풵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x01,0x09,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x94,0xd4,0x94,0x14,0x14,0x06,0x18,0x18,0x24,0xc2,0x00 -+// 54454 풶 ; -+,0x00,0x00,0x00,0x09,0x01,0x05,0x0e,0x03,0x02,0x00,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x74,0x30,0x00,0xfe,0x38,0x44,0x38,0x00 -+// 54455 풷 ; -+,0x00,0x00,0x00,0x00,0x01,0x05,0x0d,0x00,0x0e,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x94,0x14,0x14,0xd4,0x94,0x14,0x14,0x0c,0x00,0x00,0x00,0xfe,0x00 -+// 54456 풸 ; -+,0x00,0x00,0x00,0x09,0x01,0x05,0x0d,0x01,0x0a,0x02,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x94,0x14,0x74,0x00,0xfc,0x04,0x9c,0x00,0xee,0x00 -+// 54457 풹 ; -+,0x00,0x00,0x00,0x04,0x01,0x00,0x00,0x0f,0x01,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x14,0x14,0x74,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 54458 풺 ; -+,0x00,0x00,0x00,0x01,0x01,0x04,0x0f,0x01,0x0a,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0xd4,0x14,0x74,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54459 풻 ; -+,0x00,0x00,0x00,0x04,0x01,0x00,0x0c,0x07,0x01,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x34,0x94,0x94,0x94,0x54,0x14,0x74,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 54460 풼 ; -+,0x00,0x00,0x00,0x01,0x01,0x05,0x0e,0x03,0x02,0x00,0x07,0x00,0x05,0x04,0x06,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x54,0x14,0x74,0x10,0x88,0x88,0x18,0x24,0x42,0x00 -+// 54461 풽 ; -+,0x00,0x00,0x00,0x05,0x01,0x00,0x0f,0x00,0x0f,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x0c,0x34,0x94,0x14,0x14,0xd4,0x14,0x74,0x10,0xbc,0xa0,0xbc,0x20,0x3e,0x00 -+// 54462 풾 ; -+,0x00,0x00,0x00,0x0f,0x01,0x05,0x0c,0x03,0x02,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0x74,0x00,0xbe,0x0c,0x24,0x00,0x0e,0x00 -+// 54463 풿 ; -+,0x00,0x00,0x00,0x04,0x01,0x00,0x0c,0x01,0x0b,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0xd4,0x94,0x74,0x10,0x80,0x7e,0x1c,0x24,0x34,0x00 -+// 54464 퓀 ; -+,0x00,0x00,0x00,0x00,0x01,0x05,0x0f,0x00,0x0e,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x94,0x14,0x14,0x14,0x04,0x84,0x84,0x84,0xe0,0x00 -+// 54465 퓁 ; -+,0x00,0x00,0x00,0x04,0x01,0x00,0x0c,0x03,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x94,0x94,0x94,0x14,0x14,0x74,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54466 퓂 ; -+,0x00,0x00,0x00,0x01,0x01,0x05,0x0f,0x01,0x0a,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0x94,0x14,0xf4,0x10,0x88,0x88,0x9c,0x82,0x42,0x00 -+// 54467 퓃 ; -+,0x00,0x00,0x00,0x09,0x01,0x05,0x0e,0x03,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x14,0x14,0xf4,0x04,0x20,0x60,0x58,0x8c,0x02,0x00 -+// 54468 퓄 ; -+,0x00,0x00,0x00,0x04,0x01,0x00,0x0e,0x07,0x00,0x00,0x01,0x01,0x02,0x06,0x08,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x54,0x14,0x74,0x10,0x08,0x08,0x94,0x62,0x42,0x00 -+// 54469 퓅 ; -+,0x00,0x00,0x00,0x00,0x01,0x00,0x0f,0x00,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x90,0x10,0x92,0xd2,0x92,0x70,0x10,0x10,0x44,0x84,0x84,0x78,0x00 -+// 54470 퓆 ; -+,0x00,0x00,0x00,0x05,0x00,0x00,0x0c,0x03,0x01,0x00,0x00,0x02,0x00,0x00,0x01,0x00,0x00,0x0c,0x34,0x94,0x94,0x94,0x54,0x14,0x14,0x10,0x0c,0x60,0x60,0x88,0x04,0x00 -+// 54471 퓇 ; -+,0x00,0x00,0x00,0x01,0x01,0x00,0x0c,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0x54,0x14,0x74,0x00,0x00,0xfc,0x60,0x98,0x06,0x00 -+// 54472 퓈 ; -+,0x00,0x00,0x00,0x05,0x01,0x05,0x0f,0x01,0x0a,0x02,0x03,0x00,0x00,0x02,0x00,0x00,0x00,0x08,0x24,0x94,0x14,0x14,0xd4,0x14,0x14,0x14,0xfc,0x04,0x3c,0x04,0x04,0x00 -+// 54473 퓉 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x0c,0x01,0x0a,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0xd4,0x14,0x74,0x00,0x1c,0x00,0xfc,0x00,0xfe,0x00 -+// 54474 퓊 ; -+,0x00,0x00,0x00,0x00,0x01,0x04,0x0f,0x01,0x0a,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x94,0x14,0x14,0xd4,0x14,0x14,0x14,0x0c,0x10,0x98,0x90,0x9e,0x00 -+// 54475 퓋 ; -+,0x00,0x00,0x00,0x05,0x05,0x00,0x00,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x94,0x94,0x14,0x54,0x14,0x74,0x10,0x00,0xf0,0x58,0x88,0x50,0x00 -+// 54476 퓌 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x0f,0x00,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x44,0xf4,0x04,0xe4,0x84,0x84,0x04,0x04,0x04,0x00 -+// 54477 퓍 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x84,0x44,0x44,0xe4,0x04,0x84,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 54478 퓎 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x64,0x44,0x44,0x44,0x04,0x74,0x84,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54479 퓏 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x44,0x84,0x44,0x04,0xe4,0x7c,0x04,0x00,0x08,0x88,0x98,0x94,0xa2,0x00 -+// 54480 퓐 ; -+,0x00,0x00,0x00,0x08,0x00,0x04,0x00,0x0f,0x00,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0xe4,0x84,0x84,0x84,0x04,0x64,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 54481 퓑 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x24,0x84,0x44,0x84,0xc4,0x7c,0x04,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 54482 퓒 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x01,0x09,0x00,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x64,0x84,0x44,0xe4,0x04,0xe4,0x04,0x38,0x00,0xf8,0x3c,0x24,0x38,0x00 -+// 54483 퓓 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xc4,0x44,0x04,0xe4,0x1c,0x84,0x00,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 54484 퓔 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x03,0x01,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x84,0x04,0xe4,0x04,0xc4,0x04,0x00,0xfc,0x00,0x18,0x00,0xfe,0x00 -+// 54485 퓕 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x08,0x00,0x0d,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x64,0x84,0x44,0xe4,0x04,0xe4,0x04,0x00,0xbc,0x84,0x84,0x04,0x04,0x00 -+// 54486 퓖 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x01,0x00,0x00,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x64,0x84,0x44,0xe4,0x04,0xe4,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54487 퓗 ; -+,0x00,0x00,0x00,0x04,0x02,0x02,0x00,0x00,0x0c,0x00,0x0d,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0xc4,0x44,0x64,0x04,0xe4,0x84,0x00,0xe4,0x3c,0x24,0x24,0x24,0x00 -+// 54488 퓘 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x09,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x64,0x84,0x44,0xe4,0x04,0xe4,0x04,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 54489 퓙 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x64,0x84,0x44,0xe4,0x04,0xc4,0x04,0x00,0xb8,0x20,0x30,0x20,0x1e,0x00 -+// 54490 퓚 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0d,0x00,0x05,0x00,0x05,0x04,0x06,0x00,0x00,0x00,0x0c,0x84,0x44,0xc4,0x04,0x64,0x04,0x00,0xbc,0x08,0x28,0x08,0x7e,0x00 -+// 54491 퓛 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x01,0x01,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0xe4,0x04,0x10,0x80,0xb8,0x14,0x20,0x14,0x00 -+// 54492 퓜 ; -+,0x00,0x00,0x00,0x04,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xc4,0x64,0x84,0x00,0x04,0x04,0x04,0x0c,0x80,0x00 -+// 54493 퓝 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0d,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x64,0x04,0x44,0xe4,0x04,0xf4,0x84,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 54494 퓞 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x07,0x01,0x00,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0xe4,0x84,0x44,0xe4,0x04,0xc4,0x04,0x00,0x88,0x88,0x9c,0x92,0x00,0x00 -+// 54495 퓟 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x0f,0x00,0x1f,0x01,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x64,0x84,0x44,0x84,0xc4,0x34,0x84,0x04,0x20,0x60,0x50,0x8c,0x02,0x00 -+// 54496 퓠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x09,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x4c,0x84,0x44,0xe4,0x04,0xe4,0x04,0x00,0x08,0x08,0x94,0x66,0x40,0x00 -+// 54497 퓡 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x0f,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x84,0x44,0x84,0x04,0x3c,0x84,0x04,0x30,0xc8,0x84,0x84,0x78,0x00 -+// 54498 퓢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x84,0x44,0x84,0xc4,0x7c,0x04,0x00,0x7c,0x60,0x70,0x88,0x04,0x00 -+// 54499 퓣 ; -+,0x00,0x00,0x00,0x00,0x02,0x02,0x00,0x03,0x01,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x64,0x84,0x44,0xe4,0x0c,0xc4,0x04,0x00,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 54500 퓤 ; -+,0x00,0x00,0x00,0x00,0x02,0x00,0x07,0x00,0x0c,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x44,0x44,0x44,0x04,0xf4,0x84,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 54501 퓥 ; -+,0x00,0x00,0x00,0x0c,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x84,0x44,0x44,0x84,0x64,0x84,0x00,0x1c,0x00,0xfc,0x00,0xfc,0x00 -+// 54502 퓦 ; -+,0x00,0x00,0x00,0x04,0x00,0x02,0x0f,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0x84,0x44,0x84,0xc4,0x7c,0x84,0x00,0xfc,0x10,0x88,0x90,0x9e,0x00 -+// 54503 퓧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4c,0x84,0x44,0xe4,0x0c,0xc4,0x00,0x60,0x06,0x70,0x88,0x88,0x70,0x00 -+// 54504 퓨 ; -+,0x00,0x00,0x07,0x00,0x03,0x01,0x07,0x00,0x1f,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xfc,0x20,0x20,0x20,0xf8,0x00,0xff,0x10,0x10,0x10,0x10,0x00,0x00,0x00 -+// 54505 퓩 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1e,0x02,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x28,0x00,0x1f,0x10,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 54506 퓪 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x02,0x02,0x0f,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x02,0x10,0x10,0x3c,0x00,0x00,0x00,0x08,0x00 -+// 54507 퓫 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x04,0x10,0x02,0x02,0x0f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x60,0x20,0x20,0x28,0x00,0x1f,0x10,0x00,0x10,0x10,0x38,0x44,0x80,0x00 -+// 54508 퓬 ; -+,0x00,0x00,0x07,0x00,0x02,0x01,0x07,0x00,0x1f,0x01,0x00,0x06,0x04,0x02,0x00,0x00,0x00,0x00,0xfc,0x20,0x20,0x20,0xf8,0x00,0x3e,0x10,0x10,0x10,0x00,0x00,0x00,0x00 -+// 54509 퓭 ; -+,0x00,0x00,0x06,0x00,0x01,0x00,0x07,0x00,0x02,0x02,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x08,0x60,0x20,0x20,0x20,0xf8,0x0e,0x10,0x10,0xf8,0x30,0x30,0x4c,0x80,0x00 -+// 54510 퓮 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1c,0x02,0x02,0x08,0x08,0x08,0x0c,0x04,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x1e,0x10,0x30,0x04,0x30,0x48,0x48,0x78,0x00 -+// 54511 퓯 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1a,0x02,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x10,0x10,0x18,0x00,0x00,0x00,0xf8,0x00 -+// 54512 퓰 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x06,0x00,0x02,0x00,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x00,0x1e,0x10,0x10,0xf0,0x10,0x70,0x00,0xf8,0x00 -+// 54513 퓱 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x02,0x00,0x05,0x00,0x0c,0x04,0x07,0x00,0x00,0x00,0x60,0x20,0x20,0x38,0x00,0x3e,0x10,0x00,0x88,0x88,0x08,0x08,0x08,0x00 -+// 54514 퓲 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x02,0x03,0x01,0x01,0x0c,0x00,0x07,0x00,0x00,0x00,0x60,0x20,0x20,0x38,0x00,0x3e,0x10,0x10,0x24,0x24,0x20,0x24,0x20,0x00 -+// 54515 퓳 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x02,0x00,0x01,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xe0,0x20,0x20,0x38,0x00,0x1f,0x10,0x18,0x64,0x3c,0x24,0x2c,0x24,0x00 -+// 54516 퓴 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1e,0x02,0x02,0x01,0x01,0x0c,0x00,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x1f,0x10,0x10,0x90,0x10,0x28,0x44,0x80,0x00 -+// 54517 퓵 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x04,0x1c,0x02,0x00,0x0d,0x01,0x0d,0x04,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x28,0x00,0x1f,0x10,0x00,0xf8,0x00,0x38,0x20,0x3c,0x00 -+// 54518 퓶 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x02,0x00,0x05,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x1f,0x10,0x00,0x78,0x08,0x28,0x28,0x7c,0x00 -+// 54519 퓷 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x02,0x02,0x0d,0x01,0x0c,0x04,0x06,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x1e,0x10,0x30,0xdc,0x10,0x48,0x40,0x38,0x00 -+// 54520 퓸 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x02,0x02,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x08,0x60,0x20,0x20,0x20,0xf8,0x0e,0x10,0x00,0x30,0x10,0x10,0x10,0x00,0x00 -+// 54521 퓹 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x10,0x02,0x02,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x60,0x20,0x20,0x38,0x00,0x3f,0x10,0x10,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 54522 퓺 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x00,0x02,0x03,0x08,0x05,0x00,0x04,0x04,0x00,0x00,0x00,0x60,0x20,0x20,0x38,0x00,0x1f,0x10,0x10,0x90,0x90,0xa8,0xa4,0xc0,0x00 -+// 54523 퓻 ; -+,0x00,0x00,0x06,0x02,0x01,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x60,0x20,0x20,0x28,0x00,0x1e,0x10,0x90,0xc0,0x80,0x20,0x18,0x0c,0x00 -+// 54524 퓼 ; -+,0x00,0x00,0x07,0x02,0x01,0x05,0x00,0x10,0x02,0x02,0x03,0x03,0x03,0x04,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x38,0x00,0x3f,0x10,0x00,0x10,0x10,0xa8,0x44,0x00,0x00 -+// 54525 퓽 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x07,0x00,0x1e,0x02,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x08,0x60,0x20,0x20,0x20,0xf8,0x02,0x10,0x10,0xd0,0x10,0x10,0x10,0xe0,0x00 -+// 54526 퓾 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x02,0x02,0x07,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0xf8,0x1e,0x10,0x10,0xf8,0xc0,0xa0,0x18,0x04,0x00 -+// 54527 퓿 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x02,0x03,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0xe0,0x20,0x20,0x28,0x00,0x3f,0x10,0xd0,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 54528 픀 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x07,0x00,0x02,0x02,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x06,0x10,0x00,0xb8,0x08,0xc8,0x08,0x08,0x00 -+// 54529 픁 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x02,0x00,0x07,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x38,0x00,0x3e,0x10,0x10,0xf0,0x00,0xf0,0x00,0xf8,0x00 -+// 54530 픂 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x02,0x02,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x06,0x10,0x10,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 54531 픃 ; -+,0x00,0x00,0x07,0x02,0x01,0x01,0x00,0x1f,0x02,0x02,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x60,0x20,0x20,0x38,0x00,0x3e,0x10,0xe0,0xfc,0xc0,0x20,0x00,0xe0,0x00 -+// 54532 프 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x03,0x01,0x0f,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x00,0x00,0xfc,0x20,0x10,0x20,0x20,0xfc,0x00,0x00,0x00,0x06,0x00,0x00,0x00 -+// 54533 픅 ; -+,0x00,0x00,0x07,0x02,0x00,0x00,0x06,0x00,0x18,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x20,0x20,0x20,0x00,0x06,0x00,0x00,0xb8,0x08,0x08,0x00,0x00,0x00 -+// 54534 픆 ; -+,0x00,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x60,0x20,0x20,0x78,0x00,0x1e,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 54535 픇 ; -+,0x00,0x00,0x0f,0x00,0x01,0x01,0x07,0x00,0x1c,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x00,0x00,0x30,0x30,0x28,0x44,0x80,0x00 -+// 54536 픈 ; -+,0x00,0x00,0x07,0x00,0x02,0x01,0x07,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 54537 픉 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x06,0x00,0x00,0x00,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x00,0x06,0x00,0x04,0xf0,0x30,0x30,0x4c,0x80,0x00 -+// 54538 픊 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x08,0x08,0x08,0x08,0x04,0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0xf8,0x00,0xfe,0x00,0x00,0xf0,0x38,0x48,0x48,0x00 -+// 54539 픋 ; -+,0x00,0x00,0x07,0x00,0x01,0x00,0x07,0x00,0x1c,0x00,0x04,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x80,0x02,0x00,0x00,0x38,0x00,0x00,0x00,0xf8,0x00 -+// 54540 플 ; -+,0x00,0x00,0x0f,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x3e,0x00,0xf0,0x10,0xf0,0x00,0xf8,0x00 -+// 54541 픍 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x0f,0x00,0x0d,0x04,0x05,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xf8,0x00,0x3f,0x00,0xa8,0x88,0x08,0x08,0x08,0x00 -+// 54542 픎 ; -+,0x00,0x00,0x04,0x00,0x01,0x01,0x06,0x00,0x1e,0x00,0x01,0x00,0x0f,0x04,0x07,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x24,0x24,0x24,0x24,0x20,0x00 -+// 54543 픏 ; -+,0x00,0x00,0x06,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x05,0x01,0x0c,0x04,0x07,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0xf8,0x00,0xbe,0x08,0x64,0x3c,0x24,0x2c,0x24,0x00 -+// 54544 픐 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x0f,0x00,0x0d,0x00,0x07,0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0xf8,0x00,0x3e,0x00,0x90,0x10,0x28,0x44,0x80,0x00 -+// 54545 픑 ; -+,0x00,0x00,0x06,0x00,0x01,0x00,0x07,0x00,0x1f,0x00,0x0d,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0x80,0x00,0x06,0x00,0x78,0x00,0x38,0x00,0x3c,0x00 -+// 54546 픒 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x05,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0xf8,0x00,0xbe,0x00,0x78,0x08,0x28,0x28,0x7c,0x00 -+// 54547 픓 ; -+,0x00,0x00,0x06,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x0d,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xf8,0x00,0x3e,0x30,0x04,0x10,0x28,0x44,0x28,0x00 -+// 54548 픔 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x06,0x00,0x18,0x00,0x07,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x00,0x02,0x00,0x00,0xf8,0x10,0x10,0x10,0x00,0x00 -+// 54549 픕 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x06,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x3f,0x00,0x10,0xf0,0x10,0x10,0x10,0x00 -+// 54550 픖 ; -+,0x00,0x00,0x04,0x02,0x01,0x00,0x06,0x00,0x1e,0x01,0x08,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x20,0x20,0x20,0x20,0x00,0x00,0x00,0x10,0x90,0x90,0x98,0xa4,0xc0,0x00 -+// 54551 픗 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x06,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x08,0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0x00,0x00,0x00,0x80,0xc0,0xc0,0x30,0x08,0x00,0x00 -+// 54552 픘 ; -+,0x00,0x00,0x00,0x02,0x01,0x00,0x07,0x00,0x1f,0x00,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x00,0x20,0x20,0x20,0xf8,0x00,0x3f,0x00,0x10,0x10,0x38,0xa4,0x44,0x00 -+// 54553 픙 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x06,0x00,0x1f,0x00,0x01,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0x00,0x00,0x02,0x40,0x60,0x10,0x10,0x10,0xe0,0x00 -+// 54554 픚 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1c,0x00,0x07,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x00,0x00,0xfc,0xc0,0xa0,0x18,0x04,0x00 -+// 54555 픛 ; -+,0x00,0x00,0x00,0x00,0x01,0x01,0x06,0x00,0x18,0x01,0x00,0x07,0x00,0x01,0x04,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x00,0x06,0x00,0x00,0x00,0xf8,0xc0,0x10,0x0c,0x00 -+// 54556 픜 ; -+,0x00,0x00,0x07,0x02,0x01,0x00,0x06,0x00,0x18,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xe0,0x20,0x20,0x20,0x00,0x06,0x00,0x00,0xc8,0x08,0xc8,0x08,0x08,0x00 -+// 54557 픝 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x3f,0x00,0x38,0x00,0x30,0x00,0x18,0x00 -+// 54558 픞 ; -+,0x00,0x00,0x07,0x00,0x01,0x01,0x07,0x00,0x1e,0x00,0x07,0x00,0x00,0x01,0x0f,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xf8,0x00,0x00,0x00,0xf8,0x20,0x20,0x20,0xfc,0x00 -+// 54559 픟 ; -+,0x00,0x00,0x06,0x00,0x01,0x01,0x07,0x00,0x1f,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0xf8,0x00,0x02,0xc0,0x0c,0xc0,0x20,0x00,0x20,0x00 -+// 54560 픠 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x02,0x00,0x0f,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x44,0x44,0x44,0xf4,0x04,0x0c,0xc4,0x04,0x04,0x04,0x00 -+// 54561 픡 ; -+,0x00,0x00,0x00,0x07,0x02,0x02,0x07,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 54562 픢 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x06,0x00,0x0f,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 54563 픣 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0a,0x00,0x07,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0x08,0x88,0x88,0x96,0xa2,0x00 -+// 54564 픤 ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x08,0x00,0x0f,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x54,0x04,0x3c,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 54565 픥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0a,0x00,0x0f,0x00,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0x0e,0x18,0x18,0xa4,0x42,0x00 -+// 54566 픦 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x04,0x00,0x02,0x03,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x1c,0x84,0x00,0x00,0xfe,0x38,0x24,0x2c,0x00 -+// 54567 픧 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x02,0x00,0x01,0x04,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x74,0x04,0xc4,0x00,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 54568 픨 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x0c,0x84,0x00,0xfc,0x00,0xf8,0x00,0xce,0x00 -+// 54569 픩 ; -+,0x00,0x00,0x00,0x06,0x00,0x02,0x0f,0x00,0x0f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x34,0x04,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 54570 픪 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54571 픫 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x14,0x84,0x00,0xc4,0x24,0x24,0x24,0x24,0x00 -+// 54572 픬 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x06,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x14,0x84,0x00,0x88,0x88,0x98,0x26,0x42,0x00 -+// 54573 픭 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x04,0x84,0x00,0xbc,0xa0,0xbc,0x20,0x3e,0x00 -+// 54574 픮 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x0c,0xe4,0x44,0x44,0xe4,0x1c,0x84,0x04,0xb8,0x08,0x28,0x08,0x7e,0x00 -+// 54575 픯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0a,0x00,0x0f,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0x80,0xfe,0x1c,0x20,0x14,0x00 -+// 54576 픰 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0x04,0x04,0x04,0x0c,0x80,0x00 -+// 54577 픱 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x06,0x00,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x04,0xc4,0x00,0x0c,0x84,0x84,0x84,0xfc,0x00 -+// 54578 픲 ; -+,0x00,0x00,0x00,0x08,0x04,0x02,0x0f,0x00,0x1f,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x84,0x44,0x04,0xe4,0x3c,0x04,0x00,0x88,0x88,0x9c,0x92,0x22,0x00 -+// 54579 픳 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0a,0x00,0x00,0x0e,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x04,0xe4,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 54580 픴 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x01,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xc4,0x44,0x44,0xf4,0x1c,0x84,0x00,0x08,0x88,0x98,0x76,0x02,0x00 -+// 54581 픵 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe4,0xc4,0x44,0xe4,0x0c,0xe4,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 54582 픶 ; -+,0x00,0x00,0x00,0x0f,0x04,0x02,0x0a,0x00,0x0f,0x00,0x00,0x02,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xe4,0x0c,0xc4,0x00,0x0c,0x60,0x60,0x98,0x04,0x00 -+// 54583 픷 ; -+,0x00,0x00,0x00,0x08,0x04,0x02,0x0f,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xc4,0x44,0x04,0xe4,0x3c,0x04,0x00,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 54584 픸 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0a,0x00,0x07,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xf4,0x0c,0xc4,0x00,0xcc,0x04,0x7c,0x04,0x04,0x00 -+// 54585 픹 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x0f,0x00,0x0f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0xf4,0x04,0x84,0x00,0x0c,0x00,0xbc,0x00,0xfe,0x00 -+// 54586 픺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0xe4,0x0c,0xc4,0x00,0xfc,0x10,0x88,0x90,0xfe,0x00 -+// 54587 픻 ; -+,0x00,0x00,0x00,0x00,0x04,0x02,0x0f,0x00,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x84,0x44,0x04,0xe4,0x0c,0xc4,0x00,0x00,0xfe,0x50,0x88,0xd0,0x00 -+// 54588 피 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x44,0x44,0x44,0x44,0x5c,0x84,0x04,0x04,0x04,0x04,0x00 -+// 54589 픽 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xf4,0x44,0x44,0x44,0x54,0x84,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 54590 픾 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x74,0x04,0x00,0x84,0x84,0x84,0x84,0x84,0x00 -+// 54591 픿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x1f,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x44,0x84,0x08,0x8c,0x88,0x94,0x92,0xa1,0x00 -+// 54592 핀 ; -+,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x1f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0x84,0x44,0x44,0x44,0x44,0x84,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 54593 핁 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x1f,0x00,0x04,0x00,0x00,0x02,0x03,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x54,0x84,0x00,0x7e,0x08,0x18,0x36,0x42,0x00 -+// 54594 핂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x00,0x1f,0x00,0x06,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x44,0x64,0x04,0x18,0x06,0x18,0x24,0x24,0x3c,0x00 -+// 54595 핃 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0xf4,0x04,0x44,0x44,0x44,0x84,0x00,0x1c,0x80,0x00,0x00,0xfe,0x00 -+// 54596 필 ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x03,0x08,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0x64,0x44,0x44,0x44,0x44,0xc4,0x00,0xfc,0x04,0xbc,0x80,0xee,0x00 -+// 54597 핅 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x00,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x04,0xf4,0x44,0x24,0x44,0x74,0x04,0x00,0x84,0x84,0x04,0x04,0x04,0x00 -+// 54598 핆 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x02,0x1f,0x00,0x06,0x00,0x07,0x02,0x03,0x00,0x00,0x08,0x04,0xf4,0x44,0x64,0x44,0x44,0x84,0x00,0xb4,0x84,0x84,0x04,0x90,0x00 -+// 54599 핇 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0xf4,0x44,0x24,0x44,0x74,0x04,0x44,0xa4,0xbc,0x24,0x24,0x24,0x00 -+// 54600 핈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x1f,0x00,0x00,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xf4,0x44,0x44,0x44,0x54,0x84,0x00,0x88,0x88,0x98,0x16,0xa2,0x00 -+// 54601 핉 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x0f,0x00,0x06,0x00,0x06,0x04,0x07,0x00,0x00,0x08,0x04,0xf4,0x44,0x44,0x44,0x74,0x04,0x04,0xb0,0xa0,0x20,0x20,0x1e,0x00 -+// 54602 핊 ; -+,0x00,0x00,0x00,0x0b,0x00,0x04,0x02,0x02,0x1f,0x00,0x04,0x00,0x07,0x00,0x03,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x44,0x44,0x84,0x00,0xbc,0x84,0x04,0x00,0x7e,0x00 -+// 54603 핋 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x00,0x1f,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x54,0x84,0x18,0x82,0xb8,0x1c,0x22,0x24,0x00 -+// 54604 핌 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x64,0x04,0x00,0xfc,0x04,0x84,0x84,0xf0,0x00 -+// 54605 핍 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x0f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xf4,0x44,0x44,0x44,0x44,0x84,0x04,0x84,0x84,0x84,0x84,0x84,0x00 -+// 54606 핎 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x1f,0x00,0x04,0x03,0x00,0x02,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x74,0x04,0x88,0x48,0xc8,0x4c,0x52,0x60,0x00 -+// 54607 핏 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x74,0x04,0x60,0x20,0x60,0x48,0x84,0x02,0x00 -+// 54608 핐 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x02,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x44,0x84,0x08,0x8c,0x88,0x54,0x32,0x20,0x00 -+// 54609 핑 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x5c,0x84,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 54610 핒 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x00,0x1f,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x44,0x64,0x04,0x00,0xfc,0x60,0x58,0x8c,0x02,0x00 -+// 54611 핓 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x02,0x1f,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0xe4,0x44,0x44,0x44,0x44,0x04,0x60,0x00,0xe0,0x60,0x8c,0x06,0x00 -+// 54612 핔 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x00,0x1f,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x04,0xf4,0x44,0x44,0x44,0x54,0x04,0x00,0xec,0x04,0xe4,0x04,0x04,0x00 -+// 54613 핕 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x0f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x04,0xf4,0x04,0x64,0x44,0x44,0x84,0x00,0xfc,0x00,0xfc,0x00,0xfe,0x00 -+// 54614 핖 ; -+,0x00,0x00,0x00,0x0f,0x00,0x04,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0xe4,0x04,0x44,0x44,0x4c,0x84,0x00,0x1c,0x10,0x90,0x90,0xfe,0x00 -+// 54615 핗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xe4,0x44,0x44,0x44,0x64,0x04,0x70,0x1e,0x20,0x88,0x88,0x70,0x00 -+// 54616 하 ; -+,0x00,0x00,0x00,0x07,0x00,0x1f,0x00,0x03,0x08,0x00,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0xe8,0x08,0x08,0x8f,0x08,0x88,0x88,0x08,0x08,0x08,0x00 -+// 54617 학 ; -+,0x00,0x00,0x07,0x00,0x1e,0x07,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x08,0x8a,0x88,0x88,0x00,0x10,0x08,0x08,0x08,0x08,0x00 -+// 54618 핚 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x08,0x07,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x8e,0x88,0x88,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 54619 핛 ; -+,0x00,0x00,0x07,0x00,0x1f,0x06,0x08,0x08,0x08,0x07,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x10,0x18,0x08,0xc8,0x08,0x8e,0x88,0x88,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 54620 한 ; -+,0x00,0x00,0x00,0x07,0x00,0x1a,0x07,0x08,0x08,0x08,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x08,0x8a,0x88,0x88,0x08,0x00,0x00,0x00,0xfc,0x00 -+// 54621 핝 ; -+,0x00,0x00,0x07,0x00,0x1f,0x06,0x08,0x08,0x08,0x07,0x00,0x08,0x08,0x0d,0x04,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x8e,0x88,0x88,0x00,0x0c,0x30,0x30,0x68,0x84,0x00 -+// 54622 핞 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x00,0xfc,0x30,0x48,0x48,0x00 -+// 54623 핟 ; -+,0x00,0x00,0x06,0x00,0x1f,0x02,0x08,0x08,0x08,0x07,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x88,0x00,0x00,0xc0,0x00,0x00,0xbc,0x00 -+// 54624 할 ; -+,0x00,0x00,0x06,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x03,0x00,0x03,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8a,0x88,0x88,0x00,0xf8,0x08,0x78,0x00,0xfc,0x00 -+// 54625 핡 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x08,0x00,0x0b,0x01,0x0b,0x08,0x0f,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x58,0x08,0x08,0x08,0x08,0x00 -+// 54626 핢 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x09,0x01,0x0b,0x08,0x0f,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x00,0x00,0x58,0x48,0x48,0x48,0x58,0x00 -+// 54627 핣 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x09,0x00,0x1b,0x02,0x1a,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x98,0x48,0x48,0x48,0x48,0x00 -+// 54628 핤 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x09,0x00,0x0f,0x01,0x0b,0x08,0x0f,0x00,0x00,0x10,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x10,0x10,0x30,0x28,0x84,0x00 -+// 54629 핥 ; -+,0x00,0x00,0x06,0x00,0x1f,0x02,0x08,0x08,0x08,0x00,0x09,0x01,0x0f,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 54630 핦 ; -+,0x00,0x00,0x07,0x00,0x1f,0x03,0x08,0x08,0x08,0x02,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x78,0x00,0x48,0x10,0x9c,0x00 -+// 54631 핧 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x0f,0x01,0x0e,0x04,0x06,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x20,0x00,0x78,0x28,0x44,0x28,0x00 -+// 54632 함 ; -+,0x00,0x00,0x07,0x00,0x1f,0x02,0x08,0x08,0x08,0x07,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x8a,0x88,0x88,0x08,0x08,0x18,0x08,0x00,0xf0,0x00 -+// 54633 합 ; -+,0x00,0x00,0x07,0x00,0x1e,0x07,0x08,0x08,0x0d,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x08,0xc8,0x08,0x8f,0x88,0x88,0x10,0x08,0x18,0x08,0x08,0x18,0x00 -+// 54634 핪 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x09,0x00,0x01,0x0d,0x04,0x04,0x04,0x00,0x00,0x20,0x18,0x08,0xc8,0x08,0x8e,0x80,0x80,0x00,0x90,0x90,0xb8,0xa4,0xc0,0x00 -+// 54635 핫 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x18,0x08,0x08,0x08,0x8a,0x88,0x88,0x00,0x40,0x40,0xa0,0x18,0x04,0x00 -+// 54636 핬 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x10,0x10,0xb8,0xe4,0x44,0x00 -+// 54637 항 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x05,0x08,0x08,0x07,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x88,0x8f,0x88,0x08,0x20,0x90,0x08,0x08,0xf0,0x00 -+// 54638 핮 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x18,0x08,0x08,0x08,0x8e,0x88,0x80,0x00,0x18,0x40,0xc0,0x10,0x08,0x00 -+// 54639 핯 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x09,0x00,0x00,0x07,0x00,0x00,0x02,0x00,0x00,0x10,0x08,0x08,0xc8,0x08,0x8e,0x88,0x00,0x00,0xc0,0xfc,0xc0,0xb0,0x08,0x00 -+// 54640 핰 ; -+,0x00,0x00,0x06,0x00,0x1f,0x02,0x08,0x08,0x08,0x07,0x01,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x88,0x00,0x98,0x08,0xd8,0x08,0x00,0x00 -+// 54641 핱 ; -+,0x00,0x00,0x07,0x00,0x1f,0x02,0x08,0x08,0x08,0x06,0x00,0x03,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8a,0x88,0x88,0x00,0x00,0x00,0x08,0x00,0x1c,0x00 -+// 54642 핲 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x00,0x08,0x06,0x07,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0xf8,0x20,0x10,0x00,0xfc,0x00 -+// 54643 핳 ; -+,0x00,0x00,0x07,0x00,0x1f,0x03,0x08,0x08,0x08,0x00,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x08,0x8e,0x88,0x80,0x00,0x00,0xe0,0xa0,0x10,0xa0,0x00 -+// 54644 해 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x08,0x08,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0x9c,0x94,0x94,0x14,0x14,0x04,0x04,0x00 -+// 54645 핵 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x05,0x08,0x08,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0x94,0x94,0x00,0xec,0x04,0x04,0x04,0x04,0x00 -+// 54646 핶 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x0c,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x9c,0x94,0x84,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54647 핷 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xe4,0x04,0x9c,0xa4,0x80,0x00,0x88,0x88,0x98,0xa6,0xc2,0x00 -+// 54648 핸 ; -+,0x00,0x00,0x00,0x07,0x00,0x1f,0x02,0x04,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x04,0xc4,0x14,0x94,0x94,0x94,0x04,0x04,0x00,0x00,0x86,0x00 -+// 54649 핹 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x08,0x08,0x08,0x02,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x9c,0x94,0x80,0x00,0x1e,0x18,0x18,0x24,0xc2,0x00 -+// 54650 핺 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x04,0x08,0x05,0x00,0x04,0x04,0x04,0x06,0x02,0x00,0x00,0x00,0x64,0x24,0xe4,0x24,0xbc,0xa4,0xa4,0x30,0x00,0xf8,0x28,0x44,0x38,0x00 -+// 54651 핻 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x0d,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x24,0xe4,0x04,0x9c,0xa4,0xa4,0x00,0x00,0x80,0x00,0x00,0xfe,0x00 -+// 54652 핼 ; -+,0x00,0x00,0x00,0x06,0x13,0x02,0x0d,0x08,0x09,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x4c,0x24,0xa4,0x24,0x3c,0xa4,0x24,0x00,0xfc,0x00,0xbc,0x00,0xfe,0x00 -+// 54653 핽 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x04,0x08,0x04,0x02,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xc4,0x14,0x9c,0x94,0x84,0x00,0xb4,0x84,0x84,0x04,0x84,0x00 -+// 54654 핾 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x04,0x08,0x04,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xc4,0x14,0x9c,0x94,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54655 핿 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x04,0x08,0x04,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x9c,0x94,0x84,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 54656 햀 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x04,0x08,0x05,0x00,0x07,0x00,0x04,0x04,0x06,0x00,0x00,0x00,0x24,0x24,0xe4,0x04,0x9c,0xa4,0x84,0x00,0x88,0x98,0x1c,0x26,0x42,0x00 -+// 54657 햁 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x04,0x08,0x04,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x04,0x24,0x14,0xd4,0x14,0x9c,0x94,0x84,0x00,0xfc,0xa0,0x3c,0x20,0x3e,0x00 -+// 54658 햂 ; -+,0x00,0x00,0x00,0x03,0x1f,0x02,0x08,0x08,0x0d,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0xbc,0xa4,0x24,0x00,0xbc,0x0c,0x20,0x08,0x7e,0x00 -+// 54659 햃 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x04,0x08,0x04,0x00,0x05,0x01,0x07,0x04,0x02,0x00,0x00,0x08,0x24,0x24,0xe4,0x24,0xbc,0xa4,0xa4,0x00,0x00,0x78,0x3c,0xa4,0x38,0x00 -+// 54660 햄 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x9c,0x94,0x80,0x00,0x04,0x84,0x84,0x84,0x80,0x00 -+// 54661 햅 ; -+,0x00,0x00,0x00,0x07,0x01,0x02,0x04,0x08,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xe4,0x04,0x9c,0xa4,0xa4,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54662 햆 ; -+,0x00,0x00,0x00,0x03,0x1f,0x02,0x04,0x08,0x0c,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xe4,0x24,0xbc,0xa4,0xa4,0x00,0x88,0x88,0x9c,0x92,0x40,0x00 -+// 54663 햇 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x24,0x24,0xa4,0x04,0x9c,0xa4,0xa4,0x04,0x20,0x60,0x58,0x84,0x02,0x00 -+// 54664 했 ; -+,0x00,0x00,0x00,0x07,0x00,0x0a,0x07,0x08,0x08,0x07,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x08,0x24,0x04,0x84,0x04,0x14,0x9c,0x84,0x04,0x08,0x88,0x8c,0x52,0x22,0x00 -+// 54665 행 ; -+,0x00,0x00,0x00,0x07,0x00,0x0f,0x07,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x14,0x9c,0x94,0x04,0x10,0x48,0x84,0x44,0x78,0x00 -+// 54666 햊 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x0c,0x24,0x04,0x84,0x14,0x9c,0x84,0x80,0x00,0x7c,0x60,0x70,0x88,0x04,0x00 -+// 54667 햋 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x05,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0xbc,0xa4,0xa4,0x00,0x60,0xfc,0x60,0x98,0x04,0x00 -+// 54668 햌 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xa4,0x04,0x9c,0xa4,0x80,0x00,0xcc,0x04,0xf4,0x04,0x04,0x00 -+// 54669 햍 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x07,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x24,0xa4,0x24,0xb4,0xa4,0xa4,0x00,0x08,0x00,0xb8,0x00,0xfc,0x00 -+// 54670 햎 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x09,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x64,0x24,0xa4,0x24,0xbc,0xa4,0xa4,0x00,0x1c,0x10,0x90,0x90,0xfe,0x00 -+// 54671 햏 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x08,0x08,0x05,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xa4,0x24,0xbc,0xa4,0xa4,0x00,0x00,0x60,0x90,0x88,0xf0,0x00 -+// 54672 햐 ; -+,0x00,0x00,0x00,0x07,0x00,0x1b,0x00,0x03,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0xe8,0x0e,0x08,0x88,0x48,0x8e,0x08,0x08,0x08,0x00,0x00 -+// 54673 햑 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x18,0x00,0xc8,0x0e,0x88,0x88,0x88,0x00,0x00,0x18,0x08,0x08,0x00,0x00 -+// 54674 햒 ; -+,0x00,0x00,0x07,0x00,0x3f,0x07,0x08,0x00,0x09,0x06,0x09,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x8a,0x80,0x00,0x78,0x08,0x08,0x08,0x00,0x00 -+// 54675 햓 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x00,0x08,0x07,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x88,0x00,0x30,0x10,0x30,0x48,0x84,0x00 -+// 54676 햔 ; -+,0x00,0x00,0x00,0x07,0x00,0x1a,0x07,0x08,0x08,0x08,0x00,0x06,0x02,0x02,0x01,0x00,0x00,0x00,0x10,0x10,0x50,0x10,0x1e,0x90,0x90,0x9e,0x10,0x10,0x00,0x00,0xfc,0x00 -+// 54677 햕 ; -+,0x00,0x00,0x07,0x00,0x1f,0x02,0x08,0x08,0x08,0x07,0x08,0x08,0x08,0x0f,0x00,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x88,0x00,0x1c,0x30,0x30,0x48,0x84,0x00 -+// 54678 햖 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x00,0x08,0x00,0x00,0x0d,0x04,0x04,0x06,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x8c,0x00,0x00,0xfc,0x30,0x48,0x48,0x00 -+// 54679 햗 ; -+,0x00,0x00,0x04,0x00,0x1f,0x02,0x08,0x00,0x08,0x07,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x8e,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 54680 햘 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x08,0x06,0x03,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x8e,0x00,0xf0,0x10,0x30,0x00,0x0c,0x00 -+// 54681 햙 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x0f,0x01,0x0f,0x08,0x0f,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x08,0x00,0x78,0x08,0x08,0x08,0x08,0x00 -+// 54682 햚 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x09,0x00,0x09,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x0c,0x00,0x78,0x48,0x48,0x48,0x40,0x00 -+// 54683 햛 ; -+,0x00,0x00,0x07,0x00,0x3f,0x07,0x08,0x08,0x09,0x00,0x1b,0x02,0x1e,0x08,0x0e,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x8e,0x00,0x98,0x48,0x58,0x48,0x78,0x00 -+// 54684 햜 ; -+,0x00,0x00,0x07,0x00,0x3f,0x07,0x08,0x08,0x0d,0x00,0x0f,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x8a,0x08,0x00,0x10,0x10,0x30,0x48,0x84,0x00 -+// 54685 햝 ; -+,0x00,0x00,0x07,0x00,0x1f,0x06,0x08,0x08,0x08,0x00,0x0b,0x01,0x0b,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x8e,0x00,0x78,0x40,0x78,0x40,0x7c,0x00 -+// 54686 햞 ; -+,0x00,0x00,0x07,0x00,0x3f,0x07,0x08,0x08,0x09,0x00,0x0b,0x00,0x0a,0x08,0x0e,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x8c,0x00,0xf8,0x10,0x50,0x50,0x1c,0x00 -+// 54687 햟 ; -+,0x00,0x00,0x07,0x00,0x3f,0x07,0x08,0x08,0x09,0x00,0x0f,0x01,0x0e,0x00,0x06,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x88,0x30,0x00,0x70,0x28,0x44,0x28,0x00 -+// 54688 햠 ; -+,0x00,0x00,0x07,0x00,0x1f,0x02,0x08,0x08,0x08,0x06,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x88,0x00,0x10,0x10,0x10,0x10,0x00,0x00 -+// 54689 햡 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x09,0x00,0x02,0x03,0x03,0x02,0x03,0x00,0x00,0x00,0x10,0x10,0xd0,0x0e,0x90,0x98,0x98,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 54690 햢 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x01,0x0d,0x04,0x00,0x04,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x00,0x00,0x90,0x90,0xb8,0xa4,0xc0,0x00 -+// 54691 햣 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x18,0x00,0xc8,0x08,0x88,0x88,0x8c,0x00,0x40,0xc0,0xa0,0x18,0x00,0x00 -+// 54692 햤 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x03,0x01,0x03,0x04,0x08,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x8a,0x08,0x00,0x10,0x10,0xb8,0xc4,0x04,0x00 -+// 54693 향 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x07,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x8e,0x08,0x60,0x90,0x08,0x08,0xf0,0x00 -+// 54694 햦 ; -+,0x00,0x00,0x07,0x00,0x1e,0x07,0x08,0x08,0x08,0x06,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x10,0x18,0x48,0x08,0x0e,0x88,0x88,0x88,0x00,0x18,0x40,0xe0,0x10,0x08,0x00 -+// 54695 햧 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0f,0x00,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x8a,0x00,0x00,0x00,0xf8,0xc0,0xb0,0x08,0x00 -+// 54696 햨 ; -+,0x00,0x00,0x07,0x00,0x1f,0x06,0x08,0x00,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x88,0x00,0x30,0x10,0xd0,0x10,0x10,0x00 -+// 54697 햩 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x0d,0x00,0x04,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0xc8,0x0e,0x88,0x88,0x8c,0x00,0x38,0x00,0xf8,0x00,0xfc,0x00 -+// 54698 햪 ; -+,0x00,0x00,0x07,0x00,0x1f,0x06,0x08,0x00,0x08,0x07,0x06,0x00,0x01,0x01,0x0f,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x88,0x00,0x78,0x20,0x10,0x20,0xbc,0x00 -+// 54699 햫 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x09,0x00,0x00,0x07,0x01,0x01,0x01,0x00,0x00,0x00,0x18,0x00,0xc8,0x0e,0x88,0x88,0x88,0x00,0x00,0xc0,0xa0,0x10,0xa0,0x00 -+// 54700 햬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0xd4,0x1c,0x14,0x94,0x94,0x94,0x14,0x14,0x04,0x04,0x00 -+// 54701 햭 ; -+,0x00,0x00,0x00,0x00,0x0f,0x02,0x0c,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xdc,0x14,0x94,0x94,0x84,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 54702 햮 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xdc,0x14,0x94,0x94,0x84,0x00,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 54703 햯 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xbc,0x04,0x94,0xb4,0x84,0x00,0x88,0x88,0x98,0xa4,0xc2,0x00 -+// 54704 햰 ; -+,0x00,0x00,0x00,0x04,0x00,0x1f,0x02,0x04,0x08,0x08,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x44,0x24,0x24,0xf4,0x34,0xa4,0xa4,0xbc,0x24,0x04,0x00,0x00,0xfe,0x00 -+// 54705 햱 ; -+,0x00,0x00,0x06,0x00,0x1f,0x02,0x08,0x08,0x08,0x06,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x24,0x14,0x9c,0x14,0x94,0x94,0x84,0x00,0x0e,0x18,0x18,0xa4,0x42,0x00 -+// 54706 햲 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x08,0x08,0x05,0x00,0x08,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x64,0x24,0xfc,0x24,0xa4,0xa4,0x04,0x38,0x00,0xf8,0x28,0x44,0x38,0x00 -+// 54707 햳 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x0d,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x24,0xfc,0x04,0x84,0xbc,0xa4,0x00,0x04,0x00,0x00,0x00,0xfe,0x00 -+// 54708 햴 ; -+,0x00,0x00,0x00,0x07,0x1f,0x02,0x08,0x08,0x0d,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x24,0xbc,0x24,0xa4,0xa4,0xa4,0x00,0xfc,0x04,0xbc,0x00,0xfe,0x00 -+// 54709 햵 ; -+,0x00,0x00,0x00,0x03,0x03,0x03,0x04,0x08,0x04,0x00,0x07,0x00,0x07,0x04,0x03,0x00,0x00,0x00,0x24,0x34,0xdc,0x14,0x94,0x94,0x84,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 54710 햶 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x04,0x08,0x04,0x00,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xdc,0x14,0x94,0x94,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x00,0x00 -+// 54711 햷 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x04,0x08,0x05,0x00,0x05,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x04,0x34,0xdc,0x14,0x94,0x94,0x84,0x00,0xe4,0x3c,0x24,0x24,0x24,0x00 -+// 54712 햸 ; -+,0x00,0x00,0x00,0x02,0x0f,0x02,0x04,0x08,0x04,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x24,0xfc,0x04,0x94,0xb4,0xa4,0x00,0x88,0x88,0x98,0x24,0x42,0x00 -+// 54713 햹 ; -+,0x00,0x00,0x00,0x02,0x0f,0x03,0x04,0x08,0x04,0x00,0x04,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xdc,0x10,0x94,0x54,0x80,0x00,0xbc,0xa0,0x3c,0x20,0x1e,0x00 -+// 54714 햺 ; -+,0x00,0x00,0x00,0x07,0x1f,0x02,0x0d,0x08,0x0d,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x44,0x24,0xbc,0x24,0xa4,0xb4,0xa4,0x00,0x3e,0x0c,0x28,0x08,0x7e,0x00 -+// 54715 햻 ; -+,0x00,0x00,0x00,0x02,0x0f,0x02,0x04,0x08,0x04,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x24,0xfc,0x04,0x94,0xb4,0xa4,0x00,0x00,0x7e,0x1c,0x24,0x3c,0x00 -+// 54716 햼 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x24,0xbc,0x04,0x94,0xb4,0x84,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 54717 햽 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x04,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xfc,0x04,0x84,0xb4,0xa4,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 54718 햾 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x0d,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x64,0x24,0xbc,0x24,0xa4,0xa4,0x24,0x00,0x88,0x88,0x9c,0xa6,0x82,0x00 -+// 54719 햿 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x24,0xfc,0x24,0xa4,0xbc,0xa4,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 54720 헀 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x04,0x08,0x05,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x24,0x34,0xdc,0x14,0x94,0x94,0x84,0x00,0x08,0x08,0x94,0x22,0x40,0x00 -+// 54721 헁 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x0d,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x24,0xfc,0x04,0x84,0xbc,0xa4,0x04,0x30,0x48,0x84,0x84,0x78,0x00 -+// 54722 헂 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x08,0x08,0x0d,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x24,0x14,0xdc,0x14,0x94,0x94,0x80,0x00,0xfc,0x60,0x70,0x8c,0x04,0x00 -+// 54723 헃 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x04,0x08,0x05,0x00,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x08,0x64,0x24,0xfc,0x04,0x94,0xb4,0xa4,0x00,0x60,0xfc,0x60,0xd8,0x04,0x00 -+// 54724 헄 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x08,0x08,0x08,0x02,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xdc,0x14,0x94,0x94,0x84,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 54725 헅 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x05,0x08,0x04,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x34,0xdc,0x14,0x94,0x9c,0x84,0x00,0x3c,0x00,0xfc,0x00,0xfc,0x00 -+// 54726 헆 ; -+,0x00,0x00,0x00,0x06,0x1f,0x02,0x09,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x44,0x24,0xbc,0x24,0x24,0xbc,0xa4,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 54727 헇 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x04,0x08,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x24,0xfc,0x24,0xa4,0xb4,0xa4,0x60,0x06,0x60,0x98,0x88,0x70,0x00 -+// 54728 허 ; -+,0x00,0x00,0x00,0x03,0x00,0x1f,0x01,0x04,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x84,0x04,0xe4,0x04,0x84,0x44,0x44,0x84,0x04,0x04,0x04,0x04,0x00 -+// 54729 헉 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x04,0x84,0x5c,0x44,0x84,0x00,0x0c,0x04,0x04,0x04,0x04,0x00 -+// 54730 헊 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x04,0xc4,0x04,0x5c,0x44,0x84,0x00,0xac,0x84,0x84,0x84,0x84,0x00 -+// 54731 헋 ; -+,0x00,0x00,0x07,0x00,0x1b,0x07,0x08,0x08,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x44,0x04,0x04,0xbc,0x04,0x84,0x00,0x08,0x88,0x98,0xb4,0x82,0x00 -+// 54732 헌 ; -+,0x00,0x00,0x00,0x03,0x00,0x02,0x07,0x08,0x08,0x05,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x04,0x84,0x7c,0x84,0x84,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 54733 헍 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x03,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x04,0xdc,0x44,0x84,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 54734 헎 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x00,0x06,0x00,0x00,0x06,0x02,0x02,0x03,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x5c,0x44,0x84,0x00,0x00,0xfe,0x38,0x24,0x38,0x00 -+// 54735 헏 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x08,0x04,0x03,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0xe4,0x04,0xdc,0x44,0x84,0x04,0x0c,0x80,0x00,0x00,0xfc,0x00 -+// 54736 헐 ; -+,0x00,0x00,0x07,0x00,0x1f,0x03,0x04,0x08,0x04,0x00,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0xc4,0x04,0x8c,0x44,0x84,0x00,0xf8,0x08,0x38,0x00,0xfe,0x00 -+// 54737 헑 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x5c,0x44,0x84,0x04,0x84,0x84,0x84,0x04,0x84,0x00 -+// 54738 헒 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x06,0x00,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0xe4,0x84,0x5c,0x44,0x84,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54739 헓 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x5c,0x44,0x84,0x00,0xcc,0x24,0x24,0x24,0x24,0x00 -+// 54740 헔 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x00,0x00,0x07,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0xc4,0x84,0x7c,0x44,0x84,0x00,0x98,0x90,0x98,0x24,0x42,0x00 -+// 54741 헕 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x04,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0xe4,0x84,0x5c,0x44,0x84,0x04,0xbc,0xa0,0x3c,0x20,0x1e,0x00 -+// 54742 헖 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x08,0x04,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0xc4,0x04,0x7c,0x44,0x84,0x00,0x7c,0x08,0x28,0x28,0x7e,0x00 -+// 54743 헗 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x07,0x00,0x07,0x00,0x06,0x00,0x03,0x00,0x00,0x00,0x84,0x04,0xe4,0x84,0x5c,0x44,0x84,0x18,0x80,0xb8,0x14,0x20,0x1c,0x00 -+// 54744 험 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x00,0x04,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0xe4,0x04,0x5c,0x44,0x44,0x04,0x00,0x84,0x04,0x04,0xfc,0x00 -+// 54745 헙 ; -+,0x00,0x00,0x03,0x00,0x0f,0x07,0x04,0x04,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x04,0x84,0x5c,0x44,0x84,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54746 헚 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x05,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x04,0x04,0xc4,0x84,0xfc,0x44,0x84,0x00,0x88,0x88,0x98,0xa6,0x82,0x00 -+// 54747 헛 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x04,0xe4,0x04,0x5c,0x44,0x84,0x04,0x24,0x20,0x50,0x8c,0x06,0x00 -+// 54748 헜 ; -+,0x00,0x00,0x03,0x00,0x1f,0x07,0x00,0x00,0x07,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x04,0xc4,0x84,0x5c,0x44,0x84,0x00,0x08,0x08,0x9c,0x66,0x42,0x00 -+// 54749 헝 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x84,0x04,0x5c,0x44,0x84,0x04,0x30,0x48,0x84,0x84,0x48,0x00 -+// 54750 헞 ; -+,0x00,0x00,0x03,0x00,0x03,0x07,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x04,0x44,0x04,0x84,0x5c,0x44,0x84,0x00,0x1c,0x60,0x60,0x88,0x04,0x00 -+// 54751 헟 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x06,0x00,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x84,0x04,0x04,0x84,0x5c,0x44,0x84,0x00,0x60,0xfe,0x20,0x58,0x04,0x00 -+// 54752 헠 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0xc4,0x84,0x5c,0x44,0x84,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 54753 헡 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x04,0x04,0x03,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x84,0x04,0xe4,0x84,0x5c,0x44,0xc4,0x04,0x00,0x80,0x0c,0x00,0x86,0x00 -+// 54754 헢 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x04,0x02,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x04,0xc4,0x04,0xdc,0x44,0x84,0x04,0xfc,0x10,0x80,0x90,0xfe,0x00 -+// 54755 헣 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0xe4,0x84,0x5c,0x44,0x84,0x40,0x00,0xf0,0x58,0x88,0x58,0x00 -+// 54756 헤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x14,0xf0,0x90,0x94,0x14,0x14,0x14,0x04,0x00 -+// 54757 헥 ; -+,0x00,0x00,0x00,0x03,0x1f,0x02,0x04,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xb4,0x94,0x94,0x00,0x04,0x04,0x04,0x04,0x04,0x00 -+// 54758 헦 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x04,0x84,0x84,0x84,0x84,0x00 -+// 54759 헧 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x08,0x08,0x09,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0xf4,0x94,0x84,0x00,0x88,0x88,0x98,0xa4,0xc2,0x00 -+// 54760 헨 ; -+,0x00,0x00,0x00,0x06,0x00,0x1f,0x02,0x05,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x14,0xd4,0x14,0x94,0xd4,0x94,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 54761 헩 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x06,0x08,0x04,0x04,0x05,0x00,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x1e,0x18,0x18,0xa4,0x42,0x00 -+// 54762 헪 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x04,0x08,0x04,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x34,0x14,0xd4,0x14,0xb4,0x94,0x94,0x30,0x00,0xfe,0x3c,0x64,0x2c,0x00 -+// 54763 헫 ; -+,0x00,0x00,0x00,0x06,0x1f,0x02,0x0d,0x08,0x08,0x07,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xb4,0x94,0x94,0x00,0x00,0xe0,0x00,0x00,0xde,0x00 -+// 54764 헬 ; -+,0x00,0x00,0x00,0x07,0x01,0x02,0x05,0x08,0x09,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x64,0x34,0x94,0x14,0xb4,0x94,0x84,0x00,0xfc,0x04,0xbc,0x00,0xfe,0x00 -+// 54765 헭 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x05,0x08,0x04,0x02,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0xb4,0x94,0x94,0x00,0xbc,0x84,0x84,0x04,0x84,0x00 -+// 54766 헮 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x04,0x08,0x04,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54767 헯 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x04,0x08,0x04,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0xe4,0x24,0x24,0x24,0x24,0x00 -+// 54768 헰 ; -+,0x00,0x00,0x00,0x07,0x01,0x02,0x05,0x08,0x0c,0x00,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xb4,0x94,0x84,0x00,0x98,0x98,0x98,0x24,0x42,0x00 -+// 54769 헱 ; -+,0x00,0x00,0x00,0x02,0x0f,0x03,0x04,0x08,0x04,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0xfc,0xa0,0x3c,0x20,0x3e,0x00 -+// 54770 헲 ; -+,0x00,0x00,0x00,0x07,0x1b,0x02,0x04,0x08,0x05,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xf4,0x94,0x84,0x00,0xbc,0x0c,0x24,0x08,0x7e,0x00 -+// 54771 헳 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x04,0x08,0x04,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xb4,0x94,0x94,0x10,0x80,0x7e,0x1c,0x24,0x3c,0x00 -+// 54772 헴 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 54773 헵 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x05,0x08,0x08,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xd4,0x14,0xb4,0x94,0x94,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 54774 헶 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x04,0x08,0x0c,0x00,0x00,0x04,0x06,0x04,0x04,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x88,0x88,0x9c,0x92,0x42,0x00 -+// 54775 헷 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0xf4,0x94,0x94,0x44,0x20,0x60,0x58,0x84,0x02,0x00 -+// 54776 헸 ; -+,0x00,0x00,0x00,0x02,0x0f,0x02,0x04,0x08,0x04,0x02,0x01,0x01,0x01,0x02,0x08,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x08,0x08,0x9c,0x66,0x02,0x00 -+// 54777 헹 ; -+,0x00,0x00,0x00,0x06,0x1f,0x02,0x09,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xf4,0x94,0x84,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 54778 헺 ; -+,0x00,0x00,0x00,0x02,0x0f,0x02,0x04,0x08,0x08,0x03,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x1c,0x60,0x70,0x88,0x04,0x00 -+// 54779 헻 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x04,0x08,0x04,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x60,0xfe,0x20,0xd8,0x06,0x00 -+// 54780 헼 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x0c,0x08,0x08,0x06,0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0xec,0x04,0xf4,0x04,0x04,0x00 -+// 54781 헽 ; -+,0x00,0x00,0x00,0x07,0x01,0x02,0x07,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0xd4,0x94,0x00,0x00,0x00,0x0c,0x00,0x8c,0x00 -+// 54782 헾 ; -+,0x00,0x00,0x00,0x07,0x03,0x02,0x0d,0x08,0x08,0x07,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xf4,0x94,0x94,0x00,0x3c,0x10,0x98,0x90,0xfe,0x00 -+// 54783 헿 ; -+,0x00,0x00,0x00,0x03,0x0b,0x02,0x04,0x08,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0xb4,0x94,0x94,0x00,0x00,0x70,0xd8,0x88,0x70,0x00 -+// 54784 혀 ; -+,0x00,0x00,0x00,0x03,0x00,0x1f,0x01,0x04,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x84,0x04,0xe4,0x04,0x84,0x44,0x44,0xc4,0x04,0x04,0x04,0x04,0x00 -+// 54785 혁 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x04,0x9c,0x44,0x44,0x44,0x04,0x04,0x04,0x04,0x04,0x04,0x00 -+// 54786 혂 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x04,0x9c,0x44,0x44,0xc4,0x00,0xb4,0x84,0x84,0x84,0x84,0x00 -+// 54787 혃 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x00,0x08,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xbc,0x44,0x44,0x84,0x04,0x08,0x88,0x88,0x96,0xa2,0x00 -+// 54788 현 ; -+,0x00,0x00,0x00,0x00,0x1f,0x03,0x04,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0xe4,0x04,0xa4,0x44,0x44,0x84,0x04,0x04,0x80,0x80,0xfe,0x00 -+// 54789 혅 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x08,0x04,0x03,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x04,0x04,0xc4,0x3c,0x84,0x44,0x84,0x04,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 54790 혆 ; -+,0x00,0x00,0x03,0x00,0x1f,0x07,0x04,0x00,0x04,0x00,0x00,0x04,0x00,0x02,0x03,0x00,0x00,0x08,0x04,0x04,0xc4,0xbc,0x44,0x4c,0x84,0x28,0x00,0xfe,0x38,0x24,0x3c,0x00 -+// 54791 혇 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x08,0x04,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x3c,0x44,0x44,0xc4,0x04,0x08,0x00,0x00,0x00,0xfe,0x00 -+// 54792 혈 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x00,0x04,0x03,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0xe4,0x3c,0x44,0x44,0x84,0x04,0xfc,0x04,0x3c,0x00,0x86,0x00 -+// 54793 혉 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x07,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0x04,0xbc,0x44,0x44,0x84,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 54794 혊 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0xe4,0xbc,0x44,0x44,0x84,0x04,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54795 혋 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x0d,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x84,0x04,0x04,0xbc,0x44,0x44,0xc4,0x04,0xc4,0x24,0x24,0x24,0x24,0x00 -+// 54796 혌 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x06,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0xe4,0xbc,0x44,0x44,0x84,0x00,0x88,0x98,0x98,0x24,0x42,0x00 -+// 54797 혍 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x84,0x04,0xe4,0xbc,0x44,0x44,0xc4,0x04,0xbc,0xa0,0xbc,0x20,0x3e,0x00 -+// 54798 혎 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x00,0x04,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x04,0x04,0xe4,0xbc,0x44,0x44,0x84,0x04,0xbc,0x0c,0x24,0x08,0x7e,0x00 -+// 54799 혏 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x07,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x84,0x04,0xe4,0xbc,0x44,0x44,0x84,0x04,0x80,0xbe,0x14,0x20,0x1c,0x00 -+// 54800 혐 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x3c,0x44,0x44,0xc4,0x04,0x00,0x84,0x04,0x8c,0x80,0x00 -+// 54801 협 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x04,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x04,0x04,0x9c,0x44,0x44,0xc4,0x04,0x84,0xb4,0x84,0x84,0x84,0x00 -+// 54802 혒 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x00,0x06,0x00,0x00,0x06,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0xc4,0xbc,0x44,0x44,0x84,0x00,0xc8,0xc8,0x5c,0xd2,0x60,0x00 -+// 54803 혓 ; -+,0x00,0x00,0x03,0x00,0x0b,0x07,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0xbc,0x44,0x44,0x84,0x04,0x60,0x60,0x50,0x8c,0x02,0x00 -+// 54804 혔 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x00,0x07,0x00,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xbc,0x44,0x4c,0x84,0x00,0x08,0x08,0x94,0x62,0x02,0x00 -+// 54805 형 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x3c,0x44,0x44,0xfc,0x04,0x30,0x4c,0x84,0x84,0x78,0x00 -+// 54806 혖 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x02,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x04,0x3c,0x44,0x44,0x84,0x04,0x1c,0x60,0x70,0x88,0x04,0x00 -+// 54807 혗 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x00,0x07,0x00,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x04,0x04,0xbc,0x44,0x4c,0x84,0x00,0x00,0xfc,0x60,0x98,0x06,0x00 -+// 54808 혘 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x08,0x04,0x03,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0xbc,0x44,0x44,0xc4,0x04,0x0c,0x04,0x3c,0x04,0x04,0x00 -+// 54809 혙 ; -+,0x00,0x00,0x02,0x00,0x1f,0x03,0x04,0x08,0x04,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x04,0xc4,0x3c,0x44,0x44,0x84,0x04,0x1c,0x00,0x3c,0x00,0xfc,0x00 -+// 54810 혚 ; -+,0x00,0x00,0x07,0x00,0x1f,0x03,0x08,0x08,0x08,0x07,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0c,0x04,0xc4,0x3c,0x84,0x44,0x8c,0x04,0xfc,0x10,0x90,0x90,0xfe,0x00 -+// 54811 혛 ; -+,0x00,0x00,0x03,0x00,0x1f,0x07,0x00,0x08,0x04,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0xbc,0x44,0x44,0x84,0x04,0x00,0xf0,0x58,0x88,0x58,0x00 -+// 54812 혜 ; -+,0x00,0x00,0x00,0x00,0x07,0x00,0x1a,0x03,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0x54,0x14,0x74,0x90,0xf0,0x94,0x14,0x14,0x14,0x04,0x00 -+// 54813 혝 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x04,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0x94,0xf4,0x94,0x00,0x00,0x04,0x04,0x04,0x04,0x00 -+// 54814 혞 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0xd4,0x70,0x94,0xf4,0x94,0x00,0x34,0x84,0x84,0x84,0x84,0x00 -+// 54815 혟 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x09,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0xd4,0x34,0x94,0xf4,0x94,0x00,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 54816 혠 ; -+,0x00,0x00,0x00,0x04,0x00,0x1f,0x02,0x04,0x08,0x04,0x02,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x14,0x14,0xd4,0x74,0x94,0x94,0x94,0x14,0x14,0x00,0x00,0xfe,0x00 -+// 54817 혡 ; -+,0x00,0x00,0x00,0x00,0x0f,0x03,0x04,0x08,0x08,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x00,0x36,0x10,0xd2,0x72,0x92,0xf2,0x90,0x00,0x06,0x18,0x18,0xa4,0x42,0x00 -+// 54818 혢 ; -+,0x00,0x00,0x00,0x03,0x01,0x02,0x04,0x08,0x04,0x00,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0x00,0x34,0x14,0xd4,0x14,0x94,0xf4,0x94,0x38,0x00,0xf8,0x2c,0x84,0x38,0x00 -+// 54819 혣 ; -+,0x00,0x00,0x00,0x03,0x0f,0x02,0x05,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0xf4,0x94,0x10,0x0c,0x80,0x00,0x00,0xfe,0x00 -+// 54820 혤 ; -+,0x00,0x00,0x00,0x07,0x13,0x02,0x0c,0x08,0x0d,0x00,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x34,0x94,0xf4,0x94,0x00,0xfc,0x04,0xbc,0x00,0xfe,0x00 -+// 54821 혥 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x05,0x08,0x04,0x00,0x07,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x10,0x94,0xf4,0x94,0x00,0xb4,0x84,0x84,0x04,0x04,0x00 -+// 54822 혦 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x04,0x08,0x0c,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x74,0x94,0xf4,0x94,0x00,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 54823 혧 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x04,0x08,0x04,0x00,0x05,0x00,0x06,0x04,0x07,0x00,0x00,0x00,0x36,0x10,0xd2,0x12,0x92,0xf2,0x90,0x00,0xe4,0xbc,0x24,0x24,0x24,0x00 -+// 54824 혨 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x04,0x08,0x04,0x00,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0x94,0xf4,0x94,0x10,0x88,0x88,0x98,0x24,0x42,0x00 -+// 54825 혩 ; -+,0x00,0x00,0x00,0x02,0x0f,0x03,0x04,0x08,0x05,0x00,0x07,0x00,0x04,0x04,0x07,0x00,0x00,0x00,0x34,0x14,0xd4,0x74,0x94,0xf4,0x94,0x00,0xf8,0x20,0x20,0x20,0x1c,0x00 -+// 54826 혪 ; -+,0x00,0x00,0x00,0x07,0x13,0x02,0x0d,0x08,0x09,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x94,0xf4,0x94,0x00,0xbe,0x08,0x24,0x08,0x7e,0x00 -+// 54827 혫 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x04,0x08,0x0d,0x00,0x05,0x01,0x05,0x04,0x06,0x00,0x00,0x08,0x34,0x14,0xd4,0x74,0x94,0xf4,0x94,0x10,0x00,0x7c,0x3c,0x24,0x3c,0x00 -+// 54828 혬 ; -+,0x00,0x00,0x00,0x03,0x1f,0x02,0x0c,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0xd4,0x14,0x94,0xf4,0x94,0x00,0x0c,0x84,0x84,0x84,0x80,0x00 -+// 54829 혭 ; -+,0x00,0x00,0x00,0x03,0x03,0x02,0x05,0x08,0x0c,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0x94,0xf4,0x94,0x00,0x0c,0x84,0x84,0x84,0x84,0x00 -+// 54830 혮 ; -+,0x00,0x00,0x00,0x02,0x1f,0x02,0x08,0x08,0x0d,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x24,0x14,0x94,0x74,0x94,0xf4,0x94,0x10,0x88,0x88,0x9c,0x92,0x42,0x00 -+// 54831 혯 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x0d,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0x94,0xf4,0x94,0x04,0x20,0x20,0x50,0x8c,0x02,0x00 -+// 54832 혰 ; -+,0x00,0x00,0x00,0x07,0x1f,0x02,0x09,0x08,0x09,0x02,0x03,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x24,0x14,0x94,0x34,0x94,0xf4,0x14,0x00,0x18,0x10,0x98,0x64,0x40,0x00 -+// 54833 혱 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x09,0x08,0x08,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x74,0x94,0xf4,0x94,0x04,0x30,0xc8,0x84,0x80,0x78,0x00 -+// 54834 혲 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x09,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x08,0x34,0x14,0xd4,0x74,0x94,0xf4,0x94,0x00,0xfc,0x60,0x70,0x88,0x04,0x00 -+// 54835 혳 ; -+,0x00,0x00,0x00,0x00,0x1f,0x02,0x08,0x08,0x0d,0x00,0x00,0x03,0x00,0x00,0x03,0x04,0x00,0x08,0x34,0x14,0x94,0x74,0x94,0xf4,0x94,0x00,0x60,0xfc,0x60,0xd0,0x04,0x00 -+// 54836 혴 ; -+,0x00,0x00,0x00,0x00,0x1f,0x06,0x08,0x08,0x09,0x02,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x74,0x94,0xf4,0x14,0x00,0xec,0x04,0xfc,0x04,0x04,0x00 -+// 54837 혵 ; -+,0x00,0x00,0x00,0x07,0x00,0x02,0x07,0x08,0x08,0x02,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x94,0xf4,0x94,0x00,0x18,0x00,0xf8,0x00,0xfc,0x00 -+// 54838 혶 ; -+,0x00,0x00,0x00,0x00,0x1f,0x06,0x09,0x08,0x08,0x06,0x00,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0x34,0x94,0xf4,0x94,0x00,0x0c,0x10,0x90,0x90,0xfe,0x00 -+// 54839 혷 ; -+,0x00,0x00,0x00,0x07,0x03,0x02,0x09,0x08,0x09,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x94,0x34,0x94,0xf4,0x04,0xe0,0x04,0x60,0x90,0x90,0xf0,0x00 -+// 54840 호 ; -+,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xfc,0xc0,0x20,0x10,0x10,0x20,0xc0,0x40,0xff,0x00,0x00 -+// 54841 혹 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x00,0x18,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xfc,0xe0,0x10,0x20,0xc0,0xc6,0x00,0x00,0x98,0x08,0x08,0x00,0x00 -+// 54842 혺 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x01,0x00,0x1e,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x40,0x02,0x08,0x08,0x08,0x08,0x08,0x00 -+// 54843 혻 ; -+,0x00,0x01,0x00,0x07,0x01,0x00,0x01,0x00,0x00,0x1c,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0xc0,0x00,0xfc,0xe0,0x10,0x20,0xc0,0x42,0x00,0x00,0x10,0x30,0x28,0x44,0x00 -+// 54844 혼 ; -+,0x00,0x00,0x00,0x0e,0x00,0x01,0x02,0x01,0x00,0x00,0x00,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x80,0x7c,0xc0,0x20,0x10,0x20,0xc0,0xce,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 54845 혽 ; -+,0x00,0x01,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x1f,0x00,0x08,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x40,0xfe,0x00,0xf0,0x30,0x28,0xc4,0x00 -+// 54846 혾 ; -+,0x00,0x00,0x00,0x0f,0x01,0x00,0x01,0x00,0x00,0x10,0x00,0x08,0x00,0x04,0x06,0x00,0x00,0x80,0x00,0xfc,0xe0,0x10,0x20,0xc0,0xc6,0x00,0x30,0xfc,0x30,0x48,0x48,0x00 -+// 54847 혿 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x00,0x01,0x00,0x1f,0x00,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x40,0xfe,0x00,0xf8,0x00,0x00,0xb8,0x00 -+// 54848 홀 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x02,0x03,0x00,0x00,0x00,0xc0,0xf8,0xc0,0x20,0x00,0x20,0x80,0xff,0x00,0x10,0x70,0x00,0xf8,0x00 -+// 54849 홁 ; -+,0x00,0x00,0x00,0x07,0x01,0x00,0x01,0x00,0x00,0x18,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x20,0xc0,0xc6,0x00,0x3c,0x84,0x84,0x04,0x00,0x00 -+// 54850 홂 ; -+,0x00,0x00,0x00,0x0f,0x01,0x00,0x01,0x00,0x00,0x18,0x0d,0x00,0x0d,0x04,0x06,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xc0,0xc6,0x00,0xec,0x24,0x20,0x28,0x20,0x00 -+// 54851 홃 ; -+,0x00,0x00,0x00,0x07,0x01,0x00,0x00,0x01,0x00,0x1c,0x09,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x42,0x00,0x4c,0x24,0x2c,0x24,0x3c,0x00 -+// 54852 홄 ; -+,0x00,0x00,0x00,0x0f,0x01,0x00,0x01,0x00,0x00,0x00,0x0f,0x00,0x0d,0x04,0x06,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x20,0xc0,0xc6,0x00,0x90,0x10,0x38,0x2c,0x44,0x00 -+// 54853 홅 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x02,0x01,0x00,0x1e,0x01,0x01,0x0f,0x04,0x07,0x00,0x00,0x00,0x80,0xfc,0xc0,0x30,0x10,0xe0,0xc0,0x00,0x78,0x40,0x38,0x00,0x3c,0x00 -+// 54854 홆 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x1c,0x00,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x20,0xc0,0x42,0x00,0x0c,0x08,0x48,0x28,0xfc,0x00 -+// 54855 홇 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x18,0x01,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0xc2,0x20,0x00,0x70,0x38,0x44,0x28,0x00 -+// 54856 홈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x01,0x00,0x1c,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x20,0xe0,0x42,0x00,0x00,0x10,0x10,0x10,0xf0,0x00 -+// 54857 홉 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x01,0x00,0x00,0x00,0x02,0x03,0x03,0x02,0x03,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x20,0xc0,0xc6,0x00,0x10,0x18,0x18,0x18,0x10,0x00 -+// 54858 홊 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x00,0x00,0x01,0x04,0x07,0x04,0x07,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x10,0x20,0xc0,0xce,0x00,0x18,0x88,0x98,0xa4,0x82,0x00 -+// 54859 홋 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x1e,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0xc0,0x00,0xfc,0xe0,0x10,0x30,0xe0,0xc2,0x00,0xc0,0xc0,0xc0,0x10,0x0c,0x00 -+// 54860 홌 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x00,0x00,0x00,0x10,0x02,0x01,0x03,0x04,0x08,0x00,0x00,0x80,0x00,0xfc,0xe0,0x10,0x20,0xc0,0xce,0x00,0x10,0x10,0x38,0xe4,0x80,0x00 -+// 54861 홍 ; -+,0x00,0x00,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x1f,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x80,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x40,0x86,0x40,0xe0,0x10,0x10,0xe0,0x00 -+// 54862 홎 ; -+,0x00,0x01,0x00,0x07,0x01,0x00,0x01,0x00,0x00,0x18,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0x80,0x00,0xfc,0xe0,0x10,0x20,0xc0,0xc6,0x00,0x08,0xc0,0xc0,0x10,0x08,0x00 -+// 54863 홏 ; -+,0x00,0x01,0x00,0x07,0x00,0x01,0x01,0x01,0x00,0x18,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x80,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x42,0x00,0xc0,0x1c,0xc0,0xa0,0x08,0x00 -+// 54864 홐 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x01,0x00,0x3f,0x00,0x07,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xfc,0xc0,0x10,0x10,0xe0,0x80,0xff,0x00,0x88,0x08,0x88,0x08,0x00 -+// 54865 홑 ; -+,0x00,0x00,0x00,0x0f,0x01,0x00,0x02,0x01,0x00,0x1c,0x00,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0xc2,0x00,0x00,0xc0,0x30,0x00,0x38,0x00 -+// 54866 홒 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x00,0x01,0x00,0x1c,0x00,0x02,0x01,0x01,0x0f,0x00,0x00,0x00,0x00,0xfc,0xe0,0x10,0x10,0xe0,0x42,0x00,0x18,0x20,0x30,0x20,0xfc,0x00 -+// 54867 홓 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x01,0x00,0x18,0x00,0x0f,0x00,0x01,0x01,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x10,0x10,0xe0,0xc2,0x00,0xc0,0xf8,0xe0,0x20,0x20,0x00 -+// 54868 화 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x07,0x08,0x08,0x04,0x01,0x0f,0x18,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0xe8,0x08,0x88,0x48,0x4e,0x88,0x18,0xc8,0x08,0x08,0x08,0x00 -+// 54869 확 ; -+,0x00,0x00,0x07,0x00,0x03,0x04,0x08,0x04,0x03,0x07,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x08,0x88,0x08,0x8e,0x18,0xc8,0x00,0xd8,0x08,0x08,0x08,0x00 -+// 54870 홖 ; -+,0x00,0x00,0x07,0x00,0x0f,0x04,0x08,0x04,0x03,0x17,0x08,0x09,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x88,0x8e,0x18,0x88,0x00,0x08,0x08,0x08,0x08,0x00 -+// 54871 홗 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x08,0x04,0x02,0x1f,0x00,0x0d,0x01,0x01,0x01,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x88,0x8e,0x18,0x88,0x20,0x30,0x30,0x48,0x84,0x00 -+// 54872 환 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x08,0x05,0x03,0x1f,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x18,0x08,0xe8,0x08,0x88,0x88,0x8e,0x38,0x08,0x08,0x00,0x00,0xfc,0x00 -+// 54873 홙 ; -+,0x00,0x00,0x07,0x00,0x1f,0x04,0x08,0x04,0x02,0x07,0x00,0x18,0x08,0x08,0x0c,0x00,0x00,0x00,0x08,0x48,0x08,0x88,0x88,0x8e,0x18,0x88,0x08,0xf0,0x30,0x58,0x84,0x00 -+// 54874 홚 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x08,0x04,0x02,0x1f,0x00,0x0d,0x04,0x04,0x06,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x88,0x8e,0x18,0x08,0x70,0xfc,0x70,0x48,0x78,0x00 -+// 54875 홛 ; -+,0x00,0x00,0x00,0x00,0x1f,0x07,0x08,0x08,0x03,0x03,0x18,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x88,0x8e,0x18,0xc8,0x00,0xf8,0x00,0x00,0xf8,0x00 -+// 54876 활 ; -+,0x00,0x00,0x00,0x00,0x1f,0x07,0x08,0x04,0x03,0x1f,0x03,0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x88,0x8e,0x18,0x08,0xf0,0x08,0x38,0x00,0xfc,0x00 -+// 54877 홝 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x08,0x04,0x02,0x1f,0x08,0x01,0x01,0x08,0x0f,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x88,0x8f,0x18,0x88,0x00,0x58,0x08,0x08,0x08,0x00 -+// 54878 홞 ; -+,0x00,0x00,0x07,0x00,0x0f,0x04,0x08,0x07,0x02,0x1f,0x09,0x01,0x0b,0x08,0x0f,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x88,0x0e,0x18,0x00,0x58,0x48,0x48,0x48,0x70,0x00 -+// 54879 홟 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x08,0x05,0x02,0x1f,0x00,0x02,0x1e,0x08,0x0e,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x88,0x8e,0x18,0x88,0x10,0xc8,0x78,0xc8,0x78,0x00 -+// 54880 홠 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x00,0x04,0x02,0x1f,0x00,0x01,0x0b,0x08,0x07,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x88,0x8e,0x18,0x08,0x30,0x10,0x30,0x4c,0x84,0x00 -+// 54881 홡 ; -+,0x00,0x00,0x07,0x00,0x1f,0x04,0x00,0x05,0x02,0x1f,0x08,0x01,0x0b,0x08,0x06,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x88,0x8e,0x38,0x08,0x08,0x40,0x78,0x40,0x3c,0x00 -+// 54882 홢 ; -+,0x00,0x00,0x04,0x00,0x1f,0x07,0x00,0x04,0x02,0x1f,0x08,0x01,0x0e,0x08,0x0e,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x88,0x8e,0x38,0x08,0x18,0x10,0x58,0x10,0xfc,0x00 -+// 54883 홣 ; -+,0x00,0x00,0x07,0x00,0x0b,0x04,0x08,0x05,0x02,0x1f,0x00,0x01,0x0b,0x00,0x06,0x00,0x00,0x00,0x08,0x48,0x08,0x88,0x88,0x8e,0x18,0x00,0x30,0x7c,0x30,0x08,0x28,0x00 -+// 54884 홤 ; -+,0x00,0x00,0x07,0x00,0x1f,0x04,0x08,0x04,0x03,0x1f,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x88,0x8e,0x18,0x88,0x00,0x18,0x10,0x10,0xf0,0x00 -+// 54885 홥 ; -+,0x00,0x00,0x04,0x00,0x1f,0x07,0x08,0x04,0x02,0x1f,0x00,0x02,0x03,0x02,0x03,0x00,0x00,0x00,0x18,0x08,0xc8,0x88,0x88,0x8e,0x18,0x08,0x10,0x18,0xf8,0x18,0x10,0x00 -+// 54886 홦 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x00,0x05,0x02,0x1f,0x00,0x08,0x07,0x04,0x04,0x00,0x00,0x00,0x08,0x48,0x08,0x88,0x88,0x8e,0x18,0x88,0x10,0x90,0x98,0xa4,0xc0,0x00 -+// 54887 홧 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x03,0x17,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x88,0x8e,0x18,0x88,0x40,0x40,0xb0,0x08,0x04,0x00 -+// 54888 홨 ; -+,0x00,0x00,0x07,0x00,0x1b,0x05,0x08,0x05,0x02,0x1f,0x00,0x03,0x03,0x04,0x08,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x88,0x8e,0x38,0x08,0x10,0x10,0x10,0xac,0x44,0x00 -+// 54889 황 ; -+,0x00,0x00,0x04,0x00,0x1f,0x07,0x08,0x04,0x03,0x07,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x88,0x8e,0x18,0x88,0x20,0x90,0x88,0x08,0xf0,0x00 -+// 54890 홪 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x08,0x08,0x03,0x07,0x08,0x07,0x00,0x01,0x02,0x00,0x00,0x10,0x08,0x08,0x08,0x88,0x88,0x8e,0x18,0x88,0x00,0xf8,0xc0,0xb0,0x0c,0x00 -+// 54891 홫 ; -+,0x00,0x00,0x07,0x00,0x03,0x04,0x08,0x07,0x02,0x1f,0x00,0x04,0x00,0x00,0x03,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x88,0x8e,0x38,0x08,0xe0,0x7c,0x40,0xb0,0x0c,0x00 -+// 54892 홬 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x08,0x04,0x03,0x1f,0x08,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x18,0x08,0x08,0x88,0x88,0x8e,0x18,0x88,0x10,0x08,0x18,0x08,0x00,0x00 -+// 54893 홭 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x04,0x03,0x07,0x00,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0x08,0x88,0x08,0x88,0x8f,0x18,0x88,0x00,0xf0,0x18,0x00,0x1c,0x00 -+// 54894 홮 ; -+,0x00,0x00,0x07,0x00,0x1f,0x05,0x08,0x04,0x03,0x07,0x08,0x06,0x01,0x01,0x0f,0x00,0x00,0x00,0x08,0x08,0x08,0x88,0x88,0x8e,0x18,0x88,0x08,0x30,0x10,0x00,0xfc,0x00 -+// 54895 홯 ; -+,0x00,0x00,0x07,0x00,0x13,0x04,0x08,0x05,0x02,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x48,0x08,0x88,0x88,0x8e,0x18,0x88,0x60,0xfc,0xe0,0x10,0x90,0x00 -+// 54896 홰 ; -+,0x00,0x00,0x00,0x03,0x00,0x0f,0x07,0x04,0x04,0x03,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0x14,0x14,0x94,0x94,0x9c,0x14,0x14,0x14,0x14,0x14,0x04,0x00 -+// 54897 홱 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x03,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x84,0x00,0xec,0x04,0x04,0x04,0x00 -+// 54898 홲 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x04,0x02,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x14,0x94,0x34,0x00,0x3c,0x84,0x84,0x84,0x84,0x00 -+// 54899 홳 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x04,0x04,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x00,0x00,0x98,0x98,0xa4,0xc2,0x00 -+// 54900 홴 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x07,0x01,0x1f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0x94,0x94,0x34,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 54901 홵 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x01,0x0f,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x08,0x24,0x14,0xd4,0x94,0x94,0x94,0x34,0x04,0x00,0xf8,0x10,0x2c,0xc2,0x00 -+// 54902 홶 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x04,0x01,0x0f,0x00,0x04,0x00,0x02,0x03,0x00,0x00,0x0c,0x34,0x14,0xd4,0x14,0x94,0x94,0x34,0x04,0x38,0x1e,0x38,0x04,0x2c,0x00 -+// 54903 홷 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x01,0x0f,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0xd4,0x14,0x94,0x94,0x34,0x00,0x00,0xe0,0x00,0x00,0xfc,0x00 -+// 54904 홸 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x04,0x04,0x03,0x03,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x24,0x34,0x84,0x14,0x94,0x9c,0x24,0xa4,0x00,0x0c,0x0c,0x00,0x86,0x00 -+// 54905 홹 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x06,0x01,0x0f,0x00,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x94,0x94,0x94,0x34,0x00,0x00,0x84,0x84,0x04,0x04,0x00 -+// 54906 홺 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x06,0x01,0x0f,0x00,0x00,0x01,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0x94,0x94,0x34,0x00,0x00,0xa4,0xa4,0x24,0xbc,0x00 -+// 54907 홻 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x04,0x01,0x0f,0x08,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0xd4,0x14,0x94,0x94,0x34,0x84,0x0c,0x24,0x3c,0x24,0x3c,0x00 -+// 54908 홼 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x06,0x01,0x1e,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x10,0x18,0x88,0x98,0x24,0x42,0x00 -+// 54909 홽 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x04,0x04,0x01,0x0f,0x08,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x84,0x04,0x20,0x3c,0x20,0x3c,0x00 -+// 54910 홾 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x04,0x01,0x0f,0x00,0x00,0x01,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x00,0x04,0x08,0x24,0x08,0x8a,0x00 -+// 54911 홿 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x06,0x01,0x1f,0x00,0x01,0x05,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0xd4,0x14,0x94,0x94,0x34,0x04,0x18,0x6e,0x18,0x24,0x24,0x00 -+// 54912 횀 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x04,0x04,0x03,0x1f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x24,0x34,0xc4,0x14,0x94,0x94,0x24,0x00,0x00,0x8c,0x04,0x00,0xf8,0x00 -+// 54913 횁 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x04,0x03,0x1f,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x04,0x08,0x04,0xfc,0x84,0xfc,0x00 -+// 54914 횂 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x07,0x03,0x1e,0x01,0x0c,0x07,0x04,0x04,0x00,0x00,0x08,0x24,0x24,0xa4,0x04,0xbc,0x34,0x64,0x00,0x98,0x88,0x98,0xa6,0xc2,0x00 -+// 54915 횃 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x04,0x04,0x03,0x1f,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x24,0xe4,0x24,0xb4,0xb4,0x24,0x84,0x60,0x20,0x70,0x88,0x04,0x00 -+// 54916 횄 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x02,0x01,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x34,0x14,0xd4,0x94,0x14,0x94,0x34,0x00,0x18,0x88,0x98,0x64,0x42,0x00 -+// 54917 횅 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x01,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x94,0x94,0x34,0x84,0x10,0x48,0x84,0x84,0x78,0x00 -+// 54918 횆 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x06,0x01,0x0f,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x34,0x14,0xd4,0x94,0x54,0x94,0x34,0x04,0x00,0xfc,0x60,0x98,0x04,0x00 -+// 54919 횇 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x03,0x01,0x0e,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x74,0x00,0x60,0xfc,0x60,0xd8,0x04,0x00 -+// 54920 횈 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x01,0x0f,0x00,0x01,0x00,0x03,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x04,0x00,0x04,0x0c,0x84,0x04,0x00 -+// 54921 횉 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x04,0x01,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0x94,0x34,0x00,0x00,0x00,0x18,0x00,0xfc,0x00 -+// 54922 횊 ; -+,0x00,0x00,0x00,0x03,0x01,0x03,0x04,0x04,0x01,0x1f,0x00,0x03,0x00,0x00,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x94,0x94,0x94,0x34,0x04,0x04,0x10,0x10,0x90,0xfe,0x00 -+// 54923 횋 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x04,0x01,0x1f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0xd4,0x94,0x94,0x94,0x34,0x00,0x70,0xfe,0x70,0x88,0x48,0x00 -+// 54924 회 ; -+,0x00,0x00,0x00,0x00,0x0f,0x01,0x02,0x04,0x04,0x01,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xf4,0x84,0x44,0x24,0x24,0x84,0x9c,0xc4,0x04,0x04,0x04,0x00 -+// 54925 획 ; -+,0x00,0x00,0x03,0x00,0x09,0x02,0x04,0x00,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x84,0xc4,0x44,0x44,0x84,0x84,0x00,0xcc,0x04,0x04,0x04,0x00 -+// 54926 횎 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x02,0x01,0x0f,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x34,0x84,0x44,0x44,0x44,0x9c,0x84,0x00,0x84,0x84,0x84,0x84,0x00 -+// 54927 횏 ; -+,0x00,0x00,0x03,0x00,0x0b,0x02,0x04,0x06,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x24,0x84,0x44,0x44,0x44,0x9c,0x84,0x00,0x98,0x98,0x94,0xa2,0x00 -+// 54928 횐 ; -+,0x00,0x00,0x03,0x00,0x0f,0x01,0x02,0x00,0x03,0x01,0x0e,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x8c,0x04,0xe4,0x84,0x44,0x44,0xc4,0xf4,0x04,0x04,0x00,0x00,0xfe,0x00 -+// 54929 횑 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x06,0x01,0x0f,0x00,0x0c,0x04,0x04,0x07,0x00,0x00,0x08,0x84,0x24,0x84,0xc4,0x44,0x44,0x8c,0x84,0x00,0xf8,0x10,0x28,0x46,0x00 -+// 54930 횒 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x01,0x0f,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x84,0x64,0x84,0x44,0x44,0x84,0xbc,0x00,0x10,0xfe,0x38,0x04,0x38,0x00 -+// 54931 횓 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x03,0x03,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x8c,0x04,0xe4,0x84,0x44,0x44,0x8c,0xc4,0x00,0xf8,0x00,0x00,0xfc,0x00 -+// 54932 횔 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x01,0x0f,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x8c,0x24,0x84,0x44,0x44,0x84,0x1c,0x80,0x00,0x08,0x08,0x00,0x1c,0x00 -+// 54933 횕 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x00,0x0f,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x00,0x84,0x24,0x84,0x44,0x44,0xc4,0x9c,0x84,0x38,0x84,0x04,0x04,0x00,0x00 -+// 54934 횖 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x00,0x03,0x00,0x0f,0x04,0x00,0x01,0x04,0x07,0x00,0x00,0x00,0x84,0x64,0x84,0x44,0x44,0xc4,0x9c,0x84,0x04,0xa4,0xa4,0x24,0xa8,0x00 -+// 54935 횗 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x00,0x03,0x00,0x0f,0x0d,0x01,0x0f,0x04,0x06,0x00,0x00,0x00,0x84,0x24,0x84,0x44,0x44,0xc4,0xbc,0x04,0xcc,0x64,0x2c,0x24,0x3c,0x00 -+// 54936 횘 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x00,0x07,0x08,0x04,0x00,0x04,0x05,0x00,0x00,0x08,0x84,0x64,0x84,0x44,0x44,0xc4,0x8c,0xc4,0x18,0x88,0x98,0x34,0xc2,0x00 -+// 54937 횙 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x02,0x03,0x00,0x0f,0x04,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x84,0x74,0x84,0x44,0x44,0xc4,0x9c,0x84,0x0c,0x20,0x3c,0x20,0x3c,0x00 -+// 54938 횚 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x00,0x0f,0x04,0x01,0x01,0x04,0x07,0x00,0x00,0x08,0x84,0x64,0x84,0x44,0x44,0xc4,0x9c,0x84,0x7c,0x00,0x28,0x28,0x0e,0x00 -+// 54939 횛 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x01,0x0f,0x00,0x01,0x01,0x04,0x07,0x00,0x00,0x00,0x84,0x64,0x84,0x44,0x44,0xc4,0x0c,0x80,0x18,0xee,0x18,0x24,0x24,0x00 -+// 54940 횜 ; -+,0x00,0x00,0x03,0x00,0x03,0x02,0x04,0x02,0x01,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x24,0x84,0x44,0x44,0xc4,0xbc,0x04,0x00,0x8c,0x04,0x00,0xf8,0x00 -+// 54941 횝 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x02,0x01,0x0f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x24,0x84,0x44,0x44,0xc4,0x0c,0x84,0x08,0x04,0xfc,0x04,0xf8,0x00 -+// 54942 횞 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x01,0x0f,0x00,0x0c,0x07,0x04,0x04,0x00,0x00,0x00,0x8c,0x64,0x84,0x44,0x44,0x84,0x3c,0x00,0x18,0x88,0x98,0xa4,0xc2,0x00 -+// 54943 횟 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x02,0x01,0x0f,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x84,0x24,0x84,0x44,0x44,0xc4,0x1c,0x84,0x60,0x20,0x70,0x88,0x04,0x00 -+// 54944 횠 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x02,0x03,0x00,0x0f,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x08,0x84,0x34,0x84,0x44,0x24,0xc4,0x84,0x84,0x10,0x88,0x98,0x64,0x42,0x00 -+// 54945 횡 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x00,0x02,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x34,0x84,0x44,0x04,0x44,0x84,0xc4,0x10,0x58,0x84,0x84,0x78,0x00 -+// 54946 횢 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x02,0x01,0x0f,0x00,0x03,0x00,0x00,0x01,0x00,0x00,0x08,0x84,0x34,0x84,0x44,0x44,0x44,0x94,0x84,0x00,0xfc,0x60,0xd8,0x04,0x00 -+// 54947 횣 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x04,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x84,0x64,0x84,0x44,0x44,0xc4,0x8c,0xc4,0xe0,0x0c,0x60,0x70,0x04,0x00 -+// 54948 횤 ; -+,0x00,0x00,0x03,0x00,0x03,0x02,0x04,0x02,0x01,0x0f,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x08,0x84,0x24,0x84,0x44,0x44,0x44,0x9c,0x84,0x00,0x04,0x0c,0x84,0x04,0x00 -+// 54949 횥 ; -+,0x00,0x00,0x03,0x00,0x07,0x02,0x00,0x03,0x00,0x0f,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x8c,0x04,0x84,0x44,0x04,0xc4,0x8c,0x84,0x04,0x00,0xf8,0x00,0xfc,0x00 -+// 54950 횦 ; -+,0x00,0x00,0x03,0x00,0x09,0x02,0x04,0x04,0x01,0x0f,0x00,0x03,0x01,0x00,0x07,0x00,0x00,0x08,0x84,0x24,0x04,0xc4,0x44,0x44,0x8c,0xc4,0x04,0xf8,0x10,0x90,0xfe,0x00 -+// 54951 횧 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x02,0x01,0x00,0x0f,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0x74,0x84,0x44,0x04,0xc4,0xb4,0xc4,0x00,0xfe,0x78,0x08,0x58,0x00 -+// 54952 효 ; -+,0x00,0x00,0x01,0x00,0x00,0x0e,0x00,0x02,0x02,0x02,0x01,0x02,0x00,0x1f,0x00,0x00,0x00,0x00,0xc0,0x00,0x08,0x80,0xc0,0x00,0x10,0x10,0xe0,0x10,0x10,0xfe,0x00,0x00 -+// 54953 횩 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1e,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x20,0x00,0x00,0xb0,0x10,0x10,0x10,0x00 -+// 54954 횪 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x02,0x1f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x40,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x20,0xfe,0x08,0x08,0x08,0x08,0x08,0x00 -+// 54955 횫 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x00,0x1f,0x00,0x0f,0x01,0x01,0x01,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x20,0x20,0xe0,0x20,0x86,0x00,0x30,0x30,0x28,0x44,0x00 -+// 54956 횬 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x03,0x01,0x1c,0x00,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xf8,0xc0,0x20,0x00,0x20,0x20,0x32,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 54957 횭 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x02,0x1f,0x00,0x08,0x08,0x08,0x0e,0x00,0x00,0xc0,0x00,0xfc,0xc0,0x20,0x20,0xe0,0x20,0x3e,0x00,0xf0,0x30,0x68,0x84,0x00 -+// 54958 횮 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1e,0x00,0x09,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x20,0x40,0x30,0xfc,0x30,0x48,0x58,0x00 -+// 54959 횯 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x03,0x02,0x1f,0x00,0x07,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0xfc,0xc0,0x20,0x20,0xe0,0x20,0xfe,0x00,0xf0,0x00,0x00,0x18,0x00 -+// 54960 횰 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x03,0x00,0x1f,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x80,0xf8,0xc0,0x20,0x20,0xe0,0x20,0xfe,0xf0,0x10,0x70,0x00,0xf8,0x00 -+// 54961 횱 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1f,0x00,0x00,0x01,0x04,0x07,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x20,0xfe,0x28,0x84,0x84,0x04,0x00,0x00 -+// 54962 횲 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1c,0x0d,0x01,0x0f,0x00,0x07,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x10,0x20,0xe0,0x36,0x00,0x6c,0x24,0x28,0x28,0x28,0x00 -+// 54963 횳 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1f,0x09,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xe0,0x22,0x18,0x48,0x68,0x68,0x48,0x68,0x00 -+// 54964 횴 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1f,0x0f,0x01,0x0f,0x00,0x07,0x00,0x00,0x00,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x32,0x20,0x10,0x10,0x30,0x28,0x44,0x00 -+// 54965 횵 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x00,0x1f,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xe0,0x20,0x86,0x78,0x40,0x78,0x40,0x3c,0x00 -+// 54966 횶 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1f,0x00,0x01,0x0b,0x08,0x06,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xe0,0x20,0xff,0x08,0x10,0x48,0x20,0xbc,0x00 -+// 54967 횷 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x18,0x09,0x01,0x0e,0x08,0x06,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xe0,0x36,0x70,0x00,0x70,0x68,0x48,0x78,0x00 -+// 54968 횸 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x00,0x1f,0x00,0x03,0x02,0x02,0x03,0x00,0x00,0xc0,0x00,0xf8,0xc0,0x20,0x20,0xe0,0x20,0xfe,0x00,0x10,0x10,0x10,0xf0,0x00 -+// 54969 횹 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1e,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xe0,0x32,0x00,0x30,0x10,0x10,0x10,0x10,0x00 -+// 54970 횺 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1e,0x01,0x0c,0x07,0x04,0x07,0x00,0x00,0x40,0x00,0xf8,0xe0,0x20,0x20,0xe0,0x32,0x00,0x10,0x98,0x98,0xa4,0xc2,0x00 -+// 54971 횻 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x02,0x1f,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x20,0xff,0x80,0x80,0xe0,0x10,0x08,0x00 -+// 54972 횼 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x08,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0x40,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x36,0x00,0x10,0x10,0x38,0xcc,0x80,0x00 -+// 54973 횽 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x02,0x1f,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0xc0,0x00,0xf8,0xc0,0x20,0x20,0xe0,0x20,0xff,0x00,0x60,0x10,0x10,0xe0,0x00 -+// 54974 횾 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x02,0x1e,0x00,0x0f,0x00,0x01,0x06,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x22,0x00,0x00,0xf8,0xc0,0x30,0x08,0x00 -+// 54975 횿 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1f,0x01,0x0f,0x00,0x01,0x06,0x00,0x00,0x40,0x00,0xf8,0xe0,0x00,0x20,0xe0,0x20,0x00,0xc0,0xf8,0x80,0x60,0x18,0x00 -+// 54976 훀 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x02,0x1f,0x00,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0xfc,0xc0,0x20,0x20,0xe0,0x20,0xfe,0x00,0x08,0x38,0x08,0x08,0x00 -+// 54977 훁 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x03,0x02,0x1f,0x00,0x07,0x06,0x06,0x02,0x00,0x00,0x00,0x00,0xfc,0xc0,0x20,0x20,0xe0,0x20,0xff,0x00,0xf0,0x10,0x00,0x38,0x00 -+// 54978 훂 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x03,0x02,0x1f,0x00,0x02,0x00,0x01,0x0f,0x00,0x00,0x00,0x00,0xfc,0xc0,0x20,0x20,0xe0,0x22,0x00,0x18,0x00,0x20,0x20,0xfc,0x00 -+// 54979 훃 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x03,0x01,0x1f,0x00,0x0f,0x01,0x00,0x01,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x20,0x20,0xe0,0x22,0xc0,0x00,0xf8,0xc0,0x20,0x20,0x00 -+// 54980 후 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0xc0,0x20,0x10,0x20,0x80,0xff,0x40,0x40,0x40,0x00,0x00,0x00 -+// 54981 훅 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0x80,0xff,0x00,0x00,0x90,0x10,0x10,0x10,0x00 -+// 54982 훆 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0xc0,0x08,0xc0,0x60,0x20,0x20,0xc0,0xff,0x80,0x48,0x08,0x08,0x08,0x08,0x00 -+// 54983 훇 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xc0,0x60,0x20,0x20,0x80,0xfe,0x80,0x20,0x30,0x30,0x48,0x84,0x00 -+// 54984 훈 ; -+,0x00,0x00,0x00,0x0f,0x00,0x01,0x02,0x01,0x00,0x1e,0x00,0x04,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0xfc,0xc0,0x30,0x10,0x20,0x00,0xfe,0x40,0x40,0x00,0x00,0xf8,0x00 -+// 54985 훉 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x08,0x08,0x0d,0x04,0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0x20,0x80,0xfe,0x00,0x0c,0x30,0x30,0x48,0x84,0x00 -+// 54986 훊 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x09,0x08,0x08,0x04,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xfe,0x80,0x30,0xfc,0x30,0x48,0x78,0x00 -+// 54987 훋 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x07,0x04,0x04,0x03,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0x1e,0x80,0x00,0xf0,0x00,0x00,0xf8,0x00 -+// 54988 훌 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xff,0x80,0xf0,0x10,0x70,0x00,0xf8,0x00 -+// 54989 훍 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x00,0x00,0x1f,0x00,0x03,0x00,0x05,0x04,0x07,0x00,0x00,0xc0,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xfe,0x80,0xa8,0x04,0x04,0x00,0x00,0x00 -+// 54990 훎 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x00,0x1f,0x00,0x0d,0x01,0x0b,0x08,0x0f,0x00,0x00,0xc0,0x08,0xc0,0xe0,0x20,0x20,0xc0,0xff,0x80,0xe8,0x2c,0x28,0x08,0x28,0x00 -+// 54991 훏 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x09,0x01,0x0f,0x08,0x0f,0x00,0x00,0xc0,0x08,0xc0,0x60,0x20,0x20,0x80,0xff,0x80,0x48,0x68,0x68,0x48,0x78,0x00 -+// 54992 훐 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x02,0x01,0x1f,0x00,0x0f,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xff,0x00,0x30,0x10,0x30,0x2c,0x44,0x00 -+// 54993 훑 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x00,0x1f,0x00,0x01,0x01,0x0f,0x00,0x07,0x00,0x00,0xc0,0x08,0xc0,0xe0,0x20,0x20,0xc0,0xfe,0x80,0xf8,0x40,0x78,0x40,0x3c,0x00 -+// 54994 훒 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x0d,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0x80,0xfe,0x00,0x7c,0x00,0x48,0x20,0xfc,0x00 -+// 54995 훓 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x00,0x01,0x1f,0x00,0x00,0x01,0x0f,0x00,0x06,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xff,0x40,0x00,0xfc,0x38,0x48,0x38,0x00 -+// 54996 훔 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x02,0x02,0x02,0x03,0x00,0x00,0x00,0x08,0xc0,0x60,0x20,0x20,0x80,0xff,0x80,0x00,0x10,0x10,0x10,0xf0,0x00 -+// 54997 훕 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x04,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xff,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 54998 훖 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x01,0x0c,0x07,0x04,0x07,0x00,0x00,0xc0,0x08,0xc0,0x60,0x20,0x20,0x80,0xff,0x80,0x10,0x98,0x90,0xa4,0xc2,0x00 -+// 54999 훗 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0xf8,0xe0,0x00,0x20,0xc0,0xfe,0x80,0xc0,0xc0,0x20,0x18,0x0c,0x00 -+// 55000 훘 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x20,0x20,0xc0,0xff,0x00,0x10,0x10,0x10,0xac,0x84,0x00 -+// 55001 훙 ; -+,0x00,0x00,0x00,0x0f,0x01,0x00,0x01,0x00,0x1e,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0xf8,0xe0,0x10,0x20,0xc0,0xfe,0x00,0x00,0x20,0x10,0x10,0xe0,0x00 -+// 55002 훚 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x0f,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xff,0x80,0x08,0xc0,0xc0,0x10,0x08,0x00 -+// 55003 훛 ; -+,0x00,0x01,0x00,0x07,0x01,0x00,0x01,0x00,0x1f,0x00,0x01,0x00,0x00,0x01,0x06,0x00,0x00,0xc0,0x08,0xc0,0xe0,0x10,0x20,0xc0,0xfe,0x00,0xe0,0x7c,0xc0,0xb0,0x08,0x00 -+// 55004 훜 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xff,0x00,0x18,0x08,0x78,0x08,0x08,0x00 -+// 55005 훝 ; -+,0x00,0x00,0x00,0x0f,0x00,0x00,0x02,0x01,0x00,0x00,0x00,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xf8,0xc0,0x20,0x20,0xc0,0x1e,0x80,0x00,0xc0,0x30,0x00,0xf8,0x00 -+// 55006 훞 ; -+,0x00,0x00,0x00,0x0f,0x01,0x02,0x01,0x00,0x1f,0x00,0x00,0x04,0x00,0x01,0x0f,0x00,0x00,0x00,0x00,0xf8,0xe0,0x20,0x20,0xc0,0xff,0x00,0x18,0x00,0x20,0x20,0xfc,0x00 -+// 55007 훟 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x00,0x00,0x0f,0x00,0x01,0x01,0x00,0x00,0xc0,0x08,0xc0,0x20,0x10,0x20,0xc0,0xc2,0x40,0x00,0xf8,0xe0,0x00,0x20,0x00 -+// 55008 훠 ; -+,0x00,0x00,0x03,0x00,0x0f,0x01,0x02,0x00,0x03,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x04,0xf4,0xc4,0x24,0x24,0xc4,0x04,0x84,0xb4,0x04,0x04,0x04,0x00 -+// 55009 훡 ; -+,0x00,0x00,0x01,0x00,0x01,0x02,0x02,0x01,0x0f,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0xf4,0x84,0x44,0x44,0x84,0xc4,0x14,0x00,0xec,0x04,0x04,0x04,0x00 -+// 55010 훢 ; -+,0x00,0x00,0x03,0x09,0x01,0x02,0x02,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x04,0xa4,0x84,0x84,0x84,0x84,0x00 -+// 55011 훣 ; -+,0x00,0x00,0x03,0x0f,0x01,0x00,0x02,0x01,0x1f,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x04,0x84,0x04,0x10,0x88,0x98,0x94,0x82,0x00 -+// 55012 훤 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x01,0x1f,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x8c,0x04,0xc4,0x84,0x44,0x44,0x84,0x84,0x3c,0x04,0x00,0x00,0xfe,0x00 -+// 55013 훥 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x00,0x03,0x0f,0x01,0x00,0x04,0x04,0x04,0x02,0x00,0x00,0x00,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x04,0x06,0x58,0x18,0xa4,0xc2,0x00 -+// 55014 훦 ; -+,0x00,0x00,0x03,0x00,0x01,0x04,0x04,0x03,0x1f,0x01,0x00,0x04,0x00,0x02,0x02,0x00,0x00,0x00,0x84,0xe4,0x84,0x44,0x44,0x84,0x84,0x34,0x38,0xfe,0x38,0x24,0x28,0x00 -+// 55015 훧 ; -+,0x00,0x00,0x02,0x00,0x0f,0x02,0x00,0x03,0x0f,0x01,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x0c,0x24,0x84,0x44,0x44,0x84,0xc4,0x14,0x00,0xe0,0x00,0x00,0xfc,0x00 -+// 55016 훨 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x02,0x03,0x03,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x84,0x74,0x84,0x44,0x44,0x84,0x84,0x3c,0x00,0x04,0x0c,0x00,0x86,0x00 -+// 55017 훩 ; -+,0x00,0x00,0x03,0x0f,0x01,0x02,0x02,0x01,0x0f,0x00,0x01,0x00,0x07,0x04,0x03,0x00,0x00,0x08,0x84,0xf4,0xc4,0x44,0x44,0x84,0x84,0x04,0x84,0x84,0x84,0x04,0x84,0x00 -+// 55018 훪 ; -+,0x00,0x00,0x03,0x09,0x01,0x02,0x02,0x01,0x0f,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x04,0xbc,0xa4,0xa4,0x24,0x20,0x00 -+// 55019 훫 ; -+,0x00,0x00,0x03,0x08,0x01,0x02,0x02,0x01,0x0f,0x00,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x14,0x0c,0x24,0x34,0x24,0x3c,0x00 -+// 55020 훬 ; -+,0x00,0x00,0x03,0x09,0x03,0x00,0x02,0x01,0x0f,0x01,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x14,0x88,0x88,0x9c,0x26,0x42,0x00 -+// 55021 훭 ; -+,0x00,0x00,0x03,0x09,0x01,0x02,0x02,0x03,0x0f,0x00,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x14,0x04,0xa0,0x3c,0x20,0x3c,0x00 -+// 55022 훮 ; -+,0x00,0x00,0x03,0x09,0x03,0x00,0x02,0x01,0x0f,0x01,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x04,0x3c,0x80,0xa4,0x28,0x4e,0x00 -+// 55023 훯 ; -+,0x00,0x00,0x03,0x0f,0x01,0x04,0x00,0x01,0x1f,0x01,0x00,0x00,0x07,0x00,0x03,0x00,0x00,0x08,0x84,0xe4,0x84,0x44,0x44,0x04,0x84,0x04,0x18,0xfe,0x9c,0x24,0x14,0x00 -+// 55024 훰 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x02,0x01,0x0f,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x04,0x00,0x84,0x04,0x84,0xf0,0x00 -+// 55025 훱 ; -+,0x00,0x00,0x03,0x0f,0x01,0x02,0x02,0x01,0x0f,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x04,0x0c,0x84,0xfc,0x84,0xfc,0x00 -+// 55026 훲 ; -+,0x00,0x00,0x03,0x0f,0x03,0x04,0x04,0x01,0x1f,0x01,0x00,0x04,0x07,0x04,0x04,0x00,0x00,0x08,0x84,0xe4,0x84,0x44,0x44,0x84,0x0c,0x10,0x88,0x88,0x9c,0xa2,0xc0,0x00 -+// 55027 훳 ; -+,0x00,0x00,0x03,0x09,0x01,0x00,0x00,0x01,0x07,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0xe4,0x04,0x60,0x20,0x70,0x8c,0x06,0x00 -+// 55028 훴 ; -+,0x00,0x00,0x03,0x0f,0x01,0x00,0x02,0x01,0x1f,0x01,0x01,0x01,0x01,0x02,0x00,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x04,0x18,0x88,0x98,0x64,0x42,0x00 -+// 55029 훵 ; -+,0x00,0x00,0x03,0x00,0x03,0x00,0x04,0x01,0x0f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x74,0x84,0x44,0x44,0x84,0xa4,0x04,0x30,0x48,0x84,0x88,0x78,0x00 -+// 55030 훶 ; -+,0x00,0x00,0x03,0x09,0x01,0x02,0x02,0x01,0x1f,0x01,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x14,0x00,0xfc,0x60,0xd8,0x06,0x00 -+// 55031 훷 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x02,0x03,0x0d,0x01,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x00,0x84,0xf4,0x84,0x44,0x44,0xc4,0x3c,0x04,0x60,0xfe,0x20,0xd8,0x06,0x00 -+// 55032 훸 ; -+,0x00,0x00,0x03,0x00,0x01,0x02,0x00,0x03,0x1f,0x01,0x00,0x03,0x00,0x03,0x00,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x84,0x14,0x00,0x04,0x0c,0xc4,0x04,0x00 -+// 55033 훹 ; -+,0x00,0x00,0x03,0x00,0x01,0x00,0x04,0x01,0x1f,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x84,0xe4,0x84,0x44,0x44,0x84,0x84,0x04,0x0c,0x00,0xfc,0x00,0xfc,0x00 -+// 55034 훺 ; -+,0x00,0x00,0x03,0x00,0x03,0x00,0x04,0x01,0x1f,0x01,0x00,0x03,0x01,0x00,0x07,0x00,0x00,0x00,0x84,0xf4,0x84,0x44,0x44,0x04,0x84,0x04,0x0c,0x10,0x10,0x90,0xfe,0x00 -+// 55035 훻 ; -+,0x00,0x00,0x03,0x0f,0x01,0x02,0x02,0x03,0x0d,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0xc4,0x0c,0x04,0x00,0xfe,0x70,0x48,0x48,0x00 -+// 55036 훼 ; -+,0x00,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x04,0x01,0x0f,0x02,0x02,0x00,0x00,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x94,0x94,0x94,0x14,0x14,0x14,0x14,0x14,0x04,0x00 -+// 55037 훽 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x07,0x01,0x0a,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x74,0x00,0xec,0x04,0x04,0x04,0x00 -+// 55038 훾 ; -+,0x00,0x00,0x00,0x02,0x0f,0x05,0x04,0x03,0x1f,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x04,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x54,0x04,0x84,0x84,0x84,0x84,0x00 -+// 55039 훿 ; -+,0x00,0x00,0x00,0x03,0x0f,0x07,0x04,0x07,0x07,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x74,0x10,0x88,0x98,0x94,0xa2,0x00 -+// 55040 휀 ; -+,0x00,0x00,0x00,0x07,0x00,0x03,0x04,0x04,0x01,0x0f,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x14,0x94,0x14,0x94,0x94,0x14,0x14,0x14,0x04,0x00,0x00,0xfe,0x00 -+// 55041 휁 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x03,0x07,0x00,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x08,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x74,0x00,0xf8,0x10,0x2c,0x46,0x00 -+// 55042 휂 ; -+,0x00,0x00,0x00,0x07,0x0f,0x07,0x00,0x07,0x1f,0x02,0x00,0x04,0x00,0x02,0x03,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x94,0x14,0x94,0x30,0x18,0xfe,0x38,0x44,0x2c,0x00 -+// 55043 휃 ; -+,0x00,0x00,0x00,0x07,0x0f,0x03,0x04,0x07,0x03,0x0a,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0x14,0x14,0x74,0x00,0xfc,0x00,0x00,0xfe,0x00 -+// 55044 휄 ; -+,0x00,0x00,0x00,0x07,0x0f,0x07,0x00,0x07,0x03,0x02,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x14,0x14,0x14,0xf4,0x00,0x04,0x0c,0x00,0x86,0x00 -+// 55045 휅 ; -+,0x00,0x00,0x00,0x07,0x0f,0x03,0x04,0x07,0x03,0x02,0x00,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0x14,0x14,0x74,0x00,0x84,0x84,0x04,0x04,0x00 -+// 55046 휆 ; -+,0x00,0x00,0x00,0x03,0x0f,0x07,0x04,0x07,0x03,0x02,0x00,0x04,0x00,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x54,0x00,0xa4,0xa4,0x24,0xb4,0x00 -+// 55047 휇 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x03,0x0f,0x00,0x05,0x00,0x07,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0x14,0x14,0x14,0xe4,0xa4,0x24,0x24,0x24,0x00 -+// 55048 휈 ; -+,0x00,0x00,0x00,0x03,0x0f,0x07,0x00,0x07,0x03,0x02,0x00,0x00,0x01,0x04,0x07,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x94,0x14,0x14,0x74,0x18,0x88,0x98,0x24,0x42,0x00 -+// 55049 휉 ; -+,0x00,0x00,0x00,0x03,0x0f,0x07,0x04,0x03,0x0f,0x02,0x02,0x01,0x0d,0x04,0x07,0x00,0x00,0x00,0x24,0x14,0x94,0x14,0x94,0x14,0x14,0x54,0x4c,0x20,0x3c,0x20,0x3c,0x00 -+// 55050 휊 ; -+,0x00,0x00,0x00,0x07,0x0f,0x07,0x00,0x07,0x07,0x02,0x00,0x00,0x01,0x04,0x05,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x94,0x14,0x14,0xf4,0x04,0x08,0x24,0x00,0x8e,0x00 -+// 55051 휋 ; -+,0x00,0x00,0x00,0x00,0x0f,0x07,0x04,0x07,0x07,0x02,0x00,0x00,0x01,0x04,0x07,0x00,0x00,0x08,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x74,0x18,0xee,0x98,0x24,0x24,0x00 -+// 55052 휌 ; -+,0x00,0x00,0x00,0x03,0x0f,0x07,0x04,0x03,0x1f,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x10,0x00,0x84,0x84,0x84,0xfc,0x00 -+// 55053 휍 ; -+,0x00,0x00,0x00,0x03,0x0f,0x03,0x04,0x07,0x01,0x0a,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x14,0xd4,0x14,0x94,0x14,0x14,0x74,0x0c,0x84,0xfc,0x84,0xfc,0x00 -+// 55054 휎 ; -+,0x00,0x00,0x00,0x00,0x0f,0x05,0x00,0x07,0x1f,0x02,0x00,0x0c,0x07,0x04,0x07,0x00,0x00,0x0c,0x34,0x14,0x94,0x14,0x94,0x14,0x14,0x14,0x08,0x88,0x98,0x16,0xe2,0x00 -+// 55055 휏 ; -+,0x00,0x00,0x00,0x07,0x0f,0x07,0x00,0x07,0x03,0x02,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x24,0x14,0x94,0x14,0x94,0x14,0x14,0xf4,0x60,0x20,0x70,0x8c,0x06,0x00 -+// 55056 휐 ; -+,0x00,0x00,0x00,0x00,0x0b,0x05,0x04,0x03,0x1f,0x02,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x94,0x14,0x14,0x10,0x10,0x88,0x98,0x64,0x42,0x00 -+// 55057 휑 ; -+,0x00,0x00,0x07,0x00,0x02,0x05,0x00,0x02,0x1f,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x14,0x94,0x14,0x14,0x14,0x14,0x14,0x14,0x20,0x48,0x84,0x84,0x58,0x00 -+// 55058 휒 ; -+,0x00,0x00,0x07,0x00,0x02,0x00,0x05,0x03,0x1e,0x00,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x04,0x14,0x94,0x14,0x14,0x14,0x14,0x34,0x00,0x04,0x60,0x50,0x88,0x04,0x00 -+// 55059 휓 ; -+,0x00,0x00,0x07,0x00,0x02,0x05,0x00,0x03,0x1e,0x02,0x00,0x01,0x00,0x00,0x03,0x00,0x00,0x04,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x10,0x60,0x04,0x60,0x98,0x04,0x00 -+// 55060 휔 ; -+,0x00,0x00,0x07,0x00,0x03,0x04,0x04,0x00,0x1e,0x02,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x0c,0x14,0x14,0x14,0x94,0x94,0x14,0x14,0x10,0x0c,0x04,0x1c,0x04,0x04,0x00 -+// 55061 휕 ; -+,0x00,0x00,0x04,0x00,0x02,0x05,0x00,0x02,0x1e,0x02,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x04,0x34,0x14,0x14,0x14,0x14,0x14,0x14,0x10,0x0c,0x00,0x0c,0x00,0xdc,0x00 -+// 55062 휖 ; -+,0x00,0x00,0x07,0x00,0x02,0x01,0x01,0x00,0x1e,0x02,0x00,0x01,0x00,0x00,0x07,0x00,0x00,0x04,0x34,0x94,0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x10,0x18,0x90,0x9e,0x00 -+// 55063 휗 ; -+,0x00,0x00,0x00,0x00,0x0e,0x05,0x08,0x06,0x1f,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x34,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x00,0xae,0x70,0x88,0x88,0x20 -+// 55064 휘 ; -+,0x00,0x00,0x03,0x00,0x01,0x06,0x04,0x04,0x03,0x00,0x1f,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x84,0x64,0x04,0xc4,0x44,0x44,0x8c,0x2c,0x04,0x04,0x00,0x00,0x00,0x00 -+// 55065 휙 ; -+,0x00,0x00,0x00,0x0b,0x03,0x04,0x04,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x60,0x80,0x40,0x84,0x08,0x80,0x00,0x00,0x08,0x08,0x08,0x08,0x00 -+// 55066 휚 ; -+,0x00,0x00,0x00,0x0b,0x03,0x04,0x04,0x00,0x1f,0x01,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x68,0x88,0x48,0x88,0x08,0x88,0x00,0x08,0x08,0x08,0x08,0x08,0x00 -+// 55067 휛 ; -+,0x00,0x02,0x00,0x0b,0x06,0x04,0x03,0x00,0x1f,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x84,0x0c,0x04,0x00,0x10,0x98,0x98,0xa4,0xc2,0x00 -+// 55068 휜 ; -+,0x00,0x00,0x03,0x00,0x01,0x04,0x04,0x04,0x00,0x1f,0x01,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x64,0x04,0xc4,0x44,0xc4,0x1c,0x84,0x04,0x04,0x00,0x00,0xde,0x00 -+// 55069 휝 ; -+,0x00,0x02,0x00,0x09,0x03,0x04,0x02,0x00,0x1f,0x01,0x00,0x04,0x04,0x05,0x06,0x00,0x00,0x0c,0x04,0x04,0xc4,0x44,0x44,0x0c,0xc4,0x00,0x06,0x18,0x18,0xa4,0xc2,0x00 -+// 55070 휞 ; -+,0x00,0x00,0x00,0x0b,0x06,0x04,0x07,0x00,0x1f,0x01,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x84,0x0c,0x00,0x00,0x00,0xd0,0x38,0x44,0x38,0x00 -+// 55071 휟 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x06,0x00,0x1f,0x01,0x00,0x03,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x84,0x1c,0x80,0x00,0x08,0x00,0x00,0x00,0x00,0x00 -+// 55072 휠 ; -+,0x00,0x00,0x03,0x0b,0x03,0x04,0x04,0x01,0x1f,0x01,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x04,0x64,0x84,0x44,0x84,0x0c,0x84,0x00,0xd8,0x08,0x08,0x00,0xfe,0x00 -+// 55073 휡 ; -+,0x00,0x00,0x00,0x0b,0x03,0x04,0x04,0x00,0x1f,0x01,0x03,0x00,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x84,0x44,0x84,0x0c,0x80,0x00,0x08,0x08,0x00,0x00,0x08,0x00 -+// 55074 휢 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x84,0x64,0x84,0x44,0x84,0x0c,0xc4,0x00,0x0c,0x24,0x20,0x20,0x20,0x00 -+// 55075 휣 ; -+,0x00,0x00,0x03,0x0d,0x03,0x00,0x02,0x01,0x0f,0x01,0x01,0x01,0x0d,0x04,0x07,0x00,0x00,0x0c,0x84,0x24,0x84,0x44,0x44,0x04,0xc4,0x00,0x04,0x24,0x24,0x24,0x24,0x00 -+// 55076 휤 ; -+,0x00,0x00,0x00,0x0b,0x02,0x04,0x03,0x00,0x1f,0x01,0x05,0x00,0x04,0x04,0x07,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x84,0x2c,0x04,0x00,0x88,0x88,0x10,0x24,0x02,0x00 -+// 55077 휥 ; -+,0x00,0x00,0x03,0x00,0x01,0x04,0x04,0x01,0x07,0x01,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x84,0x24,0x84,0x44,0x44,0x04,0xc4,0x00,0x4c,0x20,0x2c,0x20,0x1c,0x00 -+// 55078 휦 ; -+,0x00,0x00,0x01,0x09,0x03,0x04,0x06,0x00,0x1f,0x01,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0x24,0x84,0x44,0xc4,0x0c,0x84,0x00,0x24,0x00,0x20,0x28,0x0e,0x00 -+// 55079 휧 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x00,0x1f,0x01,0x01,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x24,0x84,0x44,0xc4,0x0c,0xc4,0x00,0x18,0x7e,0x18,0x24,0x14,0x00 -+// 55080 휨 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x03,0x01,0x01,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x84,0x64,0x84,0x44,0x44,0x84,0xe4,0x04,0x00,0x8c,0x08,0x08,0x08,0x00 -+// 55081 휩 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x00,0x1f,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x24,0x84,0x44,0x44,0x0c,0xc4,0x00,0x08,0x04,0x8c,0x04,0x84,0x00 -+// 55082 휪 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x01,0x07,0x01,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x84,0x64,0x84,0x44,0x44,0x0c,0xc4,0x00,0x88,0x88,0x98,0x96,0xc2,0x00 -+// 55083 휫 ; -+,0x00,0x00,0x00,0x0b,0x03,0x04,0x04,0x00,0x17,0x01,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x24,0x84,0x44,0x84,0x0c,0x84,0x00,0x40,0x20,0x70,0x88,0x04,0x00 -+// 55084 휬 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x01,0x17,0x01,0x01,0x01,0x01,0x02,0x08,0x00,0x00,0x08,0x84,0x24,0x84,0x44,0x44,0x0c,0xc4,0x00,0x10,0x08,0x18,0x64,0x42,0x00 -+// 55085 휭 ; -+,0x00,0x00,0x00,0x0b,0x03,0x04,0x04,0x00,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x24,0x84,0x44,0x84,0x0c,0xc4,0x00,0x20,0xd8,0x88,0x88,0xf8,0x00 -+// 55086 휮 ; -+,0x00,0x00,0x00,0x09,0x03,0x04,0x02,0x00,0x1f,0x01,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x0c,0x04,0x04,0x84,0x44,0x84,0x0c,0x84,0x00,0x04,0x60,0x60,0x88,0x04,0x00 -+// 55087 휯 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x06,0x00,0x1f,0x01,0x00,0x03,0x00,0x00,0x03,0x00,0x00,0x08,0x04,0x24,0x84,0x44,0x84,0x0c,0xc4,0x00,0x60,0xfc,0x60,0x98,0x04,0x00 -+// 55088 휰 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x00,0x1f,0x01,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x84,0x44,0xc4,0x0c,0x84,0x00,0xc8,0x04,0xec,0x00,0x00,0x00 -+// 55089 휱 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x04,0x01,0x03,0x01,0x00,0x03,0x01,0x01,0x01,0x00,0x00,0x08,0x84,0x24,0x84,0x44,0x44,0x0c,0xc4,0x00,0x00,0x00,0x08,0x00,0xfc,0x00 -+// 55090 휲 ; -+,0x00,0x00,0x00,0x0b,0x03,0x04,0x06,0x00,0x1f,0x01,0x07,0x00,0x01,0x00,0x07,0x00,0x00,0x08,0x04,0x24,0x84,0x44,0x84,0x0c,0x04,0x00,0xfc,0x10,0x10,0x10,0x00,0x00 -+// 55091 휳 ; -+,0x00,0x00,0x03,0x09,0x03,0x04,0x06,0x00,0x1f,0x01,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x84,0x44,0x84,0x0c,0x80,0x00,0x00,0x60,0x50,0x88,0x70,0x00 -+// 55092 휴 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x1f,0x02,0x02,0x02,0x02,0x00,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x10,0x60,0x00,0x3e,0x10,0x10,0x10,0x10,0x10,0x00 -+// 55093 휵 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x00,0x20,0xc0,0x1f,0x10,0x00,0x98,0x08,0x08,0x00,0x00 -+// 55094 휶 ; -+,0x00,0x00,0x00,0x06,0x01,0x00,0x01,0x01,0x00,0x02,0x02,0x0d,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0xc0,0xe0,0x00,0x20,0xc0,0x06,0x10,0x10,0x08,0x08,0x08,0x08,0x00 -+// 55095 휷 ; -+,0x00,0x01,0x00,0x00,0x01,0x00,0x01,0x00,0x1e,0x02,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0xc0,0x0c,0xc0,0x20,0x10,0x20,0x00,0x3f,0x10,0x30,0x10,0x38,0x44,0x80,0x00 -+// 55096 휸 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x1f,0x02,0x08,0x04,0x04,0x06,0x00,0x00,0xc0,0x00,0xfc,0xc0,0x20,0x10,0x20,0x00,0x3f,0x10,0x10,0x10,0x00,0x38,0x00 -+// 55097 휹 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x02,0x00,0x08,0x00,0x04,0x06,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0x80,0x1f,0x10,0x14,0x10,0x30,0x28,0x84,0x00 -+// 55098 휺 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x02,0x00,0x08,0x08,0x0d,0x04,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x3f,0x10,0x30,0xf4,0x30,0x48,0x48,0x00 -+// 55099 휻 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x00,0x02,0x02,0x06,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x06,0x10,0x10,0x20,0x00,0x00,0xb8,0x00 -+// 55100 휼 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x02,0x07,0x00,0x06,0x02,0x03,0x00,0x00,0x00,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x1f,0x10,0x10,0x00,0x30,0x00,0xf8,0x00 -+// 55101 휽 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x00,0x01,0x00,0x02,0x02,0x00,0x00,0x04,0x04,0x06,0x00,0x40,0x00,0xc0,0xe0,0x00,0x20,0xc0,0x0f,0x10,0x10,0x84,0x84,0x04,0x84,0x00 -+// 55102 휾 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x02,0x03,0x00,0x01,0x04,0x04,0x04,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x1f,0x00,0x10,0x24,0x24,0x20,0x2c,0x00 -+// 55103 휿 ; -+,0x00,0x01,0x00,0x06,0x01,0x02,0x00,0x00,0x1e,0x02,0x0b,0x01,0x0d,0x00,0x07,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x20,0x20,0xc0,0x3f,0x00,0x48,0x24,0x28,0x00,0x28,0x00 -+// 55104 흀 ; -+,0x00,0x01,0x00,0x06,0x00,0x01,0x01,0x01,0x00,0x02,0x02,0x00,0x09,0x04,0x07,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x10,0xe0,0x0f,0x10,0x10,0x10,0x10,0x2c,0x46,0x00 -+// 55105 흁 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x02,0x03,0x01,0x09,0x04,0x05,0x04,0x00,0xc0,0x00,0xc0,0xa0,0x10,0x20,0xc0,0x1f,0x10,0x1c,0x20,0x2c,0x00,0x3c,0x00 -+// 55106 흂 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x1e,0x02,0x07,0x01,0x0d,0x04,0x07,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x00,0x20,0xc0,0x3f,0x00,0x3c,0x00,0x08,0x28,0xbc,0x00 -+// 55107 흃 ; -+,0x00,0x01,0x00,0x06,0x01,0x02,0x01,0x00,0x1e,0x02,0x02,0x01,0x0d,0x04,0x07,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x00,0x20,0xc0,0x3f,0x10,0x10,0x74,0x38,0x44,0x28,0x00 -+// 55108 흄 ; -+,0x00,0x01,0x00,0x0e,0x01,0x02,0x02,0x01,0x1e,0x02,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x20,0x20,0xc0,0x3e,0x00,0x00,0x10,0x10,0x10,0x30,0x00 -+// 55109 흅 ; -+,0x00,0x01,0x00,0x06,0x01,0x02,0x01,0x00,0x1e,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x20,0x20,0xc0,0x3e,0x00,0x10,0x08,0x10,0x00,0x00,0x00 -+// 55110 흆 ; -+,0x00,0x00,0x00,0x06,0x01,0x02,0x01,0x00,0x1f,0x02,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x80,0xc0,0x20,0x00,0x20,0x80,0xff,0x10,0x10,0x88,0x98,0x94,0xa2,0x00 -+// 55111 흇 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x10,0x02,0x02,0x00,0x00,0x03,0x04,0x00,0x00,0x00,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x1f,0x10,0xd0,0xc0,0xa0,0x18,0x0c,0x00 -+// 55112 흈 ; -+,0x00,0x01,0x00,0x06,0x01,0x02,0x01,0x00,0x1e,0x02,0x02,0x03,0x03,0x04,0x08,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x3f,0x00,0x10,0x10,0x10,0xac,0x44,0x00 -+// 55113 흉 ; -+,0x00,0x01,0x00,0x06,0x01,0x02,0x01,0x00,0x1e,0x02,0x02,0x01,0x02,0x02,0x01,0x00,0x00,0xc0,0x00,0xc0,0x20,0x00,0x20,0x80,0x1f,0x10,0x50,0x20,0x10,0x10,0xe0,0x00 -+// 55114 흊 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x01,0x00,0x02,0x02,0x07,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x03,0x10,0x10,0xf8,0xc0,0x30,0x08,0x00 -+// 55115 흋 ; -+,0x00,0x01,0x00,0x06,0x01,0x01,0x01,0x00,0x1e,0x02,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0xc0,0x00,0xc0,0x20,0x10,0x20,0xc0,0x10,0x10,0xe0,0x0c,0xc0,0xa0,0x08,0x00 -+// 55116 흌 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x01,0x00,0x02,0x02,0x06,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xc0,0xe0,0x20,0x20,0xc0,0x06,0x10,0x10,0x08,0x08,0x88,0x08,0x00 -+// 55117 흍 ; -+,0x00,0x01,0x00,0x06,0x01,0x01,0x01,0x01,0x00,0x02,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x10,0xe0,0x0f,0x10,0x10,0x00,0x00,0x00,0x08,0x00 -+// 55118 흎 ; -+,0x00,0x01,0x00,0x06,0x01,0x00,0x01,0x00,0x10,0x02,0x02,0x06,0x00,0x01,0x01,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x1f,0x10,0x18,0x00,0x10,0x00,0x3c,0x00 -+// 55119 흏 ; -+,0x00,0x01,0x00,0x04,0x01,0x00,0x01,0x00,0x1a,0x02,0x00,0x06,0x00,0x01,0x01,0x00,0x00,0xc0,0x08,0xc0,0x20,0x10,0x20,0xc2,0x10,0x10,0x00,0xd8,0xe0,0x20,0x20,0x00 -+// 55120 흐 ; -+,0x00,0x00,0x01,0x00,0x00,0x0f,0x00,0x02,0x02,0x02,0x01,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0xc0,0xc0,0x30,0x10,0x10,0xe0,0x00,0x00,0x07,0x00,0x00 -+// 55121 흑 ; -+,0x00,0x01,0x00,0x0c,0x01,0x02,0x02,0x01,0x00,0x1c,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0xc0,0x60,0x10,0x20,0xc0,0x02,0x00,0x00,0xb0,0x10,0x10,0x10,0x00 -+// 55122 흒 ; -+,0x00,0x01,0x00,0x04,0x01,0x02,0x01,0x00,0x00,0x00,0x0d,0x01,0x01,0x01,0x01,0x00,0x00,0xe0,0x04,0xc0,0x20,0x10,0x20,0xc0,0x3f,0x00,0x68,0x08,0x08,0x08,0x08,0x00 -+// 55123 흓 ; -+,0x00,0x01,0x00,0x04,0x01,0x02,0x01,0x00,0x00,0x18,0x00,0x09,0x01,0x01,0x01,0x00,0x00,0xc0,0x04,0xc0,0x20,0x10,0x20,0xc0,0x07,0x00,0x20,0x10,0x30,0x68,0x04,0x00 -+// 55124 흔 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x1f,0x00,0x04,0x02,0x02,0x03,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x20,0x20,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00 -+// 55125 흕 ; -+,0x00,0x01,0x00,0x07,0x01,0x00,0x01,0x01,0x00,0x1c,0x00,0x08,0x08,0x09,0x06,0x00,0x00,0xe0,0x00,0xc0,0xe0,0x10,0x10,0xe0,0x03,0x00,0x04,0x10,0x10,0x2c,0x84,0x00 -+// 55126 흖 ; -+,0x00,0x01,0x00,0x06,0x01,0x02,0x01,0x00,0x00,0x18,0x00,0x08,0x08,0x08,0x06,0x00,0x00,0xe0,0x04,0xc0,0xa0,0x10,0x10,0xc0,0x07,0x00,0x20,0xb6,0x30,0x48,0x48,0x00 -+// 55127 흗 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x1f,0x00,0x07,0x02,0x02,0x03,0x00,0x00,0x00,0x00,0xfc,0xc0,0x20,0x00,0xe0,0x00,0xbe,0x00,0xf0,0x00,0x00,0xf8,0x00 -+// 55128 흘 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x1f,0x00,0x00,0x00,0x02,0x02,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x10,0xe0,0x00,0x80,0x00,0x10,0x10,0x00,0x08,0x00 -+// 55129 흙 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x03,0x00,0x00,0x10,0x07,0x00,0x0d,0x04,0x07,0x00,0x00,0xc0,0x00,0xc0,0x20,0x10,0x20,0xc0,0x0f,0x00,0x3c,0x04,0x04,0x04,0x00,0x00 -+// 55130 흚 ; -+,0x00,0x01,0x00,0x04,0x01,0x02,0x01,0x00,0x00,0x10,0x05,0x00,0x0d,0x04,0x07,0x00,0x00,0xc0,0x00,0xc0,0x20,0x10,0x20,0xc0,0x07,0x00,0x6c,0x24,0x24,0x20,0x20,0x00 -+// 55131 흛 ; -+,0x00,0x01,0x00,0x07,0x01,0x00,0x01,0x00,0x00,0x1e,0x00,0x01,0x0d,0x04,0x07,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x10,0xe0,0x00,0x00,0x4c,0x24,0x24,0x24,0x24,0x00 -+// 55132 흜 ; -+,0x00,0x01,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0xc0,0x04,0xc0,0x30,0x10,0x30,0xc0,0xbf,0x00,0x90,0x10,0x28,0x64,0x02,0x00 -+// 55133 흝 ; -+,0x00,0x01,0x00,0x0c,0x01,0x02,0x02,0x01,0x00,0x1e,0x00,0x01,0x09,0x08,0x0f,0x00,0x00,0xc0,0x00,0xc0,0x20,0x10,0x20,0xc0,0x00,0x00,0x4c,0x40,0x78,0x40,0x3c,0x00 -+// 55134 흞 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x1c,0x00,0x01,0x0b,0x08,0x0f,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x00,0x20,0xc0,0x02,0x00,0x0c,0x00,0x48,0x20,0xbc,0x00 -+// 55135 흟 ; -+,0x00,0x01,0x00,0x08,0x03,0x02,0x02,0x01,0x00,0x10,0x00,0x01,0x0a,0x08,0x0e,0x00,0x00,0xc0,0x08,0x80,0x60,0x20,0x20,0xc0,0x0e,0x00,0x00,0xb0,0x68,0x48,0x78,0x00 -+// 55136 흠 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x3e,0x00,0x06,0x02,0x02,0x02,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x00,0x20,0xc0,0x02,0x00,0x00,0x10,0x10,0x10,0x10,0x00 -+// 55137 흡 ; -+,0x00,0x01,0x00,0x08,0x01,0x02,0x02,0x01,0x00,0x18,0x00,0x02,0x02,0x02,0x02,0x00,0x00,0xc0,0x08,0xc0,0x60,0x20,0x20,0xc0,0x06,0x00,0x10,0x10,0x10,0x10,0x10,0x00 -+// 55138 흢 ; -+,0x00,0x01,0x00,0x0e,0x01,0x02,0x02,0x00,0x00,0x10,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0xc0,0x00,0xc0,0x20,0x10,0x20,0xc0,0x0f,0x00,0x18,0x88,0x98,0x84,0x82,0x00 -+// 55139 흣 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x3f,0x00,0x00,0x00,0x01,0x04,0x00,0x00,0xc0,0x00,0xfc,0xe0,0x20,0x20,0xe0,0x00,0x80,0x80,0x80,0xc0,0x30,0x08,0x00 -+// 55140 흤 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x18,0x00,0x03,0x03,0x04,0x08,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x20,0x20,0xc0,0x06,0x00,0x30,0x10,0x30,0xa8,0x84,0x00 -+// 55141 흥 ; -+,0x00,0x00,0x00,0x0f,0x00,0x02,0x02,0x01,0x00,0x1f,0x00,0x01,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0xdc,0xc0,0x20,0x20,0xe0,0x00,0xa6,0x00,0xe0,0x10,0x10,0xe0,0x00 -+// 55142 흦 ; -+,0x00,0x01,0x00,0x04,0x01,0x02,0x01,0x00,0x00,0x18,0x00,0x07,0x00,0x01,0x06,0x00,0x00,0xc0,0x00,0xc0,0x20,0x10,0x20,0xc0,0x07,0x00,0x00,0xc0,0xc0,0x30,0x08,0x00 -+// 55143 흧 ; -+,0x00,0x01,0x00,0x0e,0x01,0x02,0x03,0x00,0x1e,0x00,0x00,0x04,0x00,0x01,0x06,0x00,0x00,0xc0,0x00,0xc0,0xe0,0x10,0x20,0xc0,0x1f,0x00,0xc0,0x88,0xc0,0x30,0x08,0x00 -+// 55144 흨 ; -+,0x00,0x01,0x00,0x00,0x01,0x02,0x02,0x01,0x00,0x1c,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0xc0,0x0c,0xc0,0x20,0x10,0x20,0xc0,0x03,0x00,0x00,0x08,0x38,0x08,0x08,0x00 -+// 55145 흩 ; -+,0x00,0x01,0x00,0x04,0x01,0x02,0x01,0x00,0x00,0x00,0x04,0x04,0x02,0x00,0x03,0x00,0x00,0xc0,0x04,0xc0,0x20,0x10,0x20,0x80,0x3f,0x00,0x38,0x00,0x10,0x00,0xf8,0x00 -+// 55146 흪 ; -+,0x00,0x01,0x00,0x0f,0x01,0x02,0x02,0x01,0x00,0x3f,0x00,0x07,0x02,0x01,0x09,0x00,0x00,0x80,0x00,0xfc,0xc0,0x20,0x20,0xe0,0x00,0xa6,0x00,0x00,0x20,0x20,0x3c,0x00 -+// 55147 흫 ; -+,0x00,0x01,0x00,0x00,0x03,0x02,0x02,0x00,0x3e,0x00,0x00,0x0e,0x01,0x02,0x01,0x00,0x00,0xc0,0x08,0xc0,0x20,0x20,0x20,0x80,0x1e,0x00,0x00,0xb8,0xc0,0x20,0x20,0x00 -+// 55148 희 ; -+,0x00,0x00,0x03,0x00,0x0f,0x01,0x02,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0xf4,0x04,0xc4,0x44,0x44,0x84,0x1c,0x84,0x04,0x04,0x04,0x00 -+// 55149 흭 ; -+,0x00,0x00,0x03,0x00,0x03,0x06,0x04,0x04,0x03,0x1f,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x8c,0x24,0x04,0xc4,0x44,0x44,0x0c,0x00,0x00,0xc8,0x08,0x08,0x08,0x00 -+// 55150 흮 ; -+,0x00,0x00,0x01,0x03,0x03,0x04,0x04,0x06,0x01,0x1c,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x44,0x44,0x8c,0xe4,0x00,0x00,0x88,0x88,0x84,0x00,0x00 -+// 55151 흯 ; -+,0x00,0x00,0x01,0x03,0x03,0x04,0x04,0x06,0x01,0x1c,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xe4,0x04,0x44,0x44,0x8c,0xe4,0x00,0x10,0x90,0x90,0xa4,0xc2,0x00 -+// 55152 흰 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x03,0x00,0x1f,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x84,0x04,0xe4,0x84,0x44,0x44,0xc4,0x0c,0x04,0x04,0x04,0x00,0x0e,0x00 -+// 55153 흱 ; -+,0x00,0x00,0x01,0x03,0x03,0x04,0x04,0x06,0x01,0x1e,0x00,0x0c,0x04,0x04,0x06,0x00,0x00,0x08,0x04,0xe4,0x04,0x44,0x44,0x84,0x64,0x00,0x00,0xf0,0x10,0x28,0xc4,0x00 -+// 55154 흲 ; -+,0x00,0x00,0x03,0x0f,0x01,0x04,0x04,0x03,0x00,0x1e,0x00,0x04,0x04,0x04,0x06,0x00,0x00,0x00,0x0c,0xe4,0x84,0x44,0x44,0x8c,0x68,0x00,0x10,0xd6,0x38,0x44,0x28,0x00 -+// 55155 흳 ; -+,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x04,0x01,0x1e,0x00,0x03,0x02,0x02,0x01,0x00,0x00,0x08,0x8c,0x64,0x04,0xc4,0x44,0x8c,0xe8,0x00,0x00,0x00,0x00,0x00,0x9c,0x00 -+// 55156 흴 ; -+,0x00,0x00,0x00,0x0f,0x03,0x04,0x04,0x03,0x01,0x1c,0x03,0x00,0x03,0x01,0x01,0x00,0x00,0x08,0x0c,0xe4,0x84,0x44,0x44,0x8c,0xc0,0x00,0xf8,0x08,0x18,0x00,0xfe,0x00 -+// 55157 흵 ; -+,0x00,0x00,0x03,0x00,0x01,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x0d,0x04,0x07,0x00,0x00,0x00,0x8c,0x64,0x84,0x44,0x44,0x84,0x2c,0x00,0x00,0x8c,0x04,0x04,0x08,0x00 -+// 55158 흶 ; -+,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x01,0x04,0x04,0x04,0x00,0x00,0x8c,0x64,0x84,0x44,0x44,0x84,0x28,0x00,0x00,0x6c,0x00,0x20,0x28,0x00 -+// 55159 흷 ; -+,0x00,0x00,0x03,0x00,0x03,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x09,0x08,0x0e,0x00,0x00,0x00,0x84,0x64,0x84,0x44,0x44,0x84,0x2c,0x00,0x08,0x44,0x68,0x40,0x28,0x00 -+// 55160 흸 ; -+,0x00,0x00,0x03,0x03,0x03,0x04,0x04,0x03,0x00,0x1f,0x00,0x07,0x00,0x0c,0x05,0x04,0x00,0x00,0x8c,0xe0,0x04,0x44,0x44,0x80,0x28,0x00,0x10,0x90,0x10,0x2c,0xc4,0x00 -+// 55161 흹 ; -+,0x00,0x00,0x00,0x07,0x01,0x02,0x02,0x01,0x00,0x0c,0x07,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0xf4,0xc4,0x24,0x24,0x84,0xe4,0x00,0xec,0xa0,0xac,0x20,0x1e,0x00 -+// 55162 흺 ; -+,0x00,0x00,0x01,0x0f,0x01,0x04,0x04,0x03,0x00,0x1e,0x01,0x01,0x01,0x04,0x07,0x00,0x00,0x08,0x84,0xe4,0x84,0x44,0x44,0x84,0x64,0x00,0x24,0x00,0x20,0x28,0x0e,0x00 -+// 55163 흻 ; -+,0x00,0x00,0x01,0x0f,0x01,0x00,0x04,0x03,0x00,0x1f,0x00,0x05,0x01,0x04,0x07,0x00,0x00,0x08,0x84,0xf4,0x84,0x44,0x44,0x84,0x24,0x04,0x18,0x82,0x98,0x04,0x84,0x08 -+// 55164 흼 ; -+,0x00,0x00,0x03,0x00,0x0f,0x03,0x04,0x04,0x03,0x1f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x8c,0x04,0x84,0x84,0x44,0x44,0x8c,0x84,0x00,0x9c,0x08,0x08,0x08,0x00 -+// 55165 흽 ; -+,0x00,0x00,0x00,0x0f,0x01,0x04,0x04,0x03,0x00,0x1f,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0xe4,0x84,0x44,0x44,0x84,0x24,0x00,0x08,0x04,0x8c,0x04,0x8c,0x00 -+// 55166 흾 ; -+,0x00,0x00,0x00,0x0f,0x03,0x04,0x02,0x01,0x00,0x0c,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0xe4,0xc4,0x44,0x44,0x84,0xe4,0x00,0x88,0x88,0x9c,0x02,0xc0,0x00 -+// 55167 흿 ; -+,0x00,0x00,0x03,0x00,0x0f,0x02,0x04,0x04,0x01,0x03,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x84,0x04,0x84,0xc4,0x44,0x44,0x0c,0xc4,0x00,0x20,0x60,0xc8,0x04,0x00 -+// 55168 힀 ; -+,0x00,0x00,0x00,0x0f,0x03,0x04,0x04,0x03,0x00,0x1e,0x00,0x01,0x03,0x04,0x08,0x00,0x00,0x08,0x04,0xe4,0x84,0x44,0x44,0x8c,0x64,0x00,0x10,0x10,0x98,0x64,0x00,0x00 -+// 55169 힁 ; -+,0x00,0x00,0x00,0x0f,0x01,0x04,0x04,0x03,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0xf4,0x84,0x44,0x44,0xc4,0x74,0x04,0x30,0x48,0x84,0x8c,0x78,0x00 -+// 55170 힂 ; -+,0x00,0x00,0x00,0x0f,0x03,0x04,0x04,0x03,0x01,0x08,0x00,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x04,0xf4,0x84,0x44,0x44,0x84,0xc4,0x00,0x04,0x60,0x50,0x8c,0x02,0x00 -+// 55171 힃 ; -+,0x00,0x03,0x00,0x07,0x03,0x00,0x02,0x01,0x0f,0x00,0x00,0x03,0x00,0x00,0x02,0x00,0x00,0x8c,0x04,0xf4,0xc4,0x24,0x44,0x84,0xc4,0x00,0x00,0xf8,0x60,0x8c,0x02,0x00 -+// 55172 힄 ; -+,0x00,0x00,0x00,0x0f,0x03,0x04,0x04,0x03,0x01,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0xf4,0x84,0x44,0x44,0x8c,0xc4,0x00,0xcc,0x04,0xfc,0x04,0x00,0x00 -+// 55173 힅 ; -+,0x00,0x00,0x00,0x0f,0x03,0x04,0x04,0x01,0x01,0x08,0x03,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0xe4,0xc4,0x44,0x44,0x8c,0xc4,0x00,0x3c,0x00,0x08,0x04,0x00,0x00 -+// 55174 힆 ; -+,0x00,0x00,0x00,0x0f,0x01,0x00,0x04,0x03,0x01,0x0c,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x0c,0x04,0xf4,0x84,0x44,0x44,0xc4,0xe4,0x00,0x04,0x10,0x10,0x90,0x9e,0x00 -+// 55175 힇 ; -+,0x00,0x00,0x03,0x0f,0x01,0x04,0x04,0x03,0x01,0x08,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x08,0x84,0xe4,0x84,0x44,0x44,0x8c,0xe4,0x00,0x00,0xa0,0x70,0x88,0x50,0x00 -+// 55176 히 ; -+,0x00,0x00,0x00,0x03,0x00,0x1e,0x01,0x07,0x08,0x08,0x0c,0x07,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x84,0x44,0x44,0x44,0x84,0x04,0x04,0x04,0x00 -+// 55177 힉 ; -+,0x00,0x00,0x07,0x00,0x02,0x05,0x08,0x08,0x0d,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x04,0x04,0x84,0x84,0x80,0x00,0xd8,0x08,0x08,0x08,0x08,0x00 -+// 55178 힊 ; -+,0x00,0x00,0x03,0x00,0x02,0x07,0x08,0x08,0x0d,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x04,0x04,0x84,0x84,0x80,0x00,0x28,0x80,0x80,0x80,0x08,0x00 -+// 55179 힋 ; -+,0x00,0x00,0x03,0x00,0x02,0x05,0x08,0x08,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x64,0x04,0x84,0x04,0x04,0x84,0x00,0x08,0x88,0x98,0x96,0x82,0x00 -+// 55180 힌 ; -+,0x00,0x00,0x07,0x00,0x1f,0x03,0x08,0x08,0x08,0x07,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x04,0xe4,0x04,0x84,0x04,0x84,0x04,0x04,0x00,0x00,0x02,0x00,0x00 -+// 55181 힍 ; -+,0x00,0x00,0x02,0x00,0x02,0x05,0x08,0x08,0x04,0x00,0x08,0x04,0x04,0x07,0x00,0x00,0x00,0x0c,0x04,0x44,0x04,0x04,0x04,0x44,0x84,0x00,0x06,0x10,0x18,0xa4,0x42,0x00 -+// 55182 힎 ; -+,0x00,0x00,0x03,0x00,0x01,0x04,0x04,0x04,0x03,0x00,0x04,0x00,0x00,0x02,0x02,0x00,0x00,0x0c,0x04,0x64,0x04,0x84,0x44,0x44,0x84,0x38,0x02,0x18,0x24,0xa4,0x38,0x00 -+// 55183 힏 ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x07,0x00,0x02,0x01,0x01,0x01,0x00,0x00,0x00,0x0c,0x04,0xc4,0x04,0x84,0x44,0x44,0x84,0x00,0x1c,0x00,0x00,0x00,0x04,0x00 -+// 55184 힐 ; -+,0x00,0x00,0x02,0x00,0x1f,0x03,0x04,0x08,0x04,0x03,0x01,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x04,0x04,0xe4,0x04,0x44,0x44,0xc4,0x00,0xcc,0x04,0x9c,0x00,0xfe,0x00 -+// 55185 힑 ; -+,0x00,0x00,0x03,0x00,0x03,0x04,0x08,0x08,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x0c,0x04,0x64,0x04,0x84,0x44,0x44,0x84,0x00,0xbc,0x84,0x04,0x04,0x04,0x00 -+// 55186 힒 ; -+,0x00,0x00,0x07,0x00,0x1b,0x05,0x08,0x08,0x07,0x00,0x05,0x00,0x05,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x44,0x44,0x84,0x00,0xec,0x24,0x24,0x24,0x20,0x00 -+// 55187 힓 ; -+,0x00,0x00,0x03,0x00,0x0b,0x04,0x08,0x08,0x07,0x00,0x09,0x01,0x0d,0x00,0x06,0x00,0x00,0x0c,0x04,0x04,0x04,0x84,0x44,0x44,0x84,0x00,0x44,0x24,0x24,0x04,0x24,0x00 -+// 55188 힔 ; -+,0x00,0x00,0x03,0x00,0x0b,0x04,0x08,0x08,0x07,0x00,0x05,0x00,0x0c,0x04,0x06,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x04,0x84,0x84,0x00,0x98,0x10,0x18,0x24,0x42,0x00 -+// 55189 힕 ; -+,0x00,0x00,0x07,0x00,0x1f,0x07,0x08,0x08,0x05,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x84,0x00,0x68,0x00,0x28,0x20,0x3c,0x00 -+// 55190 힖 ; -+,0x00,0x00,0x07,0x00,0x1f,0x03,0x08,0x08,0x04,0x00,0x05,0x01,0x0d,0x04,0x07,0x00,0x00,0x08,0x04,0x04,0xc4,0x04,0x04,0x44,0x84,0x00,0x4c,0x08,0x20,0x28,0x4e,0x00 -+// 55191 힗 ; -+,0x00,0x00,0x03,0x00,0x03,0x04,0x08,0x08,0x07,0x00,0x01,0x01,0x04,0x04,0x02,0x00,0x00,0x0c,0x04,0x44,0x04,0x84,0x44,0x84,0x84,0x18,0x02,0x18,0x24,0x24,0x18,0x00 -+// 55192 힘 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x04,0x08,0x04,0x03,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x44,0x44,0x44,0x84,0x00,0x8c,0x04,0x00,0x9c,0x00 -+// 55193 힙 ; -+,0x00,0x00,0x03,0x00,0x1f,0x03,0x08,0x08,0x04,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x08,0x04,0x04,0xc4,0x04,0x04,0x44,0x84,0x00,0x0c,0x04,0x84,0x04,0x8c,0x00 -+// 55194 힚 ; -+,0x00,0x00,0x03,0x00,0x03,0x07,0x08,0x08,0x07,0x00,0x00,0x04,0x04,0x04,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x44,0x04,0x84,0x00,0x88,0x88,0x9c,0x82,0x00,0x00 -+// 55195 힛 ; -+,0x00,0x00,0x03,0x00,0x12,0x07,0x08,0x08,0x08,0x02,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x84,0x84,0x84,0x00,0x60,0x60,0x50,0x88,0x04,0x00 -+// 55196 힜 ; -+,0x00,0x00,0x07,0x00,0x03,0x07,0x08,0x08,0x07,0x00,0x01,0x01,0x02,0x04,0x08,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x44,0x04,0x84,0x00,0x08,0x08,0x94,0x66,0x42,0x00 -+// 55197 힝 ; -+,0x00,0x00,0x03,0x00,0x02,0x07,0x08,0x08,0x0c,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x44,0x04,0x84,0x44,0x44,0x84,0x04,0x30,0x88,0x84,0x84,0x78,0x00 -+// 55198 힞 ; -+,0x00,0x00,0x00,0x1f,0x02,0x0c,0x08,0x08,0x07,0x00,0x03,0x00,0x00,0x01,0x02,0x00,0x00,0x0c,0x04,0xc4,0x04,0x84,0x04,0x84,0x00,0x00,0x6c,0x60,0x60,0x88,0x04,0x00 -+// 55199 힟 ; -+,0x00,0x00,0x03,0x00,0x0b,0x07,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x0c,0x04,0x04,0x04,0x84,0x44,0x44,0x84,0x00,0x60,0x6c,0x60,0xd8,0x04,0x00 -+// 55200 힠 ; -+,0x00,0x00,0x00,0x00,0x02,0x07,0x08,0x08,0x04,0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x00,0x0c,0x04,0x64,0x04,0x84,0x44,0x44,0x84,0x00,0xec,0x04,0xec,0x04,0x04,0x00 -+// 55201 힡 ; -+,0x00,0x00,0x03,0x00,0x03,0x04,0x08,0x08,0x07,0x00,0x02,0x01,0x01,0x01,0x01,0x00,0x00,0x0c,0x04,0x64,0x04,0x84,0x44,0x44,0x84,0x00,0x1c,0x00,0x0c,0x00,0xfe,0x00 -+// 55202 힢 ; -+,0x00,0x00,0x07,0x00,0x13,0x07,0x08,0x08,0x0c,0x02,0x02,0x00,0x00,0x00,0x04,0x00,0x00,0x08,0x04,0x04,0x04,0x84,0x44,0x44,0x84,0x00,0x04,0x10,0x88,0x90,0x9e,0x00 -+// 55203 힣 ; -+,0x00,0x00,0x03,0x00,0x0b,0x07,0x08,0x08,0x07,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x04,0x04,0x84,0x44,0x44,0x84,0x00,0x00,0x20,0x58,0x88,0xd8,0x00 -+// 55204 힤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55205 힥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55206 힦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55207 힧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55208 힨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55209 힩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55210 힪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55211 힫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55212 힬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55213 힭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55214 힮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55215 힯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55216 ힰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55217 ힱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55218 ힲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55219 ힳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55220 ힴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55221 ힵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55222 ힶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55223 ힷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55224 ힸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55225 ힹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55226 ힺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55227 ힻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55228 ힼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55229 ힽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55230 ힾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55231 ힿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55232 ퟀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55233 ퟁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55234 ퟂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55235 ퟃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55236 ퟄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55237 ퟅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55238 ퟆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55239 ퟇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55240 ퟈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55241 ퟉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55242 ퟊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55243 ퟋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55244 ퟌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55245 ퟍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55246 ퟎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55247 ퟏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55248 ퟐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55249 ퟑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55250 ퟒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55251 ퟓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55252 ퟔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55253 ퟕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55254 ퟖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55255 ퟗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55256 ퟘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55257 ퟙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55258 ퟚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55259 ퟛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55260 ퟜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55261 ퟝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55262 ퟞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55263 ퟟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55264 ퟠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55265 ퟡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55266 ퟢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55267 ퟣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55268 ퟤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55269 ퟥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55270 ퟦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55271 ퟧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55272 ퟨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55273 ퟩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55274 ퟪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55275 ퟫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55276 ퟬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55277 ퟭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55278 ퟮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55279 ퟯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55280 ퟰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55281 ퟱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55282 ퟲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55283 ퟳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55284 ퟴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55285 ퟵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55286 ퟶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55287 ퟷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55288 ퟸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55289 ퟹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55290 ퟺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55291 ퟻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55292 ퟼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55293 ퟽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55294 ퟾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55295 ퟿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55296 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55297 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55298 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55299 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55300 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55301 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55302 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55303 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55304 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55305 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55306 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55307 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55308 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55309 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55310 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55311 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55312 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55313 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55314 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55315 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55316 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55317 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55318 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55319 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55320 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55321 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55322 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55323 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55324 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55325 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55326 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55327 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55328 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55329 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55330 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55331 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55332 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55333 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55334 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55335 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55336 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55337 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55338 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55339 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55340 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55341 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55342 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55343 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55344 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55345 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55346 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55347 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55348 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55349 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55350 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55351 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55352 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55353 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55354 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55355 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55356 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55357 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55358 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55359 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55360 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55361 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55362 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55363 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55364 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55365 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55366 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55367 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55368 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55369 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55370 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55371 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55372 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55373 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55374 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55375 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55376 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55377 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55378 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55379 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55380 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55381 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55382 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55383 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55384 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55385 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55386 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55387 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55388 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55389 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55390 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55391 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55392 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55393 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55394 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55395 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55396 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55397 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55398 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55399 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55400 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55401 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55402 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55403 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55404 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55405 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55406 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55407 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55408 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55409 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55410 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55411 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55412 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55413 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55414 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55415 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55416 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55417 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55418 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55419 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55420 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55421 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55422 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55423 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55424 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55425 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55426 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55427 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55428 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55429 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55430 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55431 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55432 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55433 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55434 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55435 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55436 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55437 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55438 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55439 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55440 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55441 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55442 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55443 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55444 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55445 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55446 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55447 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55448 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55449 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55450 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55451 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55452 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55453 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55454 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55455 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55456 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55457 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55458 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55459 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55460 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55461 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55462 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55463 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55464 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55465 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55466 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55467 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55468 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55469 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55470 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55471 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55472 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55473 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55474 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55475 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55476 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55477 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55478 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55479 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55480 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55481 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55482 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55483 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55484 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55485 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55486 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55487 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55488 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55489 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55490 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55491 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55492 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55493 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55494 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55495 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55496 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55497 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55498 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55499 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55500 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55501 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55502 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55503 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55504 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55505 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55506 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55507 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55508 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55509 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55510 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55511 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55512 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55513 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55514 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55515 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55516 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55517 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55518 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55519 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55520 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55521 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55522 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55523 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55524 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55525 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55526 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55527 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55528 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55529 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55530 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55531 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55532 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55533 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55534 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55535 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55536 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55537 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55538 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55539 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55540 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55541 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55542 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55543 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55544 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55545 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55546 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55547 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55548 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55549 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55550 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55551 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55552 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55553 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55554 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55555 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55556 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55557 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55558 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55559 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55560 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55561 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55562 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55563 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55564 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55565 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55566 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55567 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55568 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55569 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55570 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55571 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55572 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55573 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55574 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55575 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55576 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55577 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55578 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55579 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55580 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55581 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55582 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55583 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55584 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55585 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55586 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55587 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55588 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55589 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55590 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55591 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55592 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55593 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55594 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55595 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55596 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55597 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55598 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55599 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55600 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55601 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55602 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55603 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55604 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55605 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55606 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55607 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55608 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55609 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55610 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55611 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55612 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55613 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55614 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55615 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55616 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55617 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55618 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55619 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55620 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55621 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55622 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55623 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55624 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55625 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55626 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55627 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55628 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55629 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55630 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55631 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55632 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55633 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55634 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55635 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55636 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55637 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55638 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55639 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55640 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55641 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55642 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55643 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55644 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55645 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55646 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55647 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55648 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55649 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55650 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55651 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55652 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55653 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55654 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55655 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55656 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55657 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55658 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55659 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55660 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55661 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55662 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55663 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55664 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55665 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55666 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55667 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55668 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55669 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55670 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55671 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55672 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55673 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55674 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55675 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55676 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55677 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55678 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55679 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55680 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55681 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55682 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55683 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55684 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55685 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55686 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55687 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55688 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55689 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55690 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55691 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55692 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55693 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55694 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55695 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55696 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55697 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55698 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55699 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55700 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55701 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55702 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55703 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55704 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55705 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55706 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55707 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55708 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55709 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55710 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55711 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55712 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55713 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55714 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55715 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55716 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55717 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55718 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55719 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55720 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55721 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55722 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55723 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55724 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55725 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55726 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55727 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55728 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55729 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55730 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55731 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55732 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55733 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55734 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55735 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55736 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55737 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55738 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55739 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55740 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55741 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55742 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55743 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55744 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55745 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55746 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55747 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55748 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55749 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55750 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55751 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55752 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55753 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55754 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55755 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55756 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55757 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55758 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55759 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55760 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55761 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55762 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55763 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55764 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55765 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55766 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55767 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55768 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55769 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55770 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55771 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55772 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55773 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55774 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55775 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55776 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55777 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55778 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55779 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55780 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55781 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55782 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55783 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55784 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55785 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55786 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55787 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55788 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55789 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55790 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55791 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55792 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55793 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55794 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55795 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55796 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55797 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55798 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55799 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55800 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55801 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55802 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55803 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55804 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55805 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55806 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55807 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55808 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55809 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55810 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55811 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55812 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55813 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55814 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55815 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55816 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55817 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55818 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55819 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55820 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55821 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55822 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55823 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55824 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55825 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55826 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55827 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55828 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55829 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55830 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55831 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55832 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55833 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55834 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55835 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55836 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55837 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55838 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55839 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55840 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55841 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55842 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55843 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55844 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55845 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55846 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55847 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55848 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55849 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55850 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55851 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55852 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55853 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55854 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55855 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55856 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55857 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55858 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55859 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55860 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55861 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55862 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55863 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55864 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55865 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55866 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55867 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55868 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55869 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55870 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55871 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55872 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55873 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55874 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55875 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55876 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55877 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55878 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55879 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55880 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55881 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55882 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55883 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55884 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55885 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55886 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55887 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55888 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55889 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55890 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55891 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55892 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55893 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55894 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55895 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55896 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55897 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55898 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55899 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55900 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55901 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55902 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55903 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55904 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55905 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55906 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55907 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55908 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55909 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55910 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55911 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55912 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55913 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55914 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55915 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55916 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55917 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55918 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55919 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55920 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55921 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55922 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55923 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55924 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55925 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55926 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55927 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55928 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55929 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55930 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55931 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55932 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55933 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55934 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55935 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55936 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55937 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55938 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55939 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55940 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55941 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55942 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55943 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55944 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55945 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55946 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55947 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55948 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55949 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55950 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55951 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55952 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55953 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55954 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55955 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55956 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55957 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55958 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55959 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55960 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55961 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55962 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55963 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55964 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55965 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55966 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55967 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55968 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55969 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55970 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55971 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55972 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55973 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55974 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55975 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55976 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55977 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55978 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55979 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55980 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55981 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55982 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55983 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55984 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55985 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55986 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55987 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55988 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55989 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55990 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55991 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55992 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55993 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55994 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55995 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55996 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55997 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55998 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 55999 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56000 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56001 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56002 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56003 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56004 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56005 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56006 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56007 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56008 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56009 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56010 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56011 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56012 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56013 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56014 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56015 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56016 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56017 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56018 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56019 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56020 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56021 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56022 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56023 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56024 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56025 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56026 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56027 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56028 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56029 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56030 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56031 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56032 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56033 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56034 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56035 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56036 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56037 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56038 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56039 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56040 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56041 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56042 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56043 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56044 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56045 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56046 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56047 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56048 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56049 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56050 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56051 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56052 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56053 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56054 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56055 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56056 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56057 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56058 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56059 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56060 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56061 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56062 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56063 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56064 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56065 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56066 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56067 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56068 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56069 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56070 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56071 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56072 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56073 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56074 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56075 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56076 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56077 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56078 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56079 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56080 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56081 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56082 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56083 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56084 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56085 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56086 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56087 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56088 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56089 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56090 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56091 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56092 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56093 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56094 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56095 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56096 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56097 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56098 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56099 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56100 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56101 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56102 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56103 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56104 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56105 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56106 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56107 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56108 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56109 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56110 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56111 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56112 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56113 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56114 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56115 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56116 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56117 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56118 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56119 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56120 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56121 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56122 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56123 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56124 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56125 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56126 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56127 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56128 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56129 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56130 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56131 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56132 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56133 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56134 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56135 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56136 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56137 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56138 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56139 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56140 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56141 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56142 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56143 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56144 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56145 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56146 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56147 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56148 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56149 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56150 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56151 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56152 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56153 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56154 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56155 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56156 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56157 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56158 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56159 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56160 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56161 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56162 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56163 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56164 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56165 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56166 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56167 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56168 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56169 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56170 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56171 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56172 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56173 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56174 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56175 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56176 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56177 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56178 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56179 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56180 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56181 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56182 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56183 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56184 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56185 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56186 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56187 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56188 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56189 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56190 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56191 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56192 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56193 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56194 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56195 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56196 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56197 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56198 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56199 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56200 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56201 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56202 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56203 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56204 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56205 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56206 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56207 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56208 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56209 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56210 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56211 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56212 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56213 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56214 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56215 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56216 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56217 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56218 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56219 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56220 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56221 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56222 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56223 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56224 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56225 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56226 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56227 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56228 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56229 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56230 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56231 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56232 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56233 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56234 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56235 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56236 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56237 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56238 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56239 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56240 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56241 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56242 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56243 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56244 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56245 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56246 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56247 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56248 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56249 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56250 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56251 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56252 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56253 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56254 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56255 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56256 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56257 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56258 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56259 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56260 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56261 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56262 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56263 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56264 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56265 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56266 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56267 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56268 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56269 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56270 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56271 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56272 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56273 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56274 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56275 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56276 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56277 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56278 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56279 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56280 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56281 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56282 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56283 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56284 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56285 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56286 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56287 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56288 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56289 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56290 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56291 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56292 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56293 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56294 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56295 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56296 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56297 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56298 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56299 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56300 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56301 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56302 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56303 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56304 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56305 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56306 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56307 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56308 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56309 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56310 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56311 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56312 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56313 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56314 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56315 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56316 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56317 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56318 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56319 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56320 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56321 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56322 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56323 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56324 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56325 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56326 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56327 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56328 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56329 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56330 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56331 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56332 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56333 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56334 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56335 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56336 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56337 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56338 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56339 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56340 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56341 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56342 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56343 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56344 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56345 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56346 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56347 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56348 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56349 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56350 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56351 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56352 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56353 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56354 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56355 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56356 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56357 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56358 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56359 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56360 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56361 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56362 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56363 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56364 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56365 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56366 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56367 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56368 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56369 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56370 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56371 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56372 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56373 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56374 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56375 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56376 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56377 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56378 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56379 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56380 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56381 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56382 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56383 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56384 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56385 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56386 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56387 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56388 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56389 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56390 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56391 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56392 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56393 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56394 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56395 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56396 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56397 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56398 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56399 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56400 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56401 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56402 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56403 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56404 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56405 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56406 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56407 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56408 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56409 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56410 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56411 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56412 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56413 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56414 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56415 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56416 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56417 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56418 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56419 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56420 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56421 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56422 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56423 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56424 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56425 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56426 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56427 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56428 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56429 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56430 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56431 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56432 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56433 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56434 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56435 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56436 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56437 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56438 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56439 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56440 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56441 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56442 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56443 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56444 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56445 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56446 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56447 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56448 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56449 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56450 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56451 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56452 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56453 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56454 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56455 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56456 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56457 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56458 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56459 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56460 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56461 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56462 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56463 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56464 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56465 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56466 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56467 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56468 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56469 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56470 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56471 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56472 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56473 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56474 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56475 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56476 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56477 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56478 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56479 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56480 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56481 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56482 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56483 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56484 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56485 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56486 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56487 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56488 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56489 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56490 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56491 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56492 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56493 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56494 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56495 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56496 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56497 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56498 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56499 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56500 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56501 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56502 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56503 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56504 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56505 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56506 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56507 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56508 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56509 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56510 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56511 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56512 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56513 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56514 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56515 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56516 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56517 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56518 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56519 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56520 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56521 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56522 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56523 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56524 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56525 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56526 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56527 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56528 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56529 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56530 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56531 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56532 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56533 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56534 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56535 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56536 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56537 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56538 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56539 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56540 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56541 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56542 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56543 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56544 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56545 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56546 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56547 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56548 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56549 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56550 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56551 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56552 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56553 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56554 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56555 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56556 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56557 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56558 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56559 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56560 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56561 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56562 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56563 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56564 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56565 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56566 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56567 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56568 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56569 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56570 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56571 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56572 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56573 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56574 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56575 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56576 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56577 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56578 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56579 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56580 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56581 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56582 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56583 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56584 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56585 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56586 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56587 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56588 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56589 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56590 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56591 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56592 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56593 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56594 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56595 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56596 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56597 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56598 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56599 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56600 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56601 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56602 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56603 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56604 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56605 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56606 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56607 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56608 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56609 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56610 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56611 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56612 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56613 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56614 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56615 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56616 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56617 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56618 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56619 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56620 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56621 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56622 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56623 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56624 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56625 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56626 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56627 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56628 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56629 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56630 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56631 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56632 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56633 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56634 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56635 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56636 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56637 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56638 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56639 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56640 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56641 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56642 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56643 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56644 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56645 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56646 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56647 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56648 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56649 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56650 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56651 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56652 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56653 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56654 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56655 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56656 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56657 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56658 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56659 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56660 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56661 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56662 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56663 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56664 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56665 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56666 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56667 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56668 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56669 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56670 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56671 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56672 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56673 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56674 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56675 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56676 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56677 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56678 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56679 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56680 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56681 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56682 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56683 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56684 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56685 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56686 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56687 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56688 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56689 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56690 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56691 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56692 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56693 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56694 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56695 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56696 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56697 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56698 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56699 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56700 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56701 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56702 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56703 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56704 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56705 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56706 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56707 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56708 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56709 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56710 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56711 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56712 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56713 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56714 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56715 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56716 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56717 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56718 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56719 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56720 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56721 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56722 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56723 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56724 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56725 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56726 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56727 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56728 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56729 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56730 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56731 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56732 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56733 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56734 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56735 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56736 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56737 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56738 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56739 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56740 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56741 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56742 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56743 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56744 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56745 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56746 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56747 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56748 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56749 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56750 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56751 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56752 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56753 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56754 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56755 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56756 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56757 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56758 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56759 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56760 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56761 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56762 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56763 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56764 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56765 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56766 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56767 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56768 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56769 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56770 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56771 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56772 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56773 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56774 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56775 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56776 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56777 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56778 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56779 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56780 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56781 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56782 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56783 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56784 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56785 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56786 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56787 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56788 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56789 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56790 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56791 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56792 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56793 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56794 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56795 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56796 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56797 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56798 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56799 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56800 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56801 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56802 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56803 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56804 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56805 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56806 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56807 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56808 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56809 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56810 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56811 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56812 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56813 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56814 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56815 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56816 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56817 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56818 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56819 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56820 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56821 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56822 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56823 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56824 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56825 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56826 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56827 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56828 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56829 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56830 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56831 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56832 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56833 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56834 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56835 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56836 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56837 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56838 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56839 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56840 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56841 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56842 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56843 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56844 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56845 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56846 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56847 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56848 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56849 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56850 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56851 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56852 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56853 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56854 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56855 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56856 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56857 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56858 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56859 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56860 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56861 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56862 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56863 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56864 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56865 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56866 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56867 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56868 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56869 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56870 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56871 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56872 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56873 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56874 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56875 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56876 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56877 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56878 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56879 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56880 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56881 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56882 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56883 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56884 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56885 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56886 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56887 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56888 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56889 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56890 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56891 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56892 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56893 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56894 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56895 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56896 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56897 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56898 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56899 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56900 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56901 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56902 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56903 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56904 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56905 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56906 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56907 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56908 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56909 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56910 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56911 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56912 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56913 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56914 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56915 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56916 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56917 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56918 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56919 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56920 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56921 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56922 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56923 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56924 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56925 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56926 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56927 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56928 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56929 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56930 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56931 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56932 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56933 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56934 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56935 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56936 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56937 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56938 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56939 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56940 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56941 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56942 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56943 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56944 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56945 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56946 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56947 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56948 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56949 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56950 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56951 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56952 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56953 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56954 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56955 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56956 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56957 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56958 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56959 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56960 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56961 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56962 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56963 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56964 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56965 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56966 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56967 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56968 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56969 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56970 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56971 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56972 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56973 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56974 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56975 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56976 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56977 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56978 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56979 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56980 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56981 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56982 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56983 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56984 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56985 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56986 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56987 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56988 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56989 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56990 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56991 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56992 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56993 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56994 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56995 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56996 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56997 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56998 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 56999 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57000 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57001 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57002 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57003 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57004 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57005 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57006 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57007 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57008 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57009 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57010 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57011 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57012 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57013 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57014 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57015 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57016 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57017 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57018 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57019 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57020 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57021 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57022 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57023 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57024 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57025 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57026 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57027 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57028 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57029 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57030 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57031 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57032 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57033 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57034 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57035 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57036 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57037 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57038 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57039 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57040 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57041 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57042 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57043 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57044 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57045 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57046 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57047 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57048 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57049 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57050 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57051 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57052 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57053 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57054 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57055 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57056 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57057 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57058 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57059 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57060 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57061 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57062 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57063 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57064 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57065 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57066 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57067 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57068 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57069 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57070 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57071 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57072 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57073 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57074 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57075 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57076 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57077 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57078 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57079 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57080 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57081 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57082 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57083 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57084 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57085 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57086 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57087 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57088 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57089 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57090 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57091 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57092 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57093 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57094 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57095 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57096 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57097 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57098 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57099 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57100 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57101 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57102 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57103 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57104 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57105 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57106 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57107 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57108 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57109 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57110 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57111 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57112 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57113 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57114 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57115 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57116 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57117 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57118 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57119 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57120 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57121 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57122 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57123 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57124 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57125 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57126 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57127 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57128 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57129 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57130 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57131 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57132 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57133 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57134 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57135 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57136 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57137 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57138 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57139 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57140 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57141 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57142 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57143 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57144 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57145 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57146 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57147 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57148 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57149 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57150 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57151 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57152 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57153 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57154 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57155 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57156 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57157 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57158 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57159 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57160 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57161 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57162 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57163 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57164 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57165 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57166 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57167 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57168 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57169 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57170 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57171 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57172 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57173 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57174 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57175 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57176 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57177 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57178 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57179 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57180 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57181 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57182 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57183 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57184 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57185 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57186 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57187 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57188 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57189 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57190 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57191 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57192 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57193 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57194 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57195 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57196 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57197 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57198 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57199 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57200 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57201 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57202 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57203 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57204 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57205 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57206 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57207 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57208 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57209 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57210 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57211 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57212 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57213 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57214 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57215 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57216 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57217 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57218 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57219 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57220 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57221 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57222 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57223 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57224 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57225 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57226 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57227 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57228 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57229 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57230 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57231 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57232 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57233 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57234 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57235 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57236 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57237 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57238 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57239 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57240 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57241 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57242 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57243 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57244 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57245 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57246 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57247 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57248 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57249 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57250 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57251 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57252 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57253 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57254 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57255 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57256 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57257 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57258 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57259 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57260 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57261 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57262 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57263 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57264 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57265 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57266 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57267 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57268 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57269 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57270 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57271 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57272 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57273 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57274 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57275 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57276 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57277 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57278 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57279 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57280 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57281 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57282 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57283 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57284 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57285 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57286 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57287 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57288 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57289 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57290 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57291 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57292 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57293 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57294 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57295 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57296 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57297 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57298 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57299 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57300 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57301 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57302 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57303 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57304 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57305 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57306 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57307 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57308 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57309 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57310 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57311 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57312 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57313 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57314 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57315 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57316 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57317 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57318 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57319 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57320 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57321 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57322 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57323 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57324 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57325 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57326 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57327 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57328 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57329 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57330 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57331 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57332 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57333 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57334 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57335 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57336 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57337 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57338 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57339 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57340 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57341 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57342 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57343 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57344  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57345  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57346  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57347  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57348  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57349  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57350  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57351  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57352  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57353  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57354  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57355  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57356  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57357  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57358  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57359  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57360  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57361  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57362  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57363  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57364  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57365  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57366  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57367  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57368  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57369  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57370  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57371  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57372  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57373  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57374  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57375  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57376  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57377  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57378  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57379  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57380  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57381  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57382  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57383  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57384  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57385  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57386  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57387  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57388  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57389  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57390  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57391  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57392  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57393  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57394  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57395  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57396  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57397  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57398  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57399  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57400  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57401  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57402  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57403  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57404  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57405  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57406  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57407  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57408  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57409  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57410  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57411  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57412  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57413  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57414  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57415  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57416  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57417  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57418  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57419  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57420  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57421  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57422  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57423  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57424  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57425  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57426  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57427  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57428  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57429  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57430  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57431  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57432  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57433  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57434  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57435  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57436  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57437  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57438  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57439  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57440  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57441  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57442  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57443  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57444  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57445  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57446  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57447  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57448  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57449  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57450  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57451  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57452  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57453  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57454  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57455  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57456  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57457  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57458  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57459  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57460  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57461  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57462  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57463  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57464  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57465  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57466  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57467  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57468  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57469  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57470  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57471  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57472  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57473  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57474  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57475  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57476  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57477  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57478  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57479  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57480  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57481  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57482  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57483  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57484  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57485  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57486  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57487  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57488  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57489  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57490  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57491  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57492  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57493  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57494  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57495  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57496  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57497  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57498  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57499  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57500  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57501  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57502  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57503  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57504  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57505  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57506  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57507  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57508  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57509  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57510  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57511  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57512  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57513  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57514  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57515  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57516  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57517  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57518  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57519  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57520  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57521  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57522  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57523  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57524  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57525  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57526  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57527  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57528  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57533  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57534  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57535  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57536  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57537  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57538  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57539  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57540  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57541  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57542  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57543  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57544  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57545  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57546  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57547  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57548  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57549  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57550  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57551  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57552  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57553  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57554  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57555  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57556  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57557  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57558  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57559  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57560  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57561  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57562  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57563  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57564  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57565  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57566  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57567  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57568  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57569  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57570  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57571  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57572  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57573  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57574  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57575  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57576  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57577  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57578  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57579  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57580  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57581  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57582  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57583  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57584  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57585  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57586  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57587  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57588  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57589  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57590  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57591  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57592  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57593  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57594  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57595  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57596  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57597  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57598  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57599  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57600  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57601  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57602  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57603  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57604  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57605  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57606  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57607  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57608  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57609  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57610  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57611  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57612  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57613  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57614  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57615  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57616  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57617  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57618  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57619  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57620  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57621  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57622  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57623  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57624  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57625  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57626  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57627  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57628  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57629  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57630  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57631  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57632  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57633  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57634  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57635  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57636  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57637  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57638  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57639  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57640  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57641  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57642  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57643  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57644  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57645  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57646  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57647  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57648  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57649  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57650  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57651  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57652  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57653  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57654  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57655  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57656  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57657  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57658  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57659  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57660  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57661  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57662  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57663  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57664  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57665  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57666  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57667  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57668  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57669  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57670  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57671  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57672  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57673  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57674  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57675  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57676  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57677  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57678  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57679  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57680  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57681  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57682  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57683  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57684  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57685  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57686  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57687  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57688  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57689  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57690  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57691  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57692  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57693  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57694  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57695  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57696  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57697  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57698  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57699  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57700  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57701  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57702  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57703  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57704  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57705  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57706  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57707  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57708  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57709  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57710  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57711  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57712  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57713  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57714  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57715  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57716  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57717  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57718  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57719  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57720  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57721  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57722  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57723  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57724  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57725  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57726  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57727  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57728  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57729  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57730  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57731  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57732  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57733  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57734  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57735  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57736  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57737  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57738  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57739  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57740  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57741  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57742  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57743  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57744  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57745  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57746  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57747  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57748  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57749  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57750  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57751  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57752  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57753  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57754  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57755  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57756  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57757  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57758  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57759  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57760  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57761  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57762  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57763  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57764  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57765  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57766  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57767  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57768  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57769  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57770  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57771  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57772  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57773  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57774  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57775  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57776  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57777  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57778  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57779  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57780  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57781  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57782  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57783  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57784  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57785  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57786  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57787  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57788  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57789  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57790  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57791  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57792  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57793  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57794  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57795  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57796  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57797  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57798  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57799  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57800  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57801  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57802  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57803  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57804  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57805  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57806  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57807  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57808  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57809  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57810  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57811  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57812  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57813  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57814  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57815  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57816  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57817  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57818  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57819  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57820  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57821  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57822  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57823  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57824  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57825  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57826  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57827  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57828  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57829  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57830  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57831  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57832  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57833  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57834  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57835  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57836  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57837  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57838  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57839  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57840  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57841  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57842  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57843  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57844  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57845  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57846  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57847  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57848  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57849  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57850  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57851  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57852  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57853  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57854  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57855  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57856  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57857  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57858  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57859  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57860  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57861  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57862  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57863  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57864  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57865  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57866  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57867  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57868  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57869  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57870  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57871  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57872  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57873  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57874  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57875  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57876  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57877  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57878  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57879  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57880  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57881  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57882  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57883  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57884  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57885  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57886  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57887  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57888  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57889  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57890  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57891  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57892  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57893  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57894  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57895  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57896  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57897  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57898  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57899  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57900  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57901  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57902  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57903  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57904  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57905  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57906  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57907  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57908  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57909  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57910  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57911  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57912  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57913  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57914  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57915  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57916  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57917  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57918  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57919  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57920  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57921  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57922  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57923  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57924  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57925  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57926  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57927  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57928  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57929  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57930  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57931  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57932  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57933  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57934  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57935  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57936  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57937  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57938  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57939  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57940  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57941  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57942  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57943  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57944  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57945  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57946  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57947  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57948  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57949  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57950  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57951  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57952  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57953  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57954  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57955  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57956  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57957  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57958  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57959  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57960  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57961  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57962  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57963  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57964  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57965  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57966  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57967  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57968  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57969  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57970  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57971  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57972  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57973  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57974  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57975  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57976  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57977  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57978  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57979  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57980  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57981  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57982  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57983  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57984  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57985  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57986  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57987  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57988  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57989  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57990  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57991  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57992  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57993  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57994  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57995  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57996  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57997  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57998  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 57999  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58000  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58001  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58002  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58003  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58004  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58005  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58006  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58007  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58008  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58009  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58010  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58011  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58012  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58013  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58014  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58015  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58016  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58017  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58018  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58019  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58020  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58021  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58022  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58023  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58024  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58025  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58026  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58027  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58028  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58029  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58030  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58031  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58032  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58033  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58034  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58035  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58036  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58037  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58038  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58039  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58040  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58041  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58042  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58043  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58044  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58045  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58046  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58047  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58048  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58049  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58050  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58051  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58052  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58053  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58054  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58055  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58056  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58057  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58058  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58059  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58060  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58061  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58062  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58063  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58064  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58065  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58066  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58067  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58068  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58069  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58070  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58071  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58072  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58073  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58074  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58075  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58076  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58077  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58078  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58079  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58080  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58081  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58082  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58083  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58084  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58085  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58086  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58087  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58088  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58089  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58090  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58091  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58092  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58093  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58094  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58095  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58096  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58097  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58098  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58099  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58100  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58101  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58102  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58103  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58104  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58105  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58106  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58107  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58108  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58109  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58110  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58111  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58112  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58113  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58114  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58115  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58116  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58117  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58118  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58119  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58120  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58121  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58122  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58123  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58124  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58125  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58126  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58127  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58128  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58129  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58130  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58131  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58132  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58133  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58134  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58135  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58136  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58137  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58138  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58139  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58140  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58141  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58142  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58143  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58144  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58145  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58146  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58147  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58148  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58149  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58150  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58151  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58152  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58153  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58154  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58155  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58156  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58157  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58158  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58159  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58160  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58161  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58162  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58163  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58164  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58165  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58166  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58167  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58168  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58169  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58170  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58171  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58172  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58173  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58174  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58175  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58176  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58177  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58178  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58179  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58180  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58181  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58182  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58183  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58184  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58185  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58186  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58187  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58188  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58189  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58190  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58191  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58192  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58193  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58194  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58195  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58196  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58197  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58198  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58199  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58200  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58201  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58202  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58203  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58204  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58205  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58206  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58207  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58208  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58209  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58210  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58211  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58212  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58213  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58214  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58215  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58216  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58217  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58218  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58219  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58220  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58221  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58222  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58223  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58224  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58225  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58226  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58227  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58228  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58229  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58230  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58231  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58232  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58233  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58234  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58235  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58236  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58237  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58238  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58239  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58240  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58241  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58242  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58243  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58244  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58245  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58246  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58247  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58248  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58249  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58250  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58251  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58252  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58253  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58254  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58255  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58256  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58257  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58258  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58259  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58260  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58261  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58262  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58263  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58264  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58265  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58266  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58267  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58268  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58269  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58270  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58271  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58272  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58273  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58274  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58275  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58276  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58277  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58278  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58279  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58280  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58281  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58282  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58283  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58284  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58285  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58286  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58287  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58288  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58289  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58290  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58291  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58292  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58293  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58294  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58295  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58296  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58297  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58298  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58299  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58300  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58301  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58302  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58303  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58304  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58305  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58306  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58307  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58308  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58309  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58310  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58311  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58312  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58313  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58314  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58315  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58316  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58317  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58318  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58319  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58320  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58321  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58322  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58323  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58324  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58325  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58326  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58327  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58328  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58329  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58330  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58331  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58332  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58333  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58334  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58335  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58336  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58337  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58338  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58339  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58340  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58341  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58342  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58343  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58344  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58345  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58346  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58347  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58348  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58349  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58350  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58351  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58352  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58353  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58354  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58355  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58356  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58357  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58358  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58359  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58360  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58361  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58362  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58363  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58364  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58365  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58366  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58367  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58368  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58369  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58370  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58371  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58372  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58373  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58374  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58375  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58376  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58377  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58378  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58379  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58380  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58381  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58382  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58383  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58384  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58385  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58386  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58387  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58388  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58389  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58390  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58391  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58392  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58393  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58394  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58395  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58396  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58397  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58398  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58399  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58400  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58401  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58402  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58403  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58404  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58405  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58406  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58407  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58408  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58409  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58410  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58411  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58412  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58413  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58414  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58415  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58416  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58417  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58418  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58419  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58420  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58421  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58422  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58423  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58424  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58425  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58426  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58427  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58428  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58429  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58430  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58431  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58432  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58433  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58434  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58435  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58436  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58437  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58438  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58439  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58440  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58441  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58442  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58443  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58444  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58445  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58446  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58447  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58448  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58449  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58450  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58451  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58452  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58453  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58454  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58455  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58456  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58457  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58458  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58459  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58460  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58461  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58462  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58463  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58464  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58465  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58466  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58467  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58468  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58469  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58470  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58471  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58472  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58473  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58474  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58475  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58476  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58477  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58478  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58479  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58480  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58481  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58482  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58483  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58484  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58485  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58486  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58487  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58488  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58489  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58490  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58491  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58492  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58493  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58494  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58495  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58496  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58497  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58498  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58499  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58500  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58501  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58502  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58503  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58504  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58505  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58506  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58507  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58508  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58509  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58510  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58511  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58512  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58513  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58514  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58515  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58516  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58517  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58518  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58519  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58520  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58521  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58522  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58523  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58524  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58525  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58526  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58527  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58528  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58533  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58534  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58535  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58536  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58537  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58538  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58539  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58540  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58541  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58542  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58543  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58544  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58545  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58546  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58547  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58548  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58549  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58550  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58551  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58552  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58553  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58554  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58555  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58556  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58557  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58558  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58559  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58560  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58561  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58562  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58563  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58564  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58565  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58566  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58567  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58568  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58569  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58570  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58571  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58572  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58573  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58574  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58575  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58576  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58577  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58578  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58579  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58580  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58581  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58582  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58583  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58584  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58585  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58586  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58587  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58588  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58589  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58590  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58591  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58592  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58593  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58594  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58595  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58596  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58597  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58598  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58599  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58600  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58601  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58602  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58603  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58604  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58605  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58606  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58607  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58608  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58609  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58610  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58611  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58612  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58613  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58614  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58615  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58616  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58617  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58618  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58619  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58620  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58621  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58622  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58623  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58624  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58625  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58626  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58627  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58628  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58629  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58630  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58631  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58632  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58633  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58634  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58635  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58636  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58637  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58638  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58639  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58640  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58641  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58642  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58643  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58644  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58645  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58646  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58647  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58648  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58649  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58650  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58651  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58652  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58653  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58654  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58655  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58656  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58657  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58658  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58659  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58660  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58661  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58662  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58663  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58664  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58665  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58666  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58667  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58668  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58669  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58670  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58671  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58672  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58673  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58674  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58675  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58676  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58677  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58678  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58679  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58680  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58681  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58682  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58683  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58684  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58685  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58686  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58687  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58688  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58689  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58690  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58691  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58692  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58693  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58694  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58695  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58696  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58697  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58698  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58699  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58700  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58701  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58702  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58703  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58704  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58705  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58706  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58707  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58708  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58709  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58710  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58711  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58712  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58713  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58714  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58715  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58716  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58717  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58718  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58719  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58720  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58721  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58722  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58723  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58724  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58725  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58726  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58727  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58728  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58729  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58730  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58731  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58732  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58733  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58734  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58735  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58736  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58737  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58738  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58739  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58740  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58741  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58742  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58743  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58744  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58745  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58746  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58747  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58748  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58749  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58750  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58751  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58752  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58753  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58754  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58755  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58756  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58757  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58758  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58759  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58760  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58761  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58762  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58763  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58764  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58765  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58766  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58767  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58768  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58769  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58770  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58771  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58772  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58773  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58774  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58775  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58776  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58777  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58778  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58779  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58780  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58781  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58782  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58783  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58784  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58785  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58786  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58787  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58788  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58789  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58790  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58791  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58792  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58793  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58794  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58795  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58796  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58797  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58798  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58799  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58800  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58801  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58802  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58803  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58804  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58805  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58806  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58807  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58808  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58809  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58810  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58811  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58812  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58813  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58814  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58815  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58816  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58817  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58818  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58819  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58820  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58821  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58822  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58823  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58824  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58825  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58826  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58827  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58828  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58829  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58830  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58831  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58832  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58833  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58834  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58835  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58836  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58837  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58838  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58839  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58840  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58841  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58842  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58843  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58844  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58845  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58846  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58847  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58848  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58849  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58850  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58851  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58852  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58853  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58854  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58855  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58856  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58857  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58858  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58859  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58860  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58861  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58862  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58863  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58864  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58865  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58866  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58867  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58868  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58869  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58870  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58871  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58872  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58873  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58874  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58875  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58876  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58877  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58878  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58879  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58880  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58881  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58882  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58883  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58884  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58885  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58886  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58887  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58888  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58889  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58890  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58891  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58892  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58893  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58894  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58895  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58896  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58897  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58898  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58899  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58900  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58901  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58902  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58903  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58904  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58905  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58906  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58907  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58908  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58909  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58910  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58911  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58912  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58913  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58914  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58915  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58916  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58917  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58918  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58919  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58920  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58921  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58922  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58923  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58924  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58925  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58926  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58927  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58928  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58929  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58930  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58931  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58932  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58933  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58934  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58935  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58936  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58937  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58938  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58939  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58940  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58941  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58942  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58943  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58944  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58945  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58946  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58947  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58948  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58949  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58950  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58951  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58952  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58953  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58954  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58955  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58956  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58957  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58958  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58959  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58960  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58961  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58962  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58963  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58964  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58965  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58966  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58967  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58968  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58969  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58970  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58971  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58972  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58973  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58974  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58975  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58976  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58977  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58978  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58979  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58980  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58981  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58982  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58983  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58984  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58985  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58986  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58987  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58988  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58989  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58990  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58991  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58992  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58993  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58994  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58995  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58996  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58997  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58998  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 58999  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59000  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59001  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59002  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59003  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59004  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59005  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59006  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59007  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59008  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59009  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59010  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59011  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59012  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59013  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59014  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59015  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59016  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59017  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59018  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59019  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59020  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59021  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59022  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59023  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59024  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59025  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59026  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59027  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59028  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59029  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59030  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59031  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59032  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59033  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59034  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59035  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59036  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59037  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59038  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59039  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59040  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59041  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59042  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59043  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59044  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59045  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59046  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59047  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59048  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59049  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59050  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59051  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59052  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59053  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59054  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59055  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59056  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59057  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59058  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59059  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59060  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59061  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59062  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59063  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59064  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59065  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59066  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59067  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59068  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59069  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59070  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59071  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59072  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59073  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59074  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59075  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59076  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59077  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59078  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59079  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59080  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59081  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59082  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59083  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59084  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59085  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59086  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59087  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59088  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59089  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59090  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59091  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59092  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59093  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59094  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59095  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59096  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59097  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59098  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59099  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59100  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59101  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59102  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59103  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59104  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59105  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59106  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59107  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59108  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59109  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59110  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59111  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59112  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59113  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59114  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59115  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59116  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59117  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59118  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59119  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59120  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59121  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59122  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59123  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59124  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59125  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59126  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59127  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59128  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59129  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59130  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59131  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59132  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59133  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59134  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59135  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59136  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59137  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59138  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59139  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59140  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59141  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59142  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59143  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59144  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59145  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59146  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59147  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59148  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59149  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59150  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59151  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59152  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59153  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59154  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59155  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59156  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59157  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59158  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59159  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59160  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59161  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59162  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59163  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59164  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59165  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59166  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59167  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59168  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59169  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59170  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59171  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59172  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59173  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59174  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59175  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59176  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59177  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59178  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59179  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59180  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59181  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59182  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59183  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59184  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59185  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59186  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59187  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59188  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59189  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59190  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59191  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59192  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59193  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59194  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59195  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59196  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59197  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59198  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59199  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59200  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59201  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59202  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59203  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59204  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59205  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59206  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59207  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59208  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59209  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59210  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59211  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59212  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59213  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59214  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59215  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59216  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59217  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59218  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59219  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59220  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59221  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59222  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59223  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59224  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59225  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59226  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59227  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59228  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59229  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59230  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59231  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59232  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59233  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59234  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59235  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59236  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59237  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59238  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59239  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59240  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59241  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59242  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59243  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59244  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59245  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59246  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59247  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59248  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59249  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59250  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59251  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59252  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59253  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59254  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59255  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59256  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59257  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59258  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59259  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59260  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59261  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59262  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59263  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59264  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59265  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59266  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59267  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59268  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59269  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59270  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59271  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59272  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59273  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59274  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59275  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59276  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59277  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59278  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59279  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59280  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59281  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59282  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59283  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59284  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59285  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59286  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59287  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59288  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59289  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59290  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59291  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59292  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59293  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59294  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59295  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59296  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59297  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59298  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59299  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59300  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59301  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59302  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59303  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59304  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59305  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59306  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59307  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59308  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59309  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59310  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59311  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59312  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59313  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59314  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59315  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59316  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59317  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59318  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59319  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59320  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59321  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59322  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59323  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59324  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59325  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59326  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59327  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59328  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59329  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59330  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59331  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59332  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59333  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59334  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59335  ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x70,0x70,0x70,0x70,0x70,0x70,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59336  ; -+,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x32,0x21,0x21,0x21,0x21,0x21,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59337  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59338  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59339  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59340  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59341  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59342  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59343  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59344  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59345  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59346  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59347  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59348  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59349  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59350  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59351  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59352  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59353  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59354  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59355  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59356  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59357  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59358  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59359  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59360  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59361  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59362  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59363  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59364  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59365  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59366  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59367  ; -+,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59368  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59369  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59370  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59371  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59372  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59373  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59374  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59375  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59376  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59377  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59378  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59379  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59380  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59381  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59382  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59383  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59384  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59385  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59386  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59387  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59388  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59389  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59390  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59391  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59392  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59393  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59394  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59395  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59396  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59397  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59398  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59399  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59400  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59401  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59402  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59403  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59404  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59405  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59406  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59407  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59408  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59409  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59410  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59411  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59412  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59413  ; -+,0x00,0x00,0x0e,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59414  ; -+,0x00,0x00,0x08,0x08,0x08,0x09,0x08,0x08,0x08,0x10,0x10,0x10,0x30,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59415  ; -+,0x00,0x00,0x30,0x20,0x22,0x20,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59416  ; -+,0x00,0x00,0x06,0x06,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59417  ; -+,0x00,0x00,0x08,0x18,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x05,0x07,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59418  ; -+,0x00,0x18,0x39,0x21,0x27,0x2f,0x6f,0x2b,0x2a,0x29,0x21,0x2d,0x2f,0x25,0x29,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59419  ; -+,0x00,0x10,0x1c,0x2e,0x2a,0x28,0x75,0x61,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59420  ; -+,0x00,0x10,0x10,0x21,0x23,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59421  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x22,0x22,0x22,0x22,0x24,0x20,0x23,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59422  ; -+,0x00,0x00,0x03,0x02,0x04,0x00,0x10,0x08,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59423  ; -+,0x00,0x00,0x0a,0x0a,0x5a,0x1e,0x14,0x14,0x1d,0x1d,0x5f,0x1f,0x09,0x09,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59424  ; -+,0x00,0x00,0x19,0x1b,0x78,0x59,0x52,0x59,0x5f,0x5c,0x7a,0x5e,0x1b,0x11,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59425  ; -+,0x00,0x00,0x08,0x01,0x63,0x29,0x2f,0x2f,0x2f,0x2f,0x2f,0x0f,0x05,0x05,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59426  ; -+,0x00,0x00,0x08,0x02,0x22,0x20,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59427  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x30,0x36,0x35,0x55,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59428  ; -+,0x00,0x28,0x29,0x21,0x2d,0x3f,0x77,0x6b,0x28,0x29,0x21,0x2d,0x2f,0x25,0x2b,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59429  ; -+,0x00,0x04,0x2c,0x2a,0x22,0x22,0x75,0x61,0x21,0x21,0x21,0x21,0x21,0x21,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59430  ; -+,0x00,0x0e,0x08,0x08,0x08,0x08,0x18,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59431  ; -+,0x00,0x00,0x09,0x08,0x08,0x2a,0x0a,0x2c,0x2c,0x6a,0x0e,0x08,0x08,0x09,0x69,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59432  ; -+,0x00,0x20,0x29,0x2c,0x34,0x24,0x34,0x24,0x24,0x6c,0x2c,0x34,0x34,0x34,0x74,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59433  ; -+,0x00,0x00,0x2a,0x3b,0x3b,0x3a,0x3f,0x3a,0x3f,0x60,0x22,0x22,0x26,0x26,0x67,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59434  ; -+,0x00,0x20,0x20,0x29,0x29,0x29,0x29,0x3a,0x2a,0x6a,0x2a,0x3a,0x27,0x21,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59435  ; -+,0x00,0x00,0x80,0xc4,0x80,0xc8,0x80,0x82,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59436  ; -+,0x00,0x00,0x14,0x16,0x14,0x14,0x14,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59437  ; -+,0x00,0x00,0x29,0x29,0x39,0x2b,0x2d,0x6d,0x7f,0x3f,0x2b,0x29,0x29,0x29,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59438  ; -+,0x00,0x00,0x14,0x2d,0x2d,0x34,0x50,0x59,0x79,0x3d,0x2d,0x2d,0x2d,0x46,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59439  ; -+,0x00,0x00,0x22,0x12,0x12,0x47,0x40,0x0c,0x2c,0x2e,0x49,0x4d,0x48,0x58,0x47,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59440  ; -+,0x00,0x00,0x08,0x18,0x2a,0x28,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59441  ; -+,0x00,0x08,0x08,0x08,0x0a,0x10,0x11,0x10,0x22,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59442  ; -+,0x00,0x00,0x08,0x3a,0x1c,0x0d,0x41,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59443  ; -+,0x00,0x00,0x00,0x18,0x00,0x00,0x20,0x60,0x78,0x60,0x60,0x60,0x70,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59444  ; -+,0x00,0x00,0x0e,0x78,0x65,0x64,0x68,0x63,0x64,0x64,0x6a,0x62,0x66,0x46,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59445  ; -+,0x00,0x00,0x24,0x28,0x2e,0x34,0x24,0x36,0x3a,0x65,0x2a,0x26,0x27,0x22,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59446  ; -+,0x00,0x24,0x24,0x2d,0x66,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59447  ; -+,0x00,0x04,0x24,0x24,0x14,0x5d,0x6c,0x0c,0x2c,0x4d,0x6c,0x0c,0x0c,0x6d,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59448  ; -+,0x00,0x00,0x41,0x51,0x54,0x24,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59449  ; -+,0x00,0x00,0x14,0x02,0x08,0x08,0x08,0x08,0x1b,0x10,0x10,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59450  ; -+,0x00,0x00,0x14,0x10,0x0a,0x08,0x0a,0x08,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59451  ; -+,0x00,0x00,0x14,0x1e,0x14,0x15,0x04,0x06,0x06,0x06,0x06,0x02,0x06,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59452  ; -+,0x00,0x00,0x37,0x37,0x31,0x2a,0x2b,0x3e,0x23,0x34,0x76,0x36,0x36,0x36,0x37,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59453  ; -+,0x00,0x00,0x2f,0x2f,0x2f,0x29,0x24,0x25,0x24,0x24,0x74,0x64,0x28,0x2d,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59454  ; -+,0x00,0x80,0x80,0x90,0x80,0x9e,0x80,0x80,0x80,0x8c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59455  ; -+,0x00,0x00,0x54,0x51,0x54,0x54,0x54,0x5c,0x58,0x5a,0x52,0x52,0x50,0x14,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59456  ; -+,0x00,0x00,0x15,0x14,0x10,0x09,0x21,0x16,0x2a,0x08,0x0a,0x0a,0x12,0x12,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59457  ; -+,0x00,0x00,0x24,0x0d,0x3d,0x24,0x25,0x31,0x69,0x3b,0x2b,0x29,0x2b,0x2a,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59458  ; -+,0x00,0x04,0x25,0x0d,0x2d,0x24,0x25,0x31,0x29,0x31,0x25,0x25,0x25,0x26,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59459  ; -+,0x00,0x00,0x0c,0x2c,0x08,0x18,0x10,0x17,0x10,0x22,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59460  ; -+,0x00,0x00,0x27,0x28,0x08,0x08,0x2a,0x0a,0x0a,0x0a,0x0a,0x0a,0x22,0x32,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59461  ; -+,0x00,0x08,0x4a,0x2a,0x0a,0x0a,0x2a,0x2b,0x2a,0x2a,0x3f,0x21,0x20,0x3b,0x17,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59462  ; -+,0x00,0x04,0x14,0x54,0x56,0x54,0x54,0x50,0x51,0x51,0x5b,0x01,0x5b,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59463  ; -+,0x00,0x04,0x14,0x54,0x56,0x54,0x74,0x70,0x71,0x71,0x7b,0x21,0x5b,0x11,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59464  ; -+,0x00,0x00,0x11,0x11,0x11,0x11,0x15,0x04,0x04,0x14,0x14,0x14,0x14,0x1e,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59465  ; -+,0x00,0x00,0x22,0x39,0x18,0x49,0x28,0x0d,0x2d,0x2f,0x1d,0x55,0x3f,0x35,0x45,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59466  ; -+,0x00,0x00,0x23,0x22,0x32,0x42,0x5a,0x6b,0x26,0x26,0x26,0x2a,0x22,0x22,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59467  ; -+,0x00,0x04,0x26,0x2d,0x3c,0x4c,0x74,0x25,0x25,0x2a,0x2a,0x22,0x2a,0x23,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59468  ; -+,0x00,0x00,0x20,0x29,0x78,0x49,0x58,0x6d,0x2c,0x3e,0x24,0x25,0x3c,0x24,0x27,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59469  ; -+,0x00,0x08,0x2a,0x2a,0x70,0x45,0x57,0x26,0x24,0x34,0x2b,0x2a,0x2a,0x2a,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59470  ; -+,0x00,0x02,0x24,0x25,0x34,0x44,0x74,0x64,0x2e,0x24,0x20,0x20,0x2a,0x2a,0x2a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59471  ; -+,0x00,0x04,0x37,0x17,0x77,0x00,0x6d,0x2d,0x2c,0x3c,0x28,0x2a,0x22,0x26,0x2b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59472  ; -+,0x00,0x11,0x55,0x55,0x55,0x55,0x49,0x55,0x55,0x53,0x6b,0x49,0x41,0x4b,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59473  ; -+,0x00,0x11,0x55,0x57,0x55,0x43,0x4d,0x45,0x4d,0x4d,0x4d,0x4d,0x49,0x49,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59474  ; -+,0x00,0x00,0x23,0x41,0x49,0x5d,0x5d,0x59,0x7f,0x4b,0x49,0x49,0x4b,0x41,0x43,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59475  ; -+,0x00,0x20,0x31,0x01,0x51,0x55,0x41,0x4f,0x43,0x4f,0x49,0x49,0x41,0x49,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59476  ; -+,0x00,0x00,0x00,0x38,0x00,0x78,0x48,0x48,0x48,0x48,0x58,0x00,0x30,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59477  ; -+,0x00,0x00,0x24,0x3e,0x6c,0x20,0x36,0x01,0x41,0x41,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59478  ; -+,0x00,0x00,0x1c,0x14,0x5d,0x70,0x5a,0x42,0x72,0x72,0x6a,0x3a,0x6a,0x07,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59479  ; -+,0x00,0x20,0x24,0x7b,0x4b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x4f,0x0a,0x62,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59480  ; -+,0x00,0x04,0x24,0x35,0x40,0x04,0x55,0x54,0x7a,0x5f,0x5b,0x5a,0x0a,0x6a,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59481  ; -+,0x00,0x00,0x26,0x70,0x46,0x70,0x5f,0x41,0x65,0x43,0x61,0x49,0x09,0x69,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59482  ; -+,0x00,0x00,0x1c,0x14,0x5d,0x11,0x18,0x22,0x12,0x7a,0x3a,0x42,0x42,0x0f,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59483  ; -+,0x00,0x00,0x5e,0x5c,0x55,0x54,0x5a,0x5a,0x5d,0x5a,0x5e,0x5e,0x1e,0x58,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59484  ; -+,0x00,0x00,0x30,0x2a,0x2a,0x7e,0x7a,0x7a,0x78,0x79,0x71,0x73,0x71,0x21,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59485  ; -+,0x00,0x04,0x20,0x3a,0x0a,0x2e,0x5a,0x0a,0x18,0x19,0x21,0x33,0x31,0x41,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59486  ; -+,0x00,0x09,0x25,0x2d,0x3d,0x11,0x2b,0x2a,0x22,0x2c,0x24,0x23,0x01,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59487  ; -+,0x00,0x00,0x20,0x3f,0x2a,0x2e,0x2a,0x0a,0x58,0x59,0x51,0x53,0x51,0x51,0x52,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59488  ; -+,0x00,0x00,0x50,0x57,0x50,0x50,0x52,0x52,0x00,0x3d,0x21,0x23,0x31,0x31,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59489  ; -+,0x00,0x00,0x14,0x57,0x55,0x7f,0x65,0x36,0x34,0x3d,0x30,0x73,0x71,0x31,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59490  ; -+,0x00,0x00,0x78,0x45,0x45,0x5f,0x65,0x45,0x4c,0x7d,0x49,0x4b,0x49,0x68,0x4b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59491  ; -+,0x00,0x00,0x14,0x11,0x18,0x0a,0x1c,0x29,0x07,0x00,0x08,0x09,0x14,0x14,0x23,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59492  ; -+,0x00,0x00,0x22,0x63,0x22,0x42,0x56,0x14,0x77,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59493  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59494  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59495  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59496  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59497  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59498  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59499  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59500  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59501  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59502  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59503  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59504  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59505  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59506  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59507  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59508  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59509  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59510  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59511  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59512  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59513  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59514  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59515  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59516  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59517  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59518  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59519  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59520  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59521  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59522  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59523  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59524  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59525  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59526  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59527  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59528  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59533  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59534  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59535  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59536  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59537  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59538  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59539  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59540  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59541  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59542  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59543  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59544  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59545  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59546  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59547  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59548  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59549  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59550  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59551  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59552  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59553  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59554  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59555  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59556  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59557  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59558  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59559  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59560  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59561  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59562  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59563  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59564  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59565  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59566  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59567  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59568  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59569  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59570  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59571  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59572  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59573  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59574  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59575  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59576  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59577  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59578  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59579  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59580  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59581  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59582  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59583  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59584  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59585  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59586  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59587  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59588  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59589  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59590  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59591  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59592  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59593  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59594  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59595  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59596  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59597  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59598  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59599  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59600  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59601  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59602  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59603  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59604  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59605  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59606  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59607  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59608  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59609  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59610  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59611  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59612  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59613  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59614  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59615  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59616  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59617  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59618  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59619  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59620  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59621  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59622  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59623  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59624  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59625  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59626  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59627  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59628  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59629  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59630  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59631  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59632  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59633  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59634  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59635  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59636  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59637  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59638  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59639  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59640  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59641  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59642  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59643  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59644  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59645  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59646  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59647  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59648  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59649  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59650  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59651  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59652  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59653  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59654  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59655  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59656  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59657  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59658  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59659  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59660  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59661  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59662  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59663  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59664  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59665  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59666  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59667  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59668  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59669  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59670  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59671  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59672  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59673  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59674  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59675  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59676  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59677  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59678  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59679  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59680  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59681  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59682  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59683  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59684  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59685  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59686  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59687  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59688  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59689  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59690  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59691  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59692  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59693  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59694  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59695  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59696  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59697  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59698  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59699  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59700  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59701  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59702  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59703  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59704  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59705  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59706  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59707  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59708  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59709  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59710  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59711  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59712  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59713  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59714  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59715  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59716  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59717  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59718  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59719  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59720  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59721  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59722  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59723  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59724  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59725  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59726  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59727  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59728  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59729  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59730  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59731  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59732  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59733  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59734  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59735  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59736  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59737  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59738  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59739  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59740  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59741  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59742  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59743  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59744  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59745  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59746  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59747  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59748  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59749  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59750  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59751  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59752  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59753  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59754  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59755  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59756  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59757  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59758  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59759  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59760  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59761  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59762  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59763  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59764  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59765  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59766  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59767  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59768  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59769  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59770  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59771  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59772  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59773  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59774  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59775  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59776  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59777  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59778  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59779  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59780  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59781  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59782  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59783  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59784  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59785  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59786  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59787  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59788  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59789  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59790  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59791  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59792  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59793  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59794  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59795  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59796  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59797  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59798  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59799  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59800  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59801  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59802  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59803  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59804  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59805  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59806  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59807  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59808  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59809  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59810  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59811  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59812  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59813  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59814  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59815  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59816  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59817  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59818  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59819  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59820  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59821  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59822  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59823  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59824  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59825  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59826  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59827  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59828  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59829  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59830  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59831  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59832  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59833  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59834  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59835  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59836  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59837  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59838  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59839  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59840  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59841  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59842  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59843  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59844  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59845  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59846  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59847  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59848  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59849  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59850  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59851  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59852  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59853  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59854  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59855  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59856  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59857  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59858  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59859  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59860  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59861  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59862  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59863  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59864  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59865  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59866  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59867  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59868  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59869  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59870  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59871  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59872  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59873  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59874  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59875  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59876  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59877  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59878  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59879  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59880  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59881  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59882  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59883  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59884  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59885  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59886  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59887  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59888  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59889  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59890  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59891  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59892  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59893  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59894  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59895  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59896  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59897  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59898  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59899  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59900  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59901  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59902  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59903  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59904  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59905  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59906  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59907  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59908  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59909  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59910  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59911  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59912  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59913  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59914  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59915  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59916  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59917  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59918  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59919  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59920  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59921  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59922  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59923  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59924  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59925  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59926  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59927  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59928  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59929  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59930  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59931  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59932  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59933  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59934  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59935  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59936  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59937  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59938  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59939  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59940  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59941  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59942  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59943  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59944  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59945  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59946  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59947  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59948  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59949  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59950  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59951  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59952  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59953  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59954  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59955  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59956  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59957  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59958  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59959  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59960  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59961  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59962  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59963  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59964  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59965  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59966  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59967  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59968  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59969  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59970  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59971  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59972  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59973  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59974  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59975  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59976  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59977  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59978  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59979  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59980  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59981  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59982  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59983  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59984  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59985  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59986  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59987  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59988  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59989  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59990  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59991  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59992  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59993  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59994  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59995  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59996  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59997  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59998  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 59999  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60000  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60001  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60002  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60003  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60004  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60005  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60006  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60007  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60008  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60009  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60010  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60011  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60012  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60013  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60014  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60015  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60016  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60017  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60018  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60019  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60020  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60021  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60022  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60023  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60024  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60025  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60026  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60027  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60028  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60029  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60030  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60031  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60032  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60033  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60034  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60035  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60036  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60037  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60038  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60039  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60040  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60041  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60042  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60043  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60044  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60045  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60046  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60047  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60048  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60049  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60050  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60051  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60052  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60053  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60054  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60055  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60056  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60057  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60058  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60059  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60060  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60061  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60062  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60063  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60064  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60065  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60066  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60067  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60068  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60069  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60070  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60071  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60072  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60073  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60074  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60075  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60076  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60077  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60078  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60079  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60080  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60081  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60082  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60083  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60084  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60085  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60086  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60087  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60088  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60089  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60090  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60091  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60092  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60093  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60094  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60095  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60096  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60097  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60098  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60099  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60100  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60101  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60102  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60103  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60104  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60105  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60106  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60107  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60108  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60109  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60110  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60111  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60112  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60113  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60114  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60115  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60116  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60117  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60118  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60119  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60120  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60121  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60122  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60123  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60124  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60125  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60126  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60127  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60128  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60129  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60130  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60131  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60132  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60133  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60134  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60135  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60136  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60137  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60138  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60139  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60140  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60141  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60142  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60143  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60144  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60145  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60146  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60147  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60148  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60149  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60150  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60151  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60152  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60153  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60154  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60155  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60156  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60157  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60158  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60159  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60160  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60161  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60162  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60163  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60164  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60165  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60166  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60167  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60168  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60169  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60170  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60171  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60172  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60173  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60174  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60175  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60176  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60177  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60178  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60179  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60180  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60181  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60182  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60183  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60184  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60185  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60186  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60187  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60188  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60189  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60190  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60191  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60192  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60193  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60194  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60195  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60196  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60197  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60198  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60199  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60200  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60201  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60202  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60203  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60204  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60205  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60206  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60207  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60208  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60209  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60210  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60211  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60212  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60213  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60214  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60215  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60216  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60217  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60218  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60219  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60220  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60221  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60222  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60223  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60224  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60225  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60226  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60227  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60228  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60229  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60230  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60231  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60232  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60233  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60234  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60235  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60236  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60237  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60238  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60239  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60240  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60241  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60242  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60243  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60244  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60245  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60246  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60247  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60248  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60249  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60250  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60251  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60252  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60253  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60254  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60255  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60256  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60257  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60258  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60259  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60260  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60261  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60262  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60263  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60264  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60265  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60266  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60267  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60268  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60269  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60270  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60271  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60272  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60273  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60274  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60275  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60276  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60277  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60278  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60279  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60280  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60281  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60282  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60283  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60284  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60285  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60286  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60287  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60288  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60289  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60290  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60291  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60292  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60293  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60294  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60295  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60296  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60297  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60298  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60299  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60300  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60301  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60302  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60303  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60304  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60305  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60306  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60307  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60308  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60309  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60310  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60311  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60312  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60313  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60314  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60315  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60316  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60317  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60318  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60319  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60320  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60321  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60322  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60323  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60324  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60325  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60326  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60327  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60328  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60329  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60330  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60331  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60332  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60333  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60334  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60335  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60336  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60337  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60338  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60339  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60340  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60341  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60342  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60343  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60344  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60345  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60346  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60347  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60348  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60349  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60350  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60351  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60352  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60353  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60354  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60355  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60356  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60357  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60358  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60359  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60360  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60361  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60362  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60363  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60364  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60365  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60366  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60367  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60368  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60369  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60370  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60371  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60372  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60373  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60374  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60375  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60376  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60377  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60378  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60379  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60380  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60381  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60382  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60383  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60384  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60385  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60386  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60387  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60388  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60389  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60390  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60391  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60392  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60393  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60394  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60395  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60396  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60397  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60398  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60399  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60400  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60401  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60402  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60403  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60404  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60405  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60406  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60407  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60408  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60409  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60410  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60411  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60412  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60413  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60414  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60415  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60416  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60417  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60418  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60419  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60420  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60421  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60422  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60423  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60424  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60425  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60426  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60427  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60428  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60429  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60430  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60431  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60432  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60433  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60434  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60435  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60436  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60437  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60438  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60439  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60440  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60441  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60442  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60443  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60444  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60445  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60446  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60447  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60448  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60449  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60450  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60451  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60452  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60453  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60454  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60455  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60456  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60457  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60458  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60459  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60460  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60461  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60462  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60463  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60464  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60465  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60466  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60467  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60468  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60469  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60470  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60471  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60472  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60473  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60474  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60475  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60476  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60477  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60478  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60479  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60480  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60481  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60482  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60483  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60484  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60485  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60486  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60487  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60488  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60489  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60490  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60491  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60492  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60493  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60494  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60495  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60496  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60497  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60498  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60499  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60500  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60501  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60502  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60503  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60504  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60505  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60506  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60507  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60508  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60509  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60510  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60511  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60512  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60513  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60514  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60515  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60516  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60517  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60518  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60519  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60520  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60521  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60522  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60523  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60524  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60525  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60526  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60527  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60528  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60533  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60534  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60535  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60536  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60537  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60538  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60539  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60540  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60541  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60542  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60543  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60544  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60545  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60546  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60547  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60548  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60549  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60550  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60551  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60552  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60553  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60554  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60555  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60556  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60557  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60558  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60559  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60560  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60561  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60562  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60563  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60564  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60565  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60566  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60567  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60568  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60569  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60570  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60571  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60572  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60573  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60574  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60575  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60576  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60577  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60578  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60579  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60580  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60581  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60582  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60583  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60584  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60585  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60586  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60587  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60588  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60589  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60590  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60591  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60592  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60593  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60594  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60595  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60596  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60597  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60598  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60599  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60600  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60601  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60602  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60603  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60604  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60605  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60606  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60607  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60608  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60609  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60610  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60611  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60612  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60613  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60614  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60615  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60616  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60617  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60618  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60619  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60620  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60621  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60622  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60623  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60624  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60625  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60626  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60627  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60628  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60629  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60630  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60631  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60632  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60633  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60634  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60635  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60636  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60637  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60638  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60639  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60640  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60641  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60642  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60643  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60644  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60645  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60646  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60647  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60648  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60649  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60650  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60651  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60652  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60653  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60654  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60655  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60656  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60657  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60658  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60659  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60660  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60661  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60662  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60663  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60664  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60665  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60666  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60667  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60668  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60669  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60670  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60671  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60672  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60673  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60674  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60675  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60676  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60677  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60678  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60679  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60680  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60681  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60682  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60683  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60684  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60685  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60686  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60687  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60688  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60689  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60690  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60691  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60692  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60693  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60694  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60695  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60696  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60697  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60698  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60699  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60700  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60701  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60702  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60703  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60704  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60705  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60706  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60707  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60708  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60709  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60710  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60711  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60712  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60713  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60714  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60715  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60716  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60717  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60718  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60719  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60720  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60721  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60722  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60723  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60724  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60725  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60726  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60727  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60728  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60729  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60730  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60731  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60732  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60733  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60734  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60735  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60736  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60737  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60738  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60739  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60740  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60741  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60742  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60743  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60744  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60745  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60746  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60747  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60748  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60749  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60750  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60751  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60752  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60753  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60754  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60755  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60756  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60757  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60758  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60759  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60760  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60761  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60762  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60763  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60764  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60765  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60766  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60767  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60768  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60769  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60770  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60771  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60772  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60773  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60774  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60775  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60776  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60777  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60778  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60779  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60780  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60781  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60782  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60783  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60784  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60785  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60786  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60787  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60788  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60789  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60790  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60791  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60792  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60793  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60794  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60795  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60796  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60797  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60798  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60799  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60800  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60801  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60802  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60803  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60804  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60805  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60806  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60807  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60808  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60809  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60810  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60811  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60812  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60813  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60814  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60815  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60816  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60817  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60818  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60819  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60820  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60821  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60822  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60823  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60824  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60825  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60826  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60827  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60828  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60829  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60830  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60831  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60832  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60833  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60834  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60835  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60836  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60837  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60838  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60839  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60840  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60841  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60842  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60843  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60844  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60845  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60846  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60847  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60848  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60849  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60850  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60851  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60852  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60853  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60854  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60855  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60856  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60857  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60858  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60859  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60860  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60861  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60862  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60863  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60864  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60865  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60866  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60867  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60868  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60869  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60870  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60871  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60872  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60873  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60874  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60875  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60876  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60877  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60878  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60879  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60880  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60881  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60882  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60883  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60884  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60885  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60886  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60887  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60888  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60889  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60890  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60891  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60892  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60893  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60894  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60895  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60896  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60897  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60898  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60899  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60900  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60901  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60902  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60903  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60904  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60905  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60906  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60907  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60908  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60909  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60910  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60911  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60912  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60913  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60914  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60915  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60916  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60917  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60918  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60919  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60920  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60921  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60922  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60923  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60924  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60925  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60926  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60927  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60928  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60929  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60930  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60931  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60932  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60933  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60934  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60935  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60936  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60937  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60938  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60939  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60940  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60941  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60942  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60943  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60944  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60945  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60946  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60947  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60948  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60949  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60950  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60951  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60952  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60953  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60954  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60955  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60956  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60957  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60958  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60959  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60960  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60961  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60962  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60963  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60964  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60965  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60966  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60967  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60968  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60969  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60970  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60971  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60972  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60973  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60974  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60975  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60976  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60977  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60978  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60979  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60980  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60981  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60982  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60983  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60984  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60985  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60986  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60987  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60988  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60989  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60990  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60991  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60992  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60993  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60994  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60995  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60996  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60997  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60998  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 60999  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61000  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61001  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61002  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61003  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61004  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61005  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61006  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61007  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61008  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61009  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61010  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61011  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61012  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61013  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61014  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61015  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61016  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61017  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61018  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61019  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61020  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61021  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61022  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61023  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61024  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61025  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61026  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61027  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61028  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61029  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61030  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61031  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61032  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61033  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61034  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61035  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61036  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61037  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61038  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61039  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61040  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61041  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61042  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61043  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61044  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61045  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61046  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61047  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61048  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61049  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61050  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61051  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61052  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61053  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61054  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61055  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61056  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61057  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61058  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61059  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61060  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61061  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61062  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61063  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61064  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61065  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61066  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61067  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61068  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61069  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61070  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61071  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61072  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61073  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61074  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61075  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61076  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61077  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61078  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61079  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61080  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61081  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61082  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61083  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61084  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61085  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61086  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61087  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61088  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61089  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61090  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61091  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61092  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61093  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61094  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61095  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61096  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61097  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61098  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61099  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61100  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61101  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61102  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61103  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61104  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61105  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61106  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61107  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61108  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61109  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61110  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61111  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61112  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61113  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61114  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61115  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61116  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61117  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61118  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61119  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61120  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61121  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61122  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61123  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61124  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61125  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61126  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61127  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61128  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61129  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61130  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61131  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61132  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61133  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61134  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61135  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61136  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61137  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61138  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61139  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61140  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61141  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61142  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61143  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61144  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61145  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61146  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61147  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61148  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61149  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61150  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61151  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61152  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61153  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61154  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61155  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61156  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61157  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61158  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61159  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61160  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61161  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61162  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61163  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61164  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61165  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61166  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61167  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61168  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61169  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61170  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61171  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61172  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61173  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61174  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61175  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61176  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61177  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61178  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61179  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61180  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61181  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61182  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61183  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61184  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61185  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61186  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61187  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61188  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61189  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61190  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61191  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61192  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61193  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61194  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61195  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61196  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61197  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61198  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61199  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61200  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61201  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61202  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61203  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61204  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61205  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61206  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61207  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61208  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61209  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61210  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61211  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61212  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61213  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61214  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61215  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61216  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61217  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61218  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61219  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61220  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61221  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61222  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61223  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61224  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61225  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61226  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61227  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61228  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61229  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61230  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61231  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61232  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61233  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61234  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61235  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61236  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61237  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61238  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61239  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61240  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61241  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61242  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61243  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61244  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61245  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61246  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61247  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61248  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61249  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61250  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61251  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61252  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61253  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61254  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61255  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61256  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61257  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61258  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61259  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61260  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61261  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61262  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61263  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61264  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61265  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61266  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61267  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61268  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61269  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61270  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61271  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61272  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61273  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61274  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61275  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61276  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61277  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61278  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61279  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61280  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61281  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61282  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61283  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61284  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61285  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61286  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61287  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61288  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61289  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61290  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61291  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61292  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61293  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61294  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61295  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61296  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61297  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61298  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61299  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61300  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61301  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61302  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61303  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61304  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61305  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61306  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61307  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61308  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61309  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61310  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61311  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61312  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61313  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61314  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61315  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61316  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61317  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61318  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61319  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61320  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61321  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61322  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61323  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61324  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61325  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61326  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61327  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61328  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61329  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61330  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61331  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61332  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61333  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61334  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61335  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61336  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61337  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61338  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61339  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61340  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61341  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61342  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61343  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61344  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61345  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61346  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61347  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61348  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61349  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61350  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61351  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61352  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61353  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61354  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61355  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61356  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61357  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61358  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61359  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61360  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61361  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61362  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61363  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61364  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61365  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61366  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61367  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61368  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61369  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61370  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61371  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61372  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61373  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61374  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61375  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61376  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61377  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61378  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61379  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61380  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61381  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61382  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61383  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61384  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61385  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61386  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61387  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61388  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61389  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61390  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61391  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61392  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61393  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61394  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61395  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61396  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61397  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61398  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61399  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61400  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61401  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61402  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61403  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61404  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61405  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61406  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61407  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61408  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61409  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61410  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61411  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61412  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61413  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61414  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61415  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61416  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61417  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61418  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61419  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61420  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61421  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61422  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61423  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61424  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61425  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61426  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61427  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61428  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61429  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61430  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61431  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61432  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61433  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61434  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61435  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61436  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61437  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61438  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61439  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61440  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61441  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61442  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61443  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61444  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61445  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61446  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61447  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61448  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61449  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61450  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61451  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61452  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61453  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61454  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61455  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61456  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61457  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61458  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61459  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61460  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61461  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61462  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61463  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61464  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61465  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61466  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61467  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61468  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61469  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61470  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61471  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61472  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61473  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61474  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61475  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61476  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61477  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61478  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61479  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61480  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61481  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61482  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61483  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61484  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61485  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61486  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61487  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61488  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61489  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61490  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61491  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61492  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61493  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61494  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61495  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61496  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61497  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61498  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61499  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61500  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61501  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61502  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61503  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61504  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61505  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61506  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61507  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61508  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61509  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61510  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61511  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61512  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61513  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61514  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61515  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61516  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61517  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61518  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61519  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61520  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61521  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61522  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61523  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61524  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61525  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61526  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61527  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61528  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61533  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61534  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61535  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61536  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61537  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61538  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61539  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61540  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61541  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61542  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61543  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61544  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61545  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61546  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61547  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61548  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61549  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61550  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61551  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61552  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61553  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61554  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61555  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61556  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61557  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61558  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61559  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61560  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61561  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61562  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61563  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61564  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61565  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61566  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61567  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61568  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61569  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61570  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61571  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61572  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61573  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61574  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61575  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61576  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61577  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61578  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61579  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61580  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61581  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61582  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61583  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61584  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61585  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61586  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61587  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61588  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61589  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61590  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61591  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61592  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61593  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61594  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61595  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61596  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61597  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61598  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61599  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61600  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61601  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61602  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61603  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61604  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61605  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61606  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61607  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61608  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61609  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61610  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61611  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61612  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61613  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61614  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61615  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61616  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61617  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61618  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61619  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61620  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61621  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61622  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61623  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61624  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61625  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61626  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61627  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61628  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61629  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61630  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61631  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61632  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61633  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61634  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61635  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61636  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61637  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61638  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61639  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61640  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61641  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61642  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61643  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61644  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61645  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61646  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61647  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61648  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61649  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61650  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61651  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61652  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61653  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61654  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61655  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61656  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61657  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61658  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61659  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61660  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61661  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61662  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61663  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61664  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61665  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61666  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61667  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61668  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61669  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61670  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61671  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61672  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61673  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61674  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61675  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61676  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61677  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61678  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61679  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61680  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61681  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61682  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61683  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61684  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61685  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61686  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61687  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61688  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61689  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61690  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61691  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61692  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61693  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61694  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61695  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61696  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61697  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61698  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61699  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61700  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61701  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61702  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61703  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61704  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61705  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61706  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61707  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61708  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61709  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61710  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61711  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61712  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61713  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61714  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61715  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61716  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61717  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61718  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61719  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61720  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61721  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61722  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61723  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61724  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61725  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61726  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61727  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61728  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61729  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61730  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61731  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61732  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61733  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61734  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61735  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61736  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61737  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61738  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61739  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61740  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61741  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61742  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61743  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61744  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61745  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61746  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61747  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61748  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61749  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61750  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61751  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61752  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61753  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61754  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61755  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61756  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61757  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61758  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61759  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61760  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61761  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61762  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61763  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61764  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61765  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61766  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61767  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61768  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61769  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61770  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61771  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61772  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61773  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61774  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61775  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61776  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61777  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61778  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61779  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61780  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61781  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61782  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61783  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61784  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61785  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61786  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61787  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61788  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61789  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61790  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61791  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61792  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61793  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61794  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61795  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61796  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61797  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61798  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61799  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61800  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61801  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61802  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61803  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61804  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61805  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61806  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61807  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61808  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61809  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61810  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61811  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61812  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61813  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61814  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61815  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61816  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61817  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61818  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61819  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61820  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61821  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61822  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61823  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61824  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61825  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61826  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61827  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61828  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61829  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61830  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61831  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61832  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61833  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61834  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61835  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61836  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61837  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61838  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61839  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61840  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61841  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61842  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61843  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61844  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61845  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61846  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61847  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61848  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61849  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61850  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61851  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61852  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61853  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61854  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61855  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61856  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61857  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61858  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61859  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61860  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61861  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61862  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61863  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61864  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61865  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61866  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61867  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61868  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61869  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61870  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61871  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61872  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61873  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61874  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61875  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61876  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61877  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61878  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61879  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61880  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61881  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61882  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61883  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61884  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61885  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61886  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61887  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61888  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61889  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61890  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61891  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61892  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61893  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61894  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61895  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61896  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61897  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61898  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61899  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61900  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61901  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61902  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61903  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61904  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61905  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61906  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61907  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61908  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61909  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61910  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61911  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61912  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61913  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61914  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61915  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61916  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61917  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61918  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61919  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61920  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61921  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61922  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61923  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61924  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61925  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61926  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61927  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61928  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61929  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61930  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61931  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61932  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61933  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61934  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61935  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61936  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61937  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61938  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61939  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61940  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61941  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61942  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61943  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61944  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61945  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61946  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61947  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61948  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61949  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61950  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61951  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61952  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61953  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61954  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61955  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61956  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61957  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61958  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61959  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61960  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61961  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61962  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61963  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61964  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61965  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61966  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61967  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61968  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61969  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61970  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61971  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61972  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61973  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61974  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61975  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61976  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61977  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61978  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61979  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61980  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61981  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61982  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61983  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61984  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61985  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61986  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61987  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61988  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61989  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61990  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61991  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61992  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61993  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61994  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61995  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61996  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61997  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61998  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 61999  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62000  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62001  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62002  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62003  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62004  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62005  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62006  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62007  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62008  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62009  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62010  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62011  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62012  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62013  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62014  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62015  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62016  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62017  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62018  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62019  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62020  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62021  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62022  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62023  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62024  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62025  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62026  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62027  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62028  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62029  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62030  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62031  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62032  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62033  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62034  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62035  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62036  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62037  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62038  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62039  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62040  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62041  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62042  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62043  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62044  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62045  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62046  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62047  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62048  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62049  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62050  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62051  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62052  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62053  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62054  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62055  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62056  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62057  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62058  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62059  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62060  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62061  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62062  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62063  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62064  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62065  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62066  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62067  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62068  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62069  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62070  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62071  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62072  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62073  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62074  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62075  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62076  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62077  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62078  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62079  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62080  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62081  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62082  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62083  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62084  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62085  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62086  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62087  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62088  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62089  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62090  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62091  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62092  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62093  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62094  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62095  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62096  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62097  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62098  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62099  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62100  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62101  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62102  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62103  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62104  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62105  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62106  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62107  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62108  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62109  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62110  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62111  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62112  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62113  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62114  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62115  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62116  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62117  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62118  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62119  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62120  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62121  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62122  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62123  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62124  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62125  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62126  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62127  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62128  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62129  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62130  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62131  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62132  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62133  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62134  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62135  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62136  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62137  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62138  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62139  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62140  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62141  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62142  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62143  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62144  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62145  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62146  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62147  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62148  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62149  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62150  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62151  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62152  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62153  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62154  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62155  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62156  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62157  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62158  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62159  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62160  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62161  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62162  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62163  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62164  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62165  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62166  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62167  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62168  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62169  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62170  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62171  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62172  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62173  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62174  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62175  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62176  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62177  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62178  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62179  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62180  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62181  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62182  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62183  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62184  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62185  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62186  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62187  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62188  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62189  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62190  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62191  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62192  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62193  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62194  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62195  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62196  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62197  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62198  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62199  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62200  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62201  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62202  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62203  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62204  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62205  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62206  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62207  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62208  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62209  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62210  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62211  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62212  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62213  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62214  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62215  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62216  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62217  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62218  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62219  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62220  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62221  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62222  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62223  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62224  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62225  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62226  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62227  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62228  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62229  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62230  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62231  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62232  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62233  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62234  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62235  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62236  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62237  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62238  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62239  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62240  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62241  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62242  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62243  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62244  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62245  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62246  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62247  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62248  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62249  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62250  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62251  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62252  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62253  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62254  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62255  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62256  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62257  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62258  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62259  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62260  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62261  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62262  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62263  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62264  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62265  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62266  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62267  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62268  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62269  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62270  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62271  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62272  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62273  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62274  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62275  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62276  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62277  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62278  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62279  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62280  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62281  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62282  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62283  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62284  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62285  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62286  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62287  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62288  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62289  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62290  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62291  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62292  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62293  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62294  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62295  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62296  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62297  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62298  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62299  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62300  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62301  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62302  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62303  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62304  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62305  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62306  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62307  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62308  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62309  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62310  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62311  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62312  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62313  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62314  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62315  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62316  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62317  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62318  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62319  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62320  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62321  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62322  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62323  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62324  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62325  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62326  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62327  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62328  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62329  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62330  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62331  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62332  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62333  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62334  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62335  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62336  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62337  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62338  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62339  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62340  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62341  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62342  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62343  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62344  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62345  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62346  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62347  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62348  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62349  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62350  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62351  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62352  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62353  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62354  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62355  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62356  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62357  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62358  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62359  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62360  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62361  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62362  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62363  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62364  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62365  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62366  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62367  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62368  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62369  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62370  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62371  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62372  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62373  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62374  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62375  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62376  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62377  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62378  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62379  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62380  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62381  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62382  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62383  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62384  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62385  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62386  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62387  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62388  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62389  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62390  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62391  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62392  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62393  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62394  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62395  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62396  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62397  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62398  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62399  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62400  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62401  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62402  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62403  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62404  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62405  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62406  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62407  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62408  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62409  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62410  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62411  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62412  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62413  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62414  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62415  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62416  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62417  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62418  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62419  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62420  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62421  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62422  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62423  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62424  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62425  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62426  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62427  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62428  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62429  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62430  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62431  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62432  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62433  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62434  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62435  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62436  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62437  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62438  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62439  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62440  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62441  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62442  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62443  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62444  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62445  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62446  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62447  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62448  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62449  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62450  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62451  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62452  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62453  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62454  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62455  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62456  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62457  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62458  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62459  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62460  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62461  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62462  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62463  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62464  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62465  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62466  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62467  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62468  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62469  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62470  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62471  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62472  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62473  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62474  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62475  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62476  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62477  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62478  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62479  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62480  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62481  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62482  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62483  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62484  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62485  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62486  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62487  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62488  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62489  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62490  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62491  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62492  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62493  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62494  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62495  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62496  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62497  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62498  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62499  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62500  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62501  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62502  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62503  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62504  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62505  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62506  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62507  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62508  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62509  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62510  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62511  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62512  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62513  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62514  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62515  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62516  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62517  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62518  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62519  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62520  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62521  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62522  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62523  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62524  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62525  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62526  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62527  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62528  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62533  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62534  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62535  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62536  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62537  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62538  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62539  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62540  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62541  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62542  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62543  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62544  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62545  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62546  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62547  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62548  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62549  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62550  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62551  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62552  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62553  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62554  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62555  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62556  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62557  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62558  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62559  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62560  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62561  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62562  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62563  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62564  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62565  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62566  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62567  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62568  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62569  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62570  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62571  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62572  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62573  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62574  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62575  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62576  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62577  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62578  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62579  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62580  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62581  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62582  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62583  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62584  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62585  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62586  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62587  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62588  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62589  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62590  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62591  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62592  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62593  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62594  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62595  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62596  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62597  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62598  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62599  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62600  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62601  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62602  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62603  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62604  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62605  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62606  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62607  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62608  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62609  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62610  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62611  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62612  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62613  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62614  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62615  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62616  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62617  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62618  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62619  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62620  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62621  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62622  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62623  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62624  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62625  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62626  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62627  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62628  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62629  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62630  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62631  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62632  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62633  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62634  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62635  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62636  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62637  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62638  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62639  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62640  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62641  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62642  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62643  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62644  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62645  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62646  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62647  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62648  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62649  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62650  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62651  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62652  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62653  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62654  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62655  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62656  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62657  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62658  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62659  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62660  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62661  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62662  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62663  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62664  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62665  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62666  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62667  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62668  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62669  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62670  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62671  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62672  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62673  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62674  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62675  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62676  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62677  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62678  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62679  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62680  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62681  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62682  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62683  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62684  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62685  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62686  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62687  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62688  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62689  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62690  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62691  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62692  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62693  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62694  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62695  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62696  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62697  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62698  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62699  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62700  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62701  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62702  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62703  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62704  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62705  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62706  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62707  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62708  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62709  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62710  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62711  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62712  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62713  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62714  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62715  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62716  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62717  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62718  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62719  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62720  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62721  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62722  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62723  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62724  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62725  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62726  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62727  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62728  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62729  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62730  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62731  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62732  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62733  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62734  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62735  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62736  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62737  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62738  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62739  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62740  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62741  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62742  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62743  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62744  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62745  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62746  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62747  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62748  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62749  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62750  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62751  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62752  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62753  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62754  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62755  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62756  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62757  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62758  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62759  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62760  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62761  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62762  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62763  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62764  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62765  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62766  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62767  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62768  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62769  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62770  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62771  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62772  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62773  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62774  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62775  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62776  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62777  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62778  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62779  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62780  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62781  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62782  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62783  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62784  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62785  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62786  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62787  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62788  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62789  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62790  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62791  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62792  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62793  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62794  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62795  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62796  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62797  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62798  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62799  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62800  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62801  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62802  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62803  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62804  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62805  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62806  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62807  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62808  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62809  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62810  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62811  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62812  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62813  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62814  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62815  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62816  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62817  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62818  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62819  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62820  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62821  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62822  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62823  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62824  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62825  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62826  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62827  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62828  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62829  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62830  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62831  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62832  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62833  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62834  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62835  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62836  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62837  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62838  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62839  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62840  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62841  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62842  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62843  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62844  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62845  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62846  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62847  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62848  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62849  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62850  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62851  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62852  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62853  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62854  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62855  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62856  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62857  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62858  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62859  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62860  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62861  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62862  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62863  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62864  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62865  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62866  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62867  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62868  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62869  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62870  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62871  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62872  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62873  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62874  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62875  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62876  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62877  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62878  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62879  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62880  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62881  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62882  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62883  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62884  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62885  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62886  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62887  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62888  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62889  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62890  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62891  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62892  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62893  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62894  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62895  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62896  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62897  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62898  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62899  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62900  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62901  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62902  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62903  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62904  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62905  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62906  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62907  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62908  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62909  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62910  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62911  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62912  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62913  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62914  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62915  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62916  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62917  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62918  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62919  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62920  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62921  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62922  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62923  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62924  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62925  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62926  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62927  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62928  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62929  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62930  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62931  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62932  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62933  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62934  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62935  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62936  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62937  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62938  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62939  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62940  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62941  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62942  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62943  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62944  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62945  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62946  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62947  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62948  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62949  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62950  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62951  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62952  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62953  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62954  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62955  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62956  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62957  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62958  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62959  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62960  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62961  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62962  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62963  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62964  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62965  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62966  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62967  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62968  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62969  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62970  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62971  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62972  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62973  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62974  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62975  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62976  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62977  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62978  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62979  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62980  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62981  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62982  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62983  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62984  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62985  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62986  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62987  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62988  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62989  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62990  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62991  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62992  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62993  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62994  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62995  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62996  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62997  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62998  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 62999  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63000  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63001  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63002  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63003  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63004  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63005  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63006  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63007  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63008  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63009  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63010  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63011  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63012  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63013  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63014  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63015  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63016  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63017  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63018  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63019  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63020  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63021  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63022  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63023  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63024  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63025  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63026  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63027  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63028  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63029  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63030  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63031  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63032  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63033  ; -+,0x00,0x00,0x00,0x00,0x50,0x50,0x50,0xd8,0xd8,0xd8,0x50,0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63034  ; -+,0x00,0x00,0x00,0x0c,0x26,0x03,0x03,0x02,0x02,0x04,0x00,0x00,0x10,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63035  ; -+,0x00,0x00,0x00,0x0c,0x06,0x02,0x02,0x04,0x0e,0x03,0x01,0x01,0x02,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63036  ; -+,0x00,0x00,0x00,0x02,0x06,0x06,0x02,0x12,0x02,0x02,0x7f,0x06,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63037  ; -+,0x00,0x00,0x00,0x0f,0x1e,0x00,0x38,0x1e,0x02,0x03,0x01,0x01,0x02,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63038  ; -+,0x00,0x00,0x00,0x02,0x08,0x10,0x30,0x3e,0x23,0x21,0x21,0x21,0x31,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63039  ; -+,0x00,0x00,0x00,0x1f,0x3f,0x01,0x02,0x02,0x02,0x04,0x04,0x04,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63040  ; -+,0x00,0x00,0x00,0x00,0x23,0x21,0x32,0x1a,0x0c,0x16,0x23,0x21,0x21,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63041  ; -+,0x00,0x00,0x00,0x04,0x22,0x21,0x21,0x21,0x21,0x1b,0x03,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63042  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63043  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63044  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63045  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63046  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63047  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63048  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63049  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63050  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63051  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63052  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63053  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63054  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63055  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63056  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63057  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63058  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63059  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63060  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63061  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63062  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63063  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63064  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63065  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63066  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63067  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63068  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63069  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63070  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63071  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63072  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63073  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63074  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63075  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63076  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63077  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63078  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63079  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63080  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63081  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63082  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63083  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63084  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63085  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63086  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63087  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63088  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63089  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63090  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63091  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63092  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63093  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63094  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63095  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63096  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63097  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63098  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63099  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63100  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63101  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63102  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63103  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63104  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63105  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63106  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63107  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63108  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63109  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63110  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63111  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63112  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63113  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63114  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63115  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63116  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63117  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63118  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63119  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63120  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63121  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63122  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63123  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63124  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63125  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63126  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63127  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63128  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63129  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63130  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63131  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63132  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63133  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63134  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63135  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63136  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63137  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63138  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63139  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63140  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63141  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63142  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63143  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63144  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63145  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63146  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63147  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63148  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63149  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63150  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63151  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63152  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63153  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63154  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63155  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63156  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63157  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63158  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63159  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63160  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63161  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63162  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63163  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63164  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63165  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63166  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63167  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63168  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63169  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63170  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63171  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63172  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63173  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63174  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63175  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63176  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63177  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63178  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63179  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63180  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63181  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63182  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63183  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63184  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63185  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63186  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63187  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63188  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63189  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63190  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63191  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63192  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63193  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63194  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63195  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63196  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63197  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63198  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63199  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63200  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63201  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63202  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63203  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63204  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63205  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63206  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63207  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63208  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63209  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63210  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63211  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63212  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63213  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63214  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63215  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63216  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63217  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63218  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63219  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63220  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63221  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63222  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63223  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63224  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63225  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63226  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63227  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63228  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63229  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63230  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63231  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63232  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63233  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63234  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63235  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63236  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63237  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63238  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63239  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63240  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63241  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63242  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63243  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63244  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63245  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63246  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63247  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63248  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63249  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63250  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63251  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63252  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63253  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63254  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63255  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63256  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63257  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63258  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63259  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63260  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63261  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63262  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63263  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63264  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63265  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63266  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63267  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63268  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63269  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63270  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63271  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63272  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63273  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63274  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63275  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63276  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63277  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63278  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63279  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63280  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63281  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63282  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63283  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63284  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63285  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63286  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63287  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63288  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63289  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63290  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63291  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63292  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63293  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63294  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63295  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63296  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63297  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63298  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63299  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63300  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63301  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63302  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63303  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63304  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63305  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63306  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63307  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63308  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63309  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63310  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63311  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63312  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63313  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63314  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63315  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63316  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63317  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63318  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63319  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63320  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63321  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63322  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63323  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63324  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63325  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63326  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63327  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63328  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63329  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63330  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63331  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63332  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63333  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63334  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63335  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63336  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63337  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63338  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63339  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63340  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63341  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63342  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63343  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63344  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63345  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63346  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63347  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63348  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63349  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63350  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63351  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63352  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63353  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63354  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63355  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63356  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63357  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63358  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63359  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63360  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63361  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63362  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63363  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63364  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63365  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63366  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63367  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63368  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63369  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63370  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63371  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63372  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63373  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63374  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63375  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63376  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63377  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63378  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63379  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63380  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63381  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63382  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63383  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63384  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63385  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63386  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63387  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63388  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63389  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63390  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63391  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63392  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63393  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63394  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63395  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63396  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63397  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63398  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63399  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63400  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63401  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63402  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63403  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63404  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63405  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63406  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63407  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63408  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63409  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63410  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63411  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63412  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63413  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63414  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63415  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63416  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63417  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63418  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63419  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63420  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63421  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63422  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63423  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63424  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63425  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63426  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63427  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63428  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63429  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63430  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63431  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63432  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63433  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63434  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63435  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63436  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63437  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63438  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63439  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63440  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63441  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63442  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63443  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63444  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63445  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63446  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63447  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63448  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63449  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63450  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63451  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63452  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63453  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63454  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63455  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63456  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63457  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63458  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63459  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63460  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63461  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63462  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63463  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63464  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63465  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63466  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63467  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63468  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63469  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63470  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63471  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63472  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63473  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63474  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63475  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63476  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63477  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63478  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63479  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63480  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63481  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63482  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63483  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63484  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63485  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63486  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63487  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63488  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63489  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63490  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63491  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63492  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63493  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63494  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63495  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63496  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63497  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63498  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63499  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63500  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63501  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63502  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63503  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63504  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63505  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63506  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63507  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63508  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63509  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63510  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63511  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63512  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63513  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63514  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63515  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63516  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63517  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63518  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63519  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63520  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63521  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63522  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63523  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63524  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63525  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63526  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63527  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63528  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63533  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63534  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63535  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63536  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63537  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63538  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63539  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63540  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63541  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63542  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63543  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63544  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63545  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63546  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63547  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63548  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63549  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63550  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63551  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63552  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63553  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63554  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63555  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63556  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63557  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63558  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63559  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63560  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63561  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63562  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63563  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63564  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63565  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63566  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63567  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63568  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63569  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63570  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63571  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63572  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63573  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63574  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63575  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63576  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63577  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63578  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63579  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63580  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63581  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63582  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63583  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63584  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63585  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63586  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63587  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63588  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63589  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63590  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63591  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63592  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63593  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63594  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63595  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63596  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63597  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63598  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63599  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63600  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63601  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63602  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63603  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63604  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63605  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63606  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63607  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63608  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63609  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63610  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63611  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63612  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63613  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63614  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63615  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63616  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63617  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63618  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63619  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63620  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63621  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63622  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63623  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63624  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63625  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63626  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63627  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63628  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63629  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63630  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63631  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63632  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63633  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63634  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63635  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63636  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63637  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63638  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63639  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63640  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63641  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63642  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63643  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63644  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63645  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63646  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63647  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63648  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63649  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63650  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63651  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63652  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63653  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63654  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63655  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63656  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63657  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63658  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63659  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63660  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63661  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63662  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63663  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63664  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63665  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63666  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63667  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63668  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63669  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63670  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63671  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63672  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63673  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63674  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63675  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63676  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63677  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63678  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63679  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63680  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63681  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63682  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63683  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63684  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63685  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63686  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63687  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63688  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63689  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63690  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63691  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63692  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63693  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63694  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63695  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63696  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63697  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63698  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63699  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63700  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63701  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63702  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63703  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63704  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63705  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63706  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63707  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63708  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63709  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63710  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63711  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63712  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63713  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63714  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63715  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63716  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63717  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63718  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63719  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63720  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63721  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63722  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63723  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63724  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63725  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63726  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63727  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63728  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63729  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63730  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63731  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63732  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63733  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63734  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63735  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63736  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63737  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63738  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63739  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63740  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63741  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63742  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63743  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63744 豈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63745 更 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63746 車 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63747 賈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63748 滑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63749 串 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63750 句 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63751 龜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63752 龜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63753 契 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63754 金 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63755 喇 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63756 奈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63757 懶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63758 癩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63759 羅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63760 蘿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63761 螺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63762 裸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63763 邏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63764 樂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63765 洛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63766 烙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63767 珞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63768 落 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63769 酪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63770 駱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63771 亂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63772 卵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63773 欄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63774 爛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63775 蘭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63776 鸞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63777 嵐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63778 濫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63779 藍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63780 襤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63781 拉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63782 臘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63783 蠟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63784 廊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63785 朗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63786 浪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63787 狼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63788 郎 ; -+,0x08,0x04,0x3f,0x21,0x3f,0x21,0x21,0x3f,0x20,0x29,0x26,0x22,0x2b,0x31,0x20,0x00,0x00,0x3e,0x22,0x22,0x24,0x24,0x28,0x24,0xa2,0x22,0x22,0x2a,0x24,0xa0,0x20,0x20 -+// 63789 來 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63790 冷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63791 勞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63792 擄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63793 櫓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63794 爐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63795 盧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63796 老 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63797 蘆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63798 虜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63799 路 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63800 露 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63801 魯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63802 鷺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63803 碌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63804 祿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63805 綠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63806 菉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63807 錄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63808 鹿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63809 論 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63810 壟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63811 弄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63812 籠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63813 聾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63814 牢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63815 磊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63816 賂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63817 雷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63818 壘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63819 屢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63820 樓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63821 淚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63822 漏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63823 累 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63824 縷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63825 陋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63826 勒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63827 肋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63828 凜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63829 凌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63830 稜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63831 綾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63832 菱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63833 陵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63834 讀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63835 拏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63836 樂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63837 諾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63838 丹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63839 寧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63840 怒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63841 率 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63842 異 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63843 北 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63844 磻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63845 便 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63846 復 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63847 不 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63848 泌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63849 數 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63850 索 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63851 參 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63852 塞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63853 省 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63854 葉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63855 說 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63856 殺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63857 辰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63858 沈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63859 拾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63860 若 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63861 掠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63862 略 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63863 亮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63864 兩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63865 凉 ; -+,0x00,0x20,0x13,0x10,0x04,0x09,0x09,0x11,0x11,0x60,0x22,0x23,0x22,0x24,0x28,0x20,0x40,0x20,0xfe,0x00,0x00,0xfc,0x04,0x04,0xfc,0x20,0x28,0x24,0x26,0x23,0xa2,0x40 -+// 63866 梁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63867 糧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63868 良 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63869 諒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63870 量 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63871 勵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63872 呂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63873 女 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63874 廬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63875 旅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63876 濾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63877 礪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63878 閭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63879 驪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63880 麗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63881 黎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63882 力 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63883 曆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63884 歷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63885 轢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63886 年 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63887 憐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63888 戀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63889 撚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63890 漣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63891 煉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63892 璉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63893 秊 ; -+,0x00,0x0f,0x00,0x3f,0x01,0x02,0x0c,0x30,0x00,0x0f,0x00,0x7f,0x00,0x00,0x00,0x00,0x78,0x80,0x80,0xfe,0xc0,0xb0,0x8f,0x00,0x7c,0x80,0x80,0xff,0x80,0x80,0x80,0x80 -+// 63894 練 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63895 聯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63896 輦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63897 蓮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63898 連 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63899 鍊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63900 列 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63901 劣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63902 咽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63903 烈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63904 裂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63905 說 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63906 廉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63907 念 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63908 捻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63909 殮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63910 簾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63911 獵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63912 令 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63913 囹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63914 寧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63915 嶺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63916 怜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63917 玲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63918 瑩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63919 羚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63920 聆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63921 鈴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63922 零 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63923 靈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63924 領 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63925 例 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63926 禮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63927 醴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63928 隸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63929 惡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63930 了 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63931 僚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63932 寮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63933 尿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63934 料 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63935 樂 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63936 燎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63937 療 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63938 蓼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63939 遼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63940 龍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63941 暈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63942 阮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63943 劉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63944 杻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63945 柳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63946 流 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63947 溜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63948 琉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63949 留 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63950 硫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63951 紐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63952 類 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63953 六 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63954 戮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63955 陸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63956 倫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63957 崙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63958 淪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63959 輪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63960 律 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63961 慄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63962 栗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63963 率 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63964 隆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63965 利 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63966 吏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63967 履 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63968 易 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63969 李 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63970 梨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63971 泥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63972 理 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63973 痢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63974 罹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63975 裏 ; -+,0x00,0x7f,0x08,0x0f,0x08,0x0f,0x00,0x1f,0x00,0x3f,0x02,0x04,0x1c,0x65,0x06,0x04,0x80,0xff,0x88,0xf8,0x88,0xf8,0x80,0xfc,0x80,0xff,0x44,0x48,0x30,0x10,0x0c,0x03 -+// 63976 裡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63977 里 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63978 離 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63979 匿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63980 溺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63981 吝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63982 燐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63983 璘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63984 藺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63985 隣 ; -+,0x00,0x3c,0x24,0x2b,0x28,0x31,0x28,0x2c,0x24,0x35,0x2a,0x21,0x20,0x23,0x2c,0x20,0x20,0xa8,0x70,0xff,0x68,0xa6,0x20,0x84,0xff,0x24,0x54,0x5f,0x84,0x04,0x04,0x04 -+// 63986 鱗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63987 麟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63988 林 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63989 淋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63990 臨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63991 立 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63992 笠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63993 粒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63994 狀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63995 炙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63996 識 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63997 什 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63998 茶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 63999 刺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64000 切 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64001 度 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64002 拓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64003 糖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64004 宅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64005 洞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64006 暴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64007 輻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64008 行 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64009 降 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64010 見 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64011 廓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64012 兀 ; -+,0x00,0x3f,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x04,0x04,0x08,0x10,0x20,0x00,0x00,0xff,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x21,0x21,0x1f,0x00,0x00 -+// 64013 嗀 ; -+,0x04,0x3f,0x04,0x1f,0x00,0x3f,0x20,0x5e,0x00,0x3f,0x21,0x21,0x21,0x3f,0x00,0x01,0x00,0xbc,0x24,0x24,0x24,0xa4,0xa3,0xc0,0x7f,0x22,0x24,0x14,0x08,0x14,0x67,0x82 -+// 64014 﨎 ; -+,0x10,0x08,0x3f,0x02,0x14,0x0c,0x0c,0x12,0x22,0x00,0x07,0x01,0x00,0x00,0x07,0x38,0x28,0x24,0x7f,0xc8,0x7e,0x48,0x7e,0x48,0x7f,0x40,0xf8,0x10,0xa0,0xc0,0x30,0x0e -+// 64015 﨏 ; -+,0x00,0x10,0x10,0x11,0x12,0x10,0x7c,0x10,0x13,0x10,0x10,0x1c,0x70,0x40,0x00,0x00,0x00,0x88,0xc4,0x02,0x4a,0x68,0x48,0x84,0x03,0x02,0xfc,0x84,0x84,0xfc,0x84,0x00 -+// 64016 塚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64017 﨑 ; -+,0x08,0x08,0x08,0x2a,0x2a,0x2a,0x2b,0x2a,0x2a,0x2a,0x2e,0x72,0x02,0x00,0x00,0x00,0x20,0x10,0xfe,0x04,0x44,0x28,0xff,0x02,0x7a,0x4a,0x4a,0x7a,0x4a,0x02,0x0a,0x04 -+// 64018 晴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64019 﨓 ; -+,0x00,0x08,0x09,0x08,0x7e,0x08,0x1c,0x1a,0x29,0x28,0x48,0x08,0x08,0x08,0x08,0x08,0x00,0x44,0xff,0x44,0x00,0x42,0x42,0xbf,0x82,0xa2,0x9a,0x92,0x82,0x82,0x8a,0x84 -+// 64020 﨔 ; -+,0x00,0x11,0x10,0x7c,0x13,0x38,0x35,0x56,0x51,0x10,0x11,0x10,0x13,0x10,0x10,0x10,0x00,0x22,0x92,0x94,0xff,0x88,0x04,0x1b,0xe0,0x20,0xfc,0x20,0xfe,0x20,0xa0,0x40 -+// 64021 凞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64022 猪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64023 益 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64024 礼 ; -+,0x00,0x00,0x3f,0x00,0x00,0x7f,0x08,0x08,0x28,0x2a,0x29,0x49,0x09,0x08,0x28,0x10,0x00,0x20,0x20,0x20,0x20,0xa0,0x20,0x20,0x20,0x20,0x20,0xa0,0x20,0x21,0x21,0x1f -+// 64025 神 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64026 祥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64027 福 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64028 靖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64029 精 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64030 羽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64031 﨟 ; -+,0x02,0x3f,0x02,0x1e,0x12,0x12,0x1e,0x12,0x12,0x1e,0x13,0x12,0x22,0x2a,0x44,0x00,0x10,0xff,0x10,0x7e,0x42,0x7e,0x42,0x7e,0x40,0xff,0x11,0x91,0xa9,0xfd,0x05,0x02 -+// 64032 蘒 ; -+,0x02,0x3f,0x02,0x1c,0x71,0x11,0x79,0x13,0x19,0x37,0x31,0x53,0x51,0x17,0x11,0x13,0x10,0xff,0x30,0x40,0xfe,0x02,0xde,0x50,0x5f,0xdb,0x55,0x5b,0x5f,0xd0,0x51,0x3f -+// 64033 﨡 ; -+,0x00,0x08,0x08,0x08,0x3e,0x2a,0x2b,0x2a,0x3e,0x28,0x08,0x0a,0x0f,0x3a,0x00,0x00,0x10,0x10,0x50,0x50,0x7e,0x90,0x10,0x10,0x10,0x7c,0x10,0x10,0x10,0x12,0xff,0x00 -+// 64034 諸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64035 﨣 ; -+,0x04,0x04,0x3f,0x04,0x04,0x7f,0x04,0x04,0x14,0x17,0x14,0x14,0x2c,0x26,0x41,0x00,0x02,0x02,0x22,0x1a,0x0a,0xa2,0x1a,0x0a,0x03,0x0e,0x72,0x02,0x02,0x02,0xff,0x00 -+// 64036 﨤 ; -+,0x20,0x18,0x09,0x40,0x30,0x10,0x00,0x78,0x09,0x09,0x0a,0x0a,0x0c,0x09,0x14,0x23,0x00,0x00,0xfc,0x84,0x88,0x90,0x9c,0xc4,0x48,0x28,0x30,0x30,0x4e,0x84,0x00,0xfe -+// 64037 逸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64038 都 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64039 﨧 ; -+,0x08,0x08,0x14,0x12,0x20,0x3e,0x48,0x3e,0x08,0x09,0x4a,0x2c,0x28,0x0e,0x70,0x00,0x10,0x10,0x7d,0x12,0x14,0xff,0x10,0x20,0x7e,0x84,0x08,0x04,0x7f,0x04,0x14,0x08 -+// 64040 﨨 ; -+,0x04,0x04,0x0a,0x09,0x10,0x3e,0x48,0x3e,0x08,0x4a,0x2a,0x2c,0x08,0x0e,0x70,0x00,0x10,0x7e,0x10,0x10,0xff,0x00,0x44,0x26,0x28,0xff,0x10,0x10,0xff,0x10,0x10,0x10 -+// 64041 﨩 ; -+,0x00,0x3d,0x25,0x25,0x29,0x29,0x25,0x25,0x25,0x35,0x28,0x22,0x22,0x23,0x20,0x20,0x20,0xfc,0x04,0xfc,0x04,0xfc,0x00,0xff,0x00,0xfe,0x42,0x4a,0x4a,0xfa,0x02,0x04 -+// 64042 飯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64043 飼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64044 館 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64045 鶴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64046 郞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64047 隷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64048 侮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64049 僧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64050 免 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64051 勉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64052 勤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64053 卑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64054 喝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64055 嘆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64056 器 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64057 塀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64058 墨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64059 層 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64060 屮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64061 悔 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64062 慨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64063 憎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64064 懲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64065 敏 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64066 既 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64067 暑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64068 梅 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64069 海 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64070 渚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64071 漢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64072 煮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64073 爫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64074 琢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64075 碑 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64076 社 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64077 祉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64078 祈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64079 祐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64080 祖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64081 祝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64082 禍 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64083 禎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64084 穀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64085 突 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64086 節 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64087 練 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64088 縉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64089 繁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64090 署 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64091 者 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64092 臭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64093 艹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64094 艹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64095 著 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64096 褐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64097 視 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64098 謁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64099 謹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64100 賓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64101 贈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64102 辶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64103 逸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64104 難 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64105 響 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64106 頻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64107 恵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64108 𤋮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64109 舘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64110 﩮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64111 﩯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64112 並 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64113 况 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64114 全 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64115 侀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64116 充 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64117 冀 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64118 勇 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64119 勺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64120 喝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64121 啕 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64122 喙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64123 嗢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64124 塚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64125 墳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64126 奄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64127 奔 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64128 婢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64129 嬨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64130 廒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64131 廙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64132 彩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64133 徭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64134 惘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64135 慎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64136 愈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64137 憎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64138 慠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64139 懲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64140 戴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64141 揄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64142 搜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64143 摒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64144 敖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64145 晴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64146 朗 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64147 望 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64148 杖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64149 歹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64150 殺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64151 流 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64152 滛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64153 滋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64154 漢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64155 瀞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64156 煮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64157 瞧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64158 爵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64159 犯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64160 猪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64161 瑱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64162 甆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64163 画 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64164 瘝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64165 瘟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64166 益 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64167 盛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64168 直 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64169 睊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64170 着 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64171 磌 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64172 窱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64173 節 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64174 类 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64175 絛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64176 練 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64177 缾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64178 者 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64179 荒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64180 華 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64181 蝹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64182 襁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64183 覆 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64184 視 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64185 調 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64186 諸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64187 請 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64188 謁 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64189 諾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64190 諭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64191 謹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64192 變 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64193 贈 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64194 輸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64195 遲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64196 醙 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64197 鉶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64198 陼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64199 難 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64200 靖 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64201 韛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64202 響 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64203 頋 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64204 頻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64205 鬒 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64206 龜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64207 𢡊 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64208 𢡄 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64209 𣏕 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64210 㮝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64211 䀘 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64212 䀹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64213 𥉉 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64214 𥳐 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64215 𧻓 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64216 齃 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64217 龎 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64218 﫚 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64219 﫛 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64220 﫜 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64221 﫝 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64222 﫞 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64223 﫟 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64224 﫠 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64225 﫡 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64226 﫢 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64227 﫣 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64228 﫤 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64229 﫥 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64230 﫦 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64231 﫧 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64232 﫨 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64233 﫩 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64234 﫪 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64235 﫫 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64236 﫬 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64237 﫭 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64238 﫮 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64239 﫯 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64240 﫰 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64241 﫱 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64242 﫲 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64243 﫳 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64244 﫴 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64245 﫵 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64246 﫶 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64247 﫷 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64248 﫸 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64249 﫹 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64250 﫺 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64251 﫻 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64252 﫼 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64253 﫽 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64254 﫾 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64255 﫿 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64256 ff ; -+,0x00,0x00,0x00,0x1c,0x54,0x50,0x50,0x58,0x50,0x50,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64257 fi ; -+,0x00,0x00,0x00,0x10,0x50,0x40,0x40,0x50,0x50,0x50,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64258 fl ; -+,0x00,0x00,0x00,0x30,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x50,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64259 ffi ; -+,0x00,0x00,0x00,0x14,0x5c,0x50,0x50,0x5e,0x56,0x56,0x56,0x56,0x56,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64260 ffl ; -+,0x00,0x00,0x00,0x16,0x56,0x56,0x56,0x5e,0x56,0x56,0x56,0x56,0x56,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64261 ſt ; -+,0x00,0x00,0x00,0x00,0x20,0x40,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64262 st ; -+,0x00,0x00,0x00,0x30,0x50,0x48,0x28,0x68,0x48,0x48,0x68,0x28,0x28,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64263 ﬇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64264 ﬈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64265 ﬉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64266 ﬊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64267 ﬋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64268 ﬌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64269 ﬍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64270 ﬎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64271 ﬏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64272 ﬐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64273 ﬑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64274 ﬒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64275 ﬓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64276 ﬔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64277 ﬕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64278 ﬖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64279 ﬗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64280 ﬘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64281 ﬙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64282 ﬚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64283 ﬛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64284 ﬜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64285 יִ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64286 ﬞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64287 ײַ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64288 ﬠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x48,0x28,0x20,0x20,0x28,0x08,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64289 ﬡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x48,0x28,0x68,0x58,0x50,0x48,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64290 ﬢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x78,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64291 ﬣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64292 ﬤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x08,0x08,0x08,0x08,0x08,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64293 ﬥ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x78,0x08,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64294 ﬦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x28,0x48,0x08,0x08,0x08,0x08,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64295 ﬧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64296 ﬨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x70,0x08,0x08,0x08,0x08,0x08,0x08,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64297 ﬩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64298 שׁ ; -+,0x00,0x00,0x00,0x08,0x00,0x78,0x68,0x00,0x00,0x00,0x00,0x40,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64299 שׂ ; -+,0x00,0x00,0x00,0x40,0x00,0x78,0x68,0x00,0x00,0x00,0x00,0x40,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64300 שּׁ ; -+,0x00,0x00,0x00,0x08,0x00,0x78,0x68,0x00,0x00,0x10,0x00,0x40,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64301 שּׂ ; -+,0x00,0x00,0x00,0x40,0x00,0x78,0x68,0x00,0x00,0x10,0x00,0x40,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64302 אַ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x58,0x78,0x30,0x30,0x58,0x58,0x48,0x00,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64303 אָ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x58,0x78,0x30,0x30,0x58,0x58,0x48,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64304 אּ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0xf0,0x58,0x78,0x30,0x30,0x58,0x58,0x68,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64305 בּ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x00,0x00,0x20,0x00,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64306 גּ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x18,0x00,0x00,0x10,0x00,0x08,0x30,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64307 דּ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x3f,0x00,0x01,0x09,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64308 הּ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x3f,0x00,0x00,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64309 וּ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x38,0x08,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64310 זּ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x38,0x00,0x00,0x30,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64311 ﬷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64312 טּ ; -+,0x00,0x00,0x00,0x00,0x00,0xf0,0x70,0x68,0x00,0x10,0x00,0x08,0x78,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64313 יּ ; -+,0x00,0x00,0x00,0x00,0x30,0x38,0x08,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64314 ךּ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0xf8,0x10,0x00,0x30,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64315 כּ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x08,0x00,0x20,0x00,0x08,0x78,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64316 לּ ; -+,0x00,0x00,0x40,0x40,0x40,0x78,0x38,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64317 ﬽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64318 מּ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x58,0x48,0x20,0x80,0x80,0x38,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64319 ﬿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64320 נּ ; -+,0x00,0x00,0x00,0x00,0x00,0x38,0x18,0x00,0x00,0x10,0x00,0x00,0x18,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64321 סּ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x08,0x00,0x20,0x00,0x00,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64322 ﭂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64323 ףּ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0xf0,0x50,0x60,0xf8,0x68,0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64324 פּ ; -+,0x00,0x00,0x00,0x00,0x00,0x7e,0x3f,0x01,0x78,0x3a,0x10,0x00,0x3f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64325 ﭅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64326 צּ ; -+,0x00,0x00,0x00,0x00,0x00,0xd0,0x58,0x00,0x40,0x60,0x30,0x10,0x78,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64327 קּ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x3f,0x01,0x00,0x00,0x40,0x40,0x42,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64328 רּ ; -+,0x00,0x00,0x00,0x00,0x00,0x7f,0x3f,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64329 שּ ; -+,0x00,0x00,0x00,0x00,0x00,0x78,0x68,0x00,0x00,0x10,0x00,0x40,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64330 תּ ; -+,0x00,0x00,0x00,0x00,0x00,0x70,0x78,0x00,0x00,0x20,0x48,0x48,0x48,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64331 וֹ ; -+,0x00,0x00,0x00,0x20,0x00,0x38,0x38,0x08,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64332 בֿ ; -+,0x00,0x00,0x00,0x60,0x00,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x78,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64333 כֿ ; -+,0x00,0x00,0x00,0x60,0x00,0x70,0x78,0x08,0x00,0x00,0x00,0x08,0x78,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64334 פֿ ; -+,0x00,0x00,0x00,0x1c,0x00,0x7e,0x3f,0x01,0x78,0x38,0x10,0x00,0x3f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64335 ﭏ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x48,0x48,0x28,0x28,0x18,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64336 ﭐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64337 ﭑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64338 ﭒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64339 ﭓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64340 ﭔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64341 ﭕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64342 ﭖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64343 ﭗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64344 ﭘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64345 ﭙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64346 ﭚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64347 ﭛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64348 ﭜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64349 ﭝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64350 ﭞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64351 ﭟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64352 ﭠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64353 ﭡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64354 ﭢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64355 ﭣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64356 ﭤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64357 ﭥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64358 ﭦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64359 ﭧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64360 ﭨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64361 ﭩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64362 ﭪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64363 ﭫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64364 ﭬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64365 ﭭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64366 ﭮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64367 ﭯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64368 ﭰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64369 ﭱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64370 ﭲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64371 ﭳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64372 ﭴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64373 ﭵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64374 ﭶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64375 ﭷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64376 ﭸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64377 ﭹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64378 ﭺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x0c,0x00,0x00,0x00,0x00,0x54,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64379 ﭻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x0c,0x00,0x04,0x06,0x00,0x58,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64380 ﭼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64381 ﭽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64382 ﭾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64383 ﭿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64384 ﮀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64385 ﮁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64386 ﮂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64387 ﮃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64388 ﮄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64389 ﮅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64390 ﮆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64391 ﮇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64392 ﮈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64393 ﮉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64394 ﮊ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64395 ﮋ ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x00,0x00,0x04,0x00,0x04,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64396 ﮌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64397 ﮍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64398 ﮎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64399 ﮏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64400 ﮐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64401 ﮑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64402 ﮒ ; -+,0x02,0x01,0x03,0x04,0x04,0x04,0x06,0x02,0x02,0x01,0x01,0x00,0x40,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64403 ﮓ ; -+,0x02,0x01,0x03,0x04,0x04,0x04,0x06,0x02,0x02,0x01,0x01,0x00,0x40,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64404 ﮔ ; -+,0x00,0x08,0x06,0x18,0x20,0x60,0x30,0x10,0x08,0x04,0x00,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64405 ﮕ ; -+,0x00,0x08,0x06,0x18,0x20,0x60,0x30,0x10,0x08,0x04,0x00,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64406 ﮖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64407 ﮗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64408 ﮘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64409 ﮙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64410 ﮚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64411 ﮛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64412 ﮜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64413 ﮝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64414 ﮞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64415 ﮟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64416 ﮠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64417 ﮡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64418 ﮢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64419 ﮣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64420 ﮤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64421 ﮥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64422 ﮦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64423 ﮧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64424 ﮨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64425 ﮩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64426 ﮪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64427 ﮫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64428 ﮬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64429 ﮭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64430 ﮮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64431 ﮯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64432 ﮰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64433 ﮱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64434 ﮲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64435 ﮳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64436 ﮴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64437 ﮵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64438 ﮶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64439 ﮷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64440 ﮸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64441 ﮹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64442 ﮺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64443 ﮻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64444 ﮼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64445 ﮽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64446 ﮾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64447 ﮿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64448 ﯀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64449 ﯁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64450 ﯂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64451 ﯃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64452 ﯄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64453 ﯅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64454 ﯆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64455 ﯇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64456 ﯈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64457 ﯉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64458 ﯊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64459 ﯋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64460 ﯌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64461 ﯍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64462 ﯎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64463 ﯏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64464 ﯐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64465 ﯑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64466 ﯒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64467 ﯓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64468 ﯔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64469 ﯕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64470 ﯖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64471 ﯗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64472 ﯘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64473 ﯙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64474 ﯚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64475 ﯛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64476 ﯜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64477 ﯝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64478 ﯞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64479 ﯟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64480 ﯠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64481 ﯡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64482 ﯢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64483 ﯣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64484 ﯤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64485 ﯥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64486 ﯦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64487 ﯧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64488 ﯨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64489 ﯩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64490 ﯪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64491 ﯫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64492 ﯬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64493 ﯭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64494 ﯮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64495 ﯯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64496 ﯰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64497 ﯱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64498 ﯲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64499 ﯳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64500 ﯴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64501 ﯵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64502 ﯶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64503 ﯷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64504 ﯸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64505 ﯹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64506 ﯺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64507 ﯻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64508 ﯼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x46,0x42,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64509 ﯽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64510 ﯾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64511 ﯿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64512 ﰀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64513 ﰁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64514 ﰂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64515 ﰃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64516 ﰄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64517 ﰅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64518 ﰆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64519 ﰇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64520 ﰈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64521 ﰉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64522 ﰊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64523 ﰋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64524 ﰌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64525 ﰍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64526 ﰎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64527 ﰏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64528 ﰐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64529 ﰑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64530 ﰒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64531 ﰓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64532 ﰔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64533 ﰕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64534 ﰖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64535 ﰗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64536 ﰘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64537 ﰙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64538 ﰚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64539 ﰛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64540 ﰜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64541 ﰝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64542 ﰞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64543 ﰟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64544 ﰠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64545 ﰡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64546 ﰢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64547 ﰣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64548 ﰤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64549 ﰥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64550 ﰦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64551 ﰧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64552 ﰨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64553 ﰩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64554 ﰪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64555 ﰫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64556 ﰬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64557 ﰭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64558 ﰮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64559 ﰯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64560 ﰰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64561 ﰱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64562 ﰲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64563 ﰳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64564 ﰴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64565 ﰵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64566 ﰶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64567 ﰷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64568 ﰸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64569 ﰹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64570 ﰺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64571 ﰻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64572 ﰼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64573 ﰽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64574 ﰾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64575 ﰿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64576 ﱀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64577 ﱁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64578 ﱂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64579 ﱃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64580 ﱄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64581 ﱅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64582 ﱆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64583 ﱇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64584 ﱈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64585 ﱉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64586 ﱊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64587 ﱋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64588 ﱌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64589 ﱍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64590 ﱎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64591 ﱏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64592 ﱐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64593 ﱑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64594 ﱒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64595 ﱓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64596 ﱔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64597 ﱕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64598 ﱖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64599 ﱗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64600 ﱘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64601 ﱙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64602 ﱚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64603 ﱛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64604 ﱜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64605 ﱝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64606 ﱞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64607 ﱟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64608 ﱠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64609 ﱡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64610 ﱢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64611 ﱣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64612 ﱤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64613 ﱥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64614 ﱦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64615 ﱧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64616 ﱨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64617 ﱩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64618 ﱪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64619 ﱫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64620 ﱬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64621 ﱭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64622 ﱮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64623 ﱯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64624 ﱰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64625 ﱱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64626 ﱲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64627 ﱳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64628 ﱴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64629 ﱵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64630 ﱶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64631 ﱷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64632 ﱸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64633 ﱹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64634 ﱺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64635 ﱻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64636 ﱼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64637 ﱽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64638 ﱾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64639 ﱿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64640 ﲀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64641 ﲁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64642 ﲂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64643 ﲃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64644 ﲄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64645 ﲅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64646 ﲆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64647 ﲇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64648 ﲈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64649 ﲉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64650 ﲊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64651 ﲋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64652 ﲌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64653 ﲍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64654 ﲎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64655 ﲏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64656 ﲐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64657 ﲑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64658 ﲒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64659 ﲓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64660 ﲔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64661 ﲕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64662 ﲖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64663 ﲗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64664 ﲘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64665 ﲙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64666 ﲚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64667 ﲛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64668 ﲜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64669 ﲝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64670 ﲞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64671 ﲟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64672 ﲠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64673 ﲡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64674 ﲢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64675 ﲣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64676 ﲤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64677 ﲥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64678 ﲦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64679 ﲧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64680 ﲨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64681 ﲩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64682 ﲪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64683 ﲫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64684 ﲬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64685 ﲭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64686 ﲮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64687 ﲯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64688 ﲰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64689 ﲱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64690 ﲲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64691 ﲳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64692 ﲴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64693 ﲵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64694 ﲶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64695 ﲷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64696 ﲸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64697 ﲹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64698 ﲺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64699 ﲻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64700 ﲼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64701 ﲽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64702 ﲾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64703 ﲿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64704 ﳀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64705 ﳁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64706 ﳂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64707 ﳃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64708 ﳄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64709 ﳅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64710 ﳆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64711 ﳇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64712 ﳈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64713 ﳉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64714 ﳊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64715 ﳋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64716 ﳌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64717 ﳍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64718 ﳎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64719 ﳏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64720 ﳐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64721 ﳑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64722 ﳒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64723 ﳓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64724 ﳔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64725 ﳕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64726 ﳖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64727 ﳗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64728 ﳘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64729 ﳙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64730 ﳚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64731 ﳛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64732 ﳜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64733 ﳝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64734 ﳞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64735 ﳟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64736 ﳠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64737 ﳡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64738 ﳢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64739 ﳣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64740 ﳤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64741 ﳥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64742 ﳦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64743 ﳧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64744 ﳨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64745 ﳩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64746 ﳪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64747 ﳫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64748 ﳬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64749 ﳭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64750 ﳮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64751 ﳯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64752 ﳰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64753 ﳱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64754 ﳲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64755 ﳳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64756 ﳴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64757 ﳵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64758 ﳶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64759 ﳷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64760 ﳸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64761 ﳹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64762 ﳺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64763 ﳻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64764 ﳼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64765 ﳽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64766 ﳾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64767 ﳿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64768 ﴀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64769 ﴁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64770 ﴂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64771 ﴃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64772 ﴄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64773 ﴅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64774 ﴆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64775 ﴇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64776 ﴈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64777 ﴉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64778 ﴊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64779 ﴋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64780 ﴌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64781 ﴍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64782 ﴎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64783 ﴏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64784 ﴐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64785 ﴑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64786 ﴒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64787 ﴓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64788 ﴔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64789 ﴕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64790 ﴖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64791 ﴗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64792 ﴘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64793 ﴙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64794 ﴚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64795 ﴛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64796 ﴜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64797 ﴝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64798 ﴞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64799 ﴟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64800 ﴠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64801 ﴡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64802 ﴢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64803 ﴣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64804 ﴤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64805 ﴥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64806 ﴦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64807 ﴧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64808 ﴨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64809 ﴩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64810 ﴪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64811 ﴫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64812 ﴬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64813 ﴭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64814 ﴮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64815 ﴯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64816 ﴰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64817 ﴱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64818 ﴲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64819 ﴳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64820 ﴴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64821 ﴵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64822 ﴶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64823 ﴷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64824 ﴸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64825 ﴹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64826 ﴺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64827 ﴻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64828 ﴼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64829 ﴽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64830 ﴾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64831 ﴿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64832 ﵀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64833 ﵁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64834 ﵂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64835 ﵃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64836 ﵄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64837 ﵅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64838 ﵆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64839 ﵇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64840 ﵈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64841 ﵉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64842 ﵊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64843 ﵋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64844 ﵌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64845 ﵍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64846 ﵎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64847 ﵏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64848 ﵐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64849 ﵑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64850 ﵒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64851 ﵓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64852 ﵔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64853 ﵕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64854 ﵖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64855 ﵗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64856 ﵘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64857 ﵙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64858 ﵚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64859 ﵛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64860 ﵜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64861 ﵝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64862 ﵞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64863 ﵟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64864 ﵠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64865 ﵡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64866 ﵢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64867 ﵣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64868 ﵤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64869 ﵥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64870 ﵦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64871 ﵧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64872 ﵨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64873 ﵩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64874 ﵪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64875 ﵫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64876 ﵬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64877 ﵭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64878 ﵮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64879 ﵯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64880 ﵰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64881 ﵱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64882 ﵲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64883 ﵳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64884 ﵴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64885 ﵵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64886 ﵶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64887 ﵷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64888 ﵸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64889 ﵹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64890 ﵺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64891 ﵻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64892 ﵼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64893 ﵽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64894 ﵾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64895 ﵿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64896 ﶀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64897 ﶁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64898 ﶂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64899 ﶃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64900 ﶄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64901 ﶅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64902 ﶆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64903 ﶇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64904 ﶈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64905 ﶉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64906 ﶊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64907 ﶋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64908 ﶌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64909 ﶍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64910 ﶎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64911 ﶏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64912 ﶐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64913 ﶑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64914 ﶒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64915 ﶓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64916 ﶔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64917 ﶕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64918 ﶖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64919 ﶗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64920 ﶘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64921 ﶙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64922 ﶚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64923 ﶛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64924 ﶜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64925 ﶝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64926 ﶞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64927 ﶟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64928 ﶠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64929 ﶡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64930 ﶢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64931 ﶣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64932 ﶤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64933 ﶥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64934 ﶦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64935 ﶧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64936 ﶨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64937 ﶩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64938 ﶪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64939 ﶫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64940 ﶬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64941 ﶭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64942 ﶮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64943 ﶯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64944 ﶰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64945 ﶱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64946 ﶲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64947 ﶳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64948 ﶴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64949 ﶵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64950 ﶶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64951 ﶷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64952 ﶸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64953 ﶹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64954 ﶺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64955 ﶻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64956 ﶼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64957 ﶽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64958 ﶾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64959 ﶿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64960 ﷀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64961 ﷁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64962 ﷂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64963 ﷃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64964 ﷄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64965 ﷅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64966 ﷆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64967 ﷇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64968 ﷈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64969 ﷉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64970 ﷊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64971 ﷋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64972 ﷌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64973 ﷍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64974 ﷎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64975 ﷏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64976 ﷐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64977 ﷑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64978 ﷒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64979 ﷓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64980 ﷔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64981 ﷕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64982 ﷖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64983 ﷗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64984 ﷘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64985 ﷙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64986 ﷚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64987 ﷛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64988 ﷜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64989 ﷝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64990 ﷞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64991 ﷟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64992 ﷠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64993 ﷡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64994 ﷢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64995 ﷣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64996 ﷤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64997 ﷥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64998 ﷦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 64999 ﷧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65000 ﷨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65001 ﷩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65002 ﷪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65003 ﷫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65004 ﷬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65005 ﷭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65006 ﷮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65007 ﷯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65008 ﷰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65009 ﷱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65010 ﷲ ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x04,0x24,0x60,0xa0,0xe2,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65011 ﷳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65012 ﷴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65013 ﷵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65014 ﷶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65015 ﷷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65016 ﷸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65017 ﷹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65018 ﷺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65019 ﷻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65020 ﷼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x10,0x00,0x00,0x04,0x02,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65021 ﷽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65022 ﷾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65023 ﷿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65024 ︀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65025 ︁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65026 ︂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65027 ︃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65028 ︄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65029 ︅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65030 ︆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65031 ︇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65032 ︈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65033 ︉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65034 ︊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65035 ︋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65036 ︌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65037 ︍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65038 ︎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65039 ️ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65040 ︐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65041 ︑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65042 ︒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65043 ︓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65044 ︔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65045 ︕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65046 ︖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65047 ︗ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65048 ︘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65049 ︙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65050 ︚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65051 ︛ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65052 ︜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65053 ︝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65054 ︞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65055 ︟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65056 ︠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65057 ︡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65058 ︢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65059 ︣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65060 ︤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65061 ︥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65062 ︦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65063 ︧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65064 ︨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65065 ︩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65066 ︪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65067 ︫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65068 ︬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65069 ︭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65070 ︮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65071 ︯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65072 ︰ ; -+,0x00,0x00,0x01,0x03,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0x01,0x00,0x00,0x00,0x80,0xc0,0xe0,0xc0,0x80,0x00,0x00,0x00,0x00,0x80,0xc0,0xe0,0xc0,0x80,0x00 -+// 65073 ︱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 65074 ︲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65075 ︳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65076 ︴ ; -+,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x40,0x40,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65077 ︵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x18,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x06,0x01,0x00,0x00,0x00 -+// 65078 ︶ ; -+,0x00,0x00,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65079 ︷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x3e,0x01,0x00,0x00,0x00 -+// 65080 ︸ ; -+,0x00,0x00,0x32,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65081 ︹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x10,0x10,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x02,0x00,0x01,0x00,0x00,0x00 -+// 65082 ︺ ; -+,0x00,0x00,0x20,0x10,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x02,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65083 ︻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x3f,0x38,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x3f,0x07,0x01,0x00,0x00,0x00,0x00 -+// 65084 ︼ ; -+,0x00,0x00,0x00,0x00,0x20,0x38,0x3f,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x03,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65085 ︽ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x04,0x10,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xe0,0x18,0x02,0x00,0xe0,0x0c,0x00,0x00,0x00,0x00,0x00 -+// 65086 ︾ ; -+,0x00,0x00,0x00,0x00,0x18,0x07,0x00,0x00,0x08,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x38,0xc0,0x01,0x04,0x30,0xc0,0x00,0x00,0x00,0x00,0x00 -+// 65087 ︿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x0e,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x1c,0x03,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65088 ﹀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x38,0xc0,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65089 ﹁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0x01,0x01,0x00,0x00,0x00,0x00 -+// 65090 ﹂ ; -+,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65091 ﹃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xfe,0x03,0x03,0x00,0x00,0x00,0x00,0x00 -+// 65092 ﹄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x04,0x07,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x01,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65093 ﹅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65094 ﹆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65095 ﹇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65096 ﹈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65097 ﹉ ; -+,0x00,0x00,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65098 ﹊ ; -+,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65099 ﹋ ; -+,0x00,0x00,0x66,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x99,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65100 ﹌ ; -+,0x00,0x00,0x66,0x19,0x00,0x66,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x99,0x00,0x66,0x99,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65101 ﹍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xef,0x00,0x00,0x00 -+// 65102 ﹎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xbe,0x00,0x00,0x00 -+// 65103 ﹏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x33,0xcc,0x00,0x00 -+// 65104 ﹐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xf0,0xf0,0x60,0x20,0x40,0x80,0x00 -+// 65105 ﹑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x60,0x40,0x00,0x00 -+// 65106 ﹒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xe0,0xe0,0xc0,0x00,0x00 -+// 65107 ﹓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65108 ﹔ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0xe0,0xe0,0xc0,0x00,0xc0,0xe0,0xe0,0xe0,0x40,0x80,0x00 -+// 65109 ﹕ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xe0,0xe0,0xc0,0x00,0x00,0xc0,0xe0,0xe0,0xc0,0x00,0x00 -+// 65110 ﹖ ; -+,0x00,0x00,0x01,0x03,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x30,0x30,0x20,0x20,0x40,0x40,0x40,0x00,0x40,0xe0,0x40,0x00 -+// 65111 ﹗ ; -+,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0x80,0x80,0x80,0x00,0x80,0xc0,0x80,0x00 -+// 65112 ﹘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65113 ﹙ ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00 -+// 65114 ﹚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x20,0x40,0x00,0x00 -+// 65115 ﹛ ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00 -+// 65116 ﹜ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x20,0x20,0x20,0x10,0x10,0x20,0x20,0x20,0x20,0x20,0x40,0x00,0x00 -+// 65117 ﹝ ; -+,0x00,0x00,0x01,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00 -+// 65118 ﹞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x20,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x20,0x40,0x00,0x00 -+// 65119 ﹟ ; -+,0x00,0x00,0x01,0x01,0x01,0x1f,0x01,0x01,0x02,0x1f,0x02,0x02,0x04,0x04,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0xfe,0x10,0x10,0x20,0xfe,0x20,0x20,0x40,0x40,0x00,0x00 -+// 65120 ﹠ ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x03,0x04,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x40,0x80,0x00,0x98,0x50,0x20,0x50,0x88,0x00,0x00,0x00 -+// 65121 ﹡ ; -+,0x00,0x00,0x00,0x04,0x02,0x01,0x0f,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x90,0xa0,0xc0,0xf8,0xc0,0xa0,0x90,0x80,0x00,0x00,0x00,0x00,0x00 -+// 65122 ﹢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0xf0,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 65123 ﹣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65124 ﹤ ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x60,0x80,0x00,0x00,0x00,0x80,0x60,0x18,0x00,0x00,0x00,0x00 -+// 65125 ﹥ ; -+,0x00,0x00,0x00,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x0c,0x30,0xc0,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65126 ﹦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0x00,0x00,0xfc,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65127 ﹧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65128 ﹨ ; -+,0x00,0x00,0x00,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x04,0x00,0x00,0x00 -+// 65129 ﹩ ; -+,0x00,0x00,0x01,0x02,0x04,0x02,0x01,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x80,0xc0,0xa0,0x80,0x80,0x80,0xc0,0xa0,0x90,0x90,0xa0,0xc0,0x80,0x00,0x00 -+// 65130 ﹪ ; -+,0x00,0x03,0x04,0x04,0x04,0x04,0x03,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x82,0x84,0x88,0x90,0x20,0x40,0x80,0x18,0x24,0x24,0x24,0x24,0x18,0x00 -+// 65131 ﹫ ; -+,0x00,0x07,0x08,0x10,0x23,0x24,0x24,0x24,0x24,0x23,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0xc0,0x20,0x10,0x88,0x48,0x48,0x48,0x50,0xa0,0x08,0x10,0xe0,0x00,0x00,0x00 -+// 65132 ﹬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65133 ﹭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65134 ﹮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65135 ﹯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65136 ﹰ ; -+,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65137 ﹱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65138 ﹲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65139 ﹳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65140 ﹴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65141 ﹵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65142 ﹶ ; -+,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65143 ﹷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65144 ﹸ ; -+,0x10,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65145 ﹹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65146 ﹺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65147 ﹻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65148 ﹼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65149 ﹽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65150 ﹾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65151 ﹿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65152 ﺀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65153 ﺁ ; -+,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65154 ﺂ ; -+,0x1c,0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65155 ﺃ ; -+,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65156 ﺄ ; -+,0x00,0x10,0x00,0x00,0x10,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65157 ﺅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65158 ﺆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65159 ﺇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65160 ﺈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65161 ﺉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65162 ﺊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65163 ﺋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65164 ﺌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65165 ﺍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65166 ﺎ ; -+,0x00,0x00,0x00,0x00,0x10,0x10,0x00,0x10,0x10,0x10,0x10,0x10,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65167 ﺏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65168 ﺐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65169 ﺑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65170 ﺒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65171 ﺓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65172 ﺔ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65173 ﺕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x01,0x01,0x41,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65174 ﺖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x0c,0x00,0x01,0x01,0x41,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65175 ﺗ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x00,0x00,0x00,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65176 ﺘ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x28,0x00,0x00,0x00,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65177 ﺙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x0e,0x01,0x01,0x00,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65178 ﺚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x0e,0x01,0x01,0x00,0x40,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65179 ﺛ ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x28,0x00,0x00,0x04,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65180 ﺜ ; -+,0x00,0x00,0x00,0x00,0x10,0x00,0x28,0x00,0x00,0x04,0x04,0x04,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65181 ﺝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x0c,0x00,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65182 ﺞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x0c,0x00,0x00,0x02,0x00,0x48,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65183 ﺟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65184 ﺠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65185 ﺡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x38,0x0c,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65186 ﺢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x1c,0x00,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65187 ﺣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65188 ﺤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65189 ﺥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x30,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65190 ﺦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x30,0x0e,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65191 ﺧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65192 ﺨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x30,0x10,0x08,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65193 ﺩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65194 ﺪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65195 ﺫ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x06,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65196 ﺬ ; -+,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x06,0x02,0x01,0x01,0x1f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65197 ﺭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65198 ﺮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65199 ﺯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65200 ﺰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65201 ﺱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x07,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65202 ﺲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x06,0x07,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65203 ﺳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x2c,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65204 ﺴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x2c,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65205 ﺵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0x00,0x00,0x04,0x06,0x07,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65206 ﺶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0x00,0x00,0x04,0x06,0x07,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65207 ﺷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x04,0x04,0x2c,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65208 ﺸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x04,0x04,0x2c,0xfc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65209 ﺹ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x09,0x05,0x07,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65210 ﺺ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x09,0x05,0x07,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65211 ﺻ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x2a,0x3a,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65212 ﺼ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x2a,0x3a,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65213 ﺽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x09,0x05,0x07,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65214 ﺾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x09,0x05,0x07,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65215 ﺿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x22,0x3a,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65216 ﻀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x06,0x22,0x3a,0xfe,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65217 ﻁ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x00,0x38,0x38,0x28,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65218 ﻂ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x00,0x38,0x38,0x28,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65219 ﻃ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x20,0x20,0x20,0x27,0x28,0x30,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65220 ﻄ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x20,0x20,0x20,0x27,0x28,0x30,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65221 ﻅ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x40,0x00,0x38,0x38,0x28,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65222 ﻆ ; -+,0x00,0x00,0x00,0x00,0x00,0x40,0x40,0x50,0x40,0x00,0x38,0x38,0x28,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65223 ﻇ ; -+,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x60,0x40,0x40,0x70,0x60,0x48,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65224 ﻈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x40,0x40,0x70,0x20,0x48,0xf0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65225 ﻉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x20,0x40,0x68,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65226 ﻊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x10,0x30,0x30,0x3c,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65227 ﻋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x20,0x20,0x3c,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65228 ﻌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x10,0x30,0xe8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65229 ﻍ ; -+,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x30,0x20,0x40,0x68,0x30,0x20,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65230 ﻎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x30,0x10,0x30,0x30,0x3c,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65231 ﻏ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x30,0x20,0x20,0x38,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65232 ﻐ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x38,0x38,0x10,0x30,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65233 ﻑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x06,0x06,0x02,0x42,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65234 ﻒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x06,0x06,0x06,0x02,0x42,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65235 ﻓ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x18,0x04,0x14,0x0c,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65236 ﻔ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x18,0x04,0x14,0x0c,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65237 ﻕ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x0c,0x0c,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65238 ﻖ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x04,0x0c,0x0c,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65239 ﻗ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x18,0x04,0x04,0x1c,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65240 ﻘ ; -+,0x00,0x00,0x00,0x00,0x00,0x28,0x00,0x00,0x18,0x04,0x04,0x1c,0x04,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65241 ﻙ ; -+,0x00,0x01,0x03,0x04,0x04,0x04,0x06,0x02,0x02,0x01,0x01,0x00,0x40,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65242 ﻚ ; -+,0x00,0x01,0x03,0x04,0x04,0x04,0x06,0x02,0x02,0x01,0x01,0x00,0x40,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65243 ﻛ ; -+,0x00,0x00,0x06,0x18,0x20,0x40,0x20,0x10,0x08,0x04,0x04,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65244 ﻜ ; -+,0x00,0x00,0x06,0x18,0x20,0x40,0x20,0x10,0x08,0x04,0x04,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65245 ﻝ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65246 ﻞ ; -+,0x00,0x00,0x00,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x40,0x40,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65247 ﻟ ; -+,0x00,0x00,0x00,0x08,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65248 ﻠ ; -+,0x00,0x00,0x00,0x08,0x18,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65249 ﻡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x38,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65250 ﻢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x18,0x38,0x78,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65251 ﻣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x0e,0x19,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65252 ﻤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x0e,0x19,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65253 ﻥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x04,0x04,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65254 ﻦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x04,0x04,0x04,0x04,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65255 ﻧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x04,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65256 ﻨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x00,0x00,0x04,0x00,0x00,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65257 ﻩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x02,0x12,0x10,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65258 ﻪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x50,0x30,0x08,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65259 ﻫ ; -+,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x30,0x38,0x40,0x70,0x30,0x78,0xd8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65260 ﻬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x00,0x20,0xf8,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65261 ﻭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65262 ﻮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65263 ﻯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65264 ﻰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65265 ﻱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x04,0x08,0x46,0x42,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65266 ﻲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4e,0x4c,0x62,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65267 ﻳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x08,0x08,0x08,0x78,0x00,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65268 ﻴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x6c,0x00,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65269 ﻵ ; -+,0x00,0x60,0x00,0x04,0x44,0x60,0x20,0x08,0x10,0x18,0x08,0x18,0x18,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65270 ﻶ ; -+,0x00,0x60,0x00,0x04,0x04,0x24,0x34,0x14,0x04,0x04,0x0c,0x0c,0x1c,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65271 ﻷ ; -+,0x00,0x00,0x10,0x04,0x44,0x60,0x20,0x08,0x10,0x18,0x08,0x18,0x18,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65272 ﻸ ; -+,0x00,0x00,0x10,0x04,0x04,0x24,0x34,0x14,0x04,0x04,0x0c,0x0c,0x1c,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65273 ﻹ ; -+,0x00,0x00,0x00,0x04,0x44,0x60,0x20,0x08,0x10,0x18,0x08,0x18,0x18,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65274 ﻺ ; -+,0x00,0x00,0x00,0x04,0x04,0x24,0x34,0x14,0x04,0x04,0x0c,0x0c,0x1c,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65275 ﻻ ; -+,0x00,0x00,0x00,0x04,0x44,0x60,0x20,0x08,0x10,0x18,0x08,0x18,0x18,0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65276 ﻼ ; -+,0x00,0x00,0x00,0x04,0x04,0x24,0x34,0x14,0x04,0x04,0x0c,0x0c,0x1c,0x36,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65277 ﻽ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65278 ﻾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65279  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65280 ＀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65281 ! ; -+,0x00,0x00,0x00,0x00,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65282 " ; -+,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x40,0x40,0x40,0x00,0x00,0x00,0x00,0x00 -+// 65283 # ; -+,0x00,0x00,0x02,0x02,0x02,0x1f,0x02,0x02,0x02,0x02,0x1f,0x02,0x02,0x02,0x00,0x00,0x00,0x00,0x20,0x20,0x3c,0xe0,0x20,0x20,0x20,0x3c,0xe0,0x20,0x20,0x20,0x00,0x00 -+// 65284 $ ; -+,0x00,0x07,0x08,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x10,0x10,0x18,0x17,0x00,0x80,0xf4,0x8c,0x84,0x84,0x80,0x80,0x80,0xf0,0x88,0x84,0x84,0x84,0x88,0xf0,0x80 -+// 65285 % ; -+,0x00,0x0c,0x12,0x12,0x12,0x12,0x12,0x0c,0x01,0x02,0x04,0x08,0x10,0x20,0x00,0x00,0x00,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x30,0x48,0x48,0x48,0x48,0x48,0x30 -+// 65286 & ; -+,0x00,0x07,0x08,0x08,0x08,0x08,0x05,0x02,0x0e,0x11,0x20,0x20,0x20,0x10,0x0f,0x00,0x00,0x80,0x40,0x40,0x40,0x40,0x80,0x00,0x00,0x38,0x90,0x50,0x22,0xd2,0x0c,0x00 -+// 65287 ' ; -+,0x08,0x08,0x08,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65288 ( ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x08,0x10,0x20,0x20,0x40,0x40,0x40,0x40,0x40,0x40,0x20,0x20,0x10,0x08,0x06 -+// 65289 ) ; -+,0x30,0x08,0x04,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x04,0x08,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65290 * ; -+,0x00,0x00,0x00,0x00,0x10,0x08,0x04,0x02,0x00,0x01,0x02,0x04,0x08,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x84,0x88,0x90,0xa0,0x80,0x40,0x20,0x10,0x08,0x00,0x00,0x00 -+// 65291 + ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00 -+// 65292 , ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65293 - ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65294 . ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65295 / ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x10,0x00,0x00,0x00,0x00,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65296 0 ; -+,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 65297 1 ; -+,0x00,0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xe0,0x00 -+// 65298 2 ; -+,0x00,0x03,0x04,0x08,0x08,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x08,0x08,0x0f,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x70,0x80,0x00,0x00,0x00,0x08,0x08,0xf8,0x00 -+// 65299 3 ; -+,0x00,0x07,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x00,0xf0,0x08,0x08,0x08,0x10,0x20,0xc0,0x20,0x10,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 65300 4 ; -+,0x00,0x00,0x01,0x01,0x01,0x02,0x02,0x04,0x04,0x08,0x10,0x1f,0x00,0x00,0x01,0x00,0x00,0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xf8,0x40,0x40,0xf0,0x00 -+// 65301 5 ; -+,0x00,0x0f,0x08,0x08,0x08,0x08,0x0b,0x0c,0x08,0x00,0x00,0x00,0x08,0x08,0x07,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 65302 6 ; -+,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x0b,0x0c,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0xe0,0x10,0x08,0x08,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 65303 7 ; -+,0x00,0x0f,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0xf8,0x08,0x08,0x10,0x10,0x20,0x40,0x40,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 65304 8 ; -+,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x03,0x04,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x10,0xe0,0x10,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 65305 9 ; -+,0x00,0x03,0x04,0x08,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x08,0x08,0x04,0x03,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x08,0x18,0xe8,0x08,0x08,0x08,0x08,0x10,0xe0,0x00 -+// 65306 : ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65307 ; ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x18,0x18,0x08,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65308 < ; -+,0x00,0x00,0x00,0x00,0x01,0x06,0x18,0x20,0x18,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x18,0x60,0x80,0x00,0x00,0x00,0x00,0x00,0x80,0x60,0x18,0x06,0x00,0x00 -+// 65309 = ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x00,0x00,0xf8,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65310 > ; -+,0x00,0x30,0x0c,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x0c,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x30,0x0c,0x02,0x0c,0x30,0xc0,0x00,0x00,0x00,0x00,0x00 -+// 65311 ? ; -+,0x00,0x00,0x00,0x0c,0x12,0x21,0x21,0x02,0x04,0x04,0x04,0x04,0x04,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65312 @ ; -+,0x00,0x03,0x0c,0x10,0x23,0x24,0x24,0x24,0x24,0x24,0x23,0x10,0x0c,0x03,0x00,0x00,0x00,0xe0,0x10,0x08,0x48,0xc4,0x44,0x44,0x44,0xc8,0x48,0x32,0x04,0xf8,0x00,0x00 -+// 65313 A ; -+,0x00,0x00,0x01,0x01,0x02,0x02,0x04,0x07,0x08,0x08,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x20,0x20,0x10,0xf0,0x08,0x08,0x04,0x0e,0x00,0x00,0x00,0x00 -+// 65314 B ; -+,0x00,0x3f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x00,0x00,0xf0,0x08,0x08,0x08,0x10,0xe0,0x10,0x08,0x08,0x08,0xf0,0x00,0x00,0x00,0x00 -+// 65315 C ; -+,0x00,0x07,0x08,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0xf0,0x08,0x04,0x00,0x00,0x00,0x00,0x00,0x04,0x08,0xf0,0x00,0x00,0x00,0x00 -+// 65316 D ; -+,0x00,0x3f,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x00,0x00,0xf0,0x08,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0xf0,0x00,0x00,0x00,0x00 -+// 65317 E ; -+,0x00,0x3f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x00,0x10,0xf0,0x10,0x00,0x02,0x02,0xfe,0x00,0x00,0x00,0x00 -+// 65318 F ; -+,0x00,0x3f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0xfe,0x02,0x02,0x00,0x10,0xf0,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65319 G ; -+,0x00,0x0f,0x10,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x10,0x0f,0x00,0x00,0x00,0x00,0x00,0xe8,0x18,0x08,0x00,0x00,0x00,0x1c,0x08,0x08,0x08,0xf0,0x00,0x00,0x00,0x00 -+// 65320 H ; -+,0x00,0x38,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x04,0xfc,0x04,0x04,0x04,0x04,0x0e,0x00,0x00,0x00,0x00 -+// 65321 I ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xc0,0x00,0x00,0x00,0x00 -+// 65322 J ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 65323 K ; -+,0x00,0x38,0x10,0x11,0x12,0x1c,0x12,0x11,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0xe0,0x80,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x38,0x00,0x00,0x00,0x00 -+// 65324 L ; -+,0x00,0x38,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0xfc,0x00,0x00,0x00,0x00 -+// 65325 M ; -+,0x00,0x60,0x30,0x28,0x24,0x22,0x21,0x20,0x20,0x20,0x20,0x70,0x00,0x00,0x00,0x00,0x00,0x03,0x06,0x0a,0x12,0x22,0x42,0x82,0x02,0x02,0x02,0x07,0x00,0x00,0x00,0x00 -+// 65326 N ; -+,0x00,0x30,0x18,0x14,0x12,0x11,0x10,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x04,0x84,0x44,0x24,0x14,0x0c,0x04,0x00,0x00,0x00,0x00 -+// 65327 O ; -+,0x00,0x03,0x04,0x08,0x10,0x10,0x10,0x10,0x10,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x04,0x04,0x04,0x04,0x04,0x08,0x10,0xe0,0x00,0x00,0x00,0x00 -+// 65328 P ; -+,0x00,0x3f,0x10,0x10,0x10,0x10,0x1f,0x10,0x10,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x10,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65329 Q ; -+,0x00,0x03,0x04,0x08,0x10,0x10,0x10,0x10,0x10,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x04,0x04,0x04,0x04,0x04,0xc8,0x30,0xe0,0x18,0x00,0x00,0x00 -+// 65330 R ; -+,0x00,0x3f,0x10,0x10,0x10,0x10,0x1f,0x12,0x11,0x10,0x10,0x38,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x10,0xe0,0x00,0x00,0x80,0x40,0x38,0x00,0x00,0x00,0x00 -+// 65331 S ; -+,0x00,0x07,0x08,0x10,0x10,0x08,0x07,0x00,0x00,0x10,0x18,0x17,0x00,0x00,0x00,0x00,0x00,0xf4,0x0c,0x04,0x00,0x00,0xf0,0x08,0x04,0x04,0x08,0xf0,0x00,0x00,0x00,0x00 -+// 65332 T ; -+,0x00,0x3f,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0xfe,0x82,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xc0,0x00,0x00,0x00,0x00 -+// 65333 U ; -+,0x00,0x38,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x0e,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x08,0xf0,0x00,0x00,0x00,0x00 -+// 65334 V ; -+,0x00,0x38,0x10,0x08,0x08,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x04,0x08,0x08,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x00,0x00,0x00,0x00 -+// 65335 W ; -+,0x00,0x71,0x20,0x20,0x20,0x11,0x11,0x11,0x0a,0x0a,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0xc7,0x82,0x82,0x82,0x44,0x44,0x44,0x28,0x28,0x10,0x10,0x00,0x00,0x00,0x00 -+// 65336 X ; -+,0x00,0x38,0x08,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x08,0x38,0x00,0x00,0x00,0x00,0x00,0x0e,0x08,0x10,0x20,0x40,0x80,0x40,0x20,0x10,0x08,0x0e,0x00,0x00,0x00,0x00 -+// 65337 Y ; -+,0x00,0x38,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x0e,0x04,0x08,0x10,0x20,0x40,0x80,0x80,0x80,0x80,0xc0,0x00,0x00,0x00,0x00 -+// 65338 Z ; -+,0x00,0x1f,0x10,0x10,0x00,0x00,0x00,0x01,0x02,0x04,0x08,0x1f,0x00,0x00,0x00,0x00,0x00,0xfc,0x08,0x10,0x20,0x40,0x80,0x00,0x00,0x04,0x04,0xfc,0x00,0x00,0x00,0x00 -+// 65339 [ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x07,0x00,0x00 -+// 65340 \ ; -+,0x00,0x20,0x10,0x08,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x00,0x00 -+// 65341 ] ; -+,0x00,0x70,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65342 ^ ; -+,0x00,0x01,0x01,0x02,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x20,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65343 _ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x00 -+// 65344 ` ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x08,0x08,0x04,0x04,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65345 a ; -+,0x00,0x00,0x00,0x00,0x07,0x08,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0xa0,0x60,0x20,0x28,0xd0,0x00,0x00,0x00,0x00 -+// 65346 b ; -+,0x00,0x04,0x04,0x04,0x04,0x05,0x06,0x04,0x04,0x04,0x06,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x08,0x08,0x08,0x10,0xe0,0x00,0x00,0x00,0x00 -+// 65347 c ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x00,0x00,0x08,0x10,0xe0,0x00,0x00,0x00,0x00 -+// 65348 d ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x10,0x10,0xd0,0x30,0x10,0x10,0x10,0x30,0xd0,0x00,0x00,0x00,0x00 -+// 65349 e ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x08,0x08,0x0f,0x08,0x08,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x20,0xe0,0x00,0x10,0xe0,0x00,0x00,0x00,0x00 -+// 65350 f ; -+,0x00,0x00,0x01,0x01,0x01,0x01,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x80,0x40,0x40,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65351 g ; -+,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0xd0,0x30,0x10,0x10,0x10,0x30,0xd0,0x10,0x10,0x20,0xc0,0x00 -+// 65352 h ; -+,0x00,0x04,0x04,0x04,0x04,0x05,0x06,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00 -+// 65353 i ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x00,0x00 -+// 65354 j ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x01,0x00,0x00,0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 65355 k ; -+,0x00,0x04,0x04,0x04,0x04,0x04,0x04,0x05,0x06,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x80,0x00,0x80,0x40,0x20,0x10,0x00,0x00,0x00,0x00 -+// 65356 l ; -+,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xa0,0xc0,0x00,0x00,0x00,0x00 -+// 65357 m ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x06,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x90,0x90,0x90,0x90,0x90,0x98,0x00,0x00,0x00,0x00 -+// 65358 n ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x06,0x04,0x04,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x40,0x40,0x40,0x60,0x00,0x00,0x00,0x00 -+// 65359 o ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x08,0x08,0x08,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x20,0x20,0x20,0x40,0x80,0x00,0x00,0x00,0x00 -+// 65360 p ; -+,0x00,0x00,0x00,0x00,0x00,0x0d,0x06,0x04,0x04,0x04,0x06,0x05,0x04,0x04,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x10,0x10,0x10,0x20,0xc0,0x00,0x00,0x00,0x00 -+// 65361 q ; -+,0x00,0x00,0x00,0x00,0x01,0x02,0x04,0x04,0x04,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd0,0x30,0x10,0x10,0x10,0x30,0xd0,0x10,0x10,0x10,0x18,0x00 -+// 65362 r ; -+,0x00,0x00,0x00,0x00,0x00,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65363 s ; -+,0x00,0x00,0x00,0x00,0x00,0x03,0x04,0x04,0x03,0x00,0x04,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,0xc0,0x20,0x20,0xc0,0x00,0x00,0x00,0x00 -+// 65364 t ; -+,0x00,0x01,0x01,0x01,0x07,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x40,0x80,0x00,0x00,0x00,0x00 -+// 65365 u ; -+,0x00,0x00,0x00,0x00,0x00,0x06,0x02,0x02,0x02,0x02,0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x20,0x20,0x20,0x60,0xb0,0x00,0x00,0x00,0x00 -+// 65366 v ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x02,0x02,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x00,0x00,0x00,0x00 -+// 65367 w ; -+,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x04,0x05,0x05,0x02,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x88,0x90,0x90,0x50,0x50,0x20,0x20,0x00,0x00,0x00,0x00 -+// 65368 x ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x01,0x00,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x40,0x80,0x40,0x20,0x10,0x00,0x00,0x00,0x00 -+// 65369 y ; -+,0x00,0x00,0x00,0x00,0x00,0x04,0x02,0x02,0x01,0x00,0x00,0x01,0x01,0x02,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x20,0x40,0x80,0x80,0x00,0x00,0x00,0x00,0x00 -+// 65370 z ; -+,0x00,0x00,0x00,0x00,0x00,0x07,0x04,0x00,0x00,0x01,0x02,0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x20,0x40,0x80,0x00,0x20,0xe0,0x00,0x00,0x00,0x00 -+// 65371 { ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x04,0x04,0x04,0x04,0x04,0x08,0x10,0x08,0x04,0x04,0x04,0x04,0x04,0x02,0x00 -+// 65372 | ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00 -+// 65373 } ; -+,0x20,0x10,0x10,0x10,0x10,0x10,0x08,0x04,0x08,0x10,0x10,0x10,0x10,0x10,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65374 ~ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x82,0x7c,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65375 ⦅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65376 ⦆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65377 。 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65378 「 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65379 」 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65380 、 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65381 ・ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65382 ヲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65383 ァ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65384 ィ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65385 ゥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65386 ェ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65387 ォ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65388 ャ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65389 ュ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65390 ョ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65391 ッ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65392 ー ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65393 ア ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65394 イ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65395 ウ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65396 エ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65397 オ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65398 カ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65399 キ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65400 ク ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65401 ケ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65402 コ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65403 サ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65404 シ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65405 ス ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65406 セ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65407 ソ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65408 タ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65409 チ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65410 ツ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65411 テ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65412 ト ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65413 ナ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65414 ニ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65415 ヌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65416 ネ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65417 ノ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65418 ハ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65419 ヒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65420 フ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65421 ヘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65422 ホ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65423 マ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65424 ミ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65425 ム ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65426 メ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65427 モ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65428 ヤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65429 ユ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65430 ヨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65431 ラ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65432 リ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65433 ル ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65434 レ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65435 ロ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65436 ワ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65437 ン ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65438 ゙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65439 ゚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65440 ᅠ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65441 ᄀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65442 ᄁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65443 ᆪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65444 ᄂ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65445 ᆬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65446 ᆭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65447 ᄃ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65448 ᄄ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65449 ᄅ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65450 ᆰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65451 ᆱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65452 ᆲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65453 ᆳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65454 ᆴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65455 ᆵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65456 ᄚ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65457 ᄆ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65458 ᄇ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65459 ᄈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65460 ᄡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65461 ᄉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65462 ᄊ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65463 ᄋ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65464 ᄌ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65465 ᄍ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65466 ᄎ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65467 ᄏ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65468 ᄐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65469 ᄑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65470 ᄒ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65471 ﾿ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65472 ￀ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65473 ￁ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65474 ᅡ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65475 ᅢ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65476 ᅣ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65477 ᅤ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65478 ᅥ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65479 ᅦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65480 ￈ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65481 ￉ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65482 ᅧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65483 ᅨ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65484 ᅩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65485 ᅪ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65486 ᅫ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65487 ᅬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65488 ￐ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65489 ￑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65490 ᅭ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65491 ᅮ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65492 ᅯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65493 ᅰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65494 ᅱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65495 ᅲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65496 ￘ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65497 ￙ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65498 ᅳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65499 ᅴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65500 ᅵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65501 ￝ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65502 ￞ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65503 ￟ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65504 ¢ ; -+,0x00,0x00,0x07,0x08,0x10,0x20,0x20,0x20,0x20,0x21,0x21,0x12,0x0a,0x07,0x08,0x10,0x08,0x10,0xf4,0x2c,0x24,0x40,0x40,0x80,0x80,0x00,0x00,0x04,0x08,0xf0,0x00,0x00 -+// 65505 £ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x50,0x88,0x80,0x80,0xe0,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65506 ¬ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x08,0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00 -+// 65507  ̄ ; -+,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65508 ¦ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x80,0x80,0x00,0x00 -+// 65509 ¥ ; -+,0x00,0x1c,0x08,0x04,0x02,0x01,0x01,0x00,0x00,0x07,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x1c,0x08,0x10,0x20,0x40,0x40,0x80,0x80,0xf0,0x80,0x80,0x80,0x80,0xc0,0x00 -+// 65510 ₩ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65511 ￧ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65512 │ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65513 ← ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65514 ↑ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65515 → ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65516 ↓ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65517 ■ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65518 ○ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65519 ￯ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65520 ￰ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65521 ￱ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65522 ￲ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65523 ￳ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65524 ￴ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65525 ￵ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65526 ￶ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65527 ￷ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65528 ￸ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65529  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65530  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65531  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65532  ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65533 � ; -+,0x00,0x00,0x00,0x10,0x18,0x28,0x3c,0x7c,0x7e,0x7c,0x3c,0x38,0x18,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65534 ￾ ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+// 65535 ; -+,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 -+} }; -+ -+const struct font_desc font_utf8_8x16 = { -+ .idx = UTF8x16_IDX, -+ .name = "UTF8x16", -+ .width = 8, -+ .height = 16, -+ .charcount = 65536 * 2 - 128, -+ .data = font_utf8.data, -+ .pref = 0, -+}; -+EXPORT_SYMBOL(font_utf8_8x16); -diff --git a/lib/fonts/fonts.c b/lib/fonts/fonts.c -index 973866438..f9358ef51 100644 ---- a/lib/fonts/fonts.c -+++ b/lib/fonts/fonts.c -@@ -60,6 +60,9 @@ static const struct font_desc *fonts[] = { - #ifdef CONFIG_FONT_6x8 - &font_6x8, - #endif -+#ifdef CONFIG_FONT_UTF8x16 -+ &font_utf8_8x16, -+#endif - }; - - #define num_fonts ARRAY_SIZE(fonts) --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0001-double-tty-VT-screenbuf-for-univt.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0001-double-tty-VT-screenbuf-for-univt.patch deleted file mode 100644 index 22ba9045..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0001-double-tty-VT-screenbuf-for-univt.patch +++ /dev/null @@ -1,49 +0,0 @@ -From e5081068bc97cb1ce1eacec38181c4ee849cee8a Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 12 Apr 2023 09:52:33 +0000 -Subject: [PATCH 1/9] double tty VT screenbuf for univt. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -当创建一个tty时,将screenbuf的空间翻倍,增加的空间用于存储utf8的编码信息。 - -When creating a TTY, the space of screenbuf is doubled, and the increased space is used to store UTF-8 encoding information. ---- - drivers/tty/vt/vt.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c -index 3c2ea9c09..63c6e6edb 100644 ---- a/drivers/tty/vt/vt.c -+++ b/drivers/tty/vt/vt.c -@@ -1088,7 +1088,7 @@ int vc_allocate(unsigned int currcons) /* return 0 on success */ - vc->vc_screenbuf_size > KMALLOC_MAX_SIZE || !vc->vc_screenbuf_size) - goto err_free; - err = -ENOMEM; -- vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_KERNEL); -+ vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size * 2, GFP_KERNEL); - if (!vc->vc_screenbuf) - goto err_free; - -@@ -1185,7 +1185,7 @@ static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc, - - if (new_screen_size > KMALLOC_MAX_SIZE || !new_screen_size) - return -EINVAL; -- newscreen = kzalloc(new_screen_size, GFP_USER); -+ newscreen = kzalloc(new_screen_size * 2, GFP_USER); - if (!newscreen) - return -ENOMEM; - -@@ -3472,7 +3472,7 @@ static int __init con_init(void) - tty_port_init(&vc->port); - visual_init(vc, currcons, 1); - /* Assuming vc->vc_{cols,rows,screenbuf_size} are sane here. */ -- vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT); -+ vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size * 2, GFP_NOWAIT); - vc_init(vc, vc->vc_rows, vc->vc_cols, - currcons || !vc->vc_sw->con_save_screen); - } --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0002-Add-several-function-for-Univt.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0002-Add-several-function-for-Univt.patch deleted file mode 100644 index 19ab559e..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0002-Add-several-function-for-Univt.patch +++ /dev/null @@ -1,63 +0,0 @@ -From 4968101e9a6ae1e4c45acb8cc1efeddfd980b766 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 12 Apr 2023 09:57:32 +0000 -Subject: [PATCH 2/9] Add several function for Univt. - -Provide several essential functions for Univt. ---- - drivers/tty/vt/vt.c | 13 +++++++++++++ - drivers/video/fbdev/core/bitblit.c | 14 ++++++++++++++ - 2 files changed, 27 insertions(+) - -diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c -index 63c6e6edb..68d26ec9b 100644 ---- a/drivers/tty/vt/vt.c -+++ b/drivers/tty/vt/vt.c -@@ -297,6 +297,19 @@ static inline unsigned short *screenpos(const struct vc_data *vc, int offset, - return p; - } - -+static inline unsigned short *screenpos_utf8(const struct vc_data *vc, int offset, bool viewed) -+{ -+ unsigned short *p; -+ -+ if (!viewed) -+ p = (unsigned short *)(vc->vc_origin + offset + vc->vc_screenbuf_size); -+ else if (!vc->vc_sw->con_screen_pos) -+ p = (unsigned short *)(vc->vc_visible_origin + offset + vc->vc_screenbuf_size); -+ else -+ p = vc->vc_sw->con_screen_pos(vc, -offset - 1); -+ return p; -+} -+ - /* Called from the keyboard irq path.. */ - static inline void scrolldelta(int lines) - { -diff --git a/drivers/video/fbdev/core/bitblit.c b/drivers/video/fbdev/core/bitblit.c -index f98e8f298..233365b16 100644 ---- a/drivers/video/fbdev/core/bitblit.c -+++ b/drivers/video/fbdev/core/bitblit.c -@@ -43,6 +43,20 @@ static void update_attr(u8 *dst, u8 *src, int attribute, - } - } - -+u16 utf8_pos(struct vc_data *vc, const unsigned short *utf8) -+{ -+ unsigned long p = (long)utf8; -+ if (vc->vc_font.charcount <= 512) return 0; -+ if (p >= vc->vc_origin && p < vc->vc_scr_end) { -+ return scr_readw((unsigned short *)(p + vc->vc_screenbuf_size)); -+ } else { -+ u16 extra_c; -+ int c = *(int*)utf8; -+ extra_c = (c >> 16 ) & 0x0000ffff; -+ return extra_c; -+ } -+} -+ - static void bit_bmove(struct vc_data *vc, struct fb_info *info, int sy, - int sx, int dy, int dx, int height, int width) - { --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0003-UniVT-Fix-charcount-size-to-65536.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0003-UniVT-Fix-charcount-size-to-65536.patch deleted file mode 100644 index 167c9971..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0003-UniVT-Fix-charcount-size-to-65536.patch +++ /dev/null @@ -1,100 +0,0 @@ -From 7f0066e0e12b8d6fa2f0f9557ddb50eecca92914 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 02:39:28 +0000 -Subject: [PATCH 3/9] UniVT: Fix charcount size to 65536. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 将charcount的大小扩展到65536。 ---- - drivers/tty/vt/vt.c | 4 +--- - drivers/video/fbdev/core/fbcon.c | 15 +++++---------- - 2 files changed, 6 insertions(+), 13 deletions(-) - -diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c -index 68d26ec9b..fca23eea0 100644 ---- a/drivers/tty/vt/vt.c -+++ b/drivers/tty/vt/vt.c -@@ -4549,7 +4549,7 @@ void reset_palette(struct vc_data *vc) - #define max_font_width 64 - #define max_font_height 128 - #define max_font_glyphs 512 --#define max_font_size (max_font_glyphs*max_font_width*max_font_height) -+#define max_font_size (max_font_glyphs*max_font_width*max_font_height >= 65536 * 2 * 8 * 16 ? max_font_glyphs*max_font_width*max_font_height : 65536 * 2 * 8 * 16) - - static int con_font_get(struct vc_data *vc, struct console_font_op *op) - { -@@ -4612,8 +4612,6 @@ static int con_font_set(struct vc_data *vc, struct console_font_op *op) - return -EINVAL; - if (!op->data) - return -EINVAL; -- if (op->charcount > max_font_glyphs) -- return -EINVAL; - if (op->width <= 0 || op->width > max_font_width || !op->height || - op->height > max_font_height) - return -EINVAL; -diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c -index eb565a10e..bc84898d3 100644 ---- a/drivers/video/fbdev/core/fbcon.c -+++ b/drivers/video/fbdev/core/fbcon.c -@@ -1050,7 +1050,7 @@ static void fbcon_init(struct vc_data *vc, int init) - - vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1); - vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800; -- if (vc->vc_font.charcount == 256) { -+ if (vc->vc_font.charcount == 256 || vc->vc_font.charcount > 512) { - vc->vc_hi_font_mask = 0; - } else { - vc->vc_hi_font_mask = 0x100; -@@ -1371,7 +1371,7 @@ static void fbcon_set_disp(struct fb_info *info, struct fb_var_screeninfo *var, - ops->var = info->var; - vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1); - vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800; -- if (vc->vc_font.charcount == 256) { -+ if (vc->vc_font.charcount == 256 || vc->vc_font.charcount > 512) { - vc->vc_hi_font_mask = 0; - } else { - vc->vc_hi_font_mask = 0x100; -@@ -2141,7 +2141,7 @@ static int fbcon_switch(struct vc_data *vc) - vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1); - vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800; - -- if (vc->vc_font.charcount > 256) -+ if (vc->vc_font.charcount > 256 && vc->vc_font.charcount <= 512) - vc->vc_complement_mask <<= 1; - - updatescrollmode(p, info, vc); -@@ -2276,7 +2276,7 @@ static int fbcon_get_font(struct vc_data *vc, struct console_font *font, unsigne - font->height = vc->vc_font.height; - if (font->height > vpitch) - return -ENOSPC; -- font->charcount = vc->vc_hi_font_mask ? 512 : 256; -+ font->charcount = vc->vc_font.charcount; - if (!font->data) - return 0; - -@@ -2416,7 +2416,7 @@ static int fbcon_do_set_font(struct vc_data *vc, int w, int h, int charcount, - vc->vc_font.width = w; - vc->vc_font.height = h; - vc->vc_font.charcount = charcount; -- if (vc->vc_hi_font_mask && charcount == 256) -+ if (vc->vc_hi_font_mask && (charcount == 256 || charcount > 512)) - set_vc_hi_font(vc, false); - else if (!vc->vc_hi_font_mask && charcount == 512) - set_vc_hi_font(vc, true); -@@ -2475,11 +2475,6 @@ static int fbcon_set_font(struct vc_data *vc, struct console_font *font, - u8 *new_data, *data = font->data; - int pitch = PITCH(font->width); - -- /* Is there a reason why fbconsole couldn't handle any charcount >256? -- * If not this check should be changed to charcount < 256 */ -- if (charcount != 256 && charcount != 512) -- return -EINVAL; -- - /* font bigger than screen resolution ? */ - if (w > FBCON_SWAP(info->var.rotate, info->var.xres, info->var.yres) || - h > FBCON_SWAP(info->var.rotate, info->var.yres, info->var.xres)) --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0004-UniVT-Add-a-old_screen_size-variable-saves-the-origi.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0004-UniVT-Add-a-old_screen_size-variable-saves-the-origi.patch deleted file mode 100644 index 9f17a964..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0004-UniVT-Add-a-old_screen_size-variable-saves-the-origi.patch +++ /dev/null @@ -1,38 +0,0 @@ -From a0ebe31a0cba973f439705867a0c71935564c630 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 02:41:03 +0000 -Subject: [PATCH 4/9] UniVT: Add a old_screen_size variable saves the original - size when resize vt. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 增加old_screen_size变量用来保存VT改变大小时原始尺寸。 ---- - drivers/tty/vt/vt.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c -index fca23eea0..41936356e 100644 ---- a/drivers/tty/vt/vt.c -+++ b/drivers/tty/vt/vt.c -@@ -1154,7 +1154,7 @@ static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc, - { - unsigned long old_origin, new_origin, new_scr_end, rlth, rrem, err = 0; - unsigned long end; -- unsigned int old_rows, old_row_size, first_copied_row; -+ unsigned int old_rows, old_row_size, first_copied_row, old_screen_size; - unsigned int new_cols, new_rows, new_row_size, new_screen_size; - unsigned int user; - unsigned short *oldscreen, *newscreen; -@@ -1215,6 +1215,7 @@ static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc, - - old_rows = vc->vc_rows; - old_row_size = vc->vc_size_row; -+ old_screen_size = vc->vc_screenbuf_size; - - err = resize_screen(vc, new_cols, new_rows, user); - if (err) { --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0005-Univt-Add-support-for-writing-UTF-8-encoding.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0005-Univt-Add-support-for-writing-UTF-8-encoding.patch deleted file mode 100644 index d1d5f16f..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0005-Univt-Add-support-for-writing-UTF-8-encoding.patch +++ /dev/null @@ -1,261 +0,0 @@ -From 2aaad638bbc42f27f19fa54868079458e5e0adbe Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 02:43:01 +0000 -Subject: [PATCH 5/9] Univt: Add support for writing UTF-8 encoding. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 增加支持写入UTF-8编码。 ---- - drivers/tty/vt/selection.c | 2 ++ - drivers/tty/vt/vt.c | 52 +++++++++++++++++++++++++++----- - drivers/video/fbdev/core/fbcon.c | 33 ++++++++++++-------- - 3 files changed, 66 insertions(+), 21 deletions(-) - -diff --git a/drivers/tty/vt/selection.c b/drivers/tty/vt/selection.c -index 6ef22f01c..b20e46719 100644 ---- a/drivers/tty/vt/selection.c -+++ b/drivers/tty/vt/selection.c -@@ -221,6 +221,8 @@ static int vc_selection_store_chars(struct vc_data *vc, bool unicode) - } - obp = bp; - } -+ if (c > 0x80) -+ i += 2; - } - vc_sel.buf_len = bp - vc_sel.buffer; - -diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c -index 41936356e..8654383a5 100644 ---- a/drivers/tty/vt/vt.c -+++ b/drivers/tty/vt/vt.c -@@ -596,6 +596,11 @@ static void con_scroll(struct vc_data *vc, unsigned int top, - } - scr_memmovew(dst, src, (rows - nr) * vc->vc_size_row); - scr_memsetw(clear, vc->vc_video_erase_char, vc->vc_size_row * nr); -+ -+ dst += (vc->vc_screenbuf_size >> 1); -+ src += (vc->vc_screenbuf_size >> 1); -+ scr_memmovew(dst, src, (rows - nr) * vc->vc_size_row); -+ scr_memsetw(clear, 0, vc->vc_size_row * nr); - } - - static void do_update_region(struct vc_data *vc, unsigned long start, int count) -@@ -764,6 +769,8 @@ void complement_pos(struct vc_data *vc, int offset) - static int old_offset = -1; - static unsigned short old; - static unsigned short oldx, oldy; -+ static unsigned short *p_ext = NULL; -+ static unsigned short old_ext = 0; - - WARN_CONSOLE_UNLOCKED(); - -@@ -771,7 +778,7 @@ void complement_pos(struct vc_data *vc, int offset) - old_offset < vc->vc_screenbuf_size) { - scr_writew(old, screenpos(vc, old_offset, true)); - if (con_should_update(vc)) -- vc->vc_sw->con_putc(vc, old, oldy, oldx); -+ vc->vc_sw->con_putc(vc, (old_ext << 16)|old, oldy, oldx); - notify_update(vc); - } - -@@ -782,13 +789,15 @@ void complement_pos(struct vc_data *vc, int offset) - unsigned short new; - unsigned short *p; - p = screenpos(vc, offset, true); -+ p_ext = screenpos_utf8(vc, offset, true); - old = scr_readw(p); -+ old_ext = scr_readw(p_ext); - new = old ^ vc->vc_complement_mask; - scr_writew(new, p); - if (con_should_update(vc)) { - oldx = (offset >> 1) % vc->vc_cols; - oldy = (offset >> 1) / vc->vc_cols; -- vc->vc_sw->con_putc(vc, new, oldy, oldx); -+ vc->vc_sw->con_putc(vc, (old_ext << 16)|new, oldy, oldx); - } - notify_update(vc); - } -@@ -1264,15 +1273,23 @@ static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc, - while (old_origin < end) { - scr_memcpyw((unsigned short *) new_origin, - (unsigned short *) old_origin, rlth); -- if (rrem) -+ scr_memcpyw((unsigned short *) new_origin + (new_screen_size >> 1), -+ (unsigned short *) old_origin + (old_screen_size >> 1), rlth); -+ if (rrem){ - scr_memsetw((void *)(new_origin + rlth), - vc->vc_video_erase_char, rrem); -+ scr_memsetw((void *)(new_origin + rlth + (new_screen_size)), -+ 0x00, rrem); -+ } - old_origin += old_row_size; - new_origin += new_row_size; - } -- if (new_scr_end > new_origin) -+ if (new_scr_end > new_origin){ - scr_memsetw((void *)new_origin, vc->vc_video_erase_char, - new_scr_end - new_origin); -+ scr_memsetw((void *)new_origin + (new_screen_size), 0x00, -+ new_scr_end - new_origin); -+ } - oldscreen = vc->vc_screenbuf; - vc->vc_screenbuf = newscreen; - vc->vc_screenbuf_size = new_screen_size; -@@ -2758,11 +2775,16 @@ static int vc_con_write_normal(struct vc_data *vc, int tc, int c, - u16 himask = vc->vc_hi_font_mask, charmask = himask ? 0x1ff : 0xff; - u8 width = 1; - bool inverse = false; -+ int is_utf8 = 0; -+ int tc_1 = 0xfe; -+ uint32_t utf8_c = c; - - if (vc->vc_utf && !vc->vc_disp_ctrl) { - if (is_double_width(c)) - width = 2; - } -+ if (utf8_c > 0x7f) -+ is_utf8 = 1; - - /* Now try to find out how to display it */ - tc = conv_uni_to_pc(vc, tc); -@@ -2801,6 +2823,10 @@ static int vc_con_write_normal(struct vc_data *vc, int tc, int c, - } - - next_c = c; -+ if (is_utf8 == 1){ -+ tc = 0xff; -+ next_c = 0xff; -+ } - while (1) { - if (vc->vc_need_wrap || vc->vc_decim) - con_flush(vc, draw); -@@ -2819,6 +2845,10 @@ static int vc_con_write_normal(struct vc_data *vc, int tc, int c, - - scr_writew(tc, (u16 *)vc->vc_pos); - -+ if (is_utf8 == 1) { -+ scr_writew(utf8_c, (u16 *) vc->vc_pos + (vc->vc_screenbuf_size >> 1)); -+ } -+ - if (con_should_update(vc) && draw->x < 0) { - draw->x = vc->state.x; - draw->from = vc->vc_pos; -@@ -2835,10 +2865,10 @@ static int vc_con_write_normal(struct vc_data *vc, int tc, int c, - break; - - /* A space is printed in the second column */ -- tc = conv_uni_to_pc(vc, ' '); -+ tc = conv_uni_to_pc(vc, tc_1); - if (tc < 0) -- tc = ' '; -- next_c = ' '; -+ tc = tc_1; -+ next_c = tc_1; - } - notify_write(vc, c); - -@@ -4706,9 +4736,15 @@ u16 screen_glyph(const struct vc_data *vc, int offset) - u16 w = scr_readw(screenpos(vc, offset, true)); - u16 c = w & 0xff; - -+ u16 c_utf8 = scr_readw(screenpos_utf8(vc, offset, true)); -+ -+ if ( (c == 0xff || c == 0xfe) && c_utf8 != 0){ -+ return c_utf8; -+ }else{ - if (w & vc->vc_hi_font_mask) - c |= 0x100; - return c; -+ } - } - EXPORT_SYMBOL_GPL(screen_glyph); - -@@ -4719,7 +4755,7 @@ u32 screen_glyph_unicode(const struct vc_data *vc, int n) - if (uni_lines) - return uni_lines[n / vc->vc_cols][n % vc->vc_cols]; - -- return inverse_translate(vc, screen_glyph(vc, n * 2), true); -+ return screen_glyph(vc, n * 2); - } - EXPORT_SYMBOL_GPL(screen_glyph_unicode); - -diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c -index bc84898d3..b4b8cd949 100644 ---- a/drivers/video/fbdev/core/fbcon.c -+++ b/drivers/video/fbdev/core/fbcon.c -@@ -1286,10 +1286,7 @@ static void fbcon_putcs(struct vc_data *vc, const unsigned short *s, - - static void fbcon_putc(struct vc_data *vc, int c, int ypos, int xpos) - { -- unsigned short chr; -- -- scr_writew(c, &chr); -- fbcon_putcs(vc, &chr, 1, ypos, xpos); -+ fbcon_putcs(vc, (unsigned short *)&c, 1, ypos, xpos); - } - - static void fbcon_clear_margins(struct vc_data *vc, int bottom_only) -@@ -1594,6 +1591,7 @@ static void fbcon_redraw_blit(struct vc_data *vc, struct fb_info *info, - } - - scr_writew(c, d); -+ scr_writew(scr_readw(s + (vc->vc_screenbuf_size >> 1)), d + (vc->vc_screenbuf_size >> 1)); - console_conditional_schedule(); - s++; - d++; -@@ -1616,6 +1614,7 @@ static void fbcon_redraw_blit(struct vc_data *vc, struct fb_info *info, - static void fbcon_redraw(struct vc_data *vc, struct fbcon_display *p, - int line, int count, int offset) - { -+ u16 charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; - unsigned short *d = (unsigned short *) - (vc->vc_origin + vc->vc_size_row * line); - unsigned short *s = d + offset; -@@ -1638,18 +1637,22 @@ static void fbcon_redraw(struct vc_data *vc, struct fbcon_display *p, - start = s; - } - } -- if (c == scr_readw(d)) { -- if (s > start) { -- fbcon_putcs(vc, start, s - start, -- line, x); -- x += s - start + 1; -- start = s + 1; -- } else { -- x++; -- start++; -+ if( ((scr_readw(s) & charmask) == 0xff || (scr_readw(s) & charmask) == 0xfe) && scr_readw(s + (vc->vc_screenbuf_size >> 1)) != 0){ -+ }else{ -+ if (c == scr_readw(d)) { -+ if (s > start) { -+ fbcon_putcs(vc, start, s - start, -+ line, x); -+ x += s - start + 1; -+ start = s + 1; -+ } else { -+ x++; -+ start++; -+ } - } - } - scr_writew(c, d); -+ scr_writew(scr_readw(s + (vc->vc_screenbuf_size >> 1)), d + (vc->vc_screenbuf_size >> 1)); - console_conditional_schedule(); - s++; - d++; -@@ -2592,6 +2595,10 @@ static void fbcon_set_palette(struct vc_data *vc, const unsigned char *table) - - static u16 *fbcon_screen_pos(const struct vc_data *vc, int offset) - { -+ if (offset < 0) { -+ offset = -offset - 1; -+ return (u16 *)(vc->vc_origin + offset + (vc->vc_screenbuf_size)); -+ } - return (u16 *) (vc->vc_origin + offset); - } - --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0006-UniVT-Add-support-for-displaying-UTF-8-text.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0006-UniVT-Add-support-for-displaying-UTF-8-text.patch deleted file mode 100644 index c9484851..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0006-UniVT-Add-support-for-displaying-UTF-8-text.patch +++ /dev/null @@ -1,107 +0,0 @@ -From b5df64e52e16a2f7701711df9075cda38108ef0d Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 02:43:41 +0000 -Subject: [PATCH 6/9] UniVT: Add support for displaying UTF-8 text. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 增加支持显示UTF-8文字。 ---- - drivers/video/fbdev/core/bitblit.c | 48 +++++++++++++++++++++++++----- - 1 file changed, 40 insertions(+), 8 deletions(-) - -diff --git a/drivers/video/fbdev/core/bitblit.c b/drivers/video/fbdev/core/bitblit.c -index 233365b16..e8a2ea13b 100644 ---- a/drivers/video/fbdev/core/bitblit.c -+++ b/drivers/video/fbdev/core/bitblit.c -@@ -97,14 +97,25 @@ static inline void bit_putcs_aligned(struct vc_data *vc, struct fb_info *info, - u32 idx = vc->vc_font.width >> 3; - u8 *src; - -+ int utf8_c = 0; - while (cnt--) { -- src = vc->vc_font.data + (scr_readw(s++)& -- charmask)*cellsize; -- -+ utf8_c = utf8_pos(vc, s); -+ if(((scr_readw(s) & charmask) == 0xff || (scr_readw(s) & charmask) == 0xfe ) && utf8_c != 0){ -+ utf8_c -= 128; -+ if((scr_readw(s) & charmask) == 0xff){ -+ src = vc->vc_font.data + (utf8_c * 32); -+ }else{ -+ src = vc->vc_font.data + (utf8_c * 32 + 16); -+ } -+ }else{ -+ src = vc->vc_font.data + (scr_readw(s) & -+ charmask) * cellsize; -+ } - if (attr) { - update_attr(buf, src, attr, vc); - src = buf; - } -+ s++; - - if (likely(idx == 1)) - __fb_pad_aligned_buffer(dst, d_pitch, src, idx, -@@ -132,14 +143,25 @@ static inline void bit_putcs_unaligned(struct vc_data *vc, - u32 idx = vc->vc_font.width >> 3; - u8 *src; - -+ int utf8_c = 0; - while (cnt--) { -- src = vc->vc_font.data + (scr_readw(s++)& -- charmask)*cellsize; -- -+ utf8_c = utf8_pos(vc, s); -+ if(((scr_readw(s) & charmask) == 0xff || (scr_readw(s) & charmask) == 0xfe ) && utf8_c != 0){ -+ utf8_c -= 128; -+ if((scr_readw(s) & charmask) == 0xff){ -+ src = vc->vc_font.data + (utf8_c * 32); -+ }else{ -+ src = vc->vc_font.data + (utf8_c * 32 + 16); -+ } -+ }else{ -+ src = vc->vc_font.data + (scr_readw(s) & -+ charmask) * cellsize; -+ } - if (attr) { - update_attr(buf, src, attr, vc); - src = buf; - } -+ s++; - - fb_pad_unaligned_buffer(dst, d_pitch, src, idx, - image->height, shift_high, -@@ -253,7 +275,7 @@ static void bit_cursor(struct vc_data *vc, struct fb_info *info, int mode, - struct fb_cursor cursor; - struct fbcon_ops *ops = info->fbcon_par; - unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; -- int w = DIV_ROUND_UP(vc->vc_font.width, 8), c; -+ int w = DIV_ROUND_UP(vc->vc_font.width, 8), c, c_extra; - int y = real_y(ops->p, vc->state.y); - int attribute, use_sw = vc->vc_cursor_type & CUR_SW; - int err = 1; -@@ -262,8 +284,18 @@ static void bit_cursor(struct vc_data *vc, struct fb_info *info, int mode, - cursor.set = 0; - - c = scr_readw((u16 *) vc->vc_pos); -+ c_extra = utf8_pos(vc, (u16 *) vc->vc_pos); - attribute = get_attribute(info, c); -- src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height)); -+ if(((c&charmask) == 0xff || (c & charmask) == 0xfe) && c_extra != 0){ -+ c_extra -= 128; -+ if((c & charmask) == 0xff){ -+ src = (char *) (vc->vc_font.data + (c_extra * 32)); -+ }else{ -+ src = (char *) (vc->vc_font.data + (c_extra * 32 + 16)); -+ } -+ }else{ -+ src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height)); -+ } - - if (ops->cursor_state.image.data != src || - ops->cursor_reset) { --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0007-UniVT-Support-displaying-UTF-8-text-for-90-degree-ro.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0007-UniVT-Support-displaying-UTF-8-text-for-90-degree-ro.patch deleted file mode 100644 index 98605583..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0007-UniVT-Support-displaying-UTF-8-text-for-90-degree-ro.patch +++ /dev/null @@ -1,95 +0,0 @@ -From 660ae0e3eb513dc8a0e2e9c5b40b58281735efcc Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 02:44:45 +0000 -Subject: [PATCH 7/9] UniVT: Support displaying UTF-8 text for 90 degree - rotation. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 支持显示内容进行90度旋转时显示UTF-8文字。 ---- - drivers/video/fbdev/core/fbcon_cw.c | 40 ++++++++++++++++++++++++++--- - 1 file changed, 37 insertions(+), 3 deletions(-) - -diff --git a/drivers/video/fbdev/core/fbcon_cw.c b/drivers/video/fbdev/core/fbcon_cw.c -index 86a254c1b..ade28c56a 100644 ---- a/drivers/video/fbdev/core/fbcon_cw.c -+++ b/drivers/video/fbdev/core/fbcon_cw.c -@@ -18,6 +18,8 @@ - #include "fbcon.h" - #include "fbcon_rotate.h" - -+extern u16 utf8_pos(struct vc_data *vc, const unsigned short *utf8); -+ - /* - * Rotation 90 degrees - */ -@@ -90,13 +92,29 @@ static inline void cw_putcs_aligned(struct vc_data *vc, struct fb_info *info, - u32 idx = (vc->vc_font.height + 7) >> 3; - u8 *src; - -+ int utf8_c = 0; - while (cnt--) { -- src = ops->fontbuffer + (scr_readw(s++) & charmask)*cellsize; -- -+ utf8_c = utf8_pos(vc, s); -+ if(((scr_readw(s) & charmask) == 0xff || (scr_readw(s) & charmask) == 0xfe ) && utf8_c != 0){ -+ char dst[16]; -+ utf8_c -= 128; -+ if((scr_readw(s) & charmask) == 0xff){ -+ src = vc->vc_font.data + (utf8_c * 32); -+ }else{ -+ src = vc->vc_font.data + (utf8_c * 32 + 16); -+ } -+ memset(dst, 0, 16); -+ rotate_cw(src, dst, vc->vc_font.width, -+ vc->vc_font.height); -+ src = dst; -+ }else{ -+ src = ops->fontbuffer + (scr_readw(s) & charmask)*cellsize; -+ } - if (attr) { - cw_update_attr(buf, src, attr, vc); - src = buf; - } -+ s++; - - if (likely(idx == 1)) - __fb_pad_aligned_buffer(dst, d_pitch, src, idx, -@@ -207,6 +225,7 @@ static void cw_cursor(struct vc_data *vc, struct fb_info *info, int mode, - struct fb_cursor cursor; - struct fbcon_ops *ops = info->fbcon_par; - unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; -+ int c_extra; - int w = (vc->vc_font.height + 7) >> 3, c; - int y = real_y(ops->p, vc->state.y); - int attribute, use_sw = vc->vc_cursor_type & CUR_SW; -@@ -220,8 +239,23 @@ static void cw_cursor(struct vc_data *vc, struct fb_info *info, int mode, - cursor.set = 0; - - c = scr_readw((u16 *) vc->vc_pos); -+ c_extra = utf8_pos(vc, (u16 *) vc->vc_pos); - attribute = get_attribute(info, c); -- src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); -+ if(((c&charmask) == 0xff || (c & charmask) == 0xfe) && c_extra != 0){ -+ char dst[16]; -+ c_extra -= 128; -+ if((c & charmask) == 0xff){ -+ src = vc->vc_font.data + (c_extra * 32); -+ }else{ -+ src = vc->vc_font.data + (c_extra * 32 + 16); -+ } -+ memset(dst, 0, 16); -+ rotate_cw(src, dst, vc->vc_font.width, -+ vc->vc_font.height); -+ src = dst; -+ }else{ -+ src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); -+ } - - if (ops->cursor_state.image.data != src || - ops->cursor_reset) { --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0008-UniVT-Support-displaying-UTF-8-text-for-180-degree-r.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0008-UniVT-Support-displaying-UTF-8-text-for-180-degree-r.patch deleted file mode 100644 index c7395805..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0008-UniVT-Support-displaying-UTF-8-text-for-180-degree-r.patch +++ /dev/null @@ -1,127 +0,0 @@ -From b4f2dc56ae52e7146958c30e7b9e6020fe219a79 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 02:45:41 +0000 -Subject: [PATCH 8/9] UniVT: Support displaying UTF-8 text for 180 degree - rotation. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 支持显示内容进行180度旋转时显示UTF-8文字。 ---- - drivers/video/fbdev/core/fbcon_ud.c | 60 ++++++++++++++++++++++++++--- - 1 file changed, 55 insertions(+), 5 deletions(-) - -diff --git a/drivers/video/fbdev/core/fbcon_ud.c b/drivers/video/fbdev/core/fbcon_ud.c -index 23bc04576..fb4ff245f 100644 ---- a/drivers/video/fbdev/core/fbcon_ud.c -+++ b/drivers/video/fbdev/core/fbcon_ud.c -@@ -18,6 +18,8 @@ - #include "fbcon.h" - #include "fbcon_rotate.h" - -+extern u16 utf8_pos(struct vc_data *vc, const unsigned short *utf8); -+ - /* - * Rotation 180 degrees - */ -@@ -92,13 +94,29 @@ static inline void ud_putcs_aligned(struct vc_data *vc, struct fb_info *info, - u32 idx = vc->vc_font.width >> 3; - u8 *src; - -+ int utf8_c = 0; - while (cnt--) { -- src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize; -- -+ utf8_c = utf8_pos(vc, s); -+ if(((scr_readw(s) & charmask) == 0xff || (scr_readw(s) & charmask) == 0xfe ) && utf8_c != 0){ -+ char dst[16]; -+ utf8_c -= 128; -+ if((scr_readw(s) & charmask) == 0xff){ -+ src = vc->vc_font.data + (utf8_c * 32); -+ }else{ -+ src = vc->vc_font.data + (utf8_c * 32 + 16); -+ } -+ memset(dst, 0, 16); -+ rotate_ud(src, dst, vc->vc_font.width, -+ vc->vc_font.height); -+ src = dst; -+ }else{ -+ src = ops->fontbuffer + (scr_readw(s) & charmask)*cellsize; -+ } - if (attr) { - ud_update_attr(buf, src, attr, vc); - src = buf; - } -+ s--; - - if (likely(idx == 1)) - __fb_pad_aligned_buffer(dst, d_pitch, src, idx, -@@ -127,13 +145,29 @@ static inline void ud_putcs_unaligned(struct vc_data *vc, - u32 idx = vc->vc_font.width >> 3; - u8 *src; - -+ int utf8_c = 0; - while (cnt--) { -- src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize; -- -+ utf8_c = utf8_pos(vc, s); -+ if(((scr_readw(s) & charmask) == 0xff || (scr_readw(s) & charmask) == 0xfe ) && utf8_c != 0){ -+ char dst[16]; -+ utf8_c -= 128; -+ if((scr_readw(s) & charmask) == 0xff){ -+ src = vc->vc_font.data + (utf8_c * 32); -+ }else{ -+ src = vc->vc_font.data + (utf8_c * 32 + 16); -+ } -+ memset(dst, 0, 16); -+ rotate_ud(src, dst, vc->vc_font.width, -+ vc->vc_font.height); -+ src = dst; -+ }else{ -+ src = ops->fontbuffer + (scr_readw(s) & charmask)*cellsize; -+ } - if (attr) { - ud_update_attr(buf, src, attr, vc); - src = buf; - } -+ s--; - - fb_pad_unaligned_buffer(dst, d_pitch, src, idx, - image->height, shift_high, -@@ -254,6 +288,7 @@ static void ud_cursor(struct vc_data *vc, struct fb_info *info, int mode, - struct fb_cursor cursor; - struct fbcon_ops *ops = info->fbcon_par; - unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; -+ int c_extra; - int w = (vc->vc_font.width + 7) >> 3, c; - int y = real_y(ops->p, vc->state.y); - int attribute, use_sw = vc->vc_cursor_type & CUR_SW; -@@ -268,8 +303,23 @@ static void ud_cursor(struct vc_data *vc, struct fb_info *info, int mode, - cursor.set = 0; - - c = scr_readw((u16 *) vc->vc_pos); -+ c_extra = utf8_pos(vc, (u16 *) vc->vc_pos); - attribute = get_attribute(info, c); -- src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.height)); -+ if(((c&charmask) == 0xff || (c & charmask) == 0xfe) && c_extra != 0){ -+ char dst[16]; -+ c_extra -= 128; -+ if((c & charmask) == 0xff){ -+ src = vc->vc_font.data + (c_extra * 32); -+ }else{ -+ src = vc->vc_font.data + (c_extra * 32 + 16); -+ } -+ memset(dst, 0, 16); -+ rotate_ud(src, dst, vc->vc_font.width, -+ vc->vc_font.height); -+ src = dst; -+ }else{ -+ src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.height)); -+ } - - if (ops->cursor_state.image.data != src || - ops->cursor_reset) { --- -2.31.1 - diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0009-UniVT-Support-displaying-UTF-8-text-for-270-degree-r.patch b/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0009-UniVT-Support-displaying-UTF-8-text-for-270-degree-r.patch deleted file mode 100644 index bdb34281..00000000 --- a/loongarch64/files/step/boot/linux-kernel/6.4.3/patches/0009-UniVT-Support-displaying-UTF-8-text-for-270-degree-r.patch +++ /dev/null @@ -1,95 +0,0 @@ -From 0d9d627827385d03d74e8116841d38df1dd2cbbc Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 19 Apr 2023 02:46:13 +0000 -Subject: [PATCH 9/9] UniVT: Support displaying UTF-8 text for 270 degree - rotation. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - - 支持显示内容进行270度旋转时显示UTF-8文字。 ---- - drivers/video/fbdev/core/fbcon_ccw.c | 40 +++++++++++++++++++++++++--- - 1 file changed, 37 insertions(+), 3 deletions(-) - -diff --git a/drivers/video/fbdev/core/fbcon_ccw.c b/drivers/video/fbdev/core/fbcon_ccw.c -index 2789ace79..f1cf94dfd 100644 ---- a/drivers/video/fbdev/core/fbcon_ccw.c -+++ b/drivers/video/fbdev/core/fbcon_ccw.c -@@ -18,6 +18,8 @@ - #include "fbcon.h" - #include "fbcon_rotate.h" - -+extern u16 utf8_pos(struct vc_data *vc, const unsigned short *utf8); -+ - /* - * Rotation 270 degrees - */ -@@ -105,13 +107,29 @@ static inline void ccw_putcs_aligned(struct vc_data *vc, struct fb_info *info, - u32 idx = (vc->vc_font.height + 7) >> 3; - u8 *src; - -+ int utf8_c = 0; - while (cnt--) { -- src = ops->fontbuffer + (scr_readw(s--) & charmask)*cellsize; -- -+ utf8_c = utf8_pos(vc, s); -+ if(((scr_readw(s) & charmask) == 0xff || (scr_readw(s) & charmask) == 0xfe ) && utf8_c != 0){ -+ char dst[16]; -+ utf8_c -= 128; -+ if((scr_readw(s) & charmask) == 0xff){ -+ src = vc->vc_font.data + (utf8_c * 32); -+ }else{ -+ src = vc->vc_font.data + (utf8_c * 32 + 16); -+ } -+ memset(dst, 0, 16); -+ rotate_ccw(src, dst, vc->vc_font.width, -+ vc->vc_font.height); -+ src = dst; -+ }else{ -+ src = ops->fontbuffer + (scr_readw(s) & charmask)*cellsize; -+ } - if (attr) { - ccw_update_attr(buf, src, attr, vc); - src = buf; - } -+ s--; - - if (likely(idx == 1)) - __fb_pad_aligned_buffer(dst, d_pitch, src, idx, -@@ -224,6 +242,7 @@ static void ccw_cursor(struct vc_data *vc, struct fb_info *info, int mode, - struct fb_cursor cursor; - struct fbcon_ops *ops = info->fbcon_par; - unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff; -+ int c_extra; - int w = (vc->vc_font.height + 7) >> 3, c; - int y = real_y(ops->p, vc->state.y); - int attribute, use_sw = vc->vc_cursor_type & CUR_SW; -@@ -237,8 +256,23 @@ static void ccw_cursor(struct vc_data *vc, struct fb_info *info, int mode, - cursor.set = 0; - - c = scr_readw((u16 *) vc->vc_pos); -+ c_extra = utf8_pos(vc, (u16 *) vc->vc_pos); - attribute = get_attribute(info, c); -- src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); -+ if(((c&charmask) == 0xff || (c & charmask) == 0xfe) && c_extra != 0){ -+ char dst[16]; -+ c_extra -= 128; -+ if((c & charmask) == 0xff){ -+ src = vc->vc_font.data + (c_extra * 32); -+ }else{ -+ src = vc->vc_font.data + (c_extra * 32 + 16); -+ } -+ memset(dst, 0, 16); -+ rotate_ccw(src, dst, vc->vc_font.width, -+ vc->vc_font.height); -+ src = dst; -+ }else{ -+ src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); -+ } - - if (ops->cursor_state.image.data != src || - ops->cursor_reset) { --- -2.31.1 - diff --git a/loongarch64/files/step/wine_runtime/linux-header/6.4.3/linux-config-6 b/loongarch64/files/step/boot/linux-kernel/6.5/linux-config-6 similarity index 97% rename from loongarch64/files/step/wine_runtime/linux-header/6.4.3/linux-config-6 rename to loongarch64/files/step/boot/linux-kernel/6.5/linux-config-6 index d307f2b0..851eff00 100644 --- a/loongarch64/files/step/wine_runtime/linux-header/6.4.3/linux-config-6 +++ b/loongarch64/files/step/boot/linux-kernel/6.5/linux-config-6 @@ -1,15 +1,15 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/loongarch 6.3.0-rc7 Kernel Configuration +# Linux/loongarch 6.5.0-rc2 Kernel Configuration # -CONFIG_CC_VERSION_TEXT="loongarch64-unknown-linux-gnu-gcc (GCC) 13.0.1 20230316 (experimental)" +CONFIG_CC_VERSION_TEXT="loongarch64-unknown-linux-gnu-gcc (GCC) 14.0.0 20230707 (experimental)" CONFIG_CC_IS_GCC=y -CONFIG_GCC_VERSION=130001 +CONFIG_GCC_VERSION=140000 CONFIG_CLANG_VERSION=0 CONFIG_AS_IS_GNU=y -CONFIG_AS_VERSION=24050 +CONFIG_AS_VERSION=24150 CONFIG_LD_IS_BFD=y -CONFIG_LD_VERSION=24050 +CONFIG_LD_VERSION=24150 CONFIG_LLD_VERSION=0 CONFIG_CC_CAN_LINK=y CONFIG_CC_CAN_LINK_STATIC=y @@ -98,6 +98,7 @@ CONFIG_PREEMPT_BUILD=y CONFIG_PREEMPT=y CONFIG_PREEMPT_COUNT=y CONFIG_PREEMPTION=y +# CONFIG_SCHED_CORE is not set # # CPU/Task time and stats accounting @@ -122,7 +123,6 @@ CONFIG_CPU_ISOLATION=y CONFIG_TREE_RCU=y CONFIG_PREEMPT_RCU=y # CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y CONFIG_TREE_SRCU=y CONFIG_TASKS_RCU_GENERIC=y CONFIG_TASKS_RCU=y @@ -135,7 +135,6 @@ CONFIG_RCU_NEED_SEGCBLIST=y # CONFIG_IKHEADERS is not set CONFIG_LOG_BUF_SHIFT=18 CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 CONFIG_GENERIC_SCHED_CLOCK=y # @@ -147,7 +146,7 @@ CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y CONFIG_CC_HAS_INT128=y CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" CONFIG_GCC11_NO_ARRAY_BOUNDS=y -CONFIG_GCC12_NO_ARRAY_BOUNDS=y +CONFIG_CC_NO_ARRAY_BOUNDS=y CONFIG_NUMA_BALANCING=y CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y CONFIG_CGROUPS=y @@ -177,14 +176,13 @@ CONFIG_CGROUP_BPF=y CONFIG_SOCK_CGROUP_DATA=y CONFIG_NAMESPACES=y CONFIG_UTS_NS=y +CONFIG_TIME_NS=y CONFIG_IPC_NS=y CONFIG_USER_NS=y CONFIG_PID_NS=y CONFIG_NET_NS=y CONFIG_CHECKPOINT_RESTORE=y CONFIG_SCHED_AUTOGROUP=y -CONFIG_SYSFS_DEPRECATED=y -# CONFIG_SYSFS_DEPRECATED_V2 is not set CONFIG_RELAY=y CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" @@ -232,6 +230,7 @@ CONFIG_KALLSYMS=y CONFIG_KALLSYMS_BASE_RELATIVE=y CONFIG_KCMP=y CONFIG_RSEQ=y +CONFIG_CACHESTAT_SYSCALL=y # CONFIG_DEBUG_RSEQ is not set # CONFIG_EMBEDDED is not set CONFIG_HAVE_PERF_EVENTS=y @@ -251,8 +250,6 @@ CONFIG_SYSTEM_DATA_VERIFICATION=y CONFIG_LOONGARCH=y CONFIG_64BIT=y -CONFIG_CPU_HAS_FPU=y -CONFIG_CPU_HAS_PREFETCH=y CONFIG_GENERIC_BUG=y CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y CONFIG_GENERIC_CALIBRATE_DELAY=y @@ -268,6 +265,10 @@ CONFIG_PGTABLE_3LEVEL=y CONFIG_PGTABLE_LEVELS=3 CONFIG_SCHED_OMIT_FRAME_POINTER=y CONFIG_AS_HAS_EXPLICIT_RELOCS=y +CONFIG_AS_HAS_FCSR_CLASS=y +CONFIG_AS_HAS_LSX_EXTENSION=y +CONFIG_AS_HAS_LASX_EXTENSION=y +CONFIG_AS_HAS_LBT_EXTENSION=y # # Kernel type and options @@ -291,6 +292,7 @@ CONFIG_CMDLINE_BOOTLOADER=y CONFIG_DMI=y CONFIG_EFI=y CONFIG_EFI_STUB=y +CONFIG_SCHED_SMT=y CONFIG_SMP=y CONFIG_HOTPLUG_CPU=y CONFIG_NR_CPUS=64 @@ -298,7 +300,13 @@ CONFIG_NUMA=y CONFIG_NODES_SHIFT=6 CONFIG_ARCH_FORCE_MAX_ORDER=12 # CONFIG_ARCH_IOREMAP is not set +# CONFIG_ARCH_WRITECOMBINE is not set CONFIG_ARCH_STRICT_ALIGN=y +CONFIG_CPU_HAS_FPU=y +CONFIG_CPU_HAS_LSX=y +CONFIG_CPU_HAS_LASX=y +CONFIG_CPU_HAS_LBT=y +CONFIG_CPU_HAS_PREFETCH=y CONFIG_KEXEC=y # CONFIG_CRASH_DUMP is not set CONFIG_RELOCATABLE=y @@ -314,6 +322,7 @@ CONFIG_ARCH_MEMORY_PROBE=y CONFIG_MMU=y CONFIG_ARCH_MMAP_RND_BITS_MIN=12 CONFIG_ARCH_MMAP_RND_BITS_MAX=18 +CONFIG_ARCH_SUPPORTS_UPROBES=y # # Power management options @@ -368,6 +377,7 @@ CONFIG_ACPI_NUMA=y # CONFIG_ACPI_HMAT is not set # CONFIG_ACPI_CONFIGFS is not set # CONFIG_ACPI_PFRUT is not set +CONFIG_ACPI_PPTT=y CONFIG_ACPI_PCC=y # CONFIG_ACPI_FFH is not set # CONFIG_PMIC_OPREGION is not set @@ -422,17 +432,21 @@ CONFIG_CRASH_CORE=y CONFIG_KEXEC_CORE=y CONFIG_GENERIC_ENTRY=y # CONFIG_KPROBES is not set +# CONFIG_JUMP_LABEL is not set CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y CONFIG_ARCH_USE_BUILTIN_BSWAP=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y CONFIG_HAVE_NMI=y CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_CONTIGUOUS=y CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_CPU_FINALIZE_INIT=y CONFIG_ARCH_WANTS_NO_INSTR=y CONFIG_HAVE_ASM_MODVERSIONS=y CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y @@ -441,7 +455,10 @@ CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y CONFIG_HAVE_HW_BREAKPOINT=y CONFIG_HAVE_PERF_REGS=y CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y CONFIG_MMU_GATHER_MERGE_VMAS=y +CONFIG_MMU_LAZY_TLB_REFCOUNT=y CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS=y CONFIG_HAVE_ARCH_SECCOMP=y CONFIG_HAVE_ARCH_SECCOMP_FILTER=y @@ -450,6 +467,8 @@ CONFIG_SECCOMP_FILTER=y CONFIG_HAVE_STACKPROTECTOR=y CONFIG_STACKPROTECTOR=y CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y CONFIG_LTO_NONE=y CONFIG_HAVE_CONTEXT_TRACKING_USER=y CONFIG_HAVE_TIF_NOHZ=y @@ -475,6 +494,9 @@ CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y # # end of GCOV-based kernel profiling +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_GCC_PLUGINS=y +# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set CONFIG_FUNCTION_ALIGNMENT=0 # end of General architecture-dependent options @@ -500,6 +522,7 @@ CONFIG_MODULES_TREE_LOOKUP=y CONFIG_BLOCK=y CONFIG_BLOCK_LEGACY_AUTOLOAD=y CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_CGROUP_PUNT_BIO=y CONFIG_BLK_DEV_BSG_COMMON=y CONFIG_BLK_ICQ=y CONFIG_BLK_DEV_BSGLIB=y @@ -543,7 +566,6 @@ CONFIG_EFI_PARTITION=y CONFIG_BLK_MQ_PCI=y CONFIG_BLK_MQ_VIRTIO=y -CONFIG_BLK_MQ_RDMA=y CONFIG_BLK_PM=y CONFIG_BLOCK_HOLDER_DEPRECATED=y CONFIG_BLK_MQ_STACKING=y @@ -590,6 +612,7 @@ CONFIG_ZPOOL=y CONFIG_SWAP=y CONFIG_ZSWAP=y # CONFIG_ZSWAP_DEFAULT_ON is not set +# CONFIG_ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set @@ -610,9 +633,8 @@ CONFIG_ZSMALLOC_CHAIN_SIZE=8 # # SLAB allocator options # -# CONFIG_SLAB is not set +# CONFIG_SLAB_DEPRECATED is not set CONFIG_SLUB=y -# CONFIG_SLOB_DEPRECATED is not set # CONFIG_SLUB_TINY is not set CONFIG_SLAB_MERGE_DEFAULT=y # CONFIG_SLAB_FREELIST_RANDOM is not set @@ -629,6 +651,7 @@ CONFIG_SPARSEMEM=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP=y CONFIG_HAVE_FAST_GUP=y CONFIG_ARCH_KEEP_MEMBLOCK=y CONFIG_NUMA_KEEP_MEMINFO=y @@ -670,10 +693,12 @@ CONFIG_VM_EVENT_COUNTERS=y # # GUP_TEST needs to have DEBUG_FS enabled # +# CONFIG_DMAPOOL_TEST is not set CONFIG_ARCH_HAS_PTE_SPECIAL=y # CONFIG_ANON_VMA_NAME is not set CONFIG_USERFAULTFD=y # CONFIG_LRU_GEN is not set +CONFIG_LOCK_MM_AND_FIND_VMA=y # # Data Access Monitoring @@ -712,6 +737,7 @@ CONFIG_NET_KEY=y # CONFIG_SMC is not set CONFIG_XDP_SOCKETS=y # CONFIG_XDP_SOCKETS_DIAG is not set +CONFIG_NET_HANDSHAKE=y CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y @@ -814,6 +840,7 @@ CONFIG_NETFILTER_SKIP_EGRESS=y CONFIG_NETFILTER_NETLINK=m CONFIG_NETFILTER_FAMILY_BRIDGE=y CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_BPF_LINK=y # CONFIG_NETFILTER_NETLINK_HOOK is not set CONFIG_NETFILTER_NETLINK_ACCT=m CONFIG_NETFILTER_NETLINK_QUEUE=m @@ -1272,6 +1299,7 @@ CONFIG_NET_L3_MASTER_DEV=y # CONFIG_QRTR is not set # CONFIG_NET_NCSI is not set CONFIG_PCPU_DEV_REFCNT=y +CONFIG_MAX_SKB_FRAGS=17 CONFIG_RPS=y CONFIG_RFS_ACCEL=y CONFIG_SOCK_RX_QUEUE_MAPPING=y @@ -1449,28 +1477,28 @@ CONFIG_HOTPLUG_PCI_SHPC=y # # CONFIG_PCI_FTPCI100 is not set # CONFIG_PCI_HOST_GENERIC is not set -# CONFIG_PCIE_XILINX is not set CONFIG_PCI_LOONGSON=y # CONFIG_PCIE_MICROCHIP_HOST is not set +# CONFIG_PCIE_XILINX is not set # -# DesignWare PCI Core Support +# Cadence-based PCIe controllers # -# CONFIG_PCIE_DW_PLAT_HOST is not set -# CONFIG_PCI_MESON is not set -# end of DesignWare PCI Core Support +# CONFIG_PCIE_CADENCE_PLAT_HOST is not set +# CONFIG_PCI_J721E_HOST is not set +# end of Cadence-based PCIe controllers # -# Mobiveil PCIe Core Support +# DesignWare-based PCIe controllers # -# end of Mobiveil PCIe Core Support +# CONFIG_PCI_MESON is not set +# CONFIG_PCIE_DW_PLAT_HOST is not set +# end of DesignWare-based PCIe controllers # -# Cadence PCIe controllers support +# Mobiveil-based PCIe controllers # -# CONFIG_PCIE_CADENCE_PLAT_HOST is not set -# CONFIG_PCI_J721E_HOST is not set -# end of Cadence PCIe controllers support +# end of Mobiveil-based PCIe controllers # end of PCI controller drivers # @@ -1559,6 +1587,7 @@ CONFIG_REGMAP_I2C=m CONFIG_REGMAP_MMIO=y CONFIG_DMA_SHARED_BUFFER=y # CONFIG_DMA_FENCE_TRACE is not set +# CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT is not set # end of Generic Driver Options # @@ -1961,7 +1990,6 @@ CONFIG_SATA_MOBILE_LPM_POLICY=0 CONFIG_SATA_AHCI_PLATFORM=y # CONFIG_AHCI_DWC is not set # CONFIG_AHCI_CEVA is not set -# CONFIG_AHCI_QORIQ is not set # CONFIG_SATA_INIC162X is not set # CONFIG_SATA_ACARD_AHCI is not set # CONFIG_SATA_SIL24 is not set @@ -2103,6 +2131,7 @@ CONFIG_LOOPBACK_TARGET=m # CONFIG_TCM_FC is not set CONFIG_ISCSI_TARGET=m # CONFIG_ISCSI_TARGET_CXGB4 is not set +# CONFIG_REMOTE_TARGET is not set # CONFIG_FUSION is not set # @@ -2212,7 +2241,6 @@ CONFIG_E1000E=y CONFIG_IGB=y CONFIG_IGB_HWMON=y # CONFIG_IGBVF is not set -CONFIG_IXGB=y CONFIG_IXGBE=y CONFIG_IXGBE_HWMON=y # CONFIG_IXGBEVF is not set @@ -2221,9 +2249,6 @@ CONFIG_IXGBE_HWMON=y # CONFIG_ICE is not set # CONFIG_FM10K is not set # CONFIG_IGC is not set -CONFIG_NET_VENDOR_WANGXUN=y -# CONFIG_NGBE is not set -# CONFIG_TXGBE is not set # CONFIG_JME is not set CONFIG_NET_VENDOR_ADI=y CONFIG_NET_VENDOR_LITEX=y @@ -2292,6 +2317,9 @@ CONFIG_NET_VENDOR_SYNOPSYS=y CONFIG_NET_VENDOR_VERTEXCOM=y # CONFIG_MSE102X is not set # CONFIG_NET_VENDOR_VIA is not set +CONFIG_NET_VENDOR_WANGXUN=y +# CONFIG_NGBE is not set +# CONFIG_TXGBE is not set # CONFIG_NET_VENDOR_WIZNET is not set # CONFIG_NET_VENDOR_XILINX is not set CONFIG_NET_VENDOR_XIRCOM=y @@ -2303,6 +2331,7 @@ CONFIG_PHYLINK=y CONFIG_PHYLIB=y CONFIG_SWPHY=y # CONFIG_LED_TRIGGER_PHY is not set +CONFIG_PHYLIB_LEDS=y CONFIG_FIXED_PHY=y # CONFIG_SFP is not set @@ -2332,11 +2361,13 @@ CONFIG_FIXED_PHY=y # CONFIG_MAXLINEAR_GPHY is not set # CONFIG_MEDIATEK_GE_PHY is not set # CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_T1S_PHY is not set # CONFIG_MICROCHIP_PHY is not set # CONFIG_MICROCHIP_T1_PHY is not set # CONFIG_MICROSEMI_PHY is not set # CONFIG_MOTORCOMM_PHY is not set # CONFIG_NATIONAL_PHY is not set +# CONFIG_NXP_CBTX_PHY is not set # CONFIG_NXP_C45_TJA11XX_PHY is not set # CONFIG_NXP_TJA11XX_PHY is not set # CONFIG_NCN26000_PHY is not set @@ -2394,6 +2425,11 @@ CONFIG_PPP_FILTER=y CONFIG_PPP_MPPE=m CONFIG_PPP_MULTILINK=y CONFIG_PPPOE=m +# CONFIG_PPPOE_HASH_BITS_1 is not set +# CONFIG_PPPOE_HASH_BITS_2 is not set +CONFIG_PPPOE_HASH_BITS_4=y +# CONFIG_PPPOE_HASH_BITS_8 is not set +CONFIG_PPPOE_HASH_BITS=4 CONFIG_PPTP=m CONFIG_PPPOL2TP=m CONFIG_PPP_ASYNC=m @@ -2483,6 +2519,7 @@ CONFIG_WLAN_VENDOR_BROADCOM=y # CONFIG_BRCMSMAC is not set # CONFIG_BRCMFMAC is not set CONFIG_WLAN_VENDOR_CISCO=y +# CONFIG_AIRO is not set # CONFIG_AIRO_CS is not set CONFIG_WLAN_VENDOR_INTEL=y # CONFIG_IPW2100 is not set @@ -2597,6 +2634,7 @@ CONFIG_RTW89_CORE=m CONFIG_RTW89_PCI=m CONFIG_RTW89_8852A=m CONFIG_RTW89_8852C=m +# CONFIG_RTW89_8851BE is not set CONFIG_RTW89_8852AE=m # CONFIG_RTW89_8852BE is not set CONFIG_RTW89_8852CE=m @@ -2621,8 +2659,8 @@ CONFIG_WLAN_VENDOR_QUANTENNA=y # CONFIG_QTNFMAC_PCIE is not set # CONFIG_PCMCIA_RAYCS is not set # CONFIG_PCMCIA_WL3501 is not set -# CONFIG_MAC80211_HWSIM is not set CONFIG_USB_NET_RNDIS_WLAN=m +# CONFIG_MAC80211_HWSIM is not set # CONFIG_VIRT_WIFI is not set # CONFIG_WAN is not set @@ -2845,6 +2883,7 @@ CONFIG_SERIAL_NONSTANDARD=y # CONFIG_MOXA_SMARTIO is not set # CONFIG_SYNCLINK_GT is not set # CONFIG_N_HDLC is not set +# CONFIG_IPWIRELESS is not set # CONFIG_N_GSM is not set # CONFIG_NOZOMI is not set # CONFIG_NULL_TTY is not set @@ -2871,17 +2910,6 @@ CONFIG_HW_RANDOM_VIRTIO=m # CONFIG_HW_RANDOM_CCTRNG is not set # CONFIG_HW_RANDOM_XIPHERA is not set # CONFIG_APPLICOM is not set - -# -# PCMCIA character devices -# -# CONFIG_SYNCLINK_CS is not set -# CONFIG_CARDMAN_4000 is not set -# CONFIG_CARDMAN_4040 is not set -# CONFIG_SCR24X is not set -# CONFIG_IPWIRELESS is not set -# end of PCMCIA character devices - CONFIG_DEVMEM=y CONFIG_DEVPORT=y # CONFIG_TCG_TPM is not set @@ -2985,7 +3013,6 @@ CONFIG_SPI_MASTER=y # CONFIG_SPI_BUTTERFLY is not set # CONFIG_SPI_CADENCE is not set # CONFIG_SPI_DESIGNWARE is not set -# CONFIG_SPI_NXP_FLEXSPI is not set # CONFIG_SPI_GPIO is not set # CONFIG_SPI_LM70_LLP is not set # CONFIG_SPI_FSL_SPI is not set @@ -2994,7 +3021,6 @@ CONFIG_SPI_MASTER=y # CONFIG_SPI_OC_TINY is not set # CONFIG_SPI_PCI1XXXX is not set # CONFIG_SPI_PXA2XX is not set -# CONFIG_SPI_ROCKCHIP is not set # CONFIG_SPI_SC18IS602 is not set # CONFIG_SPI_SIFIVE is not set # CONFIG_SPI_MXIC is not set @@ -3069,6 +3095,8 @@ CONFIG_GPIO_CDEV_V1=y # CONFIG_GPIO_GRGPIO is not set # CONFIG_GPIO_HLWD is not set # CONFIG_GPIO_LOGICVC is not set +# CONFIG_GPIO_LOONGSON is not set +# CONFIG_GPIO_LOONGSON_64BIT is not set # CONFIG_GPIO_MB86S7X is not set # CONFIG_GPIO_SIFIVE is not set # CONFIG_GPIO_SYSCON is not set @@ -3080,6 +3108,7 @@ CONFIG_GPIO_CDEV_V1=y # I2C GPIO expanders # # CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_FXL6408 is not set # CONFIG_GPIO_GW_PLD is not set # CONFIG_GPIO_MAX7300 is not set # CONFIG_GPIO_MAX732X is not set @@ -3236,6 +3265,7 @@ CONFIG_HWMON_VID=m # CONFIG_SENSORS_MAX31722 is not set # CONFIG_SENSORS_MAX31730 is not set # CONFIG_SENSORS_MAX31760 is not set +# CONFIG_MAX31827 is not set # CONFIG_SENSORS_MAX6620 is not set # CONFIG_SENSORS_MAX6621 is not set # CONFIG_SENSORS_MAX6639 is not set @@ -3372,6 +3402,7 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_BD9571MWV is not set # CONFIG_MFD_AXP20X_I2C is not set # CONFIG_MFD_MADERA is not set +# CONFIG_MFD_MAX5970 is not set # CONFIG_PMIC_DA903X is not set # CONFIG_MFD_DA9052_SPI is not set # CONFIG_MFD_DA9052_I2C is not set @@ -3394,6 +3425,7 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_88PM805 is not set # CONFIG_MFD_88PM860X is not set # CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77541 is not set # CONFIG_MFD_MAX77620 is not set # CONFIG_MFD_MAX77650 is not set # CONFIG_MFD_MAX77686 is not set @@ -3421,7 +3453,8 @@ CONFIG_BCMA_POSSIBLE=y # CONFIG_MFD_RT5033 is not set # CONFIG_MFD_RT5120 is not set # CONFIG_MFD_RC5T583 is not set -# CONFIG_MFD_RK808 is not set +# CONFIG_MFD_RK8XX_I2C is not set +# CONFIG_MFD_RK8XX_SPI is not set # CONFIG_MFD_RN5T618 is not set # CONFIG_MFD_SEC_CORE is not set # CONFIG_MFD_SI476X_CORE is not set @@ -3448,6 +3481,8 @@ CONFIG_MFD_SYSCON=y # CONFIG_MFD_TPS65910 is not set # CONFIG_MFD_TPS65912_I2C is not set # CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS6594_I2C is not set +# CONFIG_MFD_TPS6594_SPI is not set # CONFIG_TWL4030_CORE is not set # CONFIG_TWL6040_CORE is not set # CONFIG_MFD_WL1273_CORE is not set @@ -3580,7 +3615,7 @@ CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y # CONFIG_VIDEO_GO7007 is not set # CONFIG_VIDEO_HDPVR is not set # CONFIG_VIDEO_PVRUSB2 is not set -# CONFIG_VIDEO_STK1160_COMMON is not set +# CONFIG_VIDEO_STK1160 is not set # # Analog/digital TV USB devices @@ -3806,16 +3841,14 @@ CONFIG_VIDEO_IR_I2C=m # CONFIG_VIDEO_IMX412 is not set # CONFIG_VIDEO_IMX415 is not set # CONFIG_VIDEO_MT9M001 is not set -# CONFIG_VIDEO_MT9M032 is not set # CONFIG_VIDEO_MT9M111 is not set # CONFIG_VIDEO_MT9P031 is not set -# CONFIG_VIDEO_MT9T001 is not set # CONFIG_VIDEO_MT9T112 is not set # CONFIG_VIDEO_MT9V011 is not set # CONFIG_VIDEO_MT9V032 is not set # CONFIG_VIDEO_MT9V111 is not set -# CONFIG_VIDEO_NOON010PC30 is not set # CONFIG_VIDEO_OG01A1B is not set +# CONFIG_VIDEO_OV01A10 is not set # CONFIG_VIDEO_OV02A10 is not set # CONFIG_VIDEO_OV08D10 is not set # CONFIG_VIDEO_OV08X40 is not set @@ -3854,13 +3887,9 @@ CONFIG_VIDEO_IR_I2C=m # CONFIG_VIDEO_S5C73M3 is not set # CONFIG_VIDEO_S5K5BAF is not set # CONFIG_VIDEO_S5K6A3 is not set -# CONFIG_VIDEO_S5K6AA is not set -# CONFIG_VIDEO_SR030PC30 is not set # CONFIG_VIDEO_ST_VGXY61 is not set -# CONFIG_VIDEO_VS6624 is not set # CONFIG_VIDEO_CCS is not set # CONFIG_VIDEO_ET8EK8 is not set -# CONFIG_VIDEO_M5MOLS is not set # end of Camera sensor devices # @@ -3944,7 +3973,6 @@ CONFIG_VIDEO_IR_I2C=m # # Video encoders # -# CONFIG_VIDEO_AD9389B is not set # CONFIG_VIDEO_ADV7170 is not set # CONFIG_VIDEO_ADV7175 is not set # CONFIG_VIDEO_ADV7343 is not set @@ -4201,6 +4229,7 @@ CONFIG_DVB_SP2=m # Graphics support # CONFIG_APERTURE_HELPERS=y +CONFIG_VIDEO_CMDLINE=y CONFIG_VIDEO_NOMODESET=y CONFIG_DRM=y # CONFIG_DRM_DEBUG_MM is not set @@ -4221,6 +4250,7 @@ CONFIG_DRM_TTM=m CONFIG_DRM_BUDDY=m CONFIG_DRM_TTM_HELPER=m CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_SUBALLOC_HELPER=m CONFIG_DRM_SCHED=m # @@ -4244,6 +4274,7 @@ CONFIG_DRM_AMDGPU=m CONFIG_DRM_AMDGPU_SI=y CONFIG_DRM_AMDGPU_CIK=y CONFIG_DRM_AMDGPU_USERPTR=y +# CONFIG_DRM_AMDGPU_WERROR is not set # # ACP (Audio CoProcessor) Configuration @@ -4255,7 +4286,7 @@ CONFIG_DRM_AMDGPU_USERPTR=y # Display Engine Configuration # CONFIG_DRM_AMD_DC=y -# CONFIG_DRM_AMD_DC_HDCP is not set +CONFIG_DRM_AMD_DC_FP=y # CONFIG_DRM_AMD_DC_SI is not set # end of Display Engine Configuration @@ -4264,9 +4295,11 @@ CONFIG_DRM_AMD_DC=y # CONFIG_DRM_VKMS is not set # CONFIG_DRM_UDL is not set CONFIG_DRM_AST=y +# CONFIG_DRM_LOONGSON is not set # CONFIG_DRM_MGAG200 is not set CONFIG_DRM_QXL=m CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_VIRTIO_GPU_KMS=y CONFIG_DRM_PANEL=y # @@ -4292,6 +4325,7 @@ CONFIG_DRM_PANEL=y # CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 is not set # CONFIG_DRM_PANEL_SAMSUNG_DB7430 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6D27A1 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D7AA0 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set # CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set @@ -4324,6 +4358,7 @@ CONFIG_DRM_PANEL_BRIDGE=y # CONFIG_DRM_NXP_PTN3460 is not set # CONFIG_DRM_PARADE_PS8622 is not set # CONFIG_DRM_PARADE_PS8640 is not set +# CONFIG_DRM_SAMSUNG_DSIM is not set # CONFIG_DRM_SIL_SII8620 is not set # CONFIG_DRM_SII902X is not set # CONFIG_DRM_SII9234 is not set @@ -4372,7 +4407,6 @@ CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y # # Frame buffer Devices # -CONFIG_FB_CMDLINE=y CONFIG_FB_NOTIFY=y CONFIG_FB=y # CONFIG_FIRMWARE_EDID is not set @@ -4386,6 +4420,9 @@ CONFIG_FB_SYS_IMAGEBLIT=y # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_SYS_FOPS=y CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_IO_HELPERS=y +CONFIG_FB_SYS_HELPERS=y +CONFIG_FB_SYS_HELPERS_DEFERRED=y CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y @@ -4505,9 +4542,11 @@ CONFIG_SND_SEQUENCER=m CONFIG_SND_SEQ_DUMMY=m CONFIG_SND_SEQ_MIDI_EVENT=m CONFIG_SND_SEQ_MIDI=m +# CONFIG_SND_SEQ_UMP is not set CONFIG_SND_DRIVERS=y # CONFIG_SND_DUMMY is not set # CONFIG_SND_ALOOP is not set +# CONFIG_SND_PCMTEST is not set # CONFIG_SND_VIRMIDI is not set # CONFIG_SND_MTPAV is not set # CONFIG_SND_MTS64 is not set @@ -4607,6 +4646,7 @@ CONFIG_SND_INTEL_SOUNDWIRE_ACPI=y CONFIG_SND_SPI=y CONFIG_SND_USB=y CONFIG_SND_USB_AUDIO=m +# CONFIG_SND_USB_AUDIO_MIDI_V2 is not set CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y # CONFIG_SND_USB_UA101 is not set # CONFIG_SND_USB_CAIAQ is not set @@ -4701,6 +4741,7 @@ CONFIG_HID_MULTITOUCH=m # CONFIG_HID_NINTENDO is not set # CONFIG_HID_NTI is not set # CONFIG_HID_NTRIG is not set +# CONFIG_HID_NVIDIA_SHIELD is not set # CONFIG_HID_ORTEK is not set # CONFIG_HID_PANTHERLORD is not set # CONFIG_HID_PENMOUNT is not set @@ -4872,7 +4913,6 @@ CONFIG_USB_DWC2_HOST=y # # USB port drivers # -# CONFIG_USB_USS720 is not set CONFIG_USB_SERIAL=m # CONFIG_USB_SERIAL_GENERIC is not set # CONFIG_USB_SERIAL_SIMPLE is not set @@ -4931,6 +4971,7 @@ CONFIG_USB_SERIAL_OPTION=m # # USB Miscellaneous drivers # +# CONFIG_USB_USS720 is not set # CONFIG_USB_EMI62 is not set # CONFIG_USB_EMI26 is not set # CONFIG_USB_ADUTUX is not set @@ -4940,7 +4981,6 @@ CONFIG_USB_SERIAL_OPTION=m # CONFIG_USB_CYPRESS_CY7C63 is not set # CONFIG_USB_CYTHERM is not set # CONFIG_USB_IDMOUSE is not set -# CONFIG_USB_FTDI_ELAN is not set # CONFIG_USB_APPLEDISPLAY is not set # CONFIG_APPLE_MFI_FASTCHARGE is not set # CONFIG_USB_SISUSBVGA is not set @@ -4991,6 +5031,7 @@ CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 # CONFIG_USB_EG20T is not set # CONFIG_USB_GADGET_XILINX is not set # CONFIG_USB_MAX3420_UDC is not set +# CONFIG_USB_CDNS2_UDC is not set # CONFIG_USB_DUMMY_HCD is not set # end of USB Peripheral Controller @@ -5042,6 +5083,7 @@ CONFIG_UCSI_ACPI=m # CONFIG_TYPEC_MUX_FSA4480 is not set # CONFIG_TYPEC_MUX_GPIO_SBU is not set # CONFIG_TYPEC_MUX_PI3USB30532 is not set +# CONFIG_TYPEC_MUX_NB7VPQ904M is not set # end of USB Type-C Multiplexer/DeMultiplexer Switch support # @@ -5064,6 +5106,7 @@ CONFIG_LEDS_CLASS=y # LED drivers # # CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW200XX is not set # CONFIG_LEDS_AW2013 is not set # CONFIG_LEDS_BCM6328 is not set # CONFIG_LEDS_BCM6358 is not set @@ -5084,6 +5127,7 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_PCA963X is not set # CONFIG_LEDS_DAC124S085 is not set # CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_BD2606MVV is not set # CONFIG_LEDS_BD2802 is not set # CONFIG_LEDS_LT3593 is not set # CONFIG_LEDS_TCA6507 is not set @@ -5100,7 +5144,7 @@ CONFIG_LEDS_CLASS=y # CONFIG_LEDS_MLXREG is not set # CONFIG_LEDS_USER is not set # CONFIG_LEDS_SPI_BYTE is not set -# CONFIG_LEDS_TI_LMU_COMMON is not set +# CONFIG_LEDS_LM3697 is not set # # Flash and Torch LED drivers @@ -5122,7 +5166,6 @@ CONFIG_LEDS_TRIGGERS=y # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set # CONFIG_LEDS_TRIGGER_CPU is not set # CONFIG_LEDS_TRIGGER_ACTIVITY is not set -# CONFIG_LEDS_TRIGGER_GPIO is not set # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set # @@ -5263,6 +5306,7 @@ CONFIG_RTC_I2C_AND_SPI=y # # CONFIG_RTC_DRV_CADENCE is not set # CONFIG_RTC_DRV_FTRTC010 is not set +# CONFIG_RTC_DRV_LOONGSON is not set # CONFIG_RTC_DRV_R7301 is not set # @@ -5326,10 +5370,16 @@ CONFIG_VFIO=m CONFIG_VFIO_CONTAINER=y # CONFIG_VFIO_NOIOMMU is not set CONFIG_VFIO_VIRQFD=y + +# +# VFIO support for PCI devices +# CONFIG_VFIO_PCI_CORE=m CONFIG_VFIO_PCI_MMAP=y CONFIG_VFIO_PCI_INTX=y CONFIG_VFIO_PCI=m +# end of VFIO support for PCI devices + CONFIG_IRQ_BYPASS_MANAGER=m # CONFIG_VIRT_DRIVERS is not set CONFIG_VIRTIO_ANCHOR=y @@ -5346,6 +5396,7 @@ CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y CONFIG_VIRTIO_DMA_SHARED_BUFFER=m # CONFIG_VDPA is not set CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_TASK=y CONFIG_VHOST=m CONFIG_VHOST_MENU=y CONFIG_VHOST_NET=m @@ -5364,7 +5415,6 @@ CONFIG_COMEDI=m CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 # CONFIG_COMEDI_MISC_DRIVERS is not set -# CONFIG_COMEDI_ISA_DRIVERS is not set CONFIG_COMEDI_PCI_DRIVERS=m CONFIG_COMEDI_8255_PCI=m # CONFIG_COMEDI_ADDI_APCI_1032 is not set @@ -5380,21 +5430,13 @@ CONFIG_COMEDI_8255_PCI=m CONFIG_COMEDI_ADL_PCI6208=m CONFIG_COMEDI_ADL_PCI7X3X=m CONFIG_COMEDI_ADL_PCI8164=m -CONFIG_COMEDI_ADL_PCI9111=m -CONFIG_COMEDI_ADL_PCI9118=m -CONFIG_COMEDI_ADV_PCI1710=m CONFIG_COMEDI_ADV_PCI1720=m CONFIG_COMEDI_ADV_PCI1723=m CONFIG_COMEDI_ADV_PCI1724=m CONFIG_COMEDI_ADV_PCI1760=m -CONFIG_COMEDI_ADV_PCI_DIO=m -# CONFIG_COMEDI_AMPLC_DIO200_PCI is not set # CONFIG_COMEDI_AMPLC_PC236_PCI is not set # CONFIG_COMEDI_AMPLC_PC263_PCI is not set -# CONFIG_COMEDI_AMPLC_PCI224 is not set -# CONFIG_COMEDI_AMPLC_PCI230 is not set # CONFIG_COMEDI_CONTEC_PCI_DIO is not set -# CONFIG_COMEDI_DAS08_PCI is not set # CONFIG_COMEDI_DT3000 is not set # CONFIG_COMEDI_DYNA_PCI10XX is not set # CONFIG_COMEDI_GSC_HPDI is not set @@ -5404,30 +5446,23 @@ CONFIG_COMEDI_ADV_PCI_DIO=m # CONFIG_COMEDI_JR3_PCI is not set # CONFIG_COMEDI_KE_COUNTER is not set # CONFIG_COMEDI_CB_PCIDAS64 is not set -# CONFIG_COMEDI_CB_PCIDAS is not set # CONFIG_COMEDI_CB_PCIDDA is not set -# CONFIG_COMEDI_CB_PCIMDAS is not set # CONFIG_COMEDI_CB_PCIMDDA is not set -# CONFIG_COMEDI_ME4000 is not set # CONFIG_COMEDI_ME_DAQ is not set # CONFIG_COMEDI_NI_6527 is not set # CONFIG_COMEDI_NI_65XX is not set # CONFIG_COMEDI_NI_660X is not set # CONFIG_COMEDI_NI_670X is not set -CONFIG_COMEDI_NI_LABPC_PCI=m CONFIG_COMEDI_NI_PCIDIO=m CONFIG_COMEDI_NI_PCIMIO=m -# CONFIG_COMEDI_RTD520 is not set # CONFIG_COMEDI_S626 is not set CONFIG_COMEDI_MITE=m CONFIG_COMEDI_NI_TIOCMD=m # CONFIG_COMEDI_PCMCIA_DRIVERS is not set # CONFIG_COMEDI_USB_DRIVERS is not set -CONFIG_COMEDI_8254=m CONFIG_COMEDI_8255=m # CONFIG_COMEDI_8255_SA is not set # CONFIG_COMEDI_KCOMEDILIB is not set -CONFIG_COMEDI_NI_LABPC=m CONFIG_COMEDI_NI_TIO=m CONFIG_COMEDI_NI_ROUTING=m # CONFIG_COMEDI_TESTS is not set @@ -5449,6 +5484,7 @@ CONFIG_STAGING=y # CONFIG_FIELDBUS_DEV is not set # CONFIG_QLGE is not set # CONFIG_VME_BUS is not set +CONFIG_CPU_HWMON=y CONFIG_LOONGARCH_PLATFORM_DEVICES=y CONFIG_LOONGSON_LAPTOP=y # CONFIG_GOLDFISH is not set @@ -5466,8 +5502,10 @@ CONFIG_COMMON_CLK=y # CONFIG_COMMON_CLK_CDCE925 is not set # CONFIG_COMMON_CLK_CS2000_CP is not set # CONFIG_COMMON_CLK_AXI_CLKGEN is not set +# CONFIG_COMMON_CLK_LOONGSON2 is not set # CONFIG_COMMON_CLK_PWM is not set # CONFIG_COMMON_CLK_RS9_PCIE is not set +# CONFIG_COMMON_CLK_SI521XX is not set # CONFIG_COMMON_CLK_VC5 is not set # CONFIG_COMMON_CLK_VC7 is not set # CONFIG_COMMON_CLK_FIXED_MMIO is not set @@ -5661,6 +5699,14 @@ CONFIG_RAS=y # CONFIG_DAX is not set CONFIG_NVMEM=y CONFIG_NVMEM_SYSFS=y + +# +# Layout Types +# +# CONFIG_NVMEM_LAYOUT_SL28_VPD is not set +# CONFIG_NVMEM_LAYOUT_ONIE_TLV is not set +# end of Layout Types + # CONFIG_NVMEM_RMEM is not set # CONFIG_NVMEM_U_BOOT_ENV is not set @@ -5707,6 +5753,7 @@ CONFIG_FS_MBCACHE=y # CONFIG_JFS_FS is not set CONFIG_XFS_FS=y CONFIG_XFS_SUPPORT_V4=y +CONFIG_XFS_SUPPORT_ASCII_CI=y CONFIG_XFS_QUOTA=y CONFIG_XFS_POSIX_ACL=y # CONFIG_XFS_RT is not set @@ -5737,7 +5784,6 @@ CONFIG_FANOTIFY=y CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y CONFIG_QUOTA=y # CONFIG_QUOTA_NETLINK_INTERFACE is not set -# CONFIG_PRINT_QUOTA_WARNING is not set # CONFIG_QUOTA_DEBUG is not set CONFIG_QUOTA_TREE=m CONFIG_QFMT_V1=m @@ -5806,7 +5852,6 @@ CONFIG_TMPFS_XATTR=y CONFIG_ARCH_SUPPORTS_HUGETLBFS=y CONFIG_HUGETLBFS=y CONFIG_HUGETLB_PAGE=y -CONFIG_ARCH_WANT_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y # CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set CONFIG_MEMFD_CREATE=y @@ -5911,7 +5956,7 @@ CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y # CONFIG_CIFS_SMB_DIRECT is not set # CONFIG_CIFS_FSCACHE is not set # CONFIG_SMB_SERVER is not set -CONFIG_SMBFS_COMMON=m +CONFIG_SMBFS=m # CONFIG_CODA_FS is not set # CONFIG_AFS_FS is not set CONFIG_9P_FS=y @@ -5985,22 +6030,19 @@ CONFIG_KEYS=y CONFIG_KEY_DH_OPERATIONS=y # CONFIG_SECURITY_DMESG_RESTRICT is not set CONFIG_SECURITY=y -CONFIG_SECURITY_WRITABLE_HOOKS=y CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y # CONFIG_SECURITY_INFINIBAND is not set # CONFIG_SECURITY_NETWORK_XFRM is not set CONFIG_SECURITY_PATH=y CONFIG_LSM_MMAP_MIN_ADDR=65536 -CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y # CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set # CONFIG_STATIC_USERMODEHELPER is not set CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_SELINUX_BOOTPARAM=y -CONFIG_SECURITY_SELINUX_DISABLE=y CONFIG_SECURITY_SELINUX_DEVELOP=y CONFIG_SECURITY_SELINUX_AVC_STATS=y -CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0 CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 # CONFIG_SECURITY_SMACK is not set @@ -6047,6 +6089,8 @@ CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y # end of Memory initialization CONFIG_RANDSTRUCT_NONE=y +# CONFIG_RANDSTRUCT_FULL is not set +# CONFIG_RANDSTRUCT_PERFORMANCE is not set # end of Kernel hardening options # end of Security options @@ -6065,6 +6109,7 @@ CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_AEAD=m CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SIG2=y CONFIG_CRYPTO_SKCIPHER=y CONFIG_CRYPTO_SKCIPHER2=y CONFIG_CRYPTO_HASH=y @@ -6083,7 +6128,7 @@ CONFIG_CRYPTO_USER=m # CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set # CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set CONFIG_CRYPTO_NULL=m -CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_NULL2=m CONFIG_CRYPTO_PCRYPT=m CONFIG_CRYPTO_CRYPTD=m CONFIG_CRYPTO_AUTHENC=m @@ -6155,6 +6200,7 @@ CONFIG_CRYPTO_ECB=m CONFIG_CRYPTO_CHACHA20POLY1305=m CONFIG_CRYPTO_CCM=m CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_GENIV=m CONFIG_CRYPTO_SEQIV=m CONFIG_CRYPTO_ECHAINIV=m CONFIG_CRYPTO_ESSIV=m @@ -6175,7 +6221,7 @@ CONFIG_CRYPTO_POLY1305=m CONFIG_CRYPTO_SHA1=y CONFIG_CRYPTO_SHA256=y CONFIG_CRYPTO_SHA512=m -# CONFIG_CRYPTO_SHA3 is not set +CONFIG_CRYPTO_SHA3=m # CONFIG_CRYPTO_SM3_GENERIC is not set # CONFIG_CRYPTO_STREEBOG is not set CONFIG_CRYPTO_VMAC=m @@ -6214,6 +6260,7 @@ CONFIG_CRYPTO_DRBG_HMAC=y # CONFIG_CRYPTO_DRBG_CTR is not set CONFIG_CRYPTO_DRBG=m CONFIG_CRYPTO_JITTERENTROPY=m +# CONFIG_CRYPTO_JITTERENTROPY_TESTINTERFACE is not set CONFIG_CRYPTO_KDF800108_CTR=y # end of Random number generation @@ -6231,9 +6278,17 @@ CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y # end of Userspace interface CONFIG_CRYPTO_HASH_INFO=y + +# +# Accelerated Cryptographic Algorithms for CPU (loongarch) +# +# CONFIG_CRYPTO_CRC32_LOONGARCH is not set +# end of Accelerated Cryptographic Algorithms for CPU (loongarch) + CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set # CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set # CONFIG_CRYPTO_DEV_QAT_C3XXX is not set # CONFIG_CRYPTO_DEV_QAT_C62X is not set @@ -6241,7 +6296,6 @@ CONFIG_CRYPTO_HW=y # CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set # CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set -# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set # CONFIG_CRYPTO_DEV_CHELSIO is not set CONFIG_CRYPTO_DEV_VIRTIO=m # CONFIG_CRYPTO_DEV_SAFEXCEL is not set @@ -6362,6 +6416,7 @@ CONFIG_INTERVAL_TREE=y CONFIG_XARRAY_MULTI=y CONFIG_ASSOCIATIVE_ARRAY=y CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y CONFIG_HAS_IOPORT_MAP=y CONFIG_HAS_DMA=y CONFIG_NEED_DMA_MAP_STATE=y @@ -6386,11 +6441,11 @@ CONFIG_OID_REGISTRY=y CONFIG_UCS2_STRING=y CONFIG_HAVE_GENERIC_VDSO=y CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y CONFIG_FONT_SUPPORT=y CONFIG_FONTS=y # CONFIG_FONT_8x8 is not set -# CONFIG_FONT_8x16 is not set -CONFIG_FONT_UTF8x16=y +CONFIG_FONT_8x16=y # CONFIG_FONT_6x11 is not set # CONFIG_FONT_7x14 is not set # CONFIG_FONT_PEARL_8x8 is not set @@ -6402,6 +6457,7 @@ CONFIG_FONT_UTF8x16=y # CONFIG_FONT_SUN12x22 is not set # CONFIG_FONT_TER16x32 is not set # CONFIG_FONT_6x8 is not set +CONFIG_FONT_AUTOSELECT=y CONFIG_SG_POOL=y CONFIG_ARCH_STACKWALK=y CONFIG_STACKDEPOT=y @@ -6486,6 +6542,8 @@ CONFIG_SLUB_DEBUG=y # CONFIG_SLUB_DEBUG_ON is not set # CONFIG_PAGE_OWNER is not set # CONFIG_PAGE_POISONING is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set # CONFIG_DEBUG_OBJECTS is not set # CONFIG_DEBUG_STACK_USAGE is not set # CONFIG_SCHED_STACK_END_CHECK is not set @@ -6494,8 +6552,11 @@ CONFIG_SLUB_DEBUG=y # CONFIG_DEBUG_PER_CPU_MAPS is not set CONFIG_HAVE_DEBUG_STACKOVERFLOW=y # CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_ARCH_DISABLE_KASAN_INLINE=y CONFIG_CC_HAS_KASAN_GENERIC=y CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set # end of Memory Debugging # CONFIG_DEBUG_SHIRQ is not set @@ -6507,8 +6568,11 @@ CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y CONFIG_PANIC_ON_OOPS_VALUE=0 CONFIG_PANIC_TIMEOUT=0 # CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY=y +# CONFIG_HARDLOCKUP_DETECTOR is not set # CONFIG_DETECT_HUNG_TASK is not set # CONFIG_WQ_WATCHDOG is not set +# CONFIG_WQ_CPU_INTENSIVE_REPORT is not set # CONFIG_TEST_LOCKUP is not set # end of Debug Oops, Lockups and Hangs @@ -6576,10 +6640,13 @@ CONFIG_RCU_TRACE=y # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_RETHOOK=y CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_RETVAL=y CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y @@ -6588,6 +6655,8 @@ CONFIG_TRACE_CLOCK=y CONFIG_TRACING_SUPPORT=y # CONFIG_FTRACE is not set # CONFIG_SAMPLES is not set +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y # CONFIG_STRICT_DEVMEM is not set # @@ -6603,7 +6672,9 @@ CONFIG_UNWINDER_PROLOGUE=y # CONFIG_KUNIT is not set # CONFIG_NOTIFIER_ERROR_INJECTION is not set # CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set CONFIG_RUNTIME_TESTING_MENU=y # CONFIG_TEST_DHRY is not set # CONFIG_TEST_MIN_HEAP is not set diff --git a/loongarch64/files/step/computer_language/dune/3.9.1/patches/0001-dune-fix-for-cross-build.patch b/loongarch64/files/step/computer_language/dune/3.10.0/patches/0001-dune-fix-for-cross-build.patch similarity index 100% rename from loongarch64/files/step/computer_language/dune/3.9.1/patches/0001-dune-fix-for-cross-build.patch rename to loongarch64/files/step/computer_language/dune/3.10.0/patches/0001-dune-fix-for-cross-build.patch diff --git a/loongarch64/files/step/computer_language/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch b/loongarch64/files/step/computer_language/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch deleted file mode 100644 index 91aae3f9..00000000 --- a/loongarch64/files/step/computer_language/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch +++ /dev/null @@ -1,38 +0,0 @@ -From d6cee1cff63159d1ccc6c9f5dd98507909a1482e Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Sat, 3 Jun 2023 07:15:01 +0000 -Subject: [PATCH] fix inconsistency in features usage of dependency syn for - cargo, clip, and trustfmt. - ---- - src/tools/cargo/Cargo.toml | 1 + - src/tools/rustfmt/Cargo.toml | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/src/tools/cargo/Cargo.toml b/src/tools/cargo/Cargo.toml -index 56c9827cb..32ff3f941 100644 ---- a/src/tools/cargo/Cargo.toml -+++ b/src/tools/cargo/Cargo.toml -@@ -76,6 +76,7 @@ unicode-width = "0.1.5" - unicode-xid = "0.2.0" - url = "2.2.2" - walkdir = "2.2" -+syn = { version = "2.0.8", features = ["full"] } - - # A noop dependency that changes in the Rust repository, it's a bit of a hack. - # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust` -diff --git a/src/tools/rustfmt/Cargo.toml b/src/tools/rustfmt/Cargo.toml -index 87ce59d02..044ec25bc 100644 ---- a/src/tools/rustfmt/Cargo.toml -+++ b/src/tools/rustfmt/Cargo.toml -@@ -56,6 +56,7 @@ toml = "0.5" - unicode-segmentation = "1.9" - unicode-width = "0.1" - unicode_categories = "0.1" -+syn = { version = "2.0.8", features = ["full"] } - - rustfmt-config_proc_macro = { version = "0.3", path = "config_proc_macro" } - --- -2.31.1 - diff --git a/loongarch64/files/step/computer_language/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch b/loongarch64/files/step/computer_language/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch deleted file mode 100644 index ffef2a63..00000000 --- a/loongarch64/files/step/computer_language/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch +++ /dev/null @@ -1,9736 +0,0 @@ -From b22cd8d66d6f3ab67b1cd9bc52c1fe8f9fcd19e3 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 12 Apr 2023 08:39:46 +0000 -Subject: [PATCH] linux-raw-sys-0.1.4 add loongarch64 support. - ---- - vendor/linux-raw-sys-0.1.4/src/lib.rs | 16 + - vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs | 135 + - .../linux-raw-sys-0.1.4/src/loongarch64/general.rs | 5205 +++++++++++++++++ - vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs | 1465 +++++ - .../linux-raw-sys-0.1.4/src/loongarch64/netlink.rs | 2860 +++++++++ - 5 files changed, 9681 insertions(+) - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs - -diff --git a/vendor/linux-raw-sys-0.1.4/src/lib.rs b/vendor/linux-raw-sys-0.1.4/src/lib.rs -index 3204531d0..6c9c948ec 100644 ---- a/vendor/linux-raw-sys-0.1.4/src/lib.rs -+++ b/vendor/linux-raw-sys-0.1.4/src/lib.rs -@@ -165,6 +165,22 @@ pub mod ioctl; - #[path = "aarch64/netlink.rs"] - pub mod netlink; - #[cfg(feature = "errno")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/errno.rs"] -+pub mod errno; -+#[cfg(feature = "general")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/general.rs"] -+pub mod general; -+#[cfg(feature = "ioctl")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/ioctl.rs"] -+pub mod ioctl; -+#[cfg(feature = "netlink")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/netlink.rs"] -+pub mod netlink; -+#[cfg(feature = "errno")] - #[cfg(target_arch = "mips")] - #[path = "mips/errno.rs"] - pub mod errno; -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs -new file mode 100644 -index 000000000..8c5620d74 ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs -@@ -0,0 +1,135 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+pub const EPERM: u32 = 1; -+pub const ENOENT: u32 = 2; -+pub const ESRCH: u32 = 3; -+pub const EINTR: u32 = 4; -+pub const EIO: u32 = 5; -+pub const ENXIO: u32 = 6; -+pub const E2BIG: u32 = 7; -+pub const ENOEXEC: u32 = 8; -+pub const EBADF: u32 = 9; -+pub const ECHILD: u32 = 10; -+pub const EAGAIN: u32 = 11; -+pub const ENOMEM: u32 = 12; -+pub const EACCES: u32 = 13; -+pub const EFAULT: u32 = 14; -+pub const ENOTBLK: u32 = 15; -+pub const EBUSY: u32 = 16; -+pub const EEXIST: u32 = 17; -+pub const EXDEV: u32 = 18; -+pub const ENODEV: u32 = 19; -+pub const ENOTDIR: u32 = 20; -+pub const EISDIR: u32 = 21; -+pub const EINVAL: u32 = 22; -+pub const ENFILE: u32 = 23; -+pub const EMFILE: u32 = 24; -+pub const ENOTTY: u32 = 25; -+pub const ETXTBSY: u32 = 26; -+pub const EFBIG: u32 = 27; -+pub const ENOSPC: u32 = 28; -+pub const ESPIPE: u32 = 29; -+pub const EROFS: u32 = 30; -+pub const EMLINK: u32 = 31; -+pub const EPIPE: u32 = 32; -+pub const EDOM: u32 = 33; -+pub const ERANGE: u32 = 34; -+pub const EDEADLK: u32 = 35; -+pub const ENAMETOOLONG: u32 = 36; -+pub const ENOLCK: u32 = 37; -+pub const ENOSYS: u32 = 38; -+pub const ENOTEMPTY: u32 = 39; -+pub const ELOOP: u32 = 40; -+pub const EWOULDBLOCK: u32 = 11; -+pub const ENOMSG: u32 = 42; -+pub const EIDRM: u32 = 43; -+pub const ECHRNG: u32 = 44; -+pub const EL2NSYNC: u32 = 45; -+pub const EL3HLT: u32 = 46; -+pub const EL3RST: u32 = 47; -+pub const ELNRNG: u32 = 48; -+pub const EUNATCH: u32 = 49; -+pub const ENOCSI: u32 = 50; -+pub const EL2HLT: u32 = 51; -+pub const EBADE: u32 = 52; -+pub const EBADR: u32 = 53; -+pub const EXFULL: u32 = 54; -+pub const ENOANO: u32 = 55; -+pub const EBADRQC: u32 = 56; -+pub const EBADSLT: u32 = 57; -+pub const EDEADLOCK: u32 = 35; -+pub const EBFONT: u32 = 59; -+pub const ENOSTR: u32 = 60; -+pub const ENODATA: u32 = 61; -+pub const ETIME: u32 = 62; -+pub const ENOSR: u32 = 63; -+pub const ENONET: u32 = 64; -+pub const ENOPKG: u32 = 65; -+pub const EREMOTE: u32 = 66; -+pub const ENOLINK: u32 = 67; -+pub const EADV: u32 = 68; -+pub const ESRMNT: u32 = 69; -+pub const ECOMM: u32 = 70; -+pub const EPROTO: u32 = 71; -+pub const EMULTIHOP: u32 = 72; -+pub const EDOTDOT: u32 = 73; -+pub const EBADMSG: u32 = 74; -+pub const EOVERFLOW: u32 = 75; -+pub const ENOTUNIQ: u32 = 76; -+pub const EBADFD: u32 = 77; -+pub const EREMCHG: u32 = 78; -+pub const ELIBACC: u32 = 79; -+pub const ELIBBAD: u32 = 80; -+pub const ELIBSCN: u32 = 81; -+pub const ELIBMAX: u32 = 82; -+pub const ELIBEXEC: u32 = 83; -+pub const EILSEQ: u32 = 84; -+pub const ERESTART: u32 = 85; -+pub const ESTRPIPE: u32 = 86; -+pub const EUSERS: u32 = 87; -+pub const ENOTSOCK: u32 = 88; -+pub const EDESTADDRREQ: u32 = 89; -+pub const EMSGSIZE: u32 = 90; -+pub const EPROTOTYPE: u32 = 91; -+pub const ENOPROTOOPT: u32 = 92; -+pub const EPROTONOSUPPORT: u32 = 93; -+pub const ESOCKTNOSUPPORT: u32 = 94; -+pub const EOPNOTSUPP: u32 = 95; -+pub const EPFNOSUPPORT: u32 = 96; -+pub const EAFNOSUPPORT: u32 = 97; -+pub const EADDRINUSE: u32 = 98; -+pub const EADDRNOTAVAIL: u32 = 99; -+pub const ENETDOWN: u32 = 100; -+pub const ENETUNREACH: u32 = 101; -+pub const ENETRESET: u32 = 102; -+pub const ECONNABORTED: u32 = 103; -+pub const ECONNRESET: u32 = 104; -+pub const ENOBUFS: u32 = 105; -+pub const EISCONN: u32 = 106; -+pub const ENOTCONN: u32 = 107; -+pub const ESHUTDOWN: u32 = 108; -+pub const ETOOMANYREFS: u32 = 109; -+pub const ETIMEDOUT: u32 = 110; -+pub const ECONNREFUSED: u32 = 111; -+pub const EHOSTDOWN: u32 = 112; -+pub const EHOSTUNREACH: u32 = 113; -+pub const EALREADY: u32 = 114; -+pub const EINPROGRESS: u32 = 115; -+pub const ESTALE: u32 = 116; -+pub const EUCLEAN: u32 = 117; -+pub const ENOTNAM: u32 = 118; -+pub const ENAVAIL: u32 = 119; -+pub const EISNAM: u32 = 120; -+pub const EREMOTEIO: u32 = 121; -+pub const EDQUOT: u32 = 122; -+pub const ENOMEDIUM: u32 = 123; -+pub const EMEDIUMTYPE: u32 = 124; -+pub const ECANCELED: u32 = 125; -+pub const ENOKEY: u32 = 126; -+pub const EKEYEXPIRED: u32 = 127; -+pub const EKEYREVOKED: u32 = 128; -+pub const EKEYREJECTED: u32 = 129; -+pub const EOWNERDEAD: u32 = 130; -+pub const ENOTRECOVERABLE: u32 = 131; -+pub const ERFKILL: u32 = 132; -+pub const EHWPOISON: u32 = 133; -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs -new file mode 100644 -index 000000000..79d309016 ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs -@@ -0,0 +1,5205 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+#[repr(C)] -+#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] -+pub struct __BindgenBitfieldUnit { -+storage: Storage, -+} -+impl __BindgenBitfieldUnit { -+#[inline] -+pub const fn new(storage: Storage) -> Self { -+Self { storage } -+} -+} -+impl __BindgenBitfieldUnit -+where -+Storage: AsRef<[u8]> + AsMut<[u8]>, -+{ -+#[inline] -+pub fn get_bit(&self, index: usize) -> bool { -+debug_assert!(index / 8 < self.storage.as_ref().len()); -+let byte_index = index / 8; -+let byte = self.storage.as_ref()[byte_index]; -+let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; -+let mask = 1 << bit_index; -+byte & mask == mask -+} -+#[inline] -+pub fn set_bit(&mut self, index: usize, val: bool) { -+debug_assert!(index / 8 < self.storage.as_ref().len()); -+let byte_index = index / 8; -+let byte = &mut self.storage.as_mut()[byte_index]; -+let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; -+let mask = 1 << bit_index; -+if val { -+*byte |= mask; -+} else { -+*byte &= !mask; -+} -+} -+#[inline] -+pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { -+debug_assert!(bit_width <= 64); -+debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); -+debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); -+let mut val = 0; -+for i in 0..(bit_width as usize) { -+if self.get_bit(i + bit_offset) { -+let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; -+val |= 1 << index; -+} -+} -+val -+} -+#[inline] -+pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { -+debug_assert!(bit_width <= 64); -+debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); -+debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); -+for i in 0..(bit_width as usize) { -+let mask = 1 << i; -+let val_bit_is_set = val & mask == mask; -+let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; -+self.set_bit(index + bit_offset, val_bit_is_set); -+} -+} -+} -+#[repr(C)] -+#[derive(Default)] -+pub struct __IncompleteArrayField(::core::marker::PhantomData, [T; 0]); -+impl __IncompleteArrayField { -+#[inline] -+pub const fn new() -> Self { -+__IncompleteArrayField(::core::marker::PhantomData, []) -+} -+#[inline] -+pub fn as_ptr(&self) -> *const T { -+self as *const _ as *const T -+} -+#[inline] -+pub fn as_mut_ptr(&mut self) -> *mut T { -+self as *mut _ as *mut T -+} -+#[inline] -+pub unsafe fn as_slice(&self, len: usize) -> &[T] { -+::core::slice::from_raw_parts(self.as_ptr(), len) -+} -+#[inline] -+pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { -+::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len) -+} -+} -+impl ::core::fmt::Debug for __IncompleteArrayField { -+fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -+fmt.write_str("__IncompleteArrayField") -+} -+} -+#[repr(C)] -+pub struct __BindgenUnionField(::core::marker::PhantomData); -+impl __BindgenUnionField { -+#[inline] -+pub const fn new() -> Self { -+__BindgenUnionField(::core::marker::PhantomData) -+} -+#[inline] -+pub unsafe fn as_ref(&self) -> &T { -+::core::mem::transmute(self) -+} -+#[inline] -+pub unsafe fn as_mut(&mut self) -> &mut T { -+::core::mem::transmute(self) -+} -+} -+impl ::core::default::Default for __BindgenUnionField { -+#[inline] -+fn default() -> Self { -+Self::new() -+} -+} -+impl ::core::clone::Clone for __BindgenUnionField { -+#[inline] -+fn clone(&self) -> Self { -+Self::new() -+} -+} -+impl ::core::marker::Copy for __BindgenUnionField {} -+impl ::core::fmt::Debug for __BindgenUnionField { -+fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -+fmt.write_str("__BindgenUnionField") -+} -+} -+impl ::core::hash::Hash for __BindgenUnionField { -+fn hash(&self, _state: &mut H) {} -+} -+impl ::core::cmp::PartialEq for __BindgenUnionField { -+fn eq(&self, _other: &__BindgenUnionField) -> bool { -+true -+} -+} -+impl ::core::cmp::Eq for __BindgenUnionField {} -+pub const LINUX_VERSION_CODE: u32 = 393728; -+pub const LINUX_VERSION_MAJOR: u32 = 6; -+pub const LINUX_VERSION_PATCHLEVEL: u32 = 2; -+pub const LINUX_VERSION_SUBLEVEL: u32 = 0; -+pub const AT_SYSINFO_EHDR: u32 = 33; -+pub const AT_VECTOR_SIZE_ARCH: u32 = 1; -+pub const AT_NULL: u32 = 0; -+pub const AT_IGNORE: u32 = 1; -+pub const AT_EXECFD: u32 = 2; -+pub const AT_PHDR: u32 = 3; -+pub const AT_PHENT: u32 = 4; -+pub const AT_PHNUM: u32 = 5; -+pub const AT_PAGESZ: u32 = 6; -+pub const AT_BASE: u32 = 7; -+pub const AT_FLAGS: u32 = 8; -+pub const AT_ENTRY: u32 = 9; -+pub const AT_NOTELF: u32 = 10; -+pub const AT_UID: u32 = 11; -+pub const AT_EUID: u32 = 12; -+pub const AT_GID: u32 = 13; -+pub const AT_EGID: u32 = 14; -+pub const AT_PLATFORM: u32 = 15; -+pub const AT_HWCAP: u32 = 16; -+pub const AT_CLKTCK: u32 = 17; -+pub const AT_SECURE: u32 = 23; -+pub const AT_BASE_PLATFORM: u32 = 24; -+pub const AT_RANDOM: u32 = 25; -+pub const AT_HWCAP2: u32 = 26; -+pub const AT_EXECFN: u32 = 31; -+pub const AT_MINSIGSTKSZ: u32 = 51; -+pub const __FD_SETSIZE: u32 = 1024; -+pub const _LINUX_CAPABILITY_VERSION_1: u32 = 429392688; -+pub const _LINUX_CAPABILITY_U32S_1: u32 = 1; -+pub const _LINUX_CAPABILITY_VERSION_2: u32 = 537333798; -+pub const _LINUX_CAPABILITY_U32S_2: u32 = 2; -+pub const _LINUX_CAPABILITY_VERSION_3: u32 = 537396514; -+pub const _LINUX_CAPABILITY_U32S_3: u32 = 2; -+pub const VFS_CAP_REVISION_MASK: u32 = 4278190080; -+pub const VFS_CAP_REVISION_SHIFT: u32 = 24; -+pub const VFS_CAP_FLAGS_MASK: i64 = -4278190081; -+pub const VFS_CAP_FLAGS_EFFECTIVE: u32 = 1; -+pub const VFS_CAP_REVISION_1: u32 = 16777216; -+pub const VFS_CAP_U32_1: u32 = 1; -+pub const VFS_CAP_REVISION_2: u32 = 33554432; -+pub const VFS_CAP_U32_2: u32 = 2; -+pub const VFS_CAP_REVISION_3: u32 = 50331648; -+pub const VFS_CAP_U32_3: u32 = 2; -+pub const VFS_CAP_U32: u32 = 2; -+pub const VFS_CAP_REVISION: u32 = 50331648; -+pub const _LINUX_CAPABILITY_VERSION: u32 = 429392688; -+pub const _LINUX_CAPABILITY_U32S: u32 = 1; -+pub const CAP_CHOWN: u32 = 0; -+pub const CAP_DAC_OVERRIDE: u32 = 1; -+pub const CAP_DAC_READ_SEARCH: u32 = 2; -+pub const CAP_FOWNER: u32 = 3; -+pub const CAP_FSETID: u32 = 4; -+pub const CAP_KILL: u32 = 5; -+pub const CAP_SETGID: u32 = 6; -+pub const CAP_SETUID: u32 = 7; -+pub const CAP_SETPCAP: u32 = 8; -+pub const CAP_LINUX_IMMUTABLE: u32 = 9; -+pub const CAP_NET_BIND_SERVICE: u32 = 10; -+pub const CAP_NET_BROADCAST: u32 = 11; -+pub const CAP_NET_ADMIN: u32 = 12; -+pub const CAP_NET_RAW: u32 = 13; -+pub const CAP_IPC_LOCK: u32 = 14; -+pub const CAP_IPC_OWNER: u32 = 15; -+pub const CAP_SYS_MODULE: u32 = 16; -+pub const CAP_SYS_RAWIO: u32 = 17; -+pub const CAP_SYS_CHROOT: u32 = 18; -+pub const CAP_SYS_PTRACE: u32 = 19; -+pub const CAP_SYS_PACCT: u32 = 20; -+pub const CAP_SYS_ADMIN: u32 = 21; -+pub const CAP_SYS_BOOT: u32 = 22; -+pub const CAP_SYS_NICE: u32 = 23; -+pub const CAP_SYS_RESOURCE: u32 = 24; -+pub const CAP_SYS_TIME: u32 = 25; -+pub const CAP_SYS_TTY_CONFIG: u32 = 26; -+pub const CAP_MKNOD: u32 = 27; -+pub const CAP_LEASE: u32 = 28; -+pub const CAP_AUDIT_WRITE: u32 = 29; -+pub const CAP_AUDIT_CONTROL: u32 = 30; -+pub const CAP_SETFCAP: u32 = 31; -+pub const CAP_MAC_OVERRIDE: u32 = 32; -+pub const CAP_MAC_ADMIN: u32 = 33; -+pub const CAP_SYSLOG: u32 = 34; -+pub const CAP_WAKE_ALARM: u32 = 35; -+pub const CAP_BLOCK_SUSPEND: u32 = 36; -+pub const CAP_AUDIT_READ: u32 = 37; -+pub const CAP_PERFMON: u32 = 38; -+pub const CAP_BPF: u32 = 39; -+pub const CAP_CHECKPOINT_RESTORE: u32 = 40; -+pub const CAP_LAST_CAP: u32 = 40; -+pub const O_ACCMODE: u32 = 3; -+pub const O_RDONLY: u32 = 0; -+pub const O_WRONLY: u32 = 1; -+pub const O_RDWR: u32 = 2; -+pub const O_CREAT: u32 = 64; -+pub const O_EXCL: u32 = 128; -+pub const O_NOCTTY: u32 = 256; -+pub const O_TRUNC: u32 = 512; -+pub const O_APPEND: u32 = 1024; -+pub const O_NONBLOCK: u32 = 2048; -+pub const O_DSYNC: u32 = 4096; -+pub const FASYNC: u32 = 8192; -+pub const O_DIRECT: u32 = 16384; -+pub const O_LARGEFILE: u32 = 32768; -+pub const O_DIRECTORY: u32 = 65536; -+pub const O_NOFOLLOW: u32 = 131072; -+pub const O_NOATIME: u32 = 262144; -+pub const O_CLOEXEC: u32 = 524288; -+pub const __O_SYNC: u32 = 1048576; -+pub const O_SYNC: u32 = 1052672; -+pub const O_PATH: u32 = 2097152; -+pub const __O_TMPFILE: u32 = 4194304; -+pub const O_TMPFILE: u32 = 4259840; -+pub const O_TMPFILE_MASK: u32 = 4259904; -+pub const O_NDELAY: u32 = 2048; -+pub const F_DUPFD: u32 = 0; -+pub const F_GETFD: u32 = 1; -+pub const F_SETFD: u32 = 2; -+pub const F_GETFL: u32 = 3; -+pub const F_SETFL: u32 = 4; -+pub const F_GETLK: u32 = 5; -+pub const F_SETLK: u32 = 6; -+pub const F_SETLKW: u32 = 7; -+pub const F_SETOWN: u32 = 8; -+pub const F_GETOWN: u32 = 9; -+pub const F_SETSIG: u32 = 10; -+pub const F_GETSIG: u32 = 11; -+pub const F_SETOWN_EX: u32 = 15; -+pub const F_GETOWN_EX: u32 = 16; -+pub const F_GETOWNER_UIDS: u32 = 17; -+pub const F_OFD_GETLK: u32 = 36; -+pub const F_OFD_SETLK: u32 = 37; -+pub const F_OFD_SETLKW: u32 = 38; -+pub const F_OWNER_TID: u32 = 0; -+pub const F_OWNER_PID: u32 = 1; -+pub const F_OWNER_PGRP: u32 = 2; -+pub const FD_CLOEXEC: u32 = 1; -+pub const F_RDLCK: u32 = 0; -+pub const F_WRLCK: u32 = 1; -+pub const F_UNLCK: u32 = 2; -+pub const F_EXLCK: u32 = 4; -+pub const F_SHLCK: u32 = 8; -+pub const LOCK_SH: u32 = 1; -+pub const LOCK_EX: u32 = 2; -+pub const LOCK_NB: u32 = 4; -+pub const LOCK_UN: u32 = 8; -+pub const LOCK_MAND: u32 = 32; -+pub const LOCK_READ: u32 = 64; -+pub const LOCK_WRITE: u32 = 128; -+pub const LOCK_RW: u32 = 192; -+pub const F_LINUX_SPECIFIC_BASE: u32 = 1024; -+pub const RESOLVE_NO_XDEV: u32 = 1; -+pub const RESOLVE_NO_MAGICLINKS: u32 = 2; -+pub const RESOLVE_NO_SYMLINKS: u32 = 4; -+pub const RESOLVE_BENEATH: u32 = 8; -+pub const RESOLVE_IN_ROOT: u32 = 16; -+pub const RESOLVE_CACHED: u32 = 32; -+pub const F_SETLEASE: u32 = 1024; -+pub const F_GETLEASE: u32 = 1025; -+pub const F_CANCELLK: u32 = 1029; -+pub const F_DUPFD_CLOEXEC: u32 = 1030; -+pub const F_NOTIFY: u32 = 1026; -+pub const F_SETPIPE_SZ: u32 = 1031; -+pub const F_GETPIPE_SZ: u32 = 1032; -+pub const F_ADD_SEALS: u32 = 1033; -+pub const F_GET_SEALS: u32 = 1034; -+pub const F_SEAL_SEAL: u32 = 1; -+pub const F_SEAL_SHRINK: u32 = 2; -+pub const F_SEAL_GROW: u32 = 4; -+pub const F_SEAL_WRITE: u32 = 8; -+pub const F_SEAL_FUTURE_WRITE: u32 = 16; -+pub const F_GET_RW_HINT: u32 = 1035; -+pub const F_SET_RW_HINT: u32 = 1036; -+pub const F_GET_FILE_RW_HINT: u32 = 1037; -+pub const F_SET_FILE_RW_HINT: u32 = 1038; -+pub const RWH_WRITE_LIFE_NOT_SET: u32 = 0; -+pub const RWH_WRITE_LIFE_NONE: u32 = 1; -+pub const RWH_WRITE_LIFE_SHORT: u32 = 2; -+pub const RWH_WRITE_LIFE_MEDIUM: u32 = 3; -+pub const RWH_WRITE_LIFE_LONG: u32 = 4; -+pub const RWH_WRITE_LIFE_EXTREME: u32 = 5; -+pub const RWF_WRITE_LIFE_NOT_SET: u32 = 0; -+pub const DN_ACCESS: u32 = 1; -+pub const DN_MODIFY: u32 = 2; -+pub const DN_CREATE: u32 = 4; -+pub const DN_DELETE: u32 = 8; -+pub const DN_RENAME: u32 = 16; -+pub const DN_ATTRIB: u32 = 32; -+pub const DN_MULTISHOT: u32 = 2147483648; -+pub const AT_FDCWD: i32 = -100; -+pub const AT_SYMLINK_NOFOLLOW: u32 = 256; -+pub const AT_EACCESS: u32 = 512; -+pub const AT_REMOVEDIR: u32 = 512; -+pub const AT_SYMLINK_FOLLOW: u32 = 1024; -+pub const AT_NO_AUTOMOUNT: u32 = 2048; -+pub const AT_EMPTY_PATH: u32 = 4096; -+pub const AT_STATX_SYNC_TYPE: u32 = 24576; -+pub const AT_STATX_SYNC_AS_STAT: u32 = 0; -+pub const AT_STATX_FORCE_SYNC: u32 = 8192; -+pub const AT_STATX_DONT_SYNC: u32 = 16384; -+pub const AT_RECURSIVE: u32 = 32768; -+pub const EPOLL_CLOEXEC: u32 = 524288; -+pub const EPOLL_CTL_ADD: u32 = 1; -+pub const EPOLL_CTL_DEL: u32 = 2; -+pub const EPOLL_CTL_MOD: u32 = 3; -+pub const POSIX_FADV_NORMAL: u32 = 0; -+pub const POSIX_FADV_RANDOM: u32 = 1; -+pub const POSIX_FADV_SEQUENTIAL: u32 = 2; -+pub const POSIX_FADV_WILLNEED: u32 = 3; -+pub const POSIX_FADV_DONTNEED: u32 = 4; -+pub const POSIX_FADV_NOREUSE: u32 = 5; -+pub const FALLOC_FL_KEEP_SIZE: u32 = 1; -+pub const FALLOC_FL_PUNCH_HOLE: u32 = 2; -+pub const FALLOC_FL_NO_HIDE_STALE: u32 = 4; -+pub const FALLOC_FL_COLLAPSE_RANGE: u32 = 8; -+pub const FALLOC_FL_ZERO_RANGE: u32 = 16; -+pub const FALLOC_FL_INSERT_RANGE: u32 = 32; -+pub const FALLOC_FL_UNSHARE_RANGE: u32 = 64; -+pub const NR_OPEN: u32 = 1024; -+pub const NGROUPS_MAX: u32 = 65536; -+pub const ARG_MAX: u32 = 131072; -+pub const LINK_MAX: u32 = 127; -+pub const MAX_CANON: u32 = 255; -+pub const MAX_INPUT: u32 = 255; -+pub const NAME_MAX: u32 = 255; -+pub const PATH_MAX: u32 = 4096; -+pub const PIPE_BUF: u32 = 4096; -+pub const XATTR_NAME_MAX: u32 = 255; -+pub const XATTR_SIZE_MAX: u32 = 65536; -+pub const XATTR_LIST_MAX: u32 = 65536; -+pub const RTSIG_MAX: u32 = 32; -+pub const _IOC_NRBITS: u32 = 8; -+pub const _IOC_TYPEBITS: u32 = 8; -+pub const _IOC_SIZEBITS: u32 = 14; -+pub const _IOC_DIRBITS: u32 = 2; -+pub const _IOC_NRMASK: u32 = 255; -+pub const _IOC_TYPEMASK: u32 = 255; -+pub const _IOC_SIZEMASK: u32 = 16383; -+pub const _IOC_DIRMASK: u32 = 3; -+pub const _IOC_NRSHIFT: u32 = 0; -+pub const _IOC_TYPESHIFT: u32 = 8; -+pub const _IOC_SIZESHIFT: u32 = 16; -+pub const _IOC_DIRSHIFT: u32 = 30; -+pub const _IOC_NONE: u32 = 0; -+pub const _IOC_WRITE: u32 = 1; -+pub const _IOC_READ: u32 = 2; -+pub const IOC_IN: u32 = 1073741824; -+pub const IOC_OUT: u32 = 2147483648; -+pub const IOC_INOUT: u32 = 3221225472; -+pub const IOCSIZE_MASK: u32 = 1073676288; -+pub const IOCSIZE_SHIFT: u32 = 16; -+pub const FSCRYPT_POLICY_FLAGS_PAD_4: u32 = 0; -+pub const FSCRYPT_POLICY_FLAGS_PAD_8: u32 = 1; -+pub const FSCRYPT_POLICY_FLAGS_PAD_16: u32 = 2; -+pub const FSCRYPT_POLICY_FLAGS_PAD_32: u32 = 3; -+pub const FSCRYPT_POLICY_FLAGS_PAD_MASK: u32 = 3; -+pub const FSCRYPT_POLICY_FLAG_DIRECT_KEY: u32 = 4; -+pub const FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64: u32 = 8; -+pub const FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32: u32 = 16; -+pub const FSCRYPT_MODE_AES_256_XTS: u32 = 1; -+pub const FSCRYPT_MODE_AES_256_CTS: u32 = 4; -+pub const FSCRYPT_MODE_AES_128_CBC: u32 = 5; -+pub const FSCRYPT_MODE_AES_128_CTS: u32 = 6; -+pub const FSCRYPT_MODE_SM4_XTS: u32 = 7; -+pub const FSCRYPT_MODE_SM4_CTS: u32 = 8; -+pub const FSCRYPT_MODE_ADIANTUM: u32 = 9; -+pub const FSCRYPT_MODE_AES_256_HCTR2: u32 = 10; -+pub const FSCRYPT_POLICY_V1: u32 = 0; -+pub const FSCRYPT_KEY_DESCRIPTOR_SIZE: u32 = 8; -+pub const FSCRYPT_KEY_DESC_PREFIX: &[u8; 9usize] = b"fscrypt:\0"; -+pub const FSCRYPT_KEY_DESC_PREFIX_SIZE: u32 = 8; -+pub const FSCRYPT_MAX_KEY_SIZE: u32 = 64; -+pub const FSCRYPT_POLICY_V2: u32 = 2; -+pub const FSCRYPT_KEY_IDENTIFIER_SIZE: u32 = 16; -+pub const FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR: u32 = 1; -+pub const FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER: u32 = 2; -+pub const FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY: u32 = 1; -+pub const FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS: u32 = 2; -+pub const FSCRYPT_KEY_STATUS_ABSENT: u32 = 1; -+pub const FSCRYPT_KEY_STATUS_PRESENT: u32 = 2; -+pub const FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED: u32 = 3; -+pub const FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF: u32 = 1; -+pub const FS_KEY_DESCRIPTOR_SIZE: u32 = 8; -+pub const FS_POLICY_FLAGS_PAD_4: u32 = 0; -+pub const FS_POLICY_FLAGS_PAD_8: u32 = 1; -+pub const FS_POLICY_FLAGS_PAD_16: u32 = 2; -+pub const FS_POLICY_FLAGS_PAD_32: u32 = 3; -+pub const FS_POLICY_FLAGS_PAD_MASK: u32 = 3; -+pub const FS_POLICY_FLAG_DIRECT_KEY: u32 = 4; -+pub const FS_POLICY_FLAGS_VALID: u32 = 7; -+pub const FS_ENCRYPTION_MODE_INVALID: u32 = 0; -+pub const FS_ENCRYPTION_MODE_AES_256_XTS: u32 = 1; -+pub const FS_ENCRYPTION_MODE_AES_256_GCM: u32 = 2; -+pub const FS_ENCRYPTION_MODE_AES_256_CBC: u32 = 3; -+pub const FS_ENCRYPTION_MODE_AES_256_CTS: u32 = 4; -+pub const FS_ENCRYPTION_MODE_AES_128_CBC: u32 = 5; -+pub const FS_ENCRYPTION_MODE_AES_128_CTS: u32 = 6; -+pub const FS_ENCRYPTION_MODE_ADIANTUM: u32 = 9; -+pub const FS_KEY_DESC_PREFIX: &[u8; 9usize] = b"fscrypt:\0"; -+pub const FS_KEY_DESC_PREFIX_SIZE: u32 = 8; -+pub const FS_MAX_KEY_SIZE: u32 = 64; -+pub const MS_RDONLY: u32 = 1; -+pub const MS_NOSUID: u32 = 2; -+pub const MS_NODEV: u32 = 4; -+pub const MS_NOEXEC: u32 = 8; -+pub const MS_SYNCHRONOUS: u32 = 16; -+pub const MS_REMOUNT: u32 = 32; -+pub const MS_MANDLOCK: u32 = 64; -+pub const MS_DIRSYNC: u32 = 128; -+pub const MS_NOSYMFOLLOW: u32 = 256; -+pub const MS_NOATIME: u32 = 1024; -+pub const MS_NODIRATIME: u32 = 2048; -+pub const MS_BIND: u32 = 4096; -+pub const MS_MOVE: u32 = 8192; -+pub const MS_REC: u32 = 16384; -+pub const MS_VERBOSE: u32 = 32768; -+pub const MS_SILENT: u32 = 32768; -+pub const MS_POSIXACL: u32 = 65536; -+pub const MS_UNBINDABLE: u32 = 131072; -+pub const MS_PRIVATE: u32 = 262144; -+pub const MS_SLAVE: u32 = 524288; -+pub const MS_SHARED: u32 = 1048576; -+pub const MS_RELATIME: u32 = 2097152; -+pub const MS_KERNMOUNT: u32 = 4194304; -+pub const MS_I_VERSION: u32 = 8388608; -+pub const MS_STRICTATIME: u32 = 16777216; -+pub const MS_LAZYTIME: u32 = 33554432; -+pub const MS_SUBMOUNT: u32 = 67108864; -+pub const MS_NOREMOTELOCK: u32 = 134217728; -+pub const MS_NOSEC: u32 = 268435456; -+pub const MS_BORN: u32 = 536870912; -+pub const MS_ACTIVE: u32 = 1073741824; -+pub const MS_NOUSER: u32 = 2147483648; -+pub const MS_RMT_MASK: u32 = 41943121; -+pub const MS_MGC_VAL: u32 = 3236757504; -+pub const MS_MGC_MSK: u32 = 4294901760; -+pub const OPEN_TREE_CLONE: u32 = 1; -+pub const OPEN_TREE_CLOEXEC: u32 = 524288; -+pub const MOVE_MOUNT_F_SYMLINKS: u32 = 1; -+pub const MOVE_MOUNT_F_AUTOMOUNTS: u32 = 2; -+pub const MOVE_MOUNT_F_EMPTY_PATH: u32 = 4; -+pub const MOVE_MOUNT_T_SYMLINKS: u32 = 16; -+pub const MOVE_MOUNT_T_AUTOMOUNTS: u32 = 32; -+pub const MOVE_MOUNT_T_EMPTY_PATH: u32 = 64; -+pub const MOVE_MOUNT_SET_GROUP: u32 = 256; -+pub const MOVE_MOUNT__MASK: u32 = 375; -+pub const FSOPEN_CLOEXEC: u32 = 1; -+pub const FSPICK_CLOEXEC: u32 = 1; -+pub const FSPICK_SYMLINK_NOFOLLOW: u32 = 2; -+pub const FSPICK_NO_AUTOMOUNT: u32 = 4; -+pub const FSPICK_EMPTY_PATH: u32 = 8; -+pub const FSMOUNT_CLOEXEC: u32 = 1; -+pub const MOUNT_ATTR_RDONLY: u32 = 1; -+pub const MOUNT_ATTR_NOSUID: u32 = 2; -+pub const MOUNT_ATTR_NODEV: u32 = 4; -+pub const MOUNT_ATTR_NOEXEC: u32 = 8; -+pub const MOUNT_ATTR__ATIME: u32 = 112; -+pub const MOUNT_ATTR_RELATIME: u32 = 0; -+pub const MOUNT_ATTR_NOATIME: u32 = 16; -+pub const MOUNT_ATTR_STRICTATIME: u32 = 32; -+pub const MOUNT_ATTR_NODIRATIME: u32 = 128; -+pub const MOUNT_ATTR_IDMAP: u32 = 1048576; -+pub const MOUNT_ATTR_NOSYMFOLLOW: u32 = 2097152; -+pub const MOUNT_ATTR_SIZE_VER0: u32 = 32; -+pub const INR_OPEN_CUR: u32 = 1024; -+pub const INR_OPEN_MAX: u32 = 4096; -+pub const BLOCK_SIZE_BITS: u32 = 10; -+pub const BLOCK_SIZE: u32 = 1024; -+pub const SEEK_SET: u32 = 0; -+pub const SEEK_CUR: u32 = 1; -+pub const SEEK_END: u32 = 2; -+pub const SEEK_DATA: u32 = 3; -+pub const SEEK_HOLE: u32 = 4; -+pub const SEEK_MAX: u32 = 4; -+pub const RENAME_NOREPLACE: u32 = 1; -+pub const RENAME_EXCHANGE: u32 = 2; -+pub const RENAME_WHITEOUT: u32 = 4; -+pub const FILE_DEDUPE_RANGE_SAME: u32 = 0; -+pub const FILE_DEDUPE_RANGE_DIFFERS: u32 = 1; -+pub const NR_FILE: u32 = 8192; -+pub const FS_XFLAG_REALTIME: u32 = 1; -+pub const FS_XFLAG_PREALLOC: u32 = 2; -+pub const FS_XFLAG_IMMUTABLE: u32 = 8; -+pub const FS_XFLAG_APPEND: u32 = 16; -+pub const FS_XFLAG_SYNC: u32 = 32; -+pub const FS_XFLAG_NOATIME: u32 = 64; -+pub const FS_XFLAG_NODUMP: u32 = 128; -+pub const FS_XFLAG_RTINHERIT: u32 = 256; -+pub const FS_XFLAG_PROJINHERIT: u32 = 512; -+pub const FS_XFLAG_NOSYMLINKS: u32 = 1024; -+pub const FS_XFLAG_EXTSIZE: u32 = 2048; -+pub const FS_XFLAG_EXTSZINHERIT: u32 = 4096; -+pub const FS_XFLAG_NODEFRAG: u32 = 8192; -+pub const FS_XFLAG_FILESTREAM: u32 = 16384; -+pub const FS_XFLAG_DAX: u32 = 32768; -+pub const FS_XFLAG_COWEXTSIZE: u32 = 65536; -+pub const FS_XFLAG_HASATTR: u32 = 2147483648; -+pub const BMAP_IOCTL: u32 = 1; -+pub const FSLABEL_MAX: u32 = 256; -+pub const FS_SECRM_FL: u32 = 1; -+pub const FS_UNRM_FL: u32 = 2; -+pub const FS_COMPR_FL: u32 = 4; -+pub const FS_SYNC_FL: u32 = 8; -+pub const FS_IMMUTABLE_FL: u32 = 16; -+pub const FS_APPEND_FL: u32 = 32; -+pub const FS_NODUMP_FL: u32 = 64; -+pub const FS_NOATIME_FL: u32 = 128; -+pub const FS_DIRTY_FL: u32 = 256; -+pub const FS_COMPRBLK_FL: u32 = 512; -+pub const FS_NOCOMP_FL: u32 = 1024; -+pub const FS_ENCRYPT_FL: u32 = 2048; -+pub const FS_BTREE_FL: u32 = 4096; -+pub const FS_INDEX_FL: u32 = 4096; -+pub const FS_IMAGIC_FL: u32 = 8192; -+pub const FS_JOURNAL_DATA_FL: u32 = 16384; -+pub const FS_NOTAIL_FL: u32 = 32768; -+pub const FS_DIRSYNC_FL: u32 = 65536; -+pub const FS_TOPDIR_FL: u32 = 131072; -+pub const FS_HUGE_FILE_FL: u32 = 262144; -+pub const FS_EXTENT_FL: u32 = 524288; -+pub const FS_VERITY_FL: u32 = 1048576; -+pub const FS_EA_INODE_FL: u32 = 2097152; -+pub const FS_EOFBLOCKS_FL: u32 = 4194304; -+pub const FS_NOCOW_FL: u32 = 8388608; -+pub const FS_DAX_FL: u32 = 33554432; -+pub const FS_INLINE_DATA_FL: u32 = 268435456; -+pub const FS_PROJINHERIT_FL: u32 = 536870912; -+pub const FS_CASEFOLD_FL: u32 = 1073741824; -+pub const FS_RESERVED_FL: u32 = 2147483648; -+pub const FS_FL_USER_VISIBLE: u32 = 253951; -+pub const FS_FL_USER_MODIFIABLE: u32 = 229631; -+pub const SYNC_FILE_RANGE_WAIT_BEFORE: u32 = 1; -+pub const SYNC_FILE_RANGE_WRITE: u32 = 2; -+pub const SYNC_FILE_RANGE_WAIT_AFTER: u32 = 4; -+pub const SYNC_FILE_RANGE_WRITE_AND_WAIT: u32 = 7; -+pub const FUTEX_WAIT: u32 = 0; -+pub const FUTEX_WAKE: u32 = 1; -+pub const FUTEX_FD: u32 = 2; -+pub const FUTEX_REQUEUE: u32 = 3; -+pub const FUTEX_CMP_REQUEUE: u32 = 4; -+pub const FUTEX_WAKE_OP: u32 = 5; -+pub const FUTEX_LOCK_PI: u32 = 6; -+pub const FUTEX_UNLOCK_PI: u32 = 7; -+pub const FUTEX_TRYLOCK_PI: u32 = 8; -+pub const FUTEX_WAIT_BITSET: u32 = 9; -+pub const FUTEX_WAKE_BITSET: u32 = 10; -+pub const FUTEX_WAIT_REQUEUE_PI: u32 = 11; -+pub const FUTEX_CMP_REQUEUE_PI: u32 = 12; -+pub const FUTEX_LOCK_PI2: u32 = 13; -+pub const FUTEX_PRIVATE_FLAG: u32 = 128; -+pub const FUTEX_CLOCK_REALTIME: u32 = 256; -+pub const FUTEX_CMD_MASK: i32 = -385; -+pub const FUTEX_WAIT_PRIVATE: u32 = 128; -+pub const FUTEX_WAKE_PRIVATE: u32 = 129; -+pub const FUTEX_REQUEUE_PRIVATE: u32 = 131; -+pub const FUTEX_CMP_REQUEUE_PRIVATE: u32 = 132; -+pub const FUTEX_WAKE_OP_PRIVATE: u32 = 133; -+pub const FUTEX_LOCK_PI_PRIVATE: u32 = 134; -+pub const FUTEX_LOCK_PI2_PRIVATE: u32 = 141; -+pub const FUTEX_UNLOCK_PI_PRIVATE: u32 = 135; -+pub const FUTEX_TRYLOCK_PI_PRIVATE: u32 = 136; -+pub const FUTEX_WAIT_BITSET_PRIVATE: u32 = 137; -+pub const FUTEX_WAKE_BITSET_PRIVATE: u32 = 138; -+pub const FUTEX_WAIT_REQUEUE_PI_PRIVATE: u32 = 139; -+pub const FUTEX_CMP_REQUEUE_PI_PRIVATE: u32 = 140; -+pub const FUTEX_32: u32 = 2; -+pub const FUTEX_WAITV_MAX: u32 = 128; -+pub const FUTEX_WAITERS: u32 = 2147483648; -+pub const FUTEX_OWNER_DIED: u32 = 1073741824; -+pub const FUTEX_TID_MASK: u32 = 1073741823; -+pub const ROBUST_LIST_LIMIT: u32 = 2048; -+pub const FUTEX_BITSET_MATCH_ANY: u32 = 4294967295; -+pub const FUTEX_OP_SET: u32 = 0; -+pub const FUTEX_OP_ADD: u32 = 1; -+pub const FUTEX_OP_OR: u32 = 2; -+pub const FUTEX_OP_ANDN: u32 = 3; -+pub const FUTEX_OP_XOR: u32 = 4; -+pub const FUTEX_OP_OPARG_SHIFT: u32 = 8; -+pub const FUTEX_OP_CMP_EQ: u32 = 0; -+pub const FUTEX_OP_CMP_NE: u32 = 1; -+pub const FUTEX_OP_CMP_LT: u32 = 2; -+pub const FUTEX_OP_CMP_LE: u32 = 3; -+pub const FUTEX_OP_CMP_GT: u32 = 4; -+pub const FUTEX_OP_CMP_GE: u32 = 5; -+pub const __UAPI_DEF_IF_IFCONF: u32 = 1; -+pub const __UAPI_DEF_IF_IFMAP: u32 = 1; -+pub const __UAPI_DEF_IF_IFNAMSIZ: u32 = 1; -+pub const __UAPI_DEF_IF_IFREQ: u32 = 1; -+pub const __UAPI_DEF_IF_NET_DEVICE_FLAGS: u32 = 1; -+pub const __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO: u32 = 1; -+pub const __UAPI_DEF_IN_ADDR: u32 = 1; -+pub const __UAPI_DEF_IN_IPPROTO: u32 = 1; -+pub const __UAPI_DEF_IN_PKTINFO: u32 = 1; -+pub const __UAPI_DEF_IP_MREQ: u32 = 1; -+pub const __UAPI_DEF_SOCKADDR_IN: u32 = 1; -+pub const __UAPI_DEF_IN_CLASS: u32 = 1; -+pub const __UAPI_DEF_IN6_ADDR: u32 = 1; -+pub const __UAPI_DEF_IN6_ADDR_ALT: u32 = 1; -+pub const __UAPI_DEF_SOCKADDR_IN6: u32 = 1; -+pub const __UAPI_DEF_IPV6_MREQ: u32 = 1; -+pub const __UAPI_DEF_IPPROTO_V6: u32 = 1; -+pub const __UAPI_DEF_IPV6_OPTIONS: u32 = 1; -+pub const __UAPI_DEF_IN6_PKTINFO: u32 = 1; -+pub const __UAPI_DEF_IP6_MTUINFO: u32 = 1; -+pub const __UAPI_DEF_SOCKADDR_IPX: u32 = 1; -+pub const __UAPI_DEF_IPX_ROUTE_DEFINITION: u32 = 1; -+pub const __UAPI_DEF_IPX_INTERFACE_DEFINITION: u32 = 1; -+pub const __UAPI_DEF_IPX_CONFIG_DATA: u32 = 1; -+pub const __UAPI_DEF_IPX_ROUTE_DEF: u32 = 1; -+pub const __UAPI_DEF_XATTR: u32 = 1; -+pub const _K_SS_MAXSIZE: u32 = 128; -+pub const SOCK_SNDBUF_LOCK: u32 = 1; -+pub const SOCK_RCVBUF_LOCK: u32 = 2; -+pub const SOCK_BUF_LOCK_MASK: u32 = 3; -+pub const SOCK_TXREHASH_DEFAULT: u32 = 255; -+pub const SOCK_TXREHASH_DISABLED: u32 = 0; -+pub const SOCK_TXREHASH_ENABLED: u32 = 1; -+pub const IP_TOS: u32 = 1; -+pub const IP_TTL: u32 = 2; -+pub const IP_HDRINCL: u32 = 3; -+pub const IP_OPTIONS: u32 = 4; -+pub const IP_ROUTER_ALERT: u32 = 5; -+pub const IP_RECVOPTS: u32 = 6; -+pub const IP_RETOPTS: u32 = 7; -+pub const IP_PKTINFO: u32 = 8; -+pub const IP_PKTOPTIONS: u32 = 9; -+pub const IP_MTU_DISCOVER: u32 = 10; -+pub const IP_RECVERR: u32 = 11; -+pub const IP_RECVTTL: u32 = 12; -+pub const IP_RECVTOS: u32 = 13; -+pub const IP_MTU: u32 = 14; -+pub const IP_FREEBIND: u32 = 15; -+pub const IP_IPSEC_POLICY: u32 = 16; -+pub const IP_XFRM_POLICY: u32 = 17; -+pub const IP_PASSSEC: u32 = 18; -+pub const IP_TRANSPARENT: u32 = 19; -+pub const IP_RECVRETOPTS: u32 = 7; -+pub const IP_ORIGDSTADDR: u32 = 20; -+pub const IP_RECVORIGDSTADDR: u32 = 20; -+pub const IP_MINTTL: u32 = 21; -+pub const IP_NODEFRAG: u32 = 22; -+pub const IP_CHECKSUM: u32 = 23; -+pub const IP_BIND_ADDRESS_NO_PORT: u32 = 24; -+pub const IP_RECVFRAGSIZE: u32 = 25; -+pub const IP_RECVERR_RFC4884: u32 = 26; -+pub const IP_PMTUDISC_DONT: u32 = 0; -+pub const IP_PMTUDISC_WANT: u32 = 1; -+pub const IP_PMTUDISC_DO: u32 = 2; -+pub const IP_PMTUDISC_PROBE: u32 = 3; -+pub const IP_PMTUDISC_INTERFACE: u32 = 4; -+pub const IP_PMTUDISC_OMIT: u32 = 5; -+pub const IP_MULTICAST_IF: u32 = 32; -+pub const IP_MULTICAST_TTL: u32 = 33; -+pub const IP_MULTICAST_LOOP: u32 = 34; -+pub const IP_ADD_MEMBERSHIP: u32 = 35; -+pub const IP_DROP_MEMBERSHIP: u32 = 36; -+pub const IP_UNBLOCK_SOURCE: u32 = 37; -+pub const IP_BLOCK_SOURCE: u32 = 38; -+pub const IP_ADD_SOURCE_MEMBERSHIP: u32 = 39; -+pub const IP_DROP_SOURCE_MEMBERSHIP: u32 = 40; -+pub const IP_MSFILTER: u32 = 41; -+pub const MCAST_JOIN_GROUP: u32 = 42; -+pub const MCAST_BLOCK_SOURCE: u32 = 43; -+pub const MCAST_UNBLOCK_SOURCE: u32 = 44; -+pub const MCAST_LEAVE_GROUP: u32 = 45; -+pub const MCAST_JOIN_SOURCE_GROUP: u32 = 46; -+pub const MCAST_LEAVE_SOURCE_GROUP: u32 = 47; -+pub const MCAST_MSFILTER: u32 = 48; -+pub const IP_MULTICAST_ALL: u32 = 49; -+pub const IP_UNICAST_IF: u32 = 50; -+pub const MCAST_EXCLUDE: u32 = 0; -+pub const MCAST_INCLUDE: u32 = 1; -+pub const IP_DEFAULT_MULTICAST_TTL: u32 = 1; -+pub const IP_DEFAULT_MULTICAST_LOOP: u32 = 1; -+pub const __SOCK_SIZE__: u32 = 16; -+pub const IN_CLASSA_NET: u32 = 4278190080; -+pub const IN_CLASSA_NSHIFT: u32 = 24; -+pub const IN_CLASSA_HOST: u32 = 16777215; -+pub const IN_CLASSA_MAX: u32 = 128; -+pub const IN_CLASSB_NET: u32 = 4294901760; -+pub const IN_CLASSB_NSHIFT: u32 = 16; -+pub const IN_CLASSB_HOST: u32 = 65535; -+pub const IN_CLASSB_MAX: u32 = 65536; -+pub const IN_CLASSC_NET: u32 = 4294967040; -+pub const IN_CLASSC_NSHIFT: u32 = 8; -+pub const IN_CLASSC_HOST: u32 = 255; -+pub const IN_MULTICAST_NET: u32 = 3758096384; -+pub const IN_CLASSE_NET: u32 = 4294967295; -+pub const IN_CLASSE_NSHIFT: u32 = 0; -+pub const IN_LOOPBACKNET: u32 = 127; -+pub const INADDR_LOOPBACK: u32 = 2130706433; -+pub const INADDR_UNSPEC_GROUP: u32 = 3758096384; -+pub const INADDR_ALLHOSTS_GROUP: u32 = 3758096385; -+pub const INADDR_ALLRTRS_GROUP: u32 = 3758096386; -+pub const INADDR_ALLSNOOPERS_GROUP: u32 = 3758096490; -+pub const INADDR_MAX_LOCAL_GROUP: u32 = 3758096639; -+pub const __LITTLE_ENDIAN: u32 = 1234; -+pub const IN_ACCESS: u32 = 1; -+pub const IN_MODIFY: u32 = 2; -+pub const IN_ATTRIB: u32 = 4; -+pub const IN_CLOSE_WRITE: u32 = 8; -+pub const IN_CLOSE_NOWRITE: u32 = 16; -+pub const IN_OPEN: u32 = 32; -+pub const IN_MOVED_FROM: u32 = 64; -+pub const IN_MOVED_TO: u32 = 128; -+pub const IN_CREATE: u32 = 256; -+pub const IN_DELETE: u32 = 512; -+pub const IN_DELETE_SELF: u32 = 1024; -+pub const IN_MOVE_SELF: u32 = 2048; -+pub const IN_UNMOUNT: u32 = 8192; -+pub const IN_Q_OVERFLOW: u32 = 16384; -+pub const IN_IGNORED: u32 = 32768; -+pub const IN_CLOSE: u32 = 24; -+pub const IN_MOVE: u32 = 192; -+pub const IN_ONLYDIR: u32 = 16777216; -+pub const IN_DONT_FOLLOW: u32 = 33554432; -+pub const IN_EXCL_UNLINK: u32 = 67108864; -+pub const IN_MASK_CREATE: u32 = 268435456; -+pub const IN_MASK_ADD: u32 = 536870912; -+pub const IN_ISDIR: u32 = 1073741824; -+pub const IN_ONESHOT: u32 = 2147483648; -+pub const IN_ALL_EVENTS: u32 = 4095; -+pub const IN_CLOEXEC: u32 = 524288; -+pub const IN_NONBLOCK: u32 = 2048; -+pub const IPTOS_TOS_MASK: u32 = 30; -+pub const IPTOS_LOWDELAY: u32 = 16; -+pub const IPTOS_THROUGHPUT: u32 = 8; -+pub const IPTOS_RELIABILITY: u32 = 4; -+pub const IPTOS_MINCOST: u32 = 2; -+pub const IPTOS_PREC_MASK: u32 = 224; -+pub const IPTOS_PREC_NETCONTROL: u32 = 224; -+pub const IPTOS_PREC_INTERNETCONTROL: u32 = 192; -+pub const IPTOS_PREC_CRITIC_ECP: u32 = 160; -+pub const IPTOS_PREC_FLASHOVERRIDE: u32 = 128; -+pub const IPTOS_PREC_FLASH: u32 = 96; -+pub const IPTOS_PREC_IMMEDIATE: u32 = 64; -+pub const IPTOS_PREC_PRIORITY: u32 = 32; -+pub const IPTOS_PREC_ROUTINE: u32 = 0; -+pub const IPOPT_COPY: u32 = 128; -+pub const IPOPT_CLASS_MASK: u32 = 96; -+pub const IPOPT_NUMBER_MASK: u32 = 31; -+pub const IPOPT_CONTROL: u32 = 0; -+pub const IPOPT_RESERVED1: u32 = 32; -+pub const IPOPT_MEASUREMENT: u32 = 64; -+pub const IPOPT_RESERVED2: u32 = 96; -+pub const IPOPT_END: u32 = 0; -+pub const IPOPT_NOOP: u32 = 1; -+pub const IPOPT_SEC: u32 = 130; -+pub const IPOPT_LSRR: u32 = 131; -+pub const IPOPT_TIMESTAMP: u32 = 68; -+pub const IPOPT_CIPSO: u32 = 134; -+pub const IPOPT_RR: u32 = 7; -+pub const IPOPT_SID: u32 = 136; -+pub const IPOPT_SSRR: u32 = 137; -+pub const IPOPT_RA: u32 = 148; -+pub const IPVERSION: u32 = 4; -+pub const MAXTTL: u32 = 255; -+pub const IPDEFTTL: u32 = 64; -+pub const IPOPT_OPTVAL: u32 = 0; -+pub const IPOPT_OLEN: u32 = 1; -+pub const IPOPT_OFFSET: u32 = 2; -+pub const IPOPT_MINOFF: u32 = 4; -+pub const MAX_IPOPTLEN: u32 = 40; -+pub const IPOPT_NOP: u32 = 1; -+pub const IPOPT_EOL: u32 = 0; -+pub const IPOPT_TS: u32 = 68; -+pub const IPOPT_TS_TSONLY: u32 = 0; -+pub const IPOPT_TS_TSANDADDR: u32 = 1; -+pub const IPOPT_TS_PRESPEC: u32 = 3; -+pub const IPV4_BEET_PHMAXLEN: u32 = 8; -+pub const IPV6_FL_A_GET: u32 = 0; -+pub const IPV6_FL_A_PUT: u32 = 1; -+pub const IPV6_FL_A_RENEW: u32 = 2; -+pub const IPV6_FL_F_CREATE: u32 = 1; -+pub const IPV6_FL_F_EXCL: u32 = 2; -+pub const IPV6_FL_F_REFLECT: u32 = 4; -+pub const IPV6_FL_F_REMOTE: u32 = 8; -+pub const IPV6_FL_S_NONE: u32 = 0; -+pub const IPV6_FL_S_EXCL: u32 = 1; -+pub const IPV6_FL_S_PROCESS: u32 = 2; -+pub const IPV6_FL_S_USER: u32 = 3; -+pub const IPV6_FL_S_ANY: u32 = 255; -+pub const IPV6_FLOWINFO_FLOWLABEL: u32 = 1048575; -+pub const IPV6_FLOWINFO_PRIORITY: u32 = 267386880; -+pub const IPV6_PRIORITY_UNCHARACTERIZED: u32 = 0; -+pub const IPV6_PRIORITY_FILLER: u32 = 256; -+pub const IPV6_PRIORITY_UNATTENDED: u32 = 512; -+pub const IPV6_PRIORITY_RESERVED1: u32 = 768; -+pub const IPV6_PRIORITY_BULK: u32 = 1024; -+pub const IPV6_PRIORITY_RESERVED2: u32 = 1280; -+pub const IPV6_PRIORITY_INTERACTIVE: u32 = 1536; -+pub const IPV6_PRIORITY_CONTROL: u32 = 1792; -+pub const IPV6_PRIORITY_8: u32 = 2048; -+pub const IPV6_PRIORITY_9: u32 = 2304; -+pub const IPV6_PRIORITY_10: u32 = 2560; -+pub const IPV6_PRIORITY_11: u32 = 2816; -+pub const IPV6_PRIORITY_12: u32 = 3072; -+pub const IPV6_PRIORITY_13: u32 = 3328; -+pub const IPV6_PRIORITY_14: u32 = 3584; -+pub const IPV6_PRIORITY_15: u32 = 3840; -+pub const IPPROTO_HOPOPTS: u32 = 0; -+pub const IPPROTO_ROUTING: u32 = 43; -+pub const IPPROTO_FRAGMENT: u32 = 44; -+pub const IPPROTO_ICMPV6: u32 = 58; -+pub const IPPROTO_NONE: u32 = 59; -+pub const IPPROTO_DSTOPTS: u32 = 60; -+pub const IPPROTO_MH: u32 = 135; -+pub const IPV6_TLV_PAD1: u32 = 0; -+pub const IPV6_TLV_PADN: u32 = 1; -+pub const IPV6_TLV_ROUTERALERT: u32 = 5; -+pub const IPV6_TLV_CALIPSO: u32 = 7; -+pub const IPV6_TLV_IOAM: u32 = 49; -+pub const IPV6_TLV_JUMBO: u32 = 194; -+pub const IPV6_TLV_HAO: u32 = 201; -+pub const IPV6_ADDRFORM: u32 = 1; -+pub const IPV6_2292PKTINFO: u32 = 2; -+pub const IPV6_2292HOPOPTS: u32 = 3; -+pub const IPV6_2292DSTOPTS: u32 = 4; -+pub const IPV6_2292RTHDR: u32 = 5; -+pub const IPV6_2292PKTOPTIONS: u32 = 6; -+pub const IPV6_CHECKSUM: u32 = 7; -+pub const IPV6_2292HOPLIMIT: u32 = 8; -+pub const IPV6_NEXTHOP: u32 = 9; -+pub const IPV6_AUTHHDR: u32 = 10; -+pub const IPV6_FLOWINFO: u32 = 11; -+pub const IPV6_UNICAST_HOPS: u32 = 16; -+pub const IPV6_MULTICAST_IF: u32 = 17; -+pub const IPV6_MULTICAST_HOPS: u32 = 18; -+pub const IPV6_MULTICAST_LOOP: u32 = 19; -+pub const IPV6_ADD_MEMBERSHIP: u32 = 20; -+pub const IPV6_DROP_MEMBERSHIP: u32 = 21; -+pub const IPV6_ROUTER_ALERT: u32 = 22; -+pub const IPV6_MTU_DISCOVER: u32 = 23; -+pub const IPV6_MTU: u32 = 24; -+pub const IPV6_RECVERR: u32 = 25; -+pub const IPV6_V6ONLY: u32 = 26; -+pub const IPV6_JOIN_ANYCAST: u32 = 27; -+pub const IPV6_LEAVE_ANYCAST: u32 = 28; -+pub const IPV6_MULTICAST_ALL: u32 = 29; -+pub const IPV6_ROUTER_ALERT_ISOLATE: u32 = 30; -+pub const IPV6_RECVERR_RFC4884: u32 = 31; -+pub const IPV6_PMTUDISC_DONT: u32 = 0; -+pub const IPV6_PMTUDISC_WANT: u32 = 1; -+pub const IPV6_PMTUDISC_DO: u32 = 2; -+pub const IPV6_PMTUDISC_PROBE: u32 = 3; -+pub const IPV6_PMTUDISC_INTERFACE: u32 = 4; -+pub const IPV6_PMTUDISC_OMIT: u32 = 5; -+pub const IPV6_FLOWLABEL_MGR: u32 = 32; -+pub const IPV6_FLOWINFO_SEND: u32 = 33; -+pub const IPV6_IPSEC_POLICY: u32 = 34; -+pub const IPV6_XFRM_POLICY: u32 = 35; -+pub const IPV6_HDRINCL: u32 = 36; -+pub const IPV6_RECVPKTINFO: u32 = 49; -+pub const IPV6_PKTINFO: u32 = 50; -+pub const IPV6_RECVHOPLIMIT: u32 = 51; -+pub const IPV6_HOPLIMIT: u32 = 52; -+pub const IPV6_RECVHOPOPTS: u32 = 53; -+pub const IPV6_HOPOPTS: u32 = 54; -+pub const IPV6_RTHDRDSTOPTS: u32 = 55; -+pub const IPV6_RECVRTHDR: u32 = 56; -+pub const IPV6_RTHDR: u32 = 57; -+pub const IPV6_RECVDSTOPTS: u32 = 58; -+pub const IPV6_DSTOPTS: u32 = 59; -+pub const IPV6_RECVPATHMTU: u32 = 60; -+pub const IPV6_PATHMTU: u32 = 61; -+pub const IPV6_DONTFRAG: u32 = 62; -+pub const IPV6_RECVTCLASS: u32 = 66; -+pub const IPV6_TCLASS: u32 = 67; -+pub const IPV6_AUTOFLOWLABEL: u32 = 70; -+pub const IPV6_ADDR_PREFERENCES: u32 = 72; -+pub const IPV6_PREFER_SRC_TMP: u32 = 1; -+pub const IPV6_PREFER_SRC_PUBLIC: u32 = 2; -+pub const IPV6_PREFER_SRC_PUBTMP_DEFAULT: u32 = 256; -+pub const IPV6_PREFER_SRC_COA: u32 = 4; -+pub const IPV6_PREFER_SRC_HOME: u32 = 1024; -+pub const IPV6_PREFER_SRC_CGA: u32 = 8; -+pub const IPV6_PREFER_SRC_NONCGA: u32 = 2048; -+pub const IPV6_MINHOPCOUNT: u32 = 73; -+pub const IPV6_ORIGDSTADDR: u32 = 74; -+pub const IPV6_RECVORIGDSTADDR: u32 = 74; -+pub const IPV6_TRANSPARENT: u32 = 75; -+pub const IPV6_UNICAST_IF: u32 = 76; -+pub const IPV6_RECVFRAGSIZE: u32 = 77; -+pub const IPV6_FREEBIND: u32 = 78; -+pub const IPV6_MIN_MTU: u32 = 1280; -+pub const IPV6_SRCRT_STRICT: u32 = 1; -+pub const IPV6_SRCRT_TYPE_0: u32 = 0; -+pub const IPV6_SRCRT_TYPE_2: u32 = 2; -+pub const IPV6_SRCRT_TYPE_3: u32 = 3; -+pub const IPV6_SRCRT_TYPE_4: u32 = 4; -+pub const IPV6_OPT_ROUTERALERT_MLD: u32 = 0; -+pub const ADFS_SUPER_MAGIC: u32 = 44533; -+pub const AFFS_SUPER_MAGIC: u32 = 44543; -+pub const AFS_SUPER_MAGIC: u32 = 1397113167; -+pub const AUTOFS_SUPER_MAGIC: u32 = 391; -+pub const CEPH_SUPER_MAGIC: u32 = 12805120; -+pub const CODA_SUPER_MAGIC: u32 = 1937076805; -+pub const CRAMFS_MAGIC: u32 = 684539205; -+pub const CRAMFS_MAGIC_WEND: u32 = 1161678120; -+pub const DEBUGFS_MAGIC: u32 = 1684170528; -+pub const SECURITYFS_MAGIC: u32 = 1935894131; -+pub const SELINUX_MAGIC: u32 = 4185718668; -+pub const SMACK_MAGIC: u32 = 1128357203; -+pub const RAMFS_MAGIC: u32 = 2240043254; -+pub const TMPFS_MAGIC: u32 = 16914836; -+pub const HUGETLBFS_MAGIC: u32 = 2508478710; -+pub const SQUASHFS_MAGIC: u32 = 1936814952; -+pub const ECRYPTFS_SUPER_MAGIC: u32 = 61791; -+pub const EFS_SUPER_MAGIC: u32 = 4278867; -+pub const EROFS_SUPER_MAGIC_V1: u32 = 3774210530; -+pub const EXT2_SUPER_MAGIC: u32 = 61267; -+pub const EXT3_SUPER_MAGIC: u32 = 61267; -+pub const XENFS_SUPER_MAGIC: u32 = 2881100148; -+pub const EXT4_SUPER_MAGIC: u32 = 61267; -+pub const BTRFS_SUPER_MAGIC: u32 = 2435016766; -+pub const NILFS_SUPER_MAGIC: u32 = 13364; -+pub const F2FS_SUPER_MAGIC: u32 = 4076150800; -+pub const HPFS_SUPER_MAGIC: u32 = 4187351113; -+pub const ISOFS_SUPER_MAGIC: u32 = 38496; -+pub const JFFS2_SUPER_MAGIC: u32 = 29366; -+pub const XFS_SUPER_MAGIC: u32 = 1481003842; -+pub const PSTOREFS_MAGIC: u32 = 1634035564; -+pub const EFIVARFS_MAGIC: u32 = 3730735588; -+pub const HOSTFS_SUPER_MAGIC: u32 = 12648430; -+pub const OVERLAYFS_SUPER_MAGIC: u32 = 2035054128; -+pub const FUSE_SUPER_MAGIC: u32 = 1702057286; -+pub const MINIX_SUPER_MAGIC: u32 = 4991; -+pub const MINIX_SUPER_MAGIC2: u32 = 5007; -+pub const MINIX2_SUPER_MAGIC: u32 = 9320; -+pub const MINIX2_SUPER_MAGIC2: u32 = 9336; -+pub const MINIX3_SUPER_MAGIC: u32 = 19802; -+pub const MSDOS_SUPER_MAGIC: u32 = 19780; -+pub const EXFAT_SUPER_MAGIC: u32 = 538032816; -+pub const NCP_SUPER_MAGIC: u32 = 22092; -+pub const NFS_SUPER_MAGIC: u32 = 26985; -+pub const OCFS2_SUPER_MAGIC: u32 = 1952539503; -+pub const OPENPROM_SUPER_MAGIC: u32 = 40865; -+pub const QNX4_SUPER_MAGIC: u32 = 47; -+pub const QNX6_SUPER_MAGIC: u32 = 1746473250; -+pub const AFS_FS_MAGIC: u32 = 1799439955; -+pub const REISERFS_SUPER_MAGIC: u32 = 1382369651; -+pub const REISERFS_SUPER_MAGIC_STRING: &[u8; 9usize] = b"ReIsErFs\0"; -+pub const REISER2FS_SUPER_MAGIC_STRING: &[u8; 10usize] = b"ReIsEr2Fs\0"; -+pub const REISER2FS_JR_SUPER_MAGIC_STRING: &[u8; 10usize] = b"ReIsEr3Fs\0"; -+pub const SMB_SUPER_MAGIC: u32 = 20859; -+pub const CIFS_SUPER_MAGIC: u32 = 4283649346; -+pub const SMB2_SUPER_MAGIC: u32 = 4266872130; -+pub const CGROUP_SUPER_MAGIC: u32 = 2613483; -+pub const CGROUP2_SUPER_MAGIC: u32 = 1667723888; -+pub const RDTGROUP_SUPER_MAGIC: u32 = 124082209; -+pub const STACK_END_MAGIC: u32 = 1470918301; -+pub const TRACEFS_MAGIC: u32 = 1953653091; -+pub const V9FS_MAGIC: u32 = 16914839; -+pub const BDEVFS_MAGIC: u32 = 1650746742; -+pub const DAXFS_MAGIC: u32 = 1684300152; -+pub const BINFMTFS_MAGIC: u32 = 1112100429; -+pub const DEVPTS_SUPER_MAGIC: u32 = 7377; -+pub const BINDERFS_SUPER_MAGIC: u32 = 1819242352; -+pub const FUTEXFS_SUPER_MAGIC: u32 = 195894762; -+pub const PIPEFS_MAGIC: u32 = 1346981957; -+pub const PROC_SUPER_MAGIC: u32 = 40864; -+pub const SOCKFS_MAGIC: u32 = 1397703499; -+pub const SYSFS_MAGIC: u32 = 1650812274; -+pub const USBDEVICE_SUPER_MAGIC: u32 = 40866; -+pub const MTD_INODE_FS_MAGIC: u32 = 288389204; -+pub const ANON_INODE_FS_MAGIC: u32 = 151263540; -+pub const BTRFS_TEST_MAGIC: u32 = 1936880249; -+pub const NSFS_MAGIC: u32 = 1853056627; -+pub const BPF_FS_MAGIC: u32 = 3405662737; -+pub const AAFS_MAGIC: u32 = 1513908720; -+pub const ZONEFS_MAGIC: u32 = 1515144787; -+pub const UDF_SUPER_MAGIC: u32 = 352400198; -+pub const DMA_BUF_MAGIC: u32 = 1145913666; -+pub const DEVMEM_MAGIC: u32 = 1162691661; -+pub const SECRETMEM_MAGIC: u32 = 1397048141; -+pub const PROT_READ: u32 = 1; -+pub const PROT_WRITE: u32 = 2; -+pub const PROT_EXEC: u32 = 4; -+pub const PROT_SEM: u32 = 8; -+pub const PROT_NONE: u32 = 0; -+pub const PROT_GROWSDOWN: u32 = 16777216; -+pub const PROT_GROWSUP: u32 = 33554432; -+pub const MAP_TYPE: u32 = 15; -+pub const MAP_FIXED: u32 = 16; -+pub const MAP_ANONYMOUS: u32 = 32; -+pub const MAP_POPULATE: u32 = 32768; -+pub const MAP_NONBLOCK: u32 = 65536; -+pub const MAP_STACK: u32 = 131072; -+pub const MAP_HUGETLB: u32 = 262144; -+pub const MAP_SYNC: u32 = 524288; -+pub const MAP_FIXED_NOREPLACE: u32 = 1048576; -+pub const MAP_UNINITIALIZED: u32 = 67108864; -+pub const MLOCK_ONFAULT: u32 = 1; -+pub const MS_ASYNC: u32 = 1; -+pub const MS_INVALIDATE: u32 = 2; -+pub const MS_SYNC: u32 = 4; -+pub const MADV_NORMAL: u32 = 0; -+pub const MADV_RANDOM: u32 = 1; -+pub const MADV_SEQUENTIAL: u32 = 2; -+pub const MADV_WILLNEED: u32 = 3; -+pub const MADV_DONTNEED: u32 = 4; -+pub const MADV_FREE: u32 = 8; -+pub const MADV_REMOVE: u32 = 9; -+pub const MADV_DONTFORK: u32 = 10; -+pub const MADV_DOFORK: u32 = 11; -+pub const MADV_HWPOISON: u32 = 100; -+pub const MADV_SOFT_OFFLINE: u32 = 101; -+pub const MADV_MERGEABLE: u32 = 12; -+pub const MADV_UNMERGEABLE: u32 = 13; -+pub const MADV_HUGEPAGE: u32 = 14; -+pub const MADV_NOHUGEPAGE: u32 = 15; -+pub const MADV_DONTDUMP: u32 = 16; -+pub const MADV_DODUMP: u32 = 17; -+pub const MADV_WIPEONFORK: u32 = 18; -+pub const MADV_KEEPONFORK: u32 = 19; -+pub const MADV_COLD: u32 = 20; -+pub const MADV_PAGEOUT: u32 = 21; -+pub const MADV_POPULATE_READ: u32 = 22; -+pub const MADV_POPULATE_WRITE: u32 = 23; -+pub const MADV_DONTNEED_LOCKED: u32 = 24; -+pub const MADV_COLLAPSE: u32 = 25; -+pub const MAP_FILE: u32 = 0; -+pub const PKEY_DISABLE_ACCESS: u32 = 1; -+pub const PKEY_DISABLE_WRITE: u32 = 2; -+pub const PKEY_ACCESS_MASK: u32 = 3; -+pub const MAP_GROWSDOWN: u32 = 256; -+pub const MAP_DENYWRITE: u32 = 2048; -+pub const MAP_EXECUTABLE: u32 = 4096; -+pub const MAP_LOCKED: u32 = 8192; -+pub const MAP_NORESERVE: u32 = 16384; -+pub const MCL_CURRENT: u32 = 1; -+pub const MCL_FUTURE: u32 = 2; -+pub const MCL_ONFAULT: u32 = 4; -+pub const HUGETLB_FLAG_ENCODE_SHIFT: u32 = 26; -+pub const HUGETLB_FLAG_ENCODE_MASK: u32 = 63; -+pub const HUGETLB_FLAG_ENCODE_16KB: u32 = 939524096; -+pub const HUGETLB_FLAG_ENCODE_64KB: u32 = 1073741824; -+pub const HUGETLB_FLAG_ENCODE_512KB: u32 = 1275068416; -+pub const HUGETLB_FLAG_ENCODE_1MB: u32 = 1342177280; -+pub const HUGETLB_FLAG_ENCODE_2MB: u32 = 1409286144; -+pub const HUGETLB_FLAG_ENCODE_8MB: u32 = 1543503872; -+pub const HUGETLB_FLAG_ENCODE_16MB: u32 = 1610612736; -+pub const HUGETLB_FLAG_ENCODE_32MB: u32 = 1677721600; -+pub const HUGETLB_FLAG_ENCODE_256MB: u32 = 1879048192; -+pub const HUGETLB_FLAG_ENCODE_512MB: u32 = 1946157056; -+pub const HUGETLB_FLAG_ENCODE_1GB: u32 = 2013265920; -+pub const HUGETLB_FLAG_ENCODE_2GB: u32 = 2080374784; -+pub const HUGETLB_FLAG_ENCODE_16GB: u32 = 2281701376; -+pub const MREMAP_MAYMOVE: u32 = 1; -+pub const MREMAP_FIXED: u32 = 2; -+pub const MREMAP_DONTUNMAP: u32 = 4; -+pub const OVERCOMMIT_GUESS: u32 = 0; -+pub const OVERCOMMIT_ALWAYS: u32 = 1; -+pub const OVERCOMMIT_NEVER: u32 = 2; -+pub const MAP_SHARED: u32 = 1; -+pub const MAP_PRIVATE: u32 = 2; -+pub const MAP_SHARED_VALIDATE: u32 = 3; -+pub const MAP_HUGE_SHIFT: u32 = 26; -+pub const MAP_HUGE_MASK: u32 = 63; -+pub const MAP_HUGE_16KB: u32 = 939524096; -+pub const MAP_HUGE_64KB: u32 = 1073741824; -+pub const MAP_HUGE_512KB: u32 = 1275068416; -+pub const MAP_HUGE_1MB: u32 = 1342177280; -+pub const MAP_HUGE_2MB: u32 = 1409286144; -+pub const MAP_HUGE_8MB: u32 = 1543503872; -+pub const MAP_HUGE_16MB: u32 = 1610612736; -+pub const MAP_HUGE_32MB: u32 = 1677721600; -+pub const MAP_HUGE_256MB: u32 = 1879048192; -+pub const MAP_HUGE_512MB: u32 = 1946157056; -+pub const MAP_HUGE_1GB: u32 = 2013265920; -+pub const MAP_HUGE_2GB: u32 = 2080374784; -+pub const MAP_HUGE_16GB: u32 = 2281701376; -+pub const SIOCGSTAMP_OLD: u32 = 35078; -+pub const SIOCGSTAMPNS_OLD: u32 = 35079; -+pub const SOL_SOCKET: u32 = 1; -+pub const SO_DEBUG: u32 = 1; -+pub const SO_REUSEADDR: u32 = 2; -+pub const SO_TYPE: u32 = 3; -+pub const SO_ERROR: u32 = 4; -+pub const SO_DONTROUTE: u32 = 5; -+pub const SO_BROADCAST: u32 = 6; -+pub const SO_SNDBUF: u32 = 7; -+pub const SO_RCVBUF: u32 = 8; -+pub const SO_SNDBUFFORCE: u32 = 32; -+pub const SO_RCVBUFFORCE: u32 = 33; -+pub const SO_KEEPALIVE: u32 = 9; -+pub const SO_OOBINLINE: u32 = 10; -+pub const SO_NO_CHECK: u32 = 11; -+pub const SO_PRIORITY: u32 = 12; -+pub const SO_LINGER: u32 = 13; -+pub const SO_BSDCOMPAT: u32 = 14; -+pub const SO_REUSEPORT: u32 = 15; -+pub const SO_PASSCRED: u32 = 16; -+pub const SO_PEERCRED: u32 = 17; -+pub const SO_RCVLOWAT: u32 = 18; -+pub const SO_SNDLOWAT: u32 = 19; -+pub const SO_RCVTIMEO_OLD: u32 = 20; -+pub const SO_SNDTIMEO_OLD: u32 = 21; -+pub const SO_SECURITY_AUTHENTICATION: u32 = 22; -+pub const SO_SECURITY_ENCRYPTION_TRANSPORT: u32 = 23; -+pub const SO_SECURITY_ENCRYPTION_NETWORK: u32 = 24; -+pub const SO_BINDTODEVICE: u32 = 25; -+pub const SO_ATTACH_FILTER: u32 = 26; -+pub const SO_DETACH_FILTER: u32 = 27; -+pub const SO_GET_FILTER: u32 = 26; -+pub const SO_PEERNAME: u32 = 28; -+pub const SO_ACCEPTCONN: u32 = 30; -+pub const SO_PEERSEC: u32 = 31; -+pub const SO_PASSSEC: u32 = 34; -+pub const SO_MARK: u32 = 36; -+pub const SO_PROTOCOL: u32 = 38; -+pub const SO_DOMAIN: u32 = 39; -+pub const SO_RXQ_OVFL: u32 = 40; -+pub const SO_WIFI_STATUS: u32 = 41; -+pub const SCM_WIFI_STATUS: u32 = 41; -+pub const SO_PEEK_OFF: u32 = 42; -+pub const SO_NOFCS: u32 = 43; -+pub const SO_LOCK_FILTER: u32 = 44; -+pub const SO_SELECT_ERR_QUEUE: u32 = 45; -+pub const SO_BUSY_POLL: u32 = 46; -+pub const SO_MAX_PACING_RATE: u32 = 47; -+pub const SO_BPF_EXTENSIONS: u32 = 48; -+pub const SO_INCOMING_CPU: u32 = 49; -+pub const SO_ATTACH_BPF: u32 = 50; -+pub const SO_DETACH_BPF: u32 = 27; -+pub const SO_ATTACH_REUSEPORT_CBPF: u32 = 51; -+pub const SO_ATTACH_REUSEPORT_EBPF: u32 = 52; -+pub const SO_CNX_ADVICE: u32 = 53; -+pub const SCM_TIMESTAMPING_OPT_STATS: u32 = 54; -+pub const SO_MEMINFO: u32 = 55; -+pub const SO_INCOMING_NAPI_ID: u32 = 56; -+pub const SO_COOKIE: u32 = 57; -+pub const SCM_TIMESTAMPING_PKTINFO: u32 = 58; -+pub const SO_PEERGROUPS: u32 = 59; -+pub const SO_ZEROCOPY: u32 = 60; -+pub const SO_TXTIME: u32 = 61; -+pub const SCM_TXTIME: u32 = 61; -+pub const SO_BINDTOIFINDEX: u32 = 62; -+pub const SO_TIMESTAMP_OLD: u32 = 29; -+pub const SO_TIMESTAMPNS_OLD: u32 = 35; -+pub const SO_TIMESTAMPING_OLD: u32 = 37; -+pub const SO_TIMESTAMP_NEW: u32 = 63; -+pub const SO_TIMESTAMPNS_NEW: u32 = 64; -+pub const SO_TIMESTAMPING_NEW: u32 = 65; -+pub const SO_RCVTIMEO_NEW: u32 = 66; -+pub const SO_SNDTIMEO_NEW: u32 = 67; -+pub const SO_DETACH_REUSEPORT_BPF: u32 = 68; -+pub const SO_PREFER_BUSY_POLL: u32 = 69; -+pub const SO_BUSY_POLL_BUDGET: u32 = 70; -+pub const SO_NETNS_COOKIE: u32 = 71; -+pub const SO_BUF_LOCK: u32 = 72; -+pub const SO_RESERVE_MEM: u32 = 73; -+pub const SO_TXREHASH: u32 = 74; -+pub const SO_RCVMARK: u32 = 75; -+pub const SO_TIMESTAMP: u32 = 29; -+pub const SO_TIMESTAMPNS: u32 = 35; -+pub const SO_TIMESTAMPING: u32 = 37; -+pub const SO_RCVTIMEO: u32 = 20; -+pub const SO_SNDTIMEO: u32 = 21; -+pub const SCM_TIMESTAMP: u32 = 29; -+pub const SCM_TIMESTAMPNS: u32 = 35; -+pub const SCM_TIMESTAMPING: u32 = 37; -+pub const SYS_SOCKET: u32 = 1; -+pub const SYS_BIND: u32 = 2; -+pub const SYS_CONNECT: u32 = 3; -+pub const SYS_LISTEN: u32 = 4; -+pub const SYS_ACCEPT: u32 = 5; -+pub const SYS_GETSOCKNAME: u32 = 6; -+pub const SYS_GETPEERNAME: u32 = 7; -+pub const SYS_SOCKETPAIR: u32 = 8; -+pub const SYS_SEND: u32 = 9; -+pub const SYS_RECV: u32 = 10; -+pub const SYS_SENDTO: u32 = 11; -+pub const SYS_RECVFROM: u32 = 12; -+pub const SYS_SHUTDOWN: u32 = 13; -+pub const SYS_SETSOCKOPT: u32 = 14; -+pub const SYS_GETSOCKOPT: u32 = 15; -+pub const SYS_SENDMSG: u32 = 16; -+pub const SYS_RECVMSG: u32 = 17; -+pub const SYS_ACCEPT4: u32 = 18; -+pub const SYS_RECVMMSG: u32 = 19; -+pub const SYS_SENDMMSG: u32 = 20; -+pub const __SO_ACCEPTCON: u32 = 65536; -+pub const POLLIN: u32 = 1; -+pub const POLLPRI: u32 = 2; -+pub const POLLOUT: u32 = 4; -+pub const POLLERR: u32 = 8; -+pub const POLLHUP: u32 = 16; -+pub const POLLNVAL: u32 = 32; -+pub const POLLRDNORM: u32 = 64; -+pub const POLLRDBAND: u32 = 128; -+pub const POLLWRNORM: u32 = 256; -+pub const POLLWRBAND: u32 = 512; -+pub const POLLMSG: u32 = 1024; -+pub const POLLREMOVE: u32 = 4096; -+pub const POLLRDHUP: u32 = 8192; -+pub const PR_SET_PDEATHSIG: u32 = 1; -+pub const PR_GET_PDEATHSIG: u32 = 2; -+pub const PR_GET_DUMPABLE: u32 = 3; -+pub const PR_SET_DUMPABLE: u32 = 4; -+pub const PR_GET_UNALIGN: u32 = 5; -+pub const PR_SET_UNALIGN: u32 = 6; -+pub const PR_UNALIGN_NOPRINT: u32 = 1; -+pub const PR_UNALIGN_SIGBUS: u32 = 2; -+pub const PR_GET_KEEPCAPS: u32 = 7; -+pub const PR_SET_KEEPCAPS: u32 = 8; -+pub const PR_GET_FPEMU: u32 = 9; -+pub const PR_SET_FPEMU: u32 = 10; -+pub const PR_FPEMU_NOPRINT: u32 = 1; -+pub const PR_FPEMU_SIGFPE: u32 = 2; -+pub const PR_GET_FPEXC: u32 = 11; -+pub const PR_SET_FPEXC: u32 = 12; -+pub const PR_FP_EXC_SW_ENABLE: u32 = 128; -+pub const PR_FP_EXC_DIV: u32 = 65536; -+pub const PR_FP_EXC_OVF: u32 = 131072; -+pub const PR_FP_EXC_UND: u32 = 262144; -+pub const PR_FP_EXC_RES: u32 = 524288; -+pub const PR_FP_EXC_INV: u32 = 1048576; -+pub const PR_FP_EXC_DISABLED: u32 = 0; -+pub const PR_FP_EXC_NONRECOV: u32 = 1; -+pub const PR_FP_EXC_ASYNC: u32 = 2; -+pub const PR_FP_EXC_PRECISE: u32 = 3; -+pub const PR_GET_TIMING: u32 = 13; -+pub const PR_SET_TIMING: u32 = 14; -+pub const PR_TIMING_STATISTICAL: u32 = 0; -+pub const PR_TIMING_TIMESTAMP: u32 = 1; -+pub const PR_SET_NAME: u32 = 15; -+pub const PR_GET_NAME: u32 = 16; -+pub const PR_GET_ENDIAN: u32 = 19; -+pub const PR_SET_ENDIAN: u32 = 20; -+pub const PR_ENDIAN_BIG: u32 = 0; -+pub const PR_ENDIAN_LITTLE: u32 = 1; -+pub const PR_ENDIAN_PPC_LITTLE: u32 = 2; -+pub const PR_GET_SECCOMP: u32 = 21; -+pub const PR_SET_SECCOMP: u32 = 22; -+pub const PR_CAPBSET_READ: u32 = 23; -+pub const PR_CAPBSET_DROP: u32 = 24; -+pub const PR_GET_TSC: u32 = 25; -+pub const PR_SET_TSC: u32 = 26; -+pub const PR_TSC_ENABLE: u32 = 1; -+pub const PR_TSC_SIGSEGV: u32 = 2; -+pub const PR_GET_SECUREBITS: u32 = 27; -+pub const PR_SET_SECUREBITS: u32 = 28; -+pub const PR_SET_TIMERSLACK: u32 = 29; -+pub const PR_GET_TIMERSLACK: u32 = 30; -+pub const PR_TASK_PERF_EVENTS_DISABLE: u32 = 31; -+pub const PR_TASK_PERF_EVENTS_ENABLE: u32 = 32; -+pub const PR_MCE_KILL: u32 = 33; -+pub const PR_MCE_KILL_CLEAR: u32 = 0; -+pub const PR_MCE_KILL_SET: u32 = 1; -+pub const PR_MCE_KILL_LATE: u32 = 0; -+pub const PR_MCE_KILL_EARLY: u32 = 1; -+pub const PR_MCE_KILL_DEFAULT: u32 = 2; -+pub const PR_MCE_KILL_GET: u32 = 34; -+pub const PR_SET_MM: u32 = 35; -+pub const PR_SET_MM_START_CODE: u32 = 1; -+pub const PR_SET_MM_END_CODE: u32 = 2; -+pub const PR_SET_MM_START_DATA: u32 = 3; -+pub const PR_SET_MM_END_DATA: u32 = 4; -+pub const PR_SET_MM_START_STACK: u32 = 5; -+pub const PR_SET_MM_START_BRK: u32 = 6; -+pub const PR_SET_MM_BRK: u32 = 7; -+pub const PR_SET_MM_ARG_START: u32 = 8; -+pub const PR_SET_MM_ARG_END: u32 = 9; -+pub const PR_SET_MM_ENV_START: u32 = 10; -+pub const PR_SET_MM_ENV_END: u32 = 11; -+pub const PR_SET_MM_AUXV: u32 = 12; -+pub const PR_SET_MM_EXE_FILE: u32 = 13; -+pub const PR_SET_MM_MAP: u32 = 14; -+pub const PR_SET_MM_MAP_SIZE: u32 = 15; -+pub const PR_SET_PTRACER: u32 = 1499557217; -+pub const PR_SET_CHILD_SUBREAPER: u32 = 36; -+pub const PR_GET_CHILD_SUBREAPER: u32 = 37; -+pub const PR_SET_NO_NEW_PRIVS: u32 = 38; -+pub const PR_GET_NO_NEW_PRIVS: u32 = 39; -+pub const PR_GET_TID_ADDRESS: u32 = 40; -+pub const PR_SET_THP_DISABLE: u32 = 41; -+pub const PR_GET_THP_DISABLE: u32 = 42; -+pub const PR_MPX_ENABLE_MANAGEMENT: u32 = 43; -+pub const PR_MPX_DISABLE_MANAGEMENT: u32 = 44; -+pub const PR_SET_FP_MODE: u32 = 45; -+pub const PR_GET_FP_MODE: u32 = 46; -+pub const PR_FP_MODE_FR: u32 = 1; -+pub const PR_FP_MODE_FRE: u32 = 2; -+pub const PR_CAP_AMBIENT: u32 = 47; -+pub const PR_CAP_AMBIENT_IS_SET: u32 = 1; -+pub const PR_CAP_AMBIENT_RAISE: u32 = 2; -+pub const PR_CAP_AMBIENT_LOWER: u32 = 3; -+pub const PR_CAP_AMBIENT_CLEAR_ALL: u32 = 4; -+pub const PR_SVE_SET_VL: u32 = 50; -+pub const PR_SVE_SET_VL_ONEXEC: u32 = 262144; -+pub const PR_SVE_GET_VL: u32 = 51; -+pub const PR_SVE_VL_LEN_MASK: u32 = 65535; -+pub const PR_SVE_VL_INHERIT: u32 = 131072; -+pub const PR_GET_SPECULATION_CTRL: u32 = 52; -+pub const PR_SET_SPECULATION_CTRL: u32 = 53; -+pub const PR_SPEC_STORE_BYPASS: u32 = 0; -+pub const PR_SPEC_INDIRECT_BRANCH: u32 = 1; -+pub const PR_SPEC_L1D_FLUSH: u32 = 2; -+pub const PR_SPEC_NOT_AFFECTED: u32 = 0; -+pub const PR_SPEC_PRCTL: u32 = 1; -+pub const PR_SPEC_ENABLE: u32 = 2; -+pub const PR_SPEC_DISABLE: u32 = 4; -+pub const PR_SPEC_FORCE_DISABLE: u32 = 8; -+pub const PR_SPEC_DISABLE_NOEXEC: u32 = 16; -+pub const PR_PAC_RESET_KEYS: u32 = 54; -+pub const PR_PAC_APIAKEY: u32 = 1; -+pub const PR_PAC_APIBKEY: u32 = 2; -+pub const PR_PAC_APDAKEY: u32 = 4; -+pub const PR_PAC_APDBKEY: u32 = 8; -+pub const PR_PAC_APGAKEY: u32 = 16; -+pub const PR_SET_TAGGED_ADDR_CTRL: u32 = 55; -+pub const PR_GET_TAGGED_ADDR_CTRL: u32 = 56; -+pub const PR_TAGGED_ADDR_ENABLE: u32 = 1; -+pub const PR_MTE_TCF_NONE: u32 = 0; -+pub const PR_MTE_TCF_SYNC: u32 = 2; -+pub const PR_MTE_TCF_ASYNC: u32 = 4; -+pub const PR_MTE_TCF_MASK: u32 = 6; -+pub const PR_MTE_TAG_SHIFT: u32 = 3; -+pub const PR_MTE_TAG_MASK: u32 = 524280; -+pub const PR_MTE_TCF_SHIFT: u32 = 1; -+pub const PR_SET_IO_FLUSHER: u32 = 57; -+pub const PR_GET_IO_FLUSHER: u32 = 58; -+pub const PR_SET_SYSCALL_USER_DISPATCH: u32 = 59; -+pub const PR_SYS_DISPATCH_OFF: u32 = 0; -+pub const PR_SYS_DISPATCH_ON: u32 = 1; -+pub const SYSCALL_DISPATCH_FILTER_ALLOW: u32 = 0; -+pub const SYSCALL_DISPATCH_FILTER_BLOCK: u32 = 1; -+pub const PR_PAC_SET_ENABLED_KEYS: u32 = 60; -+pub const PR_PAC_GET_ENABLED_KEYS: u32 = 61; -+pub const PR_SCHED_CORE: u32 = 62; -+pub const PR_SCHED_CORE_GET: u32 = 0; -+pub const PR_SCHED_CORE_CREATE: u32 = 1; -+pub const PR_SCHED_CORE_SHARE_TO: u32 = 2; -+pub const PR_SCHED_CORE_SHARE_FROM: u32 = 3; -+pub const PR_SCHED_CORE_MAX: u32 = 4; -+pub const PR_SCHED_CORE_SCOPE_THREAD: u32 = 0; -+pub const PR_SCHED_CORE_SCOPE_THREAD_GROUP: u32 = 1; -+pub const PR_SCHED_CORE_SCOPE_PROCESS_GROUP: u32 = 2; -+pub const PR_SME_SET_VL: u32 = 63; -+pub const PR_SME_SET_VL_ONEXEC: u32 = 262144; -+pub const PR_SME_GET_VL: u32 = 64; -+pub const PR_SME_VL_LEN_MASK: u32 = 65535; -+pub const PR_SME_VL_INHERIT: u32 = 131072; -+pub const PR_SET_VMA: u32 = 1398164801; -+pub const PR_SET_VMA_ANON_NAME: u32 = 0; -+pub const GRND_NONBLOCK: u32 = 1; -+pub const GRND_RANDOM: u32 = 2; -+pub const GRND_INSECURE: u32 = 4; -+pub const ITIMER_REAL: u32 = 0; -+pub const ITIMER_VIRTUAL: u32 = 1; -+pub const ITIMER_PROF: u32 = 2; -+pub const CLOCK_REALTIME: u32 = 0; -+pub const CLOCK_MONOTONIC: u32 = 1; -+pub const CLOCK_PROCESS_CPUTIME_ID: u32 = 2; -+pub const CLOCK_THREAD_CPUTIME_ID: u32 = 3; -+pub const CLOCK_MONOTONIC_RAW: u32 = 4; -+pub const CLOCK_REALTIME_COARSE: u32 = 5; -+pub const CLOCK_MONOTONIC_COARSE: u32 = 6; -+pub const CLOCK_BOOTTIME: u32 = 7; -+pub const CLOCK_REALTIME_ALARM: u32 = 8; -+pub const CLOCK_BOOTTIME_ALARM: u32 = 9; -+pub const CLOCK_SGI_CYCLE: u32 = 10; -+pub const CLOCK_TAI: u32 = 11; -+pub const MAX_CLOCKS: u32 = 16; -+pub const CLOCKS_MASK: u32 = 1; -+pub const CLOCKS_MONO: u32 = 1; -+pub const TIMER_ABSTIME: u32 = 1; -+pub const RUSAGE_SELF: u32 = 0; -+pub const RUSAGE_CHILDREN: i32 = -1; -+pub const RUSAGE_BOTH: i32 = -2; -+pub const RUSAGE_THREAD: u32 = 1; -+pub const RLIM64_INFINITY: i32 = -1; -+pub const PRIO_MIN: i32 = -20; -+pub const PRIO_MAX: u32 = 20; -+pub const PRIO_PROCESS: u32 = 0; -+pub const PRIO_PGRP: u32 = 1; -+pub const PRIO_USER: u32 = 2; -+pub const _STK_LIM: u32 = 8388608; -+pub const MLOCK_LIMIT: u32 = 8388608; -+pub const RLIMIT_CPU: u32 = 0; -+pub const RLIMIT_FSIZE: u32 = 1; -+pub const RLIMIT_DATA: u32 = 2; -+pub const RLIMIT_STACK: u32 = 3; -+pub const RLIMIT_CORE: u32 = 4; -+pub const RLIMIT_RSS: u32 = 5; -+pub const RLIMIT_NPROC: u32 = 6; -+pub const RLIMIT_NOFILE: u32 = 7; -+pub const RLIMIT_MEMLOCK: u32 = 8; -+pub const RLIMIT_AS: u32 = 9; -+pub const RLIMIT_LOCKS: u32 = 10; -+pub const RLIMIT_SIGPENDING: u32 = 11; -+pub const RLIMIT_MSGQUEUE: u32 = 12; -+pub const RLIMIT_NICE: u32 = 13; -+pub const RLIMIT_RTPRIO: u32 = 14; -+pub const RLIMIT_RTTIME: u32 = 15; -+pub const RLIM_NLIMITS: u32 = 16; -+pub const RLIM_INFINITY: i32 = -1; -+pub const CSIGNAL: u32 = 255; -+pub const CLONE_VM: u32 = 256; -+pub const CLONE_FS: u32 = 512; -+pub const CLONE_FILES: u32 = 1024; -+pub const CLONE_SIGHAND: u32 = 2048; -+pub const CLONE_PIDFD: u32 = 4096; -+pub const CLONE_PTRACE: u32 = 8192; -+pub const CLONE_VFORK: u32 = 16384; -+pub const CLONE_PARENT: u32 = 32768; -+pub const CLONE_THREAD: u32 = 65536; -+pub const CLONE_NEWNS: u32 = 131072; -+pub const CLONE_SYSVSEM: u32 = 262144; -+pub const CLONE_SETTLS: u32 = 524288; -+pub const CLONE_PARENT_SETTID: u32 = 1048576; -+pub const CLONE_CHILD_CLEARTID: u32 = 2097152; -+pub const CLONE_DETACHED: u32 = 4194304; -+pub const CLONE_UNTRACED: u32 = 8388608; -+pub const CLONE_CHILD_SETTID: u32 = 16777216; -+pub const CLONE_NEWCGROUP: u32 = 33554432; -+pub const CLONE_NEWUTS: u32 = 67108864; -+pub const CLONE_NEWIPC: u32 = 134217728; -+pub const CLONE_NEWUSER: u32 = 268435456; -+pub const CLONE_NEWPID: u32 = 536870912; -+pub const CLONE_NEWNET: u32 = 1073741824; -+pub const CLONE_IO: u32 = 2147483648; -+pub const CLONE_CLEAR_SIGHAND: u64 = 4294967296; -+pub const CLONE_INTO_CGROUP: u64 = 8589934592; -+pub const CLONE_NEWTIME: u32 = 128; -+pub const CLONE_ARGS_SIZE_VER0: u32 = 64; -+pub const CLONE_ARGS_SIZE_VER1: u32 = 80; -+pub const CLONE_ARGS_SIZE_VER2: u32 = 88; -+pub const SCHED_NORMAL: u32 = 0; -+pub const SCHED_FIFO: u32 = 1; -+pub const SCHED_RR: u32 = 2; -+pub const SCHED_BATCH: u32 = 3; -+pub const SCHED_IDLE: u32 = 5; -+pub const SCHED_DEADLINE: u32 = 6; -+pub const SCHED_RESET_ON_FORK: u32 = 1073741824; -+pub const SCHED_FLAG_RESET_ON_FORK: u32 = 1; -+pub const SCHED_FLAG_RECLAIM: u32 = 2; -+pub const SCHED_FLAG_DL_OVERRUN: u32 = 4; -+pub const SCHED_FLAG_KEEP_POLICY: u32 = 8; -+pub const SCHED_FLAG_KEEP_PARAMS: u32 = 16; -+pub const SCHED_FLAG_UTIL_CLAMP_MIN: u32 = 32; -+pub const SCHED_FLAG_UTIL_CLAMP_MAX: u32 = 64; -+pub const SCHED_FLAG_KEEP_ALL: u32 = 24; -+pub const SCHED_FLAG_UTIL_CLAMP: u32 = 96; -+pub const SCHED_FLAG_ALL: u32 = 127; -+pub const MINSIGSTKSZ: u32 = 4096; -+pub const SIGSTKSZ: u32 = 16384; -+pub const _NSIG: u32 = 64; -+pub const SIGHUP: u32 = 1; -+pub const SIGINT: u32 = 2; -+pub const SIGQUIT: u32 = 3; -+pub const SIGILL: u32 = 4; -+pub const SIGTRAP: u32 = 5; -+pub const SIGABRT: u32 = 6; -+pub const SIGIOT: u32 = 6; -+pub const SIGBUS: u32 = 7; -+pub const SIGFPE: u32 = 8; -+pub const SIGKILL: u32 = 9; -+pub const SIGUSR1: u32 = 10; -+pub const SIGSEGV: u32 = 11; -+pub const SIGUSR2: u32 = 12; -+pub const SIGPIPE: u32 = 13; -+pub const SIGALRM: u32 = 14; -+pub const SIGTERM: u32 = 15; -+pub const SIGSTKFLT: u32 = 16; -+pub const SIGCHLD: u32 = 17; -+pub const SIGCONT: u32 = 18; -+pub const SIGSTOP: u32 = 19; -+pub const SIGTSTP: u32 = 20; -+pub const SIGTTIN: u32 = 21; -+pub const SIGTTOU: u32 = 22; -+pub const SIGURG: u32 = 23; -+pub const SIGXCPU: u32 = 24; -+pub const SIGXFSZ: u32 = 25; -+pub const SIGVTALRM: u32 = 26; -+pub const SIGPROF: u32 = 27; -+pub const SIGWINCH: u32 = 28; -+pub const SIGIO: u32 = 29; -+pub const SIGPOLL: u32 = 29; -+pub const SIGPWR: u32 = 30; -+pub const SIGSYS: u32 = 31; -+pub const SIGUNUSED: u32 = 31; -+pub const SIGRTMIN: u32 = 32; -+pub const SIGRTMAX: u32 = 64; -+pub const SA_NOCLDSTOP: u32 = 1; -+pub const SA_NOCLDWAIT: u32 = 2; -+pub const SA_SIGINFO: u32 = 4; -+pub const SA_UNSUPPORTED: u32 = 1024; -+pub const SA_EXPOSE_TAGBITS: u32 = 2048; -+pub const SA_ONSTACK: u32 = 134217728; -+pub const SA_RESTART: u32 = 268435456; -+pub const SA_NODEFER: u32 = 1073741824; -+pub const SA_RESETHAND: u32 = 2147483648; -+pub const SA_NOMASK: u32 = 1073741824; -+pub const SA_ONESHOT: u32 = 2147483648; -+pub const SIG_BLOCK: u32 = 0; -+pub const SIG_UNBLOCK: u32 = 1; -+pub const SIG_SETMASK: u32 = 2; -+pub const SI_MAX_SIZE: u32 = 128; -+pub const SI_USER: u32 = 0; -+pub const SI_KERNEL: u32 = 128; -+pub const SI_QUEUE: i32 = -1; -+pub const SI_TIMER: i32 = -2; -+pub const SI_MESGQ: i32 = -3; -+pub const SI_ASYNCIO: i32 = -4; -+pub const SI_SIGIO: i32 = -5; -+pub const SI_TKILL: i32 = -6; -+pub const SI_DETHREAD: i32 = -7; -+pub const SI_ASYNCNL: i32 = -60; -+pub const ILL_ILLOPC: u32 = 1; -+pub const ILL_ILLOPN: u32 = 2; -+pub const ILL_ILLADR: u32 = 3; -+pub const ILL_ILLTRP: u32 = 4; -+pub const ILL_PRVOPC: u32 = 5; -+pub const ILL_PRVREG: u32 = 6; -+pub const ILL_COPROC: u32 = 7; -+pub const ILL_BADSTK: u32 = 8; -+pub const ILL_BADIADDR: u32 = 9; -+pub const __ILL_BREAK: u32 = 10; -+pub const __ILL_BNDMOD: u32 = 11; -+pub const NSIGILL: u32 = 11; -+pub const FPE_INTDIV: u32 = 1; -+pub const FPE_INTOVF: u32 = 2; -+pub const FPE_FLTDIV: u32 = 3; -+pub const FPE_FLTOVF: u32 = 4; -+pub const FPE_FLTUND: u32 = 5; -+pub const FPE_FLTRES: u32 = 6; -+pub const FPE_FLTINV: u32 = 7; -+pub const FPE_FLTSUB: u32 = 8; -+pub const __FPE_DECOVF: u32 = 9; -+pub const __FPE_DECDIV: u32 = 10; -+pub const __FPE_DECERR: u32 = 11; -+pub const __FPE_INVASC: u32 = 12; -+pub const __FPE_INVDEC: u32 = 13; -+pub const FPE_FLTUNK: u32 = 14; -+pub const FPE_CONDTRAP: u32 = 15; -+pub const NSIGFPE: u32 = 15; -+pub const SEGV_MAPERR: u32 = 1; -+pub const SEGV_ACCERR: u32 = 2; -+pub const SEGV_BNDERR: u32 = 3; -+pub const SEGV_PKUERR: u32 = 4; -+pub const SEGV_ACCADI: u32 = 5; -+pub const SEGV_ADIDERR: u32 = 6; -+pub const SEGV_ADIPERR: u32 = 7; -+pub const SEGV_MTEAERR: u32 = 8; -+pub const SEGV_MTESERR: u32 = 9; -+pub const NSIGSEGV: u32 = 9; -+pub const BUS_ADRALN: u32 = 1; -+pub const BUS_ADRERR: u32 = 2; -+pub const BUS_OBJERR: u32 = 3; -+pub const BUS_MCEERR_AR: u32 = 4; -+pub const BUS_MCEERR_AO: u32 = 5; -+pub const NSIGBUS: u32 = 5; -+pub const TRAP_BRKPT: u32 = 1; -+pub const TRAP_TRACE: u32 = 2; -+pub const TRAP_BRANCH: u32 = 3; -+pub const TRAP_HWBKPT: u32 = 4; -+pub const TRAP_UNK: u32 = 5; -+pub const TRAP_PERF: u32 = 6; -+pub const NSIGTRAP: u32 = 6; -+pub const TRAP_PERF_FLAG_ASYNC: u32 = 1; -+pub const CLD_EXITED: u32 = 1; -+pub const CLD_KILLED: u32 = 2; -+pub const CLD_DUMPED: u32 = 3; -+pub const CLD_TRAPPED: u32 = 4; -+pub const CLD_STOPPED: u32 = 5; -+pub const CLD_CONTINUED: u32 = 6; -+pub const NSIGCHLD: u32 = 6; -+pub const POLL_IN: u32 = 1; -+pub const POLL_OUT: u32 = 2; -+pub const POLL_MSG: u32 = 3; -+pub const POLL_ERR: u32 = 4; -+pub const POLL_PRI: u32 = 5; -+pub const POLL_HUP: u32 = 6; -+pub const NSIGPOLL: u32 = 6; -+pub const SYS_SECCOMP: u32 = 1; -+pub const SYS_USER_DISPATCH: u32 = 2; -+pub const NSIGSYS: u32 = 2; -+pub const EMT_TAGOVF: u32 = 1; -+pub const NSIGEMT: u32 = 1; -+pub const SIGEV_SIGNAL: u32 = 0; -+pub const SIGEV_NONE: u32 = 1; -+pub const SIGEV_THREAD: u32 = 2; -+pub const SIGEV_THREAD_ID: u32 = 4; -+pub const SIGEV_MAX_SIZE: u32 = 64; -+pub const SS_ONSTACK: u32 = 1; -+pub const SS_DISABLE: u32 = 2; -+pub const SS_AUTODISARM: u32 = 2147483648; -+pub const SS_FLAG_BITS: u32 = 2147483648; -+pub const S_IFMT: u32 = 61440; -+pub const S_IFSOCK: u32 = 49152; -+pub const S_IFLNK: u32 = 40960; -+pub const S_IFREG: u32 = 32768; -+pub const S_IFBLK: u32 = 24576; -+pub const S_IFDIR: u32 = 16384; -+pub const S_IFCHR: u32 = 8192; -+pub const S_IFIFO: u32 = 4096; -+pub const S_ISUID: u32 = 2048; -+pub const S_ISGID: u32 = 1024; -+pub const S_ISVTX: u32 = 512; -+pub const S_IRWXU: u32 = 448; -+pub const S_IRUSR: u32 = 256; -+pub const S_IWUSR: u32 = 128; -+pub const S_IXUSR: u32 = 64; -+pub const S_IRWXG: u32 = 56; -+pub const S_IRGRP: u32 = 32; -+pub const S_IWGRP: u32 = 16; -+pub const S_IXGRP: u32 = 8; -+pub const S_IRWXO: u32 = 7; -+pub const S_IROTH: u32 = 4; -+pub const S_IWOTH: u32 = 2; -+pub const S_IXOTH: u32 = 1; -+pub const STATX_TYPE: u32 = 1; -+pub const STATX_MODE: u32 = 2; -+pub const STATX_NLINK: u32 = 4; -+pub const STATX_UID: u32 = 8; -+pub const STATX_GID: u32 = 16; -+pub const STATX_ATIME: u32 = 32; -+pub const STATX_MTIME: u32 = 64; -+pub const STATX_CTIME: u32 = 128; -+pub const STATX_INO: u32 = 256; -+pub const STATX_SIZE: u32 = 512; -+pub const STATX_BLOCKS: u32 = 1024; -+pub const STATX_BASIC_STATS: u32 = 2047; -+pub const STATX_BTIME: u32 = 2048; -+pub const STATX_MNT_ID: u32 = 4096; -+pub const STATX_DIOALIGN: u32 = 8192; -+pub const STATX__RESERVED: u32 = 2147483648; -+pub const STATX_ALL: u32 = 4095; -+pub const STATX_ATTR_COMPRESSED: u32 = 4; -+pub const STATX_ATTR_IMMUTABLE: u32 = 16; -+pub const STATX_ATTR_APPEND: u32 = 32; -+pub const STATX_ATTR_NODUMP: u32 = 64; -+pub const STATX_ATTR_ENCRYPTED: u32 = 2048; -+pub const STATX_ATTR_AUTOMOUNT: u32 = 4096; -+pub const STATX_ATTR_MOUNT_ROOT: u32 = 8192; -+pub const STATX_ATTR_VERITY: u32 = 1048576; -+pub const STATX_ATTR_DAX: u32 = 2097152; -+pub const SI_LOAD_SHIFT: u32 = 16; -+pub const TCP_MSS_DEFAULT: u32 = 536; -+pub const TCP_MSS_DESIRED: u32 = 1220; -+pub const TCP_NODELAY: u32 = 1; -+pub const TCP_MAXSEG: u32 = 2; -+pub const TCP_CORK: u32 = 3; -+pub const TCP_KEEPIDLE: u32 = 4; -+pub const TCP_KEEPINTVL: u32 = 5; -+pub const TCP_KEEPCNT: u32 = 6; -+pub const TCP_SYNCNT: u32 = 7; -+pub const TCP_LINGER2: u32 = 8; -+pub const TCP_DEFER_ACCEPT: u32 = 9; -+pub const TCP_WINDOW_CLAMP: u32 = 10; -+pub const TCP_INFO: u32 = 11; -+pub const TCP_QUICKACK: u32 = 12; -+pub const TCP_CONGESTION: u32 = 13; -+pub const TCP_MD5SIG: u32 = 14; -+pub const TCP_THIN_LINEAR_TIMEOUTS: u32 = 16; -+pub const TCP_THIN_DUPACK: u32 = 17; -+pub const TCP_USER_TIMEOUT: u32 = 18; -+pub const TCP_REPAIR: u32 = 19; -+pub const TCP_REPAIR_QUEUE: u32 = 20; -+pub const TCP_QUEUE_SEQ: u32 = 21; -+pub const TCP_REPAIR_OPTIONS: u32 = 22; -+pub const TCP_FASTOPEN: u32 = 23; -+pub const TCP_TIMESTAMP: u32 = 24; -+pub const TCP_NOTSENT_LOWAT: u32 = 25; -+pub const TCP_CC_INFO: u32 = 26; -+pub const TCP_SAVE_SYN: u32 = 27; -+pub const TCP_SAVED_SYN: u32 = 28; -+pub const TCP_REPAIR_WINDOW: u32 = 29; -+pub const TCP_FASTOPEN_CONNECT: u32 = 30; -+pub const TCP_ULP: u32 = 31; -+pub const TCP_MD5SIG_EXT: u32 = 32; -+pub const TCP_FASTOPEN_KEY: u32 = 33; -+pub const TCP_FASTOPEN_NO_COOKIE: u32 = 34; -+pub const TCP_ZEROCOPY_RECEIVE: u32 = 35; -+pub const TCP_INQ: u32 = 36; -+pub const TCP_CM_INQ: u32 = 36; -+pub const TCP_TX_DELAY: u32 = 37; -+pub const TCP_REPAIR_ON: u32 = 1; -+pub const TCP_REPAIR_OFF: u32 = 0; -+pub const TCP_REPAIR_OFF_NO_WP: i32 = -1; -+pub const TCPI_OPT_TIMESTAMPS: u32 = 1; -+pub const TCPI_OPT_SACK: u32 = 2; -+pub const TCPI_OPT_WSCALE: u32 = 4; -+pub const TCPI_OPT_ECN: u32 = 8; -+pub const TCPI_OPT_ECN_SEEN: u32 = 16; -+pub const TCPI_OPT_SYN_DATA: u32 = 32; -+pub const TCP_MD5SIG_MAXKEYLEN: u32 = 80; -+pub const TCP_MD5SIG_FLAG_PREFIX: u32 = 1; -+pub const TCP_MD5SIG_FLAG_IFINDEX: u32 = 2; -+pub const TCP_RECEIVE_ZEROCOPY_FLAG_TLB_CLEAN_HINT: u32 = 1; -+pub const IGNBRK: u32 = 1; -+pub const BRKINT: u32 = 2; -+pub const IGNPAR: u32 = 4; -+pub const PARMRK: u32 = 8; -+pub const INPCK: u32 = 16; -+pub const ISTRIP: u32 = 32; -+pub const INLCR: u32 = 64; -+pub const IGNCR: u32 = 128; -+pub const ICRNL: u32 = 256; -+pub const IXANY: u32 = 2048; -+pub const OPOST: u32 = 1; -+pub const OCRNL: u32 = 8; -+pub const ONOCR: u32 = 16; -+pub const ONLRET: u32 = 32; -+pub const OFILL: u32 = 64; -+pub const OFDEL: u32 = 128; -+pub const B0: u32 = 0; -+pub const B50: u32 = 1; -+pub const B75: u32 = 2; -+pub const B110: u32 = 3; -+pub const B134: u32 = 4; -+pub const B150: u32 = 5; -+pub const B200: u32 = 6; -+pub const B300: u32 = 7; -+pub const B600: u32 = 8; -+pub const B1200: u32 = 9; -+pub const B1800: u32 = 10; -+pub const B2400: u32 = 11; -+pub const B4800: u32 = 12; -+pub const B9600: u32 = 13; -+pub const B19200: u32 = 14; -+pub const B38400: u32 = 15; -+pub const EXTA: u32 = 14; -+pub const EXTB: u32 = 15; -+pub const ADDRB: u32 = 536870912; -+pub const CMSPAR: u32 = 1073741824; -+pub const CRTSCTS: u32 = 2147483648; -+pub const IBSHIFT: u32 = 16; -+pub const TCOOFF: u32 = 0; -+pub const TCOON: u32 = 1; -+pub const TCIOFF: u32 = 2; -+pub const TCION: u32 = 3; -+pub const TCIFLUSH: u32 = 0; -+pub const TCOFLUSH: u32 = 1; -+pub const TCIOFLUSH: u32 = 2; -+pub const NCCS: u32 = 19; -+pub const VINTR: u32 = 0; -+pub const VQUIT: u32 = 1; -+pub const VERASE: u32 = 2; -+pub const VKILL: u32 = 3; -+pub const VEOF: u32 = 4; -+pub const VTIME: u32 = 5; -+pub const VMIN: u32 = 6; -+pub const VSWTC: u32 = 7; -+pub const VSTART: u32 = 8; -+pub const VSTOP: u32 = 9; -+pub const VSUSP: u32 = 10; -+pub const VEOL: u32 = 11; -+pub const VREPRINT: u32 = 12; -+pub const VDISCARD: u32 = 13; -+pub const VWERASE: u32 = 14; -+pub const VLNEXT: u32 = 15; -+pub const VEOL2: u32 = 16; -+pub const IUCLC: u32 = 512; -+pub const IXON: u32 = 1024; -+pub const IXOFF: u32 = 4096; -+pub const IMAXBEL: u32 = 8192; -+pub const IUTF8: u32 = 16384; -+pub const OLCUC: u32 = 2; -+pub const ONLCR: u32 = 4; -+pub const NLDLY: u32 = 256; -+pub const NL0: u32 = 0; -+pub const NL1: u32 = 256; -+pub const CRDLY: u32 = 1536; -+pub const CR0: u32 = 0; -+pub const CR1: u32 = 512; -+pub const CR2: u32 = 1024; -+pub const CR3: u32 = 1536; -+pub const TABDLY: u32 = 6144; -+pub const TAB0: u32 = 0; -+pub const TAB1: u32 = 2048; -+pub const TAB2: u32 = 4096; -+pub const TAB3: u32 = 6144; -+pub const XTABS: u32 = 6144; -+pub const BSDLY: u32 = 8192; -+pub const BS0: u32 = 0; -+pub const BS1: u32 = 8192; -+pub const VTDLY: u32 = 16384; -+pub const VT0: u32 = 0; -+pub const VT1: u32 = 16384; -+pub const FFDLY: u32 = 32768; -+pub const FF0: u32 = 0; -+pub const FF1: u32 = 32768; -+pub const CBAUD: u32 = 4111; -+pub const CSIZE: u32 = 48; -+pub const CS5: u32 = 0; -+pub const CS6: u32 = 16; -+pub const CS7: u32 = 32; -+pub const CS8: u32 = 48; -+pub const CSTOPB: u32 = 64; -+pub const CREAD: u32 = 128; -+pub const PARENB: u32 = 256; -+pub const PARODD: u32 = 512; -+pub const HUPCL: u32 = 1024; -+pub const CLOCAL: u32 = 2048; -+pub const CBAUDEX: u32 = 4096; -+pub const BOTHER: u32 = 4096; -+pub const B57600: u32 = 4097; -+pub const B115200: u32 = 4098; -+pub const B230400: u32 = 4099; -+pub const B460800: u32 = 4100; -+pub const B500000: u32 = 4101; -+pub const B576000: u32 = 4102; -+pub const B921600: u32 = 4103; -+pub const B1000000: u32 = 4104; -+pub const B1152000: u32 = 4105; -+pub const B1500000: u32 = 4106; -+pub const B2000000: u32 = 4107; -+pub const B2500000: u32 = 4108; -+pub const B3000000: u32 = 4109; -+pub const B3500000: u32 = 4110; -+pub const B4000000: u32 = 4111; -+pub const CIBAUD: u32 = 269418496; -+pub const ISIG: u32 = 1; -+pub const ICANON: u32 = 2; -+pub const XCASE: u32 = 4; -+pub const ECHO: u32 = 8; -+pub const ECHOE: u32 = 16; -+pub const ECHOK: u32 = 32; -+pub const ECHONL: u32 = 64; -+pub const NOFLSH: u32 = 128; -+pub const TOSTOP: u32 = 256; -+pub const ECHOCTL: u32 = 512; -+pub const ECHOPRT: u32 = 1024; -+pub const ECHOKE: u32 = 2048; -+pub const FLUSHO: u32 = 4096; -+pub const PENDIN: u32 = 16384; -+pub const IEXTEN: u32 = 32768; -+pub const EXTPROC: u32 = 65536; -+pub const TCSANOW: u32 = 0; -+pub const TCSADRAIN: u32 = 1; -+pub const TCSAFLUSH: u32 = 2; -+pub const TIOCPKT_DATA: u32 = 0; -+pub const TIOCPKT_FLUSHREAD: u32 = 1; -+pub const TIOCPKT_FLUSHWRITE: u32 = 2; -+pub const TIOCPKT_STOP: u32 = 4; -+pub const TIOCPKT_START: u32 = 8; -+pub const TIOCPKT_NOSTOP: u32 = 16; -+pub const TIOCPKT_DOSTOP: u32 = 32; -+pub const TIOCPKT_IOCTL: u32 = 64; -+pub const TIOCSER_TEMT: u32 = 1; -+pub const NCC: u32 = 8; -+pub const TIOCM_LE: u32 = 1; -+pub const TIOCM_DTR: u32 = 2; -+pub const TIOCM_RTS: u32 = 4; -+pub const TIOCM_ST: u32 = 8; -+pub const TIOCM_SR: u32 = 16; -+pub const TIOCM_CTS: u32 = 32; -+pub const TIOCM_CAR: u32 = 64; -+pub const TIOCM_RNG: u32 = 128; -+pub const TIOCM_DSR: u32 = 256; -+pub const TIOCM_CD: u32 = 64; -+pub const TIOCM_RI: u32 = 128; -+pub const TIOCM_OUT1: u32 = 8192; -+pub const TIOCM_OUT2: u32 = 16384; -+pub const TIOCM_LOOP: u32 = 32768; -+pub const UIO_FASTIOV: u32 = 8; -+pub const UIO_MAXIOV: u32 = 1024; -+pub const UNIX_PATH_MAX: u32 = 108; -+pub const __NR_io_setup: u32 = 0; -+pub const __NR_io_destroy: u32 = 1; -+pub const __NR_io_submit: u32 = 2; -+pub const __NR_io_cancel: u32 = 3; -+pub const __NR_io_getevents: u32 = 4; -+pub const __NR_setxattr: u32 = 5; -+pub const __NR_lsetxattr: u32 = 6; -+pub const __NR_fsetxattr: u32 = 7; -+pub const __NR_getxattr: u32 = 8; -+pub const __NR_lgetxattr: u32 = 9; -+pub const __NR_fgetxattr: u32 = 10; -+pub const __NR_listxattr: u32 = 11; -+pub const __NR_llistxattr: u32 = 12; -+pub const __NR_flistxattr: u32 = 13; -+pub const __NR_removexattr: u32 = 14; -+pub const __NR_lremovexattr: u32 = 15; -+pub const __NR_fremovexattr: u32 = 16; -+pub const __NR_getcwd: u32 = 17; -+pub const __NR_lookup_dcookie: u32 = 18; -+pub const __NR_eventfd2: u32 = 19; -+pub const __NR_epoll_create1: u32 = 20; -+pub const __NR_epoll_ctl: u32 = 21; -+pub const __NR_epoll_pwait: u32 = 22; -+pub const __NR_dup: u32 = 23; -+pub const __NR_dup3: u32 = 24; -+pub const __NR3264_fcntl: u32 = 25; -+pub const __NR_inotify_init1: u32 = 26; -+pub const __NR_inotify_add_watch: u32 = 27; -+pub const __NR_inotify_rm_watch: u32 = 28; -+pub const __NR_ioctl: u32 = 29; -+pub const __NR_ioprio_set: u32 = 30; -+pub const __NR_ioprio_get: u32 = 31; -+pub const __NR_flock: u32 = 32; -+pub const __NR_mknodat: u32 = 33; -+pub const __NR_mkdirat: u32 = 34; -+pub const __NR_unlinkat: u32 = 35; -+pub const __NR_symlinkat: u32 = 36; -+pub const __NR_linkat: u32 = 37; -+pub const __NR_umount2: u32 = 39; -+pub const __NR_mount: u32 = 40; -+pub const __NR_pivot_root: u32 = 41; -+pub const __NR_nfsservctl: u32 = 42; -+pub const __NR3264_statfs: u32 = 43; -+pub const __NR3264_fstatfs: u32 = 44; -+pub const __NR3264_truncate: u32 = 45; -+pub const __NR3264_ftruncate: u32 = 46; -+pub const __NR_fallocate: u32 = 47; -+pub const __NR_faccessat: u32 = 48; -+pub const __NR_chdir: u32 = 49; -+pub const __NR_fchdir: u32 = 50; -+pub const __NR_chroot: u32 = 51; -+pub const __NR_fchmod: u32 = 52; -+pub const __NR_fchmodat: u32 = 53; -+pub const __NR_fchownat: u32 = 54; -+pub const __NR_fchown: u32 = 55; -+pub const __NR_openat: u32 = 56; -+pub const __NR_close: u32 = 57; -+pub const __NR_vhangup: u32 = 58; -+pub const __NR_pipe2: u32 = 59; -+pub const __NR_quotactl: u32 = 60; -+pub const __NR_getdents64: u32 = 61; -+pub const __NR3264_lseek: u32 = 62; -+pub const __NR_read: u32 = 63; -+pub const __NR_write: u32 = 64; -+pub const __NR_readv: u32 = 65; -+pub const __NR_writev: u32 = 66; -+pub const __NR_pread64: u32 = 67; -+pub const __NR_pwrite64: u32 = 68; -+pub const __NR_preadv: u32 = 69; -+pub const __NR_pwritev: u32 = 70; -+pub const __NR3264_sendfile: u32 = 71; -+pub const __NR_pselect6: u32 = 72; -+pub const __NR_ppoll: u32 = 73; -+pub const __NR_signalfd4: u32 = 74; -+pub const __NR_vmsplice: u32 = 75; -+pub const __NR_splice: u32 = 76; -+pub const __NR_tee: u32 = 77; -+pub const __NR_readlinkat: u32 = 78; -+pub const __NR_sync: u32 = 81; -+pub const __NR_fsync: u32 = 82; -+pub const __NR_fdatasync: u32 = 83; -+pub const __NR_sync_file_range: u32 = 84; -+pub const __NR_timerfd_create: u32 = 85; -+pub const __NR_timerfd_settime: u32 = 86; -+pub const __NR_timerfd_gettime: u32 = 87; -+pub const __NR_utimensat: u32 = 88; -+pub const __NR_acct: u32 = 89; -+pub const __NR_capget: u32 = 90; -+pub const __NR_capset: u32 = 91; -+pub const __NR_personality: u32 = 92; -+pub const __NR_exit: u32 = 93; -+pub const __NR_exit_group: u32 = 94; -+pub const __NR_waitid: u32 = 95; -+pub const __NR_set_tid_address: u32 = 96; -+pub const __NR_unshare: u32 = 97; -+pub const __NR_futex: u32 = 98; -+pub const __NR_set_robust_list: u32 = 99; -+pub const __NR_get_robust_list: u32 = 100; -+pub const __NR_nanosleep: u32 = 101; -+pub const __NR_getitimer: u32 = 102; -+pub const __NR_setitimer: u32 = 103; -+pub const __NR_kexec_load: u32 = 104; -+pub const __NR_init_module: u32 = 105; -+pub const __NR_delete_module: u32 = 106; -+pub const __NR_timer_create: u32 = 107; -+pub const __NR_timer_gettime: u32 = 108; -+pub const __NR_timer_getoverrun: u32 = 109; -+pub const __NR_timer_settime: u32 = 110; -+pub const __NR_timer_delete: u32 = 111; -+pub const __NR_clock_settime: u32 = 112; -+pub const __NR_clock_gettime: u32 = 113; -+pub const __NR_clock_getres: u32 = 114; -+pub const __NR_clock_nanosleep: u32 = 115; -+pub const __NR_syslog: u32 = 116; -+pub const __NR_ptrace: u32 = 117; -+pub const __NR_sched_setparam: u32 = 118; -+pub const __NR_sched_setscheduler: u32 = 119; -+pub const __NR_sched_getscheduler: u32 = 120; -+pub const __NR_sched_getparam: u32 = 121; -+pub const __NR_sched_setaffinity: u32 = 122; -+pub const __NR_sched_getaffinity: u32 = 123; -+pub const __NR_sched_yield: u32 = 124; -+pub const __NR_sched_get_priority_max: u32 = 125; -+pub const __NR_sched_get_priority_min: u32 = 126; -+pub const __NR_sched_rr_get_interval: u32 = 127; -+pub const __NR_restart_syscall: u32 = 128; -+pub const __NR_kill: u32 = 129; -+pub const __NR_tkill: u32 = 130; -+pub const __NR_tgkill: u32 = 131; -+pub const __NR_sigaltstack: u32 = 132; -+pub const __NR_rt_sigsuspend: u32 = 133; -+pub const __NR_rt_sigaction: u32 = 134; -+pub const __NR_rt_sigprocmask: u32 = 135; -+pub const __NR_rt_sigpending: u32 = 136; -+pub const __NR_rt_sigtimedwait: u32 = 137; -+pub const __NR_rt_sigqueueinfo: u32 = 138; -+pub const __NR_rt_sigreturn: u32 = 139; -+pub const __NR_setpriority: u32 = 140; -+pub const __NR_getpriority: u32 = 141; -+pub const __NR_reboot: u32 = 142; -+pub const __NR_setregid: u32 = 143; -+pub const __NR_setgid: u32 = 144; -+pub const __NR_setreuid: u32 = 145; -+pub const __NR_setuid: u32 = 146; -+pub const __NR_setresuid: u32 = 147; -+pub const __NR_getresuid: u32 = 148; -+pub const __NR_setresgid: u32 = 149; -+pub const __NR_getresgid: u32 = 150; -+pub const __NR_setfsuid: u32 = 151; -+pub const __NR_setfsgid: u32 = 152; -+pub const __NR_times: u32 = 153; -+pub const __NR_setpgid: u32 = 154; -+pub const __NR_getpgid: u32 = 155; -+pub const __NR_getsid: u32 = 156; -+pub const __NR_setsid: u32 = 157; -+pub const __NR_getgroups: u32 = 158; -+pub const __NR_setgroups: u32 = 159; -+pub const __NR_uname: u32 = 160; -+pub const __NR_sethostname: u32 = 161; -+pub const __NR_setdomainname: u32 = 162; -+pub const __NR_getrusage: u32 = 165; -+pub const __NR_umask: u32 = 166; -+pub const __NR_prctl: u32 = 167; -+pub const __NR_getcpu: u32 = 168; -+pub const __NR_gettimeofday: u32 = 169; -+pub const __NR_settimeofday: u32 = 170; -+pub const __NR_adjtimex: u32 = 171; -+pub const __NR_getpid: u32 = 172; -+pub const __NR_getppid: u32 = 173; -+pub const __NR_getuid: u32 = 174; -+pub const __NR_geteuid: u32 = 175; -+pub const __NR_getgid: u32 = 176; -+pub const __NR_getegid: u32 = 177; -+pub const __NR_gettid: u32 = 178; -+pub const __NR_sysinfo: u32 = 179; -+pub const __NR_mq_open: u32 = 180; -+pub const __NR_mq_unlink: u32 = 181; -+pub const __NR_mq_timedsend: u32 = 182; -+pub const __NR_mq_timedreceive: u32 = 183; -+pub const __NR_mq_notify: u32 = 184; -+pub const __NR_mq_getsetattr: u32 = 185; -+pub const __NR_msgget: u32 = 186; -+pub const __NR_msgctl: u32 = 187; -+pub const __NR_msgrcv: u32 = 188; -+pub const __NR_msgsnd: u32 = 189; -+pub const __NR_semget: u32 = 190; -+pub const __NR_semctl: u32 = 191; -+pub const __NR_semtimedop: u32 = 192; -+pub const __NR_semop: u32 = 193; -+pub const __NR_shmget: u32 = 194; -+pub const __NR_shmctl: u32 = 195; -+pub const __NR_shmat: u32 = 196; -+pub const __NR_shmdt: u32 = 197; -+pub const __NR_socket: u32 = 198; -+pub const __NR_socketpair: u32 = 199; -+pub const __NR_bind: u32 = 200; -+pub const __NR_listen: u32 = 201; -+pub const __NR_accept: u32 = 202; -+pub const __NR_connect: u32 = 203; -+pub const __NR_getsockname: u32 = 204; -+pub const __NR_getpeername: u32 = 205; -+pub const __NR_sendto: u32 = 206; -+pub const __NR_recvfrom: u32 = 207; -+pub const __NR_setsockopt: u32 = 208; -+pub const __NR_getsockopt: u32 = 209; -+pub const __NR_shutdown: u32 = 210; -+pub const __NR_sendmsg: u32 = 211; -+pub const __NR_recvmsg: u32 = 212; -+pub const __NR_readahead: u32 = 213; -+pub const __NR_brk: u32 = 214; -+pub const __NR_munmap: u32 = 215; -+pub const __NR_mremap: u32 = 216; -+pub const __NR_add_key: u32 = 217; -+pub const __NR_request_key: u32 = 218; -+pub const __NR_keyctl: u32 = 219; -+pub const __NR_clone: u32 = 220; -+pub const __NR_execve: u32 = 221; -+pub const __NR3264_mmap: u32 = 222; -+pub const __NR3264_fadvise64: u32 = 223; -+pub const __NR_swapon: u32 = 224; -+pub const __NR_swapoff: u32 = 225; -+pub const __NR_mprotect: u32 = 226; -+pub const __NR_msync: u32 = 227; -+pub const __NR_mlock: u32 = 228; -+pub const __NR_munlock: u32 = 229; -+pub const __NR_mlockall: u32 = 230; -+pub const __NR_munlockall: u32 = 231; -+pub const __NR_mincore: u32 = 232; -+pub const __NR_madvise: u32 = 233; -+pub const __NR_remap_file_pages: u32 = 234; -+pub const __NR_mbind: u32 = 235; -+pub const __NR_get_mempolicy: u32 = 236; -+pub const __NR_set_mempolicy: u32 = 237; -+pub const __NR_migrate_pages: u32 = 238; -+pub const __NR_move_pages: u32 = 239; -+pub const __NR_rt_tgsigqueueinfo: u32 = 240; -+pub const __NR_perf_event_open: u32 = 241; -+pub const __NR_accept4: u32 = 242; -+pub const __NR_recvmmsg: u32 = 243; -+pub const __NR_arch_specific_syscall: u32 = 244; -+pub const __NR_wait4: u32 = 260; -+pub const __NR_prlimit64: u32 = 261; -+pub const __NR_fanotify_init: u32 = 262; -+pub const __NR_fanotify_mark: u32 = 263; -+pub const __NR_name_to_handle_at: u32 = 264; -+pub const __NR_open_by_handle_at: u32 = 265; -+pub const __NR_clock_adjtime: u32 = 266; -+pub const __NR_syncfs: u32 = 267; -+pub const __NR_setns: u32 = 268; -+pub const __NR_sendmmsg: u32 = 269; -+pub const __NR_process_vm_readv: u32 = 270; -+pub const __NR_process_vm_writev: u32 = 271; -+pub const __NR_kcmp: u32 = 272; -+pub const __NR_finit_module: u32 = 273; -+pub const __NR_sched_setattr: u32 = 274; -+pub const __NR_sched_getattr: u32 = 275; -+pub const __NR_renameat2: u32 = 276; -+pub const __NR_seccomp: u32 = 277; -+pub const __NR_getrandom: u32 = 278; -+pub const __NR_memfd_create: u32 = 279; -+pub const __NR_bpf: u32 = 280; -+pub const __NR_execveat: u32 = 281; -+pub const __NR_userfaultfd: u32 = 282; -+pub const __NR_membarrier: u32 = 283; -+pub const __NR_mlock2: u32 = 284; -+pub const __NR_copy_file_range: u32 = 285; -+pub const __NR_preadv2: u32 = 286; -+pub const __NR_pwritev2: u32 = 287; -+pub const __NR_pkey_mprotect: u32 = 288; -+pub const __NR_pkey_alloc: u32 = 289; -+pub const __NR_pkey_free: u32 = 290; -+pub const __NR_statx: u32 = 291; -+pub const __NR_io_pgetevents: u32 = 292; -+pub const __NR_rseq: u32 = 293; -+pub const __NR_kexec_file_load: u32 = 294; -+pub const __NR_pidfd_send_signal: u32 = 424; -+pub const __NR_io_uring_setup: u32 = 425; -+pub const __NR_io_uring_enter: u32 = 426; -+pub const __NR_io_uring_register: u32 = 427; -+pub const __NR_open_tree: u32 = 428; -+pub const __NR_move_mount: u32 = 429; -+pub const __NR_fsopen: u32 = 430; -+pub const __NR_fsconfig: u32 = 431; -+pub const __NR_fsmount: u32 = 432; -+pub const __NR_fspick: u32 = 433; -+pub const __NR_pidfd_open: u32 = 434; -+pub const __NR_clone3: u32 = 435; -+pub const __NR_close_range: u32 = 436; -+pub const __NR_openat2: u32 = 437; -+pub const __NR_pidfd_getfd: u32 = 438; -+pub const __NR_faccessat2: u32 = 439; -+pub const __NR_process_madvise: u32 = 440; -+pub const __NR_epoll_pwait2: u32 = 441; -+pub const __NR_mount_setattr: u32 = 442; -+pub const __NR_quotactl_fd: u32 = 443; -+pub const __NR_landlock_create_ruleset: u32 = 444; -+pub const __NR_landlock_add_rule: u32 = 445; -+pub const __NR_landlock_restrict_self: u32 = 446; -+pub const __NR_process_mrelease: u32 = 448; -+pub const __NR_futex_waitv: u32 = 449; -+pub const __NR_set_mempolicy_home_node: u32 = 450; -+pub const __NR_syscalls: u32 = 451; -+pub const __NR_fcntl: u32 = 25; -+pub const __NR_statfs: u32 = 43; -+pub const __NR_fstatfs: u32 = 44; -+pub const __NR_truncate: u32 = 45; -+pub const __NR_ftruncate: u32 = 46; -+pub const __NR_lseek: u32 = 62; -+pub const __NR_sendfile: u32 = 71; -+pub const __NR_mmap: u32 = 222; -+pub const __NR_fadvise64: u32 = 223; -+pub const __OLD_UTS_LEN: u32 = 8; -+pub const __NEW_UTS_LEN: u32 = 64; -+pub const WNOHANG: u32 = 1; -+pub const WUNTRACED: u32 = 2; -+pub const WSTOPPED: u32 = 2; -+pub const WEXITED: u32 = 4; -+pub const WCONTINUED: u32 = 8; -+pub const WNOWAIT: u32 = 16777216; -+pub const __WNOTHREAD: u32 = 536870912; -+pub const __WALL: u32 = 1073741824; -+pub const __WCLONE: u32 = 2147483648; -+pub const P_ALL: u32 = 0; -+pub const P_PID: u32 = 1; -+pub const P_PGID: u32 = 2; -+pub const P_PIDFD: u32 = 3; -+pub const MFD_CLOEXEC: u32 = 1; -+pub const MFD_ALLOW_SEALING: u32 = 2; -+pub const MFD_HUGETLB: u32 = 4; -+pub const MFD_HUGE_SHIFT: u32 = 26; -+pub const MFD_HUGE_MASK: u32 = 63; -+pub const MFD_HUGE_64KB: u32 = 1073741824; -+pub const MFD_HUGE_512KB: u32 = 1275068416; -+pub const MFD_HUGE_1MB: u32 = 1342177280; -+pub const MFD_HUGE_2MB: u32 = 1409286144; -+pub const MFD_HUGE_8MB: u32 = 1543503872; -+pub const MFD_HUGE_16MB: u32 = 1610612736; -+pub const MFD_HUGE_32MB: u32 = 1677721600; -+pub const MFD_HUGE_256MB: u32 = 1879048192; -+pub const MFD_HUGE_512MB: u32 = 1946157056; -+pub const MFD_HUGE_1GB: u32 = 2013265920; -+pub const MFD_HUGE_2GB: u32 = 2080374784; -+pub const MFD_HUGE_16GB: u32 = 2281701376; -+pub const TFD_TIMER_ABSTIME: u32 = 1; -+pub const TFD_TIMER_CANCEL_ON_SET: u32 = 2; -+pub const TFD_CLOEXEC: u32 = 524288; -+pub const TFD_NONBLOCK: u32 = 2048; -+pub const USERFAULTFD_IOC: u32 = 170; -+pub const _UFFDIO_REGISTER: u32 = 0; -+pub const _UFFDIO_UNREGISTER: u32 = 1; -+pub const _UFFDIO_WAKE: u32 = 2; -+pub const _UFFDIO_COPY: u32 = 3; -+pub const _UFFDIO_ZEROPAGE: u32 = 4; -+pub const _UFFDIO_WRITEPROTECT: u32 = 6; -+pub const _UFFDIO_CONTINUE: u32 = 7; -+pub const _UFFDIO_API: u32 = 63; -+pub const UFFDIO: u32 = 170; -+pub const UFFD_EVENT_PAGEFAULT: u32 = 18; -+pub const UFFD_EVENT_FORK: u32 = 19; -+pub const UFFD_EVENT_REMAP: u32 = 20; -+pub const UFFD_EVENT_REMOVE: u32 = 21; -+pub const UFFD_EVENT_UNMAP: u32 = 22; -+pub const UFFD_PAGEFAULT_FLAG_WRITE: u32 = 1; -+pub const UFFD_PAGEFAULT_FLAG_WP: u32 = 2; -+pub const UFFD_PAGEFAULT_FLAG_MINOR: u32 = 4; -+pub const UFFD_FEATURE_PAGEFAULT_FLAG_WP: u32 = 1; -+pub const UFFD_FEATURE_EVENT_FORK: u32 = 2; -+pub const UFFD_FEATURE_EVENT_REMAP: u32 = 4; -+pub const UFFD_FEATURE_EVENT_REMOVE: u32 = 8; -+pub const UFFD_FEATURE_MISSING_HUGETLBFS: u32 = 16; -+pub const UFFD_FEATURE_MISSING_SHMEM: u32 = 32; -+pub const UFFD_FEATURE_EVENT_UNMAP: u32 = 64; -+pub const UFFD_FEATURE_SIGBUS: u32 = 128; -+pub const UFFD_FEATURE_THREAD_ID: u32 = 256; -+pub const UFFD_FEATURE_MINOR_HUGETLBFS: u32 = 512; -+pub const UFFD_FEATURE_MINOR_SHMEM: u32 = 1024; -+pub const UFFD_FEATURE_EXACT_ADDRESS: u32 = 2048; -+pub const UFFD_FEATURE_WP_HUGETLBFS_SHMEM: u32 = 4096; -+pub const UFFD_USER_MODE_ONLY: u32 = 1; -+pub const IORING_FILE_INDEX_ALLOC: i32 = -1; -+pub const IORING_SETUP_IOPOLL: u32 = 1; -+pub const IORING_SETUP_SQPOLL: u32 = 2; -+pub const IORING_SETUP_SQ_AFF: u32 = 4; -+pub const IORING_SETUP_CQSIZE: u32 = 8; -+pub const IORING_SETUP_CLAMP: u32 = 16; -+pub const IORING_SETUP_ATTACH_WQ: u32 = 32; -+pub const IORING_SETUP_R_DISABLED: u32 = 64; -+pub const IORING_SETUP_SUBMIT_ALL: u32 = 128; -+pub const IORING_SETUP_COOP_TASKRUN: u32 = 256; -+pub const IORING_SETUP_TASKRUN_FLAG: u32 = 512; -+pub const IORING_SETUP_SQE128: u32 = 1024; -+pub const IORING_SETUP_CQE32: u32 = 2048; -+pub const IORING_SETUP_SINGLE_ISSUER: u32 = 4096; -+pub const IORING_SETUP_DEFER_TASKRUN: u32 = 8192; -+pub const IORING_URING_CMD_FIXED: u32 = 1; -+pub const IORING_FSYNC_DATASYNC: u32 = 1; -+pub const IORING_TIMEOUT_ABS: u32 = 1; -+pub const IORING_TIMEOUT_UPDATE: u32 = 2; -+pub const IORING_TIMEOUT_BOOTTIME: u32 = 4; -+pub const IORING_TIMEOUT_REALTIME: u32 = 8; -+pub const IORING_LINK_TIMEOUT_UPDATE: u32 = 16; -+pub const IORING_TIMEOUT_ETIME_SUCCESS: u32 = 32; -+pub const IORING_TIMEOUT_CLOCK_MASK: u32 = 12; -+pub const IORING_TIMEOUT_UPDATE_MASK: u32 = 18; -+pub const SPLICE_F_FD_IN_FIXED: u32 = 2147483648; -+pub const IORING_POLL_ADD_MULTI: u32 = 1; -+pub const IORING_POLL_UPDATE_EVENTS: u32 = 2; -+pub const IORING_POLL_UPDATE_USER_DATA: u32 = 4; -+pub const IORING_POLL_ADD_LEVEL: u32 = 8; -+pub const IORING_ASYNC_CANCEL_ALL: u32 = 1; -+pub const IORING_ASYNC_CANCEL_FD: u32 = 2; -+pub const IORING_ASYNC_CANCEL_ANY: u32 = 4; -+pub const IORING_ASYNC_CANCEL_FD_FIXED: u32 = 8; -+pub const IORING_RECVSEND_POLL_FIRST: u32 = 1; -+pub const IORING_RECV_MULTISHOT: u32 = 2; -+pub const IORING_RECVSEND_FIXED_BUF: u32 = 4; -+pub const IORING_SEND_ZC_REPORT_USAGE: u32 = 8; -+pub const IORING_NOTIF_USAGE_ZC_COPIED: u32 = 2147483648; -+pub const IORING_ACCEPT_MULTISHOT: u32 = 1; -+pub const IORING_MSG_RING_CQE_SKIP: u32 = 1; -+pub const IORING_CQE_F_BUFFER: u32 = 1; -+pub const IORING_CQE_F_MORE: u32 = 2; -+pub const IORING_CQE_F_SOCK_NONEMPTY: u32 = 4; -+pub const IORING_CQE_F_NOTIF: u32 = 8; -+pub const IORING_OFF_SQ_RING: u32 = 0; -+pub const IORING_OFF_CQ_RING: u32 = 134217728; -+pub const IORING_OFF_SQES: u32 = 268435456; -+pub const IORING_SQ_NEED_WAKEUP: u32 = 1; -+pub const IORING_SQ_CQ_OVERFLOW: u32 = 2; -+pub const IORING_SQ_TASKRUN: u32 = 4; -+pub const IORING_CQ_EVENTFD_DISABLED: u32 = 1; -+pub const IORING_ENTER_GETEVENTS: u32 = 1; -+pub const IORING_ENTER_SQ_WAKEUP: u32 = 2; -+pub const IORING_ENTER_SQ_WAIT: u32 = 4; -+pub const IORING_ENTER_EXT_ARG: u32 = 8; -+pub const IORING_ENTER_REGISTERED_RING: u32 = 16; -+pub const IORING_FEAT_SINGLE_MMAP: u32 = 1; -+pub const IORING_FEAT_NODROP: u32 = 2; -+pub const IORING_FEAT_SUBMIT_STABLE: u32 = 4; -+pub const IORING_FEAT_RW_CUR_POS: u32 = 8; -+pub const IORING_FEAT_CUR_PERSONALITY: u32 = 16; -+pub const IORING_FEAT_FAST_POLL: u32 = 32; -+pub const IORING_FEAT_POLL_32BITS: u32 = 64; -+pub const IORING_FEAT_SQPOLL_NONFIXED: u32 = 128; -+pub const IORING_FEAT_EXT_ARG: u32 = 256; -+pub const IORING_FEAT_NATIVE_WORKERS: u32 = 512; -+pub const IORING_FEAT_RSRC_TAGS: u32 = 1024; -+pub const IORING_FEAT_CQE_SKIP: u32 = 2048; -+pub const IORING_FEAT_LINKED_FILE: u32 = 4096; -+pub const IORING_RSRC_REGISTER_SPARSE: u32 = 1; -+pub const IORING_REGISTER_FILES_SKIP: i32 = -2; -+pub const IO_URING_OP_SUPPORTED: u32 = 1; -+pub const DT_UNKNOWN: u32 = 0; -+pub const DT_FIFO: u32 = 1; -+pub const DT_CHR: u32 = 2; -+pub const DT_DIR: u32 = 4; -+pub const DT_BLK: u32 = 6; -+pub const DT_REG: u32 = 8; -+pub const DT_LNK: u32 = 10; -+pub const DT_SOCK: u32 = 12; -+pub const SHUT_RD: u32 = 0; -+pub const SHUT_WR: u32 = 1; -+pub const SHUT_RDWR: u32 = 2; -+pub const STAT_HAVE_NSEC: u32 = 1; -+pub const SOCK_STREAM: u32 = 1; -+pub const SOCK_DGRAM: u32 = 2; -+pub const SOCK_RAW: u32 = 3; -+pub const SOCK_RDM: u32 = 4; -+pub const SOCK_SEQPACKET: u32 = 5; -+pub const F_OK: u32 = 0; -+pub const R_OK: u32 = 4; -+pub const W_OK: u32 = 2; -+pub const X_OK: u32 = 1; -+pub const UTIME_NOW: u32 = 1073741823; -+pub const UTIME_OMIT: u32 = 1073741822; -+pub const MSG_DONTWAIT: u32 = 64; -+pub const AF_UNSPEC: u32 = 0; -+pub const AF_UNIX: u32 = 1; -+pub const AF_INET: u32 = 2; -+pub const AF_AX25: u32 = 3; -+pub const AF_IPX: u32 = 4; -+pub const AF_APPLETALK: u32 = 5; -+pub const AF_NETROM: u32 = 6; -+pub const AF_BRIDGE: u32 = 7; -+pub const AF_ATMPVC: u32 = 8; -+pub const AF_X25: u32 = 9; -+pub const AF_INET6: u32 = 10; -+pub const AF_ROSE: u32 = 11; -+pub const AF_DECnet: u32 = 12; -+pub const AF_NETBEUI: u32 = 13; -+pub const AF_SECURITY: u32 = 14; -+pub const AF_KEY: u32 = 15; -+pub const AF_NETLINK: u32 = 16; -+pub const AF_PACKET: u32 = 17; -+pub const AF_ASH: u32 = 18; -+pub const AF_ECONET: u32 = 19; -+pub const AF_ATMSVC: u32 = 20; -+pub const AF_RDS: u32 = 21; -+pub const AF_SNA: u32 = 22; -+pub const AF_IRDA: u32 = 23; -+pub const AF_PPPOX: u32 = 24; -+pub const AF_WANPIPE: u32 = 25; -+pub const AF_LLC: u32 = 26; -+pub const AF_CAN: u32 = 29; -+pub const AF_TIPC: u32 = 30; -+pub const AF_BLUETOOTH: u32 = 31; -+pub const AF_IUCV: u32 = 32; -+pub const AF_RXRPC: u32 = 33; -+pub const AF_ISDN: u32 = 34; -+pub const AF_PHONET: u32 = 35; -+pub const AF_IEEE802154: u32 = 36; -+pub const AF_MAX: u32 = 37; -+pub const MSG_OOB: u32 = 1; -+pub const MSG_PEEK: u32 = 2; -+pub const MSG_DONTROUTE: u32 = 4; -+pub const MSG_CTRUNC: u32 = 8; -+pub const MSG_PROBE: u32 = 16; -+pub const MSG_TRUNC: u32 = 32; -+pub const MSG_EOR: u32 = 128; -+pub const MSG_WAITALL: u32 = 256; -+pub const MSG_FIN: u32 = 512; -+pub const MSG_SYN: u32 = 1024; -+pub const MSG_CONFIRM: u32 = 2048; -+pub const MSG_RST: u32 = 4096; -+pub const MSG_ERRQUEUE: u32 = 8192; -+pub const MSG_NOSIGNAL: u32 = 16384; -+pub const MSG_MORE: u32 = 32768; -+pub const MSG_CMSG_CLOEXEC: u32 = 1073741824; -+pub const STDIN_FILENO: u32 = 0; -+pub const STDOUT_FILENO: u32 = 1; -+pub const STDERR_FILENO: u32 = 2; -+pub const RWF_HIPRI: u32 = 1; -+pub const RWF_DSYNC: u32 = 2; -+pub const RWF_SYNC: u32 = 4; -+pub const RWF_NOWAIT: u32 = 8; -+pub const RWF_APPEND: u32 = 16; -+pub const EFD_SEMAPHORE: u32 = 1; -+pub const EFD_CLOEXEC: u32 = 524288; -+pub const EFD_NONBLOCK: u32 = 2048; -+pub const EPOLLIN: u32 = 1; -+pub const EPOLLPRI: u32 = 2; -+pub const EPOLLOUT: u32 = 4; -+pub const EPOLLERR: u32 = 8; -+pub const EPOLLHUP: u32 = 16; -+pub const EPOLLNVAL: u32 = 32; -+pub const EPOLLRDNORM: u32 = 64; -+pub const EPOLLRDBAND: u32 = 128; -+pub const EPOLLWRNORM: u32 = 256; -+pub const EPOLLWRBAND: u32 = 512; -+pub const EPOLLMSG: u32 = 1024; -+pub const EPOLLRDHUP: u32 = 8192; -+pub const EPOLLEXCLUSIVE: u32 = 268435456; -+pub const EPOLLWAKEUP: u32 = 536870912; -+pub const EPOLLONESHOT: u32 = 1073741824; -+pub const EPOLLET: u32 = 2147483648; -+pub const TFD_SHARED_FCNTL_FLAGS: u32 = 526336; -+pub const TFD_CREATE_FLAGS: u32 = 526336; -+pub const TFD_SETTIME_FLAGS: u32 = 1; -+pub const SCM_RIGHTS: u32 = 1; -+pub const SCM_CREDENTIALS: u32 = 2; -+pub const SCM_SECURITY: u32 = 3; -+pub const UFFD_API: u32 = 170; -+pub const UFFDIO_REGISTER_MODE_MISSING: u32 = 1; -+pub const UFFDIO_REGISTER_MODE_WP: u32 = 2; -+pub const UFFDIO_REGISTER_MODE_MINOR: u32 = 4; -+pub const UFFDIO_COPY_MODE_DONTWAKE: u32 = 1; -+pub const UFFDIO_COPY_MODE_WP: u32 = 2; -+pub const UFFDIO_ZEROPAGE_MODE_DONTWAKE: u32 = 1; -+pub const SPLICE_F_MOVE: u32 = 1; -+pub const SPLICE_F_NONBLOCK: u32 = 2; -+pub const SPLICE_F_MORE: u32 = 4; -+pub const SPLICE_F_GIFT: u32 = 8; -+pub const MNT_FORCE: u32 = 1; -+pub const MNT_DETACH: u32 = 2; -+pub const MNT_EXPIRE: u32 = 4; -+pub const UMOUNT_NOFOLLOW: u32 = 8; -+pub const UMOUNT_UNUSED: u32 = 2147483648; -+pub type size_t = crate::ctypes::c_ulong; -+pub type ssize_t = crate::ctypes::c_long; -+pub type __s8 = crate::ctypes::c_schar; -+pub type __u8 = crate::ctypes::c_uchar; -+pub type __s16 = crate::ctypes::c_short; -+pub type __u16 = crate::ctypes::c_ushort; -+pub type __s32 = crate::ctypes::c_int; -+pub type __u32 = crate::ctypes::c_uint; -+pub type __s64 = crate::ctypes::c_longlong; -+pub type __u64 = crate::ctypes::c_ulonglong; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fd_set { -+pub fds_bits: [crate::ctypes::c_ulong; 16usize], -+} -+pub type __kernel_sighandler_t = ::core::option::Option; -+pub type __kernel_key_t = crate::ctypes::c_int; -+pub type __kernel_mqd_t = crate::ctypes::c_int; -+pub type __kernel_long_t = crate::ctypes::c_long; -+pub type __kernel_ulong_t = crate::ctypes::c_ulong; -+pub type __kernel_ino_t = __kernel_ulong_t; -+pub type __kernel_mode_t = crate::ctypes::c_uint; -+pub type __kernel_pid_t = crate::ctypes::c_int; -+pub type __kernel_ipc_pid_t = crate::ctypes::c_int; -+pub type __kernel_uid_t = crate::ctypes::c_uint; -+pub type __kernel_gid_t = crate::ctypes::c_uint; -+pub type __kernel_suseconds_t = __kernel_long_t; -+pub type __kernel_daddr_t = crate::ctypes::c_int; -+pub type __kernel_uid32_t = crate::ctypes::c_uint; -+pub type __kernel_gid32_t = crate::ctypes::c_uint; -+pub type __kernel_old_uid_t = __kernel_uid_t; -+pub type __kernel_old_gid_t = __kernel_gid_t; -+pub type __kernel_old_dev_t = crate::ctypes::c_uint; -+pub type __kernel_size_t = __kernel_ulong_t; -+pub type __kernel_ssize_t = __kernel_long_t; -+pub type __kernel_ptrdiff_t = __kernel_long_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fsid_t { -+pub val: [crate::ctypes::c_int; 2usize], -+} -+pub type __kernel_off_t = __kernel_long_t; -+pub type __kernel_loff_t = crate::ctypes::c_longlong; -+pub type __kernel_old_time_t = __kernel_long_t; -+pub type __kernel_time_t = __kernel_long_t; -+pub type __kernel_time64_t = crate::ctypes::c_longlong; -+pub type __kernel_clock_t = __kernel_long_t; -+pub type __kernel_timer_t = crate::ctypes::c_int; -+pub type __kernel_clockid_t = crate::ctypes::c_int; -+pub type __kernel_caddr_t = *mut crate::ctypes::c_char; -+pub type __kernel_uid16_t = crate::ctypes::c_ushort; -+pub type __kernel_gid16_t = crate::ctypes::c_ushort; -+pub type __le16 = __u16; -+pub type __be16 = __u16; -+pub type __le32 = __u32; -+pub type __be32 = __u32; -+pub type __le64 = __u64; -+pub type __be64 = __u64; -+pub type __sum16 = __u16; -+pub type __wsum = __u32; -+pub type __poll_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __user_cap_header_struct { -+pub version: __u32, -+pub pid: crate::ctypes::c_int, -+} -+pub type cap_user_header_t = *mut __user_cap_header_struct; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __user_cap_data_struct { -+pub effective: __u32, -+pub permitted: __u32, -+pub inheritable: __u32, -+} -+pub type cap_user_data_t = *mut __user_cap_data_struct; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_cap_data { -+pub magic_etc: __le32, -+pub data: [vfs_cap_data__bindgen_ty_1; 2usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_cap_data__bindgen_ty_1 { -+pub permitted: __le32, -+pub inheritable: __le32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_ns_cap_data { -+pub magic_etc: __le32, -+pub data: [vfs_ns_cap_data__bindgen_ty_1; 2usize], -+pub rootid: __le32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_ns_cap_data__bindgen_ty_1 { -+pub permitted: __le32, -+pub inheritable: __le32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct f_owner_ex { -+pub type_: crate::ctypes::c_int, -+pub pid: __kernel_pid_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct flock { -+pub l_type: crate::ctypes::c_short, -+pub l_whence: crate::ctypes::c_short, -+pub l_start: __kernel_off_t, -+pub l_len: __kernel_off_t, -+pub l_pid: __kernel_pid_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct flock64 { -+pub l_type: crate::ctypes::c_short, -+pub l_whence: crate::ctypes::c_short, -+pub l_start: __kernel_loff_t, -+pub l_len: __kernel_loff_t, -+pub l_pid: __kernel_pid_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct open_how { -+pub flags: __u64, -+pub mode: __u64, -+pub resolve: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct epoll_event { -+pub events: __poll_t, -+pub data: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fscrypt_policy_v1 { -+pub version: __u8, -+pub contents_encryption_mode: __u8, -+pub filenames_encryption_mode: __u8, -+pub flags: __u8, -+pub master_key_descriptor: [__u8; 8usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fscrypt_key { -+pub mode: __u32, -+pub raw: [__u8; 64usize], -+pub size: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fscrypt_policy_v2 { -+pub version: __u8, -+pub contents_encryption_mode: __u8, -+pub filenames_encryption_mode: __u8, -+pub flags: __u8, -+pub __reserved: [__u8; 4usize], -+pub master_key_identifier: [__u8; 16usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_get_policy_ex_arg { -+pub policy_size: __u64, -+pub policy: fscrypt_get_policy_ex_arg__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union fscrypt_get_policy_ex_arg__bindgen_ty_1 { -+pub version: __u8, -+pub v1: fscrypt_policy_v1, -+pub v2: fscrypt_policy_v2, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_key_specifier { -+pub type_: __u32, -+pub __reserved: __u32, -+pub u: fscrypt_key_specifier__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union fscrypt_key_specifier__bindgen_ty_1 { -+pub __reserved: [__u8; 32usize], -+pub descriptor: [__u8; 8usize], -+pub identifier: [__u8; 16usize], -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct fscrypt_provisioning_key_payload { -+pub type_: __u32, -+pub __reserved: __u32, -+pub raw: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+pub struct fscrypt_add_key_arg { -+pub key_spec: fscrypt_key_specifier, -+pub raw_size: __u32, -+pub key_id: __u32, -+pub __reserved: [__u32; 8usize], -+pub raw: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_remove_key_arg { -+pub key_spec: fscrypt_key_specifier, -+pub removal_status_flags: __u32, -+pub __reserved: [__u32; 5usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_get_key_status_arg { -+pub key_spec: fscrypt_key_specifier, -+pub __reserved: [__u32; 6usize], -+pub status: __u32, -+pub status_flags: __u32, -+pub user_count: __u32, -+pub __out_reserved: [__u32; 13usize], -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum fsconfig_command { -+FSCONFIG_SET_FLAG = 0, -+FSCONFIG_SET_STRING = 1, -+FSCONFIG_SET_BINARY = 2, -+FSCONFIG_SET_PATH = 3, -+FSCONFIG_SET_PATH_EMPTY = 4, -+FSCONFIG_SET_FD = 5, -+FSCONFIG_CMD_CREATE = 6, -+FSCONFIG_CMD_RECONFIGURE = 7, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct mount_attr { -+pub attr_set: __u64, -+pub attr_clr: __u64, -+pub propagation: __u64, -+pub userns_fd: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct file_clone_range { -+pub src_fd: __s64, -+pub src_offset: __u64, -+pub src_length: __u64, -+pub dest_offset: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fstrim_range { -+pub start: __u64, -+pub len: __u64, -+pub minlen: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct file_dedupe_range_info { -+pub dest_fd: __s64, -+pub dest_offset: __u64, -+pub bytes_deduped: __u64, -+pub status: __s32, -+pub reserved: __u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct file_dedupe_range { -+pub src_offset: __u64, -+pub src_length: __u64, -+pub dest_count: __u16, -+pub reserved1: __u16, -+pub reserved2: __u32, -+pub info: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct files_stat_struct { -+pub nr_files: crate::ctypes::c_ulong, -+pub nr_free_files: crate::ctypes::c_ulong, -+pub max_files: crate::ctypes::c_ulong, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct inodes_stat_t { -+pub nr_inodes: crate::ctypes::c_long, -+pub nr_unused: crate::ctypes::c_long, -+pub dummy: [crate::ctypes::c_long; 5usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fsxattr { -+pub fsx_xflags: __u32, -+pub fsx_extsize: __u32, -+pub fsx_nextents: __u32, -+pub fsx_projid: __u32, -+pub fsx_cowextsize: __u32, -+pub fsx_pad: [crate::ctypes::c_uchar; 8usize], -+} -+pub type __kernel_rwf_t = crate::ctypes::c_int; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct futex_waitv { -+pub val: __u64, -+pub uaddr: __u64, -+pub flags: __u32, -+pub __reserved: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct robust_list { -+pub next: *mut robust_list, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct robust_list_head { -+pub list: robust_list, -+pub futex_offset: crate::ctypes::c_long, -+pub list_op_pending: *mut robust_list, -+} -+pub type __kernel_sa_family_t = crate::ctypes::c_ushort; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __kernel_sockaddr_storage { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __kernel_sockaddr_storage__bindgen_ty_1 { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1, -+pub __align: *mut crate::ctypes::c_void, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1 { -+pub ss_family: __kernel_sa_family_t, -+pub __data: [crate::ctypes::c_char; 126usize], -+} -+pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP; -+pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP; -+pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP; -+pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP; -+pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_TCP; -+pub const IPPROTO_EGP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_EGP; -+pub const IPPROTO_PUP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_PUP; -+pub const IPPROTO_UDP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_UDP; -+pub const IPPROTO_IDP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IDP; -+pub const IPPROTO_TP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_TP; -+pub const IPPROTO_DCCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_DCCP; -+pub const IPPROTO_IPV6: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPV6; -+pub const IPPROTO_RSVP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_RSVP; -+pub const IPPROTO_GRE: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_GRE; -+pub const IPPROTO_ESP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ESP; -+pub const IPPROTO_AH: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_AH; -+pub const IPPROTO_MTP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MTP; -+pub const IPPROTO_BEETPH: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_BEETPH; -+pub const IPPROTO_ENCAP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ENCAP; -+pub const IPPROTO_PIM: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_PIM; -+pub const IPPROTO_COMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_COMP; -+pub const IPPROTO_L2TP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_L2TP; -+pub const IPPROTO_SCTP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_SCTP; -+pub const IPPROTO_UDPLITE: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_UDPLITE; -+pub const IPPROTO_MPLS: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MPLS; -+pub const IPPROTO_ETHERNET: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ETHERNET; -+pub const IPPROTO_RAW: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_RAW; -+pub const IPPROTO_MPTCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MPTCP; -+pub const IPPROTO_MAX: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_1 { -+IPPROTO_IP = 0, -+IPPROTO_ICMP = 1, -+IPPROTO_IGMP = 2, -+IPPROTO_IPIP = 4, -+IPPROTO_TCP = 6, -+IPPROTO_EGP = 8, -+IPPROTO_PUP = 12, -+IPPROTO_UDP = 17, -+IPPROTO_IDP = 22, -+IPPROTO_TP = 29, -+IPPROTO_DCCP = 33, -+IPPROTO_IPV6 = 41, -+IPPROTO_RSVP = 46, -+IPPROTO_GRE = 47, -+IPPROTO_ESP = 50, -+IPPROTO_AH = 51, -+IPPROTO_MTP = 92, -+IPPROTO_BEETPH = 94, -+IPPROTO_ENCAP = 98, -+IPPROTO_PIM = 103, -+IPPROTO_COMP = 108, -+IPPROTO_L2TP = 115, -+IPPROTO_SCTP = 132, -+IPPROTO_UDPLITE = 136, -+IPPROTO_MPLS = 137, -+IPPROTO_ETHERNET = 143, -+IPPROTO_RAW = 255, -+IPPROTO_MPTCP = 262, -+IPPROTO_MAX = 263, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct in_addr { -+pub s_addr: __be32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_mreq { -+pub imr_multiaddr: in_addr, -+pub imr_interface: in_addr, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_mreqn { -+pub imr_multiaddr: in_addr, -+pub imr_address: in_addr, -+pub imr_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_mreq_source { -+pub imr_multiaddr: __be32, -+pub imr_interface: __be32, -+pub imr_sourceaddr: __be32, -+} -+#[repr(C)] -+pub struct ip_msfilter { -+pub imsf_multiaddr: __be32, -+pub imsf_interface: __be32, -+pub imsf_fmode: __u32, -+pub imsf_numsrc: __u32, -+pub __bindgen_anon_1: ip_msfilter__bindgen_ty_1, -+} -+#[repr(C)] -+pub struct ip_msfilter__bindgen_ty_1 { -+pub imsf_slist: __BindgenUnionField<[__be32; 1usize]>, -+pub __bindgen_anon_1: __BindgenUnionField, -+pub bindgen_union_field: u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct ip_msfilter__bindgen_ty_1__bindgen_ty_1 { -+pub __empty_imsf_slist_flex: ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1, -+pub imsf_slist_flex: __IncompleteArrayField<__be32>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 {} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct group_req { -+pub gr_interface: __u32, -+pub gr_group: __kernel_sockaddr_storage, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct group_source_req { -+pub gsr_interface: __u32, -+pub gsr_group: __kernel_sockaddr_storage, -+pub gsr_source: __kernel_sockaddr_storage, -+} -+#[repr(C)] -+pub struct group_filter { -+pub __bindgen_anon_1: group_filter__bindgen_ty_1, -+} -+#[repr(C)] -+pub struct group_filter__bindgen_ty_1 { -+pub __bindgen_anon_1: __BindgenUnionField, -+pub __bindgen_anon_2: __BindgenUnionField, -+pub bindgen_union_field: [u64; 34usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct group_filter__bindgen_ty_1__bindgen_ty_1 { -+pub gf_interface_aux: __u32, -+pub gf_group_aux: __kernel_sockaddr_storage, -+pub gf_fmode_aux: __u32, -+pub gf_numsrc_aux: __u32, -+pub gf_slist: [__kernel_sockaddr_storage; 1usize], -+} -+#[repr(C)] -+pub struct group_filter__bindgen_ty_1__bindgen_ty_2 { -+pub gf_interface: __u32, -+pub gf_group: __kernel_sockaddr_storage, -+pub gf_fmode: __u32, -+pub gf_numsrc: __u32, -+pub gf_slist_flex: __IncompleteArrayField<__kernel_sockaddr_storage>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct in_pktinfo { -+pub ipi_ifindex: crate::ctypes::c_int, -+pub ipi_spec_dst: in_addr, -+pub ipi_addr: in_addr, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sockaddr_in { -+pub sin_family: __kernel_sa_family_t, -+pub sin_port: __be16, -+pub sin_addr: in_addr, -+pub __pad: [crate::ctypes::c_uchar; 8usize], -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct inotify_event { -+pub wd: __s32, -+pub mask: __u32, -+pub cookie: __u32, -+pub len: __u32, -+pub name: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct iphdr { -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -+pub tos: __u8, -+pub tot_len: __be16, -+pub id: __be16, -+pub frag_off: __be16, -+pub ttl: __u8, -+pub protocol: __u8, -+pub check: __sum16, -+pub __bindgen_anon_1: iphdr__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union iphdr__bindgen_ty_1 { -+pub __bindgen_anon_1: iphdr__bindgen_ty_1__bindgen_ty_1, -+pub addrs: iphdr__bindgen_ty_1__bindgen_ty_2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct iphdr__bindgen_ty_1__bindgen_ty_1 { -+pub saddr: __be32, -+pub daddr: __be32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct iphdr__bindgen_ty_1__bindgen_ty_2 { -+pub saddr: __be32, -+pub daddr: __be32, -+} -+impl iphdr { -+#[inline] -+pub fn ihl(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_ihl(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn version(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_version(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(ihl: __u8, version: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let ihl: u8 = unsafe { ::core::mem::transmute(ihl) }; -+ihl as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let version: u8 = unsafe { ::core::mem::transmute(version) }; -+version as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct ip_auth_hdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+pub reserved: __be16, -+pub spi: __be32, -+pub seq_no: __be32, -+pub auth_data: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct ip_esp_hdr { -+pub spi: __be32, -+pub seq_no: __be32, -+pub enc_data: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_comp_hdr { -+pub nexthdr: __u8, -+pub flags: __u8, -+pub cpi: __be16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_beet_phdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+pub padlen: __u8, -+pub reserved: __u8, -+} -+pub const IPV4_DEVCONF_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_FORWARDING; -+pub const IPV4_DEVCONF_MC_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_MC_FORWARDING; -+pub const IPV4_DEVCONF_PROXY_ARP: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROXY_ARP; -+pub const IPV4_DEVCONF_ACCEPT_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_REDIRECTS; -+pub const IPV4_DEVCONF_SECURE_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SECURE_REDIRECTS; -+pub const IPV4_DEVCONF_SEND_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SEND_REDIRECTS; -+pub const IPV4_DEVCONF_SHARED_MEDIA: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SHARED_MEDIA; -+pub const IPV4_DEVCONF_RP_FILTER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_RP_FILTER; -+pub const IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE; -+pub const IPV4_DEVCONF_BOOTP_RELAY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_BOOTP_RELAY; -+pub const IPV4_DEVCONF_LOG_MARTIANS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_LOG_MARTIANS; -+pub const IPV4_DEVCONF_TAG: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_TAG; -+pub const IPV4_DEVCONF_ARPFILTER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARPFILTER; -+pub const IPV4_DEVCONF_MEDIUM_ID: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_MEDIUM_ID; -+pub const IPV4_DEVCONF_NOXFRM: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_NOXFRM; -+pub const IPV4_DEVCONF_NOPOLICY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_NOPOLICY; -+pub const IPV4_DEVCONF_FORCE_IGMP_VERSION: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_FORCE_IGMP_VERSION; -+pub const IPV4_DEVCONF_ARP_ANNOUNCE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_ANNOUNCE; -+pub const IPV4_DEVCONF_ARP_IGNORE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_IGNORE; -+pub const IPV4_DEVCONF_PROMOTE_SECONDARIES: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROMOTE_SECONDARIES; -+pub const IPV4_DEVCONF_ARP_ACCEPT: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_ACCEPT; -+pub const IPV4_DEVCONF_ARP_NOTIFY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_NOTIFY; -+pub const IPV4_DEVCONF_ACCEPT_LOCAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_LOCAL; -+pub const IPV4_DEVCONF_SRC_VMARK: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SRC_VMARK; -+pub const IPV4_DEVCONF_PROXY_ARP_PVLAN: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROXY_ARP_PVLAN; -+pub const IPV4_DEVCONF_ROUTE_LOCALNET: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ROUTE_LOCALNET; -+pub const IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL; -+pub const IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL; -+pub const IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN; -+pub const IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST; -+pub const IPV4_DEVCONF_DROP_GRATUITOUS_ARP: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_DROP_GRATUITOUS_ARP; -+pub const IPV4_DEVCONF_BC_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_BC_FORWARDING; -+pub const IPV4_DEVCONF_ARP_EVICT_NOCARRIER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_EVICT_NOCARRIER; -+pub const __IPV4_DEVCONF_MAX: _bindgen_ty_2 = _bindgen_ty_2::__IPV4_DEVCONF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_2 { -+IPV4_DEVCONF_FORWARDING = 1, -+IPV4_DEVCONF_MC_FORWARDING = 2, -+IPV4_DEVCONF_PROXY_ARP = 3, -+IPV4_DEVCONF_ACCEPT_REDIRECTS = 4, -+IPV4_DEVCONF_SECURE_REDIRECTS = 5, -+IPV4_DEVCONF_SEND_REDIRECTS = 6, -+IPV4_DEVCONF_SHARED_MEDIA = 7, -+IPV4_DEVCONF_RP_FILTER = 8, -+IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE = 9, -+IPV4_DEVCONF_BOOTP_RELAY = 10, -+IPV4_DEVCONF_LOG_MARTIANS = 11, -+IPV4_DEVCONF_TAG = 12, -+IPV4_DEVCONF_ARPFILTER = 13, -+IPV4_DEVCONF_MEDIUM_ID = 14, -+IPV4_DEVCONF_NOXFRM = 15, -+IPV4_DEVCONF_NOPOLICY = 16, -+IPV4_DEVCONF_FORCE_IGMP_VERSION = 17, -+IPV4_DEVCONF_ARP_ANNOUNCE = 18, -+IPV4_DEVCONF_ARP_IGNORE = 19, -+IPV4_DEVCONF_PROMOTE_SECONDARIES = 20, -+IPV4_DEVCONF_ARP_ACCEPT = 21, -+IPV4_DEVCONF_ARP_NOTIFY = 22, -+IPV4_DEVCONF_ACCEPT_LOCAL = 23, -+IPV4_DEVCONF_SRC_VMARK = 24, -+IPV4_DEVCONF_PROXY_ARP_PVLAN = 25, -+IPV4_DEVCONF_ROUTE_LOCALNET = 26, -+IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL = 27, -+IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL = 28, -+IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 29, -+IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 30, -+IPV4_DEVCONF_DROP_GRATUITOUS_ARP = 31, -+IPV4_DEVCONF_BC_FORWARDING = 32, -+IPV4_DEVCONF_ARP_EVICT_NOCARRIER = 33, -+__IPV4_DEVCONF_MAX = 34, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_addr { -+pub in6_u: in6_addr__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union in6_addr__bindgen_ty_1 { -+pub u6_addr8: [__u8; 16usize], -+pub u6_addr16: [__be16; 8usize], -+pub u6_addr32: [__be32; 4usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct sockaddr_in6 { -+pub sin6_family: crate::ctypes::c_ushort, -+pub sin6_port: __be16, -+pub sin6_flowinfo: __be32, -+pub sin6_addr: in6_addr, -+pub sin6_scope_id: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6_mreq { -+pub ipv6mr_multiaddr: in6_addr, -+pub ipv6mr_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_flowlabel_req { -+pub flr_dst: in6_addr, -+pub flr_label: __be32, -+pub flr_action: __u8, -+pub flr_share: __u8, -+pub flr_flags: __u16, -+pub flr_expires: __u16, -+pub flr_linger: __u16, -+pub __flr_pad: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_pktinfo { -+pub ipi6_addr: in6_addr, -+pub ipi6_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ip6_mtuinfo { -+pub ip6m_addr: sockaddr_in6, -+pub ip6m_mtu: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_ifreq { -+pub ifr6_addr: in6_addr, -+pub ifr6_prefixlen: __u32, -+pub ifr6_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ipv6_rt_hdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+pub type_: __u8, -+pub segments_left: __u8, -+} -+#[repr(C, packed)] -+#[derive(Debug, Copy, Clone)] -+pub struct ipv6_opt_hdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+} -+#[repr(C)] -+pub struct rt0_hdr { -+pub rt_hdr: ipv6_rt_hdr, -+pub reserved: __u32, -+pub addr: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct rt2_hdr { -+pub rt_hdr: ipv6_rt_hdr, -+pub reserved: __u32, -+pub addr: in6_addr, -+} -+#[repr(C, packed)] -+#[derive(Copy, Clone)] -+pub struct ipv6_destopt_hao { -+pub type_: __u8, -+pub length: __u8, -+pub addr: in6_addr, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6hdr { -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -+pub flow_lbl: [__u8; 3usize], -+pub payload_len: __be16, -+pub nexthdr: __u8, -+pub hop_limit: __u8, -+pub __bindgen_anon_1: ipv6hdr__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union ipv6hdr__bindgen_ty_1 { -+pub __bindgen_anon_1: ipv6hdr__bindgen_ty_1__bindgen_ty_1, -+pub addrs: ipv6hdr__bindgen_ty_1__bindgen_ty_2, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6hdr__bindgen_ty_1__bindgen_ty_1 { -+pub saddr: in6_addr, -+pub daddr: in6_addr, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6hdr__bindgen_ty_1__bindgen_ty_2 { -+pub saddr: in6_addr, -+pub daddr: in6_addr, -+} -+impl ipv6hdr { -+#[inline] -+pub fn priority(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_priority(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn version(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_version(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(priority: __u8, version: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let priority: u8 = unsafe { ::core::mem::transmute(priority) }; -+priority as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let version: u8 = unsafe { ::core::mem::transmute(version) }; -+version as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+pub const DEVCONF_FORWARDING: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORWARDING; -+pub const DEVCONF_HOPLIMIT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_HOPLIMIT; -+pub const DEVCONF_MTU6: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MTU6; -+pub const DEVCONF_ACCEPT_RA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA; -+pub const DEVCONF_ACCEPT_REDIRECTS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_REDIRECTS; -+pub const DEVCONF_AUTOCONF: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_AUTOCONF; -+pub const DEVCONF_DAD_TRANSMITS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DAD_TRANSMITS; -+pub const DEVCONF_RTR_SOLICITS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICITS; -+pub const DEVCONF_RTR_SOLICIT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_INTERVAL; -+pub const DEVCONF_RTR_SOLICIT_DELAY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_DELAY; -+pub const DEVCONF_USE_TEMPADDR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_TEMPADDR; -+pub const DEVCONF_TEMP_VALID_LFT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_TEMP_VALID_LFT; -+pub const DEVCONF_TEMP_PREFERED_LFT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_TEMP_PREFERED_LFT; -+pub const DEVCONF_REGEN_MAX_RETRY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_REGEN_MAX_RETRY; -+pub const DEVCONF_MAX_DESYNC_FACTOR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX_DESYNC_FACTOR; -+pub const DEVCONF_MAX_ADDRESSES: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX_ADDRESSES; -+pub const DEVCONF_FORCE_MLD_VERSION: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORCE_MLD_VERSION; -+pub const DEVCONF_ACCEPT_RA_DEFRTR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_DEFRTR; -+pub const DEVCONF_ACCEPT_RA_PINFO: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_PINFO; -+pub const DEVCONF_ACCEPT_RA_RTR_PREF: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RTR_PREF; -+pub const DEVCONF_RTR_PROBE_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_PROBE_INTERVAL; -+pub const DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN; -+pub const DEVCONF_PROXY_NDP: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_PROXY_NDP; -+pub const DEVCONF_OPTIMISTIC_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_OPTIMISTIC_DAD; -+pub const DEVCONF_ACCEPT_SOURCE_ROUTE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_SOURCE_ROUTE; -+pub const DEVCONF_MC_FORWARDING: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MC_FORWARDING; -+pub const DEVCONF_DISABLE_IPV6: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DISABLE_IPV6; -+pub const DEVCONF_ACCEPT_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_DAD; -+pub const DEVCONF_FORCE_TLLAO: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORCE_TLLAO; -+pub const DEVCONF_NDISC_NOTIFY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_NOTIFY; -+pub const DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL; -+pub const DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL; -+pub const DEVCONF_SUPPRESS_FRAG_NDISC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SUPPRESS_FRAG_NDISC; -+pub const DEVCONF_ACCEPT_RA_FROM_LOCAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_FROM_LOCAL; -+pub const DEVCONF_USE_OPTIMISTIC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_OPTIMISTIC; -+pub const DEVCONF_ACCEPT_RA_MTU: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_MTU; -+pub const DEVCONF_STABLE_SECRET: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_STABLE_SECRET; -+pub const DEVCONF_USE_OIF_ADDRS_ONLY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_OIF_ADDRS_ONLY; -+pub const DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT; -+pub const DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN; -+pub const DEVCONF_DROP_UNICAST_IN_L2_MULTICAST: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DROP_UNICAST_IN_L2_MULTICAST; -+pub const DEVCONF_DROP_UNSOLICITED_NA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DROP_UNSOLICITED_NA; -+pub const DEVCONF_KEEP_ADDR_ON_DOWN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_KEEP_ADDR_ON_DOWN; -+pub const DEVCONF_RTR_SOLICIT_MAX_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_MAX_INTERVAL; -+pub const DEVCONF_SEG6_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SEG6_ENABLED; -+pub const DEVCONF_SEG6_REQUIRE_HMAC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SEG6_REQUIRE_HMAC; -+pub const DEVCONF_ENHANCED_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ENHANCED_DAD; -+pub const DEVCONF_ADDR_GEN_MODE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ADDR_GEN_MODE; -+pub const DEVCONF_DISABLE_POLICY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DISABLE_POLICY; -+pub const DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN; -+pub const DEVCONF_NDISC_TCLASS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_TCLASS; -+pub const DEVCONF_RPL_SEG_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RPL_SEG_ENABLED; -+pub const DEVCONF_RA_DEFRTR_METRIC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RA_DEFRTR_METRIC; -+pub const DEVCONF_IOAM6_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ENABLED; -+pub const DEVCONF_IOAM6_ID: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ID; -+pub const DEVCONF_IOAM6_ID_WIDE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ID_WIDE; -+pub const DEVCONF_NDISC_EVICT_NOCARRIER: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_EVICT_NOCARRIER; -+pub const DEVCONF_ACCEPT_UNTRACKED_NA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_UNTRACKED_NA; -+pub const DEVCONF_MAX: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_3 { -+DEVCONF_FORWARDING = 0, -+DEVCONF_HOPLIMIT = 1, -+DEVCONF_MTU6 = 2, -+DEVCONF_ACCEPT_RA = 3, -+DEVCONF_ACCEPT_REDIRECTS = 4, -+DEVCONF_AUTOCONF = 5, -+DEVCONF_DAD_TRANSMITS = 6, -+DEVCONF_RTR_SOLICITS = 7, -+DEVCONF_RTR_SOLICIT_INTERVAL = 8, -+DEVCONF_RTR_SOLICIT_DELAY = 9, -+DEVCONF_USE_TEMPADDR = 10, -+DEVCONF_TEMP_VALID_LFT = 11, -+DEVCONF_TEMP_PREFERED_LFT = 12, -+DEVCONF_REGEN_MAX_RETRY = 13, -+DEVCONF_MAX_DESYNC_FACTOR = 14, -+DEVCONF_MAX_ADDRESSES = 15, -+DEVCONF_FORCE_MLD_VERSION = 16, -+DEVCONF_ACCEPT_RA_DEFRTR = 17, -+DEVCONF_ACCEPT_RA_PINFO = 18, -+DEVCONF_ACCEPT_RA_RTR_PREF = 19, -+DEVCONF_RTR_PROBE_INTERVAL = 20, -+DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN = 21, -+DEVCONF_PROXY_NDP = 22, -+DEVCONF_OPTIMISTIC_DAD = 23, -+DEVCONF_ACCEPT_SOURCE_ROUTE = 24, -+DEVCONF_MC_FORWARDING = 25, -+DEVCONF_DISABLE_IPV6 = 26, -+DEVCONF_ACCEPT_DAD = 27, -+DEVCONF_FORCE_TLLAO = 28, -+DEVCONF_NDISC_NOTIFY = 29, -+DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL = 30, -+DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL = 31, -+DEVCONF_SUPPRESS_FRAG_NDISC = 32, -+DEVCONF_ACCEPT_RA_FROM_LOCAL = 33, -+DEVCONF_USE_OPTIMISTIC = 34, -+DEVCONF_ACCEPT_RA_MTU = 35, -+DEVCONF_STABLE_SECRET = 36, -+DEVCONF_USE_OIF_ADDRS_ONLY = 37, -+DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT = 38, -+DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 39, -+DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 40, -+DEVCONF_DROP_UNSOLICITED_NA = 41, -+DEVCONF_KEEP_ADDR_ON_DOWN = 42, -+DEVCONF_RTR_SOLICIT_MAX_INTERVAL = 43, -+DEVCONF_SEG6_ENABLED = 44, -+DEVCONF_SEG6_REQUIRE_HMAC = 45, -+DEVCONF_ENHANCED_DAD = 46, -+DEVCONF_ADDR_GEN_MODE = 47, -+DEVCONF_DISABLE_POLICY = 48, -+DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, -+DEVCONF_NDISC_TCLASS = 50, -+DEVCONF_RPL_SEG_ENABLED = 51, -+DEVCONF_RA_DEFRTR_METRIC = 52, -+DEVCONF_IOAM6_ENABLED = 53, -+DEVCONF_IOAM6_ID = 54, -+DEVCONF_IOAM6_ID_WIDE = 55, -+DEVCONF_NDISC_EVICT_NOCARRIER = 56, -+DEVCONF_ACCEPT_UNTRACKED_NA = 57, -+DEVCONF_MAX = 58, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum socket_state { -+SS_FREE = 0, -+SS_UNCONNECTED = 1, -+SS_CONNECTING = 2, -+SS_CONNECTED = 3, -+SS_DISCONNECTING = 4, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct pollfd { -+pub fd: crate::ctypes::c_int, -+pub events: crate::ctypes::c_short, -+pub revents: crate::ctypes::c_short, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct prctl_mm_map { -+pub start_code: __u64, -+pub end_code: __u64, -+pub start_data: __u64, -+pub end_data: __u64, -+pub start_brk: __u64, -+pub brk: __u64, -+pub start_stack: __u64, -+pub arg_start: __u64, -+pub arg_end: __u64, -+pub env_start: __u64, -+pub env_end: __u64, -+pub auxv: *mut __u64, -+pub auxv_size: __u32, -+pub exe_fd: __u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct rand_pool_info { -+pub entropy_count: crate::ctypes::c_int, -+pub buf_size: crate::ctypes::c_int, -+pub buf: __IncompleteArrayField<__u32>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_timespec { -+pub tv_sec: __kernel_time64_t, -+pub tv_nsec: crate::ctypes::c_longlong, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_itimerspec { -+pub it_interval: __kernel_timespec, -+pub it_value: __kernel_timespec, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_old_timeval { -+pub tv_sec: __kernel_long_t, -+pub tv_usec: __kernel_long_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_old_timespec { -+pub tv_sec: __kernel_old_time_t, -+pub tv_nsec: crate::ctypes::c_long, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_old_itimerval { -+pub it_interval: __kernel_old_timeval, -+pub it_value: __kernel_old_timeval, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_sock_timeval { -+pub tv_sec: __s64, -+pub tv_usec: __s64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct timespec { -+pub tv_sec: __kernel_old_time_t, -+pub tv_nsec: crate::ctypes::c_long, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct timeval { -+pub tv_sec: __kernel_old_time_t, -+pub tv_usec: __kernel_suseconds_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct itimerspec { -+pub it_interval: timespec, -+pub it_value: timespec, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct itimerval { -+pub it_interval: timeval, -+pub it_value: timeval, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct timezone { -+pub tz_minuteswest: crate::ctypes::c_int, -+pub tz_dsttime: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rusage { -+pub ru_utime: __kernel_old_timeval, -+pub ru_stime: __kernel_old_timeval, -+pub ru_maxrss: __kernel_long_t, -+pub ru_ixrss: __kernel_long_t, -+pub ru_idrss: __kernel_long_t, -+pub ru_isrss: __kernel_long_t, -+pub ru_minflt: __kernel_long_t, -+pub ru_majflt: __kernel_long_t, -+pub ru_nswap: __kernel_long_t, -+pub ru_inblock: __kernel_long_t, -+pub ru_oublock: __kernel_long_t, -+pub ru_msgsnd: __kernel_long_t, -+pub ru_msgrcv: __kernel_long_t, -+pub ru_nsignals: __kernel_long_t, -+pub ru_nvcsw: __kernel_long_t, -+pub ru_nivcsw: __kernel_long_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rlimit { -+pub rlim_cur: __kernel_ulong_t, -+pub rlim_max: __kernel_ulong_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rlimit64 { -+pub rlim_cur: __u64, -+pub rlim_max: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct clone_args { -+pub flags: __u64, -+pub pidfd: __u64, -+pub child_tid: __u64, -+pub parent_tid: __u64, -+pub exit_signal: __u64, -+pub stack: __u64, -+pub stack_size: __u64, -+pub tls: __u64, -+pub set_tid: __u64, -+pub set_tid_size: __u64, -+pub cgroup: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigset_t { -+pub sig: [crate::ctypes::c_ulong; 1usize], -+} -+pub type old_sigset_t = crate::ctypes::c_ulong; -+pub type __signalfn_t = ::core::option::Option; -+pub type __sighandler_t = __signalfn_t; -+pub type __restorefn_t = ::core::option::Option; -+pub type __sigrestore_t = __restorefn_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigaction { -+pub sa_handler: __sighandler_t, -+pub sa_flags: crate::ctypes::c_ulong, -+pub sa_mask: sigset_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigaltstack { -+pub ss_sp: *mut crate::ctypes::c_void, -+pub ss_flags: crate::ctypes::c_int, -+pub ss_size: __kernel_size_t, -+} -+pub type stack_t = sigaltstack; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union sigval { -+pub sival_int: crate::ctypes::c_int, -+pub sival_ptr: *mut crate::ctypes::c_void, -+} -+pub type sigval_t = sigval; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __sifields { -+pub _kill: __sifields__bindgen_ty_1, -+pub _timer: __sifields__bindgen_ty_2, -+pub _rt: __sifields__bindgen_ty_3, -+pub _sigchld: __sifields__bindgen_ty_4, -+pub _sigfault: __sifields__bindgen_ty_5, -+pub _sigpoll: __sifields__bindgen_ty_6, -+pub _sigsys: __sifields__bindgen_ty_7, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_1 { -+pub _pid: __kernel_pid_t, -+pub _uid: __kernel_uid32_t, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __sifields__bindgen_ty_2 { -+pub _tid: __kernel_timer_t, -+pub _overrun: crate::ctypes::c_int, -+pub _sigval: sigval_t, -+pub _sys_private: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __sifields__bindgen_ty_3 { -+pub _pid: __kernel_pid_t, -+pub _uid: __kernel_uid32_t, -+pub _sigval: sigval_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_4 { -+pub _pid: __kernel_pid_t, -+pub _uid: __kernel_uid32_t, -+pub _status: crate::ctypes::c_int, -+pub _utime: __kernel_clock_t, -+pub _stime: __kernel_clock_t, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __sifields__bindgen_ty_5 { -+pub _addr: *mut crate::ctypes::c_void, -+pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __sifields__bindgen_ty_5__bindgen_ty_1 { -+pub _trapno: crate::ctypes::c_int, -+pub _addr_lsb: crate::ctypes::c_short, -+pub _addr_bnd: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1, -+pub _addr_pkey: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2, -+pub _perf: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { -+pub _dummy_bnd: [crate::ctypes::c_char; 8usize], -+pub _lower: *mut crate::ctypes::c_void, -+pub _upper: *mut crate::ctypes::c_void, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { -+pub _dummy_pkey: [crate::ctypes::c_char; 8usize], -+pub _pkey: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3 { -+pub _data: crate::ctypes::c_ulong, -+pub _type: __u32, -+pub _flags: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_6 { -+pub _band: crate::ctypes::c_long, -+pub _fd: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_7 { -+pub _call_addr: *mut crate::ctypes::c_void, -+pub _syscall: crate::ctypes::c_int, -+pub _arch: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct siginfo { -+pub __bindgen_anon_1: siginfo__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union siginfo__bindgen_ty_1 { -+pub __bindgen_anon_1: siginfo__bindgen_ty_1__bindgen_ty_1, -+pub _si_pad: [crate::ctypes::c_int; 32usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { -+pub si_signo: crate::ctypes::c_int, -+pub si_errno: crate::ctypes::c_int, -+pub si_code: crate::ctypes::c_int, -+pub _sifields: __sifields, -+} -+pub type siginfo_t = siginfo; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct sigevent { -+pub sigev_value: sigval_t, -+pub sigev_signo: crate::ctypes::c_int, -+pub sigev_notify: crate::ctypes::c_int, -+pub _sigev_un: sigevent__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union sigevent__bindgen_ty_1 { -+pub _pad: [crate::ctypes::c_int; 12usize], -+pub _tid: crate::ctypes::c_int, -+pub _sigev_thread: sigevent__bindgen_ty_1__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { -+pub _function: ::core::option::Option, -+pub _attribute: *mut crate::ctypes::c_void, -+} -+pub type sigevent_t = sigevent; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statx_timestamp { -+pub tv_sec: __s64, -+pub tv_nsec: __u32, -+pub __reserved: __s32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statx { -+pub stx_mask: __u32, -+pub stx_blksize: __u32, -+pub stx_attributes: __u64, -+pub stx_nlink: __u32, -+pub stx_uid: __u32, -+pub stx_gid: __u32, -+pub stx_mode: __u16, -+pub __spare0: [__u16; 1usize], -+pub stx_ino: __u64, -+pub stx_size: __u64, -+pub stx_blocks: __u64, -+pub stx_attributes_mask: __u64, -+pub stx_atime: statx_timestamp, -+pub stx_btime: statx_timestamp, -+pub stx_ctime: statx_timestamp, -+pub stx_mtime: statx_timestamp, -+pub stx_rdev_major: __u32, -+pub stx_rdev_minor: __u32, -+pub stx_dev_major: __u32, -+pub stx_dev_minor: __u32, -+pub stx_mnt_id: __u64, -+pub stx_dio_mem_align: __u32, -+pub stx_dio_offset_align: __u32, -+pub __spare3: [__u64; 12usize], -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct sysinfo { -+pub uptime: __kernel_long_t, -+pub loads: [__kernel_ulong_t; 3usize], -+pub totalram: __kernel_ulong_t, -+pub freeram: __kernel_ulong_t, -+pub sharedram: __kernel_ulong_t, -+pub bufferram: __kernel_ulong_t, -+pub totalswap: __kernel_ulong_t, -+pub freeswap: __kernel_ulong_t, -+pub procs: __u16, -+pub pad: __u16, -+pub totalhigh: __kernel_ulong_t, -+pub freehigh: __kernel_ulong_t, -+pub mem_unit: __u32, -+pub _f: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcphdr { -+pub source: __be16, -+pub dest: __be16, -+pub seq: __be32, -+pub ack_seq: __be32, -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>, -+pub window: __be16, -+pub check: __sum16, -+pub urg_ptr: __be16, -+} -+impl tcphdr { -+#[inline] -+pub fn res1(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u16) } -+} -+#[inline] -+pub fn set_res1(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn doff(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u16) } -+} -+#[inline] -+pub fn set_doff(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn fin(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_fin(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(8usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn syn(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(9usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_syn(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(9usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn rst(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(10usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_rst(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(10usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn psh(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(11usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_psh(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(11usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn ack(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(12usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_ack(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(12usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn urg(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(13usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_urg(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(13usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn ece(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(14usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_ece(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(14usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn cwr(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(15usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_cwr(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(15usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(res1: __u16, doff: __u16, fin: __u16, syn: __u16, rst: __u16, psh: __u16, ack: __u16, urg: __u16, ece: __u16, cwr: __u16) -> __BindgenBitfieldUnit<[u8; 2usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let res1: u16 = unsafe { ::core::mem::transmute(res1) }; -+res1 as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let doff: u16 = unsafe { ::core::mem::transmute(doff) }; -+doff as u64 -+}); -+__bindgen_bitfield_unit.set(8usize, 1u8, { -+let fin: u16 = unsafe { ::core::mem::transmute(fin) }; -+fin as u64 -+}); -+__bindgen_bitfield_unit.set(9usize, 1u8, { -+let syn: u16 = unsafe { ::core::mem::transmute(syn) }; -+syn as u64 -+}); -+__bindgen_bitfield_unit.set(10usize, 1u8, { -+let rst: u16 = unsafe { ::core::mem::transmute(rst) }; -+rst as u64 -+}); -+__bindgen_bitfield_unit.set(11usize, 1u8, { -+let psh: u16 = unsafe { ::core::mem::transmute(psh) }; -+psh as u64 -+}); -+__bindgen_bitfield_unit.set(12usize, 1u8, { -+let ack: u16 = unsafe { ::core::mem::transmute(ack) }; -+ack as u64 -+}); -+__bindgen_bitfield_unit.set(13usize, 1u8, { -+let urg: u16 = unsafe { ::core::mem::transmute(urg) }; -+urg as u64 -+}); -+__bindgen_bitfield_unit.set(14usize, 1u8, { -+let ece: u16 = unsafe { ::core::mem::transmute(ece) }; -+ece as u64 -+}); -+__bindgen_bitfield_unit.set(15usize, 1u8, { -+let cwr: u16 = unsafe { ::core::mem::transmute(cwr) }; -+cwr as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union tcp_word_hdr { -+pub hdr: tcphdr, -+pub words: [__be32; 5usize], -+} -+pub const TCP_FLAG_CWR: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_CWR; -+pub const TCP_FLAG_ECE: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_ECE; -+pub const TCP_FLAG_URG: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_URG; -+pub const TCP_FLAG_ACK: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_ACK; -+pub const TCP_FLAG_PSH: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_PSH; -+pub const TCP_FLAG_RST: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_RST; -+pub const TCP_FLAG_SYN: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_SYN; -+pub const TCP_FLAG_FIN: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_FIN; -+pub const TCP_RESERVED_BITS: _bindgen_ty_4 = _bindgen_ty_4::TCP_RESERVED_BITS; -+pub const TCP_DATA_OFFSET: _bindgen_ty_4 = _bindgen_ty_4::TCP_DATA_OFFSET; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_4 { -+TCP_FLAG_CWR = 32768, -+TCP_FLAG_ECE = 16384, -+TCP_FLAG_URG = 8192, -+TCP_FLAG_ACK = 4096, -+TCP_FLAG_PSH = 2048, -+TCP_FLAG_RST = 1024, -+TCP_FLAG_SYN = 512, -+TCP_FLAG_FIN = 256, -+TCP_RESERVED_BITS = 15, -+TCP_DATA_OFFSET = 240, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_repair_opt { -+pub opt_code: __u32, -+pub opt_val: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_repair_window { -+pub snd_wl1: __u32, -+pub snd_wnd: __u32, -+pub max_window: __u32, -+pub rcv_wnd: __u32, -+pub rcv_wup: __u32, -+} -+pub const TCP_NO_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_NO_QUEUE; -+pub const TCP_RECV_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_RECV_QUEUE; -+pub const TCP_SEND_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_SEND_QUEUE; -+pub const TCP_QUEUES_NR: _bindgen_ty_5 = _bindgen_ty_5::TCP_QUEUES_NR; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_5 { -+TCP_NO_QUEUE = 0, -+TCP_RECV_QUEUE = 1, -+TCP_SEND_QUEUE = 2, -+TCP_QUEUES_NR = 3, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum tcp_fastopen_client_fail { -+TFO_STATUS_UNSPEC = 0, -+TFO_COOKIE_UNAVAILABLE = 1, -+TFO_DATA_NOT_ACKED = 2, -+TFO_SYN_RETRANSMITTED = 3, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum tcp_ca_state { -+TCP_CA_Open = 0, -+TCP_CA_Disorder = 1, -+TCP_CA_CWR = 2, -+TCP_CA_Recovery = 3, -+TCP_CA_Loss = 4, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_info { -+pub tcpi_state: __u8, -+pub tcpi_ca_state: __u8, -+pub tcpi_retransmits: __u8, -+pub tcpi_probes: __u8, -+pub tcpi_backoff: __u8, -+pub tcpi_options: __u8, -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>, -+pub tcpi_rto: __u32, -+pub tcpi_ato: __u32, -+pub tcpi_snd_mss: __u32, -+pub tcpi_rcv_mss: __u32, -+pub tcpi_unacked: __u32, -+pub tcpi_sacked: __u32, -+pub tcpi_lost: __u32, -+pub tcpi_retrans: __u32, -+pub tcpi_fackets: __u32, -+pub tcpi_last_data_sent: __u32, -+pub tcpi_last_ack_sent: __u32, -+pub tcpi_last_data_recv: __u32, -+pub tcpi_last_ack_recv: __u32, -+pub tcpi_pmtu: __u32, -+pub tcpi_rcv_ssthresh: __u32, -+pub tcpi_rtt: __u32, -+pub tcpi_rttvar: __u32, -+pub tcpi_snd_ssthresh: __u32, -+pub tcpi_snd_cwnd: __u32, -+pub tcpi_advmss: __u32, -+pub tcpi_reordering: __u32, -+pub tcpi_rcv_rtt: __u32, -+pub tcpi_rcv_space: __u32, -+pub tcpi_total_retrans: __u32, -+pub tcpi_pacing_rate: __u64, -+pub tcpi_max_pacing_rate: __u64, -+pub tcpi_bytes_acked: __u64, -+pub tcpi_bytes_received: __u64, -+pub tcpi_segs_out: __u32, -+pub tcpi_segs_in: __u32, -+pub tcpi_notsent_bytes: __u32, -+pub tcpi_min_rtt: __u32, -+pub tcpi_data_segs_in: __u32, -+pub tcpi_data_segs_out: __u32, -+pub tcpi_delivery_rate: __u64, -+pub tcpi_busy_time: __u64, -+pub tcpi_rwnd_limited: __u64, -+pub tcpi_sndbuf_limited: __u64, -+pub tcpi_delivered: __u32, -+pub tcpi_delivered_ce: __u32, -+pub tcpi_bytes_sent: __u64, -+pub tcpi_bytes_retrans: __u64, -+pub tcpi_dsack_dups: __u32, -+pub tcpi_reord_seen: __u32, -+pub tcpi_rcv_ooopack: __u32, -+pub tcpi_snd_wnd: __u32, -+pub tcpi_rcv_wnd: __u32, -+pub tcpi_rehash: __u32, -+} -+impl tcp_info { -+#[inline] -+pub fn tcpi_snd_wscale(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_snd_wscale(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn tcpi_rcv_wscale(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_rcv_wscale(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn tcpi_delivery_rate_app_limited(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_delivery_rate_app_limited(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(8usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn tcpi_fastopen_client_fail(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(9usize, 2u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_fastopen_client_fail(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(9usize, 2u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(tcpi_snd_wscale: __u8, tcpi_rcv_wscale: __u8, tcpi_delivery_rate_app_limited: __u8, tcpi_fastopen_client_fail: __u8) -> __BindgenBitfieldUnit<[u8; 2usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let tcpi_snd_wscale: u8 = unsafe { ::core::mem::transmute(tcpi_snd_wscale) }; -+tcpi_snd_wscale as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let tcpi_rcv_wscale: u8 = unsafe { ::core::mem::transmute(tcpi_rcv_wscale) }; -+tcpi_rcv_wscale as u64 -+}); -+__bindgen_bitfield_unit.set(8usize, 1u8, { -+let tcpi_delivery_rate_app_limited: u8 = unsafe { ::core::mem::transmute(tcpi_delivery_rate_app_limited) }; -+tcpi_delivery_rate_app_limited as u64 -+}); -+__bindgen_bitfield_unit.set(9usize, 2u8, { -+let tcpi_fastopen_client_fail: u8 = unsafe { ::core::mem::transmute(tcpi_fastopen_client_fail) }; -+tcpi_fastopen_client_fail as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+pub const TCP_NLA_PAD: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_PAD; -+pub const TCP_NLA_BUSY: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BUSY; -+pub const TCP_NLA_RWND_LIMITED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_RWND_LIMITED; -+pub const TCP_NLA_SNDBUF_LIMITED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SNDBUF_LIMITED; -+pub const TCP_NLA_DATA_SEGS_OUT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DATA_SEGS_OUT; -+pub const TCP_NLA_TOTAL_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TOTAL_RETRANS; -+pub const TCP_NLA_PACING_RATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_PACING_RATE; -+pub const TCP_NLA_DELIVERY_RATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERY_RATE; -+pub const TCP_NLA_SND_CWND: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SND_CWND; -+pub const TCP_NLA_REORDERING: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REORDERING; -+pub const TCP_NLA_MIN_RTT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_MIN_RTT; -+pub const TCP_NLA_RECUR_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_RECUR_RETRANS; -+pub const TCP_NLA_DELIVERY_RATE_APP_LMT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERY_RATE_APP_LMT; -+pub const TCP_NLA_SNDQ_SIZE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SNDQ_SIZE; -+pub const TCP_NLA_CA_STATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_CA_STATE; -+pub const TCP_NLA_SND_SSTHRESH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SND_SSTHRESH; -+pub const TCP_NLA_DELIVERED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERED; -+pub const TCP_NLA_DELIVERED_CE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERED_CE; -+pub const TCP_NLA_BYTES_SENT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_SENT; -+pub const TCP_NLA_BYTES_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_RETRANS; -+pub const TCP_NLA_DSACK_DUPS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DSACK_DUPS; -+pub const TCP_NLA_REORD_SEEN: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REORD_SEEN; -+pub const TCP_NLA_SRTT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SRTT; -+pub const TCP_NLA_TIMEOUT_REHASH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TIMEOUT_REHASH; -+pub const TCP_NLA_BYTES_NOTSENT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_NOTSENT; -+pub const TCP_NLA_EDT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_EDT; -+pub const TCP_NLA_TTL: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TTL; -+pub const TCP_NLA_REHASH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REHASH; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_6 { -+TCP_NLA_PAD = 0, -+TCP_NLA_BUSY = 1, -+TCP_NLA_RWND_LIMITED = 2, -+TCP_NLA_SNDBUF_LIMITED = 3, -+TCP_NLA_DATA_SEGS_OUT = 4, -+TCP_NLA_TOTAL_RETRANS = 5, -+TCP_NLA_PACING_RATE = 6, -+TCP_NLA_DELIVERY_RATE = 7, -+TCP_NLA_SND_CWND = 8, -+TCP_NLA_REORDERING = 9, -+TCP_NLA_MIN_RTT = 10, -+TCP_NLA_RECUR_RETRANS = 11, -+TCP_NLA_DELIVERY_RATE_APP_LMT = 12, -+TCP_NLA_SNDQ_SIZE = 13, -+TCP_NLA_CA_STATE = 14, -+TCP_NLA_SND_SSTHRESH = 15, -+TCP_NLA_DELIVERED = 16, -+TCP_NLA_DELIVERED_CE = 17, -+TCP_NLA_BYTES_SENT = 18, -+TCP_NLA_BYTES_RETRANS = 19, -+TCP_NLA_DSACK_DUPS = 20, -+TCP_NLA_REORD_SEEN = 21, -+TCP_NLA_SRTT = 22, -+TCP_NLA_TIMEOUT_REHASH = 23, -+TCP_NLA_BYTES_NOTSENT = 24, -+TCP_NLA_EDT = 25, -+TCP_NLA_TTL = 26, -+TCP_NLA_REHASH = 27, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct tcp_md5sig { -+pub tcpm_addr: __kernel_sockaddr_storage, -+pub tcpm_flags: __u8, -+pub tcpm_prefixlen: __u8, -+pub tcpm_keylen: __u16, -+pub tcpm_ifindex: crate::ctypes::c_int, -+pub tcpm_key: [__u8; 80usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_diag_md5sig { -+pub tcpm_family: __u8, -+pub tcpm_prefixlen: __u8, -+pub tcpm_keylen: __u16, -+pub tcpm_addr: [__be32; 4usize], -+pub tcpm_key: [__u8; 80usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_zerocopy_receive { -+pub address: __u64, -+pub length: __u32, -+pub recv_skip_hint: __u32, -+pub inq: __u32, -+pub err: __s32, -+pub copybuf_address: __u64, -+pub copybuf_len: __s32, -+pub flags: __u32, -+pub msg_control: __u64, -+pub msg_controllen: __u64, -+pub msg_flags: __u32, -+pub reserved: __u32, -+} -+pub type cc_t = crate::ctypes::c_uchar; -+pub type speed_t = crate::ctypes::c_uint; -+pub type tcflag_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct termios { -+pub c_iflag: tcflag_t, -+pub c_oflag: tcflag_t, -+pub c_cflag: tcflag_t, -+pub c_lflag: tcflag_t, -+pub c_line: cc_t, -+pub c_cc: [cc_t; 19usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct termios2 { -+pub c_iflag: tcflag_t, -+pub c_oflag: tcflag_t, -+pub c_cflag: tcflag_t, -+pub c_lflag: tcflag_t, -+pub c_line: cc_t, -+pub c_cc: [cc_t; 19usize], -+pub c_ispeed: speed_t, -+pub c_ospeed: speed_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ktermios { -+pub c_iflag: tcflag_t, -+pub c_oflag: tcflag_t, -+pub c_cflag: tcflag_t, -+pub c_lflag: tcflag_t, -+pub c_line: cc_t, -+pub c_cc: [cc_t; 19usize], -+pub c_ispeed: speed_t, -+pub c_ospeed: speed_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct winsize { -+pub ws_row: crate::ctypes::c_ushort, -+pub ws_col: crate::ctypes::c_ushort, -+pub ws_xpixel: crate::ctypes::c_ushort, -+pub ws_ypixel: crate::ctypes::c_ushort, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct termio { -+pub c_iflag: crate::ctypes::c_ushort, -+pub c_oflag: crate::ctypes::c_ushort, -+pub c_cflag: crate::ctypes::c_ushort, -+pub c_lflag: crate::ctypes::c_ushort, -+pub c_line: crate::ctypes::c_uchar, -+pub c_cc: [crate::ctypes::c_uchar; 8usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct iovec { -+pub iov_base: *mut crate::ctypes::c_void, -+pub iov_len: __kernel_size_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sockaddr_un { -+pub sun_family: __kernel_sa_family_t, -+pub sun_path: [crate::ctypes::c_char; 108usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct oldold_utsname { -+pub sysname: [crate::ctypes::c_char; 9usize], -+pub nodename: [crate::ctypes::c_char; 9usize], -+pub release: [crate::ctypes::c_char; 9usize], -+pub version: [crate::ctypes::c_char; 9usize], -+pub machine: [crate::ctypes::c_char; 9usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct old_utsname { -+pub sysname: [crate::ctypes::c_char; 65usize], -+pub nodename: [crate::ctypes::c_char; 65usize], -+pub release: [crate::ctypes::c_char; 65usize], -+pub version: [crate::ctypes::c_char; 65usize], -+pub machine: [crate::ctypes::c_char; 65usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct new_utsname { -+pub sysname: [crate::ctypes::c_char; 65usize], -+pub nodename: [crate::ctypes::c_char; 65usize], -+pub release: [crate::ctypes::c_char; 65usize], -+pub version: [crate::ctypes::c_char; 65usize], -+pub machine: [crate::ctypes::c_char; 65usize], -+pub domainname: [crate::ctypes::c_char; 65usize], -+} -+impl membarrier_cmd { -+pub const MEMBARRIER_CMD_SHARED: membarrier_cmd = membarrier_cmd::MEMBARRIER_CMD_GLOBAL; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum membarrier_cmd { -+MEMBARRIER_CMD_QUERY = 0, -+MEMBARRIER_CMD_GLOBAL = 1, -+MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, -+MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, -+MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, -+MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, -+MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, -+MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, -+MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, -+MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum membarrier_cmd_flag { -+MEMBARRIER_CMD_FLAG_CPU = 1, -+} -+#[repr(C, packed)] -+#[derive(Copy, Clone)] -+pub struct uffd_msg { -+pub event: __u8, -+pub reserved1: __u8, -+pub reserved2: __u16, -+pub reserved3: __u32, -+pub arg: uffd_msg__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union uffd_msg__bindgen_ty_1 { -+pub pagefault: uffd_msg__bindgen_ty_1__bindgen_ty_1, -+pub fork: uffd_msg__bindgen_ty_1__bindgen_ty_2, -+pub remap: uffd_msg__bindgen_ty_1__bindgen_ty_3, -+pub remove: uffd_msg__bindgen_ty_1__bindgen_ty_4, -+pub reserved: uffd_msg__bindgen_ty_1__bindgen_ty_5, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_1 { -+pub flags: __u64, -+pub address: __u64, -+pub feat: uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 { -+pub ptid: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_2 { -+pub ufd: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_3 { -+pub from: __u64, -+pub to: __u64, -+pub len: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_4 { -+pub start: __u64, -+pub end: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_5 { -+pub reserved1: __u64, -+pub reserved2: __u64, -+pub reserved3: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_api { -+pub api: __u64, -+pub features: __u64, -+pub ioctls: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_range { -+pub start: __u64, -+pub len: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_register { -+pub range: uffdio_range, -+pub mode: __u64, -+pub ioctls: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_copy { -+pub dst: __u64, -+pub src: __u64, -+pub len: __u64, -+pub mode: __u64, -+pub copy: __s64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_zeropage { -+pub range: uffdio_range, -+pub mode: __u64, -+pub zeropage: __s64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_writeprotect { -+pub range: uffdio_range, -+pub mode: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_continue { -+pub range: uffdio_range, -+pub mode: __u64, -+pub mapped: __s64, -+} -+#[repr(C)] -+pub struct io_uring_sqe { -+pub opcode: __u8, -+pub flags: __u8, -+pub ioprio: __u16, -+pub fd: __s32, -+pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_1, -+pub __bindgen_anon_2: io_uring_sqe__bindgen_ty_2, -+pub len: __u32, -+pub __bindgen_anon_3: io_uring_sqe__bindgen_ty_3, -+pub user_data: __u64, -+pub __bindgen_anon_4: io_uring_sqe__bindgen_ty_4, -+pub personality: __u16, -+pub __bindgen_anon_5: io_uring_sqe__bindgen_ty_5, -+pub __bindgen_anon_6: io_uring_sqe__bindgen_ty_6, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_1 { -+pub off: __u64, -+pub addr2: __u64, -+pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_1__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sqe__bindgen_ty_1__bindgen_ty_1 { -+pub cmd_op: __u32, -+pub __pad1: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_2 { -+pub addr: __u64, -+pub splice_off_in: __u64, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_3 { -+pub rw_flags: __kernel_rwf_t, -+pub fsync_flags: __u32, -+pub poll_events: __u16, -+pub poll32_events: __u32, -+pub sync_range_flags: __u32, -+pub msg_flags: __u32, -+pub timeout_flags: __u32, -+pub accept_flags: __u32, -+pub cancel_flags: __u32, -+pub open_flags: __u32, -+pub statx_flags: __u32, -+pub fadvise_advice: __u32, -+pub splice_flags: __u32, -+pub rename_flags: __u32, -+pub unlink_flags: __u32, -+pub hardlink_flags: __u32, -+pub xattr_flags: __u32, -+pub msg_ring_flags: __u32, -+pub uring_cmd_flags: __u32, -+} -+#[repr(C, packed)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_4 { -+pub buf_index: __u16, -+pub buf_group: __u16, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_5 { -+pub splice_fd_in: __s32, -+pub file_index: __u32, -+pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_5__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sqe__bindgen_ty_5__bindgen_ty_1 { -+pub addr_len: __u16, -+pub __pad3: [__u16; 1usize], -+} -+#[repr(C)] -+pub struct io_uring_sqe__bindgen_ty_6 { -+pub __bindgen_anon_1: __BindgenUnionField, -+pub cmd: __BindgenUnionField<[__u8; 0usize]>, -+pub bindgen_union_field: [u64; 2usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sqe__bindgen_ty_6__bindgen_ty_1 { -+pub addr3: __u64, -+pub __pad2: [__u64; 1usize], -+} -+pub const IOSQE_FIXED_FILE_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_FIXED_FILE_BIT; -+pub const IOSQE_IO_DRAIN_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_DRAIN_BIT; -+pub const IOSQE_IO_LINK_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_LINK_BIT; -+pub const IOSQE_IO_HARDLINK_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_HARDLINK_BIT; -+pub const IOSQE_ASYNC_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_ASYNC_BIT; -+pub const IOSQE_BUFFER_SELECT_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_BUFFER_SELECT_BIT; -+pub const IOSQE_CQE_SKIP_SUCCESS_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_CQE_SKIP_SUCCESS_BIT; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_7 { -+IOSQE_FIXED_FILE_BIT = 0, -+IOSQE_IO_DRAIN_BIT = 1, -+IOSQE_IO_LINK_BIT = 2, -+IOSQE_IO_HARDLINK_BIT = 3, -+IOSQE_ASYNC_BIT = 4, -+IOSQE_BUFFER_SELECT_BIT = 5, -+IOSQE_CQE_SKIP_SUCCESS_BIT = 6, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum io_uring_op { -+IORING_OP_NOP = 0, -+IORING_OP_READV = 1, -+IORING_OP_WRITEV = 2, -+IORING_OP_FSYNC = 3, -+IORING_OP_READ_FIXED = 4, -+IORING_OP_WRITE_FIXED = 5, -+IORING_OP_POLL_ADD = 6, -+IORING_OP_POLL_REMOVE = 7, -+IORING_OP_SYNC_FILE_RANGE = 8, -+IORING_OP_SENDMSG = 9, -+IORING_OP_RECVMSG = 10, -+IORING_OP_TIMEOUT = 11, -+IORING_OP_TIMEOUT_REMOVE = 12, -+IORING_OP_ACCEPT = 13, -+IORING_OP_ASYNC_CANCEL = 14, -+IORING_OP_LINK_TIMEOUT = 15, -+IORING_OP_CONNECT = 16, -+IORING_OP_FALLOCATE = 17, -+IORING_OP_OPENAT = 18, -+IORING_OP_CLOSE = 19, -+IORING_OP_FILES_UPDATE = 20, -+IORING_OP_STATX = 21, -+IORING_OP_READ = 22, -+IORING_OP_WRITE = 23, -+IORING_OP_FADVISE = 24, -+IORING_OP_MADVISE = 25, -+IORING_OP_SEND = 26, -+IORING_OP_RECV = 27, -+IORING_OP_OPENAT2 = 28, -+IORING_OP_EPOLL_CTL = 29, -+IORING_OP_SPLICE = 30, -+IORING_OP_PROVIDE_BUFFERS = 31, -+IORING_OP_REMOVE_BUFFERS = 32, -+IORING_OP_TEE = 33, -+IORING_OP_SHUTDOWN = 34, -+IORING_OP_RENAMEAT = 35, -+IORING_OP_UNLINKAT = 36, -+IORING_OP_MKDIRAT = 37, -+IORING_OP_SYMLINKAT = 38, -+IORING_OP_LINKAT = 39, -+IORING_OP_MSG_RING = 40, -+IORING_OP_FSETXATTR = 41, -+IORING_OP_SETXATTR = 42, -+IORING_OP_FGETXATTR = 43, -+IORING_OP_GETXATTR = 44, -+IORING_OP_SOCKET = 45, -+IORING_OP_URING_CMD = 46, -+IORING_OP_SEND_ZC = 47, -+IORING_OP_SENDMSG_ZC = 48, -+IORING_OP_LAST = 49, -+} -+pub const IORING_MSG_DATA: _bindgen_ty_8 = _bindgen_ty_8::IORING_MSG_DATA; -+pub const IORING_MSG_SEND_FD: _bindgen_ty_8 = _bindgen_ty_8::IORING_MSG_SEND_FD; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_8 { -+IORING_MSG_DATA = 0, -+IORING_MSG_SEND_FD = 1, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct io_uring_cqe { -+pub user_data: __u64, -+pub res: __s32, -+pub flags: __u32, -+pub big_cqe: __IncompleteArrayField<__u64>, -+} -+pub const IORING_CQE_BUFFER_SHIFT: _bindgen_ty_9 = _bindgen_ty_9::IORING_CQE_BUFFER_SHIFT; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_9 { -+IORING_CQE_BUFFER_SHIFT = 16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_sqring_offsets { -+pub head: __u32, -+pub tail: __u32, -+pub ring_mask: __u32, -+pub ring_entries: __u32, -+pub flags: __u32, -+pub dropped: __u32, -+pub array: __u32, -+pub resv1: __u32, -+pub resv2: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_cqring_offsets { -+pub head: __u32, -+pub tail: __u32, -+pub ring_mask: __u32, -+pub ring_entries: __u32, -+pub overflow: __u32, -+pub cqes: __u32, -+pub flags: __u32, -+pub resv1: __u32, -+pub resv2: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_params { -+pub sq_entries: __u32, -+pub cq_entries: __u32, -+pub flags: __u32, -+pub sq_thread_cpu: __u32, -+pub sq_thread_idle: __u32, -+pub features: __u32, -+pub wq_fd: __u32, -+pub resv: [__u32; 3usize], -+pub sq_off: io_sqring_offsets, -+pub cq_off: io_cqring_offsets, -+} -+pub const IORING_REGISTER_BUFFERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS; -+pub const IORING_UNREGISTER_BUFFERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_BUFFERS; -+pub const IORING_REGISTER_FILES: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES; -+pub const IORING_UNREGISTER_FILES: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_FILES; -+pub const IORING_REGISTER_EVENTFD: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_EVENTFD; -+pub const IORING_UNREGISTER_EVENTFD: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_EVENTFD; -+pub const IORING_REGISTER_FILES_UPDATE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES_UPDATE; -+pub const IORING_REGISTER_EVENTFD_ASYNC: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_EVENTFD_ASYNC; -+pub const IORING_REGISTER_PROBE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PROBE; -+pub const IORING_REGISTER_PERSONALITY: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PERSONALITY; -+pub const IORING_UNREGISTER_PERSONALITY: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_PERSONALITY; -+pub const IORING_REGISTER_RESTRICTIONS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_RESTRICTIONS; -+pub const IORING_REGISTER_ENABLE_RINGS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_ENABLE_RINGS; -+pub const IORING_REGISTER_FILES2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES2; -+pub const IORING_REGISTER_FILES_UPDATE2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES_UPDATE2; -+pub const IORING_REGISTER_BUFFERS2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS2; -+pub const IORING_REGISTER_BUFFERS_UPDATE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS_UPDATE; -+pub const IORING_REGISTER_IOWQ_AFF: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_IOWQ_AFF; -+pub const IORING_UNREGISTER_IOWQ_AFF: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_IOWQ_AFF; -+pub const IORING_REGISTER_IOWQ_MAX_WORKERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_IOWQ_MAX_WORKERS; -+pub const IORING_REGISTER_RING_FDS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_RING_FDS; -+pub const IORING_UNREGISTER_RING_FDS: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_RING_FDS; -+pub const IORING_REGISTER_PBUF_RING: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PBUF_RING; -+pub const IORING_UNREGISTER_PBUF_RING: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_PBUF_RING; -+pub const IORING_REGISTER_SYNC_CANCEL: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_SYNC_CANCEL; -+pub const IORING_REGISTER_FILE_ALLOC_RANGE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILE_ALLOC_RANGE; -+pub const IORING_REGISTER_LAST: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_LAST; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_10 { -+IORING_REGISTER_BUFFERS = 0, -+IORING_UNREGISTER_BUFFERS = 1, -+IORING_REGISTER_FILES = 2, -+IORING_UNREGISTER_FILES = 3, -+IORING_REGISTER_EVENTFD = 4, -+IORING_UNREGISTER_EVENTFD = 5, -+IORING_REGISTER_FILES_UPDATE = 6, -+IORING_REGISTER_EVENTFD_ASYNC = 7, -+IORING_REGISTER_PROBE = 8, -+IORING_REGISTER_PERSONALITY = 9, -+IORING_UNREGISTER_PERSONALITY = 10, -+IORING_REGISTER_RESTRICTIONS = 11, -+IORING_REGISTER_ENABLE_RINGS = 12, -+IORING_REGISTER_FILES2 = 13, -+IORING_REGISTER_FILES_UPDATE2 = 14, -+IORING_REGISTER_BUFFERS2 = 15, -+IORING_REGISTER_BUFFERS_UPDATE = 16, -+IORING_REGISTER_IOWQ_AFF = 17, -+IORING_UNREGISTER_IOWQ_AFF = 18, -+IORING_REGISTER_IOWQ_MAX_WORKERS = 19, -+IORING_REGISTER_RING_FDS = 20, -+IORING_UNREGISTER_RING_FDS = 21, -+IORING_REGISTER_PBUF_RING = 22, -+IORING_UNREGISTER_PBUF_RING = 23, -+IORING_REGISTER_SYNC_CANCEL = 24, -+IORING_REGISTER_FILE_ALLOC_RANGE = 25, -+IORING_REGISTER_LAST = 26, -+} -+pub const IO_WQ_BOUND: _bindgen_ty_11 = _bindgen_ty_11::IO_WQ_BOUND; -+pub const IO_WQ_UNBOUND: _bindgen_ty_11 = _bindgen_ty_11::IO_WQ_UNBOUND; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_11 { -+IO_WQ_BOUND = 0, -+IO_WQ_UNBOUND = 1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_files_update { -+pub offset: __u32, -+pub resv: __u32, -+pub fds: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_rsrc_register { -+pub nr: __u32, -+pub flags: __u32, -+pub resv2: __u64, -+pub data: __u64, -+pub tags: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_rsrc_update { -+pub offset: __u32, -+pub resv: __u32, -+pub data: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_rsrc_update2 { -+pub offset: __u32, -+pub resv: __u32, -+pub data: __u64, -+pub tags: __u64, -+pub nr: __u32, -+pub resv2: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_notification_slot { -+pub tag: __u64, -+pub resv: [__u64; 3usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_notification_register { -+pub nr_slots: __u32, -+pub resv: __u32, -+pub resv2: __u64, -+pub data: __u64, -+pub resv3: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_probe_op { -+pub op: __u8, -+pub resv: __u8, -+pub flags: __u16, -+pub resv2: __u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct io_uring_probe { -+pub last_op: __u8, -+pub ops_len: __u8, -+pub resv: __u16, -+pub resv2: [__u32; 3usize], -+pub ops: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct io_uring_restriction { -+pub opcode: __u16, -+pub __bindgen_anon_1: io_uring_restriction__bindgen_ty_1, -+pub resv: __u8, -+pub resv2: [__u32; 3usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_restriction__bindgen_ty_1 { -+pub register_op: __u8, -+pub sqe_op: __u8, -+pub sqe_flags: __u8, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_buf { -+pub addr: __u64, -+pub len: __u32, -+pub bid: __u16, -+pub resv: __u16, -+} -+#[repr(C)] -+pub struct io_uring_buf_ring { -+pub __bindgen_anon_1: io_uring_buf_ring__bindgen_ty_1, -+} -+#[repr(C)] -+pub struct io_uring_buf_ring__bindgen_ty_1 { -+pub __bindgen_anon_1: __BindgenUnionField, -+pub bufs: __BindgenUnionField<[io_uring_buf; 0usize]>, -+pub bindgen_union_field: [u64; 2usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_buf_ring__bindgen_ty_1__bindgen_ty_1 { -+pub resv1: __u64, -+pub resv2: __u32, -+pub resv3: __u16, -+pub tail: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_buf_reg { -+pub ring_addr: __u64, -+pub ring_entries: __u32, -+pub bgid: __u16, -+pub pad: __u16, -+pub resv: [__u64; 3usize], -+} -+pub const IORING_RESTRICTION_REGISTER_OP: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_REGISTER_OP; -+pub const IORING_RESTRICTION_SQE_OP: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_OP; -+pub const IORING_RESTRICTION_SQE_FLAGS_ALLOWED: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_FLAGS_ALLOWED; -+pub const IORING_RESTRICTION_SQE_FLAGS_REQUIRED: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_FLAGS_REQUIRED; -+pub const IORING_RESTRICTION_LAST: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_LAST; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_12 { -+IORING_RESTRICTION_REGISTER_OP = 0, -+IORING_RESTRICTION_SQE_OP = 1, -+IORING_RESTRICTION_SQE_FLAGS_ALLOWED = 2, -+IORING_RESTRICTION_SQE_FLAGS_REQUIRED = 3, -+IORING_RESTRICTION_LAST = 4, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_getevents_arg { -+pub sigmask: __u64, -+pub sigmask_sz: __u32, -+pub pad: __u32, -+pub ts: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sync_cancel_reg { -+pub addr: __u64, -+pub fd: __s32, -+pub flags: __u32, -+pub timeout: __kernel_timespec, -+pub pad: [__u64; 4usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_file_index_range { -+pub off: __u32, -+pub len: __u32, -+pub resv: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_recvmsg_out { -+pub namelen: __u32, -+pub controllen: __u32, -+pub payloadlen: __u32, -+pub flags: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct sockaddr { -+pub __storage: __kernel_sockaddr_storage, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct linger { -+pub l_onoff: crate::ctypes::c_int, -+pub l_linger: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct linux_dirent64 { -+pub d_ino: crate::ctypes::c_ulong, -+pub d_off: crate::ctypes::c_long, -+pub d_reclen: __u16, -+pub d_type: __u8, -+pub d_name: __IncompleteArrayField, -+} -+pub type socklen_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct stat { -+pub st_dev: crate::ctypes::c_ulong, -+pub st_ino: crate::ctypes::c_ulong, -+pub st_mode: crate::ctypes::c_uint, -+pub st_nlink: crate::ctypes::c_uint, -+pub st_uid: crate::ctypes::c_uint, -+pub st_gid: crate::ctypes::c_uint, -+pub st_rdev: crate::ctypes::c_ulong, -+pub __pad1: crate::ctypes::c_ulong, -+pub st_size: crate::ctypes::c_long, -+pub st_blksize: crate::ctypes::c_int, -+pub __pad2: crate::ctypes::c_int, -+pub st_blocks: crate::ctypes::c_long, -+pub st_atime: crate::ctypes::c_long, -+pub st_atime_nsec: crate::ctypes::c_ulong, -+pub st_mtime: crate::ctypes::c_long, -+pub st_mtime_nsec: crate::ctypes::c_ulong, -+pub st_ctime: crate::ctypes::c_long, -+pub st_ctime_nsec: crate::ctypes::c_ulong, -+pub __unused4: crate::ctypes::c_uint, -+pub __unused5: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statfs { -+pub f_type: __kernel_long_t, -+pub f_bsize: __kernel_long_t, -+pub f_blocks: __kernel_long_t, -+pub f_bfree: __kernel_long_t, -+pub f_bavail: __kernel_long_t, -+pub f_files: __kernel_long_t, -+pub f_ffree: __kernel_long_t, -+pub f_fsid: __kernel_fsid_t, -+pub f_namelen: __kernel_long_t, -+pub f_frsize: __kernel_long_t, -+pub f_flags: __kernel_long_t, -+pub f_spare: [__kernel_long_t; 4usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statfs64 { -+pub f_type: __kernel_long_t, -+pub f_bsize: __kernel_long_t, -+pub f_blocks: __u64, -+pub f_bfree: __u64, -+pub f_bavail: __u64, -+pub f_files: __u64, -+pub f_ffree: __u64, -+pub f_fsid: __kernel_fsid_t, -+pub f_namelen: __kernel_long_t, -+pub f_frsize: __kernel_long_t, -+pub f_flags: __kernel_long_t, -+pub f_spare: [__kernel_long_t; 4usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct compat_statfs64 { -+pub f_type: __u32, -+pub f_bsize: __u32, -+pub f_blocks: __u64, -+pub f_bfree: __u64, -+pub f_bavail: __u64, -+pub f_files: __u64, -+pub f_ffree: __u64, -+pub f_fsid: __kernel_fsid_t, -+pub f_namelen: __u32, -+pub f_frsize: __u32, -+pub f_flags: __u32, -+pub f_spare: [__u32; 4usize], -+} -+pub type __fsword_t = __kernel_long_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct user_desc { -+pub entry_number: crate::ctypes::c_uint, -+pub base_addr: crate::ctypes::c_uint, -+pub limit: crate::ctypes::c_uint, -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -+pub __bindgen_padding_0: [u8; 3usize], -+} -+impl user_desc { -+#[inline] -+pub fn seg_32bit(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_seg_32bit(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn contents(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(1usize, 2u8) as u32) } -+} -+#[inline] -+pub fn set_contents(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(1usize, 2u8, val as u64) -+} -+} -+#[inline] -+pub fn read_exec_only(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_read_exec_only(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(3usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn limit_in_pages(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_limit_in_pages(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn seg_not_present(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(5usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_seg_not_present(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(5usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn useable(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(6usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_useable(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(6usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(seg_32bit: crate::ctypes::c_uint, contents: crate::ctypes::c_uint, read_exec_only: crate::ctypes::c_uint, limit_in_pages: crate::ctypes::c_uint, seg_not_present: crate::ctypes::c_uint, useable: crate::ctypes::c_uint) -> __BindgenBitfieldUnit<[u8; 1usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 1u8, { -+let seg_32bit: u32 = unsafe { ::core::mem::transmute(seg_32bit) }; -+seg_32bit as u64 -+}); -+__bindgen_bitfield_unit.set(1usize, 2u8, { -+let contents: u32 = unsafe { ::core::mem::transmute(contents) }; -+contents as u64 -+}); -+__bindgen_bitfield_unit.set(3usize, 1u8, { -+let read_exec_only: u32 = unsafe { ::core::mem::transmute(read_exec_only) }; -+read_exec_only as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 1u8, { -+let limit_in_pages: u32 = unsafe { ::core::mem::transmute(limit_in_pages) }; -+limit_in_pages as u64 -+}); -+__bindgen_bitfield_unit.set(5usize, 1u8, { -+let seg_not_present: u32 = unsafe { ::core::mem::transmute(seg_not_present) }; -+seg_not_present as u64 -+}); -+__bindgen_bitfield_unit.set(6usize, 1u8, { -+let useable: u32 = unsafe { ::core::mem::transmute(useable) }; -+useable as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct msghdr { -+pub msg_name: *mut crate::ctypes::c_void, -+pub msg_namelen: crate::ctypes::c_int, -+pub msg_iov: *mut iovec, -+pub msg_iovlen: size_t, -+pub msg_control: *mut crate::ctypes::c_void, -+pub msg_controllen: size_t, -+pub msg_flags: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct cmsghdr { -+pub cmsg_len: size_t, -+pub cmsg_level: crate::ctypes::c_int, -+pub cmsg_type: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ucred { -+pub pid: __u32, -+pub uid: __u32, -+pub gid: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct mmsghdr { -+pub msg_hdr: msghdr, -+pub msg_len: crate::ctypes::c_uint, -+} -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs -new file mode 100644 -index 000000000..1b6c25e1f ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs -@@ -0,0 +1,1465 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+pub const FIONREAD: u32 = 21531; -+pub const FIONBIO: u32 = 21537; -+pub const FIOCLEX: u32 = 21585; -+pub const FIONCLEX: u32 = 21584; -+pub const FIOASYNC: u32 = 21586; -+pub const FIOQSIZE: u32 = 21600; -+pub const TCXONC: u32 = 21514; -+pub const TCFLSH: u32 = 21515; -+pub const TIOCSCTTY: u32 = 21518; -+pub const TIOCSPGRP: u32 = 21520; -+pub const TIOCOUTQ: u32 = 21521; -+pub const TIOCSTI: u32 = 21522; -+pub const TIOCSWINSZ: u32 = 21524; -+pub const TIOCMGET: u32 = 21525; -+pub const TIOCMBIS: u32 = 21526; -+pub const TIOCMBIC: u32 = 21527; -+pub const TIOCMSET: u32 = 21528; -+pub const TIOCSSOFTCAR: u32 = 21530; -+pub const TIOCLINUX: u32 = 21532; -+pub const TIOCCONS: u32 = 21533; -+pub const TIOCSSERIAL: u32 = 21535; -+pub const TIOCPKT: u32 = 21536; -+pub const TIOCNOTTY: u32 = 21538; -+pub const TIOCSETD: u32 = 21539; -+pub const TIOCSBRK: u32 = 21543; -+pub const TIOCCBRK: u32 = 21544; -+pub const TIOCSRS485: u32 = 21551; -+pub const TIOCSPTLCK: u32 = 1074025521; -+pub const TIOCSIG: u32 = 1074025526; -+pub const TIOCVHANGUP: u32 = 21559; -+pub const TIOCSERCONFIG: u32 = 21587; -+pub const TIOCSERGWILD: u32 = 21588; -+pub const TIOCSERSWILD: u32 = 21589; -+pub const TIOCSLCKTRMIOS: u32 = 21591; -+pub const TIOCSERGSTRUCT: u32 = 21592; -+pub const TIOCSERGETLSR: u32 = 21593; -+pub const TIOCSERGETMULTI: u32 = 21594; -+pub const TIOCSERSETMULTI: u32 = 21595; -+pub const TIOCMIWAIT: u32 = 21596; -+pub const TCGETS: u32 = 21505; -+pub const TCGETA: u32 = 21509; -+pub const TCSBRK: u32 = 21513; -+pub const TCSBRKP: u32 = 21541; -+pub const TCSETA: u32 = 21510; -+pub const TCSETAF: u32 = 21512; -+pub const TCSETAW: u32 = 21511; -+pub const TIOCEXCL: u32 = 21516; -+pub const TIOCNXCL: u32 = 21517; -+pub const TIOCGDEV: u32 = 2147767346; -+pub const TIOCGEXCL: u32 = 2147767360; -+pub const TIOCGICOUNT: u32 = 21597; -+pub const TIOCGLCKTRMIOS: u32 = 21590; -+pub const TIOCGPGRP: u32 = 21519; -+pub const TIOCGPKT: u32 = 2147767352; -+pub const TIOCGPTLCK: u32 = 2147767353; -+pub const TIOCGPTN: u32 = 2147767344; -+pub const TIOCGPTPEER: u32 = 21569; -+pub const TIOCGRS485: u32 = 21550; -+pub const TIOCGSERIAL: u32 = 21534; -+pub const TIOCGSID: u32 = 21545; -+pub const TIOCGSOFTCAR: u32 = 21529; -+pub const TIOCGWINSZ: u32 = 21523; -+pub const TCGETS2: u32 = 2150388778; -+pub const TCGETX: u32 = 21554; -+pub const TCSETS: u32 = 21506; -+pub const TCSETS2: u32 = 1076646955; -+pub const TCSETSF: u32 = 21508; -+pub const TCSETSF2: u32 = 1076646957; -+pub const TCSETSW: u32 = 21507; -+pub const TCSETSW2: u32 = 1076646956; -+pub const TCSETX: u32 = 21555; -+pub const TCSETXF: u32 = 21556; -+pub const TCSETXW: u32 = 21557; -+pub const TIOCGETD: u32 = 21540; -+pub const MTIOCGET: u32 = 2150657282; -+pub const BLKSSZGET: u32 = 4712; -+pub const BLKPBSZGET: u32 = 4731; -+pub const BLKROSET: u32 = 4701; -+pub const BLKROGET: u32 = 4702; -+pub const BLKRRPART: u32 = 4703; -+pub const BLKGETSIZE: u32 = 4704; -+pub const BLKFLSBUF: u32 = 4705; -+pub const BLKRASET: u32 = 4706; -+pub const BLKRAGET: u32 = 4707; -+pub const BLKFRASET: u32 = 4708; -+pub const BLKFRAGET: u32 = 4709; -+pub const BLKSECTSET: u32 = 4710; -+pub const BLKSECTGET: u32 = 4711; -+pub const BLKPG: u32 = 4713; -+pub const BLKBSZGET: u32 = 2148012656; -+pub const BLKBSZSET: u32 = 1074270833; -+pub const BLKGETSIZE64: u32 = 2148012658; -+pub const BLKTRACESETUP: u32 = 3225948787; -+pub const BLKTRACESTART: u32 = 4724; -+pub const BLKTRACESTOP: u32 = 4725; -+pub const BLKTRACETEARDOWN: u32 = 4726; -+pub const BLKDISCARD: u32 = 4727; -+pub const BLKIOMIN: u32 = 4728; -+pub const BLKIOOPT: u32 = 4729; -+pub const BLKALIGNOFF: u32 = 4730; -+pub const BLKDISCARDZEROES: u32 = 4732; -+pub const BLKSECDISCARD: u32 = 4733; -+pub const BLKROTATIONAL: u32 = 4734; -+pub const BLKZEROOUT: u32 = 4735; -+pub const UFFDIO_REGISTER: u32 = 3223366144; -+pub const UFFDIO_UNREGISTER: u32 = 2148575745; -+pub const UFFDIO_WAKE: u32 = 2148575746; -+pub const UFFDIO_COPY: u32 = 3223890435; -+pub const UFFDIO_ZEROPAGE: u32 = 3223366148; -+pub const UFFDIO_WRITEPROTECT: u32 = 3222841862; -+pub const UFFDIO_API: u32 = 3222841919; -+pub const NS_GET_USERNS: u32 = 46849; -+pub const NS_GET_PARENT: u32 = 46850; -+pub const NS_GET_NSTYPE: u32 = 46851; -+pub const KDGETLED: u32 = 19249; -+pub const KDSETLED: u32 = 19250; -+pub const KDGKBLED: u32 = 19300; -+pub const KDSKBLED: u32 = 19301; -+pub const KDGKBTYPE: u32 = 19251; -+pub const KDADDIO: u32 = 19252; -+pub const KDDELIO: u32 = 19253; -+pub const KDENABIO: u32 = 19254; -+pub const KDDISABIO: u32 = 19255; -+pub const KDSETMODE: u32 = 19258; -+pub const KDGETMODE: u32 = 19259; -+pub const KDMKTONE: u32 = 19248; -+pub const KIOCSOUND: u32 = 19247; -+pub const GIO_CMAP: u32 = 19312; -+pub const PIO_CMAP: u32 = 19313; -+pub const GIO_FONT: u32 = 19296; -+pub const GIO_FONTX: u32 = 19307; -+pub const PIO_FONT: u32 = 19297; -+pub const PIO_FONTX: u32 = 19308; -+pub const PIO_FONTRESET: u32 = 19309; -+pub const GIO_SCRNMAP: u32 = 19264; -+pub const GIO_UNISCRNMAP: u32 = 19305; -+pub const PIO_SCRNMAP: u32 = 19265; -+pub const PIO_UNISCRNMAP: u32 = 19306; -+pub const GIO_UNIMAP: u32 = 19302; -+pub const PIO_UNIMAP: u32 = 19303; -+pub const PIO_UNIMAPCLR: u32 = 19304; -+pub const KDGKBMODE: u32 = 19268; -+pub const KDSKBMODE: u32 = 19269; -+pub const KDGKBMETA: u32 = 19298; -+pub const KDSKBMETA: u32 = 19299; -+pub const KDGKBENT: u32 = 19270; -+pub const KDSKBENT: u32 = 19271; -+pub const KDGKBSENT: u32 = 19272; -+pub const KDSKBSENT: u32 = 19273; -+pub const KDGKBDIACR: u32 = 19274; -+pub const KDGETKEYCODE: u32 = 19276; -+pub const KDSETKEYCODE: u32 = 19277; -+pub const KDSIGACCEPT: u32 = 19278; -+pub const VT_OPENQRY: u32 = 22016; -+pub const VT_GETMODE: u32 = 22017; -+pub const VT_SETMODE: u32 = 22018; -+pub const VT_GETSTATE: u32 = 22019; -+pub const VT_RELDISP: u32 = 22021; -+pub const VT_ACTIVATE: u32 = 22022; -+pub const VT_WAITACTIVE: u32 = 22023; -+pub const VT_DISALLOCATE: u32 = 22024; -+pub const VT_RESIZE: u32 = 22025; -+pub const VT_RESIZEX: u32 = 22026; -+pub const FIOSETOWN: u32 = 35073; -+pub const SIOCSPGRP: u32 = 35074; -+pub const FIOGETOWN: u32 = 35075; -+pub const SIOCGPGRP: u32 = 35076; -+pub const SIOCATMARK: u32 = 35077; -+pub const SIOCGSTAMP: u32 = 35078; -+pub const TIOCINQ: u32 = 21531; -+pub const SIOCADDRT: u32 = 35083; -+pub const SIOCDELRT: u32 = 35084; -+pub const SIOCGIFNAME: u32 = 35088; -+pub const SIOCSIFLINK: u32 = 35089; -+pub const SIOCGIFCONF: u32 = 35090; -+pub const SIOCGIFFLAGS: u32 = 35091; -+pub const SIOCSIFFLAGS: u32 = 35092; -+pub const SIOCGIFADDR: u32 = 35093; -+pub const SIOCSIFADDR: u32 = 35094; -+pub const SIOCGIFDSTADDR: u32 = 35095; -+pub const SIOCSIFDSTADDR: u32 = 35096; -+pub const SIOCGIFBRDADDR: u32 = 35097; -+pub const SIOCSIFBRDADDR: u32 = 35098; -+pub const SIOCGIFNETMASK: u32 = 35099; -+pub const SIOCSIFNETMASK: u32 = 35100; -+pub const SIOCGIFMETRIC: u32 = 35101; -+pub const SIOCSIFMETRIC: u32 = 35102; -+pub const SIOCGIFMEM: u32 = 35103; -+pub const SIOCSIFMEM: u32 = 35104; -+pub const SIOCGIFMTU: u32 = 35105; -+pub const SIOCSIFMTU: u32 = 35106; -+pub const SIOCSIFHWADDR: u32 = 35108; -+pub const SIOCGIFENCAP: u32 = 35109; -+pub const SIOCSIFENCAP: u32 = 35110; -+pub const SIOCGIFHWADDR: u32 = 35111; -+pub const SIOCGIFSLAVE: u32 = 35113; -+pub const SIOCSIFSLAVE: u32 = 35120; -+pub const SIOCADDMULTI: u32 = 35121; -+pub const SIOCDELMULTI: u32 = 35122; -+pub const SIOCDARP: u32 = 35155; -+pub const SIOCGARP: u32 = 35156; -+pub const SIOCSARP: u32 = 35157; -+pub const SIOCDRARP: u32 = 35168; -+pub const SIOCGRARP: u32 = 35169; -+pub const SIOCSRARP: u32 = 35170; -+pub const SIOCGIFMAP: u32 = 35184; -+pub const SIOCSIFMAP: u32 = 35185; -+pub const SIOCRTMSG: u32 = 35085; -+pub const SIOCSIFNAME: u32 = 35107; -+pub const SIOCGIFINDEX: u32 = 35123; -+pub const SIOGIFINDEX: u32 = 35123; -+pub const SIOCSIFPFLAGS: u32 = 35124; -+pub const SIOCGIFPFLAGS: u32 = 35125; -+pub const SIOCDIFADDR: u32 = 35126; -+pub const SIOCSIFHWBROADCAST: u32 = 35127; -+pub const SIOCGIFCOUNT: u32 = 35128; -+pub const SIOCGIFBR: u32 = 35136; -+pub const SIOCSIFBR: u32 = 35137; -+pub const SIOCGIFTXQLEN: u32 = 35138; -+pub const SIOCSIFTXQLEN: u32 = 35139; -+pub const SIOCADDDLCI: u32 = 35200; -+pub const SIOCDELDLCI: u32 = 35201; -+pub const SIOCDEVPRIVATE: u32 = 35312; -+pub const SIOCPROTOPRIVATE: u32 = 35296; -+pub const FIBMAP: u32 = 1; -+pub const FIGETBSZ: u32 = 2; -+pub const FIFREEZE: u32 = 3221510263; -+pub const FITHAW: u32 = 3221510264; -+pub const FITRIM: u32 = 3222820985; -+pub const FICLONE: u32 = 1074041865; -+pub const FICLONERANGE: u32 = 1075876877; -+pub const FIDEDUPERANGE: u32 = 3222836278; -+pub const FS_IOC_GETFLAGS: u32 = 2148034049; -+pub const FS_IOC_SETFLAGS: u32 = 1074292226; -+pub const FS_IOC_GETVERSION: u32 = 2148038145; -+pub const FS_IOC_SETVERSION: u32 = 1074296322; -+pub const FS_IOC_FIEMAP: u32 = 3223348747; -+pub const FS_IOC32_GETFLAGS: u32 = 2147771905; -+pub const FS_IOC32_SETFLAGS: u32 = 1074030082; -+pub const FS_IOC32_GETVERSION: u32 = 2147776001; -+pub const FS_IOC32_SETVERSION: u32 = 1074034178; -+pub const FS_IOC_FSGETXATTR: u32 = 2149341215; -+pub const FS_IOC_FSSETXATTR: u32 = 1075599392; -+pub const FS_IOC_GETFSLABEL: u32 = 2164298801; -+pub const FS_IOC_SETFSLABEL: u32 = 1090556978; -+pub const VIDIOC_SUBDEV_QUERYSTD: u32 = 2148030015; -+pub const AUTOFS_DEV_IOCTL_CLOSEMOUNT: u32 = 3222836085; -+pub const LIRC_SET_SEND_CARRIER: u32 = 1074030867; -+pub const AUTOFS_IOC_PROTOSUBVER: u32 = 2147783527; -+pub const PTP_SYS_OFFSET_PRECISE: u32 = 3225435400; -+pub const FSI_SCOM_WRITE: u32 = 3223352066; -+pub const ATM_GETCIRANGE: u32 = 1074815370; -+pub const DMA_BUF_SET_NAME_B: u32 = 1074291201; -+pub const RIO_CM_EP_GET_LIST_SIZE: u32 = 3221512961; -+pub const TUNSETPERSIST: u32 = 1074025675; -+pub const FS_IOC_GET_ENCRYPTION_POLICY: u32 = 1074554389; -+pub const CEC_RECEIVE: u32 = 3224920326; -+pub const MGSL_IOCGPARAMS: u32 = 2150657281; -+pub const ENI_SETMULT: u32 = 1074815335; -+pub const RIO_GET_EVENT_MASK: u32 = 2147773710; -+pub const LIRC_GET_MAX_TIMEOUT: u32 = 2147772681; -+pub const USBDEVFS_CLAIMINTERFACE: u32 = 2147767567; -+pub const CHIOMOVE: u32 = 1075077889; -+pub const SONYPI_IOCGBATFLAGS: u32 = 2147579399; -+pub const BTRFS_IOC_SYNC: u32 = 37896; -+pub const VIDIOC_TRY_FMT: u32 = 3234879040; -+pub const LIRC_SET_REC_MODE: u32 = 1074030866; -+pub const VIDIOC_DQEVENT: u32 = 2156418649; -+pub const RPMSG_DESTROY_EPT_IOCTL: u32 = 46338; -+pub const UVCIOC_CTRL_MAP: u32 = 3227546912; -+pub const VHOST_SET_BACKEND_FEATURES: u32 = 1074310949; -+pub const VHOST_VSOCK_SET_GUEST_CID: u32 = 1074311008; -+pub const UI_SET_KEYBIT: u32 = 1074025829; -+pub const LIRC_SET_REC_TIMEOUT: u32 = 1074030872; -+pub const FS_IOC_GET_ENCRYPTION_KEY_STATUS: u32 = 3229640218; -+pub const BTRFS_IOC_TREE_SEARCH_V2: u32 = 3228603409; -+pub const VHOST_SET_VRING_BASE: u32 = 1074310930; -+pub const RIO_ENABLE_DOORBELL_RANGE: u32 = 1074294025; -+pub const VIDIOC_TRY_EXT_CTRLS: u32 = 3223344713; -+pub const LIRC_GET_REC_MODE: u32 = 2147772674; -+pub const PPGETTIME: u32 = 2148561045; -+pub const BTRFS_IOC_RM_DEV: u32 = 1342215179; -+pub const ATM_SETBACKEND: u32 = 1073897970; -+pub const FSL_HV_IOCTL_PARTITION_START: u32 = 3222318851; -+pub const FBIO_WAITEVENT: u32 = 18056; -+pub const SWITCHTEC_IOCTL_PORT_TO_PFF: u32 = 3222034245; -+pub const NVME_IOCTL_IO_CMD: u32 = 3225964099; -+pub const IPMICTL_RECEIVE_MSG_TRUNC: u32 = 3224398091; -+pub const FDTWADDLE: u32 = 601; -+pub const NVME_IOCTL_SUBMIT_IO: u32 = 1076907586; -+pub const NILFS_IOCTL_SYNC: u32 = 2148036234; -+pub const VIDIOC_SUBDEV_S_DV_TIMINGS: u32 = 3229898327; -+pub const ASPEED_LPC_CTRL_IOCTL_GET_SIZE: u32 = 3222319616; -+pub const DM_DEV_STATUS: u32 = 3241737479; -+pub const TEE_IOC_CLOSE_SESSION: u32 = 2147787781; -+pub const NS_GETPSTAT: u32 = 3222298977; -+pub const UI_SET_PROPBIT: u32 = 1074025838; -+pub const TUNSETFILTEREBPF: u32 = 2147767521; -+pub const RIO_MPORT_MAINT_COMPTAG_SET: u32 = 1074031874; -+pub const AUTOFS_DEV_IOCTL_VERSION: u32 = 3222836081; -+pub const WDIOC_SETOPTIONS: u32 = 2147768068; -+pub const VHOST_SCSI_SET_ENDPOINT: u32 = 1088991040; -+pub const MGSL_IOCGTXIDLE: u32 = 27907; -+pub const ATM_ADDLECSADDR: u32 = 1074815374; -+pub const FSL_HV_IOCTL_GETPROP: u32 = 3223891719; -+pub const FDGETPRM: u32 = 2149581316; -+pub const HIDIOCAPPLICATION: u32 = 18434; -+pub const ENI_MEMDUMP: u32 = 1074815328; -+pub const PTP_SYS_OFFSET2: u32 = 1128283406; -+pub const VIDIOC_SUBDEV_G_DV_TIMINGS: u32 = 3229898328; -+pub const DMA_BUF_SET_NAME_A: u32 = 1074029057; -+pub const PTP_PIN_GETFUNC: u32 = 3227532550; -+pub const PTP_SYS_OFFSET_EXTENDED: u32 = 3300932873; -+pub const DFL_FPGA_PORT_UINT_SET_IRQ: u32 = 1074312776; -+pub const RTC_EPOCH_READ: u32 = 2148036621; -+pub const VIDIOC_SUBDEV_S_SELECTION: u32 = 3225441854; -+pub const VIDIOC_QUERY_EXT_CTRL: u32 = 3236451943; -+pub const ATM_GETLECSADDR: u32 = 1074815376; -+pub const FSL_HV_IOCTL_PARTITION_STOP: u32 = 3221794564; -+pub const SONET_GETDIAG: u32 = 2147770644; -+pub const ATMMPC_DATA: u32 = 25049; -+pub const IPMICTL_UNREGISTER_FOR_CMD_CHANS: u32 = 2148296989; -+pub const HIDIOCGCOLLECTIONINDEX: u32 = 1075333136; -+pub const RPMSG_CREATE_EPT_IOCTL: u32 = 1076409601; -+pub const GPIOHANDLE_GET_LINE_VALUES_IOCTL: u32 = 3225465864; -+pub const UI_DEV_SETUP: u32 = 1079792899; -+pub const ISST_IF_IO_CMD: u32 = 1074331138; -+pub const RIO_MPORT_MAINT_READ_REMOTE: u32 = 2149084423; -+pub const VIDIOC_OMAP3ISP_HIST_CFG: u32 = 3224393412; -+pub const BLKGETNRZONES: u32 = 2147750533; -+pub const VIDIOC_G_MODULATOR: u32 = 3225703990; -+pub const VBG_IOCTL_WRITE_CORE_DUMP: u32 = 3223082515; -+pub const USBDEVFS_SETINTERFACE: u32 = 2148029700; -+pub const PPPIOCGCHAN: u32 = 2147775543; -+pub const EVIOCGVERSION: u32 = 2147763457; -+pub const VHOST_NET_SET_BACKEND: u32 = 1074310960; -+pub const USBDEVFS_REAPURBNDELAY: u32 = 1074287885; -+pub const RNDZAPENTCNT: u32 = 20996; -+pub const VIDIOC_G_PARM: u32 = 3234616853; -+pub const TUNGETDEVNETNS: u32 = 21731; -+pub const LIRC_SET_MEASURE_CARRIER_MODE: u32 = 1074030877; -+pub const VHOST_SET_VRING_ERR: u32 = 1074310946; -+pub const VDUSE_VQ_SETUP: u32 = 1075872020; -+pub const AUTOFS_IOC_SETTIMEOUT: u32 = 3221787492; -+pub const VIDIOC_S_FREQUENCY: u32 = 1076647481; -+pub const F2FS_IOC_SEC_TRIM_FILE: u32 = 1075377428; -+pub const FS_IOC_REMOVE_ENCRYPTION_KEY: u32 = 3225445912; -+pub const WDIOC_GETPRETIMEOUT: u32 = 2147768073; -+pub const USBDEVFS_DROP_PRIVILEGES: u32 = 1074025758; -+pub const BTRFS_IOC_SNAP_CREATE_V2: u32 = 1342215191; -+pub const VHOST_VSOCK_SET_RUNNING: u32 = 1074048865; -+pub const STP_SET_OPTIONS: u32 = 1074275586; -+pub const FBIO_RADEON_GET_MIRROR: u32 = 2148024323; -+pub const IVTVFB_IOC_DMA_FRAME: u32 = 1075336896; -+pub const IPMICTL_SEND_COMMAND: u32 = 2150131981; -+pub const VIDIOC_G_ENC_INDEX: u32 = 2283296332; -+pub const DFL_FPGA_FME_PORT_PR: u32 = 46720; -+pub const CHIOSVOLTAG: u32 = 1076912914; -+pub const ATM_SETESIF: u32 = 1074815373; -+pub const FW_CDEV_IOC_SEND_RESPONSE: u32 = 1075323652; -+pub const PMU_IOC_GET_MODEL: u32 = 2148024835; -+pub const JSIOCGBTNMAP: u32 = 2214619700; -+pub const USBDEVFS_HUB_PORTINFO: u32 = 2155894035; -+pub const VBG_IOCTL_INTERRUPT_ALL_WAIT_FOR_EVENTS: u32 = 3222820363; -+pub const FDCLRPRM: u32 = 577; -+pub const BTRFS_IOC_SCRUB: u32 = 3288372251; -+pub const USBDEVFS_DISCONNECT: u32 = 21782; -+pub const TUNSETVNETBE: u32 = 1074025694; -+pub const ATMTCP_REMOVE: u32 = 24975; -+pub const VHOST_VDPA_GET_CONFIG: u32 = 2148052851; -+pub const PPPIOCGNPMODE: u32 = 3221779532; -+pub const FDGETDRVPRM: u32 = 2155872785; -+pub const TUNSETVNETLE: u32 = 1074025692; -+pub const PHN_SETREG: u32 = 1074294790; -+pub const PPPIOCDETACH: u32 = 1074033724; -+pub const MMTIMER_GETRES: u32 = 2148035841; -+pub const VIDIOC_SUBDEV_ENUMSTD: u32 = 3225966105; -+pub const PPGETFLAGS: u32 = 2147774618; -+pub const VDUSE_DEV_GET_FEATURES: u32 = 2148040977; -+pub const CAPI_MANUFACTURER_CMD: u32 = 3222291232; -+pub const VIDIOC_G_TUNER: u32 = 3226752541; -+pub const DM_TABLE_STATUS: u32 = 3241737484; -+pub const DM_DEV_ARM_POLL: u32 = 3241737488; -+pub const NE_CREATE_VM: u32 = 2148052512; -+pub const MEDIA_IOC_ENUM_LINKS: u32 = 3223878658; -+pub const F2FS_IOC_PRECACHE_EXTENTS: u32 = 62735; -+pub const DFL_FPGA_PORT_DMA_MAP: u32 = 46659; -+pub const MGSL_IOCGXCTRL: u32 = 27926; -+pub const FW_CDEV_IOC_SEND_REQUEST: u32 = 1076372225; -+pub const SONYPI_IOCGBLUE: u32 = 2147579400; -+pub const F2FS_IOC_DECOMPRESS_FILE: u32 = 62743; -+pub const I2OHTML: u32 = 3224398089; -+pub const VFIO_GET_API_VERSION: u32 = 15204; -+pub const IDT77105_GETSTATZ: u32 = 1074815283; -+pub const I2OPARMSET: u32 = 3223873795; -+pub const TEE_IOC_CANCEL: u32 = 2148049924; -+pub const PTP_SYS_OFFSET_PRECISE2: u32 = 3225435409; -+pub const DFL_FPGA_PORT_RESET: u32 = 46656; -+pub const PPPIOCGASYNCMAP: u32 = 2147775576; -+pub const EVIOCGKEYCODE_V2: u32 = 2150122756; -+pub const DM_DEV_SET_GEOMETRY: u32 = 3241737487; -+pub const HIDIOCSUSAGE: u32 = 1075333132; -+pub const FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE_ONCE: u32 = 1075323664; -+pub const PTP_EXTTS_REQUEST: u32 = 1074806018; -+pub const SWITCHTEC_IOCTL_EVENT_CTL: u32 = 3223869251; -+pub const WDIOC_SETPRETIMEOUT: u32 = 3221509896; -+pub const VHOST_SCSI_CLEAR_ENDPOINT: u32 = 1088991041; -+pub const JSIOCGAXES: u32 = 2147576337; -+pub const HIDIOCSFLAG: u32 = 1074022415; -+pub const PTP_PEROUT_REQUEST2: u32 = 1077427468; -+pub const PPWDATA: u32 = 1073836166; -+pub const PTP_CLOCK_GETCAPS: u32 = 2152742145; -+pub const FDGETMAXERRS: u32 = 2148794894; -+pub const TUNSETQUEUE: u32 = 1074025689; -+pub const PTP_ENABLE_PPS: u32 = 1074019588; -+pub const SIOCSIFATMTCP: u32 = 24960; -+pub const CEC_ADAP_G_LOG_ADDRS: u32 = 2153537795; -+pub const ND_IOCTL_ARS_CAP: u32 = 3223342593; -+pub const NBD_SET_BLKSIZE: u32 = 43777; -+pub const NBD_SET_TIMEOUT: u32 = 43785; -+pub const VHOST_SCSI_GET_ABI_VERSION: u32 = 1074048834; -+pub const RIO_UNMAP_INBOUND: u32 = 1074294034; -+pub const ATM_QUERYLOOP: u32 = 1074815316; -+pub const DFL_FPGA_GET_API_VERSION: u32 = 46592; -+pub const USBDEVFS_WAIT_FOR_RESUME: u32 = 21795; -+pub const FBIO_CURSOR: u32 = 3228059144; -+pub const RNDCLEARPOOL: u32 = 20998; -+pub const VIDIOC_QUERYSTD: u32 = 2148030015; -+pub const DMA_BUF_IOCTL_SYNC: u32 = 1074291200; -+pub const SCIF_RECV: u32 = 3222827783; -+pub const PTP_PIN_GETFUNC2: u32 = 3227532559; -+pub const FW_CDEV_IOC_ALLOCATE: u32 = 3223331586; -+pub const CEC_ADAP_G_CAPS: u32 = 3226231040; -+pub const VIDIOC_G_FBUF: u32 = 2150651402; -+pub const PTP_ENABLE_PPS2: u32 = 1074019597; -+pub const PCITEST_CLEAR_IRQ: u32 = 20496; -+pub const IPMICTL_SET_GETS_EVENTS_CMD: u32 = 2147772688; -+pub const BTRFS_IOC_DEVICES_READY: u32 = 2415957031; -+pub const JSIOCGAXMAP: u32 = 2151705138; -+pub const FW_CDEV_IOC_GET_CYCLE_TIMER: u32 = 2148541196; -+pub const FW_CDEV_IOC_SET_ISO_CHANNELS: u32 = 1074799383; -+pub const RTC_WIE_OFF: u32 = 28688; -+pub const PPGETMODE: u32 = 2147774616; -+pub const VIDIOC_DBG_G_REGISTER: u32 = 3224917584; -+pub const PTP_SYS_OFFSET: u32 = 1128283397; -+pub const BTRFS_IOC_SPACE_INFO: u32 = 3222311956; -+pub const VIDIOC_SUBDEV_ENUM_FRAME_SIZE: u32 = 3225441866; -+pub const ND_IOCTL_VENDOR: u32 = 3221769737; -+pub const SCIF_VREADFROM: u32 = 3223876364; -+pub const BTRFS_IOC_TRANS_START: u32 = 37894; -+pub const INOTIFY_IOC_SETNEXTWD: u32 = 1074022656; -+pub const SNAPSHOT_GET_IMAGE_SIZE: u32 = 2148021006; -+pub const TUNDETACHFILTER: u32 = 1074812118; -+pub const ND_IOCTL_CLEAR_ERROR: u32 = 3223342596; -+pub const IOC_PR_CLEAR: u32 = 1074819277; -+pub const SCIF_READFROM: u32 = 3223876362; -+pub const PPPIOCGDEBUG: u32 = 2147775553; -+pub const BLKGETZONESZ: u32 = 2147750532; -+pub const HIDIOCGUSAGES: u32 = 3491514387; -+pub const SONYPI_IOCGTEMP: u32 = 2147579404; -+pub const UI_SET_MSCBIT: u32 = 1074025832; -+pub const APM_IOC_SUSPEND: u32 = 16642; -+pub const BTRFS_IOC_TREE_SEARCH: u32 = 3489698833; -+pub const RTC_PLL_GET: u32 = 2149609489; -+pub const RIO_CM_EP_GET_LIST: u32 = 3221512962; -+pub const USBDEVFS_DISCSIGNAL: u32 = 2148553998; -+pub const LIRC_GET_MIN_TIMEOUT: u32 = 2147772680; -+pub const SWITCHTEC_IOCTL_EVENT_SUMMARY_LEGACY: u32 = 2174244674; -+pub const DM_TARGET_MSG: u32 = 3241737486; -+pub const SONYPI_IOCGBAT1REM: u32 = 2147644931; -+pub const EVIOCSFF: u32 = 1076905344; -+pub const TUNSETGROUP: u32 = 1074025678; -+pub const EVIOCGKEYCODE: u32 = 2148025604; -+pub const KCOV_REMOTE_ENABLE: u32 = 1075340134; -+pub const ND_IOCTL_GET_CONFIG_SIZE: u32 = 3222031876; -+pub const FDEJECT: u32 = 602; -+pub const TUNSETOFFLOAD: u32 = 1074025680; -+pub const PPPIOCCONNECT: u32 = 1074033722; -+pub const ATM_ADDADDR: u32 = 1074815368; -+pub const VDUSE_DEV_INJECT_CONFIG_IRQ: u32 = 33043; -+pub const AUTOFS_DEV_IOCTL_ASKUMOUNT: u32 = 3222836093; -+pub const VHOST_VDPA_GET_STATUS: u32 = 2147594097; -+pub const CCISS_PASSTHRU: u32 = 3227009547; -+pub const MGSL_IOCCLRMODCOUNT: u32 = 27919; -+pub const TEE_IOC_SUPPL_SEND: u32 = 2148574215; -+pub const ATMARPD_CTRL: u32 = 25057; -+pub const UI_ABS_SETUP: u32 = 1075598596; -+pub const UI_DEV_DESTROY: u32 = 21762; -+pub const BTRFS_IOC_QUOTA_CTL: u32 = 3222311976; -+pub const RTC_AIE_ON: u32 = 28673; -+pub const AUTOFS_IOC_EXPIRE: u32 = 2165085029; -+pub const PPPIOCSDEBUG: u32 = 1074033728; -+pub const GPIO_V2_LINE_SET_VALUES_IOCTL: u32 = 3222320143; -+pub const PPPIOCSMRU: u32 = 1074033746; -+pub const CCISS_DEREGDISK: u32 = 16908; -+pub const UI_DEV_CREATE: u32 = 21761; -+pub const FUSE_DEV_IOC_CLONE: u32 = 2147804416; -+pub const BTRFS_IOC_START_SYNC: u32 = 2148045848; -+pub const NILFS_IOCTL_DELETE_CHECKPOINT: u32 = 1074294401; -+pub const SNAPSHOT_AVAIL_SWAP_SIZE: u32 = 2148021011; -+pub const DM_TABLE_CLEAR: u32 = 3241737482; -+pub const CCISS_GETINTINFO: u32 = 2148024834; -+pub const PPPIOCSASYNCMAP: u32 = 1074033751; -+pub const I2OEVTGET: u32 = 2154326283; -+pub const NVME_IOCTL_RESET: u32 = 20036; -+pub const PPYIELD: u32 = 28813; -+pub const NVME_IOCTL_IO64_CMD: u32 = 3226488392; -+pub const TUNSETCARRIER: u32 = 1074025698; -+pub const DM_DEV_WAIT: u32 = 3241737480; -+pub const RTC_WIE_ON: u32 = 28687; -+pub const MEDIA_IOC_DEVICE_INFO: u32 = 3238034432; -+pub const RIO_CM_CHAN_CREATE: u32 = 3221381891; -+pub const MGSL_IOCSPARAMS: u32 = 1076915456; -+pub const RTC_SET_TIME: u32 = 1076129802; -+pub const VHOST_RESET_OWNER: u32 = 44802; -+pub const IOC_OPAL_PSID_REVERT_TPR: u32 = 1091072232; -+pub const AUTOFS_DEV_IOCTL_OPENMOUNT: u32 = 3222836084; -+pub const UDF_GETEABLOCK: u32 = 2148035649; -+pub const VFIO_IOMMU_MAP_DMA: u32 = 15217; -+pub const VIDIOC_SUBSCRIBE_EVENT: u32 = 1075861082; -+pub const HIDIOCGFLAG: u32 = 2147764238; -+pub const HIDIOCGUCODE: u32 = 3222816781; -+pub const VIDIOC_OMAP3ISP_AF_CFG: u32 = 3226228421; -+pub const DM_REMOVE_ALL: u32 = 3241737473; -+pub const ASPEED_LPC_CTRL_IOCTL_MAP: u32 = 1074835969; -+pub const CCISS_GETFIRMVER: u32 = 2147762696; -+pub const ND_IOCTL_ARS_START: u32 = 3223342594; -+pub const PPPIOCSMRRU: u32 = 1074033723; -+pub const CEC_ADAP_S_LOG_ADDRS: u32 = 3227279620; -+pub const RPROC_GET_SHUTDOWN_ON_RELEASE: u32 = 2147792642; -+pub const DMA_HEAP_IOCTL_ALLOC: u32 = 3222816768; -+pub const PPSETTIME: u32 = 1074819222; -+pub const RTC_ALM_READ: u32 = 2149871624; -+pub const VDUSE_SET_API_VERSION: u32 = 1074299137; -+pub const RIO_MPORT_MAINT_WRITE_REMOTE: u32 = 1075342600; -+pub const VIDIOC_SUBDEV_S_CROP: u32 = 3224917564; -+pub const USBDEVFS_CONNECT: u32 = 21783; -+pub const SYNC_IOC_FILE_INFO: u32 = 3224911364; -+pub const ATMARP_MKIP: u32 = 25058; -+pub const VFIO_IOMMU_SPAPR_TCE_GET_INFO: u32 = 15216; -+pub const CCISS_GETHEARTBEAT: u32 = 2147762694; -+pub const ATM_RSTADDR: u32 = 1074815367; -+pub const NBD_SET_SIZE: u32 = 43778; -+pub const UDF_GETVOLIDENT: u32 = 2148035650; -+pub const GPIO_V2_LINE_GET_VALUES_IOCTL: u32 = 3222320142; -+pub const MGSL_IOCSTXIDLE: u32 = 27906; -+pub const FSL_HV_IOCTL_SETPROP: u32 = 3223891720; -+pub const BTRFS_IOC_GET_DEV_STATS: u32 = 3288896564; -+pub const PPRSTATUS: u32 = 2147577985; -+pub const MGSL_IOCTXENABLE: u32 = 27908; -+pub const UDF_GETEASIZE: u32 = 2147773504; -+pub const NVME_IOCTL_ADMIN64_CMD: u32 = 3226488391; -+pub const VHOST_SET_OWNER: u32 = 44801; -+pub const RIO_ALLOC_DMA: u32 = 3222826259; -+pub const RIO_CM_CHAN_ACCEPT: u32 = 3221775111; -+pub const I2OHRTGET: u32 = 3222825217; -+pub const ATM_SETCIRANGE: u32 = 1074815371; -+pub const HPET_IE_ON: u32 = 26625; -+pub const PERF_EVENT_IOC_ID: u32 = 2148017159; -+pub const TUNSETSNDBUF: u32 = 1074025684; -+pub const PTP_PIN_SETFUNC: u32 = 1080048903; -+pub const PPPIOCDISCONN: u32 = 29753; -+pub const VIDIOC_QUERYCTRL: u32 = 3225703972; -+pub const PPEXCL: u32 = 28815; -+pub const PCITEST_MSI: u32 = 1074024451; -+pub const FDWERRORCLR: u32 = 598; -+pub const AUTOFS_IOC_FAIL: u32 = 37729; -+pub const USBDEVFS_IOCTL: u32 = 3222295826; -+pub const VIDIOC_S_STD: u32 = 1074288152; -+pub const F2FS_IOC_RESIZE_FS: u32 = 1074328848; -+pub const SONET_SETDIAG: u32 = 3221512466; -+pub const BTRFS_IOC_DEFRAG: u32 = 1342215170; -+pub const CCISS_GETDRIVVER: u32 = 2147762697; -+pub const IPMICTL_GET_TIMING_PARMS_CMD: u32 = 2148034839; -+pub const HPET_IRQFREQ: u32 = 1074292742; -+pub const ATM_GETESI: u32 = 1074815365; -+pub const CCISS_GETLUNINFO: u32 = 2148286993; -+pub const AUTOFS_DEV_IOCTL_ISMOUNTPOINT: u32 = 3222836094; -+pub const TEE_IOC_SHM_ALLOC: u32 = 3222316033; -+pub const PERF_EVENT_IOC_SET_BPF: u32 = 1074013192; -+pub const UDMABUF_CREATE_LIST: u32 = 1074296131; -+pub const VHOST_SET_LOG_BASE: u32 = 1074310916; -+pub const ZATM_GETPOOL: u32 = 1074815329; -+pub const BR2684_SETFILT: u32 = 1075601808; -+pub const RNDGETPOOL: u32 = 2148028930; -+pub const PPS_GETPARAMS: u32 = 2148036769; -+pub const IOC_PR_RESERVE: u32 = 1074819273; -+pub const VIDIOC_TRY_DECODER_CMD: u32 = 3225966177; -+pub const RIO_CM_CHAN_CLOSE: u32 = 1073898244; -+pub const VIDIOC_DV_TIMINGS_CAP: u32 = 3230684772; -+pub const IOCTL_MEI_CONNECT_CLIENT_VTAG: u32 = 3222554628; -+pub const PMU_IOC_GET_BACKLIGHT: u32 = 2148024833; -+pub const USBDEVFS_GET_CAPABILITIES: u32 = 2147767578; -+pub const SCIF_WRITETO: u32 = 3223876363; -+pub const UDF_RELOCATE_BLOCKS: u32 = 3221777475; -+pub const FSL_HV_IOCTL_PARTITION_RESTART: u32 = 3221794561; -+pub const CCISS_REGNEWD: u32 = 16910; -+pub const FAT_IOCTL_SET_ATTRIBUTES: u32 = 1074033169; -+pub const VIDIOC_CREATE_BUFS: u32 = 3238024796; -+pub const CAPI_GET_VERSION: u32 = 3222291207; -+pub const SWITCHTEC_IOCTL_EVENT_SUMMARY: u32 = 2228770626; -+pub const VFIO_EEH_PE_OP: u32 = 15225; -+pub const FW_CDEV_IOC_CREATE_ISO_CONTEXT: u32 = 3223331592; -+pub const F2FS_IOC_RELEASE_COMPRESS_BLOCKS: u32 = 2148070674; -+pub const NBD_SET_SIZE_BLOCKS: u32 = 43783; -+pub const IPMI_BMC_IOCTL_SET_SMS_ATN: u32 = 45312; -+pub const ASPEED_P2A_CTRL_IOCTL_GET_MEMORY_CONFIG: u32 = 3222319873; -+pub const VIDIOC_S_AUDOUT: u32 = 1077171762; -+pub const VIDIOC_S_FMT: u32 = 3234878981; -+pub const PPPIOCATTACH: u32 = 1074033725; -+pub const VHOST_GET_VRING_BUSYLOOP_TIMEOUT: u32 = 1074310948; -+pub const FS_IOC_MEASURE_VERITY: u32 = 3221513862; -+pub const CCISS_BIG_PASSTHRU: u32 = 3227533842; -+pub const IPMICTL_SET_MY_LUN_CMD: u32 = 2147772691; -+pub const PCITEST_LEGACY_IRQ: u32 = 20482; -+pub const USBDEVFS_SUBMITURB: u32 = 2151175434; -+pub const AUTOFS_IOC_READY: u32 = 37728; -+pub const BTRFS_IOC_SEND: u32 = 1078498342; -+pub const VIDIOC_G_EXT_CTRLS: u32 = 3223344711; -+pub const JSIOCSBTNMAP: u32 = 1140877875; -+pub const PPPIOCSFLAGS: u32 = 1074033753; -+pub const NVRAM_INIT: u32 = 28736; -+pub const RFKILL_IOCTL_NOINPUT: u32 = 20993; -+pub const BTRFS_IOC_BALANCE: u32 = 1342215180; -+pub const FS_IOC_GETFSMAP: u32 = 3233830971; -+pub const IPMICTL_GET_MY_CHANNEL_LUN_CMD: u32 = 2147772699; -+pub const STP_POLICY_ID_GET: u32 = 2148541697; -+pub const PPSETFLAGS: u32 = 1074032795; -+pub const CEC_ADAP_S_PHYS_ADDR: u32 = 1073897730; -+pub const ATMTCP_CREATE: u32 = 24974; -+pub const IPMI_BMC_IOCTL_FORCE_ABORT: u32 = 45314; -+pub const PPPIOCGXASYNCMAP: u32 = 2149610576; -+pub const VHOST_SET_VRING_CALL: u32 = 1074310945; -+pub const LIRC_GET_FEATURES: u32 = 2147772672; -+pub const GSMIOC_DISABLE_NET: u32 = 18179; -+pub const AUTOFS_IOC_CATATONIC: u32 = 37730; -+pub const NBD_DO_IT: u32 = 43779; -+pub const LIRC_SET_REC_CARRIER_RANGE: u32 = 1074030879; -+pub const IPMICTL_GET_MY_CHANNEL_ADDRESS_CMD: u32 = 2147772697; -+pub const EVIOCSCLOCKID: u32 = 1074021792; -+pub const USBDEVFS_FREE_STREAMS: u32 = 2148029725; -+pub const FSI_SCOM_RESET: u32 = 1074033411; -+pub const PMU_IOC_GRAB_BACKLIGHT: u32 = 2148024838; -+pub const VIDIOC_SUBDEV_S_FMT: u32 = 3227014661; -+pub const FDDEFPRM: u32 = 1075839555; -+pub const TEE_IOC_INVOKE: u32 = 2148574211; -+pub const USBDEVFS_BULK: u32 = 3222820098; -+pub const SCIF_VWRITETO: u32 = 3223876365; -+pub const SONYPI_IOCSBRT: u32 = 1073837568; -+pub const BTRFS_IOC_FILE_EXTENT_SAME: u32 = 3222836278; -+pub const RTC_PIE_ON: u32 = 28677; -+pub const BTRFS_IOC_SCAN_DEV: u32 = 1342215172; -+pub const PPPIOCXFERUNIT: u32 = 29774; -+pub const WDIOC_GETTIMEOUT: u32 = 2147768071; -+pub const BTRFS_IOC_SET_RECEIVED_SUBVOL: u32 = 3234370597; -+pub const DFL_FPGA_PORT_ERR_SET_IRQ: u32 = 1074312774; -+pub const FBIO_WAITFORVSYNC: u32 = 1074021920; -+pub const RTC_PIE_OFF: u32 = 28678; -+pub const EVIOCGRAB: u32 = 1074021776; -+pub const PMU_IOC_SET_BACKLIGHT: u32 = 1074283010; -+pub const EVIOCGREP: u32 = 2148025603; -+pub const PERF_EVENT_IOC_MODIFY_ATTRIBUTES: u32 = 1074275339; -+pub const UFFDIO_CONTINUE: u32 = 3223366151; -+pub const VDUSE_GET_API_VERSION: u32 = 2148040960; -+pub const RTC_RD_TIME: u32 = 2149871625; -+pub const FDMSGOFF: u32 = 582; -+pub const IPMICTL_REGISTER_FOR_CMD_CHANS: u32 = 2148296988; -+pub const CAPI_GET_ERRCODE: u32 = 2147631905; -+pub const PCITEST_SET_IRQTYPE: u32 = 1074024456; -+pub const VIDIOC_SUBDEV_S_EDID: u32 = 3223868969; -+pub const MATROXFB_SET_OUTPUT_MODE: u32 = 1074294522; -+pub const RIO_DEV_ADD: u32 = 1075866903; -+pub const VIDIOC_ENUM_FREQ_BANDS: u32 = 3225441893; -+pub const FBIO_RADEON_SET_MIRROR: u32 = 1074282500; -+pub const PCITEST_GET_IRQTYPE: u32 = 20489; -+pub const JSIOCGVERSION: u32 = 2147772929; -+pub const SONYPI_IOCSBLUE: u32 = 1073837577; -+pub const SNAPSHOT_PREF_IMAGE_SIZE: u32 = 13074; -+pub const F2FS_IOC_GET_FEATURES: u32 = 2147808524; -+pub const SCIF_REG: u32 = 3223876360; -+pub const NILFS_IOCTL_CLEAN_SEGMENTS: u32 = 1081634440; -+pub const FW_CDEV_IOC_INITIATE_BUS_RESET: u32 = 1074012933; -+pub const RIO_WAIT_FOR_ASYNC: u32 = 1074294038; -+pub const VHOST_SET_VRING_NUM: u32 = 1074310928; -+pub const AUTOFS_DEV_IOCTL_PROTOVER: u32 = 3222836082; -+pub const RIO_FREE_DMA: u32 = 1074294036; -+pub const MGSL_IOCRXENABLE: u32 = 27909; -+pub const IOCTL_VM_SOCKETS_GET_LOCAL_CID: u32 = 1977; -+pub const IPMICTL_SET_TIMING_PARMS_CMD: u32 = 2148034838; -+pub const PPPIOCGL2TPSTATS: u32 = 2152231990; -+pub const PERF_EVENT_IOC_PERIOD: u32 = 1074275332; -+pub const PTP_PIN_SETFUNC2: u32 = 1080048912; -+pub const CHIOEXCHANGE: u32 = 1075602178; -+pub const NILFS_IOCTL_GET_SUINFO: u32 = 2149084804; -+pub const CEC_DQEVENT: u32 = 3226493191; -+pub const UI_SET_SWBIT: u32 = 1074025837; -+pub const VHOST_VDPA_SET_CONFIG: u32 = 1074311028; -+pub const TUNSETIFF: u32 = 1074025674; -+pub const CHIOPOSITION: u32 = 1074553603; -+pub const IPMICTL_SET_MAINTENANCE_MODE_CMD: u32 = 1074030879; -+pub const BTRFS_IOC_DEFAULT_SUBVOL: u32 = 1074304019; -+pub const RIO_UNMAP_OUTBOUND: u32 = 1076391184; -+pub const CAPI_CLR_FLAGS: u32 = 2147762981; -+pub const FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE: u32 = 1075323663; -+pub const MATROXFB_GET_OUTPUT_CONNECTION: u32 = 2148036344; -+pub const EVIOCSMASK: u32 = 1074808211; -+pub const BTRFS_IOC_FORGET_DEV: u32 = 1342215173; -+pub const CXL_MEM_QUERY_COMMANDS: u32 = 2148060673; -+pub const CEC_S_MODE: u32 = 1074028809; -+pub const MGSL_IOCSIF: u32 = 27914; -+pub const SWITCHTEC_IOCTL_PFF_TO_PORT: u32 = 3222034244; -+pub const PPSETMODE: u32 = 1074032768; -+pub const VFIO_DEVICE_SET_IRQS: u32 = 15214; -+pub const VIDIOC_PREPARE_BUF: u32 = 3227014749; -+pub const CEC_ADAP_G_CONNECTOR_INFO: u32 = 2151964938; -+pub const IOC_OPAL_WRITE_SHADOW_MBR: u32 = 1092645098; -+pub const VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL: u32 = 3225441867; -+pub const UDMABUF_CREATE: u32 = 1075344706; -+pub const SONET_CLRDIAG: u32 = 3221512467; -+pub const PHN_SET_REG: u32 = 1074294785; -+pub const RNDADDTOENTCNT: u32 = 1074024961; -+pub const VBG_IOCTL_CHECK_BALLOON: u32 = 3223344657; -+pub const VIDIOC_OMAP3ISP_STAT_REQ: u32 = 3223869126; -+pub const PPS_FETCH: u32 = 3221778596; -+pub const RTC_AIE_OFF: u32 = 28674; -+pub const VFIO_GROUP_SET_CONTAINER: u32 = 15208; -+pub const FW_CDEV_IOC_RECEIVE_PHY_PACKETS: u32 = 1074275094; -+pub const VFIO_IOMMU_SPAPR_TCE_REMOVE: u32 = 15224; -+pub const VFIO_IOMMU_GET_INFO: u32 = 15216; -+pub const DM_DEV_SUSPEND: u32 = 3241737478; -+pub const F2FS_IOC_GET_COMPRESS_OPTION: u32 = 2147677461; -+pub const FW_CDEV_IOC_STOP_ISO: u32 = 1074012939; -+pub const GPIO_V2_GET_LINEINFO_IOCTL: u32 = 3238048773; -+pub const ATMMPC_CTRL: u32 = 25048; -+pub const PPPIOCSXASYNCMAP: u32 = 1075868751; -+pub const CHIOGSTATUS: u32 = 1074815752; -+pub const FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE: u32 = 3222807309; -+pub const RIO_MPORT_MAINT_PORT_IDX_GET: u32 = 2147773699; -+pub const CAPI_SET_FLAGS: u32 = 2147762980; -+pub const VFIO_GROUP_GET_DEVICE_FD: u32 = 15210; -+pub const VHOST_SET_MEM_TABLE: u32 = 1074310915; -+pub const MATROXFB_SET_OUTPUT_CONNECTION: u32 = 1074294520; -+pub const DFL_FPGA_PORT_GET_REGION_INFO: u32 = 46658; -+pub const VHOST_GET_FEATURES: u32 = 2148052736; -+pub const LIRC_GET_REC_RESOLUTION: u32 = 2147772679; -+pub const PACKET_CTRL_CMD: u32 = 3222820865; -+pub const LIRC_SET_TRANSMITTER_MASK: u32 = 1074030871; -+pub const BTRFS_IOC_ADD_DEV: u32 = 1342215178; -+pub const JSIOCGCORR: u32 = 2149870114; -+pub const VIDIOC_G_FMT: u32 = 3234878980; -+pub const RTC_EPOCH_SET: u32 = 1074294798; -+pub const CAPI_GET_PROFILE: u32 = 3225436937; -+pub const ATM_GETLOOP: u32 = 1074815314; -+pub const SCIF_LISTEN: u32 = 1074033410; -+pub const NBD_CLEAR_QUE: u32 = 43781; -+pub const F2FS_IOC_MOVE_RANGE: u32 = 3223385353; -+pub const LIRC_GET_LENGTH: u32 = 2147772687; -+pub const I8K_SET_FAN: u32 = 3221776775; -+pub const FDSETMAXERRS: u32 = 1075053132; -+pub const VIDIOC_SUBDEV_QUERYCAP: u32 = 2151699968; -+pub const SNAPSHOT_SET_SWAP_AREA: u32 = 1074541325; -+pub const LIRC_GET_REC_TIMEOUT: u32 = 2147772708; -+pub const EVIOCRMFF: u32 = 1074021761; -+pub const GPIO_GET_LINEEVENT_IOCTL: u32 = 3224417284; -+pub const PPRDATA: u32 = 2147577989; -+pub const RIO_MPORT_GET_PROPERTIES: u32 = 2150657284; -+pub const TUNSETVNETHDRSZ: u32 = 1074025688; -+pub const GPIO_GET_LINEINFO_IOCTL: u32 = 3225990146; -+pub const GSMIOC_GETCONF: u32 = 2152482560; -+pub const LIRC_GET_SEND_MODE: u32 = 2147772673; -+pub const PPPIOCSACTIVE: u32 = 1074820166; -+pub const SIOCGSTAMPNS_NEW: u32 = 2148567303; -+pub const IPMICTL_RECEIVE_MSG: u32 = 3224398092; -+pub const LIRC_SET_SEND_DUTY_CYCLE: u32 = 1074030869; -+pub const UI_END_FF_ERASE: u32 = 1074550219; -+pub const SWITCHTEC_IOCTL_FLASH_PART_INFO: u32 = 3222296385; -+pub const FW_CDEV_IOC_SEND_PHY_PACKET: u32 = 3222807317; -+pub const NBD_SET_FLAGS: u32 = 43786; -+pub const VFIO_DEVICE_GET_REGION_INFO: u32 = 15212; -+pub const REISERFS_IOC_UNPACK: u32 = 1074318593; -+pub const FW_CDEV_IOC_REMOVE_DESCRIPTOR: u32 = 1074012935; -+pub const RIO_SET_EVENT_MASK: u32 = 1074031885; -+pub const SNAPSHOT_ALLOC_SWAP_PAGE: u32 = 2148021012; -+pub const VDUSE_VQ_INJECT_IRQ: u32 = 1074037015; -+pub const I2OPASSTHRU: u32 = 2148559116; -+pub const IOC_OPAL_SET_PW: u32 = 1109422304; -+pub const FSI_SCOM_READ: u32 = 3223352065; -+pub const VHOST_VDPA_GET_DEVICE_ID: u32 = 2147790704; -+pub const VIDIOC_QBUF: u32 = 3227014671; -+pub const VIDIOC_S_TUNER: u32 = 1079268894; -+pub const TUNGETVNETHDRSZ: u32 = 2147767511; -+pub const CAPI_NCCI_GETUNIT: u32 = 2147762983; -+pub const DFL_FPGA_PORT_UINT_GET_IRQ_NUM: u32 = 2147792455; -+pub const VIDIOC_OMAP3ISP_STAT_EN: u32 = 3221771975; -+pub const GPIO_V2_LINE_SET_CONFIG_IOCTL: u32 = 3239097357; -+pub const TEE_IOC_VERSION: u32 = 2148312064; -+pub const VIDIOC_LOG_STATUS: u32 = 22086; -+pub const IPMICTL_SEND_COMMAND_SETTIME: u32 = 2150656277; -+pub const VHOST_SET_LOG_FD: u32 = 1074048775; -+pub const SCIF_SEND: u32 = 3222827782; -+pub const VIDIOC_SUBDEV_G_FMT: u32 = 3227014660; -+pub const NS_ADJBUFLEV: u32 = 24931; -+pub const VIDIOC_DBG_S_REGISTER: u32 = 1077433935; -+pub const NILFS_IOCTL_RESIZE: u32 = 1074294411; -+pub const PHN_GETREG: u32 = 3221778437; -+pub const I2OSWDL: u32 = 3224398085; -+pub const VBG_IOCTL_VMMDEV_REQUEST_BIG: u32 = 22019; -+pub const JSIOCGBUTTONS: u32 = 2147576338; -+pub const VFIO_IOMMU_ENABLE: u32 = 15219; -+pub const DM_DEV_RENAME: u32 = 3241737477; -+pub const MEDIA_IOC_SETUP_LINK: u32 = 3224665091; -+pub const VIDIOC_ENUMOUTPUT: u32 = 3225966128; -+pub const STP_POLICY_ID_SET: u32 = 3222283520; -+pub const VHOST_VDPA_SET_CONFIG_CALL: u32 = 1074048887; -+pub const VIDIOC_SUBDEV_G_CROP: u32 = 3224917563; -+pub const VIDIOC_S_CROP: u32 = 1075074620; -+pub const WDIOC_GETTEMP: u32 = 2147768067; -+pub const IOC_OPAL_ADD_USR_TO_LR: u32 = 1092120804; -+pub const UI_SET_LEDBIT: u32 = 1074025833; -+pub const NBD_SET_SOCK: u32 = 43776; -+pub const BTRFS_IOC_SNAP_DESTROY_V2: u32 = 1342215231; -+pub const HIDIOCGCOLLECTIONINFO: u32 = 3222292497; -+pub const I2OSWUL: u32 = 3224398086; -+pub const IOCTL_MEI_NOTIFY_GET: u32 = 2147764227; -+pub const FDFMTTRK: u32 = 1074528840; -+pub const MMTIMER_GETBITS: u32 = 27908; -+pub const VIDIOC_ENUMSTD: u32 = 3225966105; -+pub const VHOST_GET_VRING_BASE: u32 = 3221794578; -+pub const VFIO_DEVICE_IOEVENTFD: u32 = 15220; -+pub const ATMARP_SETENTRY: u32 = 25059; -+pub const CCISS_REVALIDVOLS: u32 = 16906; -+pub const MGSL_IOCLOOPTXDONE: u32 = 27913; -+pub const RTC_VL_READ: u32 = 2147774483; -+pub const ND_IOCTL_ARS_STATUS: u32 = 3224391171; -+pub const RIO_DEV_DEL: u32 = 1075866904; -+pub const VBG_IOCTL_ACQUIRE_GUEST_CAPABILITIES: u32 = 3223606797; -+pub const VIDIOC_SUBDEV_DV_TIMINGS_CAP: u32 = 3230684772; -+pub const SONYPI_IOCSFAN: u32 = 1073837579; -+pub const SPIOCSTYPE: u32 = 1074295041; -+pub const IPMICTL_REGISTER_FOR_CMD: u32 = 2147641614; -+pub const I8K_GET_FAN: u32 = 3221776774; -+pub const TUNGETVNETBE: u32 = 2147767519; -+pub const AUTOFS_DEV_IOCTL_FAIL: u32 = 3222836087; -+pub const UI_END_FF_UPLOAD: u32 = 1080579529; -+pub const TOSH_SMM: u32 = 3222828176; -+pub const SONYPI_IOCGBAT2REM: u32 = 2147644933; -+pub const F2FS_IOC_GET_COMPRESS_BLOCKS: u32 = 2148070673; -+pub const PPPIOCSNPMODE: u32 = 1074295883; -+pub const USBDEVFS_CONTROL: u32 = 3222820096; -+pub const HIDIOCGUSAGE: u32 = 3222816779; -+pub const TUNSETTXFILTER: u32 = 1074025681; -+pub const TUNGETVNETLE: u32 = 2147767517; -+pub const VIDIOC_ENUM_DV_TIMINGS: u32 = 3230946914; -+pub const BTRFS_IOC_INO_PATHS: u32 = 3224933411; -+pub const MGSL_IOCGXSYNC: u32 = 27924; -+pub const HIDIOCGFIELDINFO: u32 = 3224913930; -+pub const VIDIOC_SUBDEV_G_STD: u32 = 2148029975; -+pub const I2OVALIDATE: u32 = 2147772680; -+pub const VIDIOC_TRY_ENCODER_CMD: u32 = 3223869006; -+pub const NILFS_IOCTL_GET_CPINFO: u32 = 2149084802; -+pub const VIDIOC_G_FREQUENCY: u32 = 3224131128; -+pub const VFAT_IOCTL_READDIR_SHORT: u32 = 2184212994; -+pub const ND_IOCTL_GET_CONFIG_DATA: u32 = 3222031877; -+pub const F2FS_IOC_RESERVE_COMPRESS_BLOCKS: u32 = 2148070675; -+pub const FDGETDRVSTAT: u32 = 2152727058; -+pub const SYNC_IOC_MERGE: u32 = 3224387075; -+pub const VIDIOC_S_DV_TIMINGS: u32 = 3229898327; -+pub const PPPIOCBRIDGECHAN: u32 = 1074033717; -+pub const LIRC_SET_SEND_MODE: u32 = 1074030865; -+pub const RIO_ENABLE_PORTWRITE_RANGE: u32 = 1074818315; -+pub const ATM_GETTYPE: u32 = 1074815364; -+pub const PHN_GETREGS: u32 = 3223875591; -+pub const FDSETEMSGTRESH: u32 = 586; -+pub const NILFS_IOCTL_GET_VINFO: u32 = 3222826630; -+pub const MGSL_IOCWAITEVENT: u32 = 3221515528; -+pub const CAPI_INSTALLED: u32 = 2147631906; -+pub const EVIOCGMASK: u32 = 2148550034; -+pub const BTRFS_IOC_SUBVOL_GETFLAGS: u32 = 2148045849; -+pub const FSL_HV_IOCTL_PARTITION_GET_STATUS: u32 = 3222056706; -+pub const MEDIA_IOC_ENUM_ENTITIES: u32 = 3238034433; -+pub const GSMIOC_GETFIRST: u32 = 2147763972; -+pub const FW_CDEV_IOC_FLUSH_ISO: u32 = 1074012952; -+pub const VIDIOC_DBG_G_CHIP_INFO: u32 = 3234354790; -+pub const F2FS_IOC_RELEASE_VOLATILE_WRITE: u32 = 62724; -+pub const CAPI_GET_SERIAL: u32 = 3221504776; -+pub const FDSETDRVPRM: u32 = 1082131088; -+pub const IOC_OPAL_SAVE: u32 = 1092120796; -+pub const VIDIOC_G_DV_TIMINGS: u32 = 3229898328; -+pub const TUNSETIFINDEX: u32 = 1074025690; -+pub const CCISS_SETINTINFO: u32 = 1074283011; -+pub const CM_IOSDBGLVL: u32 = 1074291706; -+pub const RTC_VL_CLR: u32 = 28692; -+pub const VIDIOC_REQBUFS: u32 = 3222558216; -+pub const USBDEVFS_REAPURBNDELAY32: u32 = 1074025741; -+pub const TEE_IOC_SHM_REGISTER: u32 = 3222840329; -+pub const USBDEVFS_SETCONFIGURATION: u32 = 2147767557; -+pub const CCISS_GETNODENAME: u32 = 2148549124; -+pub const VIDIOC_SUBDEV_S_FRAME_INTERVAL: u32 = 3224393238; -+pub const VIDIOC_ENUM_FRAMESIZES: u32 = 3224131146; -+pub const VFIO_DEVICE_PCI_HOT_RESET: u32 = 15217; -+pub const FW_CDEV_IOC_SEND_BROADCAST_REQUEST: u32 = 1076372242; -+pub const LPSETTIMEOUT_NEW: u32 = 1074791951; -+pub const RIO_CM_MPORT_GET_LIST: u32 = 3221512971; -+pub const FW_CDEV_IOC_QUEUE_ISO: u32 = 3222807305; -+pub const FDRAWCMD: u32 = 600; -+pub const SCIF_UNREG: u32 = 3222303497; -+pub const PPPIOCGIDLE64: u32 = 2148561983; -+pub const USBDEVFS_RELEASEINTERFACE: u32 = 2147767568; -+pub const VIDIOC_CROPCAP: u32 = 3224131130; -+pub const DFL_FPGA_PORT_GET_INFO: u32 = 46657; -+pub const PHN_SET_REGS: u32 = 1074294787; -+pub const ATMLEC_DATA: u32 = 25041; -+pub const PPPOEIOCDFWD: u32 = 45313; -+pub const VIDIOC_S_SELECTION: u32 = 3225441887; -+pub const SNAPSHOT_FREE_SWAP_PAGES: u32 = 13065; -+pub const BTRFS_IOC_LOGICAL_INO: u32 = 3224933412; -+pub const VIDIOC_S_CTRL: u32 = 3221771804; -+pub const ZATM_SETPOOL: u32 = 1074815331; -+pub const MTIOCPOS: u32 = 2148035843; -+pub const PMU_IOC_SLEEP: u32 = 16896; -+pub const AUTOFS_DEV_IOCTL_PROTOSUBVER: u32 = 3222836083; -+pub const VBG_IOCTL_CHANGE_FILTER_MASK: u32 = 3223344652; -+pub const NILFS_IOCTL_GET_SUSTAT: u32 = 2150657669; -+pub const VIDIOC_QUERYCAP: u32 = 2154321408; -+pub const HPET_INFO: u32 = 2149083139; -+pub const VIDIOC_AM437X_CCDC_CFG: u32 = 1074288321; -+pub const DM_LIST_DEVICES: u32 = 3241737474; -+pub const TUNSETOWNER: u32 = 1074025676; -+pub const VBG_IOCTL_CHANGE_GUEST_CAPABILITIES: u32 = 3223344654; -+pub const RNDADDENTROPY: u32 = 1074287107; -+pub const USBDEVFS_RESET: u32 = 21780; -+pub const BTRFS_IOC_SUBVOL_CREATE: u32 = 1342215182; -+pub const USBDEVFS_FORBID_SUSPEND: u32 = 21793; -+pub const FDGETDRVTYP: u32 = 2148532751; -+pub const PPWCONTROL: u32 = 1073836164; -+pub const VIDIOC_ENUM_FRAMEINTERVALS: u32 = 3224655435; -+pub const KCOV_DISABLE: u32 = 25445; -+pub const IOC_OPAL_ACTIVATE_LSP: u32 = 1092120799; -+pub const VHOST_VDPA_GET_IOVA_RANGE: u32 = 2148577144; -+pub const PPPIOCSPASS: u32 = 1074820167; -+pub const RIO_CM_CHAN_CONNECT: u32 = 1074291464; -+pub const I2OSWDEL: u32 = 3224398087; -+pub const FS_IOC_SET_ENCRYPTION_POLICY: u32 = 2148296211; -+pub const IOC_OPAL_MBR_DONE: u32 = 1091596521; -+pub const PPPIOCSMAXCID: u32 = 1074033745; -+pub const PPSETPHASE: u32 = 1074032788; -+pub const VHOST_VDPA_SET_VRING_ENABLE: u32 = 1074311029; -+pub const USBDEVFS_GET_SPEED: u32 = 21791; -+pub const SONET_GETFRAMING: u32 = 2147770646; -+pub const VIDIOC_QUERYBUF: u32 = 3227014665; -+pub const VIDIOC_S_EDID: u32 = 3223868969; -+pub const BTRFS_IOC_QGROUP_ASSIGN: u32 = 1075352617; -+pub const PPS_GETCAP: u32 = 2148036771; -+pub const SNAPSHOT_PLATFORM_SUPPORT: u32 = 13071; -+pub const LIRC_SET_REC_TIMEOUT_REPORTS: u32 = 1074030873; -+pub const SCIF_GET_NODEIDS: u32 = 3222827790; -+pub const NBD_DISCONNECT: u32 = 43784; -+pub const VIDIOC_SUBDEV_G_FRAME_INTERVAL: u32 = 3224393237; -+pub const VFIO_IOMMU_DISABLE: u32 = 15220; -+pub const SNAPSHOT_CREATE_IMAGE: u32 = 1074017041; -+pub const SNAPSHOT_POWER_OFF: u32 = 13072; -+pub const APM_IOC_STANDBY: u32 = 16641; -+pub const PPPIOCGUNIT: u32 = 2147775574; -+pub const AUTOFS_IOC_EXPIRE_MULTI: u32 = 1074041702; -+pub const SCIF_BIND: u32 = 3221779201; -+pub const IOC_WATCH_QUEUE_SET_SIZE: u32 = 22368; -+pub const NILFS_IOCTL_CHANGE_CPMODE: u32 = 1074818688; -+pub const IOC_OPAL_LOCK_UNLOCK: u32 = 1092120797; -+pub const F2FS_IOC_SET_PIN_FILE: u32 = 1074066701; -+pub const PPPIOCGRASYNCMAP: u32 = 2147775573; -+pub const MMTIMER_MMAPAVAIL: u32 = 27910; -+pub const I2OPASSTHRU32: u32 = 2148034828; -+pub const DFL_FPGA_FME_PORT_RELEASE: u32 = 1074050689; -+pub const VIDIOC_SUBDEV_QUERY_DV_TIMINGS: u32 = 2156156515; -+pub const UI_SET_SNDBIT: u32 = 1074025834; -+pub const VIDIOC_G_AUDOUT: u32 = 2150913585; -+pub const RTC_PLL_SET: u32 = 1075867666; -+pub const VIDIOC_ENUMAUDIO: u32 = 3224655425; -+pub const AUTOFS_DEV_IOCTL_TIMEOUT: u32 = 3222836090; -+pub const VBG_IOCTL_DRIVER_VERSION_INFO: u32 = 3224131072; -+pub const VHOST_SCSI_GET_EVENTS_MISSED: u32 = 1074048836; -+pub const VHOST_SET_VRING_ADDR: u32 = 1076408081; -+pub const VDUSE_CREATE_DEV: u32 = 1095794946; -+pub const FDFLUSH: u32 = 587; -+pub const VBG_IOCTL_WAIT_FOR_EVENTS: u32 = 3223344650; -+pub const DFL_FPGA_FME_ERR_SET_IRQ: u32 = 1074312836; -+pub const F2FS_IOC_GET_PIN_FILE: u32 = 2147808526; -+pub const SCIF_CONNECT: u32 = 3221779203; -+pub const BLKREPORTZONE: u32 = 3222278786; -+pub const AUTOFS_IOC_ASKUMOUNT: u32 = 2147783536; -+pub const ATM_ADDPARTY: u32 = 1074815476; -+pub const FDSETPRM: u32 = 1075839554; -+pub const ATM_GETSTATZ: u32 = 1074815313; -+pub const ISST_IF_MSR_COMMAND: u32 = 3221814788; -+pub const BTRFS_IOC_GET_SUBVOL_INFO: u32 = 2180551740; -+pub const VIDIOC_UNSUBSCRIBE_EVENT: u32 = 1075861083; -+pub const SEV_ISSUE_CMD: u32 = 3222295296; -+pub const GPIOHANDLE_SET_LINE_VALUES_IOCTL: u32 = 3225465865; -+pub const PCITEST_COPY: u32 = 1074286598; -+pub const IPMICTL_GET_MY_ADDRESS_CMD: u32 = 2147772690; -+pub const CHIOGPICKER: u32 = 2147771140; -+pub const CAPI_NCCI_OPENCOUNT: u32 = 2147762982; -+pub const CXL_MEM_SEND_COMMAND: u32 = 3224423938; -+pub const PERF_EVENT_IOC_SET_FILTER: u32 = 1074275334; -+pub const IOC_OPAL_REVERT_TPR: u32 = 1091072226; -+pub const CHIOGVPARAMS: u32 = 2154849043; -+pub const PTP_PEROUT_REQUEST: u32 = 1077427459; -+pub const FSI_SCOM_CHECK: u32 = 2147775232; -+pub const RTC_IRQP_READ: u32 = 2148036619; -+pub const RIO_MPORT_MAINT_READ_LOCAL: u32 = 2149084421; -+pub const HIDIOCGRDESCSIZE: u32 = 2147764225; -+pub const UI_GET_VERSION: u32 = 2147767597; -+pub const NILFS_IOCTL_GET_CPSTAT: u32 = 2149084803; -+pub const CCISS_GETBUSTYPES: u32 = 2147762695; -+pub const VFIO_IOMMU_SPAPR_TCE_CREATE: u32 = 15223; -+pub const VIDIOC_EXPBUF: u32 = 3225441808; -+pub const UI_SET_RELBIT: u32 = 1074025830; -+pub const VFIO_SET_IOMMU: u32 = 15206; -+pub const VIDIOC_S_MODULATOR: u32 = 1078220343; -+pub const TUNGETFILTER: u32 = 2148553947; -+pub const MEYEIOC_SYNC: u32 = 3221518019; -+pub const CCISS_SETNODENAME: u32 = 1074807301; -+pub const FBIO_GETCONTROL2: u32 = 2148025993; -+pub const TUNSETDEBUG: u32 = 1074025673; -+pub const DM_DEV_REMOVE: u32 = 3241737476; -+pub const HIDIOCSUSAGES: u32 = 1344030740; -+pub const FS_IOC_ADD_ENCRYPTION_KEY: u32 = 3226494487; -+pub const FBIOGET_VBLANK: u32 = 2149598738; -+pub const ATM_GETSTAT: u32 = 1074815312; -+pub const VIDIOC_G_JPEGCOMP: u32 = 2156680765; -+pub const TUNATTACHFILTER: u32 = 1074812117; -+pub const UI_SET_ABSBIT: u32 = 1074025831; -+pub const DFL_FPGA_PORT_ERR_GET_IRQ_NUM: u32 = 2147792453; -+pub const USBDEVFS_REAPURB32: u32 = 1074025740; -+pub const BTRFS_IOC_TRANS_END: u32 = 37895; -+pub const CAPI_REGISTER: u32 = 1074545409; -+pub const F2FS_IOC_COMPRESS_FILE: u32 = 62744; -+pub const USBDEVFS_DISCARDURB: u32 = 21771; -+pub const HE_GET_REG: u32 = 1074815328; -+pub const ATM_SETLOOP: u32 = 1074815315; -+pub const ATMSIGD_CTRL: u32 = 25072; -+pub const CIOC_KERNEL_VERSION: u32 = 3221775114; -+pub const BTRFS_IOC_CLONE_RANGE: u32 = 1075876877; -+pub const SNAPSHOT_UNFREEZE: u32 = 13058; -+pub const F2FS_IOC_START_VOLATILE_WRITE: u32 = 62723; -+pub const PMU_IOC_HAS_ADB: u32 = 2148024836; -+pub const I2OGETIOPS: u32 = 2149607680; -+pub const VIDIOC_S_FBUF: u32 = 1076909579; -+pub const PPRCONTROL: u32 = 2147577987; -+pub const CHIOSPICKER: u32 = 1074029317; -+pub const VFIO_IOMMU_SPAPR_REGISTER_MEMORY: u32 = 15221; -+pub const TUNGETSNDBUF: u32 = 2147767507; -+pub const GSMIOC_SETCONF: u32 = 1078740737; -+pub const IOC_PR_PREEMPT: u32 = 1075343563; -+pub const KCOV_INIT_TRACE: u32 = 2148033281; -+pub const SONYPI_IOCGBAT1CAP: u32 = 2147644930; -+pub const SWITCHTEC_IOCTL_FLASH_INFO: u32 = 2148554560; -+pub const MTIOCTOP: u32 = 1074294017; -+pub const VHOST_VDPA_SET_STATUS: u32 = 1073852274; -+pub const VHOST_SCSI_SET_EVENTS_MISSED: u32 = 1074048835; -+pub const VFIO_IOMMU_DIRTY_PAGES: u32 = 15221; -+pub const BTRFS_IOC_SCRUB_PROGRESS: u32 = 3288372253; -+pub const PPPIOCGMRU: u32 = 2147775571; -+pub const BTRFS_IOC_DEV_REPLACE: u32 = 3391657013; -+pub const PPPIOCGFLAGS: u32 = 2147775578; -+pub const NILFS_IOCTL_SET_SUINFO: u32 = 1075342989; -+pub const FW_CDEV_IOC_GET_CYCLE_TIMER2: u32 = 3222807316; -+pub const ATM_DELLECSADDR: u32 = 1074815375; -+pub const FW_CDEV_IOC_GET_SPEED: u32 = 8977; -+pub const PPPIOCGIDLE32: u32 = 2148037695; -+pub const VFIO_DEVICE_RESET: u32 = 15215; -+pub const GPIO_GET_LINEINFO_UNWATCH_IOCTL: u32 = 3221533708; -+pub const WDIOC_GETSTATUS: u32 = 2147768065; -+pub const BTRFS_IOC_SET_FEATURES: u32 = 1076925497; -+pub const IOCTL_MEI_CONNECT_CLIENT: u32 = 3222292481; -+pub const VIDIOC_OMAP3ISP_AEWB_CFG: u32 = 3223344835; -+pub const PCITEST_READ: u32 = 1074286597; -+pub const VFIO_GROUP_GET_STATUS: u32 = 15207; -+pub const MATROXFB_GET_ALL_OUTPUTS: u32 = 2148036347; -+pub const USBDEVFS_CLEAR_HALT: u32 = 2147767573; -+pub const VIDIOC_DECODER_CMD: u32 = 3225966176; -+pub const VIDIOC_G_AUDIO: u32 = 2150913569; -+pub const CCISS_RESCANDISK: u32 = 16912; -+pub const RIO_DISABLE_PORTWRITE_RANGE: u32 = 1074818316; -+pub const IOC_OPAL_SECURE_ERASE_LR: u32 = 1091596519; -+pub const USBDEVFS_REAPURB: u32 = 1074287884; -+pub const DFL_FPGA_CHECK_EXTENSION: u32 = 46593; -+pub const AUTOFS_IOC_PROTOVER: u32 = 2147783523; -+pub const FSL_HV_IOCTL_MEMCPY: u32 = 3223891717; -+pub const BTRFS_IOC_GET_FEATURES: u32 = 2149094457; -+pub const PCITEST_MSIX: u32 = 1074024455; -+pub const BTRFS_IOC_DEFRAG_RANGE: u32 = 1076925456; -+pub const UI_BEGIN_FF_ERASE: u32 = 3222033866; -+pub const DM_GET_TARGET_VERSION: u32 = 3241737489; -+pub const PPPIOCGIDLE: u32 = 2148561983; -+pub const NVRAM_SETCKS: u32 = 28737; -+pub const WDIOC_GETSUPPORT: u32 = 2150127360; -+pub const GSMIOC_ENABLE_NET: u32 = 1077167874; -+pub const GPIO_GET_CHIPINFO_IOCTL: u32 = 2151986177; -+pub const NE_ADD_VCPU: u32 = 3221532193; -+pub const EVIOCSKEYCODE_V2: u32 = 1076380932; -+pub const PTP_SYS_OFFSET_EXTENDED2: u32 = 3300932882; -+pub const SCIF_FENCE_WAIT: u32 = 3221517072; -+pub const RIO_TRANSFER: u32 = 3222826261; -+pub const FSL_HV_IOCTL_DOORBELL: u32 = 3221794566; -+pub const RIO_MPORT_MAINT_WRITE_LOCAL: u32 = 1075342598; -+pub const I2OEVTREG: u32 = 1074555146; -+pub const I2OPARMGET: u32 = 3223873796; -+pub const EVIOCGID: u32 = 2148025602; -+pub const BTRFS_IOC_QGROUP_CREATE: u32 = 1074828330; -+pub const AUTOFS_DEV_IOCTL_SETPIPEFD: u32 = 3222836088; -+pub const VIDIOC_S_PARM: u32 = 3234616854; -+pub const TUNSETSTEERINGEBPF: u32 = 2147767520; -+pub const ATM_GETNAMES: u32 = 1074815363; -+pub const VIDIOC_QUERYMENU: u32 = 3224131109; -+pub const DFL_FPGA_PORT_DMA_UNMAP: u32 = 46660; -+pub const I2OLCTGET: u32 = 3222825218; -+pub const FS_IOC_GET_ENCRYPTION_PWSALT: u32 = 1074816532; -+pub const NS_SETBUFLEV: u32 = 1074815330; -+pub const BLKCLOSEZONE: u32 = 1074795143; -+pub const SONET_GETFRSENSE: u32 = 2147901719; -+pub const UI_SET_EVBIT: u32 = 1074025828; -+pub const DM_LIST_VERSIONS: u32 = 3241737485; -+pub const HIDIOCGSTRING: u32 = 2164541444; -+pub const PPPIOCATTCHAN: u32 = 1074033720; -+pub const VDUSE_DEV_SET_CONFIG: u32 = 1074299154; -+pub const TUNGETFEATURES: u32 = 2147767503; -+pub const VFIO_GROUP_UNSET_CONTAINER: u32 = 15209; -+pub const IPMICTL_SET_MY_ADDRESS_CMD: u32 = 2147772689; -+pub const CCISS_REGNEWDISK: u32 = 1074020877; -+pub const VIDIOC_QUERY_DV_TIMINGS: u32 = 2156156515; -+pub const PHN_SETREGS: u32 = 1076391944; -+pub const FAT_IOCTL_GET_ATTRIBUTES: u32 = 2147774992; -+pub const FSL_MC_SEND_MC_COMMAND: u32 = 3225440992; -+pub const TUNGETIFF: u32 = 2147767506; -+pub const PTP_CLOCK_GETCAPS2: u32 = 2152742154; -+pub const BTRFS_IOC_RESIZE: u32 = 1342215171; -+pub const VHOST_SET_VRING_ENDIAN: u32 = 1074310931; -+pub const PPS_KC_BIND: u32 = 1074294949; -+pub const F2FS_IOC_WRITE_CHECKPOINT: u32 = 62727; -+pub const UI_SET_FFBIT: u32 = 1074025835; -+pub const IPMICTL_GET_MY_LUN_CMD: u32 = 2147772692; -+pub const CEC_ADAP_G_PHYS_ADDR: u32 = 2147639553; -+pub const CEC_G_MODE: u32 = 2147770632; -+pub const USBDEVFS_RESETEP: u32 = 2147767555; -+pub const MEDIA_REQUEST_IOC_QUEUE: u32 = 31872; -+pub const USBDEVFS_ALLOC_STREAMS: u32 = 2148029724; -+pub const MGSL_IOCSXCTRL: u32 = 27925; -+pub const MEDIA_IOC_G_TOPOLOGY: u32 = 3225975812; -+pub const PPPIOCUNBRIDGECHAN: u32 = 29748; -+pub const F2FS_IOC_COMMIT_ATOMIC_WRITE: u32 = 62722; -+pub const ISST_IF_GET_PLATFORM_INFO: u32 = 2148072960; -+pub const SCIF_FENCE_MARK: u32 = 3222303503; -+pub const USBDEVFS_RELEASE_PORT: u32 = 2147767577; -+pub const VFIO_CHECK_EXTENSION: u32 = 15205; -+pub const BTRFS_IOC_QGROUP_LIMIT: u32 = 2150667307; -+pub const FAT_IOCTL_GET_VOLUME_ID: u32 = 2147774995; -+pub const UI_SET_PHYS: u32 = 1074287980; -+pub const FDWERRORGET: u32 = 2150105623; -+pub const VIDIOC_SUBDEV_G_EDID: u32 = 3223868968; -+pub const MGSL_IOCGSTATS: u32 = 27911; -+pub const RPROC_SET_SHUTDOWN_ON_RELEASE: u32 = 1074050817; -+pub const SIOCGSTAMP_NEW: u32 = 2148567302; -+pub const RTC_WKALM_RD: u32 = 2150133776; -+pub const PHN_GET_REG: u32 = 3221778432; -+pub const DELL_WMI_SMBIOS_CMD: u32 = 3224655616; -+pub const PHN_NOT_OH: u32 = 28676; -+pub const PPGETMODES: u32 = 2147774615; -+pub const CHIOGPARAMS: u32 = 2148819718; -+pub const VFIO_DEVICE_GET_GFX_DMABUF: u32 = 15219; -+pub const VHOST_SET_VRING_BUSYLOOP_TIMEOUT: u32 = 1074310947; -+pub const VIDIOC_SUBDEV_G_SELECTION: u32 = 3225441853; -+pub const BTRFS_IOC_RM_DEV_V2: u32 = 1342215226; -+pub const MGSL_IOCWAITGPIO: u32 = 3222301970; -+pub const PMU_IOC_CAN_SLEEP: u32 = 2148024837; -+pub const KCOV_ENABLE: u32 = 25444; -+pub const BTRFS_IOC_CLONE: u32 = 1074041865; -+pub const F2FS_IOC_DEFRAGMENT: u32 = 3222336776; -+pub const FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE: u32 = 1074012942; -+pub const AGPIOC_ALLOCATE: u32 = 3221766406; -+pub const NE_SET_USER_MEMORY_REGION: u32 = 1075359267; -+pub const MGSL_IOCTXABORT: u32 = 27910; -+pub const MGSL_IOCSGPIO: u32 = 1074818320; -+pub const LIRC_SET_REC_CARRIER: u32 = 1074030868; -+pub const F2FS_IOC_FLUSH_DEVICE: u32 = 1074328842; -+pub const SNAPSHOT_ATOMIC_RESTORE: u32 = 13060; -+pub const RTC_UIE_OFF: u32 = 28676; -+pub const BT_BMC_IOCTL_SMS_ATN: u32 = 45312; -+pub const NVME_IOCTL_ID: u32 = 20032; -+pub const NE_START_ENCLAVE: u32 = 3222318628; -+pub const VIDIOC_STREAMON: u32 = 1074026002; -+pub const FDPOLLDRVSTAT: u32 = 2152727059; -+pub const AUTOFS_DEV_IOCTL_READY: u32 = 3222836086; -+pub const VIDIOC_ENUMAUDOUT: u32 = 3224655426; -+pub const VIDIOC_SUBDEV_S_STD: u32 = 1074288152; -+pub const WDIOC_GETTIMELEFT: u32 = 2147768074; -+pub const ATM_GETLINKRATE: u32 = 1074815361; -+pub const RTC_WKALM_SET: u32 = 1076391951; -+pub const VHOST_GET_BACKEND_FEATURES: u32 = 2148052774; -+pub const ATMARP_ENCAP: u32 = 25061; -+pub const CAPI_GET_FLAGS: u32 = 2147762979; -+pub const IPMICTL_SET_MY_CHANNEL_ADDRESS_CMD: u32 = 2147772696; -+pub const DFL_FPGA_FME_PORT_ASSIGN: u32 = 1074050690; -+pub const NS_GET_OWNER_UID: u32 = 46852; -+pub const VIDIOC_OVERLAY: u32 = 1074025998; -+pub const BTRFS_IOC_WAIT_SYNC: u32 = 1074304022; -+pub const GPIOHANDLE_SET_CONFIG_IOCTL: u32 = 3226776586; -+pub const VHOST_GET_VRING_ENDIAN: u32 = 1074310932; -+pub const ATM_GETADDR: u32 = 1074815366; -+pub const PHN_GET_REGS: u32 = 3221778434; -+pub const AUTOFS_DEV_IOCTL_REQUESTER: u32 = 3222836091; -+pub const AUTOFS_DEV_IOCTL_EXPIRE: u32 = 3222836092; -+pub const SNAPSHOT_S2RAM: u32 = 13067; -+pub const JSIOCSAXMAP: u32 = 1077963313; -+pub const F2FS_IOC_SET_COMPRESS_OPTION: u32 = 1073935638; -+pub const VBG_IOCTL_HGCM_DISCONNECT: u32 = 3223082501; -+pub const SCIF_FENCE_SIGNAL: u32 = 3223876369; -+pub const VFIO_DEVICE_GET_PCI_HOT_RESET_INFO: u32 = 15216; -+pub const VIDIOC_SUBDEV_ENUM_MBUS_CODE: u32 = 3224393218; -+pub const MMTIMER_GETOFFSET: u32 = 27904; -+pub const RIO_CM_CHAN_LISTEN: u32 = 1073898246; -+pub const ATM_SETSC: u32 = 1074029041; -+pub const F2FS_IOC_SHUTDOWN: u32 = 2147768445; -+pub const NVME_IOCTL_RESCAN: u32 = 20038; -+pub const BLKOPENZONE: u32 = 1074795142; -+pub const DM_VERSION: u32 = 3241737472; -+pub const CEC_TRANSMIT: u32 = 3224920325; -+pub const FS_IOC_GET_ENCRYPTION_POLICY_EX: u32 = 3221841430; -+pub const SIOCMKCLIP: u32 = 25056; -+pub const IPMI_BMC_IOCTL_CLEAR_SMS_ATN: u32 = 45313; -+pub const HIDIOCGVERSION: u32 = 2147764225; -+pub const VIDIOC_S_INPUT: u32 = 3221509671; -+pub const VIDIOC_G_CROP: u32 = 3222558267; -+pub const LIRC_SET_WIDEBAND_RECEIVER: u32 = 1074030883; -+pub const EVIOCGEFFECTS: u32 = 2147763588; -+pub const UVCIOC_CTRL_QUERY: u32 = 3222304033; -+pub const IOC_OPAL_GENERIC_TABLE_RW: u32 = 1094217963; -+pub const FS_IOC_READ_VERITY_METADATA: u32 = 3223873159; -+pub const ND_IOCTL_SET_CONFIG_DATA: u32 = 3221769734; -+pub const USBDEVFS_GETDRIVER: u32 = 1090802952; -+pub const IDT77105_GETSTAT: u32 = 1074815282; -+pub const HIDIOCINITREPORT: u32 = 18437; -+pub const VFIO_DEVICE_GET_INFO: u32 = 15211; -+pub const RIO_CM_CHAN_RECEIVE: u32 = 3222299402; -+pub const RNDGETENTCNT: u32 = 2147766784; -+pub const PPPIOCNEWUNIT: u32 = 3221517374; -+pub const BTRFS_IOC_INO_LOOKUP: u32 = 3489698834; -+pub const FDRESET: u32 = 596; -+pub const IOC_PR_REGISTER: u32 = 1075343560; -+pub const HIDIOCSREPORT: u32 = 1074546696; -+pub const TEE_IOC_OPEN_SESSION: u32 = 2148574210; -+pub const TEE_IOC_SUPPL_RECV: u32 = 2148574214; -+pub const BTRFS_IOC_BALANCE_CTL: u32 = 1074041889; -+pub const GPIO_GET_LINEINFO_WATCH_IOCTL: u32 = 3225990155; -+pub const HIDIOCGRAWINFO: u32 = 2148026371; -+pub const PPPIOCSCOMPRESS: u32 = 1074820173; -+pub const USBDEVFS_CONNECTINFO: u32 = 1074287889; -+pub const BLKRESETZONE: u32 = 1074795139; -+pub const CHIOINITELEM: u32 = 25361; -+pub const NILFS_IOCTL_SET_ALLOC_RANGE: u32 = 1074818700; -+pub const AUTOFS_DEV_IOCTL_CATATONIC: u32 = 3222836089; -+pub const RIO_MPORT_MAINT_HDID_SET: u32 = 1073900801; -+pub const PPGETPHASE: u32 = 2147774617; -+pub const USBDEVFS_DISCONNECT_CLAIM: u32 = 2164806939; -+pub const FDMSGON: u32 = 581; -+pub const VIDIOC_G_SLICED_VBI_CAP: u32 = 3228849733; -+pub const BTRFS_IOC_BALANCE_V2: u32 = 3288372256; -+pub const MEDIA_REQUEST_IOC_REINIT: u32 = 31873; -+pub const IOC_OPAL_ERASE_LR: u32 = 1091596518; -+pub const FDFMTBEG: u32 = 583; -+pub const RNDRESEEDCRNG: u32 = 20999; -+pub const ISST_IF_GET_PHY_ID: u32 = 3221814785; -+pub const TUNSETNOCSUM: u32 = 1074025672; -+pub const SONET_GETSTAT: u32 = 2149867792; -+pub const TFD_IOC_SET_TICKS: u32 = 1074287616; -+pub const PPDATADIR: u32 = 1074032784; -+pub const IOC_OPAL_ENABLE_DISABLE_MBR: u32 = 1091596517; -+pub const GPIO_V2_GET_LINE_IOCTL: u32 = 3260068871; -+pub const RIO_CM_CHAN_SEND: u32 = 1074815753; -+pub const PPWCTLONIRQ: u32 = 1073836178; -+pub const SONYPI_IOCGBRT: u32 = 2147579392; -+pub const IOC_PR_RELEASE: u32 = 1074819274; -+pub const PPCLRIRQ: u32 = 2147774611; -+pub const IPMICTL_SET_MY_CHANNEL_LUN_CMD: u32 = 2147772698; -+pub const MGSL_IOCSXSYNC: u32 = 27923; -+pub const HPET_IE_OFF: u32 = 26626; -+pub const IOC_OPAL_ACTIVATE_USR: u32 = 1091596513; -+pub const SONET_SETFRAMING: u32 = 1074028821; -+pub const PERF_EVENT_IOC_PAUSE_OUTPUT: u32 = 1074013193; -+pub const BTRFS_IOC_LOGICAL_INO_V2: u32 = 3224933435; -+pub const VBG_IOCTL_HGCM_CONNECT: u32 = 3231471108; -+pub const BLKFINISHZONE: u32 = 1074795144; -+pub const EVIOCREVOKE: u32 = 1074021777; -+pub const VFIO_DEVICE_FEATURE: u32 = 15221; -+pub const CCISS_GETPCIINFO: u32 = 2148024833; -+pub const ISST_IF_MBOX_COMMAND: u32 = 3221814787; -+pub const SCIF_ACCEPTREQ: u32 = 3222303492; -+pub const PERF_EVENT_IOC_QUERY_BPF: u32 = 3221758986; -+pub const VIDIOC_STREAMOFF: u32 = 1074026003; -+pub const VDUSE_DESTROY_DEV: u32 = 1090552067; -+pub const FDGETFDCSTAT: u32 = 2150105621; -+pub const CM_IOCGATR: u32 = 3221775105; -+pub const VIDIOC_S_PRIORITY: u32 = 1074026052; -+pub const SNAPSHOT_FREEZE: u32 = 13057; -+pub const VIDIOC_ENUMINPUT: u32 = 3226490394; -+pub const ZATM_GETPOOLZ: u32 = 1074815330; -+pub const RIO_DISABLE_DOORBELL_RANGE: u32 = 1074294026; -+pub const GPIO_V2_GET_LINEINFO_WATCH_IOCTL: u32 = 3238048774; -+pub const VIDIOC_G_STD: u32 = 2148029975; -+pub const USBDEVFS_ALLOW_SUSPEND: u32 = 21794; -+pub const SONET_GETSTATZ: u32 = 2149867793; -+pub const SCIF_ACCEPTREG: u32 = 3221779205; -+pub const VIDIOC_ENCODER_CMD: u32 = 3223869005; -+pub const PPPIOCSRASYNCMAP: u32 = 1074033748; -+pub const IOCTL_MEI_NOTIFY_SET: u32 = 1074022402; -+pub const BTRFS_IOC_QUOTA_RESCAN_STATUS: u32 = 2151715885; -+pub const F2FS_IOC_GARBAGE_COLLECT: u32 = 1074066694; -+pub const ATMLEC_CTRL: u32 = 25040; -+pub const MATROXFB_GET_AVAILABLE_OUTPUTS: u32 = 2148036345; -+pub const DM_DEV_CREATE: u32 = 3241737475; -+pub const VHOST_VDPA_GET_VRING_NUM: u32 = 2147659638; -+pub const VIDIOC_G_CTRL: u32 = 3221771803; -+pub const NBD_CLEAR_SOCK: u32 = 43780; -+pub const VFIO_DEVICE_QUERY_GFX_PLANE: u32 = 15218; -+pub const WDIOC_KEEPALIVE: u32 = 2147768069; -+pub const NVME_IOCTL_SUBSYS_RESET: u32 = 20037; -+pub const PTP_EXTTS_REQUEST2: u32 = 1074806027; -+pub const PCITEST_BAR: u32 = 20481; -+pub const MGSL_IOCGGPIO: u32 = 2148560145; -+pub const EVIOCSREP: u32 = 1074283779; -+pub const VFIO_DEVICE_GET_IRQ_INFO: u32 = 15213; -+pub const HPET_DPI: u32 = 26629; -+pub const VDUSE_VQ_SETUP_KICKFD: u32 = 1074299158; -+pub const ND_IOCTL_CALL: u32 = 3225439754; -+pub const HIDIOCGDEVINFO: u32 = 2149337091; -+pub const DM_TABLE_DEPS: u32 = 3241737483; -+pub const BTRFS_IOC_DEV_INFO: u32 = 3489698846; -+pub const VDUSE_IOTLB_GET_FD: u32 = 3223355664; -+pub const FW_CDEV_IOC_GET_INFO: u32 = 3223855872; -+pub const VIDIOC_G_PRIORITY: u32 = 2147767875; -+pub const ATM_NEWBACKENDIF: u32 = 1073897971; -+pub const VIDIOC_S_EXT_CTRLS: u32 = 3223344712; -+pub const VIDIOC_SUBDEV_ENUM_DV_TIMINGS: u32 = 3230946914; -+pub const VIDIOC_OMAP3ISP_CCDC_CFG: u32 = 3224917697; -+pub const VIDIOC_S_HW_FREQ_SEEK: u32 = 1076909650; -+pub const DM_TABLE_LOAD: u32 = 3241737481; -+pub const F2FS_IOC_START_ATOMIC_WRITE: u32 = 62721; -+pub const VIDIOC_G_OUTPUT: u32 = 2147767854; -+pub const ATM_DROPPARTY: u32 = 1074029045; -+pub const CHIOGELEM: u32 = 1080845072; -+pub const BTRFS_IOC_GET_SUPPORTED_FEATURES: u32 = 2152240185; -+pub const EVIOCSKEYCODE: u32 = 1074283780; -+pub const NE_GET_IMAGE_LOAD_INFO: u32 = 3222318626; -+pub const TUNSETLINK: u32 = 1074025677; -+pub const FW_CDEV_IOC_ADD_DESCRIPTOR: u32 = 3222807302; -+pub const BTRFS_IOC_SCRUB_CANCEL: u32 = 37916; -+pub const PPS_SETPARAMS: u32 = 1074294946; -+pub const IOC_OPAL_LR_SETUP: u32 = 1093169379; -+pub const FW_CDEV_IOC_DEALLOCATE: u32 = 1074012931; -+pub const WDIOC_SETTIMEOUT: u32 = 3221509894; -+pub const IOC_WATCH_QUEUE_SET_FILTER: u32 = 22369; -+pub const CAPI_GET_MANUFACTURER: u32 = 3221504774; -+pub const VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY: u32 = 15222; -+pub const ASPEED_P2A_CTRL_IOCTL_SET_WINDOW: u32 = 1074836224; -+pub const VIDIOC_G_EDID: u32 = 3223868968; -+pub const F2FS_IOC_GARBAGE_COLLECT_RANGE: u32 = 1075377419; -+pub const RIO_MAP_INBOUND: u32 = 3223874833; -+pub const IOC_OPAL_TAKE_OWNERSHIP: u32 = 1091072222; -+pub const USBDEVFS_CLAIM_PORT: u32 = 2147767576; -+pub const VIDIOC_S_AUDIO: u32 = 1077171746; -+pub const FS_IOC_GET_ENCRYPTION_NONCE: u32 = 2148558363; -+pub const FW_CDEV_IOC_SEND_STREAM_PACKET: u32 = 1076372243; -+pub const BTRFS_IOC_SNAP_DESTROY: u32 = 1342215183; -+pub const SNAPSHOT_FREE: u32 = 13061; -+pub const I8K_GET_SPEED: u32 = 3221776773; -+pub const HIDIOCGREPORT: u32 = 1074546695; -+pub const HPET_EPI: u32 = 26628; -+pub const JSIOCSCORR: u32 = 1076128289; -+pub const IOC_PR_PREEMPT_ABORT: u32 = 1075343564; -+pub const RIO_MAP_OUTBOUND: u32 = 3223874831; -+pub const ATM_SETESI: u32 = 1074815372; -+pub const FW_CDEV_IOC_START_ISO: u32 = 1074799370; -+pub const ATM_DELADDR: u32 = 1074815369; -+pub const PPFCONTROL: u32 = 1073901710; -+pub const SONYPI_IOCGFAN: u32 = 2147579402; -+pub const RTC_IRQP_SET: u32 = 1074294796; -+pub const PCITEST_WRITE: u32 = 1074286596; -+pub const PPCLAIM: u32 = 28811; -+pub const VIDIOC_S_JPEGCOMP: u32 = 1082938942; -+pub const IPMICTL_UNREGISTER_FOR_CMD: u32 = 2147641615; -+pub const VHOST_SET_FEATURES: u32 = 1074310912; -+pub const TOSHIBA_ACPI_SCI: u32 = 3222828177; -+pub const VIDIOC_DQBUF: u32 = 3227014673; -+pub const BTRFS_IOC_BALANCE_PROGRESS: u32 = 2214630434; -+pub const BTRFS_IOC_SUBVOL_SETFLAGS: u32 = 1074304026; -+pub const ATMLEC_MCAST: u32 = 25042; -+pub const MMTIMER_GETFREQ: u32 = 2148035842; -+pub const VIDIOC_G_SELECTION: u32 = 3225441886; -+pub const RTC_ALM_SET: u32 = 1076129799; -+pub const PPPOEIOCSFWD: u32 = 1074311424; -+pub const IPMICTL_GET_MAINTENANCE_MODE_CMD: u32 = 2147772702; -+pub const FS_IOC_ENABLE_VERITY: u32 = 1082156677; -+pub const NILFS_IOCTL_GET_BDESCS: u32 = 3222826631; -+pub const FDFMTEND: u32 = 585; -+pub const DMA_BUF_SET_NAME: u32 = 1074291201; -+pub const UI_BEGIN_FF_UPLOAD: u32 = 3228063176; -+pub const RTC_UIE_ON: u32 = 28675; -+pub const PPRELEASE: u32 = 28812; -+pub const VFIO_IOMMU_UNMAP_DMA: u32 = 15218; -+pub const VIDIOC_OMAP3ISP_PRV_CFG: u32 = 3228587714; -+pub const GPIO_GET_LINEHANDLE_IOCTL: u32 = 3245126659; -+pub const VFAT_IOCTL_READDIR_BOTH: u32 = 2184212993; -+pub const NVME_IOCTL_ADMIN_CMD: u32 = 3225964097; -+pub const VHOST_SET_VRING_KICK: u32 = 1074310944; -+pub const BTRFS_IOC_SUBVOL_CREATE_V2: u32 = 1342215192; -+pub const BTRFS_IOC_SNAP_CREATE: u32 = 1342215169; -+pub const SONYPI_IOCGBAT2CAP: u32 = 2147644932; -+pub const PPNEGOT: u32 = 1074032785; -+pub const NBD_PRINT_DEBUG: u32 = 43782; -+pub const BTRFS_IOC_INO_LOOKUP_USER: u32 = 3489698878; -+pub const BTRFS_IOC_GET_SUBVOL_ROOTREF: u32 = 3489698877; -+pub const FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS: u32 = 3225445913; -+pub const BTRFS_IOC_FS_INFO: u32 = 2214630431; -+pub const VIDIOC_ENUM_FMT: u32 = 3225441794; -+pub const VIDIOC_G_INPUT: u32 = 2147767846; -+pub const VTPM_PROXY_IOC_NEW_DEV: u32 = 3222577408; -+pub const DFL_FPGA_FME_ERR_GET_IRQ_NUM: u32 = 2147792515; -+pub const ND_IOCTL_DIMM_FLAGS: u32 = 3221769731; -+pub const BTRFS_IOC_QUOTA_RESCAN: u32 = 1077974060; -+pub const MMTIMER_GETCOUNTER: u32 = 2148035849; -+pub const MATROXFB_GET_OUTPUT_MODE: u32 = 3221778170; -+pub const BTRFS_IOC_QUOTA_RESCAN_WAIT: u32 = 37934; -+pub const RIO_CM_CHAN_BIND: u32 = 1074291461; -+pub const HIDIOCGRDESC: u32 = 2416199682; -+pub const MGSL_IOCGIF: u32 = 27915; -+pub const VIDIOC_S_OUTPUT: u32 = 3221509679; -+pub const HIDIOCGREPORTINFO: u32 = 3222030345; -+pub const WDIOC_GETBOOTSTATUS: u32 = 2147768066; -+pub const VDUSE_VQ_GET_INFO: u32 = 3224404245; -+pub const ACRN_IOCTL_ASSIGN_PCIDEV: u32 = 1076142677; -+pub const BLKGETDISKSEQ: u32 = 2148012672; -+pub const ACRN_IOCTL_PM_GET_CPU_STATE: u32 = 3221791328; -+pub const ACRN_IOCTL_DESTROY_VM: u32 = 41489; -+pub const ACRN_IOCTL_SET_PTDEV_INTR: u32 = 1075094099; -+pub const ACRN_IOCTL_CREATE_IOREQ_CLIENT: u32 = 41522; -+pub const ACRN_IOCTL_IRQFD: u32 = 1075356273; -+pub const ACRN_IOCTL_CREATE_VM: u32 = 3224412688; -+pub const ACRN_IOCTL_INJECT_MSI: u32 = 1074831907; -+pub const ACRN_IOCTL_ATTACH_IOREQ_CLIENT: u32 = 41523; -+pub const ACRN_IOCTL_RESET_PTDEV_INTR: u32 = 1075094100; -+pub const ACRN_IOCTL_NOTIFY_REQUEST_FINISH: u32 = 1074307633; -+pub const ACRN_IOCTL_SET_IRQLINE: u32 = 1074307621; -+pub const ACRN_IOCTL_START_VM: u32 = 41490; -+pub const ACRN_IOCTL_SET_VCPU_REGS: u32 = 1093181974; -+pub const ACRN_IOCTL_SET_MEMSEG: u32 = 1075880513; -+pub const ACRN_IOCTL_PAUSE_VM: u32 = 41491; -+pub const ACRN_IOCTL_CLEAR_VM_IOREQ: u32 = 41525; -+pub const ACRN_IOCTL_UNSET_MEMSEG: u32 = 1075880514; -+pub const ACRN_IOCTL_IOEVENTFD: u32 = 1075880560; -+pub const ACRN_IOCTL_DEASSIGN_PCIDEV: u32 = 1076142678; -+pub const ACRN_IOCTL_RESET_VM: u32 = 41493; -+pub const ACRN_IOCTL_DESTROY_IOREQ_CLIENT: u32 = 41524; -+pub const ACRN_IOCTL_VM_INTR_MONITOR: u32 = 1074307620; -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs -new file mode 100644 -index 000000000..8069c2f5c ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs -@@ -0,0 +1,2860 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+#[repr(C)] -+#[derive(Default)] -+pub struct __IncompleteArrayField(::core::marker::PhantomData, [T; 0]); -+impl __IncompleteArrayField { -+#[inline] -+pub const fn new() -> Self { -+__IncompleteArrayField(::core::marker::PhantomData, []) -+} -+#[inline] -+pub fn as_ptr(&self) -> *const T { -+self as *const _ as *const T -+} -+#[inline] -+pub fn as_mut_ptr(&mut self) -> *mut T { -+self as *mut _ as *mut T -+} -+#[inline] -+pub unsafe fn as_slice(&self, len: usize) -> &[T] { -+::core::slice::from_raw_parts(self.as_ptr(), len) -+} -+#[inline] -+pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { -+::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len) -+} -+} -+impl ::core::fmt::Debug for __IncompleteArrayField { -+fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -+fmt.write_str("__IncompleteArrayField") -+} -+} -+pub const LINUX_VERSION_CODE: u32 = 393728; -+pub const LINUX_VERSION_MAJOR: u32 = 6; -+pub const LINUX_VERSION_PATCHLEVEL: u32 = 2; -+pub const LINUX_VERSION_SUBLEVEL: u32 = 0; -+pub const _K_SS_MAXSIZE: u32 = 128; -+pub const SOCK_SNDBUF_LOCK: u32 = 1; -+pub const SOCK_RCVBUF_LOCK: u32 = 2; -+pub const SOCK_BUF_LOCK_MASK: u32 = 3; -+pub const SOCK_TXREHASH_DEFAULT: u32 = 255; -+pub const SOCK_TXREHASH_DISABLED: u32 = 0; -+pub const SOCK_TXREHASH_ENABLED: u32 = 1; -+pub const __FD_SETSIZE: u32 = 1024; -+pub const NETLINK_ROUTE: u32 = 0; -+pub const NETLINK_UNUSED: u32 = 1; -+pub const NETLINK_USERSOCK: u32 = 2; -+pub const NETLINK_FIREWALL: u32 = 3; -+pub const NETLINK_SOCK_DIAG: u32 = 4; -+pub const NETLINK_NFLOG: u32 = 5; -+pub const NETLINK_XFRM: u32 = 6; -+pub const NETLINK_SELINUX: u32 = 7; -+pub const NETLINK_ISCSI: u32 = 8; -+pub const NETLINK_AUDIT: u32 = 9; -+pub const NETLINK_FIB_LOOKUP: u32 = 10; -+pub const NETLINK_CONNECTOR: u32 = 11; -+pub const NETLINK_NETFILTER: u32 = 12; -+pub const NETLINK_IP6_FW: u32 = 13; -+pub const NETLINK_DNRTMSG: u32 = 14; -+pub const NETLINK_KOBJECT_UEVENT: u32 = 15; -+pub const NETLINK_GENERIC: u32 = 16; -+pub const NETLINK_SCSITRANSPORT: u32 = 18; -+pub const NETLINK_ECRYPTFS: u32 = 19; -+pub const NETLINK_RDMA: u32 = 20; -+pub const NETLINK_CRYPTO: u32 = 21; -+pub const NETLINK_SMC: u32 = 22; -+pub const NETLINK_INET_DIAG: u32 = 4; -+pub const MAX_LINKS: u32 = 32; -+pub const NLM_F_REQUEST: u32 = 1; -+pub const NLM_F_MULTI: u32 = 2; -+pub const NLM_F_ACK: u32 = 4; -+pub const NLM_F_ECHO: u32 = 8; -+pub const NLM_F_DUMP_INTR: u32 = 16; -+pub const NLM_F_DUMP_FILTERED: u32 = 32; -+pub const NLM_F_ROOT: u32 = 256; -+pub const NLM_F_MATCH: u32 = 512; -+pub const NLM_F_ATOMIC: u32 = 1024; -+pub const NLM_F_DUMP: u32 = 768; -+pub const NLM_F_REPLACE: u32 = 256; -+pub const NLM_F_EXCL: u32 = 512; -+pub const NLM_F_CREATE: u32 = 1024; -+pub const NLM_F_APPEND: u32 = 2048; -+pub const NLM_F_NONREC: u32 = 256; -+pub const NLM_F_BULK: u32 = 512; -+pub const NLM_F_CAPPED: u32 = 256; -+pub const NLM_F_ACK_TLVS: u32 = 512; -+pub const NLMSG_ALIGNTO: u32 = 4; -+pub const NLMSG_NOOP: u32 = 1; -+pub const NLMSG_ERROR: u32 = 2; -+pub const NLMSG_DONE: u32 = 3; -+pub const NLMSG_OVERRUN: u32 = 4; -+pub const NLMSG_MIN_TYPE: u32 = 16; -+pub const NETLINK_ADD_MEMBERSHIP: u32 = 1; -+pub const NETLINK_DROP_MEMBERSHIP: u32 = 2; -+pub const NETLINK_PKTINFO: u32 = 3; -+pub const NETLINK_BROADCAST_ERROR: u32 = 4; -+pub const NETLINK_NO_ENOBUFS: u32 = 5; -+pub const NETLINK_RX_RING: u32 = 6; -+pub const NETLINK_TX_RING: u32 = 7; -+pub const NETLINK_LISTEN_ALL_NSID: u32 = 8; -+pub const NETLINK_LIST_MEMBERSHIPS: u32 = 9; -+pub const NETLINK_CAP_ACK: u32 = 10; -+pub const NETLINK_EXT_ACK: u32 = 11; -+pub const NETLINK_GET_STRICT_CHK: u32 = 12; -+pub const NL_MMAP_MSG_ALIGNMENT: u32 = 4; -+pub const NET_MAJOR: u32 = 36; -+pub const NLA_F_NESTED: u32 = 32768; -+pub const NLA_F_NET_BYTEORDER: u32 = 16384; -+pub const NLA_TYPE_MASK: i32 = -49153; -+pub const NLA_ALIGNTO: u32 = 4; -+pub const MACVLAN_FLAG_NOPROMISC: u32 = 1; -+pub const MACVLAN_FLAG_NODST: u32 = 2; -+pub const IPVLAN_F_PRIVATE: u32 = 1; -+pub const IPVLAN_F_VEPA: u32 = 2; -+pub const TUNNEL_MSG_FLAG_STATS: u32 = 1; -+pub const TUNNEL_MSG_VALID_USER_FLAGS: u32 = 1; -+pub const MAX_VLAN_LIST_LEN: u32 = 1; -+pub const PORT_PROFILE_MAX: u32 = 40; -+pub const PORT_UUID_MAX: u32 = 16; -+pub const PORT_SELF_VF: i32 = -1; -+pub const XDP_FLAGS_UPDATE_IF_NOEXIST: u32 = 1; -+pub const XDP_FLAGS_SKB_MODE: u32 = 2; -+pub const XDP_FLAGS_DRV_MODE: u32 = 4; -+pub const XDP_FLAGS_HW_MODE: u32 = 8; -+pub const XDP_FLAGS_REPLACE: u32 = 16; -+pub const XDP_FLAGS_MODES: u32 = 14; -+pub const XDP_FLAGS_MASK: u32 = 31; -+pub const RMNET_FLAGS_INGRESS_DEAGGREGATION: u32 = 1; -+pub const RMNET_FLAGS_INGRESS_MAP_COMMANDS: u32 = 2; -+pub const RMNET_FLAGS_INGRESS_MAP_CKSUMV4: u32 = 4; -+pub const RMNET_FLAGS_EGRESS_MAP_CKSUMV4: u32 = 8; -+pub const RMNET_FLAGS_INGRESS_MAP_CKSUMV5: u32 = 16; -+pub const RMNET_FLAGS_EGRESS_MAP_CKSUMV5: u32 = 32; -+pub const IFA_F_SECONDARY: u32 = 1; -+pub const IFA_F_TEMPORARY: u32 = 1; -+pub const IFA_F_NODAD: u32 = 2; -+pub const IFA_F_OPTIMISTIC: u32 = 4; -+pub const IFA_F_DADFAILED: u32 = 8; -+pub const IFA_F_HOMEADDRESS: u32 = 16; -+pub const IFA_F_DEPRECATED: u32 = 32; -+pub const IFA_F_TENTATIVE: u32 = 64; -+pub const IFA_F_PERMANENT: u32 = 128; -+pub const IFA_F_MANAGETEMPADDR: u32 = 256; -+pub const IFA_F_NOPREFIXROUTE: u32 = 512; -+pub const IFA_F_MCAUTOJOIN: u32 = 1024; -+pub const IFA_F_STABLE_PRIVACY: u32 = 2048; -+pub const IFAPROT_UNSPEC: u32 = 0; -+pub const IFAPROT_KERNEL_LO: u32 = 1; -+pub const IFAPROT_KERNEL_RA: u32 = 2; -+pub const IFAPROT_KERNEL_LL: u32 = 3; -+pub const NTF_USE: u32 = 1; -+pub const NTF_SELF: u32 = 2; -+pub const NTF_MASTER: u32 = 4; -+pub const NTF_PROXY: u32 = 8; -+pub const NTF_EXT_LEARNED: u32 = 16; -+pub const NTF_OFFLOADED: u32 = 32; -+pub const NTF_STICKY: u32 = 64; -+pub const NTF_ROUTER: u32 = 128; -+pub const NTF_EXT_MANAGED: u32 = 1; -+pub const NTF_EXT_LOCKED: u32 = 2; -+pub const NUD_INCOMPLETE: u32 = 1; -+pub const NUD_REACHABLE: u32 = 2; -+pub const NUD_STALE: u32 = 4; -+pub const NUD_DELAY: u32 = 8; -+pub const NUD_PROBE: u32 = 16; -+pub const NUD_FAILED: u32 = 32; -+pub const NUD_NOARP: u32 = 64; -+pub const NUD_PERMANENT: u32 = 128; -+pub const NUD_NONE: u32 = 0; -+pub const RTNL_FAMILY_IPMR: u32 = 128; -+pub const RTNL_FAMILY_IP6MR: u32 = 129; -+pub const RTNL_FAMILY_MAX: u32 = 129; -+pub const RTA_ALIGNTO: u32 = 4; -+pub const RTPROT_UNSPEC: u32 = 0; -+pub const RTPROT_REDIRECT: u32 = 1; -+pub const RTPROT_KERNEL: u32 = 2; -+pub const RTPROT_BOOT: u32 = 3; -+pub const RTPROT_STATIC: u32 = 4; -+pub const RTPROT_GATED: u32 = 8; -+pub const RTPROT_RA: u32 = 9; -+pub const RTPROT_MRT: u32 = 10; -+pub const RTPROT_ZEBRA: u32 = 11; -+pub const RTPROT_BIRD: u32 = 12; -+pub const RTPROT_DNROUTED: u32 = 13; -+pub const RTPROT_XORP: u32 = 14; -+pub const RTPROT_NTK: u32 = 15; -+pub const RTPROT_DHCP: u32 = 16; -+pub const RTPROT_MROUTED: u32 = 17; -+pub const RTPROT_KEEPALIVED: u32 = 18; -+pub const RTPROT_BABEL: u32 = 42; -+pub const RTPROT_OPENR: u32 = 99; -+pub const RTPROT_BGP: u32 = 186; -+pub const RTPROT_ISIS: u32 = 187; -+pub const RTPROT_OSPF: u32 = 188; -+pub const RTPROT_RIP: u32 = 189; -+pub const RTPROT_EIGRP: u32 = 192; -+pub const RTM_F_NOTIFY: u32 = 256; -+pub const RTM_F_CLONED: u32 = 512; -+pub const RTM_F_EQUALIZE: u32 = 1024; -+pub const RTM_F_PREFIX: u32 = 2048; -+pub const RTM_F_LOOKUP_TABLE: u32 = 4096; -+pub const RTM_F_FIB_MATCH: u32 = 8192; -+pub const RTM_F_OFFLOAD: u32 = 16384; -+pub const RTM_F_TRAP: u32 = 32768; -+pub const RTM_F_OFFLOAD_FAILED: u32 = 536870912; -+pub const RTNH_F_DEAD: u32 = 1; -+pub const RTNH_F_PERVASIVE: u32 = 2; -+pub const RTNH_F_ONLINK: u32 = 4; -+pub const RTNH_F_OFFLOAD: u32 = 8; -+pub const RTNH_F_LINKDOWN: u32 = 16; -+pub const RTNH_F_UNRESOLVED: u32 = 32; -+pub const RTNH_F_TRAP: u32 = 64; -+pub const RTNH_COMPARE_MASK: u32 = 89; -+pub const RTNH_ALIGNTO: u32 = 4; -+pub const RTNETLINK_HAVE_PEERINFO: u32 = 1; -+pub const RTAX_FEATURE_ECN: u32 = 1; -+pub const RTAX_FEATURE_SACK: u32 = 2; -+pub const RTAX_FEATURE_TIMESTAMP: u32 = 4; -+pub const RTAX_FEATURE_ALLFRAG: u32 = 8; -+pub const RTAX_FEATURE_MASK: u32 = 15; -+pub const TCM_IFINDEX_MAGIC_BLOCK: u32 = 4294967295; -+pub const TCA_DUMP_FLAGS_TERSE: u32 = 1; -+pub const RTMGRP_LINK: u32 = 1; -+pub const RTMGRP_NOTIFY: u32 = 2; -+pub const RTMGRP_NEIGH: u32 = 4; -+pub const RTMGRP_TC: u32 = 8; -+pub const RTMGRP_IPV4_IFADDR: u32 = 16; -+pub const RTMGRP_IPV4_MROUTE: u32 = 32; -+pub const RTMGRP_IPV4_ROUTE: u32 = 64; -+pub const RTMGRP_IPV4_RULE: u32 = 128; -+pub const RTMGRP_IPV6_IFADDR: u32 = 256; -+pub const RTMGRP_IPV6_MROUTE: u32 = 512; -+pub const RTMGRP_IPV6_ROUTE: u32 = 1024; -+pub const RTMGRP_IPV6_IFINFO: u32 = 2048; -+pub const RTMGRP_DECnet_IFADDR: u32 = 4096; -+pub const RTMGRP_DECnet_ROUTE: u32 = 16384; -+pub const RTMGRP_IPV6_PREFIX: u32 = 131072; -+pub const TCA_FLAG_LARGE_DUMP_ON: u32 = 1; -+pub const TCA_ACT_FLAG_LARGE_DUMP_ON: u32 = 1; -+pub const TCA_ACT_FLAG_TERSE_DUMP: u32 = 2; -+pub const RTEXT_FILTER_VF: u32 = 1; -+pub const RTEXT_FILTER_BRVLAN: u32 = 2; -+pub const RTEXT_FILTER_BRVLAN_COMPRESSED: u32 = 4; -+pub const RTEXT_FILTER_SKIP_STATS: u32 = 8; -+pub const RTEXT_FILTER_MRP: u32 = 16; -+pub const RTEXT_FILTER_CFM_CONFIG: u32 = 32; -+pub const RTEXT_FILTER_CFM_STATUS: u32 = 64; -+pub const RTEXT_FILTER_MST: u32 = 128; -+pub type size_t = crate::ctypes::c_ulong; -+pub type ssize_t = crate::ctypes::c_long; -+pub type __kernel_sa_family_t = crate::ctypes::c_ushort; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __kernel_sockaddr_storage { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __kernel_sockaddr_storage__bindgen_ty_1 { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1, -+pub __align: *mut crate::ctypes::c_void, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1 { -+pub ss_family: __kernel_sa_family_t, -+pub __data: [crate::ctypes::c_char; 126usize], -+} -+pub type __s8 = crate::ctypes::c_schar; -+pub type __u8 = crate::ctypes::c_uchar; -+pub type __s16 = crate::ctypes::c_short; -+pub type __u16 = crate::ctypes::c_ushort; -+pub type __s32 = crate::ctypes::c_int; -+pub type __u32 = crate::ctypes::c_uint; -+pub type __s64 = crate::ctypes::c_longlong; -+pub type __u64 = crate::ctypes::c_ulonglong; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fd_set { -+pub fds_bits: [crate::ctypes::c_ulong; 16usize], -+} -+pub type __kernel_sighandler_t = ::core::option::Option; -+pub type __kernel_key_t = crate::ctypes::c_int; -+pub type __kernel_mqd_t = crate::ctypes::c_int; -+pub type __kernel_long_t = crate::ctypes::c_long; -+pub type __kernel_ulong_t = crate::ctypes::c_ulong; -+pub type __kernel_ino_t = __kernel_ulong_t; -+pub type __kernel_mode_t = crate::ctypes::c_uint; -+pub type __kernel_pid_t = crate::ctypes::c_int; -+pub type __kernel_ipc_pid_t = crate::ctypes::c_int; -+pub type __kernel_uid_t = crate::ctypes::c_uint; -+pub type __kernel_gid_t = crate::ctypes::c_uint; -+pub type __kernel_suseconds_t = __kernel_long_t; -+pub type __kernel_daddr_t = crate::ctypes::c_int; -+pub type __kernel_uid32_t = crate::ctypes::c_uint; -+pub type __kernel_gid32_t = crate::ctypes::c_uint; -+pub type __kernel_old_uid_t = __kernel_uid_t; -+pub type __kernel_old_gid_t = __kernel_gid_t; -+pub type __kernel_old_dev_t = crate::ctypes::c_uint; -+pub type __kernel_size_t = __kernel_ulong_t; -+pub type __kernel_ssize_t = __kernel_long_t; -+pub type __kernel_ptrdiff_t = __kernel_long_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fsid_t { -+pub val: [crate::ctypes::c_int; 2usize], -+} -+pub type __kernel_off_t = __kernel_long_t; -+pub type __kernel_loff_t = crate::ctypes::c_longlong; -+pub type __kernel_old_time_t = __kernel_long_t; -+pub type __kernel_time_t = __kernel_long_t; -+pub type __kernel_time64_t = crate::ctypes::c_longlong; -+pub type __kernel_clock_t = __kernel_long_t; -+pub type __kernel_timer_t = crate::ctypes::c_int; -+pub type __kernel_clockid_t = crate::ctypes::c_int; -+pub type __kernel_caddr_t = *mut crate::ctypes::c_char; -+pub type __kernel_uid16_t = crate::ctypes::c_ushort; -+pub type __kernel_gid16_t = crate::ctypes::c_ushort; -+pub type __le16 = __u16; -+pub type __be16 = __u16; -+pub type __le32 = __u32; -+pub type __be32 = __u32; -+pub type __le64 = __u64; -+pub type __be64 = __u64; -+pub type __sum16 = __u16; -+pub type __wsum = __u32; -+pub type __poll_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sockaddr_nl { -+pub nl_family: __kernel_sa_family_t, -+pub nl_pad: crate::ctypes::c_ushort, -+pub nl_pid: __u32, -+pub nl_groups: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nlmsghdr { -+pub nlmsg_len: __u32, -+pub nlmsg_type: __u16, -+pub nlmsg_flags: __u16, -+pub nlmsg_seq: __u32, -+pub nlmsg_pid: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nlmsgerr { -+pub error: crate::ctypes::c_int, -+pub msg: nlmsghdr, -+} -+impl nlmsgerr_attrs { -+pub const NLMSGERR_ATTR_MAX: nlmsgerr_attrs = nlmsgerr_attrs::NLMSGERR_ATTR_MISS_NEST; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum nlmsgerr_attrs { -+NLMSGERR_ATTR_UNUSED = 0, -+NLMSGERR_ATTR_MSG = 1, -+NLMSGERR_ATTR_OFFS = 2, -+NLMSGERR_ATTR_COOKIE = 3, -+NLMSGERR_ATTR_POLICY = 4, -+NLMSGERR_ATTR_MISS_TYPE = 5, -+NLMSGERR_ATTR_MISS_NEST = 6, -+__NLMSGERR_ATTR_MAX = 7, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nl_pktinfo { -+pub group: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nl_mmap_req { -+pub nm_block_size: crate::ctypes::c_uint, -+pub nm_block_nr: crate::ctypes::c_uint, -+pub nm_frame_size: crate::ctypes::c_uint, -+pub nm_frame_nr: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nl_mmap_hdr { -+pub nm_status: crate::ctypes::c_uint, -+pub nm_len: crate::ctypes::c_uint, -+pub nm_group: __u32, -+pub nm_pid: __u32, -+pub nm_uid: __u32, -+pub nm_gid: __u32, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum nl_mmap_status { -+NL_MMAP_STATUS_UNUSED = 0, -+NL_MMAP_STATUS_RESERVED = 1, -+NL_MMAP_STATUS_VALID = 2, -+NL_MMAP_STATUS_COPY = 3, -+NL_MMAP_STATUS_SKIP = 4, -+} -+pub const NETLINK_UNCONNECTED: _bindgen_ty_1 = _bindgen_ty_1::NETLINK_UNCONNECTED; -+pub const NETLINK_CONNECTED: _bindgen_ty_1 = _bindgen_ty_1::NETLINK_CONNECTED; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_1 { -+NETLINK_UNCONNECTED = 0, -+NETLINK_CONNECTED = 1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nlattr { -+pub nla_len: __u16, -+pub nla_type: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nla_bitfield32 { -+pub value: __u32, -+pub selector: __u32, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum netlink_attribute_type { -+NL_ATTR_TYPE_INVALID = 0, -+NL_ATTR_TYPE_FLAG = 1, -+NL_ATTR_TYPE_U8 = 2, -+NL_ATTR_TYPE_U16 = 3, -+NL_ATTR_TYPE_U32 = 4, -+NL_ATTR_TYPE_U64 = 5, -+NL_ATTR_TYPE_S8 = 6, -+NL_ATTR_TYPE_S16 = 7, -+NL_ATTR_TYPE_S32 = 8, -+NL_ATTR_TYPE_S64 = 9, -+NL_ATTR_TYPE_BINARY = 10, -+NL_ATTR_TYPE_STRING = 11, -+NL_ATTR_TYPE_NUL_STRING = 12, -+NL_ATTR_TYPE_NESTED = 13, -+NL_ATTR_TYPE_NESTED_ARRAY = 14, -+NL_ATTR_TYPE_BITFIELD32 = 15, -+} -+impl netlink_policy_type_attr { -+pub const NL_POLICY_TYPE_ATTR_MAX: netlink_policy_type_attr = netlink_policy_type_attr::NL_POLICY_TYPE_ATTR_MASK; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum netlink_policy_type_attr { -+NL_POLICY_TYPE_ATTR_UNSPEC = 0, -+NL_POLICY_TYPE_ATTR_TYPE = 1, -+NL_POLICY_TYPE_ATTR_MIN_VALUE_S = 2, -+NL_POLICY_TYPE_ATTR_MAX_VALUE_S = 3, -+NL_POLICY_TYPE_ATTR_MIN_VALUE_U = 4, -+NL_POLICY_TYPE_ATTR_MAX_VALUE_U = 5, -+NL_POLICY_TYPE_ATTR_MIN_LENGTH = 6, -+NL_POLICY_TYPE_ATTR_MAX_LENGTH = 7, -+NL_POLICY_TYPE_ATTR_POLICY_IDX = 8, -+NL_POLICY_TYPE_ATTR_POLICY_MAXTYPE = 9, -+NL_POLICY_TYPE_ATTR_BITFIELD32_MASK = 10, -+NL_POLICY_TYPE_ATTR_PAD = 11, -+NL_POLICY_TYPE_ATTR_MASK = 12, -+__NL_POLICY_TYPE_ATTR_MAX = 13, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_link_stats { -+pub rx_packets: __u32, -+pub tx_packets: __u32, -+pub rx_bytes: __u32, -+pub tx_bytes: __u32, -+pub rx_errors: __u32, -+pub tx_errors: __u32, -+pub rx_dropped: __u32, -+pub tx_dropped: __u32, -+pub multicast: __u32, -+pub collisions: __u32, -+pub rx_length_errors: __u32, -+pub rx_over_errors: __u32, -+pub rx_crc_errors: __u32, -+pub rx_frame_errors: __u32, -+pub rx_fifo_errors: __u32, -+pub rx_missed_errors: __u32, -+pub tx_aborted_errors: __u32, -+pub tx_carrier_errors: __u32, -+pub tx_fifo_errors: __u32, -+pub tx_heartbeat_errors: __u32, -+pub tx_window_errors: __u32, -+pub rx_compressed: __u32, -+pub tx_compressed: __u32, -+pub rx_nohandler: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_link_stats64 { -+pub rx_packets: __u64, -+pub tx_packets: __u64, -+pub rx_bytes: __u64, -+pub tx_bytes: __u64, -+pub rx_errors: __u64, -+pub tx_errors: __u64, -+pub rx_dropped: __u64, -+pub tx_dropped: __u64, -+pub multicast: __u64, -+pub collisions: __u64, -+pub rx_length_errors: __u64, -+pub rx_over_errors: __u64, -+pub rx_crc_errors: __u64, -+pub rx_frame_errors: __u64, -+pub rx_fifo_errors: __u64, -+pub rx_missed_errors: __u64, -+pub tx_aborted_errors: __u64, -+pub tx_carrier_errors: __u64, -+pub tx_fifo_errors: __u64, -+pub tx_heartbeat_errors: __u64, -+pub tx_window_errors: __u64, -+pub rx_compressed: __u64, -+pub tx_compressed: __u64, -+pub rx_nohandler: __u64, -+pub rx_otherhost_dropped: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_hw_stats64 { -+pub rx_packets: __u64, -+pub tx_packets: __u64, -+pub rx_bytes: __u64, -+pub tx_bytes: __u64, -+pub rx_errors: __u64, -+pub tx_errors: __u64, -+pub rx_dropped: __u64, -+pub tx_dropped: __u64, -+pub multicast: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_link_ifmap { -+pub mem_start: __u64, -+pub mem_end: __u64, -+pub base_addr: __u64, -+pub irq: __u16, -+pub dma: __u8, -+pub port: __u8, -+} -+pub const IFLA_UNSPEC: _bindgen_ty_2 = _bindgen_ty_2::IFLA_UNSPEC; -+pub const IFLA_ADDRESS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_ADDRESS; -+pub const IFLA_BROADCAST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_BROADCAST; -+pub const IFLA_IFNAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IFNAME; -+pub const IFLA_MTU: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MTU; -+pub const IFLA_LINK: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINK; -+pub const IFLA_QDISC: _bindgen_ty_2 = _bindgen_ty_2::IFLA_QDISC; -+pub const IFLA_STATS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_STATS; -+pub const IFLA_COST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_COST; -+pub const IFLA_PRIORITY: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PRIORITY; -+pub const IFLA_MASTER: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MASTER; -+pub const IFLA_WIRELESS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_WIRELESS; -+pub const IFLA_PROTINFO: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROTINFO; -+pub const IFLA_TXQLEN: _bindgen_ty_2 = _bindgen_ty_2::IFLA_TXQLEN; -+pub const IFLA_MAP: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MAP; -+pub const IFLA_WEIGHT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_WEIGHT; -+pub const IFLA_OPERSTATE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_OPERSTATE; -+pub const IFLA_LINKMODE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINKMODE; -+pub const IFLA_LINKINFO: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINKINFO; -+pub const IFLA_NET_NS_PID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NET_NS_PID; -+pub const IFLA_IFALIAS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IFALIAS; -+pub const IFLA_NUM_VF: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NUM_VF; -+pub const IFLA_VFINFO_LIST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_VFINFO_LIST; -+pub const IFLA_STATS64: _bindgen_ty_2 = _bindgen_ty_2::IFLA_STATS64; -+pub const IFLA_VF_PORTS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_VF_PORTS; -+pub const IFLA_PORT_SELF: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PORT_SELF; -+pub const IFLA_AF_SPEC: _bindgen_ty_2 = _bindgen_ty_2::IFLA_AF_SPEC; -+pub const IFLA_GROUP: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GROUP; -+pub const IFLA_NET_NS_FD: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NET_NS_FD; -+pub const IFLA_EXT_MASK: _bindgen_ty_2 = _bindgen_ty_2::IFLA_EXT_MASK; -+pub const IFLA_PROMISCUITY: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROMISCUITY; -+pub const IFLA_NUM_TX_QUEUES: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NUM_TX_QUEUES; -+pub const IFLA_NUM_RX_QUEUES: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NUM_RX_QUEUES; -+pub const IFLA_CARRIER: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER; -+pub const IFLA_PHYS_PORT_ID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PHYS_PORT_ID; -+pub const IFLA_CARRIER_CHANGES: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER_CHANGES; -+pub const IFLA_PHYS_SWITCH_ID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PHYS_SWITCH_ID; -+pub const IFLA_LINK_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINK_NETNSID; -+pub const IFLA_PHYS_PORT_NAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PHYS_PORT_NAME; -+pub const IFLA_PROTO_DOWN: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROTO_DOWN; -+pub const IFLA_GSO_MAX_SEGS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GSO_MAX_SEGS; -+pub const IFLA_GSO_MAX_SIZE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GSO_MAX_SIZE; -+pub const IFLA_PAD: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PAD; -+pub const IFLA_XDP: _bindgen_ty_2 = _bindgen_ty_2::IFLA_XDP; -+pub const IFLA_EVENT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_EVENT; -+pub const IFLA_NEW_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NEW_NETNSID; -+pub const IFLA_IF_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IF_NETNSID; -+pub const IFLA_TARGET_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IF_NETNSID; -+pub const IFLA_CARRIER_UP_COUNT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER_UP_COUNT; -+pub const IFLA_CARRIER_DOWN_COUNT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER_DOWN_COUNT; -+pub const IFLA_NEW_IFINDEX: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NEW_IFINDEX; -+pub const IFLA_MIN_MTU: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MIN_MTU; -+pub const IFLA_MAX_MTU: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MAX_MTU; -+pub const IFLA_PROP_LIST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROP_LIST; -+pub const IFLA_ALT_IFNAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_ALT_IFNAME; -+pub const IFLA_PERM_ADDRESS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PERM_ADDRESS; -+pub const IFLA_PROTO_DOWN_REASON: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROTO_DOWN_REASON; -+pub const IFLA_PARENT_DEV_NAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PARENT_DEV_NAME; -+pub const IFLA_PARENT_DEV_BUS_NAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PARENT_DEV_BUS_NAME; -+pub const IFLA_GRO_MAX_SIZE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GRO_MAX_SIZE; -+pub const IFLA_TSO_MAX_SIZE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_TSO_MAX_SIZE; -+pub const IFLA_TSO_MAX_SEGS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_TSO_MAX_SEGS; -+pub const IFLA_ALLMULTI: _bindgen_ty_2 = _bindgen_ty_2::IFLA_ALLMULTI; -+pub const IFLA_DEVLINK_PORT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_DEVLINK_PORT; -+pub const __IFLA_MAX: _bindgen_ty_2 = _bindgen_ty_2::__IFLA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_2 { -+IFLA_UNSPEC = 0, -+IFLA_ADDRESS = 1, -+IFLA_BROADCAST = 2, -+IFLA_IFNAME = 3, -+IFLA_MTU = 4, -+IFLA_LINK = 5, -+IFLA_QDISC = 6, -+IFLA_STATS = 7, -+IFLA_COST = 8, -+IFLA_PRIORITY = 9, -+IFLA_MASTER = 10, -+IFLA_WIRELESS = 11, -+IFLA_PROTINFO = 12, -+IFLA_TXQLEN = 13, -+IFLA_MAP = 14, -+IFLA_WEIGHT = 15, -+IFLA_OPERSTATE = 16, -+IFLA_LINKMODE = 17, -+IFLA_LINKINFO = 18, -+IFLA_NET_NS_PID = 19, -+IFLA_IFALIAS = 20, -+IFLA_NUM_VF = 21, -+IFLA_VFINFO_LIST = 22, -+IFLA_STATS64 = 23, -+IFLA_VF_PORTS = 24, -+IFLA_PORT_SELF = 25, -+IFLA_AF_SPEC = 26, -+IFLA_GROUP = 27, -+IFLA_NET_NS_FD = 28, -+IFLA_EXT_MASK = 29, -+IFLA_PROMISCUITY = 30, -+IFLA_NUM_TX_QUEUES = 31, -+IFLA_NUM_RX_QUEUES = 32, -+IFLA_CARRIER = 33, -+IFLA_PHYS_PORT_ID = 34, -+IFLA_CARRIER_CHANGES = 35, -+IFLA_PHYS_SWITCH_ID = 36, -+IFLA_LINK_NETNSID = 37, -+IFLA_PHYS_PORT_NAME = 38, -+IFLA_PROTO_DOWN = 39, -+IFLA_GSO_MAX_SEGS = 40, -+IFLA_GSO_MAX_SIZE = 41, -+IFLA_PAD = 42, -+IFLA_XDP = 43, -+IFLA_EVENT = 44, -+IFLA_NEW_NETNSID = 45, -+IFLA_IF_NETNSID = 46, -+IFLA_CARRIER_UP_COUNT = 47, -+IFLA_CARRIER_DOWN_COUNT = 48, -+IFLA_NEW_IFINDEX = 49, -+IFLA_MIN_MTU = 50, -+IFLA_MAX_MTU = 51, -+IFLA_PROP_LIST = 52, -+IFLA_ALT_IFNAME = 53, -+IFLA_PERM_ADDRESS = 54, -+IFLA_PROTO_DOWN_REASON = 55, -+IFLA_PARENT_DEV_NAME = 56, -+IFLA_PARENT_DEV_BUS_NAME = 57, -+IFLA_GRO_MAX_SIZE = 58, -+IFLA_TSO_MAX_SIZE = 59, -+IFLA_TSO_MAX_SEGS = 60, -+IFLA_ALLMULTI = 61, -+IFLA_DEVLINK_PORT = 62, -+__IFLA_MAX = 63, -+} -+pub const IFLA_PROTO_DOWN_REASON_UNSPEC: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_UNSPEC; -+pub const IFLA_PROTO_DOWN_REASON_MASK: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_MASK; -+pub const IFLA_PROTO_DOWN_REASON_VALUE: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_VALUE; -+pub const __IFLA_PROTO_DOWN_REASON_CNT: _bindgen_ty_3 = _bindgen_ty_3::__IFLA_PROTO_DOWN_REASON_CNT; -+pub const IFLA_PROTO_DOWN_REASON_MAX: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_VALUE; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_3 { -+IFLA_PROTO_DOWN_REASON_UNSPEC = 0, -+IFLA_PROTO_DOWN_REASON_MASK = 1, -+IFLA_PROTO_DOWN_REASON_VALUE = 2, -+__IFLA_PROTO_DOWN_REASON_CNT = 3, -+} -+pub const IFLA_INET_UNSPEC: _bindgen_ty_4 = _bindgen_ty_4::IFLA_INET_UNSPEC; -+pub const IFLA_INET_CONF: _bindgen_ty_4 = _bindgen_ty_4::IFLA_INET_CONF; -+pub const __IFLA_INET_MAX: _bindgen_ty_4 = _bindgen_ty_4::__IFLA_INET_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_4 { -+IFLA_INET_UNSPEC = 0, -+IFLA_INET_CONF = 1, -+__IFLA_INET_MAX = 2, -+} -+pub const IFLA_INET6_UNSPEC: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_UNSPEC; -+pub const IFLA_INET6_FLAGS: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_FLAGS; -+pub const IFLA_INET6_CONF: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_CONF; -+pub const IFLA_INET6_STATS: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_STATS; -+pub const IFLA_INET6_MCAST: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_MCAST; -+pub const IFLA_INET6_CACHEINFO: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_CACHEINFO; -+pub const IFLA_INET6_ICMP6STATS: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_ICMP6STATS; -+pub const IFLA_INET6_TOKEN: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_TOKEN; -+pub const IFLA_INET6_ADDR_GEN_MODE: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_ADDR_GEN_MODE; -+pub const IFLA_INET6_RA_MTU: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_RA_MTU; -+pub const __IFLA_INET6_MAX: _bindgen_ty_5 = _bindgen_ty_5::__IFLA_INET6_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_5 { -+IFLA_INET6_UNSPEC = 0, -+IFLA_INET6_FLAGS = 1, -+IFLA_INET6_CONF = 2, -+IFLA_INET6_STATS = 3, -+IFLA_INET6_MCAST = 4, -+IFLA_INET6_CACHEINFO = 5, -+IFLA_INET6_ICMP6STATS = 6, -+IFLA_INET6_TOKEN = 7, -+IFLA_INET6_ADDR_GEN_MODE = 8, -+IFLA_INET6_RA_MTU = 9, -+__IFLA_INET6_MAX = 10, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum in6_addr_gen_mode { -+IN6_ADDR_GEN_MODE_EUI64 = 0, -+IN6_ADDR_GEN_MODE_NONE = 1, -+IN6_ADDR_GEN_MODE_STABLE_PRIVACY = 2, -+IN6_ADDR_GEN_MODE_RANDOM = 3, -+} -+pub const IFLA_BR_UNSPEC: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_UNSPEC; -+pub const IFLA_BR_FORWARD_DELAY: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_FORWARD_DELAY; -+pub const IFLA_BR_HELLO_TIME: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_HELLO_TIME; -+pub const IFLA_BR_MAX_AGE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MAX_AGE; -+pub const IFLA_BR_AGEING_TIME: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_AGEING_TIME; -+pub const IFLA_BR_STP_STATE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_STP_STATE; -+pub const IFLA_BR_PRIORITY: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_PRIORITY; -+pub const IFLA_BR_VLAN_FILTERING: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_FILTERING; -+pub const IFLA_BR_VLAN_PROTOCOL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_PROTOCOL; -+pub const IFLA_BR_GROUP_FWD_MASK: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_GROUP_FWD_MASK; -+pub const IFLA_BR_ROOT_ID: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_ROOT_ID; -+pub const IFLA_BR_BRIDGE_ID: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_BRIDGE_ID; -+pub const IFLA_BR_ROOT_PORT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_ROOT_PORT; -+pub const IFLA_BR_ROOT_PATH_COST: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_ROOT_PATH_COST; -+pub const IFLA_BR_TOPOLOGY_CHANGE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TOPOLOGY_CHANGE; -+pub const IFLA_BR_TOPOLOGY_CHANGE_DETECTED: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TOPOLOGY_CHANGE_DETECTED; -+pub const IFLA_BR_HELLO_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_HELLO_TIMER; -+pub const IFLA_BR_TCN_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TCN_TIMER; -+pub const IFLA_BR_TOPOLOGY_CHANGE_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TOPOLOGY_CHANGE_TIMER; -+pub const IFLA_BR_GC_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_GC_TIMER; -+pub const IFLA_BR_GROUP_ADDR: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_GROUP_ADDR; -+pub const IFLA_BR_FDB_FLUSH: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_FDB_FLUSH; -+pub const IFLA_BR_MCAST_ROUTER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_ROUTER; -+pub const IFLA_BR_MCAST_SNOOPING: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_SNOOPING; -+pub const IFLA_BR_MCAST_QUERY_USE_IFADDR: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERY_USE_IFADDR; -+pub const IFLA_BR_MCAST_QUERIER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERIER; -+pub const IFLA_BR_MCAST_HASH_ELASTICITY: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_HASH_ELASTICITY; -+pub const IFLA_BR_MCAST_HASH_MAX: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_HASH_MAX; -+pub const IFLA_BR_MCAST_LAST_MEMBER_CNT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_LAST_MEMBER_CNT; -+pub const IFLA_BR_MCAST_STARTUP_QUERY_CNT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_STARTUP_QUERY_CNT; -+pub const IFLA_BR_MCAST_LAST_MEMBER_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_LAST_MEMBER_INTVL; -+pub const IFLA_BR_MCAST_MEMBERSHIP_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_MEMBERSHIP_INTVL; -+pub const IFLA_BR_MCAST_QUERIER_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERIER_INTVL; -+pub const IFLA_BR_MCAST_QUERY_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERY_INTVL; -+pub const IFLA_BR_MCAST_QUERY_RESPONSE_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERY_RESPONSE_INTVL; -+pub const IFLA_BR_MCAST_STARTUP_QUERY_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_STARTUP_QUERY_INTVL; -+pub const IFLA_BR_NF_CALL_IPTABLES: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_NF_CALL_IPTABLES; -+pub const IFLA_BR_NF_CALL_IP6TABLES: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_NF_CALL_IP6TABLES; -+pub const IFLA_BR_NF_CALL_ARPTABLES: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_NF_CALL_ARPTABLES; -+pub const IFLA_BR_VLAN_DEFAULT_PVID: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_DEFAULT_PVID; -+pub const IFLA_BR_PAD: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_PAD; -+pub const IFLA_BR_VLAN_STATS_ENABLED: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_STATS_ENABLED; -+pub const IFLA_BR_MCAST_STATS_ENABLED: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_STATS_ENABLED; -+pub const IFLA_BR_MCAST_IGMP_VERSION: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_IGMP_VERSION; -+pub const IFLA_BR_MCAST_MLD_VERSION: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_MLD_VERSION; -+pub const IFLA_BR_VLAN_STATS_PER_PORT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_STATS_PER_PORT; -+pub const IFLA_BR_MULTI_BOOLOPT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MULTI_BOOLOPT; -+pub const IFLA_BR_MCAST_QUERIER_STATE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERIER_STATE; -+pub const __IFLA_BR_MAX: _bindgen_ty_6 = _bindgen_ty_6::__IFLA_BR_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_6 { -+IFLA_BR_UNSPEC = 0, -+IFLA_BR_FORWARD_DELAY = 1, -+IFLA_BR_HELLO_TIME = 2, -+IFLA_BR_MAX_AGE = 3, -+IFLA_BR_AGEING_TIME = 4, -+IFLA_BR_STP_STATE = 5, -+IFLA_BR_PRIORITY = 6, -+IFLA_BR_VLAN_FILTERING = 7, -+IFLA_BR_VLAN_PROTOCOL = 8, -+IFLA_BR_GROUP_FWD_MASK = 9, -+IFLA_BR_ROOT_ID = 10, -+IFLA_BR_BRIDGE_ID = 11, -+IFLA_BR_ROOT_PORT = 12, -+IFLA_BR_ROOT_PATH_COST = 13, -+IFLA_BR_TOPOLOGY_CHANGE = 14, -+IFLA_BR_TOPOLOGY_CHANGE_DETECTED = 15, -+IFLA_BR_HELLO_TIMER = 16, -+IFLA_BR_TCN_TIMER = 17, -+IFLA_BR_TOPOLOGY_CHANGE_TIMER = 18, -+IFLA_BR_GC_TIMER = 19, -+IFLA_BR_GROUP_ADDR = 20, -+IFLA_BR_FDB_FLUSH = 21, -+IFLA_BR_MCAST_ROUTER = 22, -+IFLA_BR_MCAST_SNOOPING = 23, -+IFLA_BR_MCAST_QUERY_USE_IFADDR = 24, -+IFLA_BR_MCAST_QUERIER = 25, -+IFLA_BR_MCAST_HASH_ELASTICITY = 26, -+IFLA_BR_MCAST_HASH_MAX = 27, -+IFLA_BR_MCAST_LAST_MEMBER_CNT = 28, -+IFLA_BR_MCAST_STARTUP_QUERY_CNT = 29, -+IFLA_BR_MCAST_LAST_MEMBER_INTVL = 30, -+IFLA_BR_MCAST_MEMBERSHIP_INTVL = 31, -+IFLA_BR_MCAST_QUERIER_INTVL = 32, -+IFLA_BR_MCAST_QUERY_INTVL = 33, -+IFLA_BR_MCAST_QUERY_RESPONSE_INTVL = 34, -+IFLA_BR_MCAST_STARTUP_QUERY_INTVL = 35, -+IFLA_BR_NF_CALL_IPTABLES = 36, -+IFLA_BR_NF_CALL_IP6TABLES = 37, -+IFLA_BR_NF_CALL_ARPTABLES = 38, -+IFLA_BR_VLAN_DEFAULT_PVID = 39, -+IFLA_BR_PAD = 40, -+IFLA_BR_VLAN_STATS_ENABLED = 41, -+IFLA_BR_MCAST_STATS_ENABLED = 42, -+IFLA_BR_MCAST_IGMP_VERSION = 43, -+IFLA_BR_MCAST_MLD_VERSION = 44, -+IFLA_BR_VLAN_STATS_PER_PORT = 45, -+IFLA_BR_MULTI_BOOLOPT = 46, -+IFLA_BR_MCAST_QUERIER_STATE = 47, -+__IFLA_BR_MAX = 48, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_bridge_id { -+pub prio: [__u8; 2usize], -+pub addr: [__u8; 6usize], -+} -+pub const BRIDGE_MODE_UNSPEC: _bindgen_ty_7 = _bindgen_ty_7::BRIDGE_MODE_UNSPEC; -+pub const BRIDGE_MODE_HAIRPIN: _bindgen_ty_7 = _bindgen_ty_7::BRIDGE_MODE_HAIRPIN; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_7 { -+BRIDGE_MODE_UNSPEC = 0, -+BRIDGE_MODE_HAIRPIN = 1, -+} -+pub const IFLA_BRPORT_UNSPEC: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_UNSPEC; -+pub const IFLA_BRPORT_STATE: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_STATE; -+pub const IFLA_BRPORT_PRIORITY: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PRIORITY; -+pub const IFLA_BRPORT_COST: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_COST; -+pub const IFLA_BRPORT_MODE: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MODE; -+pub const IFLA_BRPORT_GUARD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_GUARD; -+pub const IFLA_BRPORT_PROTECT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PROTECT; -+pub const IFLA_BRPORT_FAST_LEAVE: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_FAST_LEAVE; -+pub const IFLA_BRPORT_LEARNING: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_LEARNING; -+pub const IFLA_BRPORT_UNICAST_FLOOD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_UNICAST_FLOOD; -+pub const IFLA_BRPORT_PROXYARP: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PROXYARP; -+pub const IFLA_BRPORT_LEARNING_SYNC: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_LEARNING_SYNC; -+pub const IFLA_BRPORT_PROXYARP_WIFI: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PROXYARP_WIFI; -+pub const IFLA_BRPORT_ROOT_ID: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_ROOT_ID; -+pub const IFLA_BRPORT_BRIDGE_ID: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_BRIDGE_ID; -+pub const IFLA_BRPORT_DESIGNATED_PORT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_DESIGNATED_PORT; -+pub const IFLA_BRPORT_DESIGNATED_COST: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_DESIGNATED_COST; -+pub const IFLA_BRPORT_ID: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_ID; -+pub const IFLA_BRPORT_NO: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_NO; -+pub const IFLA_BRPORT_TOPOLOGY_CHANGE_ACK: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_TOPOLOGY_CHANGE_ACK; -+pub const IFLA_BRPORT_CONFIG_PENDING: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_CONFIG_PENDING; -+pub const IFLA_BRPORT_MESSAGE_AGE_TIMER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MESSAGE_AGE_TIMER; -+pub const IFLA_BRPORT_FORWARD_DELAY_TIMER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_FORWARD_DELAY_TIMER; -+pub const IFLA_BRPORT_HOLD_TIMER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_HOLD_TIMER; -+pub const IFLA_BRPORT_FLUSH: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_FLUSH; -+pub const IFLA_BRPORT_MULTICAST_ROUTER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MULTICAST_ROUTER; -+pub const IFLA_BRPORT_PAD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PAD; -+pub const IFLA_BRPORT_MCAST_FLOOD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_FLOOD; -+pub const IFLA_BRPORT_MCAST_TO_UCAST: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_TO_UCAST; -+pub const IFLA_BRPORT_VLAN_TUNNEL: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_VLAN_TUNNEL; -+pub const IFLA_BRPORT_BCAST_FLOOD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_BCAST_FLOOD; -+pub const IFLA_BRPORT_GROUP_FWD_MASK: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_GROUP_FWD_MASK; -+pub const IFLA_BRPORT_NEIGH_SUPPRESS: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_NEIGH_SUPPRESS; -+pub const IFLA_BRPORT_ISOLATED: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_ISOLATED; -+pub const IFLA_BRPORT_BACKUP_PORT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_BACKUP_PORT; -+pub const IFLA_BRPORT_MRP_RING_OPEN: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MRP_RING_OPEN; -+pub const IFLA_BRPORT_MRP_IN_OPEN: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MRP_IN_OPEN; -+pub const IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT; -+pub const IFLA_BRPORT_MCAST_EHT_HOSTS_CNT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_EHT_HOSTS_CNT; -+pub const IFLA_BRPORT_LOCKED: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_LOCKED; -+pub const IFLA_BRPORT_MAB: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MAB; -+pub const __IFLA_BRPORT_MAX: _bindgen_ty_8 = _bindgen_ty_8::__IFLA_BRPORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_8 { -+IFLA_BRPORT_UNSPEC = 0, -+IFLA_BRPORT_STATE = 1, -+IFLA_BRPORT_PRIORITY = 2, -+IFLA_BRPORT_COST = 3, -+IFLA_BRPORT_MODE = 4, -+IFLA_BRPORT_GUARD = 5, -+IFLA_BRPORT_PROTECT = 6, -+IFLA_BRPORT_FAST_LEAVE = 7, -+IFLA_BRPORT_LEARNING = 8, -+IFLA_BRPORT_UNICAST_FLOOD = 9, -+IFLA_BRPORT_PROXYARP = 10, -+IFLA_BRPORT_LEARNING_SYNC = 11, -+IFLA_BRPORT_PROXYARP_WIFI = 12, -+IFLA_BRPORT_ROOT_ID = 13, -+IFLA_BRPORT_BRIDGE_ID = 14, -+IFLA_BRPORT_DESIGNATED_PORT = 15, -+IFLA_BRPORT_DESIGNATED_COST = 16, -+IFLA_BRPORT_ID = 17, -+IFLA_BRPORT_NO = 18, -+IFLA_BRPORT_TOPOLOGY_CHANGE_ACK = 19, -+IFLA_BRPORT_CONFIG_PENDING = 20, -+IFLA_BRPORT_MESSAGE_AGE_TIMER = 21, -+IFLA_BRPORT_FORWARD_DELAY_TIMER = 22, -+IFLA_BRPORT_HOLD_TIMER = 23, -+IFLA_BRPORT_FLUSH = 24, -+IFLA_BRPORT_MULTICAST_ROUTER = 25, -+IFLA_BRPORT_PAD = 26, -+IFLA_BRPORT_MCAST_FLOOD = 27, -+IFLA_BRPORT_MCAST_TO_UCAST = 28, -+IFLA_BRPORT_VLAN_TUNNEL = 29, -+IFLA_BRPORT_BCAST_FLOOD = 30, -+IFLA_BRPORT_GROUP_FWD_MASK = 31, -+IFLA_BRPORT_NEIGH_SUPPRESS = 32, -+IFLA_BRPORT_ISOLATED = 33, -+IFLA_BRPORT_BACKUP_PORT = 34, -+IFLA_BRPORT_MRP_RING_OPEN = 35, -+IFLA_BRPORT_MRP_IN_OPEN = 36, -+IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT = 37, -+IFLA_BRPORT_MCAST_EHT_HOSTS_CNT = 38, -+IFLA_BRPORT_LOCKED = 39, -+IFLA_BRPORT_MAB = 40, -+__IFLA_BRPORT_MAX = 41, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_cacheinfo { -+pub max_reasm_len: __u32, -+pub tstamp: __u32, -+pub reachable_time: __u32, -+pub retrans_time: __u32, -+} -+pub const IFLA_INFO_UNSPEC: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_UNSPEC; -+pub const IFLA_INFO_KIND: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_KIND; -+pub const IFLA_INFO_DATA: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_DATA; -+pub const IFLA_INFO_XSTATS: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_XSTATS; -+pub const IFLA_INFO_SLAVE_KIND: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_SLAVE_KIND; -+pub const IFLA_INFO_SLAVE_DATA: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_SLAVE_DATA; -+pub const __IFLA_INFO_MAX: _bindgen_ty_9 = _bindgen_ty_9::__IFLA_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_9 { -+IFLA_INFO_UNSPEC = 0, -+IFLA_INFO_KIND = 1, -+IFLA_INFO_DATA = 2, -+IFLA_INFO_XSTATS = 3, -+IFLA_INFO_SLAVE_KIND = 4, -+IFLA_INFO_SLAVE_DATA = 5, -+__IFLA_INFO_MAX = 6, -+} -+pub const IFLA_VLAN_UNSPEC: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_UNSPEC; -+pub const IFLA_VLAN_ID: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_ID; -+pub const IFLA_VLAN_FLAGS: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_FLAGS; -+pub const IFLA_VLAN_EGRESS_QOS: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_EGRESS_QOS; -+pub const IFLA_VLAN_INGRESS_QOS: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_INGRESS_QOS; -+pub const IFLA_VLAN_PROTOCOL: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_PROTOCOL; -+pub const __IFLA_VLAN_MAX: _bindgen_ty_10 = _bindgen_ty_10::__IFLA_VLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_10 { -+IFLA_VLAN_UNSPEC = 0, -+IFLA_VLAN_ID = 1, -+IFLA_VLAN_FLAGS = 2, -+IFLA_VLAN_EGRESS_QOS = 3, -+IFLA_VLAN_INGRESS_QOS = 4, -+IFLA_VLAN_PROTOCOL = 5, -+__IFLA_VLAN_MAX = 6, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vlan_flags { -+pub flags: __u32, -+pub mask: __u32, -+} -+pub const IFLA_VLAN_QOS_UNSPEC: _bindgen_ty_11 = _bindgen_ty_11::IFLA_VLAN_QOS_UNSPEC; -+pub const IFLA_VLAN_QOS_MAPPING: _bindgen_ty_11 = _bindgen_ty_11::IFLA_VLAN_QOS_MAPPING; -+pub const __IFLA_VLAN_QOS_MAX: _bindgen_ty_11 = _bindgen_ty_11::__IFLA_VLAN_QOS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_11 { -+IFLA_VLAN_QOS_UNSPEC = 0, -+IFLA_VLAN_QOS_MAPPING = 1, -+__IFLA_VLAN_QOS_MAX = 2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vlan_qos_mapping { -+pub from: __u32, -+pub to: __u32, -+} -+pub const IFLA_MACVLAN_UNSPEC: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_UNSPEC; -+pub const IFLA_MACVLAN_MODE: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MODE; -+pub const IFLA_MACVLAN_FLAGS: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_FLAGS; -+pub const IFLA_MACVLAN_MACADDR_MODE: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR_MODE; -+pub const IFLA_MACVLAN_MACADDR: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR; -+pub const IFLA_MACVLAN_MACADDR_DATA: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR_DATA; -+pub const IFLA_MACVLAN_MACADDR_COUNT: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR_COUNT; -+pub const IFLA_MACVLAN_BC_QUEUE_LEN: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_BC_QUEUE_LEN; -+pub const IFLA_MACVLAN_BC_QUEUE_LEN_USED: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_BC_QUEUE_LEN_USED; -+pub const __IFLA_MACVLAN_MAX: _bindgen_ty_12 = _bindgen_ty_12::__IFLA_MACVLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_12 { -+IFLA_MACVLAN_UNSPEC = 0, -+IFLA_MACVLAN_MODE = 1, -+IFLA_MACVLAN_FLAGS = 2, -+IFLA_MACVLAN_MACADDR_MODE = 3, -+IFLA_MACVLAN_MACADDR = 4, -+IFLA_MACVLAN_MACADDR_DATA = 5, -+IFLA_MACVLAN_MACADDR_COUNT = 6, -+IFLA_MACVLAN_BC_QUEUE_LEN = 7, -+IFLA_MACVLAN_BC_QUEUE_LEN_USED = 8, -+__IFLA_MACVLAN_MAX = 9, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macvlan_mode { -+MACVLAN_MODE_PRIVATE = 1, -+MACVLAN_MODE_VEPA = 2, -+MACVLAN_MODE_BRIDGE = 4, -+MACVLAN_MODE_PASSTHRU = 8, -+MACVLAN_MODE_SOURCE = 16, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macvlan_macaddr_mode { -+MACVLAN_MACADDR_ADD = 0, -+MACVLAN_MACADDR_DEL = 1, -+MACVLAN_MACADDR_FLUSH = 2, -+MACVLAN_MACADDR_SET = 3, -+} -+pub const IFLA_VRF_UNSPEC: _bindgen_ty_13 = _bindgen_ty_13::IFLA_VRF_UNSPEC; -+pub const IFLA_VRF_TABLE: _bindgen_ty_13 = _bindgen_ty_13::IFLA_VRF_TABLE; -+pub const __IFLA_VRF_MAX: _bindgen_ty_13 = _bindgen_ty_13::__IFLA_VRF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_13 { -+IFLA_VRF_UNSPEC = 0, -+IFLA_VRF_TABLE = 1, -+__IFLA_VRF_MAX = 2, -+} -+pub const IFLA_VRF_PORT_UNSPEC: _bindgen_ty_14 = _bindgen_ty_14::IFLA_VRF_PORT_UNSPEC; -+pub const IFLA_VRF_PORT_TABLE: _bindgen_ty_14 = _bindgen_ty_14::IFLA_VRF_PORT_TABLE; -+pub const __IFLA_VRF_PORT_MAX: _bindgen_ty_14 = _bindgen_ty_14::__IFLA_VRF_PORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_14 { -+IFLA_VRF_PORT_UNSPEC = 0, -+IFLA_VRF_PORT_TABLE = 1, -+__IFLA_VRF_PORT_MAX = 2, -+} -+pub const IFLA_MACSEC_UNSPEC: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_UNSPEC; -+pub const IFLA_MACSEC_SCI: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_SCI; -+pub const IFLA_MACSEC_PORT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_PORT; -+pub const IFLA_MACSEC_ICV_LEN: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ICV_LEN; -+pub const IFLA_MACSEC_CIPHER_SUITE: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_CIPHER_SUITE; -+pub const IFLA_MACSEC_WINDOW: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_WINDOW; -+pub const IFLA_MACSEC_ENCODING_SA: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ENCODING_SA; -+pub const IFLA_MACSEC_ENCRYPT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ENCRYPT; -+pub const IFLA_MACSEC_PROTECT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_PROTECT; -+pub const IFLA_MACSEC_INC_SCI: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_INC_SCI; -+pub const IFLA_MACSEC_ES: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ES; -+pub const IFLA_MACSEC_SCB: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_SCB; -+pub const IFLA_MACSEC_REPLAY_PROTECT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_REPLAY_PROTECT; -+pub const IFLA_MACSEC_VALIDATION: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_VALIDATION; -+pub const IFLA_MACSEC_PAD: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_PAD; -+pub const IFLA_MACSEC_OFFLOAD: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_OFFLOAD; -+pub const __IFLA_MACSEC_MAX: _bindgen_ty_15 = _bindgen_ty_15::__IFLA_MACSEC_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_15 { -+IFLA_MACSEC_UNSPEC = 0, -+IFLA_MACSEC_SCI = 1, -+IFLA_MACSEC_PORT = 2, -+IFLA_MACSEC_ICV_LEN = 3, -+IFLA_MACSEC_CIPHER_SUITE = 4, -+IFLA_MACSEC_WINDOW = 5, -+IFLA_MACSEC_ENCODING_SA = 6, -+IFLA_MACSEC_ENCRYPT = 7, -+IFLA_MACSEC_PROTECT = 8, -+IFLA_MACSEC_INC_SCI = 9, -+IFLA_MACSEC_ES = 10, -+IFLA_MACSEC_SCB = 11, -+IFLA_MACSEC_REPLAY_PROTECT = 12, -+IFLA_MACSEC_VALIDATION = 13, -+IFLA_MACSEC_PAD = 14, -+IFLA_MACSEC_OFFLOAD = 15, -+__IFLA_MACSEC_MAX = 16, -+} -+pub const IFLA_XFRM_UNSPEC: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_UNSPEC; -+pub const IFLA_XFRM_LINK: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_LINK; -+pub const IFLA_XFRM_IF_ID: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_IF_ID; -+pub const IFLA_XFRM_COLLECT_METADATA: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_COLLECT_METADATA; -+pub const __IFLA_XFRM_MAX: _bindgen_ty_16 = _bindgen_ty_16::__IFLA_XFRM_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_16 { -+IFLA_XFRM_UNSPEC = 0, -+IFLA_XFRM_LINK = 1, -+IFLA_XFRM_IF_ID = 2, -+IFLA_XFRM_COLLECT_METADATA = 3, -+__IFLA_XFRM_MAX = 4, -+} -+impl macsec_validation_type { -+pub const MACSEC_VALIDATE_MAX: macsec_validation_type = macsec_validation_type::MACSEC_VALIDATE_STRICT; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macsec_validation_type { -+MACSEC_VALIDATE_DISABLED = 0, -+MACSEC_VALIDATE_CHECK = 1, -+MACSEC_VALIDATE_STRICT = 2, -+__MACSEC_VALIDATE_END = 3, -+} -+impl macsec_offload { -+pub const MACSEC_OFFLOAD_MAX: macsec_offload = macsec_offload::MACSEC_OFFLOAD_MAC; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macsec_offload { -+MACSEC_OFFLOAD_OFF = 0, -+MACSEC_OFFLOAD_PHY = 1, -+MACSEC_OFFLOAD_MAC = 2, -+__MACSEC_OFFLOAD_END = 3, -+} -+pub const IFLA_IPVLAN_UNSPEC: _bindgen_ty_17 = _bindgen_ty_17::IFLA_IPVLAN_UNSPEC; -+pub const IFLA_IPVLAN_MODE: _bindgen_ty_17 = _bindgen_ty_17::IFLA_IPVLAN_MODE; -+pub const IFLA_IPVLAN_FLAGS: _bindgen_ty_17 = _bindgen_ty_17::IFLA_IPVLAN_FLAGS; -+pub const __IFLA_IPVLAN_MAX: _bindgen_ty_17 = _bindgen_ty_17::__IFLA_IPVLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_17 { -+IFLA_IPVLAN_UNSPEC = 0, -+IFLA_IPVLAN_MODE = 1, -+IFLA_IPVLAN_FLAGS = 2, -+__IFLA_IPVLAN_MAX = 3, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ipvlan_mode { -+IPVLAN_MODE_L2 = 0, -+IPVLAN_MODE_L3 = 1, -+IPVLAN_MODE_L3S = 2, -+IPVLAN_MODE_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tunnel_msg { -+pub family: __u8, -+pub flags: __u8, -+pub reserved2: __u16, -+pub ifindex: __u32, -+} -+pub const VNIFILTER_ENTRY_STATS_UNSPEC: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_UNSPEC; -+pub const VNIFILTER_ENTRY_STATS_RX_BYTES: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_BYTES; -+pub const VNIFILTER_ENTRY_STATS_RX_PKTS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_PKTS; -+pub const VNIFILTER_ENTRY_STATS_RX_DROPS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_DROPS; -+pub const VNIFILTER_ENTRY_STATS_RX_ERRORS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_ERRORS; -+pub const VNIFILTER_ENTRY_STATS_TX_BYTES: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_BYTES; -+pub const VNIFILTER_ENTRY_STATS_TX_PKTS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_PKTS; -+pub const VNIFILTER_ENTRY_STATS_TX_DROPS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_DROPS; -+pub const VNIFILTER_ENTRY_STATS_TX_ERRORS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_ERRORS; -+pub const VNIFILTER_ENTRY_STATS_PAD: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_PAD; -+pub const __VNIFILTER_ENTRY_STATS_MAX: _bindgen_ty_18 = _bindgen_ty_18::__VNIFILTER_ENTRY_STATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_18 { -+VNIFILTER_ENTRY_STATS_UNSPEC = 0, -+VNIFILTER_ENTRY_STATS_RX_BYTES = 1, -+VNIFILTER_ENTRY_STATS_RX_PKTS = 2, -+VNIFILTER_ENTRY_STATS_RX_DROPS = 3, -+VNIFILTER_ENTRY_STATS_RX_ERRORS = 4, -+VNIFILTER_ENTRY_STATS_TX_BYTES = 5, -+VNIFILTER_ENTRY_STATS_TX_PKTS = 6, -+VNIFILTER_ENTRY_STATS_TX_DROPS = 7, -+VNIFILTER_ENTRY_STATS_TX_ERRORS = 8, -+VNIFILTER_ENTRY_STATS_PAD = 9, -+__VNIFILTER_ENTRY_STATS_MAX = 10, -+} -+pub const VXLAN_VNIFILTER_ENTRY_UNSPEC: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_UNSPEC; -+pub const VXLAN_VNIFILTER_ENTRY_START: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_START; -+pub const VXLAN_VNIFILTER_ENTRY_END: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_END; -+pub const VXLAN_VNIFILTER_ENTRY_GROUP: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_GROUP; -+pub const VXLAN_VNIFILTER_ENTRY_GROUP6: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_GROUP6; -+pub const VXLAN_VNIFILTER_ENTRY_STATS: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_STATS; -+pub const __VXLAN_VNIFILTER_ENTRY_MAX: _bindgen_ty_19 = _bindgen_ty_19::__VXLAN_VNIFILTER_ENTRY_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_19 { -+VXLAN_VNIFILTER_ENTRY_UNSPEC = 0, -+VXLAN_VNIFILTER_ENTRY_START = 1, -+VXLAN_VNIFILTER_ENTRY_END = 2, -+VXLAN_VNIFILTER_ENTRY_GROUP = 3, -+VXLAN_VNIFILTER_ENTRY_GROUP6 = 4, -+VXLAN_VNIFILTER_ENTRY_STATS = 5, -+__VXLAN_VNIFILTER_ENTRY_MAX = 6, -+} -+pub const VXLAN_VNIFILTER_UNSPEC: _bindgen_ty_20 = _bindgen_ty_20::VXLAN_VNIFILTER_UNSPEC; -+pub const VXLAN_VNIFILTER_ENTRY: _bindgen_ty_20 = _bindgen_ty_20::VXLAN_VNIFILTER_ENTRY; -+pub const __VXLAN_VNIFILTER_MAX: _bindgen_ty_20 = _bindgen_ty_20::__VXLAN_VNIFILTER_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_20 { -+VXLAN_VNIFILTER_UNSPEC = 0, -+VXLAN_VNIFILTER_ENTRY = 1, -+__VXLAN_VNIFILTER_MAX = 2, -+} -+pub const IFLA_VXLAN_UNSPEC: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UNSPEC; -+pub const IFLA_VXLAN_ID: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_ID; -+pub const IFLA_VXLAN_GROUP: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GROUP; -+pub const IFLA_VXLAN_LINK: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LINK; -+pub const IFLA_VXLAN_LOCAL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LOCAL; -+pub const IFLA_VXLAN_TTL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_TTL; -+pub const IFLA_VXLAN_TOS: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_TOS; -+pub const IFLA_VXLAN_LEARNING: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LEARNING; -+pub const IFLA_VXLAN_AGEING: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_AGEING; -+pub const IFLA_VXLAN_LIMIT: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LIMIT; -+pub const IFLA_VXLAN_PORT_RANGE: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_PORT_RANGE; -+pub const IFLA_VXLAN_PROXY: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_PROXY; -+pub const IFLA_VXLAN_RSC: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_RSC; -+pub const IFLA_VXLAN_L2MISS: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_L2MISS; -+pub const IFLA_VXLAN_L3MISS: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_L3MISS; -+pub const IFLA_VXLAN_PORT: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_PORT; -+pub const IFLA_VXLAN_GROUP6: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GROUP6; -+pub const IFLA_VXLAN_LOCAL6: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LOCAL6; -+pub const IFLA_VXLAN_UDP_CSUM: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UDP_CSUM; -+pub const IFLA_VXLAN_UDP_ZERO_CSUM6_TX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UDP_ZERO_CSUM6_TX; -+pub const IFLA_VXLAN_UDP_ZERO_CSUM6_RX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UDP_ZERO_CSUM6_RX; -+pub const IFLA_VXLAN_REMCSUM_TX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_REMCSUM_TX; -+pub const IFLA_VXLAN_REMCSUM_RX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_REMCSUM_RX; -+pub const IFLA_VXLAN_GBP: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GBP; -+pub const IFLA_VXLAN_REMCSUM_NOPARTIAL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_REMCSUM_NOPARTIAL; -+pub const IFLA_VXLAN_COLLECT_METADATA: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_COLLECT_METADATA; -+pub const IFLA_VXLAN_LABEL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LABEL; -+pub const IFLA_VXLAN_GPE: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GPE; -+pub const IFLA_VXLAN_TTL_INHERIT: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_TTL_INHERIT; -+pub const IFLA_VXLAN_DF: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_DF; -+pub const IFLA_VXLAN_VNIFILTER: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_VNIFILTER; -+pub const __IFLA_VXLAN_MAX: _bindgen_ty_21 = _bindgen_ty_21::__IFLA_VXLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_21 { -+IFLA_VXLAN_UNSPEC = 0, -+IFLA_VXLAN_ID = 1, -+IFLA_VXLAN_GROUP = 2, -+IFLA_VXLAN_LINK = 3, -+IFLA_VXLAN_LOCAL = 4, -+IFLA_VXLAN_TTL = 5, -+IFLA_VXLAN_TOS = 6, -+IFLA_VXLAN_LEARNING = 7, -+IFLA_VXLAN_AGEING = 8, -+IFLA_VXLAN_LIMIT = 9, -+IFLA_VXLAN_PORT_RANGE = 10, -+IFLA_VXLAN_PROXY = 11, -+IFLA_VXLAN_RSC = 12, -+IFLA_VXLAN_L2MISS = 13, -+IFLA_VXLAN_L3MISS = 14, -+IFLA_VXLAN_PORT = 15, -+IFLA_VXLAN_GROUP6 = 16, -+IFLA_VXLAN_LOCAL6 = 17, -+IFLA_VXLAN_UDP_CSUM = 18, -+IFLA_VXLAN_UDP_ZERO_CSUM6_TX = 19, -+IFLA_VXLAN_UDP_ZERO_CSUM6_RX = 20, -+IFLA_VXLAN_REMCSUM_TX = 21, -+IFLA_VXLAN_REMCSUM_RX = 22, -+IFLA_VXLAN_GBP = 23, -+IFLA_VXLAN_REMCSUM_NOPARTIAL = 24, -+IFLA_VXLAN_COLLECT_METADATA = 25, -+IFLA_VXLAN_LABEL = 26, -+IFLA_VXLAN_GPE = 27, -+IFLA_VXLAN_TTL_INHERIT = 28, -+IFLA_VXLAN_DF = 29, -+IFLA_VXLAN_VNIFILTER = 30, -+__IFLA_VXLAN_MAX = 31, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vxlan_port_range { -+pub low: __be16, -+pub high: __be16, -+} -+impl ifla_vxlan_df { -+pub const VXLAN_DF_MAX: ifla_vxlan_df = ifla_vxlan_df::VXLAN_DF_INHERIT; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ifla_vxlan_df { -+VXLAN_DF_UNSET = 0, -+VXLAN_DF_SET = 1, -+VXLAN_DF_INHERIT = 2, -+__VXLAN_DF_END = 3, -+} -+pub const IFLA_GENEVE_UNSPEC: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UNSPEC; -+pub const IFLA_GENEVE_ID: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_ID; -+pub const IFLA_GENEVE_REMOTE: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_REMOTE; -+pub const IFLA_GENEVE_TTL: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_TTL; -+pub const IFLA_GENEVE_TOS: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_TOS; -+pub const IFLA_GENEVE_PORT: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_PORT; -+pub const IFLA_GENEVE_COLLECT_METADATA: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_COLLECT_METADATA; -+pub const IFLA_GENEVE_REMOTE6: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_REMOTE6; -+pub const IFLA_GENEVE_UDP_CSUM: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UDP_CSUM; -+pub const IFLA_GENEVE_UDP_ZERO_CSUM6_TX: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UDP_ZERO_CSUM6_TX; -+pub const IFLA_GENEVE_UDP_ZERO_CSUM6_RX: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UDP_ZERO_CSUM6_RX; -+pub const IFLA_GENEVE_LABEL: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_LABEL; -+pub const IFLA_GENEVE_TTL_INHERIT: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_TTL_INHERIT; -+pub const IFLA_GENEVE_DF: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_DF; -+pub const IFLA_GENEVE_INNER_PROTO_INHERIT: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_INNER_PROTO_INHERIT; -+pub const __IFLA_GENEVE_MAX: _bindgen_ty_22 = _bindgen_ty_22::__IFLA_GENEVE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_22 { -+IFLA_GENEVE_UNSPEC = 0, -+IFLA_GENEVE_ID = 1, -+IFLA_GENEVE_REMOTE = 2, -+IFLA_GENEVE_TTL = 3, -+IFLA_GENEVE_TOS = 4, -+IFLA_GENEVE_PORT = 5, -+IFLA_GENEVE_COLLECT_METADATA = 6, -+IFLA_GENEVE_REMOTE6 = 7, -+IFLA_GENEVE_UDP_CSUM = 8, -+IFLA_GENEVE_UDP_ZERO_CSUM6_TX = 9, -+IFLA_GENEVE_UDP_ZERO_CSUM6_RX = 10, -+IFLA_GENEVE_LABEL = 11, -+IFLA_GENEVE_TTL_INHERIT = 12, -+IFLA_GENEVE_DF = 13, -+IFLA_GENEVE_INNER_PROTO_INHERIT = 14, -+__IFLA_GENEVE_MAX = 15, -+} -+impl ifla_geneve_df { -+pub const GENEVE_DF_MAX: ifla_geneve_df = ifla_geneve_df::GENEVE_DF_INHERIT; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ifla_geneve_df { -+GENEVE_DF_UNSET = 0, -+GENEVE_DF_SET = 1, -+GENEVE_DF_INHERIT = 2, -+__GENEVE_DF_END = 3, -+} -+pub const IFLA_BAREUDP_UNSPEC: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_UNSPEC; -+pub const IFLA_BAREUDP_PORT: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_PORT; -+pub const IFLA_BAREUDP_ETHERTYPE: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_ETHERTYPE; -+pub const IFLA_BAREUDP_SRCPORT_MIN: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_SRCPORT_MIN; -+pub const IFLA_BAREUDP_MULTIPROTO_MODE: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_MULTIPROTO_MODE; -+pub const __IFLA_BAREUDP_MAX: _bindgen_ty_23 = _bindgen_ty_23::__IFLA_BAREUDP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_23 { -+IFLA_BAREUDP_UNSPEC = 0, -+IFLA_BAREUDP_PORT = 1, -+IFLA_BAREUDP_ETHERTYPE = 2, -+IFLA_BAREUDP_SRCPORT_MIN = 3, -+IFLA_BAREUDP_MULTIPROTO_MODE = 4, -+__IFLA_BAREUDP_MAX = 5, -+} -+pub const IFLA_PPP_UNSPEC: _bindgen_ty_24 = _bindgen_ty_24::IFLA_PPP_UNSPEC; -+pub const IFLA_PPP_DEV_FD: _bindgen_ty_24 = _bindgen_ty_24::IFLA_PPP_DEV_FD; -+pub const __IFLA_PPP_MAX: _bindgen_ty_24 = _bindgen_ty_24::__IFLA_PPP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_24 { -+IFLA_PPP_UNSPEC = 0, -+IFLA_PPP_DEV_FD = 1, -+__IFLA_PPP_MAX = 2, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ifla_gtp_role { -+GTP_ROLE_GGSN = 0, -+GTP_ROLE_SGSN = 1, -+} -+pub const IFLA_GTP_UNSPEC: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_UNSPEC; -+pub const IFLA_GTP_FD0: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_FD0; -+pub const IFLA_GTP_FD1: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_FD1; -+pub const IFLA_GTP_PDP_HASHSIZE: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_PDP_HASHSIZE; -+pub const IFLA_GTP_ROLE: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_ROLE; -+pub const IFLA_GTP_CREATE_SOCKETS: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_CREATE_SOCKETS; -+pub const IFLA_GTP_RESTART_COUNT: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_RESTART_COUNT; -+pub const __IFLA_GTP_MAX: _bindgen_ty_25 = _bindgen_ty_25::__IFLA_GTP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_25 { -+IFLA_GTP_UNSPEC = 0, -+IFLA_GTP_FD0 = 1, -+IFLA_GTP_FD1 = 2, -+IFLA_GTP_PDP_HASHSIZE = 3, -+IFLA_GTP_ROLE = 4, -+IFLA_GTP_CREATE_SOCKETS = 5, -+IFLA_GTP_RESTART_COUNT = 6, -+__IFLA_GTP_MAX = 7, -+} -+pub const IFLA_BOND_UNSPEC: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_UNSPEC; -+pub const IFLA_BOND_MODE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MODE; -+pub const IFLA_BOND_ACTIVE_SLAVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ACTIVE_SLAVE; -+pub const IFLA_BOND_MIIMON: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MIIMON; -+pub const IFLA_BOND_UPDELAY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_UPDELAY; -+pub const IFLA_BOND_DOWNDELAY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_DOWNDELAY; -+pub const IFLA_BOND_USE_CARRIER: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_USE_CARRIER; -+pub const IFLA_BOND_ARP_INTERVAL: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_INTERVAL; -+pub const IFLA_BOND_ARP_IP_TARGET: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_IP_TARGET; -+pub const IFLA_BOND_ARP_VALIDATE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_VALIDATE; -+pub const IFLA_BOND_ARP_ALL_TARGETS: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_ALL_TARGETS; -+pub const IFLA_BOND_PRIMARY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PRIMARY; -+pub const IFLA_BOND_PRIMARY_RESELECT: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PRIMARY_RESELECT; -+pub const IFLA_BOND_FAIL_OVER_MAC: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_FAIL_OVER_MAC; -+pub const IFLA_BOND_XMIT_HASH_POLICY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_XMIT_HASH_POLICY; -+pub const IFLA_BOND_RESEND_IGMP: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_RESEND_IGMP; -+pub const IFLA_BOND_NUM_PEER_NOTIF: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_NUM_PEER_NOTIF; -+pub const IFLA_BOND_ALL_SLAVES_ACTIVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ALL_SLAVES_ACTIVE; -+pub const IFLA_BOND_MIN_LINKS: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MIN_LINKS; -+pub const IFLA_BOND_LP_INTERVAL: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_LP_INTERVAL; -+pub const IFLA_BOND_PACKETS_PER_SLAVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PACKETS_PER_SLAVE; -+pub const IFLA_BOND_AD_LACP_RATE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_LACP_RATE; -+pub const IFLA_BOND_AD_SELECT: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_SELECT; -+pub const IFLA_BOND_AD_INFO: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_INFO; -+pub const IFLA_BOND_AD_ACTOR_SYS_PRIO: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_ACTOR_SYS_PRIO; -+pub const IFLA_BOND_AD_USER_PORT_KEY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_USER_PORT_KEY; -+pub const IFLA_BOND_AD_ACTOR_SYSTEM: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_ACTOR_SYSTEM; -+pub const IFLA_BOND_TLB_DYNAMIC_LB: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_TLB_DYNAMIC_LB; -+pub const IFLA_BOND_PEER_NOTIF_DELAY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PEER_NOTIF_DELAY; -+pub const IFLA_BOND_AD_LACP_ACTIVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_LACP_ACTIVE; -+pub const IFLA_BOND_MISSED_MAX: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MISSED_MAX; -+pub const IFLA_BOND_NS_IP6_TARGET: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_NS_IP6_TARGET; -+pub const __IFLA_BOND_MAX: _bindgen_ty_26 = _bindgen_ty_26::__IFLA_BOND_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_26 { -+IFLA_BOND_UNSPEC = 0, -+IFLA_BOND_MODE = 1, -+IFLA_BOND_ACTIVE_SLAVE = 2, -+IFLA_BOND_MIIMON = 3, -+IFLA_BOND_UPDELAY = 4, -+IFLA_BOND_DOWNDELAY = 5, -+IFLA_BOND_USE_CARRIER = 6, -+IFLA_BOND_ARP_INTERVAL = 7, -+IFLA_BOND_ARP_IP_TARGET = 8, -+IFLA_BOND_ARP_VALIDATE = 9, -+IFLA_BOND_ARP_ALL_TARGETS = 10, -+IFLA_BOND_PRIMARY = 11, -+IFLA_BOND_PRIMARY_RESELECT = 12, -+IFLA_BOND_FAIL_OVER_MAC = 13, -+IFLA_BOND_XMIT_HASH_POLICY = 14, -+IFLA_BOND_RESEND_IGMP = 15, -+IFLA_BOND_NUM_PEER_NOTIF = 16, -+IFLA_BOND_ALL_SLAVES_ACTIVE = 17, -+IFLA_BOND_MIN_LINKS = 18, -+IFLA_BOND_LP_INTERVAL = 19, -+IFLA_BOND_PACKETS_PER_SLAVE = 20, -+IFLA_BOND_AD_LACP_RATE = 21, -+IFLA_BOND_AD_SELECT = 22, -+IFLA_BOND_AD_INFO = 23, -+IFLA_BOND_AD_ACTOR_SYS_PRIO = 24, -+IFLA_BOND_AD_USER_PORT_KEY = 25, -+IFLA_BOND_AD_ACTOR_SYSTEM = 26, -+IFLA_BOND_TLB_DYNAMIC_LB = 27, -+IFLA_BOND_PEER_NOTIF_DELAY = 28, -+IFLA_BOND_AD_LACP_ACTIVE = 29, -+IFLA_BOND_MISSED_MAX = 30, -+IFLA_BOND_NS_IP6_TARGET = 31, -+__IFLA_BOND_MAX = 32, -+} -+pub const IFLA_BOND_AD_INFO_UNSPEC: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_UNSPEC; -+pub const IFLA_BOND_AD_INFO_AGGREGATOR: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_AGGREGATOR; -+pub const IFLA_BOND_AD_INFO_NUM_PORTS: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_NUM_PORTS; -+pub const IFLA_BOND_AD_INFO_ACTOR_KEY: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_ACTOR_KEY; -+pub const IFLA_BOND_AD_INFO_PARTNER_KEY: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_PARTNER_KEY; -+pub const IFLA_BOND_AD_INFO_PARTNER_MAC: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_PARTNER_MAC; -+pub const __IFLA_BOND_AD_INFO_MAX: _bindgen_ty_27 = _bindgen_ty_27::__IFLA_BOND_AD_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_27 { -+IFLA_BOND_AD_INFO_UNSPEC = 0, -+IFLA_BOND_AD_INFO_AGGREGATOR = 1, -+IFLA_BOND_AD_INFO_NUM_PORTS = 2, -+IFLA_BOND_AD_INFO_ACTOR_KEY = 3, -+IFLA_BOND_AD_INFO_PARTNER_KEY = 4, -+IFLA_BOND_AD_INFO_PARTNER_MAC = 5, -+__IFLA_BOND_AD_INFO_MAX = 6, -+} -+pub const IFLA_BOND_SLAVE_UNSPEC: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_UNSPEC; -+pub const IFLA_BOND_SLAVE_STATE: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_STATE; -+pub const IFLA_BOND_SLAVE_MII_STATUS: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_MII_STATUS; -+pub const IFLA_BOND_SLAVE_LINK_FAILURE_COUNT: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_LINK_FAILURE_COUNT; -+pub const IFLA_BOND_SLAVE_PERM_HWADDR: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_PERM_HWADDR; -+pub const IFLA_BOND_SLAVE_QUEUE_ID: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_QUEUE_ID; -+pub const IFLA_BOND_SLAVE_AD_AGGREGATOR_ID: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_AD_AGGREGATOR_ID; -+pub const IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE; -+pub const IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE; -+pub const IFLA_BOND_SLAVE_PRIO: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_PRIO; -+pub const __IFLA_BOND_SLAVE_MAX: _bindgen_ty_28 = _bindgen_ty_28::__IFLA_BOND_SLAVE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_28 { -+IFLA_BOND_SLAVE_UNSPEC = 0, -+IFLA_BOND_SLAVE_STATE = 1, -+IFLA_BOND_SLAVE_MII_STATUS = 2, -+IFLA_BOND_SLAVE_LINK_FAILURE_COUNT = 3, -+IFLA_BOND_SLAVE_PERM_HWADDR = 4, -+IFLA_BOND_SLAVE_QUEUE_ID = 5, -+IFLA_BOND_SLAVE_AD_AGGREGATOR_ID = 6, -+IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE = 7, -+IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE = 8, -+IFLA_BOND_SLAVE_PRIO = 9, -+__IFLA_BOND_SLAVE_MAX = 10, -+} -+pub const IFLA_VF_INFO_UNSPEC: _bindgen_ty_29 = _bindgen_ty_29::IFLA_VF_INFO_UNSPEC; -+pub const IFLA_VF_INFO: _bindgen_ty_29 = _bindgen_ty_29::IFLA_VF_INFO; -+pub const __IFLA_VF_INFO_MAX: _bindgen_ty_29 = _bindgen_ty_29::__IFLA_VF_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_29 { -+IFLA_VF_INFO_UNSPEC = 0, -+IFLA_VF_INFO = 1, -+__IFLA_VF_INFO_MAX = 2, -+} -+pub const IFLA_VF_UNSPEC: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_UNSPEC; -+pub const IFLA_VF_MAC: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_MAC; -+pub const IFLA_VF_VLAN: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_VLAN; -+pub const IFLA_VF_TX_RATE: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_TX_RATE; -+pub const IFLA_VF_SPOOFCHK: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_SPOOFCHK; -+pub const IFLA_VF_LINK_STATE: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_LINK_STATE; -+pub const IFLA_VF_RATE: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_RATE; -+pub const IFLA_VF_RSS_QUERY_EN: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_RSS_QUERY_EN; -+pub const IFLA_VF_STATS: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_STATS; -+pub const IFLA_VF_TRUST: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_TRUST; -+pub const IFLA_VF_IB_NODE_GUID: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_IB_NODE_GUID; -+pub const IFLA_VF_IB_PORT_GUID: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_IB_PORT_GUID; -+pub const IFLA_VF_VLAN_LIST: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_VLAN_LIST; -+pub const IFLA_VF_BROADCAST: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_BROADCAST; -+pub const __IFLA_VF_MAX: _bindgen_ty_30 = _bindgen_ty_30::__IFLA_VF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_30 { -+IFLA_VF_UNSPEC = 0, -+IFLA_VF_MAC = 1, -+IFLA_VF_VLAN = 2, -+IFLA_VF_TX_RATE = 3, -+IFLA_VF_SPOOFCHK = 4, -+IFLA_VF_LINK_STATE = 5, -+IFLA_VF_RATE = 6, -+IFLA_VF_RSS_QUERY_EN = 7, -+IFLA_VF_STATS = 8, -+IFLA_VF_TRUST = 9, -+IFLA_VF_IB_NODE_GUID = 10, -+IFLA_VF_IB_PORT_GUID = 11, -+IFLA_VF_VLAN_LIST = 12, -+IFLA_VF_BROADCAST = 13, -+__IFLA_VF_MAX = 14, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_mac { -+pub vf: __u32, -+pub mac: [__u8; 32usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_broadcast { -+pub broadcast: [__u8; 32usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_vlan { -+pub vf: __u32, -+pub vlan: __u32, -+pub qos: __u32, -+} -+pub const IFLA_VF_VLAN_INFO_UNSPEC: _bindgen_ty_31 = _bindgen_ty_31::IFLA_VF_VLAN_INFO_UNSPEC; -+pub const IFLA_VF_VLAN_INFO: _bindgen_ty_31 = _bindgen_ty_31::IFLA_VF_VLAN_INFO; -+pub const __IFLA_VF_VLAN_INFO_MAX: _bindgen_ty_31 = _bindgen_ty_31::__IFLA_VF_VLAN_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_31 { -+IFLA_VF_VLAN_INFO_UNSPEC = 0, -+IFLA_VF_VLAN_INFO = 1, -+__IFLA_VF_VLAN_INFO_MAX = 2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_vlan_info { -+pub vf: __u32, -+pub vlan: __u32, -+pub qos: __u32, -+pub vlan_proto: __be16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_tx_rate { -+pub vf: __u32, -+pub rate: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_rate { -+pub vf: __u32, -+pub min_tx_rate: __u32, -+pub max_tx_rate: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_spoofchk { -+pub vf: __u32, -+pub setting: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_guid { -+pub vf: __u32, -+pub guid: __u64, -+} -+pub const IFLA_VF_LINK_STATE_AUTO: _bindgen_ty_32 = _bindgen_ty_32::IFLA_VF_LINK_STATE_AUTO; -+pub const IFLA_VF_LINK_STATE_ENABLE: _bindgen_ty_32 = _bindgen_ty_32::IFLA_VF_LINK_STATE_ENABLE; -+pub const IFLA_VF_LINK_STATE_DISABLE: _bindgen_ty_32 = _bindgen_ty_32::IFLA_VF_LINK_STATE_DISABLE; -+pub const __IFLA_VF_LINK_STATE_MAX: _bindgen_ty_32 = _bindgen_ty_32::__IFLA_VF_LINK_STATE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_32 { -+IFLA_VF_LINK_STATE_AUTO = 0, -+IFLA_VF_LINK_STATE_ENABLE = 1, -+IFLA_VF_LINK_STATE_DISABLE = 2, -+__IFLA_VF_LINK_STATE_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_link_state { -+pub vf: __u32, -+pub link_state: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_rss_query_en { -+pub vf: __u32, -+pub setting: __u32, -+} -+pub const IFLA_VF_STATS_RX_PACKETS: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_RX_PACKETS; -+pub const IFLA_VF_STATS_TX_PACKETS: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_TX_PACKETS; -+pub const IFLA_VF_STATS_RX_BYTES: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_RX_BYTES; -+pub const IFLA_VF_STATS_TX_BYTES: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_TX_BYTES; -+pub const IFLA_VF_STATS_BROADCAST: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_BROADCAST; -+pub const IFLA_VF_STATS_MULTICAST: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_MULTICAST; -+pub const IFLA_VF_STATS_PAD: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_PAD; -+pub const IFLA_VF_STATS_RX_DROPPED: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_RX_DROPPED; -+pub const IFLA_VF_STATS_TX_DROPPED: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_TX_DROPPED; -+pub const __IFLA_VF_STATS_MAX: _bindgen_ty_33 = _bindgen_ty_33::__IFLA_VF_STATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_33 { -+IFLA_VF_STATS_RX_PACKETS = 0, -+IFLA_VF_STATS_TX_PACKETS = 1, -+IFLA_VF_STATS_RX_BYTES = 2, -+IFLA_VF_STATS_TX_BYTES = 3, -+IFLA_VF_STATS_BROADCAST = 4, -+IFLA_VF_STATS_MULTICAST = 5, -+IFLA_VF_STATS_PAD = 6, -+IFLA_VF_STATS_RX_DROPPED = 7, -+IFLA_VF_STATS_TX_DROPPED = 8, -+__IFLA_VF_STATS_MAX = 9, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_trust { -+pub vf: __u32, -+pub setting: __u32, -+} -+pub const IFLA_VF_PORT_UNSPEC: _bindgen_ty_34 = _bindgen_ty_34::IFLA_VF_PORT_UNSPEC; -+pub const IFLA_VF_PORT: _bindgen_ty_34 = _bindgen_ty_34::IFLA_VF_PORT; -+pub const __IFLA_VF_PORT_MAX: _bindgen_ty_34 = _bindgen_ty_34::__IFLA_VF_PORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_34 { -+IFLA_VF_PORT_UNSPEC = 0, -+IFLA_VF_PORT = 1, -+__IFLA_VF_PORT_MAX = 2, -+} -+pub const IFLA_PORT_UNSPEC: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_UNSPEC; -+pub const IFLA_PORT_VF: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_VF; -+pub const IFLA_PORT_PROFILE: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_PROFILE; -+pub const IFLA_PORT_VSI_TYPE: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_VSI_TYPE; -+pub const IFLA_PORT_INSTANCE_UUID: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_INSTANCE_UUID; -+pub const IFLA_PORT_HOST_UUID: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_HOST_UUID; -+pub const IFLA_PORT_REQUEST: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_REQUEST; -+pub const IFLA_PORT_RESPONSE: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_RESPONSE; -+pub const __IFLA_PORT_MAX: _bindgen_ty_35 = _bindgen_ty_35::__IFLA_PORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_35 { -+IFLA_PORT_UNSPEC = 0, -+IFLA_PORT_VF = 1, -+IFLA_PORT_PROFILE = 2, -+IFLA_PORT_VSI_TYPE = 3, -+IFLA_PORT_INSTANCE_UUID = 4, -+IFLA_PORT_HOST_UUID = 5, -+IFLA_PORT_REQUEST = 6, -+IFLA_PORT_RESPONSE = 7, -+__IFLA_PORT_MAX = 8, -+} -+pub const PORT_REQUEST_PREASSOCIATE: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_PREASSOCIATE; -+pub const PORT_REQUEST_PREASSOCIATE_RR: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_PREASSOCIATE_RR; -+pub const PORT_REQUEST_ASSOCIATE: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_ASSOCIATE; -+pub const PORT_REQUEST_DISASSOCIATE: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_DISASSOCIATE; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_36 { -+PORT_REQUEST_PREASSOCIATE = 0, -+PORT_REQUEST_PREASSOCIATE_RR = 1, -+PORT_REQUEST_ASSOCIATE = 2, -+PORT_REQUEST_DISASSOCIATE = 3, -+} -+pub const PORT_VDP_RESPONSE_SUCCESS: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_SUCCESS; -+pub const PORT_VDP_RESPONSE_INVALID_FORMAT: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_INVALID_FORMAT; -+pub const PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES; -+pub const PORT_VDP_RESPONSE_UNUSED_VTID: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_UNUSED_VTID; -+pub const PORT_VDP_RESPONSE_VTID_VIOLATION: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_VTID_VIOLATION; -+pub const PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION; -+pub const PORT_VDP_RESPONSE_OUT_OF_SYNC: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_OUT_OF_SYNC; -+pub const PORT_PROFILE_RESPONSE_SUCCESS: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_SUCCESS; -+pub const PORT_PROFILE_RESPONSE_INPROGRESS: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_INPROGRESS; -+pub const PORT_PROFILE_RESPONSE_INVALID: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_INVALID; -+pub const PORT_PROFILE_RESPONSE_BADSTATE: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_BADSTATE; -+pub const PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES; -+pub const PORT_PROFILE_RESPONSE_ERROR: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_ERROR; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_37 { -+PORT_VDP_RESPONSE_SUCCESS = 0, -+PORT_VDP_RESPONSE_INVALID_FORMAT = 1, -+PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES = 2, -+PORT_VDP_RESPONSE_UNUSED_VTID = 3, -+PORT_VDP_RESPONSE_VTID_VIOLATION = 4, -+PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION = 5, -+PORT_VDP_RESPONSE_OUT_OF_SYNC = 6, -+PORT_PROFILE_RESPONSE_SUCCESS = 256, -+PORT_PROFILE_RESPONSE_INPROGRESS = 257, -+PORT_PROFILE_RESPONSE_INVALID = 258, -+PORT_PROFILE_RESPONSE_BADSTATE = 259, -+PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES = 260, -+PORT_PROFILE_RESPONSE_ERROR = 261, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_port_vsi { -+pub vsi_mgr_id: __u8, -+pub vsi_type_id: [__u8; 3usize], -+pub vsi_type_version: __u8, -+pub pad: [__u8; 3usize], -+} -+pub const IFLA_IPOIB_UNSPEC: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_UNSPEC; -+pub const IFLA_IPOIB_PKEY: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_PKEY; -+pub const IFLA_IPOIB_MODE: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_MODE; -+pub const IFLA_IPOIB_UMCAST: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_UMCAST; -+pub const __IFLA_IPOIB_MAX: _bindgen_ty_38 = _bindgen_ty_38::__IFLA_IPOIB_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_38 { -+IFLA_IPOIB_UNSPEC = 0, -+IFLA_IPOIB_PKEY = 1, -+IFLA_IPOIB_MODE = 2, -+IFLA_IPOIB_UMCAST = 3, -+__IFLA_IPOIB_MAX = 4, -+} -+pub const IPOIB_MODE_DATAGRAM: _bindgen_ty_39 = _bindgen_ty_39::IPOIB_MODE_DATAGRAM; -+pub const IPOIB_MODE_CONNECTED: _bindgen_ty_39 = _bindgen_ty_39::IPOIB_MODE_CONNECTED; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_39 { -+IPOIB_MODE_DATAGRAM = 0, -+IPOIB_MODE_CONNECTED = 1, -+} -+pub const HSR_PROTOCOL_HSR: _bindgen_ty_40 = _bindgen_ty_40::HSR_PROTOCOL_HSR; -+pub const HSR_PROTOCOL_PRP: _bindgen_ty_40 = _bindgen_ty_40::HSR_PROTOCOL_PRP; -+pub const HSR_PROTOCOL_MAX: _bindgen_ty_40 = _bindgen_ty_40::HSR_PROTOCOL_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_40 { -+HSR_PROTOCOL_HSR = 0, -+HSR_PROTOCOL_PRP = 1, -+HSR_PROTOCOL_MAX = 2, -+} -+pub const IFLA_HSR_UNSPEC: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_UNSPEC; -+pub const IFLA_HSR_SLAVE1: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SLAVE1; -+pub const IFLA_HSR_SLAVE2: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SLAVE2; -+pub const IFLA_HSR_MULTICAST_SPEC: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_MULTICAST_SPEC; -+pub const IFLA_HSR_SUPERVISION_ADDR: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SUPERVISION_ADDR; -+pub const IFLA_HSR_SEQ_NR: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SEQ_NR; -+pub const IFLA_HSR_VERSION: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_VERSION; -+pub const IFLA_HSR_PROTOCOL: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_PROTOCOL; -+pub const __IFLA_HSR_MAX: _bindgen_ty_41 = _bindgen_ty_41::__IFLA_HSR_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_41 { -+IFLA_HSR_UNSPEC = 0, -+IFLA_HSR_SLAVE1 = 1, -+IFLA_HSR_SLAVE2 = 2, -+IFLA_HSR_MULTICAST_SPEC = 3, -+IFLA_HSR_SUPERVISION_ADDR = 4, -+IFLA_HSR_SEQ_NR = 5, -+IFLA_HSR_VERSION = 6, -+IFLA_HSR_PROTOCOL = 7, -+__IFLA_HSR_MAX = 8, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct if_stats_msg { -+pub family: __u8, -+pub pad1: __u8, -+pub pad2: __u16, -+pub ifindex: __u32, -+pub filter_mask: __u32, -+} -+pub const IFLA_STATS_UNSPEC: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_UNSPEC; -+pub const IFLA_STATS_LINK_64: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_64; -+pub const IFLA_STATS_LINK_XSTATS: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_XSTATS; -+pub const IFLA_STATS_LINK_XSTATS_SLAVE: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_XSTATS_SLAVE; -+pub const IFLA_STATS_LINK_OFFLOAD_XSTATS: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_OFFLOAD_XSTATS; -+pub const IFLA_STATS_AF_SPEC: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_AF_SPEC; -+pub const __IFLA_STATS_MAX: _bindgen_ty_42 = _bindgen_ty_42::__IFLA_STATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_42 { -+IFLA_STATS_UNSPEC = 0, -+IFLA_STATS_LINK_64 = 1, -+IFLA_STATS_LINK_XSTATS = 2, -+IFLA_STATS_LINK_XSTATS_SLAVE = 3, -+IFLA_STATS_LINK_OFFLOAD_XSTATS = 4, -+IFLA_STATS_AF_SPEC = 5, -+__IFLA_STATS_MAX = 6, -+} -+pub const IFLA_STATS_GETSET_UNSPEC: _bindgen_ty_43 = _bindgen_ty_43::IFLA_STATS_GETSET_UNSPEC; -+pub const IFLA_STATS_GET_FILTERS: _bindgen_ty_43 = _bindgen_ty_43::IFLA_STATS_GET_FILTERS; -+pub const IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS: _bindgen_ty_43 = _bindgen_ty_43::IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS; -+pub const __IFLA_STATS_GETSET_MAX: _bindgen_ty_43 = _bindgen_ty_43::__IFLA_STATS_GETSET_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_43 { -+IFLA_STATS_GETSET_UNSPEC = 0, -+IFLA_STATS_GET_FILTERS = 1, -+IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS = 2, -+__IFLA_STATS_GETSET_MAX = 3, -+} -+pub const LINK_XSTATS_TYPE_UNSPEC: _bindgen_ty_44 = _bindgen_ty_44::LINK_XSTATS_TYPE_UNSPEC; -+pub const LINK_XSTATS_TYPE_BRIDGE: _bindgen_ty_44 = _bindgen_ty_44::LINK_XSTATS_TYPE_BRIDGE; -+pub const LINK_XSTATS_TYPE_BOND: _bindgen_ty_44 = _bindgen_ty_44::LINK_XSTATS_TYPE_BOND; -+pub const __LINK_XSTATS_TYPE_MAX: _bindgen_ty_44 = _bindgen_ty_44::__LINK_XSTATS_TYPE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_44 { -+LINK_XSTATS_TYPE_UNSPEC = 0, -+LINK_XSTATS_TYPE_BRIDGE = 1, -+LINK_XSTATS_TYPE_BOND = 2, -+__LINK_XSTATS_TYPE_MAX = 3, -+} -+pub const IFLA_OFFLOAD_XSTATS_UNSPEC: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_UNSPEC; -+pub const IFLA_OFFLOAD_XSTATS_CPU_HIT: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_CPU_HIT; -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_HW_S_INFO; -+pub const IFLA_OFFLOAD_XSTATS_L3_STATS: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_L3_STATS; -+pub const __IFLA_OFFLOAD_XSTATS_MAX: _bindgen_ty_45 = _bindgen_ty_45::__IFLA_OFFLOAD_XSTATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_45 { -+IFLA_OFFLOAD_XSTATS_UNSPEC = 0, -+IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, -+IFLA_OFFLOAD_XSTATS_HW_S_INFO = 2, -+IFLA_OFFLOAD_XSTATS_L3_STATS = 3, -+__IFLA_OFFLOAD_XSTATS_MAX = 4, -+} -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC: _bindgen_ty_46 = _bindgen_ty_46::IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC; -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST: _bindgen_ty_46 = _bindgen_ty_46::IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST; -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED: _bindgen_ty_46 = _bindgen_ty_46::IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED; -+pub const __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX: _bindgen_ty_46 = _bindgen_ty_46::__IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_46 { -+IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC = 0, -+IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST = 1, -+IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED = 2, -+__IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX = 3, -+} -+pub const XDP_ATTACHED_NONE: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_NONE; -+pub const XDP_ATTACHED_DRV: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_DRV; -+pub const XDP_ATTACHED_SKB: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_SKB; -+pub const XDP_ATTACHED_HW: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_HW; -+pub const XDP_ATTACHED_MULTI: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_MULTI; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_47 { -+XDP_ATTACHED_NONE = 0, -+XDP_ATTACHED_DRV = 1, -+XDP_ATTACHED_SKB = 2, -+XDP_ATTACHED_HW = 3, -+XDP_ATTACHED_MULTI = 4, -+} -+pub const IFLA_XDP_UNSPEC: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_UNSPEC; -+pub const IFLA_XDP_FD: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_FD; -+pub const IFLA_XDP_ATTACHED: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_ATTACHED; -+pub const IFLA_XDP_FLAGS: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_FLAGS; -+pub const IFLA_XDP_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_PROG_ID; -+pub const IFLA_XDP_DRV_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_DRV_PROG_ID; -+pub const IFLA_XDP_SKB_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_SKB_PROG_ID; -+pub const IFLA_XDP_HW_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_HW_PROG_ID; -+pub const IFLA_XDP_EXPECTED_FD: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_EXPECTED_FD; -+pub const __IFLA_XDP_MAX: _bindgen_ty_48 = _bindgen_ty_48::__IFLA_XDP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_48 { -+IFLA_XDP_UNSPEC = 0, -+IFLA_XDP_FD = 1, -+IFLA_XDP_ATTACHED = 2, -+IFLA_XDP_FLAGS = 3, -+IFLA_XDP_PROG_ID = 4, -+IFLA_XDP_DRV_PROG_ID = 5, -+IFLA_XDP_SKB_PROG_ID = 6, -+IFLA_XDP_HW_PROG_ID = 7, -+IFLA_XDP_EXPECTED_FD = 8, -+__IFLA_XDP_MAX = 9, -+} -+pub const IFLA_EVENT_NONE: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_NONE; -+pub const IFLA_EVENT_REBOOT: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_REBOOT; -+pub const IFLA_EVENT_FEATURES: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_FEATURES; -+pub const IFLA_EVENT_BONDING_FAILOVER: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_BONDING_FAILOVER; -+pub const IFLA_EVENT_NOTIFY_PEERS: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_NOTIFY_PEERS; -+pub const IFLA_EVENT_IGMP_RESEND: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_IGMP_RESEND; -+pub const IFLA_EVENT_BONDING_OPTIONS: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_BONDING_OPTIONS; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_49 { -+IFLA_EVENT_NONE = 0, -+IFLA_EVENT_REBOOT = 1, -+IFLA_EVENT_FEATURES = 2, -+IFLA_EVENT_BONDING_FAILOVER = 3, -+IFLA_EVENT_NOTIFY_PEERS = 4, -+IFLA_EVENT_IGMP_RESEND = 5, -+IFLA_EVENT_BONDING_OPTIONS = 6, -+} -+pub const IFLA_TUN_UNSPEC: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_UNSPEC; -+pub const IFLA_TUN_OWNER: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_OWNER; -+pub const IFLA_TUN_GROUP: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_GROUP; -+pub const IFLA_TUN_TYPE: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_TYPE; -+pub const IFLA_TUN_PI: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_PI; -+pub const IFLA_TUN_VNET_HDR: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_VNET_HDR; -+pub const IFLA_TUN_PERSIST: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_PERSIST; -+pub const IFLA_TUN_MULTI_QUEUE: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_MULTI_QUEUE; -+pub const IFLA_TUN_NUM_QUEUES: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_NUM_QUEUES; -+pub const IFLA_TUN_NUM_DISABLED_QUEUES: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_NUM_DISABLED_QUEUES; -+pub const __IFLA_TUN_MAX: _bindgen_ty_50 = _bindgen_ty_50::__IFLA_TUN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_50 { -+IFLA_TUN_UNSPEC = 0, -+IFLA_TUN_OWNER = 1, -+IFLA_TUN_GROUP = 2, -+IFLA_TUN_TYPE = 3, -+IFLA_TUN_PI = 4, -+IFLA_TUN_VNET_HDR = 5, -+IFLA_TUN_PERSIST = 6, -+IFLA_TUN_MULTI_QUEUE = 7, -+IFLA_TUN_NUM_QUEUES = 8, -+IFLA_TUN_NUM_DISABLED_QUEUES = 9, -+__IFLA_TUN_MAX = 10, -+} -+pub const IFLA_RMNET_UNSPEC: _bindgen_ty_51 = _bindgen_ty_51::IFLA_RMNET_UNSPEC; -+pub const IFLA_RMNET_MUX_ID: _bindgen_ty_51 = _bindgen_ty_51::IFLA_RMNET_MUX_ID; -+pub const IFLA_RMNET_FLAGS: _bindgen_ty_51 = _bindgen_ty_51::IFLA_RMNET_FLAGS; -+pub const __IFLA_RMNET_MAX: _bindgen_ty_51 = _bindgen_ty_51::__IFLA_RMNET_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_51 { -+IFLA_RMNET_UNSPEC = 0, -+IFLA_RMNET_MUX_ID = 1, -+IFLA_RMNET_FLAGS = 2, -+__IFLA_RMNET_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_rmnet_flags { -+pub flags: __u32, -+pub mask: __u32, -+} -+pub const IFLA_MCTP_UNSPEC: _bindgen_ty_52 = _bindgen_ty_52::IFLA_MCTP_UNSPEC; -+pub const IFLA_MCTP_NET: _bindgen_ty_52 = _bindgen_ty_52::IFLA_MCTP_NET; -+pub const __IFLA_MCTP_MAX: _bindgen_ty_52 = _bindgen_ty_52::__IFLA_MCTP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_52 { -+IFLA_MCTP_UNSPEC = 0, -+IFLA_MCTP_NET = 1, -+__IFLA_MCTP_MAX = 2, -+} -+pub const IFLA_DSA_UNSPEC: _bindgen_ty_53 = _bindgen_ty_53::IFLA_DSA_UNSPEC; -+pub const IFLA_DSA_MASTER: _bindgen_ty_53 = _bindgen_ty_53::IFLA_DSA_MASTER; -+pub const __IFLA_DSA_MAX: _bindgen_ty_53 = _bindgen_ty_53::__IFLA_DSA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_53 { -+IFLA_DSA_UNSPEC = 0, -+IFLA_DSA_MASTER = 1, -+__IFLA_DSA_MAX = 2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifaddrmsg { -+pub ifa_family: __u8, -+pub ifa_prefixlen: __u8, -+pub ifa_flags: __u8, -+pub ifa_scope: __u8, -+pub ifa_index: __u32, -+} -+pub const IFA_UNSPEC: _bindgen_ty_54 = _bindgen_ty_54::IFA_UNSPEC; -+pub const IFA_ADDRESS: _bindgen_ty_54 = _bindgen_ty_54::IFA_ADDRESS; -+pub const IFA_LOCAL: _bindgen_ty_54 = _bindgen_ty_54::IFA_LOCAL; -+pub const IFA_LABEL: _bindgen_ty_54 = _bindgen_ty_54::IFA_LABEL; -+pub const IFA_BROADCAST: _bindgen_ty_54 = _bindgen_ty_54::IFA_BROADCAST; -+pub const IFA_ANYCAST: _bindgen_ty_54 = _bindgen_ty_54::IFA_ANYCAST; -+pub const IFA_CACHEINFO: _bindgen_ty_54 = _bindgen_ty_54::IFA_CACHEINFO; -+pub const IFA_MULTICAST: _bindgen_ty_54 = _bindgen_ty_54::IFA_MULTICAST; -+pub const IFA_FLAGS: _bindgen_ty_54 = _bindgen_ty_54::IFA_FLAGS; -+pub const IFA_RT_PRIORITY: _bindgen_ty_54 = _bindgen_ty_54::IFA_RT_PRIORITY; -+pub const IFA_TARGET_NETNSID: _bindgen_ty_54 = _bindgen_ty_54::IFA_TARGET_NETNSID; -+pub const IFA_PROTO: _bindgen_ty_54 = _bindgen_ty_54::IFA_PROTO; -+pub const __IFA_MAX: _bindgen_ty_54 = _bindgen_ty_54::__IFA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_54 { -+IFA_UNSPEC = 0, -+IFA_ADDRESS = 1, -+IFA_LOCAL = 2, -+IFA_LABEL = 3, -+IFA_BROADCAST = 4, -+IFA_ANYCAST = 5, -+IFA_CACHEINFO = 6, -+IFA_MULTICAST = 7, -+IFA_FLAGS = 8, -+IFA_RT_PRIORITY = 9, -+IFA_TARGET_NETNSID = 10, -+IFA_PROTO = 11, -+__IFA_MAX = 12, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifa_cacheinfo { -+pub ifa_prefered: __u32, -+pub ifa_valid: __u32, -+pub cstamp: __u32, -+pub tstamp: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndmsg { -+pub ndm_family: __u8, -+pub ndm_pad1: __u8, -+pub ndm_pad2: __u16, -+pub ndm_ifindex: __s32, -+pub ndm_state: __u16, -+pub ndm_flags: __u8, -+pub ndm_type: __u8, -+} -+pub const NDA_UNSPEC: _bindgen_ty_55 = _bindgen_ty_55::NDA_UNSPEC; -+pub const NDA_DST: _bindgen_ty_55 = _bindgen_ty_55::NDA_DST; -+pub const NDA_LLADDR: _bindgen_ty_55 = _bindgen_ty_55::NDA_LLADDR; -+pub const NDA_CACHEINFO: _bindgen_ty_55 = _bindgen_ty_55::NDA_CACHEINFO; -+pub const NDA_PROBES: _bindgen_ty_55 = _bindgen_ty_55::NDA_PROBES; -+pub const NDA_VLAN: _bindgen_ty_55 = _bindgen_ty_55::NDA_VLAN; -+pub const NDA_PORT: _bindgen_ty_55 = _bindgen_ty_55::NDA_PORT; -+pub const NDA_VNI: _bindgen_ty_55 = _bindgen_ty_55::NDA_VNI; -+pub const NDA_IFINDEX: _bindgen_ty_55 = _bindgen_ty_55::NDA_IFINDEX; -+pub const NDA_MASTER: _bindgen_ty_55 = _bindgen_ty_55::NDA_MASTER; -+pub const NDA_LINK_NETNSID: _bindgen_ty_55 = _bindgen_ty_55::NDA_LINK_NETNSID; -+pub const NDA_SRC_VNI: _bindgen_ty_55 = _bindgen_ty_55::NDA_SRC_VNI; -+pub const NDA_PROTOCOL: _bindgen_ty_55 = _bindgen_ty_55::NDA_PROTOCOL; -+pub const NDA_NH_ID: _bindgen_ty_55 = _bindgen_ty_55::NDA_NH_ID; -+pub const NDA_FDB_EXT_ATTRS: _bindgen_ty_55 = _bindgen_ty_55::NDA_FDB_EXT_ATTRS; -+pub const NDA_FLAGS_EXT: _bindgen_ty_55 = _bindgen_ty_55::NDA_FLAGS_EXT; -+pub const NDA_NDM_STATE_MASK: _bindgen_ty_55 = _bindgen_ty_55::NDA_NDM_STATE_MASK; -+pub const NDA_NDM_FLAGS_MASK: _bindgen_ty_55 = _bindgen_ty_55::NDA_NDM_FLAGS_MASK; -+pub const __NDA_MAX: _bindgen_ty_55 = _bindgen_ty_55::__NDA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_55 { -+NDA_UNSPEC = 0, -+NDA_DST = 1, -+NDA_LLADDR = 2, -+NDA_CACHEINFO = 3, -+NDA_PROBES = 4, -+NDA_VLAN = 5, -+NDA_PORT = 6, -+NDA_VNI = 7, -+NDA_IFINDEX = 8, -+NDA_MASTER = 9, -+NDA_LINK_NETNSID = 10, -+NDA_SRC_VNI = 11, -+NDA_PROTOCOL = 12, -+NDA_NH_ID = 13, -+NDA_FDB_EXT_ATTRS = 14, -+NDA_FLAGS_EXT = 15, -+NDA_NDM_STATE_MASK = 16, -+NDA_NDM_FLAGS_MASK = 17, -+__NDA_MAX = 18, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nda_cacheinfo { -+pub ndm_confirmed: __u32, -+pub ndm_used: __u32, -+pub ndm_updated: __u32, -+pub ndm_refcnt: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndt_stats { -+pub ndts_allocs: __u64, -+pub ndts_destroys: __u64, -+pub ndts_hash_grows: __u64, -+pub ndts_res_failed: __u64, -+pub ndts_lookups: __u64, -+pub ndts_hits: __u64, -+pub ndts_rcv_probes_mcast: __u64, -+pub ndts_rcv_probes_ucast: __u64, -+pub ndts_periodic_gc_runs: __u64, -+pub ndts_forced_gc_runs: __u64, -+pub ndts_table_fulls: __u64, -+} -+pub const NDTPA_UNSPEC: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_UNSPEC; -+pub const NDTPA_IFINDEX: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_IFINDEX; -+pub const NDTPA_REFCNT: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_REFCNT; -+pub const NDTPA_REACHABLE_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_REACHABLE_TIME; -+pub const NDTPA_BASE_REACHABLE_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_BASE_REACHABLE_TIME; -+pub const NDTPA_RETRANS_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_RETRANS_TIME; -+pub const NDTPA_GC_STALETIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_GC_STALETIME; -+pub const NDTPA_DELAY_PROBE_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_DELAY_PROBE_TIME; -+pub const NDTPA_QUEUE_LEN: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_QUEUE_LEN; -+pub const NDTPA_APP_PROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_APP_PROBES; -+pub const NDTPA_UCAST_PROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_UCAST_PROBES; -+pub const NDTPA_MCAST_PROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_MCAST_PROBES; -+pub const NDTPA_ANYCAST_DELAY: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_ANYCAST_DELAY; -+pub const NDTPA_PROXY_DELAY: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_PROXY_DELAY; -+pub const NDTPA_PROXY_QLEN: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_PROXY_QLEN; -+pub const NDTPA_LOCKTIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_LOCKTIME; -+pub const NDTPA_QUEUE_LENBYTES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_QUEUE_LENBYTES; -+pub const NDTPA_MCAST_REPROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_MCAST_REPROBES; -+pub const NDTPA_PAD: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_PAD; -+pub const NDTPA_INTERVAL_PROBE_TIME_MS: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_INTERVAL_PROBE_TIME_MS; -+pub const __NDTPA_MAX: _bindgen_ty_56 = _bindgen_ty_56::__NDTPA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_56 { -+NDTPA_UNSPEC = 0, -+NDTPA_IFINDEX = 1, -+NDTPA_REFCNT = 2, -+NDTPA_REACHABLE_TIME = 3, -+NDTPA_BASE_REACHABLE_TIME = 4, -+NDTPA_RETRANS_TIME = 5, -+NDTPA_GC_STALETIME = 6, -+NDTPA_DELAY_PROBE_TIME = 7, -+NDTPA_QUEUE_LEN = 8, -+NDTPA_APP_PROBES = 9, -+NDTPA_UCAST_PROBES = 10, -+NDTPA_MCAST_PROBES = 11, -+NDTPA_ANYCAST_DELAY = 12, -+NDTPA_PROXY_DELAY = 13, -+NDTPA_PROXY_QLEN = 14, -+NDTPA_LOCKTIME = 15, -+NDTPA_QUEUE_LENBYTES = 16, -+NDTPA_MCAST_REPROBES = 17, -+NDTPA_PAD = 18, -+NDTPA_INTERVAL_PROBE_TIME_MS = 19, -+__NDTPA_MAX = 20, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndtmsg { -+pub ndtm_family: __u8, -+pub ndtm_pad1: __u8, -+pub ndtm_pad2: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndt_config { -+pub ndtc_key_len: __u16, -+pub ndtc_entry_size: __u16, -+pub ndtc_entries: __u32, -+pub ndtc_last_flush: __u32, -+pub ndtc_last_rand: __u32, -+pub ndtc_hash_rnd: __u32, -+pub ndtc_hash_mask: __u32, -+pub ndtc_hash_chain_gc: __u32, -+pub ndtc_proxy_qlen: __u32, -+} -+pub const NDTA_UNSPEC: _bindgen_ty_57 = _bindgen_ty_57::NDTA_UNSPEC; -+pub const NDTA_NAME: _bindgen_ty_57 = _bindgen_ty_57::NDTA_NAME; -+pub const NDTA_THRESH1: _bindgen_ty_57 = _bindgen_ty_57::NDTA_THRESH1; -+pub const NDTA_THRESH2: _bindgen_ty_57 = _bindgen_ty_57::NDTA_THRESH2; -+pub const NDTA_THRESH3: _bindgen_ty_57 = _bindgen_ty_57::NDTA_THRESH3; -+pub const NDTA_CONFIG: _bindgen_ty_57 = _bindgen_ty_57::NDTA_CONFIG; -+pub const NDTA_PARMS: _bindgen_ty_57 = _bindgen_ty_57::NDTA_PARMS; -+pub const NDTA_STATS: _bindgen_ty_57 = _bindgen_ty_57::NDTA_STATS; -+pub const NDTA_GC_INTERVAL: _bindgen_ty_57 = _bindgen_ty_57::NDTA_GC_INTERVAL; -+pub const NDTA_PAD: _bindgen_ty_57 = _bindgen_ty_57::NDTA_PAD; -+pub const __NDTA_MAX: _bindgen_ty_57 = _bindgen_ty_57::__NDTA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_57 { -+NDTA_UNSPEC = 0, -+NDTA_NAME = 1, -+NDTA_THRESH1 = 2, -+NDTA_THRESH2 = 3, -+NDTA_THRESH3 = 4, -+NDTA_CONFIG = 5, -+NDTA_PARMS = 6, -+NDTA_STATS = 7, -+NDTA_GC_INTERVAL = 8, -+NDTA_PAD = 9, -+__NDTA_MAX = 10, -+} -+pub const FDB_NOTIFY_BIT: _bindgen_ty_58 = _bindgen_ty_58::FDB_NOTIFY_BIT; -+pub const FDB_NOTIFY_INACTIVE_BIT: _bindgen_ty_58 = _bindgen_ty_58::FDB_NOTIFY_INACTIVE_BIT; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_58 { -+FDB_NOTIFY_BIT = 1, -+FDB_NOTIFY_INACTIVE_BIT = 2, -+} -+pub const NFEA_UNSPEC: _bindgen_ty_59 = _bindgen_ty_59::NFEA_UNSPEC; -+pub const NFEA_ACTIVITY_NOTIFY: _bindgen_ty_59 = _bindgen_ty_59::NFEA_ACTIVITY_NOTIFY; -+pub const NFEA_DONT_REFRESH: _bindgen_ty_59 = _bindgen_ty_59::NFEA_DONT_REFRESH; -+pub const __NFEA_MAX: _bindgen_ty_59 = _bindgen_ty_59::__NFEA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_59 { -+NFEA_UNSPEC = 0, -+NFEA_ACTIVITY_NOTIFY = 1, -+NFEA_DONT_REFRESH = 2, -+__NFEA_MAX = 3, -+} -+pub const RTM_BASE: _bindgen_ty_60 = _bindgen_ty_60::RTM_BASE; -+pub const RTM_NEWLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_BASE; -+pub const RTM_DELLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELLINK; -+pub const RTM_GETLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETLINK; -+pub const RTM_SETLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETLINK; -+pub const RTM_NEWADDR: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWADDR; -+pub const RTM_DELADDR: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELADDR; -+pub const RTM_GETADDR: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETADDR; -+pub const RTM_NEWROUTE: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWROUTE; -+pub const RTM_DELROUTE: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELROUTE; -+pub const RTM_GETROUTE: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETROUTE; -+pub const RTM_NEWNEIGH: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEIGH; -+pub const RTM_DELNEIGH: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNEIGH; -+pub const RTM_GETNEIGH: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEIGH; -+pub const RTM_NEWRULE: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWRULE; -+pub const RTM_DELRULE: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELRULE; -+pub const RTM_GETRULE: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETRULE; -+pub const RTM_NEWQDISC: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWQDISC; -+pub const RTM_DELQDISC: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELQDISC; -+pub const RTM_GETQDISC: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETQDISC; -+pub const RTM_NEWTCLASS: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWTCLASS; -+pub const RTM_DELTCLASS: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELTCLASS; -+pub const RTM_GETTCLASS: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETTCLASS; -+pub const RTM_NEWTFILTER: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWTFILTER; -+pub const RTM_DELTFILTER: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELTFILTER; -+pub const RTM_GETTFILTER: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETTFILTER; -+pub const RTM_NEWACTION: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWACTION; -+pub const RTM_DELACTION: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELACTION; -+pub const RTM_GETACTION: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETACTION; -+pub const RTM_NEWPREFIX: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWPREFIX; -+pub const RTM_GETMULTICAST: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETMULTICAST; -+pub const RTM_GETANYCAST: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETANYCAST; -+pub const RTM_NEWNEIGHTBL: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEIGHTBL; -+pub const RTM_GETNEIGHTBL: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEIGHTBL; -+pub const RTM_SETNEIGHTBL: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETNEIGHTBL; -+pub const RTM_NEWNDUSEROPT: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNDUSEROPT; -+pub const RTM_NEWADDRLABEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWADDRLABEL; -+pub const RTM_DELADDRLABEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELADDRLABEL; -+pub const RTM_GETADDRLABEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETADDRLABEL; -+pub const RTM_GETDCB: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETDCB; -+pub const RTM_SETDCB: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETDCB; -+pub const RTM_NEWNETCONF: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNETCONF; -+pub const RTM_DELNETCONF: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNETCONF; -+pub const RTM_GETNETCONF: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNETCONF; -+pub const RTM_NEWMDB: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWMDB; -+pub const RTM_DELMDB: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELMDB; -+pub const RTM_GETMDB: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETMDB; -+pub const RTM_NEWNSID: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNSID; -+pub const RTM_DELNSID: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNSID; -+pub const RTM_GETNSID: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNSID; -+pub const RTM_NEWSTATS: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWSTATS; -+pub const RTM_GETSTATS: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETSTATS; -+pub const RTM_SETSTATS: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETSTATS; -+pub const RTM_NEWCACHEREPORT: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWCACHEREPORT; -+pub const RTM_NEWCHAIN: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWCHAIN; -+pub const RTM_DELCHAIN: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELCHAIN; -+pub const RTM_GETCHAIN: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETCHAIN; -+pub const RTM_NEWNEXTHOP: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEXTHOP; -+pub const RTM_DELNEXTHOP: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNEXTHOP; -+pub const RTM_GETNEXTHOP: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEXTHOP; -+pub const RTM_NEWLINKPROP: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWLINKPROP; -+pub const RTM_DELLINKPROP: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELLINKPROP; -+pub const RTM_GETLINKPROP: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETLINKPROP; -+pub const RTM_NEWVLAN: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWVLAN; -+pub const RTM_DELVLAN: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELVLAN; -+pub const RTM_GETVLAN: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETVLAN; -+pub const RTM_NEWNEXTHOPBUCKET: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEXTHOPBUCKET; -+pub const RTM_DELNEXTHOPBUCKET: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNEXTHOPBUCKET; -+pub const RTM_GETNEXTHOPBUCKET: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEXTHOPBUCKET; -+pub const RTM_NEWTUNNEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWTUNNEL; -+pub const RTM_DELTUNNEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELTUNNEL; -+pub const RTM_GETTUNNEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETTUNNEL; -+pub const __RTM_MAX: _bindgen_ty_60 = _bindgen_ty_60::__RTM_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_60 { -+RTM_BASE = 16, -+RTM_DELLINK = 17, -+RTM_GETLINK = 18, -+RTM_SETLINK = 19, -+RTM_NEWADDR = 20, -+RTM_DELADDR = 21, -+RTM_GETADDR = 22, -+RTM_NEWROUTE = 24, -+RTM_DELROUTE = 25, -+RTM_GETROUTE = 26, -+RTM_NEWNEIGH = 28, -+RTM_DELNEIGH = 29, -+RTM_GETNEIGH = 30, -+RTM_NEWRULE = 32, -+RTM_DELRULE = 33, -+RTM_GETRULE = 34, -+RTM_NEWQDISC = 36, -+RTM_DELQDISC = 37, -+RTM_GETQDISC = 38, -+RTM_NEWTCLASS = 40, -+RTM_DELTCLASS = 41, -+RTM_GETTCLASS = 42, -+RTM_NEWTFILTER = 44, -+RTM_DELTFILTER = 45, -+RTM_GETTFILTER = 46, -+RTM_NEWACTION = 48, -+RTM_DELACTION = 49, -+RTM_GETACTION = 50, -+RTM_NEWPREFIX = 52, -+RTM_GETMULTICAST = 58, -+RTM_GETANYCAST = 62, -+RTM_NEWNEIGHTBL = 64, -+RTM_GETNEIGHTBL = 66, -+RTM_SETNEIGHTBL = 67, -+RTM_NEWNDUSEROPT = 68, -+RTM_NEWADDRLABEL = 72, -+RTM_DELADDRLABEL = 73, -+RTM_GETADDRLABEL = 74, -+RTM_GETDCB = 78, -+RTM_SETDCB = 79, -+RTM_NEWNETCONF = 80, -+RTM_DELNETCONF = 81, -+RTM_GETNETCONF = 82, -+RTM_NEWMDB = 84, -+RTM_DELMDB = 85, -+RTM_GETMDB = 86, -+RTM_NEWNSID = 88, -+RTM_DELNSID = 89, -+RTM_GETNSID = 90, -+RTM_NEWSTATS = 92, -+RTM_GETSTATS = 94, -+RTM_SETSTATS = 95, -+RTM_NEWCACHEREPORT = 96, -+RTM_NEWCHAIN = 100, -+RTM_DELCHAIN = 101, -+RTM_GETCHAIN = 102, -+RTM_NEWNEXTHOP = 104, -+RTM_DELNEXTHOP = 105, -+RTM_GETNEXTHOP = 106, -+RTM_NEWLINKPROP = 108, -+RTM_DELLINKPROP = 109, -+RTM_GETLINKPROP = 110, -+RTM_NEWVLAN = 112, -+RTM_DELVLAN = 113, -+RTM_GETVLAN = 114, -+RTM_NEWNEXTHOPBUCKET = 116, -+RTM_DELNEXTHOPBUCKET = 117, -+RTM_GETNEXTHOPBUCKET = 118, -+RTM_NEWTUNNEL = 120, -+RTM_DELTUNNEL = 121, -+RTM_GETTUNNEL = 122, -+__RTM_MAX = 123, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtattr { -+pub rta_len: crate::ctypes::c_ushort, -+pub rta_type: crate::ctypes::c_ushort, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtmsg { -+pub rtm_family: crate::ctypes::c_uchar, -+pub rtm_dst_len: crate::ctypes::c_uchar, -+pub rtm_src_len: crate::ctypes::c_uchar, -+pub rtm_tos: crate::ctypes::c_uchar, -+pub rtm_table: crate::ctypes::c_uchar, -+pub rtm_protocol: crate::ctypes::c_uchar, -+pub rtm_scope: crate::ctypes::c_uchar, -+pub rtm_type: crate::ctypes::c_uchar, -+pub rtm_flags: crate::ctypes::c_uint, -+} -+pub const RTN_UNSPEC: _bindgen_ty_61 = _bindgen_ty_61::RTN_UNSPEC; -+pub const RTN_UNICAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_UNICAST; -+pub const RTN_LOCAL: _bindgen_ty_61 = _bindgen_ty_61::RTN_LOCAL; -+pub const RTN_BROADCAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_BROADCAST; -+pub const RTN_ANYCAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_ANYCAST; -+pub const RTN_MULTICAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_MULTICAST; -+pub const RTN_BLACKHOLE: _bindgen_ty_61 = _bindgen_ty_61::RTN_BLACKHOLE; -+pub const RTN_UNREACHABLE: _bindgen_ty_61 = _bindgen_ty_61::RTN_UNREACHABLE; -+pub const RTN_PROHIBIT: _bindgen_ty_61 = _bindgen_ty_61::RTN_PROHIBIT; -+pub const RTN_THROW: _bindgen_ty_61 = _bindgen_ty_61::RTN_THROW; -+pub const RTN_NAT: _bindgen_ty_61 = _bindgen_ty_61::RTN_NAT; -+pub const RTN_XRESOLVE: _bindgen_ty_61 = _bindgen_ty_61::RTN_XRESOLVE; -+pub const __RTN_MAX: _bindgen_ty_61 = _bindgen_ty_61::__RTN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_61 { -+RTN_UNSPEC = 0, -+RTN_UNICAST = 1, -+RTN_LOCAL = 2, -+RTN_BROADCAST = 3, -+RTN_ANYCAST = 4, -+RTN_MULTICAST = 5, -+RTN_BLACKHOLE = 6, -+RTN_UNREACHABLE = 7, -+RTN_PROHIBIT = 8, -+RTN_THROW = 9, -+RTN_NAT = 10, -+RTN_XRESOLVE = 11, -+__RTN_MAX = 12, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rt_scope_t { -+RT_SCOPE_UNIVERSE = 0, -+RT_SCOPE_SITE = 200, -+RT_SCOPE_LINK = 253, -+RT_SCOPE_HOST = 254, -+RT_SCOPE_NOWHERE = 255, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rt_class_t { -+RT_TABLE_UNSPEC = 0, -+RT_TABLE_COMPAT = 252, -+RT_TABLE_DEFAULT = 253, -+RT_TABLE_MAIN = 254, -+RT_TABLE_LOCAL = 255, -+RT_TABLE_MAX = 4294967295, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rtattr_type_t { -+RTA_UNSPEC = 0, -+RTA_DST = 1, -+RTA_SRC = 2, -+RTA_IIF = 3, -+RTA_OIF = 4, -+RTA_GATEWAY = 5, -+RTA_PRIORITY = 6, -+RTA_PREFSRC = 7, -+RTA_METRICS = 8, -+RTA_MULTIPATH = 9, -+RTA_PROTOINFO = 10, -+RTA_FLOW = 11, -+RTA_CACHEINFO = 12, -+RTA_SESSION = 13, -+RTA_MP_ALGO = 14, -+RTA_TABLE = 15, -+RTA_MARK = 16, -+RTA_MFC_STATS = 17, -+RTA_VIA = 18, -+RTA_NEWDST = 19, -+RTA_PREF = 20, -+RTA_ENCAP_TYPE = 21, -+RTA_ENCAP = 22, -+RTA_EXPIRES = 23, -+RTA_PAD = 24, -+RTA_UID = 25, -+RTA_TTL_PROPAGATE = 26, -+RTA_IP_PROTO = 27, -+RTA_SPORT = 28, -+RTA_DPORT = 29, -+RTA_NH_ID = 30, -+__RTA_MAX = 31, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnexthop { -+pub rtnh_len: crate::ctypes::c_ushort, -+pub rtnh_flags: crate::ctypes::c_uchar, -+pub rtnh_hops: crate::ctypes::c_uchar, -+pub rtnh_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct rtvia { -+pub rtvia_family: __kernel_sa_family_t, -+pub rtvia_addr: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_cacheinfo { -+pub rta_clntref: __u32, -+pub rta_lastuse: __u32, -+pub rta_expires: __s32, -+pub rta_error: __u32, -+pub rta_used: __u32, -+pub rta_id: __u32, -+pub rta_ts: __u32, -+pub rta_tsage: __u32, -+} -+pub const RTAX_UNSPEC: _bindgen_ty_62 = _bindgen_ty_62::RTAX_UNSPEC; -+pub const RTAX_LOCK: _bindgen_ty_62 = _bindgen_ty_62::RTAX_LOCK; -+pub const RTAX_MTU: _bindgen_ty_62 = _bindgen_ty_62::RTAX_MTU; -+pub const RTAX_WINDOW: _bindgen_ty_62 = _bindgen_ty_62::RTAX_WINDOW; -+pub const RTAX_RTT: _bindgen_ty_62 = _bindgen_ty_62::RTAX_RTT; -+pub const RTAX_RTTVAR: _bindgen_ty_62 = _bindgen_ty_62::RTAX_RTTVAR; -+pub const RTAX_SSTHRESH: _bindgen_ty_62 = _bindgen_ty_62::RTAX_SSTHRESH; -+pub const RTAX_CWND: _bindgen_ty_62 = _bindgen_ty_62::RTAX_CWND; -+pub const RTAX_ADVMSS: _bindgen_ty_62 = _bindgen_ty_62::RTAX_ADVMSS; -+pub const RTAX_REORDERING: _bindgen_ty_62 = _bindgen_ty_62::RTAX_REORDERING; -+pub const RTAX_HOPLIMIT: _bindgen_ty_62 = _bindgen_ty_62::RTAX_HOPLIMIT; -+pub const RTAX_INITCWND: _bindgen_ty_62 = _bindgen_ty_62::RTAX_INITCWND; -+pub const RTAX_FEATURES: _bindgen_ty_62 = _bindgen_ty_62::RTAX_FEATURES; -+pub const RTAX_RTO_MIN: _bindgen_ty_62 = _bindgen_ty_62::RTAX_RTO_MIN; -+pub const RTAX_INITRWND: _bindgen_ty_62 = _bindgen_ty_62::RTAX_INITRWND; -+pub const RTAX_QUICKACK: _bindgen_ty_62 = _bindgen_ty_62::RTAX_QUICKACK; -+pub const RTAX_CC_ALGO: _bindgen_ty_62 = _bindgen_ty_62::RTAX_CC_ALGO; -+pub const RTAX_FASTOPEN_NO_COOKIE: _bindgen_ty_62 = _bindgen_ty_62::RTAX_FASTOPEN_NO_COOKIE; -+pub const __RTAX_MAX: _bindgen_ty_62 = _bindgen_ty_62::__RTAX_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_62 { -+RTAX_UNSPEC = 0, -+RTAX_LOCK = 1, -+RTAX_MTU = 2, -+RTAX_WINDOW = 3, -+RTAX_RTT = 4, -+RTAX_RTTVAR = 5, -+RTAX_SSTHRESH = 6, -+RTAX_CWND = 7, -+RTAX_ADVMSS = 8, -+RTAX_REORDERING = 9, -+RTAX_HOPLIMIT = 10, -+RTAX_INITCWND = 11, -+RTAX_FEATURES = 12, -+RTAX_RTO_MIN = 13, -+RTAX_INITRWND = 14, -+RTAX_QUICKACK = 15, -+RTAX_CC_ALGO = 16, -+RTAX_FASTOPEN_NO_COOKIE = 17, -+__RTAX_MAX = 18, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct rta_session { -+pub proto: __u8, -+pub pad1: __u8, -+pub pad2: __u16, -+pub u: rta_session__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union rta_session__bindgen_ty_1 { -+pub ports: rta_session__bindgen_ty_1__bindgen_ty_1, -+pub icmpt: rta_session__bindgen_ty_1__bindgen_ty_2, -+pub spi: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_session__bindgen_ty_1__bindgen_ty_1 { -+pub sport: __u16, -+pub dport: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_session__bindgen_ty_1__bindgen_ty_2 { -+pub type_: __u8, -+pub code: __u8, -+pub ident: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_mfc_stats { -+pub mfcs_packets: __u64, -+pub mfcs_bytes: __u64, -+pub mfcs_wrong_if: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtgenmsg { -+pub rtgen_family: crate::ctypes::c_uchar, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifinfomsg { -+pub ifi_family: crate::ctypes::c_uchar, -+pub __ifi_pad: crate::ctypes::c_uchar, -+pub ifi_type: crate::ctypes::c_ushort, -+pub ifi_index: crate::ctypes::c_int, -+pub ifi_flags: crate::ctypes::c_uint, -+pub ifi_change: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct prefixmsg { -+pub prefix_family: crate::ctypes::c_uchar, -+pub prefix_pad1: crate::ctypes::c_uchar, -+pub prefix_pad2: crate::ctypes::c_ushort, -+pub prefix_ifindex: crate::ctypes::c_int, -+pub prefix_type: crate::ctypes::c_uchar, -+pub prefix_len: crate::ctypes::c_uchar, -+pub prefix_flags: crate::ctypes::c_uchar, -+pub prefix_pad3: crate::ctypes::c_uchar, -+} -+pub const PREFIX_UNSPEC: _bindgen_ty_63 = _bindgen_ty_63::PREFIX_UNSPEC; -+pub const PREFIX_ADDRESS: _bindgen_ty_63 = _bindgen_ty_63::PREFIX_ADDRESS; -+pub const PREFIX_CACHEINFO: _bindgen_ty_63 = _bindgen_ty_63::PREFIX_CACHEINFO; -+pub const __PREFIX_MAX: _bindgen_ty_63 = _bindgen_ty_63::__PREFIX_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_63 { -+PREFIX_UNSPEC = 0, -+PREFIX_ADDRESS = 1, -+PREFIX_CACHEINFO = 2, -+__PREFIX_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct prefix_cacheinfo { -+pub preferred_time: __u32, -+pub valid_time: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcmsg { -+pub tcm_family: crate::ctypes::c_uchar, -+pub tcm__pad1: crate::ctypes::c_uchar, -+pub tcm__pad2: crate::ctypes::c_ushort, -+pub tcm_ifindex: crate::ctypes::c_int, -+pub tcm_handle: __u32, -+pub tcm_parent: __u32, -+pub tcm_info: __u32, -+} -+pub const TCA_UNSPEC: _bindgen_ty_64 = _bindgen_ty_64::TCA_UNSPEC; -+pub const TCA_KIND: _bindgen_ty_64 = _bindgen_ty_64::TCA_KIND; -+pub const TCA_OPTIONS: _bindgen_ty_64 = _bindgen_ty_64::TCA_OPTIONS; -+pub const TCA_STATS: _bindgen_ty_64 = _bindgen_ty_64::TCA_STATS; -+pub const TCA_XSTATS: _bindgen_ty_64 = _bindgen_ty_64::TCA_XSTATS; -+pub const TCA_RATE: _bindgen_ty_64 = _bindgen_ty_64::TCA_RATE; -+pub const TCA_FCNT: _bindgen_ty_64 = _bindgen_ty_64::TCA_FCNT; -+pub const TCA_STATS2: _bindgen_ty_64 = _bindgen_ty_64::TCA_STATS2; -+pub const TCA_STAB: _bindgen_ty_64 = _bindgen_ty_64::TCA_STAB; -+pub const TCA_PAD: _bindgen_ty_64 = _bindgen_ty_64::TCA_PAD; -+pub const TCA_DUMP_INVISIBLE: _bindgen_ty_64 = _bindgen_ty_64::TCA_DUMP_INVISIBLE; -+pub const TCA_CHAIN: _bindgen_ty_64 = _bindgen_ty_64::TCA_CHAIN; -+pub const TCA_HW_OFFLOAD: _bindgen_ty_64 = _bindgen_ty_64::TCA_HW_OFFLOAD; -+pub const TCA_INGRESS_BLOCK: _bindgen_ty_64 = _bindgen_ty_64::TCA_INGRESS_BLOCK; -+pub const TCA_EGRESS_BLOCK: _bindgen_ty_64 = _bindgen_ty_64::TCA_EGRESS_BLOCK; -+pub const TCA_DUMP_FLAGS: _bindgen_ty_64 = _bindgen_ty_64::TCA_DUMP_FLAGS; -+pub const __TCA_MAX: _bindgen_ty_64 = _bindgen_ty_64::__TCA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_64 { -+TCA_UNSPEC = 0, -+TCA_KIND = 1, -+TCA_OPTIONS = 2, -+TCA_STATS = 3, -+TCA_XSTATS = 4, -+TCA_RATE = 5, -+TCA_FCNT = 6, -+TCA_STATS2 = 7, -+TCA_STAB = 8, -+TCA_PAD = 9, -+TCA_DUMP_INVISIBLE = 10, -+TCA_CHAIN = 11, -+TCA_HW_OFFLOAD = 12, -+TCA_INGRESS_BLOCK = 13, -+TCA_EGRESS_BLOCK = 14, -+TCA_DUMP_FLAGS = 15, -+__TCA_MAX = 16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nduseroptmsg { -+pub nduseropt_family: crate::ctypes::c_uchar, -+pub nduseropt_pad1: crate::ctypes::c_uchar, -+pub nduseropt_opts_len: crate::ctypes::c_ushort, -+pub nduseropt_ifindex: crate::ctypes::c_int, -+pub nduseropt_icmp_type: __u8, -+pub nduseropt_icmp_code: __u8, -+pub nduseropt_pad2: crate::ctypes::c_ushort, -+pub nduseropt_pad3: crate::ctypes::c_uint, -+} -+pub const NDUSEROPT_UNSPEC: _bindgen_ty_65 = _bindgen_ty_65::NDUSEROPT_UNSPEC; -+pub const NDUSEROPT_SRCADDR: _bindgen_ty_65 = _bindgen_ty_65::NDUSEROPT_SRCADDR; -+pub const __NDUSEROPT_MAX: _bindgen_ty_65 = _bindgen_ty_65::__NDUSEROPT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_65 { -+NDUSEROPT_UNSPEC = 0, -+NDUSEROPT_SRCADDR = 1, -+__NDUSEROPT_MAX = 2, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rtnetlink_groups { -+RTNLGRP_NONE = 0, -+RTNLGRP_LINK = 1, -+RTNLGRP_NOTIFY = 2, -+RTNLGRP_NEIGH = 3, -+RTNLGRP_TC = 4, -+RTNLGRP_IPV4_IFADDR = 5, -+RTNLGRP_IPV4_MROUTE = 6, -+RTNLGRP_IPV4_ROUTE = 7, -+RTNLGRP_IPV4_RULE = 8, -+RTNLGRP_IPV6_IFADDR = 9, -+RTNLGRP_IPV6_MROUTE = 10, -+RTNLGRP_IPV6_ROUTE = 11, -+RTNLGRP_IPV6_IFINFO = 12, -+RTNLGRP_DECnet_IFADDR = 13, -+RTNLGRP_NOP2 = 14, -+RTNLGRP_DECnet_ROUTE = 15, -+RTNLGRP_DECnet_RULE = 16, -+RTNLGRP_NOP4 = 17, -+RTNLGRP_IPV6_PREFIX = 18, -+RTNLGRP_IPV6_RULE = 19, -+RTNLGRP_ND_USEROPT = 20, -+RTNLGRP_PHONET_IFADDR = 21, -+RTNLGRP_PHONET_ROUTE = 22, -+RTNLGRP_DCB = 23, -+RTNLGRP_IPV4_NETCONF = 24, -+RTNLGRP_IPV6_NETCONF = 25, -+RTNLGRP_MDB = 26, -+RTNLGRP_MPLS_ROUTE = 27, -+RTNLGRP_NSID = 28, -+RTNLGRP_MPLS_NETCONF = 29, -+RTNLGRP_IPV4_MROUTE_R = 30, -+RTNLGRP_IPV6_MROUTE_R = 31, -+RTNLGRP_NEXTHOP = 32, -+RTNLGRP_BRVLAN = 33, -+RTNLGRP_MCTP_IFADDR = 34, -+RTNLGRP_TUNNEL = 35, -+RTNLGRP_STATS = 36, -+__RTNLGRP_MAX = 37, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcamsg { -+pub tca_family: crate::ctypes::c_uchar, -+pub tca__pad1: crate::ctypes::c_uchar, -+pub tca__pad2: crate::ctypes::c_ushort, -+} -+pub const TCA_ROOT_UNSPEC: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_UNSPEC; -+pub const TCA_ROOT_TAB: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_TAB; -+pub const TCA_ROOT_FLAGS: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_FLAGS; -+pub const TCA_ROOT_COUNT: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_COUNT; -+pub const TCA_ROOT_TIME_DELTA: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_TIME_DELTA; -+pub const __TCA_ROOT_MAX: _bindgen_ty_66 = _bindgen_ty_66::__TCA_ROOT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_66 { -+TCA_ROOT_UNSPEC = 0, -+TCA_ROOT_TAB = 1, -+TCA_ROOT_FLAGS = 2, -+TCA_ROOT_COUNT = 3, -+TCA_ROOT_TIME_DELTA = 4, -+__TCA_ROOT_MAX = 5, -+} --- -2.31.1 - diff --git a/loongarch64/files/step/cross-tools/SPIRV-LLVM-Translator/16.0.0/headers.url b/loongarch64/files/step/cross-tools/SPIRV-LLVM-Translator/16.0.0-default/headers.url similarity index 100% rename from loongarch64/files/step/cross-tools/SPIRV-LLVM-Translator/16.0.0/headers.url rename to loongarch64/files/step/cross-tools/SPIRV-LLVM-Translator/16.0.0-default/headers.url diff --git a/loongarch64/files/step/cross-tools/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch b/loongarch64/files/step/cross-tools/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch new file mode 100644 index 00000000..8ab7c52f --- /dev/null +++ b/loongarch64/files/step/cross-tools/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch @@ -0,0 +1,25 @@ +From bdafbe0cb2d7dd8c9d3b04f1156e6bc6ecae2b18 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 10:01:20 +0000 +Subject: [PATCH] remove default use relax for lld. + +--- + opcodes/loongarch-opc.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/opcodes/loongarch-opc.c b/opcodes/loongarch-opc.c +index c83e4810..9c7f8fea 100644 +--- a/opcodes/loongarch-opc.c ++++ b/opcodes/loongarch-opc.c +@@ -24,7 +24,7 @@ + + struct loongarch_ASEs_option LARCH_opts = + { +- .relax = 1 ++ .relax = 0 + }; + + size_t +-- +2.31.1 + diff --git a/loongarch64/files/step/cross-tools/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch b/loongarch64/files/step/cross-tools/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch new file mode 100644 index 00000000..8ab7c52f --- /dev/null +++ b/loongarch64/files/step/cross-tools/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch @@ -0,0 +1,25 @@ +From bdafbe0cb2d7dd8c9d3b04f1156e6bc6ecae2b18 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 10:01:20 +0000 +Subject: [PATCH] remove default use relax for lld. + +--- + opcodes/loongarch-opc.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/opcodes/loongarch-opc.c b/opcodes/loongarch-opc.c +index c83e4810..9c7f8fea 100644 +--- a/opcodes/loongarch-opc.c ++++ b/opcodes/loongarch-opc.c +@@ -24,7 +24,7 @@ + + struct loongarch_ASEs_option LARCH_opts = + { +- .relax = 1 ++ .relax = 0 + }; + + size_t +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/cross-gcc-glibc/13.1.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/cross-tools/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch similarity index 100% rename from loongarch64/files/step/toolchain/cross-gcc-glibc/13.1.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch rename to loongarch64/files/step/cross-tools/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch diff --git a/loongarch64/files/step/cross-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch b/loongarch64/files/step/cross-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch new file mode 100644 index 00000000..89ddc07d --- /dev/null +++ b/loongarch64/files/step/cross-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch @@ -0,0 +1,22 @@ +From 40920759fd47d5c6f6b2d7eb32b5f26640932bc4 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 07:29:32 +0000 +Subject: [PATCH] gcc 13 add "-cmodule=medium" for loongarch libgcc. + +--- + libgcc/config/loongarch/t-crtstuff | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libgcc/config/loongarch/t-crtstuff b/libgcc/config/loongarch/t-crtstuff +index b8c36eb66..4412b52a6 100644 +--- a/libgcc/config/loongarch/t-crtstuff ++++ b/libgcc/config/loongarch/t-crtstuff +@@ -2,4 +2,4 @@ + # We turn it off for crt*.o because it would make __EH_FRAME_BEGIN__ point + # to .eh_frame data from crtbeginT.o instead of the user-defined object + # during static linking. +-CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables ++CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables -mcmodel=medium +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/cross-gcc_git/14.0.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/cross-tools/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch similarity index 100% rename from loongarch64/files/step/toolchain/cross-gcc_git/14.0.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch rename to loongarch64/files/step/cross-tools/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch diff --git a/loongarch64/files/step/cross-tools/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch b/loongarch64/files/step/cross-tools/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch new file mode 100644 index 00000000..89ddc07d --- /dev/null +++ b/loongarch64/files/step/cross-tools/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch @@ -0,0 +1,22 @@ +From 40920759fd47d5c6f6b2d7eb32b5f26640932bc4 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 07:29:32 +0000 +Subject: [PATCH] gcc 13 add "-cmodule=medium" for loongarch libgcc. + +--- + libgcc/config/loongarch/t-crtstuff | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libgcc/config/loongarch/t-crtstuff b/libgcc/config/loongarch/t-crtstuff +index b8c36eb66..4412b52a6 100644 +--- a/libgcc/config/loongarch/t-crtstuff ++++ b/libgcc/config/loongarch/t-crtstuff +@@ -2,4 +2,4 @@ + # We turn it off for crt*.o because it would make __EH_FRAME_BEGIN__ point + # to .eh_frame data from crtbeginT.o instead of the user-defined object + # during static linking. +-CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables ++CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables -mcmodel=medium +-- +2.31.1 + diff --git a/loongarch64/files/step/cross-tools/ocaml/5.0.0/patches/ocaml-5.0.0-add-loongarch64-support.patch b/loongarch64/files/step/cross-tools/ocaml/5.0.0/patches/ocaml-5.0.0-add-loongarch64-support.patch new file mode 100644 index 00000000..b48fa518 --- /dev/null +++ b/loongarch64/files/step/cross-tools/ocaml/5.0.0/patches/ocaml-5.0.0-add-loongarch64-support.patch @@ -0,0 +1,2362 @@ +补丁修改自https://github.com/ocaml/ocaml/pull/11974 +原作: zhaojunchao@loongson.cn +修改: Sun Haiyong + +diff -Nurp ocaml-5.0.0/asmcomp/loongarch64/arch.ml ocaml-base-compiler.5.0.0/asmcomp/loongarch64/arch.ml +--- ocaml-5.0.0/asmcomp/loongarch64/arch.ml 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/asmcomp/loongarch64/arch.ml 2023-06-28 14:04:14.000000000 +0000 +@@ -0,0 +1,96 @@ ++# 2 "asmcomp/loongarch64/arch.ml" ++(**************************************************************************) ++(* *) ++(* OCaml *) ++(* *) ++(* yala *) ++(* *) ++(* Copyright © 2008-2023 LOONGSON *) ++(* *) ++(* All rights reserved. This file is distributed under the terms of *) ++(* the GNU Lesser General Public License version 2.1, with the *) ++(* special exception on linking described in the file LICENSE. *) ++(* *) ++(**************************************************************************) ++ ++(* Specific operations for the Loongarch processor *) ++ ++open Format ++ ++(* Machine-specific command-line options *) ++ ++let command_line_options = [] ++ ++(* Specific operations *) ++ ++type specific_operation = ++ | Imultaddf of bool (* multiply, optionally negate, and add *) ++ | Imultsubf of bool (* multiply, optionally negate, and subtract *) ++ | Isqrtf (* floating-point square root *) ++ ++(* Addressing modes *) ++ ++type addressing_mode = ++ | Iindexed of int (* reg + displ *) ++ ++let is_immediate n = ++ (n <= 0x7FF) && (n >= -0x800) ++ ++(* Sizes, endianness *) ++ ++let big_endian = false ++ ++let size_addr = 8 ++let size_int = size_addr ++let size_float = 8 ++ ++let allow_unaligned_access = false ++ ++(* Behavior of division *) ++ ++let division_crashes_on_overflow = false ++ ++(* Operations on addressing modes *) ++ ++let identity_addressing = Iindexed 0 ++ ++let offset_addressing addr delta = ++ match addr with ++ | Iindexed n -> Iindexed(n + delta) ++ ++let num_args_addressing = function ++ | Iindexed _ -> 1 ++ ++(* Printing operations and addressing modes *) ++ ++let print_addressing printreg addr ppf arg = ++ match addr with ++ | Iindexed n -> ++ let idx = if n <> 0 then Printf.sprintf " + %i" n else "" in ++ fprintf ppf "%a%s" printreg arg.(0) idx ++ ++let print_specific_operation printreg op ppf arg = ++ match op with ++ | Imultaddf false -> ++ fprintf ppf "%a *f %a +f %a" ++ printreg arg.(0) printreg arg.(1) printreg arg.(2) ++ | Imultaddf true -> ++ fprintf ppf "-f (%a *f %a +f %a)" ++ printreg arg.(0) printreg arg.(1) printreg arg.(2) ++ | Imultsubf false -> ++ fprintf ppf "%a *f %a -f %a" ++ printreg arg.(0) printreg arg.(1) printreg arg.(2) ++ | Imultsubf true -> ++ fprintf ppf "-f (%a *f %a -f %a)" ++ printreg arg.(0) printreg arg.(1) printreg arg.(2) ++ | Isqrtf -> ++ fprintf ppf "sqrtf %a" ++ printreg arg.(0) ++ ++(* Specific operations that are pure *) ++ ++let operation_is_pure _ = true ++ ++(* Specific operations that can raise *) ++ ++let operation_can_raise _ = false +diff -Nurp ocaml-5.0.0/asmcomp/loongarch64/arch.mli ocaml-base-compiler.5.0.0/asmcomp/loongarch64/arch.mli +--- ocaml-5.0.0/asmcomp/loongarch64/arch.mli 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/asmcomp/loongarch64/arch.mli 2023-06-28 14:04:14.000000000 +0000 +@@ -0,0 +1,76 @@ ++# 2 "asmcomp/loongarch64/arch.mli" ++(**************************************************************************) ++(* *) ++(* OCaml *) ++(* *) ++(* yala *) ++(* *) ++(* Copyright © 2008-2023 LOONGSON *) ++(* *) ++(* All rights reserved. This file is distributed under the terms of *) ++(* the GNU Lesser General Public License version 2.1, with the *) ++(* special exception on linking described in the file LICENSE. *) ++(* *) ++(**************************************************************************) ++ ++(* Specific operations for the LoongArch processor *) ++ ++(* Machine-specific command-line options *) ++ ++val command_line_options : (string * Arg.spec * string) list ++ ++(* Specific operations *) ++ ++type specific_operation = ++ | Imultaddf of bool (* multiply, optionally negate, and add *) ++ | Imultsubf of bool (* multiply, optionally negate, and subtract *) ++ | Isqrtf (* floating-point square root *) ++ ++(* Addressing modes *) ++ ++type addressing_mode = ++ | Iindexed of int (* reg + displ *) ++ ++val is_immediate : int -> bool ++ ++(* Sizes, endianness *) ++ ++val big_endian : bool ++ ++val size_addr : int ++ ++val size_int : int ++ ++val size_float : int ++ ++val allow_unaligned_access : bool ++ ++(* Behavior of division *) ++ ++val division_crashes_on_overflow : bool ++ ++(* Operations on addressing modes *) ++ ++val identity_addressing : addressing_mode ++ ++val offset_addressing : addressing_mode -> int -> addressing_mode ++ ++val num_args_addressing : addressing_mode -> int ++ ++(* Printing operations and addressing modes *) ++ ++val print_addressing : ++ (Format.formatter -> 'a -> unit) -> addressing_mode -> ++ Format.formatter -> 'a array -> unit ++ ++val print_specific_operation : ++ (Format.formatter -> 'a -> unit) -> specific_operation -> ++ Format.formatter -> 'a array -> unit ++ ++(* Specific operations that are pure *) ++ ++val operation_is_pure : specific_operation -> bool ++ ++(* Specific operations that can raise *) ++ ++val operation_can_raise : specific_operation -> bool +diff -Nurp ocaml-5.0.0/asmcomp/loongarch64/emit.mlp ocaml-base-compiler.5.0.0/asmcomp/loongarch64/emit.mlp +--- ocaml-5.0.0/asmcomp/loongarch64/emit.mlp 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/asmcomp/loongarch64/emit.mlp 2023-06-28 14:46:57.000000000 +0000 +@@ -0,0 +1,772 @@ ++(**************************************************************************) ++(* *) ++(* OCaml *) ++(* *) ++(* yala *) ++(* *) ++(* Copyright © 2008-2023 LOONGSON *) ++(* *) ++(* All rights reserved. This file is distributed under the terms of *) ++(* the GNU Lesser General Public License version 2.1, with the *) ++(* special exception on linking described in the file LICENSE. *) ++(* *) ++(**************************************************************************) ++ ++(* Emission of LoongArch assembly code *) ++ ++open Cmm ++open Arch ++open Proc ++open Reg ++open Mach ++open Linear ++open Emitaux ++open Emitenv ++ ++(* Layout of the stack. The stack is kept 16-aligned. *) ++ ++let frame_size env = ++ let size = ++ env.stack_offset + (* Trap frame, outgoing parameters *) ++ size_int * env.f.fun_num_stack_slots.(0) + (* Local int variables *) ++ size_float * env.f.fun_num_stack_slots.(1)+ (* Local float variables *) ++ (if env.f.fun_contains_calls then size_addr else 0) (* Return address *) ++ in ++ Misc.align size 16 ++ ++let slot_offset env loc cls = ++ match loc with ++ | Local n -> ++ ("$sp", ++ if cls = 0 ++ then env.stack_offset + env.f.fun_num_stack_slots.(1) * size_float ++ + n * size_int ++ else env.stack_offset + n * size_float) ++ | Incoming n -> ++ ("$sp", frame_size env + n) ++ | Outgoing n -> ++ ("$sp", n) ++ | Domainstate n -> ++ ("$s8", n + Domainstate.(idx_of_field Domain_extra_params) * 8) ++ ++(* Output a symbol *) ++ ++let emit_symbol s = ++ emit_symbol '$' s ++ ++let emit_jump op s = ++ if !Clflags.dlcode || !Clflags.pic_code ++ then `{emit_string op} %plt({emit_symbol s})` ++ else `{emit_string op} {emit_symbol s}` ++ ++let emit_call = emit_jump "bl" ++let emit_tail = emit_jump "b" ++ ++(* Output a label *) ++ ++let emit_label lbl = ++ emit_string ".L"; emit_int lbl ++ ++(* Section switching *) ++ ++let data_space = ++ ".section .data" ++ ++let code_space = ++ ".section .text" ++ ++let rodata_space = ++ ".section .rodata" ++ ++(* Names for special regs *) ++ ++let reg_tmp = phys_reg 22 (* t1 *) ++let reg_tmp2 = phys_reg 21 (* t0 *) ++let reg_t2 = phys_reg 13 (* t2 *) ++let reg_domain_state_ptr = phys_reg 25 (* s8 *) ++let reg_trap_ptr = phys_reg 23 (* s1 *) ++let reg_alloc_ptr = phys_reg 24 (* s7 *) ++let reg_stack_arg_begin = phys_reg 9 (* s3 *) ++let reg_stack_arg_end = phys_reg 10 (* s4 *) ++ ++(* Output a pseudo-register *) ++ ++let reg_name = function ++ | {loc = Reg r} -> register_name r ++ | _ -> Misc.fatal_error "Emit.reg_name" ++ ++let emit_reg r = ++ emit_string (reg_name r) ++ ++(* Adjust sp by the given byte amount, clobbers reg_tmp *) ++ ++let emit_stack_adjustment n = ++ if n <> 0 then begin ++ if is_immediate n then ++ ` addi.d $sp, $sp, {emit_int n} \n` ++ else begin ++ ` li.d {emit_reg reg_tmp}, {emit_int n}\n`; ++ ` add.d $sp, $sp, {emit_reg reg_tmp}\n` ++ end; ++ cfi_adjust_cfa_offset (-n) ++ end ++ ++(* Output add.d-immediate instruction, clobbers reg_tmp2 *) ++ ++let emit_addimm rd rs n = ++ if is_immediate n then ++ ` addi.d {emit_reg rd}, {emit_reg rs}, {emit_int n}\n` ++ else begin ++ ` li.d {emit_reg reg_tmp2}, {emit_int n}\n`; ++ ` add.d {emit_reg rd}, {emit_reg rs}, {emit_reg reg_tmp2}\n` ++ end ++ ++(* Output memory operation with a possibly non-immediate offset, ++ clobbers reg_tmp *) ++ ++let emit_mem_op op reg ofs addr = ++ if is_immediate ofs then ++ ` {emit_string op} {emit_string reg}, {emit_string addr}, {emit_int ofs}\n` ++ else begin ++ ` li.d {emit_reg reg_tmp}, {emit_int ofs}\n`; ++ ` add.d {emit_reg reg_tmp}, {emit_string addr}, {emit_reg reg_tmp}\n`; ++ ` {emit_string op} {emit_string reg}, {emit_reg reg_tmp}, 0\n` ++ end ++ ++let reload_ra n = ++ emit_mem_op "ld.d" "$ra" (n - 8) "$sp" ++ ++let store_ra n = ++ emit_mem_op "st.d" "$ra" (n - 8) "$sp" ++ ++let emit_store rs ofs rd = ++ emit_mem_op "st.d" (reg_name rs) ofs rd ++ ++let emit_load rd ofs rs = ++ emit_mem_op "ld.d" (reg_name rd) ofs rs ++ ++let emit_float_load rd ofs rs = ++ emit_mem_op "fld.d" (reg_name rd) ofs rs ++ ++let emit_float_store rs ofs rd = ++ emit_mem_op "fst.d" (reg_name rs) ofs rd ++ ++let emit_float_test cmp ~arg ~res = ++ let negated = ++ match cmp with ++ | CFneq | CFnlt | CFngt | CFnle | CFnge -> true ++ | CFeq | CFlt | CFgt | CFle | CFge -> false ++ in ++ begin match cmp with ++ | CFeq | CFneq -> ` fcmp.ceq.d $fcc0, {emit_reg arg.(0)}, {emit_reg arg.(1)}\n movcf2gr {emit_reg res}, $fcc0\n` ++ | CFlt | CFnlt -> ` fcmp.clt.d $fcc0, {emit_reg arg.(0)}, {emit_reg arg.(1)}\n movcf2gr {emit_reg res}, $fcc0\n` ++ | CFgt | CFngt -> ` fcmp.clt.d $fcc0, {emit_reg arg.(1)}, {emit_reg arg.(0)}\n movcf2gr {emit_reg res}, $fcc0\n` ++ | CFle | CFnle -> ` fcmp.cle.d $fcc0, {emit_reg arg.(0)}, {emit_reg arg.(1)}\n movcf2gr {emit_reg res}, $fcc0\n` ++ | CFge | CFnge -> ` fcmp.cle.d $fcc0, {emit_reg arg.(1)}, {emit_reg arg.(0)}\n movcf2gr {emit_reg res}, $fcc0\n` ++ end; ++ negated ++ ++(* Record live pointers at call points *) ++ ++let record_frame_label env live dbg = ++ let lbl = new_label () in ++ let live_offset = ref [] in ++ Reg.Set.iter ++ (function ++ {typ = Val; loc = Reg r} -> ++ live_offset := (r lsl 1) + 1 :: !live_offset ++ | {typ = Val; loc = Stack s} as reg -> ++ let (base, ofs) = slot_offset env s (register_class reg) in ++ assert (base = "$sp"); ++ live_offset := ofs :: !live_offset ++ | {typ = Addr} as r -> ++ Misc.fatal_error ("bad GC root " ^ Reg.name r) ++ | _ -> () ++ ) ++ live; ++ record_frame_descr ~label:lbl ~frame_size:(frame_size env) ++ ~live_offset:!live_offset dbg; ++ lbl ++ ++let record_frame env live dbg = ++ let lbl = record_frame_label env live dbg in ++ `{emit_label lbl}:\n` ++ ++let emit_call_gc gc = ++ `{emit_label gc.gc_lbl}:\n`; ++ ` {emit_call "caml_call_gc"}\n`; ++ `{emit_label gc.gc_frame_lbl}:\n`; ++ ` b {emit_label gc.gc_return_lbl}\n` ++ ++let bound_error_label env dbg = ++ if !Clflags.debug || env.bound_error_sites = [] then begin ++ let lbl_bound_error = new_label() in ++ let lbl_frame = record_frame_label env Reg.Set.empty (Dbg_other dbg) in ++ env.bound_error_sites <- ++ { bd_lbl = lbl_bound_error; ++ bd_frame = lbl_frame; } :: env.bound_error_sites; ++ lbl_bound_error ++ end else ++ let bd = List.hd env.bound_error_sites in ++ bd.bd_lbl ++ ++let emit_call_bound_error bd = ++ `{emit_label bd.bd_lbl}:\n`; ++ ` {emit_call "caml_ml_array_bound_error"}\n`; ++ `{emit_label bd.bd_frame}:\n` ++ ++(* Names for various instructions *) ++ ++let name_for_intop = function ++ | Iadd -> "add.d" ++ | Isub -> "sub.d" ++ | Imul -> "mul.d" ++ | Imulh -> "mulh.d" ++ | Idiv -> "div.d" ++ | Iand -> "and" ++ | Ior -> "or" ++ | Ixor -> "xor" ++ | Ilsl -> "sll.d" ++ | Ilsr -> "srl.d" ++ | Iasr -> "sra.d" ++ | Imod -> "mod.d" ++ | _ -> Misc.fatal_error "Emit.Intop" ++ ++let name_for_intop_imm = function ++ | Iadd -> "addi.d" ++ | Iand -> "andi" ++ | Ior -> "ori" ++ | Ixor -> "xori" ++ | Ilsl -> "slli.d" ++ | Ilsr -> "srli.d" ++ | Iasr -> "srai.d" ++ | _ -> Misc.fatal_error "Emit.Intop_imm" ++ ++let name_for_floatop1 = function ++ | Inegf -> "fneg.d" ++ | Iabsf -> "fabs.d" ++ | Ispecific Isqrtf -> "fsqrt.d" ++ | _ -> Misc.fatal_error "Emit.Iopf1" ++ ++let name_for_floatop2 = function ++ | Iaddf -> "fadd.d" ++ | Isubf -> "fsub.d" ++ | Imulf -> "fmul.d" ++ | Idivf -> "fdiv.d" ++ | _ -> Misc.fatal_error "Emit.Iopf2" ++ ++let name_for_specific = function ++ | Imultaddf false -> "fmadd.d" ++ | Imultaddf true -> "fnmadd.d" ++ | Imultsubf false -> "fmsub.d" ++ | Imultsubf true -> "fnmsub.d" ++ | _ -> Misc.fatal_error "Emit.Iopf3" ++ ++(* Output the assembly code for an instruction *) ++ ++let emit_instr env i = ++ emit_debug_info i.dbg; ++ match i.desc with ++ Lend -> () ++ | Lprologue -> ++ assert (env.f.fun_prologue_required); ++ let n = frame_size env in ++ emit_stack_adjustment (-n); ++ if env.f.fun_contains_calls then begin ++ store_ra n; ++ cfi_offset ~reg:1 (* ra *) ~offset:(-8) ++ end; ++ | Lop(Imove | Ispill | Ireload) -> ++ let src = i.arg.(0) and dst = i.res.(0) in ++ if src.loc <> dst.loc then begin ++ match (src, dst) with ++ | {loc = Reg _; typ = (Val | Int | Addr)}, {loc = Reg _} -> ++ ` move {emit_reg dst}, {emit_reg src}\n` ++ | {loc = Reg _; typ = Float}, {loc = Reg _; typ = Float} -> ++ ` fmov.d {emit_reg dst}, {emit_reg src}\n` ++ | {loc = Reg _; typ = (Val | Int | Addr)}, {loc = Stack s} -> ++ let (base, ofs) = slot_offset env s (register_class dst) in ++ emit_store src ofs base ++ | {loc = Reg _; typ = Float}, {loc = Stack s} -> ++ let (base, ofs) = slot_offset env s (register_class dst) in ++ emit_float_store src ofs base ++ | {loc = Stack s; typ = (Val | Int | Addr)}, {loc = Reg _} -> ++ let (base, ofs) = slot_offset env s (register_class src) in ++ emit_load dst ofs base ++ | {loc = Stack s; typ = Float}, {loc = Reg _} -> ++ let (base, ofs) = slot_offset env s (register_class src) in ++ emit_float_load dst ofs base ++ | {loc = Reg _; typ = Float}, {loc = Reg _; typ = (Val | Int | Addr)} ++ | {loc = Stack _}, {loc = Stack _} ++ | {loc = Unknown}, _ | _, {loc = Unknown} -> ++ Misc.fatal_error "Emit: Imove" ++ end ++ | Lop(Iconst_int n) -> ++ ` li.d {emit_reg i.res.(0)}, {emit_nativeint n}\n` ++ | Lop(Iconst_float f) -> ++ let lbl = new_label() in ++ env.float_literals <- {fl=f; lbl} :: env.float_literals; ++ `la.local {emit_reg reg_tmp}, {emit_label lbl} \n`; ++ ` fld.d {emit_reg i.res.(0)}, {emit_reg reg_tmp}, 0\n` ++ | Lop(Iconst_symbol s) -> (* FIXME la.global assert error in binutils*) ++ `pcaddi {emit_reg i.res.(0)}, 0 \n`; ++ `b 7112233f\n`; ++ `.dword {emit_symbol s}\n`; ++ `7112233: ld.d {emit_reg i.res.(0)}, {emit_reg i.res.(0)}, 8\n` ++ | Lop(Icall_ind) -> ++ ` jirl $ra, {emit_reg i.arg.(0)}, 0\n`; ++ record_frame env i.live (Dbg_other i.dbg) ++ | Lop(Icall_imm {func}) -> ++ ` {emit_call func}\n`; ++ record_frame env i.live (Dbg_other i.dbg) ++ | Lop(Itailcall_ind) -> ++ let n = frame_size env in ++ if env.f.fun_contains_calls then reload_ra n; ++ emit_stack_adjustment n; ++ ` jr {emit_reg i.arg.(0)}\n` ++ | Lop(Itailcall_imm {func}) -> ++ if func = env.f.fun_name then begin ++ ` b {emit_label env.f.fun_tailrec_entry_point_label}\n` ++ end else begin ++ let n = frame_size env in ++ if env.f.fun_contains_calls then reload_ra n; ++ emit_stack_adjustment n; ++ ` {emit_tail func}\n` ++ end ++ | Lop(Iextcall{func; alloc; stack_ofs}) -> ++ if stack_ofs > 0 then begin ++ ` move {emit_reg reg_stack_arg_begin}, $sp\n`; ++ ` addi.d {emit_reg reg_stack_arg_end}, $sp, {emit_int (Misc.align stack_ofs 16)}\n`; ++ ` la.global {emit_reg reg_t2}, {emit_symbol func}\n`; ++ ` {emit_call "caml_c_call_stack_args"}\n`; ++ record_frame env i.live (Dbg_other i.dbg) ++ end else if alloc then begin ++ ` la.global {emit_reg reg_t2}, {emit_symbol func}\n`; ++ ` {emit_call "caml_c_call"}\n`; ++ record_frame env i.live (Dbg_other i.dbg) ++ end else begin ++ (* store ocaml stack in s0, which is marked as being destroyed ++ at noalloc calls *) ++ ` move $s0, $sp\n`; ++ cfi_remember_state (); ++ cfi_def_cfa_register ~reg:21; ++ let ofs = Domainstate.(idx_of_field Domain_c_stack) * 8 in ++ ` ld.d $sp, {emit_reg reg_domain_state_ptr}, {emit_int ofs}\n`; ++ ` {emit_call func}\n`; ++ ` move $sp, $s0\n`; ++ cfi_restore_state () ++ end ++ | Lop(Istackoffset n) -> ++ assert (n mod 16 = 0); ++ emit_stack_adjustment (-n); ++ env.stack_offset <- env.stack_offset + n ++ | Lop(Iload { memory_chunk = Single; addressing_mode = Iindexed ofs; is_atomic } ) -> ++ assert (not is_atomic); ++ ` fld.s {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_int ofs}\n`; ++ ` fcvt.d.s {emit_reg i.res.(0)}, {emit_reg i.res.(0)}\n` ++ | Lop(Iload { memory_chunk = Word_int | Word_val; addressing_mode = Iindexed ofs; is_atomic } ) -> ++ if is_atomic then ` dbar 0\n`; ++ ` ld.d {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_int ofs}\n`; ++ if is_atomic then ` dbar 0\n` ++ | Lop(Iload { memory_chunk; addressing_mode = Iindexed ofs; is_atomic } ) -> ++ assert (not is_atomic); ++ let instr = ++ match memory_chunk with ++ | Byte_unsigned -> "ld.bu" ++ | Byte_signed -> "ld.b" ++ | Sixteen_unsigned -> "ld.hu" ++ | Sixteen_signed -> "ld.h" ++ | Thirtytwo_unsigned -> "ld.wu" ++ | Thirtytwo_signed -> "ld.w" ++ | Word_int | Word_val | Single -> assert false ++ | Double -> "fld.d" ++ in ++ ` {emit_string instr} {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_int ofs}\n` ++ | Lop(Istore(Single, Iindexed ofs, _)) -> ++ (* ft0 is marked as destroyed for this operation *) ++ ` fcvt.s.d $ft0, {emit_reg i.arg.(0)}\n`; ++ ` fst.s $ft0, {emit_reg i.arg.(1)}, {emit_int ofs}\n` ++ | Lop(Istore((Word_int | Word_val), Iindexed ofs, assignement)) -> ++ if assignement then begin ++ ` dbar 0\n`; ++ ` st.d {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}, {emit_int ofs}\n` ++ end else ++ ` st.d {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}, {emit_int ofs}\n`; ++ | Lop(Istore(chunk, Iindexed ofs, _)) -> ++ let instr = ++ match chunk with ++ | Byte_unsigned | Byte_signed -> "st.b" ++ | Sixteen_unsigned | Sixteen_signed -> "st.h" ++ | Thirtytwo_unsigned | Thirtytwo_signed -> "st.w" ++ | Word_int | Word_val | Single -> assert false ++ | Double -> "fst.d" ++ in ++ ` {emit_string instr} {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}, {emit_int ofs}\n` ++ | Lop(Ialloc {bytes; dbginfo}) -> ++ let lbl_frame_lbl = record_frame_label env i.live (Dbg_alloc dbginfo) in ++ if env.f.fun_fast then begin ++ let lbl_after_alloc = new_label () in ++ let lbl_call_gc = new_label () in ++ let n = -bytes in ++ let offset = Domainstate.(idx_of_field Domain_young_limit) * 8 in ++ emit_addimm reg_alloc_ptr reg_alloc_ptr n; ++ ` ld.d {emit_reg reg_tmp}, {emit_reg reg_domain_state_ptr}, {emit_int offset}\n`; ++ ` bltu {emit_reg reg_alloc_ptr}, {emit_reg reg_tmp}, {emit_label lbl_call_gc}\n`; ++ `{emit_label lbl_after_alloc}:\n`; ++ ` addi.d {emit_reg i.res.(0)}, {emit_reg reg_alloc_ptr}, 8\n`; ++ env.call_gc_sites <- ++ { gc_lbl = lbl_call_gc; ++ gc_return_lbl = lbl_after_alloc; ++ gc_frame_lbl = lbl_frame_lbl } :: env.call_gc_sites ++ end else begin ++ begin match bytes with ++ | 16 -> ` {emit_call "caml_alloc1"}\n` ++ | 24 -> ` {emit_call "caml_alloc2"}\n` ++ | 32 -> ` {emit_call "caml_alloc3"}\n` ++ | _ -> ++ ` li.d {emit_reg reg_t2}, {emit_int bytes}\n`; ++ ` {emit_call "caml_allocN"}\n` ++ end; ++ `{emit_label lbl_frame_lbl}:\n`; ++ ` addi.d {emit_reg i.res.(0)}, {emit_reg reg_alloc_ptr}, 8\n` ++ end ++ | Lop(Ipoll { return_label }) -> ++ let lbl_frame_lbl = record_frame_label env i.live (Dbg_alloc []) in ++ let lbl_after_poll = match return_label with ++ | None -> new_label() ++ | Some(lbl) -> lbl in ++ let lbl_call_gc = new_label () in ++ let offset = Domainstate.(idx_of_field Domain_young_limit) * 8 in ++ ` ld.d {emit_reg reg_tmp}, {emit_reg reg_domain_state_ptr}, {emit_int offset}\n`; ++ begin match return_label with ++ | None -> ` bltu {emit_reg reg_alloc_ptr}, {emit_reg reg_tmp}, {emit_label lbl_call_gc}\n`; ++ `{emit_label lbl_after_poll}:\n`; ++ | Some lbl -> ` bgeu {emit_reg reg_alloc_ptr}, {emit_reg reg_tmp}, {emit_label lbl}\n`; ++ ` b {emit_label lbl_call_gc}\n` ++ end; ++ env.call_gc_sites <- ++ { gc_lbl = lbl_call_gc; ++ gc_return_lbl = lbl_after_poll; ++ gc_frame_lbl = lbl_frame_lbl } :: env.call_gc_sites ++ | Lop(Iintop(Icomp cmp)) -> ++ begin match cmp with ++ | Isigned Clt -> ++ ` slt {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n` ++ | Isigned Cge -> ++ ` slt {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n`; ++ ` xori {emit_reg i.res.(0)}, {emit_reg i.res.(0)}, 1\n`; ++ | Isigned Cgt -> ++ ` slt {emit_reg i.res.(0)}, {emit_reg i.arg.(1)}, {emit_reg i.arg.(0)}\n` ++ | Isigned Cle -> ++ ` slt {emit_reg i.res.(0)}, {emit_reg i.arg.(1)}, {emit_reg i.arg.(0)}\n`; ++ ` xori {emit_reg i.res.(0)}, {emit_reg i.res.(0)}, 1\n`; ++ | Isigned Ceq | Iunsigned Ceq -> ++ ` sub.d {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n`; ++ ` sltui {emit_reg i.res.(0)}, {emit_reg i.res.(0)}, 1\n` ++ | Isigned Cne | Iunsigned Cne -> ++ ` sub.d {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n`; ++ ` sltu {emit_reg i.res.(0)}, $zero, {emit_reg i.res.(0)}\n` ++ | Iunsigned Clt -> ++ ` sltu {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n` ++ | Iunsigned Cge -> ++ ` sltu {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n`; ++ ` xori {emit_reg i.res.(0)}, {emit_reg i.res.(0)}, 1\n`; ++ | Iunsigned Cgt -> ++ ` sltu {emit_reg i.res.(0)}, {emit_reg i.arg.(1)}, {emit_reg i.arg.(0)}\n` ++ | Iunsigned Cle -> ++ ` sltu {emit_reg i.res.(0)}, {emit_reg i.arg.(1)}, {emit_reg i.arg.(0)}\n`; ++ ` xori {emit_reg i.res.(0)}, {emit_reg i.res.(0)}, 1\n`; ++ end ++ | Lop(Iintop (Icheckbound)) -> ++ let lbl = bound_error_label env i.dbg in ++ ` bleu {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}, {emit_label lbl}\n` ++ | Lop(Iintop op) -> ++ let instr = name_for_intop op in ++ ` {emit_string instr} {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n` ++ | Lop(Iintop_imm(Isub, n)) -> ++ ` addi.d {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_int(-n)}\n` ++ | Lop(Iintop_imm(Iadd, n)) -> ++ ` addi.d {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_int(n)}\n` ++ | Lop(Iintop_imm(op, n)) -> ++ let instri = name_for_intop_imm op in ++ if n<0 then (* FIXME *) ++ let instr = name_for_intop op in ++ ` addi.d {emit_reg reg_tmp2}, $zero, {emit_int n}\n {emit_string instr} {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg reg_tmp2} \n` ++ else ++ ` {emit_string instri} {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_int n}\n` ++ | Lop(Inegf | Iabsf | Ispecific Isqrtf as op) -> ++ let instr = name_for_floatop1 op in ++ ` {emit_string instr} {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}\n` ++ | Lop(Iaddf | Isubf | Imulf | Idivf as op) -> ++ let instr = name_for_floatop2 op in ++ ` {emit_string instr} {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}\n` ++ | Lop(Ifloatofint) -> ++ ` movgr2fr.d $ft0, {emit_reg i.arg.(0)} \n`; ++ ` ffint.d.l {emit_reg i.res.(0)}, $ft0\n` ++ | Lop(Iintoffloat) -> ++ ` ftintrz.l.d $ft0, {emit_reg i.arg.(0)}\n`; ++ ` movfr2gr.d {emit_reg i.res.(0)}, $ft0 \n` ++ | Lop(Iopaque) -> ++ assert (i.arg.(0).loc = i.res.(0).loc) ++ | Lop(Ispecific sop) -> ++ let instr = name_for_specific sop in ++ ` {emit_string instr} {emit_reg i.res.(0)}, {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}, {emit_reg i.arg.(2)}\n` ++ | Lop (Idls_get) -> ++ let ofs = Domainstate.(idx_of_field Domain_dls_root) * 8 in ++ ` ld.d {emit_reg i.res.(0)}, {emit_reg reg_domain_state_ptr}, {emit_int ofs}\n` ++ | Lreloadretaddr -> ++ let n = frame_size env in ++ reload_ra n ++ | Lreturn -> ++ let n = frame_size env in ++ emit_stack_adjustment n; ++ ` jr $ra\n` ++ | Llabel lbl -> ++ `{emit_label lbl}:\n` ++ | Lbranch lbl -> ++ ` b {emit_label lbl}\n` ++ | Lcondbranch(tst, lbl) -> ++ begin match tst with ++ | Itruetest -> ++ ` bnez {emit_reg i.arg.(0)}, {emit_label lbl}\n` ++ | Ifalsetest -> ++ ` beqz {emit_reg i.arg.(0)}, {emit_label lbl}\n` ++ | Iinttest cmp -> ++ let name = match cmp with ++ | Iunsigned Ceq | Isigned Ceq -> "beq" ++ | Iunsigned Cne | Isigned Cne -> "bne" ++ | Iunsigned Cle -> "bleu" | Isigned Cle -> "ble" ++ | Iunsigned Cge -> "bgeu" | Isigned Cge -> "bge" ++ | Iunsigned Clt -> "bltu" | Isigned Clt -> "blt" ++ | Iunsigned Cgt -> "bgtu" | Isigned Cgt -> "bgt" ++ in ++ ` {emit_string name} {emit_reg i.arg.(0)}, {emit_reg i.arg.(1)}, {emit_label lbl}\n` ++ | Iinttest_imm _ -> ++ Misc.fatal_error "Emit.emit_instr (Iinttest_imm _)" ++ | Ifloattest cmp -> ++ let negated = emit_float_test cmp ~arg:i.arg ~res:reg_tmp in ++ let branch = ++ if negated ++ then "beqz" ++ else "bnez" ++ in ++ ` {emit_string branch} {emit_reg reg_tmp}, {emit_label lbl}\n` ++ | Ioddtest -> ++ ` andi {emit_reg reg_tmp}, {emit_reg i.arg.(0)}, 1\n`; ++ ` bnez {emit_reg reg_tmp}, {emit_label lbl}\n` ++ | Ieventest -> ++ ` andi {emit_reg reg_tmp}, {emit_reg i.arg.(0)}, 1\n`; ++ ` beqz {emit_reg reg_tmp}, {emit_label lbl}\n` ++ end ++ | Lcondbranch3(lbl0, lbl1, lbl2) -> ++ ` addi.d {emit_reg reg_tmp}, {emit_reg i.arg.(0)}, -1\n`; ++ begin match lbl0 with ++ | None -> () ++ | Some lbl -> ` bltz {emit_reg reg_tmp}, {emit_label lbl}\n` ++ end; ++ begin match lbl1 with ++ | None -> () ++ | Some lbl -> ` beqz {emit_reg reg_tmp}, {emit_label lbl}\n` ++ end; ++ begin match lbl2 with ++ | None -> () ++ | Some lbl -> ` bgtz {emit_reg reg_tmp}, {emit_label lbl}\n` ++ end ++ | Lswitch jumptbl -> ++ let lbl = new_label() in ++ ` la.local {emit_reg reg_tmp}, {emit_label lbl}\n`; ++ ` slli.d {emit_reg reg_tmp2}, {emit_reg i.arg.(0)}, 2\n`; ++ ` add.d {emit_reg reg_tmp}, {emit_reg reg_tmp}, {emit_reg reg_tmp2}\n`; ++ ` jr {emit_reg reg_tmp}\n`; ++ `{emit_label lbl}:\n`; ++ for i = 0 to Array.length jumptbl - 1 do ++ ` b {emit_label jumptbl.(i)}\n` ++ done ++ | Lentertrap -> ++ () ++ | Ladjust_trap_depth { delta_traps } -> ++ (* each trap occupes 16 bytes on the stack *) ++ let delta = 16 * delta_traps in ++ cfi_adjust_cfa_offset delta; ++ env.stack_offset <- env.stack_offset + delta ++ | Lpushtrap {lbl_handler} -> ++ ` la.local {emit_reg reg_tmp}, {emit_label lbl_handler}\n`; ++ ` addi.d $sp, $sp, -16\n`; ++ env.stack_offset <- env.stack_offset + 16; ++ ` st.d {emit_reg reg_trap_ptr}, $sp, 0\n`; ++ ` st.d {emit_reg reg_tmp}, $sp, 8\n`; ++ cfi_adjust_cfa_offset 16; ++ ` move {emit_reg reg_trap_ptr}, $sp\n` ++ | Lpoptrap -> ++ ` ld.d {emit_reg reg_trap_ptr}, $sp, 0\n`; ++ ` addi.d $sp, $sp, 16\n`; ++ cfi_adjust_cfa_offset (-16); ++ env.stack_offset <- env.stack_offset - 16 ++ | Lraise k -> ++ begin match k with ++ | Lambda.Raise_regular -> ++ ` {emit_call "caml_raise_exn"}\n`; ++ record_frame env Reg.Set.empty (Dbg_raise i.dbg) ++ | Lambda.Raise_reraise -> ++ ` {emit_call "caml_reraise_exn"}\n`; ++ record_frame env Reg.Set.empty (Dbg_raise i.dbg) ++ | Lambda.Raise_notrace -> ++ ` move $sp, {emit_reg reg_trap_ptr}\n`; ++ ` ld.d {emit_reg reg_tmp}, $sp, 8\n`; ++ ` ld.d {emit_reg reg_trap_ptr}, $sp, 0\n`; ++ ` addi.d $sp, $sp, 16\n`; ++ ` jr {emit_reg reg_tmp}\n` ++ end ++ ++(* Emit a sequence of instructions *) ++ ++let rec emit_all env = function ++ | {desc = Lend} -> () | i -> emit_instr env i; emit_all env i.next ++ ++(* Emission of a function declaration *) ++ ++let fundecl fundecl = ++ let env = mk_env fundecl in ++ ` .globl {emit_symbol fundecl.fun_name}\n`; ++ ` .type {emit_symbol fundecl.fun_name}, @function\n`; ++ ` {emit_string code_space}\n`; ++ ` .align 2\n`; ++ `{emit_symbol fundecl.fun_name}:\n`; ++ emit_debug_info fundecl.fun_dbg; ++ cfi_startproc(); ++ ++ (* Dynamic stack checking *) ++ let stack_threshold_size = Config.stack_threshold * 8 in (* bytes *) ++ let { max_frame_size; contains_nontail_calls } = ++ preproc_stack_check ++ ~fun_body:fundecl.fun_body ~frame_size:(frame_size env) ~trap_size:16 ++ in ++ let handle_overflow = ref None in ++ if contains_nontail_calls || max_frame_size >= stack_threshold_size then begin ++ let overflow = new_label () and ret = new_label () in ++ let threshold_offset = Domainstate.stack_ctx_words * 8 + stack_threshold_size in ++ let f = max_frame_size + threshold_offset in ++ let offset = Domainstate.(idx_of_field Domain_current_stack) * 8 in ++ ` ld.d {emit_reg reg_tmp}, {emit_reg reg_domain_state_ptr}, {emit_int offset}\n`; ++ emit_addimm reg_tmp reg_tmp f; ++ ` bltu $sp, {emit_reg reg_tmp}, {emit_label overflow}\n`; ++ `{emit_label ret}:\n`; ++ handle_overflow := Some (overflow, ret) ++ end; ++ ++ emit_all env fundecl.fun_body; ++ List.iter emit_call_gc env.call_gc_sites; ++ List.iter emit_call_bound_error env.bound_error_sites; ++ ++ begin match !handle_overflow with ++ | None -> () ++ | Some (overflow, ret) -> ++ `{emit_label overflow}:\n`; ++ (* Pass the desired frame size on the stack, since all of the ++ argument-passing registers may be in use. *) ++ let s = Config.stack_threshold + max_frame_size / 8 in ++ ` li.d {emit_reg reg_tmp}, {emit_int s}\n`; ++ ` addi.d $sp, $sp, -16\n`; ++ ` st.d {emit_reg reg_tmp}, $sp, 0\n`; ++ ` st.d $ra, $sp, 8\n`; ++ ` {emit_call "caml_call_realloc_stack"}\n`; ++ ` ld.d $ra, $sp, 8\n`; ++ ` addi.d $sp, $sp, 16\n`; ++ ` b {emit_label ret}\n` ++ end; ++ ++ cfi_endproc(); ++ ` .size {emit_symbol fundecl.fun_name}, .-{emit_symbol fundecl.fun_name}\n`; ++ (* Emit the float literals *) ++ if env.float_literals <> [] then begin ++ ` {emit_string rodata_space}\n`; ++ ` .align 3\n`; ++ List.iter ++ (fun {fl; lbl} -> ++ `{emit_label lbl}:\n`; ++ emit_float64_directive ".quad" fl) ++ env.float_literals; ++ end ++ ++(* Emission of data *) ++ ++let declare_global_data s = ++ ` .globl {emit_symbol s}\n`; ++ ` .type {emit_symbol s}, @object\n` ++ ++let emit_item = function ++ | Cglobal_symbol s -> ++ declare_global_data s ++ | Cdefine_symbol s -> ++ `{emit_symbol s}:\n`; ++ | Cint8 n -> ++ ` .byte {emit_int n}\n` ++ | Cint16 n -> ++ ` .short {emit_int n}\n` ++ | Cint32 n -> ++ ` .long {emit_nativeint n}\n` ++ | Cint n -> ++ ` .quad {emit_nativeint n}\n` ++ | Csingle f -> ++ emit_float32_directive ".long" (Int32.bits_of_float f) ++ | Cdouble f -> ++ emit_float64_directive ".quad" (Int64.bits_of_float f) ++ | Csymbol_address s -> ++ ` .quad {emit_symbol s}\n` ++ | Cstring s -> ++ emit_bytes_directive " .byte " s ++ | Cskip n -> ++ if n > 0 then ` .space {emit_int n}\n` ++ | Calign n -> ++ ` .align {emit_int (Misc.log2 n)}\n` ++ ++let data l = ++ ` {emit_string data_space}\n`; ++ List.iter emit_item l ++ ++(* Beginning / end of an assembly file *) ++ ++let begin_assembly() = ++ if !Clflags.dlcode || !Clflags.pic_code then ` \n`; (* FIXME *) ++ ` .file \"\"\n`; (* PR#7073 *) ++ reset_debug_info (); ++ (* Emit the beginning of the segments *) ++ let lbl_begin = Compilenv.make_symbol (Some "data_begin") in ++ ` {emit_string data_space}\n`; ++ declare_global_data lbl_begin; ++ `{emit_symbol lbl_begin}:\n`; ++ let lbl_begin = Compilenv.make_symbol (Some "code_begin") in ++ ` {emit_string code_space}\n`; ++ declare_global_data lbl_begin; ++ `{emit_symbol lbl_begin}:\n` ++ ++let end_assembly() = ++ ` {emit_string code_space}\n`; ++ let lbl_end = Compilenv.make_symbol (Some "code_end") in ++ declare_global_data lbl_end; ++ `{emit_symbol lbl_end}:\n`; ++ ` .long 0\n`; ++ ` {emit_string data_space}\n`; ++ let lbl_end = Compilenv.make_symbol (Some "data_end") in ++ declare_global_data lbl_end; ++ ` .quad 0\n`; (* PR#6329 *) ++ `{emit_symbol lbl_end}:\n`; ++ ` .quad 0\n`; ++ (* Emit the frame descriptors *) ++ ` {emit_string data_space}\n`; (* not rodata because relocations inside *) ++ let lbl = Compilenv.make_symbol (Some "frametable") in ++ declare_global_data lbl; ++ `{emit_symbol lbl}:\n`; ++ emit_frames ++ { efa_code_label = (fun l -> ` .quad {emit_label l}\n`); ++ efa_data_label = (fun l -> ` .quad {emit_label l}\n`); ++ efa_8 = (fun n -> ` .byte {emit_int n}\n`); ++ efa_16 = (fun n -> ` .short {emit_int n}\n`); ++ efa_32 = (fun n -> ` .long {emit_int32 n}\n`); ++ efa_word = (fun n -> ` .quad {emit_int n}\n`); ++ efa_align = (fun n -> ` .align {emit_int (Misc.log2 n)}\n`); ++ efa_label_rel = (fun lbl ofs -> ++ ` .long ({emit_label lbl} - .) + {emit_int32 ofs}\n`); ++ efa_def_label = (fun l -> `{emit_label l}:\n`); ++ efa_string = (fun s -> emit_bytes_directive " .byte " (s ^ "\000")) ++ } +diff -Nurp ocaml-5.0.0/asmcomp/loongarch64/NOTES.md ocaml-base-compiler.5.0.0/asmcomp/loongarch64/NOTES.md +--- ocaml-5.0.0/asmcomp/loongarch64/NOTES.md 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/asmcomp/loongarch64/NOTES.md 2023-06-28 14:04:01.000000000 +0000 +@@ -0,0 +1,11 @@ ++# Supported platforms ++ ++LoongArch in 64-bit mode ++ ++# Reference documents ++ ++* Instruction set specification: ++ - https://loongson.github.io/LoongArch-Documentation/LoongArch-Vol1-EN.html ++ ++* ELF ABI specification: ++ - https://loongson.github.io/LoongArch-Documentation/LoongArch-ELF-ABI-EN.html +diff -Nurp ocaml-5.0.0/asmcomp/loongarch64/proc.ml ocaml-base-compiler.5.0.0/asmcomp/loongarch64/proc.ml +--- ocaml-5.0.0/asmcomp/loongarch64/proc.ml 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/asmcomp/loongarch64/proc.ml 2023-06-28 14:38:45.000000000 +0000 +@@ -0,0 +1,319 @@ ++# 2 "asmcomp/loongarch64/proc.ml" ++(**************************************************************************) ++(* *) ++(* OCaml *) ++(* *) ++(* yala *) ++(* *) ++(* Copyright © 2008-2023 LOONGSON *) ++(* *) ++(* All rights reserved. This file is distributed under the terms of *) ++(* the GNU Lesser General Public License version 2.1, with the *) ++(* special exception on linking described in the file LICENSE. *) ++(* *) ++(**************************************************************************) ++ ++(* Description of the LoongArch *) ++ ++open Misc ++open Cmm ++open Reg ++open Arch ++open Mach ++ ++(* Instruction selection *) ++ ++let word_addressed = false ++ ++(* Registers available for register allocation *) ++ ++(* Integer register map ++ -------------------- ++ ++ zero always zero ++ ra return address ++ sp, gp, tp stack pointer, global pointer, thread pointer ++ a0-a7 0-7 arguments/results ++ s2-s6 8-12 arguments/results (preserved by C) ++ t2-t6 13-17 temporary ++ s0 18 general purpose (preserved by C) ++ t0, t1 19-20 temporaries (used by call veneers) ++ s1 21 trap pointer (preserved by C) ++ s7 22 allocation pointer (preserved by C) ++ s8 23 domain pointer (preserved by C) ++ ++ Floating-point register map ++ --------------------------- ++ ++ f0-f7 100-107 arguments ++ f0-f1 100-101 arguments/results ++ f8-f23 108-123 temporary ++ f24-f31 124-131 subroutine register variables ++ ++ Additional notes ++ ---------------- ++ ++ - t1 is used by the code generator, so not available for register ++ allocation. ++ ++ - t0-t6 may be used by PLT stubs, so should not be used to pass ++ arguments and may be clobbered by [Ialloc] in the presence of dynamic ++ linking. ++*) ++ ++let int_reg_name = ++ [|"$a0"; "$a1"; "$a2"; "$a3"; "$a4"; "$a5"; "$a6"; "$a7"; (* 0- 7 *) ++ "$s2"; "$s3"; "$s4"; "$s5"; "$s6"; (* 8-12*) ++ "$t2"; "$t3"; "$t4"; "$t5"; "$t6"; "$t7"; "$t8"; (*13-19*) ++ "$s0"; (*20*) ++ "$t0"; "$t1"; (*21-22*) ++ "$s1"; "$s7"; "$s8"; (*23-25*) ++ |] ++ ++let float_reg_name = ++ [| "$ft0"; "$ft1"; "$ft2"; "$ft3"; "$ft4"; "$ft5"; "$ft6";"$ft7"; ++ "$fs0"; "$fs1"; ++ "$fa0"; "$fa1"; "$fa2"; "$fa3"; "$fa4"; "$fa5"; "$fa6"; "$fa7"; ++ "$fs2"; "$fs3"; "$fs4"; "$fs5"; "$fs6"; "$fs7"; ++ "$ft8"; "$ft9"; "$ft10"; "$ft11";"$ft12";"$ft13";"$ft14";"$ft15"; |] ++let num_register_classes = 2 ++ ++let register_class r = ++ match r.typ with ++ | Val | Int | Addr -> 0 ++ | Float -> 1 ++ ++(* first 19 int regs allocatable; all float regs allocatable *) ++let num_available_registers = [| 21; 32 |] ++ ++let first_available_register = [| 0; 100 |] ++ ++let register_name r = ++ if r < 100 then int_reg_name.(r) else float_reg_name.(r - 100) ++ ++let rotate_registers = true ++ ++(* Representation of hard registers by pseudo-registers *) ++ ++let hard_int_reg = ++ let v = Array.make 26 Reg.dummy in ++ for i = 0 to 25 do ++ v.(i) <- Reg.at_location Int (Reg i) ++ done; ++ v ++ ++let hard_float_reg = ++ let v = Array.make 32 Reg.dummy in ++ for i = 0 to 31 do ++ v.(i) <- Reg.at_location Float (Reg(100 + i)) ++ done; ++ v ++ ++let all_phys_regs = ++ Array.append hard_int_reg hard_float_reg ++ ++let phys_reg n = ++ if n < 100 then hard_int_reg.(n) else hard_float_reg.(n - 100) ++ ++let stack_slot slot ty = ++ Reg.at_location ty (Stack slot) ++ ++(* Calling conventions *) ++ ++let size_domainstate_args = 64 * size_int ++ ++let calling_conventions ++ first_int last_int first_float last_float make_stack first_stack arg = ++ let loc = Array.make (Array.length arg) Reg.dummy in ++ let int = ref first_int in ++ let float = ref first_float in ++ let ofs = ref first_stack in ++ for i = 0 to Array.length arg - 1 do ++ match arg.(i) with ++ | Val | Int | Addr as ty -> ++ if !int <= last_int then begin ++ loc.(i) <- phys_reg !int; ++ incr int ++ end else begin ++ loc.(i) <- stack_slot (make_stack !ofs) ty; ++ ofs := !ofs + size_int ++ end ++ | Float -> ++ if !float <= last_float then begin ++ loc.(i) <- phys_reg !float; ++ incr float ++ end else begin ++ loc.(i) <- stack_slot (make_stack !ofs) Float; ++ ofs := !ofs + size_float ++ end ++ done; ++ (loc, Misc.align (max 0 !ofs) 16) (* Keep stack 16-aligned. *) ++ ++let incoming ofs = ++ if ofs >= 0 ++ then Incoming ofs ++ else Domainstate (ofs + size_domainstate_args) ++let outgoing ofs = ++ if ofs >= 0 ++ then Outgoing ofs ++ else Domainstate (ofs + size_domainstate_args) ++let not_supported _ = fatal_error "Proc.loc_results: cannot call" ++ ++let max_arguments_for_tailcalls = 13 (* in regs *) + 64 (* in domain state *) ++ ++(* OCaml calling convention: ++ first integer args in a0 .. a7, s2 .. s6 ++ first float args in fa0 .. fa7, fs2 .. fs9 ++ remaining args in domain state area, then on stack. ++ Return values in a0 .. a7, s2 .. s6 or fa0 .. fa7, fs2 .. fs9. *) ++ ++let loc_arguments arg = ++ calling_conventions 0 12 110 121 outgoing (- size_domainstate_args) arg ++ ++let loc_parameters arg = ++ let (loc, _ofs) = ++ calling_conventions 0 12 110 121 incoming (- size_domainstate_args) arg ++ in ++ loc ++ ++let loc_results res = ++ let (loc, _ofs) = ++ calling_conventions 0 12 110 121 not_supported 0 res ++ in ++ loc ++ ++(* C calling convention: ++ first integer args in a0 .. a7 ++ first float args in fa0 .. fa7 ++ remaining args on stack. ++ A FP argument can be passed in an integer register if all FP registers ++ are exhausted but integer registers remain. ++ Return values in a0 .. a1 or fa0 .. fa1. *) ++ ++let external_calling_conventions ++ first_int last_int first_float last_float make_stack arg = ++ let loc = Array.make (Array.length arg) [| Reg.dummy |] in ++ let int = ref first_int in ++ let float = ref first_float in ++ let ofs = ref 0 in ++ for i = 0 to Array.length arg - 1 do ++ match arg.(i) with ++ | Val | Int | Addr as ty -> ++ if !int <= last_int then begin ++ loc.(i) <- [| phys_reg !int |]; ++ incr int ++ end else begin ++ loc.(i) <- [| stack_slot (make_stack !ofs) ty |]; ++ ofs := !ofs + size_int ++ end ++ | Float -> ++ if !float <= last_float then begin ++ loc.(i) <- [| phys_reg !float |]; ++ incr float ++ end else begin ++ loc.(i) <- [| stack_slot (make_stack !ofs) Float |]; ++ ofs := !ofs + size_float ++ end ++ done; ++ (loc, Misc.align !ofs 16) (* Keep stack 16-aligned. *) ++ ++let loc_external_arguments ty_args = ++ let arg = Cmm.machtype_of_exttype_list ty_args in ++ external_calling_conventions 0 7 110 117 outgoing arg ++ ++let loc_external_results res = ++ let (loc, _ofs) = calling_conventions 0 1 110 111 not_supported 0 res ++ in loc ++ ++(* Exceptions are in a0 *) ++ ++let loc_exn_bucket = phys_reg 0 ++ ++(* Volatile registers: none *) ++ ++let regs_are_volatile _ = false ++ ++(* Registers destroyed by operations *) ++ ++let destroyed_at_c_noalloc_call = ++ (* s0-s8 and fs0-fs7 are callee-save, but s0 is ++ used to preserve OCaml sp. *) ++ Array.of_list(List.map phys_reg ++ [0; 1; 2; 3; 4; 5; 6; 7; 13; 14; 15; 16; 17; 18; 19; 20;(*s0*) ++ 100; 101; 102; 103; 104; 105; 106; 107; 110; 111; 112; 113; 114; 115; 116; ++ 117; 124; 125; 126; 127; 128; 129; 130; 131]) ++ ++let destroyed_at_alloc = ++ (* t0-t6 are used for PLT stubs *) ++ if !Clflags.dlcode then Array.map phys_reg [|13; 14; 15; 16; 17; 18; 19|] ++ else [| phys_reg 13 |] (* t2 is used to pass the argument to caml_allocN *) ++ ++let destroyed_at_oper = function ++ | Iop(Icall_ind | Icall_imm _) -> all_phys_regs ++ | Iop(Iextcall{alloc; stack_ofs; _}) -> ++ assert (stack_ofs >= 0); ++ if alloc || stack_ofs > 0 then all_phys_regs ++ else destroyed_at_c_noalloc_call ++ | Iop(Ialloc _) | Iop(Ipoll _) -> destroyed_at_alloc ++ | Iop(Istore(Single, _, _)) -> [| phys_reg 100 |] ++ | Iop(Ifloatofint | Iintoffloat) -> [| phys_reg 100 |] ++ | _ -> [| |] ++ ++let destroyed_at_raise = all_phys_regs ++ ++let destroyed_at_reloadretaddr = [| |] ++ ++(* Maximal register pressure *) ++ ++let safe_register_pressure = function ++ | Iextcall _ -> 5 (*9-3 s0~s8 - s7 - s8 - s1 - s0*) ++ | _ -> 21 ++ ++let max_register_pressure = function ++ | Iextcall _ -> [| 5; 8 |] (* 6 integer callee-saves, 8 FP callee-saves *) ++ | _ -> [| 21; 30 |] ++ ++(* Layout of the stack *) ++ ++let frame_required fd = ++ fd.fun_contains_calls ++ || fd.fun_num_stack_slots.(0) > 0 ++ || fd.fun_num_stack_slots.(1) > 0 ++ ++let prologue_required fd = ++ frame_required fd ++ ++ (* FIXME *) ++let int_dwarf_reg_numbers = ++ [| 4; 5; 6; 7; 8; 9; 10; 11; ++ 23; 24; 25; 26; 27; 28; 29; 30; ++ 14; 15; 16; 17; 18; ++ 31; ++ 12; 13; ++ 19; 20; ++ |] ++ ++let float_dwarf_reg_numbers = ++ [| 32; 33; 34; 35; 36; 37; 38; 39; ++ 40; 41; ++ 42; 43; 44; 45; 46; 47; 48; 49; ++ 50; 51; 52; 53; 54; 55; 56; 57; ++ 58; 59; ++ 60; 61; 62; 63; ++ |] ++ ++let dwarf_register_numbers ~reg_class = ++ match reg_class with ++ | 0 -> int_dwarf_reg_numbers ++ | 1 -> float_dwarf_reg_numbers ++ | _ -> Misc.fatal_errorf "Bad register class %d" reg_class ++ ++let stack_ptr_dwarf_register_number = 2 ++ ++(* Calling the assembler *) ++ ++let assemble_file infile outfile = ++ Ccomp.command ++ (Config.asm ^ " -o " ^ Filename.quote outfile ^ " " ^ Filename.quote infile) ++ ++let init () = () +diff -Nurp ocaml-5.0.0/asmcomp/loongarch64/selection.ml ocaml-base-compiler.5.0.0/asmcomp/loongarch64/selection.ml +--- ocaml-5.0.0/asmcomp/loongarch64/selection.ml 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/asmcomp/loongarch64/selection.ml 2023-06-28 14:04:14.000000000 +0000 +@@ -0,0 +1,70 @@ ++# 2 "asmcomp/loongarch64/selection.ml" ++(**************************************************************************) ++(* *) ++(* OCaml *) ++(* *) ++(* yala *) ++(* *) ++(* Copyright © 2008-2023 LOONGSON *) ++(* *) ++(* All rights reserved. This file is distributed under the terms of *) ++(* the GNU Lesser General Public License version 2.1, with the *) ++(* special exception on linking described in the file LICENSE. *) ++(* *) ++(**************************************************************************) ++ ++(* Instruction selection for the LoongArch processor *) ++ ++open Cmm ++open Arch ++open Mach ++ ++(* Instruction selection *) ++ ++class selector = object ++ ++inherit Selectgen.selector_generic as super ++ ++(* LoongArch does not support immediate operands for comparison operators *) ++method is_immediate_test _cmp _n = false ++ ++method! is_immediate op n = ++ match op with ++ | Iadd | Iand | Ior | Ixor -> is_immediate n ++ (* sub immediate is turned into add immediate opposite *) ++ | Isub -> is_immediate (-n) ++ | _ -> super#is_immediate op n ++ ++method select_addressing _ = function ++ | Cop(Cadda, [arg; Cconst_int (n, _)], _) when is_immediate n -> ++ (Iindexed n, arg) ++ | Cop(Cadda, [arg1; Cop(Caddi, [arg2; Cconst_int (n, _)], _)], dbg) ++ when is_immediate n -> ++ (Iindexed n, Cop(Caddi, [arg1; arg2], dbg)) ++ | arg -> ++ (Iindexed 0, arg) ++ ++method! select_operation op args dbg = ++ match (op, args) with ++ (* Recognize (neg-)mult-add and (neg-)mult-sub instructions *) ++ | (Caddf, [Cop(Cmulf, [arg1; arg2], _); arg3]) ++ | (Caddf, [arg3; Cop(Cmulf, [arg1; arg2], _)]) -> ++ (Ispecific (Imultaddf false), [arg1; arg2; arg3]) ++ | (Csubf, [Cop(Cmulf, [arg1; arg2], _); arg3]) -> ++ (Ispecific (Imultsubf false), [arg1; arg2; arg3]) ++ | (Cnegf, [Cop(Csubf, [Cop(Cmulf, [arg1; arg2], _); arg3], _)]) -> ++ (Ispecific (Imultsubf true), [arg1; arg2; arg3]) ++ | (Cnegf, [Cop(Caddf, [Cop(Cmulf, [arg1; arg2], _); arg3], _)]) -> ++ (Ispecific (Imultaddf true), [arg1; arg2; arg3]) ++ | (Cstore (Word_int | Word_val as memory_chunk, Assignment), [arg1; arg2]) -> ++ (* Use trivial addressing mode for non-initializing stores *) ++ (Istore (memory_chunk, Iindexed 0, true), [arg2; arg1]) ++ | (Cextcall("sqrt", _, _, _), []) -> ++ (Ispecific Isqrtf, args) ++ | _ -> ++ super#select_operation op args dbg ++ ++end ++ ++let fundecl ~future_funcnames f = ++ (new selector)#emit_fundecl ~future_funcnames f +diff -Nurp ocaml-5.0.0/configure.ac ocaml-base-compiler.5.0.0/configure.ac +--- ocaml-5.0.0/configure.ac 2022-12-15 13:27:03.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/configure.ac 2023-06-28 14:20:47.000000000 +0000 +@@ -1079,7 +1079,8 @@ AS_IF([test x"$supports_shared_libraries + [aarch64-*-freebsd*], [natdynlink=true], + [aarch64-*-openbsd*], [natdynlink=true], + [aarch64-*-netbsd*], [natdynlink=true], +- [riscv*-*-linux*], [natdynlink=true])]) ++ [riscv*-*-linux*], [natdynlink=true], ++ [loongarch*-*-linux*], [natdynlink=true])]) + + AS_CASE([$enable_native_toplevel,$natdynlink], + [yes,false], +@@ -1199,7 +1200,9 @@ AS_CASE([$host], + [x86_64-*-cygwin*], + [arch=amd64; system=cygwin], + [riscv64-*-linux*], +- [arch=riscv; model=riscv64; system=linux] ++ [arch=riscv; model=riscv64; system=linux], ++ [loongarch64-*-linux*], ++ [has_native_backend=yes; arch=loongarch64; system=linux] + ) + + AS_CASE([$ccomptype], +@@ -1302,7 +1305,7 @@ default_aspp="$CC -c" + AS_CASE([$as_target,$ocaml_cv_cc_vendor], + [*-*-linux*,gcc-*], + [AS_CASE([$as_cpu], +- [x86_64|arm*|aarch64*|i[[3-6]]86|riscv*], ++ [x86_64|arm*|aarch64*|i[[3-6]]86|riscv*|loongarch*], + [default_as="${toolpref}as"])], + [i686-pc-windows,*], + [default_as="ml -nologo -coff -Cp -c -Fo" +diff -Nurp ocaml-5.0.0/Makefile ocaml-base-compiler.5.0.0/Makefile +--- ocaml-5.0.0/Makefile 2022-12-15 13:27:03.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/Makefile 2023-06-28 14:04:56.000000000 +0000 +@@ -528,6 +528,14 @@ partialclean:: + + beforedepend:: lambda/runtimedef.ml + ++asmcomp/loongarch64/CSE.ml: asmcomp/riscv/CSE.ml ++ cp $< $@ ++asmcomp/loongarch64/reload.ml: asmcomp/riscv/reload.ml ++ cp $< $@ ++asmcomp/loongarch64/scheduling.ml: asmcomp/riscv/scheduling.ml ++ cp $< $@ ++ ++ + # Choose the right machine-dependent files + + asmcomp/arch.ml: asmcomp/$(ARCH)/arch.ml +@@ -1031,6 +1039,7 @@ clean:: + rm -f runtime/domain_state*.inc + rm -rf $(DEPDIR) + rm -f stdlib/libcamlrun.a stdlib/libcamlrun.lib ++ rm -f asmcomp/loongarch64/CSE.ml asmcomp/loongarch64/reload.ml asmcomp/loongarch64/scheduling.ml + + .PHONY: runtimeopt + runtimeopt: stdlib/libasmrun.$(A) +diff -Nurp ocaml-5.0.0/runtime/caml/stack.h ocaml-base-compiler.5.0.0/runtime/caml/stack.h +--- ocaml-5.0.0/runtime/caml/stack.h 2022-12-15 13:27:03.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/runtime/caml/stack.h 2023-06-28 14:04:01.000000000 +0000 +@@ -70,6 +70,17 @@ + #define Saved_return_address(sp) *((intnat *)((sp) - 8)) + #endif + ++#ifdef TARGET_loongarch64 ++/* Size of the gc_regs structure, in words. ++ See loongarch64.S and loongarch64/proc.ml for the indices */ ++#define Wosize_gc_regs (2 + 23 /* int regs */ + 24 /* float regs */) ++#define Saved_return_address(sp) *((intnat *)((sp) - 8)) ++/* LoongArch does not use a frame pointer, but requires the stack to be ++ 16-aligned, so when pushing the return address to the stack there ++ is an extra word of padding after it that needs to be skipped when ++ walking the stack. */ ++#define Pop_frame_pointer(sp) sp += sizeof(value) ++#endif + /* Declaration of variables used in the asm code */ + extern value * caml_globals[]; + extern intnat caml_globals_inited; +diff -Nurp ocaml-5.0.0/runtime/loongarch64.S ocaml-base-compiler.5.0.0/runtime/loongarch64.S +--- ocaml-5.0.0/runtime/loongarch64.S 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/runtime/loongarch64.S 2023-06-28 14:52:42.000000000 +0000 +@@ -0,0 +1,827 @@ ++/**************************************************************************/ ++/* */ ++/* OCaml */ ++/* */ ++/* yala */ ++/* */ ++/* Copyright © 2008-2023 LOONGSON */ ++/* */ ++/* All rights reserved. This file is distributed under the terms of */ ++/* the GNU Lesser General Public License version 2.1, with the */ ++/* $special exception on linking described in the file LICENSE. */ ++/* */ ++/**************************************************************************/ ++ ++/* Asm part of the runtime system, LoongArch processor, 64-bit mode */ ++/* Must be preprocessed by cpp */ ++ ++#include "caml/m.h" ++ ++#define DOMAIN_STATE_PTR $s8 ++#define TRAP_PTR $s1 ++#define ALLOC_PTR $s7 ++#define ADDITIONAL_ARG $t2 ++#define STACK_ARG_BEGIN $s3 ++#define STACK_ARG_END $s4 ++#define TMP $t0 ++#define TMP2 $t1 ++ ++#define C_ARG_1 $a0 ++#define C_ARG_2 $a1 ++#define C_ARG_3 $a2 ++#define C_ARG_4 $a3 ++ ++/* Support for CFI directives */ ++//FIXME ++#define CFI_STARTPROC ++#define CFI_ENDPROC ++#define CFI_ADJUST(n) ++#define CFI_REGISTER(r1,r2) ++#define CFI_OFFSET(r,n) ++#define CFI_DEF_CFA_REGISTER(r) ++#define CFI_REMEMBER_STATE ++#define CFI_RESTORE_STATE ++ ++ .set domain_curr_field, 0 ++ .set domain_curr_cnt, 0 ++#define DOMAIN_STATE(c_type, name) \ ++ .equ domain_field_caml_##name, domain_curr_field ; \ ++ .set domain_curr_cnt, domain_curr_cnt + 1; \ ++ .set domain_curr_field, domain_curr_cnt*8 ++#include "../runtime/caml/domain_state.tbl" ++#undef DOMAIN_STATE ++ ++#define Caml_state(var) DOMAIN_STATE_PTR, domain_field_caml_##var ++ ++/* Globals and labels */ ++#define L(lbl) .L##lbl ++ ++#define FUNCTION(name) \ ++ .align 2; \ ++ .globl name; \ ++ .type name, @function; \ ++name:; \ ++ CFI_STARTPROC ++ ++#define END_FUNCTION(name) \ ++ CFI_ENDPROC; \ ++ .size name, .-name ++ ++#if defined(__PIC__) ++#define PLT(r) %plt(r) ++#else ++#define PLT(r) r ++#endif ++ ++#define OBJECT(name) \ ++ .data; \ ++ .align 3; \ ++ .globl name; \ ++ .type name, @object; \ ++name: ++#define END_OBJECT(name) \ ++ .size name, .-name ++ ++/* Stack switching operations */ ++ ++/* struct stack_info */ ++#define Stack_sp(reg) reg, 0 ++#define Stack_exception(reg) reg, 8 ++#define Stack_handler(reg) reg, 16 ++#define Stack_handler_from_cont(reg) reg, 15 ++ ++/* struct c_stack_link */ ++#define Cstack_stack(reg) reg, 0 ++#define Cstack_sp(reg) reg, 8 ++#define Cstack_prev(reg) reg, 16 ++ ++/* struct stack_handler */ ++#define Handler_value(reg) reg, 0 ++#define Handler_exception(reg) reg, 8 ++#define Handler_effect(reg) reg, 16 ++#define Handler_parent(reg) reg, 24 ++ ++/* Switch from OCaml to C stack. */ ++.macro SWITCH_OCAML_TO_C ++ /* Fill in Caml_state->current_stack->$sp */ ++ ld.d TMP, Caml_state(current_stack) ++ st.d $sp, Stack_sp(TMP) ++ /* Fill in Caml_state->c_stack */ ++ ld.d TMP2, Caml_state(c_stack) ++ st.d TMP, Cstack_stack(TMP2) ++ st.d $sp, Cstack_sp(TMP2) ++ /* Switch to C stack */ ++ move $sp, TMP2 ++ CFI_REMEMBER_STATE ++.endm ++ ++/* Switch from C to OCaml stack. */ ++.macro SWITCH_C_TO_OCAML ++ ld.d $sp, Cstack_sp($sp) ++ CFI_RESTORE_STATE ++.endm ++ ++/* Save all of the registers that may be in use to a free gc_regs bucket ++ and store ALLOC_PTR and TRAP_PTR back to Caml_state ++ At the end the saved registers are placed in Caml_state(gc_regs) ++ */ ++.macro SAVE_ALL_REGS ++ /* First, save the young_ptr & exn_handler */ ++ st.d ALLOC_PTR, Caml_state(young_ptr) ++ st.d TRAP_PTR, Caml_state(exn_handler) ++ /* Now, use TMP to point to the gc_regs bucket */ ++ ld.d TMP, Caml_state(gc_regs_buckets) ++ ld.d TMP2, TMP, 0 /* next ptr */ ++ st.d TMP2, Caml_state(gc_regs_buckets) ++ /* Save allocatable integer registers Must be in ++ the same order as proc.ml int_reg_name*/ ++ st.d $a0, TMP, 2*8 ++ st.d $a1, TMP, 3*8 ++ st.d $a2, TMP, 4*8 ++ st.d $a3, TMP, 5*8 ++ st.d $a4, TMP, 6*8 ++ st.d $a5, TMP, 7*8 ++ st.d $a6, TMP, 8*8 ++ st.d $a7, TMP, 9*8 ++ st.d $s2, TMP, 10*8 ++ st.d $s3, TMP, 11*8 ++ st.d $s4, TMP, 12*8 ++ st.d $s5, TMP, 13*8 ++ st.d $s6, TMP, 14*8 ++ st.d $t2, TMP, 15*8 ++ st.d $t3, TMP, 16*8 ++ st.d $t4, TMP, 17*8 ++ st.d $t5, TMP, 18*8 ++ st.d $t6, TMP, 19*8 ++ st.d $t7, TMP, 20*8 ++ st.d $t8, TMP, 21*8 ++ st.d $s0, TMP, 22*8 ++ /* Save caller-save floating-point registers ++ (callee-saves are preserved by C functions) */ ++ fst.d $ft0, TMP, 23*8 ++ fst.d $ft1, TMP, 24*8 ++ fst.d $ft2, TMP, 25*8 ++ fst.d $ft3, TMP, 26*8 ++ fst.d $ft4, TMP, 27*8 ++ fst.d $ft5, TMP, 28*8 ++ fst.d $ft6, TMP, 29*8 ++ fst.d $ft7, TMP, 30*8 ++ fst.d $fa0, TMP, 31*8 ++ fst.d $fa1, TMP, 32*8 ++ fst.d $fa2, TMP, 33*8 ++ fst.d $fa3, TMP, 34*8 ++ fst.d $fa4, TMP, 35*8 ++ fst.d $fa5, TMP, 36*8 ++ fst.d $fa6, TMP, 37*8 ++ fst.d $fa7, TMP, 38*8 ++ fst.d $ft8, TMP, 39*8 ++ fst.d $ft9, TMP, 40*8 ++ fst.d $ft10, TMP, 41*8 ++ fst.d $ft11, TMP, 42*8 ++ fst.d $ft12, TMP, 43*8 ++ fst.d $ft13, TMP, 44*8 ++ fst.d $ft14, TMP, 45*8 ++ fst.d $ft15, TMP, 46*8 ++ addi.d TMP, TMP, 16 ++ st.d TMP, Caml_state(gc_regs) ++.endm ++ ++/* Undo SAVE_ALL_REGS by loading the registers saved in Caml_state(gc_regs) ++ and refreshing ALLOC_PTR & TRAP_PTR from Caml_state */ ++.macro RESTORE_ALL_REGS ++ /* Restore $a0, $a1, freeing up the next ptr slot */ ++ ld.d TMP, Caml_state(gc_regs) ++ addi.d TMP, TMP, -16 ++ /* Restore registers */ ++ ld.d $a0, TMP, 2*8 ++ ld.d $a1, TMP, 3*8 ++ ld.d $a2, TMP, 4*8 ++ ld.d $a3, TMP, 5*8 ++ ld.d $a4, TMP, 6*8 ++ ld.d $a5, TMP, 7*8 ++ ld.d $a6, TMP, 8*8 ++ ld.d $a7, TMP, 9*8 ++ ld.d $s2, TMP, 10*8 ++ ld.d $s3, TMP, 11*8 ++ ld.d $s4, TMP, 12*8 ++ ld.d $s5, TMP, 13*8 ++ ld.d $s6, TMP, 14*8 ++ ld.d $t2, TMP, 15*8 ++ ld.d $t3, TMP, 16*8 ++ ld.d $t4, TMP, 17*8 ++ ld.d $t5, TMP, 18*8 ++ ld.d $t6, TMP, 19*8 ++ ld.d $t7, TMP, 20*8 ++ ld.d $t8, TMP, 21*8 ++ ld.d $s0, TMP, 22*8 ++ fld.d $ft0, TMP, 23*8 ++ fld.d $ft1, TMP, 24*8 ++ fld.d $ft2, TMP, 25*8 ++ fld.d $ft3, TMP, 26*8 ++ fld.d $ft4, TMP, 27*8 ++ fld.d $ft5, TMP, 28*8 ++ fld.d $ft6, TMP, 29*8 ++ fld.d $ft7, TMP, 30*8 ++ fld.d $fa0, TMP, 31*8 ++ fld.d $fa1, TMP, 32*8 ++ fld.d $fa2, TMP, 33*8 ++ fld.d $fa3, TMP, 34*8 ++ fld.d $fa4, TMP, 35*8 ++ fld.d $fa5, TMP, 36*8 ++ fld.d $fa6, TMP, 37*8 ++ fld.d $fa7, TMP, 38*8 ++ fld.d $ft8, TMP, 39*8 ++ fld.d $ft9, TMP, 40*8 ++ fld.d $ft10, TMP, 41*8 ++ fld.d $ft11, TMP, 42*8 ++ fld.d $ft12, TMP, 43*8 ++ fld.d $ft13, TMP, 44*8 ++ fld.d $ft14, TMP, 45*8 ++ fld.d $ft15, TMP, 46*8 ++ /* Put gc_regs struct back in bucket linked list */ ++ ld.d TMP2, Caml_state(gc_regs_buckets) ++ st.d TMP2, TMP, 0 /* next ptr */ ++ st.d TMP, Caml_state(gc_regs_buckets) ++ /* Reload new allocation pointer & exn handler */ ++ ld.d ALLOC_PTR, Caml_state(young_ptr) ++ ld.d TRAP_PTR, Caml_state(exn_handler) ++.endm ++ ++ .section .text ++/* Invoke the garbage collector. */ ++ ++ .globl caml_system__code_begin ++caml_system__code_begin: ++ ++FUNCTION(caml_call_realloc_stack) ++ /* Save return address */ ++ CFI_OFFSET($ra, -8) ++ addi.d $sp, $sp, -16 ++ st.d $ra, $sp, 8 ++ //CFI_ADJUST(16) ++ /* Save all registers (including ALLOC_PTR & TRAP_PTR) */ ++ SAVE_ALL_REGS ++ ld.d C_ARG_1, $sp, 16 /* argument */ ++ SWITCH_OCAML_TO_C ++ bl PLT(caml_try_realloc_stack) ++ SWITCH_C_TO_OCAML ++ beqz $a0, 1f ++ RESTORE_ALL_REGS ++ /* Free stack $space and return to caller */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++ jr $ra ++1: RESTORE_ALL_REGS ++ /* Raise the Stack_overflow exception */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++ addi.d $sp, $sp, 16 /* pop argument */ ++ la.global $a0, caml_exn_Stack_overflow ++ b caml_raise_exn ++END_FUNCTION(caml_call_realloc_stack) ++ ++FUNCTION(caml_call_gc) ++L(caml_call_gc): ++ /* Save return address */ ++ CFI_OFFSET($ra, -8) ++ addi.d $sp, $sp, -16 ++ st.d $ra, $sp, 8 ++ CFI_ADJUST(16) ++ /* Store all registers (including ALLOC_PTR & TRAP_PTR) */ ++ SAVE_ALL_REGS ++ SWITCH_OCAML_TO_C ++ /* Call the garbage collector */ ++ bl PLT(caml_garbage_collection) ++ SWITCH_C_TO_OCAML ++ RESTORE_ALL_REGS ++ /* Free stack $space and return to caller */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++ jr $ra ++END_FUNCTION(caml_call_gc) ++ ++FUNCTION(caml_alloc1) ++ ld.d TMP, Caml_state(young_limit) ++ addi.d ALLOC_PTR, ALLOC_PTR, -16 ++ bltu ALLOC_PTR, TMP, L(caml_call_gc) ++ jr $ra ++END_FUNCTION(caml_alloc1) ++ ++FUNCTION(caml_alloc2) ++ ld.d TMP, Caml_state(young_limit) ++ addi.d ALLOC_PTR, ALLOC_PTR, -24 ++ bltu ALLOC_PTR, TMP, L(caml_call_gc) ++ jr $ra ++END_FUNCTION(caml_alloc2) ++ ++FUNCTION(caml_alloc3) ++ ld.d TMP, Caml_state(young_limit) ++ addi.d ALLOC_PTR, ALLOC_PTR, -32 ++ bltu ALLOC_PTR, TMP, L(caml_call_gc) ++ jr $ra ++END_FUNCTION(caml_alloc3) ++ ++FUNCTION(caml_allocN) ++ ld.d TMP, Caml_state(young_limit) ++ sub.d ALLOC_PTR, ALLOC_PTR, ADDITIONAL_ARG ++ bltu ALLOC_PTR, TMP, L(caml_call_gc) ++ jr $ra ++END_FUNCTION(caml_allocN) ++ ++/* Call a C function from OCaml */ ++/* Function to call is in ADDITIONAL_ARG */ ++ ++FUNCTION(caml_c_call) ++ CFI_OFFSET($ra, -8) ++ addi.d $sp, $sp, -16 ++ st.d $ra, $sp, 8 ++ CFI_ADJUST(16) ++ /* Switch form OCaml to C */ ++ SWITCH_OCAML_TO_C ++ /* Make the exception handler alloc ptr available to the C code */ ++ st.d ALLOC_PTR, Caml_state(young_ptr) ++ st.d TRAP_PTR, Caml_state(exn_handler) ++ /* Call the function */ ++ jirl $ra, ADDITIONAL_ARG, 0 ++ /* Reload alloc ptr */ ++ ld.d ALLOC_PTR, Caml_state(young_ptr) ++ /* Load ocaml stack */ ++ SWITCH_C_TO_OCAML ++ /* Return */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++ jr $ra ++END_FUNCTION(caml_c_call) ++ ++FUNCTION(caml_c_call_stack_args) ++ /* Arguments: ++ C arguments : $a0 to a7, fa0 to fa7 ++ C function : ADDITIONAL_ARG ++ C stack args : begin=STACK_ARG_BEGIN ++ end=STACK_ARG_END */ ++ CFI_OFFSET($ra, -8) ++ addi.d $sp, $sp, -16 ++ st.d $ra, $sp, 8 ++ CFI_ADJUST(16) ++ /* Switch from OCaml to C */ ++ SWITCH_OCAML_TO_C ++ /* Make the exception handler alloc ptr available to the C code */ ++ st.d ALLOC_PTR, Caml_state(young_ptr) ++ st.d TRAP_PTR, Caml_state(exn_handler) ++ /* Store $sp to restore after call */ ++ move $s2, $sp ++ /* Copy arguments from OCaml to C stack ++ NB: STACK_ARG_{BEGIN,END} are 16-byte aligned */ ++1: addi.d STACK_ARG_END, STACK_ARG_END, -16 ++ bltu STACK_ARG_END, STACK_ARG_BEGIN, 2f ++ ld.d TMP, STACK_ARG_END, 0 ++ ld.d TMP2, STACK_ARG_END, 8 ++ addi.d $sp, $sp, -16 ++ st.d TMP, $sp, 0 ++ st.d TMP2, $sp, 8 ++ b 1b ++2: /* Call the function */ ++ jirl $ra, ADDITIONAL_ARG, 0 ++ /* Restore stack */ ++ move $sp, $s2 ++ /* Reload alloc ptr */ ++ ld.d ALLOC_PTR, Caml_state(young_ptr) ++ /* Switch from C to OCaml */ ++ SWITCH_C_TO_OCAML ++ /* Return */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++ jr $ra ++END_FUNCTION(caml_c_call_stack_args) ++ ++/* Start the OCaml program */ ++ ++FUNCTION(caml_start_program) ++ /* domain state is passed as arg from C */ ++ move TMP, C_ARG_1 ++ la.global TMP2, caml_program ++ ++/* Code shared with caml_callback* */ ++/* Address of domain state is in TMP */ ++/* Address of OCaml code to call is in TMP2 */ ++/* Arguments to the OCaml code are in $a0...a7 */ ++ ++L(jump_to_caml): ++ /* Set up stack frame and save callee-save registers */ ++ CFI_OFFSET($ra, -200) ++ addi.d $sp, $sp, -208 ++ st.d $ra, $sp, 8 ++ CFI_ADJUST(208) ++ st.d $s0, $sp, 2*8 ++ st.d $s1, $sp, 3*8 ++ st.d $s2, $sp, 4*8 ++ st.d $s3, $sp, 5*8 ++ st.d $s4, $sp, 6*8 ++ st.d $s5, $sp, 7*8 ++ st.d $s6, $sp, 8*8 ++ st.d $s7, $sp, 9*8 ++ st.d $s8, $sp, 10*8 ++ st.d $fp, $sp, 11*8 ++ fst.d $fs0, $sp, 14*8 ++ fst.d $fs1, $sp, 15*8 ++ fst.d $fs2, $sp, 16*8 ++ fst.d $fs3, $sp, 17*8 ++ fst.d $fs4, $sp, 18*8 ++ fst.d $fs5, $sp, 19*8 ++ fst.d $fs6, $sp, 20*8 ++ fst.d $fs7, $sp, 21*8 ++ /* Load domain state pointer from argument */ ++ move DOMAIN_STATE_PTR, TMP ++ /* Reload allocation pointer */ ++ ld.d ALLOC_PTR, Caml_state(young_ptr) ++ /* Build (16-byte aligned) struct c_stack_link on the C stack */ ++ ld.d $t2, Caml_state(c_stack) ++ addi.d $sp, $sp, -32 ++ st.d $t2, Cstack_prev($sp) ++ st.d $zero, Cstack_stack($sp) ++ st.d $zero, Cstack_sp($sp) ++ CFI_ADJUST(32) ++ st.d $sp, Caml_state(c_stack) ++ /* Load the OCaml stack */ ++ ld.d $t2, Caml_state(current_stack) ++ ld.d $t2, Stack_sp($t2) ++ /* Store the gc_regs for callbacks during a GC */ ++ ld.d $t3, Caml_state(gc_regs) ++ addi.d $t2, $t2, -8 ++ st.d $t3, $t2, 0 ++ /* Store the stack pointer to allow DWARF unwind */ ++ addi.d $t2, $t2, -8 ++ st.d $sp, $t2, 0 /* C_stack_sp */ ++ /* Setup a trap frame to catch exceptions escaping the OCaml code */ ++ ld.d $t3, Caml_state(exn_handler) ++ la.local $t4, L(trap_handler) ++ addi.d $t2, $t2, -16 ++ st.d $t3, $t2, 0 ++ st.d $t4, $t2, 8 ++ move TRAP_PTR, $t2 ++ /* Switch stacks and call the OCaml code */ ++ move $sp, $t2 ++ CFI_REMEMBER_STATE ++ /* Call the OCaml code */ ++ jirl $ra, TMP2, 0 ++L(caml_retaddr): ++ /* Pop the trap frame, restoring Caml_state->exn_handler */ ++ ld.d $t2, $sp, 0 ++ addi.d $sp, $sp, 16 ++ CFI_ADJUST(-16) ++ st.d $t2, Caml_state(exn_handler) ++L(return_result): ++ /* Restore GC regs */ ++ ld.d $t2, $sp, 0 ++ ld.d $t3, $sp, 8 ++ addi.d $sp, $sp, 16 ++ CFI_ADJUST(-16) ++ st.d $t3, Caml_state(gc_regs) ++ /* Update allocation pointer */ ++ st.d ALLOC_PTR, Caml_state(young_ptr) ++ /* Return to C stack */ ++ ld.d $t2, Caml_state(current_stack) ++ st.d $sp, Stack_sp($t2) ++ ld.d $t3, Caml_state(c_stack) ++ move $sp, $t3 ++ CFI_RESTORE_STATE ++ /* Pop the struct c_stack_link */ ++ ld.d $t2, Cstack_prev($sp) ++ addi.d $sp, $sp, 32 ++ CFI_ADJUST(-32) ++ st.d $t2, Caml_state(c_stack) ++ /* Reload callee-save register and return address */ ++ ld.d $s0, $sp, 2*8 ++ ld.d $s1, $sp, 3*8 ++ ld.d $s2, $sp, 4*8 ++ ld.d $s3, $sp, 5*8 ++ ld.d $s4, $sp, 6*8 ++ ld.d $s5, $sp, 7*8 ++ ld.d $s6, $sp, 8*8 ++ ld.d $s7, $sp, 9*8 ++ ld.d $s8, $sp, 10*8 ++ ld.d $fp, $sp, 11*8 ++ fld.d $fs0, $sp, 14*8 ++ fld.d $fs1, $sp, 15*8 ++ fld.d $fs2, $sp, 16*8 ++ fld.d $fs3, $sp, 17*8 ++ fld.d $fs4, $sp, 18*8 ++ fld.d $fs5, $sp, 19*8 ++ fld.d $fs6, $sp, 20*8 ++ fld.d $fs7, $sp, 21*8 ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 208 ++ CFI_ADJUST(-208) ++ /* Return to C caller */ ++ jr $ra ++END_FUNCTION(caml_start_program) ++ ++/* The trap handler */ ++ ++ .align 2 ++L(trap_handler): ++ CFI_STARTPROC ++ /* Save exception pointer */ ++ st.d TRAP_PTR, Caml_state(exn_handler) ++ /* Encode exception pointer */ ++ ori $a0, $a0, 2 ++ /* Return it */ ++ b L(return_result) ++ CFI_ENDPROC ++ ++/* Exceptions */ ++ ++.macro JUMP_TO_TRAP_PTR ++ /* Cut stack at current trap handler */ ++ move $sp, TRAP_PTR ++ /* Pop previous handler and jump to it */ ++ ld.d TMP, $sp, 8 ++ ld.d TRAP_PTR, $sp, 0 ++ addi.d $sp, $sp, 16 ++ jr TMP ++.endm ++ ++/* Raise an exception from OCaml */ ++FUNCTION(caml_raise_exn) ++ /* Test if backtrace is active */ ++ ld.d TMP, Caml_state(backtrace_active) ++ bnez TMP, 2f ++1: ++ JUMP_TO_TRAP_PTR ++2: /* Zero backtrace_pos */ ++ st.d $zero, Caml_state(backtrace_pos) ++L(caml_reraise_exn_stash): ++ /* Preserve exception bucket in callee-save register $s2 */ ++ move $s2, $a0 ++ /* Stash the backtrace */ ++ /* arg1: exn bucket, already in $a0 */ ++ move $a1, $ra /* arg2: pc of $raise */ ++ move $a2, $sp /* arg3: $sp of $raise */ ++ move $a3, TRAP_PTR /* arg4: $sp of handler */ ++ /* Switch to C stack */ ++ ld.d TMP, Caml_state(c_stack) ++ move $sp, TMP ++ bl PLT(caml_stash_backtrace) ++ /* Restore exception bucket and $raise */ ++ move $a0, $s2 ++ b 1b ++END_FUNCTION(caml_raise_exn) ++ ++FUNCTION(caml_reraise_exn) ++ ld.d TMP, Caml_state(backtrace_active) ++ bnez TMP, L(caml_reraise_exn_stash) ++ JUMP_TO_TRAP_PTR ++END_FUNCTION(caml_reraise_exn) ++ ++/* Raise an exception from C */ ++ ++FUNCTION(caml_raise_exception) ++ /* Load the domain state ptr */ ++ move DOMAIN_STATE_PTR, C_ARG_1 ++ /* Load the exception bucket */ ++ move $a0, C_ARG_2 ++ /* Reload trap ptr and alloc ptr */ ++ ld.d TRAP_PTR, Caml_state(exn_handler) ++ ld.d ALLOC_PTR, Caml_state(young_ptr) ++ /* Discard the C stack pointer and reset to ocaml stack */ ++ ld.d TMP, Caml_state(current_stack) ++ ld.d TMP, Stack_sp(TMP) ++ move $sp, TMP ++ /* Restore frame and link on return to OCaml */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++ b caml_raise_exn ++END_FUNCTION(caml_raise_exception) ++ ++/* Callback from C to OCaml */ ++ ++FUNCTION(caml_callback_asm) ++ /* Initial shuffling of arguments */ ++ /* ($a0 = Caml_state, $a1 = closure, 0(a2) = first arg) */ ++ move TMP, $a0 ++ ld.d $a0, $a2, 0 /* $a0 = first arg */ ++ /* $a1 = closure environment */ ++ ld.d TMP2, $a1, 0 /* code pointer */ ++ b L(jump_to_caml) ++END_FUNCTION(caml_callback_asm) ++ ++FUNCTION(caml_callback2_asm) ++ /* Initial shuffling of arguments */ ++ /* ($a0 = Caml_state, $a1 = closure, 0(a2) = arg1, 8(a2) = arg2) */ ++ move TMP, $a0 ++ move TMP2, $a1 ++ ld.d $a0, $a2, 0 /* $a0 = first arg */ ++ ld.d $a1, $a2, 8 /* $a1 = second arg */ ++ move $a2, TMP2 /* a2 = closure environment */ ++ la.global TMP2, caml_apply2 ++ b L(jump_to_caml) ++END_FUNCTION(caml_callback2_asm) ++ ++FUNCTION(caml_callback3_asm) ++ /* Initial shuffling of arguments */ ++ /* ($a0 = Caml_state, $a1 = closure, 0(a2) = arg1, 8(a2) = arg2, ++ 16(a2) = arg3) */ ++ move TMP, $a0 ++ move $a3, $a1 /* a3 = closure environment */ ++ ld.d $a0, $a2, 0 /* $a0 = first arg */ ++ ld.d $a1, $a2, 8 /* $a1 = second arg */ ++ ld.d $a2, $a2, 16 /* a2 = third arg */ ++ la.global TMP2, caml_apply3 ++ b L(jump_to_caml) ++END_FUNCTION(caml_callback3_asm) ++ ++/* Fibers */ ++ ++/* Switch between OCaml stacks. Clobbers TMP and switches TRAP_PTR ++ Preserves old_stack and new_stack registers */ ++.macro SWITCH_OCAML_STACKS old_stack, new_stack ++ /* Save frame pointer and return address for old_stack */ ++ addi.d $sp, $sp, -16 ++ st.d $ra, $sp, 8 ++ CFI_ADJUST(16) ++ /* Save OCaml SP and exn_handler in the stack info */ ++ st.d $sp, Stack_sp(\old_stack) ++ st.d TRAP_PTR, Stack_exception(\old_stack) ++ /* switch stacks */ ++ st.d \new_stack, Caml_state(current_stack) ++ ld.d TMP, Stack_sp(\new_stack) ++ move $sp, TMP ++ /* restore exn_handler for new stack */ ++ ld.d TRAP_PTR, Stack_exception(\new_stack) ++ /* Restore frame pointer and return address for new_stack */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++.endm ++ ++/* ++ * A continuation is a one word object that points to a fiber. A fiber [f] will ++ * point to its parent at Handler_parent(Stack_handler(f)). In the following, ++ * the [last_fiber] refers to the last fiber in the linked-list formed by the ++ * parent pointer. ++ */ ++ ++FUNCTION(caml_perform) ++ /* $a0: effect to perform ++ $a1: freshly allocated continuation */ ++ ld.d $a2, Caml_state(current_stack) /* a2 := old stack */ ++ addi.d $a3, $a2, 1 /* a3 := Val_ptr(old stack) */ ++ st.d $a3, $a1, 0 /* Iniitalize continuation */ ++L(do_perform): ++ /* $a0: effect to perform ++ $a1: continuation ++ a2: old_stack ++ a3: last_fiber */ ++ ++ ld.d $t3, Stack_handler($a2) /* $t3 := old stack -> handler */ ++ ld.d $t4, Handler_parent($t3) /* t4 := parent stack */ ++ beqz $t4, 1f ++ SWITCH_OCAML_STACKS $a2, $t4 ++ /* we have to null the Handler_parent after the switch because ++ the Handler_parent is needed to unwind the stack for backtraces */ ++ st.d $zero, Handler_parent($t3) /* Set parent of performer to NULL */ ++ ld.d TMP, Handler_effect($t3) ++ move $a2, $a3 /* a2 := last_fiber */ ++ move $a3, TMP /* a3 := effect handler */ ++ b PLT(caml_apply3) ++1: ++ /* switch back to original performer before $raising Effect.Unhandled ++ (no-op unless this is a reperform) */ ++ ld.d $t4, $a1, 0 /* load performer stack from continuation */ ++ addi.d $t4, $t4, -1 /* t4 := Ptr_val(t4) */ ++ ld.d $t3, Caml_state(current_stack) ++ SWITCH_OCAML_STACKS $t3, $t4 ++ /* No parent stack. Raise Effect.Unhandled. */ ++ la.global ADDITIONAL_ARG, caml_raise_unhandled_effect ++ b caml_c_call ++END_FUNCTION(caml_perform) ++ ++FUNCTION(caml_reperform) ++ /* $a0: effect to perform ++ $a1: continuation ++ a2: last_fiber */ ++ ld.d TMP, Stack_handler_from_cont($a2) ++ ld.d $a2, Caml_state(current_stack) /* a2 := old stack */ ++ st.d $a2, Handler_parent(TMP) /* Append to last_fiber */ ++ addi.d $a3, $a2, 1 /* a3 (last_fiber) := Val_ptr(old stack) */ ++ b L(do_perform) ++END_FUNCTION(caml_reperform) ++ ++FUNCTION(caml_resume) ++ /* $a0: new fiber ++ $a1: fun ++ a2: arg */ ++ addi.d $a0, $a0, -1 /* $a0 = Ptr_val($a0) */ ++ ld.d $a3, $a1, 0 /* code pointer */ ++ /* Check if stack null, then already used */ ++ beqz $a0, 2f ++ /* Find end of list of stacks (put in $t2) */ ++ move TMP, $a0 ++1: ld.d $t2, Stack_handler(TMP) ++ ld.d TMP, Handler_parent($t2) ++ bnez TMP, 1b ++ /* Add current stack to the end */ ++ ld.d $t3, Caml_state(current_stack) ++ st.d $t3, Handler_parent($t2) ++ SWITCH_OCAML_STACKS $t3, $a0 ++ move $a0, $a2 ++ jr $a3 ++2: la.global ADDITIONAL_ARG, caml_raise_continuation_already_resumed ++ b caml_c_call ++END_FUNCTION(caml_resume) ++ ++/* Run a function on a new stack, then either ++ return the value or invoke exception handler */ ++FUNCTION(caml_runstack) ++ /* $a0: fiber ++ $a1: fun ++ a2: arg */ ++ CFI_OFFSET($ra, -8) ++ addi.d $sp, $sp, -16 ++ st.d $ra, $sp, 8 ++ CFI_ADJUST(16) ++ addi.d $a0, $a0, -1 /* $a0 := Ptr_val($a0) */ ++ ld.d $a3, $a1, 0 /* code pointer */ ++ /* save old stack pointer and exception handler */ ++ ld.d $t2, Caml_state(current_stack) /* $t2 := old stack */ ++ st.d $sp, Stack_sp($t2) ++ st.d TRAP_PTR, Stack_exception($t2) ++ /* Load new stack pointer and set parent */ ++ ld.d TMP, Stack_handler($a0) ++ st.d $t2, Handler_parent(TMP) ++ st.d $a0, Caml_state(current_stack) ++ ld.d $t3, Stack_sp($a0) /* $t3 := $sp of new stack */ ++ /* Create an exception handler on the target stack ++ after 16byte DWARF & gc_regs block (which is unused here) */ ++ addi.d $t3, $t3, -32 ++ la.local TMP, L(fiber_exn_handler) ++ st.d TMP, $t3, 8 ++ /* link the previous exn_handler so that copying stacks works */ ++ ld.d TMP, Stack_exception($a0) ++ st.d TMP, $t3, 0 ++ move TRAP_PTR, $t3 ++ /* Switch to the new stack */ ++ move $sp, $t3 ++ CFI_REMEMBER_STATE ++ /* Call the function on the new stack */ ++ move $a0, $a2 ++ jirl $ra, $a3, 0 ++L(frame_runstack): ++ addi.d $t2, $sp, 32 /* $t2 := stack_handler */ ++ ld.d $s2, Handler_value($t2) /* saved across C call */ ++1: ++ move $s3, $a0 /* save return across C call */ ++ ld.d $a0, Caml_state(current_stack) /* arg to caml_free_stack */ ++ /* restore parent stack and exn_handler into Caml_state */ ++ ld.d TMP, Handler_parent($t2) ++ st.d TMP, Caml_state(current_stack) ++ ld.d TRAP_PTR, Stack_exception(TMP) ++ st.d TRAP_PTR, Caml_state(exn_handler) ++ /* free old stack by switching directly to c_stack; ++ is a no-alloc call */ ++ ld.d $s4, Stack_sp(TMP) /* saved across C call */ ++ CFI_RESTORE_STATE ++ CFI_REMEMBER_STATE ++ ld.d TMP, Caml_state(c_stack) ++ move $sp, TMP ++ bl PLT(caml_free_stack) ++ /* switch directly to parent stack with correct return */ ++ move $a0, $s3 ++ move $a1, $s2 ++ move $sp, $s4 ++ CFI_RESTORE_STATE ++ ld.d TMP, $s2, 0 /* code pointer */ ++ /* Invoke handle_value (or handle_exn) */ ++ ld.d $ra, $sp, 8 ++ addi.d $sp, $sp, 16 ++ CFI_ADJUST(-16) ++ jr TMP ++L(fiber_exn_handler): ++ addi.d $t2, $sp, 16 /* $t2 := stack_handler */ ++ ld.d $s2, Handler_exception($t2) ++ b 1b ++END_FUNCTION(caml_runstack) ++ ++FUNCTION(caml_ml_array_bound_error) ++ /* Load address of [caml_array_bound_error_asm] in ADDITIONAL_ARG */ ++ la.global ADDITIONAL_ARG, caml_array_bound_error_asm ++ /* Call that function */ ++ b caml_c_call ++END_FUNCTION(caml_ml_array_bound_error) ++ ++ .globl caml_system__code_end ++caml_system__code_end: ++ ++/* GC roots for callback */ ++ ++ ++ .section .data ++ .align 3 ++ .globl caml_system__frametable ++ .type caml_system__frametable, @object ++caml_system__frametable: ++ .quad 1 /* one descriptor */ ++ .quad .Lcaml_retaddr /* return address into callback */ ++ .short -1 /* negative frame size => use callback link */ ++ .short 0 /* no roots */ ++ .align 3 ++ .size caml_system__frametable, .-caml_system__frametable +diff -Nurp ocaml-5.0.0/testsuite/tools/asmgen_loongarch64.S ocaml-base-compiler.5.0.0/testsuite/tools/asmgen_loongarch64.S +--- ocaml-5.0.0/testsuite/tools/asmgen_loongarch64.S 1970-01-01 00:00:00.000000000 +0000 ++++ ocaml-base-compiler.5.0.0/testsuite/tools/asmgen_loongarch64.S 2023-06-28 14:04:01.000000000 +0000 +@@ -0,0 +1,75 @@ ++/**************************************************************************/ ++/* */ ++/* OCaml */ ++/* */ ++/* Nicolas Ojeda Bar */ ++/* */ ++/* Copyright 2019 Institut National de Recherche en Informatique et */ ++/* en Automatique. */ ++/* */ ++/* All rights reserved. This file is distributed under the terms of */ ++/* the GNU Lesser General Public License version 2.1, with the */ ++/* special exception on linking described in the file LICENSE. */ ++/* */ ++/**************************************************************************/ ++ ++#define STORE st.d ++#define LOAD ld.d ++ ++ .globl call_gen_code ++ .align 2 ++call_gen_code: ++ /* Set up stack frame and save callee-save registers */ ++ addi.d $sp, $sp, -208 ++ STORE $ra, $sp, 192 ++ STORE $s0, $sp, 0 ++ STORE $s1, $sp, 8 ++ STORE $s2, $sp, 16 ++ STORE $s3, $sp, 24 ++ STORE $s4, $sp, 32 ++ STORE $s5, $sp, 40 ++ STORE $s6, $sp, 48 ++ STORE $s7, $sp, 56 ++ STORE $s8, $sp, 64 ++ fst.d $fs0, $sp, 96 ++ fst.d $fs1, $sp, 104 ++ fst.d $fs2, $sp, 112 ++ fst.d $fs3, $sp, 120 ++ fst.d $fs4, $sp, 128 ++ fst.d $fs5, $sp, 136 ++ fst.d $fs6, $sp, 144 ++ fst.d $fs7, $sp, 152 ++ /* Shuffle arguments */ ++ move $t0, $a0 ++ move $a0, $a1 ++ move $a1, $a2 ++ move $a2, $a3 ++ move $a3, $a4 ++ /* Call generated asm */ ++ jirl $ra, $t0, 0 ++ /* Reload callee-save registers and return address */ ++ LOAD $ra, $sp, 192 ++ LOAD $s0, $sp, 0 ++ LOAD $s1, $sp, 8 ++ LOAD $s2, $sp ,16 ++ LOAD $s3, $sp ,24 ++ LOAD $s4, $sp ,32 ++ LOAD $s5, $sp ,40 ++ LOAD $s6, $sp ,48 ++ LOAD $s7, $sp ,56 ++ LOAD $s8, $sp ,64 ++ fld.d $fs0, $sp, 96 ++ fld.d $fs1, $sp, 104 ++ fld.d $fs2, $sp, 112 ++ fld.d $fs3, $sp, 120 ++ fld.d $fs4, $sp, 128 ++ fld.d $fs5, $sp, 136 ++ fld.d $fs6, $sp, 144 ++ fld.d $fs7, $sp, 152 ++ addi.d $sp, $sp, 208 ++ jr $ra ++ ++ .globl caml_c_call ++ .align 2 ++caml_c_call: ++ jr $t2 diff --git a/loongarch64/files/step/desktop-app/firefox/116.0/patches/0001-fixed-a-judgment-issue-when-libstdc-has-multiple-ver.patch b/loongarch64/files/step/desktop-app/firefox/116.0/patches/0001-fixed-a-judgment-issue-when-libstdc-has-multiple-ver.patch new file mode 100644 index 00000000..73a3c219 --- /dev/null +++ b/loongarch64/files/step/desktop-app/firefox/116.0/patches/0001-fixed-a-judgment-issue-when-libstdc-has-multiple-ver.patch @@ -0,0 +1,25 @@ +From 44a0b7dcc8381004e6c4b17233db43a44ee903ed Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Tue, 1 Aug 2023 02:56:54 +0000 +Subject: [PATCH] fixed a judgment issue when libstdc++ has multiple versions. + +--- + build/moz.configure/toolchain.configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/build/moz.configure/toolchain.configure b/build/moz.configure/toolchain.configure +index 6a9933f97f..aebd79fe59 100644 +--- a/build/moz.configure/toolchain.configure ++++ b/build/moz.configure/toolchain.configure +@@ -1083,7 +1083,7 @@ def sysroot(host_or_target, target_sysroot=None): + include = os.path.join(path, "usr/include/c++") + if os.path.isdir(include): + with os.scandir(include) as d: +- version = max(Version(e.name) for e in d if e.is_dir()) ++ version = max(Version(e.name) for e in d if e.is_dir() and (e.name[0] > '0' and e.name[0] < '9')) + log.info("Using %s sysroot in %s", host_or_target_str, path) + return namespace( + path=path, +-- +2.31.1 + diff --git a/loongarch64/files/step/desktop-app/firefox/115.0.2/patches/0001_xpcom_add_loongarch64_support.patch b/loongarch64/files/step/desktop-app/firefox/116.0/patches/0001_xpcom_add_loongarch64_support.patch similarity index 100% rename from loongarch64/files/step/desktop-app/firefox/115.0.2/patches/0001_xpcom_add_loongarch64_support.patch rename to loongarch64/files/step/desktop-app/firefox/116.0/patches/0001_xpcom_add_loongarch64_support.patch diff --git a/loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-100-add-loongarch.patch b/loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-100-add-loongarch.patch similarity index 67% rename from loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-100-add-loongarch.patch rename to loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-100-add-loongarch.patch index 99248eb2..b23478d3 100644 --- a/loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-100-add-loongarch.patch +++ b/loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-100-add-loongarch.patch @@ -1,16 +1,3 @@ -diff -Nurp firefox-100.0.orig/ipc/chromium/src/build/build_config.h firefox-100.0/ipc/chromium/src/build/build_config.h ---- firefox-100.0.orig/ipc/chromium/src/build/build_config.h 2022-04-28 22:02:47.000000000 +0000 -+++ firefox-100.0/ipc/chromium/src/build/build_config.h 2022-06-08 07:15:25.232514650 +0000 -@@ -125,6 +125,9 @@ - #elif defined(__riscv) && __riscv_xlen == 64 - # define ARCH_CPU_RISCV64 1 - # define ARCH_CPU_64_BITS 1 -+#elif defined(__loongarch64) -+# define ARCH_CPU_LOONGARCH64 1 -+# define ARCH_CPU_64_BITS 1 - #else - # error Please add support for your architecture in build/build_config.h - #endif diff -Nurp firefox-100.0.orig/third_party/libwebrtc/build/build_config.h firefox-100.0/third_party/libwebrtc/build/build_config.h --- firefox-100.0.orig/third_party/libwebrtc/build/build_config.h 2022-04-28 22:03:52.000000000 +0000 +++ firefox-100.0/third_party/libwebrtc/build/build_config.h 2022-06-08 07:15:25.233514649 +0000 diff --git a/loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-100-for-clfs.patch b/loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-100-for-clfs.patch similarity index 100% rename from loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-100-for-clfs.patch rename to loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-100-for-clfs.patch diff --git a/loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-105-fix-for-gcc13.patch b/loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-105-fix-for-gcc13.patch similarity index 100% rename from loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-105-fix-for-gcc13.patch rename to loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-105-fix-for-gcc13.patch diff --git a/loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-110-fix-rust.patch b/loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-110-fix-rust.patch similarity index 100% rename from loongarch64/files/step/desktop-app/firefox/115.0.2/patches/firefox-110-fix-rust.patch rename to loongarch64/files/step/desktop-app/firefox/116.0/patches/firefox-110-fix-rust.patch diff --git a/loongarch64/files/step/desktop-app/firefox/115.0.2/tip.url b/loongarch64/files/step/desktop-app/firefox/116.0/tip.url similarity index 100% rename from loongarch64/files/step/desktop-app/firefox/115.0.2/tip.url rename to loongarch64/files/step/desktop-app/firefox/116.0/tip.url diff --git a/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001-fixed-a-judgment-issue-when-libstdc-has-multiple-ver.patch b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001-fixed-a-judgment-issue-when-libstdc-has-multiple-ver.patch new file mode 100644 index 00000000..73a3c219 --- /dev/null +++ b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001-fixed-a-judgment-issue-when-libstdc-has-multiple-ver.patch @@ -0,0 +1,25 @@ +From 44a0b7dcc8381004e6c4b17233db43a44ee903ed Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Tue, 1 Aug 2023 02:56:54 +0000 +Subject: [PATCH] fixed a judgment issue when libstdc++ has multiple versions. + +--- + build/moz.configure/toolchain.configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/build/moz.configure/toolchain.configure b/build/moz.configure/toolchain.configure +index 6a9933f97f..aebd79fe59 100644 +--- a/build/moz.configure/toolchain.configure ++++ b/build/moz.configure/toolchain.configure +@@ -1083,7 +1083,7 @@ def sysroot(host_or_target, target_sysroot=None): + include = os.path.join(path, "usr/include/c++") + if os.path.isdir(include): + with os.scandir(include) as d: +- version = max(Version(e.name) for e in d if e.is_dir()) ++ version = max(Version(e.name) for e in d if e.is_dir() and (e.name[0] > '0' and e.name[0] < '9')) + log.info("Using %s sysroot in %s", host_or_target_str, path) + return namespace( + path=path, +-- +2.31.1 + diff --git a/loongarch64/files/step/desktop-app/thunderbird/115.0/patches/0001-thunderbird-115-add-loongarch-support.patch b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001-thunderbird-115-add-loongarch-support.patch similarity index 100% rename from loongarch64/files/step/desktop-app/thunderbird/115.0/patches/0001-thunderbird-115-add-loongarch-support.patch rename to loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001-thunderbird-115-add-loongarch-support.patch diff --git a/loongarch64/files/step/desktop-app/thunderbird/115.0/patches/0001-thunderbird-116.0-fix-for-gcc13.patch b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001-thunderbird-116.0-fix-for-gcc13.patch similarity index 100% rename from loongarch64/files/step/desktop-app/thunderbird/115.0/patches/0001-thunderbird-116.0-fix-for-gcc13.patch rename to loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001-thunderbird-116.0-fix-for-gcc13.patch diff --git a/loongarch64/files/step/desktop-app/thunderbird/115.0/patches/0001_xpcom_add_loongarch64_support.patch b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001_xpcom_add_loongarch64_support.patch similarity index 100% rename from loongarch64/files/step/desktop-app/thunderbird/115.0/patches/0001_xpcom_add_loongarch64_support.patch rename to loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/0001_xpcom_add_loongarch64_support.patch diff --git a/loongarch64/files/step/desktop-app/thunderbird/115.0/patches/firefox-100-for-clfs.patch b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/firefox-100-for-clfs.patch similarity index 100% rename from loongarch64/files/step/desktop-app/thunderbird/115.0/patches/firefox-100-for-clfs.patch rename to loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/firefox-100-for-clfs.patch diff --git a/loongarch64/files/step/desktop-app/thunderbird/115.0/patches/firefox-110-fix-rust.patch b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/firefox-110-fix-rust.patch similarity index 100% rename from loongarch64/files/step/desktop-app/thunderbird/115.0/patches/firefox-110-fix-rust.patch rename to loongarch64/files/step/desktop-app/thunderbird/115.0.1/patches/firefox-110-fix-rust.patch diff --git a/loongarch64/files/step/desktop-app/thunderbird/115.0/tip.url b/loongarch64/files/step/desktop-app/thunderbird/115.0.1/tip.url similarity index 100% rename from loongarch64/files/step/desktop-app/thunderbird/115.0/tip.url rename to loongarch64/files/step/desktop-app/thunderbird/115.0.1/tip.url diff --git a/loongarch64/files/step/host-tools/cmake/3.26.4/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch b/loongarch64/files/step/host-tools/cmake/3.27.1/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch similarity index 100% rename from loongarch64/files/step/host-tools/cmake/3.26.4/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch rename to loongarch64/files/step/host-tools/cmake/3.27.1/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch diff --git a/loongarch64/files/step/toolchain/cross-gcc/13.1.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/host-tools/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch similarity index 100% rename from loongarch64/files/step/toolchain/cross-gcc/13.1.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch rename to loongarch64/files/step/host-tools/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch diff --git a/loongarch64/files/step/host-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch b/loongarch64/files/step/host-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch new file mode 100644 index 00000000..89ddc07d --- /dev/null +++ b/loongarch64/files/step/host-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch @@ -0,0 +1,22 @@ +From 40920759fd47d5c6f6b2d7eb32b5f26640932bc4 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 07:29:32 +0000 +Subject: [PATCH] gcc 13 add "-cmodule=medium" for loongarch libgcc. + +--- + libgcc/config/loongarch/t-crtstuff | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libgcc/config/loongarch/t-crtstuff b/libgcc/config/loongarch/t-crtstuff +index b8c36eb66..4412b52a6 100644 +--- a/libgcc/config/loongarch/t-crtstuff ++++ b/libgcc/config/loongarch/t-crtstuff +@@ -2,4 +2,4 @@ + # We turn it off for crt*.o because it would make __EH_FRAME_BEGIN__ point + # to .eh_frame data from crtbeginT.o instead of the user-defined object + # during static linking. +-CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables ++CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables -mcmodel=medium +-- +2.31.1 + diff --git a/loongarch64/files/step/simulate/qemu/8.0.3/patches/0001-Revert-linux-user-Fix-brk-to-release-pages.patch b/loongarch64/files/step/simulate/qemu/8.0.3/patches/0001-Revert-linux-user-Fix-brk-to-release-pages.patch deleted file mode 100644 index fef505a8..00000000 --- a/loongarch64/files/step/simulate/qemu/8.0.3/patches/0001-Revert-linux-user-Fix-brk-to-release-pages.patch +++ /dev/null @@ -1,135 +0,0 @@ -From fdaaa6541f13f6d90cfaa8b060d287834f3348db Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Tue, 13 Jun 2023 12:29:28 +0000 -Subject: [PATCH] Revert "linux-user: Fix brk() to release pages" - -This reverts commit 86f04735ac2088d5c069c3d1712212ec7428c562. ---- - linux-user/syscall.c | 69 ++++++++++++++++++++++---------------------- - 1 file changed, 34 insertions(+), 35 deletions(-) - -diff --git a/linux-user/syscall.c b/linux-user/syscall.c -index f2cb101d83..d61b28900f 100644 ---- a/linux-user/syscall.c -+++ b/linux-user/syscall.c -@@ -801,52 +801,49 @@ static inline int host_to_target_sock_type(int host_type) - } - - static abi_ulong target_brk; -+static abi_ulong target_original_brk; - static abi_ulong brk_page; - - void target_set_brk(abi_ulong new_brk) - { -- target_brk = new_brk; -+ target_original_brk = target_brk = HOST_PAGE_ALIGN(new_brk); - brk_page = HOST_PAGE_ALIGN(target_brk); - } - -+//#define DEBUGF_BRK(message, args...) do { fprintf(stderr, (message), ## args); } while (0) -+#define DEBUGF_BRK(message, args...) -+ - /* do_brk() must return target values and target errnos. */ --abi_long do_brk(abi_ulong brk_val) -+abi_long do_brk(abi_ulong new_brk) - { - abi_long mapped_addr; - abi_ulong new_alloc_size; -- abi_ulong new_brk, new_host_brk_page; - - /* brk pointers are always untagged */ - -- /* return old brk value if brk_val unchanged or zero */ -- if (!brk_val || brk_val == target_brk) { -+ DEBUGF_BRK("do_brk(" TARGET_ABI_FMT_lx ") -> ", new_brk); -+ -+ if (!new_brk) { -+ DEBUGF_BRK(TARGET_ABI_FMT_lx " (!new_brk)\n", target_brk); - return target_brk; - } -- -- new_brk = TARGET_PAGE_ALIGN(brk_val); -- new_host_brk_page = HOST_PAGE_ALIGN(brk_val); -- -- /* brk_val and old target_brk might be on the same page */ -- if (new_brk == TARGET_PAGE_ALIGN(target_brk)) { -- if (brk_val > target_brk) { -- /* empty remaining bytes in (possibly larger) host page */ -- memset(g2h_untagged(target_brk), 0, new_host_brk_page - target_brk); -- } -- target_brk = brk_val; -+ if (new_brk < target_original_brk) { -+ DEBUGF_BRK(TARGET_ABI_FMT_lx " (new_brk < target_original_brk)\n", -+ target_brk); - return target_brk; - } - -- /* Release heap if necesary */ -- if (new_brk < target_brk) { -- /* empty remaining bytes in (possibly larger) host page */ -- memset(g2h_untagged(brk_val), 0, new_host_brk_page - brk_val); -- -- /* free unused host pages and set new brk_page */ -- target_munmap(new_host_brk_page, brk_page - new_host_brk_page); -- brk_page = new_host_brk_page; -- -- target_brk = brk_val; -- return target_brk; -+ /* If the new brk is less than the highest page reserved to the -+ * target heap allocation, set it and we're almost done... */ -+ if (new_brk <= brk_page) { -+ /* Heap contents are initialized to zero, as for anonymous -+ * mapped pages. */ -+ if (new_brk > target_brk) { -+ memset(g2h_untagged(target_brk), 0, new_brk - target_brk); -+ } -+ target_brk = new_brk; -+ DEBUGF_BRK(TARGET_ABI_FMT_lx " (new_brk <= brk_page)\n", target_brk); -+ return target_brk; - } - - /* We need to allocate more memory after the brk... Note that -@@ -855,14 +852,10 @@ abi_long do_brk(abi_ulong brk_val) - * itself); instead we treat "mapped but at wrong address" as - * a failure and unmap again. - */ -- new_alloc_size = new_host_brk_page - brk_page; -- if (new_alloc_size) { -- mapped_addr = get_errno(target_mmap(brk_page, new_alloc_size, -+ new_alloc_size = HOST_PAGE_ALIGN(new_brk - brk_page); -+ mapped_addr = get_errno(target_mmap(brk_page, new_alloc_size, - PROT_READ|PROT_WRITE, - MAP_ANON|MAP_PRIVATE, 0, 0)); -- } else { -- mapped_addr = brk_page; -- } - - if (mapped_addr == brk_page) { - /* Heap contents are initialized to zero, as for anonymous -@@ -874,8 +867,10 @@ abi_long do_brk(abi_ulong brk_val) - * then shrunken). */ - memset(g2h_untagged(target_brk), 0, brk_page - target_brk); - -- target_brk = brk_val; -- brk_page = new_host_brk_page; -+ target_brk = new_brk; -+ brk_page = HOST_PAGE_ALIGN(target_brk); -+ DEBUGF_BRK(TARGET_ABI_FMT_lx " (mapped_addr == brk_page)\n", -+ target_brk); - return target_brk; - } else if (mapped_addr != -1) { - /* Mapped but at wrong address, meaning there wasn't actually -@@ -883,6 +878,10 @@ abi_long do_brk(abi_ulong brk_val) - */ - target_munmap(mapped_addr, new_alloc_size); - mapped_addr = -1; -+ DEBUGF_BRK(TARGET_ABI_FMT_lx " (mapped_addr != -1)\n", target_brk); -+ } -+ else { -+ DEBUGF_BRK(TARGET_ABI_FMT_lx " (otherwise)\n", target_brk); - } - - #if defined(TARGET_ALPHA) --- -2.31.1 - diff --git a/loongarch64/files/step/target_base/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch b/loongarch64/files/step/target_base/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch new file mode 100644 index 00000000..8ab7c52f --- /dev/null +++ b/loongarch64/files/step/target_base/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch @@ -0,0 +1,25 @@ +From bdafbe0cb2d7dd8c9d3b04f1156e6bc6ecae2b18 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 10:01:20 +0000 +Subject: [PATCH] remove default use relax for lld. + +--- + opcodes/loongarch-opc.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/opcodes/loongarch-opc.c b/opcodes/loongarch-opc.c +index c83e4810..9c7f8fea 100644 +--- a/opcodes/loongarch-opc.c ++++ b/opcodes/loongarch-opc.c +@@ -24,7 +24,7 @@ + + struct loongarch_ASEs_option LARCH_opts = + { +- .relax = 1 ++ .relax = 0 + }; + + size_t +-- +2.31.1 + diff --git a/loongarch64/files/step/target_base/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch b/loongarch64/files/step/target_base/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch new file mode 100644 index 00000000..8ab7c52f --- /dev/null +++ b/loongarch64/files/step/target_base/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch @@ -0,0 +1,25 @@ +From bdafbe0cb2d7dd8c9d3b04f1156e6bc6ecae2b18 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 10:01:20 +0000 +Subject: [PATCH] remove default use relax for lld. + +--- + opcodes/loongarch-opc.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/opcodes/loongarch-opc.c b/opcodes/loongarch-opc.c +index c83e4810..9c7f8fea 100644 +--- a/opcodes/loongarch-opc.c ++++ b/opcodes/loongarch-opc.c +@@ -24,7 +24,7 @@ + + struct loongarch_ASEs_option LARCH_opts = + { +- .relax = 1 ++ .relax = 0 + }; + + size_t +-- +2.31.1 + diff --git a/loongarch64/files/step/target_base/cmake/3.26.4/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch b/loongarch64/files/step/target_base/cmake/3.27.1/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch similarity index 100% rename from loongarch64/files/step/target_base/cmake/3.26.4/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch rename to loongarch64/files/step/target_base/cmake/3.27.1/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch diff --git a/loongarch64/files/step/target_base/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/target_base/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..e2a139a8 --- /dev/null +++ b/loongarch64/files/step/target_base/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + loongarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/target_base/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch b/loongarch64/files/step/target_base/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch new file mode 100644 index 00000000..89ddc07d --- /dev/null +++ b/loongarch64/files/step/target_base/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch @@ -0,0 +1,22 @@ +From 40920759fd47d5c6f6b2d7eb32b5f26640932bc4 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 07:29:32 +0000 +Subject: [PATCH] gcc 13 add "-cmodule=medium" for loongarch libgcc. + +--- + libgcc/config/loongarch/t-crtstuff | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libgcc/config/loongarch/t-crtstuff b/libgcc/config/loongarch/t-crtstuff +index b8c36eb66..4412b52a6 100644 +--- a/libgcc/config/loongarch/t-crtstuff ++++ b/libgcc/config/loongarch/t-crtstuff +@@ -2,4 +2,4 @@ + # We turn it off for crt*.o because it would make __EH_FRAME_BEGIN__ point + # to .eh_frame data from crtbeginT.o instead of the user-defined object + # during static linking. +-CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables ++CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables -mcmodel=medium +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/cross-x86_64-gcc-glibc/14.0.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/target_base/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch similarity index 100% rename from loongarch64/files/step/toolchain/cross-x86_64-gcc-glibc/14.0.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch rename to loongarch64/files/step/target_base/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch diff --git a/loongarch64/files/step/target_base/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch b/loongarch64/files/step/target_base/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch new file mode 100644 index 00000000..89ddc07d --- /dev/null +++ b/loongarch64/files/step/target_base/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch @@ -0,0 +1,22 @@ +From 40920759fd47d5c6f6b2d7eb32b5f26640932bc4 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Wed, 26 Jul 2023 07:29:32 +0000 +Subject: [PATCH] gcc 13 add "-cmodule=medium" for loongarch libgcc. + +--- + libgcc/config/loongarch/t-crtstuff | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libgcc/config/loongarch/t-crtstuff b/libgcc/config/loongarch/t-crtstuff +index b8c36eb66..4412b52a6 100644 +--- a/libgcc/config/loongarch/t-crtstuff ++++ b/libgcc/config/loongarch/t-crtstuff +@@ -2,4 +2,4 @@ + # We turn it off for crt*.o because it would make __EH_FRAME_BEGIN__ point + # to .eh_frame data from crtbeginT.o instead of the user-defined object + # during static linking. +-CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables ++CRTSTUFF_T_CFLAGS += -fno-omit-frame-pointer -fno-asynchronous-unwind-tables -mcmodel=medium +-- +2.31.1 + diff --git a/loongarch64/files/step/target_base/libxcrypt/4.4.36/patches/0001-fix-configure-error-under-loongarch64-architecture.patch b/loongarch64/files/step/target_base/libxcrypt/4.4.36/patches/0001-fix-configure-error-under-loongarch64-architecture.patch new file mode 100644 index 00000000..cbf75485 --- /dev/null +++ b/loongarch64/files/step/target_base/libxcrypt/4.4.36/patches/0001-fix-configure-error-under-loongarch64-architecture.patch @@ -0,0 +1,25 @@ +From 8f94dfcf3297098e1683caddce5dd27441007618 Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Tue, 1 Aug 2023 06:24:31 +0000 +Subject: [PATCH] fix configure error under loongarch64 architecture. + +--- + lib/libcrypt.minver | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/libcrypt.minver b/lib/libcrypt.minver +index 8478077..55fd360 100644 +--- a/lib/libcrypt.minver ++++ b/lib/libcrypt.minver +@@ -60,7 +60,7 @@ GLIBC_2.3 kfreebsd.*gnu i[3-9]86 + ERROR kfreebsd.*gnu . + + # Linux with GNU libc +-GLIBC_2.36 linux.*gnu loongarch64 __WORDSIZE == 64 && ULONG_MAX != UINT_MAX /* lp64* ABI */ ++GLIBC_2.36 linux.*gnu loongarch64 defined __loongarch_lp64 && ULONG_MAX != UINT_MAX /* lp64* ABI */ + GLIBC_2.35 linux.*gnu or1k + GLIBC_2.33 linux.*gnu riscv32 + GLIBC_2.32 linux.*gnu arc +-- +2.31.1 + diff --git a/loongarch64/files/step/target_base/linux-header/6.5/linux-config-6 b/loongarch64/files/step/target_base/linux-header/6.5/linux-config-6 new file mode 100644 index 00000000..851eff00 --- /dev/null +++ b/loongarch64/files/step/target_base/linux-header/6.5/linux-config-6 @@ -0,0 +1,6723 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/loongarch 6.5.0-rc2 Kernel Configuration +# +CONFIG_CC_VERSION_TEXT="loongarch64-unknown-linux-gnu-gcc (GCC) 14.0.0 20230707 (experimental)" +CONFIG_CC_IS_GCC=y +CONFIG_GCC_VERSION=140000 +CONFIG_CLANG_VERSION=0 +CONFIG_AS_IS_GNU=y +CONFIG_AS_VERSION=24150 +CONFIG_LD_IS_BFD=y +CONFIG_LD_VERSION=24150 +CONFIG_LLD_VERSION=0 +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_PAHOLE_VERSION=0 +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_TABLE_SORT=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +# CONFIG_COMPILE_TEST is not set +# CONFIG_WERROR is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_BUILD_SALT="" +CONFIG_DEFAULT_INIT="" +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_WATCH_QUEUE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_USELIB is not set +CONFIG_AUDIT=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +# end of IRQ subsystem + +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_CONTEXT_TRACKING=y +CONFIG_CONTEXT_TRACKING_IDLE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ=y +CONFIG_HIGH_RES_TIMERS=y +# end of Timers subsystem + +CONFIG_BPF=y +CONFIG_HAVE_EBPF_JIT=y + +# +# BPF subsystem +# +CONFIG_BPF_SYSCALL=y +CONFIG_BPF_JIT=y +# CONFIG_BPF_JIT_ALWAYS_ON is not set +CONFIG_BPF_UNPRIV_DEFAULT_OFF=y +CONFIG_USERMODE_DRIVER=y +# CONFIG_BPF_PRELOAD is not set +# end of BPF subsystem + +CONFIG_PREEMPT_BUILD=y +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPTION=y +# CONFIG_SCHED_CORE is not set + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +# CONFIG_PSI is not set +# end of CPU/Task time and stats accounting + +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +CONFIG_PREEMPT_RCU=y +# CONFIG_RCU_EXPERT is not set +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +# end of RCU Subsystem + +# CONFIG_IKCONFIG is not set +# CONFIG_IKHEADERS is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_GENERIC_SCHED_CLOCK=y + +# +# Scheduler features +# +# end of Scheduler features + +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_CC_HAS_INT128=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_GCC11_NO_ARRAY_BOUNDS=y +CONFIG_CC_NO_ARRAY_BOUNDS=y +CONFIG_NUMA_BALANCING=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_CGROUPS=y +CONFIG_PAGE_COUNTER=y +# CONFIG_CGROUP_FAVOR_DYNMODS is not set +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_BLK_CGROUP=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_RT_GROUP_SCHED=y +CONFIG_SCHED_MM_CID=y +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_BPF=y +# CONFIG_CGROUP_MISC is not set +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_TIME_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +CONFIG_RD_LZ4=y +CONFIG_RD_ZSTD=y +# CONFIG_BOOT_CONFIG is not set +CONFIG_INITRAMFS_PRESERVE_MTIME=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_LD_ORPHAN_WARN=y +CONFIG_LD_ORPHAN_WARN_LEVEL="warn" +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN=y +CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +CONFIG_SYSFS_SYSCALL=y +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_IO_URING=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_SELFTEST is not set +# CONFIG_KALLSYMS_ALL is not set +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_KCMP=y +CONFIG_RSEQ=y +CONFIG_CACHESTAT_SYSCALL=y +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +CONFIG_PERF_USE_VMALLOC=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# end of Kernel Performance Events And Counters + +CONFIG_SYSTEM_DATA_VERIFICATION=y +# CONFIG_PROFILING is not set +# end of General setup + +CONFIG_LOONGARCH=y +CONFIG_64BIT=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_L1_CACHE_SHIFT=6 +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MACH_LOONGSON64=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PAGE_SIZE_16KB=y +CONFIG_PGTABLE_3LEVEL=y +CONFIG_PGTABLE_LEVELS=3 +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_AS_HAS_EXPLICIT_RELOCS=y +CONFIG_AS_HAS_FCSR_CLASS=y +CONFIG_AS_HAS_LSX_EXTENSION=y +CONFIG_AS_HAS_LASX_EXTENSION=y +CONFIG_AS_HAS_LBT_EXTENSION=y + +# +# Kernel type and options +# +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ=250 +CONFIG_SCHED_HRTICK=y +# CONFIG_4KB_3LEVEL is not set +# CONFIG_4KB_4LEVEL is not set +# CONFIG_16KB_2LEVEL is not set +CONFIG_16KB_3LEVEL=y +# CONFIG_64KB_2LEVEL is not set +# CONFIG_64KB_3LEVEL is not set +CONFIG_CMDLINE="" +CONFIG_CMDLINE_BOOTLOADER=y +# CONFIG_CMDLINE_EXTEND is not set +# CONFIG_CMDLINE_FORCE is not set +CONFIG_DMI=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_SCHED_SMT=y +CONFIG_SMP=y +CONFIG_HOTPLUG_CPU=y +CONFIG_NR_CPUS=64 +CONFIG_NUMA=y +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_FORCE_MAX_ORDER=12 +# CONFIG_ARCH_IOREMAP is not set +# CONFIG_ARCH_WRITECOMBINE is not set +CONFIG_ARCH_STRICT_ALIGN=y +CONFIG_CPU_HAS_FPU=y +CONFIG_CPU_HAS_LSX=y +CONFIG_CPU_HAS_LASX=y +CONFIG_CPU_HAS_LBT=y +CONFIG_CPU_HAS_PREFETCH=y +CONFIG_KEXEC=y +# CONFIG_CRASH_DUMP is not set +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_BASE_MAX_OFFSET=0x01000000 +CONFIG_SECCOMP=y +# end of Kernel type and options + +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=12 +CONFIG_ARCH_MMAP_RND_BITS_MAX=18 +CONFIG_ARCH_SUPPORTS_UPROBES=y + +# +# Power management options +# +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +# CONFIG_HIBERNATION is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_USERSPACE_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_CPU_PM=y +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ACPI=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_TAD is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_THERMAL=y +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_ACPI_NUMA=y +# CONFIG_ACPI_HMAT is not set +# CONFIG_ACPI_CONFIGFS is not set +# CONFIG_ACPI_PFRUT is not set +CONFIG_ACPI_PPTT=y +CONFIG_ACPI_PCC=y +# CONFIG_ACPI_FFH is not set +# CONFIG_PMIC_OPREGION is not set +# end of Power management options + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT is not set +CONFIG_SYSFB=y +# CONFIG_SYSFB_SIMPLEFB is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_ESRT=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_GENERIC_STUB=y +# CONFIG_EFI_ZBOOT is not set +# CONFIG_EFI_BOOTLOADER_CONTROL is not set +CONFIG_EFI_CAPSULE_LOADER=m +CONFIG_EFI_TEST=m +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DISABLE_PCI_DMA is not set +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y +# CONFIG_EFI_DISABLE_RUNTIME is not set +# CONFIG_EFI_COCO_SECRET is not set +# end of EFI (Extensible Firmware Interface) Support + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# +# General architecture-dependent options +# +CONFIG_CRASH_CORE=y +CONFIG_KEXEC_CORE=y +CONFIG_GENERIC_ENTRY=y +# CONFIG_KPROBES is not set +# CONFIG_JUMP_LABEL is not set +CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_CPU_FINALIZE_INIT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_MMU_GATHER_MERGE_VMAS=y +CONFIG_MMU_LAZY_TLB_REFCOUNT=y +CONFIG_ARCH_HAS_NMI_SAFE_THIS_CPU_OPS=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_LTO_NONE=y +CONFIG_HAVE_CONTEXT_TRACKING_USER=y +CONFIG_HAVE_TIF_NOHZ=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=12 +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +CONFIG_PAGE_SIZE_LESS_THAN_256KB=y +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +# CONFIG_COMPAT_32BIT_TIME is not set +CONFIG_ARCH_USE_MEMREMAP_PROT=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y + +# +# GCOV-based kernel profiling +# +# end of GCOV-based kernel profiling + +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_GCC_PLUGINS=y +# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set +CONFIG_FUNCTION_ALIGNMENT=0 +# end of General architecture-dependent options + +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +CONFIG_MODULE_FORCE_LOAD=y +CONFIG_MODULE_UNLOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +# CONFIG_MODULE_UNLOAD_TAINT_TRACKING is not set +CONFIG_MODVERSIONS=y +CONFIG_ASM_MODVERSIONS=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +CONFIG_MODULE_COMPRESS_NONE=y +# CONFIG_MODULE_COMPRESS_GZIP is not set +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +CONFIG_MODPROBE_PATH="/sbin/modprobe" +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLOCK_LEGACY_AUTOLOAD=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_CGROUP_PUNT_BIO=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_ICQ=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=y +# CONFIG_BLK_DEV_ZONED is not set +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +# CONFIG_BLK_WBT is not set +# CONFIG_BLK_CGROUP_IOLATENCY is not set +# CONFIG_BLK_CGROUP_FC_APPID is not set +# CONFIG_BLK_CGROUP_IOCOST is not set +# CONFIG_BLK_CGROUP_IOPRIO is not set +# CONFIG_BLK_SED_OPAL is not set +# CONFIG_BLK_INLINE_ENCRYPTION is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MSDOS_PARTITION=y +CONFIG_BSD_DISKLABEL=y +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +CONFIG_UNIXWARE_DISKLABEL=y +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +# CONFIG_KARMA_PARTITION is not set +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_CMDLINE_PARTITION is not set +# end of Partition Types + +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y +CONFIG_BLK_MQ_STACKING=y + +# +# IO Schedulers +# +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=y +CONFIG_IOSCHED_BFQ=y +CONFIG_BFQ_GROUP_IOSCHED=y +# CONFIG_BFQ_CGROUP_DEBUG is not set +# end of IO Schedulers + +CONFIG_PADATA=y +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_FREEZER=y + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_STATE=y +CONFIG_ELFCORE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +CONFIG_BINFMT_MISC=m +CONFIG_COREDUMP=y +# end of Executable file formats + +# +# Memory Management options +# +CONFIG_ZPOOL=y +CONFIG_SWAP=y +CONFIG_ZSWAP=y +# CONFIG_ZSWAP_DEFAULT_ON is not set +# CONFIG_ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD=y +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="zstd" +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +CONFIG_ZBUD=y +CONFIG_Z3FOLD=y +CONFIG_ZSMALLOC=m +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_ZSMALLOC_CHAIN_SIZE=8 + +# +# SLAB allocator options +# +# CONFIG_SLAB_DEPRECATED is not set +CONFIG_SLUB=y +# CONFIG_SLUB_TINY is not set +CONFIG_SLAB_MERGE_DEFAULT=y +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +# CONFIG_SLUB_STATS is not set +CONFIG_SLUB_CPU_PARTIAL=y +# end of SLAB allocator options + +# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_ARCH_WANT_OPTIMIZE_VMEMMAP=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_NUMA_KEEP_MEMINFO=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MEMORY_BALLOON=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_COMPACT_UNEVICTABLE_DEFAULT=1 +CONFIG_PAGE_REPORTING=y +CONFIG_MIGRATION=y +CONFIG_CONTIG_ALLOC=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_FRONTSWAP=y +# CONFIG_CMA is not set +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ZONE_DMA32=y +CONFIG_HMM_MIRROR=y +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_PERCPU_STATS is not set + +# +# GUP_TEST needs to have DEBUG_FS enabled +# +# CONFIG_DMAPOOL_TEST is not set +CONFIG_ARCH_HAS_PTE_SPECIAL=y +# CONFIG_ANON_VMA_NAME is not set +CONFIG_USERFAULTFD=y +# CONFIG_LRU_GEN is not set +CONFIG_LOCK_MM_AND_FIND_VMA=y + +# +# Data Access Monitoring +# +# CONFIG_DAMON is not set +# end of Data Access Monitoring +# end of Memory Management options + +CONFIG_NET=y +CONFIG_NET_INGRESS=y +CONFIG_NET_EGRESS=y +CONFIG_SKB_EXTENSIONS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +CONFIG_UNIX_SCM=y +CONFIG_AF_UNIX_OOB=y +# CONFIG_UNIX_DIAG is not set +CONFIG_TLS=m +CONFIG_TLS_DEVICE=y +# CONFIG_TLS_TOE is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +CONFIG_XFRM_USER=y +# CONFIG_XFRM_INTERFACE is not set +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +CONFIG_XFRM_ESP=m +CONFIG_NET_KEY=y +# CONFIG_NET_KEY_MIGRATE is not set +# CONFIG_SMC is not set +CONFIG_XDP_SOCKETS=y +# CONFIG_XDP_SOCKETS_DIAG is not set +CONFIG_NET_HANDSHAKE=y +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +# CONFIG_IP_FIB_TRIE_STATS is not set +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +CONFIG_IP_PNP_RARP=y +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IP_TUNNEL=y +# CONFIG_NET_IPGRE is not set +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE=y +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +# CONFIG_IP_PIMSM_V1 is not set +# CONFIG_IP_PIMSM_V2 is not set +CONFIG_SYN_COOKIES=y +# CONFIG_NET_IPVTI is not set +CONFIG_NET_UDP_TUNNEL=y +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_INET_AH is not set +CONFIG_INET_ESP=m +# CONFIG_INET_ESP_OFFLOAD is not set +# CONFIG_INET_ESPINTCP is not set +# CONFIG_INET_IPCOMP is not set +CONFIG_INET_TABLE_PERTURB_ORDER=16 +CONFIG_INET_TUNNEL=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +CONFIG_INET_UDP_DIAG=y +# CONFIG_INET_RAW_DIAG is not set +# CONFIG_INET_DIAG_DESTROY is not set +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +# CONFIG_TCP_CONG_HSTCP is not set +# CONFIG_TCP_CONG_HYBLA is not set +# CONFIG_TCP_CONG_VEGAS is not set +# CONFIG_TCP_CONG_NV is not set +# CONFIG_TCP_CONG_SCALABLE is not set +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +# CONFIG_TCP_CONG_YEAH is not set +# CONFIG_TCP_CONG_ILLINOIS is not set +# CONFIG_TCP_CONG_DCTCP is not set +# CONFIG_TCP_CONG_CDG is not set +CONFIG_TCP_CONG_BBR=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +CONFIG_INET6_ESP=m +# CONFIG_INET6_ESP_OFFLOAD is not set +# CONFIG_INET6_ESPINTCP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_ILA is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_GRE is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +CONFIG_IPV6_MROUTE=y +# CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set +# CONFIG_IPV6_PIMSM_V2 is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_IPV6_RPL_LWTUNNEL is not set +# CONFIG_IPV6_IOAM6_LWTUNNEL is not set +# CONFIG_NETLABEL is not set +# CONFIG_MPTCP is not set +CONFIG_NETWORK_SECMARK=y +CONFIG_NET_PTP_CLASSIFY=y +CONFIG_NETWORK_PHY_TIMESTAMPING=y +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=m + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_EGRESS=y +CONFIG_NETFILTER_SKIP_EGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_BPF_LINK=y +# CONFIG_NETFILTER_NETLINK_HOOK is not set +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NF_CONNTRACK_MARK=y +# CONFIG_NF_CONNTRACK_SECMARK is not set +# CONFIG_NF_CONNTRACK_ZONES is not set +# CONFIG_NF_CONNTRACK_PROCFS is not set +# CONFIG_NF_CONNTRACK_EVENTS is not set +# CONFIG_NF_CONNTRACK_TIMEOUT is not set +# CONFIG_NF_CONNTRACK_TIMESTAMP is not set +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CONNTRACK_OVS=y +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +# CONFIG_NF_CONNTRACK_H323 is not set +# CONFIG_NF_CONNTRACK_IRC is not set +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +# CONFIG_NF_CONNTRACK_SANE is not set +# CONFIG_NF_CONNTRACK_SIP is not set +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m +# CONFIG_NETFILTER_NETLINK_GLUE_CT is not set +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NF_NAT_OVS=y +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NF_TABLES=m +# CONFIG_NF_TABLES_INET is not set +# CONFIG_NF_TABLES_NETDEV is not set +# CONFIG_NFT_NUMGEN is not set +# CONFIG_NFT_CT is not set +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_NAT=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_HASH=m +CONFIG_NFT_FIB=m +# CONFIG_NFT_XFRM is not set +CONFIG_NFT_SOCKET=m +CONFIG_NFT_OSF=m +CONFIG_NFT_TPROXY=m +# CONFIG_NFT_SYNPROXY is not set +# CONFIG_NF_FLOW_TABLE is not set +CONFIG_NETFILTER_XTABLES=y + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +# CONFIG_NETFILTER_XT_TARGET_TEE is not set +# CONFIG_NETFILTER_XT_TARGET_TPROXY is not set +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +# CONFIG_NETFILTER_XT_MATCH_RECENT is not set +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +# end of Core Netfilter Configuration + +CONFIG_IP_SET=m +CONFIG_IP_SET_MAX=256 +# CONFIG_IP_SET_BITMAP_IP is not set +# CONFIG_IP_SET_BITMAP_IPMAC is not set +# CONFIG_IP_SET_BITMAP_PORT is not set +# CONFIG_IP_SET_HASH_IP is not set +# CONFIG_IP_SET_HASH_IPMARK is not set +# CONFIG_IP_SET_HASH_IPPORT is not set +# CONFIG_IP_SET_HASH_IPPORTIP is not set +# CONFIG_IP_SET_HASH_IPPORTNET is not set +# CONFIG_IP_SET_HASH_IPMAC is not set +# CONFIG_IP_SET_HASH_MAC is not set +# CONFIG_IP_SET_HASH_NETPORTNET is not set +# CONFIG_IP_SET_HASH_NET is not set +# CONFIG_IP_SET_HASH_NETNET is not set +# CONFIG_IP_SET_HASH_NETPORT is not set +# CONFIG_IP_SET_HASH_NETIFACE is not set +# CONFIG_IP_SET_LIST_SET is not set +CONFIG_IP_VS=m +CONFIG_IP_VS_IPV6=y +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_TAB_BITS=12 + +# +# IPVS transport protocol load balancing support +# +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +# CONFIG_IP_VS_PROTO_ESP is not set +# CONFIG_IP_VS_PROTO_AH is not set +# CONFIG_IP_VS_PROTO_SCTP is not set + +# +# IPVS scheduler +# +CONFIG_IP_VS_RR=m +# CONFIG_IP_VS_WRR is not set +# CONFIG_IP_VS_LC is not set +# CONFIG_IP_VS_WLC is not set +# CONFIG_IP_VS_FO is not set +# CONFIG_IP_VS_OVF is not set +# CONFIG_IP_VS_LBLC is not set +# CONFIG_IP_VS_LBLCR is not set +# CONFIG_IP_VS_DH is not set +# CONFIG_IP_VS_SH is not set +# CONFIG_IP_VS_MH is not set +# CONFIG_IP_VS_SED is not set +# CONFIG_IP_VS_NQ is not set +# CONFIG_IP_VS_TWOS is not set + +# +# IPVS SH scheduler +# +CONFIG_IP_VS_SH_TAB_BITS=8 + +# +# IPVS MH scheduler +# +CONFIG_IP_VS_MH_TAB_INDEX=12 + +# +# IPVS application helper +# +# CONFIG_IP_VS_FTP is not set +CONFIG_IP_VS_NFCT=y + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TABLES_IPV4=y +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_DUP_IPV4=m +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PPTP=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m +# end of IP: Netfilter Configuration + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NF_TABLES_IPV6=y +CONFIG_NFT_REJECT_IPV6=m +# CONFIG_NFT_DUP_IPV6 is not set +# CONFIG_NFT_FIB_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_LOG_IPV6=m +CONFIG_IP6_NF_IPTABLES=y +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +# CONFIG_IP6_NF_MATCH_HL is not set +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +# CONFIG_IP6_NF_TARGET_HL is not set +CONFIG_IP6_NF_FILTER=y +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +# end of IPv6: Netfilter Configuration + +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_TABLES_BRIDGE=m +# CONFIG_NFT_BRIDGE_META is not set +# CONFIG_NFT_BRIDGE_REJECT is not set +# CONFIG_NF_CONNTRACK_BRIDGE is not set +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +# CONFIG_BRIDGE_EBT_802_3 is not set +# CONFIG_BRIDGE_EBT_AMONG is not set +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +# CONFIG_BRIDGE_EBT_LIMIT is not set +# CONFIG_BRIDGE_EBT_MARK is not set +# CONFIG_BRIDGE_EBT_PKTTYPE is not set +# CONFIG_BRIDGE_EBT_STP is not set +# CONFIG_BRIDGE_EBT_VLAN is not set +# CONFIG_BRIDGE_EBT_ARPREPLY is not set +# CONFIG_BRIDGE_EBT_DNAT is not set +# CONFIG_BRIDGE_EBT_MARK_T is not set +# CONFIG_BRIDGE_EBT_REDIRECT is not set +# CONFIG_BRIDGE_EBT_SNAT is not set +# CONFIG_BRIDGE_EBT_LOG is not set +# CONFIG_BRIDGE_EBT_NFLOG is not set +CONFIG_BPFILTER=y +CONFIG_BPFILTER_UMH=m +# CONFIG_IP_DCCP is not set +CONFIG_IP_SCTP=m +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_COOKIE_HMAC_SHA1 is not set +CONFIG_INET_SCTP_DIAG=m +CONFIG_RDS=y +# CONFIG_RDS_RDMA is not set +# CONFIG_RDS_TCP is not set +# CONFIG_RDS_DEBUG is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +CONFIG_L2TP=m +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=m +CONFIG_GARP=m +CONFIG_MRP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +# CONFIG_BRIDGE_VLAN_FILTERING is not set +# CONFIG_BRIDGE_MRP is not set +# CONFIG_BRIDGE_CFM is not set +# CONFIG_NET_DSA is not set +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_LLC=m +CONFIG_LLC2=m +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_HTB=m +# CONFIG_NET_SCH_HFSC is not set +CONFIG_NET_SCH_PRIO=m +# CONFIG_NET_SCH_MULTIQ is not set +# CONFIG_NET_SCH_RED is not set +# CONFIG_NET_SCH_SFB is not set +CONFIG_NET_SCH_SFQ=m +# CONFIG_NET_SCH_TEQL is not set +CONFIG_NET_SCH_TBF=m +# CONFIG_NET_SCH_CBS is not set +# CONFIG_NET_SCH_ETF is not set +# CONFIG_NET_SCH_TAPRIO is not set +# CONFIG_NET_SCH_GRED is not set +CONFIG_NET_SCH_NETEM=m +# CONFIG_NET_SCH_DRR is not set +# CONFIG_NET_SCH_MQPRIO is not set +# CONFIG_NET_SCH_SKBPRIO is not set +# CONFIG_NET_SCH_CHOKE is not set +# CONFIG_NET_SCH_QFQ is not set +# CONFIG_NET_SCH_CODEL is not set +# CONFIG_NET_SCH_FQ_CODEL is not set +# CONFIG_NET_SCH_CAKE is not set +# CONFIG_NET_SCH_FQ is not set +# CONFIG_NET_SCH_HHF is not set +# CONFIG_NET_SCH_PIE is not set +CONFIG_NET_SCH_INGRESS=m +# CONFIG_NET_SCH_PLUG is not set +# CONFIG_NET_SCH_ETS is not set +# CONFIG_NET_SCH_DEFAULT is not set + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +# CONFIG_NET_CLS_ROUTE4 is not set +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +# CONFIG_CLS_U32_PERF is not set +# CONFIG_CLS_U32_MARK is not set +# CONFIG_NET_CLS_FLOW is not set +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_BPF=m +# CONFIG_NET_CLS_FLOWER is not set +# CONFIG_NET_CLS_MATCHALL is not set +# CONFIG_NET_EMATCH is not set +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +# CONFIG_GACT_PROB is not set +CONFIG_NET_ACT_MIRRED=m +# CONFIG_NET_ACT_SAMPLE is not set +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +# CONFIG_NET_ACT_PEDIT is not set +# CONFIG_NET_ACT_SIMP is not set +# CONFIG_NET_ACT_SKBEDIT is not set +# CONFIG_NET_ACT_CSUM is not set +# CONFIG_NET_ACT_MPLS is not set +# CONFIG_NET_ACT_VLAN is not set +CONFIG_NET_ACT_BPF=m +# CONFIG_NET_ACT_CONNMARK is not set +# CONFIG_NET_ACT_CTINFO is not set +# CONFIG_NET_ACT_SKBMOD is not set +# CONFIG_NET_ACT_IFE is not set +# CONFIG_NET_ACT_TUNNEL_KEY is not set +# CONFIG_NET_ACT_GATE is not set +# CONFIG_NET_TC_SKB_EXT is not set +CONFIG_NET_SCH_FIFO=y +# CONFIG_DCB is not set +CONFIG_DNS_RESOLVER=y +# CONFIG_BATMAN_ADV is not set +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_NETLINK_DIAG=y +CONFIG_MPLS=y +CONFIG_NET_MPLS_GSO=m +# CONFIG_MPLS_ROUTING is not set +CONFIG_NET_NSH=m +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +CONFIG_NET_L3_MASTER_DEV=y +# CONFIG_QRTR is not set +# CONFIG_NET_NCSI is not set +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_MAX_SKB_FRAGS=17 +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_XPS=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +CONFIG_BPF_STREAM_PARSER=y +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# end of Network testing +# end of Networking options + +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +CONFIG_BT=m +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_LE=y +CONFIG_BT_LE_L2CAP_ECRED=y +# CONFIG_BT_LEDS is not set +# CONFIG_BT_MSFTEXT is not set +# CONFIG_BT_AOSPEXT is not set +# CONFIG_BT_SELFTEST is not set +# CONFIG_BT_FEATURE_DEBUG is not set + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=m +CONFIG_BT_BCM=m +CONFIG_BT_RTL=m +CONFIG_BT_MTK=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y +CONFIG_BT_HCIBTUSB_POLL_SYNC=y +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIBCM203X=m +# CONFIG_BT_HCIBCM4377 is not set +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIVHCI=m +CONFIG_BT_MRVL=m +CONFIG_BT_ATH3K=m +CONFIG_BT_VIRTIO=m +# end of Bluetooth device drivers + +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +CONFIG_STREAM_PARSER=y +# CONFIG_MCTP is not set +CONFIG_FIB_RULES=y +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y +CONFIG_CFG80211=m +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_DEFAULT_PS=y +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_WEXT=y +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_WEP=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_MAC80211=m +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +# CONFIG_MAC80211_MESH is not set +CONFIG_MAC80211_LEDS=y +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_RFKILL=m +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_INPUT=y +# CONFIG_RFKILL_GPIO is not set +CONFIG_NET_9P=y +CONFIG_NET_9P_FD=y +CONFIG_NET_9P_VIRTIO=y +# CONFIG_NET_9P_RDMA is not set +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_CAIF is not set +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +CONFIG_DST_CACHE=y +CONFIG_GRO_CELLS=y +CONFIG_SOCK_VALIDATE_XMIT=y +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_PAGE_POOL=y +# CONFIG_PAGE_POOL_STATS is not set +CONFIG_FAILOVER=m +CONFIG_ETHTOOL_NETLINK=y + +# +# Device Drivers +# +CONFIG_HAVE_PCI=y +CONFIG_PCI=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +# CONFIG_PCIE_ECRC is not set +# CONFIG_PCIEASPM is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +# CONFIG_PCIE_PTM is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_ARCH_FALLBACKS=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +# CONFIG_PCI_PF_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_ECAM=y +CONFIG_PCI_IOV=y +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_PEER2PEER is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_HOTPLUG_PCI=y +# CONFIG_HOTPLUG_PCI_ACPI is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +CONFIG_HOTPLUG_PCI_SHPC=y + +# +# PCI controller drivers +# +# CONFIG_PCI_FTPCI100 is not set +# CONFIG_PCI_HOST_GENERIC is not set +CONFIG_PCI_LOONGSON=y +# CONFIG_PCIE_MICROCHIP_HOST is not set +# CONFIG_PCIE_XILINX is not set + +# +# Cadence-based PCIe controllers +# +# CONFIG_PCIE_CADENCE_PLAT_HOST is not set +# CONFIG_PCI_J721E_HOST is not set +# end of Cadence-based PCIe controllers + +# +# DesignWare-based PCIe controllers +# +# CONFIG_PCI_MESON is not set +# CONFIG_PCIE_DW_PLAT_HOST is not set +# end of DesignWare-based PCIe controllers + +# +# Mobiveil-based PCIe controllers +# +# end of Mobiveil-based PCIe controllers +# end of PCI controller drivers + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set +# end of PCI Endpoint + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# end of PCI switch controller drivers + +# CONFIG_CXL_BUS is not set +CONFIG_PCCARD=m +CONFIG_PCMCIA=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_CARDBUS=y + +# +# PC-card bridges +# +CONFIG_YENTA=m +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_TOSHIBA=y +# CONFIG_PD6729 is not set +# CONFIG_I82092 is not set +CONFIG_PCCARD_NONSTATIC=y +CONFIG_RAPIDIO=y +CONFIG_RAPIDIO_TSI721=y +CONFIG_RAPIDIO_DISC_TIMEOUT=30 +CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS=y +# CONFIG_RAPIDIO_DMA_ENGINE is not set +# CONFIG_RAPIDIO_DEBUG is not set +CONFIG_RAPIDIO_ENUM_BASIC=m +CONFIG_RAPIDIO_CHMAN=m +CONFIG_RAPIDIO_MPORT_CDEV=m + +# +# RapidIO Switch drivers +# +# CONFIG_RAPIDIO_CPS_XX is not set +# CONFIG_RAPIDIO_CPS_GEN2 is not set +# CONFIG_RAPIDIO_RXS_GEN3 is not set +# end of RapidIO Switch drivers + +# +# Generic Driver Options +# +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +# CONFIG_DEVTMPFS_SAFE is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y + +# +# Firmware loader +# +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_LOADER_COMPRESS_XZ=y +CONFIG_FW_LOADER_COMPRESS_ZSTD=y +CONFIG_FW_CACHE=y +# CONFIG_FW_UPLOAD is not set +# end of Firmware loader + +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_DEV_COREDUMP=y +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=m +CONFIG_REGMAP_MMIO=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set +# CONFIG_FW_DEVLINK_SYNC_STATE_TIMEOUT is not set +# end of Generic Driver Options + +# +# Bus devices +# +# CONFIG_MOXTET is not set +# CONFIG_MHI_BUS is not set +# CONFIG_MHI_BUS_EP is not set +# end of Bus devices + +# CONFIG_CONNECTOR is not set + +# +# Firmware Drivers +# + +# +# ARM System Control and Management Interface Protocol +# +# end of ARM System Control and Management Interface Protocol + +# +# EFI (Extensible Firmware Interface) Support +# +# end of EFI (Extensible Firmware Interface) Support + +# +# Tegra firmware driver +# +# end of Tegra firmware driver +# end of Firmware Drivers + +# CONFIG_GNSS is not set +CONFIG_MTD=m +# CONFIG_MTD_TESTS is not set + +# +# Partition parsers +# +# CONFIG_MTD_AR7_PARTS is not set +# CONFIG_MTD_CMDLINE_PARTS is not set +CONFIG_MTD_OF_PARTS=m +# CONFIG_MTD_REDBOOT_PARTS is not set +# end of Partition parsers + +# +# User Modules And Translation Layers +# +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +# CONFIG_MTD_BLOCK_RO is not set + +# +# Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK. +# +# CONFIG_FTL is not set +# CONFIG_NFTL is not set +# CONFIG_INFTL is not set +# CONFIG_RFD_FTL is not set +# CONFIG_SSFDC is not set +# CONFIG_SM_FTL is not set +# CONFIG_MTD_OOPS is not set +# CONFIG_MTD_SWAP is not set +# CONFIG_MTD_PARTITIONED_MASTER is not set + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_GEN_PROBE=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_RAM=m +CONFIG_MTD_ROM=m +# CONFIG_MTD_ABSENT is not set +# end of RAM/ROM/Flash chip drivers + +# +# Mapping drivers for chip access +# +# CONFIG_MTD_COMPLEX_MAPPINGS is not set +# CONFIG_MTD_PHYSMAP is not set +# CONFIG_MTD_INTEL_VR_NOR is not set +# CONFIG_MTD_PLATRAM is not set +# end of Mapping drivers for chip access + +# +# Self-contained MTD device drivers +# +# CONFIG_MTD_PMC551 is not set +# CONFIG_MTD_DATAFLASH is not set +# CONFIG_MTD_MCHP23K256 is not set +# CONFIG_MTD_MCHP48L640 is not set +# CONFIG_MTD_SST25L is not set +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_BLOCK2MTD is not set + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOCG3 is not set +# end of Self-contained MTD device drivers + +# +# NAND +# +# CONFIG_MTD_ONENAND is not set +# CONFIG_MTD_RAW_NAND is not set +# CONFIG_MTD_SPI_NAND is not set + +# +# ECC engine support +# +# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set +# CONFIG_MTD_NAND_ECC_SW_BCH is not set +# CONFIG_MTD_NAND_ECC_MXIC is not set +# end of ECC engine support +# end of NAND + +# +# LPDDR & LPDDR2 PCM memory drivers +# +# CONFIG_MTD_LPDDR is not set +# end of LPDDR & LPDDR2 PCM memory drivers + +# CONFIG_MTD_SPI_NOR is not set +# CONFIG_MTD_UBI is not set +# CONFIG_MTD_HYPERBUS is not set +CONFIG_DTC=y +CONFIG_OF=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OF_FLATTREE=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_KOBJ=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_IRQ=y +CONFIG_OF_RESERVED_MEM=y +# CONFIG_OF_OVERLAY is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_PARPORT=y +CONFIG_PARPORT_PC=y +CONFIG_PARPORT_SERIAL=y +CONFIG_PARPORT_PC_FIFO=y +# CONFIG_PARPORT_PC_SUPERIO is not set +# CONFIG_PARPORT_PC_PCMCIA is not set +# CONFIG_PARPORT_1284 is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +CONFIG_CDROM=y +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +CONFIG_ZRAM=m +# CONFIG_ZRAM_DEF_COMP_LZORLE is not set +CONFIG_ZRAM_DEF_COMP_ZSTD=y +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +# CONFIG_ZRAM_DEF_COMP_842 is not set +CONFIG_ZRAM_DEF_COMP="zstd" +# CONFIG_ZRAM_WRITEBACK is not set +# CONFIG_ZRAM_MULTI_COMP is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_DRBD is not set +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=8192 +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +CONFIG_VIRTIO_BLK=y +CONFIG_BLK_DEV_RBD=m +# CONFIG_BLK_DEV_UBLK is not set + +# +# NVME Support +# +CONFIG_NVME_CORE=y +CONFIG_BLK_DEV_NVME=y +CONFIG_NVME_MULTIPATH=y +# CONFIG_NVME_VERBOSE_ERRORS is not set +# CONFIG_NVME_HWMON is not set +CONFIG_NVME_FABRICS=m +CONFIG_NVME_RDMA=m +CONFIG_NVME_FC=m +CONFIG_NVME_TCP=m +# CONFIG_NVME_AUTH is not set +CONFIG_NVME_TARGET=m +CONFIG_NVME_TARGET_PASSTHRU=y +CONFIG_NVME_TARGET_LOOP=m +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_TARGET_FC=m +# CONFIG_NVME_TARGET_FCLOOP is not set +CONFIG_NVME_TARGET_TCP=m +# CONFIG_NVME_TARGET_AUTH is not set +# end of NVME Support + +# +# Misc devices +# +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_PHANTOM is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_LATTICE_ECP3_CONFIG is not set +# CONFIG_SRAM is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_HISI_HIKEY_USB is not set +# CONFIG_OPEN_DICE is not set +# CONFIG_VCPU_STALL_DETECTOR is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +# CONFIG_EEPROM_AT25 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_93XX46 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_EE1004 is not set +# end of EEPROM support + +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_TI_ST is not set +# end of Texas Instruments shared transport line discipline + +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_BCM_VK is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +# CONFIG_UACCE is not set +# CONFIG_PVPANIC is not set +# CONFIG_GP_PCI1XXXX is not set +# end of Misc devices + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +CONFIG_RAID_ATTRS=y +CONFIG_SCSI_COMMON=y +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +CONFIG_BLK_DEV_SR=y +CONFIG_CHR_DEV_SG=y +CONFIG_BLK_DEV_BSG=y +CONFIG_CHR_DEV_SCH=m +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=y +CONFIG_SCSI_SAS_LIBSAS=y +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +# CONFIG_SCSI_SRP_ATTRS is not set +# end of SCSI Transports + +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_SCSI_BNX2X_FCOE is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC94XX is not set +CONFIG_SCSI_MVSAS=y +# CONFIG_SCSI_MVSAS_DEBUG is not set +CONFIG_SCSI_MVSAS_TASKLET=y +CONFIG_SCSI_MVUMI=y +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_ESAS2R is not set +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_MM=y +CONFIG_MEGARAID_MAILBOX=y +CONFIG_MEGARAID_LEGACY=y +CONFIG_MEGARAID_SAS=y +CONFIG_SCSI_MPT3SAS=y +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS=y +# CONFIG_SCSI_MPI3MR is not set +# CONFIG_SCSI_SMARTPQI is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_BUSLOGIC is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_MYRS is not set +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_PPA is not set +# CONFIG_SCSI_IMM is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_IPR is not set +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLA_FC=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_SCSI_QLA_ISCSI=m +# CONFIG_SCSI_EFCT is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_BFA_FC is not set +CONFIG_SCSI_VIRTIO=m +# CONFIG_SCSI_CHELSIO_FCOE is not set +# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set +# CONFIG_SCSI_DH is not set +# end of SCSI device support + +CONFIG_ATA=y +CONFIG_SATA_HOST=y +CONFIG_PATA_TIMINGS=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +CONFIG_SATA_AHCI_PLATFORM=y +# CONFIG_AHCI_DWC is not set +# CONFIG_AHCI_CEVA is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +# CONFIG_PDC_ADMA is not set +# CONFIG_SATA_QSTOR is not set +# CONFIG_SATA_SX4 is not set +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +# CONFIG_ATA_PIIX is not set +# CONFIG_SATA_DWC is not set +# CONFIG_SATA_MV is not set +# CONFIG_SATA_NV is not set +# CONFIG_SATA_PROMISE is not set +# CONFIG_SATA_SIL is not set +# CONFIG_SATA_SIS is not set +# CONFIG_SATA_SVW is not set +# CONFIG_SATA_ULI is not set +# CONFIG_SATA_VIA is not set +# CONFIG_SATA_VITESSE is not set + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +# CONFIG_PATA_ARTOP is not set +CONFIG_PATA_ATIIXP=y +# CONFIG_PATA_ATP867X is not set +# CONFIG_PATA_CMD64X is not set +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +# CONFIG_PATA_IT8213 is not set +# CONFIG_PATA_IT821X is not set +# CONFIG_PATA_JMICRON is not set +# CONFIG_PATA_MARVELL is not set +# CONFIG_PATA_NETCELL is not set +# CONFIG_PATA_NINJA32 is not set +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +# CONFIG_PATA_RDC is not set +# CONFIG_PATA_SCH is not set +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +# CONFIG_PATA_SIS is not set +# CONFIG_PATA_TOSHIBA is not set +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +CONFIG_PATA_PCMCIA=m +# CONFIG_PATA_OF_PLATFORM is not set +# CONFIG_PATA_RZ1000 is not set +# CONFIG_PATA_PARPORT is not set + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +# CONFIG_ATA_GENERIC is not set +# CONFIG_PATA_LEGACY is not set +CONFIG_MD=y +CONFIG_BLK_DEV_MD=m +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MD_MULTIPATH=m +# CONFIG_MD_FAULTY is not set +CONFIG_BCACHE=m +# CONFIG_BCACHE_DEBUG is not set +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_ASYNC_REGISTRATION is not set +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DM=y +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +# CONFIG_DM_UNSTRIPED is not set +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_WRITECACHE=m +# CONFIG_DM_EBS is not set +# CONFIG_DM_ERA is not set +# CONFIG_DM_CLONE is not set +CONFIG_DM_MIRROR=m +# CONFIG_DM_LOG_USERSPACE is not set +CONFIG_DM_RAID=m +CONFIG_DM_ZERO=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +# CONFIG_DM_MULTIPATH_HST is not set +# CONFIG_DM_MULTIPATH_IOA is not set +# CONFIG_DM_DELAY is not set +# CONFIG_DM_DUST is not set +# CONFIG_DM_INIT is not set +# CONFIG_DM_UEVENT is not set +# CONFIG_DM_FLAKEY is not set +# CONFIG_DM_VERITY is not set +# CONFIG_DM_SWITCH is not set +# CONFIG_DM_LOG_WRITES is not set +# CONFIG_DM_INTEGRITY is not set +# CONFIG_DM_AUDIT is not set +CONFIG_TARGET_CORE=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_USER2=m +CONFIG_LOOPBACK_TARGET=m +# CONFIG_TCM_FC is not set +CONFIG_ISCSI_TARGET=m +# CONFIG_ISCSI_TARGET_CXGB4 is not set +# CONFIG_REMOTE_TARGET is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# end of IEEE 1394 (FireWire) support + +CONFIG_NETDEVICES=y +CONFIG_MII=y +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=y +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_IFB is not set +CONFIG_NET_TEAM=y +# CONFIG_NET_TEAM_MODE_BROADCAST is not set +# CONFIG_NET_TEAM_MODE_ROUNDROBIN is not set +# CONFIG_NET_TEAM_MODE_RANDOM is not set +# CONFIG_NET_TEAM_MODE_ACTIVEBACKUP is not set +# CONFIG_NET_TEAM_MODE_LOADBALANCE is not set +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVLAN=m +# CONFIG_IPVTAP is not set +CONFIG_VXLAN=y +# CONFIG_GENEVE is not set +# CONFIG_BAREUDP is not set +# CONFIG_GTP is not set +# CONFIG_AMT is not set +# CONFIG_MACSEC is not set +# CONFIG_NETCONSOLE is not set +CONFIG_RIONET=m +CONFIG_RIONET_TX_SIZE=128 +CONFIG_RIONET_RX_SIZE=128 +CONFIG_TUN=m +CONFIG_TAP=m +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_VETH=m +CONFIG_VIRTIO_NET=m +# CONFIG_NLMON is not set +# CONFIG_VSOCKMON is not set +# CONFIG_ARCNET is not set +CONFIG_ETHERNET=y +CONFIG_MDIO=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALACRITECH is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_NET_VENDOR_AMAZON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_AQUANTIA is not set +# CONFIG_NET_VENDOR_ARC is not set +CONFIG_NET_VENDOR_ASIX=y +# CONFIG_SPI_AX88796C is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +CONFIG_NET_VENDOR_BROADCOM=y +# CONFIG_B44 is not set +# CONFIG_BCMGENET is not set +CONFIG_BNX2=y +# CONFIG_CNIC is not set +# CONFIG_TIGON3 is not set +# CONFIG_BNX2X is not set +# CONFIG_SYSTEMPORT is not set +# CONFIG_BNXT is not set +CONFIG_NET_VENDOR_CADENCE=y +# CONFIG_MACB is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +# CONFIG_CHELSIO_T4VF is not set +CONFIG_CHELSIO_INLINE_CRYPTO=y +# CONFIG_CHELSIO_TLS_DEVICE is not set +# CONFIG_NET_VENDOR_CISCO is not set +CONFIG_NET_VENDOR_CORTINA=y +# CONFIG_GEMINI_ETHERNET is not set +CONFIG_NET_VENDOR_DAVICOM=y +# CONFIG_DM9051 is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +CONFIG_NET_VENDOR_ENGLEDER=y +# CONFIG_TSNEP is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +CONFIG_NET_VENDOR_FUJITSU=y +# CONFIG_PCMCIA_FMVJ18X is not set +CONFIG_NET_VENDOR_FUNGIBLE=y +# CONFIG_FUN_ETH is not set +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +# CONFIG_NET_VENDOR_I825XX is not set +CONFIG_NET_VENDOR_INTEL=y +# CONFIG_E100 is not set +CONFIG_E1000=y +CONFIG_E1000E=y +CONFIG_IGB=y +CONFIG_IGB_HWMON=y +# CONFIG_IGBVF is not set +CONFIG_IXGBE=y +CONFIG_IXGBE_HWMON=y +# CONFIG_IXGBEVF is not set +# CONFIG_I40E is not set +# CONFIG_I40EVF is not set +# CONFIG_ICE is not set +# CONFIG_FM10K is not set +# CONFIG_IGC is not set +# CONFIG_JME is not set +CONFIG_NET_VENDOR_ADI=y +CONFIG_NET_VENDOR_LITEX=y +# CONFIG_LITEX_LITEETH is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +CONFIG_NET_VENDOR_MICROCHIP=y +# CONFIG_ENC28J60 is not set +# CONFIG_ENCX24J600 is not set +# CONFIG_LAN743X is not set +# CONFIG_VCAP is not set +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +CONFIG_NET_VENDOR_NI=y +# CONFIG_NI_XGE_MANAGEMENT_ENET is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +CONFIG_NET_VENDOR_NETERION=y +# CONFIG_S2IO is not set +# CONFIG_NET_VENDOR_NETRONOME is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +CONFIG_NET_VENDOR_PACKET_ENGINES=y +# CONFIG_HAMACHI is not set +# CONFIG_YELLOWFIN is not set +CONFIG_NET_VENDOR_PENSANDO=y +# CONFIG_IONIC is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +# CONFIG_8139TOO_8129 is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=y +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SOLARFLARE is not set +# CONFIG_NET_VENDOR_SMSC is not set +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=y +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMMAC_PLATFORM=y +# CONFIG_DWMAC_DWC_QOS_ETH is not set +CONFIG_DWMAC_GENERIC=y +# CONFIG_DWMAC_INTEL_PLAT is not set +CONFIG_DWMAC_LOONGSON=y +# CONFIG_STMMAC_PCI is not set +# CONFIG_NET_VENDOR_SUN is not set +CONFIG_NET_VENDOR_SYNOPSYS=y +# CONFIG_DWC_XLGMAC is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +CONFIG_NET_VENDOR_VERTEXCOM=y +# CONFIG_MSE102X is not set +# CONFIG_NET_VENDOR_VIA is not set +CONFIG_NET_VENDOR_WANGXUN=y +# CONFIG_NGBE is not set +# CONFIG_TXGBE is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NET_VENDOR_XILINX is not set +CONFIG_NET_VENDOR_XIRCOM=y +# CONFIG_PCMCIA_XIRC2PS is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLINK=y +CONFIG_PHYLIB=y +CONFIG_SWPHY=y +# CONFIG_LED_TRIGGER_PHY is not set +CONFIG_PHYLIB_LEDS=y +CONFIG_FIXED_PHY=y +# CONFIG_SFP is not set + +# +# MII PHY device drivers +# +# CONFIG_AMD_PHY is not set +# CONFIG_ADIN_PHY is not set +# CONFIG_ADIN1100_PHY is not set +# CONFIG_AQUANTIA_PHY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BROADCOM_PHY is not set +# CONFIG_BCM54140_PHY is not set +# CONFIG_BCM7XXX_PHY is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCM87XX_PHY is not set +# CONFIG_CICADA_PHY is not set +# CONFIG_CORTINA_PHY is not set +# CONFIG_DAVICOM_PHY is not set +# CONFIG_ICPLUS_PHY is not set +# CONFIG_LXT_PHY is not set +# CONFIG_INTEL_XWAY_PHY is not set +# CONFIG_LSI_ET1011C_PHY is not set +# CONFIG_MARVELL_PHY is not set +# CONFIG_MARVELL_10G_PHY is not set +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MEDIATEK_GE_PHY is not set +# CONFIG_MICREL_PHY is not set +# CONFIG_MICROCHIP_T1S_PHY is not set +# CONFIG_MICROCHIP_PHY is not set +# CONFIG_MICROCHIP_T1_PHY is not set +# CONFIG_MICROSEMI_PHY is not set +# CONFIG_MOTORCOMM_PHY is not set +# CONFIG_NATIONAL_PHY is not set +# CONFIG_NXP_CBTX_PHY is not set +# CONFIG_NXP_C45_TJA11XX_PHY is not set +# CONFIG_NXP_TJA11XX_PHY is not set +# CONFIG_NCN26000_PHY is not set +# CONFIG_QSEMI_PHY is not set +CONFIG_REALTEK_PHY=y +# CONFIG_RENESAS_PHY is not set +# CONFIG_ROCKCHIP_PHY is not set +# CONFIG_SMSC_PHY is not set +# CONFIG_STE10XP is not set +# CONFIG_TERANETICS_PHY is not set +# CONFIG_DP83822_PHY is not set +# CONFIG_DP83TC811_PHY is not set +# CONFIG_DP83848_PHY is not set +# CONFIG_DP83867_PHY is not set +# CONFIG_DP83869_PHY is not set +# CONFIG_DP83TD510_PHY is not set +# CONFIG_VITESSE_PHY is not set +# CONFIG_XILINX_GMII2RGMII is not set +# CONFIG_MICREL_KS8995MA is not set +# CONFIG_PSE_CONTROLLER is not set +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_BUS=y +CONFIG_FWNODE_MDIO=y +CONFIG_OF_MDIO=y +CONFIG_ACPI_MDIO=y +CONFIG_MDIO_DEVRES=y +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_HISI_FEMAC is not set +# CONFIG_MDIO_MVUSB is not set +# CONFIG_MDIO_MSCC_MIIM is not set +# CONFIG_MDIO_OCTEON is not set +# CONFIG_MDIO_IPQ4019 is not set +# CONFIG_MDIO_IPQ8064 is not set +# CONFIG_MDIO_THUNDER is not set + +# +# MDIO Multiplexers +# +# CONFIG_MDIO_BUS_MUX_GPIO is not set +# CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set +# CONFIG_MDIO_BUS_MUX_MMIOREG is not set + +# +# PCS device drivers +# +CONFIG_PCS_XPCS=y +# end of PCS device drivers + +# CONFIG_PLIP is not set +CONFIG_PPP=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOE=m +# CONFIG_PPPOE_HASH_BITS_1 is not set +# CONFIG_PPPOE_HASH_BITS_2 is not set +CONFIG_PPPOE_HASH_BITS_4=y +# CONFIG_PPPOE_HASH_BITS_8 is not set +CONFIG_PPPOE_HASH_BITS=4 +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +# CONFIG_SLIP is not set +CONFIG_SLHC=m +CONFIG_USB_NET_DRIVERS=y +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +# CONFIG_USB_LAN78XX is not set +CONFIG_USB_USBNET=m +# CONFIG_USB_NET_AX8817X is not set +# CONFIG_USB_NET_AX88179_178A is not set +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +# CONFIG_USB_NET_DM9601 is not set +# CONFIG_USB_NET_SR9700 is not set +# CONFIG_USB_NET_SR9800 is not set +# CONFIG_USB_NET_SMSC75XX is not set +# CONFIG_USB_NET_SMSC95XX is not set +# CONFIG_USB_NET_GL620A is not set +# CONFIG_USB_NET_NET1080 is not set +# CONFIG_USB_NET_PLUSB is not set +# CONFIG_USB_NET_MCS7830 is not set +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET=m +# CONFIG_USB_ALI_M5632 is not set +# CONFIG_USB_AN2720 is not set +# CONFIG_USB_BELKIN is not set +# CONFIG_USB_ARMLINUX is not set +# CONFIG_USB_EPSON2888 is not set +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_NET_ZAURUS is not set +# CONFIG_USB_NET_CX82310_ETH is not set +# CONFIG_USB_NET_KALMIA is not set +# CONFIG_USB_NET_QMI_WWAN is not set +# CONFIG_USB_HSO is not set +# CONFIG_USB_NET_INT51X1 is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_USB_SIERRA_NET is not set +# CONFIG_USB_VL600 is not set +# CONFIG_USB_NET_CH9200 is not set +# CONFIG_USB_NET_AQC111 is not set +CONFIG_USB_RTL8153_ECM=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +# CONFIG_ADM8211 is not set +CONFIG_ATH_COMMON=m +CONFIG_WLAN_VENDOR_ATH=y +# CONFIG_ATH_DEBUG is not set +# CONFIG_ATH5K is not set +# CONFIG_ATH5K_PCI is not set +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K=m +CONFIG_ATH9K_PCI=y +# CONFIG_ATH9K_AHB is not set +# CONFIG_ATH9K_DYNACK is not set +# CONFIG_ATH9K_WOW is not set +CONFIG_ATH9K_RFKILL=y +# CONFIG_ATH9K_CHANNEL_CONTEXT is not set +CONFIG_ATH9K_PCOEM=y +# CONFIG_ATH9K_PCI_NO_EEPROM is not set +CONFIG_ATH9K_HTC=m +# CONFIG_ATH9K_HWRNG is not set +# CONFIG_CARL9170 is not set +# CONFIG_ATH6KL is not set +# CONFIG_AR5523 is not set +# CONFIG_WIL6210 is not set +# CONFIG_ATH10K is not set +# CONFIG_WCN36XX is not set +# CONFIG_ATH11K is not set +# CONFIG_ATH12K is not set +CONFIG_WLAN_VENDOR_ATMEL=y +# CONFIG_ATMEL is not set +# CONFIG_AT76C50X_USB is not set +CONFIG_WLAN_VENDOR_BROADCOM=y +# CONFIG_B43 is not set +# CONFIG_B43LEGACY is not set +# CONFIG_BRCMSMAC is not set +# CONFIG_BRCMFMAC is not set +CONFIG_WLAN_VENDOR_CISCO=y +# CONFIG_AIRO is not set +# CONFIG_AIRO_CS is not set +CONFIG_WLAN_VENDOR_INTEL=y +# CONFIG_IPW2100 is not set +# CONFIG_IPW2200 is not set +# CONFIG_IWL4965 is not set +# CONFIG_IWL3945 is not set +CONFIG_IWLWIFI=m +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLDVM=m +CONFIG_IWLMVM=m +CONFIG_IWLWIFI_OPMODE_MODULAR=y + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +# end of Debugging Options + +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_HOSTAP=m +# CONFIG_HOSTAP_FIRMWARE is not set +# CONFIG_HOSTAP_PLX is not set +# CONFIG_HOSTAP_PCI is not set +# CONFIG_HOSTAP_CS is not set +# CONFIG_HERMES is not set +# CONFIG_P54_COMMON is not set +CONFIG_WLAN_VENDOR_MARVELL=y +# CONFIG_LIBERTAS is not set +# CONFIG_LIBERTAS_THINFIRM is not set +# CONFIG_MWIFIEX is not set +# CONFIG_MWL8K is not set +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_MT7601U=m +# CONFIG_MT76x0U is not set +# CONFIG_MT76x0E is not set +# CONFIG_MT76x2E is not set +# CONFIG_MT76x2U is not set +# CONFIG_MT7603E is not set +# CONFIG_MT7615E is not set +# CONFIG_MT7663U is not set +# CONFIG_MT7915E is not set +# CONFIG_MT7921E is not set +# CONFIG_MT7921U is not set +# CONFIG_MT7996E is not set +CONFIG_WLAN_VENDOR_MICROCHIP=y +# CONFIG_WILC1000_SPI is not set +CONFIG_WLAN_VENDOR_PURELIFI=y +# CONFIG_PLFXLC is not set +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_RT2X00=m +# CONFIG_RT2400PCI is not set +# CONFIG_RT2500PCI is not set +# CONFIG_RT61PCI is not set +# CONFIG_RT2800PCI is not set +# CONFIG_RT2500USB is not set +# CONFIG_RT73USB is not set +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT35XX=y +# CONFIG_RT2800USB_RT3573 is not set +# CONFIG_RT2800USB_RT53XX is not set +# CONFIG_RT2800USB_RT55XX is not set +# CONFIG_RT2800USB_UNKNOWN is not set +CONFIG_RT2800_LIB=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_CRYPTO=y +CONFIG_RT2X00_LIB_LEDS=y +# CONFIG_RT2X00_DEBUG is not set +CONFIG_WLAN_VENDOR_REALTEK=y +# CONFIG_RTL8180 is not set +# CONFIG_RTL8187 is not set +CONFIG_RTL_CARDS=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192DE=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8188EE=m +CONFIG_RTL8192EE=m +CONFIG_RTL8821AE=m +CONFIG_RTL8192CU=m +CONFIG_RTLWIFI=m +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTLBTCOEXIST=m +CONFIG_RTL8XXXU=m +# CONFIG_RTL8XXXU_UNTESTED is not set +CONFIG_RTW88=m +CONFIG_RTW88_CORE=m +CONFIG_RTW88_PCI=m +CONFIG_RTW88_8822B=m +CONFIG_RTW88_8822C=m +CONFIG_RTW88_8723D=m +CONFIG_RTW88_8821C=m +CONFIG_RTW88_8822BE=m +# CONFIG_RTW88_8822BU is not set +CONFIG_RTW88_8822CE=m +# CONFIG_RTW88_8822CU is not set +CONFIG_RTW88_8723DE=m +# CONFIG_RTW88_8723DU is not set +CONFIG_RTW88_8821CE=m +# CONFIG_RTW88_8821CU is not set +# CONFIG_RTW88_DEBUG is not set +# CONFIG_RTW88_DEBUGFS is not set +CONFIG_RTW89=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_PCI=m +CONFIG_RTW89_8852A=m +CONFIG_RTW89_8852C=m +# CONFIG_RTW89_8851BE is not set +CONFIG_RTW89_8852AE=m +# CONFIG_RTW89_8852BE is not set +CONFIG_RTW89_8852CE=m +# CONFIG_RTW89_DEBUGMSG is not set +# CONFIG_RTW89_DEBUGFS is not set +CONFIG_WLAN_VENDOR_RSI=y +# CONFIG_RSI_91X is not set +CONFIG_WLAN_VENDOR_SILABS=y +# CONFIG_WFX is not set +CONFIG_WLAN_VENDOR_ST=y +# CONFIG_CW1200 is not set +CONFIG_WLAN_VENDOR_TI=y +# CONFIG_WL1251 is not set +# CONFIG_WL12XX is not set +# CONFIG_WL18XX is not set +# CONFIG_WLCORE is not set +CONFIG_WLAN_VENDOR_ZYDAS=y +# CONFIG_USB_ZD1201 is not set +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_WLAN_VENDOR_QUANTENNA=y +# CONFIG_QTNFMAC_PCIE is not set +# CONFIG_PCMCIA_RAYCS is not set +# CONFIG_PCMCIA_WL3501 is not set +CONFIG_USB_NET_RNDIS_WLAN=m +# CONFIG_MAC80211_HWSIM is not set +# CONFIG_VIRT_WIFI is not set +# CONFIG_WAN is not set + +# +# Wireless WAN +# +# CONFIG_WWAN is not set +# end of Wireless WAN + +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +CONFIG_NET_FAILOVER=m +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_LEDS=y +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_SPARSEKMAP=y +# CONFIG_INPUT_MATRIXKMAP is not set +CONFIG_INPUT_VIVALDIFMAP=y + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1050 is not set +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_DLINK_DIR685 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_GPIO is not set +# CONFIG_KEYBOARD_GPIO_POLLED is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_MATRIX is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_SAMSUNG is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_OMAP4 is not set +# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set +CONFIG_KEYBOARD_XTKBD=m +# CONFIG_KEYBOARD_CAP11XX is not set +# CONFIG_KEYBOARD_BCM is not set +# CONFIG_KEYBOARD_CYPRESS_SF is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_SENTELIC=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_SMBUS=y +CONFIG_MOUSE_SERIAL=m +# CONFIG_MOUSE_APPLETOUCH is not set +# CONFIG_MOUSE_BCM5974 is not set +# CONFIG_MOUSE_CYAPA is not set +# CONFIG_MOUSE_ELAN_I2C is not set +# CONFIG_MOUSE_VSXXXAA is not set +# CONFIG_MOUSE_GPIO is not set +# CONFIG_MOUSE_SYNAPTICS_I2C is not set +# CONFIG_MOUSE_SYNAPTICS_USB is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +CONFIG_INPUT_MISC=y +# CONFIG_INPUT_AD714X is not set +# CONFIG_INPUT_ATMEL_CAPTOUCH is not set +# CONFIG_INPUT_BMA150 is not set +# CONFIG_INPUT_E3X0_BUTTON is not set +# CONFIG_INPUT_MMA8450 is not set +# CONFIG_INPUT_GPIO_BEEPER is not set +# CONFIG_INPUT_GPIO_DECODER is not set +# CONFIG_INPUT_GPIO_VIBRA is not set +# CONFIG_INPUT_ATI_REMOTE2 is not set +# CONFIG_INPUT_KEYSPAN_REMOTE is not set +# CONFIG_INPUT_KXTJ9 is not set +# CONFIG_INPUT_POWERMATE is not set +# CONFIG_INPUT_YEALINK is not set +# CONFIG_INPUT_CM109 is not set +CONFIG_INPUT_UINPUT=m +# CONFIG_INPUT_PCF8574 is not set +# CONFIG_INPUT_PWM_BEEPER is not set +# CONFIG_INPUT_PWM_VIBRA is not set +# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set +# CONFIG_INPUT_DA7280_HAPTICS is not set +# CONFIG_INPUT_ADXL34X is not set +# CONFIG_INPUT_IMS_PCU is not set +# CONFIG_INPUT_IQS269A is not set +# CONFIG_INPUT_IQS626A is not set +# CONFIG_INPUT_IQS7222 is not set +# CONFIG_INPUT_CMA3000 is not set +# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set +# CONFIG_INPUT_DRV260X_HAPTICS is not set +# CONFIG_INPUT_DRV2665_HAPTICS is not set +# CONFIG_INPUT_DRV2667_HAPTICS is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=m +# CONFIG_SERIO_PARKBD is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_RAW=m +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_SERIO_APBPS2 is not set +# CONFIG_SERIO_GPIO_PS2 is not set +# CONFIG_USERIO is not set +# CONFIG_GAMEPORT is not set +# end of Hardware I/O ports +# end of Input device support + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=16 +CONFIG_LEGACY_TIOCSTI=y +CONFIG_LDISC_AUTOLOAD=y + +# +# Serial drivers +# +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCILIB=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_EXAR=y +# CONFIG_SERIAL_8250_CS is not set +CONFIG_SERIAL_8250_NR_UARTS=16 +CONFIG_SERIAL_8250_RUNTIME_UARTS=16 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +# CONFIG_SERIAL_8250_PCI1XXXX is not set +CONFIG_SERIAL_8250_SHARE_IRQ=y +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_RSA=y +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_PERICOM=y +# CONFIG_SERIAL_OF_PLATFORM is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MAX3100 is not set +# CONFIG_SERIAL_MAX310X is not set +# CONFIG_SERIAL_UARTLITE is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SIFIVE is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_XILINX_PS_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set +# CONFIG_SERIAL_SPRD is not set +# end of Serial drivers + +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_N_HDLC is not set +# CONFIG_IPWIRELESS is not set +# CONFIG_N_GSM is not set +# CONFIG_NOZOMI is not set +# CONFIG_NULL_TTY is not set +CONFIG_HVC_DRIVER=y +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +CONFIG_PRINTER=m +# CONFIG_LP_CONSOLE is not set +# CONFIG_PPDEV is not set +CONFIG_VIRTIO_CONSOLE=y +CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_PLAT_DATA=y +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +# CONFIG_IPMI_SSIF is not set +# CONFIG_IPMI_WATCHDOG is not set +# CONFIG_IPMI_POWEROFF is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_BA431 is not set +CONFIG_HW_RANDOM_VIRTIO=m +# CONFIG_HW_RANDOM_CCTRNG is not set +# CONFIG_HW_RANDOM_XIPHERA is not set +# CONFIG_APPLICOM is not set +CONFIG_DEVMEM=y +CONFIG_DEVPORT=y +# CONFIG_TCG_TPM is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XILLYUSB is not set +# end of Character devices + +# +# I2C support +# +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=y +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_AMD_MP2 is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +CONFIG_I2C_PIIX4=y +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_CBUS_GPIO is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_GPIO=y +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +# CONFIG_I2C_LS2X is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_RK3X is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_CP2615 is not set +# CONFIG_I2C_PARPORT is not set +# CONFIG_I2C_PCI1XXXX is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_VIRTIO is not set +# end of I2C Hardware Bus support + +# CONFIG_I2C_STUB is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# end of I2C support + +# CONFIG_I3C is not set +CONFIG_SPI=y +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_MASTER=y +# CONFIG_SPI_MEM is not set + +# +# SPI Master Controller Drivers +# +# CONFIG_SPI_ALTERA is not set +# CONFIG_SPI_AXI_SPI_ENGINE is not set +# CONFIG_SPI_BITBANG is not set +# CONFIG_SPI_BUTTERFLY is not set +# CONFIG_SPI_CADENCE is not set +# CONFIG_SPI_DESIGNWARE is not set +# CONFIG_SPI_GPIO is not set +# CONFIG_SPI_LM70_LLP is not set +# CONFIG_SPI_FSL_SPI is not set +# CONFIG_SPI_MICROCHIP_CORE is not set +# CONFIG_SPI_MICROCHIP_CORE_QSPI is not set +# CONFIG_SPI_OC_TINY is not set +# CONFIG_SPI_PCI1XXXX is not set +# CONFIG_SPI_PXA2XX is not set +# CONFIG_SPI_SC18IS602 is not set +# CONFIG_SPI_SIFIVE is not set +# CONFIG_SPI_MXIC is not set +# CONFIG_SPI_XCOMM is not set +# CONFIG_SPI_XILINX is not set +# CONFIG_SPI_ZYNQMP_GQSPI is not set +# CONFIG_SPI_AMD is not set + +# +# SPI Multiplexer support +# +# CONFIG_SPI_MUX is not set + +# +# SPI Protocol Masters +# +# CONFIG_SPI_SPIDEV is not set +# CONFIG_SPI_LOOPBACK_TEST is not set +# CONFIG_SPI_TLE62X0 is not set +# CONFIG_SPI_SLAVE is not set +CONFIG_SPI_DYNAMIC=y +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_PARPORT is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +# CONFIG_DP83640_PHY is not set +# CONFIG_PTP_1588_CLOCK_INES is not set +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +# CONFIG_PTP_1588_CLOCK_IDTCM is not set +# CONFIG_PTP_1588_CLOCK_OCP is not set +# end of PTP clock support + +# CONFIG_PINCTRL is not set +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_OF_GPIO=y +CONFIG_GPIO_ACPI=y +# CONFIG_DEBUG_GPIO is not set +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y + +# +# Memory mapped GPIO drivers +# +# CONFIG_GPIO_74XX_MMIO is not set +# CONFIG_GPIO_ALTERA is not set +# CONFIG_GPIO_AMDPT is not set +# CONFIG_GPIO_CADENCE is not set +# CONFIG_GPIO_DWAPB is not set +# CONFIG_GPIO_EXAR is not set +# CONFIG_GPIO_FTGPIO010 is not set +# CONFIG_GPIO_GENERIC_PLATFORM is not set +# CONFIG_GPIO_GRGPIO is not set +# CONFIG_GPIO_HLWD is not set +# CONFIG_GPIO_LOGICVC is not set +# CONFIG_GPIO_LOONGSON is not set +# CONFIG_GPIO_LOONGSON_64BIT is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_SIFIVE is not set +# CONFIG_GPIO_SYSCON is not set +# CONFIG_GPIO_XILINX is not set +# CONFIG_GPIO_AMD_FCH is not set +# end of Memory mapped GPIO drivers + +# +# I2C GPIO expanders +# +# CONFIG_GPIO_ADNP is not set +# CONFIG_GPIO_FXL6408 is not set +# CONFIG_GPIO_GW_PLD is not set +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_TPIC2810 is not set +# end of I2C GPIO expanders + +# +# MFD GPIO expanders +# +# end of MFD GPIO expanders + +# +# PCI GPIO expanders +# +# CONFIG_GPIO_PCI_IDIO_16 is not set +# CONFIG_GPIO_PCIE_IDIO_24 is not set +# CONFIG_GPIO_RDC321X is not set +# end of PCI GPIO expanders + +# +# SPI GPIO expanders +# +# CONFIG_GPIO_74X164 is not set +# CONFIG_GPIO_MAX3191X is not set +# CONFIG_GPIO_MAX7301 is not set +# CONFIG_GPIO_MC33880 is not set +# CONFIG_GPIO_PISOSR is not set +# CONFIG_GPIO_XRA1403 is not set +# end of SPI GPIO expanders + +# +# USB GPIO expanders +# +# end of USB GPIO expanders + +# +# Virtual GPIO drivers +# +# CONFIG_GPIO_AGGREGATOR is not set +# CONFIG_GPIO_LATCH is not set +# CONFIG_GPIO_MOCKUP is not set +# CONFIG_GPIO_VIRTIO is not set +# CONFIG_GPIO_SIM is not set +# end of Virtual GPIO drivers + +# CONFIG_W1 is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +# CONFIG_IP5XXX_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_CHARGER_ADP5061 is not set +# CONFIG_BATTERY_CW2015 is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SAMSUNG_SDI is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_GPIO is not set +# CONFIG_CHARGER_LT3651 is not set +# CONFIG_CHARGER_LTC4162L is not set +# CONFIG_CHARGER_DETECTOR_MAX14656 is not set +# CONFIG_CHARGER_MAX77976 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_BQ24257 is not set +# CONFIG_CHARGER_BQ24735 is not set +# CONFIG_CHARGER_BQ2515X is not set +# CONFIG_CHARGER_BQ25890 is not set +# CONFIG_CHARGER_BQ25980 is not set +# CONFIG_CHARGER_BQ256XX is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_BATTERY_RT5033 is not set +# CONFIG_CHARGER_RT9455 is not set +# CONFIG_CHARGER_BD99954 is not set +# CONFIG_BATTERY_UG3105 is not set +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_AD7314 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM1177 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7310 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_AHT10 is not set +# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set +# CONFIG_SENSORS_AS370 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_AXI_FAN_CONTROL is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_CORSAIR_CPRO is not set +# CONFIG_SENSORS_CORSAIR_PSU is not set +# CONFIG_SENSORS_DRIVETEMP is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_G762 is not set +# CONFIG_SENSORS_GPIO_FAN is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_IBMAEM is not set +# CONFIG_SENSORS_IBMPEX is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_POWR1220 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LTC2945 is not set +# CONFIG_SENSORS_LTC2947_I2C is not set +# CONFIG_SENSORS_LTC2947_SPI is not set +# CONFIG_SENSORS_LTC2990 is not set +# CONFIG_SENSORS_LTC2992 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4222 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4260 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_MAX1111 is not set +# CONFIG_SENSORS_MAX127 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX31722 is not set +# CONFIG_SENSORS_MAX31730 is not set +# CONFIG_SENSORS_MAX31760 is not set +# CONFIG_MAX31827 is not set +# CONFIG_SENSORS_MAX6620 is not set +# CONFIG_SENSORS_MAX6621 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MAX31790 is not set +# CONFIG_SENSORS_MC34VR500 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_TC654 is not set +# CONFIG_SENSORS_TPS23861 is not set +# CONFIG_SENSORS_MR75203 is not set +# CONFIG_SENSORS_ADCXX is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM70 is not set +# CONFIG_SENSORS_LM73 is not set +CONFIG_SENSORS_LM75=m +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +CONFIG_SENSORS_LM93=m +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_NCT6683 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NCT6775_I2C is not set +# CONFIG_SENSORS_NCT7802 is not set +# CONFIG_SENSORS_NPCM7XX is not set +# CONFIG_SENSORS_NZXT_KRAKEN2 is not set +# CONFIG_SENSORS_NZXT_SMART2 is not set +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_PWM_FAN is not set +# CONFIG_SENSORS_SBTSI is not set +# CONFIG_SENSORS_SBRMI is not set +# CONFIG_SENSORS_SHT15 is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SHT3x is not set +# CONFIG_SENSORS_SHT4x is not set +# CONFIG_SENSORS_SHTC1 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC2305 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_STTS751 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_ADC128D818 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_ADS7871 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_INA238 is not set +# CONFIG_SENSORS_INA3221 is not set +# CONFIG_SENSORS_TC74 is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP103 is not set +# CONFIG_SENSORS_TMP108 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_TMP464 is not set +# CONFIG_SENSORS_TMP513 is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83773G is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +CONFIG_SENSORS_W83627HF=m +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_XGENE is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +CONFIG_THERMAL=y +# CONFIG_THERMAL_NETLINK is not set +# CONFIG_THERMAL_STATISTICS is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +CONFIG_THERMAL_GOV_USER_SPACE=y +# CONFIG_CPU_THERMAL is not set +# CONFIG_DEVFREQ_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_THERMAL_MMIO is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_ACT8945A is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_SMPRO is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ATMEL_FLEXCOM is not set +# CONFIG_MFD_ATMEL_HLCDC is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_MFD_MAX5970 is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_GATEWORKS_GSC is not set +# CONFIG_MFD_MC13XXX_SPI is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_MFD_HI6421_PMIC is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77541 is not set +# CONFIG_MFD_MAX77620 is not set +# CONFIG_MFD_MAX77650 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77714 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6370 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_OCELOT is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_MFD_CPCAP is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_NTXEC is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_SY7636A is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RT5120 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_RK8XX_I2C is not set +# CONFIG_MFD_RK8XX_SPI is not set +# CONFIG_MFD_RN5T618 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_STMPE is not set +CONFIG_MFD_SYSCON=y +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TI_LP87565 is not set +# CONFIG_MFD_TPS65218 is not set +# CONFIG_MFD_TPS65219 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS6594_I2C is not set +# CONFIG_MFD_TPS6594_SPI is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_LOCHNAGAR is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ARIZONA_SPI is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MFD_ROHM_BD718XX is not set +# CONFIG_MFD_ROHM_BD71828 is not set +# CONFIG_MFD_ROHM_BD957XMUF is not set +# CONFIG_MFD_STPMIC1 is not set +# CONFIG_MFD_STMFX is not set +# CONFIG_MFD_ATC260X_I2C is not set +# CONFIG_MFD_QCOM_PM8008 is not set +# CONFIG_MFD_INTEL_M10_BMC_SPI is not set +# CONFIG_MFD_RSMU_I2C is not set +# CONFIG_MFD_RSMU_SPI is not set +# end of Multifunction device drivers + +# CONFIG_REGULATOR is not set +CONFIG_RC_CORE=m +CONFIG_LIRC=y +CONFIG_RC_MAP=m +CONFIG_RC_DECODERS=y +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +# CONFIG_IR_RCMM_DECODER is not set +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_XMP_DECODER=m +# CONFIG_RC_DEVICES is not set + +# +# CEC support +# +CONFIG_MEDIA_CEC_SUPPORT=y +# CONFIG_CEC_CH7322 is not set +# CONFIG_CEC_GPIO is not set +# CONFIG_USB_PULSE8_CEC is not set +# CONFIG_USB_RAINSHADOW_CEC is not set +# end of CEC support + +CONFIG_MEDIA_SUPPORT=m +# CONFIG_MEDIA_SUPPORT_FILTER is not set +# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set + +# +# Media device types +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_TEST_SUPPORT=y +# end of Media device types + +# +# Media core support +# +CONFIG_VIDEO_DEV=m +CONFIG_MEDIA_CONTROLLER=y +CONFIG_DVB_CORE=m +# end of Media core support + +# +# Video4Linux options +# +CONFIG_VIDEO_V4L2_I2C=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +# end of Video4Linux options + +# +# Media controller options +# +# CONFIG_MEDIA_CONTROLLER_DVB is not set +# end of Media controller options + +# +# Digital TV options +# +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_NET=y +CONFIG_DVB_MAX_ADAPTERS=16 +CONFIG_DVB_DYNAMIC_MINORS=y +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +# CONFIG_DVB_ULE_DEBUG is not set +# end of Digital TV options + +# +# Media drivers +# + +# +# Media drivers +# +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +# CONFIG_USB_GSPCA is not set +# CONFIG_USB_PWC is not set +# CONFIG_USB_S2255 is not set +# CONFIG_VIDEO_USBTV is not set +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y + +# +# Analog TV USB devices +# +# CONFIG_VIDEO_GO7007 is not set +# CONFIG_VIDEO_HDPVR is not set +# CONFIG_VIDEO_PVRUSB2 is not set +# CONFIG_VIDEO_STK1160 is not set + +# +# Analog/digital TV USB devices +# +# CONFIG_VIDEO_AU0828 is not set + +# +# Digital TV USB devices +# +# CONFIG_DVB_AS102 is not set +# CONFIG_DVB_B2C2_FLEXCOP_USB is not set +# CONFIG_DVB_USB_V2 is not set +# CONFIG_DVB_USB is not set +# CONFIG_SMS_USB_DRV is not set +# CONFIG_DVB_TTUSB_BUDGET is not set +# CONFIG_DVB_TTUSB_DEC is not set + +# +# Webcam, TV (analog/digital) USB devices +# +# CONFIG_VIDEO_EM28XX is not set + +# +# Software defined radio USB devices +# +# CONFIG_USB_AIRSPY is not set +# CONFIG_USB_HACKRF is not set +# CONFIG_USB_MSI2500 is not set +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# +# CONFIG_VIDEO_SOLO6X10 is not set +# CONFIG_VIDEO_TW5864 is not set +# CONFIG_VIDEO_TW68 is not set +# CONFIG_VIDEO_TW686X is not set + +# +# Media capture/analog TV support +# +# CONFIG_VIDEO_DT3155 is not set +# CONFIG_VIDEO_IVTV is not set +# CONFIG_VIDEO_HEXIUM_GEMINI is not set +# CONFIG_VIDEO_HEXIUM_ORION is not set +# CONFIG_VIDEO_MXB is not set + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +# CONFIG_VIDEO_CX18 is not set +# CONFIG_VIDEO_CX23885 is not set +# CONFIG_VIDEO_CX25821 is not set +# CONFIG_VIDEO_CX88 is not set +# CONFIG_VIDEO_SAA7134 is not set +# CONFIG_VIDEO_SAA7164 is not set + +# +# Media digital TV PCI Adapters +# +# CONFIG_DVB_B2C2_FLEXCOP_PCI is not set +# CONFIG_DVB_DDBRIDGE is not set +# CONFIG_DVB_DM1105 is not set +# CONFIG_MANTIS_CORE is not set +# CONFIG_DVB_NETUP_UNIDVB is not set +# CONFIG_DVB_NGENE is not set +# CONFIG_DVB_PLUTO2 is not set +# CONFIG_DVB_PT1 is not set +# CONFIG_DVB_PT3 is not set +# CONFIG_DVB_SMIPCIE is not set +# CONFIG_DVB_BUDGET_CORE is not set +CONFIG_RADIO_ADAPTERS=m +# CONFIG_RADIO_MAXIRADIO is not set +# CONFIG_RADIO_SAA7706H is not set +# CONFIG_RADIO_SHARK is not set +# CONFIG_RADIO_SHARK2 is not set +# CONFIG_RADIO_SI4713 is not set +CONFIG_RADIO_TEA575X=m +# CONFIG_RADIO_TEA5764 is not set +# CONFIG_RADIO_TEF6862 is not set +# CONFIG_RADIO_WL1273 is not set +# CONFIG_USB_DSBR is not set +# CONFIG_USB_KEENE is not set +# CONFIG_USB_MA901 is not set +# CONFIG_USB_MR800 is not set +# CONFIG_USB_RAREMONO is not set +# CONFIG_RADIO_SI470X is not set +CONFIG_MEDIA_PLATFORM_DRIVERS=y +# CONFIG_V4L_PLATFORM_DRIVERS is not set +# CONFIG_SDR_PLATFORM_DRIVERS is not set +# CONFIG_DVB_PLATFORM_DRIVERS is not set +# CONFIG_V4L_MEM2MEM_DRIVERS is not set + +# +# Allegro DVT media platform drivers +# + +# +# Amlogic media platform drivers +# + +# +# Amphion drivers +# + +# +# Aspeed media platform drivers +# + +# +# Atmel media platform drivers +# + +# +# Cadence media platform drivers +# +# CONFIG_VIDEO_CADENCE_CSI2RX is not set +# CONFIG_VIDEO_CADENCE_CSI2TX is not set + +# +# Chips&Media media platform drivers +# + +# +# Intel media platform drivers +# + +# +# Marvell media platform drivers +# + +# +# Mediatek media platform drivers +# + +# +# Microchip Technology, Inc. media platform drivers +# + +# +# NVidia media platform drivers +# + +# +# NXP media platform drivers +# + +# +# Qualcomm media platform drivers +# + +# +# Renesas media platform drivers +# + +# +# Rockchip media platform drivers +# + +# +# Samsung media platform drivers +# + +# +# STMicroelectronics media platform drivers +# + +# +# Sunxi media platform drivers +# + +# +# Texas Instruments drivers +# + +# +# Verisilicon media platform drivers +# + +# +# VIA media platform drivers +# + +# +# Xilinx media platform drivers +# +# CONFIG_V4L_TEST_DRIVERS is not set +# CONFIG_DVB_TEST_DRIVERS is not set +CONFIG_UVC_COMMON=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_VMALLOC=m +# end of Media drivers + +# +# Media ancillary drivers +# +CONFIG_MEDIA_ATTACH=y +CONFIG_VIDEO_IR_I2C=m + +# +# Camera sensor devices +# +# CONFIG_VIDEO_AR0521 is not set +# CONFIG_VIDEO_HI556 is not set +# CONFIG_VIDEO_HI846 is not set +# CONFIG_VIDEO_HI847 is not set +# CONFIG_VIDEO_IMX208 is not set +# CONFIG_VIDEO_IMX214 is not set +# CONFIG_VIDEO_IMX219 is not set +# CONFIG_VIDEO_IMX258 is not set +# CONFIG_VIDEO_IMX274 is not set +# CONFIG_VIDEO_IMX290 is not set +# CONFIG_VIDEO_IMX296 is not set +# CONFIG_VIDEO_IMX319 is not set +# CONFIG_VIDEO_IMX334 is not set +# CONFIG_VIDEO_IMX335 is not set +# CONFIG_VIDEO_IMX355 is not set +# CONFIG_VIDEO_IMX412 is not set +# CONFIG_VIDEO_IMX415 is not set +# CONFIG_VIDEO_MT9M001 is not set +# CONFIG_VIDEO_MT9M111 is not set +# CONFIG_VIDEO_MT9P031 is not set +# CONFIG_VIDEO_MT9T112 is not set +# CONFIG_VIDEO_MT9V011 is not set +# CONFIG_VIDEO_MT9V032 is not set +# CONFIG_VIDEO_MT9V111 is not set +# CONFIG_VIDEO_OG01A1B is not set +# CONFIG_VIDEO_OV01A10 is not set +# CONFIG_VIDEO_OV02A10 is not set +# CONFIG_VIDEO_OV08D10 is not set +# CONFIG_VIDEO_OV08X40 is not set +# CONFIG_VIDEO_OV13858 is not set +# CONFIG_VIDEO_OV13B10 is not set +# CONFIG_VIDEO_OV2640 is not set +# CONFIG_VIDEO_OV2659 is not set +# CONFIG_VIDEO_OV2680 is not set +# CONFIG_VIDEO_OV2685 is not set +# CONFIG_VIDEO_OV2740 is not set +# CONFIG_VIDEO_OV4689 is not set +# CONFIG_VIDEO_OV5640 is not set +# CONFIG_VIDEO_OV5645 is not set +# CONFIG_VIDEO_OV5647 is not set +# CONFIG_VIDEO_OV5648 is not set +# CONFIG_VIDEO_OV5670 is not set +# CONFIG_VIDEO_OV5675 is not set +# CONFIG_VIDEO_OV5693 is not set +# CONFIG_VIDEO_OV5695 is not set +# CONFIG_VIDEO_OV6650 is not set +# CONFIG_VIDEO_OV7251 is not set +# CONFIG_VIDEO_OV7640 is not set +# CONFIG_VIDEO_OV7670 is not set +# CONFIG_VIDEO_OV772X is not set +# CONFIG_VIDEO_OV7740 is not set +# CONFIG_VIDEO_OV8856 is not set +# CONFIG_VIDEO_OV8858 is not set +# CONFIG_VIDEO_OV8865 is not set +# CONFIG_VIDEO_OV9282 is not set +# CONFIG_VIDEO_OV9640 is not set +# CONFIG_VIDEO_OV9650 is not set +# CONFIG_VIDEO_OV9734 is not set +# CONFIG_VIDEO_RDACM20 is not set +# CONFIG_VIDEO_RDACM21 is not set +# CONFIG_VIDEO_RJ54N1 is not set +# CONFIG_VIDEO_S5C73M3 is not set +# CONFIG_VIDEO_S5K5BAF is not set +# CONFIG_VIDEO_S5K6A3 is not set +# CONFIG_VIDEO_ST_VGXY61 is not set +# CONFIG_VIDEO_CCS is not set +# CONFIG_VIDEO_ET8EK8 is not set +# end of Camera sensor devices + +# +# Lens drivers +# +# CONFIG_VIDEO_AD5820 is not set +# CONFIG_VIDEO_AK7375 is not set +# CONFIG_VIDEO_DW9714 is not set +# CONFIG_VIDEO_DW9768 is not set +# CONFIG_VIDEO_DW9807_VCM is not set +# end of Lens drivers + +# +# Flash devices +# +# CONFIG_VIDEO_ADP1653 is not set +# CONFIG_VIDEO_LM3560 is not set +# CONFIG_VIDEO_LM3646 is not set +# end of Flash devices + +# +# Audio decoders, processors and mixers +# +# CONFIG_VIDEO_CS3308 is not set +# CONFIG_VIDEO_CS5345 is not set +# CONFIG_VIDEO_CS53L32A is not set +# CONFIG_VIDEO_MSP3400 is not set +# CONFIG_VIDEO_SONY_BTF_MPX is not set +# CONFIG_VIDEO_TDA7432 is not set +# CONFIG_VIDEO_TDA9840 is not set +# CONFIG_VIDEO_TEA6415C is not set +# CONFIG_VIDEO_TEA6420 is not set +# CONFIG_VIDEO_TLV320AIC23B is not set +# CONFIG_VIDEO_TVAUDIO is not set +# CONFIG_VIDEO_UDA1342 is not set +# CONFIG_VIDEO_VP27SMPX is not set +# CONFIG_VIDEO_WM8739 is not set +# CONFIG_VIDEO_WM8775 is not set +# end of Audio decoders, processors and mixers + +# +# RDS decoders +# +# CONFIG_VIDEO_SAA6588 is not set +# end of RDS decoders + +# +# Video decoders +# +# CONFIG_VIDEO_ADV7180 is not set +# CONFIG_VIDEO_ADV7183 is not set +# CONFIG_VIDEO_ADV748X is not set +# CONFIG_VIDEO_ADV7604 is not set +# CONFIG_VIDEO_ADV7842 is not set +# CONFIG_VIDEO_BT819 is not set +# CONFIG_VIDEO_BT856 is not set +# CONFIG_VIDEO_BT866 is not set +# CONFIG_VIDEO_ISL7998X is not set +# CONFIG_VIDEO_KS0127 is not set +# CONFIG_VIDEO_ML86V7667 is not set +# CONFIG_VIDEO_SAA7110 is not set +# CONFIG_VIDEO_SAA711X is not set +# CONFIG_VIDEO_TC358743 is not set +# CONFIG_VIDEO_TC358746 is not set +# CONFIG_VIDEO_TVP514X is not set +# CONFIG_VIDEO_TVP5150 is not set +# CONFIG_VIDEO_TVP7002 is not set +# CONFIG_VIDEO_TW2804 is not set +# CONFIG_VIDEO_TW9903 is not set +# CONFIG_VIDEO_TW9906 is not set +# CONFIG_VIDEO_TW9910 is not set +# CONFIG_VIDEO_VPX3220 is not set + +# +# Video and audio decoders +# +# CONFIG_VIDEO_SAA717X is not set +# CONFIG_VIDEO_CX25840 is not set +# end of Video decoders + +# +# Video encoders +# +# CONFIG_VIDEO_ADV7170 is not set +# CONFIG_VIDEO_ADV7175 is not set +# CONFIG_VIDEO_ADV7343 is not set +# CONFIG_VIDEO_ADV7393 is not set +# CONFIG_VIDEO_ADV7511 is not set +# CONFIG_VIDEO_AK881X is not set +# CONFIG_VIDEO_SAA7127 is not set +# CONFIG_VIDEO_SAA7185 is not set +# CONFIG_VIDEO_THS8200 is not set +# end of Video encoders + +# +# Video improvement chips +# +# CONFIG_VIDEO_UPD64031A is not set +# CONFIG_VIDEO_UPD64083 is not set +# end of Video improvement chips + +# +# Audio/Video compression chips +# +# CONFIG_VIDEO_SAA6752HS is not set +# end of Audio/Video compression chips + +# +# SDR tuner chips +# +# CONFIG_SDR_MAX2175 is not set +# end of SDR tuner chips + +# +# Miscellaneous helper chips +# +# CONFIG_VIDEO_I2C is not set +# CONFIG_VIDEO_M52790 is not set +# CONFIG_VIDEO_ST_MIPID02 is not set +# CONFIG_VIDEO_THS7303 is not set +# end of Miscellaneous helper chips + +# +# Media SPI Adapters +# +CONFIG_CXD2880_SPI_DRV=m +# CONFIG_VIDEO_GS1662 is not set +# end of Media SPI Adapters + +CONFIG_MEDIA_TUNER=m + +# +# Customize TV tuners +# +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_XC5000=m +# end of Customize TV tuners + +# +# Customise DVB Frontends +# + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_TDA18271C2DD=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_MT312=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_TDA10071=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_EC100=m +CONFIG_DVB_L64781=m +CONFIG_DVB_MT352=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_CXD2880=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_STV0297=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_VES1820=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_MXL692=m +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_S5H1411=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m +CONFIG_DVB_S921=m + +# +# ISDB-S (satellite) & ISDB-T (terrestrial) frontends +# +CONFIG_DVB_MN88443X=m +CONFIG_DVB_TC90522=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_A8293=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_HELENE=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_DRX39XYJ=m + +# +# Common Interface (EN50221) controller drivers +# +CONFIG_DVB_CXD2099=m +CONFIG_DVB_SP2=m +# end of Customise DVB Frontends + +# +# Tools to develop new frontends +# +# CONFIG_DVB_DUMMY_FE is not set +# end of Media ancillary drivers + +# +# Graphics support +# +CONFIG_APERTURE_HELPERS=y +CONFIG_VIDEO_CMDLINE=y +CONFIG_VIDEO_NOMODESET=y +CONFIG_DRM=y +# CONFIG_DRM_DEBUG_MM is not set +CONFIG_DRM_KMS_HELPER=y +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +CONFIG_DRM_DISPLAY_HELPER=m +CONFIG_DRM_DISPLAY_DP_HELPER=y +CONFIG_DRM_DISPLAY_HDCP_HELPER=y +CONFIG_DRM_DISPLAY_HDMI_HELPER=y +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DP_CEC is not set +CONFIG_DRM_TTM=m +CONFIG_DRM_BUDDY=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_GEM_SHMEM_HELPER=y +CONFIG_DRM_SUBALLOC_HELPER=m +CONFIG_DRM_SCHED=m + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_I2C_NXP_TDA9950 is not set +# end of I2C encoder or helper chips + +# +# ARM devices +# +# CONFIG_DRM_KOMEDA is not set +# end of ARM devices + +CONFIG_DRM_RADEON=m +CONFIG_DRM_RADEON_USERPTR=y +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_AMDGPU_SI=y +CONFIG_DRM_AMDGPU_CIK=y +CONFIG_DRM_AMDGPU_USERPTR=y +# CONFIG_DRM_AMDGPU_WERROR is not set + +# +# ACP (Audio CoProcessor) Configuration +# +# CONFIG_DRM_AMD_ACP is not set +# end of ACP (Audio CoProcessor) Configuration + +# +# Display Engine Configuration +# +CONFIG_DRM_AMD_DC=y +CONFIG_DRM_AMD_DC_FP=y +# CONFIG_DRM_AMD_DC_SI is not set +# end of Display Engine Configuration + +# CONFIG_DRM_NOUVEAU is not set +# CONFIG_DRM_VGEM is not set +# CONFIG_DRM_VKMS is not set +# CONFIG_DRM_UDL is not set +CONFIG_DRM_AST=y +# CONFIG_DRM_LOONGSON is not set +# CONFIG_DRM_MGAG200 is not set +CONFIG_DRM_QXL=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_VIRTIO_GPU_KMS=y +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +# CONFIG_DRM_PANEL_ABT_Y030XX067A is not set +# CONFIG_DRM_PANEL_ARM_VERSATILE is not set +# CONFIG_DRM_PANEL_AUO_A030JTN01 is not set +# CONFIG_DRM_PANEL_LVDS is not set +# CONFIG_DRM_PANEL_SIMPLE is not set +# CONFIG_DRM_PANEL_EDP is not set +# CONFIG_DRM_PANEL_ILITEK_IL9322 is not set +# CONFIG_DRM_PANEL_ILITEK_ILI9341 is not set +# CONFIG_DRM_PANEL_INNOLUX_EJ030NA is not set +# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set +# CONFIG_DRM_PANEL_LG_LB035Q02 is not set +# CONFIG_DRM_PANEL_LG_LG4573 is not set +# CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set +# CONFIG_DRM_PANEL_NEWVISION_NV3052C is not set +# CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set +# CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set +# CONFIG_DRM_PANEL_ORISETECH_OTA5601A is not set +# CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 is not set +# CONFIG_DRM_PANEL_SAMSUNG_DB7430 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D27A1 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6D7AA0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set +# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set +# CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set +# CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set +# CONFIG_DRM_PANEL_SONY_ACX565AKM is not set +# CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set +# CONFIG_DRM_PANEL_TPO_TPG110 is not set +# CONFIG_DRM_PANEL_WIDECHIPS_WS2401 is not set +# end of Display Panels + +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +# CONFIG_DRM_CHIPONE_ICN6211 is not set +# CONFIG_DRM_CHRONTEL_CH7033 is not set +# CONFIG_DRM_DISPLAY_CONNECTOR is not set +# CONFIG_DRM_ITE_IT6505 is not set +# CONFIG_DRM_LONTIUM_LT8912B is not set +# CONFIG_DRM_LONTIUM_LT9211 is not set +# CONFIG_DRM_LONTIUM_LT9611 is not set +# CONFIG_DRM_LONTIUM_LT9611UXC is not set +# CONFIG_DRM_ITE_IT66121 is not set +# CONFIG_DRM_LVDS_CODEC is not set +# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set +# CONFIG_DRM_NWL_MIPI_DSI is not set +# CONFIG_DRM_NXP_PTN3460 is not set +# CONFIG_DRM_PARADE_PS8622 is not set +# CONFIG_DRM_PARADE_PS8640 is not set +# CONFIG_DRM_SAMSUNG_DSIM is not set +# CONFIG_DRM_SIL_SII8620 is not set +# CONFIG_DRM_SII902X is not set +# CONFIG_DRM_SII9234 is not set +# CONFIG_DRM_SIMPLE_BRIDGE is not set +# CONFIG_DRM_THINE_THC63LVD1024 is not set +# CONFIG_DRM_TOSHIBA_TC358762 is not set +# CONFIG_DRM_TOSHIBA_TC358764 is not set +# CONFIG_DRM_TOSHIBA_TC358767 is not set +# CONFIG_DRM_TOSHIBA_TC358768 is not set +# CONFIG_DRM_TOSHIBA_TC358775 is not set +# CONFIG_DRM_TI_DLPC3433 is not set +# CONFIG_DRM_TI_TFP410 is not set +# CONFIG_DRM_TI_SN65DSI83 is not set +# CONFIG_DRM_TI_SN65DSI86 is not set +# CONFIG_DRM_TI_TPD12S015 is not set +# CONFIG_DRM_ANALOGIX_ANX6345 is not set +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_ANALOGIX_ANX7625 is not set +# CONFIG_DRM_I2C_ADV7511 is not set +# CONFIG_DRM_CDNS_DSI is not set +# CONFIG_DRM_CDNS_MHDP8546 is not set +# end of Display Interface Bridges + +# CONFIG_DRM_ETNAVIV is not set +# CONFIG_DRM_LOGICVC is not set +# CONFIG_DRM_ARCPGU is not set +# CONFIG_DRM_BOCHS is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_GM12U320 is not set +# CONFIG_DRM_PANEL_MIPI_DBI is not set +# CONFIG_DRM_SIMPLEDRM is not set +# CONFIG_TINYDRM_HX8357D is not set +# CONFIG_TINYDRM_ILI9163 is not set +# CONFIG_TINYDRM_ILI9225 is not set +# CONFIG_TINYDRM_ILI9341 is not set +# CONFIG_TINYDRM_ILI9486 is not set +# CONFIG_TINYDRM_MI0283QT is not set +# CONFIG_TINYDRM_REPAPER is not set +# CONFIG_TINYDRM_ST7586 is not set +# CONFIG_TINYDRM_ST7735R is not set +# CONFIG_DRM_GUD is not set +# CONFIG_DRM_SSD130X is not set +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y + +# +# Frame buffer Devices +# +CONFIG_FB_NOTIFY=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_DDC=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_IO_HELPERS=y +CONFIG_FB_SYS_HELPERS=y +CONFIG_FB_SYS_HELPERS_DEFERRED=y +CONFIG_FB_BACKLIGHT=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +CONFIG_FB_EFI=y +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_MATROX is not set +CONFIG_FB_RADEON=y +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_SM712 is not set +# end of Frame buffer Devices + +# +# Backlight & LCD device support +# +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_KTD253 is not set +# CONFIG_BACKLIGHT_KTZ8866 is not set +# CONFIG_BACKLIGHT_PWM is not set +# CONFIG_BACKLIGHT_QCOM_WLED is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_GPIO is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# CONFIG_BACKLIGHT_LED is not set +# end of Backlight & LCD device support + +CONFIG_HDMI=y + +# +# Console display driver support +# +# CONFIG_VGA_CONSOLE is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_FRAMEBUFFER_CONSOLE=y +# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set +# end of Console display driver support + +CONFIG_LOGO=y +CONFIG_LOGO_LINUX_MONO=y +CONFIG_LOGO_LINUX_VGA16=y +CONFIG_LOGO_LINUX_CLUT224=y +# end of Graphics support + +# CONFIG_DRM_ACCEL is not set +CONFIG_SOUND=y +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=y +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_RAWMIDI=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +# CONFIG_SND_OSSEMUL is not set +CONFIG_SND_PCM_TIMER=y +# CONFIG_SND_HRTIMER is not set +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +CONFIG_SND_CTL_FAST_LOOKUP=y +# CONFIG_SND_DEBUG is not set +# CONFIG_SND_CTL_INPUT_VALIDATION is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_CTL_LED=y +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_MIDI=m +# CONFIG_SND_SEQ_UMP is not set +CONFIG_SND_DRIVERS=y +# CONFIG_SND_DUMMY is not set +# CONFIG_SND_ALOOP is not set +# CONFIG_SND_PCMTEST is not set +# CONFIG_SND_VIRMIDI is not set +# CONFIG_SND_MTPAV is not set +# CONFIG_SND_MTS64 is not set +# CONFIG_SND_SERIAL_U16550 is not set +# CONFIG_SND_MPU401 is not set +# CONFIG_SND_PORTMAN2X4 is not set +CONFIG_SND_PCI=y +# CONFIG_SND_AD1889 is not set +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +CONFIG_SND_BT87X=m +CONFIG_SND_BT87X_OVERCLOCK=y +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +# CONFIG_SND_OXYGEN is not set +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +# CONFIG_SND_CTXFI is not set +# CONFIG_SND_DARLA20 is not set +# CONFIG_SND_GINA20 is not set +# CONFIG_SND_LAYLA20 is not set +# CONFIG_SND_DARLA24 is not set +# CONFIG_SND_GINA24 is not set +# CONFIG_SND_LAYLA24 is not set +# CONFIG_SND_MONA is not set +# CONFIG_SND_MIA is not set +# CONFIG_SND_ECHO3G is not set +# CONFIG_SND_INDIGO is not set +# CONFIG_SND_INDIGOIO is not set +# CONFIG_SND_INDIGODJ is not set +# CONFIG_SND_INDIGOIOX is not set +# CONFIG_SND_INDIGODJX is not set +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +# CONFIG_SND_FM801 is not set +# CONFIG_SND_HDSP is not set +# CONFIG_SND_HDSPM is not set +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +# CONFIG_SND_LOLA is not set +# CONFIG_SND_LX6464ES is not set +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +# CONFIG_SND_PCXHR is not set +# CONFIG_SND_RIPTIDE is not set +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +# CONFIG_SND_SE6X is not set +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +# CONFIG_SND_VIRTUOSO is not set +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set + +# +# HD-Audio +# +CONFIG_SND_HDA=y +CONFIG_SND_HDA_GENERIC_LEDS=y +CONFIG_SND_HDA_INTEL=y +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=1 +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_CODEC_REALTEK=y +# CONFIG_SND_HDA_CODEC_ANALOG is not set +CONFIG_SND_HDA_CODEC_SIGMATEL=y +# CONFIG_SND_HDA_CODEC_VIA is not set +CONFIG_SND_HDA_CODEC_HDMI=y +# CONFIG_SND_HDA_CODEC_CIRRUS is not set +# CONFIG_SND_HDA_CODEC_CS8409 is not set +CONFIG_SND_HDA_CODEC_CONEXANT=y +# CONFIG_SND_HDA_CODEC_CA0110 is not set +# CONFIG_SND_HDA_CODEC_CA0132 is not set +# CONFIG_SND_HDA_CODEC_CMEDIA is not set +# CONFIG_SND_HDA_CODEC_SI3054 is not set +CONFIG_SND_HDA_GENERIC=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set +# CONFIG_SND_HDA_CTL_DEV_ID is not set +# end of HD-Audio + +CONFIG_SND_HDA_CORE=y +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_PREALLOC_SIZE=0 +CONFIG_SND_INTEL_NHLT=y +CONFIG_SND_INTEL_DSP_CONFIG=y +CONFIG_SND_INTEL_SOUNDWIRE_ACPI=y +CONFIG_SND_SPI=y +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +# CONFIG_SND_USB_AUDIO_MIDI_V2 is not set +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +# CONFIG_SND_USB_UA101 is not set +# CONFIG_SND_USB_CAIAQ is not set +# CONFIG_SND_USB_6FIRE is not set +# CONFIG_SND_USB_HIFACE is not set +# CONFIG_SND_BCD2000 is not set +# CONFIG_SND_USB_POD is not set +# CONFIG_SND_USB_PODHD is not set +# CONFIG_SND_USB_TONEPORT is not set +# CONFIG_SND_USB_VARIAX is not set +CONFIG_SND_PCMCIA=y +# CONFIG_SND_VXPOCKET is not set +# CONFIG_SND_PDAUDIOCF is not set +# CONFIG_SND_SOC is not set +# CONFIG_SND_VIRTIO is not set +CONFIG_HID_SUPPORT=y +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=m +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_ASUS is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_BIGBEN_FF is not set +CONFIG_HID_CHERRY=m +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_CORSAIR is not set +# CONFIG_HID_COUGAR is not set +# CONFIG_HID_MACALLY is not set +# CONFIG_HID_PRODIKEYS is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CP2112 is not set +# CONFIG_HID_CREATIVE_SB0540 is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELAN is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EVISION is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_FT260 is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_GLORIOUS is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_VIVALDI is not set +# CONFIG_HID_GT683R is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_VIEWSONIC is not set +# CONFIG_HID_VRC2 is not set +# CONFIG_HID_XIAOMI is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LED is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LETSKETCH is not set +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MALTRON is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MEGAWORLD_FF is not set +# CONFIG_HID_REDRAGON is not set +CONFIG_HID_MICROSOFT=m +# CONFIG_HID_MONTEREY is not set +CONFIG_HID_MULTITOUCH=m +# CONFIG_HID_NINTENDO is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_NVIDIA_SHIELD is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PXRC is not set +# CONFIG_HID_RAZER is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SEMITEK is not set +# CONFIG_HID_SIGMAMICRO is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEAM is not set +# CONFIG_HID_STEELSERIES is not set +CONFIG_HID_SUNPLUS=m +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_TOPRE is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_U2FZERO is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set +# CONFIG_HID_MCP2221 is not set +# end of Special HID drivers + +# +# HID-BPF support +# +# end of HID-BPF support + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +CONFIG_USB_HIDDEV=y +# end of USB HID support + +CONFIG_I2C_HID=y +# CONFIG_I2C_HID_ACPI is not set +# CONFIG_I2C_HID_OF is not set +# CONFIG_I2C_HID_OF_ELAN is not set +# CONFIG_I2C_HID_OF_GOODIX is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +# CONFIG_USB_LED_TRIG is not set +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_USB_CONN_GPIO is not set +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_FEW_INIT_RETRIES is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_MON=y + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PCI_RENESAS is not set +# CONFIG_USB_XHCI_PLATFORM is not set +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_FSL is not set +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_MAX3421_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_UHCI_HCD=m +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=m +CONFIG_USB_WDM=m +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_REALTEK_AUTOPM=y +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +CONFIG_USB_UAS=m + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set + +# +# USB dual-mode controller drivers +# +# CONFIG_USB_CDNS_SUPPORT is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +CONFIG_USB_DWC2=y +CONFIG_USB_DWC2_HOST=y + +# +# Gadget/Dual-role mode requires USB Gadget support to be enabled +# +# CONFIG_USB_DWC2_PERIPHERAL is not set +# CONFIG_USB_DWC2_DUAL_ROLE is not set +# CONFIG_USB_DWC2_PCI is not set +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +CONFIG_USB_SERIAL=m +# CONFIG_USB_SERIAL_GENERIC is not set +# CONFIG_USB_SERIAL_SIMPLE is not set +# CONFIG_USB_SERIAL_AIRCABLE is not set +# CONFIG_USB_SERIAL_ARK3116 is not set +# CONFIG_USB_SERIAL_BELKIN is not set +CONFIG_USB_SERIAL_CH341=m +# CONFIG_USB_SERIAL_WHITEHEAT is not set +# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set +CONFIG_USB_SERIAL_CP210X=m +# CONFIG_USB_SERIAL_CYPRESS_M8 is not set +# CONFIG_USB_SERIAL_EMPEG is not set +CONFIG_USB_SERIAL_FTDI_SIO=m +# CONFIG_USB_SERIAL_VISOR is not set +# CONFIG_USB_SERIAL_IPAQ is not set +# CONFIG_USB_SERIAL_IR is not set +# CONFIG_USB_SERIAL_EDGEPORT is not set +# CONFIG_USB_SERIAL_EDGEPORT_TI is not set +# CONFIG_USB_SERIAL_F81232 is not set +# CONFIG_USB_SERIAL_F8153X is not set +# CONFIG_USB_SERIAL_GARMIN is not set +# CONFIG_USB_SERIAL_IPW is not set +# CONFIG_USB_SERIAL_IUU is not set +# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set +# CONFIG_USB_SERIAL_KEYSPAN is not set +# CONFIG_USB_SERIAL_KLSI is not set +# CONFIG_USB_SERIAL_KOBIL_SCT is not set +# CONFIG_USB_SERIAL_MCT_U232 is not set +# CONFIG_USB_SERIAL_METRO is not set +# CONFIG_USB_SERIAL_MOS7720 is not set +# CONFIG_USB_SERIAL_MOS7840 is not set +# CONFIG_USB_SERIAL_MXUPORT is not set +# CONFIG_USB_SERIAL_NAVMAN is not set +CONFIG_USB_SERIAL_PL2303=m +# CONFIG_USB_SERIAL_OTI6858 is not set +# CONFIG_USB_SERIAL_QCAUX is not set +# CONFIG_USB_SERIAL_QUALCOMM is not set +# CONFIG_USB_SERIAL_SPCP8X5 is not set +# CONFIG_USB_SERIAL_SAFE is not set +# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set +# CONFIG_USB_SERIAL_SYMBOL is not set +# CONFIG_USB_SERIAL_TI is not set +# CONFIG_USB_SERIAL_CYBERJACK is not set +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +# CONFIG_USB_SERIAL_OMNINET is not set +# CONFIG_USB_SERIAL_OPTICON is not set +# CONFIG_USB_SERIAL_XSENS_MT is not set +# CONFIG_USB_SERIAL_WISHBONE is not set +# CONFIG_USB_SERIAL_SSU100 is not set +# CONFIG_USB_SERIAL_QT2 is not set +# CONFIG_USB_SERIAL_UPD78F0730 is not set +# CONFIG_USB_SERIAL_XR is not set +# CONFIG_USB_SERIAL_DEBUG is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_USS720 is not set +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_APPLE_MFI_FASTCHARGE is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set +# CONFIG_USB_ONBOARD_HUB is not set + +# +# USB Physical Layer drivers +# +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_GPIO_VBUS is not set +# CONFIG_USB_ISP1301 is not set +# end of USB Physical Layer drivers + +CONFIG_USB_GADGET=y +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 + +# +# USB Peripheral Controller +# +# CONFIG_USB_GR_UDC is not set +# CONFIG_USB_R8A66597 is not set +# CONFIG_USB_PXA27X is not set +# CONFIG_USB_MV_UDC is not set +# CONFIG_USB_MV_U3D is not set +# CONFIG_USB_SNP_UDC_PLAT is not set +# CONFIG_USB_M66592 is not set +# CONFIG_USB_BDC_UDC is not set +# CONFIG_USB_AMD5536UDC is not set +# CONFIG_USB_NET2272 is not set +# CONFIG_USB_NET2280 is not set +# CONFIG_USB_GOKU is not set +# CONFIG_USB_EG20T is not set +# CONFIG_USB_GADGET_XILINX is not set +# CONFIG_USB_MAX3420_UDC is not set +# CONFIG_USB_CDNS2_UDC is not set +# CONFIG_USB_DUMMY_HCD is not set +# end of USB Peripheral Controller + +# CONFIG_USB_CONFIGFS is not set + +# +# USB Gadget precomposed configurations +# +# CONFIG_USB_ZERO is not set +# CONFIG_USB_AUDIO is not set +# CONFIG_USB_ETH is not set +# CONFIG_USB_G_NCM is not set +# CONFIG_USB_GADGETFS is not set +# CONFIG_USB_FUNCTIONFS is not set +# CONFIG_USB_MASS_STORAGE is not set +# CONFIG_USB_GADGET_TARGET is not set +# CONFIG_USB_G_SERIAL is not set +# CONFIG_USB_MIDI_GADGET is not set +# CONFIG_USB_G_PRINTER is not set +# CONFIG_USB_CDC_COMPOSITE is not set +# CONFIG_USB_G_ACM_MS is not set +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_G_HID is not set +# CONFIG_USB_G_DBGP is not set +# CONFIG_USB_G_WEBCAM is not set +# CONFIG_USB_RAW_GADGET is not set +# end of USB Gadget precomposed configurations + +CONFIG_TYPEC=m +CONFIG_TYPEC_TCPM=m +CONFIG_TYPEC_TCPCI=m +# CONFIG_TYPEC_RT1711H is not set +# CONFIG_TYPEC_TCPCI_MAXIM is not set +# CONFIG_TYPEC_FUSB302 is not set +CONFIG_TYPEC_UCSI=m +# CONFIG_UCSI_CCG is not set +CONFIG_UCSI_ACPI=m +# CONFIG_UCSI_STM32G0 is not set +# CONFIG_TYPEC_TPS6598X is not set +# CONFIG_TYPEC_ANX7411 is not set +# CONFIG_TYPEC_RT1719 is not set +# CONFIG_TYPEC_HD3SS3220 is not set +# CONFIG_TYPEC_STUSB160X is not set +# CONFIG_TYPEC_WUSB3801 is not set + +# +# USB Type-C Multiplexer/DeMultiplexer Switch support +# +# CONFIG_TYPEC_MUX_FSA4480 is not set +# CONFIG_TYPEC_MUX_GPIO_SBU is not set +# CONFIG_TYPEC_MUX_PI3USB30532 is not set +# CONFIG_TYPEC_MUX_NB7VPQ904M is not set +# end of USB Type-C Multiplexer/DeMultiplexer Switch support + +# +# USB Type-C Alternate Mode drivers +# +# CONFIG_TYPEC_DP_ALTMODE is not set +# end of USB Type-C Alternate Mode drivers + +CONFIG_USB_ROLE_SWITCH=y +# CONFIG_MMC is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y +# CONFIG_LEDS_CLASS_FLASH is not set +# CONFIG_LEDS_CLASS_MULTICOLOR is not set +# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set + +# +# LED drivers +# +# CONFIG_LEDS_AN30259A is not set +# CONFIG_LEDS_AW200XX is not set +# CONFIG_LEDS_AW2013 is not set +# CONFIG_LEDS_BCM6328 is not set +# CONFIG_LEDS_BCM6358 is not set +# CONFIG_LEDS_CR0014114 is not set +# CONFIG_LEDS_EL15203000 is not set +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3532 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_LM3692X is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_GPIO is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP3952 is not set +# CONFIG_LEDS_LP50XX is not set +# CONFIG_LEDS_LP55XX_COMMON is not set +# CONFIG_LEDS_LP8860 is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA963X is not set +# CONFIG_LEDS_DAC124S085 is not set +# CONFIG_LEDS_PWM is not set +# CONFIG_LEDS_BD2606MVV is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_LT3593 is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_TLC591XX is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_IS31FL319X is not set +# CONFIG_LEDS_IS31FL32XX is not set + +# +# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM) +# +# CONFIG_LEDS_BLINKM is not set +# CONFIG_LEDS_SYSCON is not set +# CONFIG_LEDS_MLXREG is not set +# CONFIG_LEDS_USER is not set +# CONFIG_LEDS_SPI_BYTE is not set +# CONFIG_LEDS_LM3697 is not set + +# +# Flash and Torch LED drivers +# + +# +# RGB LED drivers +# + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +# CONFIG_LEDS_TRIGGER_TIMER is not set +# CONFIG_LEDS_TRIGGER_ONESHOT is not set +# CONFIG_LEDS_TRIGGER_DISK is not set +# CONFIG_LEDS_TRIGGER_MTD is not set +# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set +# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set +# CONFIG_LEDS_TRIGGER_CPU is not set +# CONFIG_LEDS_TRIGGER_ACTIVITY is not set +# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set + +# +# iptables trigger is under Netfilter config (LED target) +# +# CONFIG_LEDS_TRIGGER_TRANSIENT is not set +# CONFIG_LEDS_TRIGGER_CAMERA is not set +# CONFIG_LEDS_TRIGGER_PANIC is not set +# CONFIG_LEDS_TRIGGER_NETDEV is not set +# CONFIG_LEDS_TRIGGER_PATTERN is not set +CONFIG_LEDS_TRIGGER_AUDIO=y +# CONFIG_LEDS_TRIGGER_TTY is not set + +# +# Simple LED drivers +# +# CONFIG_ACCESSIBILITY is not set +CONFIG_INFINIBAND=m +# CONFIG_INFINIBAND_USER_MAD is not set +# CONFIG_INFINIBAND_USER_ACCESS is not set +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_VIRT_DMA=y +# CONFIG_INFINIBAND_CXGB4 is not set +# CONFIG_MLX4_INFINIBAND is not set +# CONFIG_INFINIBAND_MTHCA is not set +# CONFIG_INFINIBAND_OCRDMA is not set +# CONFIG_RDMA_RXE is not set +# CONFIG_RDMA_SIW is not set +# CONFIG_INFINIBAND_IPOIB is not set +# CONFIG_INFINIBAND_SRP is not set +# CONFIG_INFINIBAND_SRPT is not set +# CONFIG_INFINIBAND_ISER is not set +# CONFIG_INFINIBAND_ISERT is not set +# CONFIG_INFINIBAND_RTRS_CLIENT is not set +# CONFIG_INFINIBAND_RTRS_SERVER is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_NVMEM=y + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABEOZ9 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_HYM8563 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_NCT3018Y is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12026 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3028 is not set +# CONFIG_RTC_DRV_RV3032 is not set +# CONFIG_RTC_DRV_RV8803 is not set +# CONFIG_RTC_DRV_SD3078 is not set + +# +# SPI RTC drivers +# +# CONFIG_RTC_DRV_M41T93 is not set +# CONFIG_RTC_DRV_M41T94 is not set +# CONFIG_RTC_DRV_DS1302 is not set +# CONFIG_RTC_DRV_DS1305 is not set +# CONFIG_RTC_DRV_DS1343 is not set +# CONFIG_RTC_DRV_DS1347 is not set +# CONFIG_RTC_DRV_DS1390 is not set +# CONFIG_RTC_DRV_MAX6916 is not set +# CONFIG_RTC_DRV_R9701 is not set +# CONFIG_RTC_DRV_RX4581 is not set +# CONFIG_RTC_DRV_RS5C348 is not set +# CONFIG_RTC_DRV_MAX6902 is not set +# CONFIG_RTC_DRV_PCF2123 is not set +# CONFIG_RTC_DRV_MCP795 is not set +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set +# CONFIG_RTC_DRV_RX6110 is not set + +# +# Platform RTC drivers +# +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_EFI is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_ZYNQMP is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_CADENCE is not set +# CONFIG_RTC_DRV_FTRTC010 is not set +# CONFIG_RTC_DRV_LOONGSON is not set +# CONFIG_RTC_DRV_R7301 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_GOLDFISH is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y +CONFIG_DMA_OF=y +# CONFIG_ALTERA_MSGDMA is not set +# CONFIG_DW_AXI_DMAC is not set +# CONFIG_FSL_EDMA is not set +# CONFIG_INTEL_IDMA64 is not set +# CONFIG_PLX_DMA is not set +# CONFIG_XILINX_XDMA is not set +# CONFIG_XILINX_ZYNQMP_DPDMA is not set +# CONFIG_QCOM_HIDMA_MGMT is not set +# CONFIG_QCOM_HIDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_DW_EDMA is not set +# CONFIG_SF_PDMA is not set + +# +# DMA Clients +# +# CONFIG_ASYNC_TX_DMA is not set +# CONFIG_DMATEST is not set + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_UDMABUF is not set +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_DEBUG is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_HEAPS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +# end of DMABUF options + +# CONFIG_AUXDISPLAY is not set +# CONFIG_PANEL is not set +CONFIG_UIO=m +# CONFIG_UIO_CIF is not set +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_DMEM_GENIRQ=m +# CONFIG_UIO_AEC is not set +# CONFIG_UIO_SERCOS3 is not set +CONFIG_UIO_PCI_GENERIC=m +# CONFIG_UIO_NETX is not set +# CONFIG_UIO_PRUSS is not set +# CONFIG_UIO_MF624 is not set +CONFIG_VFIO=m +CONFIG_VFIO_CONTAINER=y +# CONFIG_VFIO_NOIOMMU is not set +CONFIG_VFIO_VIRQFD=y + +# +# VFIO support for PCI devices +# +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI=m +# end of VFIO support for PCI devices + +CONFIG_IRQ_BYPASS_MANAGER=m +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO_ANCHOR=y +CONFIG_VIRTIO=y +CONFIG_VIRTIO_PCI_LIB=y +CONFIG_VIRTIO_PCI_LIB_LEGACY=y +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_MMIO=m +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +# CONFIG_VDPA is not set +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_TASK=y +CONFIG_VHOST=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VSOCK=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set + +# +# Microsoft Hyper-V guest support +# +# end of Microsoft Hyper-V guest support + +# CONFIG_GREYBUS is not set +CONFIG_COMEDI=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +# CONFIG_COMEDI_MISC_DRIVERS is not set +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_8255_PCI=m +# CONFIG_COMEDI_ADDI_APCI_1032 is not set +# CONFIG_COMEDI_ADDI_APCI_1500 is not set +# CONFIG_COMEDI_ADDI_APCI_1516 is not set +# CONFIG_COMEDI_ADDI_APCI_1564 is not set +# CONFIG_COMEDI_ADDI_APCI_16XX is not set +# CONFIG_COMEDI_ADDI_APCI_2032 is not set +# CONFIG_COMEDI_ADDI_APCI_2200 is not set +# CONFIG_COMEDI_ADDI_APCI_3120 is not set +# CONFIG_COMEDI_ADDI_APCI_3501 is not set +# CONFIG_COMEDI_ADDI_APCI_3XXX is not set +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7X3X=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADV_PCI1720=m +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI1724=m +CONFIG_COMEDI_ADV_PCI1760=m +# CONFIG_COMEDI_AMPLC_PC236_PCI is not set +# CONFIG_COMEDI_AMPLC_PC263_PCI is not set +# CONFIG_COMEDI_CONTEC_PCI_DIO is not set +# CONFIG_COMEDI_DT3000 is not set +# CONFIG_COMEDI_DYNA_PCI10XX is not set +# CONFIG_COMEDI_GSC_HPDI is not set +# CONFIG_COMEDI_MF6X4 is not set +# CONFIG_COMEDI_ICP_MULTI is not set +# CONFIG_COMEDI_DAQBOARD2000 is not set +# CONFIG_COMEDI_JR3_PCI is not set +# CONFIG_COMEDI_KE_COUNTER is not set +# CONFIG_COMEDI_CB_PCIDAS64 is not set +# CONFIG_COMEDI_CB_PCIDDA is not set +# CONFIG_COMEDI_CB_PCIMDDA is not set +# CONFIG_COMEDI_ME_DAQ is not set +# CONFIG_COMEDI_NI_6527 is not set +# CONFIG_COMEDI_NI_65XX is not set +# CONFIG_COMEDI_NI_660X is not set +# CONFIG_COMEDI_NI_670X is not set +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +# CONFIG_COMEDI_S626 is not set +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_NI_TIOCMD=m +# CONFIG_COMEDI_PCMCIA_DRIVERS is not set +# CONFIG_COMEDI_USB_DRIVERS is not set +CONFIG_COMEDI_8255=m +# CONFIG_COMEDI_8255_SA is not set +# CONFIG_COMEDI_KCOMEDILIB is not set +CONFIG_COMEDI_NI_TIO=m +CONFIG_COMEDI_NI_ROUTING=m +# CONFIG_COMEDI_TESTS is not set +CONFIG_STAGING=y +# CONFIG_PRISM2_USB is not set +# CONFIG_RTL8192U is not set +# CONFIG_RTLLIB is not set +# CONFIG_R8712U is not set +# CONFIG_RTS5208 is not set +# CONFIG_VT6655 is not set +# CONFIG_VT6656 is not set +# CONFIG_FB_SM750 is not set +# CONFIG_STAGING_MEDIA is not set +# CONFIG_STAGING_BOARD is not set +# CONFIG_LTE_GDM724X is not set +# CONFIG_FB_TFT is not set +# CONFIG_PI433 is not set +# CONFIG_XIL_AXIS_FIFO is not set +# CONFIG_FIELDBUS_DEV is not set +# CONFIG_QLGE is not set +# CONFIG_VME_BUS is not set +CONFIG_CPU_HWMON=y +CONFIG_LOONGARCH_PLATFORM_DEVICES=y +CONFIG_LOONGSON_LAPTOP=y +# CONFIG_GOLDFISH is not set +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y +# CONFIG_LMK04832 is not set +# CONFIG_COMMON_CLK_MAX9485 is not set +# CONFIG_COMMON_CLK_SI5341 is not set +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_SI514 is not set +# CONFIG_COMMON_CLK_SI544 is not set +# CONFIG_COMMON_CLK_SI570 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CDCE925 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_AXI_CLKGEN is not set +# CONFIG_COMMON_CLK_LOONGSON2 is not set +# CONFIG_COMMON_CLK_PWM is not set +# CONFIG_COMMON_CLK_RS9_PCIE is not set +# CONFIG_COMMON_CLK_SI521XX is not set +# CONFIG_COMMON_CLK_VC5 is not set +# CONFIG_COMMON_CLK_VC7 is not set +# CONFIG_COMMON_CLK_FIXED_MMIO is not set +# CONFIG_XILINX_VCU is not set +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +# end of Clock Source drivers + +CONFIG_MAILBOX=y +# CONFIG_PLATFORM_MHU is not set +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +# CONFIG_MAILBOX_TEST is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +# end of Generic IOMMU Pagetable Support + +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_OF_IOMMU=y +# CONFIG_IOMMUFD is not set + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set +# end of Remoteproc drivers + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# end of Rpmsg drivers + +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# +# end of Amlogic SoC drivers + +# +# Broadcom SoC drivers +# +# end of Broadcom SoC drivers + +# +# NXP/Freescale QorIQ SoC drivers +# +# end of NXP/Freescale QorIQ SoC drivers + +# +# fujitsu SoC drivers +# +# end of fujitsu SoC drivers + +# +# i.MX SoC drivers +# +# end of i.MX SoC drivers + +# +# Enable LiteX SoC Builder specific drivers +# +# CONFIG_LITEX_SOC_CONTROLLER is not set +# end of Enable LiteX SoC Builder specific drivers + +# CONFIG_LOONGSON2_GUTS is not set +# CONFIG_WPCM450_SOC is not set + +# +# Qualcomm SoC drivers +# +# end of Qualcomm SoC drivers + +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# end of Xilinx SoC drivers +# end of SOC (System On Chip) specific Drivers + +CONFIG_PM_DEVFREQ=y + +# +# DEVFREQ Governors +# +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +CONFIG_DEVFREQ_GOV_PERFORMANCE=y +CONFIG_DEVFREQ_GOV_POWERSAVE=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +# CONFIG_DEVFREQ_GOV_PASSIVE is not set + +# +# DEVFREQ Drivers +# +# CONFIG_PM_DEVFREQ_EVENT is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +CONFIG_PWM=y +CONFIG_PWM_SYSFS=y +# CONFIG_PWM_DEBUG is not set +# CONFIG_PWM_ATMEL_TCB is not set +# CONFIG_PWM_CLK is not set +# CONFIG_PWM_DWC is not set +# CONFIG_PWM_FSL_FTM is not set +# CONFIG_PWM_PCA9685 is not set +# CONFIG_PWM_XILINX is not set + +# +# IRQ chip support +# +CONFIG_IRQCHIP=y +# CONFIG_AL_FIC is not set +# CONFIG_XILINX_INTC is not set +CONFIG_IRQ_LOONGARCH_CPU=y +CONFIG_LOONGSON_LIOINTC=y +CONFIG_LOONGSON_EIOINTC=y +CONFIG_LOONGSON_HTVEC=y +CONFIG_LOONGSON_PCH_PIC=y +CONFIG_LOONGSON_PCH_MSI=y +CONFIG_LOONGSON_PCH_LPC=y +# end of IRQ chip support + +# CONFIG_IPACK_BUS is not set +CONFIG_RESET_CONTROLLER=y +# CONFIG_RESET_SIMPLE is not set +# CONFIG_RESET_TI_SYSCON is not set +# CONFIG_RESET_TI_TPS380X is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set + +# +# PHY drivers for Broadcom platforms +# +# CONFIG_BCM_KONA_USB2_PHY is not set +# end of PHY drivers for Broadcom platforms + +# CONFIG_PHY_CADENCE_TORRENT is not set +# CONFIG_PHY_CADENCE_DPHY is not set +# CONFIG_PHY_CADENCE_DPHY_RX is not set +# CONFIG_PHY_CADENCE_SIERRA is not set +# CONFIG_PHY_CADENCE_SALVO is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PHY_LAN966X_SERDES is not set +# CONFIG_PHY_MAPPHONE_MDM6600 is not set +# CONFIG_PHY_OCELOT_SERDES is not set +# CONFIG_PHY_SAMSUNG_USB2 is not set +# end of PHY Subsystem + +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +# end of Performance monitor support + +CONFIG_RAS=y +# CONFIG_USB4 is not set + +# +# Android +# +# CONFIG_ANDROID_BINDER_IPC is not set +# end of Android + +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +CONFIG_NVMEM=y +CONFIG_NVMEM_SYSFS=y + +# +# Layout Types +# +# CONFIG_NVMEM_LAYOUT_SL28_VPD is not set +# CONFIG_NVMEM_LAYOUT_ONIE_TLV is not set +# end of Layout Types + +# CONFIG_NVMEM_RMEM is not set +# CONFIG_NVMEM_U_BOOT_ENV is not set + +# +# HW tracing support +# +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# end of HW tracing support + +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +CONFIG_PM_OPP=y +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_COUNTER is not set +# CONFIG_MOST is not set +# CONFIG_PECI is not set +# CONFIG_HTE is not set +# end of Device Drivers + +# +# File systems +# +# CONFIG_VALIDATE_FS_PARSER is not set +CONFIG_FS_IOMAP=y +CONFIG_LEGACY_DIRECT_IO=y +CONFIG_EXT2_FS=y +CONFIG_EXT2_FS_XATTR=y +CONFIG_EXT2_FS_POSIX_ACL=y +CONFIG_EXT2_FS_SECURITY=y +CONFIG_EXT3_FS=y +CONFIG_EXT3_FS_POSIX_ACL=y +CONFIG_EXT3_FS_SECURITY=y +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +CONFIG_XFS_FS=y +CONFIG_XFS_SUPPORT_V4=y +CONFIG_XFS_SUPPORT_ASCII_CI=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +# CONFIG_XFS_RT is not set +# CONFIG_XFS_ONLINE_SCRUB is not set +# CONFIG_XFS_WARN is not set +# CONFIG_XFS_DEBUG is not set +# CONFIG_GFS2_FS is not set +# CONFIG_OCFS2_FS is not set +CONFIG_BTRFS_FS=y +# CONFIG_BTRFS_FS_POSIX_ACL is not set +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_FS_REF_VERIFY is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +CONFIG_FILE_LOCKING=y +# CONFIG_FS_ENCRYPTION is not set +# CONFIG_FS_VERITY is not set +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +# CONFIG_QUOTA_NETLINK_INTERFACE is not set +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=m +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTACTL=y +CONFIG_AUTOFS4_FS=y +CONFIG_AUTOFS_FS=y +CONFIG_FUSE_FS=m +# CONFIG_CUSE is not set +# CONFIG_VIRTIO_FS is not set +CONFIG_OVERLAY_FS=y +CONFIG_OVERLAY_FS_REDIRECT_DIR=y +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y +CONFIG_OVERLAY_FS_INDEX=y +CONFIG_OVERLAY_FS_XINO_AUTO=y +CONFIG_OVERLAY_FS_METACOPY=y + +# +# Caches +# +CONFIG_NETFS_SUPPORT=y +# CONFIG_NETFS_STATS is not set +CONFIG_FSCACHE=y +# CONFIG_FSCACHE_STATS is not set +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_CACHEFILES is not set +# end of Caches + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=y +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=y +# end of CD-ROM/DVD Filesystems + +# +# DOS/FAT/EXFAT/NT Filesystems +# +CONFIG_FAT_FS=m +CONFIG_MSDOS_FS=m +CONFIG_VFAT_FS=m +CONFIG_FAT_DEFAULT_CODEPAGE=936 +CONFIG_FAT_DEFAULT_IOCHARSET="gb2312" +# CONFIG_FAT_DEFAULT_UTF8 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_NTFS_FS is not set +# CONFIG_NTFS3_FS is not set +# end of DOS/FAT/EXFAT/NT Filesystems + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TMPFS_INODE64 is not set +CONFIG_ARCH_SUPPORTS_HUGETLBFS=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set +CONFIG_MEMFD_CREATE=y +CONFIG_CONFIGFS_FS=y +CONFIG_EFIVAR_FS=m +# end of Pseudo filesystems + +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_ORANGEFS_FS is not set +# CONFIG_ADFS_FS is not set +# CONFIG_AFFS_FS is not set +# CONFIG_ECRYPT_FS is not set +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_EFS_FS is not set +# CONFIG_JFFS2_FS is not set +CONFIG_CRAMFS=m +CONFIG_CRAMFS_BLOCKDEV=y +# CONFIG_CRAMFS_MTD is not set +CONFIG_SQUASHFS=y +CONFIG_SQUASHFS_FILE_CACHE=y +# CONFIG_SQUASHFS_FILE_DIRECT is not set +CONFIG_SQUASHFS_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_CHOICE_DECOMP_BY_MOUNT is not set +CONFIG_SQUASHFS_COMPILE_DECOMP_SINGLE=y +# CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI is not set +# CONFIG_SQUASHFS_COMPILE_DECOMP_MULTI_PERCPU is not set +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SQUASHFS_ZSTD is not set +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +# CONFIG_VXFS_FS is not set +# CONFIG_MINIX_FS is not set +# CONFIG_OMFS_FS is not set +# CONFIG_HPFS_FS is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_PSTORE is not set +# CONFIG_SYSV_FS is not set +# CONFIG_UFS_FS is not set +# CONFIG_EROFS_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=y +CONFIG_NFS_V2=y +CONFIG_NFS_V3=y +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=y +# CONFIG_NFS_SWAP is not set +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_2=y +CONFIG_PNFS_FILE_LAYOUT=y +CONFIG_PNFS_BLOCK=y +CONFIG_PNFS_FLEXFILE_LAYOUT=y +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +# CONFIG_NFS_V4_1_MIGRATION is not set +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_ROOT_NFS=y +# CONFIG_NFS_FSCACHE is not set +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFS_DISABLE_UDP_SUPPORT=y +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFSD=y +# CONFIG_NFSD_V2 is not set +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFSD_PNFS=y +CONFIG_NFSD_BLOCKLAYOUT=y +# CONFIG_NFSD_SCSILAYOUT is not set +# CONFIG_NFSD_FLEXFILELAYOUT is not set +# CONFIG_NFSD_V4_2_INTER_SSC is not set +# CONFIG_NFSD_V4_SECURITY_LABEL is not set +CONFIG_GRACE_PERIOD=y +CONFIG_LOCKD=y +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=y +CONFIG_NFS_COMMON=y +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_SUNRPC=y +CONFIG_SUNRPC_GSS=y +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_RPCSEC_GSS_KRB5=y +# CONFIG_SUNRPC_DEBUG is not set +CONFIG_SUNRPC_XPRT_RDMA=m +# CONFIG_CEPH_FS is not set +CONFIG_CIFS=m +CONFIG_CIFS_STATS2=y +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +# CONFIG_CIFS_UPCALL is not set +# CONFIG_CIFS_XATTR is not set +# CONFIG_CIFS_DEBUG is not set +# CONFIG_CIFS_DFS_UPCALL is not set +# CONFIG_CIFS_SWN_UPCALL is not set +# CONFIG_CIFS_SMB_DIRECT is not set +# CONFIG_CIFS_FSCACHE is not set +# CONFIG_SMB_SERVER is not set +CONFIG_SMBFS=m +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_9P_FS=y +# CONFIG_9P_FSCACHE is not set +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +CONFIG_NLS_CODEPAGE_936=y +# CONFIG_NLS_CODEPAGE_950 is not set +# CONFIG_NLS_CODEPAGE_932 is not set +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +# CONFIG_NLS_ISO8859_1 is not set +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y +# CONFIG_DLM is not set +# CONFIG_UNICODE is not set +CONFIG_IO_WQ=y +# end of File systems + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_KEYS_REQUEST_CACHE is not set +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_TRUSTED_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +CONFIG_KEY_DH_OPERATIONS=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_INFINIBAND is not set +# CONFIG_SECURITY_NETWORK_XFRM is not set +CONFIG_SECURITY_PATH=y +CONFIG_LSM_MMAP_MIN_ADDR=65536 +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +CONFIG_SECURITY_APPARMOR=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_APPARMOR_INTROSPECT_POLICY=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +CONFIG_SECURITY_APPARMOR_EXPORT_BINARY=y +CONFIG_SECURITY_APPARMOR_PARANOID_LOAD=y +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_SAFESETID is not set +# CONFIG_SECURITY_LOCKDOWN_LSM is not set +# CONFIG_SECURITY_LANDLOCK is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +CONFIG_INTEGRITY_AUDIT=y +# CONFIG_IMA is not set +# CONFIG_EVM is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_APPARMOR is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,bpf" + +# +# Kernel hardening options +# + +# +# Memory initialization +# +CONFIG_CC_HAS_AUTO_VAR_INIT_PATTERN=y +CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO_BARE=y +CONFIG_CC_HAS_AUTO_VAR_INIT_ZERO=y +CONFIG_INIT_STACK_NONE=y +# CONFIG_INIT_STACK_ALL_PATTERN is not set +# CONFIG_INIT_STACK_ALL_ZERO is not set +# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +# CONFIG_ZERO_CALL_USED_REGS is not set +# end of Memory initialization + +CONFIG_RANDSTRUCT_NONE=y +# CONFIG_RANDSTRUCT_FULL is not set +# CONFIG_RANDSTRUCT_PERFORMANCE is not set +# end of Kernel hardening options +# end of Security options + +CONFIG_XOR_BLOCKS=y +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_SIG2=y +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=m +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=m +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=m +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +# CONFIG_CRYPTO_MANAGER_EXTRA_TESTS is not set +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_NULL2=m +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_AUTHENC=m +# CONFIG_CRYPTO_TEST is not set +CONFIG_CRYPTO_ENGINE=m +# end of Crypto core or helper + +# +# Public-key cryptography +# +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_DH=y +# CONFIG_CRYPTO_DH_RFC7919_GROUPS is not set +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +# CONFIG_CRYPTO_ECDSA is not set +# CONFIG_CRYPTO_ECRDSA is not set +# CONFIG_CRYPTO_SM2 is not set +# CONFIG_CRYPTO_CURVE25519 is not set +# end of Public-key cryptography + +# +# Block ciphers +# +CONFIG_CRYPTO_AES=m +# CONFIG_CRYPTO_AES_TI is not set +CONFIG_CRYPTO_ANUBIS=m +# CONFIG_CRYPTO_ARIA is not set +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +# CONFIG_CRYPTO_CAMELLIA is not set +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_FCRYPT is not set +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +# CONFIG_CRYPTO_SM4_GENERIC is not set +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +# end of Block ciphers + +# +# Length-preserving ciphers and modes +# +# CONFIG_CRYPTO_ADIANTUM is not set +# CONFIG_CRYPTO_ARC4 is not set +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_CBC=m +# CONFIG_CRYPTO_CFB is not set +CONFIG_CRYPTO_CTR=m +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=m +# CONFIG_CRYPTO_HCTR2 is not set +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_OFB is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# end of Length-preserving ciphers and modes + +# +# AEAD (authenticated encryption with associated data) ciphers +# +# CONFIG_CRYPTO_AEGIS128 is not set +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_GENIV=m +CONFIG_CRYPTO_SEQIV=m +CONFIG_CRYPTO_ECHAINIV=m +CONFIG_CRYPTO_ESSIV=m +# end of AEAD (authenticated encryption with associated data) ciphers + +# +# Hashes, digests, and MACs +# +CONFIG_CRYPTO_BLAKE2B=y +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_GHASH=m +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_POLY1305=m +# CONFIG_CRYPTO_RMD160 is not set +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_SHA3=m +# CONFIG_CRYPTO_SM3_GENERIC is not set +# CONFIG_CRYPTO_STREEBOG is not set +CONFIG_CRYPTO_VMAC=m +CONFIG_CRYPTO_WP512=m +# CONFIG_CRYPTO_XCBC is not set +CONFIG_CRYPTO_XXHASH=y +# end of Hashes, digests, and MACs + +# +# CRCs (cyclic redundancy checks) +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32 is not set +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRC64_ROCKSOFT=y +# end of CRCs (cyclic redundancy checks) + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_LZO=m +CONFIG_CRYPTO_842=m +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_ZSTD=y +# end of Compression + +# +# Random number generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=m +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=m +CONFIG_CRYPTO_JITTERENTROPY=m +# CONFIG_CRYPTO_JITTERENTROPY_TESTINTERFACE is not set +CONFIG_CRYPTO_KDF800108_CTR=y +# end of Random number generation + +# +# Userspace interface +# +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_AEAD=m +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y +# CONFIG_CRYPTO_STATS is not set +# end of Userspace interface + +CONFIG_CRYPTO_HASH_INFO=y + +# +# Accelerated Cryptographic Algorithms for CPU (loongarch) +# +# CONFIG_CRYPTO_CRC32_LOONGARCH is not set +# end of Accelerated Cryptographic Algorithms for CPU (loongarch) + +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set +# CONFIG_CRYPTO_DEV_QAT_C62X is not set +# CONFIG_CRYPTO_DEV_QAT_4XXX is not set +# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set +# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set +# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set +# CONFIG_CRYPTO_DEV_CHELSIO is not set +CONFIG_CRYPTO_DEV_VIRTIO=m +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DEV_CCREE is not set +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set +# CONFIG_FIPS_SIGNATURE_SELFTEST is not set + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +# end of Certificates for signature checking + +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=y +CONFIG_RAID6_PQ_BENCHMARK=y +# CONFIG_PACKING is not set +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +# CONFIG_CORDIC is not set +# CONFIG_PRIME_NUMBERS is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y + +# +# Crypto library routines +# +CONFIG_CRYPTO_LIB_UTILS=y +CONFIG_CRYPTO_LIB_AES=m +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_LIB_GF128MUL=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_SHA1=y +CONFIG_CRYPTO_LIB_SHA256=y +# end of Crypto library routines + +CONFIG_CRC_CCITT=m +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC64_ROCKSOFT=y +CONFIG_CRC_ITU_T=y +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC64=y +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +CONFIG_LIBCRC32C=y +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +CONFIG_AUDIT_GENERIC=y +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_842_COMPRESS=m +CONFIG_842_DECOMPRESS=m +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_ZSTD_COMMON=y +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +# CONFIG_XZ_DEC_MICROLZMA is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_BTREE=y +CONFIG_INTERVAL_TREE=y +CONFIG_XARRAY_MULTI=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_SWIOTLB=y +# CONFIG_DMA_RESTRICTED_POOL is not set +# CONFIG_DMA_API_DEBUG is not set +CONFIG_SGL_ALLOC=y +# CONFIG_FORCE_NR_CPUS is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +CONFIG_IRQ_POLL=y +CONFIG_MPILIB=y +CONFIG_DIMLIB=y +CONFIG_LIBFDT=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_FONT_SUPPORT=y +CONFIG_FONTS=y +# CONFIG_FONT_8x8 is not set +CONFIG_FONT_8x16=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_7x14 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_ACORN_8x8 is not set +# CONFIG_FONT_MINI_4x6 is not set +# CONFIG_FONT_6x10 is not set +# CONFIG_FONT_10x18 is not set +# CONFIG_FONT_SUN8x16 is not set +# CONFIG_FONT_SUN12x22 is not set +# CONFIG_FONT_TER16x32 is not set +# CONFIG_FONT_6x8 is not set +CONFIG_FONT_AUTOSELECT=y +CONFIG_SG_POOL=y +CONFIG_ARCH_STACKWALK=y +CONFIG_STACKDEPOT=y +CONFIG_SBITMAP=y +# end of Library routines + +CONFIG_GENERIC_IOREMAP=y +CONFIG_GENERIC_LIB_ASHLDI3=y +CONFIG_GENERIC_LIB_ASHRDI3=y +CONFIG_GENERIC_LIB_LSHRDI3=y +CONFIG_GENERIC_LIB_CMPDI2=y +CONFIG_GENERIC_LIB_UCMPDI2=y +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y + +# +# Kernel hacking +# + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DYNAMIC_DEBUG_CORE is not set +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_DEBUG_BUGVERBOSE=y +# end of printk and dmesg options + +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_MISC=y + +# +# Compile-time checks and compiler options +# +CONFIG_AS_HAS_NON_CONST_LEB128=y +CONFIG_DEBUG_INFO_NONE=y +# CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +# CONFIG_DEBUG_INFO_DWARF5 is not set +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_HEADERS_INSTALL is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +# CONFIG_VMLINUX_MAP is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# end of Compile-time checks and compiler options + +# +# Generic Kernel Debugging Instruments +# +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +# CONFIG_DEBUG_FS is not set +# CONFIG_UBSAN is not set +CONFIG_HAVE_KCSAN_COMPILER=y +# end of Generic Kernel Debugging Instruments + +# +# Networking Debugging +# +# CONFIG_NET_DEV_REFCNT_TRACKER is not set +# CONFIG_NET_NS_REFCNT_TRACKER is not set +# CONFIG_DEBUG_NET is not set +# end of Networking Debugging + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +CONFIG_SLUB_DEBUG=y +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PAGE_POISONING is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_ARCH_DISABLE_KASAN_INLINE=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +# CONFIG_KASAN is not set +# end of Memory Debugging + +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Oops, Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HAVE_HARDLOCKUP_DETECTOR_BUDDY=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_WQ_CPU_INTENSIVE_REPORT is not set +# CONFIG_TEST_LOCKUP is not set +# end of Debug Oops, Lockups and Hangs + +# +# Scheduler Debugging +# +CONFIG_SCHED_INFO=y +CONFIG_SCHEDSTATS=y +# end of Scheduler Debugging + +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_LOCK_DEBUGGING_SUPPORT=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_SCF_TORTURE_TEST is not set +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +# end of Lock Debugging (spinlocks, mutexes, etc...) + +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_STACKTRACE=y +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set + +# +# Debug kernel data structures +# +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_DEBUG_MAPLE_TREE is not set +# end of Debug kernel data structures + +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_RCU_SCALE_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_REF_SCALE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0 +# CONFIG_RCU_CPU_STALL_CPUTIME is not set +CONFIG_RCU_TRACE=y +# CONFIG_RCU_EQS_DEBUG is not set +# end of RCU Debugging + +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_RETHOOK=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_RETVAL=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y +# CONFIG_STRICT_DEVMEM is not set + +# +# loongarch Debugging +# +# CONFIG_UNWINDER_GUESS is not set +CONFIG_UNWINDER_PROLOGUE=y +# end of loongarch Debugging + +# +# Kernel Testing and Coverage +# +# CONFIG_KUNIT is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +CONFIG_ARCH_HAS_KCOV=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +# CONFIG_KCOV is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_TEST_DHRY is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_DIV64 is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_TEST_REF_TRACKER is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_REED_SOLOMON_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_PERCPU_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_ASYNC_RAID6_TEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_STRING_SELFTEST is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_SCANF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_XARRAY is not set +# CONFIG_TEST_MAPLE_TREE is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_IDA is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_BITOPS is not set +# CONFIG_TEST_VMALLOC is not set +# CONFIG_TEST_USER_COPY is not set +# CONFIG_TEST_BPF is not set +# CONFIG_TEST_BLACKHOLE_DEV is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_STATIC_KEYS is not set +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_FREE_PAGES is not set +# end of Kernel Testing and Coverage + +# +# Rust hacking +# +# end of Rust hacking +# end of Kernel hacking diff --git a/loongarch64/files/step/target_base/lld/16.0.6/patches/D138135.diff b/loongarch64/files/step/target_base/lld/16.0.6/patches/D138135.diff new file mode 100644 index 00000000..206c1807 --- /dev/null +++ b/loongarch64/files/step/target_base/lld/16.0.6/patches/D138135.diff @@ -0,0 +1,1655 @@ +diff --git a/lld/ELF/Arch/LoongArch.cpp b/lld/ELF/Arch/LoongArch.cpp +new file mode 100644 +--- /dev/null ++++ b/lld/ELF/Arch/LoongArch.cpp +@@ -0,0 +1,684 @@ ++//===- LoongArch.cpp ------------------------------------------------------===// ++// ++// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. ++// See https://llvm.org/LICENSE.txt for license information. ++// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception ++// ++//===----------------------------------------------------------------------===// ++ ++#include "InputFiles.h" ++#include "OutputSections.h" ++#include "Symbols.h" ++#include "SyntheticSections.h" ++#include "Target.h" ++ ++using namespace llvm; ++using namespace llvm::object; ++using namespace llvm::support::endian; ++using namespace llvm::ELF; ++using namespace lld; ++using namespace lld::elf; ++ ++// The LoongArch `pcalau12i` is behaviorally equivalent to the AArch64 `adrp`, ++// so a similar concept of "page" also applies here. A "page" is in fact just ++// another way to refer to the 12-bit range allowed by the immediate field of ++// the addi/ld/st instructions. ++// ++// Note: "pcalau12i" stands for something like "PC aligned add upper, from 12th ++// bit, immediate"; LoongArch instructions have no canonical full names, ++// neither English nor Chinese ones, according to the ISA manual. ++static uint64_t getLoongArchPage(uint64_t p) { ++ return p & ~static_cast(0xFFF); ++} ++ ++// Calculate the adjusted page offset between dest and PC. ++// ++// We must specially handle the cases when the low 12 bits of dest are seen ++// as negative, because the instructions consuming it (ld, st, addi, etc.) ++// all sign-extend the immediate, unlike AArch64. The higher bits need ++// tweaking too, due to potential usage in patterns like: ++// ++// pcalau12i A, %foo_hi20(sym) ++// addi.d T, zero, %foo_lo12(sym) ++// lu32i.d T, %foo64_lo20(sym) ++// lu52i.d T, T, %foo64_hi12(sym) ++// ldx.d A, A, T ++// ++// in which case the "pc + hi20" part is separately constructed from the rest ++// which includes the higher 32-bit half and lo12, so the higher 32 bits need a ++// conditional nudge too, due to the signed addition performed by the ldx/stx. ++uint64_t elf::getLoongArchPageOffset(uint64_t dest, uint64_t pc) { ++ uint64_t result = getLoongArchPage(dest) - getLoongArchPage(pc); ++ if ((dest & 0xfff) > 0x7ff) { ++ result += 0x1000; ++ if (static_cast(result) > 0) ++ result -= 0x100000000; ++ } ++ return result; ++} ++ ++namespace { ++ ++class LoongArch final : public TargetInfo { ++public: ++ LoongArch(); ++ uint32_t calcEFlags() const override; ++ int64_t getImplicitAddend(const uint8_t *buf, RelType type) const override; ++ void writeGotHeader(uint8_t *buf) const override; ++ void writeGotPlt(uint8_t *buf, const Symbol &s) const override; ++ void writeIgotPlt(uint8_t *buf, const Symbol &s) const override; ++ void writePltHeader(uint8_t *buf) const override; ++ void writePlt(uint8_t *buf, const Symbol &sym, ++ uint64_t pltEntryAddr) const override; ++ RelType getDynRel(RelType type) const override; ++ RelExpr getRelExpr(RelType type, const Symbol &s, ++ const uint8_t *loc) const override; ++ bool usesOnlyLowPageBits(RelType type) const override; ++ void relocate(uint8_t *loc, const Relocation &rel, ++ uint64_t val) const override; ++}; ++ ++} // end anonymous namespace ++ ++const uint64_t dtpOffset = 0; ++ ++enum Op { ++ SUB_W = 0x00110000, ++ SUB_D = 0x00118000, ++ BREAK = 0x002a0000, ++ SRLI_W = 0x00448000, ++ SRLI_D = 0x00450000, ++ ADDI_W = 0x02800000, ++ ADDI_D = 0x02c00000, ++ ANDI = 0x03400000, ++ PCADDU12I = 0x1c000000, ++ LD_W = 0x28800000, ++ LD_D = 0x28c00000, ++ JIRL = 0x4c000000, ++}; ++ ++enum Reg { ++ R_ZERO = 0, ++ R_RA = 1, ++ R_TP = 2, ++ R_T0 = 12, ++ R_T1 = 13, ++ R_T2 = 14, ++ R_T3 = 15, ++}; ++ ++static uint32_t hi20(uint32_t val) { return (val + 0x800) >> 12; } ++static uint32_t lo12(uint32_t val) { return val & 0xfff; } ++ ++static uint32_t insn(uint32_t op, uint32_t d, uint32_t j, uint32_t k) { ++ return op | d | (j << 5) | (k << 10); ++} ++ ++// Extract bits v[begin:end], where range is inclusive. ++static uint32_t extractBits(uint64_t v, uint32_t begin, uint32_t end) { ++ return begin == 63 ? v >> end : (v & ((1ULL << (begin + 1)) - 1)) >> end; ++} ++ ++static uint32_t setD5k16(uint32_t insn, uint32_t imm) { ++ uint32_t immLo = extractBits(imm, 15, 0); ++ uint32_t immHi = extractBits(imm, 20, 16); ++ return (insn & 0xfc0003e0) | (immLo << 10) | immHi; ++} ++ ++static uint32_t setD10k16(uint32_t insn, uint32_t imm) { ++ uint32_t immLo = extractBits(imm, 15, 0); ++ uint32_t immHi = extractBits(imm, 25, 16); ++ return (insn & 0xfc000000) | (immLo << 10) | immHi; ++} ++ ++static uint32_t setJ20(uint32_t insn, uint32_t imm) { ++ return (insn & 0xfe00001f) | (extractBits(imm, 19, 0) << 5); ++} ++ ++static uint32_t setK12(uint32_t insn, uint32_t imm) { ++ return (insn & 0xffc003ff) | (extractBits(imm, 11, 0) << 10); ++} ++ ++static uint32_t setK16(uint32_t insn, uint32_t imm) { ++ return (insn & 0xfc0003ff) | (extractBits(imm, 15, 0) << 10); ++} ++ ++static bool isJirl(uint32_t insn) { ++ return (insn & 0xfc000000) == JIRL; ++} ++ ++LoongArch::LoongArch() { ++ // The LoongArch ISA itself does not have a limit on page sizes. According to ++ // the ISA manual, the PS (page size) field in MTLB entries and CSR.STLBPS is ++ // 6 bits wide, meaning the maximum page size is 2^63 which is equivalent to ++ // "unlimited". ++ // However, practically the maximum usable page size is constrained by the ++ // kernel implementation, and 64KiB is the biggest non-huge page size ++ // supported by Linux as of v6.1. ++ defaultMaxPageSize = 65536; ++ write32(trapInstr.data(), BREAK); // break 0 ++ ++ copyRel = R_LARCH_COPY; ++ pltRel = R_LARCH_JUMP_SLOT; ++ relativeRel = R_LARCH_RELATIVE; ++ iRelativeRel = R_LARCH_IRELATIVE; ++ ++ if (config->is64) { ++ symbolicRel = R_LARCH_64; ++ tlsModuleIndexRel = R_LARCH_TLS_DTPMOD64; ++ tlsOffsetRel = R_LARCH_TLS_DTPREL64; ++ tlsGotRel = R_LARCH_TLS_TPREL64; ++ } else { ++ symbolicRel = R_LARCH_32; ++ tlsModuleIndexRel = R_LARCH_TLS_DTPMOD32; ++ tlsOffsetRel = R_LARCH_TLS_DTPREL32; ++ tlsGotRel = R_LARCH_TLS_TPREL32; ++ } ++ ++ gotRel = symbolicRel; ++ ++ // .got[0] = _DYNAMIC ++ gotHeaderEntriesNum = 1; ++ ++ // .got.plt[0] = _dl_runtime_resolve, .got.plt[1] = link_map ++ gotPltHeaderEntriesNum = 2; ++ ++ pltHeaderSize = 32; ++ pltEntrySize = 16; ++ ipltEntrySize = 16; ++} ++ ++static uint32_t getEFlags(InputFile *f) { ++ if (config->is64) ++ return cast>(f)->getObj().getHeader().e_flags; ++ return cast>(f)->getObj().getHeader().e_flags; ++} ++ ++uint32_t LoongArch::calcEFlags() const { ++ // If there are only binary input files (from -b binary), use a ++ // value of 0 for the ELF header flags. ++ if (ctx.objectFiles.empty()) ++ return 0; ++ ++ uint32_t target = getEFlags(ctx.objectFiles.front()); ++ ++ for (InputFile *f : ctx.objectFiles) { ++ if ((getEFlags(f) & EF_LOONGARCH_ABI_MODIFIER_MASK) != ++ (target & EF_LOONGARCH_ABI_MODIFIER_MASK)) ++ error(toString(f) + ++ ": cannot link object files with different ABI"); ++ ++ // We cannot process psABI v1.x / object ABI v0 files (containing stack ++ // relocations), unlike ld.bfd. ++ // ++ // Instead of blindly accepting every v0 object and only failing at ++ // relocation processing time, just disallow interlink altogether. We ++ // don't expect significant usage of object ABI v0 in the wild (the old ++ // world may continue using object ABI v0 for a while, but as it's not ++ // binary-compatible with the upstream i.e. new-world ecosystem, it's not ++ // being considered here). ++ // ++ // There are briefly some new-world systems with object ABI v0 binaries too. ++ // It is because these programs were built before v1 was finalized. ++ // These are not supported either due to the extremely small number of them, ++ // and the few impacted users are advised to simply rebuild world or ++ // reinstall a recent system. ++ if ((getEFlags(f) & EF_LOONGARCH_OBJABI_MASK) != EF_LOONGARCH_OBJABI_V1) ++ error(toString(f) + ": unsupported object file ABI version"); ++ } ++ ++ return target; ++} ++ ++int64_t LoongArch::getImplicitAddend(const uint8_t *buf, RelType type) const { ++ switch (type) { ++ default: ++ internalLinkerError(getErrorLocation(buf), ++ "cannot read addend for relocation " + toString(type)); ++ return 0; ++ case R_LARCH_32: ++ case R_LARCH_TLS_DTPMOD32: ++ case R_LARCH_TLS_DTPREL32: ++ case R_LARCH_TLS_TPREL32: ++ return SignExtend64<32>(read32le(buf)); ++ case R_LARCH_64: ++ case R_LARCH_TLS_DTPMOD64: ++ case R_LARCH_TLS_DTPREL64: ++ case R_LARCH_TLS_TPREL64: ++ return read64le(buf); ++ case R_LARCH_RELATIVE: ++ case R_LARCH_IRELATIVE: ++ return config->is64 ? read64le(buf) : read32le(buf); ++ case R_LARCH_NONE: ++ case R_LARCH_JUMP_SLOT: ++ // These relocations are defined as not having an implicit addend. ++ return 0; ++ } ++} ++ ++void LoongArch::writeGotHeader(uint8_t *buf) const { ++ if (config->is64) ++ write64le(buf, mainPart->dynamic->getVA()); ++ else ++ write32le(buf, mainPart->dynamic->getVA()); ++} ++ ++void LoongArch::writeGotPlt(uint8_t *buf, const Symbol &s) const { ++ if (config->is64) ++ write64le(buf, in.plt->getVA()); ++ else ++ write32le(buf, in.plt->getVA()); ++} ++ ++void LoongArch::writeIgotPlt(uint8_t *buf, const Symbol &s) const { ++ if (config->writeAddends) { ++ if (config->is64) ++ write64le(buf, s.getVA()); ++ else ++ write32le(buf, s.getVA()); ++ } ++} ++ ++void LoongArch::writePltHeader(uint8_t *buf) const { ++ // The LoongArch PLT is currently structured just like that of RISCV. ++ // Annoyingly, this means the PLT is still using `pcaddu12i` to perform ++ // PC-relative addressing (because `pcaddu12i` is the same as RISCV `auipc`), ++ // in contrast to the AArch64-like page-offset scheme with `pcalau12i` that ++ // is used everywhere else involving PC-relative operations in the LoongArch ++ // ELF psABI v2.00. ++ // The `pcrel_{hi20,lo12}` operators are illustrative only and not really ++ // supported by LoongArch assemblers. ++ // ++ // 1: pcaddu12i $t2, %pcrel_hi20(.got.plt) ++ // sub.[wd] $t1, $t1, $t3 ++ // ld.[wd] $t3, $t2, %pcrel_lo12(1b) ; t3 = _dl_runtime_resolve ++ // addi.[wd] $t1, $t1, -pltHeaderSize-12; t1 = &.plt[i] - &.plt[0] ++ // addi.[wd] $t0, $t2, %pcrel_lo12(1b) ++ // srli.[wd] $t1, $t1, (is64?1:2) ; t1 = &.got.plt[i] - &.got.plt[0] ++ // ld.[wd] $t0, $t0, Wordsize(t0) ; t0 = link_map ++ // jr $t3 ++ uint32_t offset = in.gotPlt->getVA() - in.plt->getVA(); ++ uint32_t sub = config->is64 ? SUB_D : SUB_W; ++ uint32_t ld = config->is64 ? LD_D : LD_W; ++ uint32_t addi = config->is64 ? ADDI_D : ADDI_W; ++ uint32_t srli = config->is64 ? SRLI_D : SRLI_W; ++ write32le(buf + 0, insn(PCADDU12I, R_T2, hi20(offset), 0)); ++ write32le(buf + 4, insn(sub, R_T1, R_T1, R_T3)); ++ write32le(buf + 8, insn(ld, R_T3, R_T2, lo12(offset))); ++ write32le(buf + 12, insn(addi, R_T1, R_T1, lo12(-target->pltHeaderSize - 12))); ++ write32le(buf + 16, insn(addi, R_T0, R_T2, lo12(offset))); ++ write32le(buf + 20, insn(srli, R_T1, R_T1, config->is64 ? 1 : 2)); ++ write32le(buf + 24, insn(ld, R_T0, R_T0, config->wordsize)); ++ write32le(buf + 28, insn(JIRL, R_ZERO, R_T3, 0)); ++} ++ ++void LoongArch::writePlt(uint8_t *buf, const Symbol &sym, ++ uint64_t pltEntryAddr) const { ++ // See the comment in writePltHeader for reason why pcaddu12i is used instead ++ // of the pcalau12i that's more commonly seen in the ELF psABI v2.0 days. ++ // ++ // 1: pcaddu12i $t3, %pcrel_hi20(f@.got.plt) ++ // ld.[wd] $t3, $t3, %pcrel_lo12(1b) ++ // jirl $t1, $t3, 0 ++ // nop ++ uint32_t offset = sym.getGotPltVA() - pltEntryAddr; ++ write32le(buf + 0, insn(PCADDU12I, R_T3, hi20(offset), 0)); ++ write32le(buf + 4, ++ insn(config->is64 ? LD_D : LD_W, R_T3, R_T3, lo12(offset))); ++ write32le(buf + 8, insn(JIRL, R_T1, R_T3, 0)); ++ write32le(buf + 12, insn(ANDI, R_ZERO, R_ZERO, 0)); ++} ++ ++RelType LoongArch::getDynRel(RelType type) const { ++ return type == target->symbolicRel ? type ++ : static_cast(R_LARCH_NONE); ++} ++ ++RelExpr LoongArch::getRelExpr(const RelType type, const Symbol &s, ++ const uint8_t *loc) const { ++ switch (type) { ++ case R_LARCH_NONE: ++ case R_LARCH_MARK_LA: ++ case R_LARCH_MARK_PCREL: ++ return R_NONE; ++ case R_LARCH_32: ++ case R_LARCH_64: ++ case R_LARCH_ABS_HI20: ++ case R_LARCH_ABS_LO12: ++ case R_LARCH_ABS64_LO20: ++ case R_LARCH_ABS64_HI12: ++ return R_ABS; ++ case R_LARCH_PCALA_LO12: ++ // This may well be just R_ABS and nothing more, but unfortunately some ++ // people had the brilliant idea of reusing the R_LARCH_PCALA_LO12 reloc on ++ // JIRLs, for implementing the medium code model, seemingly for avoiding ++ // having to add another reloc type just for that. The intended use case is ++ // for making the libc_nonshared.a of glibc 2.37+ usable with large ++ // applications like Firefox or Chromium, where an R_LARCH_B26 will overflow ++ // otherwise. See [1] for details. ++ // ++ // This is bad for multiple reasons: ++ // ++ // * R_LARCH_PCALA_LO12 just places its computed value unmodified, but JIRL ++ // expects its immediate to be pre-shifted by 2 bits, making the reloc ++ // behavior dependent on the underlying input section content; ++ // * R_LARCH_PCALA_LO12 leaves the upper 16-12+2=6 bits of JIRL's immediate ++ // operand unusable, making the usage forever a kludge: a proper reloc ++ // type has to be added *anyway*, to be able to leverage the PCADDU18I + ++ // JIRL combo, for example. ++ // (In this case an ISA revision (!) is arguably necessary, because there ++ // is not a PCALAU18I for stylistic consistency with the other psABI v2.00 ++ // relocs. If PCADDU18I is to be used anyway, that would mean the new ++ // relocs are PCREL-style instead of PCALA; so for consistency, PCREL ++ // relocs for the other psABI v2.00 relocs should be added as well...) ++ // * Inspection into the input section must be performed for every ++ // R_LARCH_PCALA_LO12 record, which is one of the most frequently used ++ // LoongArch reloc types, but usage of the medium code model is not nearly ++ // as popular, so arguably ~100% of the checks are in fact wasted for very ++ // little gain. ++ // ++ // The problem is long known, and already reported with a suggested fix ++ // back in September 2022 [2]. But the pull request has not received any ++ // comment since then, and object code with this usage will soon appear with ++ // the release of glibc 2.37, so we have no choice but to carry the same ++ // kind of workaround as the BFD linker does. ++ // ++ // [1]: https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=9f482b73f41a9a1bbfb173aad0733d1c824c788a ++ // [2]: https://github.com/loongson/LoongArch-Documentation/pull/69 ++ return isJirl(read32le(loc)) ? R_PLT : R_ABS; ++ case R_LARCH_TLS_DTPREL32: ++ case R_LARCH_TLS_DTPREL64: ++ return R_DTPREL; ++ case R_LARCH_TLS_TPREL32: ++ case R_LARCH_TLS_TPREL64: ++ case R_LARCH_TLS_LE_HI20: ++ case R_LARCH_TLS_LE_LO12: ++ case R_LARCH_TLS_LE64_LO20: ++ case R_LARCH_TLS_LE64_HI12: ++ return R_TPREL; ++ case R_LARCH_ADD8: ++ case R_LARCH_ADD16: ++ case R_LARCH_ADD32: ++ case R_LARCH_ADD64: ++ case R_LARCH_SUB8: ++ case R_LARCH_SUB16: ++ case R_LARCH_SUB32: ++ case R_LARCH_SUB64: ++ // The LoongArch add/sub relocs are meant to behave the same as the RISCV ++ // counterparts; reuse its RelExpr to avoid having to define one more ++ // RelExpr type just to duplicate everything afterwards. ++ return R_RISCV_ADD; ++ case R_LARCH_32_PCREL: ++ return R_PC; ++ case R_LARCH_B16: ++ case R_LARCH_B21: ++ case R_LARCH_B26: ++ return R_PLT_PC; ++ case R_LARCH_GOT_PC_HI20: ++ case R_LARCH_GOT64_PC_LO20: ++ case R_LARCH_GOT64_PC_HI12: ++ return R_LOONGARCH_GOT_PAGE_PC; ++ case R_LARCH_GOT_PC_LO12: ++ return R_LOONGARCH_GOT; ++ case R_LARCH_TLS_LD_PC_HI20: ++ case R_LARCH_TLS_GD_PC_HI20: ++ return R_LOONGARCH_GOT_TLSGD_PAGE_PC; ++ case R_LARCH_TLS_IE_PC_HI20: ++ case R_LARCH_TLS_IE64_PC_LO20: ++ case R_LARCH_TLS_IE64_PC_HI12: ++ return R_LOONGARCH_GOT_TLSIE_PAGE_PC; ++ case R_LARCH_TLS_IE_PC_LO12: ++ return R_LOONGARCH_GOT_TLSIE; ++ case R_LARCH_PCALA_HI20: ++ // Why not R_LOONGARCH_PAGE_PC, majority of references don't go through PLT ++ // anyway so why waste time checking only to get everything relaxed back to ++ // it? ++ // ++ // This is again due to the R_LARCH_PCALA_LO12 on JIRL case, where we want ++ // both the HI20 and LO12 to potentially refer to the PLT. But in reality ++ // the HI20 reloc appears earlier, and the relocs don't contain enough ++ // information to let us properly resolve semantics per symbol. ++ // Unlike RISCV, our LO12 relocs *do not* point to their corresponding HI20 ++ // relocs, hence it is nearly impossible to 100% accurately determine each ++ // HI20's "flavor" without taking big performance hits, in the presence of ++ // edge cases (e.g. HI20 without pairing LO12, paired LO12 placed so far ++ // apart that relationship is not certain anymore), and programmer mistakes ++ // (e.g. as outlined in https://github.com/loongson/LoongArch-Documentation/pull/69). ++ // ++ // Ideally we would scan in an extra pass for all LO12s on JIRL, then mark ++ // every HI20 reloc referring to the same symbol differently; this is not ++ // feasible with the current function signature of getRelExpr that doesn't ++ // allow for such inter-pass state. ++ // ++ // So, unfortunately we have to again workaround this quirk the same way as ++ // BFD: assuming every R_LARCH_PCALA_HI20 is potentially PLT needing, only ++ // relaxing to R_LOONGARCH_PAGE_PC if it's known not so at a later stage. ++ return R_LOONGARCH_PLT_PAGE_PC; ++ case R_LARCH_PCALA64_LO20: ++ case R_LARCH_PCALA64_HI12: ++ return R_LOONGARCH_PAGE_PC; ++ case R_LARCH_GOT_HI20: ++ case R_LARCH_GOT_LO12: ++ case R_LARCH_GOT64_LO20: ++ case R_LARCH_GOT64_HI12: ++ case R_LARCH_TLS_IE_HI20: ++ case R_LARCH_TLS_IE_LO12: ++ case R_LARCH_TLS_IE64_LO20: ++ case R_LARCH_TLS_IE64_HI12: ++ return R_GOT; ++ case R_LARCH_TLS_LD_HI20: ++ return R_TLSLD_GOT; ++ case R_LARCH_TLS_GD_HI20: ++ return R_TLSGD_GOT; ++ case R_LARCH_RELAX: ++ // LoongArch linker relaxation is not defined yet. ++ return R_NONE; ++ ++ // A stack machine (read: global mutable state) is necessary for properly ++ // computing these relocs, and these relocs are already deprecated after ++ // the release of LoongArch ELF psABI v2.00, so we are not going to ++ // implement them. ++ case R_LARCH_SOP_PUSH_PCREL: ++ case R_LARCH_SOP_PUSH_ABSOLUTE: ++ case R_LARCH_SOP_PUSH_DUP: ++ case R_LARCH_SOP_PUSH_GPREL: ++ case R_LARCH_SOP_PUSH_TLS_TPREL: ++ case R_LARCH_SOP_PUSH_TLS_GOT: ++ case R_LARCH_SOP_PUSH_TLS_GD: ++ case R_LARCH_SOP_PUSH_PLT_PCREL: ++ case R_LARCH_SOP_ASSERT: ++ case R_LARCH_SOP_NOT: ++ case R_LARCH_SOP_SUB: ++ case R_LARCH_SOP_SL: ++ case R_LARCH_SOP_SR: ++ case R_LARCH_SOP_ADD: ++ case R_LARCH_SOP_AND: ++ case R_LARCH_SOP_IF_ELSE: ++ case R_LARCH_SOP_POP_32_S_10_5: ++ case R_LARCH_SOP_POP_32_U_10_12: ++ case R_LARCH_SOP_POP_32_S_10_12: ++ case R_LARCH_SOP_POP_32_S_10_16: ++ case R_LARCH_SOP_POP_32_S_10_16_S2: ++ case R_LARCH_SOP_POP_32_S_5_20: ++ case R_LARCH_SOP_POP_32_S_0_5_10_16_S2: ++ case R_LARCH_SOP_POP_32_S_0_10_10_16_S2: ++ case R_LARCH_SOP_POP_32_U: ++ // Nor are we implementing these two reloc types that were probably added ++ // without much thought, and already proposed to be removed. ++ // See https://github.com/loongson/LoongArch-Documentation/issues/51 ++ case R_LARCH_ADD24: ++ case R_LARCH_SUB24: ++ // Similarly for these two, long deprecated and unused even before the ++ // inception of LoongArch. ++ case R_LARCH_GNU_VTINHERIT: ++ case R_LARCH_GNU_VTENTRY: ++ error(getErrorLocation(loc) + ++ "cannot handle deprecated relocation " + toString(type) + ++ " against symbol " + toString(s)); ++ return R_NONE; ++ ++ default: ++ error(getErrorLocation(loc) + "unknown relocation (" + Twine(type) + ++ ") against symbol " + toString(s)); ++ return R_NONE; ++ } ++} ++ ++bool LoongArch::usesOnlyLowPageBits(RelType type) const { ++ switch (type) { ++ default: ++ return false; ++ case R_LARCH_PCALA_LO12: ++ case R_LARCH_GOT_LO12: ++ case R_LARCH_GOT_PC_LO12: ++ case R_LARCH_TLS_IE_PC_LO12: ++ return true; ++ } ++} ++ ++void LoongArch::relocate(uint8_t *loc, const Relocation &rel, ++ uint64_t val) const { ++ switch (rel.type) { ++ case R_LARCH_32_PCREL: ++ checkInt(loc, val, 32, rel); ++ [[fallthrough]]; ++ case R_LARCH_32: ++ write32le(loc, val); ++ return; ++ case R_LARCH_64: ++ write64le(loc, val); ++ return; ++ ++ case R_LARCH_B16: { ++ checkInt(loc, val, 18, rel); ++ checkAlignment(loc, val, 4, rel); ++ write32le(loc, setK16(read32le(loc), val >> 2)); ++ return; ++ } ++ ++ case R_LARCH_B21: { ++ checkInt(loc, val, 23, rel); ++ checkAlignment(loc, val, 4, rel); ++ write32le(loc, setD5k16(read32le(loc), val >> 2)); ++ return; ++ } ++ ++ case R_LARCH_B26: { ++ checkInt(loc, val, 28, rel); ++ checkAlignment(loc, val, 4, rel); ++ write32le(loc, setD10k16(read32le(loc), val >> 2)); ++ return; ++ } ++ ++ // Relocs intended for `addi`, `ld` or `st`. ++ case R_LARCH_ABS_LO12: ++ case R_LARCH_PCALA_LO12: ++ case R_LARCH_GOT_PC_LO12: ++ case R_LARCH_GOT_LO12: ++ case R_LARCH_TLS_LE_LO12: ++ case R_LARCH_TLS_IE_PC_LO12: ++ case R_LARCH_TLS_IE_LO12: { ++ // Annoyingly, we have to again inspect the insn word to handle the ++ // R_LARCH_PCALA_LO12 on JIRL case: JIRL wants its immediate's 2 lowest ++ // zeroes removed by us, and the immediate slot width is in fact different. ++ // In this case, process like an R_LARCH_B16 without the overflow check, and ++ // only taking the value's lowest 12 bits. ++ if (rel.type == R_LARCH_PCALA_LO12 && isJirl(read32le(loc))) { ++ checkAlignment(loc, val, 4, rel); ++ val = SignExtend64<12>(val); ++ write32le(loc, setK16(read32le(loc), val >> 2)); ++ return; ++ } ++ write32le(loc, setK12(read32le(loc), extractBits(val, 11, 0))); ++ return; ++ } ++ ++ // Relocs intended for `lu12i.w` or `pcalau12i`. ++ case R_LARCH_ABS_HI20: ++ case R_LARCH_PCALA_HI20: ++ case R_LARCH_GOT_PC_HI20: ++ case R_LARCH_GOT_HI20: ++ case R_LARCH_TLS_LE_HI20: ++ case R_LARCH_TLS_IE_PC_HI20: ++ case R_LARCH_TLS_IE_HI20: ++ case R_LARCH_TLS_LD_PC_HI20: ++ case R_LARCH_TLS_LD_HI20: ++ case R_LARCH_TLS_GD_PC_HI20: ++ case R_LARCH_TLS_GD_HI20: { ++ write32le(loc, setJ20(read32le(loc), extractBits(val, 31, 12))); ++ return; ++ } ++ ++ // Relocs intended for `lu32i.d`. ++ case R_LARCH_ABS64_LO20: ++ case R_LARCH_PCALA64_LO20: ++ case R_LARCH_GOT64_PC_LO20: ++ case R_LARCH_GOT64_LO20: ++ case R_LARCH_TLS_LE64_LO20: ++ case R_LARCH_TLS_IE64_PC_LO20: ++ case R_LARCH_TLS_IE64_LO20: { ++ write32le(loc, setJ20(read32le(loc), extractBits(val, 51, 32))); ++ return; ++ } ++ ++ // Relocs intended for `lu52i.d`. ++ case R_LARCH_ABS64_HI12: ++ case R_LARCH_PCALA64_HI12: ++ case R_LARCH_GOT64_PC_HI12: ++ case R_LARCH_GOT64_HI12: ++ case R_LARCH_TLS_LE64_HI12: ++ case R_LARCH_TLS_IE64_PC_HI12: ++ case R_LARCH_TLS_IE64_HI12: { ++ write32le(loc, setK12(read32le(loc), extractBits(val, 63, 52))); ++ return; ++ } ++ ++ case R_LARCH_ADD8: ++ *loc += val; ++ return; ++ case R_LARCH_ADD16: ++ write16le(loc, read16le(loc) + val); ++ return; ++ case R_LARCH_ADD32: ++ write32le(loc, read32le(loc) + val); ++ return; ++ case R_LARCH_ADD64: ++ write64le(loc, read64le(loc) + val); ++ return; ++ case R_LARCH_SUB8: ++ *loc -= val; ++ return; ++ case R_LARCH_SUB16: ++ write16le(loc, read16le(loc) - val); ++ return; ++ case R_LARCH_SUB32: ++ write32le(loc, read32le(loc) - val); ++ return; ++ case R_LARCH_SUB64: ++ write64le(loc, read64le(loc) - val); ++ return; ++ ++ case R_LARCH_TLS_DTPREL32: ++ write32le(loc, val - dtpOffset); ++ break; ++ case R_LARCH_TLS_DTPREL64: ++ write64le(loc, val - dtpOffset); ++ break; ++ ++ case R_LARCH_MARK_LA: ++ case R_LARCH_MARK_PCREL: ++ // no-op ++ return; ++ ++ case R_LARCH_RELAX: ++ return; // Ignored (for now) ++ ++ default: ++ llvm_unreachable("unknown relocation"); ++ } ++} ++ ++TargetInfo *elf::getLoongArchTargetInfo() { ++ static LoongArch target; ++ return ⌖ ++} +diff --git a/lld/ELF/CMakeLists.txt b/lld/ELF/CMakeLists.txt +--- a/lld/ELF/CMakeLists.txt ++++ b/lld/ELF/CMakeLists.txt +@@ -25,6 +25,7 @@ + Arch/ARM.cpp + Arch/AVR.cpp + Arch/Hexagon.cpp ++ Arch/LoongArch.cpp + Arch/Mips.cpp + Arch/MipsArchTree.cpp + Arch/MSP430.cpp +diff --git a/lld/ELF/Driver.cpp b/lld/ELF/Driver.cpp +--- a/lld/ELF/Driver.cpp ++++ b/lld/ELF/Driver.cpp +@@ -168,6 +168,7 @@ + .Case("elf32lriscv", {ELF32LEKind, EM_RISCV}) + .Cases("elf32ppc", "elf32ppclinux", {ELF32BEKind, EM_PPC}) + .Cases("elf32lppc", "elf32lppclinux", {ELF32LEKind, EM_PPC}) ++ .Case("elf32loongarch", {ELF32LEKind, EM_LOONGARCH}) + .Case("elf64btsmip", {ELF64BEKind, EM_MIPS}) + .Case("elf64ltsmip", {ELF64LEKind, EM_MIPS}) + .Case("elf64lriscv", {ELF64LEKind, EM_RISCV}) +@@ -179,6 +180,7 @@ + .Case("elf64_sparc", {ELF64BEKind, EM_SPARCV9}) + .Case("msp430elf", {ELF32LEKind, EM_MSP430}) + .Case("elf64_amdgpu", {ELF64LEKind, EM_AMDGPU}) ++ .Case("elf64loongarch", {ELF64LEKind, EM_LOONGARCH}) + .Default({ELFNoneKind, EM_NONE}); + + if (ret.first == ELFNoneKind) +@@ -1045,8 +1047,9 @@ + + // Otherwise use the psABI defined relocation entry format. + uint16_t m = config->emachine; +- return m == EM_AARCH64 || m == EM_AMDGPU || m == EM_HEXAGON || m == EM_PPC || +- m == EM_PPC64 || m == EM_RISCV || m == EM_X86_64; ++ return m == EM_AARCH64 || m == EM_AMDGPU || m == EM_HEXAGON || ++ m == EM_LOONGARCH || m == EM_PPC || m == EM_PPC64 || m == EM_RISCV || ++ m == EM_X86_64; + } + + static void parseClangOption(StringRef opt, const Twine &msg) { +@@ -1587,8 +1590,9 @@ + // have support for reading Elf_Rel addends, so we only enable for a subset. + #ifndef NDEBUG + bool checkDynamicRelocsDefault = m == EM_AARCH64 || m == EM_ARM || +- m == EM_386 || m == EM_MIPS || +- m == EM_X86_64 || m == EM_RISCV; ++ m == EM_386 || m == EM_LOONGARCH || ++ m == EM_MIPS || m == EM_RISCV || ++ m == EM_X86_64; + #else + bool checkDynamicRelocsDefault = false; + #endif +diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp +--- a/lld/ELF/InputFiles.cpp ++++ b/lld/ELF/InputFiles.cpp +@@ -1534,6 +1534,9 @@ + return EM_AVR; + case Triple::hexagon: + return EM_HEXAGON; ++ case Triple::loongarch32: ++ case Triple::loongarch64: ++ return EM_LOONGARCH; + case Triple::mips: + case Triple::mipsel: + case Triple::mips64: +diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp +--- a/lld/ELF/InputSection.cpp ++++ b/lld/ELF/InputSection.cpp +@@ -21,6 +21,7 @@ + #include "llvm/Support/Endian.h" + #include "llvm/Support/xxhash.h" + #include ++#include + #include + #include + +@@ -610,6 +611,7 @@ + // to allow a signed 16-bit offset to reach 0x1000 of TCB/thread-library + // data and 0xf000 of the program's TLS segment. + return s.getVA(0) + (tls->p_vaddr & (tls->p_align - 1)) - 0x7000; ++ case EM_LOONGARCH: + case EM_RISCV: + return s.getVA(0) + (tls->p_vaddr & (tls->p_align - 1)); + +@@ -644,6 +646,23 @@ + case R_GOT: + case R_RELAX_TLS_GD_TO_IE_ABS: + return sym.getGotVA() + a; ++ case R_LOONGARCH_GOT: ++ case R_LOONGARCH_GOT_TLSIE: ++ // The LoongArch PC-relative GOT relocs are notorious, in that the TLS ++ // relocs share the same reloc type with non-TLS ones for their page ++ // offsets. The arithmetics are different in the TLS case so we have to ++ // duplicate some logic here. ++ if (sym.isTls()) { ++ if (sym.hasFlag(NEEDS_TLSGD)) { ++ // Like R_LOONGARCH_TLSGD_PAGE_PC but taking the absolute value. ++ return in.got->getGlobalDynAddr(sym) + a; ++ } ++ if (ctx.needsTlsLd.load(std::memory_order_relaxed)) ++ // Like R_TLSLD_PC but taking the absolute value. ++ return in.got->getTlsIndexVA() + a; ++ // Fallthrough; relocate like R_GOT. ++ } ++ return sym.getGotVA() + a; + case R_GOTONLY_PC: + return in.got->getVA() + a - p; + case R_GOTPLTONLY_PC: +@@ -668,6 +687,9 @@ + case R_GOT_PC: + case R_RELAX_TLS_GD_TO_IE: + return sym.getGotVA() + a - p; ++ case R_LOONGARCH_GOT_PAGE_PC: ++ case R_LOONGARCH_GOT_TLSIE_PAGE_PC: ++ return getLoongArchPageOffset(sym.getGotVA() + a, p); + case R_MIPS_GOTREL: + return sym.getVA(a) - in.mipsGot->getGp(file); + case R_MIPS_GOT_GP: +@@ -716,6 +738,8 @@ + *hiRel->sym, hiRel->expr); + return 0; + } ++ case R_LOONGARCH_PAGE_PC: ++ return getLoongArchPageOffset(sym.getVA(a), p); + case R_PC: + case R_ARM_PCA: { + uint64_t dest; +@@ -749,6 +773,8 @@ + case R_PLT_PC: + case R_PPC64_CALL_PLT: + return sym.getPltVA() + a - p; ++ case R_LOONGARCH_PLT_PAGE_PC: ++ return getLoongArchPageOffset(sym.getPltVA() + a, p); + case R_PLT_GOTPLT: + return sym.getPltVA() + a - in.gotPlt->getVA(); + case R_PPC32_PLTREL: +@@ -809,6 +835,8 @@ + return in.got->getGlobalDynAddr(sym) + a - in.gotPlt->getVA(); + case R_TLSGD_PC: + return in.got->getGlobalDynAddr(sym) + a - p; ++ case R_LOONGARCH_GOT_TLSGD_PAGE_PC: ++ return getLoongArchPageOffset(in.got->getGlobalDynAddr(sym) + a, p); + case R_TLSLD_GOTPLT: + return in.got->getVA() + in.got->getTlsIndexOff() + a - in.gotPlt->getVA(); + case R_TLSLD_GOT: +diff --git a/lld/ELF/Relocations.h b/lld/ELF/Relocations.h +--- a/lld/ELF/Relocations.h ++++ b/lld/ELF/Relocations.h +@@ -102,6 +102,17 @@ + R_PPC64_RELAX_GOT_PC, + R_RISCV_ADD, + R_RISCV_PC_INDIRECT, ++ // Same as R_PC but with page-aligned semantics. ++ R_LOONGARCH_PAGE_PC, ++ // Same as R_PLT_PC but with page-aligned semantics. ++ R_LOONGARCH_PLT_PAGE_PC, ++ // LoongArch GOT relocs are also reused for TLS, so the required semantics ++ // differ from everyone else. ++ R_LOONGARCH_GOT, ++ R_LOONGARCH_GOT_TLSIE, ++ R_LOONGARCH_GOT_PAGE_PC, ++ R_LOONGARCH_GOT_TLSGD_PAGE_PC, ++ R_LOONGARCH_GOT_TLSIE_PAGE_PC, + }; + + // Architecture-neutral representation of relocation. +diff --git a/lld/ELF/Relocations.cpp b/lld/ELF/Relocations.cpp +--- a/lld/ELF/Relocations.cpp ++++ b/lld/ELF/Relocations.cpp +@@ -195,8 +195,8 @@ + + // Returns true if Expr refers a PLT entry. + static bool needsPlt(RelExpr expr) { +- return oneof( +- expr); ++ return oneof(expr); + } + + // Returns true if Expr refers a GOT entry. Note that this function +@@ -205,7 +205,9 @@ + static bool needsGot(RelExpr expr) { + return oneof(expr); ++ R_AARCH64_GOT_PAGE, R_LOONGARCH_GOT, R_LOONGARCH_GOT_TLSIE, ++ R_LOONGARCH_GOT_PAGE_PC, R_LOONGARCH_GOT_TLSGD_PAGE_PC, ++ R_LOONGARCH_GOT_TLSIE_PAGE_PC>(expr); + } + + // True if this expression is of the form Sym - X, where X is a position in the +@@ -213,12 +215,15 @@ + static bool isRelExpr(RelExpr expr) { + return oneof(expr); ++ R_RISCV_PC_INDIRECT, R_PPC64_RELAX_GOT_PC, ++ R_LOONGARCH_PAGE_PC>(expr); + } + + + static RelExpr toPlt(RelExpr expr) { + switch (expr) { ++ case R_LOONGARCH_PAGE_PC: ++ return R_LOONGARCH_PLT_PAGE_PC; + case R_PPC64_CALL: + return R_PPC64_CALL_PLT; + case R_PC: +@@ -237,6 +242,8 @@ + case R_PLT_PC: + case R_PPC32_PLTREL: + return R_PC; ++ case R_LOONGARCH_PLT_PAGE_PC: ++ return R_LOONGARCH_PAGE_PC; + case R_PPC64_CALL_PLT: + return R_PPC64_CALL; + case R_PLT: +@@ -951,7 +958,9 @@ + R_MIPS_GOTREL, R_MIPS_GOT_OFF, R_MIPS_GOT_OFF32, R_MIPS_GOT_GP_PC, + R_AARCH64_GOT_PAGE_PC, R_GOT_PC, R_GOTONLY_PC, R_GOTPLTONLY_PC, + R_PLT_PC, R_PLT_GOTPLT, R_PPC32_PLTREL, R_PPC64_CALL_PLT, +- R_PPC64_RELAX_TOC, R_RISCV_ADD, R_AARCH64_GOT_PAGE>(e)) ++ R_PPC64_RELAX_TOC, R_RISCV_ADD, R_AARCH64_GOT_PAGE, ++ R_LOONGARCH_PLT_PAGE_PC, R_LOONGARCH_GOT, R_LOONGARCH_GOT_TLSIE, ++ R_LOONGARCH_GOT_PAGE_PC, R_LOONGARCH_GOT_TLSIE_PAGE_PC>(e)) + return true; + + // These never do, except if the entire file is position dependent or if +@@ -1095,7 +1104,8 @@ + (isa(sec) && config->emachine != EM_MIPS)); + if (canWrite) { + RelType rel = target->getDynRel(type); +- if (expr == R_GOT || (rel == target->symbolicRel && !sym.isPreemptible)) { ++ if (oneof(expr) || ++ (rel == target->symbolicRel && !sym.isPreemptible)) { + addRelativeReloc(*sec, offset, sym, addend, expr, type); + return; + } else if (rel != 0) { +@@ -1247,11 +1257,13 @@ + return 1; + } + +- // ARM, Hexagon and RISC-V do not support GD/LD to IE/LE relaxation. For +- // PPC64, if the file has missing R_PPC64_TLSGD/R_PPC64_TLSLD, disable ++ // ARM, Hexagon, LoongArch and RISC-V do not support GD/LD to IE/LE ++ // relaxation. ++ // For PPC64, if the file has missing R_PPC64_TLSGD/R_PPC64_TLSLD, disable + // relaxation as well. + bool toExecRelax = !config->shared && config->emachine != EM_ARM && + config->emachine != EM_HEXAGON && ++ config->emachine != EM_LOONGARCH && + config->emachine != EM_RISCV && + !c.file->ppc64DisableTLSRelax; + +@@ -1268,8 +1280,7 @@ + // being suitable for being dynamically loaded via dlopen. GOT[e0] is the + // module index, with a special value of 0 for the current module. GOT[e1] is + // unused. There only needs to be one module index entry. +- if (oneof( +- expr)) { ++ if (oneof(expr)) { + // Local-Dynamic relocs can be relaxed to Local-Exec. + if (toExecRelax) { + c.addReloc({target->adjustTlsExpr(type, R_RELAX_TLS_LD_TO_LE), type, +@@ -1300,7 +1311,8 @@ + } + + if (oneof(expr)) { ++ R_TLSDESC_GOTPLT, R_TLSGD_GOT, R_TLSGD_GOTPLT, R_TLSGD_PC, ++ R_LOONGARCH_GOT_TLSGD_PAGE_PC>(expr)) { + if (!toExecRelax) { + sym.setFlags(NEEDS_TLSGD); + c.addReloc({expr, type, offset, addend, &sym}); +@@ -1320,8 +1332,8 @@ + return target->getTlsGdRelaxSkip(type); + } + +- if (oneof(expr)) { ++ if (oneof(expr)) { + ctx.hasTlsIe.store(true, std::memory_order_relaxed); + // Initial-Exec relocs can be relaxed to Local-Exec if the symbol is locally + // defined. +diff --git a/lld/ELF/ScriptParser.cpp b/lld/ELF/ScriptParser.cpp +--- a/lld/ELF/ScriptParser.cpp ++++ b/lld/ELF/ScriptParser.cpp +@@ -439,6 +439,8 @@ + .Case("elf64-littleriscv", {ELF64LEKind, EM_RISCV}) + .Case("elf64-sparc", {ELF64BEKind, EM_SPARCV9}) + .Case("elf32-msp430", {ELF32LEKind, EM_MSP430}) ++ .Case("elf32-loongarch", {ELF32LEKind, EM_LOONGARCH}) ++ .Case("elf64-loongarch", {ELF64LEKind, EM_LOONGARCH}) + .Default({ELFNoneKind, EM_NONE}); + } + +diff --git a/lld/ELF/Target.h b/lld/ELF/Target.h +--- a/lld/ELF/Target.h ++++ b/lld/ELF/Target.h +@@ -172,6 +172,7 @@ + TargetInfo *getARMTargetInfo(); + TargetInfo *getAVRTargetInfo(); + TargetInfo *getHexagonTargetInfo(); ++TargetInfo *getLoongArchTargetInfo(); + TargetInfo *getMSP430TargetInfo(); + TargetInfo *getPPC64TargetInfo(); + TargetInfo *getPPCTargetInfo(); +@@ -215,6 +216,7 @@ + void addPPC64SaveRestore(); + uint64_t getPPC64TocBase(); + uint64_t getAArch64Page(uint64_t expr); ++uint64_t getLoongArchPageOffset(uint64_t dest, uint64_t pc); + void riscvFinalizeRelax(int passes); + void mergeRISCVAttributesSections(); + +diff --git a/lld/ELF/Target.cpp b/lld/ELF/Target.cpp +--- a/lld/ELF/Target.cpp ++++ b/lld/ELF/Target.cpp +@@ -62,6 +62,8 @@ + return getAVRTargetInfo(); + case EM_HEXAGON: + return getHexagonTargetInfo(); ++ case EM_LOONGARCH: ++ return getLoongArchTargetInfo(); + case EM_MIPS: + switch (config->ekind) { + case ELF32LEKind: +diff --git a/lld/test/ELF/loongarch-abs64.s b/lld/test/ELF/loongarch-abs64.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-abs64.s +@@ -0,0 +1,60 @@ ++# REQUIRES: loongarch ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch64-unknown-elf %s -o %t.la64.o ++ ++# RUN: ld.lld %t.la64.o --defsym foo=0 --defsym bar=42 -o %t.la64.1 ++# RUN: llvm-objdump -d %t.la64.1 | FileCheck --check-prefix=CASE1 %s ++# CASE1: 04 00 00 14 lu12i.w $a0, 0 ++# CASE1-NEXT: 84 00 80 03 ori $a0, $a0, 0 ++# CASE1-NEXT: 04 00 00 16 lu32i.d $a0, 0 ++# CASE1-NEXT: 84 00 00 03 lu52i.d $a0, $a0, 0 ++# CASE1-NEXT: 05 00 00 14 lu12i.w $a1, 0 ++# CASE1-NEXT: a5 a8 80 03 ori $a1, $a1, 42 ++# CASE1-NEXT: 05 00 00 16 lu32i.d $a1, 0 ++# CASE1-NEXT: a5 00 00 03 lu52i.d $a1, $a1, 0 ++ ++# RUN: ld.lld %t.la64.o --defsym foo=0x12345678 --defsym bar=0x87654321 -o %t.la64.2 ++# RUN: llvm-objdump -d %t.la64.2 | FileCheck --check-prefix=CASE2 %s ++# CASE2: a4 68 24 14 lu12i.w $a0, 74565 ++# CASE2-NEXT: 84 e0 99 03 ori $a0, $a0, 1656 ++# CASE2-NEXT: 04 00 00 16 lu32i.d $a0, 0 ++# CASE2-NEXT: 84 00 00 03 lu52i.d $a0, $a0, 0 ++# CASE2-NEXT: 85 ca 0e 15 lu12i.w $a1, -493996 ++# CASE2-NEXT: a5 84 8c 03 ori $a1, $a1, 801 ++# CASE2-NEXT: 05 00 00 16 lu32i.d $a1, 0 ++# CASE2-NEXT: a5 00 00 03 lu52i.d $a1, $a1, 0 ++ ++# RUN: ld.lld %t.la64.o --defsym foo=0x12345fedcb678 --defsym bar=0xfedcb12345000 -o %t.la64.3 ++# RUN: llvm-objdump -d %t.la64.3 | FileCheck --check-prefix=CASE3 %s ++# CASE3: 64 b9 fd 15 lu12i.w $a0, -4661 ++# CASE3-NEXT: 84 e0 99 03 ori $a0, $a0, 1656 ++# CASE3-NEXT: a4 68 24 16 lu32i.d $a0, 74565 ++# CASE3-NEXT: 84 00 00 03 lu52i.d $a0, $a0, 0 ++# CASE3-NEXT: a5 68 24 14 lu12i.w $a1, 74565 ++# CASE3-NEXT: a5 00 80 03 ori $a1, $a1, 0 ++# CASE3-NEXT: 65 b9 fd 17 lu32i.d $a1, -4661 ++# CASE3-NEXT: a5 00 00 03 lu52i.d $a1, $a1, 0 ++ ++# RUN: ld.lld %t.la64.o --defsym foo=0xfffffeeeeeddd --defsym bar=0xfff00000f1111222 -o %t.la64.4 ++# RUN: llvm-objdump -d %t.la64.4 | FileCheck --check-prefix=CASE4 %s ++# CASE4: c4 dd dd 15 lu12i.w $a0, -69906 ++# CASE4-NEXT: 84 74 b7 03 ori $a0, $a0, 3549 ++# CASE4-NEXT: e4 ff ff 17 lu32i.d $a0, -1 ++# CASE4-NEXT: 84 00 00 03 lu52i.d $a0, $a0, 0 ++# CASE4-NEXT: 25 22 e2 15 lu12i.w $a1, -61167 ++# CASE4-NEXT: a5 88 88 03 ori $a1, $a1, 546 ++# CASE4-NEXT: 05 00 00 16 lu32i.d $a1, 0 ++# CASE4-NEXT: a5 fc 3f 03 lu52i.d $a1, $a1, -1 ++ ++.global _start ++ ++_start: ++ lu12i.w $a0, %abs_hi20(foo) ++ ori $a0, $a0, %abs_lo12(foo) ++ lu32i.d $a0, %abs64_lo20(foo) ++ lu52i.d $a0, $a0, %abs64_hi12(foo) ++ ++ lu12i.w $a1, %abs_hi20(bar) ++ ori $a1, $a1, %abs_lo12(bar) ++ lu32i.d $a1, %abs64_lo20(bar) ++ lu52i.d $a1, $a1, %abs64_hi12(bar) +diff --git a/lld/test/ELF/loongarch-branch-b16.s b/lld/test/ELF/loongarch-branch-b16.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-branch-b16.s +@@ -0,0 +1,40 @@ ++# REQUIRES: loongarch ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32-unknown-elf %s -o %t.la32.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64-unknown-elf %s -o %t.la64.o ++ ++# RUN: ld.lld %t.la32.o --defsym foo=_start+4 --defsym bar=_start -o %t.la32 ++# RUN: ld.lld %t.la64.o --defsym foo=_start+4 --defsym bar=_start -o %t.la64 ++# RUN: llvm-objdump -d %t.la32 | FileCheck %s --check-prefix=CHECK-32 ++# RUN: llvm-objdump -d %t.la64 | FileCheck %s --check-prefix=CHECK-64 ++# CHECK-32: 00 04 00 58 beq $zero, $zero, 4 ++# CHECK-32: 00 fc ff 5f bne $zero, $zero, -4 ++# CHECK-64: 00 04 00 58 beq $zero, $zero, 4 ++# CHECK-64: 00 fc ff 5f bne $zero, $zero, -4 ++ ++# RUN: ld.lld %t.la32.o --defsym foo=_start+0x1fffc --defsym bar=_start+4-0x20000 -o %t.la32.limits ++# RUN: ld.lld %t.la64.o --defsym foo=_start+0x1fffc --defsym bar=_start+4-0x20000 -o %t.la64.limits ++# RUN: llvm-objdump -d %t.la32.limits | FileCheck --check-prefix=LIMITS-32 %s ++# RUN: llvm-objdump -d %t.la64.limits | FileCheck --check-prefix=LIMITS-64 %s ++# LIMITS-32: 00 fc ff 59 beq $zero, $zero, 131068 ++# LIMITS-32-NEXT: 00 00 00 5e bne $zero, $zero, -131072 ++# LIMITS-64: 00 fc ff 59 beq $zero, $zero, 131068 ++# LIMITS-64-NEXT: 00 00 00 5e bne $zero, $zero, -131072 ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+0x20000 --defsym bar=_start+4-0x20004 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+0x20000 --defsym bar=_start+4-0x20004 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s ++# ERROR-RANGE: relocation R_LARCH_B16 out of range: 131072 is not in [-131072, 131071]; references 'foo' ++# ERROR-RANGE: relocation R_LARCH_B16 out of range: -131076 is not in [-131072, 131071]; references 'bar' ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-1 %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-1 %s ++# ERROR-ALIGN-1: improper alignment for relocation R_LARCH_B16: 0xFFFFFFFFFFFFFFFB is not aligned to 4 bytes ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+2 --defsym bar=_start-2 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-2 %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+2 --defsym bar=_start-2 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-2 %s ++# ERROR-ALIGN-2: improper alignment for relocation R_LARCH_B16: 0xFFFFFFFFFFFFFFFA is not aligned to 4 bytes ++ ++.global _start ++_start: ++ beq $zero, $zero, foo ++ bne $zero, $zero, bar +diff --git a/lld/test/ELF/loongarch-branch-b21.s b/lld/test/ELF/loongarch-branch-b21.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-branch-b21.s +@@ -0,0 +1,40 @@ ++# REQUIRES: loongarch ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32-unknown-elf %s -o %t.la32.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64-unknown-elf %s -o %t.la64.o ++ ++# RUN: ld.lld %t.la32.o --defsym foo=_start+4 --defsym bar=_start -o %t.la32 ++# RUN: ld.lld %t.la64.o --defsym foo=_start+4 --defsym bar=_start -o %t.la64 ++# RUN: llvm-objdump -d %t.la32 | FileCheck %s --check-prefix=CHECK-32 ++# RUN: llvm-objdump -d %t.la64 | FileCheck %s --check-prefix=CHECK-64 ++# CHECK-32: e0 07 00 40 beqz $s8, 4 ++# CHECK-32: ff ff ff 47 bnez $s8, -4 ++# CHECK-64: e0 07 00 40 beqz $s8, 4 ++# CHECK-64: ff ff ff 47 bnez $s8, -4 ++ ++# RUN: ld.lld %t.la32.o --defsym foo=_start+0x3ffffc --defsym bar=_start+4-0x400000 -o %t.la32.limits ++# RUN: ld.lld %t.la64.o --defsym foo=_start+0x3ffffc --defsym bar=_start+4-0x400000 -o %t.la64.limits ++# RUN: llvm-objdump -d %t.la32.limits | FileCheck --check-prefix=LIMITS-32 %s ++# RUN: llvm-objdump -d %t.la64.limits | FileCheck --check-prefix=LIMITS-64 %s ++# LIMITS-32: ef ff ff 43 beqz $s8, 4194300 ++# LIMITS-32-NEXT: f0 03 00 44 bnez $s8, -4194304 ++# LIMITS-64: ef ff ff 43 beqz $s8, 4194300 ++# LIMITS-64-NEXT: f0 03 00 44 bnez $s8, -4194304 ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+0x400000 --defsym bar=_start+4-0x400004 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+0x400000 --defsym bar=_start+4-0x400004 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s ++# ERROR-RANGE: relocation R_LARCH_B21 out of range: 4194304 is not in [-4194304, 4194303]; references 'foo' ++# ERROR-RANGE: relocation R_LARCH_B21 out of range: -4194308 is not in [-4194304, 4194303]; references 'bar' ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-1 %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-1 %s ++# ERROR-ALIGN-1: improper alignment for relocation R_LARCH_B21: 0xFFFFFFFFFFFFFFFB is not aligned to 4 bytes ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+2 --defsym bar=_start-2 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-2 %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+2 --defsym bar=_start-2 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-2 %s ++# ERROR-ALIGN-2: improper alignment for relocation R_LARCH_B21: 0xFFFFFFFFFFFFFFFA is not aligned to 4 bytes ++ ++.global _start ++_start: ++ beqz $s8, foo ++ bnez $s8, bar +diff --git a/lld/test/ELF/loongarch-branch-b26.s b/lld/test/ELF/loongarch-branch-b26.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-branch-b26.s +@@ -0,0 +1,40 @@ ++# REQUIRES: loongarch ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32-unknown-elf %s -o %t.la32.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64-unknown-elf %s -o %t.la64.o ++ ++# RUN: ld.lld %t.la32.o --defsym foo=_start+4 --defsym bar=_start -o %t.la32 ++# RUN: ld.lld %t.la64.o --defsym foo=_start+4 --defsym bar=_start -o %t.la64 ++# RUN: llvm-objdump -d %t.la32 | FileCheck %s --check-prefix=CHECK-32 ++# RUN: llvm-objdump -d %t.la64 | FileCheck %s --check-prefix=CHECK-64 ++# CHECK-32: 00 04 00 50 b 4 ++# CHECK-32: ff ff ff 57 bl -4 ++# CHECK-64: 00 04 00 50 b 4 ++# CHECK-64: ff ff ff 57 bl -4 ++ ++# RUN: ld.lld %t.la32.o --defsym foo=_start+0x7fffffc --defsym bar=_start+4-0x8000000 -o %t.la32.limits ++# RUN: ld.lld %t.la64.o --defsym foo=_start+0x7fffffc --defsym bar=_start+4-0x8000000 -o %t.la64.limits ++# RUN: llvm-objdump -d %t.la32.limits | FileCheck --check-prefix=LIMITS-32 %s ++# RUN: llvm-objdump -d %t.la64.limits | FileCheck --check-prefix=LIMITS-64 %s ++# LIMITS-32: ff fd ff 53 b 134217724 ++# LIMITS-32-NEXT: 00 02 00 54 bl -134217728 ++# LIMITS-64: ff fd ff 53 b 134217724 ++# LIMITS-64-NEXT: 00 02 00 54 bl -134217728 ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+0x8000000 --defsym bar=_start+4-0x8000004 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+0x8000000 --defsym bar=_start+4-0x8000004 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-RANGE %s ++# ERROR-RANGE: relocation R_LARCH_B26 out of range: 134217728 is not in [-134217728, 134217727]; references 'foo' ++# ERROR-RANGE: relocation R_LARCH_B26 out of range: -134217732 is not in [-134217728, 134217727]; references 'bar' ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-1 %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+1 --defsym bar=_start-1 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-1 %s ++# ERROR-ALIGN-1: improper alignment for relocation R_LARCH_B26: 0xFFFFFFFFFFFFFFFB is not aligned to 4 bytes ++ ++# RUN: not ld.lld %t.la32.o --defsym foo=_start+2 --defsym bar=_start-2 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-2 %s ++# RUN: not ld.lld %t.la64.o --defsym foo=_start+2 --defsym bar=_start-2 -o /dev/null 2>&1 | FileCheck --check-prefix=ERROR-ALIGN-2 %s ++# ERROR-ALIGN-2: improper alignment for relocation R_LARCH_B26: 0xFFFFFFFFFFFFFFFA is not aligned to 4 bytes ++ ++.global _start ++_start: ++ b foo ++ bl bar +diff --git a/lld/test/ELF/loongarch-elf-flags.s b/lld/test/ELF/loongarch-elf-flags.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-elf-flags.s +@@ -0,0 +1,8 @@ ++# REQUIRES: loongarch ++ ++# RUN: echo -n "BLOB" > %t.binary ++# RUN: ld.lld -m elf64loongarch -b binary %t.binary -o %t.out ++# RUN: llvm-readobj -h %t.out | FileCheck %s ++ ++# CHECK: Flags [ ++# CHECK-NEXT: ] +diff --git a/lld/test/ELF/loongarch-pc-aligned.s b/lld/test/ELF/loongarch-pc-aligned.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-pc-aligned.s +@@ -0,0 +1,173 @@ ++# REQUIRES: loongarch ++# RUN: rm -rf %t && split-file %s %t ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32 %t/a.s -o %t/a.la32.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64 %t/a.s -o %t/a.la64.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64 %t/extreme.s -o %t/extreme.o ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case1.t -o %t/case1.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case1.t -o %t/case1.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case1.la32 | FileCheck %s --check-prefix=CASE1 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case1.la64 | FileCheck %s --check-prefix=CASE1 ++# CASE1: pcalau12i $a0, 0 ++# CASE1-NEXT: ld.w $a0, $a0, 0 ++#--- case1.t ++SECTIONS { ++ .rodata 0x1000: { *(.rodata) } ++ .text 0x1ffc: { *(.text) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case2.t -o %t/case2.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case2.t -o %t/case2.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case2.la32 | FileCheck %s --check-prefix=CASE2 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case2.la64 | FileCheck %s --check-prefix=CASE2 ++# CASE2: pcalau12i $a0, -1 ++# CASE2-NEXT: ld.w $a0, $a0, 0 ++#--- case2.t ++SECTIONS { ++ .rodata 0x1000: { *(.rodata) } ++ .text 0x2000: { *(.text) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case3.t -o %t/case3.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case3.t -o %t/case3.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case3.la32 | FileCheck %s --check-prefix=CASE3 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case3.la64 | FileCheck %s --check-prefix=CASE3 ++# CASE3: pcalau12i $a0, -1 ++# CASE3-NEXT: ld.w $a0, $a0, 2047 ++#--- case3.t ++SECTIONS { ++ .rodata 0x17ff: { *(.rodata) } ++ .text 0x2000: { *(.text) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case4.t -o %t/case4.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case4.t -o %t/case4.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case4.la32 | FileCheck %s --check-prefix=CASE4 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case4.la64 | FileCheck %s --check-prefix=CASE4 ++# CASE4: pcalau12i $a0, 0 ++# CASE4-NEXT: ld.w $a0, $a0, -2048 ++#--- case4.t ++SECTIONS { ++ .rodata 0x1800: { *(.rodata) } ++ .text 0x2000: { *(.text) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case5.t -o %t/case5.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case5.t -o %t/case5.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case5.la32 | FileCheck %s --check-prefix=CASE5 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case5.la64 | FileCheck %s --check-prefix=CASE5 ++# CASE5: pcalau12i $a0, 1 ++# CASE5-NEXT: ld.w $a0, $a0, 4 ++#--- case5.t ++SECTIONS { ++ .text 0x001ffc: { *(.text) } ++ .rodata 0x002004: { *(.rodata) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case6.t -o %t/case6.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case6.t -o %t/case6.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case6.la32 | FileCheck %s --check-prefix=CASE6 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case6.la64 | FileCheck %s --check-prefix=CASE6 ++# CASE6: pcalau12i $a0, 2 ++# CASE6-NEXT: ld.w $a0, $a0, -2048 ++#--- case6.t ++SECTIONS { ++ .text 0x001ffc: { *(.text) } ++ .rodata 0x002800: { *(.rodata) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case7.t -o %t/case7.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case7.t -o %t/case7.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case7.la32 | FileCheck %s --check-prefix=CASE7 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case7.la64 | FileCheck %s --check-prefix=CASE7 ++# CASE7: pcalau12i $a0, 524287 ++# CASE7-NEXT: ld.w $a0, $a0, 291 ++#--- case7.t ++SECTIONS { ++ .text 0x0: { *(.text) } ++ .rodata 0x7ffff123: { *(.rodata) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case8.t -o %t/case8.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case8.t -o %t/case8.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case8.la32 | FileCheck %s --check-prefix=CASE8 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case8.la64 | FileCheck %s --check-prefix=CASE8 ++# CASE8: pcalau12i $a0, -524288 ++# CASE8-NEXT: ld.w $a0, $a0, -1348 ++#--- case8.t ++SECTIONS { ++ .text 0x0: { *(.text) } ++ .rodata 0x7ffffabc: { *(.rodata) } ++} ++ ++# RUN: ld.lld %t/a.la32.o -T %t/case9.t -o %t/case9.la32 ++# RUN: ld.lld %t/a.la64.o -T %t/case9.t -o %t/case9.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case9.la32 | FileCheck %s --check-prefix=CASE9 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/case9.la64 | FileCheck %s --check-prefix=CASE9 ++# CASE9: pcalau12i $a0, -524288 ++# CASE9-NEXT: ld.w $a0, $a0, 291 ++#--- case9.t ++SECTIONS { ++ .rodata 0x123: { *(.rodata) } ++ .text 0x80000000: { *(.text) } ++} ++ ++# RUN: ld.lld %t/extreme.o -T %t/extreme1.t -o %t/extreme1 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/extreme1 | FileCheck %s --check-prefix=EXTREME1 ++# EXTREME1: addi.d $t0, $zero, 291 ++# EXTREME1-NEXT: lu32i.d $t0, -284281 ++# EXTREME1-NEXT: lu52i.d $t0, $t0, -292 ++# EXTREME1-NEXT: pcalau12i $t1, 414771 ++#--- extreme1.t ++SECTIONS { ++ .rodata 0x123: { *(.rodata) } ++ .text 0x123456789abcdef0: { *(.text) } ++} ++ ++# RUN: ld.lld %t/extreme.o -T %t/extreme2.t -o %t/extreme2 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/extreme2 | FileCheck %s --check-prefix=EXTREME2 ++# EXTREME2: addi.d $t0, $zero, -820 ++# EXTREME2-NEXT: lu32i.d $t0, -69907 ++# EXTREME2-NEXT: lu52i.d $t0, $t0, 2047 ++# EXTREME2-NEXT: pcalau12i $t1, -139810 ++#--- extreme2.t ++SECTIONS { ++ .text 0x0: { *(.text) } ++ .rodata 0x7ffeeeeedddddccc: { *(.rodata) } ++} ++ ++# RUN: ld.lld %t/extreme.o -T %t/extreme3.t -o %t/extreme3 ++# RUN: llvm-objdump -d --no-show-raw-insn %t/extreme3 | FileCheck %s --check-prefix=EXTREME3 ++# EXTREME3: addi.d $t0, $zero, -820 ++# EXTREME3-NEXT: lu32i.d $t0, -69906 ++# EXTREME3-NEXT: lu52i.d $t0, $t0, -2048 ++# EXTREME3-NEXT: pcalau12i $t1, -139810 ++#--- extreme3.t ++SECTIONS { ++ .text 0x0: { *(.text) } ++ .rodata 0x800eeeeedddddccc: { *(.rodata) } ++} ++ ++#--- a.s ++.rodata ++x: ++.word 10 ++.text ++.global _start ++_start: ++ pcalau12i $a0, %pc_hi20(x) ++ ld.w $a0, $a0, %pc_lo12(x) ++ ++#--- extreme.s ++.rodata ++x: ++.word 10 ++.text ++.global _start ++_start: ++ addi.d $t0, $zero, %pc_lo12(x) ++ lu32i.d $t0, %pc64_lo20(x) ++ lu52i.d $t0, $t0, %pc64_hi12(x) ++ pcalau12i $t1, %pc_hi20(x) ++ add.d $t0, $t0, $t1 +diff --git a/lld/test/ELF/loongarch-pcala-lo12-jirl-shared-error.s b/lld/test/ELF/loongarch-pcala-lo12-jirl-shared-error.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-pcala-lo12-jirl-shared-error.s +@@ -0,0 +1,14 @@ ++# REQUIRES: loongarch ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32-unknown-elf %s -o %t.la32.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64-unknown-elf %s -o %t.la64.o ++ ++# RUN: not ld.lld %t.la32.o -shared -o %t.la32.so 2>&1 | FileCheck %s ++# RUN: not ld.lld %t.la64.o -shared -o %t.la64.so 2>&1 | FileCheck %s ++ ++.global foo ++foo: ++ pcalau12i $t0, %pc_hi20(bar) ++ ld.w $t0, $t0, %pc_lo12(bar) ++ ++# CHECK: error: relocation R_LARCH_PCALA_LO12 cannot be used against symbol 'bar'; recompile with -fPIC +diff --git a/lld/test/ELF/loongarch-pcala-lo12-jirl-shared.s b/lld/test/ELF/loongarch-pcala-lo12-jirl-shared.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-pcala-lo12-jirl-shared.s +@@ -0,0 +1,49 @@ ++# REQUIRES: loongarch ++# RUN: rm -rf %t && split-file %s %t ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32-unknown-elf %t/a.s -o %t/a.la32.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64-unknown-elf %t/a.s -o %t/a.la64.o ++ ++# RUN: ld.lld %t/a.la32.o -shared -T %t/a.t -o %t/a.la32.so ++# RUN: ld.lld %t/a.la64.o -shared -T %t/a.t -o %t/a.la64.so ++ ++# RUN: llvm-objdump -d --no-show-raw-insn %t/a.la32.so | FileCheck --check-prefixes=DIS,DIS32 %s ++# RUN: llvm-objdump -d --no-show-raw-insn %t/a.la64.so | FileCheck --check-prefixes=DIS,DIS64 %s ++ ++## PLT should be present in this case. ++# DIS: Disassembly of section .plt: ++# DIS: <.plt>: ++# DIS: 234020: pcaddu12i $t3, 510 ++# DIS32-NEXT: 234024: ld.w $t3, $t3, 84 ++# DIS64-NEXT: 234024: ld.d $t3, $t3, 184 ++# DIS-NEXT: 234028: jirl $t1, $t3, 0 ++# DIS-NEXT: 23402c: nop ++ ++# DIS: Disassembly of section .text: ++# DIS: : ++# DIS-NEXT: nop ++# DIS-NEXT: nop ++# DIS-NEXT: nop ++# DIS-NEXT: pcalau12i $t0, -510 ++# DIS-NEXT: jirl $zero, $t0, 32 ++ ++ ++#--- a.t ++SECTIONS { ++ .plt 0x234000: { *(.plt) } ++ .text 0x432000: { *(.text) } ++} ++ ++#--- a.s ++.p2align 12 ++.global foo ++foo: ++## The nops are for pushing the relocs off page boundary, to better see the ++## page-aligned semantics in action. ++ nop ++ nop ++ nop ++ ## The offsets should be -510 (0x234 - 0x432) and 32 (PLT header size + 0) ++ ## respectively. ++ pcalau12i $t0, %pc_hi20(bar) ++ jirl $zero, $t0, %pc_lo12(bar) +diff --git a/lld/test/ELF/loongarch-pcala-lo12-jirl.s b/lld/test/ELF/loongarch-pcala-lo12-jirl.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-pcala-lo12-jirl.s +@@ -0,0 +1,42 @@ ++# REQUIRES: loongarch ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32-unknown-elf %s -o %t.la32.o ++# RUN: llvm-mc --filetype=obj --triple=loongarch64-unknown-elf %s -o %t.la64.o ++ ++# RUN: ld.lld %t.la32.o -o %t.la32 ++# RUN: ld.lld %t.la64.o -o %t.la64 ++# RUN: llvm-objdump -d --no-show-raw-insn %t.la32 | FileCheck %s ++# RUN: llvm-objdump -d --no-show-raw-insn %t.la64 | FileCheck %s ++# CHECK: pcalau12i $t0, -1 ++# CHECK-NEXT: jirl $ra, $t0, 564 ++# CHECK-NEXT: pcalau12i $t0, 0 ++# CHECK-NEXT: jirl $zero, $t0, -1348 ++ ++## PLT shouldn't get generated in this case. ++# CHECK-NOT: Disassembly of section .plt: ++ ++.p2align 12 ++.org 0x234 ++.global foo ++foo: ++ li.w $a0, 42 ++ ret ++ ++.org 0xabc ++.global bar ++bar: ++ li.w $a7, 94 ++ syscall 0 ++ ++.org 0x1000 ++.global _start ++_start: ++## The nops are for pushing the relocs off page boundary, to better see the ++## page-aligned semantics in action. ++ nop ++ nop ++ nop ++ pcalau12i $t0, %pc_hi20(foo) ++ jirl $ra, $t0, %pc_lo12(foo) ++ pcalau12i $t0, %pc_hi20(bar) ++ jirl $zero, $t0, %pc_lo12(bar) +diff --git a/lld/test/ELF/loongarch-plt.s b/lld/test/ELF/loongarch-plt.s +new file mode 100644 +--- /dev/null ++++ b/lld/test/ELF/loongarch-plt.s +@@ -0,0 +1,108 @@ ++# REQUIRES: loongarch ++# RUN: echo '.globl bar, weak; .type bar,@function; .type weak,@function; bar: weak:' > %t1.s ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch32 %t1.s -o %t1.32.o ++# RUN: ld.lld -shared %t1.32.o -soname=t1.32.so -o %t1.32.so ++# RUN: llvm-mc --filetype=obj --triple=loongarch32 %s -o %t.32.o ++# RUN: ld.lld %t.32.o %t1.32.so -z separate-code -o %t.32 ++# RUN: llvm-readelf -S -s %t.32 | FileCheck --check-prefixes=SEC,NM %s ++# RUN: llvm-readobj -r %t.32 | FileCheck --check-prefix=RELOC32 %s ++# RUN: llvm-readelf -x .got.plt %t.32 | FileCheck --check-prefix=GOTPLT32 %s ++# RUN: llvm-objdump -d --no-show-raw-insn %t.32 | FileCheck --check-prefixes=DIS,DIS32 %s ++ ++# RUN: llvm-mc --filetype=obj --triple=loongarch64 %t1.s -o %t1.64.o ++# RUN: ld.lld -shared %t1.64.o -soname=t1.64.so -o %t1.64.so ++# RUN: llvm-mc --filetype=obj --triple=loongarch64 %s -o %t.64.o ++# RUN: ld.lld %t.64.o %t1.64.so -z separate-code -o %t.64 ++# RUN: llvm-readelf -S -s %t.64 | FileCheck --check-prefixes=SEC,NM %s ++# RUN: llvm-readobj -r %t.64 | FileCheck --check-prefix=RELOC64 %s ++# RUN: llvm-readelf -x .got.plt %t.64 | FileCheck --check-prefix=GOTPLT64 %s ++# RUN: llvm-objdump -d --no-show-raw-insn %t.64 | FileCheck --check-prefixes=DIS,DIS64 %s ++ ++# SEC: .plt PROGBITS {{0*}}00020020 ++ ++## A canonical PLT has a non-zero st_value. bar and weak are called but their ++## addresses are not taken, so a canonical PLT is not necessary. ++# NM: {{0*}}00000000 0 FUNC GLOBAL DEFAULT UND bar ++# NM: {{0*}}00000000 0 FUNC WEAK DEFAULT UND weak ++ ++## The .got.plt slots relocated by .rela.plt point to .plt ++## This is required by glibc. ++# RELOC32: .rela.plt { ++# RELOC32-NEXT: 0x40070 R_LARCH_JUMP_SLOT bar 0x0 ++# RELOC32-NEXT: 0x40074 R_LARCH_JUMP_SLOT weak 0x0 ++# RELOC32-NEXT: } ++# GOTPLT32: section '.got.plt' ++# GOTPLT32-NEXT: 0x00040068 00000000 00000000 20000200 20000200 ++ ++# RELOC64: .rela.plt { ++# RELOC64-NEXT: 0x400E0 R_LARCH_JUMP_SLOT bar 0x0 ++# RELOC64-NEXT: 0x400E8 R_LARCH_JUMP_SLOT weak 0x0 ++# RELOC64-NEXT: } ++# GOTPLT64: section '.got.plt' ++# GOTPLT64-NEXT: 0x000400d0 00000000 00000000 00000000 00000000 ++# GOTPLT64-NEXT: 0x000400e0 20000200 00000000 20000200 00000000 ++ ++# DIS: <_start>: ++## Direct call ++## foo - . = 0x20010-0x20000 = 16 ++# DIS-NEXT: 20000: bl 16 ++## bar@plt - . = 0x20040-0x20004 = 60 ++# DIS-NEXT: 20004: bl 60 ++## bar@plt - . = 0x20040-0x20008 = 56 ++# DIS-NEXT: 20008: bl 56 ++## weak@plt - . = 0x20050-0x2000c = 68 ++# DIS-NEXT: 2000c: bl 68 ++# DIS: : ++# DIS-NEXT: 20010: ++ ++# DIS: Disassembly of section .plt: ++# DIS: <.plt>: ++## 32-bit: .got.plt - .plt = 0x40068 - 0x20020 = 4096*32+72 ++# DIS32-NEXT: pcaddu12i $t2, 32 ++# DIS32-NEXT: sub.w $t1, $t1, $t3 ++# DIS32-NEXT: ld.w $t3, $t2, 72 ++# DIS32-NEXT: addi.w $t1, $t1, -44 ++# DIS32-NEXT: addi.w $t0, $t2, 72 ++# DIS32-NEXT: srli.w $t1, $t1, 2 ++# DIS32-NEXT: ld.w $t0, $t0, 4 ++# DIS32-NEXT: jr $t3 ++ ++## 64-bit: .got.plt - .plt = 0x400d0 - 0x20020 = 4096*32+176 ++# DIS64-NEXT: pcaddu12i $t2, 32 ++# DIS64-NEXT: sub.d $t1, $t1, $t3 ++# DIS64-NEXT: ld.d $t3, $t2, 176 ++# DIS64-NEXT: addi.d $t1, $t1, -44 ++# DIS64-NEXT: addi.d $t0, $t2, 176 ++# DIS64-NEXT: srli.d $t1, $t1, 1 ++# DIS64-NEXT: ld.d $t0, $t0, 8 ++# DIS64-NEXT: jr $t3 ++ ++## 32-bit: &.got.plt[bar]-. = 0x40070-0x20040 = 4096*32+48 ++## 64-bit: &.got.plt[bar]-. = 0x400e0-0x20040 = 4096*32+160 ++# DIS: 20040: pcaddu12i $t3, 32 ++# DIS32-NEXT: ld.w $t3, $t3, 48 ++# DIS64-NEXT: ld.d $t3, $t3, 160 ++# DIS-NEXT: jirl $t1, $t3, 0 ++# DIS-NEXT: nop ++ ++## 32-bit: &.got.plt[weak]-. = 0x40074-0x20050 = 4096*32+36 ++## 64-bit: &.got.plt[weak]-. = 0x400e8-0x20050 = 4096*32+152 ++# DIS: 20050: pcaddu12i $t3, 32 ++# DIS32-NEXT: ld.w $t3, $t3, 36 ++# DIS64-NEXT: ld.d $t3, $t3, 152 ++# DIS-NEXT: jirl $t1, $t3, 0 ++# DIS-NEXT: nop ++ ++.global _start, foo, bar ++.weak weak ++ ++_start: ++ bl foo ++ bl bar ++ bl %plt(bar) ++ bl weak ++ ++## foo is local and non-preemptible, no PLT is generated. ++foo: ++ ret +diff --git a/lld/test/lit.cfg.py b/lld/test/lit.cfg.py +--- a/lld/test/lit.cfg.py ++++ b/lld/test/lit.cfg.py +@@ -68,6 +68,7 @@ + 'ARM': 'arm', + 'AVR': 'avr', + 'Hexagon': 'hexagon', ++ 'LoongArch': 'loongarch', + 'Mips': 'mips', + 'MSP430': 'msp430', + 'PowerPC': 'ppc', + diff --git a/loongarch64/files/step/target_base/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch b/loongarch64/files/step/target_base/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch deleted file mode 100644 index 91aae3f9..00000000 --- a/loongarch64/files/step/target_base/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch +++ /dev/null @@ -1,38 +0,0 @@ -From d6cee1cff63159d1ccc6c9f5dd98507909a1482e Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Sat, 3 Jun 2023 07:15:01 +0000 -Subject: [PATCH] fix inconsistency in features usage of dependency syn for - cargo, clip, and trustfmt. - ---- - src/tools/cargo/Cargo.toml | 1 + - src/tools/rustfmt/Cargo.toml | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/src/tools/cargo/Cargo.toml b/src/tools/cargo/Cargo.toml -index 56c9827cb..32ff3f941 100644 ---- a/src/tools/cargo/Cargo.toml -+++ b/src/tools/cargo/Cargo.toml -@@ -76,6 +76,7 @@ unicode-width = "0.1.5" - unicode-xid = "0.2.0" - url = "2.2.2" - walkdir = "2.2" -+syn = { version = "2.0.8", features = ["full"] } - - # A noop dependency that changes in the Rust repository, it's a bit of a hack. - # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust` -diff --git a/src/tools/rustfmt/Cargo.toml b/src/tools/rustfmt/Cargo.toml -index 87ce59d02..044ec25bc 100644 ---- a/src/tools/rustfmt/Cargo.toml -+++ b/src/tools/rustfmt/Cargo.toml -@@ -56,6 +56,7 @@ toml = "0.5" - unicode-segmentation = "1.9" - unicode-width = "0.1" - unicode_categories = "0.1" -+syn = { version = "2.0.8", features = ["full"] } - - rustfmt-config_proc_macro = { version = "0.3", path = "config_proc_macro" } - --- -2.31.1 - diff --git a/loongarch64/files/step/target_base/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch b/loongarch64/files/step/target_base/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch deleted file mode 100644 index ffef2a63..00000000 --- a/loongarch64/files/step/target_base/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch +++ /dev/null @@ -1,9736 +0,0 @@ -From b22cd8d66d6f3ab67b1cd9bc52c1fe8f9fcd19e3 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Wed, 12 Apr 2023 08:39:46 +0000 -Subject: [PATCH] linux-raw-sys-0.1.4 add loongarch64 support. - ---- - vendor/linux-raw-sys-0.1.4/src/lib.rs | 16 + - vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs | 135 + - .../linux-raw-sys-0.1.4/src/loongarch64/general.rs | 5205 +++++++++++++++++ - vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs | 1465 +++++ - .../linux-raw-sys-0.1.4/src/loongarch64/netlink.rs | 2860 +++++++++ - 5 files changed, 9681 insertions(+) - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs - create mode 100644 vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs - -diff --git a/vendor/linux-raw-sys-0.1.4/src/lib.rs b/vendor/linux-raw-sys-0.1.4/src/lib.rs -index 3204531d0..6c9c948ec 100644 ---- a/vendor/linux-raw-sys-0.1.4/src/lib.rs -+++ b/vendor/linux-raw-sys-0.1.4/src/lib.rs -@@ -165,6 +165,22 @@ pub mod ioctl; - #[path = "aarch64/netlink.rs"] - pub mod netlink; - #[cfg(feature = "errno")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/errno.rs"] -+pub mod errno; -+#[cfg(feature = "general")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/general.rs"] -+pub mod general; -+#[cfg(feature = "ioctl")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/ioctl.rs"] -+pub mod ioctl; -+#[cfg(feature = "netlink")] -+#[cfg(target_arch = "loongarch64")] -+#[path = "loongarch64/netlink.rs"] -+pub mod netlink; -+#[cfg(feature = "errno")] - #[cfg(target_arch = "mips")] - #[path = "mips/errno.rs"] - pub mod errno; -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs -new file mode 100644 -index 000000000..8c5620d74 ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/errno.rs -@@ -0,0 +1,135 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+pub const EPERM: u32 = 1; -+pub const ENOENT: u32 = 2; -+pub const ESRCH: u32 = 3; -+pub const EINTR: u32 = 4; -+pub const EIO: u32 = 5; -+pub const ENXIO: u32 = 6; -+pub const E2BIG: u32 = 7; -+pub const ENOEXEC: u32 = 8; -+pub const EBADF: u32 = 9; -+pub const ECHILD: u32 = 10; -+pub const EAGAIN: u32 = 11; -+pub const ENOMEM: u32 = 12; -+pub const EACCES: u32 = 13; -+pub const EFAULT: u32 = 14; -+pub const ENOTBLK: u32 = 15; -+pub const EBUSY: u32 = 16; -+pub const EEXIST: u32 = 17; -+pub const EXDEV: u32 = 18; -+pub const ENODEV: u32 = 19; -+pub const ENOTDIR: u32 = 20; -+pub const EISDIR: u32 = 21; -+pub const EINVAL: u32 = 22; -+pub const ENFILE: u32 = 23; -+pub const EMFILE: u32 = 24; -+pub const ENOTTY: u32 = 25; -+pub const ETXTBSY: u32 = 26; -+pub const EFBIG: u32 = 27; -+pub const ENOSPC: u32 = 28; -+pub const ESPIPE: u32 = 29; -+pub const EROFS: u32 = 30; -+pub const EMLINK: u32 = 31; -+pub const EPIPE: u32 = 32; -+pub const EDOM: u32 = 33; -+pub const ERANGE: u32 = 34; -+pub const EDEADLK: u32 = 35; -+pub const ENAMETOOLONG: u32 = 36; -+pub const ENOLCK: u32 = 37; -+pub const ENOSYS: u32 = 38; -+pub const ENOTEMPTY: u32 = 39; -+pub const ELOOP: u32 = 40; -+pub const EWOULDBLOCK: u32 = 11; -+pub const ENOMSG: u32 = 42; -+pub const EIDRM: u32 = 43; -+pub const ECHRNG: u32 = 44; -+pub const EL2NSYNC: u32 = 45; -+pub const EL3HLT: u32 = 46; -+pub const EL3RST: u32 = 47; -+pub const ELNRNG: u32 = 48; -+pub const EUNATCH: u32 = 49; -+pub const ENOCSI: u32 = 50; -+pub const EL2HLT: u32 = 51; -+pub const EBADE: u32 = 52; -+pub const EBADR: u32 = 53; -+pub const EXFULL: u32 = 54; -+pub const ENOANO: u32 = 55; -+pub const EBADRQC: u32 = 56; -+pub const EBADSLT: u32 = 57; -+pub const EDEADLOCK: u32 = 35; -+pub const EBFONT: u32 = 59; -+pub const ENOSTR: u32 = 60; -+pub const ENODATA: u32 = 61; -+pub const ETIME: u32 = 62; -+pub const ENOSR: u32 = 63; -+pub const ENONET: u32 = 64; -+pub const ENOPKG: u32 = 65; -+pub const EREMOTE: u32 = 66; -+pub const ENOLINK: u32 = 67; -+pub const EADV: u32 = 68; -+pub const ESRMNT: u32 = 69; -+pub const ECOMM: u32 = 70; -+pub const EPROTO: u32 = 71; -+pub const EMULTIHOP: u32 = 72; -+pub const EDOTDOT: u32 = 73; -+pub const EBADMSG: u32 = 74; -+pub const EOVERFLOW: u32 = 75; -+pub const ENOTUNIQ: u32 = 76; -+pub const EBADFD: u32 = 77; -+pub const EREMCHG: u32 = 78; -+pub const ELIBACC: u32 = 79; -+pub const ELIBBAD: u32 = 80; -+pub const ELIBSCN: u32 = 81; -+pub const ELIBMAX: u32 = 82; -+pub const ELIBEXEC: u32 = 83; -+pub const EILSEQ: u32 = 84; -+pub const ERESTART: u32 = 85; -+pub const ESTRPIPE: u32 = 86; -+pub const EUSERS: u32 = 87; -+pub const ENOTSOCK: u32 = 88; -+pub const EDESTADDRREQ: u32 = 89; -+pub const EMSGSIZE: u32 = 90; -+pub const EPROTOTYPE: u32 = 91; -+pub const ENOPROTOOPT: u32 = 92; -+pub const EPROTONOSUPPORT: u32 = 93; -+pub const ESOCKTNOSUPPORT: u32 = 94; -+pub const EOPNOTSUPP: u32 = 95; -+pub const EPFNOSUPPORT: u32 = 96; -+pub const EAFNOSUPPORT: u32 = 97; -+pub const EADDRINUSE: u32 = 98; -+pub const EADDRNOTAVAIL: u32 = 99; -+pub const ENETDOWN: u32 = 100; -+pub const ENETUNREACH: u32 = 101; -+pub const ENETRESET: u32 = 102; -+pub const ECONNABORTED: u32 = 103; -+pub const ECONNRESET: u32 = 104; -+pub const ENOBUFS: u32 = 105; -+pub const EISCONN: u32 = 106; -+pub const ENOTCONN: u32 = 107; -+pub const ESHUTDOWN: u32 = 108; -+pub const ETOOMANYREFS: u32 = 109; -+pub const ETIMEDOUT: u32 = 110; -+pub const ECONNREFUSED: u32 = 111; -+pub const EHOSTDOWN: u32 = 112; -+pub const EHOSTUNREACH: u32 = 113; -+pub const EALREADY: u32 = 114; -+pub const EINPROGRESS: u32 = 115; -+pub const ESTALE: u32 = 116; -+pub const EUCLEAN: u32 = 117; -+pub const ENOTNAM: u32 = 118; -+pub const ENAVAIL: u32 = 119; -+pub const EISNAM: u32 = 120; -+pub const EREMOTEIO: u32 = 121; -+pub const EDQUOT: u32 = 122; -+pub const ENOMEDIUM: u32 = 123; -+pub const EMEDIUMTYPE: u32 = 124; -+pub const ECANCELED: u32 = 125; -+pub const ENOKEY: u32 = 126; -+pub const EKEYEXPIRED: u32 = 127; -+pub const EKEYREVOKED: u32 = 128; -+pub const EKEYREJECTED: u32 = 129; -+pub const EOWNERDEAD: u32 = 130; -+pub const ENOTRECOVERABLE: u32 = 131; -+pub const ERFKILL: u32 = 132; -+pub const EHWPOISON: u32 = 133; -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs -new file mode 100644 -index 000000000..79d309016 ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/general.rs -@@ -0,0 +1,5205 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+#[repr(C)] -+#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] -+pub struct __BindgenBitfieldUnit { -+storage: Storage, -+} -+impl __BindgenBitfieldUnit { -+#[inline] -+pub const fn new(storage: Storage) -> Self { -+Self { storage } -+} -+} -+impl __BindgenBitfieldUnit -+where -+Storage: AsRef<[u8]> + AsMut<[u8]>, -+{ -+#[inline] -+pub fn get_bit(&self, index: usize) -> bool { -+debug_assert!(index / 8 < self.storage.as_ref().len()); -+let byte_index = index / 8; -+let byte = self.storage.as_ref()[byte_index]; -+let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; -+let mask = 1 << bit_index; -+byte & mask == mask -+} -+#[inline] -+pub fn set_bit(&mut self, index: usize, val: bool) { -+debug_assert!(index / 8 < self.storage.as_ref().len()); -+let byte_index = index / 8; -+let byte = &mut self.storage.as_mut()[byte_index]; -+let bit_index = if cfg!(target_endian = "big") { 7 - (index % 8) } else { index % 8 }; -+let mask = 1 << bit_index; -+if val { -+*byte |= mask; -+} else { -+*byte &= !mask; -+} -+} -+#[inline] -+pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 { -+debug_assert!(bit_width <= 64); -+debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); -+debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); -+let mut val = 0; -+for i in 0..(bit_width as usize) { -+if self.get_bit(i + bit_offset) { -+let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; -+val |= 1 << index; -+} -+} -+val -+} -+#[inline] -+pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) { -+debug_assert!(bit_width <= 64); -+debug_assert!(bit_offset / 8 < self.storage.as_ref().len()); -+debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len()); -+for i in 0..(bit_width as usize) { -+let mask = 1 << i; -+let val_bit_is_set = val & mask == mask; -+let index = if cfg!(target_endian = "big") { bit_width as usize - 1 - i } else { i }; -+self.set_bit(index + bit_offset, val_bit_is_set); -+} -+} -+} -+#[repr(C)] -+#[derive(Default)] -+pub struct __IncompleteArrayField(::core::marker::PhantomData, [T; 0]); -+impl __IncompleteArrayField { -+#[inline] -+pub const fn new() -> Self { -+__IncompleteArrayField(::core::marker::PhantomData, []) -+} -+#[inline] -+pub fn as_ptr(&self) -> *const T { -+self as *const _ as *const T -+} -+#[inline] -+pub fn as_mut_ptr(&mut self) -> *mut T { -+self as *mut _ as *mut T -+} -+#[inline] -+pub unsafe fn as_slice(&self, len: usize) -> &[T] { -+::core::slice::from_raw_parts(self.as_ptr(), len) -+} -+#[inline] -+pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { -+::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len) -+} -+} -+impl ::core::fmt::Debug for __IncompleteArrayField { -+fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -+fmt.write_str("__IncompleteArrayField") -+} -+} -+#[repr(C)] -+pub struct __BindgenUnionField(::core::marker::PhantomData); -+impl __BindgenUnionField { -+#[inline] -+pub const fn new() -> Self { -+__BindgenUnionField(::core::marker::PhantomData) -+} -+#[inline] -+pub unsafe fn as_ref(&self) -> &T { -+::core::mem::transmute(self) -+} -+#[inline] -+pub unsafe fn as_mut(&mut self) -> &mut T { -+::core::mem::transmute(self) -+} -+} -+impl ::core::default::Default for __BindgenUnionField { -+#[inline] -+fn default() -> Self { -+Self::new() -+} -+} -+impl ::core::clone::Clone for __BindgenUnionField { -+#[inline] -+fn clone(&self) -> Self { -+Self::new() -+} -+} -+impl ::core::marker::Copy for __BindgenUnionField {} -+impl ::core::fmt::Debug for __BindgenUnionField { -+fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -+fmt.write_str("__BindgenUnionField") -+} -+} -+impl ::core::hash::Hash for __BindgenUnionField { -+fn hash(&self, _state: &mut H) {} -+} -+impl ::core::cmp::PartialEq for __BindgenUnionField { -+fn eq(&self, _other: &__BindgenUnionField) -> bool { -+true -+} -+} -+impl ::core::cmp::Eq for __BindgenUnionField {} -+pub const LINUX_VERSION_CODE: u32 = 393728; -+pub const LINUX_VERSION_MAJOR: u32 = 6; -+pub const LINUX_VERSION_PATCHLEVEL: u32 = 2; -+pub const LINUX_VERSION_SUBLEVEL: u32 = 0; -+pub const AT_SYSINFO_EHDR: u32 = 33; -+pub const AT_VECTOR_SIZE_ARCH: u32 = 1; -+pub const AT_NULL: u32 = 0; -+pub const AT_IGNORE: u32 = 1; -+pub const AT_EXECFD: u32 = 2; -+pub const AT_PHDR: u32 = 3; -+pub const AT_PHENT: u32 = 4; -+pub const AT_PHNUM: u32 = 5; -+pub const AT_PAGESZ: u32 = 6; -+pub const AT_BASE: u32 = 7; -+pub const AT_FLAGS: u32 = 8; -+pub const AT_ENTRY: u32 = 9; -+pub const AT_NOTELF: u32 = 10; -+pub const AT_UID: u32 = 11; -+pub const AT_EUID: u32 = 12; -+pub const AT_GID: u32 = 13; -+pub const AT_EGID: u32 = 14; -+pub const AT_PLATFORM: u32 = 15; -+pub const AT_HWCAP: u32 = 16; -+pub const AT_CLKTCK: u32 = 17; -+pub const AT_SECURE: u32 = 23; -+pub const AT_BASE_PLATFORM: u32 = 24; -+pub const AT_RANDOM: u32 = 25; -+pub const AT_HWCAP2: u32 = 26; -+pub const AT_EXECFN: u32 = 31; -+pub const AT_MINSIGSTKSZ: u32 = 51; -+pub const __FD_SETSIZE: u32 = 1024; -+pub const _LINUX_CAPABILITY_VERSION_1: u32 = 429392688; -+pub const _LINUX_CAPABILITY_U32S_1: u32 = 1; -+pub const _LINUX_CAPABILITY_VERSION_2: u32 = 537333798; -+pub const _LINUX_CAPABILITY_U32S_2: u32 = 2; -+pub const _LINUX_CAPABILITY_VERSION_3: u32 = 537396514; -+pub const _LINUX_CAPABILITY_U32S_3: u32 = 2; -+pub const VFS_CAP_REVISION_MASK: u32 = 4278190080; -+pub const VFS_CAP_REVISION_SHIFT: u32 = 24; -+pub const VFS_CAP_FLAGS_MASK: i64 = -4278190081; -+pub const VFS_CAP_FLAGS_EFFECTIVE: u32 = 1; -+pub const VFS_CAP_REVISION_1: u32 = 16777216; -+pub const VFS_CAP_U32_1: u32 = 1; -+pub const VFS_CAP_REVISION_2: u32 = 33554432; -+pub const VFS_CAP_U32_2: u32 = 2; -+pub const VFS_CAP_REVISION_3: u32 = 50331648; -+pub const VFS_CAP_U32_3: u32 = 2; -+pub const VFS_CAP_U32: u32 = 2; -+pub const VFS_CAP_REVISION: u32 = 50331648; -+pub const _LINUX_CAPABILITY_VERSION: u32 = 429392688; -+pub const _LINUX_CAPABILITY_U32S: u32 = 1; -+pub const CAP_CHOWN: u32 = 0; -+pub const CAP_DAC_OVERRIDE: u32 = 1; -+pub const CAP_DAC_READ_SEARCH: u32 = 2; -+pub const CAP_FOWNER: u32 = 3; -+pub const CAP_FSETID: u32 = 4; -+pub const CAP_KILL: u32 = 5; -+pub const CAP_SETGID: u32 = 6; -+pub const CAP_SETUID: u32 = 7; -+pub const CAP_SETPCAP: u32 = 8; -+pub const CAP_LINUX_IMMUTABLE: u32 = 9; -+pub const CAP_NET_BIND_SERVICE: u32 = 10; -+pub const CAP_NET_BROADCAST: u32 = 11; -+pub const CAP_NET_ADMIN: u32 = 12; -+pub const CAP_NET_RAW: u32 = 13; -+pub const CAP_IPC_LOCK: u32 = 14; -+pub const CAP_IPC_OWNER: u32 = 15; -+pub const CAP_SYS_MODULE: u32 = 16; -+pub const CAP_SYS_RAWIO: u32 = 17; -+pub const CAP_SYS_CHROOT: u32 = 18; -+pub const CAP_SYS_PTRACE: u32 = 19; -+pub const CAP_SYS_PACCT: u32 = 20; -+pub const CAP_SYS_ADMIN: u32 = 21; -+pub const CAP_SYS_BOOT: u32 = 22; -+pub const CAP_SYS_NICE: u32 = 23; -+pub const CAP_SYS_RESOURCE: u32 = 24; -+pub const CAP_SYS_TIME: u32 = 25; -+pub const CAP_SYS_TTY_CONFIG: u32 = 26; -+pub const CAP_MKNOD: u32 = 27; -+pub const CAP_LEASE: u32 = 28; -+pub const CAP_AUDIT_WRITE: u32 = 29; -+pub const CAP_AUDIT_CONTROL: u32 = 30; -+pub const CAP_SETFCAP: u32 = 31; -+pub const CAP_MAC_OVERRIDE: u32 = 32; -+pub const CAP_MAC_ADMIN: u32 = 33; -+pub const CAP_SYSLOG: u32 = 34; -+pub const CAP_WAKE_ALARM: u32 = 35; -+pub const CAP_BLOCK_SUSPEND: u32 = 36; -+pub const CAP_AUDIT_READ: u32 = 37; -+pub const CAP_PERFMON: u32 = 38; -+pub const CAP_BPF: u32 = 39; -+pub const CAP_CHECKPOINT_RESTORE: u32 = 40; -+pub const CAP_LAST_CAP: u32 = 40; -+pub const O_ACCMODE: u32 = 3; -+pub const O_RDONLY: u32 = 0; -+pub const O_WRONLY: u32 = 1; -+pub const O_RDWR: u32 = 2; -+pub const O_CREAT: u32 = 64; -+pub const O_EXCL: u32 = 128; -+pub const O_NOCTTY: u32 = 256; -+pub const O_TRUNC: u32 = 512; -+pub const O_APPEND: u32 = 1024; -+pub const O_NONBLOCK: u32 = 2048; -+pub const O_DSYNC: u32 = 4096; -+pub const FASYNC: u32 = 8192; -+pub const O_DIRECT: u32 = 16384; -+pub const O_LARGEFILE: u32 = 32768; -+pub const O_DIRECTORY: u32 = 65536; -+pub const O_NOFOLLOW: u32 = 131072; -+pub const O_NOATIME: u32 = 262144; -+pub const O_CLOEXEC: u32 = 524288; -+pub const __O_SYNC: u32 = 1048576; -+pub const O_SYNC: u32 = 1052672; -+pub const O_PATH: u32 = 2097152; -+pub const __O_TMPFILE: u32 = 4194304; -+pub const O_TMPFILE: u32 = 4259840; -+pub const O_TMPFILE_MASK: u32 = 4259904; -+pub const O_NDELAY: u32 = 2048; -+pub const F_DUPFD: u32 = 0; -+pub const F_GETFD: u32 = 1; -+pub const F_SETFD: u32 = 2; -+pub const F_GETFL: u32 = 3; -+pub const F_SETFL: u32 = 4; -+pub const F_GETLK: u32 = 5; -+pub const F_SETLK: u32 = 6; -+pub const F_SETLKW: u32 = 7; -+pub const F_SETOWN: u32 = 8; -+pub const F_GETOWN: u32 = 9; -+pub const F_SETSIG: u32 = 10; -+pub const F_GETSIG: u32 = 11; -+pub const F_SETOWN_EX: u32 = 15; -+pub const F_GETOWN_EX: u32 = 16; -+pub const F_GETOWNER_UIDS: u32 = 17; -+pub const F_OFD_GETLK: u32 = 36; -+pub const F_OFD_SETLK: u32 = 37; -+pub const F_OFD_SETLKW: u32 = 38; -+pub const F_OWNER_TID: u32 = 0; -+pub const F_OWNER_PID: u32 = 1; -+pub const F_OWNER_PGRP: u32 = 2; -+pub const FD_CLOEXEC: u32 = 1; -+pub const F_RDLCK: u32 = 0; -+pub const F_WRLCK: u32 = 1; -+pub const F_UNLCK: u32 = 2; -+pub const F_EXLCK: u32 = 4; -+pub const F_SHLCK: u32 = 8; -+pub const LOCK_SH: u32 = 1; -+pub const LOCK_EX: u32 = 2; -+pub const LOCK_NB: u32 = 4; -+pub const LOCK_UN: u32 = 8; -+pub const LOCK_MAND: u32 = 32; -+pub const LOCK_READ: u32 = 64; -+pub const LOCK_WRITE: u32 = 128; -+pub const LOCK_RW: u32 = 192; -+pub const F_LINUX_SPECIFIC_BASE: u32 = 1024; -+pub const RESOLVE_NO_XDEV: u32 = 1; -+pub const RESOLVE_NO_MAGICLINKS: u32 = 2; -+pub const RESOLVE_NO_SYMLINKS: u32 = 4; -+pub const RESOLVE_BENEATH: u32 = 8; -+pub const RESOLVE_IN_ROOT: u32 = 16; -+pub const RESOLVE_CACHED: u32 = 32; -+pub const F_SETLEASE: u32 = 1024; -+pub const F_GETLEASE: u32 = 1025; -+pub const F_CANCELLK: u32 = 1029; -+pub const F_DUPFD_CLOEXEC: u32 = 1030; -+pub const F_NOTIFY: u32 = 1026; -+pub const F_SETPIPE_SZ: u32 = 1031; -+pub const F_GETPIPE_SZ: u32 = 1032; -+pub const F_ADD_SEALS: u32 = 1033; -+pub const F_GET_SEALS: u32 = 1034; -+pub const F_SEAL_SEAL: u32 = 1; -+pub const F_SEAL_SHRINK: u32 = 2; -+pub const F_SEAL_GROW: u32 = 4; -+pub const F_SEAL_WRITE: u32 = 8; -+pub const F_SEAL_FUTURE_WRITE: u32 = 16; -+pub const F_GET_RW_HINT: u32 = 1035; -+pub const F_SET_RW_HINT: u32 = 1036; -+pub const F_GET_FILE_RW_HINT: u32 = 1037; -+pub const F_SET_FILE_RW_HINT: u32 = 1038; -+pub const RWH_WRITE_LIFE_NOT_SET: u32 = 0; -+pub const RWH_WRITE_LIFE_NONE: u32 = 1; -+pub const RWH_WRITE_LIFE_SHORT: u32 = 2; -+pub const RWH_WRITE_LIFE_MEDIUM: u32 = 3; -+pub const RWH_WRITE_LIFE_LONG: u32 = 4; -+pub const RWH_WRITE_LIFE_EXTREME: u32 = 5; -+pub const RWF_WRITE_LIFE_NOT_SET: u32 = 0; -+pub const DN_ACCESS: u32 = 1; -+pub const DN_MODIFY: u32 = 2; -+pub const DN_CREATE: u32 = 4; -+pub const DN_DELETE: u32 = 8; -+pub const DN_RENAME: u32 = 16; -+pub const DN_ATTRIB: u32 = 32; -+pub const DN_MULTISHOT: u32 = 2147483648; -+pub const AT_FDCWD: i32 = -100; -+pub const AT_SYMLINK_NOFOLLOW: u32 = 256; -+pub const AT_EACCESS: u32 = 512; -+pub const AT_REMOVEDIR: u32 = 512; -+pub const AT_SYMLINK_FOLLOW: u32 = 1024; -+pub const AT_NO_AUTOMOUNT: u32 = 2048; -+pub const AT_EMPTY_PATH: u32 = 4096; -+pub const AT_STATX_SYNC_TYPE: u32 = 24576; -+pub const AT_STATX_SYNC_AS_STAT: u32 = 0; -+pub const AT_STATX_FORCE_SYNC: u32 = 8192; -+pub const AT_STATX_DONT_SYNC: u32 = 16384; -+pub const AT_RECURSIVE: u32 = 32768; -+pub const EPOLL_CLOEXEC: u32 = 524288; -+pub const EPOLL_CTL_ADD: u32 = 1; -+pub const EPOLL_CTL_DEL: u32 = 2; -+pub const EPOLL_CTL_MOD: u32 = 3; -+pub const POSIX_FADV_NORMAL: u32 = 0; -+pub const POSIX_FADV_RANDOM: u32 = 1; -+pub const POSIX_FADV_SEQUENTIAL: u32 = 2; -+pub const POSIX_FADV_WILLNEED: u32 = 3; -+pub const POSIX_FADV_DONTNEED: u32 = 4; -+pub const POSIX_FADV_NOREUSE: u32 = 5; -+pub const FALLOC_FL_KEEP_SIZE: u32 = 1; -+pub const FALLOC_FL_PUNCH_HOLE: u32 = 2; -+pub const FALLOC_FL_NO_HIDE_STALE: u32 = 4; -+pub const FALLOC_FL_COLLAPSE_RANGE: u32 = 8; -+pub const FALLOC_FL_ZERO_RANGE: u32 = 16; -+pub const FALLOC_FL_INSERT_RANGE: u32 = 32; -+pub const FALLOC_FL_UNSHARE_RANGE: u32 = 64; -+pub const NR_OPEN: u32 = 1024; -+pub const NGROUPS_MAX: u32 = 65536; -+pub const ARG_MAX: u32 = 131072; -+pub const LINK_MAX: u32 = 127; -+pub const MAX_CANON: u32 = 255; -+pub const MAX_INPUT: u32 = 255; -+pub const NAME_MAX: u32 = 255; -+pub const PATH_MAX: u32 = 4096; -+pub const PIPE_BUF: u32 = 4096; -+pub const XATTR_NAME_MAX: u32 = 255; -+pub const XATTR_SIZE_MAX: u32 = 65536; -+pub const XATTR_LIST_MAX: u32 = 65536; -+pub const RTSIG_MAX: u32 = 32; -+pub const _IOC_NRBITS: u32 = 8; -+pub const _IOC_TYPEBITS: u32 = 8; -+pub const _IOC_SIZEBITS: u32 = 14; -+pub const _IOC_DIRBITS: u32 = 2; -+pub const _IOC_NRMASK: u32 = 255; -+pub const _IOC_TYPEMASK: u32 = 255; -+pub const _IOC_SIZEMASK: u32 = 16383; -+pub const _IOC_DIRMASK: u32 = 3; -+pub const _IOC_NRSHIFT: u32 = 0; -+pub const _IOC_TYPESHIFT: u32 = 8; -+pub const _IOC_SIZESHIFT: u32 = 16; -+pub const _IOC_DIRSHIFT: u32 = 30; -+pub const _IOC_NONE: u32 = 0; -+pub const _IOC_WRITE: u32 = 1; -+pub const _IOC_READ: u32 = 2; -+pub const IOC_IN: u32 = 1073741824; -+pub const IOC_OUT: u32 = 2147483648; -+pub const IOC_INOUT: u32 = 3221225472; -+pub const IOCSIZE_MASK: u32 = 1073676288; -+pub const IOCSIZE_SHIFT: u32 = 16; -+pub const FSCRYPT_POLICY_FLAGS_PAD_4: u32 = 0; -+pub const FSCRYPT_POLICY_FLAGS_PAD_8: u32 = 1; -+pub const FSCRYPT_POLICY_FLAGS_PAD_16: u32 = 2; -+pub const FSCRYPT_POLICY_FLAGS_PAD_32: u32 = 3; -+pub const FSCRYPT_POLICY_FLAGS_PAD_MASK: u32 = 3; -+pub const FSCRYPT_POLICY_FLAG_DIRECT_KEY: u32 = 4; -+pub const FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64: u32 = 8; -+pub const FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32: u32 = 16; -+pub const FSCRYPT_MODE_AES_256_XTS: u32 = 1; -+pub const FSCRYPT_MODE_AES_256_CTS: u32 = 4; -+pub const FSCRYPT_MODE_AES_128_CBC: u32 = 5; -+pub const FSCRYPT_MODE_AES_128_CTS: u32 = 6; -+pub const FSCRYPT_MODE_SM4_XTS: u32 = 7; -+pub const FSCRYPT_MODE_SM4_CTS: u32 = 8; -+pub const FSCRYPT_MODE_ADIANTUM: u32 = 9; -+pub const FSCRYPT_MODE_AES_256_HCTR2: u32 = 10; -+pub const FSCRYPT_POLICY_V1: u32 = 0; -+pub const FSCRYPT_KEY_DESCRIPTOR_SIZE: u32 = 8; -+pub const FSCRYPT_KEY_DESC_PREFIX: &[u8; 9usize] = b"fscrypt:\0"; -+pub const FSCRYPT_KEY_DESC_PREFIX_SIZE: u32 = 8; -+pub const FSCRYPT_MAX_KEY_SIZE: u32 = 64; -+pub const FSCRYPT_POLICY_V2: u32 = 2; -+pub const FSCRYPT_KEY_IDENTIFIER_SIZE: u32 = 16; -+pub const FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR: u32 = 1; -+pub const FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER: u32 = 2; -+pub const FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY: u32 = 1; -+pub const FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS: u32 = 2; -+pub const FSCRYPT_KEY_STATUS_ABSENT: u32 = 1; -+pub const FSCRYPT_KEY_STATUS_PRESENT: u32 = 2; -+pub const FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED: u32 = 3; -+pub const FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF: u32 = 1; -+pub const FS_KEY_DESCRIPTOR_SIZE: u32 = 8; -+pub const FS_POLICY_FLAGS_PAD_4: u32 = 0; -+pub const FS_POLICY_FLAGS_PAD_8: u32 = 1; -+pub const FS_POLICY_FLAGS_PAD_16: u32 = 2; -+pub const FS_POLICY_FLAGS_PAD_32: u32 = 3; -+pub const FS_POLICY_FLAGS_PAD_MASK: u32 = 3; -+pub const FS_POLICY_FLAG_DIRECT_KEY: u32 = 4; -+pub const FS_POLICY_FLAGS_VALID: u32 = 7; -+pub const FS_ENCRYPTION_MODE_INVALID: u32 = 0; -+pub const FS_ENCRYPTION_MODE_AES_256_XTS: u32 = 1; -+pub const FS_ENCRYPTION_MODE_AES_256_GCM: u32 = 2; -+pub const FS_ENCRYPTION_MODE_AES_256_CBC: u32 = 3; -+pub const FS_ENCRYPTION_MODE_AES_256_CTS: u32 = 4; -+pub const FS_ENCRYPTION_MODE_AES_128_CBC: u32 = 5; -+pub const FS_ENCRYPTION_MODE_AES_128_CTS: u32 = 6; -+pub const FS_ENCRYPTION_MODE_ADIANTUM: u32 = 9; -+pub const FS_KEY_DESC_PREFIX: &[u8; 9usize] = b"fscrypt:\0"; -+pub const FS_KEY_DESC_PREFIX_SIZE: u32 = 8; -+pub const FS_MAX_KEY_SIZE: u32 = 64; -+pub const MS_RDONLY: u32 = 1; -+pub const MS_NOSUID: u32 = 2; -+pub const MS_NODEV: u32 = 4; -+pub const MS_NOEXEC: u32 = 8; -+pub const MS_SYNCHRONOUS: u32 = 16; -+pub const MS_REMOUNT: u32 = 32; -+pub const MS_MANDLOCK: u32 = 64; -+pub const MS_DIRSYNC: u32 = 128; -+pub const MS_NOSYMFOLLOW: u32 = 256; -+pub const MS_NOATIME: u32 = 1024; -+pub const MS_NODIRATIME: u32 = 2048; -+pub const MS_BIND: u32 = 4096; -+pub const MS_MOVE: u32 = 8192; -+pub const MS_REC: u32 = 16384; -+pub const MS_VERBOSE: u32 = 32768; -+pub const MS_SILENT: u32 = 32768; -+pub const MS_POSIXACL: u32 = 65536; -+pub const MS_UNBINDABLE: u32 = 131072; -+pub const MS_PRIVATE: u32 = 262144; -+pub const MS_SLAVE: u32 = 524288; -+pub const MS_SHARED: u32 = 1048576; -+pub const MS_RELATIME: u32 = 2097152; -+pub const MS_KERNMOUNT: u32 = 4194304; -+pub const MS_I_VERSION: u32 = 8388608; -+pub const MS_STRICTATIME: u32 = 16777216; -+pub const MS_LAZYTIME: u32 = 33554432; -+pub const MS_SUBMOUNT: u32 = 67108864; -+pub const MS_NOREMOTELOCK: u32 = 134217728; -+pub const MS_NOSEC: u32 = 268435456; -+pub const MS_BORN: u32 = 536870912; -+pub const MS_ACTIVE: u32 = 1073741824; -+pub const MS_NOUSER: u32 = 2147483648; -+pub const MS_RMT_MASK: u32 = 41943121; -+pub const MS_MGC_VAL: u32 = 3236757504; -+pub const MS_MGC_MSK: u32 = 4294901760; -+pub const OPEN_TREE_CLONE: u32 = 1; -+pub const OPEN_TREE_CLOEXEC: u32 = 524288; -+pub const MOVE_MOUNT_F_SYMLINKS: u32 = 1; -+pub const MOVE_MOUNT_F_AUTOMOUNTS: u32 = 2; -+pub const MOVE_MOUNT_F_EMPTY_PATH: u32 = 4; -+pub const MOVE_MOUNT_T_SYMLINKS: u32 = 16; -+pub const MOVE_MOUNT_T_AUTOMOUNTS: u32 = 32; -+pub const MOVE_MOUNT_T_EMPTY_PATH: u32 = 64; -+pub const MOVE_MOUNT_SET_GROUP: u32 = 256; -+pub const MOVE_MOUNT__MASK: u32 = 375; -+pub const FSOPEN_CLOEXEC: u32 = 1; -+pub const FSPICK_CLOEXEC: u32 = 1; -+pub const FSPICK_SYMLINK_NOFOLLOW: u32 = 2; -+pub const FSPICK_NO_AUTOMOUNT: u32 = 4; -+pub const FSPICK_EMPTY_PATH: u32 = 8; -+pub const FSMOUNT_CLOEXEC: u32 = 1; -+pub const MOUNT_ATTR_RDONLY: u32 = 1; -+pub const MOUNT_ATTR_NOSUID: u32 = 2; -+pub const MOUNT_ATTR_NODEV: u32 = 4; -+pub const MOUNT_ATTR_NOEXEC: u32 = 8; -+pub const MOUNT_ATTR__ATIME: u32 = 112; -+pub const MOUNT_ATTR_RELATIME: u32 = 0; -+pub const MOUNT_ATTR_NOATIME: u32 = 16; -+pub const MOUNT_ATTR_STRICTATIME: u32 = 32; -+pub const MOUNT_ATTR_NODIRATIME: u32 = 128; -+pub const MOUNT_ATTR_IDMAP: u32 = 1048576; -+pub const MOUNT_ATTR_NOSYMFOLLOW: u32 = 2097152; -+pub const MOUNT_ATTR_SIZE_VER0: u32 = 32; -+pub const INR_OPEN_CUR: u32 = 1024; -+pub const INR_OPEN_MAX: u32 = 4096; -+pub const BLOCK_SIZE_BITS: u32 = 10; -+pub const BLOCK_SIZE: u32 = 1024; -+pub const SEEK_SET: u32 = 0; -+pub const SEEK_CUR: u32 = 1; -+pub const SEEK_END: u32 = 2; -+pub const SEEK_DATA: u32 = 3; -+pub const SEEK_HOLE: u32 = 4; -+pub const SEEK_MAX: u32 = 4; -+pub const RENAME_NOREPLACE: u32 = 1; -+pub const RENAME_EXCHANGE: u32 = 2; -+pub const RENAME_WHITEOUT: u32 = 4; -+pub const FILE_DEDUPE_RANGE_SAME: u32 = 0; -+pub const FILE_DEDUPE_RANGE_DIFFERS: u32 = 1; -+pub const NR_FILE: u32 = 8192; -+pub const FS_XFLAG_REALTIME: u32 = 1; -+pub const FS_XFLAG_PREALLOC: u32 = 2; -+pub const FS_XFLAG_IMMUTABLE: u32 = 8; -+pub const FS_XFLAG_APPEND: u32 = 16; -+pub const FS_XFLAG_SYNC: u32 = 32; -+pub const FS_XFLAG_NOATIME: u32 = 64; -+pub const FS_XFLAG_NODUMP: u32 = 128; -+pub const FS_XFLAG_RTINHERIT: u32 = 256; -+pub const FS_XFLAG_PROJINHERIT: u32 = 512; -+pub const FS_XFLAG_NOSYMLINKS: u32 = 1024; -+pub const FS_XFLAG_EXTSIZE: u32 = 2048; -+pub const FS_XFLAG_EXTSZINHERIT: u32 = 4096; -+pub const FS_XFLAG_NODEFRAG: u32 = 8192; -+pub const FS_XFLAG_FILESTREAM: u32 = 16384; -+pub const FS_XFLAG_DAX: u32 = 32768; -+pub const FS_XFLAG_COWEXTSIZE: u32 = 65536; -+pub const FS_XFLAG_HASATTR: u32 = 2147483648; -+pub const BMAP_IOCTL: u32 = 1; -+pub const FSLABEL_MAX: u32 = 256; -+pub const FS_SECRM_FL: u32 = 1; -+pub const FS_UNRM_FL: u32 = 2; -+pub const FS_COMPR_FL: u32 = 4; -+pub const FS_SYNC_FL: u32 = 8; -+pub const FS_IMMUTABLE_FL: u32 = 16; -+pub const FS_APPEND_FL: u32 = 32; -+pub const FS_NODUMP_FL: u32 = 64; -+pub const FS_NOATIME_FL: u32 = 128; -+pub const FS_DIRTY_FL: u32 = 256; -+pub const FS_COMPRBLK_FL: u32 = 512; -+pub const FS_NOCOMP_FL: u32 = 1024; -+pub const FS_ENCRYPT_FL: u32 = 2048; -+pub const FS_BTREE_FL: u32 = 4096; -+pub const FS_INDEX_FL: u32 = 4096; -+pub const FS_IMAGIC_FL: u32 = 8192; -+pub const FS_JOURNAL_DATA_FL: u32 = 16384; -+pub const FS_NOTAIL_FL: u32 = 32768; -+pub const FS_DIRSYNC_FL: u32 = 65536; -+pub const FS_TOPDIR_FL: u32 = 131072; -+pub const FS_HUGE_FILE_FL: u32 = 262144; -+pub const FS_EXTENT_FL: u32 = 524288; -+pub const FS_VERITY_FL: u32 = 1048576; -+pub const FS_EA_INODE_FL: u32 = 2097152; -+pub const FS_EOFBLOCKS_FL: u32 = 4194304; -+pub const FS_NOCOW_FL: u32 = 8388608; -+pub const FS_DAX_FL: u32 = 33554432; -+pub const FS_INLINE_DATA_FL: u32 = 268435456; -+pub const FS_PROJINHERIT_FL: u32 = 536870912; -+pub const FS_CASEFOLD_FL: u32 = 1073741824; -+pub const FS_RESERVED_FL: u32 = 2147483648; -+pub const FS_FL_USER_VISIBLE: u32 = 253951; -+pub const FS_FL_USER_MODIFIABLE: u32 = 229631; -+pub const SYNC_FILE_RANGE_WAIT_BEFORE: u32 = 1; -+pub const SYNC_FILE_RANGE_WRITE: u32 = 2; -+pub const SYNC_FILE_RANGE_WAIT_AFTER: u32 = 4; -+pub const SYNC_FILE_RANGE_WRITE_AND_WAIT: u32 = 7; -+pub const FUTEX_WAIT: u32 = 0; -+pub const FUTEX_WAKE: u32 = 1; -+pub const FUTEX_FD: u32 = 2; -+pub const FUTEX_REQUEUE: u32 = 3; -+pub const FUTEX_CMP_REQUEUE: u32 = 4; -+pub const FUTEX_WAKE_OP: u32 = 5; -+pub const FUTEX_LOCK_PI: u32 = 6; -+pub const FUTEX_UNLOCK_PI: u32 = 7; -+pub const FUTEX_TRYLOCK_PI: u32 = 8; -+pub const FUTEX_WAIT_BITSET: u32 = 9; -+pub const FUTEX_WAKE_BITSET: u32 = 10; -+pub const FUTEX_WAIT_REQUEUE_PI: u32 = 11; -+pub const FUTEX_CMP_REQUEUE_PI: u32 = 12; -+pub const FUTEX_LOCK_PI2: u32 = 13; -+pub const FUTEX_PRIVATE_FLAG: u32 = 128; -+pub const FUTEX_CLOCK_REALTIME: u32 = 256; -+pub const FUTEX_CMD_MASK: i32 = -385; -+pub const FUTEX_WAIT_PRIVATE: u32 = 128; -+pub const FUTEX_WAKE_PRIVATE: u32 = 129; -+pub const FUTEX_REQUEUE_PRIVATE: u32 = 131; -+pub const FUTEX_CMP_REQUEUE_PRIVATE: u32 = 132; -+pub const FUTEX_WAKE_OP_PRIVATE: u32 = 133; -+pub const FUTEX_LOCK_PI_PRIVATE: u32 = 134; -+pub const FUTEX_LOCK_PI2_PRIVATE: u32 = 141; -+pub const FUTEX_UNLOCK_PI_PRIVATE: u32 = 135; -+pub const FUTEX_TRYLOCK_PI_PRIVATE: u32 = 136; -+pub const FUTEX_WAIT_BITSET_PRIVATE: u32 = 137; -+pub const FUTEX_WAKE_BITSET_PRIVATE: u32 = 138; -+pub const FUTEX_WAIT_REQUEUE_PI_PRIVATE: u32 = 139; -+pub const FUTEX_CMP_REQUEUE_PI_PRIVATE: u32 = 140; -+pub const FUTEX_32: u32 = 2; -+pub const FUTEX_WAITV_MAX: u32 = 128; -+pub const FUTEX_WAITERS: u32 = 2147483648; -+pub const FUTEX_OWNER_DIED: u32 = 1073741824; -+pub const FUTEX_TID_MASK: u32 = 1073741823; -+pub const ROBUST_LIST_LIMIT: u32 = 2048; -+pub const FUTEX_BITSET_MATCH_ANY: u32 = 4294967295; -+pub const FUTEX_OP_SET: u32 = 0; -+pub const FUTEX_OP_ADD: u32 = 1; -+pub const FUTEX_OP_OR: u32 = 2; -+pub const FUTEX_OP_ANDN: u32 = 3; -+pub const FUTEX_OP_XOR: u32 = 4; -+pub const FUTEX_OP_OPARG_SHIFT: u32 = 8; -+pub const FUTEX_OP_CMP_EQ: u32 = 0; -+pub const FUTEX_OP_CMP_NE: u32 = 1; -+pub const FUTEX_OP_CMP_LT: u32 = 2; -+pub const FUTEX_OP_CMP_LE: u32 = 3; -+pub const FUTEX_OP_CMP_GT: u32 = 4; -+pub const FUTEX_OP_CMP_GE: u32 = 5; -+pub const __UAPI_DEF_IF_IFCONF: u32 = 1; -+pub const __UAPI_DEF_IF_IFMAP: u32 = 1; -+pub const __UAPI_DEF_IF_IFNAMSIZ: u32 = 1; -+pub const __UAPI_DEF_IF_IFREQ: u32 = 1; -+pub const __UAPI_DEF_IF_NET_DEVICE_FLAGS: u32 = 1; -+pub const __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO: u32 = 1; -+pub const __UAPI_DEF_IN_ADDR: u32 = 1; -+pub const __UAPI_DEF_IN_IPPROTO: u32 = 1; -+pub const __UAPI_DEF_IN_PKTINFO: u32 = 1; -+pub const __UAPI_DEF_IP_MREQ: u32 = 1; -+pub const __UAPI_DEF_SOCKADDR_IN: u32 = 1; -+pub const __UAPI_DEF_IN_CLASS: u32 = 1; -+pub const __UAPI_DEF_IN6_ADDR: u32 = 1; -+pub const __UAPI_DEF_IN6_ADDR_ALT: u32 = 1; -+pub const __UAPI_DEF_SOCKADDR_IN6: u32 = 1; -+pub const __UAPI_DEF_IPV6_MREQ: u32 = 1; -+pub const __UAPI_DEF_IPPROTO_V6: u32 = 1; -+pub const __UAPI_DEF_IPV6_OPTIONS: u32 = 1; -+pub const __UAPI_DEF_IN6_PKTINFO: u32 = 1; -+pub const __UAPI_DEF_IP6_MTUINFO: u32 = 1; -+pub const __UAPI_DEF_SOCKADDR_IPX: u32 = 1; -+pub const __UAPI_DEF_IPX_ROUTE_DEFINITION: u32 = 1; -+pub const __UAPI_DEF_IPX_INTERFACE_DEFINITION: u32 = 1; -+pub const __UAPI_DEF_IPX_CONFIG_DATA: u32 = 1; -+pub const __UAPI_DEF_IPX_ROUTE_DEF: u32 = 1; -+pub const __UAPI_DEF_XATTR: u32 = 1; -+pub const _K_SS_MAXSIZE: u32 = 128; -+pub const SOCK_SNDBUF_LOCK: u32 = 1; -+pub const SOCK_RCVBUF_LOCK: u32 = 2; -+pub const SOCK_BUF_LOCK_MASK: u32 = 3; -+pub const SOCK_TXREHASH_DEFAULT: u32 = 255; -+pub const SOCK_TXREHASH_DISABLED: u32 = 0; -+pub const SOCK_TXREHASH_ENABLED: u32 = 1; -+pub const IP_TOS: u32 = 1; -+pub const IP_TTL: u32 = 2; -+pub const IP_HDRINCL: u32 = 3; -+pub const IP_OPTIONS: u32 = 4; -+pub const IP_ROUTER_ALERT: u32 = 5; -+pub const IP_RECVOPTS: u32 = 6; -+pub const IP_RETOPTS: u32 = 7; -+pub const IP_PKTINFO: u32 = 8; -+pub const IP_PKTOPTIONS: u32 = 9; -+pub const IP_MTU_DISCOVER: u32 = 10; -+pub const IP_RECVERR: u32 = 11; -+pub const IP_RECVTTL: u32 = 12; -+pub const IP_RECVTOS: u32 = 13; -+pub const IP_MTU: u32 = 14; -+pub const IP_FREEBIND: u32 = 15; -+pub const IP_IPSEC_POLICY: u32 = 16; -+pub const IP_XFRM_POLICY: u32 = 17; -+pub const IP_PASSSEC: u32 = 18; -+pub const IP_TRANSPARENT: u32 = 19; -+pub const IP_RECVRETOPTS: u32 = 7; -+pub const IP_ORIGDSTADDR: u32 = 20; -+pub const IP_RECVORIGDSTADDR: u32 = 20; -+pub const IP_MINTTL: u32 = 21; -+pub const IP_NODEFRAG: u32 = 22; -+pub const IP_CHECKSUM: u32 = 23; -+pub const IP_BIND_ADDRESS_NO_PORT: u32 = 24; -+pub const IP_RECVFRAGSIZE: u32 = 25; -+pub const IP_RECVERR_RFC4884: u32 = 26; -+pub const IP_PMTUDISC_DONT: u32 = 0; -+pub const IP_PMTUDISC_WANT: u32 = 1; -+pub const IP_PMTUDISC_DO: u32 = 2; -+pub const IP_PMTUDISC_PROBE: u32 = 3; -+pub const IP_PMTUDISC_INTERFACE: u32 = 4; -+pub const IP_PMTUDISC_OMIT: u32 = 5; -+pub const IP_MULTICAST_IF: u32 = 32; -+pub const IP_MULTICAST_TTL: u32 = 33; -+pub const IP_MULTICAST_LOOP: u32 = 34; -+pub const IP_ADD_MEMBERSHIP: u32 = 35; -+pub const IP_DROP_MEMBERSHIP: u32 = 36; -+pub const IP_UNBLOCK_SOURCE: u32 = 37; -+pub const IP_BLOCK_SOURCE: u32 = 38; -+pub const IP_ADD_SOURCE_MEMBERSHIP: u32 = 39; -+pub const IP_DROP_SOURCE_MEMBERSHIP: u32 = 40; -+pub const IP_MSFILTER: u32 = 41; -+pub const MCAST_JOIN_GROUP: u32 = 42; -+pub const MCAST_BLOCK_SOURCE: u32 = 43; -+pub const MCAST_UNBLOCK_SOURCE: u32 = 44; -+pub const MCAST_LEAVE_GROUP: u32 = 45; -+pub const MCAST_JOIN_SOURCE_GROUP: u32 = 46; -+pub const MCAST_LEAVE_SOURCE_GROUP: u32 = 47; -+pub const MCAST_MSFILTER: u32 = 48; -+pub const IP_MULTICAST_ALL: u32 = 49; -+pub const IP_UNICAST_IF: u32 = 50; -+pub const MCAST_EXCLUDE: u32 = 0; -+pub const MCAST_INCLUDE: u32 = 1; -+pub const IP_DEFAULT_MULTICAST_TTL: u32 = 1; -+pub const IP_DEFAULT_MULTICAST_LOOP: u32 = 1; -+pub const __SOCK_SIZE__: u32 = 16; -+pub const IN_CLASSA_NET: u32 = 4278190080; -+pub const IN_CLASSA_NSHIFT: u32 = 24; -+pub const IN_CLASSA_HOST: u32 = 16777215; -+pub const IN_CLASSA_MAX: u32 = 128; -+pub const IN_CLASSB_NET: u32 = 4294901760; -+pub const IN_CLASSB_NSHIFT: u32 = 16; -+pub const IN_CLASSB_HOST: u32 = 65535; -+pub const IN_CLASSB_MAX: u32 = 65536; -+pub const IN_CLASSC_NET: u32 = 4294967040; -+pub const IN_CLASSC_NSHIFT: u32 = 8; -+pub const IN_CLASSC_HOST: u32 = 255; -+pub const IN_MULTICAST_NET: u32 = 3758096384; -+pub const IN_CLASSE_NET: u32 = 4294967295; -+pub const IN_CLASSE_NSHIFT: u32 = 0; -+pub const IN_LOOPBACKNET: u32 = 127; -+pub const INADDR_LOOPBACK: u32 = 2130706433; -+pub const INADDR_UNSPEC_GROUP: u32 = 3758096384; -+pub const INADDR_ALLHOSTS_GROUP: u32 = 3758096385; -+pub const INADDR_ALLRTRS_GROUP: u32 = 3758096386; -+pub const INADDR_ALLSNOOPERS_GROUP: u32 = 3758096490; -+pub const INADDR_MAX_LOCAL_GROUP: u32 = 3758096639; -+pub const __LITTLE_ENDIAN: u32 = 1234; -+pub const IN_ACCESS: u32 = 1; -+pub const IN_MODIFY: u32 = 2; -+pub const IN_ATTRIB: u32 = 4; -+pub const IN_CLOSE_WRITE: u32 = 8; -+pub const IN_CLOSE_NOWRITE: u32 = 16; -+pub const IN_OPEN: u32 = 32; -+pub const IN_MOVED_FROM: u32 = 64; -+pub const IN_MOVED_TO: u32 = 128; -+pub const IN_CREATE: u32 = 256; -+pub const IN_DELETE: u32 = 512; -+pub const IN_DELETE_SELF: u32 = 1024; -+pub const IN_MOVE_SELF: u32 = 2048; -+pub const IN_UNMOUNT: u32 = 8192; -+pub const IN_Q_OVERFLOW: u32 = 16384; -+pub const IN_IGNORED: u32 = 32768; -+pub const IN_CLOSE: u32 = 24; -+pub const IN_MOVE: u32 = 192; -+pub const IN_ONLYDIR: u32 = 16777216; -+pub const IN_DONT_FOLLOW: u32 = 33554432; -+pub const IN_EXCL_UNLINK: u32 = 67108864; -+pub const IN_MASK_CREATE: u32 = 268435456; -+pub const IN_MASK_ADD: u32 = 536870912; -+pub const IN_ISDIR: u32 = 1073741824; -+pub const IN_ONESHOT: u32 = 2147483648; -+pub const IN_ALL_EVENTS: u32 = 4095; -+pub const IN_CLOEXEC: u32 = 524288; -+pub const IN_NONBLOCK: u32 = 2048; -+pub const IPTOS_TOS_MASK: u32 = 30; -+pub const IPTOS_LOWDELAY: u32 = 16; -+pub const IPTOS_THROUGHPUT: u32 = 8; -+pub const IPTOS_RELIABILITY: u32 = 4; -+pub const IPTOS_MINCOST: u32 = 2; -+pub const IPTOS_PREC_MASK: u32 = 224; -+pub const IPTOS_PREC_NETCONTROL: u32 = 224; -+pub const IPTOS_PREC_INTERNETCONTROL: u32 = 192; -+pub const IPTOS_PREC_CRITIC_ECP: u32 = 160; -+pub const IPTOS_PREC_FLASHOVERRIDE: u32 = 128; -+pub const IPTOS_PREC_FLASH: u32 = 96; -+pub const IPTOS_PREC_IMMEDIATE: u32 = 64; -+pub const IPTOS_PREC_PRIORITY: u32 = 32; -+pub const IPTOS_PREC_ROUTINE: u32 = 0; -+pub const IPOPT_COPY: u32 = 128; -+pub const IPOPT_CLASS_MASK: u32 = 96; -+pub const IPOPT_NUMBER_MASK: u32 = 31; -+pub const IPOPT_CONTROL: u32 = 0; -+pub const IPOPT_RESERVED1: u32 = 32; -+pub const IPOPT_MEASUREMENT: u32 = 64; -+pub const IPOPT_RESERVED2: u32 = 96; -+pub const IPOPT_END: u32 = 0; -+pub const IPOPT_NOOP: u32 = 1; -+pub const IPOPT_SEC: u32 = 130; -+pub const IPOPT_LSRR: u32 = 131; -+pub const IPOPT_TIMESTAMP: u32 = 68; -+pub const IPOPT_CIPSO: u32 = 134; -+pub const IPOPT_RR: u32 = 7; -+pub const IPOPT_SID: u32 = 136; -+pub const IPOPT_SSRR: u32 = 137; -+pub const IPOPT_RA: u32 = 148; -+pub const IPVERSION: u32 = 4; -+pub const MAXTTL: u32 = 255; -+pub const IPDEFTTL: u32 = 64; -+pub const IPOPT_OPTVAL: u32 = 0; -+pub const IPOPT_OLEN: u32 = 1; -+pub const IPOPT_OFFSET: u32 = 2; -+pub const IPOPT_MINOFF: u32 = 4; -+pub const MAX_IPOPTLEN: u32 = 40; -+pub const IPOPT_NOP: u32 = 1; -+pub const IPOPT_EOL: u32 = 0; -+pub const IPOPT_TS: u32 = 68; -+pub const IPOPT_TS_TSONLY: u32 = 0; -+pub const IPOPT_TS_TSANDADDR: u32 = 1; -+pub const IPOPT_TS_PRESPEC: u32 = 3; -+pub const IPV4_BEET_PHMAXLEN: u32 = 8; -+pub const IPV6_FL_A_GET: u32 = 0; -+pub const IPV6_FL_A_PUT: u32 = 1; -+pub const IPV6_FL_A_RENEW: u32 = 2; -+pub const IPV6_FL_F_CREATE: u32 = 1; -+pub const IPV6_FL_F_EXCL: u32 = 2; -+pub const IPV6_FL_F_REFLECT: u32 = 4; -+pub const IPV6_FL_F_REMOTE: u32 = 8; -+pub const IPV6_FL_S_NONE: u32 = 0; -+pub const IPV6_FL_S_EXCL: u32 = 1; -+pub const IPV6_FL_S_PROCESS: u32 = 2; -+pub const IPV6_FL_S_USER: u32 = 3; -+pub const IPV6_FL_S_ANY: u32 = 255; -+pub const IPV6_FLOWINFO_FLOWLABEL: u32 = 1048575; -+pub const IPV6_FLOWINFO_PRIORITY: u32 = 267386880; -+pub const IPV6_PRIORITY_UNCHARACTERIZED: u32 = 0; -+pub const IPV6_PRIORITY_FILLER: u32 = 256; -+pub const IPV6_PRIORITY_UNATTENDED: u32 = 512; -+pub const IPV6_PRIORITY_RESERVED1: u32 = 768; -+pub const IPV6_PRIORITY_BULK: u32 = 1024; -+pub const IPV6_PRIORITY_RESERVED2: u32 = 1280; -+pub const IPV6_PRIORITY_INTERACTIVE: u32 = 1536; -+pub const IPV6_PRIORITY_CONTROL: u32 = 1792; -+pub const IPV6_PRIORITY_8: u32 = 2048; -+pub const IPV6_PRIORITY_9: u32 = 2304; -+pub const IPV6_PRIORITY_10: u32 = 2560; -+pub const IPV6_PRIORITY_11: u32 = 2816; -+pub const IPV6_PRIORITY_12: u32 = 3072; -+pub const IPV6_PRIORITY_13: u32 = 3328; -+pub const IPV6_PRIORITY_14: u32 = 3584; -+pub const IPV6_PRIORITY_15: u32 = 3840; -+pub const IPPROTO_HOPOPTS: u32 = 0; -+pub const IPPROTO_ROUTING: u32 = 43; -+pub const IPPROTO_FRAGMENT: u32 = 44; -+pub const IPPROTO_ICMPV6: u32 = 58; -+pub const IPPROTO_NONE: u32 = 59; -+pub const IPPROTO_DSTOPTS: u32 = 60; -+pub const IPPROTO_MH: u32 = 135; -+pub const IPV6_TLV_PAD1: u32 = 0; -+pub const IPV6_TLV_PADN: u32 = 1; -+pub const IPV6_TLV_ROUTERALERT: u32 = 5; -+pub const IPV6_TLV_CALIPSO: u32 = 7; -+pub const IPV6_TLV_IOAM: u32 = 49; -+pub const IPV6_TLV_JUMBO: u32 = 194; -+pub const IPV6_TLV_HAO: u32 = 201; -+pub const IPV6_ADDRFORM: u32 = 1; -+pub const IPV6_2292PKTINFO: u32 = 2; -+pub const IPV6_2292HOPOPTS: u32 = 3; -+pub const IPV6_2292DSTOPTS: u32 = 4; -+pub const IPV6_2292RTHDR: u32 = 5; -+pub const IPV6_2292PKTOPTIONS: u32 = 6; -+pub const IPV6_CHECKSUM: u32 = 7; -+pub const IPV6_2292HOPLIMIT: u32 = 8; -+pub const IPV6_NEXTHOP: u32 = 9; -+pub const IPV6_AUTHHDR: u32 = 10; -+pub const IPV6_FLOWINFO: u32 = 11; -+pub const IPV6_UNICAST_HOPS: u32 = 16; -+pub const IPV6_MULTICAST_IF: u32 = 17; -+pub const IPV6_MULTICAST_HOPS: u32 = 18; -+pub const IPV6_MULTICAST_LOOP: u32 = 19; -+pub const IPV6_ADD_MEMBERSHIP: u32 = 20; -+pub const IPV6_DROP_MEMBERSHIP: u32 = 21; -+pub const IPV6_ROUTER_ALERT: u32 = 22; -+pub const IPV6_MTU_DISCOVER: u32 = 23; -+pub const IPV6_MTU: u32 = 24; -+pub const IPV6_RECVERR: u32 = 25; -+pub const IPV6_V6ONLY: u32 = 26; -+pub const IPV6_JOIN_ANYCAST: u32 = 27; -+pub const IPV6_LEAVE_ANYCAST: u32 = 28; -+pub const IPV6_MULTICAST_ALL: u32 = 29; -+pub const IPV6_ROUTER_ALERT_ISOLATE: u32 = 30; -+pub const IPV6_RECVERR_RFC4884: u32 = 31; -+pub const IPV6_PMTUDISC_DONT: u32 = 0; -+pub const IPV6_PMTUDISC_WANT: u32 = 1; -+pub const IPV6_PMTUDISC_DO: u32 = 2; -+pub const IPV6_PMTUDISC_PROBE: u32 = 3; -+pub const IPV6_PMTUDISC_INTERFACE: u32 = 4; -+pub const IPV6_PMTUDISC_OMIT: u32 = 5; -+pub const IPV6_FLOWLABEL_MGR: u32 = 32; -+pub const IPV6_FLOWINFO_SEND: u32 = 33; -+pub const IPV6_IPSEC_POLICY: u32 = 34; -+pub const IPV6_XFRM_POLICY: u32 = 35; -+pub const IPV6_HDRINCL: u32 = 36; -+pub const IPV6_RECVPKTINFO: u32 = 49; -+pub const IPV6_PKTINFO: u32 = 50; -+pub const IPV6_RECVHOPLIMIT: u32 = 51; -+pub const IPV6_HOPLIMIT: u32 = 52; -+pub const IPV6_RECVHOPOPTS: u32 = 53; -+pub const IPV6_HOPOPTS: u32 = 54; -+pub const IPV6_RTHDRDSTOPTS: u32 = 55; -+pub const IPV6_RECVRTHDR: u32 = 56; -+pub const IPV6_RTHDR: u32 = 57; -+pub const IPV6_RECVDSTOPTS: u32 = 58; -+pub const IPV6_DSTOPTS: u32 = 59; -+pub const IPV6_RECVPATHMTU: u32 = 60; -+pub const IPV6_PATHMTU: u32 = 61; -+pub const IPV6_DONTFRAG: u32 = 62; -+pub const IPV6_RECVTCLASS: u32 = 66; -+pub const IPV6_TCLASS: u32 = 67; -+pub const IPV6_AUTOFLOWLABEL: u32 = 70; -+pub const IPV6_ADDR_PREFERENCES: u32 = 72; -+pub const IPV6_PREFER_SRC_TMP: u32 = 1; -+pub const IPV6_PREFER_SRC_PUBLIC: u32 = 2; -+pub const IPV6_PREFER_SRC_PUBTMP_DEFAULT: u32 = 256; -+pub const IPV6_PREFER_SRC_COA: u32 = 4; -+pub const IPV6_PREFER_SRC_HOME: u32 = 1024; -+pub const IPV6_PREFER_SRC_CGA: u32 = 8; -+pub const IPV6_PREFER_SRC_NONCGA: u32 = 2048; -+pub const IPV6_MINHOPCOUNT: u32 = 73; -+pub const IPV6_ORIGDSTADDR: u32 = 74; -+pub const IPV6_RECVORIGDSTADDR: u32 = 74; -+pub const IPV6_TRANSPARENT: u32 = 75; -+pub const IPV6_UNICAST_IF: u32 = 76; -+pub const IPV6_RECVFRAGSIZE: u32 = 77; -+pub const IPV6_FREEBIND: u32 = 78; -+pub const IPV6_MIN_MTU: u32 = 1280; -+pub const IPV6_SRCRT_STRICT: u32 = 1; -+pub const IPV6_SRCRT_TYPE_0: u32 = 0; -+pub const IPV6_SRCRT_TYPE_2: u32 = 2; -+pub const IPV6_SRCRT_TYPE_3: u32 = 3; -+pub const IPV6_SRCRT_TYPE_4: u32 = 4; -+pub const IPV6_OPT_ROUTERALERT_MLD: u32 = 0; -+pub const ADFS_SUPER_MAGIC: u32 = 44533; -+pub const AFFS_SUPER_MAGIC: u32 = 44543; -+pub const AFS_SUPER_MAGIC: u32 = 1397113167; -+pub const AUTOFS_SUPER_MAGIC: u32 = 391; -+pub const CEPH_SUPER_MAGIC: u32 = 12805120; -+pub const CODA_SUPER_MAGIC: u32 = 1937076805; -+pub const CRAMFS_MAGIC: u32 = 684539205; -+pub const CRAMFS_MAGIC_WEND: u32 = 1161678120; -+pub const DEBUGFS_MAGIC: u32 = 1684170528; -+pub const SECURITYFS_MAGIC: u32 = 1935894131; -+pub const SELINUX_MAGIC: u32 = 4185718668; -+pub const SMACK_MAGIC: u32 = 1128357203; -+pub const RAMFS_MAGIC: u32 = 2240043254; -+pub const TMPFS_MAGIC: u32 = 16914836; -+pub const HUGETLBFS_MAGIC: u32 = 2508478710; -+pub const SQUASHFS_MAGIC: u32 = 1936814952; -+pub const ECRYPTFS_SUPER_MAGIC: u32 = 61791; -+pub const EFS_SUPER_MAGIC: u32 = 4278867; -+pub const EROFS_SUPER_MAGIC_V1: u32 = 3774210530; -+pub const EXT2_SUPER_MAGIC: u32 = 61267; -+pub const EXT3_SUPER_MAGIC: u32 = 61267; -+pub const XENFS_SUPER_MAGIC: u32 = 2881100148; -+pub const EXT4_SUPER_MAGIC: u32 = 61267; -+pub const BTRFS_SUPER_MAGIC: u32 = 2435016766; -+pub const NILFS_SUPER_MAGIC: u32 = 13364; -+pub const F2FS_SUPER_MAGIC: u32 = 4076150800; -+pub const HPFS_SUPER_MAGIC: u32 = 4187351113; -+pub const ISOFS_SUPER_MAGIC: u32 = 38496; -+pub const JFFS2_SUPER_MAGIC: u32 = 29366; -+pub const XFS_SUPER_MAGIC: u32 = 1481003842; -+pub const PSTOREFS_MAGIC: u32 = 1634035564; -+pub const EFIVARFS_MAGIC: u32 = 3730735588; -+pub const HOSTFS_SUPER_MAGIC: u32 = 12648430; -+pub const OVERLAYFS_SUPER_MAGIC: u32 = 2035054128; -+pub const FUSE_SUPER_MAGIC: u32 = 1702057286; -+pub const MINIX_SUPER_MAGIC: u32 = 4991; -+pub const MINIX_SUPER_MAGIC2: u32 = 5007; -+pub const MINIX2_SUPER_MAGIC: u32 = 9320; -+pub const MINIX2_SUPER_MAGIC2: u32 = 9336; -+pub const MINIX3_SUPER_MAGIC: u32 = 19802; -+pub const MSDOS_SUPER_MAGIC: u32 = 19780; -+pub const EXFAT_SUPER_MAGIC: u32 = 538032816; -+pub const NCP_SUPER_MAGIC: u32 = 22092; -+pub const NFS_SUPER_MAGIC: u32 = 26985; -+pub const OCFS2_SUPER_MAGIC: u32 = 1952539503; -+pub const OPENPROM_SUPER_MAGIC: u32 = 40865; -+pub const QNX4_SUPER_MAGIC: u32 = 47; -+pub const QNX6_SUPER_MAGIC: u32 = 1746473250; -+pub const AFS_FS_MAGIC: u32 = 1799439955; -+pub const REISERFS_SUPER_MAGIC: u32 = 1382369651; -+pub const REISERFS_SUPER_MAGIC_STRING: &[u8; 9usize] = b"ReIsErFs\0"; -+pub const REISER2FS_SUPER_MAGIC_STRING: &[u8; 10usize] = b"ReIsEr2Fs\0"; -+pub const REISER2FS_JR_SUPER_MAGIC_STRING: &[u8; 10usize] = b"ReIsEr3Fs\0"; -+pub const SMB_SUPER_MAGIC: u32 = 20859; -+pub const CIFS_SUPER_MAGIC: u32 = 4283649346; -+pub const SMB2_SUPER_MAGIC: u32 = 4266872130; -+pub const CGROUP_SUPER_MAGIC: u32 = 2613483; -+pub const CGROUP2_SUPER_MAGIC: u32 = 1667723888; -+pub const RDTGROUP_SUPER_MAGIC: u32 = 124082209; -+pub const STACK_END_MAGIC: u32 = 1470918301; -+pub const TRACEFS_MAGIC: u32 = 1953653091; -+pub const V9FS_MAGIC: u32 = 16914839; -+pub const BDEVFS_MAGIC: u32 = 1650746742; -+pub const DAXFS_MAGIC: u32 = 1684300152; -+pub const BINFMTFS_MAGIC: u32 = 1112100429; -+pub const DEVPTS_SUPER_MAGIC: u32 = 7377; -+pub const BINDERFS_SUPER_MAGIC: u32 = 1819242352; -+pub const FUTEXFS_SUPER_MAGIC: u32 = 195894762; -+pub const PIPEFS_MAGIC: u32 = 1346981957; -+pub const PROC_SUPER_MAGIC: u32 = 40864; -+pub const SOCKFS_MAGIC: u32 = 1397703499; -+pub const SYSFS_MAGIC: u32 = 1650812274; -+pub const USBDEVICE_SUPER_MAGIC: u32 = 40866; -+pub const MTD_INODE_FS_MAGIC: u32 = 288389204; -+pub const ANON_INODE_FS_MAGIC: u32 = 151263540; -+pub const BTRFS_TEST_MAGIC: u32 = 1936880249; -+pub const NSFS_MAGIC: u32 = 1853056627; -+pub const BPF_FS_MAGIC: u32 = 3405662737; -+pub const AAFS_MAGIC: u32 = 1513908720; -+pub const ZONEFS_MAGIC: u32 = 1515144787; -+pub const UDF_SUPER_MAGIC: u32 = 352400198; -+pub const DMA_BUF_MAGIC: u32 = 1145913666; -+pub const DEVMEM_MAGIC: u32 = 1162691661; -+pub const SECRETMEM_MAGIC: u32 = 1397048141; -+pub const PROT_READ: u32 = 1; -+pub const PROT_WRITE: u32 = 2; -+pub const PROT_EXEC: u32 = 4; -+pub const PROT_SEM: u32 = 8; -+pub const PROT_NONE: u32 = 0; -+pub const PROT_GROWSDOWN: u32 = 16777216; -+pub const PROT_GROWSUP: u32 = 33554432; -+pub const MAP_TYPE: u32 = 15; -+pub const MAP_FIXED: u32 = 16; -+pub const MAP_ANONYMOUS: u32 = 32; -+pub const MAP_POPULATE: u32 = 32768; -+pub const MAP_NONBLOCK: u32 = 65536; -+pub const MAP_STACK: u32 = 131072; -+pub const MAP_HUGETLB: u32 = 262144; -+pub const MAP_SYNC: u32 = 524288; -+pub const MAP_FIXED_NOREPLACE: u32 = 1048576; -+pub const MAP_UNINITIALIZED: u32 = 67108864; -+pub const MLOCK_ONFAULT: u32 = 1; -+pub const MS_ASYNC: u32 = 1; -+pub const MS_INVALIDATE: u32 = 2; -+pub const MS_SYNC: u32 = 4; -+pub const MADV_NORMAL: u32 = 0; -+pub const MADV_RANDOM: u32 = 1; -+pub const MADV_SEQUENTIAL: u32 = 2; -+pub const MADV_WILLNEED: u32 = 3; -+pub const MADV_DONTNEED: u32 = 4; -+pub const MADV_FREE: u32 = 8; -+pub const MADV_REMOVE: u32 = 9; -+pub const MADV_DONTFORK: u32 = 10; -+pub const MADV_DOFORK: u32 = 11; -+pub const MADV_HWPOISON: u32 = 100; -+pub const MADV_SOFT_OFFLINE: u32 = 101; -+pub const MADV_MERGEABLE: u32 = 12; -+pub const MADV_UNMERGEABLE: u32 = 13; -+pub const MADV_HUGEPAGE: u32 = 14; -+pub const MADV_NOHUGEPAGE: u32 = 15; -+pub const MADV_DONTDUMP: u32 = 16; -+pub const MADV_DODUMP: u32 = 17; -+pub const MADV_WIPEONFORK: u32 = 18; -+pub const MADV_KEEPONFORK: u32 = 19; -+pub const MADV_COLD: u32 = 20; -+pub const MADV_PAGEOUT: u32 = 21; -+pub const MADV_POPULATE_READ: u32 = 22; -+pub const MADV_POPULATE_WRITE: u32 = 23; -+pub const MADV_DONTNEED_LOCKED: u32 = 24; -+pub const MADV_COLLAPSE: u32 = 25; -+pub const MAP_FILE: u32 = 0; -+pub const PKEY_DISABLE_ACCESS: u32 = 1; -+pub const PKEY_DISABLE_WRITE: u32 = 2; -+pub const PKEY_ACCESS_MASK: u32 = 3; -+pub const MAP_GROWSDOWN: u32 = 256; -+pub const MAP_DENYWRITE: u32 = 2048; -+pub const MAP_EXECUTABLE: u32 = 4096; -+pub const MAP_LOCKED: u32 = 8192; -+pub const MAP_NORESERVE: u32 = 16384; -+pub const MCL_CURRENT: u32 = 1; -+pub const MCL_FUTURE: u32 = 2; -+pub const MCL_ONFAULT: u32 = 4; -+pub const HUGETLB_FLAG_ENCODE_SHIFT: u32 = 26; -+pub const HUGETLB_FLAG_ENCODE_MASK: u32 = 63; -+pub const HUGETLB_FLAG_ENCODE_16KB: u32 = 939524096; -+pub const HUGETLB_FLAG_ENCODE_64KB: u32 = 1073741824; -+pub const HUGETLB_FLAG_ENCODE_512KB: u32 = 1275068416; -+pub const HUGETLB_FLAG_ENCODE_1MB: u32 = 1342177280; -+pub const HUGETLB_FLAG_ENCODE_2MB: u32 = 1409286144; -+pub const HUGETLB_FLAG_ENCODE_8MB: u32 = 1543503872; -+pub const HUGETLB_FLAG_ENCODE_16MB: u32 = 1610612736; -+pub const HUGETLB_FLAG_ENCODE_32MB: u32 = 1677721600; -+pub const HUGETLB_FLAG_ENCODE_256MB: u32 = 1879048192; -+pub const HUGETLB_FLAG_ENCODE_512MB: u32 = 1946157056; -+pub const HUGETLB_FLAG_ENCODE_1GB: u32 = 2013265920; -+pub const HUGETLB_FLAG_ENCODE_2GB: u32 = 2080374784; -+pub const HUGETLB_FLAG_ENCODE_16GB: u32 = 2281701376; -+pub const MREMAP_MAYMOVE: u32 = 1; -+pub const MREMAP_FIXED: u32 = 2; -+pub const MREMAP_DONTUNMAP: u32 = 4; -+pub const OVERCOMMIT_GUESS: u32 = 0; -+pub const OVERCOMMIT_ALWAYS: u32 = 1; -+pub const OVERCOMMIT_NEVER: u32 = 2; -+pub const MAP_SHARED: u32 = 1; -+pub const MAP_PRIVATE: u32 = 2; -+pub const MAP_SHARED_VALIDATE: u32 = 3; -+pub const MAP_HUGE_SHIFT: u32 = 26; -+pub const MAP_HUGE_MASK: u32 = 63; -+pub const MAP_HUGE_16KB: u32 = 939524096; -+pub const MAP_HUGE_64KB: u32 = 1073741824; -+pub const MAP_HUGE_512KB: u32 = 1275068416; -+pub const MAP_HUGE_1MB: u32 = 1342177280; -+pub const MAP_HUGE_2MB: u32 = 1409286144; -+pub const MAP_HUGE_8MB: u32 = 1543503872; -+pub const MAP_HUGE_16MB: u32 = 1610612736; -+pub const MAP_HUGE_32MB: u32 = 1677721600; -+pub const MAP_HUGE_256MB: u32 = 1879048192; -+pub const MAP_HUGE_512MB: u32 = 1946157056; -+pub const MAP_HUGE_1GB: u32 = 2013265920; -+pub const MAP_HUGE_2GB: u32 = 2080374784; -+pub const MAP_HUGE_16GB: u32 = 2281701376; -+pub const SIOCGSTAMP_OLD: u32 = 35078; -+pub const SIOCGSTAMPNS_OLD: u32 = 35079; -+pub const SOL_SOCKET: u32 = 1; -+pub const SO_DEBUG: u32 = 1; -+pub const SO_REUSEADDR: u32 = 2; -+pub const SO_TYPE: u32 = 3; -+pub const SO_ERROR: u32 = 4; -+pub const SO_DONTROUTE: u32 = 5; -+pub const SO_BROADCAST: u32 = 6; -+pub const SO_SNDBUF: u32 = 7; -+pub const SO_RCVBUF: u32 = 8; -+pub const SO_SNDBUFFORCE: u32 = 32; -+pub const SO_RCVBUFFORCE: u32 = 33; -+pub const SO_KEEPALIVE: u32 = 9; -+pub const SO_OOBINLINE: u32 = 10; -+pub const SO_NO_CHECK: u32 = 11; -+pub const SO_PRIORITY: u32 = 12; -+pub const SO_LINGER: u32 = 13; -+pub const SO_BSDCOMPAT: u32 = 14; -+pub const SO_REUSEPORT: u32 = 15; -+pub const SO_PASSCRED: u32 = 16; -+pub const SO_PEERCRED: u32 = 17; -+pub const SO_RCVLOWAT: u32 = 18; -+pub const SO_SNDLOWAT: u32 = 19; -+pub const SO_RCVTIMEO_OLD: u32 = 20; -+pub const SO_SNDTIMEO_OLD: u32 = 21; -+pub const SO_SECURITY_AUTHENTICATION: u32 = 22; -+pub const SO_SECURITY_ENCRYPTION_TRANSPORT: u32 = 23; -+pub const SO_SECURITY_ENCRYPTION_NETWORK: u32 = 24; -+pub const SO_BINDTODEVICE: u32 = 25; -+pub const SO_ATTACH_FILTER: u32 = 26; -+pub const SO_DETACH_FILTER: u32 = 27; -+pub const SO_GET_FILTER: u32 = 26; -+pub const SO_PEERNAME: u32 = 28; -+pub const SO_ACCEPTCONN: u32 = 30; -+pub const SO_PEERSEC: u32 = 31; -+pub const SO_PASSSEC: u32 = 34; -+pub const SO_MARK: u32 = 36; -+pub const SO_PROTOCOL: u32 = 38; -+pub const SO_DOMAIN: u32 = 39; -+pub const SO_RXQ_OVFL: u32 = 40; -+pub const SO_WIFI_STATUS: u32 = 41; -+pub const SCM_WIFI_STATUS: u32 = 41; -+pub const SO_PEEK_OFF: u32 = 42; -+pub const SO_NOFCS: u32 = 43; -+pub const SO_LOCK_FILTER: u32 = 44; -+pub const SO_SELECT_ERR_QUEUE: u32 = 45; -+pub const SO_BUSY_POLL: u32 = 46; -+pub const SO_MAX_PACING_RATE: u32 = 47; -+pub const SO_BPF_EXTENSIONS: u32 = 48; -+pub const SO_INCOMING_CPU: u32 = 49; -+pub const SO_ATTACH_BPF: u32 = 50; -+pub const SO_DETACH_BPF: u32 = 27; -+pub const SO_ATTACH_REUSEPORT_CBPF: u32 = 51; -+pub const SO_ATTACH_REUSEPORT_EBPF: u32 = 52; -+pub const SO_CNX_ADVICE: u32 = 53; -+pub const SCM_TIMESTAMPING_OPT_STATS: u32 = 54; -+pub const SO_MEMINFO: u32 = 55; -+pub const SO_INCOMING_NAPI_ID: u32 = 56; -+pub const SO_COOKIE: u32 = 57; -+pub const SCM_TIMESTAMPING_PKTINFO: u32 = 58; -+pub const SO_PEERGROUPS: u32 = 59; -+pub const SO_ZEROCOPY: u32 = 60; -+pub const SO_TXTIME: u32 = 61; -+pub const SCM_TXTIME: u32 = 61; -+pub const SO_BINDTOIFINDEX: u32 = 62; -+pub const SO_TIMESTAMP_OLD: u32 = 29; -+pub const SO_TIMESTAMPNS_OLD: u32 = 35; -+pub const SO_TIMESTAMPING_OLD: u32 = 37; -+pub const SO_TIMESTAMP_NEW: u32 = 63; -+pub const SO_TIMESTAMPNS_NEW: u32 = 64; -+pub const SO_TIMESTAMPING_NEW: u32 = 65; -+pub const SO_RCVTIMEO_NEW: u32 = 66; -+pub const SO_SNDTIMEO_NEW: u32 = 67; -+pub const SO_DETACH_REUSEPORT_BPF: u32 = 68; -+pub const SO_PREFER_BUSY_POLL: u32 = 69; -+pub const SO_BUSY_POLL_BUDGET: u32 = 70; -+pub const SO_NETNS_COOKIE: u32 = 71; -+pub const SO_BUF_LOCK: u32 = 72; -+pub const SO_RESERVE_MEM: u32 = 73; -+pub const SO_TXREHASH: u32 = 74; -+pub const SO_RCVMARK: u32 = 75; -+pub const SO_TIMESTAMP: u32 = 29; -+pub const SO_TIMESTAMPNS: u32 = 35; -+pub const SO_TIMESTAMPING: u32 = 37; -+pub const SO_RCVTIMEO: u32 = 20; -+pub const SO_SNDTIMEO: u32 = 21; -+pub const SCM_TIMESTAMP: u32 = 29; -+pub const SCM_TIMESTAMPNS: u32 = 35; -+pub const SCM_TIMESTAMPING: u32 = 37; -+pub const SYS_SOCKET: u32 = 1; -+pub const SYS_BIND: u32 = 2; -+pub const SYS_CONNECT: u32 = 3; -+pub const SYS_LISTEN: u32 = 4; -+pub const SYS_ACCEPT: u32 = 5; -+pub const SYS_GETSOCKNAME: u32 = 6; -+pub const SYS_GETPEERNAME: u32 = 7; -+pub const SYS_SOCKETPAIR: u32 = 8; -+pub const SYS_SEND: u32 = 9; -+pub const SYS_RECV: u32 = 10; -+pub const SYS_SENDTO: u32 = 11; -+pub const SYS_RECVFROM: u32 = 12; -+pub const SYS_SHUTDOWN: u32 = 13; -+pub const SYS_SETSOCKOPT: u32 = 14; -+pub const SYS_GETSOCKOPT: u32 = 15; -+pub const SYS_SENDMSG: u32 = 16; -+pub const SYS_RECVMSG: u32 = 17; -+pub const SYS_ACCEPT4: u32 = 18; -+pub const SYS_RECVMMSG: u32 = 19; -+pub const SYS_SENDMMSG: u32 = 20; -+pub const __SO_ACCEPTCON: u32 = 65536; -+pub const POLLIN: u32 = 1; -+pub const POLLPRI: u32 = 2; -+pub const POLLOUT: u32 = 4; -+pub const POLLERR: u32 = 8; -+pub const POLLHUP: u32 = 16; -+pub const POLLNVAL: u32 = 32; -+pub const POLLRDNORM: u32 = 64; -+pub const POLLRDBAND: u32 = 128; -+pub const POLLWRNORM: u32 = 256; -+pub const POLLWRBAND: u32 = 512; -+pub const POLLMSG: u32 = 1024; -+pub const POLLREMOVE: u32 = 4096; -+pub const POLLRDHUP: u32 = 8192; -+pub const PR_SET_PDEATHSIG: u32 = 1; -+pub const PR_GET_PDEATHSIG: u32 = 2; -+pub const PR_GET_DUMPABLE: u32 = 3; -+pub const PR_SET_DUMPABLE: u32 = 4; -+pub const PR_GET_UNALIGN: u32 = 5; -+pub const PR_SET_UNALIGN: u32 = 6; -+pub const PR_UNALIGN_NOPRINT: u32 = 1; -+pub const PR_UNALIGN_SIGBUS: u32 = 2; -+pub const PR_GET_KEEPCAPS: u32 = 7; -+pub const PR_SET_KEEPCAPS: u32 = 8; -+pub const PR_GET_FPEMU: u32 = 9; -+pub const PR_SET_FPEMU: u32 = 10; -+pub const PR_FPEMU_NOPRINT: u32 = 1; -+pub const PR_FPEMU_SIGFPE: u32 = 2; -+pub const PR_GET_FPEXC: u32 = 11; -+pub const PR_SET_FPEXC: u32 = 12; -+pub const PR_FP_EXC_SW_ENABLE: u32 = 128; -+pub const PR_FP_EXC_DIV: u32 = 65536; -+pub const PR_FP_EXC_OVF: u32 = 131072; -+pub const PR_FP_EXC_UND: u32 = 262144; -+pub const PR_FP_EXC_RES: u32 = 524288; -+pub const PR_FP_EXC_INV: u32 = 1048576; -+pub const PR_FP_EXC_DISABLED: u32 = 0; -+pub const PR_FP_EXC_NONRECOV: u32 = 1; -+pub const PR_FP_EXC_ASYNC: u32 = 2; -+pub const PR_FP_EXC_PRECISE: u32 = 3; -+pub const PR_GET_TIMING: u32 = 13; -+pub const PR_SET_TIMING: u32 = 14; -+pub const PR_TIMING_STATISTICAL: u32 = 0; -+pub const PR_TIMING_TIMESTAMP: u32 = 1; -+pub const PR_SET_NAME: u32 = 15; -+pub const PR_GET_NAME: u32 = 16; -+pub const PR_GET_ENDIAN: u32 = 19; -+pub const PR_SET_ENDIAN: u32 = 20; -+pub const PR_ENDIAN_BIG: u32 = 0; -+pub const PR_ENDIAN_LITTLE: u32 = 1; -+pub const PR_ENDIAN_PPC_LITTLE: u32 = 2; -+pub const PR_GET_SECCOMP: u32 = 21; -+pub const PR_SET_SECCOMP: u32 = 22; -+pub const PR_CAPBSET_READ: u32 = 23; -+pub const PR_CAPBSET_DROP: u32 = 24; -+pub const PR_GET_TSC: u32 = 25; -+pub const PR_SET_TSC: u32 = 26; -+pub const PR_TSC_ENABLE: u32 = 1; -+pub const PR_TSC_SIGSEGV: u32 = 2; -+pub const PR_GET_SECUREBITS: u32 = 27; -+pub const PR_SET_SECUREBITS: u32 = 28; -+pub const PR_SET_TIMERSLACK: u32 = 29; -+pub const PR_GET_TIMERSLACK: u32 = 30; -+pub const PR_TASK_PERF_EVENTS_DISABLE: u32 = 31; -+pub const PR_TASK_PERF_EVENTS_ENABLE: u32 = 32; -+pub const PR_MCE_KILL: u32 = 33; -+pub const PR_MCE_KILL_CLEAR: u32 = 0; -+pub const PR_MCE_KILL_SET: u32 = 1; -+pub const PR_MCE_KILL_LATE: u32 = 0; -+pub const PR_MCE_KILL_EARLY: u32 = 1; -+pub const PR_MCE_KILL_DEFAULT: u32 = 2; -+pub const PR_MCE_KILL_GET: u32 = 34; -+pub const PR_SET_MM: u32 = 35; -+pub const PR_SET_MM_START_CODE: u32 = 1; -+pub const PR_SET_MM_END_CODE: u32 = 2; -+pub const PR_SET_MM_START_DATA: u32 = 3; -+pub const PR_SET_MM_END_DATA: u32 = 4; -+pub const PR_SET_MM_START_STACK: u32 = 5; -+pub const PR_SET_MM_START_BRK: u32 = 6; -+pub const PR_SET_MM_BRK: u32 = 7; -+pub const PR_SET_MM_ARG_START: u32 = 8; -+pub const PR_SET_MM_ARG_END: u32 = 9; -+pub const PR_SET_MM_ENV_START: u32 = 10; -+pub const PR_SET_MM_ENV_END: u32 = 11; -+pub const PR_SET_MM_AUXV: u32 = 12; -+pub const PR_SET_MM_EXE_FILE: u32 = 13; -+pub const PR_SET_MM_MAP: u32 = 14; -+pub const PR_SET_MM_MAP_SIZE: u32 = 15; -+pub const PR_SET_PTRACER: u32 = 1499557217; -+pub const PR_SET_CHILD_SUBREAPER: u32 = 36; -+pub const PR_GET_CHILD_SUBREAPER: u32 = 37; -+pub const PR_SET_NO_NEW_PRIVS: u32 = 38; -+pub const PR_GET_NO_NEW_PRIVS: u32 = 39; -+pub const PR_GET_TID_ADDRESS: u32 = 40; -+pub const PR_SET_THP_DISABLE: u32 = 41; -+pub const PR_GET_THP_DISABLE: u32 = 42; -+pub const PR_MPX_ENABLE_MANAGEMENT: u32 = 43; -+pub const PR_MPX_DISABLE_MANAGEMENT: u32 = 44; -+pub const PR_SET_FP_MODE: u32 = 45; -+pub const PR_GET_FP_MODE: u32 = 46; -+pub const PR_FP_MODE_FR: u32 = 1; -+pub const PR_FP_MODE_FRE: u32 = 2; -+pub const PR_CAP_AMBIENT: u32 = 47; -+pub const PR_CAP_AMBIENT_IS_SET: u32 = 1; -+pub const PR_CAP_AMBIENT_RAISE: u32 = 2; -+pub const PR_CAP_AMBIENT_LOWER: u32 = 3; -+pub const PR_CAP_AMBIENT_CLEAR_ALL: u32 = 4; -+pub const PR_SVE_SET_VL: u32 = 50; -+pub const PR_SVE_SET_VL_ONEXEC: u32 = 262144; -+pub const PR_SVE_GET_VL: u32 = 51; -+pub const PR_SVE_VL_LEN_MASK: u32 = 65535; -+pub const PR_SVE_VL_INHERIT: u32 = 131072; -+pub const PR_GET_SPECULATION_CTRL: u32 = 52; -+pub const PR_SET_SPECULATION_CTRL: u32 = 53; -+pub const PR_SPEC_STORE_BYPASS: u32 = 0; -+pub const PR_SPEC_INDIRECT_BRANCH: u32 = 1; -+pub const PR_SPEC_L1D_FLUSH: u32 = 2; -+pub const PR_SPEC_NOT_AFFECTED: u32 = 0; -+pub const PR_SPEC_PRCTL: u32 = 1; -+pub const PR_SPEC_ENABLE: u32 = 2; -+pub const PR_SPEC_DISABLE: u32 = 4; -+pub const PR_SPEC_FORCE_DISABLE: u32 = 8; -+pub const PR_SPEC_DISABLE_NOEXEC: u32 = 16; -+pub const PR_PAC_RESET_KEYS: u32 = 54; -+pub const PR_PAC_APIAKEY: u32 = 1; -+pub const PR_PAC_APIBKEY: u32 = 2; -+pub const PR_PAC_APDAKEY: u32 = 4; -+pub const PR_PAC_APDBKEY: u32 = 8; -+pub const PR_PAC_APGAKEY: u32 = 16; -+pub const PR_SET_TAGGED_ADDR_CTRL: u32 = 55; -+pub const PR_GET_TAGGED_ADDR_CTRL: u32 = 56; -+pub const PR_TAGGED_ADDR_ENABLE: u32 = 1; -+pub const PR_MTE_TCF_NONE: u32 = 0; -+pub const PR_MTE_TCF_SYNC: u32 = 2; -+pub const PR_MTE_TCF_ASYNC: u32 = 4; -+pub const PR_MTE_TCF_MASK: u32 = 6; -+pub const PR_MTE_TAG_SHIFT: u32 = 3; -+pub const PR_MTE_TAG_MASK: u32 = 524280; -+pub const PR_MTE_TCF_SHIFT: u32 = 1; -+pub const PR_SET_IO_FLUSHER: u32 = 57; -+pub const PR_GET_IO_FLUSHER: u32 = 58; -+pub const PR_SET_SYSCALL_USER_DISPATCH: u32 = 59; -+pub const PR_SYS_DISPATCH_OFF: u32 = 0; -+pub const PR_SYS_DISPATCH_ON: u32 = 1; -+pub const SYSCALL_DISPATCH_FILTER_ALLOW: u32 = 0; -+pub const SYSCALL_DISPATCH_FILTER_BLOCK: u32 = 1; -+pub const PR_PAC_SET_ENABLED_KEYS: u32 = 60; -+pub const PR_PAC_GET_ENABLED_KEYS: u32 = 61; -+pub const PR_SCHED_CORE: u32 = 62; -+pub const PR_SCHED_CORE_GET: u32 = 0; -+pub const PR_SCHED_CORE_CREATE: u32 = 1; -+pub const PR_SCHED_CORE_SHARE_TO: u32 = 2; -+pub const PR_SCHED_CORE_SHARE_FROM: u32 = 3; -+pub const PR_SCHED_CORE_MAX: u32 = 4; -+pub const PR_SCHED_CORE_SCOPE_THREAD: u32 = 0; -+pub const PR_SCHED_CORE_SCOPE_THREAD_GROUP: u32 = 1; -+pub const PR_SCHED_CORE_SCOPE_PROCESS_GROUP: u32 = 2; -+pub const PR_SME_SET_VL: u32 = 63; -+pub const PR_SME_SET_VL_ONEXEC: u32 = 262144; -+pub const PR_SME_GET_VL: u32 = 64; -+pub const PR_SME_VL_LEN_MASK: u32 = 65535; -+pub const PR_SME_VL_INHERIT: u32 = 131072; -+pub const PR_SET_VMA: u32 = 1398164801; -+pub const PR_SET_VMA_ANON_NAME: u32 = 0; -+pub const GRND_NONBLOCK: u32 = 1; -+pub const GRND_RANDOM: u32 = 2; -+pub const GRND_INSECURE: u32 = 4; -+pub const ITIMER_REAL: u32 = 0; -+pub const ITIMER_VIRTUAL: u32 = 1; -+pub const ITIMER_PROF: u32 = 2; -+pub const CLOCK_REALTIME: u32 = 0; -+pub const CLOCK_MONOTONIC: u32 = 1; -+pub const CLOCK_PROCESS_CPUTIME_ID: u32 = 2; -+pub const CLOCK_THREAD_CPUTIME_ID: u32 = 3; -+pub const CLOCK_MONOTONIC_RAW: u32 = 4; -+pub const CLOCK_REALTIME_COARSE: u32 = 5; -+pub const CLOCK_MONOTONIC_COARSE: u32 = 6; -+pub const CLOCK_BOOTTIME: u32 = 7; -+pub const CLOCK_REALTIME_ALARM: u32 = 8; -+pub const CLOCK_BOOTTIME_ALARM: u32 = 9; -+pub const CLOCK_SGI_CYCLE: u32 = 10; -+pub const CLOCK_TAI: u32 = 11; -+pub const MAX_CLOCKS: u32 = 16; -+pub const CLOCKS_MASK: u32 = 1; -+pub const CLOCKS_MONO: u32 = 1; -+pub const TIMER_ABSTIME: u32 = 1; -+pub const RUSAGE_SELF: u32 = 0; -+pub const RUSAGE_CHILDREN: i32 = -1; -+pub const RUSAGE_BOTH: i32 = -2; -+pub const RUSAGE_THREAD: u32 = 1; -+pub const RLIM64_INFINITY: i32 = -1; -+pub const PRIO_MIN: i32 = -20; -+pub const PRIO_MAX: u32 = 20; -+pub const PRIO_PROCESS: u32 = 0; -+pub const PRIO_PGRP: u32 = 1; -+pub const PRIO_USER: u32 = 2; -+pub const _STK_LIM: u32 = 8388608; -+pub const MLOCK_LIMIT: u32 = 8388608; -+pub const RLIMIT_CPU: u32 = 0; -+pub const RLIMIT_FSIZE: u32 = 1; -+pub const RLIMIT_DATA: u32 = 2; -+pub const RLIMIT_STACK: u32 = 3; -+pub const RLIMIT_CORE: u32 = 4; -+pub const RLIMIT_RSS: u32 = 5; -+pub const RLIMIT_NPROC: u32 = 6; -+pub const RLIMIT_NOFILE: u32 = 7; -+pub const RLIMIT_MEMLOCK: u32 = 8; -+pub const RLIMIT_AS: u32 = 9; -+pub const RLIMIT_LOCKS: u32 = 10; -+pub const RLIMIT_SIGPENDING: u32 = 11; -+pub const RLIMIT_MSGQUEUE: u32 = 12; -+pub const RLIMIT_NICE: u32 = 13; -+pub const RLIMIT_RTPRIO: u32 = 14; -+pub const RLIMIT_RTTIME: u32 = 15; -+pub const RLIM_NLIMITS: u32 = 16; -+pub const RLIM_INFINITY: i32 = -1; -+pub const CSIGNAL: u32 = 255; -+pub const CLONE_VM: u32 = 256; -+pub const CLONE_FS: u32 = 512; -+pub const CLONE_FILES: u32 = 1024; -+pub const CLONE_SIGHAND: u32 = 2048; -+pub const CLONE_PIDFD: u32 = 4096; -+pub const CLONE_PTRACE: u32 = 8192; -+pub const CLONE_VFORK: u32 = 16384; -+pub const CLONE_PARENT: u32 = 32768; -+pub const CLONE_THREAD: u32 = 65536; -+pub const CLONE_NEWNS: u32 = 131072; -+pub const CLONE_SYSVSEM: u32 = 262144; -+pub const CLONE_SETTLS: u32 = 524288; -+pub const CLONE_PARENT_SETTID: u32 = 1048576; -+pub const CLONE_CHILD_CLEARTID: u32 = 2097152; -+pub const CLONE_DETACHED: u32 = 4194304; -+pub const CLONE_UNTRACED: u32 = 8388608; -+pub const CLONE_CHILD_SETTID: u32 = 16777216; -+pub const CLONE_NEWCGROUP: u32 = 33554432; -+pub const CLONE_NEWUTS: u32 = 67108864; -+pub const CLONE_NEWIPC: u32 = 134217728; -+pub const CLONE_NEWUSER: u32 = 268435456; -+pub const CLONE_NEWPID: u32 = 536870912; -+pub const CLONE_NEWNET: u32 = 1073741824; -+pub const CLONE_IO: u32 = 2147483648; -+pub const CLONE_CLEAR_SIGHAND: u64 = 4294967296; -+pub const CLONE_INTO_CGROUP: u64 = 8589934592; -+pub const CLONE_NEWTIME: u32 = 128; -+pub const CLONE_ARGS_SIZE_VER0: u32 = 64; -+pub const CLONE_ARGS_SIZE_VER1: u32 = 80; -+pub const CLONE_ARGS_SIZE_VER2: u32 = 88; -+pub const SCHED_NORMAL: u32 = 0; -+pub const SCHED_FIFO: u32 = 1; -+pub const SCHED_RR: u32 = 2; -+pub const SCHED_BATCH: u32 = 3; -+pub const SCHED_IDLE: u32 = 5; -+pub const SCHED_DEADLINE: u32 = 6; -+pub const SCHED_RESET_ON_FORK: u32 = 1073741824; -+pub const SCHED_FLAG_RESET_ON_FORK: u32 = 1; -+pub const SCHED_FLAG_RECLAIM: u32 = 2; -+pub const SCHED_FLAG_DL_OVERRUN: u32 = 4; -+pub const SCHED_FLAG_KEEP_POLICY: u32 = 8; -+pub const SCHED_FLAG_KEEP_PARAMS: u32 = 16; -+pub const SCHED_FLAG_UTIL_CLAMP_MIN: u32 = 32; -+pub const SCHED_FLAG_UTIL_CLAMP_MAX: u32 = 64; -+pub const SCHED_FLAG_KEEP_ALL: u32 = 24; -+pub const SCHED_FLAG_UTIL_CLAMP: u32 = 96; -+pub const SCHED_FLAG_ALL: u32 = 127; -+pub const MINSIGSTKSZ: u32 = 4096; -+pub const SIGSTKSZ: u32 = 16384; -+pub const _NSIG: u32 = 64; -+pub const SIGHUP: u32 = 1; -+pub const SIGINT: u32 = 2; -+pub const SIGQUIT: u32 = 3; -+pub const SIGILL: u32 = 4; -+pub const SIGTRAP: u32 = 5; -+pub const SIGABRT: u32 = 6; -+pub const SIGIOT: u32 = 6; -+pub const SIGBUS: u32 = 7; -+pub const SIGFPE: u32 = 8; -+pub const SIGKILL: u32 = 9; -+pub const SIGUSR1: u32 = 10; -+pub const SIGSEGV: u32 = 11; -+pub const SIGUSR2: u32 = 12; -+pub const SIGPIPE: u32 = 13; -+pub const SIGALRM: u32 = 14; -+pub const SIGTERM: u32 = 15; -+pub const SIGSTKFLT: u32 = 16; -+pub const SIGCHLD: u32 = 17; -+pub const SIGCONT: u32 = 18; -+pub const SIGSTOP: u32 = 19; -+pub const SIGTSTP: u32 = 20; -+pub const SIGTTIN: u32 = 21; -+pub const SIGTTOU: u32 = 22; -+pub const SIGURG: u32 = 23; -+pub const SIGXCPU: u32 = 24; -+pub const SIGXFSZ: u32 = 25; -+pub const SIGVTALRM: u32 = 26; -+pub const SIGPROF: u32 = 27; -+pub const SIGWINCH: u32 = 28; -+pub const SIGIO: u32 = 29; -+pub const SIGPOLL: u32 = 29; -+pub const SIGPWR: u32 = 30; -+pub const SIGSYS: u32 = 31; -+pub const SIGUNUSED: u32 = 31; -+pub const SIGRTMIN: u32 = 32; -+pub const SIGRTMAX: u32 = 64; -+pub const SA_NOCLDSTOP: u32 = 1; -+pub const SA_NOCLDWAIT: u32 = 2; -+pub const SA_SIGINFO: u32 = 4; -+pub const SA_UNSUPPORTED: u32 = 1024; -+pub const SA_EXPOSE_TAGBITS: u32 = 2048; -+pub const SA_ONSTACK: u32 = 134217728; -+pub const SA_RESTART: u32 = 268435456; -+pub const SA_NODEFER: u32 = 1073741824; -+pub const SA_RESETHAND: u32 = 2147483648; -+pub const SA_NOMASK: u32 = 1073741824; -+pub const SA_ONESHOT: u32 = 2147483648; -+pub const SIG_BLOCK: u32 = 0; -+pub const SIG_UNBLOCK: u32 = 1; -+pub const SIG_SETMASK: u32 = 2; -+pub const SI_MAX_SIZE: u32 = 128; -+pub const SI_USER: u32 = 0; -+pub const SI_KERNEL: u32 = 128; -+pub const SI_QUEUE: i32 = -1; -+pub const SI_TIMER: i32 = -2; -+pub const SI_MESGQ: i32 = -3; -+pub const SI_ASYNCIO: i32 = -4; -+pub const SI_SIGIO: i32 = -5; -+pub const SI_TKILL: i32 = -6; -+pub const SI_DETHREAD: i32 = -7; -+pub const SI_ASYNCNL: i32 = -60; -+pub const ILL_ILLOPC: u32 = 1; -+pub const ILL_ILLOPN: u32 = 2; -+pub const ILL_ILLADR: u32 = 3; -+pub const ILL_ILLTRP: u32 = 4; -+pub const ILL_PRVOPC: u32 = 5; -+pub const ILL_PRVREG: u32 = 6; -+pub const ILL_COPROC: u32 = 7; -+pub const ILL_BADSTK: u32 = 8; -+pub const ILL_BADIADDR: u32 = 9; -+pub const __ILL_BREAK: u32 = 10; -+pub const __ILL_BNDMOD: u32 = 11; -+pub const NSIGILL: u32 = 11; -+pub const FPE_INTDIV: u32 = 1; -+pub const FPE_INTOVF: u32 = 2; -+pub const FPE_FLTDIV: u32 = 3; -+pub const FPE_FLTOVF: u32 = 4; -+pub const FPE_FLTUND: u32 = 5; -+pub const FPE_FLTRES: u32 = 6; -+pub const FPE_FLTINV: u32 = 7; -+pub const FPE_FLTSUB: u32 = 8; -+pub const __FPE_DECOVF: u32 = 9; -+pub const __FPE_DECDIV: u32 = 10; -+pub const __FPE_DECERR: u32 = 11; -+pub const __FPE_INVASC: u32 = 12; -+pub const __FPE_INVDEC: u32 = 13; -+pub const FPE_FLTUNK: u32 = 14; -+pub const FPE_CONDTRAP: u32 = 15; -+pub const NSIGFPE: u32 = 15; -+pub const SEGV_MAPERR: u32 = 1; -+pub const SEGV_ACCERR: u32 = 2; -+pub const SEGV_BNDERR: u32 = 3; -+pub const SEGV_PKUERR: u32 = 4; -+pub const SEGV_ACCADI: u32 = 5; -+pub const SEGV_ADIDERR: u32 = 6; -+pub const SEGV_ADIPERR: u32 = 7; -+pub const SEGV_MTEAERR: u32 = 8; -+pub const SEGV_MTESERR: u32 = 9; -+pub const NSIGSEGV: u32 = 9; -+pub const BUS_ADRALN: u32 = 1; -+pub const BUS_ADRERR: u32 = 2; -+pub const BUS_OBJERR: u32 = 3; -+pub const BUS_MCEERR_AR: u32 = 4; -+pub const BUS_MCEERR_AO: u32 = 5; -+pub const NSIGBUS: u32 = 5; -+pub const TRAP_BRKPT: u32 = 1; -+pub const TRAP_TRACE: u32 = 2; -+pub const TRAP_BRANCH: u32 = 3; -+pub const TRAP_HWBKPT: u32 = 4; -+pub const TRAP_UNK: u32 = 5; -+pub const TRAP_PERF: u32 = 6; -+pub const NSIGTRAP: u32 = 6; -+pub const TRAP_PERF_FLAG_ASYNC: u32 = 1; -+pub const CLD_EXITED: u32 = 1; -+pub const CLD_KILLED: u32 = 2; -+pub const CLD_DUMPED: u32 = 3; -+pub const CLD_TRAPPED: u32 = 4; -+pub const CLD_STOPPED: u32 = 5; -+pub const CLD_CONTINUED: u32 = 6; -+pub const NSIGCHLD: u32 = 6; -+pub const POLL_IN: u32 = 1; -+pub const POLL_OUT: u32 = 2; -+pub const POLL_MSG: u32 = 3; -+pub const POLL_ERR: u32 = 4; -+pub const POLL_PRI: u32 = 5; -+pub const POLL_HUP: u32 = 6; -+pub const NSIGPOLL: u32 = 6; -+pub const SYS_SECCOMP: u32 = 1; -+pub const SYS_USER_DISPATCH: u32 = 2; -+pub const NSIGSYS: u32 = 2; -+pub const EMT_TAGOVF: u32 = 1; -+pub const NSIGEMT: u32 = 1; -+pub const SIGEV_SIGNAL: u32 = 0; -+pub const SIGEV_NONE: u32 = 1; -+pub const SIGEV_THREAD: u32 = 2; -+pub const SIGEV_THREAD_ID: u32 = 4; -+pub const SIGEV_MAX_SIZE: u32 = 64; -+pub const SS_ONSTACK: u32 = 1; -+pub const SS_DISABLE: u32 = 2; -+pub const SS_AUTODISARM: u32 = 2147483648; -+pub const SS_FLAG_BITS: u32 = 2147483648; -+pub const S_IFMT: u32 = 61440; -+pub const S_IFSOCK: u32 = 49152; -+pub const S_IFLNK: u32 = 40960; -+pub const S_IFREG: u32 = 32768; -+pub const S_IFBLK: u32 = 24576; -+pub const S_IFDIR: u32 = 16384; -+pub const S_IFCHR: u32 = 8192; -+pub const S_IFIFO: u32 = 4096; -+pub const S_ISUID: u32 = 2048; -+pub const S_ISGID: u32 = 1024; -+pub const S_ISVTX: u32 = 512; -+pub const S_IRWXU: u32 = 448; -+pub const S_IRUSR: u32 = 256; -+pub const S_IWUSR: u32 = 128; -+pub const S_IXUSR: u32 = 64; -+pub const S_IRWXG: u32 = 56; -+pub const S_IRGRP: u32 = 32; -+pub const S_IWGRP: u32 = 16; -+pub const S_IXGRP: u32 = 8; -+pub const S_IRWXO: u32 = 7; -+pub const S_IROTH: u32 = 4; -+pub const S_IWOTH: u32 = 2; -+pub const S_IXOTH: u32 = 1; -+pub const STATX_TYPE: u32 = 1; -+pub const STATX_MODE: u32 = 2; -+pub const STATX_NLINK: u32 = 4; -+pub const STATX_UID: u32 = 8; -+pub const STATX_GID: u32 = 16; -+pub const STATX_ATIME: u32 = 32; -+pub const STATX_MTIME: u32 = 64; -+pub const STATX_CTIME: u32 = 128; -+pub const STATX_INO: u32 = 256; -+pub const STATX_SIZE: u32 = 512; -+pub const STATX_BLOCKS: u32 = 1024; -+pub const STATX_BASIC_STATS: u32 = 2047; -+pub const STATX_BTIME: u32 = 2048; -+pub const STATX_MNT_ID: u32 = 4096; -+pub const STATX_DIOALIGN: u32 = 8192; -+pub const STATX__RESERVED: u32 = 2147483648; -+pub const STATX_ALL: u32 = 4095; -+pub const STATX_ATTR_COMPRESSED: u32 = 4; -+pub const STATX_ATTR_IMMUTABLE: u32 = 16; -+pub const STATX_ATTR_APPEND: u32 = 32; -+pub const STATX_ATTR_NODUMP: u32 = 64; -+pub const STATX_ATTR_ENCRYPTED: u32 = 2048; -+pub const STATX_ATTR_AUTOMOUNT: u32 = 4096; -+pub const STATX_ATTR_MOUNT_ROOT: u32 = 8192; -+pub const STATX_ATTR_VERITY: u32 = 1048576; -+pub const STATX_ATTR_DAX: u32 = 2097152; -+pub const SI_LOAD_SHIFT: u32 = 16; -+pub const TCP_MSS_DEFAULT: u32 = 536; -+pub const TCP_MSS_DESIRED: u32 = 1220; -+pub const TCP_NODELAY: u32 = 1; -+pub const TCP_MAXSEG: u32 = 2; -+pub const TCP_CORK: u32 = 3; -+pub const TCP_KEEPIDLE: u32 = 4; -+pub const TCP_KEEPINTVL: u32 = 5; -+pub const TCP_KEEPCNT: u32 = 6; -+pub const TCP_SYNCNT: u32 = 7; -+pub const TCP_LINGER2: u32 = 8; -+pub const TCP_DEFER_ACCEPT: u32 = 9; -+pub const TCP_WINDOW_CLAMP: u32 = 10; -+pub const TCP_INFO: u32 = 11; -+pub const TCP_QUICKACK: u32 = 12; -+pub const TCP_CONGESTION: u32 = 13; -+pub const TCP_MD5SIG: u32 = 14; -+pub const TCP_THIN_LINEAR_TIMEOUTS: u32 = 16; -+pub const TCP_THIN_DUPACK: u32 = 17; -+pub const TCP_USER_TIMEOUT: u32 = 18; -+pub const TCP_REPAIR: u32 = 19; -+pub const TCP_REPAIR_QUEUE: u32 = 20; -+pub const TCP_QUEUE_SEQ: u32 = 21; -+pub const TCP_REPAIR_OPTIONS: u32 = 22; -+pub const TCP_FASTOPEN: u32 = 23; -+pub const TCP_TIMESTAMP: u32 = 24; -+pub const TCP_NOTSENT_LOWAT: u32 = 25; -+pub const TCP_CC_INFO: u32 = 26; -+pub const TCP_SAVE_SYN: u32 = 27; -+pub const TCP_SAVED_SYN: u32 = 28; -+pub const TCP_REPAIR_WINDOW: u32 = 29; -+pub const TCP_FASTOPEN_CONNECT: u32 = 30; -+pub const TCP_ULP: u32 = 31; -+pub const TCP_MD5SIG_EXT: u32 = 32; -+pub const TCP_FASTOPEN_KEY: u32 = 33; -+pub const TCP_FASTOPEN_NO_COOKIE: u32 = 34; -+pub const TCP_ZEROCOPY_RECEIVE: u32 = 35; -+pub const TCP_INQ: u32 = 36; -+pub const TCP_CM_INQ: u32 = 36; -+pub const TCP_TX_DELAY: u32 = 37; -+pub const TCP_REPAIR_ON: u32 = 1; -+pub const TCP_REPAIR_OFF: u32 = 0; -+pub const TCP_REPAIR_OFF_NO_WP: i32 = -1; -+pub const TCPI_OPT_TIMESTAMPS: u32 = 1; -+pub const TCPI_OPT_SACK: u32 = 2; -+pub const TCPI_OPT_WSCALE: u32 = 4; -+pub const TCPI_OPT_ECN: u32 = 8; -+pub const TCPI_OPT_ECN_SEEN: u32 = 16; -+pub const TCPI_OPT_SYN_DATA: u32 = 32; -+pub const TCP_MD5SIG_MAXKEYLEN: u32 = 80; -+pub const TCP_MD5SIG_FLAG_PREFIX: u32 = 1; -+pub const TCP_MD5SIG_FLAG_IFINDEX: u32 = 2; -+pub const TCP_RECEIVE_ZEROCOPY_FLAG_TLB_CLEAN_HINT: u32 = 1; -+pub const IGNBRK: u32 = 1; -+pub const BRKINT: u32 = 2; -+pub const IGNPAR: u32 = 4; -+pub const PARMRK: u32 = 8; -+pub const INPCK: u32 = 16; -+pub const ISTRIP: u32 = 32; -+pub const INLCR: u32 = 64; -+pub const IGNCR: u32 = 128; -+pub const ICRNL: u32 = 256; -+pub const IXANY: u32 = 2048; -+pub const OPOST: u32 = 1; -+pub const OCRNL: u32 = 8; -+pub const ONOCR: u32 = 16; -+pub const ONLRET: u32 = 32; -+pub const OFILL: u32 = 64; -+pub const OFDEL: u32 = 128; -+pub const B0: u32 = 0; -+pub const B50: u32 = 1; -+pub const B75: u32 = 2; -+pub const B110: u32 = 3; -+pub const B134: u32 = 4; -+pub const B150: u32 = 5; -+pub const B200: u32 = 6; -+pub const B300: u32 = 7; -+pub const B600: u32 = 8; -+pub const B1200: u32 = 9; -+pub const B1800: u32 = 10; -+pub const B2400: u32 = 11; -+pub const B4800: u32 = 12; -+pub const B9600: u32 = 13; -+pub const B19200: u32 = 14; -+pub const B38400: u32 = 15; -+pub const EXTA: u32 = 14; -+pub const EXTB: u32 = 15; -+pub const ADDRB: u32 = 536870912; -+pub const CMSPAR: u32 = 1073741824; -+pub const CRTSCTS: u32 = 2147483648; -+pub const IBSHIFT: u32 = 16; -+pub const TCOOFF: u32 = 0; -+pub const TCOON: u32 = 1; -+pub const TCIOFF: u32 = 2; -+pub const TCION: u32 = 3; -+pub const TCIFLUSH: u32 = 0; -+pub const TCOFLUSH: u32 = 1; -+pub const TCIOFLUSH: u32 = 2; -+pub const NCCS: u32 = 19; -+pub const VINTR: u32 = 0; -+pub const VQUIT: u32 = 1; -+pub const VERASE: u32 = 2; -+pub const VKILL: u32 = 3; -+pub const VEOF: u32 = 4; -+pub const VTIME: u32 = 5; -+pub const VMIN: u32 = 6; -+pub const VSWTC: u32 = 7; -+pub const VSTART: u32 = 8; -+pub const VSTOP: u32 = 9; -+pub const VSUSP: u32 = 10; -+pub const VEOL: u32 = 11; -+pub const VREPRINT: u32 = 12; -+pub const VDISCARD: u32 = 13; -+pub const VWERASE: u32 = 14; -+pub const VLNEXT: u32 = 15; -+pub const VEOL2: u32 = 16; -+pub const IUCLC: u32 = 512; -+pub const IXON: u32 = 1024; -+pub const IXOFF: u32 = 4096; -+pub const IMAXBEL: u32 = 8192; -+pub const IUTF8: u32 = 16384; -+pub const OLCUC: u32 = 2; -+pub const ONLCR: u32 = 4; -+pub const NLDLY: u32 = 256; -+pub const NL0: u32 = 0; -+pub const NL1: u32 = 256; -+pub const CRDLY: u32 = 1536; -+pub const CR0: u32 = 0; -+pub const CR1: u32 = 512; -+pub const CR2: u32 = 1024; -+pub const CR3: u32 = 1536; -+pub const TABDLY: u32 = 6144; -+pub const TAB0: u32 = 0; -+pub const TAB1: u32 = 2048; -+pub const TAB2: u32 = 4096; -+pub const TAB3: u32 = 6144; -+pub const XTABS: u32 = 6144; -+pub const BSDLY: u32 = 8192; -+pub const BS0: u32 = 0; -+pub const BS1: u32 = 8192; -+pub const VTDLY: u32 = 16384; -+pub const VT0: u32 = 0; -+pub const VT1: u32 = 16384; -+pub const FFDLY: u32 = 32768; -+pub const FF0: u32 = 0; -+pub const FF1: u32 = 32768; -+pub const CBAUD: u32 = 4111; -+pub const CSIZE: u32 = 48; -+pub const CS5: u32 = 0; -+pub const CS6: u32 = 16; -+pub const CS7: u32 = 32; -+pub const CS8: u32 = 48; -+pub const CSTOPB: u32 = 64; -+pub const CREAD: u32 = 128; -+pub const PARENB: u32 = 256; -+pub const PARODD: u32 = 512; -+pub const HUPCL: u32 = 1024; -+pub const CLOCAL: u32 = 2048; -+pub const CBAUDEX: u32 = 4096; -+pub const BOTHER: u32 = 4096; -+pub const B57600: u32 = 4097; -+pub const B115200: u32 = 4098; -+pub const B230400: u32 = 4099; -+pub const B460800: u32 = 4100; -+pub const B500000: u32 = 4101; -+pub const B576000: u32 = 4102; -+pub const B921600: u32 = 4103; -+pub const B1000000: u32 = 4104; -+pub const B1152000: u32 = 4105; -+pub const B1500000: u32 = 4106; -+pub const B2000000: u32 = 4107; -+pub const B2500000: u32 = 4108; -+pub const B3000000: u32 = 4109; -+pub const B3500000: u32 = 4110; -+pub const B4000000: u32 = 4111; -+pub const CIBAUD: u32 = 269418496; -+pub const ISIG: u32 = 1; -+pub const ICANON: u32 = 2; -+pub const XCASE: u32 = 4; -+pub const ECHO: u32 = 8; -+pub const ECHOE: u32 = 16; -+pub const ECHOK: u32 = 32; -+pub const ECHONL: u32 = 64; -+pub const NOFLSH: u32 = 128; -+pub const TOSTOP: u32 = 256; -+pub const ECHOCTL: u32 = 512; -+pub const ECHOPRT: u32 = 1024; -+pub const ECHOKE: u32 = 2048; -+pub const FLUSHO: u32 = 4096; -+pub const PENDIN: u32 = 16384; -+pub const IEXTEN: u32 = 32768; -+pub const EXTPROC: u32 = 65536; -+pub const TCSANOW: u32 = 0; -+pub const TCSADRAIN: u32 = 1; -+pub const TCSAFLUSH: u32 = 2; -+pub const TIOCPKT_DATA: u32 = 0; -+pub const TIOCPKT_FLUSHREAD: u32 = 1; -+pub const TIOCPKT_FLUSHWRITE: u32 = 2; -+pub const TIOCPKT_STOP: u32 = 4; -+pub const TIOCPKT_START: u32 = 8; -+pub const TIOCPKT_NOSTOP: u32 = 16; -+pub const TIOCPKT_DOSTOP: u32 = 32; -+pub const TIOCPKT_IOCTL: u32 = 64; -+pub const TIOCSER_TEMT: u32 = 1; -+pub const NCC: u32 = 8; -+pub const TIOCM_LE: u32 = 1; -+pub const TIOCM_DTR: u32 = 2; -+pub const TIOCM_RTS: u32 = 4; -+pub const TIOCM_ST: u32 = 8; -+pub const TIOCM_SR: u32 = 16; -+pub const TIOCM_CTS: u32 = 32; -+pub const TIOCM_CAR: u32 = 64; -+pub const TIOCM_RNG: u32 = 128; -+pub const TIOCM_DSR: u32 = 256; -+pub const TIOCM_CD: u32 = 64; -+pub const TIOCM_RI: u32 = 128; -+pub const TIOCM_OUT1: u32 = 8192; -+pub const TIOCM_OUT2: u32 = 16384; -+pub const TIOCM_LOOP: u32 = 32768; -+pub const UIO_FASTIOV: u32 = 8; -+pub const UIO_MAXIOV: u32 = 1024; -+pub const UNIX_PATH_MAX: u32 = 108; -+pub const __NR_io_setup: u32 = 0; -+pub const __NR_io_destroy: u32 = 1; -+pub const __NR_io_submit: u32 = 2; -+pub const __NR_io_cancel: u32 = 3; -+pub const __NR_io_getevents: u32 = 4; -+pub const __NR_setxattr: u32 = 5; -+pub const __NR_lsetxattr: u32 = 6; -+pub const __NR_fsetxattr: u32 = 7; -+pub const __NR_getxattr: u32 = 8; -+pub const __NR_lgetxattr: u32 = 9; -+pub const __NR_fgetxattr: u32 = 10; -+pub const __NR_listxattr: u32 = 11; -+pub const __NR_llistxattr: u32 = 12; -+pub const __NR_flistxattr: u32 = 13; -+pub const __NR_removexattr: u32 = 14; -+pub const __NR_lremovexattr: u32 = 15; -+pub const __NR_fremovexattr: u32 = 16; -+pub const __NR_getcwd: u32 = 17; -+pub const __NR_lookup_dcookie: u32 = 18; -+pub const __NR_eventfd2: u32 = 19; -+pub const __NR_epoll_create1: u32 = 20; -+pub const __NR_epoll_ctl: u32 = 21; -+pub const __NR_epoll_pwait: u32 = 22; -+pub const __NR_dup: u32 = 23; -+pub const __NR_dup3: u32 = 24; -+pub const __NR3264_fcntl: u32 = 25; -+pub const __NR_inotify_init1: u32 = 26; -+pub const __NR_inotify_add_watch: u32 = 27; -+pub const __NR_inotify_rm_watch: u32 = 28; -+pub const __NR_ioctl: u32 = 29; -+pub const __NR_ioprio_set: u32 = 30; -+pub const __NR_ioprio_get: u32 = 31; -+pub const __NR_flock: u32 = 32; -+pub const __NR_mknodat: u32 = 33; -+pub const __NR_mkdirat: u32 = 34; -+pub const __NR_unlinkat: u32 = 35; -+pub const __NR_symlinkat: u32 = 36; -+pub const __NR_linkat: u32 = 37; -+pub const __NR_umount2: u32 = 39; -+pub const __NR_mount: u32 = 40; -+pub const __NR_pivot_root: u32 = 41; -+pub const __NR_nfsservctl: u32 = 42; -+pub const __NR3264_statfs: u32 = 43; -+pub const __NR3264_fstatfs: u32 = 44; -+pub const __NR3264_truncate: u32 = 45; -+pub const __NR3264_ftruncate: u32 = 46; -+pub const __NR_fallocate: u32 = 47; -+pub const __NR_faccessat: u32 = 48; -+pub const __NR_chdir: u32 = 49; -+pub const __NR_fchdir: u32 = 50; -+pub const __NR_chroot: u32 = 51; -+pub const __NR_fchmod: u32 = 52; -+pub const __NR_fchmodat: u32 = 53; -+pub const __NR_fchownat: u32 = 54; -+pub const __NR_fchown: u32 = 55; -+pub const __NR_openat: u32 = 56; -+pub const __NR_close: u32 = 57; -+pub const __NR_vhangup: u32 = 58; -+pub const __NR_pipe2: u32 = 59; -+pub const __NR_quotactl: u32 = 60; -+pub const __NR_getdents64: u32 = 61; -+pub const __NR3264_lseek: u32 = 62; -+pub const __NR_read: u32 = 63; -+pub const __NR_write: u32 = 64; -+pub const __NR_readv: u32 = 65; -+pub const __NR_writev: u32 = 66; -+pub const __NR_pread64: u32 = 67; -+pub const __NR_pwrite64: u32 = 68; -+pub const __NR_preadv: u32 = 69; -+pub const __NR_pwritev: u32 = 70; -+pub const __NR3264_sendfile: u32 = 71; -+pub const __NR_pselect6: u32 = 72; -+pub const __NR_ppoll: u32 = 73; -+pub const __NR_signalfd4: u32 = 74; -+pub const __NR_vmsplice: u32 = 75; -+pub const __NR_splice: u32 = 76; -+pub const __NR_tee: u32 = 77; -+pub const __NR_readlinkat: u32 = 78; -+pub const __NR_sync: u32 = 81; -+pub const __NR_fsync: u32 = 82; -+pub const __NR_fdatasync: u32 = 83; -+pub const __NR_sync_file_range: u32 = 84; -+pub const __NR_timerfd_create: u32 = 85; -+pub const __NR_timerfd_settime: u32 = 86; -+pub const __NR_timerfd_gettime: u32 = 87; -+pub const __NR_utimensat: u32 = 88; -+pub const __NR_acct: u32 = 89; -+pub const __NR_capget: u32 = 90; -+pub const __NR_capset: u32 = 91; -+pub const __NR_personality: u32 = 92; -+pub const __NR_exit: u32 = 93; -+pub const __NR_exit_group: u32 = 94; -+pub const __NR_waitid: u32 = 95; -+pub const __NR_set_tid_address: u32 = 96; -+pub const __NR_unshare: u32 = 97; -+pub const __NR_futex: u32 = 98; -+pub const __NR_set_robust_list: u32 = 99; -+pub const __NR_get_robust_list: u32 = 100; -+pub const __NR_nanosleep: u32 = 101; -+pub const __NR_getitimer: u32 = 102; -+pub const __NR_setitimer: u32 = 103; -+pub const __NR_kexec_load: u32 = 104; -+pub const __NR_init_module: u32 = 105; -+pub const __NR_delete_module: u32 = 106; -+pub const __NR_timer_create: u32 = 107; -+pub const __NR_timer_gettime: u32 = 108; -+pub const __NR_timer_getoverrun: u32 = 109; -+pub const __NR_timer_settime: u32 = 110; -+pub const __NR_timer_delete: u32 = 111; -+pub const __NR_clock_settime: u32 = 112; -+pub const __NR_clock_gettime: u32 = 113; -+pub const __NR_clock_getres: u32 = 114; -+pub const __NR_clock_nanosleep: u32 = 115; -+pub const __NR_syslog: u32 = 116; -+pub const __NR_ptrace: u32 = 117; -+pub const __NR_sched_setparam: u32 = 118; -+pub const __NR_sched_setscheduler: u32 = 119; -+pub const __NR_sched_getscheduler: u32 = 120; -+pub const __NR_sched_getparam: u32 = 121; -+pub const __NR_sched_setaffinity: u32 = 122; -+pub const __NR_sched_getaffinity: u32 = 123; -+pub const __NR_sched_yield: u32 = 124; -+pub const __NR_sched_get_priority_max: u32 = 125; -+pub const __NR_sched_get_priority_min: u32 = 126; -+pub const __NR_sched_rr_get_interval: u32 = 127; -+pub const __NR_restart_syscall: u32 = 128; -+pub const __NR_kill: u32 = 129; -+pub const __NR_tkill: u32 = 130; -+pub const __NR_tgkill: u32 = 131; -+pub const __NR_sigaltstack: u32 = 132; -+pub const __NR_rt_sigsuspend: u32 = 133; -+pub const __NR_rt_sigaction: u32 = 134; -+pub const __NR_rt_sigprocmask: u32 = 135; -+pub const __NR_rt_sigpending: u32 = 136; -+pub const __NR_rt_sigtimedwait: u32 = 137; -+pub const __NR_rt_sigqueueinfo: u32 = 138; -+pub const __NR_rt_sigreturn: u32 = 139; -+pub const __NR_setpriority: u32 = 140; -+pub const __NR_getpriority: u32 = 141; -+pub const __NR_reboot: u32 = 142; -+pub const __NR_setregid: u32 = 143; -+pub const __NR_setgid: u32 = 144; -+pub const __NR_setreuid: u32 = 145; -+pub const __NR_setuid: u32 = 146; -+pub const __NR_setresuid: u32 = 147; -+pub const __NR_getresuid: u32 = 148; -+pub const __NR_setresgid: u32 = 149; -+pub const __NR_getresgid: u32 = 150; -+pub const __NR_setfsuid: u32 = 151; -+pub const __NR_setfsgid: u32 = 152; -+pub const __NR_times: u32 = 153; -+pub const __NR_setpgid: u32 = 154; -+pub const __NR_getpgid: u32 = 155; -+pub const __NR_getsid: u32 = 156; -+pub const __NR_setsid: u32 = 157; -+pub const __NR_getgroups: u32 = 158; -+pub const __NR_setgroups: u32 = 159; -+pub const __NR_uname: u32 = 160; -+pub const __NR_sethostname: u32 = 161; -+pub const __NR_setdomainname: u32 = 162; -+pub const __NR_getrusage: u32 = 165; -+pub const __NR_umask: u32 = 166; -+pub const __NR_prctl: u32 = 167; -+pub const __NR_getcpu: u32 = 168; -+pub const __NR_gettimeofday: u32 = 169; -+pub const __NR_settimeofday: u32 = 170; -+pub const __NR_adjtimex: u32 = 171; -+pub const __NR_getpid: u32 = 172; -+pub const __NR_getppid: u32 = 173; -+pub const __NR_getuid: u32 = 174; -+pub const __NR_geteuid: u32 = 175; -+pub const __NR_getgid: u32 = 176; -+pub const __NR_getegid: u32 = 177; -+pub const __NR_gettid: u32 = 178; -+pub const __NR_sysinfo: u32 = 179; -+pub const __NR_mq_open: u32 = 180; -+pub const __NR_mq_unlink: u32 = 181; -+pub const __NR_mq_timedsend: u32 = 182; -+pub const __NR_mq_timedreceive: u32 = 183; -+pub const __NR_mq_notify: u32 = 184; -+pub const __NR_mq_getsetattr: u32 = 185; -+pub const __NR_msgget: u32 = 186; -+pub const __NR_msgctl: u32 = 187; -+pub const __NR_msgrcv: u32 = 188; -+pub const __NR_msgsnd: u32 = 189; -+pub const __NR_semget: u32 = 190; -+pub const __NR_semctl: u32 = 191; -+pub const __NR_semtimedop: u32 = 192; -+pub const __NR_semop: u32 = 193; -+pub const __NR_shmget: u32 = 194; -+pub const __NR_shmctl: u32 = 195; -+pub const __NR_shmat: u32 = 196; -+pub const __NR_shmdt: u32 = 197; -+pub const __NR_socket: u32 = 198; -+pub const __NR_socketpair: u32 = 199; -+pub const __NR_bind: u32 = 200; -+pub const __NR_listen: u32 = 201; -+pub const __NR_accept: u32 = 202; -+pub const __NR_connect: u32 = 203; -+pub const __NR_getsockname: u32 = 204; -+pub const __NR_getpeername: u32 = 205; -+pub const __NR_sendto: u32 = 206; -+pub const __NR_recvfrom: u32 = 207; -+pub const __NR_setsockopt: u32 = 208; -+pub const __NR_getsockopt: u32 = 209; -+pub const __NR_shutdown: u32 = 210; -+pub const __NR_sendmsg: u32 = 211; -+pub const __NR_recvmsg: u32 = 212; -+pub const __NR_readahead: u32 = 213; -+pub const __NR_brk: u32 = 214; -+pub const __NR_munmap: u32 = 215; -+pub const __NR_mremap: u32 = 216; -+pub const __NR_add_key: u32 = 217; -+pub const __NR_request_key: u32 = 218; -+pub const __NR_keyctl: u32 = 219; -+pub const __NR_clone: u32 = 220; -+pub const __NR_execve: u32 = 221; -+pub const __NR3264_mmap: u32 = 222; -+pub const __NR3264_fadvise64: u32 = 223; -+pub const __NR_swapon: u32 = 224; -+pub const __NR_swapoff: u32 = 225; -+pub const __NR_mprotect: u32 = 226; -+pub const __NR_msync: u32 = 227; -+pub const __NR_mlock: u32 = 228; -+pub const __NR_munlock: u32 = 229; -+pub const __NR_mlockall: u32 = 230; -+pub const __NR_munlockall: u32 = 231; -+pub const __NR_mincore: u32 = 232; -+pub const __NR_madvise: u32 = 233; -+pub const __NR_remap_file_pages: u32 = 234; -+pub const __NR_mbind: u32 = 235; -+pub const __NR_get_mempolicy: u32 = 236; -+pub const __NR_set_mempolicy: u32 = 237; -+pub const __NR_migrate_pages: u32 = 238; -+pub const __NR_move_pages: u32 = 239; -+pub const __NR_rt_tgsigqueueinfo: u32 = 240; -+pub const __NR_perf_event_open: u32 = 241; -+pub const __NR_accept4: u32 = 242; -+pub const __NR_recvmmsg: u32 = 243; -+pub const __NR_arch_specific_syscall: u32 = 244; -+pub const __NR_wait4: u32 = 260; -+pub const __NR_prlimit64: u32 = 261; -+pub const __NR_fanotify_init: u32 = 262; -+pub const __NR_fanotify_mark: u32 = 263; -+pub const __NR_name_to_handle_at: u32 = 264; -+pub const __NR_open_by_handle_at: u32 = 265; -+pub const __NR_clock_adjtime: u32 = 266; -+pub const __NR_syncfs: u32 = 267; -+pub const __NR_setns: u32 = 268; -+pub const __NR_sendmmsg: u32 = 269; -+pub const __NR_process_vm_readv: u32 = 270; -+pub const __NR_process_vm_writev: u32 = 271; -+pub const __NR_kcmp: u32 = 272; -+pub const __NR_finit_module: u32 = 273; -+pub const __NR_sched_setattr: u32 = 274; -+pub const __NR_sched_getattr: u32 = 275; -+pub const __NR_renameat2: u32 = 276; -+pub const __NR_seccomp: u32 = 277; -+pub const __NR_getrandom: u32 = 278; -+pub const __NR_memfd_create: u32 = 279; -+pub const __NR_bpf: u32 = 280; -+pub const __NR_execveat: u32 = 281; -+pub const __NR_userfaultfd: u32 = 282; -+pub const __NR_membarrier: u32 = 283; -+pub const __NR_mlock2: u32 = 284; -+pub const __NR_copy_file_range: u32 = 285; -+pub const __NR_preadv2: u32 = 286; -+pub const __NR_pwritev2: u32 = 287; -+pub const __NR_pkey_mprotect: u32 = 288; -+pub const __NR_pkey_alloc: u32 = 289; -+pub const __NR_pkey_free: u32 = 290; -+pub const __NR_statx: u32 = 291; -+pub const __NR_io_pgetevents: u32 = 292; -+pub const __NR_rseq: u32 = 293; -+pub const __NR_kexec_file_load: u32 = 294; -+pub const __NR_pidfd_send_signal: u32 = 424; -+pub const __NR_io_uring_setup: u32 = 425; -+pub const __NR_io_uring_enter: u32 = 426; -+pub const __NR_io_uring_register: u32 = 427; -+pub const __NR_open_tree: u32 = 428; -+pub const __NR_move_mount: u32 = 429; -+pub const __NR_fsopen: u32 = 430; -+pub const __NR_fsconfig: u32 = 431; -+pub const __NR_fsmount: u32 = 432; -+pub const __NR_fspick: u32 = 433; -+pub const __NR_pidfd_open: u32 = 434; -+pub const __NR_clone3: u32 = 435; -+pub const __NR_close_range: u32 = 436; -+pub const __NR_openat2: u32 = 437; -+pub const __NR_pidfd_getfd: u32 = 438; -+pub const __NR_faccessat2: u32 = 439; -+pub const __NR_process_madvise: u32 = 440; -+pub const __NR_epoll_pwait2: u32 = 441; -+pub const __NR_mount_setattr: u32 = 442; -+pub const __NR_quotactl_fd: u32 = 443; -+pub const __NR_landlock_create_ruleset: u32 = 444; -+pub const __NR_landlock_add_rule: u32 = 445; -+pub const __NR_landlock_restrict_self: u32 = 446; -+pub const __NR_process_mrelease: u32 = 448; -+pub const __NR_futex_waitv: u32 = 449; -+pub const __NR_set_mempolicy_home_node: u32 = 450; -+pub const __NR_syscalls: u32 = 451; -+pub const __NR_fcntl: u32 = 25; -+pub const __NR_statfs: u32 = 43; -+pub const __NR_fstatfs: u32 = 44; -+pub const __NR_truncate: u32 = 45; -+pub const __NR_ftruncate: u32 = 46; -+pub const __NR_lseek: u32 = 62; -+pub const __NR_sendfile: u32 = 71; -+pub const __NR_mmap: u32 = 222; -+pub const __NR_fadvise64: u32 = 223; -+pub const __OLD_UTS_LEN: u32 = 8; -+pub const __NEW_UTS_LEN: u32 = 64; -+pub const WNOHANG: u32 = 1; -+pub const WUNTRACED: u32 = 2; -+pub const WSTOPPED: u32 = 2; -+pub const WEXITED: u32 = 4; -+pub const WCONTINUED: u32 = 8; -+pub const WNOWAIT: u32 = 16777216; -+pub const __WNOTHREAD: u32 = 536870912; -+pub const __WALL: u32 = 1073741824; -+pub const __WCLONE: u32 = 2147483648; -+pub const P_ALL: u32 = 0; -+pub const P_PID: u32 = 1; -+pub const P_PGID: u32 = 2; -+pub const P_PIDFD: u32 = 3; -+pub const MFD_CLOEXEC: u32 = 1; -+pub const MFD_ALLOW_SEALING: u32 = 2; -+pub const MFD_HUGETLB: u32 = 4; -+pub const MFD_HUGE_SHIFT: u32 = 26; -+pub const MFD_HUGE_MASK: u32 = 63; -+pub const MFD_HUGE_64KB: u32 = 1073741824; -+pub const MFD_HUGE_512KB: u32 = 1275068416; -+pub const MFD_HUGE_1MB: u32 = 1342177280; -+pub const MFD_HUGE_2MB: u32 = 1409286144; -+pub const MFD_HUGE_8MB: u32 = 1543503872; -+pub const MFD_HUGE_16MB: u32 = 1610612736; -+pub const MFD_HUGE_32MB: u32 = 1677721600; -+pub const MFD_HUGE_256MB: u32 = 1879048192; -+pub const MFD_HUGE_512MB: u32 = 1946157056; -+pub const MFD_HUGE_1GB: u32 = 2013265920; -+pub const MFD_HUGE_2GB: u32 = 2080374784; -+pub const MFD_HUGE_16GB: u32 = 2281701376; -+pub const TFD_TIMER_ABSTIME: u32 = 1; -+pub const TFD_TIMER_CANCEL_ON_SET: u32 = 2; -+pub const TFD_CLOEXEC: u32 = 524288; -+pub const TFD_NONBLOCK: u32 = 2048; -+pub const USERFAULTFD_IOC: u32 = 170; -+pub const _UFFDIO_REGISTER: u32 = 0; -+pub const _UFFDIO_UNREGISTER: u32 = 1; -+pub const _UFFDIO_WAKE: u32 = 2; -+pub const _UFFDIO_COPY: u32 = 3; -+pub const _UFFDIO_ZEROPAGE: u32 = 4; -+pub const _UFFDIO_WRITEPROTECT: u32 = 6; -+pub const _UFFDIO_CONTINUE: u32 = 7; -+pub const _UFFDIO_API: u32 = 63; -+pub const UFFDIO: u32 = 170; -+pub const UFFD_EVENT_PAGEFAULT: u32 = 18; -+pub const UFFD_EVENT_FORK: u32 = 19; -+pub const UFFD_EVENT_REMAP: u32 = 20; -+pub const UFFD_EVENT_REMOVE: u32 = 21; -+pub const UFFD_EVENT_UNMAP: u32 = 22; -+pub const UFFD_PAGEFAULT_FLAG_WRITE: u32 = 1; -+pub const UFFD_PAGEFAULT_FLAG_WP: u32 = 2; -+pub const UFFD_PAGEFAULT_FLAG_MINOR: u32 = 4; -+pub const UFFD_FEATURE_PAGEFAULT_FLAG_WP: u32 = 1; -+pub const UFFD_FEATURE_EVENT_FORK: u32 = 2; -+pub const UFFD_FEATURE_EVENT_REMAP: u32 = 4; -+pub const UFFD_FEATURE_EVENT_REMOVE: u32 = 8; -+pub const UFFD_FEATURE_MISSING_HUGETLBFS: u32 = 16; -+pub const UFFD_FEATURE_MISSING_SHMEM: u32 = 32; -+pub const UFFD_FEATURE_EVENT_UNMAP: u32 = 64; -+pub const UFFD_FEATURE_SIGBUS: u32 = 128; -+pub const UFFD_FEATURE_THREAD_ID: u32 = 256; -+pub const UFFD_FEATURE_MINOR_HUGETLBFS: u32 = 512; -+pub const UFFD_FEATURE_MINOR_SHMEM: u32 = 1024; -+pub const UFFD_FEATURE_EXACT_ADDRESS: u32 = 2048; -+pub const UFFD_FEATURE_WP_HUGETLBFS_SHMEM: u32 = 4096; -+pub const UFFD_USER_MODE_ONLY: u32 = 1; -+pub const IORING_FILE_INDEX_ALLOC: i32 = -1; -+pub const IORING_SETUP_IOPOLL: u32 = 1; -+pub const IORING_SETUP_SQPOLL: u32 = 2; -+pub const IORING_SETUP_SQ_AFF: u32 = 4; -+pub const IORING_SETUP_CQSIZE: u32 = 8; -+pub const IORING_SETUP_CLAMP: u32 = 16; -+pub const IORING_SETUP_ATTACH_WQ: u32 = 32; -+pub const IORING_SETUP_R_DISABLED: u32 = 64; -+pub const IORING_SETUP_SUBMIT_ALL: u32 = 128; -+pub const IORING_SETUP_COOP_TASKRUN: u32 = 256; -+pub const IORING_SETUP_TASKRUN_FLAG: u32 = 512; -+pub const IORING_SETUP_SQE128: u32 = 1024; -+pub const IORING_SETUP_CQE32: u32 = 2048; -+pub const IORING_SETUP_SINGLE_ISSUER: u32 = 4096; -+pub const IORING_SETUP_DEFER_TASKRUN: u32 = 8192; -+pub const IORING_URING_CMD_FIXED: u32 = 1; -+pub const IORING_FSYNC_DATASYNC: u32 = 1; -+pub const IORING_TIMEOUT_ABS: u32 = 1; -+pub const IORING_TIMEOUT_UPDATE: u32 = 2; -+pub const IORING_TIMEOUT_BOOTTIME: u32 = 4; -+pub const IORING_TIMEOUT_REALTIME: u32 = 8; -+pub const IORING_LINK_TIMEOUT_UPDATE: u32 = 16; -+pub const IORING_TIMEOUT_ETIME_SUCCESS: u32 = 32; -+pub const IORING_TIMEOUT_CLOCK_MASK: u32 = 12; -+pub const IORING_TIMEOUT_UPDATE_MASK: u32 = 18; -+pub const SPLICE_F_FD_IN_FIXED: u32 = 2147483648; -+pub const IORING_POLL_ADD_MULTI: u32 = 1; -+pub const IORING_POLL_UPDATE_EVENTS: u32 = 2; -+pub const IORING_POLL_UPDATE_USER_DATA: u32 = 4; -+pub const IORING_POLL_ADD_LEVEL: u32 = 8; -+pub const IORING_ASYNC_CANCEL_ALL: u32 = 1; -+pub const IORING_ASYNC_CANCEL_FD: u32 = 2; -+pub const IORING_ASYNC_CANCEL_ANY: u32 = 4; -+pub const IORING_ASYNC_CANCEL_FD_FIXED: u32 = 8; -+pub const IORING_RECVSEND_POLL_FIRST: u32 = 1; -+pub const IORING_RECV_MULTISHOT: u32 = 2; -+pub const IORING_RECVSEND_FIXED_BUF: u32 = 4; -+pub const IORING_SEND_ZC_REPORT_USAGE: u32 = 8; -+pub const IORING_NOTIF_USAGE_ZC_COPIED: u32 = 2147483648; -+pub const IORING_ACCEPT_MULTISHOT: u32 = 1; -+pub const IORING_MSG_RING_CQE_SKIP: u32 = 1; -+pub const IORING_CQE_F_BUFFER: u32 = 1; -+pub const IORING_CQE_F_MORE: u32 = 2; -+pub const IORING_CQE_F_SOCK_NONEMPTY: u32 = 4; -+pub const IORING_CQE_F_NOTIF: u32 = 8; -+pub const IORING_OFF_SQ_RING: u32 = 0; -+pub const IORING_OFF_CQ_RING: u32 = 134217728; -+pub const IORING_OFF_SQES: u32 = 268435456; -+pub const IORING_SQ_NEED_WAKEUP: u32 = 1; -+pub const IORING_SQ_CQ_OVERFLOW: u32 = 2; -+pub const IORING_SQ_TASKRUN: u32 = 4; -+pub const IORING_CQ_EVENTFD_DISABLED: u32 = 1; -+pub const IORING_ENTER_GETEVENTS: u32 = 1; -+pub const IORING_ENTER_SQ_WAKEUP: u32 = 2; -+pub const IORING_ENTER_SQ_WAIT: u32 = 4; -+pub const IORING_ENTER_EXT_ARG: u32 = 8; -+pub const IORING_ENTER_REGISTERED_RING: u32 = 16; -+pub const IORING_FEAT_SINGLE_MMAP: u32 = 1; -+pub const IORING_FEAT_NODROP: u32 = 2; -+pub const IORING_FEAT_SUBMIT_STABLE: u32 = 4; -+pub const IORING_FEAT_RW_CUR_POS: u32 = 8; -+pub const IORING_FEAT_CUR_PERSONALITY: u32 = 16; -+pub const IORING_FEAT_FAST_POLL: u32 = 32; -+pub const IORING_FEAT_POLL_32BITS: u32 = 64; -+pub const IORING_FEAT_SQPOLL_NONFIXED: u32 = 128; -+pub const IORING_FEAT_EXT_ARG: u32 = 256; -+pub const IORING_FEAT_NATIVE_WORKERS: u32 = 512; -+pub const IORING_FEAT_RSRC_TAGS: u32 = 1024; -+pub const IORING_FEAT_CQE_SKIP: u32 = 2048; -+pub const IORING_FEAT_LINKED_FILE: u32 = 4096; -+pub const IORING_RSRC_REGISTER_SPARSE: u32 = 1; -+pub const IORING_REGISTER_FILES_SKIP: i32 = -2; -+pub const IO_URING_OP_SUPPORTED: u32 = 1; -+pub const DT_UNKNOWN: u32 = 0; -+pub const DT_FIFO: u32 = 1; -+pub const DT_CHR: u32 = 2; -+pub const DT_DIR: u32 = 4; -+pub const DT_BLK: u32 = 6; -+pub const DT_REG: u32 = 8; -+pub const DT_LNK: u32 = 10; -+pub const DT_SOCK: u32 = 12; -+pub const SHUT_RD: u32 = 0; -+pub const SHUT_WR: u32 = 1; -+pub const SHUT_RDWR: u32 = 2; -+pub const STAT_HAVE_NSEC: u32 = 1; -+pub const SOCK_STREAM: u32 = 1; -+pub const SOCK_DGRAM: u32 = 2; -+pub const SOCK_RAW: u32 = 3; -+pub const SOCK_RDM: u32 = 4; -+pub const SOCK_SEQPACKET: u32 = 5; -+pub const F_OK: u32 = 0; -+pub const R_OK: u32 = 4; -+pub const W_OK: u32 = 2; -+pub const X_OK: u32 = 1; -+pub const UTIME_NOW: u32 = 1073741823; -+pub const UTIME_OMIT: u32 = 1073741822; -+pub const MSG_DONTWAIT: u32 = 64; -+pub const AF_UNSPEC: u32 = 0; -+pub const AF_UNIX: u32 = 1; -+pub const AF_INET: u32 = 2; -+pub const AF_AX25: u32 = 3; -+pub const AF_IPX: u32 = 4; -+pub const AF_APPLETALK: u32 = 5; -+pub const AF_NETROM: u32 = 6; -+pub const AF_BRIDGE: u32 = 7; -+pub const AF_ATMPVC: u32 = 8; -+pub const AF_X25: u32 = 9; -+pub const AF_INET6: u32 = 10; -+pub const AF_ROSE: u32 = 11; -+pub const AF_DECnet: u32 = 12; -+pub const AF_NETBEUI: u32 = 13; -+pub const AF_SECURITY: u32 = 14; -+pub const AF_KEY: u32 = 15; -+pub const AF_NETLINK: u32 = 16; -+pub const AF_PACKET: u32 = 17; -+pub const AF_ASH: u32 = 18; -+pub const AF_ECONET: u32 = 19; -+pub const AF_ATMSVC: u32 = 20; -+pub const AF_RDS: u32 = 21; -+pub const AF_SNA: u32 = 22; -+pub const AF_IRDA: u32 = 23; -+pub const AF_PPPOX: u32 = 24; -+pub const AF_WANPIPE: u32 = 25; -+pub const AF_LLC: u32 = 26; -+pub const AF_CAN: u32 = 29; -+pub const AF_TIPC: u32 = 30; -+pub const AF_BLUETOOTH: u32 = 31; -+pub const AF_IUCV: u32 = 32; -+pub const AF_RXRPC: u32 = 33; -+pub const AF_ISDN: u32 = 34; -+pub const AF_PHONET: u32 = 35; -+pub const AF_IEEE802154: u32 = 36; -+pub const AF_MAX: u32 = 37; -+pub const MSG_OOB: u32 = 1; -+pub const MSG_PEEK: u32 = 2; -+pub const MSG_DONTROUTE: u32 = 4; -+pub const MSG_CTRUNC: u32 = 8; -+pub const MSG_PROBE: u32 = 16; -+pub const MSG_TRUNC: u32 = 32; -+pub const MSG_EOR: u32 = 128; -+pub const MSG_WAITALL: u32 = 256; -+pub const MSG_FIN: u32 = 512; -+pub const MSG_SYN: u32 = 1024; -+pub const MSG_CONFIRM: u32 = 2048; -+pub const MSG_RST: u32 = 4096; -+pub const MSG_ERRQUEUE: u32 = 8192; -+pub const MSG_NOSIGNAL: u32 = 16384; -+pub const MSG_MORE: u32 = 32768; -+pub const MSG_CMSG_CLOEXEC: u32 = 1073741824; -+pub const STDIN_FILENO: u32 = 0; -+pub const STDOUT_FILENO: u32 = 1; -+pub const STDERR_FILENO: u32 = 2; -+pub const RWF_HIPRI: u32 = 1; -+pub const RWF_DSYNC: u32 = 2; -+pub const RWF_SYNC: u32 = 4; -+pub const RWF_NOWAIT: u32 = 8; -+pub const RWF_APPEND: u32 = 16; -+pub const EFD_SEMAPHORE: u32 = 1; -+pub const EFD_CLOEXEC: u32 = 524288; -+pub const EFD_NONBLOCK: u32 = 2048; -+pub const EPOLLIN: u32 = 1; -+pub const EPOLLPRI: u32 = 2; -+pub const EPOLLOUT: u32 = 4; -+pub const EPOLLERR: u32 = 8; -+pub const EPOLLHUP: u32 = 16; -+pub const EPOLLNVAL: u32 = 32; -+pub const EPOLLRDNORM: u32 = 64; -+pub const EPOLLRDBAND: u32 = 128; -+pub const EPOLLWRNORM: u32 = 256; -+pub const EPOLLWRBAND: u32 = 512; -+pub const EPOLLMSG: u32 = 1024; -+pub const EPOLLRDHUP: u32 = 8192; -+pub const EPOLLEXCLUSIVE: u32 = 268435456; -+pub const EPOLLWAKEUP: u32 = 536870912; -+pub const EPOLLONESHOT: u32 = 1073741824; -+pub const EPOLLET: u32 = 2147483648; -+pub const TFD_SHARED_FCNTL_FLAGS: u32 = 526336; -+pub const TFD_CREATE_FLAGS: u32 = 526336; -+pub const TFD_SETTIME_FLAGS: u32 = 1; -+pub const SCM_RIGHTS: u32 = 1; -+pub const SCM_CREDENTIALS: u32 = 2; -+pub const SCM_SECURITY: u32 = 3; -+pub const UFFD_API: u32 = 170; -+pub const UFFDIO_REGISTER_MODE_MISSING: u32 = 1; -+pub const UFFDIO_REGISTER_MODE_WP: u32 = 2; -+pub const UFFDIO_REGISTER_MODE_MINOR: u32 = 4; -+pub const UFFDIO_COPY_MODE_DONTWAKE: u32 = 1; -+pub const UFFDIO_COPY_MODE_WP: u32 = 2; -+pub const UFFDIO_ZEROPAGE_MODE_DONTWAKE: u32 = 1; -+pub const SPLICE_F_MOVE: u32 = 1; -+pub const SPLICE_F_NONBLOCK: u32 = 2; -+pub const SPLICE_F_MORE: u32 = 4; -+pub const SPLICE_F_GIFT: u32 = 8; -+pub const MNT_FORCE: u32 = 1; -+pub const MNT_DETACH: u32 = 2; -+pub const MNT_EXPIRE: u32 = 4; -+pub const UMOUNT_NOFOLLOW: u32 = 8; -+pub const UMOUNT_UNUSED: u32 = 2147483648; -+pub type size_t = crate::ctypes::c_ulong; -+pub type ssize_t = crate::ctypes::c_long; -+pub type __s8 = crate::ctypes::c_schar; -+pub type __u8 = crate::ctypes::c_uchar; -+pub type __s16 = crate::ctypes::c_short; -+pub type __u16 = crate::ctypes::c_ushort; -+pub type __s32 = crate::ctypes::c_int; -+pub type __u32 = crate::ctypes::c_uint; -+pub type __s64 = crate::ctypes::c_longlong; -+pub type __u64 = crate::ctypes::c_ulonglong; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fd_set { -+pub fds_bits: [crate::ctypes::c_ulong; 16usize], -+} -+pub type __kernel_sighandler_t = ::core::option::Option; -+pub type __kernel_key_t = crate::ctypes::c_int; -+pub type __kernel_mqd_t = crate::ctypes::c_int; -+pub type __kernel_long_t = crate::ctypes::c_long; -+pub type __kernel_ulong_t = crate::ctypes::c_ulong; -+pub type __kernel_ino_t = __kernel_ulong_t; -+pub type __kernel_mode_t = crate::ctypes::c_uint; -+pub type __kernel_pid_t = crate::ctypes::c_int; -+pub type __kernel_ipc_pid_t = crate::ctypes::c_int; -+pub type __kernel_uid_t = crate::ctypes::c_uint; -+pub type __kernel_gid_t = crate::ctypes::c_uint; -+pub type __kernel_suseconds_t = __kernel_long_t; -+pub type __kernel_daddr_t = crate::ctypes::c_int; -+pub type __kernel_uid32_t = crate::ctypes::c_uint; -+pub type __kernel_gid32_t = crate::ctypes::c_uint; -+pub type __kernel_old_uid_t = __kernel_uid_t; -+pub type __kernel_old_gid_t = __kernel_gid_t; -+pub type __kernel_old_dev_t = crate::ctypes::c_uint; -+pub type __kernel_size_t = __kernel_ulong_t; -+pub type __kernel_ssize_t = __kernel_long_t; -+pub type __kernel_ptrdiff_t = __kernel_long_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fsid_t { -+pub val: [crate::ctypes::c_int; 2usize], -+} -+pub type __kernel_off_t = __kernel_long_t; -+pub type __kernel_loff_t = crate::ctypes::c_longlong; -+pub type __kernel_old_time_t = __kernel_long_t; -+pub type __kernel_time_t = __kernel_long_t; -+pub type __kernel_time64_t = crate::ctypes::c_longlong; -+pub type __kernel_clock_t = __kernel_long_t; -+pub type __kernel_timer_t = crate::ctypes::c_int; -+pub type __kernel_clockid_t = crate::ctypes::c_int; -+pub type __kernel_caddr_t = *mut crate::ctypes::c_char; -+pub type __kernel_uid16_t = crate::ctypes::c_ushort; -+pub type __kernel_gid16_t = crate::ctypes::c_ushort; -+pub type __le16 = __u16; -+pub type __be16 = __u16; -+pub type __le32 = __u32; -+pub type __be32 = __u32; -+pub type __le64 = __u64; -+pub type __be64 = __u64; -+pub type __sum16 = __u16; -+pub type __wsum = __u32; -+pub type __poll_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __user_cap_header_struct { -+pub version: __u32, -+pub pid: crate::ctypes::c_int, -+} -+pub type cap_user_header_t = *mut __user_cap_header_struct; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __user_cap_data_struct { -+pub effective: __u32, -+pub permitted: __u32, -+pub inheritable: __u32, -+} -+pub type cap_user_data_t = *mut __user_cap_data_struct; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_cap_data { -+pub magic_etc: __le32, -+pub data: [vfs_cap_data__bindgen_ty_1; 2usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_cap_data__bindgen_ty_1 { -+pub permitted: __le32, -+pub inheritable: __le32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_ns_cap_data { -+pub magic_etc: __le32, -+pub data: [vfs_ns_cap_data__bindgen_ty_1; 2usize], -+pub rootid: __le32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct vfs_ns_cap_data__bindgen_ty_1 { -+pub permitted: __le32, -+pub inheritable: __le32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct f_owner_ex { -+pub type_: crate::ctypes::c_int, -+pub pid: __kernel_pid_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct flock { -+pub l_type: crate::ctypes::c_short, -+pub l_whence: crate::ctypes::c_short, -+pub l_start: __kernel_off_t, -+pub l_len: __kernel_off_t, -+pub l_pid: __kernel_pid_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct flock64 { -+pub l_type: crate::ctypes::c_short, -+pub l_whence: crate::ctypes::c_short, -+pub l_start: __kernel_loff_t, -+pub l_len: __kernel_loff_t, -+pub l_pid: __kernel_pid_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct open_how { -+pub flags: __u64, -+pub mode: __u64, -+pub resolve: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct epoll_event { -+pub events: __poll_t, -+pub data: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fscrypt_policy_v1 { -+pub version: __u8, -+pub contents_encryption_mode: __u8, -+pub filenames_encryption_mode: __u8, -+pub flags: __u8, -+pub master_key_descriptor: [__u8; 8usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fscrypt_key { -+pub mode: __u32, -+pub raw: [__u8; 64usize], -+pub size: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fscrypt_policy_v2 { -+pub version: __u8, -+pub contents_encryption_mode: __u8, -+pub filenames_encryption_mode: __u8, -+pub flags: __u8, -+pub __reserved: [__u8; 4usize], -+pub master_key_identifier: [__u8; 16usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_get_policy_ex_arg { -+pub policy_size: __u64, -+pub policy: fscrypt_get_policy_ex_arg__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union fscrypt_get_policy_ex_arg__bindgen_ty_1 { -+pub version: __u8, -+pub v1: fscrypt_policy_v1, -+pub v2: fscrypt_policy_v2, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_key_specifier { -+pub type_: __u32, -+pub __reserved: __u32, -+pub u: fscrypt_key_specifier__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union fscrypt_key_specifier__bindgen_ty_1 { -+pub __reserved: [__u8; 32usize], -+pub descriptor: [__u8; 8usize], -+pub identifier: [__u8; 16usize], -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct fscrypt_provisioning_key_payload { -+pub type_: __u32, -+pub __reserved: __u32, -+pub raw: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+pub struct fscrypt_add_key_arg { -+pub key_spec: fscrypt_key_specifier, -+pub raw_size: __u32, -+pub key_id: __u32, -+pub __reserved: [__u32; 8usize], -+pub raw: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_remove_key_arg { -+pub key_spec: fscrypt_key_specifier, -+pub removal_status_flags: __u32, -+pub __reserved: [__u32; 5usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct fscrypt_get_key_status_arg { -+pub key_spec: fscrypt_key_specifier, -+pub __reserved: [__u32; 6usize], -+pub status: __u32, -+pub status_flags: __u32, -+pub user_count: __u32, -+pub __out_reserved: [__u32; 13usize], -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum fsconfig_command { -+FSCONFIG_SET_FLAG = 0, -+FSCONFIG_SET_STRING = 1, -+FSCONFIG_SET_BINARY = 2, -+FSCONFIG_SET_PATH = 3, -+FSCONFIG_SET_PATH_EMPTY = 4, -+FSCONFIG_SET_FD = 5, -+FSCONFIG_CMD_CREATE = 6, -+FSCONFIG_CMD_RECONFIGURE = 7, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct mount_attr { -+pub attr_set: __u64, -+pub attr_clr: __u64, -+pub propagation: __u64, -+pub userns_fd: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct file_clone_range { -+pub src_fd: __s64, -+pub src_offset: __u64, -+pub src_length: __u64, -+pub dest_offset: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fstrim_range { -+pub start: __u64, -+pub len: __u64, -+pub minlen: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct file_dedupe_range_info { -+pub dest_fd: __s64, -+pub dest_offset: __u64, -+pub bytes_deduped: __u64, -+pub status: __s32, -+pub reserved: __u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct file_dedupe_range { -+pub src_offset: __u64, -+pub src_length: __u64, -+pub dest_count: __u16, -+pub reserved1: __u16, -+pub reserved2: __u32, -+pub info: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct files_stat_struct { -+pub nr_files: crate::ctypes::c_ulong, -+pub nr_free_files: crate::ctypes::c_ulong, -+pub max_files: crate::ctypes::c_ulong, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct inodes_stat_t { -+pub nr_inodes: crate::ctypes::c_long, -+pub nr_unused: crate::ctypes::c_long, -+pub dummy: [crate::ctypes::c_long; 5usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct fsxattr { -+pub fsx_xflags: __u32, -+pub fsx_extsize: __u32, -+pub fsx_nextents: __u32, -+pub fsx_projid: __u32, -+pub fsx_cowextsize: __u32, -+pub fsx_pad: [crate::ctypes::c_uchar; 8usize], -+} -+pub type __kernel_rwf_t = crate::ctypes::c_int; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct futex_waitv { -+pub val: __u64, -+pub uaddr: __u64, -+pub flags: __u32, -+pub __reserved: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct robust_list { -+pub next: *mut robust_list, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct robust_list_head { -+pub list: robust_list, -+pub futex_offset: crate::ctypes::c_long, -+pub list_op_pending: *mut robust_list, -+} -+pub type __kernel_sa_family_t = crate::ctypes::c_ushort; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __kernel_sockaddr_storage { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __kernel_sockaddr_storage__bindgen_ty_1 { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1, -+pub __align: *mut crate::ctypes::c_void, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1 { -+pub ss_family: __kernel_sa_family_t, -+pub __data: [crate::ctypes::c_char; 126usize], -+} -+pub const IPPROTO_IP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IP; -+pub const IPPROTO_ICMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ICMP; -+pub const IPPROTO_IGMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IGMP; -+pub const IPPROTO_IPIP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPIP; -+pub const IPPROTO_TCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_TCP; -+pub const IPPROTO_EGP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_EGP; -+pub const IPPROTO_PUP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_PUP; -+pub const IPPROTO_UDP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_UDP; -+pub const IPPROTO_IDP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IDP; -+pub const IPPROTO_TP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_TP; -+pub const IPPROTO_DCCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_DCCP; -+pub const IPPROTO_IPV6: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_IPV6; -+pub const IPPROTO_RSVP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_RSVP; -+pub const IPPROTO_GRE: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_GRE; -+pub const IPPROTO_ESP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ESP; -+pub const IPPROTO_AH: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_AH; -+pub const IPPROTO_MTP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MTP; -+pub const IPPROTO_BEETPH: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_BEETPH; -+pub const IPPROTO_ENCAP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ENCAP; -+pub const IPPROTO_PIM: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_PIM; -+pub const IPPROTO_COMP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_COMP; -+pub const IPPROTO_L2TP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_L2TP; -+pub const IPPROTO_SCTP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_SCTP; -+pub const IPPROTO_UDPLITE: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_UDPLITE; -+pub const IPPROTO_MPLS: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MPLS; -+pub const IPPROTO_ETHERNET: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_ETHERNET; -+pub const IPPROTO_RAW: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_RAW; -+pub const IPPROTO_MPTCP: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MPTCP; -+pub const IPPROTO_MAX: _bindgen_ty_1 = _bindgen_ty_1::IPPROTO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_1 { -+IPPROTO_IP = 0, -+IPPROTO_ICMP = 1, -+IPPROTO_IGMP = 2, -+IPPROTO_IPIP = 4, -+IPPROTO_TCP = 6, -+IPPROTO_EGP = 8, -+IPPROTO_PUP = 12, -+IPPROTO_UDP = 17, -+IPPROTO_IDP = 22, -+IPPROTO_TP = 29, -+IPPROTO_DCCP = 33, -+IPPROTO_IPV6 = 41, -+IPPROTO_RSVP = 46, -+IPPROTO_GRE = 47, -+IPPROTO_ESP = 50, -+IPPROTO_AH = 51, -+IPPROTO_MTP = 92, -+IPPROTO_BEETPH = 94, -+IPPROTO_ENCAP = 98, -+IPPROTO_PIM = 103, -+IPPROTO_COMP = 108, -+IPPROTO_L2TP = 115, -+IPPROTO_SCTP = 132, -+IPPROTO_UDPLITE = 136, -+IPPROTO_MPLS = 137, -+IPPROTO_ETHERNET = 143, -+IPPROTO_RAW = 255, -+IPPROTO_MPTCP = 262, -+IPPROTO_MAX = 263, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct in_addr { -+pub s_addr: __be32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_mreq { -+pub imr_multiaddr: in_addr, -+pub imr_interface: in_addr, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_mreqn { -+pub imr_multiaddr: in_addr, -+pub imr_address: in_addr, -+pub imr_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_mreq_source { -+pub imr_multiaddr: __be32, -+pub imr_interface: __be32, -+pub imr_sourceaddr: __be32, -+} -+#[repr(C)] -+pub struct ip_msfilter { -+pub imsf_multiaddr: __be32, -+pub imsf_interface: __be32, -+pub imsf_fmode: __u32, -+pub imsf_numsrc: __u32, -+pub __bindgen_anon_1: ip_msfilter__bindgen_ty_1, -+} -+#[repr(C)] -+pub struct ip_msfilter__bindgen_ty_1 { -+pub imsf_slist: __BindgenUnionField<[__be32; 1usize]>, -+pub __bindgen_anon_1: __BindgenUnionField, -+pub bindgen_union_field: u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct ip_msfilter__bindgen_ty_1__bindgen_ty_1 { -+pub __empty_imsf_slist_flex: ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1, -+pub imsf_slist_flex: __IncompleteArrayField<__be32>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_msfilter__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 {} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct group_req { -+pub gr_interface: __u32, -+pub gr_group: __kernel_sockaddr_storage, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct group_source_req { -+pub gsr_interface: __u32, -+pub gsr_group: __kernel_sockaddr_storage, -+pub gsr_source: __kernel_sockaddr_storage, -+} -+#[repr(C)] -+pub struct group_filter { -+pub __bindgen_anon_1: group_filter__bindgen_ty_1, -+} -+#[repr(C)] -+pub struct group_filter__bindgen_ty_1 { -+pub __bindgen_anon_1: __BindgenUnionField, -+pub __bindgen_anon_2: __BindgenUnionField, -+pub bindgen_union_field: [u64; 34usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct group_filter__bindgen_ty_1__bindgen_ty_1 { -+pub gf_interface_aux: __u32, -+pub gf_group_aux: __kernel_sockaddr_storage, -+pub gf_fmode_aux: __u32, -+pub gf_numsrc_aux: __u32, -+pub gf_slist: [__kernel_sockaddr_storage; 1usize], -+} -+#[repr(C)] -+pub struct group_filter__bindgen_ty_1__bindgen_ty_2 { -+pub gf_interface: __u32, -+pub gf_group: __kernel_sockaddr_storage, -+pub gf_fmode: __u32, -+pub gf_numsrc: __u32, -+pub gf_slist_flex: __IncompleteArrayField<__kernel_sockaddr_storage>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct in_pktinfo { -+pub ipi_ifindex: crate::ctypes::c_int, -+pub ipi_spec_dst: in_addr, -+pub ipi_addr: in_addr, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sockaddr_in { -+pub sin_family: __kernel_sa_family_t, -+pub sin_port: __be16, -+pub sin_addr: in_addr, -+pub __pad: [crate::ctypes::c_uchar; 8usize], -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct inotify_event { -+pub wd: __s32, -+pub mask: __u32, -+pub cookie: __u32, -+pub len: __u32, -+pub name: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct iphdr { -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -+pub tos: __u8, -+pub tot_len: __be16, -+pub id: __be16, -+pub frag_off: __be16, -+pub ttl: __u8, -+pub protocol: __u8, -+pub check: __sum16, -+pub __bindgen_anon_1: iphdr__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union iphdr__bindgen_ty_1 { -+pub __bindgen_anon_1: iphdr__bindgen_ty_1__bindgen_ty_1, -+pub addrs: iphdr__bindgen_ty_1__bindgen_ty_2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct iphdr__bindgen_ty_1__bindgen_ty_1 { -+pub saddr: __be32, -+pub daddr: __be32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct iphdr__bindgen_ty_1__bindgen_ty_2 { -+pub saddr: __be32, -+pub daddr: __be32, -+} -+impl iphdr { -+#[inline] -+pub fn ihl(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_ihl(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn version(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_version(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(ihl: __u8, version: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let ihl: u8 = unsafe { ::core::mem::transmute(ihl) }; -+ihl as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let version: u8 = unsafe { ::core::mem::transmute(version) }; -+version as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct ip_auth_hdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+pub reserved: __be16, -+pub spi: __be32, -+pub seq_no: __be32, -+pub auth_data: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct ip_esp_hdr { -+pub spi: __be32, -+pub seq_no: __be32, -+pub enc_data: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_comp_hdr { -+pub nexthdr: __u8, -+pub flags: __u8, -+pub cpi: __be16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ip_beet_phdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+pub padlen: __u8, -+pub reserved: __u8, -+} -+pub const IPV4_DEVCONF_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_FORWARDING; -+pub const IPV4_DEVCONF_MC_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_MC_FORWARDING; -+pub const IPV4_DEVCONF_PROXY_ARP: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROXY_ARP; -+pub const IPV4_DEVCONF_ACCEPT_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_REDIRECTS; -+pub const IPV4_DEVCONF_SECURE_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SECURE_REDIRECTS; -+pub const IPV4_DEVCONF_SEND_REDIRECTS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SEND_REDIRECTS; -+pub const IPV4_DEVCONF_SHARED_MEDIA: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SHARED_MEDIA; -+pub const IPV4_DEVCONF_RP_FILTER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_RP_FILTER; -+pub const IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE; -+pub const IPV4_DEVCONF_BOOTP_RELAY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_BOOTP_RELAY; -+pub const IPV4_DEVCONF_LOG_MARTIANS: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_LOG_MARTIANS; -+pub const IPV4_DEVCONF_TAG: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_TAG; -+pub const IPV4_DEVCONF_ARPFILTER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARPFILTER; -+pub const IPV4_DEVCONF_MEDIUM_ID: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_MEDIUM_ID; -+pub const IPV4_DEVCONF_NOXFRM: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_NOXFRM; -+pub const IPV4_DEVCONF_NOPOLICY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_NOPOLICY; -+pub const IPV4_DEVCONF_FORCE_IGMP_VERSION: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_FORCE_IGMP_VERSION; -+pub const IPV4_DEVCONF_ARP_ANNOUNCE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_ANNOUNCE; -+pub const IPV4_DEVCONF_ARP_IGNORE: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_IGNORE; -+pub const IPV4_DEVCONF_PROMOTE_SECONDARIES: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROMOTE_SECONDARIES; -+pub const IPV4_DEVCONF_ARP_ACCEPT: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_ACCEPT; -+pub const IPV4_DEVCONF_ARP_NOTIFY: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_NOTIFY; -+pub const IPV4_DEVCONF_ACCEPT_LOCAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ACCEPT_LOCAL; -+pub const IPV4_DEVCONF_SRC_VMARK: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_SRC_VMARK; -+pub const IPV4_DEVCONF_PROXY_ARP_PVLAN: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_PROXY_ARP_PVLAN; -+pub const IPV4_DEVCONF_ROUTE_LOCALNET: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ROUTE_LOCALNET; -+pub const IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL; -+pub const IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL; -+pub const IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN; -+pub const IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST; -+pub const IPV4_DEVCONF_DROP_GRATUITOUS_ARP: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_DROP_GRATUITOUS_ARP; -+pub const IPV4_DEVCONF_BC_FORWARDING: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_BC_FORWARDING; -+pub const IPV4_DEVCONF_ARP_EVICT_NOCARRIER: _bindgen_ty_2 = _bindgen_ty_2::IPV4_DEVCONF_ARP_EVICT_NOCARRIER; -+pub const __IPV4_DEVCONF_MAX: _bindgen_ty_2 = _bindgen_ty_2::__IPV4_DEVCONF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_2 { -+IPV4_DEVCONF_FORWARDING = 1, -+IPV4_DEVCONF_MC_FORWARDING = 2, -+IPV4_DEVCONF_PROXY_ARP = 3, -+IPV4_DEVCONF_ACCEPT_REDIRECTS = 4, -+IPV4_DEVCONF_SECURE_REDIRECTS = 5, -+IPV4_DEVCONF_SEND_REDIRECTS = 6, -+IPV4_DEVCONF_SHARED_MEDIA = 7, -+IPV4_DEVCONF_RP_FILTER = 8, -+IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE = 9, -+IPV4_DEVCONF_BOOTP_RELAY = 10, -+IPV4_DEVCONF_LOG_MARTIANS = 11, -+IPV4_DEVCONF_TAG = 12, -+IPV4_DEVCONF_ARPFILTER = 13, -+IPV4_DEVCONF_MEDIUM_ID = 14, -+IPV4_DEVCONF_NOXFRM = 15, -+IPV4_DEVCONF_NOPOLICY = 16, -+IPV4_DEVCONF_FORCE_IGMP_VERSION = 17, -+IPV4_DEVCONF_ARP_ANNOUNCE = 18, -+IPV4_DEVCONF_ARP_IGNORE = 19, -+IPV4_DEVCONF_PROMOTE_SECONDARIES = 20, -+IPV4_DEVCONF_ARP_ACCEPT = 21, -+IPV4_DEVCONF_ARP_NOTIFY = 22, -+IPV4_DEVCONF_ACCEPT_LOCAL = 23, -+IPV4_DEVCONF_SRC_VMARK = 24, -+IPV4_DEVCONF_PROXY_ARP_PVLAN = 25, -+IPV4_DEVCONF_ROUTE_LOCALNET = 26, -+IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL = 27, -+IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL = 28, -+IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 29, -+IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 30, -+IPV4_DEVCONF_DROP_GRATUITOUS_ARP = 31, -+IPV4_DEVCONF_BC_FORWARDING = 32, -+IPV4_DEVCONF_ARP_EVICT_NOCARRIER = 33, -+__IPV4_DEVCONF_MAX = 34, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_addr { -+pub in6_u: in6_addr__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union in6_addr__bindgen_ty_1 { -+pub u6_addr8: [__u8; 16usize], -+pub u6_addr16: [__be16; 8usize], -+pub u6_addr32: [__be32; 4usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct sockaddr_in6 { -+pub sin6_family: crate::ctypes::c_ushort, -+pub sin6_port: __be16, -+pub sin6_flowinfo: __be32, -+pub sin6_addr: in6_addr, -+pub sin6_scope_id: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6_mreq { -+pub ipv6mr_multiaddr: in6_addr, -+pub ipv6mr_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_flowlabel_req { -+pub flr_dst: in6_addr, -+pub flr_label: __be32, -+pub flr_action: __u8, -+pub flr_share: __u8, -+pub flr_flags: __u16, -+pub flr_expires: __u16, -+pub flr_linger: __u16, -+pub __flr_pad: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_pktinfo { -+pub ipi6_addr: in6_addr, -+pub ipi6_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ip6_mtuinfo { -+pub ip6m_addr: sockaddr_in6, -+pub ip6m_mtu: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct in6_ifreq { -+pub ifr6_addr: in6_addr, -+pub ifr6_prefixlen: __u32, -+pub ifr6_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ipv6_rt_hdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+pub type_: __u8, -+pub segments_left: __u8, -+} -+#[repr(C, packed)] -+#[derive(Debug, Copy, Clone)] -+pub struct ipv6_opt_hdr { -+pub nexthdr: __u8, -+pub hdrlen: __u8, -+} -+#[repr(C)] -+pub struct rt0_hdr { -+pub rt_hdr: ipv6_rt_hdr, -+pub reserved: __u32, -+pub addr: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct rt2_hdr { -+pub rt_hdr: ipv6_rt_hdr, -+pub reserved: __u32, -+pub addr: in6_addr, -+} -+#[repr(C, packed)] -+#[derive(Copy, Clone)] -+pub struct ipv6_destopt_hao { -+pub type_: __u8, -+pub length: __u8, -+pub addr: in6_addr, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6hdr { -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -+pub flow_lbl: [__u8; 3usize], -+pub payload_len: __be16, -+pub nexthdr: __u8, -+pub hop_limit: __u8, -+pub __bindgen_anon_1: ipv6hdr__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union ipv6hdr__bindgen_ty_1 { -+pub __bindgen_anon_1: ipv6hdr__bindgen_ty_1__bindgen_ty_1, -+pub addrs: ipv6hdr__bindgen_ty_1__bindgen_ty_2, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6hdr__bindgen_ty_1__bindgen_ty_1 { -+pub saddr: in6_addr, -+pub daddr: in6_addr, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct ipv6hdr__bindgen_ty_1__bindgen_ty_2 { -+pub saddr: in6_addr, -+pub daddr: in6_addr, -+} -+impl ipv6hdr { -+#[inline] -+pub fn priority(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_priority(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn version(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_version(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(priority: __u8, version: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let priority: u8 = unsafe { ::core::mem::transmute(priority) }; -+priority as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let version: u8 = unsafe { ::core::mem::transmute(version) }; -+version as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+pub const DEVCONF_FORWARDING: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORWARDING; -+pub const DEVCONF_HOPLIMIT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_HOPLIMIT; -+pub const DEVCONF_MTU6: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MTU6; -+pub const DEVCONF_ACCEPT_RA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA; -+pub const DEVCONF_ACCEPT_REDIRECTS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_REDIRECTS; -+pub const DEVCONF_AUTOCONF: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_AUTOCONF; -+pub const DEVCONF_DAD_TRANSMITS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DAD_TRANSMITS; -+pub const DEVCONF_RTR_SOLICITS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICITS; -+pub const DEVCONF_RTR_SOLICIT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_INTERVAL; -+pub const DEVCONF_RTR_SOLICIT_DELAY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_DELAY; -+pub const DEVCONF_USE_TEMPADDR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_TEMPADDR; -+pub const DEVCONF_TEMP_VALID_LFT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_TEMP_VALID_LFT; -+pub const DEVCONF_TEMP_PREFERED_LFT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_TEMP_PREFERED_LFT; -+pub const DEVCONF_REGEN_MAX_RETRY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_REGEN_MAX_RETRY; -+pub const DEVCONF_MAX_DESYNC_FACTOR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX_DESYNC_FACTOR; -+pub const DEVCONF_MAX_ADDRESSES: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX_ADDRESSES; -+pub const DEVCONF_FORCE_MLD_VERSION: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORCE_MLD_VERSION; -+pub const DEVCONF_ACCEPT_RA_DEFRTR: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_DEFRTR; -+pub const DEVCONF_ACCEPT_RA_PINFO: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_PINFO; -+pub const DEVCONF_ACCEPT_RA_RTR_PREF: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RTR_PREF; -+pub const DEVCONF_RTR_PROBE_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_PROBE_INTERVAL; -+pub const DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN; -+pub const DEVCONF_PROXY_NDP: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_PROXY_NDP; -+pub const DEVCONF_OPTIMISTIC_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_OPTIMISTIC_DAD; -+pub const DEVCONF_ACCEPT_SOURCE_ROUTE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_SOURCE_ROUTE; -+pub const DEVCONF_MC_FORWARDING: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MC_FORWARDING; -+pub const DEVCONF_DISABLE_IPV6: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DISABLE_IPV6; -+pub const DEVCONF_ACCEPT_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_DAD; -+pub const DEVCONF_FORCE_TLLAO: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_FORCE_TLLAO; -+pub const DEVCONF_NDISC_NOTIFY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_NOTIFY; -+pub const DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL; -+pub const DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL; -+pub const DEVCONF_SUPPRESS_FRAG_NDISC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SUPPRESS_FRAG_NDISC; -+pub const DEVCONF_ACCEPT_RA_FROM_LOCAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_FROM_LOCAL; -+pub const DEVCONF_USE_OPTIMISTIC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_OPTIMISTIC; -+pub const DEVCONF_ACCEPT_RA_MTU: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_MTU; -+pub const DEVCONF_STABLE_SECRET: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_STABLE_SECRET; -+pub const DEVCONF_USE_OIF_ADDRS_ONLY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_USE_OIF_ADDRS_ONLY; -+pub const DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT; -+pub const DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN; -+pub const DEVCONF_DROP_UNICAST_IN_L2_MULTICAST: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DROP_UNICAST_IN_L2_MULTICAST; -+pub const DEVCONF_DROP_UNSOLICITED_NA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DROP_UNSOLICITED_NA; -+pub const DEVCONF_KEEP_ADDR_ON_DOWN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_KEEP_ADDR_ON_DOWN; -+pub const DEVCONF_RTR_SOLICIT_MAX_INTERVAL: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RTR_SOLICIT_MAX_INTERVAL; -+pub const DEVCONF_SEG6_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SEG6_ENABLED; -+pub const DEVCONF_SEG6_REQUIRE_HMAC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_SEG6_REQUIRE_HMAC; -+pub const DEVCONF_ENHANCED_DAD: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ENHANCED_DAD; -+pub const DEVCONF_ADDR_GEN_MODE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ADDR_GEN_MODE; -+pub const DEVCONF_DISABLE_POLICY: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_DISABLE_POLICY; -+pub const DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN; -+pub const DEVCONF_NDISC_TCLASS: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_TCLASS; -+pub const DEVCONF_RPL_SEG_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RPL_SEG_ENABLED; -+pub const DEVCONF_RA_DEFRTR_METRIC: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_RA_DEFRTR_METRIC; -+pub const DEVCONF_IOAM6_ENABLED: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ENABLED; -+pub const DEVCONF_IOAM6_ID: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ID; -+pub const DEVCONF_IOAM6_ID_WIDE: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_IOAM6_ID_WIDE; -+pub const DEVCONF_NDISC_EVICT_NOCARRIER: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_NDISC_EVICT_NOCARRIER; -+pub const DEVCONF_ACCEPT_UNTRACKED_NA: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_ACCEPT_UNTRACKED_NA; -+pub const DEVCONF_MAX: _bindgen_ty_3 = _bindgen_ty_3::DEVCONF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_3 { -+DEVCONF_FORWARDING = 0, -+DEVCONF_HOPLIMIT = 1, -+DEVCONF_MTU6 = 2, -+DEVCONF_ACCEPT_RA = 3, -+DEVCONF_ACCEPT_REDIRECTS = 4, -+DEVCONF_AUTOCONF = 5, -+DEVCONF_DAD_TRANSMITS = 6, -+DEVCONF_RTR_SOLICITS = 7, -+DEVCONF_RTR_SOLICIT_INTERVAL = 8, -+DEVCONF_RTR_SOLICIT_DELAY = 9, -+DEVCONF_USE_TEMPADDR = 10, -+DEVCONF_TEMP_VALID_LFT = 11, -+DEVCONF_TEMP_PREFERED_LFT = 12, -+DEVCONF_REGEN_MAX_RETRY = 13, -+DEVCONF_MAX_DESYNC_FACTOR = 14, -+DEVCONF_MAX_ADDRESSES = 15, -+DEVCONF_FORCE_MLD_VERSION = 16, -+DEVCONF_ACCEPT_RA_DEFRTR = 17, -+DEVCONF_ACCEPT_RA_PINFO = 18, -+DEVCONF_ACCEPT_RA_RTR_PREF = 19, -+DEVCONF_RTR_PROBE_INTERVAL = 20, -+DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN = 21, -+DEVCONF_PROXY_NDP = 22, -+DEVCONF_OPTIMISTIC_DAD = 23, -+DEVCONF_ACCEPT_SOURCE_ROUTE = 24, -+DEVCONF_MC_FORWARDING = 25, -+DEVCONF_DISABLE_IPV6 = 26, -+DEVCONF_ACCEPT_DAD = 27, -+DEVCONF_FORCE_TLLAO = 28, -+DEVCONF_NDISC_NOTIFY = 29, -+DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL = 30, -+DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL = 31, -+DEVCONF_SUPPRESS_FRAG_NDISC = 32, -+DEVCONF_ACCEPT_RA_FROM_LOCAL = 33, -+DEVCONF_USE_OPTIMISTIC = 34, -+DEVCONF_ACCEPT_RA_MTU = 35, -+DEVCONF_STABLE_SECRET = 36, -+DEVCONF_USE_OIF_ADDRS_ONLY = 37, -+DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT = 38, -+DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 39, -+DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 40, -+DEVCONF_DROP_UNSOLICITED_NA = 41, -+DEVCONF_KEEP_ADDR_ON_DOWN = 42, -+DEVCONF_RTR_SOLICIT_MAX_INTERVAL = 43, -+DEVCONF_SEG6_ENABLED = 44, -+DEVCONF_SEG6_REQUIRE_HMAC = 45, -+DEVCONF_ENHANCED_DAD = 46, -+DEVCONF_ADDR_GEN_MODE = 47, -+DEVCONF_DISABLE_POLICY = 48, -+DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, -+DEVCONF_NDISC_TCLASS = 50, -+DEVCONF_RPL_SEG_ENABLED = 51, -+DEVCONF_RA_DEFRTR_METRIC = 52, -+DEVCONF_IOAM6_ENABLED = 53, -+DEVCONF_IOAM6_ID = 54, -+DEVCONF_IOAM6_ID_WIDE = 55, -+DEVCONF_NDISC_EVICT_NOCARRIER = 56, -+DEVCONF_ACCEPT_UNTRACKED_NA = 57, -+DEVCONF_MAX = 58, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum socket_state { -+SS_FREE = 0, -+SS_UNCONNECTED = 1, -+SS_CONNECTING = 2, -+SS_CONNECTED = 3, -+SS_DISCONNECTING = 4, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct pollfd { -+pub fd: crate::ctypes::c_int, -+pub events: crate::ctypes::c_short, -+pub revents: crate::ctypes::c_short, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct prctl_mm_map { -+pub start_code: __u64, -+pub end_code: __u64, -+pub start_data: __u64, -+pub end_data: __u64, -+pub start_brk: __u64, -+pub brk: __u64, -+pub start_stack: __u64, -+pub arg_start: __u64, -+pub arg_end: __u64, -+pub env_start: __u64, -+pub env_end: __u64, -+pub auxv: *mut __u64, -+pub auxv_size: __u32, -+pub exe_fd: __u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct rand_pool_info { -+pub entropy_count: crate::ctypes::c_int, -+pub buf_size: crate::ctypes::c_int, -+pub buf: __IncompleteArrayField<__u32>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_timespec { -+pub tv_sec: __kernel_time64_t, -+pub tv_nsec: crate::ctypes::c_longlong, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_itimerspec { -+pub it_interval: __kernel_timespec, -+pub it_value: __kernel_timespec, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_old_timeval { -+pub tv_sec: __kernel_long_t, -+pub tv_usec: __kernel_long_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_old_timespec { -+pub tv_sec: __kernel_old_time_t, -+pub tv_nsec: crate::ctypes::c_long, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_old_itimerval { -+pub it_interval: __kernel_old_timeval, -+pub it_value: __kernel_old_timeval, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_sock_timeval { -+pub tv_sec: __s64, -+pub tv_usec: __s64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct timespec { -+pub tv_sec: __kernel_old_time_t, -+pub tv_nsec: crate::ctypes::c_long, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct timeval { -+pub tv_sec: __kernel_old_time_t, -+pub tv_usec: __kernel_suseconds_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct itimerspec { -+pub it_interval: timespec, -+pub it_value: timespec, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct itimerval { -+pub it_interval: timeval, -+pub it_value: timeval, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct timezone { -+pub tz_minuteswest: crate::ctypes::c_int, -+pub tz_dsttime: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rusage { -+pub ru_utime: __kernel_old_timeval, -+pub ru_stime: __kernel_old_timeval, -+pub ru_maxrss: __kernel_long_t, -+pub ru_ixrss: __kernel_long_t, -+pub ru_idrss: __kernel_long_t, -+pub ru_isrss: __kernel_long_t, -+pub ru_minflt: __kernel_long_t, -+pub ru_majflt: __kernel_long_t, -+pub ru_nswap: __kernel_long_t, -+pub ru_inblock: __kernel_long_t, -+pub ru_oublock: __kernel_long_t, -+pub ru_msgsnd: __kernel_long_t, -+pub ru_msgrcv: __kernel_long_t, -+pub ru_nsignals: __kernel_long_t, -+pub ru_nvcsw: __kernel_long_t, -+pub ru_nivcsw: __kernel_long_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rlimit { -+pub rlim_cur: __kernel_ulong_t, -+pub rlim_max: __kernel_ulong_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rlimit64 { -+pub rlim_cur: __u64, -+pub rlim_max: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct clone_args { -+pub flags: __u64, -+pub pidfd: __u64, -+pub child_tid: __u64, -+pub parent_tid: __u64, -+pub exit_signal: __u64, -+pub stack: __u64, -+pub stack_size: __u64, -+pub tls: __u64, -+pub set_tid: __u64, -+pub set_tid_size: __u64, -+pub cgroup: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigset_t { -+pub sig: [crate::ctypes::c_ulong; 1usize], -+} -+pub type old_sigset_t = crate::ctypes::c_ulong; -+pub type __signalfn_t = ::core::option::Option; -+pub type __sighandler_t = __signalfn_t; -+pub type __restorefn_t = ::core::option::Option; -+pub type __sigrestore_t = __restorefn_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigaction { -+pub sa_handler: __sighandler_t, -+pub sa_flags: crate::ctypes::c_ulong, -+pub sa_mask: sigset_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigaltstack { -+pub ss_sp: *mut crate::ctypes::c_void, -+pub ss_flags: crate::ctypes::c_int, -+pub ss_size: __kernel_size_t, -+} -+pub type stack_t = sigaltstack; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union sigval { -+pub sival_int: crate::ctypes::c_int, -+pub sival_ptr: *mut crate::ctypes::c_void, -+} -+pub type sigval_t = sigval; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __sifields { -+pub _kill: __sifields__bindgen_ty_1, -+pub _timer: __sifields__bindgen_ty_2, -+pub _rt: __sifields__bindgen_ty_3, -+pub _sigchld: __sifields__bindgen_ty_4, -+pub _sigfault: __sifields__bindgen_ty_5, -+pub _sigpoll: __sifields__bindgen_ty_6, -+pub _sigsys: __sifields__bindgen_ty_7, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_1 { -+pub _pid: __kernel_pid_t, -+pub _uid: __kernel_uid32_t, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __sifields__bindgen_ty_2 { -+pub _tid: __kernel_timer_t, -+pub _overrun: crate::ctypes::c_int, -+pub _sigval: sigval_t, -+pub _sys_private: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __sifields__bindgen_ty_3 { -+pub _pid: __kernel_pid_t, -+pub _uid: __kernel_uid32_t, -+pub _sigval: sigval_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_4 { -+pub _pid: __kernel_pid_t, -+pub _uid: __kernel_uid32_t, -+pub _status: crate::ctypes::c_int, -+pub _utime: __kernel_clock_t, -+pub _stime: __kernel_clock_t, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __sifields__bindgen_ty_5 { -+pub _addr: *mut crate::ctypes::c_void, -+pub __bindgen_anon_1: __sifields__bindgen_ty_5__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __sifields__bindgen_ty_5__bindgen_ty_1 { -+pub _trapno: crate::ctypes::c_int, -+pub _addr_lsb: crate::ctypes::c_short, -+pub _addr_bnd: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1, -+pub _addr_pkey: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2, -+pub _perf: __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1 { -+pub _dummy_bnd: [crate::ctypes::c_char; 8usize], -+pub _lower: *mut crate::ctypes::c_void, -+pub _upper: *mut crate::ctypes::c_void, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_2 { -+pub _dummy_pkey: [crate::ctypes::c_char; 8usize], -+pub _pkey: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_3 { -+pub _data: crate::ctypes::c_ulong, -+pub _type: __u32, -+pub _flags: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_6 { -+pub _band: crate::ctypes::c_long, -+pub _fd: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __sifields__bindgen_ty_7 { -+pub _call_addr: *mut crate::ctypes::c_void, -+pub _syscall: crate::ctypes::c_int, -+pub _arch: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct siginfo { -+pub __bindgen_anon_1: siginfo__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union siginfo__bindgen_ty_1 { -+pub __bindgen_anon_1: siginfo__bindgen_ty_1__bindgen_ty_1, -+pub _si_pad: [crate::ctypes::c_int; 32usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct siginfo__bindgen_ty_1__bindgen_ty_1 { -+pub si_signo: crate::ctypes::c_int, -+pub si_errno: crate::ctypes::c_int, -+pub si_code: crate::ctypes::c_int, -+pub _sifields: __sifields, -+} -+pub type siginfo_t = siginfo; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct sigevent { -+pub sigev_value: sigval_t, -+pub sigev_signo: crate::ctypes::c_int, -+pub sigev_notify: crate::ctypes::c_int, -+pub _sigev_un: sigevent__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union sigevent__bindgen_ty_1 { -+pub _pad: [crate::ctypes::c_int; 12usize], -+pub _tid: crate::ctypes::c_int, -+pub _sigev_thread: sigevent__bindgen_ty_1__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { -+pub _function: ::core::option::Option, -+pub _attribute: *mut crate::ctypes::c_void, -+} -+pub type sigevent_t = sigevent; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statx_timestamp { -+pub tv_sec: __s64, -+pub tv_nsec: __u32, -+pub __reserved: __s32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statx { -+pub stx_mask: __u32, -+pub stx_blksize: __u32, -+pub stx_attributes: __u64, -+pub stx_nlink: __u32, -+pub stx_uid: __u32, -+pub stx_gid: __u32, -+pub stx_mode: __u16, -+pub __spare0: [__u16; 1usize], -+pub stx_ino: __u64, -+pub stx_size: __u64, -+pub stx_blocks: __u64, -+pub stx_attributes_mask: __u64, -+pub stx_atime: statx_timestamp, -+pub stx_btime: statx_timestamp, -+pub stx_ctime: statx_timestamp, -+pub stx_mtime: statx_timestamp, -+pub stx_rdev_major: __u32, -+pub stx_rdev_minor: __u32, -+pub stx_dev_major: __u32, -+pub stx_dev_minor: __u32, -+pub stx_mnt_id: __u64, -+pub stx_dio_mem_align: __u32, -+pub stx_dio_offset_align: __u32, -+pub __spare3: [__u64; 12usize], -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct sysinfo { -+pub uptime: __kernel_long_t, -+pub loads: [__kernel_ulong_t; 3usize], -+pub totalram: __kernel_ulong_t, -+pub freeram: __kernel_ulong_t, -+pub sharedram: __kernel_ulong_t, -+pub bufferram: __kernel_ulong_t, -+pub totalswap: __kernel_ulong_t, -+pub freeswap: __kernel_ulong_t, -+pub procs: __u16, -+pub pad: __u16, -+pub totalhigh: __kernel_ulong_t, -+pub freehigh: __kernel_ulong_t, -+pub mem_unit: __u32, -+pub _f: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcphdr { -+pub source: __be16, -+pub dest: __be16, -+pub seq: __be32, -+pub ack_seq: __be32, -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>, -+pub window: __be16, -+pub check: __sum16, -+pub urg_ptr: __be16, -+} -+impl tcphdr { -+#[inline] -+pub fn res1(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u16) } -+} -+#[inline] -+pub fn set_res1(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn doff(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u16) } -+} -+#[inline] -+pub fn set_doff(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn fin(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_fin(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(8usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn syn(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(9usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_syn(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(9usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn rst(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(10usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_rst(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(10usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn psh(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(11usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_psh(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(11usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn ack(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(12usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_ack(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(12usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn urg(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(13usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_urg(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(13usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn ece(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(14usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_ece(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(14usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn cwr(&self) -> __u16 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(15usize, 1u8) as u16) } -+} -+#[inline] -+pub fn set_cwr(&mut self, val: __u16) { -+unsafe { -+let val: u16 = ::core::mem::transmute(val); -+self._bitfield_1.set(15usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(res1: __u16, doff: __u16, fin: __u16, syn: __u16, rst: __u16, psh: __u16, ack: __u16, urg: __u16, ece: __u16, cwr: __u16) -> __BindgenBitfieldUnit<[u8; 2usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let res1: u16 = unsafe { ::core::mem::transmute(res1) }; -+res1 as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let doff: u16 = unsafe { ::core::mem::transmute(doff) }; -+doff as u64 -+}); -+__bindgen_bitfield_unit.set(8usize, 1u8, { -+let fin: u16 = unsafe { ::core::mem::transmute(fin) }; -+fin as u64 -+}); -+__bindgen_bitfield_unit.set(9usize, 1u8, { -+let syn: u16 = unsafe { ::core::mem::transmute(syn) }; -+syn as u64 -+}); -+__bindgen_bitfield_unit.set(10usize, 1u8, { -+let rst: u16 = unsafe { ::core::mem::transmute(rst) }; -+rst as u64 -+}); -+__bindgen_bitfield_unit.set(11usize, 1u8, { -+let psh: u16 = unsafe { ::core::mem::transmute(psh) }; -+psh as u64 -+}); -+__bindgen_bitfield_unit.set(12usize, 1u8, { -+let ack: u16 = unsafe { ::core::mem::transmute(ack) }; -+ack as u64 -+}); -+__bindgen_bitfield_unit.set(13usize, 1u8, { -+let urg: u16 = unsafe { ::core::mem::transmute(urg) }; -+urg as u64 -+}); -+__bindgen_bitfield_unit.set(14usize, 1u8, { -+let ece: u16 = unsafe { ::core::mem::transmute(ece) }; -+ece as u64 -+}); -+__bindgen_bitfield_unit.set(15usize, 1u8, { -+let cwr: u16 = unsafe { ::core::mem::transmute(cwr) }; -+cwr as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union tcp_word_hdr { -+pub hdr: tcphdr, -+pub words: [__be32; 5usize], -+} -+pub const TCP_FLAG_CWR: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_CWR; -+pub const TCP_FLAG_ECE: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_ECE; -+pub const TCP_FLAG_URG: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_URG; -+pub const TCP_FLAG_ACK: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_ACK; -+pub const TCP_FLAG_PSH: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_PSH; -+pub const TCP_FLAG_RST: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_RST; -+pub const TCP_FLAG_SYN: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_SYN; -+pub const TCP_FLAG_FIN: _bindgen_ty_4 = _bindgen_ty_4::TCP_FLAG_FIN; -+pub const TCP_RESERVED_BITS: _bindgen_ty_4 = _bindgen_ty_4::TCP_RESERVED_BITS; -+pub const TCP_DATA_OFFSET: _bindgen_ty_4 = _bindgen_ty_4::TCP_DATA_OFFSET; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_4 { -+TCP_FLAG_CWR = 32768, -+TCP_FLAG_ECE = 16384, -+TCP_FLAG_URG = 8192, -+TCP_FLAG_ACK = 4096, -+TCP_FLAG_PSH = 2048, -+TCP_FLAG_RST = 1024, -+TCP_FLAG_SYN = 512, -+TCP_FLAG_FIN = 256, -+TCP_RESERVED_BITS = 15, -+TCP_DATA_OFFSET = 240, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_repair_opt { -+pub opt_code: __u32, -+pub opt_val: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_repair_window { -+pub snd_wl1: __u32, -+pub snd_wnd: __u32, -+pub max_window: __u32, -+pub rcv_wnd: __u32, -+pub rcv_wup: __u32, -+} -+pub const TCP_NO_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_NO_QUEUE; -+pub const TCP_RECV_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_RECV_QUEUE; -+pub const TCP_SEND_QUEUE: _bindgen_ty_5 = _bindgen_ty_5::TCP_SEND_QUEUE; -+pub const TCP_QUEUES_NR: _bindgen_ty_5 = _bindgen_ty_5::TCP_QUEUES_NR; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_5 { -+TCP_NO_QUEUE = 0, -+TCP_RECV_QUEUE = 1, -+TCP_SEND_QUEUE = 2, -+TCP_QUEUES_NR = 3, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum tcp_fastopen_client_fail { -+TFO_STATUS_UNSPEC = 0, -+TFO_COOKIE_UNAVAILABLE = 1, -+TFO_DATA_NOT_ACKED = 2, -+TFO_SYN_RETRANSMITTED = 3, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum tcp_ca_state { -+TCP_CA_Open = 0, -+TCP_CA_Disorder = 1, -+TCP_CA_CWR = 2, -+TCP_CA_Recovery = 3, -+TCP_CA_Loss = 4, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_info { -+pub tcpi_state: __u8, -+pub tcpi_ca_state: __u8, -+pub tcpi_retransmits: __u8, -+pub tcpi_probes: __u8, -+pub tcpi_backoff: __u8, -+pub tcpi_options: __u8, -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>, -+pub tcpi_rto: __u32, -+pub tcpi_ato: __u32, -+pub tcpi_snd_mss: __u32, -+pub tcpi_rcv_mss: __u32, -+pub tcpi_unacked: __u32, -+pub tcpi_sacked: __u32, -+pub tcpi_lost: __u32, -+pub tcpi_retrans: __u32, -+pub tcpi_fackets: __u32, -+pub tcpi_last_data_sent: __u32, -+pub tcpi_last_ack_sent: __u32, -+pub tcpi_last_data_recv: __u32, -+pub tcpi_last_ack_recv: __u32, -+pub tcpi_pmtu: __u32, -+pub tcpi_rcv_ssthresh: __u32, -+pub tcpi_rtt: __u32, -+pub tcpi_rttvar: __u32, -+pub tcpi_snd_ssthresh: __u32, -+pub tcpi_snd_cwnd: __u32, -+pub tcpi_advmss: __u32, -+pub tcpi_reordering: __u32, -+pub tcpi_rcv_rtt: __u32, -+pub tcpi_rcv_space: __u32, -+pub tcpi_total_retrans: __u32, -+pub tcpi_pacing_rate: __u64, -+pub tcpi_max_pacing_rate: __u64, -+pub tcpi_bytes_acked: __u64, -+pub tcpi_bytes_received: __u64, -+pub tcpi_segs_out: __u32, -+pub tcpi_segs_in: __u32, -+pub tcpi_notsent_bytes: __u32, -+pub tcpi_min_rtt: __u32, -+pub tcpi_data_segs_in: __u32, -+pub tcpi_data_segs_out: __u32, -+pub tcpi_delivery_rate: __u64, -+pub tcpi_busy_time: __u64, -+pub tcpi_rwnd_limited: __u64, -+pub tcpi_sndbuf_limited: __u64, -+pub tcpi_delivered: __u32, -+pub tcpi_delivered_ce: __u32, -+pub tcpi_bytes_sent: __u64, -+pub tcpi_bytes_retrans: __u64, -+pub tcpi_dsack_dups: __u32, -+pub tcpi_reord_seen: __u32, -+pub tcpi_rcv_ooopack: __u32, -+pub tcpi_snd_wnd: __u32, -+pub tcpi_rcv_wnd: __u32, -+pub tcpi_rehash: __u32, -+} -+impl tcp_info { -+#[inline] -+pub fn tcpi_snd_wscale(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_snd_wscale(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn tcpi_rcv_wscale(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_rcv_wscale(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 4u8, val as u64) -+} -+} -+#[inline] -+pub fn tcpi_delivery_rate_app_limited(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_delivery_rate_app_limited(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(8usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn tcpi_fastopen_client_fail(&self) -> __u8 { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(9usize, 2u8) as u8) } -+} -+#[inline] -+pub fn set_tcpi_fastopen_client_fail(&mut self, val: __u8) { -+unsafe { -+let val: u8 = ::core::mem::transmute(val); -+self._bitfield_1.set(9usize, 2u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(tcpi_snd_wscale: __u8, tcpi_rcv_wscale: __u8, tcpi_delivery_rate_app_limited: __u8, tcpi_fastopen_client_fail: __u8) -> __BindgenBitfieldUnit<[u8; 2usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 4u8, { -+let tcpi_snd_wscale: u8 = unsafe { ::core::mem::transmute(tcpi_snd_wscale) }; -+tcpi_snd_wscale as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 4u8, { -+let tcpi_rcv_wscale: u8 = unsafe { ::core::mem::transmute(tcpi_rcv_wscale) }; -+tcpi_rcv_wscale as u64 -+}); -+__bindgen_bitfield_unit.set(8usize, 1u8, { -+let tcpi_delivery_rate_app_limited: u8 = unsafe { ::core::mem::transmute(tcpi_delivery_rate_app_limited) }; -+tcpi_delivery_rate_app_limited as u64 -+}); -+__bindgen_bitfield_unit.set(9usize, 2u8, { -+let tcpi_fastopen_client_fail: u8 = unsafe { ::core::mem::transmute(tcpi_fastopen_client_fail) }; -+tcpi_fastopen_client_fail as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+pub const TCP_NLA_PAD: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_PAD; -+pub const TCP_NLA_BUSY: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BUSY; -+pub const TCP_NLA_RWND_LIMITED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_RWND_LIMITED; -+pub const TCP_NLA_SNDBUF_LIMITED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SNDBUF_LIMITED; -+pub const TCP_NLA_DATA_SEGS_OUT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DATA_SEGS_OUT; -+pub const TCP_NLA_TOTAL_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TOTAL_RETRANS; -+pub const TCP_NLA_PACING_RATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_PACING_RATE; -+pub const TCP_NLA_DELIVERY_RATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERY_RATE; -+pub const TCP_NLA_SND_CWND: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SND_CWND; -+pub const TCP_NLA_REORDERING: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REORDERING; -+pub const TCP_NLA_MIN_RTT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_MIN_RTT; -+pub const TCP_NLA_RECUR_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_RECUR_RETRANS; -+pub const TCP_NLA_DELIVERY_RATE_APP_LMT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERY_RATE_APP_LMT; -+pub const TCP_NLA_SNDQ_SIZE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SNDQ_SIZE; -+pub const TCP_NLA_CA_STATE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_CA_STATE; -+pub const TCP_NLA_SND_SSTHRESH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SND_SSTHRESH; -+pub const TCP_NLA_DELIVERED: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERED; -+pub const TCP_NLA_DELIVERED_CE: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DELIVERED_CE; -+pub const TCP_NLA_BYTES_SENT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_SENT; -+pub const TCP_NLA_BYTES_RETRANS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_RETRANS; -+pub const TCP_NLA_DSACK_DUPS: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_DSACK_DUPS; -+pub const TCP_NLA_REORD_SEEN: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REORD_SEEN; -+pub const TCP_NLA_SRTT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_SRTT; -+pub const TCP_NLA_TIMEOUT_REHASH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TIMEOUT_REHASH; -+pub const TCP_NLA_BYTES_NOTSENT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_BYTES_NOTSENT; -+pub const TCP_NLA_EDT: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_EDT; -+pub const TCP_NLA_TTL: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_TTL; -+pub const TCP_NLA_REHASH: _bindgen_ty_6 = _bindgen_ty_6::TCP_NLA_REHASH; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_6 { -+TCP_NLA_PAD = 0, -+TCP_NLA_BUSY = 1, -+TCP_NLA_RWND_LIMITED = 2, -+TCP_NLA_SNDBUF_LIMITED = 3, -+TCP_NLA_DATA_SEGS_OUT = 4, -+TCP_NLA_TOTAL_RETRANS = 5, -+TCP_NLA_PACING_RATE = 6, -+TCP_NLA_DELIVERY_RATE = 7, -+TCP_NLA_SND_CWND = 8, -+TCP_NLA_REORDERING = 9, -+TCP_NLA_MIN_RTT = 10, -+TCP_NLA_RECUR_RETRANS = 11, -+TCP_NLA_DELIVERY_RATE_APP_LMT = 12, -+TCP_NLA_SNDQ_SIZE = 13, -+TCP_NLA_CA_STATE = 14, -+TCP_NLA_SND_SSTHRESH = 15, -+TCP_NLA_DELIVERED = 16, -+TCP_NLA_DELIVERED_CE = 17, -+TCP_NLA_BYTES_SENT = 18, -+TCP_NLA_BYTES_RETRANS = 19, -+TCP_NLA_DSACK_DUPS = 20, -+TCP_NLA_REORD_SEEN = 21, -+TCP_NLA_SRTT = 22, -+TCP_NLA_TIMEOUT_REHASH = 23, -+TCP_NLA_BYTES_NOTSENT = 24, -+TCP_NLA_EDT = 25, -+TCP_NLA_TTL = 26, -+TCP_NLA_REHASH = 27, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct tcp_md5sig { -+pub tcpm_addr: __kernel_sockaddr_storage, -+pub tcpm_flags: __u8, -+pub tcpm_prefixlen: __u8, -+pub tcpm_keylen: __u16, -+pub tcpm_ifindex: crate::ctypes::c_int, -+pub tcpm_key: [__u8; 80usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_diag_md5sig { -+pub tcpm_family: __u8, -+pub tcpm_prefixlen: __u8, -+pub tcpm_keylen: __u16, -+pub tcpm_addr: [__be32; 4usize], -+pub tcpm_key: [__u8; 80usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcp_zerocopy_receive { -+pub address: __u64, -+pub length: __u32, -+pub recv_skip_hint: __u32, -+pub inq: __u32, -+pub err: __s32, -+pub copybuf_address: __u64, -+pub copybuf_len: __s32, -+pub flags: __u32, -+pub msg_control: __u64, -+pub msg_controllen: __u64, -+pub msg_flags: __u32, -+pub reserved: __u32, -+} -+pub type cc_t = crate::ctypes::c_uchar; -+pub type speed_t = crate::ctypes::c_uint; -+pub type tcflag_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct termios { -+pub c_iflag: tcflag_t, -+pub c_oflag: tcflag_t, -+pub c_cflag: tcflag_t, -+pub c_lflag: tcflag_t, -+pub c_line: cc_t, -+pub c_cc: [cc_t; 19usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct termios2 { -+pub c_iflag: tcflag_t, -+pub c_oflag: tcflag_t, -+pub c_cflag: tcflag_t, -+pub c_lflag: tcflag_t, -+pub c_line: cc_t, -+pub c_cc: [cc_t; 19usize], -+pub c_ispeed: speed_t, -+pub c_ospeed: speed_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ktermios { -+pub c_iflag: tcflag_t, -+pub c_oflag: tcflag_t, -+pub c_cflag: tcflag_t, -+pub c_lflag: tcflag_t, -+pub c_line: cc_t, -+pub c_cc: [cc_t; 19usize], -+pub c_ispeed: speed_t, -+pub c_ospeed: speed_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct winsize { -+pub ws_row: crate::ctypes::c_ushort, -+pub ws_col: crate::ctypes::c_ushort, -+pub ws_xpixel: crate::ctypes::c_ushort, -+pub ws_ypixel: crate::ctypes::c_ushort, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct termio { -+pub c_iflag: crate::ctypes::c_ushort, -+pub c_oflag: crate::ctypes::c_ushort, -+pub c_cflag: crate::ctypes::c_ushort, -+pub c_lflag: crate::ctypes::c_ushort, -+pub c_line: crate::ctypes::c_uchar, -+pub c_cc: [crate::ctypes::c_uchar; 8usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct iovec { -+pub iov_base: *mut crate::ctypes::c_void, -+pub iov_len: __kernel_size_t, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sockaddr_un { -+pub sun_family: __kernel_sa_family_t, -+pub sun_path: [crate::ctypes::c_char; 108usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct oldold_utsname { -+pub sysname: [crate::ctypes::c_char; 9usize], -+pub nodename: [crate::ctypes::c_char; 9usize], -+pub release: [crate::ctypes::c_char; 9usize], -+pub version: [crate::ctypes::c_char; 9usize], -+pub machine: [crate::ctypes::c_char; 9usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct old_utsname { -+pub sysname: [crate::ctypes::c_char; 65usize], -+pub nodename: [crate::ctypes::c_char; 65usize], -+pub release: [crate::ctypes::c_char; 65usize], -+pub version: [crate::ctypes::c_char; 65usize], -+pub machine: [crate::ctypes::c_char; 65usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct new_utsname { -+pub sysname: [crate::ctypes::c_char; 65usize], -+pub nodename: [crate::ctypes::c_char; 65usize], -+pub release: [crate::ctypes::c_char; 65usize], -+pub version: [crate::ctypes::c_char; 65usize], -+pub machine: [crate::ctypes::c_char; 65usize], -+pub domainname: [crate::ctypes::c_char; 65usize], -+} -+impl membarrier_cmd { -+pub const MEMBARRIER_CMD_SHARED: membarrier_cmd = membarrier_cmd::MEMBARRIER_CMD_GLOBAL; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum membarrier_cmd { -+MEMBARRIER_CMD_QUERY = 0, -+MEMBARRIER_CMD_GLOBAL = 1, -+MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, -+MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, -+MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, -+MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, -+MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, -+MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, -+MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, -+MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum membarrier_cmd_flag { -+MEMBARRIER_CMD_FLAG_CPU = 1, -+} -+#[repr(C, packed)] -+#[derive(Copy, Clone)] -+pub struct uffd_msg { -+pub event: __u8, -+pub reserved1: __u8, -+pub reserved2: __u16, -+pub reserved3: __u32, -+pub arg: uffd_msg__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union uffd_msg__bindgen_ty_1 { -+pub pagefault: uffd_msg__bindgen_ty_1__bindgen_ty_1, -+pub fork: uffd_msg__bindgen_ty_1__bindgen_ty_2, -+pub remap: uffd_msg__bindgen_ty_1__bindgen_ty_3, -+pub remove: uffd_msg__bindgen_ty_1__bindgen_ty_4, -+pub reserved: uffd_msg__bindgen_ty_1__bindgen_ty_5, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_1 { -+pub flags: __u64, -+pub address: __u64, -+pub feat: uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union uffd_msg__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 { -+pub ptid: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_2 { -+pub ufd: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_3 { -+pub from: __u64, -+pub to: __u64, -+pub len: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_4 { -+pub start: __u64, -+pub end: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffd_msg__bindgen_ty_1__bindgen_ty_5 { -+pub reserved1: __u64, -+pub reserved2: __u64, -+pub reserved3: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_api { -+pub api: __u64, -+pub features: __u64, -+pub ioctls: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_range { -+pub start: __u64, -+pub len: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_register { -+pub range: uffdio_range, -+pub mode: __u64, -+pub ioctls: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_copy { -+pub dst: __u64, -+pub src: __u64, -+pub len: __u64, -+pub mode: __u64, -+pub copy: __s64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_zeropage { -+pub range: uffdio_range, -+pub mode: __u64, -+pub zeropage: __s64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_writeprotect { -+pub range: uffdio_range, -+pub mode: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct uffdio_continue { -+pub range: uffdio_range, -+pub mode: __u64, -+pub mapped: __s64, -+} -+#[repr(C)] -+pub struct io_uring_sqe { -+pub opcode: __u8, -+pub flags: __u8, -+pub ioprio: __u16, -+pub fd: __s32, -+pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_1, -+pub __bindgen_anon_2: io_uring_sqe__bindgen_ty_2, -+pub len: __u32, -+pub __bindgen_anon_3: io_uring_sqe__bindgen_ty_3, -+pub user_data: __u64, -+pub __bindgen_anon_4: io_uring_sqe__bindgen_ty_4, -+pub personality: __u16, -+pub __bindgen_anon_5: io_uring_sqe__bindgen_ty_5, -+pub __bindgen_anon_6: io_uring_sqe__bindgen_ty_6, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_1 { -+pub off: __u64, -+pub addr2: __u64, -+pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_1__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sqe__bindgen_ty_1__bindgen_ty_1 { -+pub cmd_op: __u32, -+pub __pad1: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_2 { -+pub addr: __u64, -+pub splice_off_in: __u64, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_3 { -+pub rw_flags: __kernel_rwf_t, -+pub fsync_flags: __u32, -+pub poll_events: __u16, -+pub poll32_events: __u32, -+pub sync_range_flags: __u32, -+pub msg_flags: __u32, -+pub timeout_flags: __u32, -+pub accept_flags: __u32, -+pub cancel_flags: __u32, -+pub open_flags: __u32, -+pub statx_flags: __u32, -+pub fadvise_advice: __u32, -+pub splice_flags: __u32, -+pub rename_flags: __u32, -+pub unlink_flags: __u32, -+pub hardlink_flags: __u32, -+pub xattr_flags: __u32, -+pub msg_ring_flags: __u32, -+pub uring_cmd_flags: __u32, -+} -+#[repr(C, packed)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_4 { -+pub buf_index: __u16, -+pub buf_group: __u16, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_sqe__bindgen_ty_5 { -+pub splice_fd_in: __s32, -+pub file_index: __u32, -+pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_5__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sqe__bindgen_ty_5__bindgen_ty_1 { -+pub addr_len: __u16, -+pub __pad3: [__u16; 1usize], -+} -+#[repr(C)] -+pub struct io_uring_sqe__bindgen_ty_6 { -+pub __bindgen_anon_1: __BindgenUnionField, -+pub cmd: __BindgenUnionField<[__u8; 0usize]>, -+pub bindgen_union_field: [u64; 2usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sqe__bindgen_ty_6__bindgen_ty_1 { -+pub addr3: __u64, -+pub __pad2: [__u64; 1usize], -+} -+pub const IOSQE_FIXED_FILE_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_FIXED_FILE_BIT; -+pub const IOSQE_IO_DRAIN_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_DRAIN_BIT; -+pub const IOSQE_IO_LINK_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_LINK_BIT; -+pub const IOSQE_IO_HARDLINK_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_IO_HARDLINK_BIT; -+pub const IOSQE_ASYNC_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_ASYNC_BIT; -+pub const IOSQE_BUFFER_SELECT_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_BUFFER_SELECT_BIT; -+pub const IOSQE_CQE_SKIP_SUCCESS_BIT: _bindgen_ty_7 = _bindgen_ty_7::IOSQE_CQE_SKIP_SUCCESS_BIT; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_7 { -+IOSQE_FIXED_FILE_BIT = 0, -+IOSQE_IO_DRAIN_BIT = 1, -+IOSQE_IO_LINK_BIT = 2, -+IOSQE_IO_HARDLINK_BIT = 3, -+IOSQE_ASYNC_BIT = 4, -+IOSQE_BUFFER_SELECT_BIT = 5, -+IOSQE_CQE_SKIP_SUCCESS_BIT = 6, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum io_uring_op { -+IORING_OP_NOP = 0, -+IORING_OP_READV = 1, -+IORING_OP_WRITEV = 2, -+IORING_OP_FSYNC = 3, -+IORING_OP_READ_FIXED = 4, -+IORING_OP_WRITE_FIXED = 5, -+IORING_OP_POLL_ADD = 6, -+IORING_OP_POLL_REMOVE = 7, -+IORING_OP_SYNC_FILE_RANGE = 8, -+IORING_OP_SENDMSG = 9, -+IORING_OP_RECVMSG = 10, -+IORING_OP_TIMEOUT = 11, -+IORING_OP_TIMEOUT_REMOVE = 12, -+IORING_OP_ACCEPT = 13, -+IORING_OP_ASYNC_CANCEL = 14, -+IORING_OP_LINK_TIMEOUT = 15, -+IORING_OP_CONNECT = 16, -+IORING_OP_FALLOCATE = 17, -+IORING_OP_OPENAT = 18, -+IORING_OP_CLOSE = 19, -+IORING_OP_FILES_UPDATE = 20, -+IORING_OP_STATX = 21, -+IORING_OP_READ = 22, -+IORING_OP_WRITE = 23, -+IORING_OP_FADVISE = 24, -+IORING_OP_MADVISE = 25, -+IORING_OP_SEND = 26, -+IORING_OP_RECV = 27, -+IORING_OP_OPENAT2 = 28, -+IORING_OP_EPOLL_CTL = 29, -+IORING_OP_SPLICE = 30, -+IORING_OP_PROVIDE_BUFFERS = 31, -+IORING_OP_REMOVE_BUFFERS = 32, -+IORING_OP_TEE = 33, -+IORING_OP_SHUTDOWN = 34, -+IORING_OP_RENAMEAT = 35, -+IORING_OP_UNLINKAT = 36, -+IORING_OP_MKDIRAT = 37, -+IORING_OP_SYMLINKAT = 38, -+IORING_OP_LINKAT = 39, -+IORING_OP_MSG_RING = 40, -+IORING_OP_FSETXATTR = 41, -+IORING_OP_SETXATTR = 42, -+IORING_OP_FGETXATTR = 43, -+IORING_OP_GETXATTR = 44, -+IORING_OP_SOCKET = 45, -+IORING_OP_URING_CMD = 46, -+IORING_OP_SEND_ZC = 47, -+IORING_OP_SENDMSG_ZC = 48, -+IORING_OP_LAST = 49, -+} -+pub const IORING_MSG_DATA: _bindgen_ty_8 = _bindgen_ty_8::IORING_MSG_DATA; -+pub const IORING_MSG_SEND_FD: _bindgen_ty_8 = _bindgen_ty_8::IORING_MSG_SEND_FD; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_8 { -+IORING_MSG_DATA = 0, -+IORING_MSG_SEND_FD = 1, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct io_uring_cqe { -+pub user_data: __u64, -+pub res: __s32, -+pub flags: __u32, -+pub big_cqe: __IncompleteArrayField<__u64>, -+} -+pub const IORING_CQE_BUFFER_SHIFT: _bindgen_ty_9 = _bindgen_ty_9::IORING_CQE_BUFFER_SHIFT; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_9 { -+IORING_CQE_BUFFER_SHIFT = 16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_sqring_offsets { -+pub head: __u32, -+pub tail: __u32, -+pub ring_mask: __u32, -+pub ring_entries: __u32, -+pub flags: __u32, -+pub dropped: __u32, -+pub array: __u32, -+pub resv1: __u32, -+pub resv2: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_cqring_offsets { -+pub head: __u32, -+pub tail: __u32, -+pub ring_mask: __u32, -+pub ring_entries: __u32, -+pub overflow: __u32, -+pub cqes: __u32, -+pub flags: __u32, -+pub resv1: __u32, -+pub resv2: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_params { -+pub sq_entries: __u32, -+pub cq_entries: __u32, -+pub flags: __u32, -+pub sq_thread_cpu: __u32, -+pub sq_thread_idle: __u32, -+pub features: __u32, -+pub wq_fd: __u32, -+pub resv: [__u32; 3usize], -+pub sq_off: io_sqring_offsets, -+pub cq_off: io_cqring_offsets, -+} -+pub const IORING_REGISTER_BUFFERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS; -+pub const IORING_UNREGISTER_BUFFERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_BUFFERS; -+pub const IORING_REGISTER_FILES: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES; -+pub const IORING_UNREGISTER_FILES: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_FILES; -+pub const IORING_REGISTER_EVENTFD: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_EVENTFD; -+pub const IORING_UNREGISTER_EVENTFD: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_EVENTFD; -+pub const IORING_REGISTER_FILES_UPDATE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES_UPDATE; -+pub const IORING_REGISTER_EVENTFD_ASYNC: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_EVENTFD_ASYNC; -+pub const IORING_REGISTER_PROBE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PROBE; -+pub const IORING_REGISTER_PERSONALITY: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PERSONALITY; -+pub const IORING_UNREGISTER_PERSONALITY: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_PERSONALITY; -+pub const IORING_REGISTER_RESTRICTIONS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_RESTRICTIONS; -+pub const IORING_REGISTER_ENABLE_RINGS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_ENABLE_RINGS; -+pub const IORING_REGISTER_FILES2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES2; -+pub const IORING_REGISTER_FILES_UPDATE2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILES_UPDATE2; -+pub const IORING_REGISTER_BUFFERS2: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS2; -+pub const IORING_REGISTER_BUFFERS_UPDATE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_BUFFERS_UPDATE; -+pub const IORING_REGISTER_IOWQ_AFF: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_IOWQ_AFF; -+pub const IORING_UNREGISTER_IOWQ_AFF: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_IOWQ_AFF; -+pub const IORING_REGISTER_IOWQ_MAX_WORKERS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_IOWQ_MAX_WORKERS; -+pub const IORING_REGISTER_RING_FDS: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_RING_FDS; -+pub const IORING_UNREGISTER_RING_FDS: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_RING_FDS; -+pub const IORING_REGISTER_PBUF_RING: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_PBUF_RING; -+pub const IORING_UNREGISTER_PBUF_RING: _bindgen_ty_10 = _bindgen_ty_10::IORING_UNREGISTER_PBUF_RING; -+pub const IORING_REGISTER_SYNC_CANCEL: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_SYNC_CANCEL; -+pub const IORING_REGISTER_FILE_ALLOC_RANGE: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_FILE_ALLOC_RANGE; -+pub const IORING_REGISTER_LAST: _bindgen_ty_10 = _bindgen_ty_10::IORING_REGISTER_LAST; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_10 { -+IORING_REGISTER_BUFFERS = 0, -+IORING_UNREGISTER_BUFFERS = 1, -+IORING_REGISTER_FILES = 2, -+IORING_UNREGISTER_FILES = 3, -+IORING_REGISTER_EVENTFD = 4, -+IORING_UNREGISTER_EVENTFD = 5, -+IORING_REGISTER_FILES_UPDATE = 6, -+IORING_REGISTER_EVENTFD_ASYNC = 7, -+IORING_REGISTER_PROBE = 8, -+IORING_REGISTER_PERSONALITY = 9, -+IORING_UNREGISTER_PERSONALITY = 10, -+IORING_REGISTER_RESTRICTIONS = 11, -+IORING_REGISTER_ENABLE_RINGS = 12, -+IORING_REGISTER_FILES2 = 13, -+IORING_REGISTER_FILES_UPDATE2 = 14, -+IORING_REGISTER_BUFFERS2 = 15, -+IORING_REGISTER_BUFFERS_UPDATE = 16, -+IORING_REGISTER_IOWQ_AFF = 17, -+IORING_UNREGISTER_IOWQ_AFF = 18, -+IORING_REGISTER_IOWQ_MAX_WORKERS = 19, -+IORING_REGISTER_RING_FDS = 20, -+IORING_UNREGISTER_RING_FDS = 21, -+IORING_REGISTER_PBUF_RING = 22, -+IORING_UNREGISTER_PBUF_RING = 23, -+IORING_REGISTER_SYNC_CANCEL = 24, -+IORING_REGISTER_FILE_ALLOC_RANGE = 25, -+IORING_REGISTER_LAST = 26, -+} -+pub const IO_WQ_BOUND: _bindgen_ty_11 = _bindgen_ty_11::IO_WQ_BOUND; -+pub const IO_WQ_UNBOUND: _bindgen_ty_11 = _bindgen_ty_11::IO_WQ_UNBOUND; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_11 { -+IO_WQ_BOUND = 0, -+IO_WQ_UNBOUND = 1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_files_update { -+pub offset: __u32, -+pub resv: __u32, -+pub fds: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_rsrc_register { -+pub nr: __u32, -+pub flags: __u32, -+pub resv2: __u64, -+pub data: __u64, -+pub tags: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_rsrc_update { -+pub offset: __u32, -+pub resv: __u32, -+pub data: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_rsrc_update2 { -+pub offset: __u32, -+pub resv: __u32, -+pub data: __u64, -+pub tags: __u64, -+pub nr: __u32, -+pub resv2: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_notification_slot { -+pub tag: __u64, -+pub resv: [__u64; 3usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_notification_register { -+pub nr_slots: __u32, -+pub resv: __u32, -+pub resv2: __u64, -+pub data: __u64, -+pub resv3: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_probe_op { -+pub op: __u8, -+pub resv: __u8, -+pub flags: __u16, -+pub resv2: __u32, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct io_uring_probe { -+pub last_op: __u8, -+pub ops_len: __u8, -+pub resv: __u16, -+pub resv2: [__u32; 3usize], -+pub ops: __IncompleteArrayField, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct io_uring_restriction { -+pub opcode: __u16, -+pub __bindgen_anon_1: io_uring_restriction__bindgen_ty_1, -+pub resv: __u8, -+pub resv2: [__u32; 3usize], -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union io_uring_restriction__bindgen_ty_1 { -+pub register_op: __u8, -+pub sqe_op: __u8, -+pub sqe_flags: __u8, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_buf { -+pub addr: __u64, -+pub len: __u32, -+pub bid: __u16, -+pub resv: __u16, -+} -+#[repr(C)] -+pub struct io_uring_buf_ring { -+pub __bindgen_anon_1: io_uring_buf_ring__bindgen_ty_1, -+} -+#[repr(C)] -+pub struct io_uring_buf_ring__bindgen_ty_1 { -+pub __bindgen_anon_1: __BindgenUnionField, -+pub bufs: __BindgenUnionField<[io_uring_buf; 0usize]>, -+pub bindgen_union_field: [u64; 2usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_buf_ring__bindgen_ty_1__bindgen_ty_1 { -+pub resv1: __u64, -+pub resv2: __u32, -+pub resv3: __u16, -+pub tail: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_buf_reg { -+pub ring_addr: __u64, -+pub ring_entries: __u32, -+pub bgid: __u16, -+pub pad: __u16, -+pub resv: [__u64; 3usize], -+} -+pub const IORING_RESTRICTION_REGISTER_OP: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_REGISTER_OP; -+pub const IORING_RESTRICTION_SQE_OP: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_OP; -+pub const IORING_RESTRICTION_SQE_FLAGS_ALLOWED: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_FLAGS_ALLOWED; -+pub const IORING_RESTRICTION_SQE_FLAGS_REQUIRED: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_SQE_FLAGS_REQUIRED; -+pub const IORING_RESTRICTION_LAST: _bindgen_ty_12 = _bindgen_ty_12::IORING_RESTRICTION_LAST; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_12 { -+IORING_RESTRICTION_REGISTER_OP = 0, -+IORING_RESTRICTION_SQE_OP = 1, -+IORING_RESTRICTION_SQE_FLAGS_ALLOWED = 2, -+IORING_RESTRICTION_SQE_FLAGS_REQUIRED = 3, -+IORING_RESTRICTION_LAST = 4, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_getevents_arg { -+pub sigmask: __u64, -+pub sigmask_sz: __u32, -+pub pad: __u32, -+pub ts: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_sync_cancel_reg { -+pub addr: __u64, -+pub fd: __s32, -+pub flags: __u32, -+pub timeout: __kernel_timespec, -+pub pad: [__u64; 4usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_file_index_range { -+pub off: __u32, -+pub len: __u32, -+pub resv: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct io_uring_recvmsg_out { -+pub namelen: __u32, -+pub controllen: __u32, -+pub payloadlen: __u32, -+pub flags: __u32, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct sockaddr { -+pub __storage: __kernel_sockaddr_storage, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct linger { -+pub l_onoff: crate::ctypes::c_int, -+pub l_linger: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct linux_dirent64 { -+pub d_ino: crate::ctypes::c_ulong, -+pub d_off: crate::ctypes::c_long, -+pub d_reclen: __u16, -+pub d_type: __u8, -+pub d_name: __IncompleteArrayField, -+} -+pub type socklen_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct stat { -+pub st_dev: crate::ctypes::c_ulong, -+pub st_ino: crate::ctypes::c_ulong, -+pub st_mode: crate::ctypes::c_uint, -+pub st_nlink: crate::ctypes::c_uint, -+pub st_uid: crate::ctypes::c_uint, -+pub st_gid: crate::ctypes::c_uint, -+pub st_rdev: crate::ctypes::c_ulong, -+pub __pad1: crate::ctypes::c_ulong, -+pub st_size: crate::ctypes::c_long, -+pub st_blksize: crate::ctypes::c_int, -+pub __pad2: crate::ctypes::c_int, -+pub st_blocks: crate::ctypes::c_long, -+pub st_atime: crate::ctypes::c_long, -+pub st_atime_nsec: crate::ctypes::c_ulong, -+pub st_mtime: crate::ctypes::c_long, -+pub st_mtime_nsec: crate::ctypes::c_ulong, -+pub st_ctime: crate::ctypes::c_long, -+pub st_ctime_nsec: crate::ctypes::c_ulong, -+pub __unused4: crate::ctypes::c_uint, -+pub __unused5: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statfs { -+pub f_type: __kernel_long_t, -+pub f_bsize: __kernel_long_t, -+pub f_blocks: __kernel_long_t, -+pub f_bfree: __kernel_long_t, -+pub f_bavail: __kernel_long_t, -+pub f_files: __kernel_long_t, -+pub f_ffree: __kernel_long_t, -+pub f_fsid: __kernel_fsid_t, -+pub f_namelen: __kernel_long_t, -+pub f_frsize: __kernel_long_t, -+pub f_flags: __kernel_long_t, -+pub f_spare: [__kernel_long_t; 4usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct statfs64 { -+pub f_type: __kernel_long_t, -+pub f_bsize: __kernel_long_t, -+pub f_blocks: __u64, -+pub f_bfree: __u64, -+pub f_bavail: __u64, -+pub f_files: __u64, -+pub f_ffree: __u64, -+pub f_fsid: __kernel_fsid_t, -+pub f_namelen: __kernel_long_t, -+pub f_frsize: __kernel_long_t, -+pub f_flags: __kernel_long_t, -+pub f_spare: [__kernel_long_t; 4usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct compat_statfs64 { -+pub f_type: __u32, -+pub f_bsize: __u32, -+pub f_blocks: __u64, -+pub f_bfree: __u64, -+pub f_bavail: __u64, -+pub f_files: __u64, -+pub f_ffree: __u64, -+pub f_fsid: __kernel_fsid_t, -+pub f_namelen: __u32, -+pub f_frsize: __u32, -+pub f_flags: __u32, -+pub f_spare: [__u32; 4usize], -+} -+pub type __fsword_t = __kernel_long_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct user_desc { -+pub entry_number: crate::ctypes::c_uint, -+pub base_addr: crate::ctypes::c_uint, -+pub limit: crate::ctypes::c_uint, -+pub _bitfield_align_1: [u8; 0], -+pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>, -+pub __bindgen_padding_0: [u8; 3usize], -+} -+impl user_desc { -+#[inline] -+pub fn seg_32bit(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_seg_32bit(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(0usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn contents(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(1usize, 2u8) as u32) } -+} -+#[inline] -+pub fn set_contents(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(1usize, 2u8, val as u64) -+} -+} -+#[inline] -+pub fn read_exec_only(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_read_exec_only(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(3usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn limit_in_pages(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_limit_in_pages(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(4usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn seg_not_present(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(5usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_seg_not_present(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(5usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn useable(&self) -> crate::ctypes::c_uint { -+unsafe { ::core::mem::transmute(self._bitfield_1.get(6usize, 1u8) as u32) } -+} -+#[inline] -+pub fn set_useable(&mut self, val: crate::ctypes::c_uint) { -+unsafe { -+let val: u32 = ::core::mem::transmute(val); -+self._bitfield_1.set(6usize, 1u8, val as u64) -+} -+} -+#[inline] -+pub fn new_bitfield_1(seg_32bit: crate::ctypes::c_uint, contents: crate::ctypes::c_uint, read_exec_only: crate::ctypes::c_uint, limit_in_pages: crate::ctypes::c_uint, seg_not_present: crate::ctypes::c_uint, useable: crate::ctypes::c_uint) -> __BindgenBitfieldUnit<[u8; 1usize]> { -+let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default(); -+__bindgen_bitfield_unit.set(0usize, 1u8, { -+let seg_32bit: u32 = unsafe { ::core::mem::transmute(seg_32bit) }; -+seg_32bit as u64 -+}); -+__bindgen_bitfield_unit.set(1usize, 2u8, { -+let contents: u32 = unsafe { ::core::mem::transmute(contents) }; -+contents as u64 -+}); -+__bindgen_bitfield_unit.set(3usize, 1u8, { -+let read_exec_only: u32 = unsafe { ::core::mem::transmute(read_exec_only) }; -+read_exec_only as u64 -+}); -+__bindgen_bitfield_unit.set(4usize, 1u8, { -+let limit_in_pages: u32 = unsafe { ::core::mem::transmute(limit_in_pages) }; -+limit_in_pages as u64 -+}); -+__bindgen_bitfield_unit.set(5usize, 1u8, { -+let seg_not_present: u32 = unsafe { ::core::mem::transmute(seg_not_present) }; -+seg_not_present as u64 -+}); -+__bindgen_bitfield_unit.set(6usize, 1u8, { -+let useable: u32 = unsafe { ::core::mem::transmute(useable) }; -+useable as u64 -+}); -+__bindgen_bitfield_unit -+} -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct msghdr { -+pub msg_name: *mut crate::ctypes::c_void, -+pub msg_namelen: crate::ctypes::c_int, -+pub msg_iov: *mut iovec, -+pub msg_iovlen: size_t, -+pub msg_control: *mut crate::ctypes::c_void, -+pub msg_controllen: size_t, -+pub msg_flags: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct cmsghdr { -+pub cmsg_len: size_t, -+pub cmsg_level: crate::ctypes::c_int, -+pub cmsg_type: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ucred { -+pub pid: __u32, -+pub uid: __u32, -+pub gid: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct mmsghdr { -+pub msg_hdr: msghdr, -+pub msg_len: crate::ctypes::c_uint, -+} -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs -new file mode 100644 -index 000000000..1b6c25e1f ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/ioctl.rs -@@ -0,0 +1,1465 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+pub const FIONREAD: u32 = 21531; -+pub const FIONBIO: u32 = 21537; -+pub const FIOCLEX: u32 = 21585; -+pub const FIONCLEX: u32 = 21584; -+pub const FIOASYNC: u32 = 21586; -+pub const FIOQSIZE: u32 = 21600; -+pub const TCXONC: u32 = 21514; -+pub const TCFLSH: u32 = 21515; -+pub const TIOCSCTTY: u32 = 21518; -+pub const TIOCSPGRP: u32 = 21520; -+pub const TIOCOUTQ: u32 = 21521; -+pub const TIOCSTI: u32 = 21522; -+pub const TIOCSWINSZ: u32 = 21524; -+pub const TIOCMGET: u32 = 21525; -+pub const TIOCMBIS: u32 = 21526; -+pub const TIOCMBIC: u32 = 21527; -+pub const TIOCMSET: u32 = 21528; -+pub const TIOCSSOFTCAR: u32 = 21530; -+pub const TIOCLINUX: u32 = 21532; -+pub const TIOCCONS: u32 = 21533; -+pub const TIOCSSERIAL: u32 = 21535; -+pub const TIOCPKT: u32 = 21536; -+pub const TIOCNOTTY: u32 = 21538; -+pub const TIOCSETD: u32 = 21539; -+pub const TIOCSBRK: u32 = 21543; -+pub const TIOCCBRK: u32 = 21544; -+pub const TIOCSRS485: u32 = 21551; -+pub const TIOCSPTLCK: u32 = 1074025521; -+pub const TIOCSIG: u32 = 1074025526; -+pub const TIOCVHANGUP: u32 = 21559; -+pub const TIOCSERCONFIG: u32 = 21587; -+pub const TIOCSERGWILD: u32 = 21588; -+pub const TIOCSERSWILD: u32 = 21589; -+pub const TIOCSLCKTRMIOS: u32 = 21591; -+pub const TIOCSERGSTRUCT: u32 = 21592; -+pub const TIOCSERGETLSR: u32 = 21593; -+pub const TIOCSERGETMULTI: u32 = 21594; -+pub const TIOCSERSETMULTI: u32 = 21595; -+pub const TIOCMIWAIT: u32 = 21596; -+pub const TCGETS: u32 = 21505; -+pub const TCGETA: u32 = 21509; -+pub const TCSBRK: u32 = 21513; -+pub const TCSBRKP: u32 = 21541; -+pub const TCSETA: u32 = 21510; -+pub const TCSETAF: u32 = 21512; -+pub const TCSETAW: u32 = 21511; -+pub const TIOCEXCL: u32 = 21516; -+pub const TIOCNXCL: u32 = 21517; -+pub const TIOCGDEV: u32 = 2147767346; -+pub const TIOCGEXCL: u32 = 2147767360; -+pub const TIOCGICOUNT: u32 = 21597; -+pub const TIOCGLCKTRMIOS: u32 = 21590; -+pub const TIOCGPGRP: u32 = 21519; -+pub const TIOCGPKT: u32 = 2147767352; -+pub const TIOCGPTLCK: u32 = 2147767353; -+pub const TIOCGPTN: u32 = 2147767344; -+pub const TIOCGPTPEER: u32 = 21569; -+pub const TIOCGRS485: u32 = 21550; -+pub const TIOCGSERIAL: u32 = 21534; -+pub const TIOCGSID: u32 = 21545; -+pub const TIOCGSOFTCAR: u32 = 21529; -+pub const TIOCGWINSZ: u32 = 21523; -+pub const TCGETS2: u32 = 2150388778; -+pub const TCGETX: u32 = 21554; -+pub const TCSETS: u32 = 21506; -+pub const TCSETS2: u32 = 1076646955; -+pub const TCSETSF: u32 = 21508; -+pub const TCSETSF2: u32 = 1076646957; -+pub const TCSETSW: u32 = 21507; -+pub const TCSETSW2: u32 = 1076646956; -+pub const TCSETX: u32 = 21555; -+pub const TCSETXF: u32 = 21556; -+pub const TCSETXW: u32 = 21557; -+pub const TIOCGETD: u32 = 21540; -+pub const MTIOCGET: u32 = 2150657282; -+pub const BLKSSZGET: u32 = 4712; -+pub const BLKPBSZGET: u32 = 4731; -+pub const BLKROSET: u32 = 4701; -+pub const BLKROGET: u32 = 4702; -+pub const BLKRRPART: u32 = 4703; -+pub const BLKGETSIZE: u32 = 4704; -+pub const BLKFLSBUF: u32 = 4705; -+pub const BLKRASET: u32 = 4706; -+pub const BLKRAGET: u32 = 4707; -+pub const BLKFRASET: u32 = 4708; -+pub const BLKFRAGET: u32 = 4709; -+pub const BLKSECTSET: u32 = 4710; -+pub const BLKSECTGET: u32 = 4711; -+pub const BLKPG: u32 = 4713; -+pub const BLKBSZGET: u32 = 2148012656; -+pub const BLKBSZSET: u32 = 1074270833; -+pub const BLKGETSIZE64: u32 = 2148012658; -+pub const BLKTRACESETUP: u32 = 3225948787; -+pub const BLKTRACESTART: u32 = 4724; -+pub const BLKTRACESTOP: u32 = 4725; -+pub const BLKTRACETEARDOWN: u32 = 4726; -+pub const BLKDISCARD: u32 = 4727; -+pub const BLKIOMIN: u32 = 4728; -+pub const BLKIOOPT: u32 = 4729; -+pub const BLKALIGNOFF: u32 = 4730; -+pub const BLKDISCARDZEROES: u32 = 4732; -+pub const BLKSECDISCARD: u32 = 4733; -+pub const BLKROTATIONAL: u32 = 4734; -+pub const BLKZEROOUT: u32 = 4735; -+pub const UFFDIO_REGISTER: u32 = 3223366144; -+pub const UFFDIO_UNREGISTER: u32 = 2148575745; -+pub const UFFDIO_WAKE: u32 = 2148575746; -+pub const UFFDIO_COPY: u32 = 3223890435; -+pub const UFFDIO_ZEROPAGE: u32 = 3223366148; -+pub const UFFDIO_WRITEPROTECT: u32 = 3222841862; -+pub const UFFDIO_API: u32 = 3222841919; -+pub const NS_GET_USERNS: u32 = 46849; -+pub const NS_GET_PARENT: u32 = 46850; -+pub const NS_GET_NSTYPE: u32 = 46851; -+pub const KDGETLED: u32 = 19249; -+pub const KDSETLED: u32 = 19250; -+pub const KDGKBLED: u32 = 19300; -+pub const KDSKBLED: u32 = 19301; -+pub const KDGKBTYPE: u32 = 19251; -+pub const KDADDIO: u32 = 19252; -+pub const KDDELIO: u32 = 19253; -+pub const KDENABIO: u32 = 19254; -+pub const KDDISABIO: u32 = 19255; -+pub const KDSETMODE: u32 = 19258; -+pub const KDGETMODE: u32 = 19259; -+pub const KDMKTONE: u32 = 19248; -+pub const KIOCSOUND: u32 = 19247; -+pub const GIO_CMAP: u32 = 19312; -+pub const PIO_CMAP: u32 = 19313; -+pub const GIO_FONT: u32 = 19296; -+pub const GIO_FONTX: u32 = 19307; -+pub const PIO_FONT: u32 = 19297; -+pub const PIO_FONTX: u32 = 19308; -+pub const PIO_FONTRESET: u32 = 19309; -+pub const GIO_SCRNMAP: u32 = 19264; -+pub const GIO_UNISCRNMAP: u32 = 19305; -+pub const PIO_SCRNMAP: u32 = 19265; -+pub const PIO_UNISCRNMAP: u32 = 19306; -+pub const GIO_UNIMAP: u32 = 19302; -+pub const PIO_UNIMAP: u32 = 19303; -+pub const PIO_UNIMAPCLR: u32 = 19304; -+pub const KDGKBMODE: u32 = 19268; -+pub const KDSKBMODE: u32 = 19269; -+pub const KDGKBMETA: u32 = 19298; -+pub const KDSKBMETA: u32 = 19299; -+pub const KDGKBENT: u32 = 19270; -+pub const KDSKBENT: u32 = 19271; -+pub const KDGKBSENT: u32 = 19272; -+pub const KDSKBSENT: u32 = 19273; -+pub const KDGKBDIACR: u32 = 19274; -+pub const KDGETKEYCODE: u32 = 19276; -+pub const KDSETKEYCODE: u32 = 19277; -+pub const KDSIGACCEPT: u32 = 19278; -+pub const VT_OPENQRY: u32 = 22016; -+pub const VT_GETMODE: u32 = 22017; -+pub const VT_SETMODE: u32 = 22018; -+pub const VT_GETSTATE: u32 = 22019; -+pub const VT_RELDISP: u32 = 22021; -+pub const VT_ACTIVATE: u32 = 22022; -+pub const VT_WAITACTIVE: u32 = 22023; -+pub const VT_DISALLOCATE: u32 = 22024; -+pub const VT_RESIZE: u32 = 22025; -+pub const VT_RESIZEX: u32 = 22026; -+pub const FIOSETOWN: u32 = 35073; -+pub const SIOCSPGRP: u32 = 35074; -+pub const FIOGETOWN: u32 = 35075; -+pub const SIOCGPGRP: u32 = 35076; -+pub const SIOCATMARK: u32 = 35077; -+pub const SIOCGSTAMP: u32 = 35078; -+pub const TIOCINQ: u32 = 21531; -+pub const SIOCADDRT: u32 = 35083; -+pub const SIOCDELRT: u32 = 35084; -+pub const SIOCGIFNAME: u32 = 35088; -+pub const SIOCSIFLINK: u32 = 35089; -+pub const SIOCGIFCONF: u32 = 35090; -+pub const SIOCGIFFLAGS: u32 = 35091; -+pub const SIOCSIFFLAGS: u32 = 35092; -+pub const SIOCGIFADDR: u32 = 35093; -+pub const SIOCSIFADDR: u32 = 35094; -+pub const SIOCGIFDSTADDR: u32 = 35095; -+pub const SIOCSIFDSTADDR: u32 = 35096; -+pub const SIOCGIFBRDADDR: u32 = 35097; -+pub const SIOCSIFBRDADDR: u32 = 35098; -+pub const SIOCGIFNETMASK: u32 = 35099; -+pub const SIOCSIFNETMASK: u32 = 35100; -+pub const SIOCGIFMETRIC: u32 = 35101; -+pub const SIOCSIFMETRIC: u32 = 35102; -+pub const SIOCGIFMEM: u32 = 35103; -+pub const SIOCSIFMEM: u32 = 35104; -+pub const SIOCGIFMTU: u32 = 35105; -+pub const SIOCSIFMTU: u32 = 35106; -+pub const SIOCSIFHWADDR: u32 = 35108; -+pub const SIOCGIFENCAP: u32 = 35109; -+pub const SIOCSIFENCAP: u32 = 35110; -+pub const SIOCGIFHWADDR: u32 = 35111; -+pub const SIOCGIFSLAVE: u32 = 35113; -+pub const SIOCSIFSLAVE: u32 = 35120; -+pub const SIOCADDMULTI: u32 = 35121; -+pub const SIOCDELMULTI: u32 = 35122; -+pub const SIOCDARP: u32 = 35155; -+pub const SIOCGARP: u32 = 35156; -+pub const SIOCSARP: u32 = 35157; -+pub const SIOCDRARP: u32 = 35168; -+pub const SIOCGRARP: u32 = 35169; -+pub const SIOCSRARP: u32 = 35170; -+pub const SIOCGIFMAP: u32 = 35184; -+pub const SIOCSIFMAP: u32 = 35185; -+pub const SIOCRTMSG: u32 = 35085; -+pub const SIOCSIFNAME: u32 = 35107; -+pub const SIOCGIFINDEX: u32 = 35123; -+pub const SIOGIFINDEX: u32 = 35123; -+pub const SIOCSIFPFLAGS: u32 = 35124; -+pub const SIOCGIFPFLAGS: u32 = 35125; -+pub const SIOCDIFADDR: u32 = 35126; -+pub const SIOCSIFHWBROADCAST: u32 = 35127; -+pub const SIOCGIFCOUNT: u32 = 35128; -+pub const SIOCGIFBR: u32 = 35136; -+pub const SIOCSIFBR: u32 = 35137; -+pub const SIOCGIFTXQLEN: u32 = 35138; -+pub const SIOCSIFTXQLEN: u32 = 35139; -+pub const SIOCADDDLCI: u32 = 35200; -+pub const SIOCDELDLCI: u32 = 35201; -+pub const SIOCDEVPRIVATE: u32 = 35312; -+pub const SIOCPROTOPRIVATE: u32 = 35296; -+pub const FIBMAP: u32 = 1; -+pub const FIGETBSZ: u32 = 2; -+pub const FIFREEZE: u32 = 3221510263; -+pub const FITHAW: u32 = 3221510264; -+pub const FITRIM: u32 = 3222820985; -+pub const FICLONE: u32 = 1074041865; -+pub const FICLONERANGE: u32 = 1075876877; -+pub const FIDEDUPERANGE: u32 = 3222836278; -+pub const FS_IOC_GETFLAGS: u32 = 2148034049; -+pub const FS_IOC_SETFLAGS: u32 = 1074292226; -+pub const FS_IOC_GETVERSION: u32 = 2148038145; -+pub const FS_IOC_SETVERSION: u32 = 1074296322; -+pub const FS_IOC_FIEMAP: u32 = 3223348747; -+pub const FS_IOC32_GETFLAGS: u32 = 2147771905; -+pub const FS_IOC32_SETFLAGS: u32 = 1074030082; -+pub const FS_IOC32_GETVERSION: u32 = 2147776001; -+pub const FS_IOC32_SETVERSION: u32 = 1074034178; -+pub const FS_IOC_FSGETXATTR: u32 = 2149341215; -+pub const FS_IOC_FSSETXATTR: u32 = 1075599392; -+pub const FS_IOC_GETFSLABEL: u32 = 2164298801; -+pub const FS_IOC_SETFSLABEL: u32 = 1090556978; -+pub const VIDIOC_SUBDEV_QUERYSTD: u32 = 2148030015; -+pub const AUTOFS_DEV_IOCTL_CLOSEMOUNT: u32 = 3222836085; -+pub const LIRC_SET_SEND_CARRIER: u32 = 1074030867; -+pub const AUTOFS_IOC_PROTOSUBVER: u32 = 2147783527; -+pub const PTP_SYS_OFFSET_PRECISE: u32 = 3225435400; -+pub const FSI_SCOM_WRITE: u32 = 3223352066; -+pub const ATM_GETCIRANGE: u32 = 1074815370; -+pub const DMA_BUF_SET_NAME_B: u32 = 1074291201; -+pub const RIO_CM_EP_GET_LIST_SIZE: u32 = 3221512961; -+pub const TUNSETPERSIST: u32 = 1074025675; -+pub const FS_IOC_GET_ENCRYPTION_POLICY: u32 = 1074554389; -+pub const CEC_RECEIVE: u32 = 3224920326; -+pub const MGSL_IOCGPARAMS: u32 = 2150657281; -+pub const ENI_SETMULT: u32 = 1074815335; -+pub const RIO_GET_EVENT_MASK: u32 = 2147773710; -+pub const LIRC_GET_MAX_TIMEOUT: u32 = 2147772681; -+pub const USBDEVFS_CLAIMINTERFACE: u32 = 2147767567; -+pub const CHIOMOVE: u32 = 1075077889; -+pub const SONYPI_IOCGBATFLAGS: u32 = 2147579399; -+pub const BTRFS_IOC_SYNC: u32 = 37896; -+pub const VIDIOC_TRY_FMT: u32 = 3234879040; -+pub const LIRC_SET_REC_MODE: u32 = 1074030866; -+pub const VIDIOC_DQEVENT: u32 = 2156418649; -+pub const RPMSG_DESTROY_EPT_IOCTL: u32 = 46338; -+pub const UVCIOC_CTRL_MAP: u32 = 3227546912; -+pub const VHOST_SET_BACKEND_FEATURES: u32 = 1074310949; -+pub const VHOST_VSOCK_SET_GUEST_CID: u32 = 1074311008; -+pub const UI_SET_KEYBIT: u32 = 1074025829; -+pub const LIRC_SET_REC_TIMEOUT: u32 = 1074030872; -+pub const FS_IOC_GET_ENCRYPTION_KEY_STATUS: u32 = 3229640218; -+pub const BTRFS_IOC_TREE_SEARCH_V2: u32 = 3228603409; -+pub const VHOST_SET_VRING_BASE: u32 = 1074310930; -+pub const RIO_ENABLE_DOORBELL_RANGE: u32 = 1074294025; -+pub const VIDIOC_TRY_EXT_CTRLS: u32 = 3223344713; -+pub const LIRC_GET_REC_MODE: u32 = 2147772674; -+pub const PPGETTIME: u32 = 2148561045; -+pub const BTRFS_IOC_RM_DEV: u32 = 1342215179; -+pub const ATM_SETBACKEND: u32 = 1073897970; -+pub const FSL_HV_IOCTL_PARTITION_START: u32 = 3222318851; -+pub const FBIO_WAITEVENT: u32 = 18056; -+pub const SWITCHTEC_IOCTL_PORT_TO_PFF: u32 = 3222034245; -+pub const NVME_IOCTL_IO_CMD: u32 = 3225964099; -+pub const IPMICTL_RECEIVE_MSG_TRUNC: u32 = 3224398091; -+pub const FDTWADDLE: u32 = 601; -+pub const NVME_IOCTL_SUBMIT_IO: u32 = 1076907586; -+pub const NILFS_IOCTL_SYNC: u32 = 2148036234; -+pub const VIDIOC_SUBDEV_S_DV_TIMINGS: u32 = 3229898327; -+pub const ASPEED_LPC_CTRL_IOCTL_GET_SIZE: u32 = 3222319616; -+pub const DM_DEV_STATUS: u32 = 3241737479; -+pub const TEE_IOC_CLOSE_SESSION: u32 = 2147787781; -+pub const NS_GETPSTAT: u32 = 3222298977; -+pub const UI_SET_PROPBIT: u32 = 1074025838; -+pub const TUNSETFILTEREBPF: u32 = 2147767521; -+pub const RIO_MPORT_MAINT_COMPTAG_SET: u32 = 1074031874; -+pub const AUTOFS_DEV_IOCTL_VERSION: u32 = 3222836081; -+pub const WDIOC_SETOPTIONS: u32 = 2147768068; -+pub const VHOST_SCSI_SET_ENDPOINT: u32 = 1088991040; -+pub const MGSL_IOCGTXIDLE: u32 = 27907; -+pub const ATM_ADDLECSADDR: u32 = 1074815374; -+pub const FSL_HV_IOCTL_GETPROP: u32 = 3223891719; -+pub const FDGETPRM: u32 = 2149581316; -+pub const HIDIOCAPPLICATION: u32 = 18434; -+pub const ENI_MEMDUMP: u32 = 1074815328; -+pub const PTP_SYS_OFFSET2: u32 = 1128283406; -+pub const VIDIOC_SUBDEV_G_DV_TIMINGS: u32 = 3229898328; -+pub const DMA_BUF_SET_NAME_A: u32 = 1074029057; -+pub const PTP_PIN_GETFUNC: u32 = 3227532550; -+pub const PTP_SYS_OFFSET_EXTENDED: u32 = 3300932873; -+pub const DFL_FPGA_PORT_UINT_SET_IRQ: u32 = 1074312776; -+pub const RTC_EPOCH_READ: u32 = 2148036621; -+pub const VIDIOC_SUBDEV_S_SELECTION: u32 = 3225441854; -+pub const VIDIOC_QUERY_EXT_CTRL: u32 = 3236451943; -+pub const ATM_GETLECSADDR: u32 = 1074815376; -+pub const FSL_HV_IOCTL_PARTITION_STOP: u32 = 3221794564; -+pub const SONET_GETDIAG: u32 = 2147770644; -+pub const ATMMPC_DATA: u32 = 25049; -+pub const IPMICTL_UNREGISTER_FOR_CMD_CHANS: u32 = 2148296989; -+pub const HIDIOCGCOLLECTIONINDEX: u32 = 1075333136; -+pub const RPMSG_CREATE_EPT_IOCTL: u32 = 1076409601; -+pub const GPIOHANDLE_GET_LINE_VALUES_IOCTL: u32 = 3225465864; -+pub const UI_DEV_SETUP: u32 = 1079792899; -+pub const ISST_IF_IO_CMD: u32 = 1074331138; -+pub const RIO_MPORT_MAINT_READ_REMOTE: u32 = 2149084423; -+pub const VIDIOC_OMAP3ISP_HIST_CFG: u32 = 3224393412; -+pub const BLKGETNRZONES: u32 = 2147750533; -+pub const VIDIOC_G_MODULATOR: u32 = 3225703990; -+pub const VBG_IOCTL_WRITE_CORE_DUMP: u32 = 3223082515; -+pub const USBDEVFS_SETINTERFACE: u32 = 2148029700; -+pub const PPPIOCGCHAN: u32 = 2147775543; -+pub const EVIOCGVERSION: u32 = 2147763457; -+pub const VHOST_NET_SET_BACKEND: u32 = 1074310960; -+pub const USBDEVFS_REAPURBNDELAY: u32 = 1074287885; -+pub const RNDZAPENTCNT: u32 = 20996; -+pub const VIDIOC_G_PARM: u32 = 3234616853; -+pub const TUNGETDEVNETNS: u32 = 21731; -+pub const LIRC_SET_MEASURE_CARRIER_MODE: u32 = 1074030877; -+pub const VHOST_SET_VRING_ERR: u32 = 1074310946; -+pub const VDUSE_VQ_SETUP: u32 = 1075872020; -+pub const AUTOFS_IOC_SETTIMEOUT: u32 = 3221787492; -+pub const VIDIOC_S_FREQUENCY: u32 = 1076647481; -+pub const F2FS_IOC_SEC_TRIM_FILE: u32 = 1075377428; -+pub const FS_IOC_REMOVE_ENCRYPTION_KEY: u32 = 3225445912; -+pub const WDIOC_GETPRETIMEOUT: u32 = 2147768073; -+pub const USBDEVFS_DROP_PRIVILEGES: u32 = 1074025758; -+pub const BTRFS_IOC_SNAP_CREATE_V2: u32 = 1342215191; -+pub const VHOST_VSOCK_SET_RUNNING: u32 = 1074048865; -+pub const STP_SET_OPTIONS: u32 = 1074275586; -+pub const FBIO_RADEON_GET_MIRROR: u32 = 2148024323; -+pub const IVTVFB_IOC_DMA_FRAME: u32 = 1075336896; -+pub const IPMICTL_SEND_COMMAND: u32 = 2150131981; -+pub const VIDIOC_G_ENC_INDEX: u32 = 2283296332; -+pub const DFL_FPGA_FME_PORT_PR: u32 = 46720; -+pub const CHIOSVOLTAG: u32 = 1076912914; -+pub const ATM_SETESIF: u32 = 1074815373; -+pub const FW_CDEV_IOC_SEND_RESPONSE: u32 = 1075323652; -+pub const PMU_IOC_GET_MODEL: u32 = 2148024835; -+pub const JSIOCGBTNMAP: u32 = 2214619700; -+pub const USBDEVFS_HUB_PORTINFO: u32 = 2155894035; -+pub const VBG_IOCTL_INTERRUPT_ALL_WAIT_FOR_EVENTS: u32 = 3222820363; -+pub const FDCLRPRM: u32 = 577; -+pub const BTRFS_IOC_SCRUB: u32 = 3288372251; -+pub const USBDEVFS_DISCONNECT: u32 = 21782; -+pub const TUNSETVNETBE: u32 = 1074025694; -+pub const ATMTCP_REMOVE: u32 = 24975; -+pub const VHOST_VDPA_GET_CONFIG: u32 = 2148052851; -+pub const PPPIOCGNPMODE: u32 = 3221779532; -+pub const FDGETDRVPRM: u32 = 2155872785; -+pub const TUNSETVNETLE: u32 = 1074025692; -+pub const PHN_SETREG: u32 = 1074294790; -+pub const PPPIOCDETACH: u32 = 1074033724; -+pub const MMTIMER_GETRES: u32 = 2148035841; -+pub const VIDIOC_SUBDEV_ENUMSTD: u32 = 3225966105; -+pub const PPGETFLAGS: u32 = 2147774618; -+pub const VDUSE_DEV_GET_FEATURES: u32 = 2148040977; -+pub const CAPI_MANUFACTURER_CMD: u32 = 3222291232; -+pub const VIDIOC_G_TUNER: u32 = 3226752541; -+pub const DM_TABLE_STATUS: u32 = 3241737484; -+pub const DM_DEV_ARM_POLL: u32 = 3241737488; -+pub const NE_CREATE_VM: u32 = 2148052512; -+pub const MEDIA_IOC_ENUM_LINKS: u32 = 3223878658; -+pub const F2FS_IOC_PRECACHE_EXTENTS: u32 = 62735; -+pub const DFL_FPGA_PORT_DMA_MAP: u32 = 46659; -+pub const MGSL_IOCGXCTRL: u32 = 27926; -+pub const FW_CDEV_IOC_SEND_REQUEST: u32 = 1076372225; -+pub const SONYPI_IOCGBLUE: u32 = 2147579400; -+pub const F2FS_IOC_DECOMPRESS_FILE: u32 = 62743; -+pub const I2OHTML: u32 = 3224398089; -+pub const VFIO_GET_API_VERSION: u32 = 15204; -+pub const IDT77105_GETSTATZ: u32 = 1074815283; -+pub const I2OPARMSET: u32 = 3223873795; -+pub const TEE_IOC_CANCEL: u32 = 2148049924; -+pub const PTP_SYS_OFFSET_PRECISE2: u32 = 3225435409; -+pub const DFL_FPGA_PORT_RESET: u32 = 46656; -+pub const PPPIOCGASYNCMAP: u32 = 2147775576; -+pub const EVIOCGKEYCODE_V2: u32 = 2150122756; -+pub const DM_DEV_SET_GEOMETRY: u32 = 3241737487; -+pub const HIDIOCSUSAGE: u32 = 1075333132; -+pub const FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE_ONCE: u32 = 1075323664; -+pub const PTP_EXTTS_REQUEST: u32 = 1074806018; -+pub const SWITCHTEC_IOCTL_EVENT_CTL: u32 = 3223869251; -+pub const WDIOC_SETPRETIMEOUT: u32 = 3221509896; -+pub const VHOST_SCSI_CLEAR_ENDPOINT: u32 = 1088991041; -+pub const JSIOCGAXES: u32 = 2147576337; -+pub const HIDIOCSFLAG: u32 = 1074022415; -+pub const PTP_PEROUT_REQUEST2: u32 = 1077427468; -+pub const PPWDATA: u32 = 1073836166; -+pub const PTP_CLOCK_GETCAPS: u32 = 2152742145; -+pub const FDGETMAXERRS: u32 = 2148794894; -+pub const TUNSETQUEUE: u32 = 1074025689; -+pub const PTP_ENABLE_PPS: u32 = 1074019588; -+pub const SIOCSIFATMTCP: u32 = 24960; -+pub const CEC_ADAP_G_LOG_ADDRS: u32 = 2153537795; -+pub const ND_IOCTL_ARS_CAP: u32 = 3223342593; -+pub const NBD_SET_BLKSIZE: u32 = 43777; -+pub const NBD_SET_TIMEOUT: u32 = 43785; -+pub const VHOST_SCSI_GET_ABI_VERSION: u32 = 1074048834; -+pub const RIO_UNMAP_INBOUND: u32 = 1074294034; -+pub const ATM_QUERYLOOP: u32 = 1074815316; -+pub const DFL_FPGA_GET_API_VERSION: u32 = 46592; -+pub const USBDEVFS_WAIT_FOR_RESUME: u32 = 21795; -+pub const FBIO_CURSOR: u32 = 3228059144; -+pub const RNDCLEARPOOL: u32 = 20998; -+pub const VIDIOC_QUERYSTD: u32 = 2148030015; -+pub const DMA_BUF_IOCTL_SYNC: u32 = 1074291200; -+pub const SCIF_RECV: u32 = 3222827783; -+pub const PTP_PIN_GETFUNC2: u32 = 3227532559; -+pub const FW_CDEV_IOC_ALLOCATE: u32 = 3223331586; -+pub const CEC_ADAP_G_CAPS: u32 = 3226231040; -+pub const VIDIOC_G_FBUF: u32 = 2150651402; -+pub const PTP_ENABLE_PPS2: u32 = 1074019597; -+pub const PCITEST_CLEAR_IRQ: u32 = 20496; -+pub const IPMICTL_SET_GETS_EVENTS_CMD: u32 = 2147772688; -+pub const BTRFS_IOC_DEVICES_READY: u32 = 2415957031; -+pub const JSIOCGAXMAP: u32 = 2151705138; -+pub const FW_CDEV_IOC_GET_CYCLE_TIMER: u32 = 2148541196; -+pub const FW_CDEV_IOC_SET_ISO_CHANNELS: u32 = 1074799383; -+pub const RTC_WIE_OFF: u32 = 28688; -+pub const PPGETMODE: u32 = 2147774616; -+pub const VIDIOC_DBG_G_REGISTER: u32 = 3224917584; -+pub const PTP_SYS_OFFSET: u32 = 1128283397; -+pub const BTRFS_IOC_SPACE_INFO: u32 = 3222311956; -+pub const VIDIOC_SUBDEV_ENUM_FRAME_SIZE: u32 = 3225441866; -+pub const ND_IOCTL_VENDOR: u32 = 3221769737; -+pub const SCIF_VREADFROM: u32 = 3223876364; -+pub const BTRFS_IOC_TRANS_START: u32 = 37894; -+pub const INOTIFY_IOC_SETNEXTWD: u32 = 1074022656; -+pub const SNAPSHOT_GET_IMAGE_SIZE: u32 = 2148021006; -+pub const TUNDETACHFILTER: u32 = 1074812118; -+pub const ND_IOCTL_CLEAR_ERROR: u32 = 3223342596; -+pub const IOC_PR_CLEAR: u32 = 1074819277; -+pub const SCIF_READFROM: u32 = 3223876362; -+pub const PPPIOCGDEBUG: u32 = 2147775553; -+pub const BLKGETZONESZ: u32 = 2147750532; -+pub const HIDIOCGUSAGES: u32 = 3491514387; -+pub const SONYPI_IOCGTEMP: u32 = 2147579404; -+pub const UI_SET_MSCBIT: u32 = 1074025832; -+pub const APM_IOC_SUSPEND: u32 = 16642; -+pub const BTRFS_IOC_TREE_SEARCH: u32 = 3489698833; -+pub const RTC_PLL_GET: u32 = 2149609489; -+pub const RIO_CM_EP_GET_LIST: u32 = 3221512962; -+pub const USBDEVFS_DISCSIGNAL: u32 = 2148553998; -+pub const LIRC_GET_MIN_TIMEOUT: u32 = 2147772680; -+pub const SWITCHTEC_IOCTL_EVENT_SUMMARY_LEGACY: u32 = 2174244674; -+pub const DM_TARGET_MSG: u32 = 3241737486; -+pub const SONYPI_IOCGBAT1REM: u32 = 2147644931; -+pub const EVIOCSFF: u32 = 1076905344; -+pub const TUNSETGROUP: u32 = 1074025678; -+pub const EVIOCGKEYCODE: u32 = 2148025604; -+pub const KCOV_REMOTE_ENABLE: u32 = 1075340134; -+pub const ND_IOCTL_GET_CONFIG_SIZE: u32 = 3222031876; -+pub const FDEJECT: u32 = 602; -+pub const TUNSETOFFLOAD: u32 = 1074025680; -+pub const PPPIOCCONNECT: u32 = 1074033722; -+pub const ATM_ADDADDR: u32 = 1074815368; -+pub const VDUSE_DEV_INJECT_CONFIG_IRQ: u32 = 33043; -+pub const AUTOFS_DEV_IOCTL_ASKUMOUNT: u32 = 3222836093; -+pub const VHOST_VDPA_GET_STATUS: u32 = 2147594097; -+pub const CCISS_PASSTHRU: u32 = 3227009547; -+pub const MGSL_IOCCLRMODCOUNT: u32 = 27919; -+pub const TEE_IOC_SUPPL_SEND: u32 = 2148574215; -+pub const ATMARPD_CTRL: u32 = 25057; -+pub const UI_ABS_SETUP: u32 = 1075598596; -+pub const UI_DEV_DESTROY: u32 = 21762; -+pub const BTRFS_IOC_QUOTA_CTL: u32 = 3222311976; -+pub const RTC_AIE_ON: u32 = 28673; -+pub const AUTOFS_IOC_EXPIRE: u32 = 2165085029; -+pub const PPPIOCSDEBUG: u32 = 1074033728; -+pub const GPIO_V2_LINE_SET_VALUES_IOCTL: u32 = 3222320143; -+pub const PPPIOCSMRU: u32 = 1074033746; -+pub const CCISS_DEREGDISK: u32 = 16908; -+pub const UI_DEV_CREATE: u32 = 21761; -+pub const FUSE_DEV_IOC_CLONE: u32 = 2147804416; -+pub const BTRFS_IOC_START_SYNC: u32 = 2148045848; -+pub const NILFS_IOCTL_DELETE_CHECKPOINT: u32 = 1074294401; -+pub const SNAPSHOT_AVAIL_SWAP_SIZE: u32 = 2148021011; -+pub const DM_TABLE_CLEAR: u32 = 3241737482; -+pub const CCISS_GETINTINFO: u32 = 2148024834; -+pub const PPPIOCSASYNCMAP: u32 = 1074033751; -+pub const I2OEVTGET: u32 = 2154326283; -+pub const NVME_IOCTL_RESET: u32 = 20036; -+pub const PPYIELD: u32 = 28813; -+pub const NVME_IOCTL_IO64_CMD: u32 = 3226488392; -+pub const TUNSETCARRIER: u32 = 1074025698; -+pub const DM_DEV_WAIT: u32 = 3241737480; -+pub const RTC_WIE_ON: u32 = 28687; -+pub const MEDIA_IOC_DEVICE_INFO: u32 = 3238034432; -+pub const RIO_CM_CHAN_CREATE: u32 = 3221381891; -+pub const MGSL_IOCSPARAMS: u32 = 1076915456; -+pub const RTC_SET_TIME: u32 = 1076129802; -+pub const VHOST_RESET_OWNER: u32 = 44802; -+pub const IOC_OPAL_PSID_REVERT_TPR: u32 = 1091072232; -+pub const AUTOFS_DEV_IOCTL_OPENMOUNT: u32 = 3222836084; -+pub const UDF_GETEABLOCK: u32 = 2148035649; -+pub const VFIO_IOMMU_MAP_DMA: u32 = 15217; -+pub const VIDIOC_SUBSCRIBE_EVENT: u32 = 1075861082; -+pub const HIDIOCGFLAG: u32 = 2147764238; -+pub const HIDIOCGUCODE: u32 = 3222816781; -+pub const VIDIOC_OMAP3ISP_AF_CFG: u32 = 3226228421; -+pub const DM_REMOVE_ALL: u32 = 3241737473; -+pub const ASPEED_LPC_CTRL_IOCTL_MAP: u32 = 1074835969; -+pub const CCISS_GETFIRMVER: u32 = 2147762696; -+pub const ND_IOCTL_ARS_START: u32 = 3223342594; -+pub const PPPIOCSMRRU: u32 = 1074033723; -+pub const CEC_ADAP_S_LOG_ADDRS: u32 = 3227279620; -+pub const RPROC_GET_SHUTDOWN_ON_RELEASE: u32 = 2147792642; -+pub const DMA_HEAP_IOCTL_ALLOC: u32 = 3222816768; -+pub const PPSETTIME: u32 = 1074819222; -+pub const RTC_ALM_READ: u32 = 2149871624; -+pub const VDUSE_SET_API_VERSION: u32 = 1074299137; -+pub const RIO_MPORT_MAINT_WRITE_REMOTE: u32 = 1075342600; -+pub const VIDIOC_SUBDEV_S_CROP: u32 = 3224917564; -+pub const USBDEVFS_CONNECT: u32 = 21783; -+pub const SYNC_IOC_FILE_INFO: u32 = 3224911364; -+pub const ATMARP_MKIP: u32 = 25058; -+pub const VFIO_IOMMU_SPAPR_TCE_GET_INFO: u32 = 15216; -+pub const CCISS_GETHEARTBEAT: u32 = 2147762694; -+pub const ATM_RSTADDR: u32 = 1074815367; -+pub const NBD_SET_SIZE: u32 = 43778; -+pub const UDF_GETVOLIDENT: u32 = 2148035650; -+pub const GPIO_V2_LINE_GET_VALUES_IOCTL: u32 = 3222320142; -+pub const MGSL_IOCSTXIDLE: u32 = 27906; -+pub const FSL_HV_IOCTL_SETPROP: u32 = 3223891720; -+pub const BTRFS_IOC_GET_DEV_STATS: u32 = 3288896564; -+pub const PPRSTATUS: u32 = 2147577985; -+pub const MGSL_IOCTXENABLE: u32 = 27908; -+pub const UDF_GETEASIZE: u32 = 2147773504; -+pub const NVME_IOCTL_ADMIN64_CMD: u32 = 3226488391; -+pub const VHOST_SET_OWNER: u32 = 44801; -+pub const RIO_ALLOC_DMA: u32 = 3222826259; -+pub const RIO_CM_CHAN_ACCEPT: u32 = 3221775111; -+pub const I2OHRTGET: u32 = 3222825217; -+pub const ATM_SETCIRANGE: u32 = 1074815371; -+pub const HPET_IE_ON: u32 = 26625; -+pub const PERF_EVENT_IOC_ID: u32 = 2148017159; -+pub const TUNSETSNDBUF: u32 = 1074025684; -+pub const PTP_PIN_SETFUNC: u32 = 1080048903; -+pub const PPPIOCDISCONN: u32 = 29753; -+pub const VIDIOC_QUERYCTRL: u32 = 3225703972; -+pub const PPEXCL: u32 = 28815; -+pub const PCITEST_MSI: u32 = 1074024451; -+pub const FDWERRORCLR: u32 = 598; -+pub const AUTOFS_IOC_FAIL: u32 = 37729; -+pub const USBDEVFS_IOCTL: u32 = 3222295826; -+pub const VIDIOC_S_STD: u32 = 1074288152; -+pub const F2FS_IOC_RESIZE_FS: u32 = 1074328848; -+pub const SONET_SETDIAG: u32 = 3221512466; -+pub const BTRFS_IOC_DEFRAG: u32 = 1342215170; -+pub const CCISS_GETDRIVVER: u32 = 2147762697; -+pub const IPMICTL_GET_TIMING_PARMS_CMD: u32 = 2148034839; -+pub const HPET_IRQFREQ: u32 = 1074292742; -+pub const ATM_GETESI: u32 = 1074815365; -+pub const CCISS_GETLUNINFO: u32 = 2148286993; -+pub const AUTOFS_DEV_IOCTL_ISMOUNTPOINT: u32 = 3222836094; -+pub const TEE_IOC_SHM_ALLOC: u32 = 3222316033; -+pub const PERF_EVENT_IOC_SET_BPF: u32 = 1074013192; -+pub const UDMABUF_CREATE_LIST: u32 = 1074296131; -+pub const VHOST_SET_LOG_BASE: u32 = 1074310916; -+pub const ZATM_GETPOOL: u32 = 1074815329; -+pub const BR2684_SETFILT: u32 = 1075601808; -+pub const RNDGETPOOL: u32 = 2148028930; -+pub const PPS_GETPARAMS: u32 = 2148036769; -+pub const IOC_PR_RESERVE: u32 = 1074819273; -+pub const VIDIOC_TRY_DECODER_CMD: u32 = 3225966177; -+pub const RIO_CM_CHAN_CLOSE: u32 = 1073898244; -+pub const VIDIOC_DV_TIMINGS_CAP: u32 = 3230684772; -+pub const IOCTL_MEI_CONNECT_CLIENT_VTAG: u32 = 3222554628; -+pub const PMU_IOC_GET_BACKLIGHT: u32 = 2148024833; -+pub const USBDEVFS_GET_CAPABILITIES: u32 = 2147767578; -+pub const SCIF_WRITETO: u32 = 3223876363; -+pub const UDF_RELOCATE_BLOCKS: u32 = 3221777475; -+pub const FSL_HV_IOCTL_PARTITION_RESTART: u32 = 3221794561; -+pub const CCISS_REGNEWD: u32 = 16910; -+pub const FAT_IOCTL_SET_ATTRIBUTES: u32 = 1074033169; -+pub const VIDIOC_CREATE_BUFS: u32 = 3238024796; -+pub const CAPI_GET_VERSION: u32 = 3222291207; -+pub const SWITCHTEC_IOCTL_EVENT_SUMMARY: u32 = 2228770626; -+pub const VFIO_EEH_PE_OP: u32 = 15225; -+pub const FW_CDEV_IOC_CREATE_ISO_CONTEXT: u32 = 3223331592; -+pub const F2FS_IOC_RELEASE_COMPRESS_BLOCKS: u32 = 2148070674; -+pub const NBD_SET_SIZE_BLOCKS: u32 = 43783; -+pub const IPMI_BMC_IOCTL_SET_SMS_ATN: u32 = 45312; -+pub const ASPEED_P2A_CTRL_IOCTL_GET_MEMORY_CONFIG: u32 = 3222319873; -+pub const VIDIOC_S_AUDOUT: u32 = 1077171762; -+pub const VIDIOC_S_FMT: u32 = 3234878981; -+pub const PPPIOCATTACH: u32 = 1074033725; -+pub const VHOST_GET_VRING_BUSYLOOP_TIMEOUT: u32 = 1074310948; -+pub const FS_IOC_MEASURE_VERITY: u32 = 3221513862; -+pub const CCISS_BIG_PASSTHRU: u32 = 3227533842; -+pub const IPMICTL_SET_MY_LUN_CMD: u32 = 2147772691; -+pub const PCITEST_LEGACY_IRQ: u32 = 20482; -+pub const USBDEVFS_SUBMITURB: u32 = 2151175434; -+pub const AUTOFS_IOC_READY: u32 = 37728; -+pub const BTRFS_IOC_SEND: u32 = 1078498342; -+pub const VIDIOC_G_EXT_CTRLS: u32 = 3223344711; -+pub const JSIOCSBTNMAP: u32 = 1140877875; -+pub const PPPIOCSFLAGS: u32 = 1074033753; -+pub const NVRAM_INIT: u32 = 28736; -+pub const RFKILL_IOCTL_NOINPUT: u32 = 20993; -+pub const BTRFS_IOC_BALANCE: u32 = 1342215180; -+pub const FS_IOC_GETFSMAP: u32 = 3233830971; -+pub const IPMICTL_GET_MY_CHANNEL_LUN_CMD: u32 = 2147772699; -+pub const STP_POLICY_ID_GET: u32 = 2148541697; -+pub const PPSETFLAGS: u32 = 1074032795; -+pub const CEC_ADAP_S_PHYS_ADDR: u32 = 1073897730; -+pub const ATMTCP_CREATE: u32 = 24974; -+pub const IPMI_BMC_IOCTL_FORCE_ABORT: u32 = 45314; -+pub const PPPIOCGXASYNCMAP: u32 = 2149610576; -+pub const VHOST_SET_VRING_CALL: u32 = 1074310945; -+pub const LIRC_GET_FEATURES: u32 = 2147772672; -+pub const GSMIOC_DISABLE_NET: u32 = 18179; -+pub const AUTOFS_IOC_CATATONIC: u32 = 37730; -+pub const NBD_DO_IT: u32 = 43779; -+pub const LIRC_SET_REC_CARRIER_RANGE: u32 = 1074030879; -+pub const IPMICTL_GET_MY_CHANNEL_ADDRESS_CMD: u32 = 2147772697; -+pub const EVIOCSCLOCKID: u32 = 1074021792; -+pub const USBDEVFS_FREE_STREAMS: u32 = 2148029725; -+pub const FSI_SCOM_RESET: u32 = 1074033411; -+pub const PMU_IOC_GRAB_BACKLIGHT: u32 = 2148024838; -+pub const VIDIOC_SUBDEV_S_FMT: u32 = 3227014661; -+pub const FDDEFPRM: u32 = 1075839555; -+pub const TEE_IOC_INVOKE: u32 = 2148574211; -+pub const USBDEVFS_BULK: u32 = 3222820098; -+pub const SCIF_VWRITETO: u32 = 3223876365; -+pub const SONYPI_IOCSBRT: u32 = 1073837568; -+pub const BTRFS_IOC_FILE_EXTENT_SAME: u32 = 3222836278; -+pub const RTC_PIE_ON: u32 = 28677; -+pub const BTRFS_IOC_SCAN_DEV: u32 = 1342215172; -+pub const PPPIOCXFERUNIT: u32 = 29774; -+pub const WDIOC_GETTIMEOUT: u32 = 2147768071; -+pub const BTRFS_IOC_SET_RECEIVED_SUBVOL: u32 = 3234370597; -+pub const DFL_FPGA_PORT_ERR_SET_IRQ: u32 = 1074312774; -+pub const FBIO_WAITFORVSYNC: u32 = 1074021920; -+pub const RTC_PIE_OFF: u32 = 28678; -+pub const EVIOCGRAB: u32 = 1074021776; -+pub const PMU_IOC_SET_BACKLIGHT: u32 = 1074283010; -+pub const EVIOCGREP: u32 = 2148025603; -+pub const PERF_EVENT_IOC_MODIFY_ATTRIBUTES: u32 = 1074275339; -+pub const UFFDIO_CONTINUE: u32 = 3223366151; -+pub const VDUSE_GET_API_VERSION: u32 = 2148040960; -+pub const RTC_RD_TIME: u32 = 2149871625; -+pub const FDMSGOFF: u32 = 582; -+pub const IPMICTL_REGISTER_FOR_CMD_CHANS: u32 = 2148296988; -+pub const CAPI_GET_ERRCODE: u32 = 2147631905; -+pub const PCITEST_SET_IRQTYPE: u32 = 1074024456; -+pub const VIDIOC_SUBDEV_S_EDID: u32 = 3223868969; -+pub const MATROXFB_SET_OUTPUT_MODE: u32 = 1074294522; -+pub const RIO_DEV_ADD: u32 = 1075866903; -+pub const VIDIOC_ENUM_FREQ_BANDS: u32 = 3225441893; -+pub const FBIO_RADEON_SET_MIRROR: u32 = 1074282500; -+pub const PCITEST_GET_IRQTYPE: u32 = 20489; -+pub const JSIOCGVERSION: u32 = 2147772929; -+pub const SONYPI_IOCSBLUE: u32 = 1073837577; -+pub const SNAPSHOT_PREF_IMAGE_SIZE: u32 = 13074; -+pub const F2FS_IOC_GET_FEATURES: u32 = 2147808524; -+pub const SCIF_REG: u32 = 3223876360; -+pub const NILFS_IOCTL_CLEAN_SEGMENTS: u32 = 1081634440; -+pub const FW_CDEV_IOC_INITIATE_BUS_RESET: u32 = 1074012933; -+pub const RIO_WAIT_FOR_ASYNC: u32 = 1074294038; -+pub const VHOST_SET_VRING_NUM: u32 = 1074310928; -+pub const AUTOFS_DEV_IOCTL_PROTOVER: u32 = 3222836082; -+pub const RIO_FREE_DMA: u32 = 1074294036; -+pub const MGSL_IOCRXENABLE: u32 = 27909; -+pub const IOCTL_VM_SOCKETS_GET_LOCAL_CID: u32 = 1977; -+pub const IPMICTL_SET_TIMING_PARMS_CMD: u32 = 2148034838; -+pub const PPPIOCGL2TPSTATS: u32 = 2152231990; -+pub const PERF_EVENT_IOC_PERIOD: u32 = 1074275332; -+pub const PTP_PIN_SETFUNC2: u32 = 1080048912; -+pub const CHIOEXCHANGE: u32 = 1075602178; -+pub const NILFS_IOCTL_GET_SUINFO: u32 = 2149084804; -+pub const CEC_DQEVENT: u32 = 3226493191; -+pub const UI_SET_SWBIT: u32 = 1074025837; -+pub const VHOST_VDPA_SET_CONFIG: u32 = 1074311028; -+pub const TUNSETIFF: u32 = 1074025674; -+pub const CHIOPOSITION: u32 = 1074553603; -+pub const IPMICTL_SET_MAINTENANCE_MODE_CMD: u32 = 1074030879; -+pub const BTRFS_IOC_DEFAULT_SUBVOL: u32 = 1074304019; -+pub const RIO_UNMAP_OUTBOUND: u32 = 1076391184; -+pub const CAPI_CLR_FLAGS: u32 = 2147762981; -+pub const FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE: u32 = 1075323663; -+pub const MATROXFB_GET_OUTPUT_CONNECTION: u32 = 2148036344; -+pub const EVIOCSMASK: u32 = 1074808211; -+pub const BTRFS_IOC_FORGET_DEV: u32 = 1342215173; -+pub const CXL_MEM_QUERY_COMMANDS: u32 = 2148060673; -+pub const CEC_S_MODE: u32 = 1074028809; -+pub const MGSL_IOCSIF: u32 = 27914; -+pub const SWITCHTEC_IOCTL_PFF_TO_PORT: u32 = 3222034244; -+pub const PPSETMODE: u32 = 1074032768; -+pub const VFIO_DEVICE_SET_IRQS: u32 = 15214; -+pub const VIDIOC_PREPARE_BUF: u32 = 3227014749; -+pub const CEC_ADAP_G_CONNECTOR_INFO: u32 = 2151964938; -+pub const IOC_OPAL_WRITE_SHADOW_MBR: u32 = 1092645098; -+pub const VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL: u32 = 3225441867; -+pub const UDMABUF_CREATE: u32 = 1075344706; -+pub const SONET_CLRDIAG: u32 = 3221512467; -+pub const PHN_SET_REG: u32 = 1074294785; -+pub const RNDADDTOENTCNT: u32 = 1074024961; -+pub const VBG_IOCTL_CHECK_BALLOON: u32 = 3223344657; -+pub const VIDIOC_OMAP3ISP_STAT_REQ: u32 = 3223869126; -+pub const PPS_FETCH: u32 = 3221778596; -+pub const RTC_AIE_OFF: u32 = 28674; -+pub const VFIO_GROUP_SET_CONTAINER: u32 = 15208; -+pub const FW_CDEV_IOC_RECEIVE_PHY_PACKETS: u32 = 1074275094; -+pub const VFIO_IOMMU_SPAPR_TCE_REMOVE: u32 = 15224; -+pub const VFIO_IOMMU_GET_INFO: u32 = 15216; -+pub const DM_DEV_SUSPEND: u32 = 3241737478; -+pub const F2FS_IOC_GET_COMPRESS_OPTION: u32 = 2147677461; -+pub const FW_CDEV_IOC_STOP_ISO: u32 = 1074012939; -+pub const GPIO_V2_GET_LINEINFO_IOCTL: u32 = 3238048773; -+pub const ATMMPC_CTRL: u32 = 25048; -+pub const PPPIOCSXASYNCMAP: u32 = 1075868751; -+pub const CHIOGSTATUS: u32 = 1074815752; -+pub const FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE: u32 = 3222807309; -+pub const RIO_MPORT_MAINT_PORT_IDX_GET: u32 = 2147773699; -+pub const CAPI_SET_FLAGS: u32 = 2147762980; -+pub const VFIO_GROUP_GET_DEVICE_FD: u32 = 15210; -+pub const VHOST_SET_MEM_TABLE: u32 = 1074310915; -+pub const MATROXFB_SET_OUTPUT_CONNECTION: u32 = 1074294520; -+pub const DFL_FPGA_PORT_GET_REGION_INFO: u32 = 46658; -+pub const VHOST_GET_FEATURES: u32 = 2148052736; -+pub const LIRC_GET_REC_RESOLUTION: u32 = 2147772679; -+pub const PACKET_CTRL_CMD: u32 = 3222820865; -+pub const LIRC_SET_TRANSMITTER_MASK: u32 = 1074030871; -+pub const BTRFS_IOC_ADD_DEV: u32 = 1342215178; -+pub const JSIOCGCORR: u32 = 2149870114; -+pub const VIDIOC_G_FMT: u32 = 3234878980; -+pub const RTC_EPOCH_SET: u32 = 1074294798; -+pub const CAPI_GET_PROFILE: u32 = 3225436937; -+pub const ATM_GETLOOP: u32 = 1074815314; -+pub const SCIF_LISTEN: u32 = 1074033410; -+pub const NBD_CLEAR_QUE: u32 = 43781; -+pub const F2FS_IOC_MOVE_RANGE: u32 = 3223385353; -+pub const LIRC_GET_LENGTH: u32 = 2147772687; -+pub const I8K_SET_FAN: u32 = 3221776775; -+pub const FDSETMAXERRS: u32 = 1075053132; -+pub const VIDIOC_SUBDEV_QUERYCAP: u32 = 2151699968; -+pub const SNAPSHOT_SET_SWAP_AREA: u32 = 1074541325; -+pub const LIRC_GET_REC_TIMEOUT: u32 = 2147772708; -+pub const EVIOCRMFF: u32 = 1074021761; -+pub const GPIO_GET_LINEEVENT_IOCTL: u32 = 3224417284; -+pub const PPRDATA: u32 = 2147577989; -+pub const RIO_MPORT_GET_PROPERTIES: u32 = 2150657284; -+pub const TUNSETVNETHDRSZ: u32 = 1074025688; -+pub const GPIO_GET_LINEINFO_IOCTL: u32 = 3225990146; -+pub const GSMIOC_GETCONF: u32 = 2152482560; -+pub const LIRC_GET_SEND_MODE: u32 = 2147772673; -+pub const PPPIOCSACTIVE: u32 = 1074820166; -+pub const SIOCGSTAMPNS_NEW: u32 = 2148567303; -+pub const IPMICTL_RECEIVE_MSG: u32 = 3224398092; -+pub const LIRC_SET_SEND_DUTY_CYCLE: u32 = 1074030869; -+pub const UI_END_FF_ERASE: u32 = 1074550219; -+pub const SWITCHTEC_IOCTL_FLASH_PART_INFO: u32 = 3222296385; -+pub const FW_CDEV_IOC_SEND_PHY_PACKET: u32 = 3222807317; -+pub const NBD_SET_FLAGS: u32 = 43786; -+pub const VFIO_DEVICE_GET_REGION_INFO: u32 = 15212; -+pub const REISERFS_IOC_UNPACK: u32 = 1074318593; -+pub const FW_CDEV_IOC_REMOVE_DESCRIPTOR: u32 = 1074012935; -+pub const RIO_SET_EVENT_MASK: u32 = 1074031885; -+pub const SNAPSHOT_ALLOC_SWAP_PAGE: u32 = 2148021012; -+pub const VDUSE_VQ_INJECT_IRQ: u32 = 1074037015; -+pub const I2OPASSTHRU: u32 = 2148559116; -+pub const IOC_OPAL_SET_PW: u32 = 1109422304; -+pub const FSI_SCOM_READ: u32 = 3223352065; -+pub const VHOST_VDPA_GET_DEVICE_ID: u32 = 2147790704; -+pub const VIDIOC_QBUF: u32 = 3227014671; -+pub const VIDIOC_S_TUNER: u32 = 1079268894; -+pub const TUNGETVNETHDRSZ: u32 = 2147767511; -+pub const CAPI_NCCI_GETUNIT: u32 = 2147762983; -+pub const DFL_FPGA_PORT_UINT_GET_IRQ_NUM: u32 = 2147792455; -+pub const VIDIOC_OMAP3ISP_STAT_EN: u32 = 3221771975; -+pub const GPIO_V2_LINE_SET_CONFIG_IOCTL: u32 = 3239097357; -+pub const TEE_IOC_VERSION: u32 = 2148312064; -+pub const VIDIOC_LOG_STATUS: u32 = 22086; -+pub const IPMICTL_SEND_COMMAND_SETTIME: u32 = 2150656277; -+pub const VHOST_SET_LOG_FD: u32 = 1074048775; -+pub const SCIF_SEND: u32 = 3222827782; -+pub const VIDIOC_SUBDEV_G_FMT: u32 = 3227014660; -+pub const NS_ADJBUFLEV: u32 = 24931; -+pub const VIDIOC_DBG_S_REGISTER: u32 = 1077433935; -+pub const NILFS_IOCTL_RESIZE: u32 = 1074294411; -+pub const PHN_GETREG: u32 = 3221778437; -+pub const I2OSWDL: u32 = 3224398085; -+pub const VBG_IOCTL_VMMDEV_REQUEST_BIG: u32 = 22019; -+pub const JSIOCGBUTTONS: u32 = 2147576338; -+pub const VFIO_IOMMU_ENABLE: u32 = 15219; -+pub const DM_DEV_RENAME: u32 = 3241737477; -+pub const MEDIA_IOC_SETUP_LINK: u32 = 3224665091; -+pub const VIDIOC_ENUMOUTPUT: u32 = 3225966128; -+pub const STP_POLICY_ID_SET: u32 = 3222283520; -+pub const VHOST_VDPA_SET_CONFIG_CALL: u32 = 1074048887; -+pub const VIDIOC_SUBDEV_G_CROP: u32 = 3224917563; -+pub const VIDIOC_S_CROP: u32 = 1075074620; -+pub const WDIOC_GETTEMP: u32 = 2147768067; -+pub const IOC_OPAL_ADD_USR_TO_LR: u32 = 1092120804; -+pub const UI_SET_LEDBIT: u32 = 1074025833; -+pub const NBD_SET_SOCK: u32 = 43776; -+pub const BTRFS_IOC_SNAP_DESTROY_V2: u32 = 1342215231; -+pub const HIDIOCGCOLLECTIONINFO: u32 = 3222292497; -+pub const I2OSWUL: u32 = 3224398086; -+pub const IOCTL_MEI_NOTIFY_GET: u32 = 2147764227; -+pub const FDFMTTRK: u32 = 1074528840; -+pub const MMTIMER_GETBITS: u32 = 27908; -+pub const VIDIOC_ENUMSTD: u32 = 3225966105; -+pub const VHOST_GET_VRING_BASE: u32 = 3221794578; -+pub const VFIO_DEVICE_IOEVENTFD: u32 = 15220; -+pub const ATMARP_SETENTRY: u32 = 25059; -+pub const CCISS_REVALIDVOLS: u32 = 16906; -+pub const MGSL_IOCLOOPTXDONE: u32 = 27913; -+pub const RTC_VL_READ: u32 = 2147774483; -+pub const ND_IOCTL_ARS_STATUS: u32 = 3224391171; -+pub const RIO_DEV_DEL: u32 = 1075866904; -+pub const VBG_IOCTL_ACQUIRE_GUEST_CAPABILITIES: u32 = 3223606797; -+pub const VIDIOC_SUBDEV_DV_TIMINGS_CAP: u32 = 3230684772; -+pub const SONYPI_IOCSFAN: u32 = 1073837579; -+pub const SPIOCSTYPE: u32 = 1074295041; -+pub const IPMICTL_REGISTER_FOR_CMD: u32 = 2147641614; -+pub const I8K_GET_FAN: u32 = 3221776774; -+pub const TUNGETVNETBE: u32 = 2147767519; -+pub const AUTOFS_DEV_IOCTL_FAIL: u32 = 3222836087; -+pub const UI_END_FF_UPLOAD: u32 = 1080579529; -+pub const TOSH_SMM: u32 = 3222828176; -+pub const SONYPI_IOCGBAT2REM: u32 = 2147644933; -+pub const F2FS_IOC_GET_COMPRESS_BLOCKS: u32 = 2148070673; -+pub const PPPIOCSNPMODE: u32 = 1074295883; -+pub const USBDEVFS_CONTROL: u32 = 3222820096; -+pub const HIDIOCGUSAGE: u32 = 3222816779; -+pub const TUNSETTXFILTER: u32 = 1074025681; -+pub const TUNGETVNETLE: u32 = 2147767517; -+pub const VIDIOC_ENUM_DV_TIMINGS: u32 = 3230946914; -+pub const BTRFS_IOC_INO_PATHS: u32 = 3224933411; -+pub const MGSL_IOCGXSYNC: u32 = 27924; -+pub const HIDIOCGFIELDINFO: u32 = 3224913930; -+pub const VIDIOC_SUBDEV_G_STD: u32 = 2148029975; -+pub const I2OVALIDATE: u32 = 2147772680; -+pub const VIDIOC_TRY_ENCODER_CMD: u32 = 3223869006; -+pub const NILFS_IOCTL_GET_CPINFO: u32 = 2149084802; -+pub const VIDIOC_G_FREQUENCY: u32 = 3224131128; -+pub const VFAT_IOCTL_READDIR_SHORT: u32 = 2184212994; -+pub const ND_IOCTL_GET_CONFIG_DATA: u32 = 3222031877; -+pub const F2FS_IOC_RESERVE_COMPRESS_BLOCKS: u32 = 2148070675; -+pub const FDGETDRVSTAT: u32 = 2152727058; -+pub const SYNC_IOC_MERGE: u32 = 3224387075; -+pub const VIDIOC_S_DV_TIMINGS: u32 = 3229898327; -+pub const PPPIOCBRIDGECHAN: u32 = 1074033717; -+pub const LIRC_SET_SEND_MODE: u32 = 1074030865; -+pub const RIO_ENABLE_PORTWRITE_RANGE: u32 = 1074818315; -+pub const ATM_GETTYPE: u32 = 1074815364; -+pub const PHN_GETREGS: u32 = 3223875591; -+pub const FDSETEMSGTRESH: u32 = 586; -+pub const NILFS_IOCTL_GET_VINFO: u32 = 3222826630; -+pub const MGSL_IOCWAITEVENT: u32 = 3221515528; -+pub const CAPI_INSTALLED: u32 = 2147631906; -+pub const EVIOCGMASK: u32 = 2148550034; -+pub const BTRFS_IOC_SUBVOL_GETFLAGS: u32 = 2148045849; -+pub const FSL_HV_IOCTL_PARTITION_GET_STATUS: u32 = 3222056706; -+pub const MEDIA_IOC_ENUM_ENTITIES: u32 = 3238034433; -+pub const GSMIOC_GETFIRST: u32 = 2147763972; -+pub const FW_CDEV_IOC_FLUSH_ISO: u32 = 1074012952; -+pub const VIDIOC_DBG_G_CHIP_INFO: u32 = 3234354790; -+pub const F2FS_IOC_RELEASE_VOLATILE_WRITE: u32 = 62724; -+pub const CAPI_GET_SERIAL: u32 = 3221504776; -+pub const FDSETDRVPRM: u32 = 1082131088; -+pub const IOC_OPAL_SAVE: u32 = 1092120796; -+pub const VIDIOC_G_DV_TIMINGS: u32 = 3229898328; -+pub const TUNSETIFINDEX: u32 = 1074025690; -+pub const CCISS_SETINTINFO: u32 = 1074283011; -+pub const CM_IOSDBGLVL: u32 = 1074291706; -+pub const RTC_VL_CLR: u32 = 28692; -+pub const VIDIOC_REQBUFS: u32 = 3222558216; -+pub const USBDEVFS_REAPURBNDELAY32: u32 = 1074025741; -+pub const TEE_IOC_SHM_REGISTER: u32 = 3222840329; -+pub const USBDEVFS_SETCONFIGURATION: u32 = 2147767557; -+pub const CCISS_GETNODENAME: u32 = 2148549124; -+pub const VIDIOC_SUBDEV_S_FRAME_INTERVAL: u32 = 3224393238; -+pub const VIDIOC_ENUM_FRAMESIZES: u32 = 3224131146; -+pub const VFIO_DEVICE_PCI_HOT_RESET: u32 = 15217; -+pub const FW_CDEV_IOC_SEND_BROADCAST_REQUEST: u32 = 1076372242; -+pub const LPSETTIMEOUT_NEW: u32 = 1074791951; -+pub const RIO_CM_MPORT_GET_LIST: u32 = 3221512971; -+pub const FW_CDEV_IOC_QUEUE_ISO: u32 = 3222807305; -+pub const FDRAWCMD: u32 = 600; -+pub const SCIF_UNREG: u32 = 3222303497; -+pub const PPPIOCGIDLE64: u32 = 2148561983; -+pub const USBDEVFS_RELEASEINTERFACE: u32 = 2147767568; -+pub const VIDIOC_CROPCAP: u32 = 3224131130; -+pub const DFL_FPGA_PORT_GET_INFO: u32 = 46657; -+pub const PHN_SET_REGS: u32 = 1074294787; -+pub const ATMLEC_DATA: u32 = 25041; -+pub const PPPOEIOCDFWD: u32 = 45313; -+pub const VIDIOC_S_SELECTION: u32 = 3225441887; -+pub const SNAPSHOT_FREE_SWAP_PAGES: u32 = 13065; -+pub const BTRFS_IOC_LOGICAL_INO: u32 = 3224933412; -+pub const VIDIOC_S_CTRL: u32 = 3221771804; -+pub const ZATM_SETPOOL: u32 = 1074815331; -+pub const MTIOCPOS: u32 = 2148035843; -+pub const PMU_IOC_SLEEP: u32 = 16896; -+pub const AUTOFS_DEV_IOCTL_PROTOSUBVER: u32 = 3222836083; -+pub const VBG_IOCTL_CHANGE_FILTER_MASK: u32 = 3223344652; -+pub const NILFS_IOCTL_GET_SUSTAT: u32 = 2150657669; -+pub const VIDIOC_QUERYCAP: u32 = 2154321408; -+pub const HPET_INFO: u32 = 2149083139; -+pub const VIDIOC_AM437X_CCDC_CFG: u32 = 1074288321; -+pub const DM_LIST_DEVICES: u32 = 3241737474; -+pub const TUNSETOWNER: u32 = 1074025676; -+pub const VBG_IOCTL_CHANGE_GUEST_CAPABILITIES: u32 = 3223344654; -+pub const RNDADDENTROPY: u32 = 1074287107; -+pub const USBDEVFS_RESET: u32 = 21780; -+pub const BTRFS_IOC_SUBVOL_CREATE: u32 = 1342215182; -+pub const USBDEVFS_FORBID_SUSPEND: u32 = 21793; -+pub const FDGETDRVTYP: u32 = 2148532751; -+pub const PPWCONTROL: u32 = 1073836164; -+pub const VIDIOC_ENUM_FRAMEINTERVALS: u32 = 3224655435; -+pub const KCOV_DISABLE: u32 = 25445; -+pub const IOC_OPAL_ACTIVATE_LSP: u32 = 1092120799; -+pub const VHOST_VDPA_GET_IOVA_RANGE: u32 = 2148577144; -+pub const PPPIOCSPASS: u32 = 1074820167; -+pub const RIO_CM_CHAN_CONNECT: u32 = 1074291464; -+pub const I2OSWDEL: u32 = 3224398087; -+pub const FS_IOC_SET_ENCRYPTION_POLICY: u32 = 2148296211; -+pub const IOC_OPAL_MBR_DONE: u32 = 1091596521; -+pub const PPPIOCSMAXCID: u32 = 1074033745; -+pub const PPSETPHASE: u32 = 1074032788; -+pub const VHOST_VDPA_SET_VRING_ENABLE: u32 = 1074311029; -+pub const USBDEVFS_GET_SPEED: u32 = 21791; -+pub const SONET_GETFRAMING: u32 = 2147770646; -+pub const VIDIOC_QUERYBUF: u32 = 3227014665; -+pub const VIDIOC_S_EDID: u32 = 3223868969; -+pub const BTRFS_IOC_QGROUP_ASSIGN: u32 = 1075352617; -+pub const PPS_GETCAP: u32 = 2148036771; -+pub const SNAPSHOT_PLATFORM_SUPPORT: u32 = 13071; -+pub const LIRC_SET_REC_TIMEOUT_REPORTS: u32 = 1074030873; -+pub const SCIF_GET_NODEIDS: u32 = 3222827790; -+pub const NBD_DISCONNECT: u32 = 43784; -+pub const VIDIOC_SUBDEV_G_FRAME_INTERVAL: u32 = 3224393237; -+pub const VFIO_IOMMU_DISABLE: u32 = 15220; -+pub const SNAPSHOT_CREATE_IMAGE: u32 = 1074017041; -+pub const SNAPSHOT_POWER_OFF: u32 = 13072; -+pub const APM_IOC_STANDBY: u32 = 16641; -+pub const PPPIOCGUNIT: u32 = 2147775574; -+pub const AUTOFS_IOC_EXPIRE_MULTI: u32 = 1074041702; -+pub const SCIF_BIND: u32 = 3221779201; -+pub const IOC_WATCH_QUEUE_SET_SIZE: u32 = 22368; -+pub const NILFS_IOCTL_CHANGE_CPMODE: u32 = 1074818688; -+pub const IOC_OPAL_LOCK_UNLOCK: u32 = 1092120797; -+pub const F2FS_IOC_SET_PIN_FILE: u32 = 1074066701; -+pub const PPPIOCGRASYNCMAP: u32 = 2147775573; -+pub const MMTIMER_MMAPAVAIL: u32 = 27910; -+pub const I2OPASSTHRU32: u32 = 2148034828; -+pub const DFL_FPGA_FME_PORT_RELEASE: u32 = 1074050689; -+pub const VIDIOC_SUBDEV_QUERY_DV_TIMINGS: u32 = 2156156515; -+pub const UI_SET_SNDBIT: u32 = 1074025834; -+pub const VIDIOC_G_AUDOUT: u32 = 2150913585; -+pub const RTC_PLL_SET: u32 = 1075867666; -+pub const VIDIOC_ENUMAUDIO: u32 = 3224655425; -+pub const AUTOFS_DEV_IOCTL_TIMEOUT: u32 = 3222836090; -+pub const VBG_IOCTL_DRIVER_VERSION_INFO: u32 = 3224131072; -+pub const VHOST_SCSI_GET_EVENTS_MISSED: u32 = 1074048836; -+pub const VHOST_SET_VRING_ADDR: u32 = 1076408081; -+pub const VDUSE_CREATE_DEV: u32 = 1095794946; -+pub const FDFLUSH: u32 = 587; -+pub const VBG_IOCTL_WAIT_FOR_EVENTS: u32 = 3223344650; -+pub const DFL_FPGA_FME_ERR_SET_IRQ: u32 = 1074312836; -+pub const F2FS_IOC_GET_PIN_FILE: u32 = 2147808526; -+pub const SCIF_CONNECT: u32 = 3221779203; -+pub const BLKREPORTZONE: u32 = 3222278786; -+pub const AUTOFS_IOC_ASKUMOUNT: u32 = 2147783536; -+pub const ATM_ADDPARTY: u32 = 1074815476; -+pub const FDSETPRM: u32 = 1075839554; -+pub const ATM_GETSTATZ: u32 = 1074815313; -+pub const ISST_IF_MSR_COMMAND: u32 = 3221814788; -+pub const BTRFS_IOC_GET_SUBVOL_INFO: u32 = 2180551740; -+pub const VIDIOC_UNSUBSCRIBE_EVENT: u32 = 1075861083; -+pub const SEV_ISSUE_CMD: u32 = 3222295296; -+pub const GPIOHANDLE_SET_LINE_VALUES_IOCTL: u32 = 3225465865; -+pub const PCITEST_COPY: u32 = 1074286598; -+pub const IPMICTL_GET_MY_ADDRESS_CMD: u32 = 2147772690; -+pub const CHIOGPICKER: u32 = 2147771140; -+pub const CAPI_NCCI_OPENCOUNT: u32 = 2147762982; -+pub const CXL_MEM_SEND_COMMAND: u32 = 3224423938; -+pub const PERF_EVENT_IOC_SET_FILTER: u32 = 1074275334; -+pub const IOC_OPAL_REVERT_TPR: u32 = 1091072226; -+pub const CHIOGVPARAMS: u32 = 2154849043; -+pub const PTP_PEROUT_REQUEST: u32 = 1077427459; -+pub const FSI_SCOM_CHECK: u32 = 2147775232; -+pub const RTC_IRQP_READ: u32 = 2148036619; -+pub const RIO_MPORT_MAINT_READ_LOCAL: u32 = 2149084421; -+pub const HIDIOCGRDESCSIZE: u32 = 2147764225; -+pub const UI_GET_VERSION: u32 = 2147767597; -+pub const NILFS_IOCTL_GET_CPSTAT: u32 = 2149084803; -+pub const CCISS_GETBUSTYPES: u32 = 2147762695; -+pub const VFIO_IOMMU_SPAPR_TCE_CREATE: u32 = 15223; -+pub const VIDIOC_EXPBUF: u32 = 3225441808; -+pub const UI_SET_RELBIT: u32 = 1074025830; -+pub const VFIO_SET_IOMMU: u32 = 15206; -+pub const VIDIOC_S_MODULATOR: u32 = 1078220343; -+pub const TUNGETFILTER: u32 = 2148553947; -+pub const MEYEIOC_SYNC: u32 = 3221518019; -+pub const CCISS_SETNODENAME: u32 = 1074807301; -+pub const FBIO_GETCONTROL2: u32 = 2148025993; -+pub const TUNSETDEBUG: u32 = 1074025673; -+pub const DM_DEV_REMOVE: u32 = 3241737476; -+pub const HIDIOCSUSAGES: u32 = 1344030740; -+pub const FS_IOC_ADD_ENCRYPTION_KEY: u32 = 3226494487; -+pub const FBIOGET_VBLANK: u32 = 2149598738; -+pub const ATM_GETSTAT: u32 = 1074815312; -+pub const VIDIOC_G_JPEGCOMP: u32 = 2156680765; -+pub const TUNATTACHFILTER: u32 = 1074812117; -+pub const UI_SET_ABSBIT: u32 = 1074025831; -+pub const DFL_FPGA_PORT_ERR_GET_IRQ_NUM: u32 = 2147792453; -+pub const USBDEVFS_REAPURB32: u32 = 1074025740; -+pub const BTRFS_IOC_TRANS_END: u32 = 37895; -+pub const CAPI_REGISTER: u32 = 1074545409; -+pub const F2FS_IOC_COMPRESS_FILE: u32 = 62744; -+pub const USBDEVFS_DISCARDURB: u32 = 21771; -+pub const HE_GET_REG: u32 = 1074815328; -+pub const ATM_SETLOOP: u32 = 1074815315; -+pub const ATMSIGD_CTRL: u32 = 25072; -+pub const CIOC_KERNEL_VERSION: u32 = 3221775114; -+pub const BTRFS_IOC_CLONE_RANGE: u32 = 1075876877; -+pub const SNAPSHOT_UNFREEZE: u32 = 13058; -+pub const F2FS_IOC_START_VOLATILE_WRITE: u32 = 62723; -+pub const PMU_IOC_HAS_ADB: u32 = 2148024836; -+pub const I2OGETIOPS: u32 = 2149607680; -+pub const VIDIOC_S_FBUF: u32 = 1076909579; -+pub const PPRCONTROL: u32 = 2147577987; -+pub const CHIOSPICKER: u32 = 1074029317; -+pub const VFIO_IOMMU_SPAPR_REGISTER_MEMORY: u32 = 15221; -+pub const TUNGETSNDBUF: u32 = 2147767507; -+pub const GSMIOC_SETCONF: u32 = 1078740737; -+pub const IOC_PR_PREEMPT: u32 = 1075343563; -+pub const KCOV_INIT_TRACE: u32 = 2148033281; -+pub const SONYPI_IOCGBAT1CAP: u32 = 2147644930; -+pub const SWITCHTEC_IOCTL_FLASH_INFO: u32 = 2148554560; -+pub const MTIOCTOP: u32 = 1074294017; -+pub const VHOST_VDPA_SET_STATUS: u32 = 1073852274; -+pub const VHOST_SCSI_SET_EVENTS_MISSED: u32 = 1074048835; -+pub const VFIO_IOMMU_DIRTY_PAGES: u32 = 15221; -+pub const BTRFS_IOC_SCRUB_PROGRESS: u32 = 3288372253; -+pub const PPPIOCGMRU: u32 = 2147775571; -+pub const BTRFS_IOC_DEV_REPLACE: u32 = 3391657013; -+pub const PPPIOCGFLAGS: u32 = 2147775578; -+pub const NILFS_IOCTL_SET_SUINFO: u32 = 1075342989; -+pub const FW_CDEV_IOC_GET_CYCLE_TIMER2: u32 = 3222807316; -+pub const ATM_DELLECSADDR: u32 = 1074815375; -+pub const FW_CDEV_IOC_GET_SPEED: u32 = 8977; -+pub const PPPIOCGIDLE32: u32 = 2148037695; -+pub const VFIO_DEVICE_RESET: u32 = 15215; -+pub const GPIO_GET_LINEINFO_UNWATCH_IOCTL: u32 = 3221533708; -+pub const WDIOC_GETSTATUS: u32 = 2147768065; -+pub const BTRFS_IOC_SET_FEATURES: u32 = 1076925497; -+pub const IOCTL_MEI_CONNECT_CLIENT: u32 = 3222292481; -+pub const VIDIOC_OMAP3ISP_AEWB_CFG: u32 = 3223344835; -+pub const PCITEST_READ: u32 = 1074286597; -+pub const VFIO_GROUP_GET_STATUS: u32 = 15207; -+pub const MATROXFB_GET_ALL_OUTPUTS: u32 = 2148036347; -+pub const USBDEVFS_CLEAR_HALT: u32 = 2147767573; -+pub const VIDIOC_DECODER_CMD: u32 = 3225966176; -+pub const VIDIOC_G_AUDIO: u32 = 2150913569; -+pub const CCISS_RESCANDISK: u32 = 16912; -+pub const RIO_DISABLE_PORTWRITE_RANGE: u32 = 1074818316; -+pub const IOC_OPAL_SECURE_ERASE_LR: u32 = 1091596519; -+pub const USBDEVFS_REAPURB: u32 = 1074287884; -+pub const DFL_FPGA_CHECK_EXTENSION: u32 = 46593; -+pub const AUTOFS_IOC_PROTOVER: u32 = 2147783523; -+pub const FSL_HV_IOCTL_MEMCPY: u32 = 3223891717; -+pub const BTRFS_IOC_GET_FEATURES: u32 = 2149094457; -+pub const PCITEST_MSIX: u32 = 1074024455; -+pub const BTRFS_IOC_DEFRAG_RANGE: u32 = 1076925456; -+pub const UI_BEGIN_FF_ERASE: u32 = 3222033866; -+pub const DM_GET_TARGET_VERSION: u32 = 3241737489; -+pub const PPPIOCGIDLE: u32 = 2148561983; -+pub const NVRAM_SETCKS: u32 = 28737; -+pub const WDIOC_GETSUPPORT: u32 = 2150127360; -+pub const GSMIOC_ENABLE_NET: u32 = 1077167874; -+pub const GPIO_GET_CHIPINFO_IOCTL: u32 = 2151986177; -+pub const NE_ADD_VCPU: u32 = 3221532193; -+pub const EVIOCSKEYCODE_V2: u32 = 1076380932; -+pub const PTP_SYS_OFFSET_EXTENDED2: u32 = 3300932882; -+pub const SCIF_FENCE_WAIT: u32 = 3221517072; -+pub const RIO_TRANSFER: u32 = 3222826261; -+pub const FSL_HV_IOCTL_DOORBELL: u32 = 3221794566; -+pub const RIO_MPORT_MAINT_WRITE_LOCAL: u32 = 1075342598; -+pub const I2OEVTREG: u32 = 1074555146; -+pub const I2OPARMGET: u32 = 3223873796; -+pub const EVIOCGID: u32 = 2148025602; -+pub const BTRFS_IOC_QGROUP_CREATE: u32 = 1074828330; -+pub const AUTOFS_DEV_IOCTL_SETPIPEFD: u32 = 3222836088; -+pub const VIDIOC_S_PARM: u32 = 3234616854; -+pub const TUNSETSTEERINGEBPF: u32 = 2147767520; -+pub const ATM_GETNAMES: u32 = 1074815363; -+pub const VIDIOC_QUERYMENU: u32 = 3224131109; -+pub const DFL_FPGA_PORT_DMA_UNMAP: u32 = 46660; -+pub const I2OLCTGET: u32 = 3222825218; -+pub const FS_IOC_GET_ENCRYPTION_PWSALT: u32 = 1074816532; -+pub const NS_SETBUFLEV: u32 = 1074815330; -+pub const BLKCLOSEZONE: u32 = 1074795143; -+pub const SONET_GETFRSENSE: u32 = 2147901719; -+pub const UI_SET_EVBIT: u32 = 1074025828; -+pub const DM_LIST_VERSIONS: u32 = 3241737485; -+pub const HIDIOCGSTRING: u32 = 2164541444; -+pub const PPPIOCATTCHAN: u32 = 1074033720; -+pub const VDUSE_DEV_SET_CONFIG: u32 = 1074299154; -+pub const TUNGETFEATURES: u32 = 2147767503; -+pub const VFIO_GROUP_UNSET_CONTAINER: u32 = 15209; -+pub const IPMICTL_SET_MY_ADDRESS_CMD: u32 = 2147772689; -+pub const CCISS_REGNEWDISK: u32 = 1074020877; -+pub const VIDIOC_QUERY_DV_TIMINGS: u32 = 2156156515; -+pub const PHN_SETREGS: u32 = 1076391944; -+pub const FAT_IOCTL_GET_ATTRIBUTES: u32 = 2147774992; -+pub const FSL_MC_SEND_MC_COMMAND: u32 = 3225440992; -+pub const TUNGETIFF: u32 = 2147767506; -+pub const PTP_CLOCK_GETCAPS2: u32 = 2152742154; -+pub const BTRFS_IOC_RESIZE: u32 = 1342215171; -+pub const VHOST_SET_VRING_ENDIAN: u32 = 1074310931; -+pub const PPS_KC_BIND: u32 = 1074294949; -+pub const F2FS_IOC_WRITE_CHECKPOINT: u32 = 62727; -+pub const UI_SET_FFBIT: u32 = 1074025835; -+pub const IPMICTL_GET_MY_LUN_CMD: u32 = 2147772692; -+pub const CEC_ADAP_G_PHYS_ADDR: u32 = 2147639553; -+pub const CEC_G_MODE: u32 = 2147770632; -+pub const USBDEVFS_RESETEP: u32 = 2147767555; -+pub const MEDIA_REQUEST_IOC_QUEUE: u32 = 31872; -+pub const USBDEVFS_ALLOC_STREAMS: u32 = 2148029724; -+pub const MGSL_IOCSXCTRL: u32 = 27925; -+pub const MEDIA_IOC_G_TOPOLOGY: u32 = 3225975812; -+pub const PPPIOCUNBRIDGECHAN: u32 = 29748; -+pub const F2FS_IOC_COMMIT_ATOMIC_WRITE: u32 = 62722; -+pub const ISST_IF_GET_PLATFORM_INFO: u32 = 2148072960; -+pub const SCIF_FENCE_MARK: u32 = 3222303503; -+pub const USBDEVFS_RELEASE_PORT: u32 = 2147767577; -+pub const VFIO_CHECK_EXTENSION: u32 = 15205; -+pub const BTRFS_IOC_QGROUP_LIMIT: u32 = 2150667307; -+pub const FAT_IOCTL_GET_VOLUME_ID: u32 = 2147774995; -+pub const UI_SET_PHYS: u32 = 1074287980; -+pub const FDWERRORGET: u32 = 2150105623; -+pub const VIDIOC_SUBDEV_G_EDID: u32 = 3223868968; -+pub const MGSL_IOCGSTATS: u32 = 27911; -+pub const RPROC_SET_SHUTDOWN_ON_RELEASE: u32 = 1074050817; -+pub const SIOCGSTAMP_NEW: u32 = 2148567302; -+pub const RTC_WKALM_RD: u32 = 2150133776; -+pub const PHN_GET_REG: u32 = 3221778432; -+pub const DELL_WMI_SMBIOS_CMD: u32 = 3224655616; -+pub const PHN_NOT_OH: u32 = 28676; -+pub const PPGETMODES: u32 = 2147774615; -+pub const CHIOGPARAMS: u32 = 2148819718; -+pub const VFIO_DEVICE_GET_GFX_DMABUF: u32 = 15219; -+pub const VHOST_SET_VRING_BUSYLOOP_TIMEOUT: u32 = 1074310947; -+pub const VIDIOC_SUBDEV_G_SELECTION: u32 = 3225441853; -+pub const BTRFS_IOC_RM_DEV_V2: u32 = 1342215226; -+pub const MGSL_IOCWAITGPIO: u32 = 3222301970; -+pub const PMU_IOC_CAN_SLEEP: u32 = 2148024837; -+pub const KCOV_ENABLE: u32 = 25444; -+pub const BTRFS_IOC_CLONE: u32 = 1074041865; -+pub const F2FS_IOC_DEFRAGMENT: u32 = 3222336776; -+pub const FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE: u32 = 1074012942; -+pub const AGPIOC_ALLOCATE: u32 = 3221766406; -+pub const NE_SET_USER_MEMORY_REGION: u32 = 1075359267; -+pub const MGSL_IOCTXABORT: u32 = 27910; -+pub const MGSL_IOCSGPIO: u32 = 1074818320; -+pub const LIRC_SET_REC_CARRIER: u32 = 1074030868; -+pub const F2FS_IOC_FLUSH_DEVICE: u32 = 1074328842; -+pub const SNAPSHOT_ATOMIC_RESTORE: u32 = 13060; -+pub const RTC_UIE_OFF: u32 = 28676; -+pub const BT_BMC_IOCTL_SMS_ATN: u32 = 45312; -+pub const NVME_IOCTL_ID: u32 = 20032; -+pub const NE_START_ENCLAVE: u32 = 3222318628; -+pub const VIDIOC_STREAMON: u32 = 1074026002; -+pub const FDPOLLDRVSTAT: u32 = 2152727059; -+pub const AUTOFS_DEV_IOCTL_READY: u32 = 3222836086; -+pub const VIDIOC_ENUMAUDOUT: u32 = 3224655426; -+pub const VIDIOC_SUBDEV_S_STD: u32 = 1074288152; -+pub const WDIOC_GETTIMELEFT: u32 = 2147768074; -+pub const ATM_GETLINKRATE: u32 = 1074815361; -+pub const RTC_WKALM_SET: u32 = 1076391951; -+pub const VHOST_GET_BACKEND_FEATURES: u32 = 2148052774; -+pub const ATMARP_ENCAP: u32 = 25061; -+pub const CAPI_GET_FLAGS: u32 = 2147762979; -+pub const IPMICTL_SET_MY_CHANNEL_ADDRESS_CMD: u32 = 2147772696; -+pub const DFL_FPGA_FME_PORT_ASSIGN: u32 = 1074050690; -+pub const NS_GET_OWNER_UID: u32 = 46852; -+pub const VIDIOC_OVERLAY: u32 = 1074025998; -+pub const BTRFS_IOC_WAIT_SYNC: u32 = 1074304022; -+pub const GPIOHANDLE_SET_CONFIG_IOCTL: u32 = 3226776586; -+pub const VHOST_GET_VRING_ENDIAN: u32 = 1074310932; -+pub const ATM_GETADDR: u32 = 1074815366; -+pub const PHN_GET_REGS: u32 = 3221778434; -+pub const AUTOFS_DEV_IOCTL_REQUESTER: u32 = 3222836091; -+pub const AUTOFS_DEV_IOCTL_EXPIRE: u32 = 3222836092; -+pub const SNAPSHOT_S2RAM: u32 = 13067; -+pub const JSIOCSAXMAP: u32 = 1077963313; -+pub const F2FS_IOC_SET_COMPRESS_OPTION: u32 = 1073935638; -+pub const VBG_IOCTL_HGCM_DISCONNECT: u32 = 3223082501; -+pub const SCIF_FENCE_SIGNAL: u32 = 3223876369; -+pub const VFIO_DEVICE_GET_PCI_HOT_RESET_INFO: u32 = 15216; -+pub const VIDIOC_SUBDEV_ENUM_MBUS_CODE: u32 = 3224393218; -+pub const MMTIMER_GETOFFSET: u32 = 27904; -+pub const RIO_CM_CHAN_LISTEN: u32 = 1073898246; -+pub const ATM_SETSC: u32 = 1074029041; -+pub const F2FS_IOC_SHUTDOWN: u32 = 2147768445; -+pub const NVME_IOCTL_RESCAN: u32 = 20038; -+pub const BLKOPENZONE: u32 = 1074795142; -+pub const DM_VERSION: u32 = 3241737472; -+pub const CEC_TRANSMIT: u32 = 3224920325; -+pub const FS_IOC_GET_ENCRYPTION_POLICY_EX: u32 = 3221841430; -+pub const SIOCMKCLIP: u32 = 25056; -+pub const IPMI_BMC_IOCTL_CLEAR_SMS_ATN: u32 = 45313; -+pub const HIDIOCGVERSION: u32 = 2147764225; -+pub const VIDIOC_S_INPUT: u32 = 3221509671; -+pub const VIDIOC_G_CROP: u32 = 3222558267; -+pub const LIRC_SET_WIDEBAND_RECEIVER: u32 = 1074030883; -+pub const EVIOCGEFFECTS: u32 = 2147763588; -+pub const UVCIOC_CTRL_QUERY: u32 = 3222304033; -+pub const IOC_OPAL_GENERIC_TABLE_RW: u32 = 1094217963; -+pub const FS_IOC_READ_VERITY_METADATA: u32 = 3223873159; -+pub const ND_IOCTL_SET_CONFIG_DATA: u32 = 3221769734; -+pub const USBDEVFS_GETDRIVER: u32 = 1090802952; -+pub const IDT77105_GETSTAT: u32 = 1074815282; -+pub const HIDIOCINITREPORT: u32 = 18437; -+pub const VFIO_DEVICE_GET_INFO: u32 = 15211; -+pub const RIO_CM_CHAN_RECEIVE: u32 = 3222299402; -+pub const RNDGETENTCNT: u32 = 2147766784; -+pub const PPPIOCNEWUNIT: u32 = 3221517374; -+pub const BTRFS_IOC_INO_LOOKUP: u32 = 3489698834; -+pub const FDRESET: u32 = 596; -+pub const IOC_PR_REGISTER: u32 = 1075343560; -+pub const HIDIOCSREPORT: u32 = 1074546696; -+pub const TEE_IOC_OPEN_SESSION: u32 = 2148574210; -+pub const TEE_IOC_SUPPL_RECV: u32 = 2148574214; -+pub const BTRFS_IOC_BALANCE_CTL: u32 = 1074041889; -+pub const GPIO_GET_LINEINFO_WATCH_IOCTL: u32 = 3225990155; -+pub const HIDIOCGRAWINFO: u32 = 2148026371; -+pub const PPPIOCSCOMPRESS: u32 = 1074820173; -+pub const USBDEVFS_CONNECTINFO: u32 = 1074287889; -+pub const BLKRESETZONE: u32 = 1074795139; -+pub const CHIOINITELEM: u32 = 25361; -+pub const NILFS_IOCTL_SET_ALLOC_RANGE: u32 = 1074818700; -+pub const AUTOFS_DEV_IOCTL_CATATONIC: u32 = 3222836089; -+pub const RIO_MPORT_MAINT_HDID_SET: u32 = 1073900801; -+pub const PPGETPHASE: u32 = 2147774617; -+pub const USBDEVFS_DISCONNECT_CLAIM: u32 = 2164806939; -+pub const FDMSGON: u32 = 581; -+pub const VIDIOC_G_SLICED_VBI_CAP: u32 = 3228849733; -+pub const BTRFS_IOC_BALANCE_V2: u32 = 3288372256; -+pub const MEDIA_REQUEST_IOC_REINIT: u32 = 31873; -+pub const IOC_OPAL_ERASE_LR: u32 = 1091596518; -+pub const FDFMTBEG: u32 = 583; -+pub const RNDRESEEDCRNG: u32 = 20999; -+pub const ISST_IF_GET_PHY_ID: u32 = 3221814785; -+pub const TUNSETNOCSUM: u32 = 1074025672; -+pub const SONET_GETSTAT: u32 = 2149867792; -+pub const TFD_IOC_SET_TICKS: u32 = 1074287616; -+pub const PPDATADIR: u32 = 1074032784; -+pub const IOC_OPAL_ENABLE_DISABLE_MBR: u32 = 1091596517; -+pub const GPIO_V2_GET_LINE_IOCTL: u32 = 3260068871; -+pub const RIO_CM_CHAN_SEND: u32 = 1074815753; -+pub const PPWCTLONIRQ: u32 = 1073836178; -+pub const SONYPI_IOCGBRT: u32 = 2147579392; -+pub const IOC_PR_RELEASE: u32 = 1074819274; -+pub const PPCLRIRQ: u32 = 2147774611; -+pub const IPMICTL_SET_MY_CHANNEL_LUN_CMD: u32 = 2147772698; -+pub const MGSL_IOCSXSYNC: u32 = 27923; -+pub const HPET_IE_OFF: u32 = 26626; -+pub const IOC_OPAL_ACTIVATE_USR: u32 = 1091596513; -+pub const SONET_SETFRAMING: u32 = 1074028821; -+pub const PERF_EVENT_IOC_PAUSE_OUTPUT: u32 = 1074013193; -+pub const BTRFS_IOC_LOGICAL_INO_V2: u32 = 3224933435; -+pub const VBG_IOCTL_HGCM_CONNECT: u32 = 3231471108; -+pub const BLKFINISHZONE: u32 = 1074795144; -+pub const EVIOCREVOKE: u32 = 1074021777; -+pub const VFIO_DEVICE_FEATURE: u32 = 15221; -+pub const CCISS_GETPCIINFO: u32 = 2148024833; -+pub const ISST_IF_MBOX_COMMAND: u32 = 3221814787; -+pub const SCIF_ACCEPTREQ: u32 = 3222303492; -+pub const PERF_EVENT_IOC_QUERY_BPF: u32 = 3221758986; -+pub const VIDIOC_STREAMOFF: u32 = 1074026003; -+pub const VDUSE_DESTROY_DEV: u32 = 1090552067; -+pub const FDGETFDCSTAT: u32 = 2150105621; -+pub const CM_IOCGATR: u32 = 3221775105; -+pub const VIDIOC_S_PRIORITY: u32 = 1074026052; -+pub const SNAPSHOT_FREEZE: u32 = 13057; -+pub const VIDIOC_ENUMINPUT: u32 = 3226490394; -+pub const ZATM_GETPOOLZ: u32 = 1074815330; -+pub const RIO_DISABLE_DOORBELL_RANGE: u32 = 1074294026; -+pub const GPIO_V2_GET_LINEINFO_WATCH_IOCTL: u32 = 3238048774; -+pub const VIDIOC_G_STD: u32 = 2148029975; -+pub const USBDEVFS_ALLOW_SUSPEND: u32 = 21794; -+pub const SONET_GETSTATZ: u32 = 2149867793; -+pub const SCIF_ACCEPTREG: u32 = 3221779205; -+pub const VIDIOC_ENCODER_CMD: u32 = 3223869005; -+pub const PPPIOCSRASYNCMAP: u32 = 1074033748; -+pub const IOCTL_MEI_NOTIFY_SET: u32 = 1074022402; -+pub const BTRFS_IOC_QUOTA_RESCAN_STATUS: u32 = 2151715885; -+pub const F2FS_IOC_GARBAGE_COLLECT: u32 = 1074066694; -+pub const ATMLEC_CTRL: u32 = 25040; -+pub const MATROXFB_GET_AVAILABLE_OUTPUTS: u32 = 2148036345; -+pub const DM_DEV_CREATE: u32 = 3241737475; -+pub const VHOST_VDPA_GET_VRING_NUM: u32 = 2147659638; -+pub const VIDIOC_G_CTRL: u32 = 3221771803; -+pub const NBD_CLEAR_SOCK: u32 = 43780; -+pub const VFIO_DEVICE_QUERY_GFX_PLANE: u32 = 15218; -+pub const WDIOC_KEEPALIVE: u32 = 2147768069; -+pub const NVME_IOCTL_SUBSYS_RESET: u32 = 20037; -+pub const PTP_EXTTS_REQUEST2: u32 = 1074806027; -+pub const PCITEST_BAR: u32 = 20481; -+pub const MGSL_IOCGGPIO: u32 = 2148560145; -+pub const EVIOCSREP: u32 = 1074283779; -+pub const VFIO_DEVICE_GET_IRQ_INFO: u32 = 15213; -+pub const HPET_DPI: u32 = 26629; -+pub const VDUSE_VQ_SETUP_KICKFD: u32 = 1074299158; -+pub const ND_IOCTL_CALL: u32 = 3225439754; -+pub const HIDIOCGDEVINFO: u32 = 2149337091; -+pub const DM_TABLE_DEPS: u32 = 3241737483; -+pub const BTRFS_IOC_DEV_INFO: u32 = 3489698846; -+pub const VDUSE_IOTLB_GET_FD: u32 = 3223355664; -+pub const FW_CDEV_IOC_GET_INFO: u32 = 3223855872; -+pub const VIDIOC_G_PRIORITY: u32 = 2147767875; -+pub const ATM_NEWBACKENDIF: u32 = 1073897971; -+pub const VIDIOC_S_EXT_CTRLS: u32 = 3223344712; -+pub const VIDIOC_SUBDEV_ENUM_DV_TIMINGS: u32 = 3230946914; -+pub const VIDIOC_OMAP3ISP_CCDC_CFG: u32 = 3224917697; -+pub const VIDIOC_S_HW_FREQ_SEEK: u32 = 1076909650; -+pub const DM_TABLE_LOAD: u32 = 3241737481; -+pub const F2FS_IOC_START_ATOMIC_WRITE: u32 = 62721; -+pub const VIDIOC_G_OUTPUT: u32 = 2147767854; -+pub const ATM_DROPPARTY: u32 = 1074029045; -+pub const CHIOGELEM: u32 = 1080845072; -+pub const BTRFS_IOC_GET_SUPPORTED_FEATURES: u32 = 2152240185; -+pub const EVIOCSKEYCODE: u32 = 1074283780; -+pub const NE_GET_IMAGE_LOAD_INFO: u32 = 3222318626; -+pub const TUNSETLINK: u32 = 1074025677; -+pub const FW_CDEV_IOC_ADD_DESCRIPTOR: u32 = 3222807302; -+pub const BTRFS_IOC_SCRUB_CANCEL: u32 = 37916; -+pub const PPS_SETPARAMS: u32 = 1074294946; -+pub const IOC_OPAL_LR_SETUP: u32 = 1093169379; -+pub const FW_CDEV_IOC_DEALLOCATE: u32 = 1074012931; -+pub const WDIOC_SETTIMEOUT: u32 = 3221509894; -+pub const IOC_WATCH_QUEUE_SET_FILTER: u32 = 22369; -+pub const CAPI_GET_MANUFACTURER: u32 = 3221504774; -+pub const VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY: u32 = 15222; -+pub const ASPEED_P2A_CTRL_IOCTL_SET_WINDOW: u32 = 1074836224; -+pub const VIDIOC_G_EDID: u32 = 3223868968; -+pub const F2FS_IOC_GARBAGE_COLLECT_RANGE: u32 = 1075377419; -+pub const RIO_MAP_INBOUND: u32 = 3223874833; -+pub const IOC_OPAL_TAKE_OWNERSHIP: u32 = 1091072222; -+pub const USBDEVFS_CLAIM_PORT: u32 = 2147767576; -+pub const VIDIOC_S_AUDIO: u32 = 1077171746; -+pub const FS_IOC_GET_ENCRYPTION_NONCE: u32 = 2148558363; -+pub const FW_CDEV_IOC_SEND_STREAM_PACKET: u32 = 1076372243; -+pub const BTRFS_IOC_SNAP_DESTROY: u32 = 1342215183; -+pub const SNAPSHOT_FREE: u32 = 13061; -+pub const I8K_GET_SPEED: u32 = 3221776773; -+pub const HIDIOCGREPORT: u32 = 1074546695; -+pub const HPET_EPI: u32 = 26628; -+pub const JSIOCSCORR: u32 = 1076128289; -+pub const IOC_PR_PREEMPT_ABORT: u32 = 1075343564; -+pub const RIO_MAP_OUTBOUND: u32 = 3223874831; -+pub const ATM_SETESI: u32 = 1074815372; -+pub const FW_CDEV_IOC_START_ISO: u32 = 1074799370; -+pub const ATM_DELADDR: u32 = 1074815369; -+pub const PPFCONTROL: u32 = 1073901710; -+pub const SONYPI_IOCGFAN: u32 = 2147579402; -+pub const RTC_IRQP_SET: u32 = 1074294796; -+pub const PCITEST_WRITE: u32 = 1074286596; -+pub const PPCLAIM: u32 = 28811; -+pub const VIDIOC_S_JPEGCOMP: u32 = 1082938942; -+pub const IPMICTL_UNREGISTER_FOR_CMD: u32 = 2147641615; -+pub const VHOST_SET_FEATURES: u32 = 1074310912; -+pub const TOSHIBA_ACPI_SCI: u32 = 3222828177; -+pub const VIDIOC_DQBUF: u32 = 3227014673; -+pub const BTRFS_IOC_BALANCE_PROGRESS: u32 = 2214630434; -+pub const BTRFS_IOC_SUBVOL_SETFLAGS: u32 = 1074304026; -+pub const ATMLEC_MCAST: u32 = 25042; -+pub const MMTIMER_GETFREQ: u32 = 2148035842; -+pub const VIDIOC_G_SELECTION: u32 = 3225441886; -+pub const RTC_ALM_SET: u32 = 1076129799; -+pub const PPPOEIOCSFWD: u32 = 1074311424; -+pub const IPMICTL_GET_MAINTENANCE_MODE_CMD: u32 = 2147772702; -+pub const FS_IOC_ENABLE_VERITY: u32 = 1082156677; -+pub const NILFS_IOCTL_GET_BDESCS: u32 = 3222826631; -+pub const FDFMTEND: u32 = 585; -+pub const DMA_BUF_SET_NAME: u32 = 1074291201; -+pub const UI_BEGIN_FF_UPLOAD: u32 = 3228063176; -+pub const RTC_UIE_ON: u32 = 28675; -+pub const PPRELEASE: u32 = 28812; -+pub const VFIO_IOMMU_UNMAP_DMA: u32 = 15218; -+pub const VIDIOC_OMAP3ISP_PRV_CFG: u32 = 3228587714; -+pub const GPIO_GET_LINEHANDLE_IOCTL: u32 = 3245126659; -+pub const VFAT_IOCTL_READDIR_BOTH: u32 = 2184212993; -+pub const NVME_IOCTL_ADMIN_CMD: u32 = 3225964097; -+pub const VHOST_SET_VRING_KICK: u32 = 1074310944; -+pub const BTRFS_IOC_SUBVOL_CREATE_V2: u32 = 1342215192; -+pub const BTRFS_IOC_SNAP_CREATE: u32 = 1342215169; -+pub const SONYPI_IOCGBAT2CAP: u32 = 2147644932; -+pub const PPNEGOT: u32 = 1074032785; -+pub const NBD_PRINT_DEBUG: u32 = 43782; -+pub const BTRFS_IOC_INO_LOOKUP_USER: u32 = 3489698878; -+pub const BTRFS_IOC_GET_SUBVOL_ROOTREF: u32 = 3489698877; -+pub const FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS: u32 = 3225445913; -+pub const BTRFS_IOC_FS_INFO: u32 = 2214630431; -+pub const VIDIOC_ENUM_FMT: u32 = 3225441794; -+pub const VIDIOC_G_INPUT: u32 = 2147767846; -+pub const VTPM_PROXY_IOC_NEW_DEV: u32 = 3222577408; -+pub const DFL_FPGA_FME_ERR_GET_IRQ_NUM: u32 = 2147792515; -+pub const ND_IOCTL_DIMM_FLAGS: u32 = 3221769731; -+pub const BTRFS_IOC_QUOTA_RESCAN: u32 = 1077974060; -+pub const MMTIMER_GETCOUNTER: u32 = 2148035849; -+pub const MATROXFB_GET_OUTPUT_MODE: u32 = 3221778170; -+pub const BTRFS_IOC_QUOTA_RESCAN_WAIT: u32 = 37934; -+pub const RIO_CM_CHAN_BIND: u32 = 1074291461; -+pub const HIDIOCGRDESC: u32 = 2416199682; -+pub const MGSL_IOCGIF: u32 = 27915; -+pub const VIDIOC_S_OUTPUT: u32 = 3221509679; -+pub const HIDIOCGREPORTINFO: u32 = 3222030345; -+pub const WDIOC_GETBOOTSTATUS: u32 = 2147768066; -+pub const VDUSE_VQ_GET_INFO: u32 = 3224404245; -+pub const ACRN_IOCTL_ASSIGN_PCIDEV: u32 = 1076142677; -+pub const BLKGETDISKSEQ: u32 = 2148012672; -+pub const ACRN_IOCTL_PM_GET_CPU_STATE: u32 = 3221791328; -+pub const ACRN_IOCTL_DESTROY_VM: u32 = 41489; -+pub const ACRN_IOCTL_SET_PTDEV_INTR: u32 = 1075094099; -+pub const ACRN_IOCTL_CREATE_IOREQ_CLIENT: u32 = 41522; -+pub const ACRN_IOCTL_IRQFD: u32 = 1075356273; -+pub const ACRN_IOCTL_CREATE_VM: u32 = 3224412688; -+pub const ACRN_IOCTL_INJECT_MSI: u32 = 1074831907; -+pub const ACRN_IOCTL_ATTACH_IOREQ_CLIENT: u32 = 41523; -+pub const ACRN_IOCTL_RESET_PTDEV_INTR: u32 = 1075094100; -+pub const ACRN_IOCTL_NOTIFY_REQUEST_FINISH: u32 = 1074307633; -+pub const ACRN_IOCTL_SET_IRQLINE: u32 = 1074307621; -+pub const ACRN_IOCTL_START_VM: u32 = 41490; -+pub const ACRN_IOCTL_SET_VCPU_REGS: u32 = 1093181974; -+pub const ACRN_IOCTL_SET_MEMSEG: u32 = 1075880513; -+pub const ACRN_IOCTL_PAUSE_VM: u32 = 41491; -+pub const ACRN_IOCTL_CLEAR_VM_IOREQ: u32 = 41525; -+pub const ACRN_IOCTL_UNSET_MEMSEG: u32 = 1075880514; -+pub const ACRN_IOCTL_IOEVENTFD: u32 = 1075880560; -+pub const ACRN_IOCTL_DEASSIGN_PCIDEV: u32 = 1076142678; -+pub const ACRN_IOCTL_RESET_VM: u32 = 41493; -+pub const ACRN_IOCTL_DESTROY_IOREQ_CLIENT: u32 = 41524; -+pub const ACRN_IOCTL_VM_INTR_MONITOR: u32 = 1074307620; -diff --git a/vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs b/vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs -new file mode 100644 -index 000000000..8069c2f5c ---- /dev/null -+++ b/vendor/linux-raw-sys-0.1.4/src/loongarch64/netlink.rs -@@ -0,0 +1,2860 @@ -+/* automatically generated by rust-bindgen 0.59.2 */ -+ -+#[repr(C)] -+#[derive(Default)] -+pub struct __IncompleteArrayField(::core::marker::PhantomData, [T; 0]); -+impl __IncompleteArrayField { -+#[inline] -+pub const fn new() -> Self { -+__IncompleteArrayField(::core::marker::PhantomData, []) -+} -+#[inline] -+pub fn as_ptr(&self) -> *const T { -+self as *const _ as *const T -+} -+#[inline] -+pub fn as_mut_ptr(&mut self) -> *mut T { -+self as *mut _ as *mut T -+} -+#[inline] -+pub unsafe fn as_slice(&self, len: usize) -> &[T] { -+::core::slice::from_raw_parts(self.as_ptr(), len) -+} -+#[inline] -+pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { -+::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len) -+} -+} -+impl ::core::fmt::Debug for __IncompleteArrayField { -+fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { -+fmt.write_str("__IncompleteArrayField") -+} -+} -+pub const LINUX_VERSION_CODE: u32 = 393728; -+pub const LINUX_VERSION_MAJOR: u32 = 6; -+pub const LINUX_VERSION_PATCHLEVEL: u32 = 2; -+pub const LINUX_VERSION_SUBLEVEL: u32 = 0; -+pub const _K_SS_MAXSIZE: u32 = 128; -+pub const SOCK_SNDBUF_LOCK: u32 = 1; -+pub const SOCK_RCVBUF_LOCK: u32 = 2; -+pub const SOCK_BUF_LOCK_MASK: u32 = 3; -+pub const SOCK_TXREHASH_DEFAULT: u32 = 255; -+pub const SOCK_TXREHASH_DISABLED: u32 = 0; -+pub const SOCK_TXREHASH_ENABLED: u32 = 1; -+pub const __FD_SETSIZE: u32 = 1024; -+pub const NETLINK_ROUTE: u32 = 0; -+pub const NETLINK_UNUSED: u32 = 1; -+pub const NETLINK_USERSOCK: u32 = 2; -+pub const NETLINK_FIREWALL: u32 = 3; -+pub const NETLINK_SOCK_DIAG: u32 = 4; -+pub const NETLINK_NFLOG: u32 = 5; -+pub const NETLINK_XFRM: u32 = 6; -+pub const NETLINK_SELINUX: u32 = 7; -+pub const NETLINK_ISCSI: u32 = 8; -+pub const NETLINK_AUDIT: u32 = 9; -+pub const NETLINK_FIB_LOOKUP: u32 = 10; -+pub const NETLINK_CONNECTOR: u32 = 11; -+pub const NETLINK_NETFILTER: u32 = 12; -+pub const NETLINK_IP6_FW: u32 = 13; -+pub const NETLINK_DNRTMSG: u32 = 14; -+pub const NETLINK_KOBJECT_UEVENT: u32 = 15; -+pub const NETLINK_GENERIC: u32 = 16; -+pub const NETLINK_SCSITRANSPORT: u32 = 18; -+pub const NETLINK_ECRYPTFS: u32 = 19; -+pub const NETLINK_RDMA: u32 = 20; -+pub const NETLINK_CRYPTO: u32 = 21; -+pub const NETLINK_SMC: u32 = 22; -+pub const NETLINK_INET_DIAG: u32 = 4; -+pub const MAX_LINKS: u32 = 32; -+pub const NLM_F_REQUEST: u32 = 1; -+pub const NLM_F_MULTI: u32 = 2; -+pub const NLM_F_ACK: u32 = 4; -+pub const NLM_F_ECHO: u32 = 8; -+pub const NLM_F_DUMP_INTR: u32 = 16; -+pub const NLM_F_DUMP_FILTERED: u32 = 32; -+pub const NLM_F_ROOT: u32 = 256; -+pub const NLM_F_MATCH: u32 = 512; -+pub const NLM_F_ATOMIC: u32 = 1024; -+pub const NLM_F_DUMP: u32 = 768; -+pub const NLM_F_REPLACE: u32 = 256; -+pub const NLM_F_EXCL: u32 = 512; -+pub const NLM_F_CREATE: u32 = 1024; -+pub const NLM_F_APPEND: u32 = 2048; -+pub const NLM_F_NONREC: u32 = 256; -+pub const NLM_F_BULK: u32 = 512; -+pub const NLM_F_CAPPED: u32 = 256; -+pub const NLM_F_ACK_TLVS: u32 = 512; -+pub const NLMSG_ALIGNTO: u32 = 4; -+pub const NLMSG_NOOP: u32 = 1; -+pub const NLMSG_ERROR: u32 = 2; -+pub const NLMSG_DONE: u32 = 3; -+pub const NLMSG_OVERRUN: u32 = 4; -+pub const NLMSG_MIN_TYPE: u32 = 16; -+pub const NETLINK_ADD_MEMBERSHIP: u32 = 1; -+pub const NETLINK_DROP_MEMBERSHIP: u32 = 2; -+pub const NETLINK_PKTINFO: u32 = 3; -+pub const NETLINK_BROADCAST_ERROR: u32 = 4; -+pub const NETLINK_NO_ENOBUFS: u32 = 5; -+pub const NETLINK_RX_RING: u32 = 6; -+pub const NETLINK_TX_RING: u32 = 7; -+pub const NETLINK_LISTEN_ALL_NSID: u32 = 8; -+pub const NETLINK_LIST_MEMBERSHIPS: u32 = 9; -+pub const NETLINK_CAP_ACK: u32 = 10; -+pub const NETLINK_EXT_ACK: u32 = 11; -+pub const NETLINK_GET_STRICT_CHK: u32 = 12; -+pub const NL_MMAP_MSG_ALIGNMENT: u32 = 4; -+pub const NET_MAJOR: u32 = 36; -+pub const NLA_F_NESTED: u32 = 32768; -+pub const NLA_F_NET_BYTEORDER: u32 = 16384; -+pub const NLA_TYPE_MASK: i32 = -49153; -+pub const NLA_ALIGNTO: u32 = 4; -+pub const MACVLAN_FLAG_NOPROMISC: u32 = 1; -+pub const MACVLAN_FLAG_NODST: u32 = 2; -+pub const IPVLAN_F_PRIVATE: u32 = 1; -+pub const IPVLAN_F_VEPA: u32 = 2; -+pub const TUNNEL_MSG_FLAG_STATS: u32 = 1; -+pub const TUNNEL_MSG_VALID_USER_FLAGS: u32 = 1; -+pub const MAX_VLAN_LIST_LEN: u32 = 1; -+pub const PORT_PROFILE_MAX: u32 = 40; -+pub const PORT_UUID_MAX: u32 = 16; -+pub const PORT_SELF_VF: i32 = -1; -+pub const XDP_FLAGS_UPDATE_IF_NOEXIST: u32 = 1; -+pub const XDP_FLAGS_SKB_MODE: u32 = 2; -+pub const XDP_FLAGS_DRV_MODE: u32 = 4; -+pub const XDP_FLAGS_HW_MODE: u32 = 8; -+pub const XDP_FLAGS_REPLACE: u32 = 16; -+pub const XDP_FLAGS_MODES: u32 = 14; -+pub const XDP_FLAGS_MASK: u32 = 31; -+pub const RMNET_FLAGS_INGRESS_DEAGGREGATION: u32 = 1; -+pub const RMNET_FLAGS_INGRESS_MAP_COMMANDS: u32 = 2; -+pub const RMNET_FLAGS_INGRESS_MAP_CKSUMV4: u32 = 4; -+pub const RMNET_FLAGS_EGRESS_MAP_CKSUMV4: u32 = 8; -+pub const RMNET_FLAGS_INGRESS_MAP_CKSUMV5: u32 = 16; -+pub const RMNET_FLAGS_EGRESS_MAP_CKSUMV5: u32 = 32; -+pub const IFA_F_SECONDARY: u32 = 1; -+pub const IFA_F_TEMPORARY: u32 = 1; -+pub const IFA_F_NODAD: u32 = 2; -+pub const IFA_F_OPTIMISTIC: u32 = 4; -+pub const IFA_F_DADFAILED: u32 = 8; -+pub const IFA_F_HOMEADDRESS: u32 = 16; -+pub const IFA_F_DEPRECATED: u32 = 32; -+pub const IFA_F_TENTATIVE: u32 = 64; -+pub const IFA_F_PERMANENT: u32 = 128; -+pub const IFA_F_MANAGETEMPADDR: u32 = 256; -+pub const IFA_F_NOPREFIXROUTE: u32 = 512; -+pub const IFA_F_MCAUTOJOIN: u32 = 1024; -+pub const IFA_F_STABLE_PRIVACY: u32 = 2048; -+pub const IFAPROT_UNSPEC: u32 = 0; -+pub const IFAPROT_KERNEL_LO: u32 = 1; -+pub const IFAPROT_KERNEL_RA: u32 = 2; -+pub const IFAPROT_KERNEL_LL: u32 = 3; -+pub const NTF_USE: u32 = 1; -+pub const NTF_SELF: u32 = 2; -+pub const NTF_MASTER: u32 = 4; -+pub const NTF_PROXY: u32 = 8; -+pub const NTF_EXT_LEARNED: u32 = 16; -+pub const NTF_OFFLOADED: u32 = 32; -+pub const NTF_STICKY: u32 = 64; -+pub const NTF_ROUTER: u32 = 128; -+pub const NTF_EXT_MANAGED: u32 = 1; -+pub const NTF_EXT_LOCKED: u32 = 2; -+pub const NUD_INCOMPLETE: u32 = 1; -+pub const NUD_REACHABLE: u32 = 2; -+pub const NUD_STALE: u32 = 4; -+pub const NUD_DELAY: u32 = 8; -+pub const NUD_PROBE: u32 = 16; -+pub const NUD_FAILED: u32 = 32; -+pub const NUD_NOARP: u32 = 64; -+pub const NUD_PERMANENT: u32 = 128; -+pub const NUD_NONE: u32 = 0; -+pub const RTNL_FAMILY_IPMR: u32 = 128; -+pub const RTNL_FAMILY_IP6MR: u32 = 129; -+pub const RTNL_FAMILY_MAX: u32 = 129; -+pub const RTA_ALIGNTO: u32 = 4; -+pub const RTPROT_UNSPEC: u32 = 0; -+pub const RTPROT_REDIRECT: u32 = 1; -+pub const RTPROT_KERNEL: u32 = 2; -+pub const RTPROT_BOOT: u32 = 3; -+pub const RTPROT_STATIC: u32 = 4; -+pub const RTPROT_GATED: u32 = 8; -+pub const RTPROT_RA: u32 = 9; -+pub const RTPROT_MRT: u32 = 10; -+pub const RTPROT_ZEBRA: u32 = 11; -+pub const RTPROT_BIRD: u32 = 12; -+pub const RTPROT_DNROUTED: u32 = 13; -+pub const RTPROT_XORP: u32 = 14; -+pub const RTPROT_NTK: u32 = 15; -+pub const RTPROT_DHCP: u32 = 16; -+pub const RTPROT_MROUTED: u32 = 17; -+pub const RTPROT_KEEPALIVED: u32 = 18; -+pub const RTPROT_BABEL: u32 = 42; -+pub const RTPROT_OPENR: u32 = 99; -+pub const RTPROT_BGP: u32 = 186; -+pub const RTPROT_ISIS: u32 = 187; -+pub const RTPROT_OSPF: u32 = 188; -+pub const RTPROT_RIP: u32 = 189; -+pub const RTPROT_EIGRP: u32 = 192; -+pub const RTM_F_NOTIFY: u32 = 256; -+pub const RTM_F_CLONED: u32 = 512; -+pub const RTM_F_EQUALIZE: u32 = 1024; -+pub const RTM_F_PREFIX: u32 = 2048; -+pub const RTM_F_LOOKUP_TABLE: u32 = 4096; -+pub const RTM_F_FIB_MATCH: u32 = 8192; -+pub const RTM_F_OFFLOAD: u32 = 16384; -+pub const RTM_F_TRAP: u32 = 32768; -+pub const RTM_F_OFFLOAD_FAILED: u32 = 536870912; -+pub const RTNH_F_DEAD: u32 = 1; -+pub const RTNH_F_PERVASIVE: u32 = 2; -+pub const RTNH_F_ONLINK: u32 = 4; -+pub const RTNH_F_OFFLOAD: u32 = 8; -+pub const RTNH_F_LINKDOWN: u32 = 16; -+pub const RTNH_F_UNRESOLVED: u32 = 32; -+pub const RTNH_F_TRAP: u32 = 64; -+pub const RTNH_COMPARE_MASK: u32 = 89; -+pub const RTNH_ALIGNTO: u32 = 4; -+pub const RTNETLINK_HAVE_PEERINFO: u32 = 1; -+pub const RTAX_FEATURE_ECN: u32 = 1; -+pub const RTAX_FEATURE_SACK: u32 = 2; -+pub const RTAX_FEATURE_TIMESTAMP: u32 = 4; -+pub const RTAX_FEATURE_ALLFRAG: u32 = 8; -+pub const RTAX_FEATURE_MASK: u32 = 15; -+pub const TCM_IFINDEX_MAGIC_BLOCK: u32 = 4294967295; -+pub const TCA_DUMP_FLAGS_TERSE: u32 = 1; -+pub const RTMGRP_LINK: u32 = 1; -+pub const RTMGRP_NOTIFY: u32 = 2; -+pub const RTMGRP_NEIGH: u32 = 4; -+pub const RTMGRP_TC: u32 = 8; -+pub const RTMGRP_IPV4_IFADDR: u32 = 16; -+pub const RTMGRP_IPV4_MROUTE: u32 = 32; -+pub const RTMGRP_IPV4_ROUTE: u32 = 64; -+pub const RTMGRP_IPV4_RULE: u32 = 128; -+pub const RTMGRP_IPV6_IFADDR: u32 = 256; -+pub const RTMGRP_IPV6_MROUTE: u32 = 512; -+pub const RTMGRP_IPV6_ROUTE: u32 = 1024; -+pub const RTMGRP_IPV6_IFINFO: u32 = 2048; -+pub const RTMGRP_DECnet_IFADDR: u32 = 4096; -+pub const RTMGRP_DECnet_ROUTE: u32 = 16384; -+pub const RTMGRP_IPV6_PREFIX: u32 = 131072; -+pub const TCA_FLAG_LARGE_DUMP_ON: u32 = 1; -+pub const TCA_ACT_FLAG_LARGE_DUMP_ON: u32 = 1; -+pub const TCA_ACT_FLAG_TERSE_DUMP: u32 = 2; -+pub const RTEXT_FILTER_VF: u32 = 1; -+pub const RTEXT_FILTER_BRVLAN: u32 = 2; -+pub const RTEXT_FILTER_BRVLAN_COMPRESSED: u32 = 4; -+pub const RTEXT_FILTER_SKIP_STATS: u32 = 8; -+pub const RTEXT_FILTER_MRP: u32 = 16; -+pub const RTEXT_FILTER_CFM_CONFIG: u32 = 32; -+pub const RTEXT_FILTER_CFM_STATUS: u32 = 64; -+pub const RTEXT_FILTER_MST: u32 = 128; -+pub type size_t = crate::ctypes::c_ulong; -+pub type ssize_t = crate::ctypes::c_long; -+pub type __kernel_sa_family_t = crate::ctypes::c_ushort; -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct __kernel_sockaddr_storage { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union __kernel_sockaddr_storage__bindgen_ty_1 { -+pub __bindgen_anon_1: __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1, -+pub __align: *mut crate::ctypes::c_void, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1 { -+pub ss_family: __kernel_sa_family_t, -+pub __data: [crate::ctypes::c_char; 126usize], -+} -+pub type __s8 = crate::ctypes::c_schar; -+pub type __u8 = crate::ctypes::c_uchar; -+pub type __s16 = crate::ctypes::c_short; -+pub type __u16 = crate::ctypes::c_ushort; -+pub type __s32 = crate::ctypes::c_int; -+pub type __u32 = crate::ctypes::c_uint; -+pub type __s64 = crate::ctypes::c_longlong; -+pub type __u64 = crate::ctypes::c_ulonglong; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fd_set { -+pub fds_bits: [crate::ctypes::c_ulong; 16usize], -+} -+pub type __kernel_sighandler_t = ::core::option::Option; -+pub type __kernel_key_t = crate::ctypes::c_int; -+pub type __kernel_mqd_t = crate::ctypes::c_int; -+pub type __kernel_long_t = crate::ctypes::c_long; -+pub type __kernel_ulong_t = crate::ctypes::c_ulong; -+pub type __kernel_ino_t = __kernel_ulong_t; -+pub type __kernel_mode_t = crate::ctypes::c_uint; -+pub type __kernel_pid_t = crate::ctypes::c_int; -+pub type __kernel_ipc_pid_t = crate::ctypes::c_int; -+pub type __kernel_uid_t = crate::ctypes::c_uint; -+pub type __kernel_gid_t = crate::ctypes::c_uint; -+pub type __kernel_suseconds_t = __kernel_long_t; -+pub type __kernel_daddr_t = crate::ctypes::c_int; -+pub type __kernel_uid32_t = crate::ctypes::c_uint; -+pub type __kernel_gid32_t = crate::ctypes::c_uint; -+pub type __kernel_old_uid_t = __kernel_uid_t; -+pub type __kernel_old_gid_t = __kernel_gid_t; -+pub type __kernel_old_dev_t = crate::ctypes::c_uint; -+pub type __kernel_size_t = __kernel_ulong_t; -+pub type __kernel_ssize_t = __kernel_long_t; -+pub type __kernel_ptrdiff_t = __kernel_long_t; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct __kernel_fsid_t { -+pub val: [crate::ctypes::c_int; 2usize], -+} -+pub type __kernel_off_t = __kernel_long_t; -+pub type __kernel_loff_t = crate::ctypes::c_longlong; -+pub type __kernel_old_time_t = __kernel_long_t; -+pub type __kernel_time_t = __kernel_long_t; -+pub type __kernel_time64_t = crate::ctypes::c_longlong; -+pub type __kernel_clock_t = __kernel_long_t; -+pub type __kernel_timer_t = crate::ctypes::c_int; -+pub type __kernel_clockid_t = crate::ctypes::c_int; -+pub type __kernel_caddr_t = *mut crate::ctypes::c_char; -+pub type __kernel_uid16_t = crate::ctypes::c_ushort; -+pub type __kernel_gid16_t = crate::ctypes::c_ushort; -+pub type __le16 = __u16; -+pub type __be16 = __u16; -+pub type __le32 = __u32; -+pub type __be32 = __u32; -+pub type __le64 = __u64; -+pub type __be64 = __u64; -+pub type __sum16 = __u16; -+pub type __wsum = __u32; -+pub type __poll_t = crate::ctypes::c_uint; -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct sockaddr_nl { -+pub nl_family: __kernel_sa_family_t, -+pub nl_pad: crate::ctypes::c_ushort, -+pub nl_pid: __u32, -+pub nl_groups: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nlmsghdr { -+pub nlmsg_len: __u32, -+pub nlmsg_type: __u16, -+pub nlmsg_flags: __u16, -+pub nlmsg_seq: __u32, -+pub nlmsg_pid: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nlmsgerr { -+pub error: crate::ctypes::c_int, -+pub msg: nlmsghdr, -+} -+impl nlmsgerr_attrs { -+pub const NLMSGERR_ATTR_MAX: nlmsgerr_attrs = nlmsgerr_attrs::NLMSGERR_ATTR_MISS_NEST; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum nlmsgerr_attrs { -+NLMSGERR_ATTR_UNUSED = 0, -+NLMSGERR_ATTR_MSG = 1, -+NLMSGERR_ATTR_OFFS = 2, -+NLMSGERR_ATTR_COOKIE = 3, -+NLMSGERR_ATTR_POLICY = 4, -+NLMSGERR_ATTR_MISS_TYPE = 5, -+NLMSGERR_ATTR_MISS_NEST = 6, -+__NLMSGERR_ATTR_MAX = 7, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nl_pktinfo { -+pub group: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nl_mmap_req { -+pub nm_block_size: crate::ctypes::c_uint, -+pub nm_block_nr: crate::ctypes::c_uint, -+pub nm_frame_size: crate::ctypes::c_uint, -+pub nm_frame_nr: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nl_mmap_hdr { -+pub nm_status: crate::ctypes::c_uint, -+pub nm_len: crate::ctypes::c_uint, -+pub nm_group: __u32, -+pub nm_pid: __u32, -+pub nm_uid: __u32, -+pub nm_gid: __u32, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum nl_mmap_status { -+NL_MMAP_STATUS_UNUSED = 0, -+NL_MMAP_STATUS_RESERVED = 1, -+NL_MMAP_STATUS_VALID = 2, -+NL_MMAP_STATUS_COPY = 3, -+NL_MMAP_STATUS_SKIP = 4, -+} -+pub const NETLINK_UNCONNECTED: _bindgen_ty_1 = _bindgen_ty_1::NETLINK_UNCONNECTED; -+pub const NETLINK_CONNECTED: _bindgen_ty_1 = _bindgen_ty_1::NETLINK_CONNECTED; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_1 { -+NETLINK_UNCONNECTED = 0, -+NETLINK_CONNECTED = 1, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nlattr { -+pub nla_len: __u16, -+pub nla_type: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nla_bitfield32 { -+pub value: __u32, -+pub selector: __u32, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum netlink_attribute_type { -+NL_ATTR_TYPE_INVALID = 0, -+NL_ATTR_TYPE_FLAG = 1, -+NL_ATTR_TYPE_U8 = 2, -+NL_ATTR_TYPE_U16 = 3, -+NL_ATTR_TYPE_U32 = 4, -+NL_ATTR_TYPE_U64 = 5, -+NL_ATTR_TYPE_S8 = 6, -+NL_ATTR_TYPE_S16 = 7, -+NL_ATTR_TYPE_S32 = 8, -+NL_ATTR_TYPE_S64 = 9, -+NL_ATTR_TYPE_BINARY = 10, -+NL_ATTR_TYPE_STRING = 11, -+NL_ATTR_TYPE_NUL_STRING = 12, -+NL_ATTR_TYPE_NESTED = 13, -+NL_ATTR_TYPE_NESTED_ARRAY = 14, -+NL_ATTR_TYPE_BITFIELD32 = 15, -+} -+impl netlink_policy_type_attr { -+pub const NL_POLICY_TYPE_ATTR_MAX: netlink_policy_type_attr = netlink_policy_type_attr::NL_POLICY_TYPE_ATTR_MASK; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum netlink_policy_type_attr { -+NL_POLICY_TYPE_ATTR_UNSPEC = 0, -+NL_POLICY_TYPE_ATTR_TYPE = 1, -+NL_POLICY_TYPE_ATTR_MIN_VALUE_S = 2, -+NL_POLICY_TYPE_ATTR_MAX_VALUE_S = 3, -+NL_POLICY_TYPE_ATTR_MIN_VALUE_U = 4, -+NL_POLICY_TYPE_ATTR_MAX_VALUE_U = 5, -+NL_POLICY_TYPE_ATTR_MIN_LENGTH = 6, -+NL_POLICY_TYPE_ATTR_MAX_LENGTH = 7, -+NL_POLICY_TYPE_ATTR_POLICY_IDX = 8, -+NL_POLICY_TYPE_ATTR_POLICY_MAXTYPE = 9, -+NL_POLICY_TYPE_ATTR_BITFIELD32_MASK = 10, -+NL_POLICY_TYPE_ATTR_PAD = 11, -+NL_POLICY_TYPE_ATTR_MASK = 12, -+__NL_POLICY_TYPE_ATTR_MAX = 13, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_link_stats { -+pub rx_packets: __u32, -+pub tx_packets: __u32, -+pub rx_bytes: __u32, -+pub tx_bytes: __u32, -+pub rx_errors: __u32, -+pub tx_errors: __u32, -+pub rx_dropped: __u32, -+pub tx_dropped: __u32, -+pub multicast: __u32, -+pub collisions: __u32, -+pub rx_length_errors: __u32, -+pub rx_over_errors: __u32, -+pub rx_crc_errors: __u32, -+pub rx_frame_errors: __u32, -+pub rx_fifo_errors: __u32, -+pub rx_missed_errors: __u32, -+pub tx_aborted_errors: __u32, -+pub tx_carrier_errors: __u32, -+pub tx_fifo_errors: __u32, -+pub tx_heartbeat_errors: __u32, -+pub tx_window_errors: __u32, -+pub rx_compressed: __u32, -+pub tx_compressed: __u32, -+pub rx_nohandler: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_link_stats64 { -+pub rx_packets: __u64, -+pub tx_packets: __u64, -+pub rx_bytes: __u64, -+pub tx_bytes: __u64, -+pub rx_errors: __u64, -+pub tx_errors: __u64, -+pub rx_dropped: __u64, -+pub tx_dropped: __u64, -+pub multicast: __u64, -+pub collisions: __u64, -+pub rx_length_errors: __u64, -+pub rx_over_errors: __u64, -+pub rx_crc_errors: __u64, -+pub rx_frame_errors: __u64, -+pub rx_fifo_errors: __u64, -+pub rx_missed_errors: __u64, -+pub tx_aborted_errors: __u64, -+pub tx_carrier_errors: __u64, -+pub tx_fifo_errors: __u64, -+pub tx_heartbeat_errors: __u64, -+pub tx_window_errors: __u64, -+pub rx_compressed: __u64, -+pub tx_compressed: __u64, -+pub rx_nohandler: __u64, -+pub rx_otherhost_dropped: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_hw_stats64 { -+pub rx_packets: __u64, -+pub tx_packets: __u64, -+pub rx_bytes: __u64, -+pub tx_bytes: __u64, -+pub rx_errors: __u64, -+pub tx_errors: __u64, -+pub rx_dropped: __u64, -+pub tx_dropped: __u64, -+pub multicast: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnl_link_ifmap { -+pub mem_start: __u64, -+pub mem_end: __u64, -+pub base_addr: __u64, -+pub irq: __u16, -+pub dma: __u8, -+pub port: __u8, -+} -+pub const IFLA_UNSPEC: _bindgen_ty_2 = _bindgen_ty_2::IFLA_UNSPEC; -+pub const IFLA_ADDRESS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_ADDRESS; -+pub const IFLA_BROADCAST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_BROADCAST; -+pub const IFLA_IFNAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IFNAME; -+pub const IFLA_MTU: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MTU; -+pub const IFLA_LINK: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINK; -+pub const IFLA_QDISC: _bindgen_ty_2 = _bindgen_ty_2::IFLA_QDISC; -+pub const IFLA_STATS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_STATS; -+pub const IFLA_COST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_COST; -+pub const IFLA_PRIORITY: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PRIORITY; -+pub const IFLA_MASTER: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MASTER; -+pub const IFLA_WIRELESS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_WIRELESS; -+pub const IFLA_PROTINFO: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROTINFO; -+pub const IFLA_TXQLEN: _bindgen_ty_2 = _bindgen_ty_2::IFLA_TXQLEN; -+pub const IFLA_MAP: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MAP; -+pub const IFLA_WEIGHT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_WEIGHT; -+pub const IFLA_OPERSTATE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_OPERSTATE; -+pub const IFLA_LINKMODE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINKMODE; -+pub const IFLA_LINKINFO: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINKINFO; -+pub const IFLA_NET_NS_PID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NET_NS_PID; -+pub const IFLA_IFALIAS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IFALIAS; -+pub const IFLA_NUM_VF: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NUM_VF; -+pub const IFLA_VFINFO_LIST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_VFINFO_LIST; -+pub const IFLA_STATS64: _bindgen_ty_2 = _bindgen_ty_2::IFLA_STATS64; -+pub const IFLA_VF_PORTS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_VF_PORTS; -+pub const IFLA_PORT_SELF: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PORT_SELF; -+pub const IFLA_AF_SPEC: _bindgen_ty_2 = _bindgen_ty_2::IFLA_AF_SPEC; -+pub const IFLA_GROUP: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GROUP; -+pub const IFLA_NET_NS_FD: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NET_NS_FD; -+pub const IFLA_EXT_MASK: _bindgen_ty_2 = _bindgen_ty_2::IFLA_EXT_MASK; -+pub const IFLA_PROMISCUITY: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROMISCUITY; -+pub const IFLA_NUM_TX_QUEUES: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NUM_TX_QUEUES; -+pub const IFLA_NUM_RX_QUEUES: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NUM_RX_QUEUES; -+pub const IFLA_CARRIER: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER; -+pub const IFLA_PHYS_PORT_ID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PHYS_PORT_ID; -+pub const IFLA_CARRIER_CHANGES: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER_CHANGES; -+pub const IFLA_PHYS_SWITCH_ID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PHYS_SWITCH_ID; -+pub const IFLA_LINK_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_LINK_NETNSID; -+pub const IFLA_PHYS_PORT_NAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PHYS_PORT_NAME; -+pub const IFLA_PROTO_DOWN: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROTO_DOWN; -+pub const IFLA_GSO_MAX_SEGS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GSO_MAX_SEGS; -+pub const IFLA_GSO_MAX_SIZE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GSO_MAX_SIZE; -+pub const IFLA_PAD: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PAD; -+pub const IFLA_XDP: _bindgen_ty_2 = _bindgen_ty_2::IFLA_XDP; -+pub const IFLA_EVENT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_EVENT; -+pub const IFLA_NEW_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NEW_NETNSID; -+pub const IFLA_IF_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IF_NETNSID; -+pub const IFLA_TARGET_NETNSID: _bindgen_ty_2 = _bindgen_ty_2::IFLA_IF_NETNSID; -+pub const IFLA_CARRIER_UP_COUNT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER_UP_COUNT; -+pub const IFLA_CARRIER_DOWN_COUNT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_CARRIER_DOWN_COUNT; -+pub const IFLA_NEW_IFINDEX: _bindgen_ty_2 = _bindgen_ty_2::IFLA_NEW_IFINDEX; -+pub const IFLA_MIN_MTU: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MIN_MTU; -+pub const IFLA_MAX_MTU: _bindgen_ty_2 = _bindgen_ty_2::IFLA_MAX_MTU; -+pub const IFLA_PROP_LIST: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROP_LIST; -+pub const IFLA_ALT_IFNAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_ALT_IFNAME; -+pub const IFLA_PERM_ADDRESS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PERM_ADDRESS; -+pub const IFLA_PROTO_DOWN_REASON: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PROTO_DOWN_REASON; -+pub const IFLA_PARENT_DEV_NAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PARENT_DEV_NAME; -+pub const IFLA_PARENT_DEV_BUS_NAME: _bindgen_ty_2 = _bindgen_ty_2::IFLA_PARENT_DEV_BUS_NAME; -+pub const IFLA_GRO_MAX_SIZE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_GRO_MAX_SIZE; -+pub const IFLA_TSO_MAX_SIZE: _bindgen_ty_2 = _bindgen_ty_2::IFLA_TSO_MAX_SIZE; -+pub const IFLA_TSO_MAX_SEGS: _bindgen_ty_2 = _bindgen_ty_2::IFLA_TSO_MAX_SEGS; -+pub const IFLA_ALLMULTI: _bindgen_ty_2 = _bindgen_ty_2::IFLA_ALLMULTI; -+pub const IFLA_DEVLINK_PORT: _bindgen_ty_2 = _bindgen_ty_2::IFLA_DEVLINK_PORT; -+pub const __IFLA_MAX: _bindgen_ty_2 = _bindgen_ty_2::__IFLA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_2 { -+IFLA_UNSPEC = 0, -+IFLA_ADDRESS = 1, -+IFLA_BROADCAST = 2, -+IFLA_IFNAME = 3, -+IFLA_MTU = 4, -+IFLA_LINK = 5, -+IFLA_QDISC = 6, -+IFLA_STATS = 7, -+IFLA_COST = 8, -+IFLA_PRIORITY = 9, -+IFLA_MASTER = 10, -+IFLA_WIRELESS = 11, -+IFLA_PROTINFO = 12, -+IFLA_TXQLEN = 13, -+IFLA_MAP = 14, -+IFLA_WEIGHT = 15, -+IFLA_OPERSTATE = 16, -+IFLA_LINKMODE = 17, -+IFLA_LINKINFO = 18, -+IFLA_NET_NS_PID = 19, -+IFLA_IFALIAS = 20, -+IFLA_NUM_VF = 21, -+IFLA_VFINFO_LIST = 22, -+IFLA_STATS64 = 23, -+IFLA_VF_PORTS = 24, -+IFLA_PORT_SELF = 25, -+IFLA_AF_SPEC = 26, -+IFLA_GROUP = 27, -+IFLA_NET_NS_FD = 28, -+IFLA_EXT_MASK = 29, -+IFLA_PROMISCUITY = 30, -+IFLA_NUM_TX_QUEUES = 31, -+IFLA_NUM_RX_QUEUES = 32, -+IFLA_CARRIER = 33, -+IFLA_PHYS_PORT_ID = 34, -+IFLA_CARRIER_CHANGES = 35, -+IFLA_PHYS_SWITCH_ID = 36, -+IFLA_LINK_NETNSID = 37, -+IFLA_PHYS_PORT_NAME = 38, -+IFLA_PROTO_DOWN = 39, -+IFLA_GSO_MAX_SEGS = 40, -+IFLA_GSO_MAX_SIZE = 41, -+IFLA_PAD = 42, -+IFLA_XDP = 43, -+IFLA_EVENT = 44, -+IFLA_NEW_NETNSID = 45, -+IFLA_IF_NETNSID = 46, -+IFLA_CARRIER_UP_COUNT = 47, -+IFLA_CARRIER_DOWN_COUNT = 48, -+IFLA_NEW_IFINDEX = 49, -+IFLA_MIN_MTU = 50, -+IFLA_MAX_MTU = 51, -+IFLA_PROP_LIST = 52, -+IFLA_ALT_IFNAME = 53, -+IFLA_PERM_ADDRESS = 54, -+IFLA_PROTO_DOWN_REASON = 55, -+IFLA_PARENT_DEV_NAME = 56, -+IFLA_PARENT_DEV_BUS_NAME = 57, -+IFLA_GRO_MAX_SIZE = 58, -+IFLA_TSO_MAX_SIZE = 59, -+IFLA_TSO_MAX_SEGS = 60, -+IFLA_ALLMULTI = 61, -+IFLA_DEVLINK_PORT = 62, -+__IFLA_MAX = 63, -+} -+pub const IFLA_PROTO_DOWN_REASON_UNSPEC: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_UNSPEC; -+pub const IFLA_PROTO_DOWN_REASON_MASK: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_MASK; -+pub const IFLA_PROTO_DOWN_REASON_VALUE: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_VALUE; -+pub const __IFLA_PROTO_DOWN_REASON_CNT: _bindgen_ty_3 = _bindgen_ty_3::__IFLA_PROTO_DOWN_REASON_CNT; -+pub const IFLA_PROTO_DOWN_REASON_MAX: _bindgen_ty_3 = _bindgen_ty_3::IFLA_PROTO_DOWN_REASON_VALUE; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_3 { -+IFLA_PROTO_DOWN_REASON_UNSPEC = 0, -+IFLA_PROTO_DOWN_REASON_MASK = 1, -+IFLA_PROTO_DOWN_REASON_VALUE = 2, -+__IFLA_PROTO_DOWN_REASON_CNT = 3, -+} -+pub const IFLA_INET_UNSPEC: _bindgen_ty_4 = _bindgen_ty_4::IFLA_INET_UNSPEC; -+pub const IFLA_INET_CONF: _bindgen_ty_4 = _bindgen_ty_4::IFLA_INET_CONF; -+pub const __IFLA_INET_MAX: _bindgen_ty_4 = _bindgen_ty_4::__IFLA_INET_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_4 { -+IFLA_INET_UNSPEC = 0, -+IFLA_INET_CONF = 1, -+__IFLA_INET_MAX = 2, -+} -+pub const IFLA_INET6_UNSPEC: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_UNSPEC; -+pub const IFLA_INET6_FLAGS: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_FLAGS; -+pub const IFLA_INET6_CONF: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_CONF; -+pub const IFLA_INET6_STATS: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_STATS; -+pub const IFLA_INET6_MCAST: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_MCAST; -+pub const IFLA_INET6_CACHEINFO: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_CACHEINFO; -+pub const IFLA_INET6_ICMP6STATS: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_ICMP6STATS; -+pub const IFLA_INET6_TOKEN: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_TOKEN; -+pub const IFLA_INET6_ADDR_GEN_MODE: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_ADDR_GEN_MODE; -+pub const IFLA_INET6_RA_MTU: _bindgen_ty_5 = _bindgen_ty_5::IFLA_INET6_RA_MTU; -+pub const __IFLA_INET6_MAX: _bindgen_ty_5 = _bindgen_ty_5::__IFLA_INET6_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_5 { -+IFLA_INET6_UNSPEC = 0, -+IFLA_INET6_FLAGS = 1, -+IFLA_INET6_CONF = 2, -+IFLA_INET6_STATS = 3, -+IFLA_INET6_MCAST = 4, -+IFLA_INET6_CACHEINFO = 5, -+IFLA_INET6_ICMP6STATS = 6, -+IFLA_INET6_TOKEN = 7, -+IFLA_INET6_ADDR_GEN_MODE = 8, -+IFLA_INET6_RA_MTU = 9, -+__IFLA_INET6_MAX = 10, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum in6_addr_gen_mode { -+IN6_ADDR_GEN_MODE_EUI64 = 0, -+IN6_ADDR_GEN_MODE_NONE = 1, -+IN6_ADDR_GEN_MODE_STABLE_PRIVACY = 2, -+IN6_ADDR_GEN_MODE_RANDOM = 3, -+} -+pub const IFLA_BR_UNSPEC: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_UNSPEC; -+pub const IFLA_BR_FORWARD_DELAY: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_FORWARD_DELAY; -+pub const IFLA_BR_HELLO_TIME: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_HELLO_TIME; -+pub const IFLA_BR_MAX_AGE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MAX_AGE; -+pub const IFLA_BR_AGEING_TIME: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_AGEING_TIME; -+pub const IFLA_BR_STP_STATE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_STP_STATE; -+pub const IFLA_BR_PRIORITY: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_PRIORITY; -+pub const IFLA_BR_VLAN_FILTERING: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_FILTERING; -+pub const IFLA_BR_VLAN_PROTOCOL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_PROTOCOL; -+pub const IFLA_BR_GROUP_FWD_MASK: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_GROUP_FWD_MASK; -+pub const IFLA_BR_ROOT_ID: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_ROOT_ID; -+pub const IFLA_BR_BRIDGE_ID: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_BRIDGE_ID; -+pub const IFLA_BR_ROOT_PORT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_ROOT_PORT; -+pub const IFLA_BR_ROOT_PATH_COST: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_ROOT_PATH_COST; -+pub const IFLA_BR_TOPOLOGY_CHANGE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TOPOLOGY_CHANGE; -+pub const IFLA_BR_TOPOLOGY_CHANGE_DETECTED: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TOPOLOGY_CHANGE_DETECTED; -+pub const IFLA_BR_HELLO_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_HELLO_TIMER; -+pub const IFLA_BR_TCN_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TCN_TIMER; -+pub const IFLA_BR_TOPOLOGY_CHANGE_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_TOPOLOGY_CHANGE_TIMER; -+pub const IFLA_BR_GC_TIMER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_GC_TIMER; -+pub const IFLA_BR_GROUP_ADDR: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_GROUP_ADDR; -+pub const IFLA_BR_FDB_FLUSH: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_FDB_FLUSH; -+pub const IFLA_BR_MCAST_ROUTER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_ROUTER; -+pub const IFLA_BR_MCAST_SNOOPING: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_SNOOPING; -+pub const IFLA_BR_MCAST_QUERY_USE_IFADDR: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERY_USE_IFADDR; -+pub const IFLA_BR_MCAST_QUERIER: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERIER; -+pub const IFLA_BR_MCAST_HASH_ELASTICITY: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_HASH_ELASTICITY; -+pub const IFLA_BR_MCAST_HASH_MAX: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_HASH_MAX; -+pub const IFLA_BR_MCAST_LAST_MEMBER_CNT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_LAST_MEMBER_CNT; -+pub const IFLA_BR_MCAST_STARTUP_QUERY_CNT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_STARTUP_QUERY_CNT; -+pub const IFLA_BR_MCAST_LAST_MEMBER_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_LAST_MEMBER_INTVL; -+pub const IFLA_BR_MCAST_MEMBERSHIP_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_MEMBERSHIP_INTVL; -+pub const IFLA_BR_MCAST_QUERIER_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERIER_INTVL; -+pub const IFLA_BR_MCAST_QUERY_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERY_INTVL; -+pub const IFLA_BR_MCAST_QUERY_RESPONSE_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERY_RESPONSE_INTVL; -+pub const IFLA_BR_MCAST_STARTUP_QUERY_INTVL: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_STARTUP_QUERY_INTVL; -+pub const IFLA_BR_NF_CALL_IPTABLES: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_NF_CALL_IPTABLES; -+pub const IFLA_BR_NF_CALL_IP6TABLES: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_NF_CALL_IP6TABLES; -+pub const IFLA_BR_NF_CALL_ARPTABLES: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_NF_CALL_ARPTABLES; -+pub const IFLA_BR_VLAN_DEFAULT_PVID: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_DEFAULT_PVID; -+pub const IFLA_BR_PAD: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_PAD; -+pub const IFLA_BR_VLAN_STATS_ENABLED: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_STATS_ENABLED; -+pub const IFLA_BR_MCAST_STATS_ENABLED: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_STATS_ENABLED; -+pub const IFLA_BR_MCAST_IGMP_VERSION: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_IGMP_VERSION; -+pub const IFLA_BR_MCAST_MLD_VERSION: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_MLD_VERSION; -+pub const IFLA_BR_VLAN_STATS_PER_PORT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_VLAN_STATS_PER_PORT; -+pub const IFLA_BR_MULTI_BOOLOPT: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MULTI_BOOLOPT; -+pub const IFLA_BR_MCAST_QUERIER_STATE: _bindgen_ty_6 = _bindgen_ty_6::IFLA_BR_MCAST_QUERIER_STATE; -+pub const __IFLA_BR_MAX: _bindgen_ty_6 = _bindgen_ty_6::__IFLA_BR_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_6 { -+IFLA_BR_UNSPEC = 0, -+IFLA_BR_FORWARD_DELAY = 1, -+IFLA_BR_HELLO_TIME = 2, -+IFLA_BR_MAX_AGE = 3, -+IFLA_BR_AGEING_TIME = 4, -+IFLA_BR_STP_STATE = 5, -+IFLA_BR_PRIORITY = 6, -+IFLA_BR_VLAN_FILTERING = 7, -+IFLA_BR_VLAN_PROTOCOL = 8, -+IFLA_BR_GROUP_FWD_MASK = 9, -+IFLA_BR_ROOT_ID = 10, -+IFLA_BR_BRIDGE_ID = 11, -+IFLA_BR_ROOT_PORT = 12, -+IFLA_BR_ROOT_PATH_COST = 13, -+IFLA_BR_TOPOLOGY_CHANGE = 14, -+IFLA_BR_TOPOLOGY_CHANGE_DETECTED = 15, -+IFLA_BR_HELLO_TIMER = 16, -+IFLA_BR_TCN_TIMER = 17, -+IFLA_BR_TOPOLOGY_CHANGE_TIMER = 18, -+IFLA_BR_GC_TIMER = 19, -+IFLA_BR_GROUP_ADDR = 20, -+IFLA_BR_FDB_FLUSH = 21, -+IFLA_BR_MCAST_ROUTER = 22, -+IFLA_BR_MCAST_SNOOPING = 23, -+IFLA_BR_MCAST_QUERY_USE_IFADDR = 24, -+IFLA_BR_MCAST_QUERIER = 25, -+IFLA_BR_MCAST_HASH_ELASTICITY = 26, -+IFLA_BR_MCAST_HASH_MAX = 27, -+IFLA_BR_MCAST_LAST_MEMBER_CNT = 28, -+IFLA_BR_MCAST_STARTUP_QUERY_CNT = 29, -+IFLA_BR_MCAST_LAST_MEMBER_INTVL = 30, -+IFLA_BR_MCAST_MEMBERSHIP_INTVL = 31, -+IFLA_BR_MCAST_QUERIER_INTVL = 32, -+IFLA_BR_MCAST_QUERY_INTVL = 33, -+IFLA_BR_MCAST_QUERY_RESPONSE_INTVL = 34, -+IFLA_BR_MCAST_STARTUP_QUERY_INTVL = 35, -+IFLA_BR_NF_CALL_IPTABLES = 36, -+IFLA_BR_NF_CALL_IP6TABLES = 37, -+IFLA_BR_NF_CALL_ARPTABLES = 38, -+IFLA_BR_VLAN_DEFAULT_PVID = 39, -+IFLA_BR_PAD = 40, -+IFLA_BR_VLAN_STATS_ENABLED = 41, -+IFLA_BR_MCAST_STATS_ENABLED = 42, -+IFLA_BR_MCAST_IGMP_VERSION = 43, -+IFLA_BR_MCAST_MLD_VERSION = 44, -+IFLA_BR_VLAN_STATS_PER_PORT = 45, -+IFLA_BR_MULTI_BOOLOPT = 46, -+IFLA_BR_MCAST_QUERIER_STATE = 47, -+__IFLA_BR_MAX = 48, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_bridge_id { -+pub prio: [__u8; 2usize], -+pub addr: [__u8; 6usize], -+} -+pub const BRIDGE_MODE_UNSPEC: _bindgen_ty_7 = _bindgen_ty_7::BRIDGE_MODE_UNSPEC; -+pub const BRIDGE_MODE_HAIRPIN: _bindgen_ty_7 = _bindgen_ty_7::BRIDGE_MODE_HAIRPIN; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_7 { -+BRIDGE_MODE_UNSPEC = 0, -+BRIDGE_MODE_HAIRPIN = 1, -+} -+pub const IFLA_BRPORT_UNSPEC: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_UNSPEC; -+pub const IFLA_BRPORT_STATE: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_STATE; -+pub const IFLA_BRPORT_PRIORITY: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PRIORITY; -+pub const IFLA_BRPORT_COST: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_COST; -+pub const IFLA_BRPORT_MODE: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MODE; -+pub const IFLA_BRPORT_GUARD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_GUARD; -+pub const IFLA_BRPORT_PROTECT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PROTECT; -+pub const IFLA_BRPORT_FAST_LEAVE: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_FAST_LEAVE; -+pub const IFLA_BRPORT_LEARNING: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_LEARNING; -+pub const IFLA_BRPORT_UNICAST_FLOOD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_UNICAST_FLOOD; -+pub const IFLA_BRPORT_PROXYARP: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PROXYARP; -+pub const IFLA_BRPORT_LEARNING_SYNC: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_LEARNING_SYNC; -+pub const IFLA_BRPORT_PROXYARP_WIFI: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PROXYARP_WIFI; -+pub const IFLA_BRPORT_ROOT_ID: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_ROOT_ID; -+pub const IFLA_BRPORT_BRIDGE_ID: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_BRIDGE_ID; -+pub const IFLA_BRPORT_DESIGNATED_PORT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_DESIGNATED_PORT; -+pub const IFLA_BRPORT_DESIGNATED_COST: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_DESIGNATED_COST; -+pub const IFLA_BRPORT_ID: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_ID; -+pub const IFLA_BRPORT_NO: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_NO; -+pub const IFLA_BRPORT_TOPOLOGY_CHANGE_ACK: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_TOPOLOGY_CHANGE_ACK; -+pub const IFLA_BRPORT_CONFIG_PENDING: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_CONFIG_PENDING; -+pub const IFLA_BRPORT_MESSAGE_AGE_TIMER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MESSAGE_AGE_TIMER; -+pub const IFLA_BRPORT_FORWARD_DELAY_TIMER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_FORWARD_DELAY_TIMER; -+pub const IFLA_BRPORT_HOLD_TIMER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_HOLD_TIMER; -+pub const IFLA_BRPORT_FLUSH: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_FLUSH; -+pub const IFLA_BRPORT_MULTICAST_ROUTER: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MULTICAST_ROUTER; -+pub const IFLA_BRPORT_PAD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_PAD; -+pub const IFLA_BRPORT_MCAST_FLOOD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_FLOOD; -+pub const IFLA_BRPORT_MCAST_TO_UCAST: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_TO_UCAST; -+pub const IFLA_BRPORT_VLAN_TUNNEL: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_VLAN_TUNNEL; -+pub const IFLA_BRPORT_BCAST_FLOOD: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_BCAST_FLOOD; -+pub const IFLA_BRPORT_GROUP_FWD_MASK: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_GROUP_FWD_MASK; -+pub const IFLA_BRPORT_NEIGH_SUPPRESS: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_NEIGH_SUPPRESS; -+pub const IFLA_BRPORT_ISOLATED: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_ISOLATED; -+pub const IFLA_BRPORT_BACKUP_PORT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_BACKUP_PORT; -+pub const IFLA_BRPORT_MRP_RING_OPEN: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MRP_RING_OPEN; -+pub const IFLA_BRPORT_MRP_IN_OPEN: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MRP_IN_OPEN; -+pub const IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT; -+pub const IFLA_BRPORT_MCAST_EHT_HOSTS_CNT: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MCAST_EHT_HOSTS_CNT; -+pub const IFLA_BRPORT_LOCKED: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_LOCKED; -+pub const IFLA_BRPORT_MAB: _bindgen_ty_8 = _bindgen_ty_8::IFLA_BRPORT_MAB; -+pub const __IFLA_BRPORT_MAX: _bindgen_ty_8 = _bindgen_ty_8::__IFLA_BRPORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_8 { -+IFLA_BRPORT_UNSPEC = 0, -+IFLA_BRPORT_STATE = 1, -+IFLA_BRPORT_PRIORITY = 2, -+IFLA_BRPORT_COST = 3, -+IFLA_BRPORT_MODE = 4, -+IFLA_BRPORT_GUARD = 5, -+IFLA_BRPORT_PROTECT = 6, -+IFLA_BRPORT_FAST_LEAVE = 7, -+IFLA_BRPORT_LEARNING = 8, -+IFLA_BRPORT_UNICAST_FLOOD = 9, -+IFLA_BRPORT_PROXYARP = 10, -+IFLA_BRPORT_LEARNING_SYNC = 11, -+IFLA_BRPORT_PROXYARP_WIFI = 12, -+IFLA_BRPORT_ROOT_ID = 13, -+IFLA_BRPORT_BRIDGE_ID = 14, -+IFLA_BRPORT_DESIGNATED_PORT = 15, -+IFLA_BRPORT_DESIGNATED_COST = 16, -+IFLA_BRPORT_ID = 17, -+IFLA_BRPORT_NO = 18, -+IFLA_BRPORT_TOPOLOGY_CHANGE_ACK = 19, -+IFLA_BRPORT_CONFIG_PENDING = 20, -+IFLA_BRPORT_MESSAGE_AGE_TIMER = 21, -+IFLA_BRPORT_FORWARD_DELAY_TIMER = 22, -+IFLA_BRPORT_HOLD_TIMER = 23, -+IFLA_BRPORT_FLUSH = 24, -+IFLA_BRPORT_MULTICAST_ROUTER = 25, -+IFLA_BRPORT_PAD = 26, -+IFLA_BRPORT_MCAST_FLOOD = 27, -+IFLA_BRPORT_MCAST_TO_UCAST = 28, -+IFLA_BRPORT_VLAN_TUNNEL = 29, -+IFLA_BRPORT_BCAST_FLOOD = 30, -+IFLA_BRPORT_GROUP_FWD_MASK = 31, -+IFLA_BRPORT_NEIGH_SUPPRESS = 32, -+IFLA_BRPORT_ISOLATED = 33, -+IFLA_BRPORT_BACKUP_PORT = 34, -+IFLA_BRPORT_MRP_RING_OPEN = 35, -+IFLA_BRPORT_MRP_IN_OPEN = 36, -+IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT = 37, -+IFLA_BRPORT_MCAST_EHT_HOSTS_CNT = 38, -+IFLA_BRPORT_LOCKED = 39, -+IFLA_BRPORT_MAB = 40, -+__IFLA_BRPORT_MAX = 41, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_cacheinfo { -+pub max_reasm_len: __u32, -+pub tstamp: __u32, -+pub reachable_time: __u32, -+pub retrans_time: __u32, -+} -+pub const IFLA_INFO_UNSPEC: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_UNSPEC; -+pub const IFLA_INFO_KIND: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_KIND; -+pub const IFLA_INFO_DATA: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_DATA; -+pub const IFLA_INFO_XSTATS: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_XSTATS; -+pub const IFLA_INFO_SLAVE_KIND: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_SLAVE_KIND; -+pub const IFLA_INFO_SLAVE_DATA: _bindgen_ty_9 = _bindgen_ty_9::IFLA_INFO_SLAVE_DATA; -+pub const __IFLA_INFO_MAX: _bindgen_ty_9 = _bindgen_ty_9::__IFLA_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_9 { -+IFLA_INFO_UNSPEC = 0, -+IFLA_INFO_KIND = 1, -+IFLA_INFO_DATA = 2, -+IFLA_INFO_XSTATS = 3, -+IFLA_INFO_SLAVE_KIND = 4, -+IFLA_INFO_SLAVE_DATA = 5, -+__IFLA_INFO_MAX = 6, -+} -+pub const IFLA_VLAN_UNSPEC: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_UNSPEC; -+pub const IFLA_VLAN_ID: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_ID; -+pub const IFLA_VLAN_FLAGS: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_FLAGS; -+pub const IFLA_VLAN_EGRESS_QOS: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_EGRESS_QOS; -+pub const IFLA_VLAN_INGRESS_QOS: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_INGRESS_QOS; -+pub const IFLA_VLAN_PROTOCOL: _bindgen_ty_10 = _bindgen_ty_10::IFLA_VLAN_PROTOCOL; -+pub const __IFLA_VLAN_MAX: _bindgen_ty_10 = _bindgen_ty_10::__IFLA_VLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_10 { -+IFLA_VLAN_UNSPEC = 0, -+IFLA_VLAN_ID = 1, -+IFLA_VLAN_FLAGS = 2, -+IFLA_VLAN_EGRESS_QOS = 3, -+IFLA_VLAN_INGRESS_QOS = 4, -+IFLA_VLAN_PROTOCOL = 5, -+__IFLA_VLAN_MAX = 6, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vlan_flags { -+pub flags: __u32, -+pub mask: __u32, -+} -+pub const IFLA_VLAN_QOS_UNSPEC: _bindgen_ty_11 = _bindgen_ty_11::IFLA_VLAN_QOS_UNSPEC; -+pub const IFLA_VLAN_QOS_MAPPING: _bindgen_ty_11 = _bindgen_ty_11::IFLA_VLAN_QOS_MAPPING; -+pub const __IFLA_VLAN_QOS_MAX: _bindgen_ty_11 = _bindgen_ty_11::__IFLA_VLAN_QOS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_11 { -+IFLA_VLAN_QOS_UNSPEC = 0, -+IFLA_VLAN_QOS_MAPPING = 1, -+__IFLA_VLAN_QOS_MAX = 2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vlan_qos_mapping { -+pub from: __u32, -+pub to: __u32, -+} -+pub const IFLA_MACVLAN_UNSPEC: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_UNSPEC; -+pub const IFLA_MACVLAN_MODE: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MODE; -+pub const IFLA_MACVLAN_FLAGS: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_FLAGS; -+pub const IFLA_MACVLAN_MACADDR_MODE: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR_MODE; -+pub const IFLA_MACVLAN_MACADDR: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR; -+pub const IFLA_MACVLAN_MACADDR_DATA: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR_DATA; -+pub const IFLA_MACVLAN_MACADDR_COUNT: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_MACADDR_COUNT; -+pub const IFLA_MACVLAN_BC_QUEUE_LEN: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_BC_QUEUE_LEN; -+pub const IFLA_MACVLAN_BC_QUEUE_LEN_USED: _bindgen_ty_12 = _bindgen_ty_12::IFLA_MACVLAN_BC_QUEUE_LEN_USED; -+pub const __IFLA_MACVLAN_MAX: _bindgen_ty_12 = _bindgen_ty_12::__IFLA_MACVLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_12 { -+IFLA_MACVLAN_UNSPEC = 0, -+IFLA_MACVLAN_MODE = 1, -+IFLA_MACVLAN_FLAGS = 2, -+IFLA_MACVLAN_MACADDR_MODE = 3, -+IFLA_MACVLAN_MACADDR = 4, -+IFLA_MACVLAN_MACADDR_DATA = 5, -+IFLA_MACVLAN_MACADDR_COUNT = 6, -+IFLA_MACVLAN_BC_QUEUE_LEN = 7, -+IFLA_MACVLAN_BC_QUEUE_LEN_USED = 8, -+__IFLA_MACVLAN_MAX = 9, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macvlan_mode { -+MACVLAN_MODE_PRIVATE = 1, -+MACVLAN_MODE_VEPA = 2, -+MACVLAN_MODE_BRIDGE = 4, -+MACVLAN_MODE_PASSTHRU = 8, -+MACVLAN_MODE_SOURCE = 16, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macvlan_macaddr_mode { -+MACVLAN_MACADDR_ADD = 0, -+MACVLAN_MACADDR_DEL = 1, -+MACVLAN_MACADDR_FLUSH = 2, -+MACVLAN_MACADDR_SET = 3, -+} -+pub const IFLA_VRF_UNSPEC: _bindgen_ty_13 = _bindgen_ty_13::IFLA_VRF_UNSPEC; -+pub const IFLA_VRF_TABLE: _bindgen_ty_13 = _bindgen_ty_13::IFLA_VRF_TABLE; -+pub const __IFLA_VRF_MAX: _bindgen_ty_13 = _bindgen_ty_13::__IFLA_VRF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_13 { -+IFLA_VRF_UNSPEC = 0, -+IFLA_VRF_TABLE = 1, -+__IFLA_VRF_MAX = 2, -+} -+pub const IFLA_VRF_PORT_UNSPEC: _bindgen_ty_14 = _bindgen_ty_14::IFLA_VRF_PORT_UNSPEC; -+pub const IFLA_VRF_PORT_TABLE: _bindgen_ty_14 = _bindgen_ty_14::IFLA_VRF_PORT_TABLE; -+pub const __IFLA_VRF_PORT_MAX: _bindgen_ty_14 = _bindgen_ty_14::__IFLA_VRF_PORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_14 { -+IFLA_VRF_PORT_UNSPEC = 0, -+IFLA_VRF_PORT_TABLE = 1, -+__IFLA_VRF_PORT_MAX = 2, -+} -+pub const IFLA_MACSEC_UNSPEC: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_UNSPEC; -+pub const IFLA_MACSEC_SCI: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_SCI; -+pub const IFLA_MACSEC_PORT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_PORT; -+pub const IFLA_MACSEC_ICV_LEN: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ICV_LEN; -+pub const IFLA_MACSEC_CIPHER_SUITE: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_CIPHER_SUITE; -+pub const IFLA_MACSEC_WINDOW: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_WINDOW; -+pub const IFLA_MACSEC_ENCODING_SA: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ENCODING_SA; -+pub const IFLA_MACSEC_ENCRYPT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ENCRYPT; -+pub const IFLA_MACSEC_PROTECT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_PROTECT; -+pub const IFLA_MACSEC_INC_SCI: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_INC_SCI; -+pub const IFLA_MACSEC_ES: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_ES; -+pub const IFLA_MACSEC_SCB: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_SCB; -+pub const IFLA_MACSEC_REPLAY_PROTECT: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_REPLAY_PROTECT; -+pub const IFLA_MACSEC_VALIDATION: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_VALIDATION; -+pub const IFLA_MACSEC_PAD: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_PAD; -+pub const IFLA_MACSEC_OFFLOAD: _bindgen_ty_15 = _bindgen_ty_15::IFLA_MACSEC_OFFLOAD; -+pub const __IFLA_MACSEC_MAX: _bindgen_ty_15 = _bindgen_ty_15::__IFLA_MACSEC_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_15 { -+IFLA_MACSEC_UNSPEC = 0, -+IFLA_MACSEC_SCI = 1, -+IFLA_MACSEC_PORT = 2, -+IFLA_MACSEC_ICV_LEN = 3, -+IFLA_MACSEC_CIPHER_SUITE = 4, -+IFLA_MACSEC_WINDOW = 5, -+IFLA_MACSEC_ENCODING_SA = 6, -+IFLA_MACSEC_ENCRYPT = 7, -+IFLA_MACSEC_PROTECT = 8, -+IFLA_MACSEC_INC_SCI = 9, -+IFLA_MACSEC_ES = 10, -+IFLA_MACSEC_SCB = 11, -+IFLA_MACSEC_REPLAY_PROTECT = 12, -+IFLA_MACSEC_VALIDATION = 13, -+IFLA_MACSEC_PAD = 14, -+IFLA_MACSEC_OFFLOAD = 15, -+__IFLA_MACSEC_MAX = 16, -+} -+pub const IFLA_XFRM_UNSPEC: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_UNSPEC; -+pub const IFLA_XFRM_LINK: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_LINK; -+pub const IFLA_XFRM_IF_ID: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_IF_ID; -+pub const IFLA_XFRM_COLLECT_METADATA: _bindgen_ty_16 = _bindgen_ty_16::IFLA_XFRM_COLLECT_METADATA; -+pub const __IFLA_XFRM_MAX: _bindgen_ty_16 = _bindgen_ty_16::__IFLA_XFRM_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_16 { -+IFLA_XFRM_UNSPEC = 0, -+IFLA_XFRM_LINK = 1, -+IFLA_XFRM_IF_ID = 2, -+IFLA_XFRM_COLLECT_METADATA = 3, -+__IFLA_XFRM_MAX = 4, -+} -+impl macsec_validation_type { -+pub const MACSEC_VALIDATE_MAX: macsec_validation_type = macsec_validation_type::MACSEC_VALIDATE_STRICT; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macsec_validation_type { -+MACSEC_VALIDATE_DISABLED = 0, -+MACSEC_VALIDATE_CHECK = 1, -+MACSEC_VALIDATE_STRICT = 2, -+__MACSEC_VALIDATE_END = 3, -+} -+impl macsec_offload { -+pub const MACSEC_OFFLOAD_MAX: macsec_offload = macsec_offload::MACSEC_OFFLOAD_MAC; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum macsec_offload { -+MACSEC_OFFLOAD_OFF = 0, -+MACSEC_OFFLOAD_PHY = 1, -+MACSEC_OFFLOAD_MAC = 2, -+__MACSEC_OFFLOAD_END = 3, -+} -+pub const IFLA_IPVLAN_UNSPEC: _bindgen_ty_17 = _bindgen_ty_17::IFLA_IPVLAN_UNSPEC; -+pub const IFLA_IPVLAN_MODE: _bindgen_ty_17 = _bindgen_ty_17::IFLA_IPVLAN_MODE; -+pub const IFLA_IPVLAN_FLAGS: _bindgen_ty_17 = _bindgen_ty_17::IFLA_IPVLAN_FLAGS; -+pub const __IFLA_IPVLAN_MAX: _bindgen_ty_17 = _bindgen_ty_17::__IFLA_IPVLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_17 { -+IFLA_IPVLAN_UNSPEC = 0, -+IFLA_IPVLAN_MODE = 1, -+IFLA_IPVLAN_FLAGS = 2, -+__IFLA_IPVLAN_MAX = 3, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ipvlan_mode { -+IPVLAN_MODE_L2 = 0, -+IPVLAN_MODE_L3 = 1, -+IPVLAN_MODE_L3S = 2, -+IPVLAN_MODE_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tunnel_msg { -+pub family: __u8, -+pub flags: __u8, -+pub reserved2: __u16, -+pub ifindex: __u32, -+} -+pub const VNIFILTER_ENTRY_STATS_UNSPEC: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_UNSPEC; -+pub const VNIFILTER_ENTRY_STATS_RX_BYTES: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_BYTES; -+pub const VNIFILTER_ENTRY_STATS_RX_PKTS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_PKTS; -+pub const VNIFILTER_ENTRY_STATS_RX_DROPS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_DROPS; -+pub const VNIFILTER_ENTRY_STATS_RX_ERRORS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_RX_ERRORS; -+pub const VNIFILTER_ENTRY_STATS_TX_BYTES: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_BYTES; -+pub const VNIFILTER_ENTRY_STATS_TX_PKTS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_PKTS; -+pub const VNIFILTER_ENTRY_STATS_TX_DROPS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_DROPS; -+pub const VNIFILTER_ENTRY_STATS_TX_ERRORS: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_TX_ERRORS; -+pub const VNIFILTER_ENTRY_STATS_PAD: _bindgen_ty_18 = _bindgen_ty_18::VNIFILTER_ENTRY_STATS_PAD; -+pub const __VNIFILTER_ENTRY_STATS_MAX: _bindgen_ty_18 = _bindgen_ty_18::__VNIFILTER_ENTRY_STATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_18 { -+VNIFILTER_ENTRY_STATS_UNSPEC = 0, -+VNIFILTER_ENTRY_STATS_RX_BYTES = 1, -+VNIFILTER_ENTRY_STATS_RX_PKTS = 2, -+VNIFILTER_ENTRY_STATS_RX_DROPS = 3, -+VNIFILTER_ENTRY_STATS_RX_ERRORS = 4, -+VNIFILTER_ENTRY_STATS_TX_BYTES = 5, -+VNIFILTER_ENTRY_STATS_TX_PKTS = 6, -+VNIFILTER_ENTRY_STATS_TX_DROPS = 7, -+VNIFILTER_ENTRY_STATS_TX_ERRORS = 8, -+VNIFILTER_ENTRY_STATS_PAD = 9, -+__VNIFILTER_ENTRY_STATS_MAX = 10, -+} -+pub const VXLAN_VNIFILTER_ENTRY_UNSPEC: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_UNSPEC; -+pub const VXLAN_VNIFILTER_ENTRY_START: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_START; -+pub const VXLAN_VNIFILTER_ENTRY_END: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_END; -+pub const VXLAN_VNIFILTER_ENTRY_GROUP: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_GROUP; -+pub const VXLAN_VNIFILTER_ENTRY_GROUP6: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_GROUP6; -+pub const VXLAN_VNIFILTER_ENTRY_STATS: _bindgen_ty_19 = _bindgen_ty_19::VXLAN_VNIFILTER_ENTRY_STATS; -+pub const __VXLAN_VNIFILTER_ENTRY_MAX: _bindgen_ty_19 = _bindgen_ty_19::__VXLAN_VNIFILTER_ENTRY_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_19 { -+VXLAN_VNIFILTER_ENTRY_UNSPEC = 0, -+VXLAN_VNIFILTER_ENTRY_START = 1, -+VXLAN_VNIFILTER_ENTRY_END = 2, -+VXLAN_VNIFILTER_ENTRY_GROUP = 3, -+VXLAN_VNIFILTER_ENTRY_GROUP6 = 4, -+VXLAN_VNIFILTER_ENTRY_STATS = 5, -+__VXLAN_VNIFILTER_ENTRY_MAX = 6, -+} -+pub const VXLAN_VNIFILTER_UNSPEC: _bindgen_ty_20 = _bindgen_ty_20::VXLAN_VNIFILTER_UNSPEC; -+pub const VXLAN_VNIFILTER_ENTRY: _bindgen_ty_20 = _bindgen_ty_20::VXLAN_VNIFILTER_ENTRY; -+pub const __VXLAN_VNIFILTER_MAX: _bindgen_ty_20 = _bindgen_ty_20::__VXLAN_VNIFILTER_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_20 { -+VXLAN_VNIFILTER_UNSPEC = 0, -+VXLAN_VNIFILTER_ENTRY = 1, -+__VXLAN_VNIFILTER_MAX = 2, -+} -+pub const IFLA_VXLAN_UNSPEC: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UNSPEC; -+pub const IFLA_VXLAN_ID: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_ID; -+pub const IFLA_VXLAN_GROUP: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GROUP; -+pub const IFLA_VXLAN_LINK: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LINK; -+pub const IFLA_VXLAN_LOCAL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LOCAL; -+pub const IFLA_VXLAN_TTL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_TTL; -+pub const IFLA_VXLAN_TOS: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_TOS; -+pub const IFLA_VXLAN_LEARNING: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LEARNING; -+pub const IFLA_VXLAN_AGEING: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_AGEING; -+pub const IFLA_VXLAN_LIMIT: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LIMIT; -+pub const IFLA_VXLAN_PORT_RANGE: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_PORT_RANGE; -+pub const IFLA_VXLAN_PROXY: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_PROXY; -+pub const IFLA_VXLAN_RSC: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_RSC; -+pub const IFLA_VXLAN_L2MISS: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_L2MISS; -+pub const IFLA_VXLAN_L3MISS: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_L3MISS; -+pub const IFLA_VXLAN_PORT: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_PORT; -+pub const IFLA_VXLAN_GROUP6: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GROUP6; -+pub const IFLA_VXLAN_LOCAL6: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LOCAL6; -+pub const IFLA_VXLAN_UDP_CSUM: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UDP_CSUM; -+pub const IFLA_VXLAN_UDP_ZERO_CSUM6_TX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UDP_ZERO_CSUM6_TX; -+pub const IFLA_VXLAN_UDP_ZERO_CSUM6_RX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_UDP_ZERO_CSUM6_RX; -+pub const IFLA_VXLAN_REMCSUM_TX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_REMCSUM_TX; -+pub const IFLA_VXLAN_REMCSUM_RX: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_REMCSUM_RX; -+pub const IFLA_VXLAN_GBP: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GBP; -+pub const IFLA_VXLAN_REMCSUM_NOPARTIAL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_REMCSUM_NOPARTIAL; -+pub const IFLA_VXLAN_COLLECT_METADATA: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_COLLECT_METADATA; -+pub const IFLA_VXLAN_LABEL: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_LABEL; -+pub const IFLA_VXLAN_GPE: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_GPE; -+pub const IFLA_VXLAN_TTL_INHERIT: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_TTL_INHERIT; -+pub const IFLA_VXLAN_DF: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_DF; -+pub const IFLA_VXLAN_VNIFILTER: _bindgen_ty_21 = _bindgen_ty_21::IFLA_VXLAN_VNIFILTER; -+pub const __IFLA_VXLAN_MAX: _bindgen_ty_21 = _bindgen_ty_21::__IFLA_VXLAN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_21 { -+IFLA_VXLAN_UNSPEC = 0, -+IFLA_VXLAN_ID = 1, -+IFLA_VXLAN_GROUP = 2, -+IFLA_VXLAN_LINK = 3, -+IFLA_VXLAN_LOCAL = 4, -+IFLA_VXLAN_TTL = 5, -+IFLA_VXLAN_TOS = 6, -+IFLA_VXLAN_LEARNING = 7, -+IFLA_VXLAN_AGEING = 8, -+IFLA_VXLAN_LIMIT = 9, -+IFLA_VXLAN_PORT_RANGE = 10, -+IFLA_VXLAN_PROXY = 11, -+IFLA_VXLAN_RSC = 12, -+IFLA_VXLAN_L2MISS = 13, -+IFLA_VXLAN_L3MISS = 14, -+IFLA_VXLAN_PORT = 15, -+IFLA_VXLAN_GROUP6 = 16, -+IFLA_VXLAN_LOCAL6 = 17, -+IFLA_VXLAN_UDP_CSUM = 18, -+IFLA_VXLAN_UDP_ZERO_CSUM6_TX = 19, -+IFLA_VXLAN_UDP_ZERO_CSUM6_RX = 20, -+IFLA_VXLAN_REMCSUM_TX = 21, -+IFLA_VXLAN_REMCSUM_RX = 22, -+IFLA_VXLAN_GBP = 23, -+IFLA_VXLAN_REMCSUM_NOPARTIAL = 24, -+IFLA_VXLAN_COLLECT_METADATA = 25, -+IFLA_VXLAN_LABEL = 26, -+IFLA_VXLAN_GPE = 27, -+IFLA_VXLAN_TTL_INHERIT = 28, -+IFLA_VXLAN_DF = 29, -+IFLA_VXLAN_VNIFILTER = 30, -+__IFLA_VXLAN_MAX = 31, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vxlan_port_range { -+pub low: __be16, -+pub high: __be16, -+} -+impl ifla_vxlan_df { -+pub const VXLAN_DF_MAX: ifla_vxlan_df = ifla_vxlan_df::VXLAN_DF_INHERIT; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ifla_vxlan_df { -+VXLAN_DF_UNSET = 0, -+VXLAN_DF_SET = 1, -+VXLAN_DF_INHERIT = 2, -+__VXLAN_DF_END = 3, -+} -+pub const IFLA_GENEVE_UNSPEC: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UNSPEC; -+pub const IFLA_GENEVE_ID: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_ID; -+pub const IFLA_GENEVE_REMOTE: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_REMOTE; -+pub const IFLA_GENEVE_TTL: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_TTL; -+pub const IFLA_GENEVE_TOS: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_TOS; -+pub const IFLA_GENEVE_PORT: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_PORT; -+pub const IFLA_GENEVE_COLLECT_METADATA: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_COLLECT_METADATA; -+pub const IFLA_GENEVE_REMOTE6: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_REMOTE6; -+pub const IFLA_GENEVE_UDP_CSUM: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UDP_CSUM; -+pub const IFLA_GENEVE_UDP_ZERO_CSUM6_TX: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UDP_ZERO_CSUM6_TX; -+pub const IFLA_GENEVE_UDP_ZERO_CSUM6_RX: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_UDP_ZERO_CSUM6_RX; -+pub const IFLA_GENEVE_LABEL: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_LABEL; -+pub const IFLA_GENEVE_TTL_INHERIT: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_TTL_INHERIT; -+pub const IFLA_GENEVE_DF: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_DF; -+pub const IFLA_GENEVE_INNER_PROTO_INHERIT: _bindgen_ty_22 = _bindgen_ty_22::IFLA_GENEVE_INNER_PROTO_INHERIT; -+pub const __IFLA_GENEVE_MAX: _bindgen_ty_22 = _bindgen_ty_22::__IFLA_GENEVE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_22 { -+IFLA_GENEVE_UNSPEC = 0, -+IFLA_GENEVE_ID = 1, -+IFLA_GENEVE_REMOTE = 2, -+IFLA_GENEVE_TTL = 3, -+IFLA_GENEVE_TOS = 4, -+IFLA_GENEVE_PORT = 5, -+IFLA_GENEVE_COLLECT_METADATA = 6, -+IFLA_GENEVE_REMOTE6 = 7, -+IFLA_GENEVE_UDP_CSUM = 8, -+IFLA_GENEVE_UDP_ZERO_CSUM6_TX = 9, -+IFLA_GENEVE_UDP_ZERO_CSUM6_RX = 10, -+IFLA_GENEVE_LABEL = 11, -+IFLA_GENEVE_TTL_INHERIT = 12, -+IFLA_GENEVE_DF = 13, -+IFLA_GENEVE_INNER_PROTO_INHERIT = 14, -+__IFLA_GENEVE_MAX = 15, -+} -+impl ifla_geneve_df { -+pub const GENEVE_DF_MAX: ifla_geneve_df = ifla_geneve_df::GENEVE_DF_INHERIT; -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ifla_geneve_df { -+GENEVE_DF_UNSET = 0, -+GENEVE_DF_SET = 1, -+GENEVE_DF_INHERIT = 2, -+__GENEVE_DF_END = 3, -+} -+pub const IFLA_BAREUDP_UNSPEC: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_UNSPEC; -+pub const IFLA_BAREUDP_PORT: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_PORT; -+pub const IFLA_BAREUDP_ETHERTYPE: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_ETHERTYPE; -+pub const IFLA_BAREUDP_SRCPORT_MIN: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_SRCPORT_MIN; -+pub const IFLA_BAREUDP_MULTIPROTO_MODE: _bindgen_ty_23 = _bindgen_ty_23::IFLA_BAREUDP_MULTIPROTO_MODE; -+pub const __IFLA_BAREUDP_MAX: _bindgen_ty_23 = _bindgen_ty_23::__IFLA_BAREUDP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_23 { -+IFLA_BAREUDP_UNSPEC = 0, -+IFLA_BAREUDP_PORT = 1, -+IFLA_BAREUDP_ETHERTYPE = 2, -+IFLA_BAREUDP_SRCPORT_MIN = 3, -+IFLA_BAREUDP_MULTIPROTO_MODE = 4, -+__IFLA_BAREUDP_MAX = 5, -+} -+pub const IFLA_PPP_UNSPEC: _bindgen_ty_24 = _bindgen_ty_24::IFLA_PPP_UNSPEC; -+pub const IFLA_PPP_DEV_FD: _bindgen_ty_24 = _bindgen_ty_24::IFLA_PPP_DEV_FD; -+pub const __IFLA_PPP_MAX: _bindgen_ty_24 = _bindgen_ty_24::__IFLA_PPP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_24 { -+IFLA_PPP_UNSPEC = 0, -+IFLA_PPP_DEV_FD = 1, -+__IFLA_PPP_MAX = 2, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum ifla_gtp_role { -+GTP_ROLE_GGSN = 0, -+GTP_ROLE_SGSN = 1, -+} -+pub const IFLA_GTP_UNSPEC: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_UNSPEC; -+pub const IFLA_GTP_FD0: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_FD0; -+pub const IFLA_GTP_FD1: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_FD1; -+pub const IFLA_GTP_PDP_HASHSIZE: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_PDP_HASHSIZE; -+pub const IFLA_GTP_ROLE: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_ROLE; -+pub const IFLA_GTP_CREATE_SOCKETS: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_CREATE_SOCKETS; -+pub const IFLA_GTP_RESTART_COUNT: _bindgen_ty_25 = _bindgen_ty_25::IFLA_GTP_RESTART_COUNT; -+pub const __IFLA_GTP_MAX: _bindgen_ty_25 = _bindgen_ty_25::__IFLA_GTP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_25 { -+IFLA_GTP_UNSPEC = 0, -+IFLA_GTP_FD0 = 1, -+IFLA_GTP_FD1 = 2, -+IFLA_GTP_PDP_HASHSIZE = 3, -+IFLA_GTP_ROLE = 4, -+IFLA_GTP_CREATE_SOCKETS = 5, -+IFLA_GTP_RESTART_COUNT = 6, -+__IFLA_GTP_MAX = 7, -+} -+pub const IFLA_BOND_UNSPEC: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_UNSPEC; -+pub const IFLA_BOND_MODE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MODE; -+pub const IFLA_BOND_ACTIVE_SLAVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ACTIVE_SLAVE; -+pub const IFLA_BOND_MIIMON: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MIIMON; -+pub const IFLA_BOND_UPDELAY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_UPDELAY; -+pub const IFLA_BOND_DOWNDELAY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_DOWNDELAY; -+pub const IFLA_BOND_USE_CARRIER: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_USE_CARRIER; -+pub const IFLA_BOND_ARP_INTERVAL: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_INTERVAL; -+pub const IFLA_BOND_ARP_IP_TARGET: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_IP_TARGET; -+pub const IFLA_BOND_ARP_VALIDATE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_VALIDATE; -+pub const IFLA_BOND_ARP_ALL_TARGETS: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ARP_ALL_TARGETS; -+pub const IFLA_BOND_PRIMARY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PRIMARY; -+pub const IFLA_BOND_PRIMARY_RESELECT: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PRIMARY_RESELECT; -+pub const IFLA_BOND_FAIL_OVER_MAC: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_FAIL_OVER_MAC; -+pub const IFLA_BOND_XMIT_HASH_POLICY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_XMIT_HASH_POLICY; -+pub const IFLA_BOND_RESEND_IGMP: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_RESEND_IGMP; -+pub const IFLA_BOND_NUM_PEER_NOTIF: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_NUM_PEER_NOTIF; -+pub const IFLA_BOND_ALL_SLAVES_ACTIVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_ALL_SLAVES_ACTIVE; -+pub const IFLA_BOND_MIN_LINKS: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MIN_LINKS; -+pub const IFLA_BOND_LP_INTERVAL: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_LP_INTERVAL; -+pub const IFLA_BOND_PACKETS_PER_SLAVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PACKETS_PER_SLAVE; -+pub const IFLA_BOND_AD_LACP_RATE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_LACP_RATE; -+pub const IFLA_BOND_AD_SELECT: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_SELECT; -+pub const IFLA_BOND_AD_INFO: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_INFO; -+pub const IFLA_BOND_AD_ACTOR_SYS_PRIO: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_ACTOR_SYS_PRIO; -+pub const IFLA_BOND_AD_USER_PORT_KEY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_USER_PORT_KEY; -+pub const IFLA_BOND_AD_ACTOR_SYSTEM: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_ACTOR_SYSTEM; -+pub const IFLA_BOND_TLB_DYNAMIC_LB: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_TLB_DYNAMIC_LB; -+pub const IFLA_BOND_PEER_NOTIF_DELAY: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_PEER_NOTIF_DELAY; -+pub const IFLA_BOND_AD_LACP_ACTIVE: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_AD_LACP_ACTIVE; -+pub const IFLA_BOND_MISSED_MAX: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_MISSED_MAX; -+pub const IFLA_BOND_NS_IP6_TARGET: _bindgen_ty_26 = _bindgen_ty_26::IFLA_BOND_NS_IP6_TARGET; -+pub const __IFLA_BOND_MAX: _bindgen_ty_26 = _bindgen_ty_26::__IFLA_BOND_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_26 { -+IFLA_BOND_UNSPEC = 0, -+IFLA_BOND_MODE = 1, -+IFLA_BOND_ACTIVE_SLAVE = 2, -+IFLA_BOND_MIIMON = 3, -+IFLA_BOND_UPDELAY = 4, -+IFLA_BOND_DOWNDELAY = 5, -+IFLA_BOND_USE_CARRIER = 6, -+IFLA_BOND_ARP_INTERVAL = 7, -+IFLA_BOND_ARP_IP_TARGET = 8, -+IFLA_BOND_ARP_VALIDATE = 9, -+IFLA_BOND_ARP_ALL_TARGETS = 10, -+IFLA_BOND_PRIMARY = 11, -+IFLA_BOND_PRIMARY_RESELECT = 12, -+IFLA_BOND_FAIL_OVER_MAC = 13, -+IFLA_BOND_XMIT_HASH_POLICY = 14, -+IFLA_BOND_RESEND_IGMP = 15, -+IFLA_BOND_NUM_PEER_NOTIF = 16, -+IFLA_BOND_ALL_SLAVES_ACTIVE = 17, -+IFLA_BOND_MIN_LINKS = 18, -+IFLA_BOND_LP_INTERVAL = 19, -+IFLA_BOND_PACKETS_PER_SLAVE = 20, -+IFLA_BOND_AD_LACP_RATE = 21, -+IFLA_BOND_AD_SELECT = 22, -+IFLA_BOND_AD_INFO = 23, -+IFLA_BOND_AD_ACTOR_SYS_PRIO = 24, -+IFLA_BOND_AD_USER_PORT_KEY = 25, -+IFLA_BOND_AD_ACTOR_SYSTEM = 26, -+IFLA_BOND_TLB_DYNAMIC_LB = 27, -+IFLA_BOND_PEER_NOTIF_DELAY = 28, -+IFLA_BOND_AD_LACP_ACTIVE = 29, -+IFLA_BOND_MISSED_MAX = 30, -+IFLA_BOND_NS_IP6_TARGET = 31, -+__IFLA_BOND_MAX = 32, -+} -+pub const IFLA_BOND_AD_INFO_UNSPEC: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_UNSPEC; -+pub const IFLA_BOND_AD_INFO_AGGREGATOR: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_AGGREGATOR; -+pub const IFLA_BOND_AD_INFO_NUM_PORTS: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_NUM_PORTS; -+pub const IFLA_BOND_AD_INFO_ACTOR_KEY: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_ACTOR_KEY; -+pub const IFLA_BOND_AD_INFO_PARTNER_KEY: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_PARTNER_KEY; -+pub const IFLA_BOND_AD_INFO_PARTNER_MAC: _bindgen_ty_27 = _bindgen_ty_27::IFLA_BOND_AD_INFO_PARTNER_MAC; -+pub const __IFLA_BOND_AD_INFO_MAX: _bindgen_ty_27 = _bindgen_ty_27::__IFLA_BOND_AD_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_27 { -+IFLA_BOND_AD_INFO_UNSPEC = 0, -+IFLA_BOND_AD_INFO_AGGREGATOR = 1, -+IFLA_BOND_AD_INFO_NUM_PORTS = 2, -+IFLA_BOND_AD_INFO_ACTOR_KEY = 3, -+IFLA_BOND_AD_INFO_PARTNER_KEY = 4, -+IFLA_BOND_AD_INFO_PARTNER_MAC = 5, -+__IFLA_BOND_AD_INFO_MAX = 6, -+} -+pub const IFLA_BOND_SLAVE_UNSPEC: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_UNSPEC; -+pub const IFLA_BOND_SLAVE_STATE: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_STATE; -+pub const IFLA_BOND_SLAVE_MII_STATUS: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_MII_STATUS; -+pub const IFLA_BOND_SLAVE_LINK_FAILURE_COUNT: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_LINK_FAILURE_COUNT; -+pub const IFLA_BOND_SLAVE_PERM_HWADDR: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_PERM_HWADDR; -+pub const IFLA_BOND_SLAVE_QUEUE_ID: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_QUEUE_ID; -+pub const IFLA_BOND_SLAVE_AD_AGGREGATOR_ID: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_AD_AGGREGATOR_ID; -+pub const IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE; -+pub const IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE; -+pub const IFLA_BOND_SLAVE_PRIO: _bindgen_ty_28 = _bindgen_ty_28::IFLA_BOND_SLAVE_PRIO; -+pub const __IFLA_BOND_SLAVE_MAX: _bindgen_ty_28 = _bindgen_ty_28::__IFLA_BOND_SLAVE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_28 { -+IFLA_BOND_SLAVE_UNSPEC = 0, -+IFLA_BOND_SLAVE_STATE = 1, -+IFLA_BOND_SLAVE_MII_STATUS = 2, -+IFLA_BOND_SLAVE_LINK_FAILURE_COUNT = 3, -+IFLA_BOND_SLAVE_PERM_HWADDR = 4, -+IFLA_BOND_SLAVE_QUEUE_ID = 5, -+IFLA_BOND_SLAVE_AD_AGGREGATOR_ID = 6, -+IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE = 7, -+IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE = 8, -+IFLA_BOND_SLAVE_PRIO = 9, -+__IFLA_BOND_SLAVE_MAX = 10, -+} -+pub const IFLA_VF_INFO_UNSPEC: _bindgen_ty_29 = _bindgen_ty_29::IFLA_VF_INFO_UNSPEC; -+pub const IFLA_VF_INFO: _bindgen_ty_29 = _bindgen_ty_29::IFLA_VF_INFO; -+pub const __IFLA_VF_INFO_MAX: _bindgen_ty_29 = _bindgen_ty_29::__IFLA_VF_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_29 { -+IFLA_VF_INFO_UNSPEC = 0, -+IFLA_VF_INFO = 1, -+__IFLA_VF_INFO_MAX = 2, -+} -+pub const IFLA_VF_UNSPEC: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_UNSPEC; -+pub const IFLA_VF_MAC: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_MAC; -+pub const IFLA_VF_VLAN: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_VLAN; -+pub const IFLA_VF_TX_RATE: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_TX_RATE; -+pub const IFLA_VF_SPOOFCHK: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_SPOOFCHK; -+pub const IFLA_VF_LINK_STATE: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_LINK_STATE; -+pub const IFLA_VF_RATE: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_RATE; -+pub const IFLA_VF_RSS_QUERY_EN: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_RSS_QUERY_EN; -+pub const IFLA_VF_STATS: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_STATS; -+pub const IFLA_VF_TRUST: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_TRUST; -+pub const IFLA_VF_IB_NODE_GUID: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_IB_NODE_GUID; -+pub const IFLA_VF_IB_PORT_GUID: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_IB_PORT_GUID; -+pub const IFLA_VF_VLAN_LIST: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_VLAN_LIST; -+pub const IFLA_VF_BROADCAST: _bindgen_ty_30 = _bindgen_ty_30::IFLA_VF_BROADCAST; -+pub const __IFLA_VF_MAX: _bindgen_ty_30 = _bindgen_ty_30::__IFLA_VF_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_30 { -+IFLA_VF_UNSPEC = 0, -+IFLA_VF_MAC = 1, -+IFLA_VF_VLAN = 2, -+IFLA_VF_TX_RATE = 3, -+IFLA_VF_SPOOFCHK = 4, -+IFLA_VF_LINK_STATE = 5, -+IFLA_VF_RATE = 6, -+IFLA_VF_RSS_QUERY_EN = 7, -+IFLA_VF_STATS = 8, -+IFLA_VF_TRUST = 9, -+IFLA_VF_IB_NODE_GUID = 10, -+IFLA_VF_IB_PORT_GUID = 11, -+IFLA_VF_VLAN_LIST = 12, -+IFLA_VF_BROADCAST = 13, -+__IFLA_VF_MAX = 14, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_mac { -+pub vf: __u32, -+pub mac: [__u8; 32usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_broadcast { -+pub broadcast: [__u8; 32usize], -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_vlan { -+pub vf: __u32, -+pub vlan: __u32, -+pub qos: __u32, -+} -+pub const IFLA_VF_VLAN_INFO_UNSPEC: _bindgen_ty_31 = _bindgen_ty_31::IFLA_VF_VLAN_INFO_UNSPEC; -+pub const IFLA_VF_VLAN_INFO: _bindgen_ty_31 = _bindgen_ty_31::IFLA_VF_VLAN_INFO; -+pub const __IFLA_VF_VLAN_INFO_MAX: _bindgen_ty_31 = _bindgen_ty_31::__IFLA_VF_VLAN_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_31 { -+IFLA_VF_VLAN_INFO_UNSPEC = 0, -+IFLA_VF_VLAN_INFO = 1, -+__IFLA_VF_VLAN_INFO_MAX = 2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_vlan_info { -+pub vf: __u32, -+pub vlan: __u32, -+pub qos: __u32, -+pub vlan_proto: __be16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_tx_rate { -+pub vf: __u32, -+pub rate: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_rate { -+pub vf: __u32, -+pub min_tx_rate: __u32, -+pub max_tx_rate: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_spoofchk { -+pub vf: __u32, -+pub setting: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_guid { -+pub vf: __u32, -+pub guid: __u64, -+} -+pub const IFLA_VF_LINK_STATE_AUTO: _bindgen_ty_32 = _bindgen_ty_32::IFLA_VF_LINK_STATE_AUTO; -+pub const IFLA_VF_LINK_STATE_ENABLE: _bindgen_ty_32 = _bindgen_ty_32::IFLA_VF_LINK_STATE_ENABLE; -+pub const IFLA_VF_LINK_STATE_DISABLE: _bindgen_ty_32 = _bindgen_ty_32::IFLA_VF_LINK_STATE_DISABLE; -+pub const __IFLA_VF_LINK_STATE_MAX: _bindgen_ty_32 = _bindgen_ty_32::__IFLA_VF_LINK_STATE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_32 { -+IFLA_VF_LINK_STATE_AUTO = 0, -+IFLA_VF_LINK_STATE_ENABLE = 1, -+IFLA_VF_LINK_STATE_DISABLE = 2, -+__IFLA_VF_LINK_STATE_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_link_state { -+pub vf: __u32, -+pub link_state: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_rss_query_en { -+pub vf: __u32, -+pub setting: __u32, -+} -+pub const IFLA_VF_STATS_RX_PACKETS: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_RX_PACKETS; -+pub const IFLA_VF_STATS_TX_PACKETS: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_TX_PACKETS; -+pub const IFLA_VF_STATS_RX_BYTES: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_RX_BYTES; -+pub const IFLA_VF_STATS_TX_BYTES: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_TX_BYTES; -+pub const IFLA_VF_STATS_BROADCAST: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_BROADCAST; -+pub const IFLA_VF_STATS_MULTICAST: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_MULTICAST; -+pub const IFLA_VF_STATS_PAD: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_PAD; -+pub const IFLA_VF_STATS_RX_DROPPED: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_RX_DROPPED; -+pub const IFLA_VF_STATS_TX_DROPPED: _bindgen_ty_33 = _bindgen_ty_33::IFLA_VF_STATS_TX_DROPPED; -+pub const __IFLA_VF_STATS_MAX: _bindgen_ty_33 = _bindgen_ty_33::__IFLA_VF_STATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_33 { -+IFLA_VF_STATS_RX_PACKETS = 0, -+IFLA_VF_STATS_TX_PACKETS = 1, -+IFLA_VF_STATS_RX_BYTES = 2, -+IFLA_VF_STATS_TX_BYTES = 3, -+IFLA_VF_STATS_BROADCAST = 4, -+IFLA_VF_STATS_MULTICAST = 5, -+IFLA_VF_STATS_PAD = 6, -+IFLA_VF_STATS_RX_DROPPED = 7, -+IFLA_VF_STATS_TX_DROPPED = 8, -+__IFLA_VF_STATS_MAX = 9, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_vf_trust { -+pub vf: __u32, -+pub setting: __u32, -+} -+pub const IFLA_VF_PORT_UNSPEC: _bindgen_ty_34 = _bindgen_ty_34::IFLA_VF_PORT_UNSPEC; -+pub const IFLA_VF_PORT: _bindgen_ty_34 = _bindgen_ty_34::IFLA_VF_PORT; -+pub const __IFLA_VF_PORT_MAX: _bindgen_ty_34 = _bindgen_ty_34::__IFLA_VF_PORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_34 { -+IFLA_VF_PORT_UNSPEC = 0, -+IFLA_VF_PORT = 1, -+__IFLA_VF_PORT_MAX = 2, -+} -+pub const IFLA_PORT_UNSPEC: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_UNSPEC; -+pub const IFLA_PORT_VF: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_VF; -+pub const IFLA_PORT_PROFILE: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_PROFILE; -+pub const IFLA_PORT_VSI_TYPE: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_VSI_TYPE; -+pub const IFLA_PORT_INSTANCE_UUID: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_INSTANCE_UUID; -+pub const IFLA_PORT_HOST_UUID: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_HOST_UUID; -+pub const IFLA_PORT_REQUEST: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_REQUEST; -+pub const IFLA_PORT_RESPONSE: _bindgen_ty_35 = _bindgen_ty_35::IFLA_PORT_RESPONSE; -+pub const __IFLA_PORT_MAX: _bindgen_ty_35 = _bindgen_ty_35::__IFLA_PORT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_35 { -+IFLA_PORT_UNSPEC = 0, -+IFLA_PORT_VF = 1, -+IFLA_PORT_PROFILE = 2, -+IFLA_PORT_VSI_TYPE = 3, -+IFLA_PORT_INSTANCE_UUID = 4, -+IFLA_PORT_HOST_UUID = 5, -+IFLA_PORT_REQUEST = 6, -+IFLA_PORT_RESPONSE = 7, -+__IFLA_PORT_MAX = 8, -+} -+pub const PORT_REQUEST_PREASSOCIATE: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_PREASSOCIATE; -+pub const PORT_REQUEST_PREASSOCIATE_RR: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_PREASSOCIATE_RR; -+pub const PORT_REQUEST_ASSOCIATE: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_ASSOCIATE; -+pub const PORT_REQUEST_DISASSOCIATE: _bindgen_ty_36 = _bindgen_ty_36::PORT_REQUEST_DISASSOCIATE; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_36 { -+PORT_REQUEST_PREASSOCIATE = 0, -+PORT_REQUEST_PREASSOCIATE_RR = 1, -+PORT_REQUEST_ASSOCIATE = 2, -+PORT_REQUEST_DISASSOCIATE = 3, -+} -+pub const PORT_VDP_RESPONSE_SUCCESS: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_SUCCESS; -+pub const PORT_VDP_RESPONSE_INVALID_FORMAT: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_INVALID_FORMAT; -+pub const PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES; -+pub const PORT_VDP_RESPONSE_UNUSED_VTID: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_UNUSED_VTID; -+pub const PORT_VDP_RESPONSE_VTID_VIOLATION: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_VTID_VIOLATION; -+pub const PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION; -+pub const PORT_VDP_RESPONSE_OUT_OF_SYNC: _bindgen_ty_37 = _bindgen_ty_37::PORT_VDP_RESPONSE_OUT_OF_SYNC; -+pub const PORT_PROFILE_RESPONSE_SUCCESS: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_SUCCESS; -+pub const PORT_PROFILE_RESPONSE_INPROGRESS: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_INPROGRESS; -+pub const PORT_PROFILE_RESPONSE_INVALID: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_INVALID; -+pub const PORT_PROFILE_RESPONSE_BADSTATE: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_BADSTATE; -+pub const PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES; -+pub const PORT_PROFILE_RESPONSE_ERROR: _bindgen_ty_37 = _bindgen_ty_37::PORT_PROFILE_RESPONSE_ERROR; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_37 { -+PORT_VDP_RESPONSE_SUCCESS = 0, -+PORT_VDP_RESPONSE_INVALID_FORMAT = 1, -+PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES = 2, -+PORT_VDP_RESPONSE_UNUSED_VTID = 3, -+PORT_VDP_RESPONSE_VTID_VIOLATION = 4, -+PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION = 5, -+PORT_VDP_RESPONSE_OUT_OF_SYNC = 6, -+PORT_PROFILE_RESPONSE_SUCCESS = 256, -+PORT_PROFILE_RESPONSE_INPROGRESS = 257, -+PORT_PROFILE_RESPONSE_INVALID = 258, -+PORT_PROFILE_RESPONSE_BADSTATE = 259, -+PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES = 260, -+PORT_PROFILE_RESPONSE_ERROR = 261, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_port_vsi { -+pub vsi_mgr_id: __u8, -+pub vsi_type_id: [__u8; 3usize], -+pub vsi_type_version: __u8, -+pub pad: [__u8; 3usize], -+} -+pub const IFLA_IPOIB_UNSPEC: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_UNSPEC; -+pub const IFLA_IPOIB_PKEY: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_PKEY; -+pub const IFLA_IPOIB_MODE: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_MODE; -+pub const IFLA_IPOIB_UMCAST: _bindgen_ty_38 = _bindgen_ty_38::IFLA_IPOIB_UMCAST; -+pub const __IFLA_IPOIB_MAX: _bindgen_ty_38 = _bindgen_ty_38::__IFLA_IPOIB_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_38 { -+IFLA_IPOIB_UNSPEC = 0, -+IFLA_IPOIB_PKEY = 1, -+IFLA_IPOIB_MODE = 2, -+IFLA_IPOIB_UMCAST = 3, -+__IFLA_IPOIB_MAX = 4, -+} -+pub const IPOIB_MODE_DATAGRAM: _bindgen_ty_39 = _bindgen_ty_39::IPOIB_MODE_DATAGRAM; -+pub const IPOIB_MODE_CONNECTED: _bindgen_ty_39 = _bindgen_ty_39::IPOIB_MODE_CONNECTED; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_39 { -+IPOIB_MODE_DATAGRAM = 0, -+IPOIB_MODE_CONNECTED = 1, -+} -+pub const HSR_PROTOCOL_HSR: _bindgen_ty_40 = _bindgen_ty_40::HSR_PROTOCOL_HSR; -+pub const HSR_PROTOCOL_PRP: _bindgen_ty_40 = _bindgen_ty_40::HSR_PROTOCOL_PRP; -+pub const HSR_PROTOCOL_MAX: _bindgen_ty_40 = _bindgen_ty_40::HSR_PROTOCOL_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_40 { -+HSR_PROTOCOL_HSR = 0, -+HSR_PROTOCOL_PRP = 1, -+HSR_PROTOCOL_MAX = 2, -+} -+pub const IFLA_HSR_UNSPEC: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_UNSPEC; -+pub const IFLA_HSR_SLAVE1: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SLAVE1; -+pub const IFLA_HSR_SLAVE2: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SLAVE2; -+pub const IFLA_HSR_MULTICAST_SPEC: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_MULTICAST_SPEC; -+pub const IFLA_HSR_SUPERVISION_ADDR: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SUPERVISION_ADDR; -+pub const IFLA_HSR_SEQ_NR: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_SEQ_NR; -+pub const IFLA_HSR_VERSION: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_VERSION; -+pub const IFLA_HSR_PROTOCOL: _bindgen_ty_41 = _bindgen_ty_41::IFLA_HSR_PROTOCOL; -+pub const __IFLA_HSR_MAX: _bindgen_ty_41 = _bindgen_ty_41::__IFLA_HSR_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_41 { -+IFLA_HSR_UNSPEC = 0, -+IFLA_HSR_SLAVE1 = 1, -+IFLA_HSR_SLAVE2 = 2, -+IFLA_HSR_MULTICAST_SPEC = 3, -+IFLA_HSR_SUPERVISION_ADDR = 4, -+IFLA_HSR_SEQ_NR = 5, -+IFLA_HSR_VERSION = 6, -+IFLA_HSR_PROTOCOL = 7, -+__IFLA_HSR_MAX = 8, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct if_stats_msg { -+pub family: __u8, -+pub pad1: __u8, -+pub pad2: __u16, -+pub ifindex: __u32, -+pub filter_mask: __u32, -+} -+pub const IFLA_STATS_UNSPEC: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_UNSPEC; -+pub const IFLA_STATS_LINK_64: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_64; -+pub const IFLA_STATS_LINK_XSTATS: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_XSTATS; -+pub const IFLA_STATS_LINK_XSTATS_SLAVE: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_XSTATS_SLAVE; -+pub const IFLA_STATS_LINK_OFFLOAD_XSTATS: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_LINK_OFFLOAD_XSTATS; -+pub const IFLA_STATS_AF_SPEC: _bindgen_ty_42 = _bindgen_ty_42::IFLA_STATS_AF_SPEC; -+pub const __IFLA_STATS_MAX: _bindgen_ty_42 = _bindgen_ty_42::__IFLA_STATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_42 { -+IFLA_STATS_UNSPEC = 0, -+IFLA_STATS_LINK_64 = 1, -+IFLA_STATS_LINK_XSTATS = 2, -+IFLA_STATS_LINK_XSTATS_SLAVE = 3, -+IFLA_STATS_LINK_OFFLOAD_XSTATS = 4, -+IFLA_STATS_AF_SPEC = 5, -+__IFLA_STATS_MAX = 6, -+} -+pub const IFLA_STATS_GETSET_UNSPEC: _bindgen_ty_43 = _bindgen_ty_43::IFLA_STATS_GETSET_UNSPEC; -+pub const IFLA_STATS_GET_FILTERS: _bindgen_ty_43 = _bindgen_ty_43::IFLA_STATS_GET_FILTERS; -+pub const IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS: _bindgen_ty_43 = _bindgen_ty_43::IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS; -+pub const __IFLA_STATS_GETSET_MAX: _bindgen_ty_43 = _bindgen_ty_43::__IFLA_STATS_GETSET_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_43 { -+IFLA_STATS_GETSET_UNSPEC = 0, -+IFLA_STATS_GET_FILTERS = 1, -+IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS = 2, -+__IFLA_STATS_GETSET_MAX = 3, -+} -+pub const LINK_XSTATS_TYPE_UNSPEC: _bindgen_ty_44 = _bindgen_ty_44::LINK_XSTATS_TYPE_UNSPEC; -+pub const LINK_XSTATS_TYPE_BRIDGE: _bindgen_ty_44 = _bindgen_ty_44::LINK_XSTATS_TYPE_BRIDGE; -+pub const LINK_XSTATS_TYPE_BOND: _bindgen_ty_44 = _bindgen_ty_44::LINK_XSTATS_TYPE_BOND; -+pub const __LINK_XSTATS_TYPE_MAX: _bindgen_ty_44 = _bindgen_ty_44::__LINK_XSTATS_TYPE_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_44 { -+LINK_XSTATS_TYPE_UNSPEC = 0, -+LINK_XSTATS_TYPE_BRIDGE = 1, -+LINK_XSTATS_TYPE_BOND = 2, -+__LINK_XSTATS_TYPE_MAX = 3, -+} -+pub const IFLA_OFFLOAD_XSTATS_UNSPEC: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_UNSPEC; -+pub const IFLA_OFFLOAD_XSTATS_CPU_HIT: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_CPU_HIT; -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_HW_S_INFO; -+pub const IFLA_OFFLOAD_XSTATS_L3_STATS: _bindgen_ty_45 = _bindgen_ty_45::IFLA_OFFLOAD_XSTATS_L3_STATS; -+pub const __IFLA_OFFLOAD_XSTATS_MAX: _bindgen_ty_45 = _bindgen_ty_45::__IFLA_OFFLOAD_XSTATS_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_45 { -+IFLA_OFFLOAD_XSTATS_UNSPEC = 0, -+IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, -+IFLA_OFFLOAD_XSTATS_HW_S_INFO = 2, -+IFLA_OFFLOAD_XSTATS_L3_STATS = 3, -+__IFLA_OFFLOAD_XSTATS_MAX = 4, -+} -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC: _bindgen_ty_46 = _bindgen_ty_46::IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC; -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST: _bindgen_ty_46 = _bindgen_ty_46::IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST; -+pub const IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED: _bindgen_ty_46 = _bindgen_ty_46::IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED; -+pub const __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX: _bindgen_ty_46 = _bindgen_ty_46::__IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_46 { -+IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC = 0, -+IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST = 1, -+IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED = 2, -+__IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX = 3, -+} -+pub const XDP_ATTACHED_NONE: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_NONE; -+pub const XDP_ATTACHED_DRV: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_DRV; -+pub const XDP_ATTACHED_SKB: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_SKB; -+pub const XDP_ATTACHED_HW: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_HW; -+pub const XDP_ATTACHED_MULTI: _bindgen_ty_47 = _bindgen_ty_47::XDP_ATTACHED_MULTI; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_47 { -+XDP_ATTACHED_NONE = 0, -+XDP_ATTACHED_DRV = 1, -+XDP_ATTACHED_SKB = 2, -+XDP_ATTACHED_HW = 3, -+XDP_ATTACHED_MULTI = 4, -+} -+pub const IFLA_XDP_UNSPEC: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_UNSPEC; -+pub const IFLA_XDP_FD: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_FD; -+pub const IFLA_XDP_ATTACHED: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_ATTACHED; -+pub const IFLA_XDP_FLAGS: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_FLAGS; -+pub const IFLA_XDP_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_PROG_ID; -+pub const IFLA_XDP_DRV_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_DRV_PROG_ID; -+pub const IFLA_XDP_SKB_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_SKB_PROG_ID; -+pub const IFLA_XDP_HW_PROG_ID: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_HW_PROG_ID; -+pub const IFLA_XDP_EXPECTED_FD: _bindgen_ty_48 = _bindgen_ty_48::IFLA_XDP_EXPECTED_FD; -+pub const __IFLA_XDP_MAX: _bindgen_ty_48 = _bindgen_ty_48::__IFLA_XDP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_48 { -+IFLA_XDP_UNSPEC = 0, -+IFLA_XDP_FD = 1, -+IFLA_XDP_ATTACHED = 2, -+IFLA_XDP_FLAGS = 3, -+IFLA_XDP_PROG_ID = 4, -+IFLA_XDP_DRV_PROG_ID = 5, -+IFLA_XDP_SKB_PROG_ID = 6, -+IFLA_XDP_HW_PROG_ID = 7, -+IFLA_XDP_EXPECTED_FD = 8, -+__IFLA_XDP_MAX = 9, -+} -+pub const IFLA_EVENT_NONE: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_NONE; -+pub const IFLA_EVENT_REBOOT: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_REBOOT; -+pub const IFLA_EVENT_FEATURES: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_FEATURES; -+pub const IFLA_EVENT_BONDING_FAILOVER: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_BONDING_FAILOVER; -+pub const IFLA_EVENT_NOTIFY_PEERS: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_NOTIFY_PEERS; -+pub const IFLA_EVENT_IGMP_RESEND: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_IGMP_RESEND; -+pub const IFLA_EVENT_BONDING_OPTIONS: _bindgen_ty_49 = _bindgen_ty_49::IFLA_EVENT_BONDING_OPTIONS; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_49 { -+IFLA_EVENT_NONE = 0, -+IFLA_EVENT_REBOOT = 1, -+IFLA_EVENT_FEATURES = 2, -+IFLA_EVENT_BONDING_FAILOVER = 3, -+IFLA_EVENT_NOTIFY_PEERS = 4, -+IFLA_EVENT_IGMP_RESEND = 5, -+IFLA_EVENT_BONDING_OPTIONS = 6, -+} -+pub const IFLA_TUN_UNSPEC: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_UNSPEC; -+pub const IFLA_TUN_OWNER: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_OWNER; -+pub const IFLA_TUN_GROUP: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_GROUP; -+pub const IFLA_TUN_TYPE: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_TYPE; -+pub const IFLA_TUN_PI: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_PI; -+pub const IFLA_TUN_VNET_HDR: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_VNET_HDR; -+pub const IFLA_TUN_PERSIST: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_PERSIST; -+pub const IFLA_TUN_MULTI_QUEUE: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_MULTI_QUEUE; -+pub const IFLA_TUN_NUM_QUEUES: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_NUM_QUEUES; -+pub const IFLA_TUN_NUM_DISABLED_QUEUES: _bindgen_ty_50 = _bindgen_ty_50::IFLA_TUN_NUM_DISABLED_QUEUES; -+pub const __IFLA_TUN_MAX: _bindgen_ty_50 = _bindgen_ty_50::__IFLA_TUN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_50 { -+IFLA_TUN_UNSPEC = 0, -+IFLA_TUN_OWNER = 1, -+IFLA_TUN_GROUP = 2, -+IFLA_TUN_TYPE = 3, -+IFLA_TUN_PI = 4, -+IFLA_TUN_VNET_HDR = 5, -+IFLA_TUN_PERSIST = 6, -+IFLA_TUN_MULTI_QUEUE = 7, -+IFLA_TUN_NUM_QUEUES = 8, -+IFLA_TUN_NUM_DISABLED_QUEUES = 9, -+__IFLA_TUN_MAX = 10, -+} -+pub const IFLA_RMNET_UNSPEC: _bindgen_ty_51 = _bindgen_ty_51::IFLA_RMNET_UNSPEC; -+pub const IFLA_RMNET_MUX_ID: _bindgen_ty_51 = _bindgen_ty_51::IFLA_RMNET_MUX_ID; -+pub const IFLA_RMNET_FLAGS: _bindgen_ty_51 = _bindgen_ty_51::IFLA_RMNET_FLAGS; -+pub const __IFLA_RMNET_MAX: _bindgen_ty_51 = _bindgen_ty_51::__IFLA_RMNET_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_51 { -+IFLA_RMNET_UNSPEC = 0, -+IFLA_RMNET_MUX_ID = 1, -+IFLA_RMNET_FLAGS = 2, -+__IFLA_RMNET_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifla_rmnet_flags { -+pub flags: __u32, -+pub mask: __u32, -+} -+pub const IFLA_MCTP_UNSPEC: _bindgen_ty_52 = _bindgen_ty_52::IFLA_MCTP_UNSPEC; -+pub const IFLA_MCTP_NET: _bindgen_ty_52 = _bindgen_ty_52::IFLA_MCTP_NET; -+pub const __IFLA_MCTP_MAX: _bindgen_ty_52 = _bindgen_ty_52::__IFLA_MCTP_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_52 { -+IFLA_MCTP_UNSPEC = 0, -+IFLA_MCTP_NET = 1, -+__IFLA_MCTP_MAX = 2, -+} -+pub const IFLA_DSA_UNSPEC: _bindgen_ty_53 = _bindgen_ty_53::IFLA_DSA_UNSPEC; -+pub const IFLA_DSA_MASTER: _bindgen_ty_53 = _bindgen_ty_53::IFLA_DSA_MASTER; -+pub const __IFLA_DSA_MAX: _bindgen_ty_53 = _bindgen_ty_53::__IFLA_DSA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_53 { -+IFLA_DSA_UNSPEC = 0, -+IFLA_DSA_MASTER = 1, -+__IFLA_DSA_MAX = 2, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifaddrmsg { -+pub ifa_family: __u8, -+pub ifa_prefixlen: __u8, -+pub ifa_flags: __u8, -+pub ifa_scope: __u8, -+pub ifa_index: __u32, -+} -+pub const IFA_UNSPEC: _bindgen_ty_54 = _bindgen_ty_54::IFA_UNSPEC; -+pub const IFA_ADDRESS: _bindgen_ty_54 = _bindgen_ty_54::IFA_ADDRESS; -+pub const IFA_LOCAL: _bindgen_ty_54 = _bindgen_ty_54::IFA_LOCAL; -+pub const IFA_LABEL: _bindgen_ty_54 = _bindgen_ty_54::IFA_LABEL; -+pub const IFA_BROADCAST: _bindgen_ty_54 = _bindgen_ty_54::IFA_BROADCAST; -+pub const IFA_ANYCAST: _bindgen_ty_54 = _bindgen_ty_54::IFA_ANYCAST; -+pub const IFA_CACHEINFO: _bindgen_ty_54 = _bindgen_ty_54::IFA_CACHEINFO; -+pub const IFA_MULTICAST: _bindgen_ty_54 = _bindgen_ty_54::IFA_MULTICAST; -+pub const IFA_FLAGS: _bindgen_ty_54 = _bindgen_ty_54::IFA_FLAGS; -+pub const IFA_RT_PRIORITY: _bindgen_ty_54 = _bindgen_ty_54::IFA_RT_PRIORITY; -+pub const IFA_TARGET_NETNSID: _bindgen_ty_54 = _bindgen_ty_54::IFA_TARGET_NETNSID; -+pub const IFA_PROTO: _bindgen_ty_54 = _bindgen_ty_54::IFA_PROTO; -+pub const __IFA_MAX: _bindgen_ty_54 = _bindgen_ty_54::__IFA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_54 { -+IFA_UNSPEC = 0, -+IFA_ADDRESS = 1, -+IFA_LOCAL = 2, -+IFA_LABEL = 3, -+IFA_BROADCAST = 4, -+IFA_ANYCAST = 5, -+IFA_CACHEINFO = 6, -+IFA_MULTICAST = 7, -+IFA_FLAGS = 8, -+IFA_RT_PRIORITY = 9, -+IFA_TARGET_NETNSID = 10, -+IFA_PROTO = 11, -+__IFA_MAX = 12, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifa_cacheinfo { -+pub ifa_prefered: __u32, -+pub ifa_valid: __u32, -+pub cstamp: __u32, -+pub tstamp: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndmsg { -+pub ndm_family: __u8, -+pub ndm_pad1: __u8, -+pub ndm_pad2: __u16, -+pub ndm_ifindex: __s32, -+pub ndm_state: __u16, -+pub ndm_flags: __u8, -+pub ndm_type: __u8, -+} -+pub const NDA_UNSPEC: _bindgen_ty_55 = _bindgen_ty_55::NDA_UNSPEC; -+pub const NDA_DST: _bindgen_ty_55 = _bindgen_ty_55::NDA_DST; -+pub const NDA_LLADDR: _bindgen_ty_55 = _bindgen_ty_55::NDA_LLADDR; -+pub const NDA_CACHEINFO: _bindgen_ty_55 = _bindgen_ty_55::NDA_CACHEINFO; -+pub const NDA_PROBES: _bindgen_ty_55 = _bindgen_ty_55::NDA_PROBES; -+pub const NDA_VLAN: _bindgen_ty_55 = _bindgen_ty_55::NDA_VLAN; -+pub const NDA_PORT: _bindgen_ty_55 = _bindgen_ty_55::NDA_PORT; -+pub const NDA_VNI: _bindgen_ty_55 = _bindgen_ty_55::NDA_VNI; -+pub const NDA_IFINDEX: _bindgen_ty_55 = _bindgen_ty_55::NDA_IFINDEX; -+pub const NDA_MASTER: _bindgen_ty_55 = _bindgen_ty_55::NDA_MASTER; -+pub const NDA_LINK_NETNSID: _bindgen_ty_55 = _bindgen_ty_55::NDA_LINK_NETNSID; -+pub const NDA_SRC_VNI: _bindgen_ty_55 = _bindgen_ty_55::NDA_SRC_VNI; -+pub const NDA_PROTOCOL: _bindgen_ty_55 = _bindgen_ty_55::NDA_PROTOCOL; -+pub const NDA_NH_ID: _bindgen_ty_55 = _bindgen_ty_55::NDA_NH_ID; -+pub const NDA_FDB_EXT_ATTRS: _bindgen_ty_55 = _bindgen_ty_55::NDA_FDB_EXT_ATTRS; -+pub const NDA_FLAGS_EXT: _bindgen_ty_55 = _bindgen_ty_55::NDA_FLAGS_EXT; -+pub const NDA_NDM_STATE_MASK: _bindgen_ty_55 = _bindgen_ty_55::NDA_NDM_STATE_MASK; -+pub const NDA_NDM_FLAGS_MASK: _bindgen_ty_55 = _bindgen_ty_55::NDA_NDM_FLAGS_MASK; -+pub const __NDA_MAX: _bindgen_ty_55 = _bindgen_ty_55::__NDA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_55 { -+NDA_UNSPEC = 0, -+NDA_DST = 1, -+NDA_LLADDR = 2, -+NDA_CACHEINFO = 3, -+NDA_PROBES = 4, -+NDA_VLAN = 5, -+NDA_PORT = 6, -+NDA_VNI = 7, -+NDA_IFINDEX = 8, -+NDA_MASTER = 9, -+NDA_LINK_NETNSID = 10, -+NDA_SRC_VNI = 11, -+NDA_PROTOCOL = 12, -+NDA_NH_ID = 13, -+NDA_FDB_EXT_ATTRS = 14, -+NDA_FLAGS_EXT = 15, -+NDA_NDM_STATE_MASK = 16, -+NDA_NDM_FLAGS_MASK = 17, -+__NDA_MAX = 18, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nda_cacheinfo { -+pub ndm_confirmed: __u32, -+pub ndm_used: __u32, -+pub ndm_updated: __u32, -+pub ndm_refcnt: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndt_stats { -+pub ndts_allocs: __u64, -+pub ndts_destroys: __u64, -+pub ndts_hash_grows: __u64, -+pub ndts_res_failed: __u64, -+pub ndts_lookups: __u64, -+pub ndts_hits: __u64, -+pub ndts_rcv_probes_mcast: __u64, -+pub ndts_rcv_probes_ucast: __u64, -+pub ndts_periodic_gc_runs: __u64, -+pub ndts_forced_gc_runs: __u64, -+pub ndts_table_fulls: __u64, -+} -+pub const NDTPA_UNSPEC: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_UNSPEC; -+pub const NDTPA_IFINDEX: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_IFINDEX; -+pub const NDTPA_REFCNT: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_REFCNT; -+pub const NDTPA_REACHABLE_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_REACHABLE_TIME; -+pub const NDTPA_BASE_REACHABLE_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_BASE_REACHABLE_TIME; -+pub const NDTPA_RETRANS_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_RETRANS_TIME; -+pub const NDTPA_GC_STALETIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_GC_STALETIME; -+pub const NDTPA_DELAY_PROBE_TIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_DELAY_PROBE_TIME; -+pub const NDTPA_QUEUE_LEN: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_QUEUE_LEN; -+pub const NDTPA_APP_PROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_APP_PROBES; -+pub const NDTPA_UCAST_PROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_UCAST_PROBES; -+pub const NDTPA_MCAST_PROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_MCAST_PROBES; -+pub const NDTPA_ANYCAST_DELAY: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_ANYCAST_DELAY; -+pub const NDTPA_PROXY_DELAY: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_PROXY_DELAY; -+pub const NDTPA_PROXY_QLEN: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_PROXY_QLEN; -+pub const NDTPA_LOCKTIME: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_LOCKTIME; -+pub const NDTPA_QUEUE_LENBYTES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_QUEUE_LENBYTES; -+pub const NDTPA_MCAST_REPROBES: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_MCAST_REPROBES; -+pub const NDTPA_PAD: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_PAD; -+pub const NDTPA_INTERVAL_PROBE_TIME_MS: _bindgen_ty_56 = _bindgen_ty_56::NDTPA_INTERVAL_PROBE_TIME_MS; -+pub const __NDTPA_MAX: _bindgen_ty_56 = _bindgen_ty_56::__NDTPA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_56 { -+NDTPA_UNSPEC = 0, -+NDTPA_IFINDEX = 1, -+NDTPA_REFCNT = 2, -+NDTPA_REACHABLE_TIME = 3, -+NDTPA_BASE_REACHABLE_TIME = 4, -+NDTPA_RETRANS_TIME = 5, -+NDTPA_GC_STALETIME = 6, -+NDTPA_DELAY_PROBE_TIME = 7, -+NDTPA_QUEUE_LEN = 8, -+NDTPA_APP_PROBES = 9, -+NDTPA_UCAST_PROBES = 10, -+NDTPA_MCAST_PROBES = 11, -+NDTPA_ANYCAST_DELAY = 12, -+NDTPA_PROXY_DELAY = 13, -+NDTPA_PROXY_QLEN = 14, -+NDTPA_LOCKTIME = 15, -+NDTPA_QUEUE_LENBYTES = 16, -+NDTPA_MCAST_REPROBES = 17, -+NDTPA_PAD = 18, -+NDTPA_INTERVAL_PROBE_TIME_MS = 19, -+__NDTPA_MAX = 20, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndtmsg { -+pub ndtm_family: __u8, -+pub ndtm_pad1: __u8, -+pub ndtm_pad2: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ndt_config { -+pub ndtc_key_len: __u16, -+pub ndtc_entry_size: __u16, -+pub ndtc_entries: __u32, -+pub ndtc_last_flush: __u32, -+pub ndtc_last_rand: __u32, -+pub ndtc_hash_rnd: __u32, -+pub ndtc_hash_mask: __u32, -+pub ndtc_hash_chain_gc: __u32, -+pub ndtc_proxy_qlen: __u32, -+} -+pub const NDTA_UNSPEC: _bindgen_ty_57 = _bindgen_ty_57::NDTA_UNSPEC; -+pub const NDTA_NAME: _bindgen_ty_57 = _bindgen_ty_57::NDTA_NAME; -+pub const NDTA_THRESH1: _bindgen_ty_57 = _bindgen_ty_57::NDTA_THRESH1; -+pub const NDTA_THRESH2: _bindgen_ty_57 = _bindgen_ty_57::NDTA_THRESH2; -+pub const NDTA_THRESH3: _bindgen_ty_57 = _bindgen_ty_57::NDTA_THRESH3; -+pub const NDTA_CONFIG: _bindgen_ty_57 = _bindgen_ty_57::NDTA_CONFIG; -+pub const NDTA_PARMS: _bindgen_ty_57 = _bindgen_ty_57::NDTA_PARMS; -+pub const NDTA_STATS: _bindgen_ty_57 = _bindgen_ty_57::NDTA_STATS; -+pub const NDTA_GC_INTERVAL: _bindgen_ty_57 = _bindgen_ty_57::NDTA_GC_INTERVAL; -+pub const NDTA_PAD: _bindgen_ty_57 = _bindgen_ty_57::NDTA_PAD; -+pub const __NDTA_MAX: _bindgen_ty_57 = _bindgen_ty_57::__NDTA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_57 { -+NDTA_UNSPEC = 0, -+NDTA_NAME = 1, -+NDTA_THRESH1 = 2, -+NDTA_THRESH2 = 3, -+NDTA_THRESH3 = 4, -+NDTA_CONFIG = 5, -+NDTA_PARMS = 6, -+NDTA_STATS = 7, -+NDTA_GC_INTERVAL = 8, -+NDTA_PAD = 9, -+__NDTA_MAX = 10, -+} -+pub const FDB_NOTIFY_BIT: _bindgen_ty_58 = _bindgen_ty_58::FDB_NOTIFY_BIT; -+pub const FDB_NOTIFY_INACTIVE_BIT: _bindgen_ty_58 = _bindgen_ty_58::FDB_NOTIFY_INACTIVE_BIT; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_58 { -+FDB_NOTIFY_BIT = 1, -+FDB_NOTIFY_INACTIVE_BIT = 2, -+} -+pub const NFEA_UNSPEC: _bindgen_ty_59 = _bindgen_ty_59::NFEA_UNSPEC; -+pub const NFEA_ACTIVITY_NOTIFY: _bindgen_ty_59 = _bindgen_ty_59::NFEA_ACTIVITY_NOTIFY; -+pub const NFEA_DONT_REFRESH: _bindgen_ty_59 = _bindgen_ty_59::NFEA_DONT_REFRESH; -+pub const __NFEA_MAX: _bindgen_ty_59 = _bindgen_ty_59::__NFEA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_59 { -+NFEA_UNSPEC = 0, -+NFEA_ACTIVITY_NOTIFY = 1, -+NFEA_DONT_REFRESH = 2, -+__NFEA_MAX = 3, -+} -+pub const RTM_BASE: _bindgen_ty_60 = _bindgen_ty_60::RTM_BASE; -+pub const RTM_NEWLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_BASE; -+pub const RTM_DELLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELLINK; -+pub const RTM_GETLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETLINK; -+pub const RTM_SETLINK: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETLINK; -+pub const RTM_NEWADDR: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWADDR; -+pub const RTM_DELADDR: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELADDR; -+pub const RTM_GETADDR: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETADDR; -+pub const RTM_NEWROUTE: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWROUTE; -+pub const RTM_DELROUTE: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELROUTE; -+pub const RTM_GETROUTE: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETROUTE; -+pub const RTM_NEWNEIGH: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEIGH; -+pub const RTM_DELNEIGH: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNEIGH; -+pub const RTM_GETNEIGH: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEIGH; -+pub const RTM_NEWRULE: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWRULE; -+pub const RTM_DELRULE: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELRULE; -+pub const RTM_GETRULE: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETRULE; -+pub const RTM_NEWQDISC: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWQDISC; -+pub const RTM_DELQDISC: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELQDISC; -+pub const RTM_GETQDISC: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETQDISC; -+pub const RTM_NEWTCLASS: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWTCLASS; -+pub const RTM_DELTCLASS: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELTCLASS; -+pub const RTM_GETTCLASS: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETTCLASS; -+pub const RTM_NEWTFILTER: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWTFILTER; -+pub const RTM_DELTFILTER: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELTFILTER; -+pub const RTM_GETTFILTER: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETTFILTER; -+pub const RTM_NEWACTION: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWACTION; -+pub const RTM_DELACTION: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELACTION; -+pub const RTM_GETACTION: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETACTION; -+pub const RTM_NEWPREFIX: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWPREFIX; -+pub const RTM_GETMULTICAST: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETMULTICAST; -+pub const RTM_GETANYCAST: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETANYCAST; -+pub const RTM_NEWNEIGHTBL: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEIGHTBL; -+pub const RTM_GETNEIGHTBL: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEIGHTBL; -+pub const RTM_SETNEIGHTBL: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETNEIGHTBL; -+pub const RTM_NEWNDUSEROPT: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNDUSEROPT; -+pub const RTM_NEWADDRLABEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWADDRLABEL; -+pub const RTM_DELADDRLABEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELADDRLABEL; -+pub const RTM_GETADDRLABEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETADDRLABEL; -+pub const RTM_GETDCB: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETDCB; -+pub const RTM_SETDCB: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETDCB; -+pub const RTM_NEWNETCONF: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNETCONF; -+pub const RTM_DELNETCONF: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNETCONF; -+pub const RTM_GETNETCONF: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNETCONF; -+pub const RTM_NEWMDB: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWMDB; -+pub const RTM_DELMDB: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELMDB; -+pub const RTM_GETMDB: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETMDB; -+pub const RTM_NEWNSID: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNSID; -+pub const RTM_DELNSID: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNSID; -+pub const RTM_GETNSID: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNSID; -+pub const RTM_NEWSTATS: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWSTATS; -+pub const RTM_GETSTATS: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETSTATS; -+pub const RTM_SETSTATS: _bindgen_ty_60 = _bindgen_ty_60::RTM_SETSTATS; -+pub const RTM_NEWCACHEREPORT: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWCACHEREPORT; -+pub const RTM_NEWCHAIN: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWCHAIN; -+pub const RTM_DELCHAIN: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELCHAIN; -+pub const RTM_GETCHAIN: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETCHAIN; -+pub const RTM_NEWNEXTHOP: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEXTHOP; -+pub const RTM_DELNEXTHOP: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNEXTHOP; -+pub const RTM_GETNEXTHOP: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEXTHOP; -+pub const RTM_NEWLINKPROP: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWLINKPROP; -+pub const RTM_DELLINKPROP: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELLINKPROP; -+pub const RTM_GETLINKPROP: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETLINKPROP; -+pub const RTM_NEWVLAN: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWVLAN; -+pub const RTM_DELVLAN: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELVLAN; -+pub const RTM_GETVLAN: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETVLAN; -+pub const RTM_NEWNEXTHOPBUCKET: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWNEXTHOPBUCKET; -+pub const RTM_DELNEXTHOPBUCKET: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELNEXTHOPBUCKET; -+pub const RTM_GETNEXTHOPBUCKET: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETNEXTHOPBUCKET; -+pub const RTM_NEWTUNNEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_NEWTUNNEL; -+pub const RTM_DELTUNNEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_DELTUNNEL; -+pub const RTM_GETTUNNEL: _bindgen_ty_60 = _bindgen_ty_60::RTM_GETTUNNEL; -+pub const __RTM_MAX: _bindgen_ty_60 = _bindgen_ty_60::__RTM_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_60 { -+RTM_BASE = 16, -+RTM_DELLINK = 17, -+RTM_GETLINK = 18, -+RTM_SETLINK = 19, -+RTM_NEWADDR = 20, -+RTM_DELADDR = 21, -+RTM_GETADDR = 22, -+RTM_NEWROUTE = 24, -+RTM_DELROUTE = 25, -+RTM_GETROUTE = 26, -+RTM_NEWNEIGH = 28, -+RTM_DELNEIGH = 29, -+RTM_GETNEIGH = 30, -+RTM_NEWRULE = 32, -+RTM_DELRULE = 33, -+RTM_GETRULE = 34, -+RTM_NEWQDISC = 36, -+RTM_DELQDISC = 37, -+RTM_GETQDISC = 38, -+RTM_NEWTCLASS = 40, -+RTM_DELTCLASS = 41, -+RTM_GETTCLASS = 42, -+RTM_NEWTFILTER = 44, -+RTM_DELTFILTER = 45, -+RTM_GETTFILTER = 46, -+RTM_NEWACTION = 48, -+RTM_DELACTION = 49, -+RTM_GETACTION = 50, -+RTM_NEWPREFIX = 52, -+RTM_GETMULTICAST = 58, -+RTM_GETANYCAST = 62, -+RTM_NEWNEIGHTBL = 64, -+RTM_GETNEIGHTBL = 66, -+RTM_SETNEIGHTBL = 67, -+RTM_NEWNDUSEROPT = 68, -+RTM_NEWADDRLABEL = 72, -+RTM_DELADDRLABEL = 73, -+RTM_GETADDRLABEL = 74, -+RTM_GETDCB = 78, -+RTM_SETDCB = 79, -+RTM_NEWNETCONF = 80, -+RTM_DELNETCONF = 81, -+RTM_GETNETCONF = 82, -+RTM_NEWMDB = 84, -+RTM_DELMDB = 85, -+RTM_GETMDB = 86, -+RTM_NEWNSID = 88, -+RTM_DELNSID = 89, -+RTM_GETNSID = 90, -+RTM_NEWSTATS = 92, -+RTM_GETSTATS = 94, -+RTM_SETSTATS = 95, -+RTM_NEWCACHEREPORT = 96, -+RTM_NEWCHAIN = 100, -+RTM_DELCHAIN = 101, -+RTM_GETCHAIN = 102, -+RTM_NEWNEXTHOP = 104, -+RTM_DELNEXTHOP = 105, -+RTM_GETNEXTHOP = 106, -+RTM_NEWLINKPROP = 108, -+RTM_DELLINKPROP = 109, -+RTM_GETLINKPROP = 110, -+RTM_NEWVLAN = 112, -+RTM_DELVLAN = 113, -+RTM_GETVLAN = 114, -+RTM_NEWNEXTHOPBUCKET = 116, -+RTM_DELNEXTHOPBUCKET = 117, -+RTM_GETNEXTHOPBUCKET = 118, -+RTM_NEWTUNNEL = 120, -+RTM_DELTUNNEL = 121, -+RTM_GETTUNNEL = 122, -+__RTM_MAX = 123, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtattr { -+pub rta_len: crate::ctypes::c_ushort, -+pub rta_type: crate::ctypes::c_ushort, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtmsg { -+pub rtm_family: crate::ctypes::c_uchar, -+pub rtm_dst_len: crate::ctypes::c_uchar, -+pub rtm_src_len: crate::ctypes::c_uchar, -+pub rtm_tos: crate::ctypes::c_uchar, -+pub rtm_table: crate::ctypes::c_uchar, -+pub rtm_protocol: crate::ctypes::c_uchar, -+pub rtm_scope: crate::ctypes::c_uchar, -+pub rtm_type: crate::ctypes::c_uchar, -+pub rtm_flags: crate::ctypes::c_uint, -+} -+pub const RTN_UNSPEC: _bindgen_ty_61 = _bindgen_ty_61::RTN_UNSPEC; -+pub const RTN_UNICAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_UNICAST; -+pub const RTN_LOCAL: _bindgen_ty_61 = _bindgen_ty_61::RTN_LOCAL; -+pub const RTN_BROADCAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_BROADCAST; -+pub const RTN_ANYCAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_ANYCAST; -+pub const RTN_MULTICAST: _bindgen_ty_61 = _bindgen_ty_61::RTN_MULTICAST; -+pub const RTN_BLACKHOLE: _bindgen_ty_61 = _bindgen_ty_61::RTN_BLACKHOLE; -+pub const RTN_UNREACHABLE: _bindgen_ty_61 = _bindgen_ty_61::RTN_UNREACHABLE; -+pub const RTN_PROHIBIT: _bindgen_ty_61 = _bindgen_ty_61::RTN_PROHIBIT; -+pub const RTN_THROW: _bindgen_ty_61 = _bindgen_ty_61::RTN_THROW; -+pub const RTN_NAT: _bindgen_ty_61 = _bindgen_ty_61::RTN_NAT; -+pub const RTN_XRESOLVE: _bindgen_ty_61 = _bindgen_ty_61::RTN_XRESOLVE; -+pub const __RTN_MAX: _bindgen_ty_61 = _bindgen_ty_61::__RTN_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_61 { -+RTN_UNSPEC = 0, -+RTN_UNICAST = 1, -+RTN_LOCAL = 2, -+RTN_BROADCAST = 3, -+RTN_ANYCAST = 4, -+RTN_MULTICAST = 5, -+RTN_BLACKHOLE = 6, -+RTN_UNREACHABLE = 7, -+RTN_PROHIBIT = 8, -+RTN_THROW = 9, -+RTN_NAT = 10, -+RTN_XRESOLVE = 11, -+__RTN_MAX = 12, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rt_scope_t { -+RT_SCOPE_UNIVERSE = 0, -+RT_SCOPE_SITE = 200, -+RT_SCOPE_LINK = 253, -+RT_SCOPE_HOST = 254, -+RT_SCOPE_NOWHERE = 255, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rt_class_t { -+RT_TABLE_UNSPEC = 0, -+RT_TABLE_COMPAT = 252, -+RT_TABLE_DEFAULT = 253, -+RT_TABLE_MAIN = 254, -+RT_TABLE_LOCAL = 255, -+RT_TABLE_MAX = 4294967295, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rtattr_type_t { -+RTA_UNSPEC = 0, -+RTA_DST = 1, -+RTA_SRC = 2, -+RTA_IIF = 3, -+RTA_OIF = 4, -+RTA_GATEWAY = 5, -+RTA_PRIORITY = 6, -+RTA_PREFSRC = 7, -+RTA_METRICS = 8, -+RTA_MULTIPATH = 9, -+RTA_PROTOINFO = 10, -+RTA_FLOW = 11, -+RTA_CACHEINFO = 12, -+RTA_SESSION = 13, -+RTA_MP_ALGO = 14, -+RTA_TABLE = 15, -+RTA_MARK = 16, -+RTA_MFC_STATS = 17, -+RTA_VIA = 18, -+RTA_NEWDST = 19, -+RTA_PREF = 20, -+RTA_ENCAP_TYPE = 21, -+RTA_ENCAP = 22, -+RTA_EXPIRES = 23, -+RTA_PAD = 24, -+RTA_UID = 25, -+RTA_TTL_PROPAGATE = 26, -+RTA_IP_PROTO = 27, -+RTA_SPORT = 28, -+RTA_DPORT = 29, -+RTA_NH_ID = 30, -+__RTA_MAX = 31, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtnexthop { -+pub rtnh_len: crate::ctypes::c_ushort, -+pub rtnh_flags: crate::ctypes::c_uchar, -+pub rtnh_hops: crate::ctypes::c_uchar, -+pub rtnh_ifindex: crate::ctypes::c_int, -+} -+#[repr(C)] -+#[derive(Debug)] -+pub struct rtvia { -+pub rtvia_family: __kernel_sa_family_t, -+pub rtvia_addr: __IncompleteArrayField<__u8>, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_cacheinfo { -+pub rta_clntref: __u32, -+pub rta_lastuse: __u32, -+pub rta_expires: __s32, -+pub rta_error: __u32, -+pub rta_used: __u32, -+pub rta_id: __u32, -+pub rta_ts: __u32, -+pub rta_tsage: __u32, -+} -+pub const RTAX_UNSPEC: _bindgen_ty_62 = _bindgen_ty_62::RTAX_UNSPEC; -+pub const RTAX_LOCK: _bindgen_ty_62 = _bindgen_ty_62::RTAX_LOCK; -+pub const RTAX_MTU: _bindgen_ty_62 = _bindgen_ty_62::RTAX_MTU; -+pub const RTAX_WINDOW: _bindgen_ty_62 = _bindgen_ty_62::RTAX_WINDOW; -+pub const RTAX_RTT: _bindgen_ty_62 = _bindgen_ty_62::RTAX_RTT; -+pub const RTAX_RTTVAR: _bindgen_ty_62 = _bindgen_ty_62::RTAX_RTTVAR; -+pub const RTAX_SSTHRESH: _bindgen_ty_62 = _bindgen_ty_62::RTAX_SSTHRESH; -+pub const RTAX_CWND: _bindgen_ty_62 = _bindgen_ty_62::RTAX_CWND; -+pub const RTAX_ADVMSS: _bindgen_ty_62 = _bindgen_ty_62::RTAX_ADVMSS; -+pub const RTAX_REORDERING: _bindgen_ty_62 = _bindgen_ty_62::RTAX_REORDERING; -+pub const RTAX_HOPLIMIT: _bindgen_ty_62 = _bindgen_ty_62::RTAX_HOPLIMIT; -+pub const RTAX_INITCWND: _bindgen_ty_62 = _bindgen_ty_62::RTAX_INITCWND; -+pub const RTAX_FEATURES: _bindgen_ty_62 = _bindgen_ty_62::RTAX_FEATURES; -+pub const RTAX_RTO_MIN: _bindgen_ty_62 = _bindgen_ty_62::RTAX_RTO_MIN; -+pub const RTAX_INITRWND: _bindgen_ty_62 = _bindgen_ty_62::RTAX_INITRWND; -+pub const RTAX_QUICKACK: _bindgen_ty_62 = _bindgen_ty_62::RTAX_QUICKACK; -+pub const RTAX_CC_ALGO: _bindgen_ty_62 = _bindgen_ty_62::RTAX_CC_ALGO; -+pub const RTAX_FASTOPEN_NO_COOKIE: _bindgen_ty_62 = _bindgen_ty_62::RTAX_FASTOPEN_NO_COOKIE; -+pub const __RTAX_MAX: _bindgen_ty_62 = _bindgen_ty_62::__RTAX_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_62 { -+RTAX_UNSPEC = 0, -+RTAX_LOCK = 1, -+RTAX_MTU = 2, -+RTAX_WINDOW = 3, -+RTAX_RTT = 4, -+RTAX_RTTVAR = 5, -+RTAX_SSTHRESH = 6, -+RTAX_CWND = 7, -+RTAX_ADVMSS = 8, -+RTAX_REORDERING = 9, -+RTAX_HOPLIMIT = 10, -+RTAX_INITCWND = 11, -+RTAX_FEATURES = 12, -+RTAX_RTO_MIN = 13, -+RTAX_INITRWND = 14, -+RTAX_QUICKACK = 15, -+RTAX_CC_ALGO = 16, -+RTAX_FASTOPEN_NO_COOKIE = 17, -+__RTAX_MAX = 18, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub struct rta_session { -+pub proto: __u8, -+pub pad1: __u8, -+pub pad2: __u16, -+pub u: rta_session__bindgen_ty_1, -+} -+#[repr(C)] -+#[derive(Copy, Clone)] -+pub union rta_session__bindgen_ty_1 { -+pub ports: rta_session__bindgen_ty_1__bindgen_ty_1, -+pub icmpt: rta_session__bindgen_ty_1__bindgen_ty_2, -+pub spi: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_session__bindgen_ty_1__bindgen_ty_1 { -+pub sport: __u16, -+pub dport: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_session__bindgen_ty_1__bindgen_ty_2 { -+pub type_: __u8, -+pub code: __u8, -+pub ident: __u16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rta_mfc_stats { -+pub mfcs_packets: __u64, -+pub mfcs_bytes: __u64, -+pub mfcs_wrong_if: __u64, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct rtgenmsg { -+pub rtgen_family: crate::ctypes::c_uchar, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct ifinfomsg { -+pub ifi_family: crate::ctypes::c_uchar, -+pub __ifi_pad: crate::ctypes::c_uchar, -+pub ifi_type: crate::ctypes::c_ushort, -+pub ifi_index: crate::ctypes::c_int, -+pub ifi_flags: crate::ctypes::c_uint, -+pub ifi_change: crate::ctypes::c_uint, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct prefixmsg { -+pub prefix_family: crate::ctypes::c_uchar, -+pub prefix_pad1: crate::ctypes::c_uchar, -+pub prefix_pad2: crate::ctypes::c_ushort, -+pub prefix_ifindex: crate::ctypes::c_int, -+pub prefix_type: crate::ctypes::c_uchar, -+pub prefix_len: crate::ctypes::c_uchar, -+pub prefix_flags: crate::ctypes::c_uchar, -+pub prefix_pad3: crate::ctypes::c_uchar, -+} -+pub const PREFIX_UNSPEC: _bindgen_ty_63 = _bindgen_ty_63::PREFIX_UNSPEC; -+pub const PREFIX_ADDRESS: _bindgen_ty_63 = _bindgen_ty_63::PREFIX_ADDRESS; -+pub const PREFIX_CACHEINFO: _bindgen_ty_63 = _bindgen_ty_63::PREFIX_CACHEINFO; -+pub const __PREFIX_MAX: _bindgen_ty_63 = _bindgen_ty_63::__PREFIX_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_63 { -+PREFIX_UNSPEC = 0, -+PREFIX_ADDRESS = 1, -+PREFIX_CACHEINFO = 2, -+__PREFIX_MAX = 3, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct prefix_cacheinfo { -+pub preferred_time: __u32, -+pub valid_time: __u32, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcmsg { -+pub tcm_family: crate::ctypes::c_uchar, -+pub tcm__pad1: crate::ctypes::c_uchar, -+pub tcm__pad2: crate::ctypes::c_ushort, -+pub tcm_ifindex: crate::ctypes::c_int, -+pub tcm_handle: __u32, -+pub tcm_parent: __u32, -+pub tcm_info: __u32, -+} -+pub const TCA_UNSPEC: _bindgen_ty_64 = _bindgen_ty_64::TCA_UNSPEC; -+pub const TCA_KIND: _bindgen_ty_64 = _bindgen_ty_64::TCA_KIND; -+pub const TCA_OPTIONS: _bindgen_ty_64 = _bindgen_ty_64::TCA_OPTIONS; -+pub const TCA_STATS: _bindgen_ty_64 = _bindgen_ty_64::TCA_STATS; -+pub const TCA_XSTATS: _bindgen_ty_64 = _bindgen_ty_64::TCA_XSTATS; -+pub const TCA_RATE: _bindgen_ty_64 = _bindgen_ty_64::TCA_RATE; -+pub const TCA_FCNT: _bindgen_ty_64 = _bindgen_ty_64::TCA_FCNT; -+pub const TCA_STATS2: _bindgen_ty_64 = _bindgen_ty_64::TCA_STATS2; -+pub const TCA_STAB: _bindgen_ty_64 = _bindgen_ty_64::TCA_STAB; -+pub const TCA_PAD: _bindgen_ty_64 = _bindgen_ty_64::TCA_PAD; -+pub const TCA_DUMP_INVISIBLE: _bindgen_ty_64 = _bindgen_ty_64::TCA_DUMP_INVISIBLE; -+pub const TCA_CHAIN: _bindgen_ty_64 = _bindgen_ty_64::TCA_CHAIN; -+pub const TCA_HW_OFFLOAD: _bindgen_ty_64 = _bindgen_ty_64::TCA_HW_OFFLOAD; -+pub const TCA_INGRESS_BLOCK: _bindgen_ty_64 = _bindgen_ty_64::TCA_INGRESS_BLOCK; -+pub const TCA_EGRESS_BLOCK: _bindgen_ty_64 = _bindgen_ty_64::TCA_EGRESS_BLOCK; -+pub const TCA_DUMP_FLAGS: _bindgen_ty_64 = _bindgen_ty_64::TCA_DUMP_FLAGS; -+pub const __TCA_MAX: _bindgen_ty_64 = _bindgen_ty_64::__TCA_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_64 { -+TCA_UNSPEC = 0, -+TCA_KIND = 1, -+TCA_OPTIONS = 2, -+TCA_STATS = 3, -+TCA_XSTATS = 4, -+TCA_RATE = 5, -+TCA_FCNT = 6, -+TCA_STATS2 = 7, -+TCA_STAB = 8, -+TCA_PAD = 9, -+TCA_DUMP_INVISIBLE = 10, -+TCA_CHAIN = 11, -+TCA_HW_OFFLOAD = 12, -+TCA_INGRESS_BLOCK = 13, -+TCA_EGRESS_BLOCK = 14, -+TCA_DUMP_FLAGS = 15, -+__TCA_MAX = 16, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct nduseroptmsg { -+pub nduseropt_family: crate::ctypes::c_uchar, -+pub nduseropt_pad1: crate::ctypes::c_uchar, -+pub nduseropt_opts_len: crate::ctypes::c_ushort, -+pub nduseropt_ifindex: crate::ctypes::c_int, -+pub nduseropt_icmp_type: __u8, -+pub nduseropt_icmp_code: __u8, -+pub nduseropt_pad2: crate::ctypes::c_ushort, -+pub nduseropt_pad3: crate::ctypes::c_uint, -+} -+pub const NDUSEROPT_UNSPEC: _bindgen_ty_65 = _bindgen_ty_65::NDUSEROPT_UNSPEC; -+pub const NDUSEROPT_SRCADDR: _bindgen_ty_65 = _bindgen_ty_65::NDUSEROPT_SRCADDR; -+pub const __NDUSEROPT_MAX: _bindgen_ty_65 = _bindgen_ty_65::__NDUSEROPT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_65 { -+NDUSEROPT_UNSPEC = 0, -+NDUSEROPT_SRCADDR = 1, -+__NDUSEROPT_MAX = 2, -+} -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum rtnetlink_groups { -+RTNLGRP_NONE = 0, -+RTNLGRP_LINK = 1, -+RTNLGRP_NOTIFY = 2, -+RTNLGRP_NEIGH = 3, -+RTNLGRP_TC = 4, -+RTNLGRP_IPV4_IFADDR = 5, -+RTNLGRP_IPV4_MROUTE = 6, -+RTNLGRP_IPV4_ROUTE = 7, -+RTNLGRP_IPV4_RULE = 8, -+RTNLGRP_IPV6_IFADDR = 9, -+RTNLGRP_IPV6_MROUTE = 10, -+RTNLGRP_IPV6_ROUTE = 11, -+RTNLGRP_IPV6_IFINFO = 12, -+RTNLGRP_DECnet_IFADDR = 13, -+RTNLGRP_NOP2 = 14, -+RTNLGRP_DECnet_ROUTE = 15, -+RTNLGRP_DECnet_RULE = 16, -+RTNLGRP_NOP4 = 17, -+RTNLGRP_IPV6_PREFIX = 18, -+RTNLGRP_IPV6_RULE = 19, -+RTNLGRP_ND_USEROPT = 20, -+RTNLGRP_PHONET_IFADDR = 21, -+RTNLGRP_PHONET_ROUTE = 22, -+RTNLGRP_DCB = 23, -+RTNLGRP_IPV4_NETCONF = 24, -+RTNLGRP_IPV6_NETCONF = 25, -+RTNLGRP_MDB = 26, -+RTNLGRP_MPLS_ROUTE = 27, -+RTNLGRP_NSID = 28, -+RTNLGRP_MPLS_NETCONF = 29, -+RTNLGRP_IPV4_MROUTE_R = 30, -+RTNLGRP_IPV6_MROUTE_R = 31, -+RTNLGRP_NEXTHOP = 32, -+RTNLGRP_BRVLAN = 33, -+RTNLGRP_MCTP_IFADDR = 34, -+RTNLGRP_TUNNEL = 35, -+RTNLGRP_STATS = 36, -+__RTNLGRP_MAX = 37, -+} -+#[repr(C)] -+#[derive(Debug, Copy, Clone)] -+pub struct tcamsg { -+pub tca_family: crate::ctypes::c_uchar, -+pub tca__pad1: crate::ctypes::c_uchar, -+pub tca__pad2: crate::ctypes::c_ushort, -+} -+pub const TCA_ROOT_UNSPEC: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_UNSPEC; -+pub const TCA_ROOT_TAB: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_TAB; -+pub const TCA_ROOT_FLAGS: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_FLAGS; -+pub const TCA_ROOT_COUNT: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_COUNT; -+pub const TCA_ROOT_TIME_DELTA: _bindgen_ty_66 = _bindgen_ty_66::TCA_ROOT_TIME_DELTA; -+pub const __TCA_ROOT_MAX: _bindgen_ty_66 = _bindgen_ty_66::__TCA_ROOT_MAX; -+#[repr(u32)] -+#[non_exhaustive] -+#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] -+pub enum _bindgen_ty_66 { -+TCA_ROOT_UNSPEC = 0, -+TCA_ROOT_TAB = 1, -+TCA_ROOT_FLAGS = 2, -+TCA_ROOT_COUNT = 3, -+TCA_ROOT_TIME_DELTA = 4, -+__TCA_ROOT_MAX = 5, -+} --- -2.31.1 - diff --git a/loongarch64/files/step/target_base/xfsprogs/6.3.0/patches/0001-fix-po-file-typo.patch b/loongarch64/files/step/target_base/xfsprogs/6.3.0/patches/0001-fix-po-file-typo.patch deleted file mode 100644 index 80f1639c..00000000 --- a/loongarch64/files/step/target_base/xfsprogs/6.3.0/patches/0001-fix-po-file-typo.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f9c9cfa2367b374c80aae6dc46be1327e726e7d7 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Sat, 24 Jun 2023 10:49:02 +0000 -Subject: [PATCH] fix po file typo. - ---- - po/de.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/po/de.po b/po/de.po -index 944b0e9..a6f8fde 100644 ---- a/po/de.po -+++ b/po/de.po -@@ -3084,7 +3084,7 @@ msgstr "%llu Spezialdateien\n" - #: .././estimate/xfs_estimate.c:191 - #, c-format - msgid "%s will take about %.1f megabytes\n" --msgstr "%s wird etwa %.lf Megabytes einnehmen\n" -+msgstr "%s wird etwa %.1f Megabytes einnehmen\n" - - #: .././estimate/xfs_estimate.c:198 - #, c-format --- -2.31.1 - diff --git a/loongarch64/files/step/target_base/xfsprogs/6.3.0/patches/0001-Fix-for-cross-build.patch b/loongarch64/files/step/target_base/xfsprogs/6.4.0/patches/0001-Fix-for-cross-build.patch similarity index 100% rename from loongarch64/files/step/target_base/xfsprogs/6.3.0/patches/0001-Fix-for-cross-build.patch rename to loongarch64/files/step/target_base/xfsprogs/6.4.0/patches/0001-Fix-for-cross-build.patch diff --git a/loongarch64/files/step/target_base/xfsprogs/6.3.0/patches/0002-Fix-for-gcc-13.patch b/loongarch64/files/step/target_base/xfsprogs/6.4.0/patches/0002-Fix-for-gcc-13.patch similarity index 100% rename from loongarch64/files/step/target_base/xfsprogs/6.3.0/patches/0002-Fix-for-gcc-13.patch rename to loongarch64/files/step/target_base/xfsprogs/6.4.0/patches/0002-Fix-for-gcc-13.patch diff --git a/loongarch64/files/step/toolchain/cross-gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/cross-gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..e2a139a8 --- /dev/null +++ b/loongarch64/files/step/toolchain/cross-gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + loongarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/cross-gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/cross-gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..e2a139a8 --- /dev/null +++ b/loongarch64/files/step/toolchain/cross-gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + loongarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/cross-x86_64-gcc/14.0.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/cross-gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch similarity index 100% rename from loongarch64/files/step/toolchain/cross-x86_64-gcc/14.0.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch rename to loongarch64/files/step/toolchain/cross-gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch diff --git a/loongarch64/files/step/toolchain/cross-x86_64-gcc-glibc/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/cross-x86_64-gcc-glibc/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..218d7b50 --- /dev/null +++ b/loongarch64/files/step/toolchain/cross-x86_64-gcc-glibc/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + longarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/cross-x86_64-gcc/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/cross-x86_64-gcc/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..218d7b50 --- /dev/null +++ b/loongarch64/files/step/toolchain/cross-x86_64-gcc/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + longarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..e2a139a8 --- /dev/null +++ b/loongarch64/files/step/toolchain/gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + loongarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..e2a139a8 --- /dev/null +++ b/loongarch64/files/step/toolchain/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + loongarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/toolchain/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch b/loongarch64/files/step/toolchain/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch new file mode 100644 index 00000000..218d7b50 --- /dev/null +++ b/loongarch64/files/step/toolchain/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch @@ -0,0 +1,26 @@ +From 3b7fa12dba6749ef3d044bac9219b1235f75a9ae Mon Sep 17 00:00:00 2001 +From: Sun Haiyong +Date: Mon, 10 Jul 2023 12:02:57 +0000 +Subject: [PATCH] fix the missing include file when using gcc plugins in + longarch. + +--- + gcc/config.gcc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/config.gcc b/gcc/config.gcc +index d88071773..4d795bca8 100644 +--- a/gcc/config.gcc ++++ b/gcc/config.gcc +@@ -2478,7 +2478,7 @@ riscv*-*-freebsd*) + + loongarch*-*-linux*) + tm_file="elfos.h gnu-user.h linux.h linux-android.h glibc-stdint.h ${tm_file}" +- tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h" ++ tm_file="${tm_file} loongarch/gnu-user.h loongarch/linux.h loongarch/loongarch-def.h loongarch/loongarch-tune.h loongarch/loongarch-driver.h" + extra_options="${extra_options} linux-android.opt" + tmake_file="${tmake_file} loongarch/t-linux" + gnu_ld=yes +-- +2.31.1 + diff --git a/loongarch64/files/step/base_support/perf/6.4.3/linux-config-6 b/loongarch64/files/step/toolchain/linux-header/6.4.7/linux-config-6 similarity index 100% rename from loongarch64/files/step/base_support/perf/6.4.3/linux-config-6 rename to loongarch64/files/step/toolchain/linux-header/6.4.7/linux-config-6 diff --git a/loongarch64/files/step/boot/linux-kernel/6.4.3/linux-config-6 b/loongarch64/files/step/wine_runtime/linux-header/6.4.7/linux-config-6 similarity index 100% rename from loongarch64/files/step/boot/linux-kernel/6.4.3/linux-config-6 rename to loongarch64/files/step/wine_runtime/linux-header/6.4.7/linux-config-6 diff --git a/loongarch64/files/step/wine_runtime/mesa/23.1.3/patches/0001-fix-libdrm-and-mesa-multiple-definition-of-handle_ta.patch b/loongarch64/files/step/wine_runtime/mesa/23.2.0/patches/0001-fix-libdrm-and-mesa-multiple-definition-of-handle_ta.patch similarity index 100% rename from loongarch64/files/step/wine_runtime/mesa/23.1.3/patches/0001-fix-libdrm-and-mesa-multiple-definition-of-handle_ta.patch rename to loongarch64/files/step/wine_runtime/mesa/23.2.0/patches/0001-fix-libdrm-and-mesa-multiple-definition-of-handle_ta.patch diff --git a/loongarch64/files/step/wine_runtime/systemd_pre/254-default/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch b/loongarch64/files/step/wine_runtime/systemd_pre/254-default/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch deleted file mode 100644 index 0196871a..00000000 --- a/loongarch64/files/step/wine_runtime/systemd_pre/254-default/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch +++ /dev/null @@ -1,25 +0,0 @@ -From d6a1e691c00adad9d4e0b5c028b003abbee62199 Mon Sep 17 00:00:00 2001 -From: Sun Haiyong -Date: Sat, 24 Jun 2023 09:52:28 +0000 -Subject: [PATCH] fix compiler error for libcryptsetup is false. - ---- - src/partition/repart.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/partition/repart.c b/src/partition/repart.c -index 634eb2e..7540291 100644 ---- a/src/partition/repart.c -+++ b/src/partition/repart.c -@@ -3163,7 +3163,7 @@ typedef struct DecryptedPartitionTarget { - } DecryptedPartitionTarget; - - static DecryptedPartitionTarget* decrypted_partition_target_free(DecryptedPartitionTarget *t) { --#ifdef HAVE_LIBCRYPTSETUP -+#if HAVE_LIBCRYPTSETUP - int r; - - if (!t) --- -2.31.1 - diff --git a/loongarch64/files/step/target_base/systemd/254-default/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch b/loongarch64/files/step/wine_runtime/systemd_pre/254/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch similarity index 100% rename from loongarch64/files/step/target_base/systemd/254-default/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch rename to loongarch64/files/step/wine_runtime/systemd_pre/254/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch diff --git a/loongarch64/scripts/step/DE-KDE/kirigami-addons b/loongarch64/scripts/step/DE-KDE/kirigami-addons index 76c6b7e9..09ee02eb 100644 --- a/loongarch64/scripts/step/DE-KDE/kirigami-addons +++ b/loongarch64/scripts/step/DE-KDE/kirigami-addons @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=DE-KDE export STEP_PACKAGENAME=kirigami-addons -export PACKAGE_VERSION=0.9.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/DE-KDE/kirigami-addons/0.9.0/ -rm -rf ${BUILD_DIRECTORY}/kirigami-addons-0.9.0 -tar xvf ${DOWNLOADDIR}/kirigami-addons-0.9.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/kirigami-addons-0.9.0 +export PACKAGE_VERSION=0.10.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/DE-KDE/kirigami-addons/0.10.0/ +rm -rf ${BUILD_DIRECTORY}/kirigami-addons-0.10.0 +tar xvf ${DOWNLOADDIR}/kirigami-addons-0.10.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/kirigami-addons-0.10.0 mkdir cross-build pushd cross-build @@ -38,4 +38,4 @@ pushd ${BUILD_DIRECTORY}/kirigami-addons-0.9.0 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/kirigami-addons-0.9.0 +rm -rf ${BUILD_DIRECTORY}/kirigami-addons-0.10.0 diff --git a/loongarch64/scripts/step/DE-KDE/kirigami-addons.info b/loongarch64/scripts/step/DE-KDE/kirigami-addons.info index d11ad884..435a284a 100644 --- a/loongarch64/scripts/step/DE-KDE/kirigami-addons.info +++ b/loongarch64/scripts/step/DE-KDE/kirigami-addons.info @@ -1 +1 @@ -kirigami-addons|0.9.0 +kirigami-addons|0.10.0 diff --git a/loongarch64/scripts/step/DE-KDE/qca b/loongarch64/scripts/step/DE-KDE/qca index 7ff2ca3a..9387d0f6 100644 --- a/loongarch64/scripts/step/DE-KDE/qca +++ b/loongarch64/scripts/step/DE-KDE/qca @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=DE-KDE export STEP_PACKAGENAME=qca -export PACKAGE_VERSION=2.3.6 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/DE-KDE/qca/2.3.6/ -rm -rf ${BUILD_DIRECTORY}/qca-2.3.6 -tar xvf ${DOWNLOADDIR}/qca-2.3.6.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/qca-2.3.6 +export PACKAGE_VERSION=2.3.7 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/DE-KDE/qca/2.3.7/ +rm -rf ${BUILD_DIRECTORY}/qca-2.3.7 +tar xvf ${DOWNLOADDIR}/qca-2.3.7.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/qca-2.3.7 mkdir cross-build pushd cross-build @@ -38,4 +38,4 @@ pushd ${BUILD_DIRECTORY}/qca-2.3.6 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/qca-2.3.6 +rm -rf ${BUILD_DIRECTORY}/qca-2.3.7 diff --git a/loongarch64/scripts/step/DE-KDE/qca.info b/loongarch64/scripts/step/DE-KDE/qca.info index b0992d77..b8f89959 100644 --- a/loongarch64/scripts/step/DE-KDE/qca.info +++ b/loongarch64/scripts/step/DE-KDE/qca.info @@ -1 +1 @@ -qca|2.3.6 +qca|2.3.7 diff --git a/loongarch64/scripts/step/base_support/Markdown b/loongarch64/scripts/step/base_support/Markdown index 178bcffd..b85ffea0 100644 --- a/loongarch64/scripts/step/base_support/Markdown +++ b/loongarch64/scripts/step/base_support/Markdown @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=Markdown -export PACKAGE_VERSION=3.4.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Markdown/3.4.3/ -rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.3 -tar xvf ${DOWNLOADDIR}/Markdown-3.4.3.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/Markdown-3.4.3 +export PACKAGE_VERSION=3.4.4 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Markdown/3.4.4/ +rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.4 +tar xvf ${DOWNLOADDIR}/Markdown-3.4.4.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/Markdown-3.4.4 _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__linux_${CROSS_TARGET} ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__linux_${CROSS_TARGET} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --ignore-installed --no-user Markdown --root=${SYSROOT_DIR} --prefix=/usr popd -rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.3 +rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.4 diff --git a/loongarch64/scripts/step/base_support/Markdown.info b/loongarch64/scripts/step/base_support/Markdown.info index 60d1fb0e..60fe539c 100644 --- a/loongarch64/scripts/step/base_support/Markdown.info +++ b/loongarch64/scripts/step/base_support/Markdown.info @@ -1 +1 @@ -Markdown|3.4.3 +Markdown|3.4.4 diff --git a/loongarch64/scripts/step/base_support/NetworkManager b/loongarch64/scripts/step/base_support/NetworkManager index da1a10c1..fb31b40b 100644 --- a/loongarch64/scripts/step/base_support/NetworkManager +++ b/loongarch64/scripts/step/base_support/NetworkManager @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=NetworkManager -export PACKAGE_VERSION=1.43.11 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/NetworkManager/1.43.11/ -rm -rf ${BUILD_DIRECTORY}/NetworkManager-1.43.11 -tar xvf ${DOWNLOADDIR}/NetworkManager-1.43.11.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/NetworkManager-1.43.11 +export PACKAGE_VERSION=1.45.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/NetworkManager/1.45.0/ +rm -rf ${BUILD_DIRECTORY}/NetworkManager-1.45.0 +tar xvf ${DOWNLOADDIR}/NetworkManager-1.45.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/NetworkManager-1.45.0 sed -i "s@jansson_libdir,@'${SYSROOT_DIR}' + &@g" meson.build mkdir cross-build pushd cross-build @@ -21,4 +21,4 @@ pushd ${BUILD_DIRECTORY}/NetworkManager-1.43.11 DESTDIR=${SYSROOT_DIR} ninja install popd popd -rm -rf ${BUILD_DIRECTORY}/NetworkManager-1.43.11 +rm -rf ${BUILD_DIRECTORY}/NetworkManager-1.45.0 diff --git a/loongarch64/scripts/step/base_support/NetworkManager.info b/loongarch64/scripts/step/base_support/NetworkManager.info index 1e81e17b..5f624978 100644 --- a/loongarch64/scripts/step/base_support/NetworkManager.info +++ b/loongarch64/scripts/step/base_support/NetworkManager.info @@ -1 +1 @@ -NetworkManager|1.43.11 +NetworkManager|1.45.0 diff --git a/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator b/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator index daa15788..cc27bcf9 100644 --- a/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator +++ b/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=SPIRV-LLVM-Translator -export PACKAGE_VERSION=16.0.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/SPIRV-LLVM-Translator/16.0.0/ -rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0 -tar xvf ${DOWNLOADDIR}/SPIRV-LLVM-Translator-16.0.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0 +export PACKAGE_VERSION=16.0.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/SPIRV-LLVM-Translator/16.0.0-default/ +rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0-default_git +tar xvf ${DOWNLOADDIR}/SPIRV-LLVM-Translator-16.0.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0-default_git tar xvf ${RESOURCEDIR}/files/SPIRV-LLVM-Translator-headers_git.tar.gz mkdir cross-build @@ -28,10 +28,10 @@ pushd ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0 -DDOXYGEN_EXECUTABLE=/bin/doxygen \ -DCMAKE_INSTALL_LIBDIR=/usr/lib64 -DLIB_SUFFIX=64 \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DBUILD_SHARED_LIBS=OFF -DCCACHE_ALLOWED=OFF \ + -DBUILD_SHARED_LIBS=OFF -DCCACHE_ALLOWED=OFF -DBASE_LLVM_VERSION="18.0.0" \ -DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR=${PWD}/../SPIRV-LLVM-Translator-headers_git -Wno-dev .. eval ${MAKE_AND_INSTALL} popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0 +rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0-default_git diff --git a/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator.info b/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator.info index 365f35e6..5bc69e45 100644 --- a/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator.info +++ b/loongarch64/scripts/step/base_support/SPIRV-LLVM-Translator.info @@ -1 +1 @@ -SPIRV-LLVM-Translator|16.0.0 +SPIRV-LLVM-Translator|16.0.0-default diff --git a/loongarch64/scripts/step/base_support/Vulkan-Headers b/loongarch64/scripts/step/base_support/Vulkan-Headers index 228660cf..6537e136 100644 --- a/loongarch64/scripts/step/base_support/Vulkan-Headers +++ b/loongarch64/scripts/step/base_support/Vulkan-Headers @@ -3,13 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=Vulkan-Headers -export PACKAGE_VERSION=1.3.257 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Vulkan-Headers/1.3.257/ -rm -rf ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.257 -tar xvf ${DOWNLOADDIR}/Vulkan-Headers-1.3.257.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.257 - patch -Np1 -i ${SYSDIR}/files/base_support/Vulkan-Headers/1.3.257/patches/0001-Vulkan-Headers-fix-VK_FALSE-and-VK_TRUE-define.patch - +export PACKAGE_VERSION=1.3.260 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Vulkan-Headers/1.3.260/ +rm -rf ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.260 +tar xvf ${DOWNLOADDIR}/Vulkan-Headers-1.3.260.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.260 + mkdir cross-build pushd cross-build CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" \ @@ -39,4 +38,4 @@ pushd ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.257 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.257 +rm -rf ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.260 diff --git a/loongarch64/scripts/step/base_support/Vulkan-Headers.info b/loongarch64/scripts/step/base_support/Vulkan-Headers.info index 77c7723b..8ddd0045 100644 --- a/loongarch64/scripts/step/base_support/Vulkan-Headers.info +++ b/loongarch64/scripts/step/base_support/Vulkan-Headers.info @@ -1 +1 @@ -Vulkan-Headers|1.3.257 +Vulkan-Headers|1.3.260 diff --git a/loongarch64/scripts/step/base_support/Vulkan-Loader b/loongarch64/scripts/step/base_support/Vulkan-Loader index 5eae0c49..bdc7389b 100644 --- a/loongarch64/scripts/step/base_support/Vulkan-Loader +++ b/loongarch64/scripts/step/base_support/Vulkan-Loader @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=Vulkan-Loader -export PACKAGE_VERSION=1.3.257 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Vulkan-Loader/1.3.257/ -rm -rf ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.257 -tar xvf ${DOWNLOADDIR}/Vulkan-Loader-1.3.257.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.257 +export PACKAGE_VERSION=1.3.260 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Vulkan-Loader/1.3.260/ +rm -rf ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.260 +tar xvf ${DOWNLOADDIR}/Vulkan-Loader-1.3.260.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.260 mkdir cross-build pushd cross-build @@ -38,4 +38,4 @@ pushd ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.257 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.257 +rm -rf ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.260 diff --git a/loongarch64/scripts/step/base_support/Vulkan-Loader.info b/loongarch64/scripts/step/base_support/Vulkan-Loader.info index 950bd3ac..bd7d63f5 100644 --- a/loongarch64/scripts/step/base_support/Vulkan-Loader.info +++ b/loongarch64/scripts/step/base_support/Vulkan-Loader.info @@ -1 +1 @@ -Vulkan-Loader|1.3.257 +Vulkan-Loader|1.3.260 diff --git a/loongarch64/scripts/step/base_support/Vulkan-Tools b/loongarch64/scripts/step/base_support/Vulkan-Tools index b4044d98..3c2485ab 100644 --- a/loongarch64/scripts/step/base_support/Vulkan-Tools +++ b/loongarch64/scripts/step/base_support/Vulkan-Tools @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=Vulkan-Tools -export PACKAGE_VERSION=1.3.257 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Vulkan-Tools/1.3.257/ -rm -rf ${BUILD_DIRECTORY}/Vulkan-Tools-1.3.257 -tar xvf ${DOWNLOADDIR}/Vulkan-Tools-1.3.257.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/Vulkan-Tools-1.3.257 +export PACKAGE_VERSION=1.3.260 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/Vulkan-Tools/1.3.260/ +rm -rf ${BUILD_DIRECTORY}/Vulkan-Tools-1.3.260 +tar xvf ${DOWNLOADDIR}/Vulkan-Tools-1.3.260.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/Vulkan-Tools-1.3.260 mkdir cross-build pushd cross-build @@ -38,4 +38,4 @@ pushd ${BUILD_DIRECTORY}/Vulkan-Tools-1.3.257 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/Vulkan-Tools-1.3.257 +rm -rf ${BUILD_DIRECTORY}/Vulkan-Tools-1.3.260 diff --git a/loongarch64/scripts/step/base_support/Vulkan-Tools.info b/loongarch64/scripts/step/base_support/Vulkan-Tools.info index 88c1cdb1..d2104b06 100644 --- a/loongarch64/scripts/step/base_support/Vulkan-Tools.info +++ b/loongarch64/scripts/step/base_support/Vulkan-Tools.info @@ -1 +1 @@ -Vulkan-Tools|1.3.257 +Vulkan-Tools|1.3.260 diff --git a/loongarch64/scripts/step/base_support/alsa-utils b/loongarch64/scripts/step/base_support/alsa-utils index a455fa91..b2019016 100644 --- a/loongarch64/scripts/step/base_support/alsa-utils +++ b/loongarch64/scripts/step/base_support/alsa-utils @@ -8,7 +8,8 @@ export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/alsa-utils/1.2.9/ rm -rf ${BUILD_DIRECTORY}/alsa-utils-1.2.9 tar xvf ${DOWNLOADDIR}/alsa-utils-1.2.9.tar.bz2 -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/alsa-utils-1.2.9 - + patch -Np1 -i ${SYSDIR}/files/base_support/alsa-utils/1.2.9/patches/0001-fix-for-glibc-2.38.patch + for config_i in $(find -name "config.sub") do cp -a -f ${CROSSTOOLS_DIR}/share/automake*/config.* $(dirname ${config_i})/ diff --git a/loongarch64/scripts/step/base_support/at-spi2-core b/loongarch64/scripts/step/base_support/at-spi2-core index 96aebe7e..098c17c3 100644 --- a/loongarch64/scripts/step/base_support/at-spi2-core +++ b/loongarch64/scripts/step/base_support/at-spi2-core @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=at-spi2-core -export PACKAGE_VERSION=2.48.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/at-spi2-core/2.48.3/ -rm -rf ${BUILD_DIRECTORY}/at-spi2-core-2.48.3 -tar xvf ${DOWNLOADDIR}/at-spi2-core-2.48.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/at-spi2-core-2.48.3 +export PACKAGE_VERSION=2.49.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/at-spi2-core/2.49.1/ +rm -rf ${BUILD_DIRECTORY}/at-spi2-core-2.49.1 +tar xvf ${DOWNLOADDIR}/at-spi2-core-2.49.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/at-spi2-core-2.49.1 mkdir cross-build pushd cross-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/at-spi2-core-2.48.3 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/at-spi2-core-2.48.3 +rm -rf ${BUILD_DIRECTORY}/at-spi2-core-2.49.1 diff --git a/loongarch64/scripts/step/base_support/at-spi2-core.info b/loongarch64/scripts/step/base_support/at-spi2-core.info index 6d31ff06..de0fe0e2 100644 --- a/loongarch64/scripts/step/base_support/at-spi2-core.info +++ b/loongarch64/scripts/step/base_support/at-spi2-core.info @@ -1 +1 @@ -at-spi2-core|2.48.3 +at-spi2-core|2.49.1 diff --git a/loongarch64/scripts/step/base_support/certifi b/loongarch64/scripts/step/base_support/certifi index 12f8b00e..9b088592 100644 --- a/loongarch64/scripts/step/base_support/certifi +++ b/loongarch64/scripts/step/base_support/certifi @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=certifi -export PACKAGE_VERSION=2023.5.7 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/certifi/2023.5.7/ -rm -rf ${BUILD_DIRECTORY}/certifi-2023.5.7 -tar xvf ${DOWNLOADDIR}/certifi-2023.5.7.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/certifi-2023.5.7 +export PACKAGE_VERSION=2023.7.22 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/certifi/2023.7.22/ +rm -rf ${BUILD_DIRECTORY}/certifi-2023.7.22 +tar xvf ${DOWNLOADDIR}/certifi-2023.7.22.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/certifi-2023.7.22 _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__linux_${CROSS_TARGET} ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__linux_${CROSS_TARGET} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --ignore-installed --no-user certifi --root=${SYSROOT_DIR} --prefix=/usr popd -rm -rf ${BUILD_DIRECTORY}/certifi-2023.5.7 +rm -rf ${BUILD_DIRECTORY}/certifi-2023.7.22 diff --git a/loongarch64/scripts/step/base_support/certifi.info b/loongarch64/scripts/step/base_support/certifi.info index 88a091ab..771675de 100644 --- a/loongarch64/scripts/step/base_support/certifi.info +++ b/loongarch64/scripts/step/base_support/certifi.info @@ -1 +1 @@ -certifi|2023.5.7 +certifi|2023.7.22 diff --git a/loongarch64/scripts/step/base_support/emacs b/loongarch64/scripts/step/base_support/emacs index 9f5a187a..47279ca6 100644 --- a/loongarch64/scripts/step/base_support/emacs +++ b/loongarch64/scripts/step/base_support/emacs @@ -3,14 +3,15 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=emacs -export PACKAGE_VERSION=28.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/emacs/28.2/ -rm -rf ${BUILD_DIRECTORY}/emacs-28.2 -tar xvf ${DOWNLOADDIR}/emacs-28.2.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/emacs-28.2 +export PACKAGE_VERSION=29.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/emacs/29.1/ +rm -rf ${BUILD_DIRECTORY}/emacs-29.1 +tar xvf ${DOWNLOADDIR}/emacs-29.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/emacs-29.1 sed -i "s@)\$(libsrc)/make-docfile@) qemu-${ARCH_NAME} \$\(libsrc\)/make-docfile@g" src/Makefile.in - sed -i -e "s@bootstrap_exe = \(.*\)@ bootstrap_exe = /bin/emacs@g" src/Makefile.in + sed -i "/^emacs/s@= '\$(EMACS)'@= qemu-${ARCH_NAME} '\$(EMACS)'@g" lisp/Makefile.in ./configure ${COMMON_CONFIG} --with-dumping=none - eval ${MAKE_AND_INSTALL} + make -j${JOBS} actual-all + make DESTDIR=${SYSROOT_DIR} install popd -rm -rf ${BUILD_DIRECTORY}/emacs-28.2 +rm -rf ${BUILD_DIRECTORY}/emacs-29.1 diff --git a/loongarch64/scripts/step/base_support/emacs.info b/loongarch64/scripts/step/base_support/emacs.info index 3053c692..a7303e97 100644 --- a/loongarch64/scripts/step/base_support/emacs.info +++ b/loongarch64/scripts/step/base_support/emacs.info @@ -1 +1 @@ -emacs|28.2 +emacs|29.1 diff --git a/loongarch64/scripts/step/base_support/glslang b/loongarch64/scripts/step/base_support/glslang index 4d3e2a88..fb06f394 100644 --- a/loongarch64/scripts/step/base_support/glslang +++ b/loongarch64/scripts/step/base_support/glslang @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=glslang -export PACKAGE_VERSION=12.2.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/glslang/12.2.0/ -rm -rf ${BUILD_DIRECTORY}/glslang-12.2.0 -tar xvf ${DOWNLOADDIR}/glslang-12.2.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glslang-12.2.0 +export PACKAGE_VERSION=12.3.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/glslang/12.3.1/ +rm -rf ${BUILD_DIRECTORY}/glslang-12.3.1 +tar xvf ${DOWNLOADDIR}/glslang-12.3.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glslang-12.3.1 mkdir cross-build pushd cross-build @@ -38,4 +38,4 @@ pushd ${BUILD_DIRECTORY}/glslang-12.2.0 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/glslang-12.2.0 +rm -rf ${BUILD_DIRECTORY}/glslang-12.3.1 diff --git a/loongarch64/scripts/step/base_support/glslang.info b/loongarch64/scripts/step/base_support/glslang.info index 0cd49b72..3809643e 100644 --- a/loongarch64/scripts/step/base_support/glslang.info +++ b/loongarch64/scripts/step/base_support/glslang.info @@ -1 +1 @@ -glslang|12.2.0 +glslang|12.3.1 diff --git a/loongarch64/scripts/step/base_support/glu b/loongarch64/scripts/step/base_support/glu index 5a34fd3f..cf0ca1f6 100644 --- a/loongarch64/scripts/step/base_support/glu +++ b/loongarch64/scripts/step/base_support/glu @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=glu -export PACKAGE_VERSION=9.0.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/glu/9.0.2/ -rm -rf ${BUILD_DIRECTORY}/glu-9.0.2 -tar xvf ${DOWNLOADDIR}/glu-9.0.2.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glu-9.0.2 +export PACKAGE_VERSION=9.0.3 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/glu/9.0.3/ +rm -rf ${BUILD_DIRECTORY}/glu-9.0.3 +tar xvf ${DOWNLOADDIR}/glu-9.0.3.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glu-9.0.3 mkdir cross-build pushd cross-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/glu-9.0.2 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/glu-9.0.2 +rm -rf ${BUILD_DIRECTORY}/glu-9.0.3 diff --git a/loongarch64/scripts/step/base_support/glu.info b/loongarch64/scripts/step/base_support/glu.info index e2e5d2c8..e71f8a88 100644 --- a/loongarch64/scripts/step/base_support/glu.info +++ b/loongarch64/scripts/step/base_support/glu.info @@ -1 +1 @@ -glu|9.0.2 +glu|9.0.3 diff --git a/loongarch64/scripts/step/base_support/googletest b/loongarch64/scripts/step/base_support/googletest new file mode 100644 index 00000000..0afd7e21 --- /dev/null +++ b/loongarch64/scripts/step/base_support/googletest @@ -0,0 +1,41 @@ +source env/base_support/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=base_support +export STEP_PACKAGENAME=googletest +export PACKAGE_VERSION=1.13.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/googletest/1.13.0/ +rm -rf ${BUILD_DIRECTORY}/googletest-1.13.0 +tar xvf ${DOWNLOADDIR}/googletest-1.13.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/googletest-1.13.0 + + mkdir cross-build + pushd cross-build + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" \ + cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=${COMMON_DIR}/cmake-cross.cmake \ + -DPKG_CONFIG_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-pkg-config \ + -DGETTEXT_MSGFMT_EXECUTABLE=/bin/msgfmt \ + -DGETTEXT_MSGMERGE_EXECUTABLE=/bin/msgmerge \ + -DPython_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPython3_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPYTHON_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPYTHON3_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPERL_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-perl \ + -DRuby_EXECUTABLE=${CROSSTOOLS_DIR}/bin/ruby \ + -DGPERF_EXECUTABLE=/bin/gperf -DGperf_EXECUTABLE=/bin/gperf \ + -DDOXYGEN_EXECUTABLE=/bin/doxygen \ + -DWaylandScanner_EXECUTABLE=${CROSSTOOLS_DIR}/bin/wayland-scanner \ + -DQtWaylandScanner_EXECUTABLE=${CROSSTOOLS_DIR}/bin/qtwaylandscanner \ + -DLIBXML2_XMLLINT_EXECUTABLE=${CROSSTOOLS_DIR}/bin/xmllint \ + -DFLEX_EXECUTABLE=/bin/flex \ + -DBISON_EXECUTABLE=/bin/bison \ + -Dgzip_EXECUTABLE=/bin/gzip \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib64 -DLIB_SUFFIX=64 \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DBUILD_SHARED_LIBS=ON \ + -Wno-dev .. + eval ${MAKE_AND_INSTALL} + popd + rm -f ${SYSROOT_DIR}/usr/lib64/*.la +popd +rm -rf ${BUILD_DIRECTORY}/googletest-1.13.0 diff --git a/loongarch64/scripts/step/base_support/googletest.info b/loongarch64/scripts/step/base_support/googletest.info new file mode 100644 index 00000000..2d62d554 --- /dev/null +++ b/loongarch64/scripts/step/base_support/googletest.info @@ -0,0 +1 @@ +googletest|1.13.0 diff --git a/loongarch64/scripts/step/base_support/gst-plugins-base b/loongarch64/scripts/step/base_support/gst-plugins-base index fc2cb1be..fc2835c0 100644 --- a/loongarch64/scripts/step/base_support/gst-plugins-base +++ b/loongarch64/scripts/step/base_support/gst-plugins-base @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=gst-plugins-base -export PACKAGE_VERSION=1.22.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/gst-plugins-base/1.22.4/ -rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 -tar xvf ${DOWNLOADDIR}/gst-plugins-base-1.22.4.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 +export PACKAGE_VERSION=1.22.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/gst-plugins-base/1.22.5/ +rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.5 +tar xvf ${DOWNLOADDIR}/gst-plugins-base-1.22.5.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gst-plugins-base-1.22.5 mkdir cross-build pushd cross-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 +rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.5 diff --git a/loongarch64/scripts/step/base_support/gst-plugins-base.info b/loongarch64/scripts/step/base_support/gst-plugins-base.info index 1f7a54ca..6309d7f7 100644 --- a/loongarch64/scripts/step/base_support/gst-plugins-base.info +++ b/loongarch64/scripts/step/base_support/gst-plugins-base.info @@ -1 +1 @@ -gst-plugins-base|1.22.4 +gst-plugins-base|1.22.5 diff --git a/loongarch64/scripts/step/base_support/gstreamer b/loongarch64/scripts/step/base_support/gstreamer index 3e440610..ab677cbd 100644 --- a/loongarch64/scripts/step/base_support/gstreamer +++ b/loongarch64/scripts/step/base_support/gstreamer @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=gstreamer -export PACKAGE_VERSION=1.22.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/gstreamer/1.22.4/ -rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.4 -tar xvf ${DOWNLOADDIR}/gstreamer-1.22.4.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gstreamer-1.22.4 +export PACKAGE_VERSION=1.22.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/gstreamer/1.22.5/ +rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.5 +tar xvf ${DOWNLOADDIR}/gstreamer-1.22.5.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gstreamer-1.22.5 mkdir cross-build pushd cross-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/gstreamer-1.22.4 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.4 +rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.5 diff --git a/loongarch64/scripts/step/base_support/gstreamer.info b/loongarch64/scripts/step/base_support/gstreamer.info index 61e2a70d..2053da75 100644 --- a/loongarch64/scripts/step/base_support/gstreamer.info +++ b/loongarch64/scripts/step/base_support/gstreamer.info @@ -1 +1 @@ -gstreamer|1.22.4 +gstreamer|1.22.5 diff --git a/loongarch64/scripts/step/base_support/highlight b/loongarch64/scripts/step/base_support/highlight index fb34f035..690ad5a5 100644 --- a/loongarch64/scripts/step/base_support/highlight +++ b/loongarch64/scripts/step/base_support/highlight @@ -3,14 +3,14 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=highlight -export PACKAGE_VERSION=4.6 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/highlight/4.6/ -rm -rf ${BUILD_DIRECTORY}/highlight-4.6 -tar xvf ${DOWNLOADDIR}/highlight-4.6.tar.bz2 -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/highlight-4.6 +export PACKAGE_VERSION=4.7 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/highlight/4.7/ +rm -rf ${BUILD_DIRECTORY}/highlight-4.7 +tar xvf ${DOWNLOADDIR}/highlight-4.7.tar.bz2 -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/highlight-4.7 make -j${JOBS} CXX="${CROSS_TARGET}-g++" AR="${CROSS_TARGET}-ar" make -j${JOBS} CXX="${CROSS_TARGET}-g++" AR="${CROSS_TARGET}-ar" gui make CXX="${CROSS_TARGET}-g++" AR="${CROSS_TARGET}-ar" DESTDIR=${SYSROOT_DIR} install make CXX="${CROSS_TARGET}-g++" AR="${CROSS_TARGET}-ar" DESTDIR=${SYSROOT_DIR} install-gui popd -rm -rf ${BUILD_DIRECTORY}/highlight-4.6 +rm -rf ${BUILD_DIRECTORY}/highlight-4.7 diff --git a/loongarch64/scripts/step/base_support/highlight.info b/loongarch64/scripts/step/base_support/highlight.info index 40a0e6fb..24aaed55 100644 --- a/loongarch64/scripts/step/base_support/highlight.info +++ b/loongarch64/scripts/step/base_support/highlight.info @@ -1 +1 @@ -highlight|4.6 +highlight|4.7 diff --git a/loongarch64/scripts/step/base_support/highway b/loongarch64/scripts/step/base_support/highway new file mode 100644 index 00000000..f31cc60d --- /dev/null +++ b/loongarch64/scripts/step/base_support/highway @@ -0,0 +1,41 @@ +source env/base_support/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=base_support +export STEP_PACKAGENAME=highway +export PACKAGE_VERSION=1.0.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/highway/1.0.5/ +rm -rf ${BUILD_DIRECTORY}/highway-1.0.5 +tar xvf ${DOWNLOADDIR}/highway-1.0.5.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/highway-1.0.5 + + mkdir cross-build + pushd cross-build + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" \ + cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=${COMMON_DIR}/cmake-cross.cmake \ + -DPKG_CONFIG_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-pkg-config \ + -DGETTEXT_MSGFMT_EXECUTABLE=/bin/msgfmt \ + -DGETTEXT_MSGMERGE_EXECUTABLE=/bin/msgmerge \ + -DPython_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPython3_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPYTHON_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPYTHON3_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DPERL_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-perl \ + -DRuby_EXECUTABLE=${CROSSTOOLS_DIR}/bin/ruby \ + -DGPERF_EXECUTABLE=/bin/gperf -DGperf_EXECUTABLE=/bin/gperf \ + -DDOXYGEN_EXECUTABLE=/bin/doxygen \ + -DWaylandScanner_EXECUTABLE=${CROSSTOOLS_DIR}/bin/wayland-scanner \ + -DQtWaylandScanner_EXECUTABLE=${CROSSTOOLS_DIR}/bin/qtwaylandscanner \ + -DLIBXML2_XMLLINT_EXECUTABLE=${CROSSTOOLS_DIR}/bin/xmllint \ + -DFLEX_EXECUTABLE=/bin/flex \ + -DBISON_EXECUTABLE=/bin/bison \ + -Dgzip_EXECUTABLE=/bin/gzip \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib64 -DLIB_SUFFIX=64 \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DBUILD_SHARED_LIBS=ON \ + -Wno-dev .. + eval ${MAKE_AND_INSTALL} + popd + rm -f ${SYSROOT_DIR}/usr/lib64/*.la +popd +rm -rf ${BUILD_DIRECTORY}/highway-1.0.5 diff --git a/loongarch64/scripts/step/base_support/highway.info b/loongarch64/scripts/step/base_support/highway.info new file mode 100644 index 00000000..f0db9e96 --- /dev/null +++ b/loongarch64/scripts/step/base_support/highway.info @@ -0,0 +1 @@ +highway|1.0.5 diff --git a/loongarch64/scripts/step/base_support/lftp b/loongarch64/scripts/step/base_support/lftp new file mode 100644 index 00000000..8b62f9dd --- /dev/null +++ b/loongarch64/scripts/step/base_support/lftp @@ -0,0 +1,24 @@ +source env/base_support/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=base_support +export STEP_PACKAGENAME=lftp +export PACKAGE_VERSION=4.9.2 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/lftp/4.9.2/ +rm -rf ${BUILD_DIRECTORY}/lftp-4.9.2 +tar xvf ${DOWNLOADDIR}/lftp-4.9.2.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/lftp-4.9.2 + + for config_i in $(find -name "config.sub") + do + cp -a -f ${CROSSTOOLS_DIR}/share/automake*/config.* $(dirname ${config_i})/ + done + if [ ! -f configure ]; then + autoreconf -ifv + fi + ./configure ${COMMON_CONFIG} --with-readline=${SYSROOT_DIR} --with-zlib=${SYSROOT_DIR}/usr --enable-malloc0returnsnull + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" make -j${JOBS} + make DESTDIR=${SYSROOT_DIR} install + rm -f ${SYSROOT_DIR}/usr/lib64/*.la +popd +rm -rf ${BUILD_DIRECTORY}/lftp-4.9.2 diff --git a/loongarch64/scripts/step/base_support/lftp.info b/loongarch64/scripts/step/base_support/lftp.info new file mode 100644 index 00000000..a14c7fc9 --- /dev/null +++ b/loongarch64/scripts/step/base_support/lftp.info @@ -0,0 +1 @@ +lftp|4.9.2 diff --git a/loongarch64/scripts/step/base_support/libarchive b/loongarch64/scripts/step/base_support/libarchive index 4b36b7b9..cdaaf2b6 100644 --- a/loongarch64/scripts/step/base_support/libarchive +++ b/loongarch64/scripts/step/base_support/libarchive @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=libarchive -export PACKAGE_VERSION=3.6.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/libarchive/3.6.2/ -rm -rf ${BUILD_DIRECTORY}/libarchive-3.6.2 -tar xvf ${DOWNLOADDIR}/libarchive-3.6.2.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/libarchive-3.6.2 +export PACKAGE_VERSION=3.7.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/libarchive/3.7.1/ +rm -rf ${BUILD_DIRECTORY}/libarchive-3.7.1 +tar xvf ${DOWNLOADDIR}/libarchive-3.7.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/libarchive-3.7.1 sed -i "/linux\/fs.h/d" libarchive/archive_read_disk_posix.c ./configure ${COMMON_CONFIG} eval ${MAKE_AND_INSTALL} popd -rm -rf ${BUILD_DIRECTORY}/libarchive-3.6.2 +rm -rf ${BUILD_DIRECTORY}/libarchive-3.7.1 diff --git a/loongarch64/scripts/step/base_support/libarchive.info b/loongarch64/scripts/step/base_support/libarchive.info index c695d215..7ee8b575 100644 --- a/loongarch64/scripts/step/base_support/libarchive.info +++ b/loongarch64/scripts/step/base_support/libarchive.info @@ -1 +1 @@ -libarchive|3.6.2 +libarchive|3.7.1 diff --git a/loongarch64/scripts/step/base_support/libclc_git b/loongarch64/scripts/step/base_support/libclc_git new file mode 100644 index 00000000..66225fca --- /dev/null +++ b/loongarch64/scripts/step/base_support/libclc_git @@ -0,0 +1,41 @@ +source env/base_support/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=base_support +export STEP_PACKAGENAME=libclc_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/libclc_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + pushd libclc + sed -i "s@COMMAND prepare_builtins@COMMAND qemu-${ARCH_NAME} prepare_builtins@g" CMakeLists.txt + mkdir cross-build + pushd cross-build + CC="clang" CXX="clang++" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_SYSROOT=${SYSROOT_DIR} \ + -DCMAKE_FIND_ROOT_PATH=${SYSROOT_DIR}/usr \ + -DLLVM_CONFIG=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DLLVM_CLANG="${CROSSTOOLS_DIR}/bin/clang" \ + -DLLVM_AS="${CROSSTOOLS_DIR}/bin/llvm-as" \ + -DLLVM_LINK="${CROSSTOOLS_DIR}/bin/llvm-link" \ + -DLLVM_OPT="${CROSSTOOLS_DIR}/bin/opt" \ + -DLLVM_SPIRV="${CROSSTOOLS_DIR}/bin/llvm-spirv" \ + -DCMAKE_AR="${CROSSTOOLS_DIR}/bin/llvm-ar" \ + -DCMAKE_RANLIB="${CROSSTOOLS_DIR}/bin/llvm-ranlib" \ + -DPython3_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_RTTI:BOOL=ON \ + -DLLVM_ENABLE_ZLIB:BOOL=ON \ + -DCMAKE_MAKE_PROGRAM:PATH=${CROSSTOOLS_DIR}/bin/ninja \ + -DLLVM_ENABLE_TERMINFO:BOOL=OFF \ + -DLLVM_USE_SANITIZER:BOOL=ON \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON \ + -DLLVM_HOST_TRIPLE=${CROSS_TARGET} + eval ${NINJA_AND_INSTALL} + popd + popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/base_support/libclc_git.info b/loongarch64/scripts/step/base_support/libclc_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/base_support/libclc_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/base_support/mesa b/loongarch64/scripts/step/base_support/mesa index 92b33ad2..d42539ef 100644 --- a/loongarch64/scripts/step/base_support/mesa +++ b/loongarch64/scripts/step/base_support/mesa @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=mesa -export PACKAGE_VERSION=23.1.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/mesa/23.1.3/ -rm -rf ${BUILD_DIRECTORY}/mesa-23.1.3 -tar xvf ${DOWNLOADDIR}/mesa-23.1.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/mesa-23.1.3 +export PACKAGE_VERSION=23.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/mesa/23.2.0/ +rm -rf ${BUILD_DIRECTORY}/mesa-23.2.0 +tar xvf ${DOWNLOADDIR}/mesa-23.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/mesa-23.2.0 sed -i -e "/dep_wl_scanner/s@, native: true@@g" \ -e "/prog_wl_scanner/s@find_program\(.*\)\$@'wayland-scanner'@g" meson.build mkdir cross-build @@ -22,4 +22,4 @@ pushd ${BUILD_DIRECTORY}/mesa-23.1.3 eval ${NINJA_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/mesa-23.1.3 +rm -rf ${BUILD_DIRECTORY}/mesa-23.2.0 diff --git a/loongarch64/scripts/step/base_support/mesa.info b/loongarch64/scripts/step/base_support/mesa.info index 1ef8b59c..c0bc551e 100644 --- a/loongarch64/scripts/step/base_support/mesa.info +++ b/loongarch64/scripts/step/base_support/mesa.info @@ -1 +1 @@ -mesa|23.1.3 +mesa|23.2.0 diff --git a/loongarch64/scripts/step/base_support/mesa_git b/loongarch64/scripts/step/base_support/mesa_git new file mode 100644 index 00000000..8ce32a92 --- /dev/null +++ b/loongarch64/scripts/step/base_support/mesa_git @@ -0,0 +1,25 @@ +source env/base_support/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=base_support +export STEP_PACKAGENAME=mesa_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/mesa_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/mesa_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/mesa_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/mesa_git-main_git-default_git + sed -i -e "/dep_wl_scanner/s@, native: true@@g" \ + -e "/prog_wl_scanner/s@find_program\(.*\)\$@'wayland-scanner'@g" meson.build + mkdir cross-build + pushd cross-build + meson ${MESON_CONFIG} \ + -Dgallium-drivers="nouveau,r300,r600,radeonsi,etnaviv,swrast,virgl,zink" \ + -Dplatforms=x11,wayland \ + -Dglx=dri -Dopengl=true -Degl=enabled -Dglvnd=true -Dosmesa=true \ + -Dshared-glapi=enabled -Dgles2=enabled -Dgallium-vdpau=enabled -Dgallium-opencl=disabled \ + -Dlibunwind=disabled -Dvulkan-drivers="amd,swrast" \ + .. + eval ${NINJA_AND_INSTALL} + popd +popd +rm -rf ${BUILD_DIRECTORY}/mesa_git-main_git-default_git diff --git a/loongarch64/scripts/step/base_support/mesa_git.info b/loongarch64/scripts/step/base_support/mesa_git.info new file mode 100644 index 00000000..871e319e --- /dev/null +++ b/loongarch64/scripts/step/base_support/mesa_git.info @@ -0,0 +1 @@ +mesa_git|main_git-default diff --git a/loongarch64/scripts/step/base_support/mlt b/loongarch64/scripts/step/base_support/mlt index 35ed30a9..16a5cf9f 100644 --- a/loongarch64/scripts/step/base_support/mlt +++ b/loongarch64/scripts/step/base_support/mlt @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=mlt -export PACKAGE_VERSION=7.16.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/mlt/7.16.0/ -rm -rf ${BUILD_DIRECTORY}/mlt-7.16.0 -tar xvf ${DOWNLOADDIR}/mlt-7.16.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/mlt-7.16.0 +export PACKAGE_VERSION=7.18.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/mlt/7.18.0/ +rm -rf ${BUILD_DIRECTORY}/mlt-7.18.0 +tar xvf ${DOWNLOADDIR}/mlt-7.18.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/mlt-7.18.0 mkdir cross-build pushd cross-build @@ -42,4 +42,4 @@ pushd ${BUILD_DIRECTORY}/mlt-7.16.0 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/mlt-7.16.0 +rm -rf ${BUILD_DIRECTORY}/mlt-7.18.0 diff --git a/loongarch64/scripts/step/base_support/mlt.info b/loongarch64/scripts/step/base_support/mlt.info index 982e7be3..08d6d13e 100644 --- a/loongarch64/scripts/step/base_support/mlt.info +++ b/loongarch64/scripts/step/base_support/mlt.info @@ -1 +1 @@ -mlt|7.16.0 +mlt|7.18.0 diff --git a/loongarch64/scripts/step/base_support/nghttp2 b/loongarch64/scripts/step/base_support/nghttp2 index 8761354a..a0a546d1 100644 --- a/loongarch64/scripts/step/base_support/nghttp2 +++ b/loongarch64/scripts/step/base_support/nghttp2 @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=nghttp2 -export PACKAGE_VERSION=1.55.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/nghttp2/1.55.0/ -rm -rf ${BUILD_DIRECTORY}/nghttp2-1.55.0 -tar xvf ${DOWNLOADDIR}/nghttp2-1.55.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/nghttp2-1.55.0 +export PACKAGE_VERSION=1.55.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/nghttp2/1.55.1/ +rm -rf ${BUILD_DIRECTORY}/nghttp2-1.55.1 +tar xvf ${DOWNLOADDIR}/nghttp2-1.55.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/nghttp2-1.55.1 for config_i in $(find -name "config.sub") do @@ -21,4 +21,4 @@ pushd ${BUILD_DIRECTORY}/nghttp2-1.55.0 make DESTDIR=${SYSROOT_DIR} install rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/nghttp2-1.55.0 +rm -rf ${BUILD_DIRECTORY}/nghttp2-1.55.1 diff --git a/loongarch64/scripts/step/base_support/nghttp2.info b/loongarch64/scripts/step/base_support/nghttp2.info index f9fef59b..c396d813 100644 --- a/loongarch64/scripts/step/base_support/nghttp2.info +++ b/loongarch64/scripts/step/base_support/nghttp2.info @@ -1 +1 @@ -nghttp2|1.55.0 +nghttp2|1.55.1 diff --git a/loongarch64/scripts/step/base_support/node b/loongarch64/scripts/step/base_support/node index 7f399c0b..5221770f 100644 --- a/loongarch64/scripts/step/base_support/node +++ b/loongarch64/scripts/step/base_support/node @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=node -export PACKAGE_VERSION=20.4.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/node/20.4.0/ -rm -rf ${BUILD_DIRECTORY}/node-20.4.0 -tar xvf ${DOWNLOADDIR}/node-20.4.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/node-20.4.0 +export PACKAGE_VERSION=20.5.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/node/20.5.0/ +rm -rf ${BUILD_DIRECTORY}/node-20.5.0 +tar xvf ${DOWNLOADDIR}/node-20.5.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/node-20.5.0 sed -i "s@registry.npmjs.org@registry.loongnix.cn:5873@g" deps/npm/node_modules/@npmcli/config/lib/definitions/definitions.js mkdir -pv out/Release @@ -19,7 +19,7 @@ pushd ${BUILD_DIRECTORY}/node-20.4.0 done sed -i "/EXECUTABLE_SUFFIX/s@node_js2c<@node_js2c.host<@g" node.gyp PKG_CONFIG=${CROSS_TARGET}-pkg-config \ - CC="clang" CXX="clang++" \ + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" \ ./configure --prefix /usr --dest-cpu=$(echo ${ARCH_NAME} | sed 's@arch@@g') --shared-openssl \ --with-intl=system-icu --shared make -j${JOBS} -C out bytecode_builtins_list_generator gen-regexp-special-case torque @@ -35,4 +35,4 @@ pushd ${BUILD_DIRECTORY}/node-20.4.0 exit 1 fi popd -rm -rf ${BUILD_DIRECTORY}/node-20.4.0 +rm -rf ${BUILD_DIRECTORY}/node-20.5.0 diff --git a/loongarch64/scripts/step/base_support/node.info b/loongarch64/scripts/step/base_support/node.info index 40c3471c..486d9fcd 100644 --- a/loongarch64/scripts/step/base_support/node.info +++ b/loongarch64/scripts/step/base_support/node.info @@ -1 +1 @@ -node|20.4.0 +node|20.5.0 diff --git a/loongarch64/scripts/step/base_support/openldap b/loongarch64/scripts/step/base_support/openldap index 1b43ce6d..c81ab4a8 100644 --- a/loongarch64/scripts/step/base_support/openldap +++ b/loongarch64/scripts/step/base_support/openldap @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=openldap -export PACKAGE_VERSION=2.6.5 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/openldap/2.6.5/ -rm -rf ${BUILD_DIRECTORY}/openldap-2.6.5 -tar xvf ${DOWNLOADDIR}/openldap-2.6.5.tgz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/openldap-2.6.5 +export PACKAGE_VERSION=2.6.6 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/openldap/2.6.6/ +rm -rf ${BUILD_DIRECTORY}/openldap-2.6.6 +tar xvf ${DOWNLOADDIR}/openldap-2.6.6.tgz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/openldap-2.6.6 if [ ! -f configure ]; then autoreconf -ifv @@ -22,4 +22,4 @@ pushd ${BUILD_DIRECTORY}/openldap-2.6.5 make STRIP="${CROSS_TARGET}-strip" DESTDIR=${SYSROOT_DIR} install rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/openldap-2.6.5 +rm -rf ${BUILD_DIRECTORY}/openldap-2.6.6 diff --git a/loongarch64/scripts/step/base_support/openldap.info b/loongarch64/scripts/step/base_support/openldap.info index c00c1471..b55d22ff 100644 --- a/loongarch64/scripts/step/base_support/openldap.info +++ b/loongarch64/scripts/step/base_support/openldap.info @@ -1 +1 @@ -openldap|2.6.5 +openldap|2.6.6 diff --git a/loongarch64/scripts/step/base_support/perf b/loongarch64/scripts/step/base_support/perf index efe5a6f1..fd3fbd24 100644 --- a/loongarch64/scripts/step/base_support/perf +++ b/loongarch64/scripts/step/base_support/perf @@ -3,14 +3,14 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=perf -export PACKAGE_VERSION=6.4.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/perf/6.4.3/ -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 -tar xvf ${DOWNLOADDIR}/linux-6.4.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/linux-6.4.3 +export PACKAGE_VERSION=6.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/perf/6.5/ +rm -rf ${BUILD_DIRECTORY}/linux_git-6.5_git +tar xvf ${DOWNLOADDIR}/linux_git-6.5_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/linux_git-6.5_git pushd tools/perf make -j${JOBS} ARCH=${ARCH_FAMILY} CROSS_COMPILE=${CROSS_TARGET}- NO_LIBTRACEEVENT=1 cp -a perf ${SYSROOT_DIR}/usr/bin/ popd popd -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 +rm -rf ${BUILD_DIRECTORY}/linux_git-6.5_git diff --git a/loongarch64/scripts/step/base_support/perf.info b/loongarch64/scripts/step/base_support/perf.info index 0328b936..8d0039e4 100644 --- a/loongarch64/scripts/step/base_support/perf.info +++ b/loongarch64/scripts/step/base_support/perf.info @@ -1 +1 @@ -linux|6.4.3 +linux_git|6.5 diff --git a/loongarch64/scripts/step/base_support/pipewire b/loongarch64/scripts/step/base_support/pipewire index 1a9b2286..b4fc9d69 100644 --- a/loongarch64/scripts/step/base_support/pipewire +++ b/loongarch64/scripts/step/base_support/pipewire @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=pipewire -export PACKAGE_VERSION=0.3.74 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/pipewire/0.3.74/ -rm -rf ${BUILD_DIRECTORY}/pipewire-0.3.74 -tar xvf ${DOWNLOADDIR}/pipewire-0.3.74.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/pipewire-0.3.74 +export PACKAGE_VERSION=0.3.76 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/pipewire/0.3.76/ +rm -rf ${BUILD_DIRECTORY}/pipewire-0.3.76 +tar xvf ${DOWNLOADDIR}/pipewire-0.3.76.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/pipewire-0.3.76 mkdir cross-build pushd cross-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/pipewire-0.3.74 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/pipewire-0.3.74 +rm -rf ${BUILD_DIRECTORY}/pipewire-0.3.76 diff --git a/loongarch64/scripts/step/base_support/pipewire.info b/loongarch64/scripts/step/base_support/pipewire.info index 1e0dfc0c..b52ac4c6 100644 --- a/loongarch64/scripts/step/base_support/pipewire.info +++ b/loongarch64/scripts/step/base_support/pipewire.info @@ -1 +1 @@ -pipewire|0.3.74 +pipewire|0.3.76 diff --git a/loongarch64/scripts/step/base_support/samba b/loongarch64/scripts/step/base_support/samba index ee574497..400002eb 100644 --- a/loongarch64/scripts/step/base_support/samba +++ b/loongarch64/scripts/step/base_support/samba @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=samba -export PACKAGE_VERSION=4.18.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/samba/4.18.4/ -rm -rf ${BUILD_DIRECTORY}/samba-4.18.4 -tar xvf ${DOWNLOADDIR}/samba-4.18.4.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/samba-4.18.4 +export PACKAGE_VERSION=4.18.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/samba/4.18.5/ +rm -rf ${BUILD_DIRECTORY}/samba-4.18.5 +tar xvf ${DOWNLOADDIR}/samba-4.18.5.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/samba-4.18.5 for config_i in $(find -name "config.sub") do @@ -26,4 +26,4 @@ pushd ${BUILD_DIRECTORY}/samba-4.18.4 -i ${SYSROOT_DIR}/etc/samba/smb.conf.default rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/samba-4.18.4 +rm -rf ${BUILD_DIRECTORY}/samba-4.18.5 diff --git a/loongarch64/scripts/step/base_support/samba.info b/loongarch64/scripts/step/base_support/samba.info index 7290556c..38a4ecda 100644 --- a/loongarch64/scripts/step/base_support/samba.info +++ b/loongarch64/scripts/step/base_support/samba.info @@ -1 +1 @@ -samba|4.18.4 +samba|4.18.5 diff --git a/loongarch64/scripts/step/base_support/sphinx b/loongarch64/scripts/step/base_support/sphinx index 9afd16a0..d851da47 100644 --- a/loongarch64/scripts/step/base_support/sphinx +++ b/loongarch64/scripts/step/base_support/sphinx @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=sphinx -export PACKAGE_VERSION=7.0.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/sphinx/7.0.1/ -rm -rf ${BUILD_DIRECTORY}/sphinx-7.0.1 -tar xvf ${DOWNLOADDIR}/sphinx-7.0.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/sphinx-7.0.1 +export PACKAGE_VERSION=7.1.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/sphinx/7.1.1/ +rm -rf ${BUILD_DIRECTORY}/sphinx-7.1.1 +tar xvf ${DOWNLOADDIR}/sphinx-7.1.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/sphinx-7.1.1 _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__linux_${CROSS_TARGET} ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata__linux_${CROSS_TARGET} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --ignore-installed --no-user sphinx --root=${SYSROOT_DIR} --prefix=/usr popd -rm -rf ${BUILD_DIRECTORY}/sphinx-7.0.1 +rm -rf ${BUILD_DIRECTORY}/sphinx-7.1.1 diff --git a/loongarch64/scripts/step/base_support/sphinx.info b/loongarch64/scripts/step/base_support/sphinx.info index ab8a0341..24ab5c53 100644 --- a/loongarch64/scripts/step/base_support/sphinx.info +++ b/loongarch64/scripts/step/base_support/sphinx.info @@ -1 +1 @@ -sphinx|7.0.1 +sphinx|7.1.1 diff --git a/loongarch64/scripts/step/base_support/systemd b/loongarch64/scripts/step/base_support/systemd index f895a78a..73d1be84 100644 --- a/loongarch64/scripts/step/base_support/systemd +++ b/loongarch64/scripts/step/base_support/systemd @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=systemd -export PACKAGE_VERSION=254-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/systemd/254-default/ -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git -tar xvf ${DOWNLOADDIR}/systemd-254-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/systemd-254-default_git +export PACKAGE_VERSION=254 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/systemd/254/ +rm -rf ${BUILD_DIRECTORY}/systemd-254 +tar xvf ${DOWNLOADDIR}/systemd-254.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/systemd-254 pushd src/basic python3 missing_syscalls.py missing_syscall_def.h $(ls syscalls-*.txt) @@ -48,4 +48,4 @@ password required pam_deny.so EOF popd -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git +rm -rf ${BUILD_DIRECTORY}/systemd-254 diff --git a/loongarch64/scripts/step/base_support/systemd.info b/loongarch64/scripts/step/base_support/systemd.info index ac0e4883..fd0cbc5b 100644 --- a/loongarch64/scripts/step/base_support/systemd.info +++ b/loongarch64/scripts/step/base_support/systemd.info @@ -1 +1 @@ -systemd|254-default +systemd|254 diff --git a/loongarch64/scripts/step/base_support/xwayland b/loongarch64/scripts/step/base_support/xwayland index 3e8dbdb0..c4fb85e1 100644 --- a/loongarch64/scripts/step/base_support/xwayland +++ b/loongarch64/scripts/step/base_support/xwayland @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=xwayland -export PACKAGE_VERSION=23.1.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/xwayland/23.1.2/ -rm -rf ${BUILD_DIRECTORY}/xwayland-23.1.2 -tar xvf ${DOWNLOADDIR}/xwayland-23.1.2.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/xwayland-23.1.2 +export PACKAGE_VERSION=23.1.99.901 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/xwayland/23.1.99.901/ +rm -rf ${BUILD_DIRECTORY}/xwayland-23.1.99.901 +tar xvf ${DOWNLOADDIR}/xwayland-23.1.99.901.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/xwayland-23.1.99.901 sed -i -e "/scanner_dep/s@, native: true@@g" \ -e "/scanner =/s@find_program\(.*\)\$@find_program('wayland-scanner')@g" \ hw/xwayland/meson.build @@ -20,4 +20,4 @@ pushd ${BUILD_DIRECTORY}/xwayland-23.1.2 popd mkdir -pv ${SYSROOT_DIR}/etc/X11/xorg.conf.d popd -rm -rf ${BUILD_DIRECTORY}/xwayland-23.1.2 +rm -rf ${BUILD_DIRECTORY}/xwayland-23.1.99.901 diff --git a/loongarch64/scripts/step/base_support/xwayland.info b/loongarch64/scripts/step/base_support/xwayland.info index a0c004c4..22563ced 100644 --- a/loongarch64/scripts/step/base_support/xwayland.info +++ b/loongarch64/scripts/step/base_support/xwayland.info @@ -1 +1 @@ -xwayland|23.1.2 +xwayland|23.1.99.901 diff --git a/loongarch64/scripts/step/base_support/xxHash b/loongarch64/scripts/step/base_support/xxHash index 26b93e07..a657b0f0 100644 --- a/loongarch64/scripts/step/base_support/xxHash +++ b/loongarch64/scripts/step/base_support/xxHash @@ -3,12 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=base_support export STEP_PACKAGENAME=xxHash -export PACKAGE_VERSION=0.8.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/xxHash/0.8.1/ -rm -rf ${BUILD_DIRECTORY}/xxHash-0.8.1 -tar xvf ${DOWNLOADDIR}/xxHash-0.8.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/xxHash-0.8.1 +export PACKAGE_VERSION=0.8.2 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/base_support/xxHash/0.8.2/ +rm -rf ${BUILD_DIRECTORY}/xxHash-0.8.2 +tar xvf ${DOWNLOADDIR}/xxHash-0.8.2.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/xxHash-0.8.2 make -j${JOBS} CC=${CROSS_TARGET}-gcc PREFIX=/usr LIBDIR=/usr/lib64 make CC=${CROSS_TARGET}-gcc PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=${SYSROOT_DIR} install popd -rm -rf ${BUILD_DIRECTORY}/xxHash-0.8.1 +rm -rf ${BUILD_DIRECTORY}/xxHash-0.8.2 diff --git a/loongarch64/scripts/step/base_support/xxHash.info b/loongarch64/scripts/step/base_support/xxHash.info index 7a96bb48..7c74235a 100644 --- a/loongarch64/scripts/step/base_support/xxHash.info +++ b/loongarch64/scripts/step/base_support/xxHash.info @@ -1 +1 @@ -xxHash|0.8.1 +xxHash|0.8.2 diff --git a/loongarch64/scripts/step/boot/linux-kernel b/loongarch64/scripts/step/boot/linux-kernel index 42e516c5..14ba07be 100644 --- a/loongarch64/scripts/step/boot/linux-kernel +++ b/loongarch64/scripts/step/boot/linux-kernel @@ -3,21 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=boot export STEP_PACKAGENAME=linux-kernel -export PACKAGE_VERSION=6.4.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/boot/linux-kernel/6.4.3/ -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 -tar xvf ${DOWNLOADDIR}/linux-6.4.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/linux-6.4.3 - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0001-double-tty-VT-screenbuf-for-univt.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0002-Add-several-function-for-Univt.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0003-UniVT-Fix-charcount-size-to-65536.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0004-UniVT-Add-a-old_screen_size-variable-saves-the-origi.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0005-Univt-Add-support-for-writing-UTF-8-encoding.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0006-UniVT-Add-support-for-displaying-UTF-8-text.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0007-UniVT-Support-displaying-UTF-8-text-for-90-degree-ro.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0008-UniVT-Support-displaying-UTF-8-text-for-180-degree-r.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0009-UniVT-Support-displaying-UTF-8-text-for-270-degree-r.patch - patch -Np1 -i ${SYSDIR}/files/boot/linux-kernel/6.4.3/patches/0001-UniVT-Add-Chinese-fonts-support-in-console.patch +export PACKAGE_VERSION=6.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/boot/linux-kernel/6.5/ +rm -rf ${BUILD_DIRECTORY}/linux_git-6.5_git +tar xvf ${DOWNLOADDIR}/linux_git-6.5_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/linux_git-6.5_git make mrproper cp -af ${RESOURCEDIR}/linux-config-6 ./.config @@ -31,4 +21,4 @@ pushd ${BUILD_DIRECTORY}/linux-6.4.3 cp -af arch/${ARCH_FAMILY}/boot/vmlinux.efi ${SYSROOT_DIR}/boot/vmlinux.efi echo "$(ls dest/lib/modules/)" > ${COMMON_DIR}/linux-kernel.version popd -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 +rm -rf ${BUILD_DIRECTORY}/linux_git-6.5_git diff --git a/loongarch64/scripts/step/boot/linux-kernel.info b/loongarch64/scripts/step/boot/linux-kernel.info index 0328b936..8d0039e4 100644 --- a/loongarch64/scripts/step/boot/linux-kernel.info +++ b/loongarch64/scripts/step/boot/linux-kernel.info @@ -1 +1 @@ -linux|6.4.3 +linux_git|6.5 diff --git a/loongarch64/scripts/step/bootstrap/rust-bootstrap b/loongarch64/scripts/step/bootstrap/rust-bootstrap index 484caeb3..0a38b452 100644 --- a/loongarch64/scripts/step/bootstrap/rust-bootstrap +++ b/loongarch64/scripts/step/bootstrap/rust-bootstrap @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=bootstrap export STEP_PACKAGENAME=rust-bootstrap -export PACKAGE_VERSION=1.70.0-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/bootstrap/rust-bootstrap/1.70.0-default/ -rm -rf ${BUILD_DIRECTORY}/rust-1.70.0-x86_64-unknown-linux-gnu -tar xvf ${DOWNLOADDIR}/rust-1.70.0-x86_64-unknown-linux-gnu.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/rust-1.70.0-x86_64-unknown-linux-gnu +export PACKAGE_VERSION=1.71.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/bootstrap/rust-bootstrap/1.71.0-default/ +rm -rf ${BUILD_DIRECTORY}/rust-1.71.0-x86_64-unknown-linux-gnu +tar xvf ${DOWNLOADDIR}/rust-1.71.0-x86_64-unknown-linux-gnu.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/rust-1.71.0-x86_64-unknown-linux-gnu ./install.sh --destdir=${CROSSTOOLS_DIR}/rust popd -rm -rf ${BUILD_DIRECTORY}/rust-1.70.0-x86_64-unknown-linux-gnu +rm -rf ${BUILD_DIRECTORY}/rust-1.71.0-x86_64-unknown-linux-gnu diff --git a/loongarch64/scripts/step/bootstrap/rust-bootstrap.info b/loongarch64/scripts/step/bootstrap/rust-bootstrap.info index 752966e6..82148e47 100644 --- a/loongarch64/scripts/step/bootstrap/rust-bootstrap.info +++ b/loongarch64/scripts/step/bootstrap/rust-bootstrap.info @@ -1 +1 @@ -rust-bootstrap|1.70.0-default +rust-bootstrap|1.71.0-default diff --git a/loongarch64/scripts/step/computer_language/dune b/loongarch64/scripts/step/computer_language/dune index 710324c9..08de947a 100644 --- a/loongarch64/scripts/step/computer_language/dune +++ b/loongarch64/scripts/step/computer_language/dune @@ -3,15 +3,15 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=computer_language export STEP_PACKAGENAME=dune -export PACKAGE_VERSION=3.9.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/computer_language/dune/3.9.1/ -rm -rf ${BUILD_DIRECTORY}/dune-3.9.1 -tar xvf ${DOWNLOADDIR}/dune-3.9.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/dune-3.9.1 - patch -Np1 -i ${SYSDIR}/files/computer_language/dune/3.9.1/patches/0001-dune-fix-for-cross-build.patch +export PACKAGE_VERSION=3.10.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/computer_language/dune/3.10.0/ +rm -rf ${BUILD_DIRECTORY}/dune-3.10.0 +tar xvf ${DOWNLOADDIR}/dune-3.10.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/dune-3.10.0 + patch -Np1 -i ${SYSDIR}/files/computer_language/dune/3.10.0/patches/0001-dune-fix-for-cross-build.patch PATH=${CROSSTOOLS_DIR}/ocaml-cross/bin:${PATH} dune build -p ordering,stdune,xdg,dyn,dune-rpc,chrome-trace,dune-build-info,ocamlc-loc,dune-private-libs,dune-site,dune-action-plugin,dune-glob,dune dune install --prefix /usr --docdir /usr/share/doc --destdir ${SYSROOT_DIR} dune popd -rm -rf ${BUILD_DIRECTORY}/dune-3.9.1 +rm -rf ${BUILD_DIRECTORY}/dune-3.10.0 diff --git a/loongarch64/scripts/step/computer_language/dune.info b/loongarch64/scripts/step/computer_language/dune.info index 7b90fea8..990b71a3 100644 --- a/loongarch64/scripts/step/computer_language/dune.info +++ b/loongarch64/scripts/step/computer_language/dune.info @@ -1 +1 @@ -dune|3.9.1 +dune|3.10.0 diff --git a/loongarch64/scripts/step/computer_language/rustc b/loongarch64/scripts/step/computer_language/rustc index 681b14c0..f8ad8733 100644 --- a/loongarch64/scripts/step/computer_language/rustc +++ b/loongarch64/scripts/step/computer_language/rustc @@ -3,17 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=computer_language export STEP_PACKAGENAME=rustc -export PACKAGE_VERSION=1.70.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/computer_language/rustc/1.70.0/ -rm -rf ${BUILD_DIRECTORY}/rustc-1.70.0-src -tar xvf ${DOWNLOADDIR}/rustc-1.70.0-src.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/rustc-1.70.0-src - patch -Np1 -i ${SYSDIR}/files/computer_language/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch - patch -Np1 -i ${SYSDIR}/files/computer_language/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch - - cargo update -p cargo - find vendor -name .cargo-checksum.json \ - -exec sed -i.uncheck -e 's/"files":{[^}]*}/"files":{ }/' '{}' '+' +export PACKAGE_VERSION=1.71.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/computer_language/rustc/1.71.0/ +rm -rf ${BUILD_DIRECTORY}/rustc-1.71.0-src +tar xvf ${DOWNLOADDIR}/rustc-1.71.0-src.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/rustc-1.71.0-src + LDFLAGS="" \ PKG_CONFIG_SYSROOT_DIR="" \ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ @@ -36,7 +31,7 @@ pushd ${BUILD_DIRECTORY}/rustc-1.70.0-src LOONGARCH64_UNKNOWN_LINUX_GNU_OPENSSL_INCLUDE_DIR=${SYSROOT_DIR}/usr/include \ LOONGARCH64_UNKNOWN_LINUX_GNU_OPENSSL_LIB_DIR=${SYSROOT_DIR}/usr/lib64 \ dist - mkdir -pv ${DIST_DIRECTORY}/host/${ARCH_NAME}/rust/$(echo "1.70.0" | sed "s@-default@@g")/ - find build/dist -name "*.xz" -exec mv -v '{}' ${DIST_DIRECTORY}/host/${ARCH_NAME}/rust/$(echo "1.70.0" | sed "s@-default@@g")/ ';' + mkdir -pv ${DIST_DIRECTORY}/host/${ARCH_NAME}/rust/$(echo "1.71.0" | sed "s@-default@@g")/ + find build/dist -name "*.xz" -exec mv -v '{}' ${DIST_DIRECTORY}/host/${ARCH_NAME}/rust/$(echo "1.71.0" | sed "s@-default@@g")/ ';' popd -rm -rf ${BUILD_DIRECTORY}/rustc-1.70.0-src +rm -rf ${BUILD_DIRECTORY}/rustc-1.71.0-src diff --git a/loongarch64/scripts/step/computer_language/rustc.info b/loongarch64/scripts/step/computer_language/rustc.info index 33216ddb..5599bad5 100644 --- a/loongarch64/scripts/step/computer_language/rustc.info +++ b/loongarch64/scripts/step/computer_language/rustc.info @@ -1 +1 @@ -rustc|1.70.0 +rustc|1.71.0 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-binutils b/loongarch64/scripts/step/cross-toolchains/i686-binutils new file mode 100644 index 00000000..822f5967 --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-binutils @@ -0,0 +1,22 @@ +source env/cross-toolchains/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-toolchains +export STEP_PACKAGENAME=i686-binutils +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/i686-binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 + rm -rf gdb* libdecnumber readline sim + mkdir -p tools-build + pushd tools-build + CC=gcc AR=ar AS=as CFLAGS=$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${CFLAGS} -Wno-error=dangling-pointer" || echo "${CFLAGS}") \ + ../configure --prefix=${PREFIX}/${X86_HOST} --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${X86_HOST} + make -j${JOBS} configure-host + make -j${JOBS} + make install-strip + popd +popd +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-binutils.info b/loongarch64/scripts/step/cross-toolchains/i686-binutils.info new file mode 100644 index 00000000..4ed7db63 --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-binutils.info @@ -0,0 +1 @@ +binutils|2.41 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-gcc b/loongarch64/scripts/step/cross-toolchains/i686-gcc new file mode 100644 index 00000000..1f6a80a8 --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-gcc @@ -0,0 +1,29 @@ +source env/cross-toolchains/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-toolchains +export STEP_PACKAGENAME=i686-gcc +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/i686-gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + mkdir -p tools-build + pushd tools-build + AR=ar LDFLAGS="-Wl,-rpath,${CROSS_TOOLS_PREFIX}/lib" \ + ../configure --prefix=${PREFIX}/${X86_HOST} --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${X86_HOST} --disable-nls \ + --with-mpfr=${CROSSTOOLS_DIR} --with-gmp=${CROSSTOOLS_DIR} \ + --with-mpc=${CROSSTOOLS_DIR} \ + --with-newlib --disable-shared \ + --enable-default-pie --disable-multilib \ + --with-sysroot=${SYSROOT_DIR}/usr/lib/i686/sys-root \ + --disable-decimal-float --disable-libgomp --disable-libitm \ + --disable-libsanitizer --disable-libquadmath --disable-threads \ + --disable-target-zlib --with-system-zlib --enable-checking=release \ + --enable-languages=c + make -j${JOBS} all-gcc all-target-libgcc + make install-strip-gcc install-strip-target-libgcc + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-gcc-glibc b/loongarch64/scripts/step/cross-toolchains/i686-gcc-glibc new file mode 100644 index 00000000..4b1dd79d --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-gcc-glibc @@ -0,0 +1,24 @@ +source env/cross-toolchains/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-toolchains +export STEP_PACKAGENAME=i686-gcc-glibc +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/i686-gcc-glibc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + mkdir -p tools-build-all + pushd tools-build-all + ../configure --prefix=${PREFIX}/${X86_HOST} --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${X86_HOST} --disable-nls \ + --with-mpfr=${CROSSTOOLS_DIR} --with-gmp=${CROSSTOOLS_DIR} \ + --with-mpc=${CROSSTOOLS_DIR} \ + --with-sysroot=${SYSROOT_DIR}/usr/lib/i686/sys-root \ + --with-system-zlib --disable-multilib \ + --enable-languages=c,c++,fortran,objc,obj-c++,lto + make -j${JOBS} + make install-strip + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-gcc-glibc.info b/loongarch64/scripts/step/cross-toolchains/i686-gcc-glibc.info new file mode 100644 index 00000000..55677779 --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-gcc-glibc.info @@ -0,0 +1 @@ +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-gcc.info b/loongarch64/scripts/step/cross-toolchains/i686-gcc.info new file mode 100644 index 00000000..55677779 --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-gcc.info @@ -0,0 +1 @@ +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-pkg-config b/loongarch64/scripts/step/cross-toolchains/i686-pkg-config new file mode 100644 index 00000000..bd2f4bf3 --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-pkg-config @@ -0,0 +1,18 @@ +source env/cross-toolchains/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-toolchains +export STEP_PACKAGENAME=i686-pkg-config +export PACKAGE_VERSION=0.29.2 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/i686-pkg-config/0.29.2/ +rm -rf ${BUILD_DIRECTORY}/pkg-config-0.29.2 +tar xvf ${DOWNLOADDIR}/pkg-config-0.29.2.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/pkg-config-0.29.2 + + ./configure --prefix=${PREFIX}/${X86_HOST} --build=${CROSS_HOST} \ + --host=${CROSS_HOST} --target=${X86_HOST} \ + --with-pc_path=${SYSROOT_DIR}/usr/lib/i686/sys-root/usr/lib/pkgconfig --program-prefix=${X86_HOST}- --with-internal-glib --disable-host-tool + make -j${JOBS} + make install +popd +rm -rf ${BUILD_DIRECTORY}/pkg-config-0.29.2 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-pkg-config.info b/loongarch64/scripts/step/cross-toolchains/i686-pkg-config.info new file mode 100644 index 00000000..595ce448 --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-pkg-config.info @@ -0,0 +1 @@ +pkg-config|0.29.2 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-qemu b/loongarch64/scripts/step/cross-toolchains/i686-qemu new file mode 100644 index 00000000..645ec24b --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-qemu @@ -0,0 +1,27 @@ +source env/cross-toolchains/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-toolchains +export STEP_PACKAGENAME=i686-qemu +export PACKAGE_VERSION=8.0.3 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/i686-qemu/8.0.3/ +rm -rf ${BUILD_DIRECTORY}/qemu-8.0.3 +tar xvf ${DOWNLOADDIR}/qemu-8.0.3.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/qemu-8.0.3 + mkdir -p build + pushd build + ../configure --prefix=${PREFIX}/${X86_HOST} --target-list=i386-linux-user --static + ninja + cp qemu-i386 ${PREFIX}/${X86_HOST}/bin/qemu-i386.bin + popd + echo "#!/bin/bash -e +${PREFIX}/${X86_HOST}/bin/qemu-i386.bin -L ${SYSROOT_DIR}/usr/lib/i686/sys-root \"\$@\"" \ +> ${PREFIX}/${X86_HOST}/bin/qemu-i386 + +echo "#!/bin/bash -e +${PREFIX}/${X86_HOST}/bin/qemu-i386.bin -L ${SYSROOT_DIR}/usr/lib/i686/sys-root -E LD_TRACE_LOADED_OBJECTS=1 \"\$@\"" \ +> ${PREFIX}/${X86_HOST}/bin/qemu-i386-ldd + +chmod +x ${PREFIX}/${X86_HOST}/bin/qemu-i386{,-ldd} +popd +rm -rf ${BUILD_DIRECTORY}/qemu-8.0.3 diff --git a/loongarch64/scripts/step/cross-toolchains/i686-qemu.info b/loongarch64/scripts/step/cross-toolchains/i686-qemu.info new file mode 100644 index 00000000..86f240aa --- /dev/null +++ b/loongarch64/scripts/step/cross-toolchains/i686-qemu.info @@ -0,0 +1 @@ +qemu|8.0.3 diff --git a/loongarch64/scripts/step/cross-toolchains/mingw-binutils b/loongarch64/scripts/step/cross-toolchains/mingw-binutils index 122b21f1..adf8ebff 100644 --- a/loongarch64/scripts/step/cross-toolchains/mingw-binutils +++ b/loongarch64/scripts/step/cross-toolchains/mingw-binutils @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-toolchains export STEP_PACKAGENAME=mingw-binutils -export PACKAGE_VERSION=2.40 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/mingw-binutils/2.40/ -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 -tar xvf ${DOWNLOADDIR}/binutils-2.40.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils-2.40 +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/mingw-binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 rm -rf gdb* libdecnumber readline sim mkdir -p tools-build pushd tools-build @@ -19,4 +19,4 @@ pushd ${BUILD_DIRECTORY}/binutils-2.40 make install-strip popd popd -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/cross-toolchains/mingw-binutils.info b/loongarch64/scripts/step/cross-toolchains/mingw-binutils.info index fe7b49e2..4ed7db63 100644 --- a/loongarch64/scripts/step/cross-toolchains/mingw-binutils.info +++ b/loongarch64/scripts/step/cross-toolchains/mingw-binutils.info @@ -1 +1 @@ -binutils|2.40 +binutils|2.41 diff --git a/loongarch64/scripts/step/cross-toolchains/mingw-gcc b/loongarch64/scripts/step/cross-toolchains/mingw-gcc index b695cab9..f58dca5c 100644 --- a/loongarch64/scripts/step/cross-toolchains/mingw-gcc +++ b/loongarch64/scripts/step/cross-toolchains/mingw-gcc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-toolchains export STEP_PACKAGENAME=mingw-gcc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/mingw-gcc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/mingw-gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 mkdir -p tools-build pushd tools-build AR=ar LDFLAGS="-Wl,-rpath,${CROSS_TOOLS_PREFIX}/lib" \ @@ -25,4 +25,4 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 make install-strip-gcc popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc b/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc index 17241a1c..188905e6 100644 --- a/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc +++ b/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-toolchains export STEP_PACKAGENAME=mingw-gcc-glibc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/mingw-gcc-glibc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/mingw-gcc-glibc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 mkdir -p tools-build-all pushd tools-build-all ../configure --prefix=${PREFIX}/${MINGW_HOST} --build=${CROSS_HOST} --host=${CROSS_HOST} \ @@ -21,4 +21,4 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 make install-strip popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc.info b/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc.info +++ b/loongarch64/scripts/step/cross-toolchains/mingw-gcc-glibc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/mingw-gcc.info b/loongarch64/scripts/step/cross-toolchains/mingw-gcc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/cross-toolchains/mingw-gcc.info +++ b/loongarch64/scripts/step/cross-toolchains/mingw-gcc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/x86_64-binutils b/loongarch64/scripts/step/cross-toolchains/x86_64-binutils index e119e29d..4b60b8c3 100644 --- a/loongarch64/scripts/step/cross-toolchains/x86_64-binutils +++ b/loongarch64/scripts/step/cross-toolchains/x86_64-binutils @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-toolchains export STEP_PACKAGENAME=x86_64-binutils -export PACKAGE_VERSION=2.41-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/x86_64-binutils/2.41-default/ -rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git -tar xvf ${DOWNLOADDIR}/binutils_git-2.41-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils_git-2.41-default_git +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/x86_64-binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 rm -rf gdb* libdecnumber readline sim mkdir -p tools-build pushd tools-build @@ -19,4 +19,4 @@ pushd ${BUILD_DIRECTORY}/binutils_git-2.41-default_git make install-strip popd popd -rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/cross-toolchains/x86_64-binutils.info b/loongarch64/scripts/step/cross-toolchains/x86_64-binutils.info index 97f76bb3..4ed7db63 100644 --- a/loongarch64/scripts/step/cross-toolchains/x86_64-binutils.info +++ b/loongarch64/scripts/step/cross-toolchains/x86_64-binutils.info @@ -1 +1 @@ -binutils_git|2.41-default +binutils|2.41 diff --git a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc index adc9aabd..163a9921 100644 --- a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc +++ b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-toolchains export STEP_PACKAGENAME=x86_64-gcc -export PACKAGE_VERSION=14.0.0-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/x86_64-gcc/14.0.0-default/ -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git -tar xvf ${DOWNLOADDIR}/gcc_git-14.0.0-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/x86_64-gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 mkdir -p tools-build pushd tools-build AR=ar LDFLAGS="-Wl,-rpath,${CROSS_TOOLS_PREFIX}/lib" \ @@ -26,4 +26,4 @@ pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git make install-strip-gcc install-strip-target-libgcc popd popd -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc index 812ab053..e7db9505 100644 --- a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc +++ b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-toolchains export STEP_PACKAGENAME=x86_64-gcc-glibc -export PACKAGE_VERSION=14.0.0-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/x86_64-gcc-glibc/14.0.0-default/ -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git -tar xvf ${DOWNLOADDIR}/gcc_git-14.0.0-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-toolchains/x86_64-gcc-glibc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 mkdir -p tools-build-all pushd tools-build-all ../configure --prefix=${PREFIX}/${X86_64_HOST} --build=${CROSS_HOST} --host=${CROSS_HOST} \ @@ -21,4 +21,4 @@ pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git make install-strip popd popd -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc.info b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc.info index 21756cd8..55677779 100644 --- a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc.info +++ b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc-glibc.info @@ -1 +1 @@ -gcc_git|14.0.0-default +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc.info b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc.info index 21756cd8..55677779 100644 --- a/loongarch64/scripts/step/cross-toolchains/x86_64-gcc.info +++ b/loongarch64/scripts/step/cross-toolchains/x86_64-gcc.info @@ -1 +1 @@ -gcc_git|14.0.0-default +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator b/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator index b9c5b088..87883054 100644 --- a/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator +++ b/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator @@ -3,20 +3,20 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-tools export STEP_PACKAGENAME=SPIRV-LLVM-Translator -export PACKAGE_VERSION=16.0.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/SPIRV-LLVM-Translator/16.0.0/ -rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0 -tar xvf ${DOWNLOADDIR}/SPIRV-LLVM-Translator-16.0.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0 +export PACKAGE_VERSION=16.0.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/SPIRV-LLVM-Translator/16.0.0-default/ +rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0-default_git +tar xvf ${DOWNLOADDIR}/SPIRV-LLVM-Translator-16.0.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0-default_git tar xvf ${RESOURCEDIR}/files/SPIRV-LLVM-Translator-headers_git.tar.gz mkdir -p build pushd build cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=${CROSSTOOLS_DIR} \ -DCMAKE_INSTALL_RPATH="${CROSSTOOLS_DIR}/lib64;\\\${ORIGIN}/../lib64" \ - -DBUILD_SHARED_LIBS=OFF -DCCACHE_ALLOWED=OFF \ + -DBUILD_SHARED_LIBS=OFF -DCCACHE_ALLOWED=OFF -DBASE_LLVM_VERSION="18.0.0" \ -DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR=${PWD}/../SPIRV-LLVM-Translator-headers_git -Wno-dev .. eval ${MAKE_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0 +rm -rf ${BUILD_DIRECTORY}/SPIRV-LLVM-Translator-16.0.0-default_git diff --git a/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator.info b/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator.info index 365f35e6..5bc69e45 100644 --- a/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator.info +++ b/loongarch64/scripts/step/cross-tools/SPIRV-LLVM-Translator.info @@ -1 +1 @@ -SPIRV-LLVM-Translator|16.0.0 +SPIRV-LLVM-Translator|16.0.0-default diff --git a/loongarch64/scripts/step/cross-tools/binutils b/loongarch64/scripts/step/cross-tools/binutils index 75c6b916..4d0ffdfb 100644 --- a/loongarch64/scripts/step/cross-tools/binutils +++ b/loongarch64/scripts/step/cross-tools/binutils @@ -3,11 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-tools export STEP_PACKAGENAME=binutils -export PACKAGE_VERSION=2.40 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/binutils/2.40/ -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 -tar xvf ${DOWNLOADDIR}/binutils-2.40.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils-2.40 +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 + patch -Np1 -i ${SYSDIR}/files/cross-tools/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch + rm -rf gdb* libdecnumber readline sim mkdir -p tools-build pushd tools-build @@ -21,4 +23,4 @@ pushd ${BUILD_DIRECTORY}/binutils-2.40 cp -v ../include/libiberty.h ${SYSDIR}/sysroot/usr/include popd popd -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/cross-tools/binutils.info b/loongarch64/scripts/step/cross-tools/binutils.info index fe7b49e2..4ed7db63 100644 --- a/loongarch64/scripts/step/cross-tools/binutils.info +++ b/loongarch64/scripts/step/cross-tools/binutils.info @@ -1 +1 @@ -binutils|2.40 +binutils|2.41 diff --git a/loongarch64/scripts/step/cross-tools/binutils_git b/loongarch64/scripts/step/cross-tools/binutils_git new file mode 100644 index 00000000..57635321 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/binutils_git @@ -0,0 +1,26 @@ +source env/cross-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-tools +export STEP_PACKAGENAME=binutils_git +export PACKAGE_VERSION=2.41-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/binutils_git/2.41-default/ +rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git +tar xvf ${DOWNLOADDIR}/binutils_git-2.41-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils_git-2.41-default_git + patch -Np1 -i ${SYSDIR}/files/cross-tools/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch + + rm -rf gdb* libdecnumber readline sim + mkdir -p tools-build + pushd tools-build + CC=gcc AR=ar AS=as CFLAGS=$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${CFLAGS} -Wno-error=dangling-pointer" || echo "${CFLAGS}") \ + ../configure --prefix=${CROSSTOOLS_DIR} --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${CROSS_TARGET} --with-sysroot=${SYSROOT_DIR} --disable-nls \ + --disable-static --enable-64-bit-bfd + make -j${JOBS} configure-host + make -j${JOBS} + make install-strip + cp -v ../include/libiberty.h ${SYSDIR}/sysroot/usr/include + popd +popd +rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git diff --git a/loongarch64/scripts/step/cross-tools/binutils_git.info b/loongarch64/scripts/step/cross-tools/binutils_git.info new file mode 100644 index 00000000..97f76bb3 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/binutils_git.info @@ -0,0 +1 @@ +binutils_git|2.41-default diff --git a/loongarch64/scripts/step/cross-tools/clang_git b/loongarch64/scripts/step/cross-tools/clang_git new file mode 100644 index 00000000..4f043220 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/clang_git @@ -0,0 +1,30 @@ +source env/cross-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-tools +export STEP_PACKAGENAME=clang_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/clang_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +pushd clang + mkdir -p native-build + pushd native-build + LDFLAGS="" PKG_CONFIG_SYSROOT_DIR="" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX:PATH=${CROSSTOOLS_DIR} \ + -DCMAKE_CXX_COMPILER="g++" -DCMAKE_C_COMPILER="gcc" \ + -DBUILD_SHARED_LIBS:BOOL=OFF \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_RPATH="${CROSSTOOLS_DIR}/lib64;\\\${ORIGIN}/../lib64" \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ + -DLLVM_INCLUDE_TESTS=OFF \ + -DDEFAULT_SYSROOT:PATH="${SYSROOT_DIR}" + ninja + ninja install + cp -av bin/clang-tblgen ${CROSSTOOLS_DIR}/bin/ +popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/cross-tools/clang_git.info b/loongarch64/scripts/step/cross-tools/clang_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/clang_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/cross-tools/gcc b/loongarch64/scripts/step/cross-tools/gcc index c4af720a..de9bf3de 100644 --- a/loongarch64/scripts/step/cross-tools/gcc +++ b/loongarch64/scripts/step/cross-tools/gcc @@ -3,11 +3,14 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-tools export STEP_PACKAGENAME=gcc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/gcc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + patch -Np1 -i ${SYSDIR}/files/cross-tools/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + patch -Np1 -i ${SYSDIR}/files/cross-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch + mkdir -p tools-build-all pushd tools-build-all ../configure --prefix=${CROSSTOOLS_DIR} --build=${CROSS_HOST} \ @@ -22,4 +25,4 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 make install-strip popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-tools/gcc.info b/loongarch64/scripts/step/cross-tools/gcc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/cross-tools/gcc.info +++ b/loongarch64/scripts/step/cross-tools/gcc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-tools/gcc_git b/loongarch64/scripts/step/cross-tools/gcc_git new file mode 100644 index 00000000..c9384405 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/gcc_git @@ -0,0 +1,29 @@ +source env/cross-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-tools +export STEP_PACKAGENAME=gcc_git +export PACKAGE_VERSION=13.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/gcc_git/13.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git +tar xvf ${DOWNLOADDIR}/gcc_git-13.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git + patch -Np1 -i ${SYSDIR}/files/cross-tools/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + patch -Np1 -i ${SYSDIR}/files/cross-tools/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch + + mkdir -p tools-build-all + pushd tools-build-all + ../configure --prefix=${CROSSTOOLS_DIR} --build=${CROSS_HOST} \ + --host=${CROSS_HOST} --target=${CROSS_TARGET} \ + --with-sysroot=${SYSROOT_DIR} --with-mpfr=${CROSSTOOLS_DIR} \ + --with-gmp=${CROSSTOOLS_DIR} --with-mpc=${CROSSTOOLS_DIR} \ + --enable-__cxa_atexit --enable-threads=posix --with-system-zlib \ + --enable-libstdcxx-time --enable-checking=release --disable-multilib \ + --enable-default-pie \ + --enable-default-lsx \ + --enable-languages=c,c++,fortran,objc,obj-c++,lto + make -j${JOBS} + make install-strip + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git diff --git a/loongarch64/scripts/step/cross-tools/gcc_git.info b/loongarch64/scripts/step/cross-tools/gcc_git.info new file mode 100644 index 00000000..86f7b4da --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/gcc_git.info @@ -0,0 +1 @@ +gcc_git|13.1.0-default diff --git a/loongarch64/scripts/step/cross-tools/gcc_git_nolibc b/loongarch64/scripts/step/cross-tools/gcc_git_nolibc new file mode 100644 index 00000000..ce6ee609 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/gcc_git_nolibc @@ -0,0 +1,28 @@ +source env/cross-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-tools +export STEP_PACKAGENAME=gcc_git_nolibc +export PACKAGE_VERSION=13.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/gcc_git_nolibc/13.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git +tar xvf ${DOWNLOADDIR}/gcc_git-13.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git + mkdir -p tools-build + pushd tools-build + AR=ar LDFLAGS="-Wl,-rpath,${CROSSTOOLS_DIR}/lib" \ + ../configure --prefix=${CROSSTOOLS_DIR} --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${CROSS_TARGET} --disable-nls \ + --with-mpfr=${CROSSTOOLS_DIR} --with-gmp=${CROSSTOOLS_DIR} \ + --with-mpc=${CROSSTOOLS_DIR} \ + --with-newlib --disable-shared --with-sysroot=${SYSROOT_DIR} \ + --disable-decimal-float --disable-libgomp --disable-libitm \ + --disable-libsanitizer --disable-libquadmath --disable-threads \ + --disable-target-zlib --with-system-zlib --enable-checking=release \ + --enable-default-pie \ + --enable-languages=c + make -j${JOBS} all-gcc all-target-libgcc + make install-strip-gcc install-strip-target-libgcc + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git diff --git a/loongarch64/scripts/step/cross-tools/gcc_git_nolibc.info b/loongarch64/scripts/step/cross-tools/gcc_git_nolibc.info new file mode 100644 index 00000000..86f7b4da --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/gcc_git_nolibc.info @@ -0,0 +1 @@ +gcc_git|13.1.0-default diff --git a/loongarch64/scripts/step/cross-tools/gcc_nolibc b/loongarch64/scripts/step/cross-tools/gcc_nolibc index 2368feac..33d1a39e 100644 --- a/loongarch64/scripts/step/cross-tools/gcc_nolibc +++ b/loongarch64/scripts/step/cross-tools/gcc_nolibc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=cross-tools export STEP_PACKAGENAME=gcc_nolibc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/gcc_nolibc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/gcc_nolibc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 mkdir -p tools-build pushd tools-build AR=ar LDFLAGS="-Wl,-rpath,${CROSSTOOLS_DIR}/lib" \ @@ -25,4 +25,4 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 make install-strip-gcc install-strip-target-libgcc popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/cross-tools/gcc_nolibc.info b/loongarch64/scripts/step/cross-tools/gcc_nolibc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/cross-tools/gcc_nolibc.info +++ b/loongarch64/scripts/step/cross-tools/gcc_nolibc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/cross-tools/lld_git b/loongarch64/scripts/step/cross-tools/lld_git new file mode 100644 index 00000000..0e84d7b0 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/lld_git @@ -0,0 +1,29 @@ +source env/cross-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-tools +export STEP_PACKAGENAME=lld_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/lld_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + +pushd lld + mkdir -p native-build + pushd native-build + LDFLAGS="" PKG_CONFIG_SYSROOT_DIR="" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX:PATH=${CROSSTOOLS_DIR} \ + -DCMAKE_CXX_COMPILER="clang++" -DCMAKE_C_COMPILER="clang" \ + -DBUILD_SHARED_LIBS:BOOL=OFF \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_RPATH="${CROSSTOOLS_DIR}/lib64;\\\${ORIGIN}/../lib64" \ + -DCMAKE_C_FLAGS="-DNDEBUG --target=${CROSS_HOST} --sysroot=/" -DCMAKE_CXX_FLAGS="-DNDEBUG --target=${CROSS_HOST} --sysroot=/" \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ + -DDEFAULT_SYSROOT:PATH="${SYSROOT_DIR}" + ninja + ninja install +popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/cross-tools/lld_git.info b/loongarch64/scripts/step/cross-tools/lld_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/lld_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/cross-tools/llvm-project_git b/loongarch64/scripts/step/cross-tools/llvm-project_git new file mode 100644 index 00000000..64de4138 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/llvm-project_git @@ -0,0 +1,33 @@ +source env/cross-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-tools +export STEP_PACKAGENAME=llvm-project_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/llvm-project_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + +pushd llvm + mkdir -p native-build + pushd native-build + LDFLAGS="" PKG_CONFIG_SYSROOT_DIR="" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX:PATH=${CROSSTOOLS_DIR} \ + -DCMAKE_CXX_COMPILER="g++" -DCMAKE_C_COMPILER="gcc" \ + -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_LIBCXX:BOOL=OFF \ + -DLLVM_ENABLE_TERMINFO:BOOL=OFF \ + -DLLVM_ENABLE_RTTI:BOOL=ON -DLLVM_BUILD_LLVM_DYLIB:BOOL=ON \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON \ + -DCMAKE_INSTALL_RPATH="${CROSSTOOLS_DIR}/lib64;\\\${ORIGIN}/../lib64" \ + -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=ON \ + -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ + -DLLVM_DEFAULT_TARGET_TRIPLE=${CROSS_TARGET} + ninja + ninja install +popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/cross-tools/llvm-project_git.info b/loongarch64/scripts/step/cross-tools/llvm-project_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/llvm-project_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/cross-tools/ocaml b/loongarch64/scripts/step/cross-tools/ocaml new file mode 100644 index 00000000..8ac068e0 --- /dev/null +++ b/loongarch64/scripts/step/cross-tools/ocaml @@ -0,0 +1,67 @@ +source env/cross-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=cross-tools +export STEP_PACKAGENAME=ocaml +export PACKAGE_VERSION=5.0.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/cross-tools/ocaml/5.0.0/ +rm -rf ${BUILD_DIRECTORY}/ocaml-5.0.0 +tar xvf ${DOWNLOADDIR}/ocaml-5.0.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/ocaml-5.0.0 + patch -Np1 -i ${SYSDIR}/files/cross-tools/ocaml/5.0.0/patches/ocaml-5.0.0-add-loongarch64-support.patch + + cp ${CROSSTOOLS_DIR}/share/automake*/config.* build-aux/ + autoconf + ./configure --host=${CROSS_TARGET} --prefix=${CROSSTOOLS_DIR}/ocaml-cross --libdir=${SYSROOT_DIR}/usr/lib64/ocaml + make -j${JOBS} runtime/sak SAK_CC=cc SAK_CFLAGS= SAK_LINK='cc -o $(1) $(2)' + make -j${JOBS} ocamlopt ocamlc OCAMLRUN=ocamlrun NEW_OCAMLRUN=ocamlrun CAMLC="`which ocamlc`" + make -j${JOBS} -C tools ocamlmklib OCAMLRUN=ocamlrun NEW_OCAMLRUN=ocamlrun CAMLC="`which ocamlc`" + make -j${JOBS} boot/ocamlruns + make -j${JOBS} runtime + make -j${JOBS} -C stdlib OCAMLRUN=ocamlrun COMPILER="${PWD}/boot/ocamlc" + make -j${JOBS} coldstart OCAMLRUN=ocamlrun NEW_OCAMLRUN=ocamlrun + make -j${JOBS} runtime/libasmrun.a runtime/libasmrund.a runtime/libasmruni.a runtime/libasmrun_pic.a + for i in library otherlibs opt ocamlnat ocaml ocamldoc ocamldebugger + do + make -j${JOBS} $i \ + OCAMLRUN=ocamlrun NEW_OCAMLRUN=ocamlrun \ + OPTCOMPILER="${PWD}/ocamlopt" \ + MKLIB="ocamlrun \"${PWD}/tools/ocamlmklib\"" \ + OCAMLYACC=ocamlyacc + done + make -j${JOBS} -C tools ocamlmktop ocamlmktop.opt othertools OCAMLRUN=ocamlrun NEW_OCAMLRUN=ocamlrun CAMLC="`which ocamlc`" + mv boot/ocamlrun{,.orig} + echo "qemu-loongarch64 ${PWD}/boot/ocamlrun.orig \"\$@\"" > boot/ocamlrun + chmod +x boot/ocamlrun + make DESTDIR=${PWD}/dest install + mkdir -p ${CROSSTOOLS_DIR}/ocaml-cross/bin.orig/ + cp -a ${PWD}/dest/${CROSSTOOLS_DIR}/ocaml-cross/bin/ocaml* ${CROSSTOOLS_DIR}/ocaml-cross/bin.orig/ +popd +rm -rf ${BUILD_DIRECTORY}/ocaml-5.0.0 + +mkdir -p ${CROSSTOOLS_DIR}/ocaml-cross/bin/ + +cat >"${CROSSTOOLS_DIR}/ocaml-cross/bin/ocaml" <"${CROSSTOOLS_DIR}/ocaml-cross/bin/${bin}" <"${CROSSTOOLS_DIR}/ocaml-cross/bin/${bin}" < mozconfig << "EOF" @@ -93,4 +86,4 @@ EOF ln -sfv ${SYSROOT_DIR}/usr/lib64/firefox/browser/chrome/icons/default/default128.png \ ${SYSROOT_DIR}/usr/share/pixmaps/firefox.png popd -rm -rf ${BUILD_DIRECTORY}/firefox-115.0.2 +rm -rf ${BUILD_DIRECTORY}/firefox-116.0 diff --git a/loongarch64/scripts/step/desktop-app/firefox.info b/loongarch64/scripts/step/desktop-app/firefox.info index eb277b84..fde6aad1 100644 --- a/loongarch64/scripts/step/desktop-app/firefox.info +++ b/loongarch64/scripts/step/desktop-app/firefox.info @@ -1 +1 @@ -firefox|115.0.2 +firefox|116.0 diff --git a/loongarch64/scripts/step/desktop-app/thunderbird b/loongarch64/scripts/step/desktop-app/thunderbird index 31f4f207..56d6ddea 100644 --- a/loongarch64/scripts/step/desktop-app/thunderbird +++ b/loongarch64/scripts/step/desktop-app/thunderbird @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=desktop-app export STEP_PACKAGENAME=thunderbird -export PACKAGE_VERSION=115.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/desktop-app/thunderbird/115.0/ -rm -rf ${BUILD_DIRECTORY}/thunderbird-115.0 -tar xvf ${DOWNLOADDIR}/thunderbird-115.0.source.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/thunderbird-115.0 +export PACKAGE_VERSION=115.0.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/desktop-app/thunderbird/115.0.1/ +rm -rf ${BUILD_DIRECTORY}/thunderbird-115.0.1 +tar xvf ${DOWNLOADDIR}/thunderbird-115.0.1.source.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/thunderbird-115.0.1 mkdir -pv mozbuild/l10n-central pushd mozbuild/l10n-central unzip ${RESOURCEDIR}/files/tip.zip @@ -17,11 +17,12 @@ pushd ${BUILD_DIRECTORY}/thunderbird-115.0 cp -a ${SYSROOT_DIR}/usr/lib/python3.11/site-packages/Jinja2-*-info third_party/python/Jinja2/ cp -a ${SYSROOT_DIR}/usr/lib/python3.11/site-packages/jinja2 third_party/python/Jinja2/ sed -i "/MarkupSafe/s@2.0.1@2.1.3@g" third_party/python/glean_parser/glean_parser-7*.dist-info/METADATA - patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0/patches/0001-thunderbird-115-add-loongarch-support.patch - patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0/patches/firefox-110-fix-rust.patch - patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0/patches/0001_xpcom_add_loongarch64_support.patch - patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0/patches/firefox-100-for-clfs.patch - patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0/patches/0001-thunderbird-116.0-fix-for-gcc13.patch + patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0.1/patches/0001-thunderbird-115-add-loongarch-support.patch + patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0.1/patches/firefox-110-fix-rust.patch + patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0.1/patches/0001_xpcom_add_loongarch64_support.patch + patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0.1/patches/firefox-100-for-clfs.patch + patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0.1/patches/0001-thunderbird-116.0-fix-for-gcc13.patch + patch -Np1 -i ${SYSDIR}/files/desktop-app/thunderbird/115.0.1/patches/0001-fixed-a-judgment-issue-when-libstdc-has-multiple-ver.patch find third_party/rust/ -name .cargo-checksum.json \ -exec sed -i.uncheck -e 's/"files":{[^}]*}/"files":{ }/' '{}' '+' @@ -109,4 +110,4 @@ ln -sfv ${SYSROOT_DIR}/usr/lib64/thunderbird/chrome/icons/default/default256.png ${SYSROOT_DIR}/usr/share/pixmaps/thunderbird.png popd -rm -rf ${BUILD_DIRECTORY}/thunderbird-115.0 +rm -rf ${BUILD_DIRECTORY}/thunderbird-115.0.1 diff --git a/loongarch64/scripts/step/desktop-app/thunderbird.info b/loongarch64/scripts/step/desktop-app/thunderbird.info index ee629ed0..6e5f9825 100644 --- a/loongarch64/scripts/step/desktop-app/thunderbird.info +++ b/loongarch64/scripts/step/desktop-app/thunderbird.info @@ -1 +1 @@ -thunderbird|115.0 +thunderbird|115.0.1 diff --git a/loongarch64/scripts/step/host-tools/Markdown b/loongarch64/scripts/step/host-tools/Markdown index 4dc427d1..a1c75fb3 100644 --- a/loongarch64/scripts/step/host-tools/Markdown +++ b/loongarch64/scripts/step/host-tools/Markdown @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=Markdown -export PACKAGE_VERSION=3.4.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/Markdown/3.4.3/ -rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.3 -tar xvf ${DOWNLOADDIR}/Markdown-3.4.3.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/Markdown-3.4.3 +export PACKAGE_VERSION=3.4.4 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/Markdown/3.4.4/ +rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.4 +tar xvf ${DOWNLOADDIR}/Markdown-3.4.4.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/Markdown-3.4.4 ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --force-reinstall --no-user Markdown popd -rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.3 +rm -rf ${BUILD_DIRECTORY}/Markdown-3.4.4 diff --git a/loongarch64/scripts/step/host-tools/Markdown.info b/loongarch64/scripts/step/host-tools/Markdown.info index 60d1fb0e..60fe539c 100644 --- a/loongarch64/scripts/step/host-tools/Markdown.info +++ b/loongarch64/scripts/step/host-tools/Markdown.info @@ -1 +1 @@ -Markdown|3.4.3 +Markdown|3.4.4 diff --git a/loongarch64/scripts/step/host-tools/binutils b/loongarch64/scripts/step/host-tools/binutils new file mode 100644 index 00000000..6f9b0476 --- /dev/null +++ b/loongarch64/scripts/step/host-tools/binutils @@ -0,0 +1,22 @@ +source env/host-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=host-tools +export STEP_PACKAGENAME=binutils +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 + + rm -rf gdb* libdecnumber readline sim + mkdir -pv build + pushd build + export PATH=/usr/bin + ../configure --prefix=${CROSSTOOLS_DIR} --enable-shared --disable-werror \ + --with-system-zlib --enable-64-bit-bfd + make -j${JOBS} + make install + popd +popd +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/host-tools/binutils.info b/loongarch64/scripts/step/host-tools/binutils.info new file mode 100644 index 00000000..4ed7db63 --- /dev/null +++ b/loongarch64/scripts/step/host-tools/binutils.info @@ -0,0 +1 @@ +binutils|2.41 diff --git a/loongarch64/scripts/step/host-tools/certifi b/loongarch64/scripts/step/host-tools/certifi index 10cdd31e..68beb034 100644 --- a/loongarch64/scripts/step/host-tools/certifi +++ b/loongarch64/scripts/step/host-tools/certifi @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=certifi -export PACKAGE_VERSION=2023.5.7 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/certifi/2023.5.7/ -rm -rf ${BUILD_DIRECTORY}/certifi-2023.5.7 -tar xvf ${DOWNLOADDIR}/certifi-2023.5.7.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/certifi-2023.5.7 +export PACKAGE_VERSION=2023.7.22 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/certifi/2023.7.22/ +rm -rf ${BUILD_DIRECTORY}/certifi-2023.7.22 +tar xvf ${DOWNLOADDIR}/certifi-2023.7.22.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/certifi-2023.7.22 ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --force-reinstall --no-user certifi popd -rm -rf ${BUILD_DIRECTORY}/certifi-2023.5.7 +rm -rf ${BUILD_DIRECTORY}/certifi-2023.7.22 diff --git a/loongarch64/scripts/step/host-tools/certifi.info b/loongarch64/scripts/step/host-tools/certifi.info index 88a091ab..771675de 100644 --- a/loongarch64/scripts/step/host-tools/certifi.info +++ b/loongarch64/scripts/step/host-tools/certifi.info @@ -1 +1 @@ -certifi|2023.5.7 +certifi|2023.7.22 diff --git a/loongarch64/scripts/step/host-tools/cmake b/loongarch64/scripts/step/host-tools/cmake index 8af4c5fa..ffff75f4 100644 --- a/loongarch64/scripts/step/host-tools/cmake +++ b/loongarch64/scripts/step/host-tools/cmake @@ -3,12 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=cmake -export PACKAGE_VERSION=3.26.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/cmake/3.26.4/ -rm -rf ${BUILD_DIRECTORY}/cmake-3.26.4 -tar xvf ${DOWNLOADDIR}/cmake-3.26.4.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/cmake-3.26.4 - patch -Np1 -i ${SYSDIR}/files/host-tools/cmake/3.26.4/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch +export PACKAGE_VERSION=3.27.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/cmake/3.27.1/ +rm -rf ${BUILD_DIRECTORY}/cmake-3.27.1 +tar xvf ${DOWNLOADDIR}/cmake-3.27.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/cmake-3.27.1 + patch -Np1 -i ${SYSDIR}/files/host-tools/cmake/3.27.1/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch mkdir -p native-build pushd native-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/cmake-3.26.4 eval ${MAKE_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/cmake-3.26.4 +rm -rf ${BUILD_DIRECTORY}/cmake-3.27.1 diff --git a/loongarch64/scripts/step/host-tools/cmake.info b/loongarch64/scripts/step/host-tools/cmake.info index 2c890021..4d8a2743 100644 --- a/loongarch64/scripts/step/host-tools/cmake.info +++ b/loongarch64/scripts/step/host-tools/cmake.info @@ -1 +1 @@ -cmake|3.26.4 +cmake|3.27.1 diff --git a/loongarch64/scripts/step/host-tools/dune b/loongarch64/scripts/step/host-tools/dune index 18cd30ba..8ea1a613 100644 --- a/loongarch64/scripts/step/host-tools/dune +++ b/loongarch64/scripts/step/host-tools/dune @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=dune -export PACKAGE_VERSION=3.9.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/dune/3.9.1/ -rm -rf ${BUILD_DIRECTORY}/dune-3.9.1 -tar xvf ${DOWNLOADDIR}/dune-3.9.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/dune-3.9.1 +export PACKAGE_VERSION=3.10.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/dune/3.10.0/ +rm -rf ${BUILD_DIRECTORY}/dune-3.10.0 +tar xvf ${DOWNLOADDIR}/dune-3.10.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/dune-3.10.0 ./configure --mandir=${CROSSTOOLS_DIR}/share/man --docdir=${CROSSTOOLS_DIR}/share/doc --etcdir=${CROSSTOOLS_DIR}/etc --datadir=${CROSSTOOLS_DIR}/share --sbindir=${CROSSTOOLS_DIR}/sbin --bindir=${CROSSTOOLS_DIR}/bin --libexecdir=${CROSSTOOLS_DIR}/libexec --libdir=${CROSSTOOLS_DIR}/lib make -j${JOBS} release make install popd -rm -rf ${BUILD_DIRECTORY}/dune-3.9.1 +rm -rf ${BUILD_DIRECTORY}/dune-3.10.0 diff --git a/loongarch64/scripts/step/host-tools/dune.info b/loongarch64/scripts/step/host-tools/dune.info index 7b90fea8..990b71a3 100644 --- a/loongarch64/scripts/step/host-tools/dune.info +++ b/loongarch64/scripts/step/host-tools/dune.info @@ -1 +1 @@ -dune|3.9.1 +dune|3.10.0 diff --git a/loongarch64/scripts/step/host-tools/file b/loongarch64/scripts/step/host-tools/file index 144862df..b536fe6f 100644 --- a/loongarch64/scripts/step/host-tools/file +++ b/loongarch64/scripts/step/host-tools/file @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=file -export PACKAGE_VERSION=5.44 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/file/5.44/ -rm -rf ${BUILD_DIRECTORY}/file-5.44 -tar xvf ${DOWNLOADDIR}/file-5.44.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/file-5.44 +export PACKAGE_VERSION=5.45 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/file/5.45/ +rm -rf ${BUILD_DIRECTORY}/file-5.45 +tar xvf ${DOWNLOADDIR}/file-5.45.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/file-5.45 ./configure --prefix=${CROSSTOOLS_DIR} eval ${MAKE_AND_INSTALL} popd -rm -rf ${BUILD_DIRECTORY}/file-5.44 +rm -rf ${BUILD_DIRECTORY}/file-5.45 diff --git a/loongarch64/scripts/step/host-tools/file.info b/loongarch64/scripts/step/host-tools/file.info index 91a9b20d..fb67b1dd 100644 --- a/loongarch64/scripts/step/host-tools/file.info +++ b/loongarch64/scripts/step/host-tools/file.info @@ -1 +1 @@ -file|5.44 +file|5.45 diff --git a/loongarch64/scripts/step/host-tools/gcc b/loongarch64/scripts/step/host-tools/gcc new file mode 100644 index 00000000..99e33900 --- /dev/null +++ b/loongarch64/scripts/step/host-tools/gcc @@ -0,0 +1,29 @@ +source env/host-tools/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=host-tools +export STEP_PACKAGENAME=gcc +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + patch -Np1 -i ${SYSDIR}/files/host-tools/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + patch -Np1 -i ${SYSDIR}/files/host-tools/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch + + sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in + mkdir -pv build + pushd build + ../configure --prefix=${CROSSTOOLS_DIR} \ + --enable-__cxa_atexit --enable-threads=posix \ + --with-system-zlib --enable-libstdcxx-time \ + --enable-checking=release \ + --disable-multilib \ + --enable-shared --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array \ + --enable-languages=c,c++,fortran,objc,obj-c++,lto + make -j${JOBS} + make install-strip + ln -sfv gcc ${CROSSTOOLS_DIR}/bin/cc + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/host-tools/gcc.info b/loongarch64/scripts/step/host-tools/gcc.info new file mode 100644 index 00000000..55677779 --- /dev/null +++ b/loongarch64/scripts/step/host-tools/gcc.info @@ -0,0 +1 @@ +gcc|13.2.0 diff --git a/loongarch64/scripts/step/host-tools/glean-parser b/loongarch64/scripts/step/host-tools/glean-parser index bc42839d..c18d0f48 100644 --- a/loongarch64/scripts/step/host-tools/glean-parser +++ b/loongarch64/scripts/step/host-tools/glean-parser @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=glean-parser -export PACKAGE_VERSION=7.2.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/glean-parser/7.2.1/ -rm -rf ${BUILD_DIRECTORY}/glean_parser-7.2.1 -tar xvf ${DOWNLOADDIR}/glean_parser-7.2.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glean_parser-7.2.1 +export PACKAGE_VERSION=8.1.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/glean-parser/8.1.0/ +rm -rf ${BUILD_DIRECTORY}/glean_parser-8.1.0 +tar xvf ${DOWNLOADDIR}/glean_parser-8.1.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glean_parser-8.1.0 ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --force-reinstall --no-user glean-parser popd -rm -rf ${BUILD_DIRECTORY}/glean_parser-7.2.1 +rm -rf ${BUILD_DIRECTORY}/glean_parser-8.1.0 diff --git a/loongarch64/scripts/step/host-tools/glean-parser.info b/loongarch64/scripts/step/host-tools/glean-parser.info index 88ad2e4e..0c70a478 100644 --- a/loongarch64/scripts/step/host-tools/glean-parser.info +++ b/loongarch64/scripts/step/host-tools/glean-parser.info @@ -1 +1 @@ -glean-parser|7.2.1 +glean-parser|8.1.0 diff --git a/loongarch64/scripts/step/host-tools/glib b/loongarch64/scripts/step/host-tools/glib index 8864fcb5..2554e403 100644 --- a/loongarch64/scripts/step/host-tools/glib +++ b/loongarch64/scripts/step/host-tools/glib @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=glib -export PACKAGE_VERSION=2.77.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/glib/2.77.0/ -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 -tar xvf ${DOWNLOADDIR}/glib-2.77.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glib-2.77.0 +export PACKAGE_VERSION=2.77.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/glib/2.77.1/ +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 +tar xvf ${DOWNLOADDIR}/glib-2.77.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glib-2.77.1 mkdir -p native-build pushd native-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/glib-2.77.0 ninja install popd popd -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 diff --git a/loongarch64/scripts/step/host-tools/glib.info b/loongarch64/scripts/step/host-tools/glib.info index a52bf26b..d0cbf3c3 100644 --- a/loongarch64/scripts/step/host-tools/glib.info +++ b/loongarch64/scripts/step/host-tools/glib.info @@ -1 +1 @@ -glib|2.77.0 +glib|2.77.1 diff --git a/loongarch64/scripts/step/host-tools/glslang b/loongarch64/scripts/step/host-tools/glslang index c64fccf6..9d007405 100644 --- a/loongarch64/scripts/step/host-tools/glslang +++ b/loongarch64/scripts/step/host-tools/glslang @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=glslang -export PACKAGE_VERSION=12.2.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/glslang/12.2.0/ -rm -rf ${BUILD_DIRECTORY}/glslang-12.2.0 -tar xvf ${DOWNLOADDIR}/glslang-12.2.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glslang-12.2.0 +export PACKAGE_VERSION=12.3.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/glslang/12.3.1/ +rm -rf ${BUILD_DIRECTORY}/glslang-12.3.1 +tar xvf ${DOWNLOADDIR}/glslang-12.3.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glslang-12.3.1 mkdir -p native-build pushd native-build @@ -16,4 +16,4 @@ pushd ${BUILD_DIRECTORY}/glslang-12.2.0 eval ${MAKE_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/glslang-12.2.0 +rm -rf ${BUILD_DIRECTORY}/glslang-12.3.1 diff --git a/loongarch64/scripts/step/host-tools/glslang.info b/loongarch64/scripts/step/host-tools/glslang.info index 0cd49b72..3809643e 100644 --- a/loongarch64/scripts/step/host-tools/glslang.info +++ b/loongarch64/scripts/step/host-tools/glslang.info @@ -1 +1 @@ -glslang|12.2.0 +glslang|12.3.1 diff --git a/loongarch64/scripts/step/host-tools/gmp b/loongarch64/scripts/step/host-tools/gmp index 7fef6d79..e713d065 100644 --- a/loongarch64/scripts/step/host-tools/gmp +++ b/loongarch64/scripts/step/host-tools/gmp @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=gmp -export PACKAGE_VERSION=6.2.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/gmp/6.2.1/ -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 -tar xvf ${DOWNLOADDIR}/gmp-6.2.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gmp-6.2.1 +export PACKAGE_VERSION=6.3.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/gmp/6.3.0/ +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 +tar xvf ${DOWNLOADDIR}/gmp-6.3.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gmp-6.3.0 ./configure --prefix=${CROSSTOOLS_DIR} --enable-cxx --disable-static eval ${MAKE_AND_INSTALL} popd -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 diff --git a/loongarch64/scripts/step/host-tools/gmp.info b/loongarch64/scripts/step/host-tools/gmp.info index 91316b36..52fa243c 100644 --- a/loongarch64/scripts/step/host-tools/gmp.info +++ b/loongarch64/scripts/step/host-tools/gmp.info @@ -1 +1 @@ -gmp|6.2.1 +gmp|6.3.0 diff --git a/loongarch64/scripts/step/host-tools/meson b/loongarch64/scripts/step/host-tools/meson index b712c530..4a4f7f8f 100644 --- a/loongarch64/scripts/step/host-tools/meson +++ b/loongarch64/scripts/step/host-tools/meson @@ -3,12 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=meson -export PACKAGE_VERSION=1.1.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/meson/1.1.1/ -rm -rf ${BUILD_DIRECTORY}/meson-1.1.1 -tar xvf ${DOWNLOADDIR}/meson-1.1.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/meson-1.1.1 +export PACKAGE_VERSION=1.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/meson/1.2.0/ +rm -rf ${BUILD_DIRECTORY}/meson-1.2.0 +tar xvf ${DOWNLOADDIR}/meson-1.2.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/meson-1.2.0 ${CROSSTOOLS_DIR}/bin/python3 setup.py build ${CROSSTOOLS_DIR}/bin/python3 setup.py install popd -rm -rf ${BUILD_DIRECTORY}/meson-1.1.1 +rm -rf ${BUILD_DIRECTORY}/meson-1.2.0 diff --git a/loongarch64/scripts/step/host-tools/meson.info b/loongarch64/scripts/step/host-tools/meson.info index 09e6426b..18197710 100644 --- a/loongarch64/scripts/step/host-tools/meson.info +++ b/loongarch64/scripts/step/host-tools/meson.info @@ -1 +1 @@ -meson|1.1.1 +meson|1.2.0 diff --git a/loongarch64/scripts/step/host-tools/node b/loongarch64/scripts/step/host-tools/node index 606436f8..b9f772b5 100644 --- a/loongarch64/scripts/step/host-tools/node +++ b/loongarch64/scripts/step/host-tools/node @@ -3,14 +3,14 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=node -export PACKAGE_VERSION=20.4.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/node/20.4.0/ -rm -rf ${BUILD_DIRECTORY}/node-20.4.0 -tar xvf ${DOWNLOADDIR}/node-20.4.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/node-20.4.0 +export PACKAGE_VERSION=20.5.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/node/20.5.0/ +rm -rf ${BUILD_DIRECTORY}/node-20.5.0 +tar xvf ${DOWNLOADDIR}/node-20.5.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/node-20.5.0 ./configure --prefix ${CROSSTOOLS_DIR} eval ${MAKE_AND_INSTALL} cp -av out/Release/node ${CROSSTOOLS_DIR}/bin/ popd -rm -rf ${BUILD_DIRECTORY}/node-20.4.0 +rm -rf ${BUILD_DIRECTORY}/node-20.5.0 diff --git a/loongarch64/scripts/step/host-tools/node.info b/loongarch64/scripts/step/host-tools/node.info index 40c3471c..486d9fcd 100644 --- a/loongarch64/scripts/step/host-tools/node.info +++ b/loongarch64/scripts/step/host-tools/node.info @@ -1 +1 @@ -node|20.4.0 +node|20.5.0 diff --git a/loongarch64/scripts/step/host-tools/pathspec b/loongarch64/scripts/step/host-tools/pathspec index dd64439f..f638217e 100644 --- a/loongarch64/scripts/step/host-tools/pathspec +++ b/loongarch64/scripts/step/host-tools/pathspec @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=pathspec -export PACKAGE_VERSION=0.11.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/pathspec/0.11.1/ -rm -rf ${BUILD_DIRECTORY}/pathspec-0.11.1 -tar xvf ${DOWNLOADDIR}/pathspec-0.11.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/pathspec-0.11.1 +export PACKAGE_VERSION=0.11.2 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/pathspec/0.11.2/ +rm -rf ${BUILD_DIRECTORY}/pathspec-0.11.2 +tar xvf ${DOWNLOADDIR}/pathspec-0.11.2.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/pathspec-0.11.2 ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --force-reinstall --no-user pathspec popd -rm -rf ${BUILD_DIRECTORY}/pathspec-0.11.1 +rm -rf ${BUILD_DIRECTORY}/pathspec-0.11.2 diff --git a/loongarch64/scripts/step/host-tools/pathspec.info b/loongarch64/scripts/step/host-tools/pathspec.info index 758db07c..ee49c5c5 100644 --- a/loongarch64/scripts/step/host-tools/pathspec.info +++ b/loongarch64/scripts/step/host-tools/pathspec.info @@ -1 +1 @@ -pathspec|0.11.1 +pathspec|0.11.2 diff --git a/loongarch64/scripts/step/host-tools/pip b/loongarch64/scripts/step/host-tools/pip index 1b70775d..c1c66dd8 100644 --- a/loongarch64/scripts/step/host-tools/pip +++ b/loongarch64/scripts/step/host-tools/pip @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=pip -export PACKAGE_VERSION=23.1.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/pip/23.1.2/ -rm -rf ${BUILD_DIRECTORY}/pip-23.1.2 -tar xvf ${DOWNLOADDIR}/pip-23.1.2.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/pip-23.1.2 +export PACKAGE_VERSION=23.2.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/pip/23.2.1/ +rm -rf ${BUILD_DIRECTORY}/pip-23.2.1 +tar xvf ${DOWNLOADDIR}/pip-23.2.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/pip-23.2.1 ${CROSSTOOLS_DIR}/bin/python3 setup.py build ${CROSSTOOLS_DIR}/bin/python3 setup.py install --optimize=1 popd -rm -rf ${BUILD_DIRECTORY}/pip-23.1.2 +rm -rf ${BUILD_DIRECTORY}/pip-23.2.1 diff --git a/loongarch64/scripts/step/host-tools/pip.info b/loongarch64/scripts/step/host-tools/pip.info index bf66d2f0..19107398 100644 --- a/loongarch64/scripts/step/host-tools/pip.info +++ b/loongarch64/scripts/step/host-tools/pip.info @@ -1 +1 @@ -pip|23.1.2 +pip|23.2.1 diff --git a/loongarch64/scripts/step/host-tools/sphinx b/loongarch64/scripts/step/host-tools/sphinx index 1b6c2788..29d02a25 100644 --- a/loongarch64/scripts/step/host-tools/sphinx +++ b/loongarch64/scripts/step/host-tools/sphinx @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=sphinx -export PACKAGE_VERSION=7.0.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/sphinx/7.0.1/ -rm -rf ${BUILD_DIRECTORY}/sphinx-7.0.1 -tar xvf ${DOWNLOADDIR}/sphinx-7.0.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/sphinx-7.0.1 +export PACKAGE_VERSION=7.1.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/sphinx/7.1.1/ +rm -rf ${BUILD_DIRECTORY}/sphinx-7.1.1 +tar xvf ${DOWNLOADDIR}/sphinx-7.1.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/sphinx-7.1.1 ${CROSSTOOLS_DIR}/bin/pip3 wheel -w dist --no-build-isolation --no-deps ${PWD} ${CROSSTOOLS_DIR}/bin/pip3 install --no-index --find-links dist --no-cache-dir --no-deps --force-reinstall --no-user sphinx popd -rm -rf ${BUILD_DIRECTORY}/sphinx-7.0.1 +rm -rf ${BUILD_DIRECTORY}/sphinx-7.1.1 diff --git a/loongarch64/scripts/step/host-tools/sphinx.info b/loongarch64/scripts/step/host-tools/sphinx.info index ab8a0341..24ab5c53 100644 --- a/loongarch64/scripts/step/host-tools/sphinx.info +++ b/loongarch64/scripts/step/host-tools/sphinx.info @@ -1 +1 @@ -sphinx|7.0.1 +sphinx|7.1.1 diff --git a/loongarch64/scripts/step/host-tools/wheel b/loongarch64/scripts/step/host-tools/wheel index e6434276..5007d88e 100644 --- a/loongarch64/scripts/step/host-tools/wheel +++ b/loongarch64/scripts/step/host-tools/wheel @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=wheel -export PACKAGE_VERSION=0.40.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/wheel/0.40.0/ -rm -rf ${BUILD_DIRECTORY}/wheel-0.40.0 -tar xvf ${DOWNLOADDIR}/wheel-0.40.0.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/wheel-0.40.0 +export PACKAGE_VERSION=0.41.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/wheel/0.41.0/ +rm -rf ${BUILD_DIRECTORY}/wheel-0.41.0 +tar xvf ${DOWNLOADDIR}/wheel-0.41.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/wheel-0.41.0 ${CROSSTOOLS_DIR}/bin/python3 setup.py build ${CROSSTOOLS_DIR}/bin/python3 setup.py install --optimize=1 popd -rm -rf ${BUILD_DIRECTORY}/wheel-0.40.0 +rm -rf ${BUILD_DIRECTORY}/wheel-0.41.0 diff --git a/loongarch64/scripts/step/host-tools/wheel.info b/loongarch64/scripts/step/host-tools/wheel.info index 4e841c7a..7ca69f44 100644 --- a/loongarch64/scripts/step/host-tools/wheel.info +++ b/loongarch64/scripts/step/host-tools/wheel.info @@ -1 +1 @@ -wheel|0.40.0 +wheel|0.41.0 diff --git a/loongarch64/scripts/step/host-tools/wine-tools b/loongarch64/scripts/step/host-tools/wine-tools index 1f6c044e..d3fa4a79 100644 --- a/loongarch64/scripts/step/host-tools/wine-tools +++ b/loongarch64/scripts/step/host-tools/wine-tools @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=host-tools export STEP_PACKAGENAME=wine-tools -export PACKAGE_VERSION=8.12 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/wine-tools/8.12/ -rm -rf ${BUILD_DIRECTORY}/wine-8.12 -tar xvf ${DOWNLOADDIR}/wine-8.12.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/wine-8.12 +export PACKAGE_VERSION=8.13 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/host-tools/wine-tools/8.13/ +rm -rf ${BUILD_DIRECTORY}/wine-8.13 +tar xvf ${DOWNLOADDIR}/wine-8.13.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/wine-8.13 if [ ! -f configure ]; then autoreconf -ifv @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/wine-8.12 mkdir -p ${CROSSTOOLS_DIR}/wine-tools cp -a ${PWD}/* ${CROSSTOOLS_DIR}/wine-tools/ popd -rm -rf ${BUILD_DIRECTORY}/wine-8.12 +rm -rf ${BUILD_DIRECTORY}/wine-8.13 diff --git a/loongarch64/scripts/step/host-tools/wine-tools.info b/loongarch64/scripts/step/host-tools/wine-tools.info index 816de05a..959e3cf1 100644 --- a/loongarch64/scripts/step/host-tools/wine-tools.info +++ b/loongarch64/scripts/step/host-tools/wine-tools.info @@ -1 +1 @@ -wine|8.12 +wine|8.13 diff --git a/loongarch64/scripts/step/mingw_sysroot/mingw-glib b/loongarch64/scripts/step/mingw_sysroot/mingw-glib index 7eae24a1..2c3c18a2 100644 --- a/loongarch64/scripts/step/mingw_sysroot/mingw-glib +++ b/loongarch64/scripts/step/mingw_sysroot/mingw-glib @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=mingw_sysroot export STEP_PACKAGENAME=mingw-glib -export PACKAGE_VERSION=2.77.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/mingw_sysroot/mingw-glib/2.77.0/ -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 -tar xvf ${DOWNLOADDIR}/glib-2.77.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glib-2.77.0 +export PACKAGE_VERSION=2.77.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/mingw_sysroot/mingw-glib/2.77.1/ +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 +tar xvf ${DOWNLOADDIR}/glib-2.77.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glib-2.77.1 sed -i "/libintl.type_name/d" meson.build sed -i "s@libiconv = \[\]@libiconv = dependency\('iconv'\)@g" meson.build @@ -20,4 +20,4 @@ pushd ${BUILD_DIRECTORY}/glib-2.77.0 popd rm -f ${MINGW_SYSROOT_DIR}/mingw/lib/*.la popd -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 diff --git a/loongarch64/scripts/step/mingw_sysroot/mingw-glib.info b/loongarch64/scripts/step/mingw_sysroot/mingw-glib.info index a52bf26b..d0cbf3c3 100644 --- a/loongarch64/scripts/step/mingw_sysroot/mingw-glib.info +++ b/loongarch64/scripts/step/mingw_sysroot/mingw-glib.info @@ -1 +1 @@ -glib|2.77.0 +glib|2.77.1 diff --git a/loongarch64/scripts/step/mingw_sysroot/mingw-gmp b/loongarch64/scripts/step/mingw_sysroot/mingw-gmp index fc6d4b76..f583cc59 100644 --- a/loongarch64/scripts/step/mingw_sysroot/mingw-gmp +++ b/loongarch64/scripts/step/mingw_sysroot/mingw-gmp @@ -3,15 +3,15 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=mingw_sysroot export STEP_PACKAGENAME=mingw-gmp -export PACKAGE_VERSION=6.2.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/mingw_sysroot/mingw-gmp/6.2.1/ -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 -tar xvf ${DOWNLOADDIR}/gmp-6.2.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gmp-6.2.1 +export PACKAGE_VERSION=6.3.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/mingw_sysroot/mingw-gmp/6.3.0/ +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 +tar xvf ${DOWNLOADDIR}/gmp-6.3.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gmp-6.3.0 ABI=64 ./configure --build=${CROSS_HOST} --host=${MINGW_HOST} \ --prefix=/mingw --enable-cxx make -j${JOBS} make DESTDIR=${MINGW_SYSROOT_DIR} install popd -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 rm -f ${MINGW_SYSROOT_DIR}/mingw/lib/*.la diff --git a/loongarch64/scripts/step/mingw_sysroot/mingw-gmp.info b/loongarch64/scripts/step/mingw_sysroot/mingw-gmp.info index 91316b36..52fa243c 100644 --- a/loongarch64/scripts/step/mingw_sysroot/mingw-gmp.info +++ b/loongarch64/scripts/step/mingw_sysroot/mingw-gmp.info @@ -1 +1 @@ -gmp|6.2.1 +gmp|6.3.0 diff --git a/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz b/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz index 169ff24b..3aa176d9 100644 --- a/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz +++ b/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=mingw_sysroot export STEP_PACKAGENAME=mingw-harfbuzz -export PACKAGE_VERSION=8.0.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/mingw_sysroot/mingw-harfbuzz/8.0.1/ -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 -tar xvf ${DOWNLOADDIR}/harfbuzz-8.0.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +export PACKAGE_VERSION=8.1.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/mingw_sysroot/mingw-harfbuzz/8.1.0/ +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 +tar xvf ${DOWNLOADDIR}/harfbuzz-8.1.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/harfbuzz-8.1.0 mkdir cross-build pushd cross-build @@ -19,4 +19,4 @@ pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 popd rm -f ${MINGW_SYSROOT_DIR}/mingw/lib/*.la popd -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 diff --git a/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz.info b/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz.info index c9cff8f7..60902b79 100644 --- a/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz.info +++ b/loongarch64/scripts/step/mingw_sysroot/mingw-harfbuzz.info @@ -1 +1 @@ -harfbuzz|8.0.1 +harfbuzz|8.1.0 diff --git a/loongarch64/scripts/step/simulate/qemu b/loongarch64/scripts/step/simulate/qemu index 531f1ea4..790dc8f6 100644 --- a/loongarch64/scripts/step/simulate/qemu +++ b/loongarch64/scripts/step/simulate/qemu @@ -3,13 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=simulate export STEP_PACKAGENAME=qemu -export PACKAGE_VERSION=8.0.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/simulate/qemu/8.0.3/ -rm -rf ${BUILD_DIRECTORY}/qemu-8.0.3 -tar xvf ${DOWNLOADDIR}/qemu-8.0.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/qemu-8.0.3 - patch -Np1 -i ${SYSDIR}/files/simulate/qemu/8.0.3/patches/0001-Revert-linux-user-Fix-brk-to-release-pages.patch - +export PACKAGE_VERSION=8.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/simulate/qemu/8.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/qemu_git-8.1.0-default_git +tar xvf ${DOWNLOADDIR}/qemu_git-8.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/qemu_git-8.1.0-default_git + mkdir -p cross-build pushd cross-build ../configure ${COMMON_CONFIG} --cross-prefix=${CROSS_TARGET}- \ @@ -26,4 +25,4 @@ pushd ${BUILD_DIRECTORY}/qemu-8.0.3 mkdir -p ${SYSROOT_DIR}/usr/gnemul popd -rm -rf ${BUILD_DIRECTORY}/qemu-8.0.3 +rm -rf ${BUILD_DIRECTORY}/qemu_git-8.1.0-default_git diff --git a/loongarch64/scripts/step/simulate/qemu.info b/loongarch64/scripts/step/simulate/qemu.info index 86f240aa..4c494c4e 100644 --- a/loongarch64/scripts/step/simulate/qemu.info +++ b/loongarch64/scripts/step/simulate/qemu.info @@ -1 +1 @@ -qemu|8.0.3 +qemu_git|8.1.0-default diff --git a/loongarch64/scripts/step/target_base/binutils b/loongarch64/scripts/step/target_base/binutils index 0cf3f294..60ad2e05 100644 --- a/loongarch64/scripts/step/target_base/binutils +++ b/loongarch64/scripts/step/target_base/binutils @@ -3,11 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=binutils -export PACKAGE_VERSION=2.40 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/binutils/2.40/ -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 -tar xvf ${DOWNLOADDIR}/binutils-2.40.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils-2.40 +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 + patch -Np1 -i ${SYSDIR}/files/target_base/binutils/2.41/patches/0001-remove-default-use-relax-for-lld.patch + rm -rf gdb* libdecnumber readline sim mkdir -pv cross-build pushd cross-build @@ -18,4 +20,4 @@ pushd ${BUILD_DIRECTORY}/binutils-2.40 make DESTDIR=${SYSROOT_DIR} tooldir=/usr install popd popd -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/target_base/binutils.info b/loongarch64/scripts/step/target_base/binutils.info index fe7b49e2..4ed7db63 100644 --- a/loongarch64/scripts/step/target_base/binutils.info +++ b/loongarch64/scripts/step/target_base/binutils.info @@ -1 +1 @@ -binutils|2.40 +binutils|2.41 diff --git a/loongarch64/scripts/step/target_base/binutils_git b/loongarch64/scripts/step/target_base/binutils_git new file mode 100644 index 00000000..46acafca --- /dev/null +++ b/loongarch64/scripts/step/target_base/binutils_git @@ -0,0 +1,23 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=binutils_git +export PACKAGE_VERSION=2.41-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/binutils_git/2.41-default/ +rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git +tar xvf ${DOWNLOADDIR}/binutils_git-2.41-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils_git-2.41-default_git + patch -Np1 -i ${SYSDIR}/files/target_base/binutils_git/2.41-default/patches/0001-remove-default-use-relax-for-lld.patch + + rm -rf gdb* libdecnumber readline sim + mkdir -pv cross-build + pushd cross-build + ../configure --prefix=/usr --libdir=/usr/lib64 --build=${CROSS_HOST} \ + --host=${CROSS_TARGET} --enable-shared --disable-werror \ + --with-system-zlib --enable-64-bit-bfd + make -j${JOBS} tooldir=/usr + make DESTDIR=${SYSROOT_DIR} tooldir=/usr install + popd +popd +rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git diff --git a/loongarch64/scripts/step/target_base/binutils_git.info b/loongarch64/scripts/step/target_base/binutils_git.info new file mode 100644 index 00000000..97f76bb3 --- /dev/null +++ b/loongarch64/scripts/step/target_base/binutils_git.info @@ -0,0 +1 @@ +binutils_git|2.41-default diff --git a/loongarch64/scripts/step/target_base/clang_git b/loongarch64/scripts/step/target_base/clang_git new file mode 100644 index 00000000..8c6795cc --- /dev/null +++ b/loongarch64/scripts/step/target_base/clang_git @@ -0,0 +1,38 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=clang_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/clang_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + pushd clang + mkdir cross-build + pushd cross-build + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_CONFIG=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config \ + -DBUILD_SHARED_LIBS:BOOL=OFF -DLLVM_ENABLE_LIBCXX:BOOL=OFF \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_RTTI:BOOL=ON \ + -DLLVM_ENABLE_ZLIB:BOOL=ON \ + -DCLANG_TABLEGEN:PATH=${CROSSTOOLS_DIR}/bin/clang-tblgen \ + -DLLVM_TABLEGEN_EXE:FILEPATH=${CROSSTOOLS_DIR}/bin/llvm-tblgen \ + -DPython3_EXECUTABLE:PATH=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DCMAKE_MAKE_PROGRAM:PATH=${CROSSTOOLS_DIR}/bin/ninja \ + -DLLVM_ENABLE_TERMINFO:BOOL=OFF \ + -DCMAKE_SYSROOT=${SYSROOT_DIR} \ + -DCMAKE_FIND_ROOT_PATH=${SYSROOT_DIR}/usr \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=ON \ + -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ + -DLLVM_INCLUDE_TESTS=OFF \ + -DLLVM_HOST_TRIPLE=${CROSS_TARGET} + sed -i "s@${PWD}/bin/clang-ast-dump@qemu-${ARCH_NAME} ${PWD}/bin/clang-ast-dump@g" build.ninja + eval ${NINJA_AND_INSTALL} + popd + popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/target_base/clang_git.info b/loongarch64/scripts/step/target_base/clang_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/target_base/clang_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/target_base/cmake b/loongarch64/scripts/step/target_base/cmake index 7533a415..999dc2d7 100644 --- a/loongarch64/scripts/step/target_base/cmake +++ b/loongarch64/scripts/step/target_base/cmake @@ -3,12 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=cmake -export PACKAGE_VERSION=3.26.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/cmake/3.26.4/ -rm -rf ${BUILD_DIRECTORY}/cmake-3.26.4 -tar xvf ${DOWNLOADDIR}/cmake-3.26.4.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/cmake-3.26.4 - patch -Np1 -i ${SYSDIR}/files/target_base/cmake/3.26.4/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch +export PACKAGE_VERSION=3.27.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/cmake/3.27.1/ +rm -rf ${BUILD_DIRECTORY}/cmake-3.27.1 +tar xvf ${DOWNLOADDIR}/cmake-3.27.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/cmake-3.27.1 + patch -Np1 -i ${SYSDIR}/files/target_base/cmake/3.27.1/patches/cmake-3.22.3-add-loongarch64-to-checktypesize.patch mkdir build pushd build @@ -19,4 +19,4 @@ pushd ${BUILD_DIRECTORY}/cmake-3.26.4 eval ${MAKE_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/cmake-3.26.4 +rm -rf ${BUILD_DIRECTORY}/cmake-3.27.1 diff --git a/loongarch64/scripts/step/target_base/cmake.info b/loongarch64/scripts/step/target_base/cmake.info index 2c890021..4d8a2743 100644 --- a/loongarch64/scripts/step/target_base/cmake.info +++ b/loongarch64/scripts/step/target_base/cmake.info @@ -1 +1 @@ -cmake|3.26.4 +cmake|3.27.1 diff --git a/loongarch64/scripts/step/target_base/compiler-rt_git b/loongarch64/scripts/step/target_base/compiler-rt_git new file mode 100644 index 00000000..f1d7d81e --- /dev/null +++ b/loongarch64/scripts/step/target_base/compiler-rt_git @@ -0,0 +1,34 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=compiler-rt_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/compiler-rt_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + pushd compiler-rt + mkdir cross-build + pushd cross-build + CC="clang" CXX="clang++" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_CONFIG=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_AR="${CROSSTOOLS_DIR}/bin/llvm-ar" \ + -DCMAKE_RANLIB="${CROSSTOOLS_DIR}/bin/llvm-ranlib" \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_RTTI:BOOL=ON \ + -DLLVM_ENABLE_ZLIB:BOOL=ON \ + -DCMAKE_MAKE_PROGRAM:PATH=${CROSSTOOLS_DIR}/bin/ninja \ + -DLLVM_ENABLE_TERMINFO:BOOL=OFF \ + -DLLVM_USE_SANITIZER:BOOL=ON \ + -DCMAKE_SYSROOT=${SYSROOT_DIR} \ + -DCMAKE_FIND_ROOT_PATH=${SYSROOT_DIR}/usr \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON \ + -DLLVM_HOST_TRIPLE=${CROSS_TARGET} + eval ${NINJA_AND_INSTALL} + popd + popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/target_base/compiler-rt_git.info b/loongarch64/scripts/step/target_base/compiler-rt_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/target_base/compiler-rt_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/target_base/curl b/loongarch64/scripts/step/target_base/curl index e907f8f2..8f093f13 100644 --- a/loongarch64/scripts/step/target_base/curl +++ b/loongarch64/scripts/step/target_base/curl @@ -3,15 +3,15 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=curl -export PACKAGE_VERSION=8.1.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/curl/8.1.2/ -rm -rf ${BUILD_DIRECTORY}/curl-8.1.2 -tar xvf ${DOWNLOADDIR}/curl-8.1.2.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/curl-8.1.2 +export PACKAGE_VERSION=8.2.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/curl/8.2.1/ +rm -rf ${BUILD_DIRECTORY}/curl-8.2.1 +tar xvf ${DOWNLOADDIR}/curl-8.2.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/curl-8.2.1 ./configure --prefix=/usr --libdir=/usr/lib64 --build=${CROSS_HOST} \ --host=${CROSS_TARGET} --with-openssl \ --enable-threaded-resolver --with-ca-path=/etc/ssl/certs eval ${MAKE_AND_INSTALL} cp ${SYSROOT_DIR}/usr/bin/curl-config ${CROSSTOOLS_DIR}/bin/ popd -rm -rf ${BUILD_DIRECTORY}/curl-8.1.2 +rm -rf ${BUILD_DIRECTORY}/curl-8.2.1 diff --git a/loongarch64/scripts/step/target_base/curl.info b/loongarch64/scripts/step/target_base/curl.info index bf075ae1..a5947db5 100644 --- a/loongarch64/scripts/step/target_base/curl.info +++ b/loongarch64/scripts/step/target_base/curl.info @@ -1 +1 @@ -curl|8.1.2 +curl|8.2.1 diff --git a/loongarch64/scripts/step/target_base/dhcpcd b/loongarch64/scripts/step/target_base/dhcpcd index 795d45c5..2009f88c 100644 --- a/loongarch64/scripts/step/target_base/dhcpcd +++ b/loongarch64/scripts/step/target_base/dhcpcd @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=dhcpcd -export PACKAGE_VERSION=10.0.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/dhcpcd/10.0.1/ -rm -rf ${BUILD_DIRECTORY}/dhcpcd-10.0.1 -tar xvf ${DOWNLOADDIR}/dhcpcd-10.0.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/dhcpcd-10.0.1 +export PACKAGE_VERSION=10.0.2 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/dhcpcd/10.0.2/ +rm -rf ${BUILD_DIRECTORY}/dhcpcd-10.0.2 +tar xvf ${DOWNLOADDIR}/dhcpcd-10.0.2.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/dhcpcd-10.0.2 for config_i in $(find -name "config.sub") do @@ -22,4 +22,4 @@ pushd ${BUILD_DIRECTORY}/dhcpcd-10.0.1 make DESTDIR=${SYSROOT_DIR} install rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/dhcpcd-10.0.1 +rm -rf ${BUILD_DIRECTORY}/dhcpcd-10.0.2 diff --git a/loongarch64/scripts/step/target_base/dhcpcd.info b/loongarch64/scripts/step/target_base/dhcpcd.info index e134e63c..82c13607 100644 --- a/loongarch64/scripts/step/target_base/dhcpcd.info +++ b/loongarch64/scripts/step/target_base/dhcpcd.info @@ -1 +1 @@ -dhcpcd|10.0.1 +dhcpcd|10.0.2 diff --git a/loongarch64/scripts/step/target_base/file b/loongarch64/scripts/step/target_base/file index b3f81a29..e79c6d6d 100644 --- a/loongarch64/scripts/step/target_base/file +++ b/loongarch64/scripts/step/target_base/file @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=file -export PACKAGE_VERSION=5.44 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/file/5.44/ -rm -rf ${BUILD_DIRECTORY}/file-5.44 -tar xvf ${DOWNLOADDIR}/file-5.44.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/file-5.44 +export PACKAGE_VERSION=5.45 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/file/5.45/ +rm -rf ${BUILD_DIRECTORY}/file-5.45 +tar xvf ${DOWNLOADDIR}/file-5.45.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/file-5.45 for config_i in $(find -name "config.sub") do @@ -22,4 +22,4 @@ pushd ${BUILD_DIRECTORY}/file-5.44 make DESTDIR=${SYSROOT_DIR} install rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/file-5.44 +rm -rf ${BUILD_DIRECTORY}/file-5.45 diff --git a/loongarch64/scripts/step/target_base/file.info b/loongarch64/scripts/step/target_base/file.info index 91a9b20d..fb67b1dd 100644 --- a/loongarch64/scripts/step/target_base/file.info +++ b/loongarch64/scripts/step/target_base/file.info @@ -1 +1 @@ -file|5.44 +file|5.45 diff --git a/loongarch64/scripts/step/target_base/gcc b/loongarch64/scripts/step/target_base/gcc index 8fa57d23..51ed94fa 100644 --- a/loongarch64/scripts/step/target_base/gcc +++ b/loongarch64/scripts/step/target_base/gcc @@ -3,11 +3,14 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=gcc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/gcc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + patch -Np1 -i ${SYSDIR}/files/target_base/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + patch -Np1 -i ${SYSDIR}/files/target_base/gcc/13.2.0/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch + sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in mkdir -pv cross-build pushd cross-build @@ -26,4 +29,4 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 ln -sfv gcc ${SYSROOT_DIR}/usr/bin/cc popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/target_base/gcc.info b/loongarch64/scripts/step/target_base/gcc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/target_base/gcc.info +++ b/loongarch64/scripts/step/target_base/gcc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/target_base/gcc_git b/loongarch64/scripts/step/target_base/gcc_git new file mode 100644 index 00000000..25a5b070 --- /dev/null +++ b/loongarch64/scripts/step/target_base/gcc_git @@ -0,0 +1,32 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=gcc_git +export PACKAGE_VERSION=13.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/gcc_git/13.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git +tar xvf ${DOWNLOADDIR}/gcc_git-13.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git + patch -Np1 -i ${SYSDIR}/files/target_base/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + patch -Np1 -i ${SYSDIR}/files/target_base/gcc_git/13.1.0-default/patches/0001-gcc-13-add-cmodule-medium-for-loongarch-libgcc.patch + + sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in + mkdir -pv cross-build + pushd cross-build + ../configure --prefix=/usr --libdir=/usr/lib64 --build=${CROSS_HOST} \ + --host=${CROSS_TARGET} --target=${CROSS_TARGET} \ + --enable-__cxa_atexit --enable-threads=posix \ + --with-system-zlib --enable-libstdcxx-time \ + --enable-checking=release \ + --disable-multilib \ + --with-build-sysroot=${SYSROOT_DIR} \ + --enable-default-pie \ + --enable-languages=c,c++,fortran,objc,obj-c++,lto + make -j${JOBS} + make DESTDIR=${SYSROOT_DIR} install + ln -sfv /usr/bin/cpp ${SYSROOT_DIR}/lib + ln -sfv gcc ${SYSROOT_DIR}/usr/bin/cc + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git diff --git a/loongarch64/scripts/step/target_base/gcc_git.info b/loongarch64/scripts/step/target_base/gcc_git.info new file mode 100644 index 00000000..86f7b4da --- /dev/null +++ b/loongarch64/scripts/step/target_base/gcc_git.info @@ -0,0 +1 @@ +gcc_git|13.1.0-default diff --git a/loongarch64/scripts/step/target_base/glib b/loongarch64/scripts/step/target_base/glib index ca675a71..78023f98 100644 --- a/loongarch64/scripts/step/target_base/glib +++ b/loongarch64/scripts/step/target_base/glib @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=glib -export PACKAGE_VERSION=2.77.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/glib/2.77.0/ -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 -tar xvf ${DOWNLOADDIR}/glib-2.77.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glib-2.77.0 +export PACKAGE_VERSION=2.77.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/glib/2.77.1/ +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 +tar xvf ${DOWNLOADDIR}/glib-2.77.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glib-2.77.1 mkdir cross-build pushd cross-build @@ -28,4 +28,4 @@ chmod +x ${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-glib-compile-schemas cp -a ${CROSSTOOLS_DIR}/bin/{${CROSS_TARGET}-,}glib-compile-schemas popd -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 diff --git a/loongarch64/scripts/step/target_base/glib.info b/loongarch64/scripts/step/target_base/glib.info index a52bf26b..d0cbf3c3 100644 --- a/loongarch64/scripts/step/target_base/glib.info +++ b/loongarch64/scripts/step/target_base/glib.info @@ -1 +1 @@ -glib|2.77.0 +glib|2.77.1 diff --git a/loongarch64/scripts/step/target_base/glibc b/loongarch64/scripts/step/target_base/glibc index ae8f6b7f..55f3e275 100644 --- a/loongarch64/scripts/step/target_base/glibc +++ b/loongarch64/scripts/step/target_base/glibc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=glibc -export PACKAGE_VERSION=2.37 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/glibc/2.37/ -rm -rf ${BUILD_DIRECTORY}/glibc-2.37 -tar xvf ${DOWNLOADDIR}/glibc-2.37.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glibc-2.37 +export PACKAGE_VERSION=2.38 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/glibc/2.38/ +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 +tar xvf ${DOWNLOADDIR}/glibc-2.38.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glibc-2.38 cp ${CROSSTOOLS_DIR}/share/automake*/config.* ./ sed -i "s@5.15.0@4.15.0@g" sysdeps/unix/sysv/linux/loongarch/configure{,.ac} @@ -31,7 +31,6 @@ pushd ${BUILD_DIRECTORY}/glibc-2.37 ${SYSROOT_DIR}/usr/lib/tmpfiles.d/nscd.conf install -v -Dm644 ../nscd/nscd.service \ ${SYSROOT_DIR}/usr/lib/systemd/system/nscd.service - make DESTDIR=${TOOLCHAIN_DIRECTORY}/${CROSS_TARGET}/glibc install popd popd -rm -rf ${BUILD_DIRECTORY}/glibc-2.37 +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 diff --git a/loongarch64/scripts/step/target_base/glibc.info b/loongarch64/scripts/step/target_base/glibc.info index b905acd0..ca06b577 100644 --- a/loongarch64/scripts/step/target_base/glibc.info +++ b/loongarch64/scripts/step/target_base/glibc.info @@ -1 +1 @@ -glibc|2.37 +glibc|2.38 diff --git a/loongarch64/scripts/step/target_base/glibc_localedata b/loongarch64/scripts/step/target_base/glibc_localedata index f61d5cf6..3826e8c8 100644 --- a/loongarch64/scripts/step/target_base/glibc_localedata +++ b/loongarch64/scripts/step/target_base/glibc_localedata @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=glibc_localedata -export PACKAGE_VERSION=2.37 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/glibc_localedata/2.37/ -rm -rf ${BUILD_DIRECTORY}/glibc-2.37 -tar xvf ${DOWNLOADDIR}/glibc-2.37.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glibc-2.37 +export PACKAGE_VERSION=2.38 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/glibc_localedata/2.38/ +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 +tar xvf ${DOWNLOADDIR}/glibc-2.38.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glibc-2.38 mkdir -p build-locale pushd build-locale ../configure --prefix=/usr --libdir=/usr/lib64 --libexecdir=/usr/lib64/glibc \ @@ -16,4 +16,4 @@ pushd ${BUILD_DIRECTORY}/glibc-2.37 make -j${JOBS} make -j${JOBS} DESTDIR=${SYSROOT_DIR} localedata/install-locales popd -rm -rf ${BUILD_DIRECTORY}/glibc-2.37 +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 diff --git a/loongarch64/scripts/step/target_base/glibc_localedata.info b/loongarch64/scripts/step/target_base/glibc_localedata.info index b905acd0..ca06b577 100644 --- a/loongarch64/scripts/step/target_base/glibc_localedata.info +++ b/loongarch64/scripts/step/target_base/glibc_localedata.info @@ -1 +1 @@ -glibc|2.37 +glibc|2.38 diff --git a/loongarch64/scripts/step/target_base/gmp b/loongarch64/scripts/step/target_base/gmp index 1b003968..11ae29c4 100644 --- a/loongarch64/scripts/step/target_base/gmp +++ b/loongarch64/scripts/step/target_base/gmp @@ -3,16 +3,16 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=gmp -export PACKAGE_VERSION=6.2.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/gmp/6.2.1/ -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 -tar xvf ${DOWNLOADDIR}/gmp-6.2.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gmp-6.2.1 +export PACKAGE_VERSION=6.3.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/gmp/6.3.0/ +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 +tar xvf ${DOWNLOADDIR}/gmp-6.3.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gmp-6.3.0 cp ${CROSSTOOLS_DIR}/share/automake*/config.* ./ ABI=standard ./configure --build=${CROSS_HOST} --host=${CROSS_TARGET} \ --prefix=/usr --libdir=/usr/lib64 --enable-cxx make -j${JOBS} make DESTDIR=${SYSROOT_DIR} install popd -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 rm ${SYSROOT_DIR}/usr/lib64/*.la diff --git a/loongarch64/scripts/step/target_base/gmp.info b/loongarch64/scripts/step/target_base/gmp.info index 91316b36..52fa243c 100644 --- a/loongarch64/scripts/step/target_base/gmp.info +++ b/loongarch64/scripts/step/target_base/gmp.info @@ -1 +1 @@ -gmp|6.2.1 +gmp|6.3.0 diff --git a/loongarch64/scripts/step/target_base/gnutls b/loongarch64/scripts/step/target_base/gnutls index 9ecee8d6..69927766 100644 --- a/loongarch64/scripts/step/target_base/gnutls +++ b/loongarch64/scripts/step/target_base/gnutls @@ -17,7 +17,7 @@ pushd ${BUILD_DIRECTORY}/gnutls-3.8.0 if [ ! -f configure ]; then autoreconf -ifv fi - ./configure ${COMMON_CONFIG} --enable-openssl-compatibility --enable-ssl3-support --with-default-trust-store-pkcs11="pkcs11:" --with-libz-prefix=${SYSROOT_DIR}/usr --disable-guile --disable-doc + ./configure ${COMMON_CONFIG} --enable-openssl-compatibility --enable-ssl3-support --with-default-trust-store-pkcs11="pkcs11:" --with-libz-prefix=${SYSROOT_DIR}/usr --disable-guile --disable-doc --enable-static CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" make -j${JOBS} make DESTDIR=${SYSROOT_DIR} install rm -f ${SYSROOT_DIR}/usr/lib64/*.la diff --git a/loongarch64/scripts/step/target_base/harfbuzz b/loongarch64/scripts/step/target_base/harfbuzz index 3a20fb0d..fae0f44e 100644 --- a/loongarch64/scripts/step/target_base/harfbuzz +++ b/loongarch64/scripts/step/target_base/harfbuzz @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=harfbuzz -export PACKAGE_VERSION=8.0.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/harfbuzz/8.0.1/ -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 -tar xvf ${DOWNLOADDIR}/harfbuzz-8.0.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +export PACKAGE_VERSION=8.1.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/harfbuzz/8.1.0/ +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 +tar xvf ${DOWNLOADDIR}/harfbuzz-8.1.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/harfbuzz-8.1.0 mkdir cross-build pushd cross-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 diff --git a/loongarch64/scripts/step/target_base/harfbuzz-pre b/loongarch64/scripts/step/target_base/harfbuzz-pre index b367ee7d..3c6b74b0 100644 --- a/loongarch64/scripts/step/target_base/harfbuzz-pre +++ b/loongarch64/scripts/step/target_base/harfbuzz-pre @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=harfbuzz-pre -export PACKAGE_VERSION=8.0.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/harfbuzz-pre/8.0.1/ -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 -tar xvf ${DOWNLOADDIR}/harfbuzz-8.0.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +export PACKAGE_VERSION=8.1.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/harfbuzz-pre/8.1.0/ +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 +tar xvf ${DOWNLOADDIR}/harfbuzz-8.1.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/harfbuzz-8.1.0 mkdir cross-build pushd cross-build @@ -17,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 popd rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 diff --git a/loongarch64/scripts/step/target_base/harfbuzz-pre.info b/loongarch64/scripts/step/target_base/harfbuzz-pre.info index c9cff8f7..60902b79 100644 --- a/loongarch64/scripts/step/target_base/harfbuzz-pre.info +++ b/loongarch64/scripts/step/target_base/harfbuzz-pre.info @@ -1 +1 @@ -harfbuzz|8.0.1 +harfbuzz|8.1.0 diff --git a/loongarch64/scripts/step/target_base/harfbuzz.info b/loongarch64/scripts/step/target_base/harfbuzz.info index c9cff8f7..60902b79 100644 --- a/loongarch64/scripts/step/target_base/harfbuzz.info +++ b/loongarch64/scripts/step/target_base/harfbuzz.info @@ -1 +1 @@ -harfbuzz|8.0.1 +harfbuzz|8.1.0 diff --git a/loongarch64/scripts/step/target_base/libxcrypt b/loongarch64/scripts/step/target_base/libxcrypt new file mode 100644 index 00000000..eff17493 --- /dev/null +++ b/loongarch64/scripts/step/target_base/libxcrypt @@ -0,0 +1,26 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=libxcrypt +export PACKAGE_VERSION=4.4.36 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/libxcrypt/4.4.36/ +rm -rf ${BUILD_DIRECTORY}/libxcrypt-4.4.36 +tar xvf ${DOWNLOADDIR}/libxcrypt-4.4.36.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/libxcrypt-4.4.36 + patch -Np1 -i ${SYSDIR}/files/target_base/libxcrypt/4.4.36/patches/0001-fix-configure-error-under-loongarch64-architecture.patch + + for config_i in $(find -name "config.sub") + do + chmod 0644 $(dirname ${config_i})/config.{sub,guess} + cp ${CROSSTOOLS_DIR}/share/automake*/config.{sub,guess} $(dirname ${config_i})/ + done + if [ ! -f configure ]; then + autoreconf -ifv + fi + ./configure ${COMMON_CONFIG} + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" make -j${JOBS} + make DESTDIR=${SYSROOT_DIR} install + rm -f ${SYSROOT_DIR}/usr/lib64/*.la +popd +rm -rf ${BUILD_DIRECTORY}/libxcrypt-4.4.36 diff --git a/loongarch64/scripts/step/target_base/libxcrypt.info b/loongarch64/scripts/step/target_base/libxcrypt.info new file mode 100644 index 00000000..69bcd604 --- /dev/null +++ b/loongarch64/scripts/step/target_base/libxcrypt.info @@ -0,0 +1 @@ +libxcrypt|4.4.36 diff --git a/loongarch64/scripts/step/target_base/linux-header b/loongarch64/scripts/step/target_base/linux-header index d3603769..5d46c85a 100644 --- a/loongarch64/scripts/step/target_base/linux-header +++ b/loongarch64/scripts/step/target_base/linux-header @@ -3,17 +3,19 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=linux-header -export PACKAGE_VERSION=6.4.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/linux-header/6.4.3/ -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 -tar xvf ${DOWNLOADDIR}/linux-6.4.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/linux-6.4.3 +export PACKAGE_VERSION=6.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/linux-header/6.5/ +rm -rf ${BUILD_DIRECTORY}/linux_git-6.5_git +tar xvf ${DOWNLOADDIR}/linux_git-6.5_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/linux_git-6.5_git + make ARCH=${ARCH_FAMILY} mrproper make ARCH=${ARCH_FAMILY} INSTALL_HDR_PATH=dest headers_install find dest/include -name '.*' -delete + sed -i "/__ARCH_WANT_NEW_STAT/d" dest/include/asm/unistd.h mkdir -pv ${SYSROOT_DIR}/usr/include cp -rv dest/include/* ${SYSROOT_DIR}/usr/include - mkdir -pv ${TOOLCHAIN_DIRECTORY}/${ARCH_NAME}/linux-header/usr/include - cp -rv dest/include/* ${TOOLCHAIN_DIRECTORY}/${ARCH_NAME}/linux-header/usr/include/ +# mkdir -pv ${TOOLCHAIN_DIRECTORY}/${ARCH_NAME}/linux-header/usr/include +# cp -rv dest/include/* ${TOOLCHAIN_DIRECTORY}/${ARCH_NAME}/linux-header/usr/include/ popd -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 +rm -rf ${BUILD_DIRECTORY}/linux_git-6.5_git diff --git a/loongarch64/scripts/step/target_base/linux-header.info b/loongarch64/scripts/step/target_base/linux-header.info index 0328b936..8d0039e4 100644 --- a/loongarch64/scripts/step/target_base/linux-header.info +++ b/loongarch64/scripts/step/target_base/linux-header.info @@ -1 +1 @@ -linux|6.4.3 +linux_git|6.5 diff --git a/loongarch64/scripts/step/target_base/lld b/loongarch64/scripts/step/target_base/lld new file mode 100644 index 00000000..a9717d0c --- /dev/null +++ b/loongarch64/scripts/step/target_base/lld @@ -0,0 +1,38 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=lld +export PACKAGE_VERSION=16.0.6 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/lld/16.0.6/ +rm -rf ${BUILD_DIRECTORY}/llvm-project-16.0.6.src +tar xvf ${DOWNLOADDIR}/llvm-project-16.0.6.src.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project-16.0.6.src + patch -Np1 -i ${SYSDIR}/files/target_base/lld/16.0.6/patches/D138135.diff + + pushd lld + mkdir cross-build + pushd cross-build + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_CONFIG=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config \ + -DBUILD_SHARED_LIBS:BOOL=OFF -DLLVM_ENABLE_LIBCXX:BOOL=OFF \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_RTTI:BOOL=ON \ + -DLLVM_ENABLE_ZLIB:BOOL=ON \ + -DCLANG_TABLEGEN:PATH=${CROSSTOOLS_DIR}/bin/clang-tblgen \ + -DLLVM_TABLEGEN_EXE:FILEPATH=${CROSSTOOLS_DIR}/bin/llvm-tblgen \ + -DCMAKE_MAKE_PROGRAM:PATH=${CROSSTOOLS_DIR}/bin/ninja \ + -DLLVM_ENABLE_TERMINFO:BOOL=OFF \ + -DCMAKE_SYSROOT=${SYSROOT_DIR} \ + -DCMAKE_FIND_ROOT_PATH=${SYSROOT_DIR}/usr \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=ON \ + -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ + -DLLVM_HOST_TRIPLE=${CROSS_TARGET} + sed -i "s@${PWD}/bin/clang-ast-dump@qemu-${ARCH_NAME} ${PWD}/bin/clang-ast-dump@g" build.ninja + eval ${NINJA_AND_INSTALL} + popd + popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project-16.0.6.src diff --git a/loongarch64/scripts/step/target_base/lld.info b/loongarch64/scripts/step/target_base/lld.info new file mode 100644 index 00000000..ed70a557 --- /dev/null +++ b/loongarch64/scripts/step/target_base/lld.info @@ -0,0 +1 @@ +llvm-project|16.0.6 diff --git a/loongarch64/scripts/step/target_base/lld_git b/loongarch64/scripts/step/target_base/lld_git new file mode 100644 index 00000000..22ded419 --- /dev/null +++ b/loongarch64/scripts/step/target_base/lld_git @@ -0,0 +1,37 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=lld_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/lld_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + + pushd lld + mkdir cross-build + pushd cross-build + CC="${CROSS_TARGET}-gcc" CXX="${CROSS_TARGET}-g++" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_CONFIG=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config \ + -DBUILD_SHARED_LIBS:BOOL=OFF -DLLVM_ENABLE_LIBCXX:BOOL=OFF \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_RTTI:BOOL=ON \ + -DLLVM_ENABLE_ZLIB:BOOL=ON \ + -DCLANG_TABLEGEN:PATH=${CROSSTOOLS_DIR}/bin/clang-tblgen \ + -DLLVM_TABLEGEN_EXE:FILEPATH=${CROSSTOOLS_DIR}/bin/llvm-tblgen \ + -DCMAKE_MAKE_PROGRAM:PATH=${CROSSTOOLS_DIR}/bin/ninja \ + -DLLVM_ENABLE_TERMINFO:BOOL=OFF \ + -DCMAKE_SYSROOT=${SYSROOT_DIR} \ + -DCMAKE_FIND_ROOT_PATH=${SYSROOT_DIR}/usr \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=ON \ + -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ + -DLLVM_HOST_TRIPLE=${CROSS_TARGET} + sed -i "s@${PWD}/bin/clang-ast-dump@qemu-${ARCH_NAME} ${PWD}/bin/clang-ast-dump@g" build.ninja + eval ${NINJA_AND_INSTALL} + popd + popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/target_base/lld_git.info b/loongarch64/scripts/step/target_base/lld_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/target_base/lld_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/target_base/llvm-project_git b/loongarch64/scripts/step/target_base/llvm-project_git new file mode 100644 index 00000000..49a5fe50 --- /dev/null +++ b/loongarch64/scripts/step/target_base/llvm-project_git @@ -0,0 +1,40 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=llvm-project_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/llvm-project_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + + pushd llvm + mkdir cross-build + pushd cross-build + export CC="clang" CXX="clang++" + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_SHARED_LIBS:BOOL=OFF -DLLVM_ENABLE_LIBCXX:BOOL=OFF \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_BUILD_RUNTIME:BOOL=ON -DLLVM_ENABLE_RTTI:BOOL=ON \ + -DLLVM_ENABLE_ZLIB:BOOL=ON -DLLVM_ENABLE_FFI:BOOL=ON \ + -DLLVM_ENABLE_TERMINFO:BOOL=OFF \ + -DLLVM_TABLEGEN:PATH=${CROSSTOOLS_DIR}/bin/llvm-tblgen \ + -DLLVM_BUILD_LLVM_DYLIB:BOOL=ON \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=ON \ + -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ + -Dzstd_LIBRARY:FILEPATH=${SYSROOT_DIR}/usr/lib64/libzstd.so \ + -DLLVM_DEFAULT_TARGET_TRIPLE=${CROSS_TARGET} + eval ${NINJA_AND_INSTALL} + popd + popd + +cat > ${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config << EOF +#!/bin/bash -e +qemu-${ARCH_NAME} ${SYSROOT_DIR}/usr/bin/llvm-config "\$@" +EOF +chmod +x ${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config + +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/target_base/llvm-project_git.info b/loongarch64/scripts/step/target_base/llvm-project_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/target_base/llvm-project_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/target_base/llvm_runtimes b/loongarch64/scripts/step/target_base/llvm_runtimes new file mode 100644 index 00000000..0aa962ed --- /dev/null +++ b/loongarch64/scripts/step/target_base/llvm_runtimes @@ -0,0 +1,31 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=llvm_runtimes +export PACKAGE_VERSION=16.0.6 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/llvm_runtimes/16.0.6/ +rm -rf ${BUILD_DIRECTORY}/llvm-project-16.0.6.src +tar xvf ${DOWNLOADDIR}/llvm-project-16.0.6.src.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project-16.0.6.src + pushd runtimes + mkdir cross-build + pushd cross-build + CC="clang" CXX="clang++" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_CONFIG=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_AR="${CROSSTOOLS_DIR}/bin/llvm-ar" \ + -DCMAKE_RANLIB="${CROSSTOOLS_DIR}/bin/llvm-ranlib" \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;pstl;libcxx" \ + -DCMAKE_MAKE_PROGRAM:PATH=${CROSSTOOLS_DIR}/bin/ninja \ + -DCMAKE_SYSROOT=${SYSROOT_DIR} \ + -DCMAKE_FIND_ROOT_PATH=${SYSROOT_DIR}/usr \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON \ + -DLLVM_HOST_TRIPLE=${CROSS_TARGET} + eval ${NINJA_AND_INSTALL} + popd + popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project-16.0.6.src diff --git a/loongarch64/scripts/step/target_base/llvm_runtimes.info b/loongarch64/scripts/step/target_base/llvm_runtimes.info new file mode 100644 index 00000000..ed70a557 --- /dev/null +++ b/loongarch64/scripts/step/target_base/llvm_runtimes.info @@ -0,0 +1 @@ +llvm-project|16.0.6 diff --git a/loongarch64/scripts/step/target_base/llvm_runtimes_git b/loongarch64/scripts/step/target_base/llvm_runtimes_git new file mode 100644 index 00000000..595df26a --- /dev/null +++ b/loongarch64/scripts/step/target_base/llvm_runtimes_git @@ -0,0 +1,32 @@ +source env/target_base/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=target_base +export STEP_PACKAGENAME=llvm_runtimes_git +export PACKAGE_VERSION=main_git-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/llvm_runtimes_git/main_git-default/ +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git +tar xvf ${DOWNLOADDIR}/llvm-project_git-main_git-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git + pushd runtimes + mkdir cross-build + pushd cross-build + CC="clang" CXX="clang++" \ + cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ + -DLLVM_CONFIG=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-llvm-config \ + -DLLVM_LIBDIR_SUFFIX=64 \ + -DCMAKE_AR="${CROSSTOOLS_DIR}/bin/llvm-ar" \ + -DCMAKE_RANLIB="${CROSSTOOLS_DIR}/bin/llvm-ranlib" \ + -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ + -DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;pstl;libcxx" \ + -DCMAKE_MAKE_PROGRAM:PATH=${CROSSTOOLS_DIR}/bin/ninja \ + -DPython3_EXECUTABLE=${CROSSTOOLS_DIR}/bin/${CROSS_TARGET}-python3 \ + -DCMAKE_SYSROOT=${SYSROOT_DIR} \ + -DCMAKE_FIND_ROOT_PATH=${SYSROOT_DIR}/usr \ + -DLLVM_LINK_LLVM_DYLIB:BOOL=ON \ + -DLLVM_HOST_TRIPLE=${CROSS_TARGET} + eval ${NINJA_AND_INSTALL} + popd + popd +popd +rm -rf ${BUILD_DIRECTORY}/llvm-project_git-main_git-default_git diff --git a/loongarch64/scripts/step/target_base/llvm_runtimes_git.info b/loongarch64/scripts/step/target_base/llvm_runtimes_git.info new file mode 100644 index 00000000..bd213a62 --- /dev/null +++ b/loongarch64/scripts/step/target_base/llvm_runtimes_git.info @@ -0,0 +1 @@ +llvm-project_git|main_git-default diff --git a/loongarch64/scripts/step/target_base/meson b/loongarch64/scripts/step/target_base/meson index bfc7bf43..ccdf06a7 100644 --- a/loongarch64/scripts/step/target_base/meson +++ b/loongarch64/scripts/step/target_base/meson @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=meson -export PACKAGE_VERSION=1.1.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/meson/1.1.1/ -rm -rf ${BUILD_DIRECTORY}/meson-1.1.1 -tar xvf ${DOWNLOADDIR}/meson-1.1.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/meson-1.1.1 +export PACKAGE_VERSION=1.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/meson/1.2.0/ +rm -rf ${BUILD_DIRECTORY}/meson-1.2.0 +tar xvf ${DOWNLOADDIR}/meson-1.2.0.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/meson-1.2.0 ${CROSSTOOLS_DIR}/bin/python3 setup.py build ${CROSSTOOLS_DIR}/bin/python3 setup.py install --root=${SYSROOT_DIR} --prefix=/usr sed -i "s@${CROSSTOOLS_DIR}@@g" ${SYSROOT_DIR}/bin/meson popd -rm -rf ${BUILD_DIRECTORY}/meson-1.1.1 +rm -rf ${BUILD_DIRECTORY}/meson-1.2.0 diff --git a/loongarch64/scripts/step/target_base/meson.info b/loongarch64/scripts/step/target_base/meson.info index 09e6426b..18197710 100644 --- a/loongarch64/scripts/step/target_base/meson.info +++ b/loongarch64/scripts/step/target_base/meson.info @@ -1 +1 @@ -meson|1.1.1 +meson|1.2.0 diff --git a/loongarch64/scripts/step/target_base/nss b/loongarch64/scripts/step/target_base/nss index 1122afcd..609b3fae 100644 --- a/loongarch64/scripts/step/target_base/nss +++ b/loongarch64/scripts/step/target_base/nss @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=nss -export PACKAGE_VERSION=3.91 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/nss/3.91/ -rm -rf ${BUILD_DIRECTORY}/nss-3.91 -tar xvf ${DOWNLOADDIR}/nss-3.91.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/nss-3.91 +export PACKAGE_VERSION=3.92 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/nss/3.92/ +rm -rf ${BUILD_DIRECTORY}/nss-3.92 +tar xvf ${DOWNLOADDIR}/nss-3.92.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/nss-3.92 pushd nss sed -i "s@ uname -m@ cross-uname -m@g" coreconf/arch.mk make -j${JOBS} CC="gcc" -C coreconf/nsinstall BUILD_OPT=1 USE_64=1 \ @@ -44,4 +44,4 @@ pushd dist install -v -m755 Linux*/bin/{certutil,pk12util} ${SYSROOT_DIR}/usr/bin popd popd -rm -rf ${BUILD_DIRECTORY}/nss-3.91 +rm -rf ${BUILD_DIRECTORY}/nss-3.92 diff --git a/loongarch64/scripts/step/target_base/nss.info b/loongarch64/scripts/step/target_base/nss.info index 6d184138..2160e671 100644 --- a/loongarch64/scripts/step/target_base/nss.info +++ b/loongarch64/scripts/step/target_base/nss.info @@ -1 +1 @@ -nss|3.91 +nss|3.92 diff --git a/loongarch64/scripts/step/target_base/openssh b/loongarch64/scripts/step/target_base/openssh index dfb3e4a9..f261f3cb 100644 --- a/loongarch64/scripts/step/target_base/openssh +++ b/loongarch64/scripts/step/target_base/openssh @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=openssh -export PACKAGE_VERSION=9.3p1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/openssh/9.3p1/ -rm -rf ${BUILD_DIRECTORY}/openssh-9.3p1 -tar xvf ${DOWNLOADDIR}/openssh-9.3p1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/openssh-9.3p1 +export PACKAGE_VERSION=9.3p2 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/openssh/9.3p2/ +rm -rf ${BUILD_DIRECTORY}/openssh-9.3p2 +tar xvf ${DOWNLOADDIR}/openssh-9.3p2.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/openssh-9.3p2 for config_i in $(find -name "config.sub") do cp ${CROSSTOOLS_DIR}/share/automake*/config.* $(dirname ${config_i})/ @@ -23,4 +23,4 @@ pushd ${BUILD_DIRECTORY}/openssh-9.3p1 make DESTDIR=${SYSROOT_DIR} install-nokeys host-key install -v -m755 contrib/ssh-copy-id ${SYSROOT_DIR}/usr/bin popd -rm -rf ${BUILD_DIRECTORY}/openssh-9.3p1 +rm -rf ${BUILD_DIRECTORY}/openssh-9.3p2 diff --git a/loongarch64/scripts/step/target_base/openssh.info b/loongarch64/scripts/step/target_base/openssh.info index fe6eb58a..02353926 100644 --- a/loongarch64/scripts/step/target_base/openssh.info +++ b/loongarch64/scripts/step/target_base/openssh.info @@ -1 +1 @@ -openssh|9.3p1 +openssh|9.3p2 diff --git a/loongarch64/scripts/step/target_base/openssl b/loongarch64/scripts/step/target_base/openssl index 3108a90f..fdffb66c 100644 --- a/loongarch64/scripts/step/target_base/openssl +++ b/loongarch64/scripts/step/target_base/openssl @@ -11,7 +11,7 @@ pushd ${BUILD_DIRECTORY}/openssl-3.1.1 CC="${CROSS_TARGET}-gcc" \ ./Configure --prefix=/usr --openssldir=/etc/ssl \ --libdir=lib64 shared zlib linux-generic64 - sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile +# sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile eval ${MAKE_AND_INSTALL} popd rm -rf ${BUILD_DIRECTORY}/openssl-3.1.1 diff --git a/loongarch64/scripts/step/target_base/pip b/loongarch64/scripts/step/target_base/pip index 56491077..6a1ca001 100644 --- a/loongarch64/scripts/step/target_base/pip +++ b/loongarch64/scripts/step/target_base/pip @@ -3,13 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=pip -export PACKAGE_VERSION=23.1.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/pip/23.1.2/ -rm -rf ${BUILD_DIRECTORY}/pip-23.1.2 -tar xvf ${DOWNLOADDIR}/pip-23.1.2.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/pip-23.1.2 +export PACKAGE_VERSION=23.2.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/pip/23.2.1/ +rm -rf ${BUILD_DIRECTORY}/pip-23.2.1 +tar xvf ${DOWNLOADDIR}/pip-23.2.1.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/pip-23.2.1 ${CROSSTOOLS_DIR}/bin/python3 setup.py build ${CROSSTOOLS_DIR}/bin/python3 setup.py install --root=${SYSROOT_DIR} --prefix=/usr sed -i "s@${CROSSTOOLS_DIR}@@g" ${SYSROOT_DIR}/bin/pip{,3{,.1*}} popd -rm -rf ${BUILD_DIRECTORY}/pip-23.1.2 +rm -rf ${BUILD_DIRECTORY}/pip-23.2.1 diff --git a/loongarch64/scripts/step/target_base/pip.info b/loongarch64/scripts/step/target_base/pip.info index bf66d2f0..19107398 100644 --- a/loongarch64/scripts/step/target_base/pip.info +++ b/loongarch64/scripts/step/target_base/pip.info @@ -1 +1 @@ -pip|23.1.2 +pip|23.2.1 diff --git a/loongarch64/scripts/step/target_base/rustc b/loongarch64/scripts/step/target_base/rustc index 234b3fc3..83cd9019 100644 --- a/loongarch64/scripts/step/target_base/rustc +++ b/loongarch64/scripts/step/target_base/rustc @@ -3,20 +3,15 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=rustc -export PACKAGE_VERSION=1.70.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/rustc/1.70.0/ -rm -rf ${BUILD_DIRECTORY}/rustc-1.70.0-src -tar xvf ${DOWNLOADDIR}/rustc-1.70.0-src.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/rustc-1.70.0-src - patch -Np1 -i ${SYSDIR}/files/target_base/rustc/1.70.0/patches/0001-linux-raw-sys-0.1.4-add-loongarch64-support.patch - patch -Np1 -i ${SYSDIR}/files/target_base/rustc/1.70.0/patches/0001-fix-inconsistency-in-features-usage-of-dependency-sy.patch - - cargo update -p cargo - find vendor -name .cargo-checksum.json \ - -exec sed -i.uncheck -e 's/"files":{[^}]*}/"files":{ }/' '{}' '+' +export PACKAGE_VERSION=1.71.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/rustc/1.71.0/ +rm -rf ${BUILD_DIRECTORY}/rustc-1.71.0-src +tar xvf ${DOWNLOADDIR}/rustc-1.71.0-src.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/rustc-1.71.0-src + LDFLAGS="" \ PKG_CONFIG_SYSROOT_DIR="" \ - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib${LIB_SUFF} \ + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ --host=${CROSS_TARGET} \ --local-rust-root=${CROSSTOOLS_DIR} \ --enable-extended --enable-vendor --release-channel=stable \ @@ -37,4 +32,4 @@ pushd ${BUILD_DIRECTORY}/rustc-1.70.0-src LOONGARCH64_UNKNOWN_LINUX_GNU_OPENSSL_LIB_DIR=${SYSROOT_DIR}/usr/lib64 \ DESTDIR=${SYSROOT_DIR}/ install popd -rm -rf ${BUILD_DIRECTORY}/rustc-1.70.0-src +rm -rf ${BUILD_DIRECTORY}/rustc-1.71.0-src diff --git a/loongarch64/scripts/step/target_base/rustc.info b/loongarch64/scripts/step/target_base/rustc.info index 33216ddb..5599bad5 100644 --- a/loongarch64/scripts/step/target_base/rustc.info +++ b/loongarch64/scripts/step/target_base/rustc.info @@ -1 +1 @@ -rustc|1.70.0 +rustc|1.71.0 diff --git a/loongarch64/scripts/step/target_base/sudo b/loongarch64/scripts/step/target_base/sudo index 59fd269d..32bfe3ae 100644 --- a/loongarch64/scripts/step/target_base/sudo +++ b/loongarch64/scripts/step/target_base/sudo @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=sudo -export PACKAGE_VERSION=1.9.14p1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/sudo/1.9.14p1/ -rm -rf ${BUILD_DIRECTORY}/sudo-1.9.14p1 -tar xvf ${DOWNLOADDIR}/sudo-1.9.14p1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/sudo-1.9.14p1 +export PACKAGE_VERSION=1.9.14p3 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/sudo/1.9.14p3/ +rm -rf ${BUILD_DIRECTORY}/sudo-1.9.14p3 +tar xvf ${DOWNLOADDIR}/sudo-1.9.14p3.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/sudo-1.9.14p3 ./configure ${COMMON_CONFIG} \ --with-secure-path --with-all-insults --with-env-editor \ --with-passprompt="[sudo] password for %p: " @@ -15,4 +15,4 @@ pushd ${BUILD_DIRECTORY}/sudo-1.9.14p1 sed -i "/^install_gid/s@= 0@= $(id -u)@g" Makefile eval ${MAKE_AND_INSTALL} popd -rm -rf ${BUILD_DIRECTORY}/sudo-1.9.14p1 +rm -rf ${BUILD_DIRECTORY}/sudo-1.9.14p3 diff --git a/loongarch64/scripts/step/target_base/sudo.info b/loongarch64/scripts/step/target_base/sudo.info index ad7a0b46..8717a181 100644 --- a/loongarch64/scripts/step/target_base/sudo.info +++ b/loongarch64/scripts/step/target_base/sudo.info @@ -1 +1 @@ -sudo|1.9.14p1 +sudo|1.9.14p3 diff --git a/loongarch64/scripts/step/target_base/systemd b/loongarch64/scripts/step/target_base/systemd index 6995db4e..41522747 100644 --- a/loongarch64/scripts/step/target_base/systemd +++ b/loongarch64/scripts/step/target_base/systemd @@ -3,13 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=systemd -export PACKAGE_VERSION=254-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/systemd/254-default/ -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git -tar xvf ${DOWNLOADDIR}/systemd-254-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/systemd-254-default_git - patch -Np1 -i ${SYSDIR}/files/target_base/systemd/254-default/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch - +export PACKAGE_VERSION=254 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/systemd/254/ +rm -rf ${BUILD_DIRECTORY}/systemd-254 +tar xvf ${DOWNLOADDIR}/systemd-254.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/systemd-254 + pushd src/basic python3 missing_syscalls.py missing_syscall_def.h $(ls syscalls-*.txt) popd @@ -28,4 +27,4 @@ pushd ${BUILD_DIRECTORY}/systemd-254-default_git eval ${NINJA_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git +rm -rf ${BUILD_DIRECTORY}/systemd-254 diff --git a/loongarch64/scripts/step/target_base/systemd.info b/loongarch64/scripts/step/target_base/systemd.info index ac0e4883..fd0cbc5b 100644 --- a/loongarch64/scripts/step/target_base/systemd.info +++ b/loongarch64/scripts/step/target_base/systemd.info @@ -1 +1 @@ -systemd|254-default +systemd|254 diff --git a/loongarch64/scripts/step/target_base/tar b/loongarch64/scripts/step/target_base/tar index 5d9739aa..864cc53c 100644 --- a/loongarch64/scripts/step/target_base/tar +++ b/loongarch64/scripts/step/target_base/tar @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=tar -export PACKAGE_VERSION=1.34 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/tar/1.34/ -rm -rf ${BUILD_DIRECTORY}/tar-1.34 -tar xvf ${DOWNLOADDIR}/tar-1.34.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/tar-1.34 +export PACKAGE_VERSION=1.35 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/tar/1.35/ +rm -rf ${BUILD_DIRECTORY}/tar-1.35 +tar xvf ${DOWNLOADDIR}/tar-1.35.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/tar-1.35 for config_i in $(find -name "config.sub") do @@ -22,4 +22,4 @@ pushd ${BUILD_DIRECTORY}/tar-1.34 make DESTDIR=${SYSROOT_DIR} install rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/tar-1.34 +rm -rf ${BUILD_DIRECTORY}/tar-1.35 diff --git a/loongarch64/scripts/step/target_base/tar.info b/loongarch64/scripts/step/target_base/tar.info index 8918b09a..92704d0e 100644 --- a/loongarch64/scripts/step/target_base/tar.info +++ b/loongarch64/scripts/step/target_base/tar.info @@ -1 +1 @@ -tar|1.34 +tar|1.35 diff --git a/loongarch64/scripts/step/target_base/unrar b/loongarch64/scripts/step/target_base/unrar index 85eb135c..afa65bb2 100644 --- a/loongarch64/scripts/step/target_base/unrar +++ b/loongarch64/scripts/step/target_base/unrar @@ -3,10 +3,10 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=unrar -export PACKAGE_VERSION=6.2.8 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/unrar/6.2.8/ +export PACKAGE_VERSION=6.2.9 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/unrar/6.2.9/ rm -rf ${BUILD_DIRECTORY}/unrar -tar xvf ${DOWNLOADDIR}/unrarsrc-6.2.8.tar.gz -C ${BUILD_DIRECTORY} +tar xvf ${DOWNLOADDIR}/unrarsrc-6.2.9.tar.gz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/unrar make -j${JOBS} CXX="${CROSS_TARGET}-g++" STRIP=${CROSS_TARGET}-strip -f makefile install -v -m755 unrar ${SYSROOT_DIR}/usr/bin diff --git a/loongarch64/scripts/step/target_base/unrar.info b/loongarch64/scripts/step/target_base/unrar.info index 19917d84..8d9ba359 100644 --- a/loongarch64/scripts/step/target_base/unrar.info +++ b/loongarch64/scripts/step/target_base/unrar.info @@ -1 +1 @@ -unrar|6.2.8 +unrar|6.2.9 diff --git a/loongarch64/scripts/step/target_base/xfsprogs b/loongarch64/scripts/step/target_base/xfsprogs index c660497e..25951da2 100644 --- a/loongarch64/scripts/step/target_base/xfsprogs +++ b/loongarch64/scripts/step/target_base/xfsprogs @@ -3,14 +3,13 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=target_base export STEP_PACKAGENAME=xfsprogs -export PACKAGE_VERSION=6.3.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/xfsprogs/6.3.0/ -rm -rf ${BUILD_DIRECTORY}/xfsprogs-6.3.0 -tar xvf ${DOWNLOADDIR}/xfsprogs-6.3.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/xfsprogs-6.3.0 - patch -Np1 -i ${SYSDIR}/files/target_base/xfsprogs/6.3.0/patches/0001-Fix-for-cross-build.patch - patch -Np1 -i ${SYSDIR}/files/target_base/xfsprogs/6.3.0/patches/0002-Fix-for-gcc-13.patch - patch -Np1 -i ${SYSDIR}/files/target_base/xfsprogs/6.3.0/patches/0001-fix-po-file-typo.patch +export PACKAGE_VERSION=6.4.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/target_base/xfsprogs/6.4.0/ +rm -rf ${BUILD_DIRECTORY}/xfsprogs-6.4.0 +tar xvf ${DOWNLOADDIR}/xfsprogs-6.4.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/xfsprogs-6.4.0 + patch -Np1 -i ${SYSDIR}/files/target_base/xfsprogs/6.4.0/patches/0001-Fix-for-cross-build.patch + patch -Np1 -i ${SYSDIR}/files/target_base/xfsprogs/6.4.0/patches/0002-Fix-for-gcc-13.patch for config_i in $(find -name "config.sub") do @@ -25,4 +24,4 @@ pushd ${BUILD_DIRECTORY}/xfsprogs-6.3.0 make DESTDIR=${SYSROOT_DIR} install rm -f ${SYSROOT_DIR}/usr/lib64/*.la popd -rm -rf ${BUILD_DIRECTORY}/xfsprogs-6.3.0 +rm -rf ${BUILD_DIRECTORY}/xfsprogs-6.4.0 diff --git a/loongarch64/scripts/step/target_base/xfsprogs.info b/loongarch64/scripts/step/target_base/xfsprogs.info index 1c0a34f5..9a1477b9 100644 --- a/loongarch64/scripts/step/target_base/xfsprogs.info +++ b/loongarch64/scripts/step/target_base/xfsprogs.info @@ -1 +1 @@ -xfsprogs|6.3.0 +xfsprogs|6.4.0 diff --git a/loongarch64/scripts/step/toolchain/binutils b/loongarch64/scripts/step/toolchain/binutils new file mode 100644 index 00000000..af50f631 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/binutils @@ -0,0 +1,24 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=binutils +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + rm -rf gdb* libdecnumber readline sim + mkdir cross-build + pushd cross-build + LDFLAGS="--static" CC=gcc AR=ar AS=as CFLAGS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${CFLAGS} -Wno-error=dangling-pointer" || echo "${CFLAGS}")" \ + ../configure --prefix=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${CROSS_TARGET} --with-sysroot=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target --enable-nls \ + --enable-64-bit-bfd --disable-shared + make -j${JOBS} configure-host LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" + make -j${JOBS} + make install-strip + popd +popd +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/toolchain/binutils.info b/loongarch64/scripts/step/toolchain/binutils.info new file mode 100644 index 00000000..4ed7db63 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/binutils.info @@ -0,0 +1 @@ +binutils|2.41 diff --git a/loongarch64/scripts/step/toolchain/binutils_git b/loongarch64/scripts/step/toolchain/binutils_git new file mode 100644 index 00000000..2b91795f --- /dev/null +++ b/loongarch64/scripts/step/toolchain/binutils_git @@ -0,0 +1,24 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=binutils_git +export PACKAGE_VERSION=2.41-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/binutils_git/2.41-default/ +rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git +tar xvf ${DOWNLOADDIR}/binutils_git-2.41-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils_git-2.41-default_git + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + rm -rf gdb* libdecnumber readline sim + mkdir cross-build + pushd cross-build + LDFLAGS="--static" CC=gcc AR=ar AS=as CFLAGS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${CFLAGS} -Wno-error=dangling-pointer" || echo "${CFLAGS}")" \ + ../configure --prefix=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${CROSS_TARGET} --with-sysroot=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target --enable-nls \ + --enable-64-bit-bfd --disable-shared + make -j${JOBS} configure-host LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" + make -j${JOBS} + make install-strip + popd +popd +rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git diff --git a/loongarch64/scripts/step/toolchain/binutils_git.info b/loongarch64/scripts/step/toolchain/binutils_git.info new file mode 100644 index 00000000..97f76bb3 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/binutils_git.info @@ -0,0 +1 @@ +binutils_git|2.41-default diff --git a/loongarch64/scripts/step/toolchain/cross-binutils b/loongarch64/scripts/step/toolchain/cross-binutils index 871741a9..29550379 100644 --- a/loongarch64/scripts/step/toolchain/cross-binutils +++ b/loongarch64/scripts/step/toolchain/cross-binutils @@ -3,23 +3,28 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-binutils -export PACKAGE_VERSION=2.40 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-binutils/2.40/ -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 -tar xvf ${DOWNLOADDIR}/binutils-2.40.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils-2.40 +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 + HOST_HOST=$(archname_to_triple "$(get_user_set_env host ${CROSS_HOST})" "${CROSS_HOST}") + HOST_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${CROSS_TARGET})" "${ARCH_ABI}") + + + PATH=${TOOLCHAIN_DIRECTORY}/cross-target/${HOST_HOST}/cross-tools/bin:${TOOLCHAIN_DIRECTORY}/cross-target/${HOST_TARGET}/cross-tools/bin:${PATH} + rm -rf gdb* libdecnumber readline sim mkdir cross-build pushd cross-build - LDFLAGS="--static" CC=gcc AR=ar AS=as \ - ../configure --prefix=${PREFIX}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ - --target=${CROSS_TARGET} --with-sysroot=${PREFIX}/cross-tools/target --enable-nls \ + LDFLAGS="--static" \ + ../configure --prefix=${CROSS_TOOLCHAIN_PREFIX}/cross-tools --build=${CROSS_HOST} --host=${HOST_HOST} --target=${HOST_TARGET} \ + --with-sysroot=${CROSS_TOOLCHAIN_PREFIX}/cross-tools/target --enable-nls \ --enable-64-bit-bfd --disable-shared - make -j${JOBS} configure-host LIBS="-lzstd -lpthread" + make -j${JOBS} configure-host LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" make -j${JOBS} - make DESTDIR=${PWD}/dest install-strip - mkdir -pv ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/binutils/${CROSS_TARGET}/ - cp -a dest/${PREFIX}/* ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/binutils/${CROSS_TARGET}/ + make DESTDIR=${TOOLCHAIN_DIRECTORY}/${HOST_HOST}/${HOST_TARGET}/binutils install-strip popd popd -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/toolchain/cross-binutils.info b/loongarch64/scripts/step/toolchain/cross-binutils.info index fe7b49e2..4ed7db63 100644 --- a/loongarch64/scripts/step/toolchain/cross-binutils.info +++ b/loongarch64/scripts/step/toolchain/cross-binutils.info @@ -1 +1 @@ -binutils|2.40 +binutils|2.41 diff --git a/loongarch64/scripts/step/toolchain/cross-gcc b/loongarch64/scripts/step/toolchain/cross-gcc index 11e662ed..fd99013e 100644 --- a/loongarch64/scripts/step/toolchain/cross-gcc +++ b/loongarch64/scripts/step/toolchain/cross-gcc @@ -3,19 +3,18 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-gcc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-gcc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 - patch -Np1 -i ${SYSDIR}/files/toolchain/cross-gcc/13.1.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + HOST_HOST=$(archname_to_triple "$(get_user_set_env host ${CROSS_HOST})" "${CROSS_HOST}") + HOST_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${HOST_TARGET})" "${ARCH_ABI}") + patch -Np1 -i ${SYSDIR}/files/toolchain/cross-gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch - if [ -d ${PREFIX}/cross-tools ]; then - mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} - fi - mkdir -pv ${PREFIX}/cross-tools - mkdir -pv ${PREFIX}/cross-tools/target/lib{,64} - cp -a ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/binutils/${CROSS_TARGET}/cross-tools/* ${PREFIX}/cross-tools/ + + PATH=${TOOLCHAIN_DIRECTORY}/cross-target/${HOST_HOST}/cross-tools/bin:${TOOLCHAIN_DIRECTORY}/cross-target/${HOST_TARGET}/cross-tools/bin:${PATH} tar xvf $(ls ${DOWNLOADDIR}/gmp-*.tar.* | sort -V | tail -n1) tar xvf $(ls ${DOWNLOADDIR}/mpfr-*.tar.* | sort -V | tail -n1) @@ -25,19 +24,17 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 mv mpc-* mpc mkdir cross-build pushd cross-build - AR=ar LDFLAGS="-static" \ - ../configure --prefix=${PREFIX}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ - --target=${CROSS_TARGET} \ - --with-newlib --disable-shared --with-sysroot=${PREFIX}/cross-tools/target \ + ../configure --prefix=${CROSS_TOOLCHAIN_PREFIX}/cross-tools --build=${CROSS_HOST} --host=${HOST_HOST} \ + --target=${HOST_TARGET} \ + --with-newlib --disable-shared --with-sysroot=${CROSS_TOOLCHAIN_PREFIX}/cross-tools/target \ --disable-decimal-float --disable-libgomp --disable-libitm \ --disable-libsanitizer --disable-libquadmath --disable-threads \ --disable-target-zlib --with-system-zlib --enable-checking=release \ - --enable-default-pie \ + --enable-default-pie --disable-multilib \ + --with-abi=${ARCH_ABI} \ --enable-languages=c,c++ - make -j${JOBS} all-gcc all-target-libgcc LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" - make DESTDIR=${PWD}/dest install-strip-gcc install-strip-target-libgcc - mkdir -pv ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc-newlib/${CROSS_TARGET}/ - cp -a dest/${PREFIX}/* ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc-newlib/${CROSS_TARGET}/ + make -j${JOBS} all-gcc all-target-libgcc + make DESTDIR=${TOOLCHAIN_DIRECTORY}/${HOST_HOST}/${HOST_TARGET}/gcc-newlib install-strip-gcc install-strip-target-libgcc popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-gcc-glibc b/loongarch64/scripts/step/toolchain/cross-gcc-glibc index 11c6fba2..5793117a 100644 --- a/loongarch64/scripts/step/toolchain/cross-gcc-glibc +++ b/loongarch64/scripts/step/toolchain/cross-gcc-glibc @@ -3,19 +3,24 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-gcc-glibc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-gcc-glibc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-gcc-glibc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + HOST_HOST=$(archname_to_triple "$(get_user_set_env host ${CROSS_HOST})" "${CROSS_HOST}") + HOST_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${HOST_TARGET})" "${ARCH_ABI}") + patch -Np1 -i ${SYSDIR}/files/toolchain/cross-gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + + + PATH=${TOOLCHAIN_DIRECTORY}/cross-target/${HOST_HOST}/cross-tools/bin:${TOOLCHAIN_DIRECTORY}/cross-target/${HOST_TARGET}/cross-tools/bin:${PATH} + if [ -d ${PREFIX}/cross-tools ]; then - mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} + mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} fi mkdir -pv ${PREFIX}/cross-tools - mkdir -pv ${PREFIX}/cross-tools/target/lib{,64} - cp -a ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/binutils/${CROSS_TARGET}/cross-tools/* ${PREFIX}/cross-tools/ - cp -a ${TOOLCHAIN_DIRECTORY}/${ARCH_NAME}/linux-header/* ${PREFIX}/cross-tools/target/ - cp -a ${TOOLCHAIN_DIRECTORY}/${CROSS_TARGET}/glibc/* ${PREFIX}/cross-tools/target/ + cp -a ${TOOLCHAIN_DIRECTORY}/cross-target/${HOST_TARGET}/cross-tools/target ${PREFIX}/cross-tools/ sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in tar xvf $(ls ${DOWNLOADDIR}/gmp-*.tar.* | sort -V | tail -n1) @@ -26,20 +31,19 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 mv mpc-* mpc mkdir cross-build pushd cross-build - AR=ar LDFLAGS="-static" \ - ../configure --prefix=${PREFIX}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ - --target=${CROSS_TARGET} \ + LDFLAGS="-static" \ + ../configure --prefix=${PREFIX}/cross-tools --build=${CROSS_HOST} --host=${HOST_HOST} \ + --target=${HOST_TARGET} \ --enable-__cxa_atexit --enable-threads=posix \ --enable-libstdcxx-time \ --enable-checking=release \ --with-sysroot=${PREFIX}/cross-tools/target \ - --enable-default-pie --disable-multilib \ + --enable-default-pie --disable-multilib --enable-linker-build-id \ + --with-abi=${ARCH_ABI} \ --enable-languages=c,c++,fortran,objc,obj-c++,lto - make -j${JOBS} all-gcc LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" + make -j${JOBS} all-gcc make -j${JOBS} - make DESTDIR=${PWD}/dest install-strip - mkdir -pv ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc/${CROSS_TARGET}/ - cp -a dest/${PREFIX}/* ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc/${CROSS_TARGET}/ + make DESTDIR=${TOOLCHAIN_DIRECTORY}/${HOST_HOST}/${HOST_TARGET}/gcc install-strip popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-gcc-glibc.info b/loongarch64/scripts/step/toolchain/cross-gcc-glibc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/toolchain/cross-gcc-glibc.info +++ b/loongarch64/scripts/step/toolchain/cross-gcc-glibc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-gcc.info b/loongarch64/scripts/step/toolchain/cross-gcc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/toolchain/cross-gcc.info +++ b/loongarch64/scripts/step/toolchain/cross-gcc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-gcc_git b/loongarch64/scripts/step/toolchain/cross-gcc_git index dd22aac4..087b7b64 100644 --- a/loongarch64/scripts/step/toolchain/cross-gcc_git +++ b/loongarch64/scripts/step/toolchain/cross-gcc_git @@ -3,12 +3,12 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-gcc_git -export PACKAGE_VERSION=14.0.0-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-gcc_git/14.0.0-default/ -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git -tar xvf ${DOWNLOADDIR}/gcc_git-14.0.0-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git - patch -Np1 -i ${SYSDIR}/files/toolchain/cross-gcc_git/14.0.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch +export PACKAGE_VERSION=13.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-gcc_git/13.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git +tar xvf ${DOWNLOADDIR}/gcc_git-13.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git + patch -Np1 -i ${SYSDIR}/files/toolchain/cross-gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch if [ -d ${PREFIX}/cross-tools ]; then mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} @@ -40,4 +40,4 @@ pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git cp -a dest/${PREFIX}/* ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc_git-newlib/${CROSS_TARGET}/ popd popd -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git diff --git a/loongarch64/scripts/step/toolchain/cross-gcc_git.info b/loongarch64/scripts/step/toolchain/cross-gcc_git.info index 21756cd8..86f7b4da 100644 --- a/loongarch64/scripts/step/toolchain/cross-gcc_git.info +++ b/loongarch64/scripts/step/toolchain/cross-gcc_git.info @@ -1 +1 @@ -gcc_git|14.0.0-default +gcc_git|13.1.0-default diff --git a/loongarch64/scripts/step/toolchain/cross-mingw-binutils b/loongarch64/scripts/step/toolchain/cross-mingw-binutils index f6f547db..dbe9a270 100644 --- a/loongarch64/scripts/step/toolchain/cross-mingw-binutils +++ b/loongarch64/scripts/step/toolchain/cross-mingw-binutils @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-mingw-binutils -export PACKAGE_VERSION=2.40 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-mingw-binutils/2.40/ -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 -tar xvf ${DOWNLOADDIR}/binutils-2.40.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils-2.40 +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-mingw-binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 rm -rf gdb* libdecnumber readline sim mkdir cross-build pushd cross-build @@ -23,4 +23,4 @@ pushd ${BUILD_DIRECTORY}/binutils-2.40 cp -a dest/opt/* ${TOOLCHAIN_DIRECTORY}/${MINGW_HOST}/binutils/${CROSS_TARGET}/ popd popd -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/toolchain/cross-mingw-binutils.info b/loongarch64/scripts/step/toolchain/cross-mingw-binutils.info index fe7b49e2..4ed7db63 100644 --- a/loongarch64/scripts/step/toolchain/cross-mingw-binutils.info +++ b/loongarch64/scripts/step/toolchain/cross-mingw-binutils.info @@ -1 +1 @@ -binutils|2.40 +binutils|2.41 diff --git a/loongarch64/scripts/step/toolchain/cross-mingw-gcc b/loongarch64/scripts/step/toolchain/cross-mingw-gcc index 676e5092..402a74b2 100644 --- a/loongarch64/scripts/step/toolchain/cross-mingw-gcc +++ b/loongarch64/scripts/step/toolchain/cross-mingw-gcc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-mingw-gcc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-mingw-gcc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-mingw-gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 if [ -d ${PREFIX}/cross-tools ]; then mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} fi @@ -39,4 +39,4 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 cp -a dest/opt/* ${TOOLCHAIN_DIRECTORY}/${MINGW_HOST}/gcc-newlib/${CROSS_TARGET}/ popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc b/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc index 71d63466..b72ab19d 100644 --- a/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc +++ b/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-mingw-gcc-glibc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-mingw-gcc-glibc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-mingw-gcc-glibc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 if [ -d ${PREFIX}/cross-tools ]; then mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} fi @@ -43,4 +43,4 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 cp -a dest/opt/* ${TOOLCHAIN_DIRECTORY}/${MINGW_HOST}/gcc/${CROSS_TARGET}/ popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc.info b/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc.info +++ b/loongarch64/scripts/step/toolchain/cross-mingw-gcc-glibc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-mingw-gcc.info b/loongarch64/scripts/step/toolchain/cross-mingw-gcc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/toolchain/cross-mingw-gcc.info +++ b/loongarch64/scripts/step/toolchain/cross-mingw-gcc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/toolchain/cross-x86_64-binutils b/loongarch64/scripts/step/toolchain/cross-x86_64-binutils index 20ec06a8..d067d625 100644 --- a/loongarch64/scripts/step/toolchain/cross-x86_64-binutils +++ b/loongarch64/scripts/step/toolchain/cross-x86_64-binutils @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-x86_64-binutils -export PACKAGE_VERSION=2.41-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-x86_64-binutils/2.41-default/ -rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git -tar xvf ${DOWNLOADDIR}/binutils_git-2.41-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils_git-2.41-default_git +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-x86_64-binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 rm -rf gdb* libdecnumber readline sim mkdir cross-build pushd cross-build @@ -22,4 +22,4 @@ pushd ${BUILD_DIRECTORY}/binutils_git-2.41-default_git cp -a dest/${PREFIX}/* ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/binutils/${X86_64_LINUX_HOST}/ popd popd -rm -rf ${BUILD_DIRECTORY}/binutils_git-2.41-default_git +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/toolchain/cross-x86_64-binutils.info b/loongarch64/scripts/step/toolchain/cross-x86_64-binutils.info index 97f76bb3..4ed7db63 100644 --- a/loongarch64/scripts/step/toolchain/cross-x86_64-binutils.info +++ b/loongarch64/scripts/step/toolchain/cross-x86_64-binutils.info @@ -1 +1 @@ -binutils_git|2.41-default +binutils|2.41 diff --git a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc index 832b6305..7f6df6c9 100644 --- a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc +++ b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-x86_64-gcc -export PACKAGE_VERSION=14.0.0-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-x86_64-gcc/14.0.0-default/ -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git -tar xvf ${DOWNLOADDIR}/gcc_git-14.0.0-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +export PACKAGE_VERSION=13.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-x86_64-gcc/13.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git +tar xvf ${DOWNLOADDIR}/gcc_git-13.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git if [ -d ${PREFIX}/cross-tools ]; then mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} fi @@ -38,4 +38,4 @@ pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git cp -a dest/${PREFIX}/* ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc-newlib/${X86_64_LINUX_HOST}/ popd popd -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git diff --git a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc index 1be22f41..e75423e5 100644 --- a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc +++ b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=cross-x86_64-gcc-glibc -export PACKAGE_VERSION=14.0.0-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-x86_64-gcc-glibc/14.0.0-default/ -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git -tar xvf ${DOWNLOADDIR}/gcc_git-14.0.0-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +export PACKAGE_VERSION=13.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/cross-x86_64-gcc-glibc/13.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git +tar xvf ${DOWNLOADDIR}/gcc_git-13.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git if [ -d ${PREFIX}/cross-tools ]; then mv ${PREFIX}/cross-tools{,.$(date +%Y%m%d%H%M%S)} fi @@ -42,4 +42,4 @@ pushd ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git cp -a dest/${PREFIX}/* ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc/${X86_64_LINUX_HOST}/ popd popd -rm -rf ${BUILD_DIRECTORY}/gcc_git-14.0.0-default_git +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git diff --git a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc.info b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc.info index 21756cd8..86f7b4da 100644 --- a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc.info +++ b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc-glibc.info @@ -1 +1 @@ -gcc_git|14.0.0-default +gcc_git|13.1.0-default diff --git a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc.info b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc.info index 21756cd8..86f7b4da 100644 --- a/loongarch64/scripts/step/toolchain/cross-x86_64-gcc.info +++ b/loongarch64/scripts/step/toolchain/cross-x86_64-gcc.info @@ -1 +1 @@ -gcc_git|14.0.0-default +gcc_git|13.1.0-default diff --git a/loongarch64/scripts/step/toolchain/dist-cross-gcc b/loongarch64/scripts/step/toolchain/dist-cross-gcc index b768e4f6..d01469ad 100644 --- a/loongarch64/scripts/step/toolchain/dist-cross-gcc +++ b/loongarch64/scripts/step/toolchain/dist-cross-gcc @@ -5,25 +5,32 @@ export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=dist-cross-gcc export PACKAGE_VERSION= export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/dist-cross-gcc// +HOST_HOST=$(archname_to_triple "$(get_user_set_env host ${CROSS_HOST})" "${CROSS_HOST}") +HOST_ARCH_NAME="$(get_user_set_env host ${HOST_ARCH_NAME})" +HOST_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") +TARGET_ARCH_NAME="$(get_user_set_env target ${DISTRO_ARCH})" +ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${HOST_HOST})" "${ARCH_ABI}") + if [ -d ${TEMP_DIRECTORY}/cross-tools ]; then mv ${TEMP_DIRECTORY}/cross-tools{,.$(date +%Y%m%d%H%M%S)} fi mkdir -pv ${TEMP_DIRECTORY}/cross-tools/target/usr/lib{,64} ln -sv usr/lib{,64} ${TEMP_DIRECTORY}/cross-tools/target/ -cp -a ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/binutils/${CROSS_TARGET}/cross-tools/* ${TEMP_DIRECTORY}/cross-tools/ -cp -a ${TOOLCHAIN_DIRECTORY}/${CROSS_HOST}/gcc/${CROSS_TARGET}/cross-tools/* ${TEMP_DIRECTORY}/cross-tools/ -cp -a ${TOOLCHAIN_DIRECTORY}/${ARCH_NAME}/linux-header/* ${TEMP_DIRECTORY}/cross-tools/target/ -cp -a ${TOOLCHAIN_DIRECTORY}/${CROSS_TARGET}/glibc/* ${TEMP_DIRECTORY}/cross-tools/target/ +cp -a ${TOOLCHAIN_DIRECTORY}/${HOST_HOST}/${HOST_TARGET}/binutils/${CROSS_TOOLCHAIN_PREFIX}/cross-tools/* ${TEMP_DIRECTORY}/cross-tools/ +cp -a ${TOOLCHAIN_DIRECTORY}/${HOST_HOST}/${HOST_TARGET}/gcc-newlib/${CROSS_TOOLCHAIN_PREFIX}/cross-tools/* ${TEMP_DIRECTORY}/cross-tools/ +# cp -a ${TOOLCHAIN_DIRECTORY}/${ARCH_NAME}/linux-header/* ${TEMP_DIRECTORY}/cross-tools/target/ +# cp -a ${TOOLCHAIN_DIRECTORY}/${CROSS_TARGET}/glibc/* ${TEMP_DIRECTORY}/cross-tools/target/ pushd ${TEMP_DIRECTORY} - if [ -f ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/${DISTRO_NAME}-${DISTRO_VERSION}-${HOST_ARCH_NAME}-cross-tools-${DISTRO_ARCH}-gcc-glibc.tar.xz ]; then - rm ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/${DISTRO_NAME}-${DISTRO_VERSION}-${HOST_ARCH_NAME}-cross-tools-${DISTRO_ARCH}-gcc-glibc.tar.xz + if [ -f ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/${DISTRO_NAME}-${DISTRO_VERSION}-${HOST_ARCH_NAME}-cross-tools-${TARGET_ARCH_NAME}-gcc-glibc.tar.xz ]; then + rm ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/${DISTRO_NAME}-${DISTRO_VERSION}-${HOST_ARCH_NAME}-cross-tools-${TARGET_ARCH_NAME}-gcc-glibc.tar.xz fi mkdir -pv ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/ - tar --xattrs-include='*' --owner=root --group=root -cJf ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/${DISTRO_NAME}-${DISTRO_VERSION}-${HOST_ARCH_NAME}-cross-tools-${DISTRO_ARCH}-gcc-glibc.tar.xz cross-tools + tar --xattrs-include='*' --owner=root --group=root -cJf ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/${DISTRO_NAME}-${DISTRO_VERSION}-${HOST_ARCH_NAME}-cross-tools-${TARGET_ARCH_NAME}-gcc.tar.xz cross-tools + info_pool "生成了可发布的压缩包文件:${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/gcc/${DISTRO_NAME}-${DISTRO_VERSION}-${HOST_ARCH_NAME}-cross-tools-${TARGET_ARCH_NAME}-gcc.tar.xz" popd if [ -d ${TEMP_DIRECTORY}/cross-tools ]; then diff --git a/loongarch64/scripts/step/toolchain/dist-cross-rustc b/loongarch64/scripts/step/toolchain/dist-cross-rustc index 49dee16f..6f8c584f 100644 --- a/loongarch64/scripts/step/toolchain/dist-cross-rustc +++ b/loongarch64/scripts/step/toolchain/dist-cross-rustc @@ -3,11 +3,11 @@ source env/distro.info source env/function.sh export STEP_BUILDNAME=toolchain export STEP_PACKAGENAME=dist-cross-rustc -export PACKAGE_VERSION=1.70.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/dist-cross-rustc/1.70.0/ -rm -rf ${BUILD_DIRECTORY}/rustc-1.70.0-src -tar xvf ${DOWNLOADDIR}/rustc-1.70.0-src.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/rustc-1.70.0-src +export PACKAGE_VERSION=1.71.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/dist-cross-rustc/1.71.0/ +rm -rf ${BUILD_DIRECTORY}/rustc-1.71.0-src +tar xvf ${DOWNLOADDIR}/rustc-1.71.0-src.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/rustc-1.71.0-src if [ -d ${TEMP_DIRECTORY}/cross-tools ]; then @@ -29,7 +29,7 @@ pushd ${BUILD_DIRECTORY}/rustc-1.70.0-src make -j${JOBS} TARGET_CC="${CROSS_TARGET}-gcc" PATH=${TEMP_DIRECTORY}/cross-tools/bin:$PATH \ make -j${JOBS} TARGET_CC="${CROSS_TARGET}-gcc" dist - mkdir -p ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/rust/$(echo "1.70.0" | sed "s@-default@@g")/ - find build/dist -name "*.xz" -exec mv -v '{}' ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/rust/$(echo "1.70.0" | sed "s@-default@@g")/ ';' + mkdir -p ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/rust/$(echo "1.71.0" | sed "s@-default@@g")/ + find build/dist -name "*.xz" -exec mv -v '{}' ${DIST_DIRECTORY}/host/${HOST_ARCH_NAME}/rust/$(echo "1.71.0" | sed "s@-default@@g")/ ';' popd -rm -rf ${BUILD_DIRECTORY}/rustc-1.70.0-src +rm -rf ${BUILD_DIRECTORY}/rustc-1.71.0-src diff --git a/loongarch64/scripts/step/toolchain/dist-cross-rustc.info b/loongarch64/scripts/step/toolchain/dist-cross-rustc.info index 33216ddb..5599bad5 100644 --- a/loongarch64/scripts/step/toolchain/dist-cross-rustc.info +++ b/loongarch64/scripts/step/toolchain/dist-cross-rustc.info @@ -1 +1 @@ -rustc|1.70.0 +rustc|1.71.0 diff --git a/loongarch64/scripts/step/toolchain/gcc b/loongarch64/scripts/step/toolchain/gcc new file mode 100644 index 00000000..cc1b2208 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/gcc @@ -0,0 +1,39 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=gcc +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${CROSS_TARGET})" "${ARCH_ABI}") + patch -Np1 -i ${SYSDIR}/files/toolchain/gcc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + + mkdir -pv ${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target/usr/lib{,64} + + tar xvf $(ls ${DOWNLOADDIR}/gmp-*.tar.* | sort -V | tail -n1) + tar xvf $(ls ${DOWNLOADDIR}/mpfr-*.tar.* | sort -V | tail -n1) + tar xvf $(ls ${DOWNLOADDIR}/mpc-*.tar.* | sort -V | tail -n1) + mv gmp-* gmp + mv mpfr-* mpfr + mv mpc-* mpc + mkdir cross-build + pushd cross-build + AR=ar \ + ../configure --prefix=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${CROSS_TARGET} \ + --with-newlib --disable-shared --with-sysroot=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target \ + --disable-decimal-float --disable-libgomp --disable-libitm \ + --disable-libsanitizer --disable-libquadmath --disable-threads \ + --disable-target-zlib --with-system-zlib --enable-checking=release \ + --enable-default-pie --disable-multilib \ + --with-abi=${ARCH_ABI} \ + --enable-languages=c,c++ + make -j${JOBS} all-gcc all-target-libgcc LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" + make install-strip-gcc install-strip-target-libgcc + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/toolchain/gcc-glibc b/loongarch64/scripts/step/toolchain/gcc-glibc new file mode 100644 index 00000000..956f9915 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/gcc-glibc @@ -0,0 +1,42 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=gcc-glibc +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/gcc-glibc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + CROSS_ARCH_BIT=$(archname_to_archbit "$(get_user_set_env target ${CROSS_TARGET})") + LIB_SUFF=$(archbit_to_lib_suff "${CROSS_ARCH_BIT}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${CROSS_TARGET})" "${ARCH_ABI}") + + patch -Np1 -i ${SYSDIR}/files/toolchain/gcc-glibc/13.2.0/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + + sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in + tar xvf $(ls ${DOWNLOADDIR}/gmp-*.tar.* | sort -V | tail -n1) + tar xvf $(ls ${DOWNLOADDIR}/mpfr-*.tar.* | sort -V | tail -n1) + tar xvf $(ls ${DOWNLOADDIR}/mpc-*.tar.* | sort -V | tail -n1) + mv gmp-* gmp + mv mpfr-* mpfr + mv mpc-* mpc + mkdir cross-build + pushd cross-build + AR=ar LDFLAGS="-static" \ + ../configure --prefix=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${CROSS_TARGET} \ + --enable-__cxa_atexit --enable-threads=posix \ + --enable-libstdcxx-time \ + --enable-checking=release \ + --with-sysroot=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target \ + --enable-default-pie --disable-multilib --enable-linker-build-id \ + --with-abi=${ARCH_ABI} \ + --enable-languages=c,c++,fortran,objc,obj-c++,lto + make -j${JOBS} all-gcc LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" + make -j${JOBS} + make install-strip + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/toolchain/gcc-glibc.info b/loongarch64/scripts/step/toolchain/gcc-glibc.info new file mode 100644 index 00000000..55677779 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/gcc-glibc.info @@ -0,0 +1 @@ +gcc|13.2.0 diff --git a/loongarch64/scripts/step/toolchain/gcc.info b/loongarch64/scripts/step/toolchain/gcc.info new file mode 100644 index 00000000..55677779 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/gcc.info @@ -0,0 +1 @@ +gcc|13.2.0 diff --git a/loongarch64/scripts/step/toolchain/gcc_git b/loongarch64/scripts/step/toolchain/gcc_git new file mode 100644 index 00000000..c03002b5 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/gcc_git @@ -0,0 +1,39 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=gcc_git +export PACKAGE_VERSION=13.1.0-default +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/gcc_git/13.1.0-default/ +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git +tar xvf ${DOWNLOADDIR}/gcc_git-13.1.0-default_git.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${CROSS_TARGET})" "${ARCH_ABI}") + patch -Np1 -i ${SYSDIR}/files/toolchain/gcc_git/13.1.0-default/patches/0001-fix-the-missing-include-file-when-using-gcc-plugins-.patch + + mkdir -pv ${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target/usr/lib{,64} + + tar xvf $(ls ${DOWNLOADDIR}/gmp-*.tar.* | sort -V | tail -n1) + tar xvf $(ls ${DOWNLOADDIR}/mpfr-*.tar.* | sort -V | tail -n1) + tar xvf $(ls ${DOWNLOADDIR}/mpc-*.tar.* | sort -V | tail -n1) + mv gmp-* gmp + mv mpfr-* mpfr + mv mpc-* mpc + mkdir cross-build + pushd cross-build + AR=ar \ + ../configure --prefix=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools --build=${CROSS_HOST} --host=${CROSS_HOST} \ + --target=${CROSS_TARGET} \ + --with-newlib --disable-shared --with-sysroot=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target \ + --disable-decimal-float --disable-libgomp --disable-libitm \ + --disable-libsanitizer --disable-libquadmath --disable-threads \ + --disable-target-zlib --with-system-zlib --enable-checking=release \ + --enable-default-pie --disable-multilib \ + --with-abi=${ARCH_ABI} \ + --enable-languages=c,c++ + make -j${JOBS} all-gcc all-target-libgcc LIBS="$([[ $(gcc -dumpversion) -ge 13 ]] && echo "${LIBS}" || echo "${LIBS} -lzstd -lpthread")" + make install-strip-gcc install-strip-target-libgcc + popd +popd +rm -rf ${BUILD_DIRECTORY}/gcc_git-13.1.0-default_git diff --git a/loongarch64/scripts/step/toolchain/gcc_git.info b/loongarch64/scripts/step/toolchain/gcc_git.info new file mode 100644 index 00000000..86f7b4da --- /dev/null +++ b/loongarch64/scripts/step/toolchain/gcc_git.info @@ -0,0 +1 @@ +gcc_git|13.1.0-default diff --git a/loongarch64/scripts/step/toolchain/glibc b/loongarch64/scripts/step/toolchain/glibc new file mode 100644 index 00000000..efdc6834 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/glibc @@ -0,0 +1,39 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=glibc +export PACKAGE_VERSION=2.38 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/glibc/2.38/ +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 +tar xvf ${DOWNLOADDIR}/glibc-2.38.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glibc-2.38 + + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + CROSS_ARCH_BIT=$(archname_to_archbit "$(get_user_set_env target)" "${ARCH_BIT}") + LIB_SUFF=$(archbit_to_lib_suff "${CROSS_ARCH_BIT}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${CROSS_TARGET})" "${ARCH_ABI}") + + PATH=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/bin:${PATH} + + cp ${CROSSTOOLS_DIR}/share/automake*/config.* ./ + sed -i "s@5.15.0@4.15.0@g" sysdeps/unix/sysv/linux/loongarch/configure{,.ac} + mkdir -p build + pushd build + BUILD_CC="gcc" CC="${CROSS_TARGET}-gcc -mabi=${ARCH_ABI}" \ + CXX="${CROSS_TARGET}-gcc -mabi=${ARCH_ABI}" \ + AS="${CROSS_TARGET}-as" AR="${CROSS_TARGET}-ar" RANLIB="${CROSS_TARGET}-ranlib" \ + ../configure --prefix=/usr --host=${CROSS_TARGET} --build=${CROSS_HOST} \ + --libdir=/usr/lib${LIB_SUFF} --libexecdir=/usr/lib${LIB_SUFF}/glibc \ + --with-binutils=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/bin \ + --with-headers=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target/usr/include \ + --enable-stack-protector=strong --enable-add-ons \ + --disable-werror libc_cv_slibdir=/usr/lib${LIB_SUFF} \ + --enable-kernel=4.15 + make -j${JOBS} + + INSTALL_DIST_DIR="${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target" + make DESTDIR=${INSTALL_DIST_DIR} install + popd +popd +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 diff --git a/loongarch64/scripts/step/toolchain/glibc.info b/loongarch64/scripts/step/toolchain/glibc.info new file mode 100644 index 00000000..ca06b577 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/glibc.info @@ -0,0 +1 @@ +glibc|2.38 diff --git a/loongarch64/scripts/step/toolchain/linux-header b/loongarch64/scripts/step/toolchain/linux-header new file mode 100644 index 00000000..8346ffa1 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/linux-header @@ -0,0 +1,21 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=linux-header +export PACKAGE_VERSION=6.4.7 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/linux-header/6.4.7/ +rm -rf ${BUILD_DIRECTORY}/linux-6.4.7 +tar xvf ${DOWNLOADDIR}/linux-6.4.7.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/linux-6.4.7 + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + CROSS_KERNEL_NAME=$(archname_to_linuxname "$(get_user_set_env target ${ARCH_FAMILY})" "${ARCH_FAMILY}") + make ARCH=${CROSS_KERNEL_NAME} mrproper + make ARCH=${CROSS_KERNEL_NAME} INSTALL_HDR_PATH=dest headers_install + find dest/include -name '.*' -delete + + INSTALL_DIST_DIR="${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target" + mkdir -pv ${INSTALL_DIST_DIR}/usr/include + cp -rv dest/include/* ${INSTALL_DIST_DIR}/usr/include/ +popd +rm -rf ${BUILD_DIRECTORY}/linux-6.4.7 diff --git a/loongarch64/scripts/step/toolchain/linux-header.info b/loongarch64/scripts/step/toolchain/linux-header.info new file mode 100644 index 00000000..ba7de74f --- /dev/null +++ b/loongarch64/scripts/step/toolchain/linux-header.info @@ -0,0 +1 @@ +linux|6.4.7 diff --git a/loongarch64/scripts/step/toolchain/zlib b/loongarch64/scripts/step/toolchain/zlib new file mode 100644 index 00000000..a599cb70 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/zlib @@ -0,0 +1,25 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=zlib +export PACKAGE_VERSION=1.2.13 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/zlib/1.2.13/ +rm -rf ${BUILD_DIRECTORY}/zlib-1.2.13 +tar xvf ${DOWNLOADDIR}/zlib-1.2.13.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/zlib-1.2.13 + + + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + CROSS_ARCH_BIT=$(archname_to_archbit "$(get_user_set_env target)" "${ARCH_BIT}") + LIB_SUFF=$(archbit_to_lib_suff "${CROSS_ARCH_BIT}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${CROSS_TARGET})" "${ARCH_ABI}") + + PATH=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/bin:${PATH} + + CROSS_PREFIX=${CROSS_TARGET}- ./configure --prefix=/usr --libdir=/usr/lib${LIB_SUFF} + make -j${JOBS} CC="${CROSS_TARGET}-gcc -mabi=${ARCH_ABI}" + INSTALL_DIST_DIR="${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target" + make DESTDIR=${INSTALL_DIST_DIR} install +popd +rm -rf ${BUILD_DIRECTORY}/zlib-1.2.13 diff --git a/loongarch64/scripts/step/toolchain/zlib.info b/loongarch64/scripts/step/toolchain/zlib.info new file mode 100644 index 00000000..e5758ce7 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/zlib.info @@ -0,0 +1 @@ +zlib|1.2.13 diff --git a/loongarch64/scripts/step/toolchain/zstd b/loongarch64/scripts/step/toolchain/zstd new file mode 100644 index 00000000..b63c6988 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/zstd @@ -0,0 +1,23 @@ +source env/toolchain/config +source env/distro.info +source env/function.sh +export STEP_BUILDNAME=toolchain +export STEP_PACKAGENAME=zstd +export PACKAGE_VERSION=1.5.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/toolchain/zstd/1.5.5/ +rm -rf ${BUILD_DIRECTORY}/zstd-1.5.5 +tar xvf ${DOWNLOADDIR}/zstd-1.5.5.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/zstd-1.5.5 + CROSS_TARGET=$(archname_to_triple "$(get_user_set_env target ${CROSS_TARGET})" "${CROSS_TARGET}") + CROSS_ARCH_BIT=$(archname_to_archbit "$(get_user_set_env target)" "${ARCH_BIT}") + LIB_SUFF=$(archbit_to_lib_suff "${CROSS_ARCH_BIT}") + ARCH_ABI=$(archname_to_archabi "$(get_user_set_env target ${CROSS_TARGET})" "${ARCH_ABI}") + + PATH=${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/bin:${PATH} + + make -j${JOBS} CC="${CROSS_TARGET}-gcc -mabi=${ARCH_ABI}" PREFIX=/usr LIBDIR=/usr/lib${LIB_SUFF} + + INSTALL_DIST_DIR="${TOOLCHAIN_DIRECTORY}/cross-target/${CROSS_TARGET}/cross-tools/target" + make CC="${CROSS_TARGET}-gcc -mabi=${ARCH_ABI}" PREFIX=/usr LIBDIR=/usr/lib${LIB_SUFF} DESTDIR=${INSTALL_DIST_DIR} install +popd +rm -rf ${BUILD_DIRECTORY}/zstd-1.5.5 diff --git a/loongarch64/scripts/step/toolchain/zstd.info b/loongarch64/scripts/step/toolchain/zstd.info new file mode 100644 index 00000000..f3a060e7 --- /dev/null +++ b/loongarch64/scripts/step/toolchain/zstd.info @@ -0,0 +1 @@ +zstd|1.5.5 diff --git a/loongarch64/scripts/step/wine_runtime/LVM2 b/loongarch64/scripts/step/wine_runtime/LVM2 index 5b1827c7..17c8f1c1 100644 --- a/loongarch64/scripts/step/wine_runtime/LVM2 +++ b/loongarch64/scripts/step/wine_runtime/LVM2 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=LVM2 export PACKAGE_VERSION=2.03.21 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/LVM2.2.03.21 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --with-usrlibdir=/usr/lib${LIB_SUFF} --enable-cmdlib --enable-pkgconfig --enable-udev_sync ac_cv_func_malloc_0_nonnull=yes ac_cv_func_realloc_0_nonnull=yes --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/LVM2.2.03.21 diff --git a/loongarch64/scripts/step/wine_runtime/SDL2 b/loongarch64/scripts/step/wine_runtime/SDL2 index 1c5d173d..a9d030e9 100644 --- a/loongarch64/scripts/step/wine_runtime/SDL2 +++ b/loongarch64/scripts/step/wine_runtime/SDL2 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=SDL2 export PACKAGE_VERSION=2.28.1 @@ -10,6 +11,6 @@ tar xvf ${DOWNLOADDIR}/SDL2-2.28.1.tar.gz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/SDL2-2.28.1 ./configure ${COMMON_CONFIG} make -j${JOBS} WAYLAND_SCANNER=wayland-scanner - make DESTDIR=${X86_64_SYSROOT_DIR} install + make DESTDIR=${X86_SYSROOT_DIR} install popd rm -rf ${BUILD_DIRECTORY}/SDL2-2.28.1 diff --git a/loongarch64/scripts/step/wine_runtime/Vulkan-Headers b/loongarch64/scripts/step/wine_runtime/Vulkan-Headers deleted file mode 100644 index 581b7f79..00000000 --- a/loongarch64/scripts/step/wine_runtime/Vulkan-Headers +++ /dev/null @@ -1,23 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=Vulkan-Headers -export PACKAGE_VERSION=1.3.257 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/Vulkan-Headers/1.3.257/ -rm -rf ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.257 -tar xvf ${DOWNLOADDIR}/Vulkan-Headers-1.3.257.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.257 - - mkdir cross-build - pushd cross-build - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" \ - cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib64 \ - -DCMAKE_TOOLCHAIN_FILE=${COMMON_DIR}/cmake-cross-x86_64.cmake \ - -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev .. - eval ${MAKE_AND_INSTALL} - popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/Vulkan-Headers-1.3.257 diff --git a/loongarch64/scripts/step/wine_runtime/Vulkan-Headers.info b/loongarch64/scripts/step/wine_runtime/Vulkan-Headers.info deleted file mode 100644 index 77c7723b..00000000 --- a/loongarch64/scripts/step/wine_runtime/Vulkan-Headers.info +++ /dev/null @@ -1 +0,0 @@ -Vulkan-Headers|1.3.257 diff --git a/loongarch64/scripts/step/wine_runtime/Vulkan-Loader b/loongarch64/scripts/step/wine_runtime/Vulkan-Loader deleted file mode 100644 index c70b1113..00000000 --- a/loongarch64/scripts/step/wine_runtime/Vulkan-Loader +++ /dev/null @@ -1,23 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=Vulkan-Loader -export PACKAGE_VERSION=1.3.257 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/Vulkan-Loader/1.3.257/ -rm -rf ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.257 -tar xvf ${DOWNLOADDIR}/Vulkan-Loader-1.3.257.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.257 - - mkdir cross-build - pushd cross-build - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" \ - cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib64 \ - -DCMAKE_TOOLCHAIN_FILE=${COMMON_DIR}/cmake-cross-x86_64.cmake \ - -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev .. - eval ${MAKE_AND_INSTALL} - popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/Vulkan-Loader-1.3.257 diff --git a/loongarch64/scripts/step/wine_runtime/Vulkan-Loader.info b/loongarch64/scripts/step/wine_runtime/Vulkan-Loader.info deleted file mode 100644 index 950bd3ac..00000000 --- a/loongarch64/scripts/step/wine_runtime/Vulkan-Loader.info +++ /dev/null @@ -1 +0,0 @@ -Vulkan-Loader|1.3.257 diff --git a/loongarch64/scripts/step/wine_runtime/acl b/loongarch64/scripts/step/wine_runtime/acl index 928d0ee6..7c1c7e86 100644 --- a/loongarch64/scripts/step/wine_runtime/acl +++ b/loongarch64/scripts/step/wine_runtime/acl @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=acl export PACKAGE_VERSION=2.3.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/acl-2.3.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/acl-2.3.1 diff --git a/loongarch64/scripts/step/wine_runtime/alsa-lib b/loongarch64/scripts/step/wine_runtime/alsa-lib deleted file mode 100644 index 89aa6367..00000000 --- a/loongarch64/scripts/step/wine_runtime/alsa-lib +++ /dev/null @@ -1,20 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=alsa-lib -export PACKAGE_VERSION=1.2.9 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/alsa-lib/1.2.9/ -rm -rf ${BUILD_DIRECTORY}/alsa-lib-1.2.9 -tar xvf ${DOWNLOADDIR}/alsa-lib-1.2.9.tar.bz2 -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/alsa-lib-1.2.9 - - if [ ! -f configure ]; then - autoreconf -ifv - fi - ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/alsa-lib-1.2.9 diff --git a/loongarch64/scripts/step/wine_runtime/alsa-lib.info b/loongarch64/scripts/step/wine_runtime/alsa-lib.info deleted file mode 100644 index 4a242bd4..00000000 --- a/loongarch64/scripts/step/wine_runtime/alsa-lib.info +++ /dev/null @@ -1 +0,0 @@ -alsa-lib|1.2.9 diff --git a/loongarch64/scripts/step/wine_runtime/alsa-oss b/loongarch64/scripts/step/wine_runtime/alsa-oss deleted file mode 100644 index f31416b2..00000000 --- a/loongarch64/scripts/step/wine_runtime/alsa-oss +++ /dev/null @@ -1,20 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=alsa-oss -export PACKAGE_VERSION=1.1.8 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/alsa-oss/1.1.8/ -rm -rf ${BUILD_DIRECTORY}/alsa-oss-1.1.8 -tar xvf ${DOWNLOADDIR}/alsa-oss-1.1.8.tar.bz2 -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/alsa-oss-1.1.8 - - if [ ! -f configure ]; then - autoreconf -ifv - fi - ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/alsa-oss-1.1.8 diff --git a/loongarch64/scripts/step/wine_runtime/alsa-oss.info b/loongarch64/scripts/step/wine_runtime/alsa-oss.info deleted file mode 100644 index 67c26e86..00000000 --- a/loongarch64/scripts/step/wine_runtime/alsa-oss.info +++ /dev/null @@ -1 +0,0 @@ -alsa-oss|1.1.8 diff --git a/loongarch64/scripts/step/wine_runtime/attr b/loongarch64/scripts/step/wine_runtime/attr index bbca8464..e43e5fd9 100644 --- a/loongarch64/scripts/step/wine_runtime/attr +++ b/loongarch64/scripts/step/wine_runtime/attr @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=attr export PACKAGE_VERSION=2.5.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/attr-2.5.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/attr-2.5.1 diff --git a/loongarch64/scripts/step/wine_runtime/bash b/loongarch64/scripts/step/wine_runtime/bash new file mode 100644 index 00000000..36ae2f2e --- /dev/null +++ b/loongarch64/scripts/step/wine_runtime/bash @@ -0,0 +1,34 @@ +source env/wine_runtime/config +source env/distro.info +source env/function.sh +source env/wine_runtime/custom +export STEP_BUILDNAME=wine_runtime +export STEP_PACKAGENAME=bash +export PACKAGE_VERSION=5.2.15 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/bash/5.2.15/ +rm -rf ${BUILD_DIRECTORY}/bash-5.2.15 +tar xvf ${DOWNLOADDIR}/bash-5.2.15.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/bash-5.2.15 +cat > config.cache << "EOF" + ac_cv_func_mmap_fixed_mapped=yes + ac_cv_func_strcoll_works=yes + ac_cv_func_working_mktime=yes + bash_cv_func_sigsetjmp=present + bash_cv_getcwd_malloc=yes + bash_cv_job_control_missing=present + bash_cv_printf_a_format=yes + bash_cv_sys_named_pipes=present + bash_cv_ulimit_maxfds=yes + bash_cv_under_sys_siglist=yes + bash_cv_unusable_rtsigs=no + gt_cv_int_divbyzero_sigfpe=yes + ac_cv_func_arc4random=no +EOF + + ./configure --prefix=/usr --libdir=/usr/lib${LIB_SUFF} --build=${CROSS_HOST} \ + --host=${X86_HOST} --without-bash-malloc \ + --with-installed-readline --cache-file=config.cache + eval ${MAKE_AND_INSTALL} + ln -sfv bash ${X86_SYSROOT_DIR}/bin/sh +popd +rm -rf ${BUILD_DIRECTORY}/bash-5.2.15 diff --git a/loongarch64/scripts/step/wine_runtime/bash.info b/loongarch64/scripts/step/wine_runtime/bash.info new file mode 100644 index 00000000..03784917 --- /dev/null +++ b/loongarch64/scripts/step/wine_runtime/bash.info @@ -0,0 +1 @@ +bash|5.2.15 diff --git a/loongarch64/scripts/step/wine_runtime/binutils b/loongarch64/scripts/step/wine_runtime/binutils index b6317d31..9204dcf5 100644 --- a/loongarch64/scripts/step/wine_runtime/binutils +++ b/loongarch64/scripts/step/wine_runtime/binutils @@ -1,21 +1,22 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=binutils -export PACKAGE_VERSION=2.40 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/binutils/2.40/ -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 -tar xvf ${DOWNLOADDIR}/binutils-2.40.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/binutils-2.40 +export PACKAGE_VERSION=2.41 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/binutils/2.41/ +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 +tar xvf ${DOWNLOADDIR}/binutils-2.41.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/binutils-2.41 rm -rf gdb* libdecnumber readline sim mkdir -pv cross-build pushd cross-build - ../configure --prefix=/usr --libdir=/usr/lib64 --build=${CROSS_HOST} \ - --host=${X86_64_HOST} --enable-shared --disable-werror \ + ../configure --prefix=/usr --libdir=/usr/lib${LIB_SUFF} --build=${CROSS_HOST} \ + --host=${X86_HOST} --enable-shared --disable-werror \ --with-system-zlib --enable-64-bit-bfd make -j${JOBS} tooldir=/usr - make DESTDIR=${X86_64_SYSROOT_DIR} tooldir=/usr install + make DESTDIR=${X86_SYSROOT_DIR} tooldir=/usr install popd popd -rm -rf ${BUILD_DIRECTORY}/binutils-2.40 +rm -rf ${BUILD_DIRECTORY}/binutils-2.41 diff --git a/loongarch64/scripts/step/wine_runtime/binutils.info b/loongarch64/scripts/step/wine_runtime/binutils.info index fe7b49e2..4ed7db63 100644 --- a/loongarch64/scripts/step/wine_runtime/binutils.info +++ b/loongarch64/scripts/step/wine_runtime/binutils.info @@ -1 +1 @@ -binutils|2.40 +binutils|2.41 diff --git a/loongarch64/scripts/step/wine_runtime/brotli b/loongarch64/scripts/step/wine_runtime/brotli index 2916bf1e..80fd0cfc 100644 --- a/loongarch64/scripts/step/wine_runtime/brotli +++ b/loongarch64/scripts/step/wine_runtime/brotli @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=brotli export PACKAGE_VERSION=1.0.9 diff --git a/loongarch64/scripts/step/wine_runtime/bzip2 b/loongarch64/scripts/step/wine_runtime/bzip2 index c4a1bccc..a4a1880c 100644 --- a/loongarch64/scripts/step/wine_runtime/bzip2 +++ b/loongarch64/scripts/step/wine_runtime/bzip2 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=bzip2 export PACKAGE_VERSION=1.0.8 @@ -11,15 +12,14 @@ pushd ${BUILD_DIRECTORY}/bzip2-1.0.8 sed -i.orig -e "/^all:/s/ test//" Makefile sed -i -e 's:ln -s -f $(PREFIX)/bin/:ln -s -f :' Makefile sed -i "s@(PREFIX)/man@(PREFIX)/share/man@g" Makefile - make -j${JOBS} CC=${X86_64_HOST}-gcc -f Makefile-libbz2_so + make -j${JOBS} CC=${X86_HOST}-gcc -f Makefile-libbz2_so make clean - make -j${JOBS} CC=${X86_64_HOST}-gcc - make PREFIX=${X86_64_SYSROOT_DIR}/usr install - cp -v bzip2-shared ${X86_64_SYSROOT_DIR}/bin/bzip2 - cp -av libbz2.so* ${X86_64_SYSROOT_DIR}/lib${LIB_SUFF} - mv ${X86_64_SYSROOT_DIR}/usr/lib/libbz2.a ${X86_64_SYSROOT_DIR}/lib${LIB_SUFF}/ - ln -sfv ../../lib64/libbz2.so.1.0 ${X86_64_SYSROOT_DIR}/usr/lib${LIB_SUFF}/libbz2.so - ln -sfv bzip2 ${X86_64_SYSROOT_DIR}/bin/bunzip2 - ln -sfv bzip2 ${X86_64_SYSROOT_DIR}/bin/bzcat + make -j${JOBS} CC=${X86_HOST}-gcc + make PREFIX=${X86_SYSROOT_DIR}/usr install + cp -v bzip2-shared ${X86_SYSROOT_DIR}/bin/bzip2 + cp -av libbz2.so* ${X86_SYSROOT_DIR}/lib${LIB_SUFF} + ln -sfv libbz2.so.1.0 ${X86_SYSROOT_DIR}/lib${LIB_SUFF}/libbz2.so + ln -sfv bzip2 ${X86_SYSROOT_DIR}/bin/bunzip2 + ln -sfv bzip2 ${X86_SYSROOT_DIR}/bin/bzcat popd rm -rf ${BUILD_DIRECTORY}/bzip2-1.0.8 diff --git a/loongarch64/scripts/step/wine_runtime/check b/loongarch64/scripts/step/wine_runtime/check index 92845b26..b07ef64e 100644 --- a/loongarch64/scripts/step/wine_runtime/check +++ b/loongarch64/scripts/step/wine_runtime/check @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=check export PACKAGE_VERSION=0.15.2 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/check-0.15.2 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/check-0.15.2 diff --git a/loongarch64/scripts/step/wine_runtime/coreutils b/loongarch64/scripts/step/wine_runtime/coreutils new file mode 100644 index 00000000..247ea59b --- /dev/null +++ b/loongarch64/scripts/step/wine_runtime/coreutils @@ -0,0 +1,18 @@ +source env/wine_runtime/config +source env/distro.info +source env/function.sh +source env/wine_runtime/custom +export STEP_BUILDNAME=wine_runtime +export STEP_PACKAGENAME=coreutils +export PACKAGE_VERSION=9.3 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/coreutils/9.3/ +rm -rf ${BUILD_DIRECTORY}/coreutils-9.3 +tar xvf ${DOWNLOADDIR}/coreutils-9.3.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/coreutils-9.3 + FORCE_UNSAFE_CONFIGURE=1 \ + ./configure --prefix=/usr --build=${CROSS_HOST} --host=${X86_HOST} \ + --enable-no-install-program=kill,uptime + eval ${MAKE_AND_INSTALL} + mv -v ${X86_SYSROOT_DIR}/usr/bin/chroot ${X86_SYSROOT_DIR}/usr/sbin +popd +rm -rf ${BUILD_DIRECTORY}/coreutils-9.3 diff --git a/loongarch64/scripts/step/wine_runtime/coreutils.info b/loongarch64/scripts/step/wine_runtime/coreutils.info new file mode 100644 index 00000000..a1e3811b --- /dev/null +++ b/loongarch64/scripts/step/wine_runtime/coreutils.info @@ -0,0 +1 @@ +coreutils|9.3 diff --git a/loongarch64/scripts/step/wine_runtime/create_base_files b/loongarch64/scripts/step/wine_runtime/create_base_files index f65d095a..967c66ee 100644 --- a/loongarch64/scripts/step/wine_runtime/create_base_files +++ b/loongarch64/scripts/step/wine_runtime/create_base_files @@ -1,9 +1,10 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=create_base_files export PACKAGE_VERSION= export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/create_base_files// mkdir -p ${SYSROOT_DIR}/usr/gnemul/ -ln -sf ../../usr/lib/x86_64/sys-root ${SYSROOT_DIR}/usr/gnemul/qemu-x86_64 +ln -sf ../../usr/lib/i686/sys-root ${SYSROOT_DIR}/usr/gnemul/qemu-i686 diff --git a/loongarch64/scripts/step/wine_runtime/cryptsetup b/loongarch64/scripts/step/wine_runtime/cryptsetup index 670ec3c0..f2b8c182 100644 --- a/loongarch64/scripts/step/wine_runtime/cryptsetup +++ b/loongarch64/scripts/step/wine_runtime/cryptsetup @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=cryptsetup export PACKAGE_VERSION=2.6.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/cryptsetup-2.6.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --disable-asciidoc --disable-ssh-token --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/cryptsetup-2.6.1 diff --git a/loongarch64/scripts/step/wine_runtime/cups b/loongarch64/scripts/step/wine_runtime/cups index 2abf7c2d..2dad18b1 100644 --- a/loongarch64/scripts/step/wine_runtime/cups +++ b/loongarch64/scripts/step/wine_runtime/cups @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=cups export PACKAGE_VERSION=2.4.6 @@ -12,8 +13,8 @@ pushd ${BUILD_DIRECTORY}/cups-2.4.6 ./configure ${COMMON_CONFIG} --with-rcdir=/tmp/cupsinit \ --with-system-groups=lpadmin eval ${MAKE_AND_INSTALL} - rm -rf ${X86_64_SYSROOT_DIR}/tmp/cupsinit - mkdir -p ${X86_64_SYSROOT_DIR}/etc/cups - echo "ServerName /run/cups/cups.sock" > ${X86_64_SYSROOT_DIR}/etc/cups/client.conf + rm -rf ${X86_SYSROOT_DIR}/tmp/cupsinit + mkdir -p ${X86_SYSROOT_DIR}/etc/cups + echo "ServerName /run/cups/cups.sock" > ${X86_SYSROOT_DIR}/etc/cups/client.conf popd rm -rf ${BUILD_DIRECTORY}/cups-2.4.6 diff --git a/loongarch64/scripts/step/wine_runtime/dbus b/loongarch64/scripts/step/wine_runtime/dbus index c0aad605..26e51e55 100644 --- a/loongarch64/scripts/step/wine_runtime/dbus +++ b/loongarch64/scripts/step/wine_runtime/dbus @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=dbus export PACKAGE_VERSION=1.15.6 @@ -14,6 +15,6 @@ pushd ${BUILD_DIRECTORY}/dbus-1.15.6 --with-console-auth-dir=/run/console \ --with-system-socket=/run/dbus/system_bus_socket eval ${MAKE_AND_INSTALL} - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/libdbus*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/libdbus*.la popd rm -rf ${BUILD_DIRECTORY}/dbus-1.15.6 diff --git a/loongarch64/scripts/step/wine_runtime/e2fsprogs b/loongarch64/scripts/step/wine_runtime/e2fsprogs index ca3af194..f2e1f2c1 100644 --- a/loongarch64/scripts/step/wine_runtime/e2fsprogs +++ b/loongarch64/scripts/step/wine_runtime/e2fsprogs @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=e2fsprogs export PACKAGE_VERSION=1.47.0 @@ -14,7 +15,7 @@ pushd ${BUILD_DIRECTORY}/e2fsprogs-1.47.0 --enable-elf-shlibs --disable-libblkid \ --disable-libuuid --disable-uuidd --disable-fsck eval ${MAKE_AND_INSTALL} - rm -fv ${X86_64_SYSROOT_DIR}/usr/lib64/{libcom_err,libe2p,libext2fs,libss}.la + rm -fv ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/{libcom_err,libe2p,libext2fs,libss}.la popd popd rm -rf ${BUILD_DIRECTORY}/e2fsprogs-1.47.0 diff --git a/loongarch64/scripts/step/wine_runtime/elfutils b/loongarch64/scripts/step/wine_runtime/elfutils index 9ff2260c..423fae63 100644 --- a/loongarch64/scripts/step/wine_runtime/elfutils +++ b/loongarch64/scripts/step/wine_runtime/elfutils @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=elfutils export PACKAGE_VERSION=0.189 diff --git a/loongarch64/scripts/step/wine_runtime/expat b/loongarch64/scripts/step/wine_runtime/expat index 2aecbcec..cbf70610 100644 --- a/loongarch64/scripts/step/wine_runtime/expat +++ b/loongarch64/scripts/step/wine_runtime/expat @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=expat export PACKAGE_VERSION=2.5.0 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/expat-2.5.0 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --without-docbook --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/expat-2.5.0 diff --git a/loongarch64/scripts/step/wine_runtime/fontconfig b/loongarch64/scripts/step/wine_runtime/fontconfig index efa08a7a..c6a9bdc3 100644 --- a/loongarch64/scripts/step/wine_runtime/fontconfig +++ b/loongarch64/scripts/step/wine_runtime/fontconfig @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=fontconfig export PACKAGE_VERSION=2.14.2 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/fontconfig-2.14.2 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --disable-docs --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/fontconfig-2.14.2 diff --git a/loongarch64/scripts/step/wine_runtime/freetype b/loongarch64/scripts/step/wine_runtime/freetype index cffae3f0..184aa34f 100644 --- a/loongarch64/scripts/step/wine_runtime/freetype +++ b/loongarch64/scripts/step/wine_runtime/freetype @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=freetype export PACKAGE_VERSION=2.13.1 @@ -14,9 +15,5 @@ pushd ${BUILD_DIRECTORY}/freetype-2.13.1 ./configure ${COMMON_CONFIG} \ --enable-freetype-config eval ${MAKE_AND_INSTALL} - - sed -i -e "s@${CROSSTOOLS_DIR}/bin@/usr/bin@g" \ - -e "s@${CROSS_TARGET}-@@g" \ - ${SYSROOT_DIR}/usr/bin/freetype-config popd rm -rf ${BUILD_DIRECTORY}/freetype-2.13.1 diff --git a/loongarch64/scripts/step/wine_runtime/gcc b/loongarch64/scripts/step/wine_runtime/gcc index 2aa1f433..7041cd11 100644 --- a/loongarch64/scripts/step/wine_runtime/gcc +++ b/loongarch64/scripts/step/wine_runtime/gcc @@ -1,18 +1,19 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=gcc -export PACKAGE_VERSION=13.1.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gcc/13.1.0/ -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 -tar xvf ${DOWNLOADDIR}/gcc-13.1.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gcc-13.1.0 +export PACKAGE_VERSION=13.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gcc/13.2.0/ +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 +tar xvf ${DOWNLOADDIR}/gcc-13.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gcc-13.2.0 sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in mkdir -pv cross-build pushd cross-build - ../configure --prefix=/usr --libdir=/usr/lib64 --build=${CROSS_HOST} \ - --host=${X86_64_HOST} --target=${X86_64_HOST} \ + ../configure --prefix=/usr --libdir=/usr/lib${LIB_SUFF} --build=${CROSS_HOST} \ + --host=${X86_HOST} --target=${X86_HOST} \ --enable-__cxa_atexit --enable-threads=posix \ --with-system-zlib --enable-libstdcxx-time \ --enable-checking=release \ @@ -20,7 +21,7 @@ pushd ${BUILD_DIRECTORY}/gcc-13.1.0 --enable-default-pie \ --enable-languages=c,c++ make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install + make DESTDIR=${X86_SYSROOT_DIR} install popd popd -rm -rf ${BUILD_DIRECTORY}/gcc-13.1.0 +rm -rf ${BUILD_DIRECTORY}/gcc-13.2.0 diff --git a/loongarch64/scripts/step/wine_runtime/gcc.info b/loongarch64/scripts/step/wine_runtime/gcc.info index e86d8a14..55677779 100644 --- a/loongarch64/scripts/step/wine_runtime/gcc.info +++ b/loongarch64/scripts/step/wine_runtime/gcc.info @@ -1 +1 @@ -gcc|13.1.0 +gcc|13.2.0 diff --git a/loongarch64/scripts/step/wine_runtime/gdbm b/loongarch64/scripts/step/wine_runtime/gdbm index 340d61ca..42552e4c 100644 --- a/loongarch64/scripts/step/wine_runtime/gdbm +++ b/loongarch64/scripts/step/wine_runtime/gdbm @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=gdbm export PACKAGE_VERSION=1.23 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/gdbm-1.23 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --disable-static --enable-libgdbm-compat --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/gdbm-1.23 diff --git a/loongarch64/scripts/step/wine_runtime/glib b/loongarch64/scripts/step/wine_runtime/glib index 9d06acdd..9257aa32 100644 --- a/loongarch64/scripts/step/wine_runtime/glib +++ b/loongarch64/scripts/step/wine_runtime/glib @@ -1,13 +1,14 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=glib -export PACKAGE_VERSION=2.77.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/glib/2.77.0/ -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 -tar xvf ${DOWNLOADDIR}/glib-2.77.0.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glib-2.77.0 +export PACKAGE_VERSION=2.77.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/glib/2.77.1/ +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 +tar xvf ${DOWNLOADDIR}/glib-2.77.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glib-2.77.1 mkdir cross-build pushd cross-build @@ -16,4 +17,4 @@ pushd ${BUILD_DIRECTORY}/glib-2.77.0 eval ${NINJA_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/glib-2.77.0 +rm -rf ${BUILD_DIRECTORY}/glib-2.77.1 diff --git a/loongarch64/scripts/step/wine_runtime/glib.info b/loongarch64/scripts/step/wine_runtime/glib.info index a52bf26b..d0cbf3c3 100644 --- a/loongarch64/scripts/step/wine_runtime/glib.info +++ b/loongarch64/scripts/step/wine_runtime/glib.info @@ -1 +1 @@ -glib|2.77.0 +glib|2.77.1 diff --git a/loongarch64/scripts/step/wine_runtime/glibc b/loongarch64/scripts/step/wine_runtime/glibc index 36de8074..8743fc72 100644 --- a/loongarch64/scripts/step/wine_runtime/glibc +++ b/loongarch64/scripts/step/wine_runtime/glibc @@ -1,29 +1,30 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=glibc -export PACKAGE_VERSION=2.37 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/glibc/2.37/ -rm -rf ${BUILD_DIRECTORY}/glibc-2.37 -tar xvf ${DOWNLOADDIR}/glibc-2.37.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/glibc-2.37 +export PACKAGE_VERSION=2.38 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/glibc/2.38/ +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 +tar xvf ${DOWNLOADDIR}/glibc-2.38.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/glibc-2.38 - mkdir -p build-64 - pushd build-64 - BUILD_CC="gcc" CC="${X86_64_HOST}-gcc -m64" \ - CXX="${X86_64_HOST}-gcc -m64" \ - AS="${X86_64_HOST}-as" AR="${X86_64_HOST}-ar" RANLIB="${X86_64_HOST}-ranlib" \ - ../configure --prefix=/usr --host=${X86_64_HOST} --build=${CROSS_HOST} \ - --libdir=/usr/lib64 --libexecdir=/usr/lib64/glibc \ - --with-headers=${X86_64_SYSROOT_DIR}/usr/include \ + mkdir -p build + pushd build + BUILD_CC="gcc" CC="${X86_HOST}-gcc -m32" \ + CXX="${X86_HOST}-gcc -m32" \ + AS="${X86_HOST}-as" AR="${X86_HOST}-ar" RANLIB="${X86_HOST}-ranlib" \ + ../configure --prefix=/usr --host=${X86_HOST} --build=${CROSS_HOST} \ + --libdir=/usr/lib${LIB_SUFF} --libexecdir=/usr/lib${LIB_SUFF}/glibc \ + --with-headers=${X86_SYSROOT_DIR}/usr/include \ --enable-add-ons \ - --disable-werror libc_cv_slibdir=/usr/lib64 \ - --enable-kernel=4.15 + --disable-werror libc_cv_slibdir=/usr/lib${LIB_SUFF} \ + --enable-kernel=2.6.0 make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - make DESTDIR=${TOOLCHAIN_DIRECTORY}/${X86_64_HOST}/glibc install + make DESTDIR=${X86_SYSROOT_DIR} install + make DESTDIR=${TOOLCHAIN_DIRECTORY}/${X86_HOST}/glibc install popd - mkdir -p ${X86_64_SYSROOT_DIR}/usr/lib + mkdir -p ${X86_SYSROOT_DIR}/usr/lib popd -rm -rf ${BUILD_DIRECTORY}/glibc-2.37 +rm -rf ${BUILD_DIRECTORY}/glibc-2.38 diff --git a/loongarch64/scripts/step/wine_runtime/glibc.info b/loongarch64/scripts/step/wine_runtime/glibc.info index b905acd0..ca06b577 100644 --- a/loongarch64/scripts/step/wine_runtime/glibc.info +++ b/loongarch64/scripts/step/wine_runtime/glibc.info @@ -1 +1 @@ -glibc|2.37 +glibc|2.38 diff --git a/loongarch64/scripts/step/wine_runtime/gmp b/loongarch64/scripts/step/wine_runtime/gmp index 49b96fcb..fa5b37fa 100644 --- a/loongarch64/scripts/step/wine_runtime/gmp +++ b/loongarch64/scripts/step/wine_runtime/gmp @@ -1,17 +1,18 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=gmp -export PACKAGE_VERSION=6.2.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gmp/6.2.1/ -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 -tar xvf ${DOWNLOADDIR}/gmp-6.2.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gmp-6.2.1 - ABI=64 ./configure --build=${CROSS_HOST} --host=${X86_64_HOST} \ - --prefix=/usr --libdir=/usr/lib64 --enable-cxx +export PACKAGE_VERSION=6.3.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gmp/6.3.0/ +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 +tar xvf ${DOWNLOADDIR}/gmp-6.3.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gmp-6.3.0 + ABI=32 ./configure --build=${CROSS_HOST} --host=${X86_HOST} \ + --prefix=/usr --libdir=/usr/lib${LIB_SUFF} --enable-cxx make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install + make DESTDIR=${X86_SYSROOT_DIR} install popd -rm -rf ${BUILD_DIRECTORY}/gmp-6.2.1 -rm ${X86_64_SYSROOT_DIR}/usr/lib64/*.la +rm -rf ${BUILD_DIRECTORY}/gmp-6.3.0 +rm ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/*.la diff --git a/loongarch64/scripts/step/wine_runtime/gmp.info b/loongarch64/scripts/step/wine_runtime/gmp.info index 91316b36..52fa243c 100644 --- a/loongarch64/scripts/step/wine_runtime/gmp.info +++ b/loongarch64/scripts/step/wine_runtime/gmp.info @@ -1 +1 @@ -gmp|6.2.1 +gmp|6.3.0 diff --git a/loongarch64/scripts/step/wine_runtime/gnutls b/loongarch64/scripts/step/wine_runtime/gnutls index 23f05a01..a3d5ec76 100644 --- a/loongarch64/scripts/step/wine_runtime/gnutls +++ b/loongarch64/scripts/step/wine_runtime/gnutls @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=gnutls export PACKAGE_VERSION=3.8.0 @@ -12,9 +13,9 @@ pushd ${BUILD_DIRECTORY}/gnutls-3.8.0 if [ ! -f configure ]; then autoreconf -ifv fi - ./configure ${COMMON_CONFIG} --enable-openssl-compatibility --enable-ssl3-support --with-libz-prefix=${X86_64_SYSROOT_DIR}/usr --disable-guile --disable-doc --without-p11-kit --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + ./configure ${COMMON_CONFIG} --enable-openssl-compatibility --enable-ssl3-support --with-libz-prefix=${X86_SYSROOT_DIR}/usr --disable-guile --disable-doc --without-p11-kit --enable-malloc0returnsnull + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/gnutls-3.8.0 diff --git a/loongarch64/scripts/step/wine_runtime/gst-plugins-base b/loongarch64/scripts/step/wine_runtime/gst-plugins-base index 8772f56a..18a3275c 100644 --- a/loongarch64/scripts/step/wine_runtime/gst-plugins-base +++ b/loongarch64/scripts/step/wine_runtime/gst-plugins-base @@ -1,13 +1,14 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=gst-plugins-base -export PACKAGE_VERSION=1.22.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gst-plugins-base/1.22.4/ -rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 -tar xvf ${DOWNLOADDIR}/gst-plugins-base-1.22.4.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 +export PACKAGE_VERSION=1.22.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gst-plugins-base/1.22.5/ +rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.5 +tar xvf ${DOWNLOADDIR}/gst-plugins-base-1.22.5.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gst-plugins-base-1.22.5 mkdir cross-build pushd cross-build @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd -rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.4 +rm -rf ${BUILD_DIRECTORY}/gst-plugins-base-1.22.5 diff --git a/loongarch64/scripts/step/wine_runtime/gst-plugins-base.info b/loongarch64/scripts/step/wine_runtime/gst-plugins-base.info index 1f7a54ca..6309d7f7 100644 --- a/loongarch64/scripts/step/wine_runtime/gst-plugins-base.info +++ b/loongarch64/scripts/step/wine_runtime/gst-plugins-base.info @@ -1 +1 @@ -gst-plugins-base|1.22.4 +gst-plugins-base|1.22.5 diff --git a/loongarch64/scripts/step/wine_runtime/gstreamer b/loongarch64/scripts/step/wine_runtime/gstreamer index ba85dfb5..e1f6ddc1 100644 --- a/loongarch64/scripts/step/wine_runtime/gstreamer +++ b/loongarch64/scripts/step/wine_runtime/gstreamer @@ -1,13 +1,14 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=gstreamer -export PACKAGE_VERSION=1.22.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gstreamer/1.22.4/ -rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.4 -tar xvf ${DOWNLOADDIR}/gstreamer-1.22.4.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/gstreamer-1.22.4 +export PACKAGE_VERSION=1.22.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/gstreamer/1.22.5/ +rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.5 +tar xvf ${DOWNLOADDIR}/gstreamer-1.22.5.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/gstreamer-1.22.5 mkdir cross-build pushd cross-build @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/gstreamer-1.22.4 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd -rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.4 +rm -rf ${BUILD_DIRECTORY}/gstreamer-1.22.5 diff --git a/loongarch64/scripts/step/wine_runtime/gstreamer.info b/loongarch64/scripts/step/wine_runtime/gstreamer.info index 61e2a70d..2053da75 100644 --- a/loongarch64/scripts/step/wine_runtime/gstreamer.info +++ b/loongarch64/scripts/step/wine_runtime/gstreamer.info @@ -1 +1 @@ -gstreamer|1.22.4 +gstreamer|1.22.5 diff --git a/loongarch64/scripts/step/wine_runtime/harfbuzz b/loongarch64/scripts/step/wine_runtime/harfbuzz index 29004453..bfa15f72 100644 --- a/loongarch64/scripts/step/wine_runtime/harfbuzz +++ b/loongarch64/scripts/step/wine_runtime/harfbuzz @@ -1,13 +1,14 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=harfbuzz -export PACKAGE_VERSION=8.0.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/harfbuzz/8.0.1/ -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 -tar xvf ${DOWNLOADDIR}/harfbuzz-8.0.1.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +export PACKAGE_VERSION=8.1.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/harfbuzz/8.1.0/ +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 +tar xvf ${DOWNLOADDIR}/harfbuzz-8.1.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/harfbuzz-8.1.0 mkdir cross-build pushd cross-build @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/harfbuzz-8.0.1 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd -rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.0.1 +rm -rf ${BUILD_DIRECTORY}/harfbuzz-8.1.0 diff --git a/loongarch64/scripts/step/wine_runtime/harfbuzz.info b/loongarch64/scripts/step/wine_runtime/harfbuzz.info index c9cff8f7..60902b79 100644 --- a/loongarch64/scripts/step/wine_runtime/harfbuzz.info +++ b/loongarch64/scripts/step/wine_runtime/harfbuzz.info @@ -1 +1 @@ -harfbuzz|8.0.1 +harfbuzz|8.1.0 diff --git a/loongarch64/scripts/step/wine_runtime/icu4c b/loongarch64/scripts/step/wine_runtime/icu4c index 0b596e6d..b510d3b1 100644 --- a/loongarch64/scripts/step/wine_runtime/icu4c +++ b/loongarch64/scripts/step/wine_runtime/icu4c @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=icu4c export PACKAGE_VERSION=73_2 @@ -16,7 +17,7 @@ pushd ${BUILD_DIRECTORY}/icu sed -i '/INVOKE/s@/bin/icupkg@/sbin/icupkg@g' data/Makefile.in ./configure ${COMMON_CONFIG} --with-cross-build=${PWD} make -j${JOBS} - make PKGDATA_INVOKE= DESTDIR=${X86_64_SYSROOT_DIR} install + make PKGDATA_INVOKE= DESTDIR=${X86_SYSROOT_DIR} install popd popd rm -rf ${BUILD_DIRECTORY}/icu diff --git a/loongarch64/scripts/step/wine_runtime/jansson b/loongarch64/scripts/step/wine_runtime/jansson index 69102ab9..12c910e0 100644 --- a/loongarch64/scripts/step/wine_runtime/jansson +++ b/loongarch64/scripts/step/wine_runtime/jansson @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=jansson export PACKAGE_VERSION=2.13.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/jansson-2.13.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/jansson-2.13.1 diff --git a/loongarch64/scripts/step/wine_runtime/json-c b/loongarch64/scripts/step/wine_runtime/json-c index 732e995e..c7d4e43d 100644 --- a/loongarch64/scripts/step/wine_runtime/json-c +++ b/loongarch64/scripts/step/wine_runtime/json-c @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=json-c export PACKAGE_VERSION=0.16-20220414 @@ -11,13 +12,13 @@ pushd ${BUILD_DIRECTORY}/json-c-json-c-0.16-20220414 mkdir cross-build pushd cross-build - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" \ + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" \ cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib64 \ - -DCMAKE_TOOLCHAIN_FILE=${COMMON_DIR}/cmake-cross-x86_64.cmake \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DCMAKE_TOOLCHAIN_FILE=${COMMON_DIR}/cmake-cross-i686.cmake \ -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev .. eval ${MAKE_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/json-c-json-c-0.16-20220414 diff --git a/loongarch64/scripts/step/wine_runtime/krb5 b/loongarch64/scripts/step/wine_runtime/krb5 index f3f5fb29..aa9862e8 100644 --- a/loongarch64/scripts/step/wine_runtime/krb5 +++ b/loongarch64/scripts/step/wine_runtime/krb5 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=krb5 export PACKAGE_VERSION=1.21.1 diff --git a/loongarch64/scripts/step/wine_runtime/libICE b/loongarch64/scripts/step/wine_runtime/libICE index 35ff1cad..f3f16056 100644 --- a/loongarch64/scripts/step/wine_runtime/libICE +++ b/loongarch64/scripts/step/wine_runtime/libICE @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libICE export PACKAGE_VERSION=1.1.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libICE-1.1.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libICE-1.1.1 diff --git a/loongarch64/scripts/step/wine_runtime/libSM b/loongarch64/scripts/step/wine_runtime/libSM index f599ee24..c777eea3 100644 --- a/loongarch64/scripts/step/wine_runtime/libSM +++ b/loongarch64/scripts/step/wine_runtime/libSM @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libSM export PACKAGE_VERSION=1.2.4 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libSM-1.2.4 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libSM-1.2.4 diff --git a/loongarch64/scripts/step/wine_runtime/libX11 b/loongarch64/scripts/step/wine_runtime/libX11 index 784d9e14..b3fbe009 100644 --- a/loongarch64/scripts/step/wine_runtime/libX11 +++ b/loongarch64/scripts/step/wine_runtime/libX11 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libX11 export PACKAGE_VERSION=1.8.6 @@ -12,9 +13,9 @@ pushd ${BUILD_DIRECTORY}/libX11-1.8.6 if [ ! -f configure ]; then autoreconf -ifv fi - ./configure ${COMMON_CONFIG} --with-keysymdefdir=${X86_64_SYSROOT_DIR}/usr/include/X11 --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + ./configure ${COMMON_CONFIG} --with-keysymdefdir=${X86_SYSROOT_DIR}/usr/include/X11 --enable-malloc0returnsnull + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libX11-1.8.6 diff --git a/loongarch64/scripts/step/wine_runtime/libXau b/loongarch64/scripts/step/wine_runtime/libXau index 4f4e8d95..03423504 100644 --- a/loongarch64/scripts/step/wine_runtime/libXau +++ b/loongarch64/scripts/step/wine_runtime/libXau @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXau export PACKAGE_VERSION=1.0.11 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXau-1.0.11 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXau-1.0.11 diff --git a/loongarch64/scripts/step/wine_runtime/libXcomposite b/loongarch64/scripts/step/wine_runtime/libXcomposite index 6f4c0bed..db5c6bb0 100644 --- a/loongarch64/scripts/step/wine_runtime/libXcomposite +++ b/loongarch64/scripts/step/wine_runtime/libXcomposite @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXcomposite export PACKAGE_VERSION=0.4.6 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXcomposite-0.4.6 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXcomposite-0.4.6 diff --git a/loongarch64/scripts/step/wine_runtime/libXcursor b/loongarch64/scripts/step/wine_runtime/libXcursor index ecbbe488..2b6ed0ea 100644 --- a/loongarch64/scripts/step/wine_runtime/libXcursor +++ b/loongarch64/scripts/step/wine_runtime/libXcursor @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXcursor export PACKAGE_VERSION=1.2.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXcursor-1.2.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXcursor-1.2.1 diff --git a/loongarch64/scripts/step/wine_runtime/libXdmcp b/loongarch64/scripts/step/wine_runtime/libXdmcp index 4169d5ae..53205f84 100644 --- a/loongarch64/scripts/step/wine_runtime/libXdmcp +++ b/loongarch64/scripts/step/wine_runtime/libXdmcp @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXdmcp export PACKAGE_VERSION=1.1.4 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXdmcp-1.1.4 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXdmcp-1.1.4 diff --git a/loongarch64/scripts/step/wine_runtime/libXext b/loongarch64/scripts/step/wine_runtime/libXext index 9c379a53..85d116c3 100644 --- a/loongarch64/scripts/step/wine_runtime/libXext +++ b/loongarch64/scripts/step/wine_runtime/libXext @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXext export PACKAGE_VERSION=1.3.5 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXext-1.3.5 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXext-1.3.5 diff --git a/loongarch64/scripts/step/wine_runtime/libXfixes b/loongarch64/scripts/step/wine_runtime/libXfixes index b67b06ad..8d1bb96c 100644 --- a/loongarch64/scripts/step/wine_runtime/libXfixes +++ b/loongarch64/scripts/step/wine_runtime/libXfixes @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXfixes export PACKAGE_VERSION=6.0.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXfixes-6.0.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXfixes-6.0.1 diff --git a/loongarch64/scripts/step/wine_runtime/libXi b/loongarch64/scripts/step/wine_runtime/libXi index afa8e636..0329d1d7 100644 --- a/loongarch64/scripts/step/wine_runtime/libXi +++ b/loongarch64/scripts/step/wine_runtime/libXi @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXi export PACKAGE_VERSION=1.8.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXi-1.8.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXi-1.8.1 diff --git a/loongarch64/scripts/step/wine_runtime/libXinerama b/loongarch64/scripts/step/wine_runtime/libXinerama index ca4b45f7..2715db3b 100644 --- a/loongarch64/scripts/step/wine_runtime/libXinerama +++ b/loongarch64/scripts/step/wine_runtime/libXinerama @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXinerama export PACKAGE_VERSION=1.1.5 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXinerama-1.1.5 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXinerama-1.1.5 diff --git a/loongarch64/scripts/step/wine_runtime/libXrandr b/loongarch64/scripts/step/wine_runtime/libXrandr index b523babc..3448273c 100644 --- a/loongarch64/scripts/step/wine_runtime/libXrandr +++ b/loongarch64/scripts/step/wine_runtime/libXrandr @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXrandr export PACKAGE_VERSION=1.5.3 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXrandr-1.5.3 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXrandr-1.5.3 diff --git a/loongarch64/scripts/step/wine_runtime/libXrender b/loongarch64/scripts/step/wine_runtime/libXrender index 3fd9ba24..2b13733a 100644 --- a/loongarch64/scripts/step/wine_runtime/libXrender +++ b/loongarch64/scripts/step/wine_runtime/libXrender @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXrender export PACKAGE_VERSION=0.9.11 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXrender-0.9.11 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXrender-0.9.11 diff --git a/loongarch64/scripts/step/wine_runtime/libXtst b/loongarch64/scripts/step/wine_runtime/libXtst index 97a3ba41..d44c4a5b 100644 --- a/loongarch64/scripts/step/wine_runtime/libXtst +++ b/loongarch64/scripts/step/wine_runtime/libXtst @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXtst export PACKAGE_VERSION=1.2.4 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXtst-1.2.4 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXtst-1.2.4 diff --git a/loongarch64/scripts/step/wine_runtime/libXxf86vm b/loongarch64/scripts/step/wine_runtime/libXxf86vm index a8240ee5..f3151009 100644 --- a/loongarch64/scripts/step/wine_runtime/libXxf86vm +++ b/loongarch64/scripts/step/wine_runtime/libXxf86vm @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libXxf86vm export PACKAGE_VERSION=1.1.5 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libXxf86vm-1.1.5 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libXxf86vm-1.1.5 diff --git a/loongarch64/scripts/step/wine_runtime/libaio b/loongarch64/scripts/step/wine_runtime/libaio index 917b2a18..d81eae07 100644 --- a/loongarch64/scripts/step/wine_runtime/libaio +++ b/loongarch64/scripts/step/wine_runtime/libaio @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libaio export PACKAGE_VERSION=0.3.113 @@ -8,7 +9,7 @@ export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/libaio/0.3.113/ rm -rf ${BUILD_DIRECTORY}/libaio-0.3.113 tar xvf ${DOWNLOADDIR}/libaio_0.3.113.orig.tar.gz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/libaio-0.3.113 - make -j${JOBS} CC="${X86_64_HOST}-gcc" - make DESTDIR=${X86_64_SYSROOT_DIR} libdir=/usr/lib64 install + make -j${JOBS} CC="${X86_HOST}-gcc" + make DESTDIR=${X86_SYSROOT_DIR} libdir=/usr/lib${LIB_SUFF} install popd rm -rf ${BUILD_DIRECTORY}/libaio-0.3.113 diff --git a/loongarch64/scripts/step/wine_runtime/libarchive b/loongarch64/scripts/step/wine_runtime/libarchive index 4658b91b..1600c5db 100644 --- a/loongarch64/scripts/step/wine_runtime/libarchive +++ b/loongarch64/scripts/step/wine_runtime/libarchive @@ -1,15 +1,16 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libarchive -export PACKAGE_VERSION=3.6.2 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/libarchive/3.6.2/ -rm -rf ${BUILD_DIRECTORY}/libarchive-3.6.2 -tar xvf ${DOWNLOADDIR}/libarchive-3.6.2.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/libarchive-3.6.2 +export PACKAGE_VERSION=3.7.1 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/libarchive/3.7.1/ +rm -rf ${BUILD_DIRECTORY}/libarchive-3.7.1 +tar xvf ${DOWNLOADDIR}/libarchive-3.7.1.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/libarchive-3.7.1 sed -i "/linux\/fs.h/d" libarchive/archive_read_disk_posix.c ./configure ${COMMON_CONFIG} eval ${MAKE_AND_INSTALL} popd -rm -rf ${BUILD_DIRECTORY}/libarchive-3.6.2 +rm -rf ${BUILD_DIRECTORY}/libarchive-3.7.1 diff --git a/loongarch64/scripts/step/wine_runtime/libarchive.info b/loongarch64/scripts/step/wine_runtime/libarchive.info index c695d215..7ee8b575 100644 --- a/loongarch64/scripts/step/wine_runtime/libarchive.info +++ b/loongarch64/scripts/step/wine_runtime/libarchive.info @@ -1 +1 @@ -libarchive|3.6.2 +libarchive|3.7.1 diff --git a/loongarch64/scripts/step/wine_runtime/libcap b/loongarch64/scripts/step/wine_runtime/libcap index 0c2c0ef3..5ddb1089 100644 --- a/loongarch64/scripts/step/wine_runtime/libcap +++ b/loongarch64/scripts/step/wine_runtime/libcap @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libcap export PACKAGE_VERSION=2.69 @@ -8,8 +9,8 @@ export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/libcap/2.69/ rm -rf ${BUILD_DIRECTORY}/libcap-2.69 tar xvf ${DOWNLOADDIR}/libcap-2.69.tar.xz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/libcap-2.69 - make -j${JOBS} CROSS_COMPILE="${X86_64_HOST}-" BUILD_CC="gcc" GOLANG=no prefix=/usr lib=lib64 - make CROSS_COMPILE="${X86_64_HOST}-" BUILD_CC="gcc" GOLANG=no prefix=/usr lib=lib64 \ - DESTDIR=${X86_64_SYSROOT_DIR} install + make -j${JOBS} CROSS_COMPILE="${X86_HOST}-" BUILD_CC="gcc" GOLANG=no prefix=/usr lib=lib${LIB_SUFF} + make CROSS_COMPILE="${X86_HOST}-" BUILD_CC="gcc" GOLANG=no prefix=/usr lib=lib${LIB_SUFF} \ + DESTDIR=${X86_SYSROOT_DIR} install popd rm -rf ${BUILD_DIRECTORY}/libcap-2.69 diff --git a/loongarch64/scripts/step/wine_runtime/libcapi20-3 b/loongarch64/scripts/step/wine_runtime/libcapi20-3 deleted file mode 100644 index 140fc2a9..00000000 --- a/loongarch64/scripts/step/wine_runtime/libcapi20-3 +++ /dev/null @@ -1,20 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=libcapi20-3 -export PACKAGE_VERSION=3.27 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/libcapi20-3/3.27/ -rm -rf ${BUILD_DIRECTORY}/capi20 -tar xvf ${DOWNLOADDIR}/libcapi20-3_3.27.orig.tar.bz2 -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/capi20 - - if [ ! -f configure ]; then - autoreconf -ifv - fi - ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/capi20 diff --git a/loongarch64/scripts/step/wine_runtime/libcapi20-3.info b/loongarch64/scripts/step/wine_runtime/libcapi20-3.info deleted file mode 100644 index 63839b35..00000000 --- a/loongarch64/scripts/step/wine_runtime/libcapi20-3.info +++ /dev/null @@ -1 +0,0 @@ -libcapi20-3|3.27 diff --git a/loongarch64/scripts/step/wine_runtime/libdrm b/loongarch64/scripts/step/wine_runtime/libdrm index 76f09e67..b4e244bd 100644 --- a/loongarch64/scripts/step/wine_runtime/libdrm +++ b/loongarch64/scripts/step/wine_runtime/libdrm @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libdrm export PACKAGE_VERSION=2.4.115 @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/libdrm-2.4.115 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libdrm-2.4.115 diff --git a/loongarch64/scripts/step/wine_runtime/libffi b/loongarch64/scripts/step/wine_runtime/libffi index fdac4329..66e32d8a 100644 --- a/loongarch64/scripts/step/wine_runtime/libffi +++ b/loongarch64/scripts/step/wine_runtime/libffi @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libffi export PACKAGE_VERSION=3.4.4 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libffi-3.4.4 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --disable-static --with-gcc-arch=native --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libffi-3.4.4 diff --git a/loongarch64/scripts/step/wine_runtime/libglvnd b/loongarch64/scripts/step/wine_runtime/libglvnd index fa1f3d5d..0b8c64ad 100644 --- a/loongarch64/scripts/step/wine_runtime/libglvnd +++ b/loongarch64/scripts/step/wine_runtime/libglvnd @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libglvnd export PACKAGE_VERSION=1.6.0 @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/libglvnd-v1.6.0 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libglvnd-v1.6.0 diff --git a/loongarch64/scripts/step/wine_runtime/libgphoto2 b/loongarch64/scripts/step/wine_runtime/libgphoto2 index 0ae0cb12..f4750db6 100644 --- a/loongarch64/scripts/step/wine_runtime/libgphoto2 +++ b/loongarch64/scripts/step/wine_runtime/libgphoto2 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libgphoto2 export PACKAGE_VERSION=2.5.30 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libgphoto2-2.5.30 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libgphoto2-2.5.30 diff --git a/loongarch64/scripts/step/wine_runtime/libpcap b/loongarch64/scripts/step/wine_runtime/libpcap index 6ed9d36f..b560fbfe 100644 --- a/loongarch64/scripts/step/wine_runtime/libpcap +++ b/loongarch64/scripts/step/wine_runtime/libpcap @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libpcap export PACKAGE_VERSION=1.10.4 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libpcap-1.10.4 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libpcap-1.10.4 diff --git a/loongarch64/scripts/step/wine_runtime/libpciaccess b/loongarch64/scripts/step/wine_runtime/libpciaccess index d5ccd8a4..4c7eca43 100644 --- a/loongarch64/scripts/step/wine_runtime/libpciaccess +++ b/loongarch64/scripts/step/wine_runtime/libpciaccess @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libpciaccess export PACKAGE_VERSION=0.17 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libpciaccess-0.17 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libpciaccess-0.17 diff --git a/loongarch64/scripts/step/wine_runtime/libpng b/loongarch64/scripts/step/wine_runtime/libpng index ac551570..3e143291 100644 --- a/loongarch64/scripts/step/wine_runtime/libpng +++ b/loongarch64/scripts/step/wine_runtime/libpng @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libpng export PACKAGE_VERSION=1.6.40 @@ -14,8 +15,8 @@ pushd ${BUILD_DIRECTORY}/libpng-1.6.40 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libpng-1.6.40 diff --git a/loongarch64/scripts/step/wine_runtime/libsamplerate b/loongarch64/scripts/step/wine_runtime/libsamplerate index 92340d56..12e5d784 100644 --- a/loongarch64/scripts/step/wine_runtime/libsamplerate +++ b/loongarch64/scripts/step/wine_runtime/libsamplerate @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libsamplerate export PACKAGE_VERSION=0.2.2 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libsamplerate-0.2.2 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libsamplerate-0.2.2 diff --git a/loongarch64/scripts/step/wine_runtime/libsndfile b/loongarch64/scripts/step/wine_runtime/libsndfile index 2a0c9b96..ed8bd591 100644 --- a/loongarch64/scripts/step/wine_runtime/libsndfile +++ b/loongarch64/scripts/step/wine_runtime/libsndfile @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libsndfile export PACKAGE_VERSION=1.2.0 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libsndfile-1.2.0 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libsndfile-1.2.0 diff --git a/loongarch64/scripts/step/wine_runtime/libtasn1 b/loongarch64/scripts/step/wine_runtime/libtasn1 index 49eabe0c..39028ed7 100644 --- a/loongarch64/scripts/step/wine_runtime/libtasn1 +++ b/loongarch64/scripts/step/wine_runtime/libtasn1 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libtasn1 export PACKAGE_VERSION=4.19.0 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libtasn1-4.19.0 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libtasn1-4.19.0 diff --git a/loongarch64/scripts/step/wine_runtime/libtool b/loongarch64/scripts/step/wine_runtime/libtool index 61f8387c..08d1460d 100644 --- a/loongarch64/scripts/step/wine_runtime/libtool +++ b/loongarch64/scripts/step/wine_runtime/libtool @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libtool export PACKAGE_VERSION=2.4.7 @@ -10,12 +11,12 @@ tar xvf ${DOWNLOADDIR}/libtool-2.4.7.tar.xz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/libtool-2.4.7 ./configure ${COMMON_CONFIG} eval ${MAKE_AND_INSTALL} -sed -i -e "s@${CROSS_TOOLS_PREFIX}/${X86_64_HOST}@/usr@g" \ - -e "s@${CROSS_TOOLS_PREFIX}/lib/gcc@/usr/lib64/gcc@g" \ +sed -i -e "s@${CROSS_TOOLS_PREFIX}/${X86_HOST}@/usr@g" \ + -e "s@${CROSS_TOOLS_PREFIX}/lib/gcc@/usr/lib${LIB_SUFF}/gcc@g" \ -e "s@${CROSS_TOOLS_PREFIX}/bin@/usr/bin@g" \ - -e "s@${X86_64_SYSROOT_DIR}/lib@/usr/lib@g" \ - -e "s@${X86_64_SYSROOT_DIR}/usr@/usr@g" \ - -e "s@${X86_64_HOST}-@@g" \ - ${X86_64_SYSROOT_DIR}/usr/bin/libtool + -e "s@${X86_SYSROOT_DIR}/lib@/usr/lib@g" \ + -e "s@${X86_SYSROOT_DIR}/usr@/usr@g" \ + -e "s@${X86_HOST}-@@g" \ + ${X86_SYSROOT_DIR}/usr/bin/libtool popd rm -rf ${BUILD_DIRECTORY}/libtool-2.4.7 diff --git a/loongarch64/scripts/step/wine_runtime/libunistring b/loongarch64/scripts/step/wine_runtime/libunistring index 37760b11..a2fdc796 100644 --- a/loongarch64/scripts/step/wine_runtime/libunistring +++ b/loongarch64/scripts/step/wine_runtime/libunistring @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libunistring export PACKAGE_VERSION=1.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libunistring-1.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libunistring-1.1 diff --git a/loongarch64/scripts/step/wine_runtime/libusb b/loongarch64/scripts/step/wine_runtime/libusb index 98c79cc3..e9d03c49 100644 --- a/loongarch64/scripts/step/wine_runtime/libusb +++ b/loongarch64/scripts/step/wine_runtime/libusb @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libusb export PACKAGE_VERSION=1.0.26 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libusb-1.0.26 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libusb-1.0.26 diff --git a/loongarch64/scripts/step/wine_runtime/libvdpau b/loongarch64/scripts/step/wine_runtime/libvdpau index f83b7445..3a8abc97 100644 --- a/loongarch64/scripts/step/wine_runtime/libvdpau +++ b/loongarch64/scripts/step/wine_runtime/libvdpau @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libvdpau export PACKAGE_VERSION=1.5 @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/libvdpau-1.5 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libvdpau-1.5 diff --git a/loongarch64/scripts/step/wine_runtime/libxcb b/loongarch64/scripts/step/wine_runtime/libxcb index 9ac0df90..11d545e7 100644 --- a/loongarch64/scripts/step/wine_runtime/libxcb +++ b/loongarch64/scripts/step/wine_runtime/libxcb @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libxcb export PACKAGE_VERSION=1.15 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libxcb-1.15 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libxcb-1.15 diff --git a/loongarch64/scripts/step/wine_runtime/libxml2 b/loongarch64/scripts/step/wine_runtime/libxml2 index f9594dbe..a12de30b 100644 --- a/loongarch64/scripts/step/wine_runtime/libxml2 +++ b/loongarch64/scripts/step/wine_runtime/libxml2 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libxml2 export PACKAGE_VERSION=2.11.4 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libxml2-2.11.4 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --with-history --with-icu --without-python --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libxml2-2.11.4 diff --git a/loongarch64/scripts/step/wine_runtime/libxshmfence b/loongarch64/scripts/step/wine_runtime/libxshmfence index bd3df10f..5a1e1459 100644 --- a/loongarch64/scripts/step/wine_runtime/libxshmfence +++ b/loongarch64/scripts/step/wine_runtime/libxshmfence @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=libxshmfence export PACKAGE_VERSION=1.3.2 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/libxshmfence-1.3.2 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/libxshmfence-1.3.2 diff --git a/loongarch64/scripts/step/wine_runtime/linux-header b/loongarch64/scripts/step/wine_runtime/linux-header index bfadb8e8..6e61533d 100644 --- a/loongarch64/scripts/step/wine_runtime/linux-header +++ b/loongarch64/scripts/step/wine_runtime/linux-header @@ -1,19 +1,20 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=linux-header -export PACKAGE_VERSION=6.4.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/linux-header/6.4.3/ -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 -tar xvf ${DOWNLOADDIR}/linux-6.4.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/linux-6.4.3 +export PACKAGE_VERSION=6.4.7 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/linux-header/6.4.7/ +rm -rf ${BUILD_DIRECTORY}/linux-6.4.7 +tar xvf ${DOWNLOADDIR}/linux-6.4.7.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/linux-6.4.7 make ARCH=${ARCH_FAMILY} mrproper make ARCH=${ARCH_FAMILY} INSTALL_HDR_PATH=dest headers_install find dest/include -name '.*' -delete - mkdir -pv ${X86_64_SYSROOT_DIR}/usr/include - cp -rv dest/include/* ${X86_64_SYSROOT_DIR}/usr/include + mkdir -pv ${X86_SYSROOT_DIR}/usr/include + cp -rv dest/include/* ${X86_SYSROOT_DIR}/usr/include mkdir -pv ${TOOLCHAIN_DIRECTORY}/${ARCH_FAMILY}/linux-header/usr/include cp -rv dest/include/* ${TOOLCHAIN_DIRECTORY}/${ARCH_FAMILY}/linux-header/usr/include/ popd -rm -rf ${BUILD_DIRECTORY}/linux-6.4.3 +rm -rf ${BUILD_DIRECTORY}/linux-6.4.7 diff --git a/loongarch64/scripts/step/wine_runtime/linux-header.info b/loongarch64/scripts/step/wine_runtime/linux-header.info index 0328b936..ba7de74f 100644 --- a/loongarch64/scripts/step/wine_runtime/linux-header.info +++ b/loongarch64/scripts/step/wine_runtime/linux-header.info @@ -1 +1 @@ -linux|6.4.3 +linux|6.4.7 diff --git a/loongarch64/scripts/step/wine_runtime/llvm-project b/loongarch64/scripts/step/wine_runtime/llvm-project index b40f90e2..17893fae 100644 --- a/loongarch64/scripts/step/wine_runtime/llvm-project +++ b/loongarch64/scripts/step/wine_runtime/llvm-project @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=llvm-project export PACKAGE_VERSION=16.0.6 @@ -12,10 +13,9 @@ pushd ${BUILD_DIRECTORY}/llvm-project-16.0.6.src pushd llvm mkdir cross-build pushd cross-build - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" \ + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" \ cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ -DBUILD_SHARED_LIBS:BOOL=OFF -DLLVM_ENABLE_LIBCXX:BOOL=OFF \ - -DLLVM_LIBDIR_SUFFIX=64 \ -DCMAKE_C_FLAGS="-DNDEBUG" -DCMAKE_CXX_FLAGS="-DNDEBUG" \ -DLLVM_BUILD_RUNTIME:BOOL=ON -DLLVM_ENABLE_RTTI:BOOL=ON \ -DLLVM_ENABLE_ZLIB:BOOL=ON -DLLVM_ENABLE_FFI:BOOL=ON \ @@ -24,7 +24,7 @@ pushd ${BUILD_DIRECTORY}/llvm-project-16.0.6.src -DLLVM_BUILD_LLVM_DYLIB:BOOL=ON \ -DLLVM_LINK_LLVM_DYLIB:BOOL=ON -DLLVM_BUILD_EXTERNAL_COMPILER_RT:BOOL=ON \ -DLLVM_INSTALL_TOOLCHAIN_ONLY:BOOL=OFF \ - -DLLVM_DEFAULT_TARGET_TRIPLE=${X86_64_HOST} + -DLLVM_DEFAULT_TARGET_TRIPLE=${X86_HOST} eval ${NINJA_AND_INSTALL} popd popd diff --git a/loongarch64/scripts/step/wine_runtime/make_directory b/loongarch64/scripts/step/wine_runtime/make_directory index 468b7133..36053860 100644 --- a/loongarch64/scripts/step/wine_runtime/make_directory +++ b/loongarch64/scripts/step/wine_runtime/make_directory @@ -1,58 +1,58 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=make_directory export PACKAGE_VERSION= export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/make_directory// -mkdir -p ${X86_64_SYSROOT_DIR} -pushd ${X86_64_SYSROOT_DIR} - mkdir -p usr/lib{,64} +mkdir -p ${X86_SYSROOT_DIR} +pushd ${X86_SYSROOT_DIR} + mkdir -p usr/lib mkdir -p usr/{bin,sbin} ln -sf usr/lib ./ - ln -sf usr/lib64 ./ ln -sf usr/bin ./ ln -sf usr/sbin ./ popd -cat > ${COMMON_DIR}/meson-cross-x86_64.txt << EOF +cat > ${COMMON_DIR}/meson-cross-i686.txt << EOF [binaries] -c = '${X86_64_HOST}-gcc' -cpp = '${X86_64_HOST}-g++' -ar = '${X86_64_HOST}-ar' -strip = '${X86_64_HOST}-strip' -objcopy = '${X86_64_HOST}-objcopy' -pkgconfig = '${X86_64_HOST}-pkg-config' +c = '${X86_HOST}-gcc' +cpp = '${X86_HOST}-g++' +ar = '${X86_HOST}-ar' +strip = '${X86_HOST}-strip' +objcopy = '${X86_HOST}-objcopy' +pkgconfig = '${X86_HOST}-pkg-config' llvm-config = 'llvm-config' -exe_wrapper = 'qemu-x86_64' +exe_wrapper = 'qemu-i386' [properties]" skip_sanity_check = true needs_exe_wrapper = true -sys_root = '${X86_64_SYSROOT_DIR}' -pkg_config_libdir = '${X86_64_SYSROOT_DIR}/usr/lib64/pkgconfig:${X86_64_SYSROOT_DIR}/usr/share/pkgconfig' +sys_root = '${X86_SYSROOT_DIR}' +pkg_config_libdir = '${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/pkgconfig:${X86_SYSROOT_DIR}/usr/share/pkgconfig' [host_machine] system = 'linux' -cpu_family = 'x86_64' -cpu = 'x86_64' +cpu_family = 'x86' +cpu = 'x86' endian = 'little' EOF -cat > ${COMMON_DIR}/cmake-cross-x86_64.cmake << EOF +cat > ${COMMON_DIR}/cmake-cross-i686.cmake << EOF set(CMAKE_SYSTEM_NAME Linux) -set(CMAKE_SYSTEM_PROCESSOR x86_64) +set(CMAKE_SYSTEM_PROCESSOR i686) -set(CMAKE_CROSSCOMPILING_EMULATOR qemu-x86_64) -set(CMAKE_SYSROOT ${X86_64_SYSROOT_DIR}) -set(CMAKE_FIND_ROOT_PATH ${X86_64_SYSROOT_DIR}/usr) +set(CMAKE_CROSSCOMPILING_EMULATOR qemu-i686) +set(CMAKE_SYSROOT ${X86_SYSROOT_DIR}) +set(CMAKE_FIND_ROOT_PATH ${X86_SYSROOT_DIR}/usr) set(CMAKE_INSTALL_PREFIX /usr) # set(CMAKE_STAGING_PREFIX /home/devel/stage) set(tools ${CROSS_TOOLS_PREFIX}) -set(CMAKE_C_COMPILER \${tools}/bin/${X86_64_HOST}-gcc) -set(CMAKE_CXX_COMPILER \${tools}/bin/${X86_64_HOST}-g++) +set(CMAKE_C_COMPILER \${tools}/bin/${X86_HOST}-gcc) +set(CMAKE_CXX_COMPILER \${tools}/bin/${X86_HOST}-g++) set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) diff --git a/loongarch64/scripts/step/wine_runtime/mesa b/loongarch64/scripts/step/wine_runtime/mesa index 050f8b45..8a8f40ed 100644 --- a/loongarch64/scripts/step/wine_runtime/mesa +++ b/loongarch64/scripts/step/wine_runtime/mesa @@ -1,14 +1,15 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=mesa -export PACKAGE_VERSION=23.1.3 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/mesa/23.1.3/ -rm -rf ${BUILD_DIRECTORY}/mesa-23.1.3 -tar xvf ${DOWNLOADDIR}/mesa-23.1.3.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/mesa-23.1.3 - patch -Np1 -i ${SYSDIR}/files/wine_runtime/mesa/23.1.3/patches/0001-fix-libdrm-and-mesa-multiple-definition-of-handle_ta.patch +export PACKAGE_VERSION=23.2.0 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/mesa/23.2.0/ +rm -rf ${BUILD_DIRECTORY}/mesa-23.2.0 +tar xvf ${DOWNLOADDIR}/mesa-23.2.0.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/mesa-23.2.0 + patch -Np1 -i ${SYSDIR}/files/wine_runtime/mesa/23.2.0/patches/0001-fix-libdrm-and-mesa-multiple-definition-of-handle_ta.patch sed -i -e "/dep_wl_scanner/s@, native: true@@g" \ -e "/prog_wl_scanner/s@find_program\(.*\)\$@'wayland-scanner'@g" meson.build @@ -22,4 +23,4 @@ pushd ${BUILD_DIRECTORY}/mesa-23.1.3 eval ${NINJA_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/mesa-23.1.3 +rm -rf ${BUILD_DIRECTORY}/mesa-23.2.0 diff --git a/loongarch64/scripts/step/wine_runtime/mesa.info b/loongarch64/scripts/step/wine_runtime/mesa.info index 1ef8b59c..c0bc551e 100644 --- a/loongarch64/scripts/step/wine_runtime/mesa.info +++ b/loongarch64/scripts/step/wine_runtime/mesa.info @@ -1 +1 @@ -mesa|23.1.3 +mesa|23.2.0 diff --git a/loongarch64/scripts/step/wine_runtime/mpc b/loongarch64/scripts/step/wine_runtime/mpc index 45f9166d..6faf24a4 100644 --- a/loongarch64/scripts/step/wine_runtime/mpc +++ b/loongarch64/scripts/step/wine_runtime/mpc @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=mpc export PACKAGE_VERSION=1.3.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/mpc-1.3.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/mpc-1.3.1 diff --git a/loongarch64/scripts/step/wine_runtime/mpfr b/loongarch64/scripts/step/wine_runtime/mpfr index 7953c609..dbb0fe71 100644 --- a/loongarch64/scripts/step/wine_runtime/mpfr +++ b/loongarch64/scripts/step/wine_runtime/mpfr @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=mpfr export PACKAGE_VERSION=4.2.0 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/mpfr-4.2.0 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/mpfr-4.2.0 diff --git a/loongarch64/scripts/step/wine_runtime/ncurses b/loongarch64/scripts/step/wine_runtime/ncurses index aa197054..87e8f833 100644 --- a/loongarch64/scripts/step/wine_runtime/ncurses +++ b/loongarch64/scripts/step/wine_runtime/ncurses @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=ncurses export PACKAGE_VERSION=6.4 @@ -8,25 +9,25 @@ export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/ncurses/6.4/ rm -rf ${BUILD_DIRECTORY}/ncurses-6.4 tar xvf ${DOWNLOADDIR}/ncurses-6.4.tar.gz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/ncurses-6.4 - ./configure --prefix=/usr --libdir=/usr/lib64 --build=${CROSS_HOST} \ - --host=${X86_64_HOST} --with-shared --without-debug \ + ./configure --prefix=/usr --libdir=/usr/lib${LIB_SUFF} --build=${CROSS_HOST} \ + --host=${X86_HOST} --with-shared --without-debug \ --without-normal --enable-pc-files --without-ada \ - --with-pkg-config-libdir=/usr/lib64/pkgconfig --enable-widec \ + --with-pkg-config-libdir=/usr/lib${LIB_SUFF}/pkgconfig --enable-widec \ --disable-stripping make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install + make DESTDIR=${X86_SYSROOT_DIR} install for lib in ncurses form panel menu ; do - rm -vf ${X86_64_SYSROOT_DIR}/usr/lib64/lib${lib}.so - echo "INPUT(-l${lib}w)" > ${X86_64_SYSROOT_DIR}/usr/lib64/lib${lib}.so - ln -sfv ${lib}w.pc ${X86_64_SYSROOT_DIR}/usr/lib64/pkgconfig/${lib}.pc + rm -vf ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/lib${lib}.so + echo "INPUT(-l${lib}w)" > ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/lib${lib}.so + ln -sfv ${lib}w.pc ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/pkgconfig/${lib}.pc done - rm -vf ${X86_64_SYSROOT_DIR}/usr/lib64/libcursesw.so - echo "INPUT(-lncursesw)" > ${X86_64_SYSROOT_DIR}/usr/lib64/libcursesw.so - ln -sfv libncurses.so ${X86_64_SYSROOT_DIR}/usr/lib64/libcurses.so - rm -fv ${X86_64_SYSROOT_DIR}/usr/lib64/libncurses++w.a + rm -vf ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/libcursesw.so + echo "INPUT(-lncursesw)" > ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/libcursesw.so + ln -sfv libncurses.so ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/libcurses.so + rm -fv ${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/libncurses++w.a popd rm -rf ${BUILD_DIRECTORY}/ncurses-6.4 -cp -v ${X86_64_SYSROOT_DIR}/usr/bin/ncursesw6-config ${CROSS_TOOLS_PREFIX}/bin/ +cp -v ${X86_SYSROOT_DIR}/usr/bin/ncursesw6-config ${CROSS_TOOLS_PREFIX}/bin/ sed -i "s@-L\$libdir@@g" ${CROSS_TOOLS_PREFIX}/bin/ncursesw6-config diff --git a/loongarch64/scripts/step/wine_runtime/nettle b/loongarch64/scripts/step/wine_runtime/nettle index 0811bef2..63e0f094 100644 --- a/loongarch64/scripts/step/wine_runtime/nettle +++ b/loongarch64/scripts/step/wine_runtime/nettle @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=nettle export PACKAGE_VERSION=3.9.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/nettle-3.9.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/nettle-3.9.1 diff --git a/loongarch64/scripts/step/wine_runtime/openssl b/loongarch64/scripts/step/wine_runtime/openssl index ba14b5ed..46761f96 100644 --- a/loongarch64/scripts/step/wine_runtime/openssl +++ b/loongarch64/scripts/step/wine_runtime/openssl @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=openssl export PACKAGE_VERSION=3.1.1 @@ -8,9 +9,9 @@ export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/openssl/3.1.1/ rm -rf ${BUILD_DIRECTORY}/openssl-3.1.1 tar xvf ${DOWNLOADDIR}/openssl-3.1.1.tar.gz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/openssl-3.1.1 - CC="${X86_64_HOST}-gcc" \ + CC="${X86_HOST}-gcc" \ ./Configure --prefix=/usr --openssldir=/etc/ssl \ - --libdir=lib64 shared zlib + --libdir=lib${LIB_SUFF} shared zlib linux-x86 sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile eval ${MAKE_AND_INSTALL} popd diff --git a/loongarch64/scripts/step/wine_runtime/pcre2 b/loongarch64/scripts/step/wine_runtime/pcre2 index 2f4634a4..558000d5 100644 --- a/loongarch64/scripts/step/wine_runtime/pcre2 +++ b/loongarch64/scripts/step/wine_runtime/pcre2 @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=pcre2 export PACKAGE_VERSION=10.42 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/pcre2-10.42 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-unicode --enable-pcre2-16 --enable-pcre2-32 --enable-pcre2grep-libz --enable-pcre2grep-libbz2 --enable-pcre2test-libreadline --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/pcre2-10.42 diff --git a/loongarch64/scripts/step/wine_runtime/pcsc-lite b/loongarch64/scripts/step/wine_runtime/pcsc-lite deleted file mode 100644 index db9dc515..00000000 --- a/loongarch64/scripts/step/wine_runtime/pcsc-lite +++ /dev/null @@ -1,20 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=pcsc-lite -export PACKAGE_VERSION=2.0.0 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/pcsc-lite/2.0.0/ -rm -rf ${BUILD_DIRECTORY}/pcsc-lite-2.0.0 -tar xvf ${DOWNLOADDIR}/pcsc-lite-2.0.0.tar.bz2 -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/pcsc-lite-2.0.0 - - if [ ! -f configure ]; then - autoreconf -ifv - fi - ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/pcsc-lite-2.0.0 diff --git a/loongarch64/scripts/step/wine_runtime/pcsc-lite.info b/loongarch64/scripts/step/wine_runtime/pcsc-lite.info deleted file mode 100644 index 876aa05b..00000000 --- a/loongarch64/scripts/step/wine_runtime/pcsc-lite.info +++ /dev/null @@ -1 +0,0 @@ -pcsc-lite|2.0.0 diff --git a/loongarch64/scripts/step/wine_runtime/popt b/loongarch64/scripts/step/wine_runtime/popt index a96bc666..63841dc6 100644 --- a/loongarch64/scripts/step/wine_runtime/popt +++ b/loongarch64/scripts/step/wine_runtime/popt @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=popt export PACKAGE_VERSION=1.19 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/popt-1.19 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/popt-1.19 diff --git a/loongarch64/scripts/step/wine_runtime/pulseaudio b/loongarch64/scripts/step/wine_runtime/pulseaudio index 217a7cbf..8d49e6d6 100644 --- a/loongarch64/scripts/step/wine_runtime/pulseaudio +++ b/loongarch64/scripts/step/wine_runtime/pulseaudio @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=pulseaudio export PACKAGE_VERSION=16.1 @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/pulseaudio-16.1 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/pulseaudio-16.1 diff --git a/loongarch64/scripts/step/wine_runtime/readline b/loongarch64/scripts/step/wine_runtime/readline index 2a2ee106..27d9bf6d 100644 --- a/loongarch64/scripts/step/wine_runtime/readline +++ b/loongarch64/scripts/step/wine_runtime/readline @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=readline export PACKAGE_VERSION=8.2 @@ -10,9 +11,9 @@ tar xvf ${DOWNLOADDIR}/readline-8.2.tar.gz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/readline-8.2 sed -i '/MV.*old/d' Makefile.in sed -i '/{OLDSUFF}/c:' support/shlib-install - ./configure --prefix=/usr --libdir=/usr/lib64 --build=${CROSS_HOST} --host=${X86_64_HOST} \ + ./configure --prefix=/usr --libdir=/usr/lib${LIB_SUFF} --build=${CROSS_HOST} --host=${X86_HOST} \ --disable-static --with-curses make -j${JOBS} SHLIB_LIBS="-lncursesw" - make SHLIB_LIBS="-lncursesw" DESTDIR=${X86_64_SYSROOT_DIR} install + make SHLIB_LIBS="-lncursesw" DESTDIR=${X86_SYSROOT_DIR} install popd rm -rf ${BUILD_DIRECTORY}/readline-8.2 diff --git a/loongarch64/scripts/step/wine_runtime/samba b/loongarch64/scripts/step/wine_runtime/samba index c54e48c7..a6fb5fd2 100644 --- a/loongarch64/scripts/step/wine_runtime/samba +++ b/loongarch64/scripts/step/wine_runtime/samba @@ -1,13 +1,14 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=samba -export PACKAGE_VERSION=4.18.4 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/samba/4.18.4/ -rm -rf ${BUILD_DIRECTORY}/samba-4.18.4 -tar xvf ${DOWNLOADDIR}/samba-4.18.4.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/samba-4.18.4 +export PACKAGE_VERSION=4.18.5 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/samba/4.18.5/ +rm -rf ${BUILD_DIRECTORY}/samba-4.18.5 +tar xvf ${DOWNLOADDIR}/samba-4.18.5.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/samba-4.18.5 for config_i in $(find -name "config.sub") do @@ -16,10 +17,10 @@ pushd ${BUILD_DIRECTORY}/samba-4.18.4 if [ ! -f configure ]; then autoreconf -ifv fi - sed -i.orig "/test_args/s@cmd = \[self@cmd = \['qemu-x86_64'\] + \[self@g" third_party/waf/waflib/Tools/c_config.py + sed -i.orig "/test_args/s@cmd = \[self@cmd = \['qemu-i386'\] + \[self@g" third_party/waf/waflib/Tools/c_config.py - NCURSES_CONFIG=${X86_64_SYSROOT_DIR}/bin/ncursesw6-config PKG_CONFIG=${X86_64_HOST}-pkg-config CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib${LIB_SUFF} --with-piddir=/run/samba --with-pammodulesdir=/usr/lib/security --enable-fhs --without-ad-dc --hostcc=gcc --with-system-mitkrb5 --disable-python --without-ldap --without-ads --without-pam + NCURSES_CONFIG=${X86_SYSROOT_DIR}/bin/ncursesw6-config PKG_CONFIG=${X86_HOST}-pkg-config CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib${LIB_SUFF} --with-piddir=/run/samba --with-pammodulesdir=/usr/lib/security --enable-fhs --without-ad-dc --hostcc=gcc --with-system-mitkrb5 --disable-python --without-ldap --without-ads --without-pam eval ${MAKE_AND_INSTALL} - rm -f ${SYSROOT_DIR}/usr/lib64/*.la + rm -f ${SYSROOT_DIR}/usr/lib${LIB_SUFF}/*.la popd -rm -rf ${BUILD_DIRECTORY}/samba-4.18.4 +rm -rf ${BUILD_DIRECTORY}/samba-4.18.5 diff --git a/loongarch64/scripts/step/wine_runtime/samba.info b/loongarch64/scripts/step/wine_runtime/samba.info index 7290556c..38a4ecda 100644 --- a/loongarch64/scripts/step/wine_runtime/samba.info +++ b/loongarch64/scripts/step/wine_runtime/samba.info @@ -1 +1 @@ -samba|4.18.4 +samba|4.18.5 diff --git a/loongarch64/scripts/step/wine_runtime/sane-backends b/loongarch64/scripts/step/wine_runtime/sane-backends deleted file mode 100644 index 6184adf9..00000000 --- a/loongarch64/scripts/step/wine_runtime/sane-backends +++ /dev/null @@ -1,21 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=sane-backends -export PACKAGE_VERSION=1.2.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/sane-backends/1.2.1/ -rm -rf ${BUILD_DIRECTORY}/backends-1.2.1-103c2b5d8e6d4e43026e90c5fb3b6b6a19cd5ee5 -tar xvf ${DOWNLOADDIR}/sane-backends-1.2.1.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/backends-1.2.1-103c2b5d8e6d4e43026e90c5fb3b6b6a19cd5ee5 - - echo ${PACKAGE_VERSION} > .tarball-version - if [ ! -f configure ]; then - autoreconf -ifv - fi - ./configure ${COMMON_CONFIG} --enable-static --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/backends-1.2.1-103c2b5d8e6d4e43026e90c5fb3b6b6a19cd5ee5 diff --git a/loongarch64/scripts/step/wine_runtime/sane-backends.info b/loongarch64/scripts/step/wine_runtime/sane-backends.info deleted file mode 100644 index ee306a9b..00000000 --- a/loongarch64/scripts/step/wine_runtime/sane-backends.info +++ /dev/null @@ -1 +0,0 @@ -sane-backends|1.2.1 diff --git a/loongarch64/scripts/step/wine_runtime/systemd b/loongarch64/scripts/step/wine_runtime/systemd index d4b70c2e..526ed731 100644 --- a/loongarch64/scripts/step/wine_runtime/systemd +++ b/loongarch64/scripts/step/wine_runtime/systemd @@ -1,13 +1,14 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=systemd -export PACKAGE_VERSION=254-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/systemd/254-default/ -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git -tar xvf ${DOWNLOADDIR}/systemd-254-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/systemd-254-default_git +export PACKAGE_VERSION=254 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/systemd/254/ +rm -rf ${BUILD_DIRECTORY}/systemd-254 +tar xvf ${DOWNLOADDIR}/systemd-254.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/systemd-254 pushd src/basic python3 missing_syscalls.py missing_syscall_def.h $(ls syscalls-*.txt) @@ -27,4 +28,4 @@ pushd ${BUILD_DIRECTORY}/systemd-254-default_git eval ${NINJA_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git +rm -rf ${BUILD_DIRECTORY}/systemd-254 diff --git a/loongarch64/scripts/step/wine_runtime/systemd.info b/loongarch64/scripts/step/wine_runtime/systemd.info index ac0e4883..fd0cbc5b 100644 --- a/loongarch64/scripts/step/wine_runtime/systemd.info +++ b/loongarch64/scripts/step/wine_runtime/systemd.info @@ -1 +1 @@ -systemd|254-default +systemd|254 diff --git a/loongarch64/scripts/step/wine_runtime/systemd_pre b/loongarch64/scripts/step/wine_runtime/systemd_pre index bca1f66e..815b4ddb 100644 --- a/loongarch64/scripts/step/wine_runtime/systemd_pre +++ b/loongarch64/scripts/step/wine_runtime/systemd_pre @@ -1,14 +1,15 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=systemd_pre -export PACKAGE_VERSION=254-default -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/systemd_pre/254-default/ -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git -tar xvf ${DOWNLOADDIR}/systemd-254-default_git.tar.gz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/systemd-254-default_git - patch -Np1 -i ${SYSDIR}/files/wine_runtime/systemd_pre/254-default/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch +export PACKAGE_VERSION=254 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/systemd_pre/254/ +rm -rf ${BUILD_DIRECTORY}/systemd-254 +tar xvf ${DOWNLOADDIR}/systemd-254.tar.gz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/systemd-254 + patch -Np1 -i ${SYSDIR}/files/wine_runtime/systemd_pre/254/patches/0001-fix-compiler-error-for-libcryptsetup-is-false.patch pushd src/basic python3 missing_syscalls.py missing_syscall_def.h $(ls syscalls-*.txt) @@ -28,4 +29,4 @@ pushd ${BUILD_DIRECTORY}/systemd-254-default_git eval ${NINJA_AND_INSTALL} popd popd -rm -rf ${BUILD_DIRECTORY}/systemd-254-default_git +rm -rf ${BUILD_DIRECTORY}/systemd-254 diff --git a/loongarch64/scripts/step/wine_runtime/systemd_pre.info b/loongarch64/scripts/step/wine_runtime/systemd_pre.info index ac0e4883..fd0cbc5b 100644 --- a/loongarch64/scripts/step/wine_runtime/systemd_pre.info +++ b/loongarch64/scripts/step/wine_runtime/systemd_pre.info @@ -1 +1 @@ -systemd|254-default +systemd|254 diff --git a/loongarch64/scripts/step/wine_runtime/util-linux b/loongarch64/scripts/step/wine_runtime/util-linux index 256f7ffd..dcaaea91 100644 --- a/loongarch64/scripts/step/wine_runtime/util-linux +++ b/loongarch64/scripts/step/wine_runtime/util-linux @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=util-linux export PACKAGE_VERSION=2.39.1 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/util-linux-2.39.1 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --disable-chfn-chsh --disable-login --disable-nologin --disable-su --disable-setpriv --disable-runuser --disable-pylibmount --disable-static --without-python --disable-makeinstall-chown runstatedir=/run ADJTIME_PATH=/var/lib/hwclock/adjtime --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/util-linux-2.39.1 diff --git a/loongarch64/scripts/step/wine_runtime/v4l-utils b/loongarch64/scripts/step/wine_runtime/v4l-utils deleted file mode 100644 index 5730c476..00000000 --- a/loongarch64/scripts/step/wine_runtime/v4l-utils +++ /dev/null @@ -1,20 +0,0 @@ -source env/wine_runtime/config -source env/distro.info -source env/function.sh -export STEP_BUILDNAME=wine_runtime -export STEP_PACKAGENAME=v4l-utils -export PACKAGE_VERSION=1.24.1 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/v4l-utils/1.24.1/ -rm -rf ${BUILD_DIRECTORY}/v4l-utils-1.24.1 -tar xvf ${DOWNLOADDIR}/v4l-utils-1.24.1.tar.bz2 -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/v4l-utils-1.24.1 - - if [ ! -f configure ]; then - autoreconf -ifv - fi - ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la -popd -rm -rf ${BUILD_DIRECTORY}/v4l-utils-1.24.1 diff --git a/loongarch64/scripts/step/wine_runtime/v4l-utils.info b/loongarch64/scripts/step/wine_runtime/v4l-utils.info deleted file mode 100644 index 26efb3b8..00000000 --- a/loongarch64/scripts/step/wine_runtime/v4l-utils.info +++ /dev/null @@ -1 +0,0 @@ -v4l-utils|1.24.1 diff --git a/loongarch64/scripts/step/wine_runtime/wayland b/loongarch64/scripts/step/wine_runtime/wayland index 8493209e..51e35136 100644 --- a/loongarch64/scripts/step/wine_runtime/wayland +++ b/loongarch64/scripts/step/wine_runtime/wayland @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=wayland export PACKAGE_VERSION=1.22.0 diff --git a/loongarch64/scripts/step/wine_runtime/wayland-protocols b/loongarch64/scripts/step/wine_runtime/wayland-protocols index 19de9e57..ef851b0a 100644 --- a/loongarch64/scripts/step/wine_runtime/wayland-protocols +++ b/loongarch64/scripts/step/wine_runtime/wayland-protocols @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=wayland-protocols export PACKAGE_VERSION=1.32 diff --git a/loongarch64/scripts/step/wine_runtime/wine b/loongarch64/scripts/step/wine_runtime/wine index a4616cce..b3dd52eb 100644 --- a/loongarch64/scripts/step/wine_runtime/wine +++ b/loongarch64/scripts/step/wine_runtime/wine @@ -1,22 +1,23 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=wine -export PACKAGE_VERSION=8.12 -export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/wine/8.12/ -rm -rf ${BUILD_DIRECTORY}/wine-8.12 -tar xvf ${DOWNLOADDIR}/wine-8.12.tar.xz -C ${BUILD_DIRECTORY} -pushd ${BUILD_DIRECTORY}/wine-8.12 +export PACKAGE_VERSION=8.13 +export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/wine/8.13/ +rm -rf ${BUILD_DIRECTORY}/wine-8.13 +tar xvf ${DOWNLOADDIR}/wine-8.13.tar.xz -C ${BUILD_DIRECTORY} +pushd ${BUILD_DIRECTORY}/wine-8.13 if [ ! -f configure ]; then autoreconf -ifv fi - ./configure ${COMMON_CONFIG} --with-wine-tools=${CROSSTOOLS_DIR}/wine-tools PULSE_LIBS="-Wl,-rpath-link=${X86_64_SYSROOT_DIR}/usr/lib64/pulseaudio -lpulse -lpthread" NETAPI_LIBS="-Wl,-rpath-link=${X86_64_SYSROOT_DIR}/usr/lib64/samba -lnetapi" --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} + ./configure ${COMMON_CONFIG} --with-wine-tools=${CROSSTOOLS_DIR}/wine-tools PULSE_LIBS="-Wl,-rpath-link=${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/pulseaudio -lpulse -lpthread" NETAPI_LIBS="-Wl,-rpath-link=${X86_SYSROOT_DIR}/usr/lib${LIB_SUFF}/samba -lnetapi" --enable-malloc0returnsnull + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} make DESTDIR=${SYSROOT_DIR} install - rm -f ${SYSROOT_DIR}/usr/lib64/*.la + rm -f ${SYSROOT_DIR}/usr/lib${LIB_SUFF}/*.la popd -rm -rf ${BUILD_DIRECTORY}/wine-8.12 +rm -rf ${BUILD_DIRECTORY}/wine-8.13 -echo -n ":Windows64:M::MZ::/usr/bin/wine64:" > ${SYSROOT_DIR}/etc/binfmt.d/wine64.conf +echo -n ":Windows:M::MZ::/usr/bin/wine:" > ${SYSROOT_DIR}/etc/binfmt.d/wine.conf diff --git a/loongarch64/scripts/step/wine_runtime/wine.info b/loongarch64/scripts/step/wine_runtime/wine.info index 816de05a..959e3cf1 100644 --- a/loongarch64/scripts/step/wine_runtime/wine.info +++ b/loongarch64/scripts/step/wine_runtime/wine.info @@ -1 +1 @@ -wine|8.12 +wine|8.13 diff --git a/loongarch64/scripts/step/wine_runtime/xcb-proto b/loongarch64/scripts/step/wine_runtime/xcb-proto index 65161573..b3f1a005 100644 --- a/loongarch64/scripts/step/wine_runtime/xcb-proto +++ b/loongarch64/scripts/step/wine_runtime/xcb-proto @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=xcb-proto export PACKAGE_VERSION=1.15.2 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/xcb-proto-1.15.2 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/xcb-proto-1.15.2 diff --git a/loongarch64/scripts/step/wine_runtime/xorgproto b/loongarch64/scripts/step/wine_runtime/xorgproto index d1dfaa3d..9da2c0a0 100644 --- a/loongarch64/scripts/step/wine_runtime/xorgproto +++ b/loongarch64/scripts/step/wine_runtime/xorgproto @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=xorgproto export PACKAGE_VERSION=2023.2 @@ -15,6 +16,6 @@ pushd ${BUILD_DIRECTORY}/xorgproto-2023.2 .. eval ${NINJA_AND_INSTALL} popd - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/xorgproto-2023.2 diff --git a/loongarch64/scripts/step/wine_runtime/xtrans b/loongarch64/scripts/step/wine_runtime/xtrans index 14480159..3f2aa483 100644 --- a/loongarch64/scripts/step/wine_runtime/xtrans +++ b/loongarch64/scripts/step/wine_runtime/xtrans @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=xtrans export PACKAGE_VERSION=1.5.0 @@ -13,8 +14,8 @@ pushd ${BUILD_DIRECTORY}/xtrans-1.5.0 autoreconf -ifv fi ./configure ${COMMON_CONFIG} --enable-malloc0returnsnull - CC="${X86_64_HOST}-gcc" CXX="${X86_64_HOST}-g++" make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install - rm -f ${X86_64_SYSROOT_DIR}/usr/lib64/*.la + CC="${X86_HOST}-gcc" CXX="${X86_HOST}-g++" make -j${JOBS} + make DESTDIR=${X86_SYSROOT_DIR} install + rm -f ${X86_SYSROOT_DIR}/usr/lib/*.la popd rm -rf ${BUILD_DIRECTORY}/xtrans-1.5.0 diff --git a/loongarch64/scripts/step/wine_runtime/zlib b/loongarch64/scripts/step/wine_runtime/zlib index b53dcd56..05d14e2e 100644 --- a/loongarch64/scripts/step/wine_runtime/zlib +++ b/loongarch64/scripts/step/wine_runtime/zlib @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=zlib export PACKAGE_VERSION=1.2.13 @@ -9,8 +10,8 @@ rm -rf ${BUILD_DIRECTORY}/zlib-1.2.13 tar xvf ${DOWNLOADDIR}/zlib-1.2.13.tar.xz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/zlib-1.2.13 - CROSS_PREFIX=${X86_64_HOST}- ./configure --prefix=/usr --libdir=/usr/lib64 + CROSS_PREFIX=${X86_HOST}- ./configure --prefix=/usr --libdir=/usr/lib${LIB_SUFF} make -j${JOBS} - make DESTDIR=${X86_64_SYSROOT_DIR} install + make DESTDIR=${X86_SYSROOT_DIR} install popd rm -rf ${BUILD_DIRECTORY}/zlib-1.2.13 diff --git a/loongarch64/scripts/step/wine_runtime/zstd b/loongarch64/scripts/step/wine_runtime/zstd index cf736eae..59ec57f7 100644 --- a/loongarch64/scripts/step/wine_runtime/zstd +++ b/loongarch64/scripts/step/wine_runtime/zstd @@ -1,6 +1,7 @@ source env/wine_runtime/config source env/distro.info source env/function.sh +source env/wine_runtime/custom export STEP_BUILDNAME=wine_runtime export STEP_PACKAGENAME=zstd export PACKAGE_VERSION=1.5.5 @@ -8,7 +9,7 @@ export RESOURCEDIR=${NEW_TARGET_SYSDIR}/files/wine_runtime/zstd/1.5.5/ rm -rf ${BUILD_DIRECTORY}/zstd-1.5.5 tar xvf ${DOWNLOADDIR}/zstd-1.5.5.tar.gz -C ${BUILD_DIRECTORY} pushd ${BUILD_DIRECTORY}/zstd-1.5.5 - make -j${JOBS} CC="${X86_64_HOST}-gcc" PREFIX=/usr LIBDIR=/usr/lib64 - make CC="${X86_64_HOST}-gcc" PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=${X86_64_SYSROOT_DIR} install + make -j${JOBS} CC="${X86_HOST}-gcc" PREFIX=/usr LIBDIR=/usr/lib${LIB_SUFF} + make CC="${X86_HOST}-gcc" PREFIX=/usr LIBDIR=/usr/lib${LIB_SUFF} DESTDIR=${X86_SYSROOT_DIR} install popd rm -rf ${BUILD_DIRECTORY}/zstd-1.5.5 diff --git a/loongarch64/sources/url/DE-KDE/kirigami-addons b/loongarch64/sources/url/DE-KDE/kirigami-addons index 39a1c604..9c22335f 100644 --- a/loongarch64/sources/url/DE-KDE/kirigami-addons +++ b/loongarch64/sources/url/DE-KDE/kirigami-addons @@ -1 +1 @@ -URL|https://download.kde.org/stable/kirigami-addons/kirigami-addons-0.9.0.tar.xz|kirigami-addons-0.9.0.tar.xz +URL|https://download.kde.org/stable/kirigami-addons/kirigami-addons-0.10.0.tar.xz|kirigami-addons-0.10.0.tar.xz diff --git a/loongarch64/sources/url/DE-KDE/qca b/loongarch64/sources/url/DE-KDE/qca index 1563f512..0a252e80 100644 --- a/loongarch64/sources/url/DE-KDE/qca +++ b/loongarch64/sources/url/DE-KDE/qca @@ -1 +1 @@ -URL|https://download.kde.org/stable/qca/2.3.6/qca-2.3.6.tar.xz|qca-2.3.6.tar.xz +URL|https://download.kde.org/stable/qca/2.3.7/qca-2.3.7.tar.xz|qca-2.3.7.tar.xz diff --git a/loongarch64/sources/url/base_support/Markdown b/loongarch64/sources/url/base_support/Markdown index dc39a947..062a04f2 100644 --- a/loongarch64/sources/url/base_support/Markdown +++ b/loongarch64/sources/url/base_support/Markdown @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/9d/80/cc67bfb7deb973d5ae662ee6454d2dafaa8f7c106feafd0d1572666ebde5/Markdown-3.4.3.tar.gz|Markdown-3.4.3.tar.gz +URL|https://files.pythonhosted.org/packages/87/2a/62841f4fb1fef5fa015ded48d02401cd95643ca03b6760b29437b62a04a4/Markdown-3.4.4.tar.gz|Markdown-3.4.4.tar.gz diff --git a/loongarch64/sources/url/base_support/NetworkManager b/loongarch64/sources/url/base_support/NetworkManager index 7ec3b352..aa67c3ab 100644 --- a/loongarch64/sources/url/base_support/NetworkManager +++ b/loongarch64/sources/url/base_support/NetworkManager @@ -1 +1 @@ -URL|https://download.gnome.org/sources/NetworkManager/1.43/NetworkManager-1.43.11.tar.xz|NetworkManager-1.43.11.tar.xz +URL|https://download.gnome.org/sources/NetworkManager/1.45/NetworkManager-1.45.0.tar.xz|NetworkManager-1.45.0.tar.xz diff --git a/loongarch64/sources/url/base_support/SPIRV-LLVM-Translator b/loongarch64/sources/url/base_support/SPIRV-LLVM-Translator index e53e49ae..3beca403 100644 --- a/loongarch64/sources/url/base_support/SPIRV-LLVM-Translator +++ b/loongarch64/sources/url/base_support/SPIRV-LLVM-Translator @@ -1 +1 @@ -URL|https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/v16.0.0/SPIRV-LLVM-Translator-16.0.0.tar.gz|SPIRV-LLVM-Translator-16.0.0.tar.gz +GIT|https://github.com/KhronosGroup/SPIRV-LLVM-Translator.git|SPIRV-LLVM-Translator-16.0.0-default_git.tar.gz diff --git a/loongarch64/sources/url/base_support/systemd.gitinfo b/loongarch64/sources/url/base_support/SPIRV-LLVM-Translator.gitinfo similarity index 100% rename from loongarch64/sources/url/base_support/systemd.gitinfo rename to loongarch64/sources/url/base_support/SPIRV-LLVM-Translator.gitinfo diff --git a/loongarch64/sources/url/base_support/Vulkan-Headers b/loongarch64/sources/url/base_support/Vulkan-Headers index d107df28..557fa147 100644 --- a/loongarch64/sources/url/base_support/Vulkan-Headers +++ b/loongarch64/sources/url/base_support/Vulkan-Headers @@ -1 +1 @@ -URL|https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.3.257/Vulkan-Headers-1.3.257.tar.gz|Vulkan-Headers-1.3.257.tar.gz +URL|https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.3.260/Vulkan-Headers-1.3.260.tar.gz|Vulkan-Headers-1.3.260.tar.gz diff --git a/loongarch64/sources/url/base_support/Vulkan-Loader b/loongarch64/sources/url/base_support/Vulkan-Loader index 65bc5b35..b496cce5 100644 --- a/loongarch64/sources/url/base_support/Vulkan-Loader +++ b/loongarch64/sources/url/base_support/Vulkan-Loader @@ -1 +1 @@ -URL|https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.3.257/Vulkan-Loader-1.3.257.tar.gz|Vulkan-Loader-1.3.257.tar.gz +URL|https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.3.260/Vulkan-Loader-1.3.260.tar.gz|Vulkan-Loader-1.3.260.tar.gz diff --git a/loongarch64/sources/url/base_support/Vulkan-Tools b/loongarch64/sources/url/base_support/Vulkan-Tools index b6f4d7f9..da1f0287 100644 --- a/loongarch64/sources/url/base_support/Vulkan-Tools +++ b/loongarch64/sources/url/base_support/Vulkan-Tools @@ -1 +1 @@ -URL|https://github.com/KhronosGroup/Vulkan-Tools/archive/v1.3.257/Vulkan-Tools-1.3.257.tar.gz|Vulkan-Tools-1.3.257.tar.gz +URL|https://github.com/KhronosGroup/Vulkan-Tools/archive/v1.3.260/Vulkan-Tools-1.3.260.tar.gz|Vulkan-Tools-1.3.260.tar.gz diff --git a/loongarch64/sources/url/base_support/at-spi2-core b/loongarch64/sources/url/base_support/at-spi2-core index cf51a411..628acefc 100644 --- a/loongarch64/sources/url/base_support/at-spi2-core +++ b/loongarch64/sources/url/base_support/at-spi2-core @@ -1 +1 @@ -URL|https://download.gnome.org/sources/at-spi2-core/2.48/at-spi2-core-2.48.3.tar.xz|at-spi2-core-2.48.3.tar.xz +URL|https://download.gnome.org/sources/at-spi2-core/2.49/at-spi2-core-2.49.1.tar.xz|at-spi2-core-2.49.1.tar.xz diff --git a/loongarch64/sources/url/base_support/certifi b/loongarch64/sources/url/base_support/certifi index 0fd72a21..618e1f34 100644 --- a/loongarch64/sources/url/base_support/certifi +++ b/loongarch64/sources/url/base_support/certifi @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/source/c/certifi/certifi-2023.5.7.tar.gz|certifi-2023.5.7.tar.gz +URL|https://files.pythonhosted.org/packages/source/c/certifi/certifi-2023.7.22.tar.gz|certifi-2023.7.22.tar.gz diff --git a/loongarch64/sources/url/base_support/emacs b/loongarch64/sources/url/base_support/emacs index 419683ee..4ecea406 100644 --- a/loongarch64/sources/url/base_support/emacs +++ b/loongarch64/sources/url/base_support/emacs @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/emacs/emacs-28.2.tar.xz|emacs-28.2.tar.xz +URL|https://ftp.gnu.org/gnu/emacs/emacs-29.1.tar.xz|emacs-29.1.tar.xz diff --git a/loongarch64/sources/url/base_support/glslang b/loongarch64/sources/url/base_support/glslang index 2cdf5b3b..81a4f22b 100644 --- a/loongarch64/sources/url/base_support/glslang +++ b/loongarch64/sources/url/base_support/glslang @@ -1 +1 @@ -URL|https://github.com/KhronosGroup/glslang/archive/12.2.0/glslang-12.2.0.tar.gz|glslang-12.2.0.tar.gz +URL|https://github.com/KhronosGroup/glslang/archive/12.3.1/glslang-12.3.1.tar.gz|glslang-12.3.1.tar.gz diff --git a/loongarch64/sources/url/base_support/glu b/loongarch64/sources/url/base_support/glu index d24f4978..3075f356 100644 --- a/loongarch64/sources/url/base_support/glu +++ b/loongarch64/sources/url/base_support/glu @@ -1 +1 @@ -URL|ftp://ftp.freedesktop.org:21/pub/mesa/glu/glu-9.0.2.tar.xz|glu-9.0.2.tar.xz +URL|ftp://ftp.freedesktop.org:21/pub/mesa/glu/glu-9.0.3.tar.xz|glu-9.0.3.tar.xz diff --git a/loongarch64/sources/url/base_support/googletest b/loongarch64/sources/url/base_support/googletest new file mode 100644 index 00000000..88781bad --- /dev/null +++ b/loongarch64/sources/url/base_support/googletest @@ -0,0 +1 @@ +URL|https://github.com/google/googletest/archive/v1.13.0/googletest-1.13.0.tar.gz|googletest-1.13.0.tar.gz diff --git a/loongarch64/sources/url/base_support/gst-plugins-base b/loongarch64/sources/url/base_support/gst-plugins-base index a22e3940..9540635d 100644 --- a/loongarch64/sources/url/base_support/gst-plugins-base +++ b/loongarch64/sources/url/base_support/gst-plugins-base @@ -1 +1 @@ -URL|https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.22.4.tar.xz|gst-plugins-base-1.22.4.tar.xz +URL|https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.22.5.tar.xz|gst-plugins-base-1.22.5.tar.xz diff --git a/loongarch64/sources/url/base_support/gstreamer b/loongarch64/sources/url/base_support/gstreamer index 8dac8c2f..ab69da27 100644 --- a/loongarch64/sources/url/base_support/gstreamer +++ b/loongarch64/sources/url/base_support/gstreamer @@ -1 +1 @@ -URL|https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.22.4.tar.xz|gstreamer-1.22.4.tar.xz +URL|https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.22.5.tar.xz|gstreamer-1.22.5.tar.xz diff --git a/loongarch64/sources/url/base_support/highlight b/loongarch64/sources/url/base_support/highlight index 1a3e29b2..4506f8ed 100644 --- a/loongarch64/sources/url/base_support/highlight +++ b/loongarch64/sources/url/base_support/highlight @@ -1 +1 @@ -URL|http://www.andre-simon.de/zip/highlight-4.6.tar.bz2|highlight-4.6.tar.bz2 +URL|http://www.andre-simon.de/zip/highlight-4.7.tar.bz2|highlight-4.7.tar.bz2 diff --git a/loongarch64/sources/url/base_support/highway b/loongarch64/sources/url/base_support/highway new file mode 100644 index 00000000..e1fd6d90 --- /dev/null +++ b/loongarch64/sources/url/base_support/highway @@ -0,0 +1 @@ +URL|https://github.com/google/highway/archive/1.0.5/highway-1.0.5.tar.gz|highway-1.0.5.tar.gz diff --git a/loongarch64/sources/url/base_support/lftp b/loongarch64/sources/url/base_support/lftp new file mode 100644 index 00000000..49a964ea --- /dev/null +++ b/loongarch64/sources/url/base_support/lftp @@ -0,0 +1 @@ +URL|http://lftp.yar.ru/ftp/lftp-4.9.2.tar.xz|lftp-4.9.2.tar.xz diff --git a/loongarch64/sources/url/base_support/libarchive b/loongarch64/sources/url/base_support/libarchive index 1cc67f0b..f78289db 100644 --- a/loongarch64/sources/url/base_support/libarchive +++ b/loongarch64/sources/url/base_support/libarchive @@ -1 +1 @@ -URL|https://github.com/libarchive/libarchive/releases/download/v3.6.2/libarchive-3.6.2.tar.xz|libarchive-3.6.2.tar.xz +URL|https://github.com/libarchive/libarchive/releases/download/v3.7.1/libarchive-3.7.1.tar.xz|libarchive-3.7.1.tar.xz diff --git a/loongarch64/sources/url/base_support/libclc_git b/loongarch64/sources/url/base_support/libclc_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/base_support/libclc_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/base_support/libclc_git.gitinfo b/loongarch64/sources/url/base_support/libclc_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/base_support/libclc_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/base_support/mesa b/loongarch64/sources/url/base_support/mesa index 7f685872..dd3a2cfd 100644 --- a/loongarch64/sources/url/base_support/mesa +++ b/loongarch64/sources/url/base_support/mesa @@ -1 +1 @@ -URL|https://archive.mesa3d.org/mesa-23.1.3.tar.xz|mesa-23.1.3.tar.xz +URL|https://archive.mesa3d.org/mesa-23.2.0.tar.xz|mesa-23.2.0.tar.xz diff --git a/loongarch64/sources/url/base_support/mesa_git b/loongarch64/sources/url/base_support/mesa_git new file mode 100644 index 00000000..592f0d02 --- /dev/null +++ b/loongarch64/sources/url/base_support/mesa_git @@ -0,0 +1 @@ +GIT|https://gitlab.freedesktop.org/mesa/mesa.git|mesa_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/base_support/mesa_git.gitinfo b/loongarch64/sources/url/base_support/mesa_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/base_support/mesa_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/base_support/mlt b/loongarch64/sources/url/base_support/mlt index 7acdccc0..f121765b 100644 --- a/loongarch64/sources/url/base_support/mlt +++ b/loongarch64/sources/url/base_support/mlt @@ -1 +1 @@ -URL|https://github.com/mltframework/mlt/releases/download/v7.16.0/mlt-7.16.0.tar.gz|mlt-7.16.0.tar.gz +URL|https://github.com/mltframework/mlt/releases/download/v7.18.0/mlt-7.18.0.tar.gz|mlt-7.18.0.tar.gz diff --git a/loongarch64/sources/url/base_support/nghttp2 b/loongarch64/sources/url/base_support/nghttp2 index c332155d..33c90439 100644 --- a/loongarch64/sources/url/base_support/nghttp2 +++ b/loongarch64/sources/url/base_support/nghttp2 @@ -1 +1 @@ -URL|https://github.com/nghttp2/nghttp2/releases/download/v1.55.0/nghttp2-1.55.0.tar.xz|nghttp2-1.55.0.tar.xz +URL|https://github.com/nghttp2/nghttp2/releases/download/v1.55.1/nghttp2-1.55.1.tar.xz|nghttp2-1.55.1.tar.xz diff --git a/loongarch64/sources/url/base_support/node b/loongarch64/sources/url/base_support/node index 76e9f1de..57c98be1 100644 --- a/loongarch64/sources/url/base_support/node +++ b/loongarch64/sources/url/base_support/node @@ -1 +1 @@ -URL|https://github.com/nodejs/node/archive/v20.4.0/node-20.4.0.tar.gz|node-20.4.0.tar.gz +URL|https://github.com/nodejs/node/archive/v20.5.0/node-20.5.0.tar.gz|node-20.5.0.tar.gz diff --git a/loongarch64/sources/url/base_support/openldap b/loongarch64/sources/url/base_support/openldap index 965e05b1..3f75a39b 100644 --- a/loongarch64/sources/url/base_support/openldap +++ b/loongarch64/sources/url/base_support/openldap @@ -1 +1 @@ -URL|https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.6.5.tgz|openldap-2.6.5.tgz +URL|https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.6.6.tgz|openldap-2.6.6.tgz diff --git a/loongarch64/sources/url/base_support/perf b/loongarch64/sources/url/base_support/perf index 41dc239e..6e9f410c 100644 --- a/loongarch64/sources/url/base_support/perf +++ b/loongarch64/sources/url/base_support/perf @@ -1 +1 @@ -URL|https://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/linux-6.4.3.tar.xz|linux-6.4.3.tar.xz +GIT|https://github.com/chenhuacai/linux.git|linux_git-6.5_git.tar.gz diff --git a/loongarch64/sources/url/base_support/perf.gitinfo b/loongarch64/sources/url/base_support/perf.gitinfo new file mode 100644 index 00000000..521eb3fd --- /dev/null +++ b/loongarch64/sources/url/base_support/perf.gitinfo @@ -0,0 +1 @@ +loongarch-next||0 diff --git a/loongarch64/sources/url/base_support/pipewire b/loongarch64/sources/url/base_support/pipewire index 7f0b843c..a47f0dd8 100644 --- a/loongarch64/sources/url/base_support/pipewire +++ b/loongarch64/sources/url/base_support/pipewire @@ -1 +1 @@ -URL|https://github.com/PipeWire/pipewire/archive/0.3.74/pipewire-0.3.74.tar.gz|pipewire-0.3.74.tar.gz +URL|https://github.com/PipeWire/pipewire/archive/0.3.76/pipewire-0.3.76.tar.gz|pipewire-0.3.76.tar.gz diff --git a/loongarch64/sources/url/base_support/samba b/loongarch64/sources/url/base_support/samba index c36339d9..e2de632d 100644 --- a/loongarch64/sources/url/base_support/samba +++ b/loongarch64/sources/url/base_support/samba @@ -1 +1 @@ -URL|https://download.samba.org/pub/samba/stable/samba-4.18.4.tar.gz|samba-4.18.4.tar.gz +URL|https://download.samba.org/pub/samba/stable/samba-4.18.5.tar.gz|samba-4.18.5.tar.gz diff --git a/loongarch64/sources/url/base_support/sphinx b/loongarch64/sources/url/base_support/sphinx index 1cc68f8c..19dc3aab 100644 --- a/loongarch64/sources/url/base_support/sphinx +++ b/loongarch64/sources/url/base_support/sphinx @@ -1 +1 @@ -URL|https://github.com/sphinx-doc/sphinx/archive/v7.0.1/sphinx-7.0.1.tar.gz|sphinx-7.0.1.tar.gz +URL|https://github.com/sphinx-doc/sphinx/archive/v7.1.1/sphinx-7.1.1.tar.gz|sphinx-7.1.1.tar.gz diff --git a/loongarch64/sources/url/base_support/systemd b/loongarch64/sources/url/base_support/systemd index 465737f6..5606249a 100644 --- a/loongarch64/sources/url/base_support/systemd +++ b/loongarch64/sources/url/base_support/systemd @@ -1 +1 @@ -GIT|https://github.com/systemd/systemd.git|systemd-254-default_git.tar.gz +URL|https://github.com/systemd/systemd/archive/v254/systemd-254.tar.gz|systemd-254.tar.gz diff --git a/loongarch64/sources/url/base_support/xwayland b/loongarch64/sources/url/base_support/xwayland index 9c204fc0..ba670f02 100644 --- a/loongarch64/sources/url/base_support/xwayland +++ b/loongarch64/sources/url/base_support/xwayland @@ -1 +1 @@ -URL|https://www.x.org/archive/individual/xserver/xwayland-23.1.2.tar.xz|xwayland-23.1.2.tar.xz +URL|https://www.x.org/archive/individual/xserver/xwayland-23.1.99.901.tar.xz|xwayland-23.1.99.901.tar.xz diff --git a/loongarch64/sources/url/base_support/xxHash b/loongarch64/sources/url/base_support/xxHash index d6e6321c..a467875a 100644 --- a/loongarch64/sources/url/base_support/xxHash +++ b/loongarch64/sources/url/base_support/xxHash @@ -1 +1 @@ -URL|https://github.com/Cyan4973/xxHash/archive/v0.8.1/xxHash-0.8.1.tar.gz|xxHash-0.8.1.tar.gz +URL|https://github.com/Cyan4973/xxHash/archive/v0.8.2/xxHash-0.8.2.tar.gz|xxHash-0.8.2.tar.gz diff --git a/loongarch64/sources/url/boot/linux-kernel b/loongarch64/sources/url/boot/linux-kernel index 41dc239e..6e9f410c 100644 --- a/loongarch64/sources/url/boot/linux-kernel +++ b/loongarch64/sources/url/boot/linux-kernel @@ -1 +1 @@ -URL|https://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/linux-6.4.3.tar.xz|linux-6.4.3.tar.xz +GIT|https://github.com/chenhuacai/linux.git|linux_git-6.5_git.tar.gz diff --git a/loongarch64/sources/url/boot/linux-kernel.gitinfo b/loongarch64/sources/url/boot/linux-kernel.gitinfo new file mode 100644 index 00000000..521eb3fd --- /dev/null +++ b/loongarch64/sources/url/boot/linux-kernel.gitinfo @@ -0,0 +1 @@ +loongarch-next||0 diff --git a/loongarch64/sources/url/bootstrap/rust-bootstrap b/loongarch64/sources/url/bootstrap/rust-bootstrap index e07e7cb9..af2e0887 100644 --- a/loongarch64/sources/url/bootstrap/rust-bootstrap +++ b/loongarch64/sources/url/bootstrap/rust-bootstrap @@ -1 +1 @@ -URL|https://static.rust-lang.org/dist/rust-1.70.0-x86_64-unknown-linux-gnu.tar.gz|rust-1.70.0-x86_64-unknown-linux-gnu.tar.gz +URL|https://static.rust-lang.org/dist/rust-1.71.0-x86_64-unknown-linux-gnu.tar.gz|rust-1.71.0-x86_64-unknown-linux-gnu.tar.gz diff --git a/loongarch64/sources/url/computer_language/dune b/loongarch64/sources/url/computer_language/dune index 74c291d3..5e8b059f 100644 --- a/loongarch64/sources/url/computer_language/dune +++ b/loongarch64/sources/url/computer_language/dune @@ -1 +1 @@ -URL|https://github.com/ocaml/dune/archive/3.9.1/dune-3.9.1.tar.gz|dune-3.9.1.tar.gz +URL|https://github.com/ocaml/dune/archive/3.10.0/dune-3.10.0.tar.gz|dune-3.10.0.tar.gz diff --git a/loongarch64/sources/url/computer_language/rustc b/loongarch64/sources/url/computer_language/rustc index f6567145..372ff028 100644 --- a/loongarch64/sources/url/computer_language/rustc +++ b/loongarch64/sources/url/computer_language/rustc @@ -1 +1 @@ -URL|https://static.rust-lang.org/dist/rustc-1.70.0-src.tar.gz|rustc-1.70.0-src.tar.gz +URL|https://static.rust-lang.org/dist/rustc-1.71.0-src.tar.gz|rustc-1.71.0-src.tar.gz diff --git a/loongarch64/sources/url/cross-toolchains/i686-binutils b/loongarch64/sources/url/cross-toolchains/i686-binutils new file mode 100644 index 00000000..6aa571b8 --- /dev/null +++ b/loongarch64/sources/url/cross-toolchains/i686-binutils @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/i686-gcc b/loongarch64/sources/url/cross-toolchains/i686-gcc new file mode 100644 index 00000000..cda0b0da --- /dev/null +++ b/loongarch64/sources/url/cross-toolchains/i686-gcc @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/i686-gcc-glibc b/loongarch64/sources/url/cross-toolchains/i686-gcc-glibc new file mode 100644 index 00000000..cda0b0da --- /dev/null +++ b/loongarch64/sources/url/cross-toolchains/i686-gcc-glibc @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/i686-pkg-config b/loongarch64/sources/url/cross-toolchains/i686-pkg-config new file mode 100644 index 00000000..27eb392e --- /dev/null +++ b/loongarch64/sources/url/cross-toolchains/i686-pkg-config @@ -0,0 +1 @@ +URL|https://pkg-config.freedesktop.org/releases/pkg-config-0.29.2.tar.gz|pkg-config-0.29.2.tar.gz diff --git a/loongarch64/sources/url/cross-toolchains/i686-qemu b/loongarch64/sources/url/cross-toolchains/i686-qemu new file mode 100644 index 00000000..4e990aad --- /dev/null +++ b/loongarch64/sources/url/cross-toolchains/i686-qemu @@ -0,0 +1 @@ +URL|https://download.qemu.org/qemu-8.0.3.tar.xz|qemu-8.0.3.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/mingw-binutils b/loongarch64/sources/url/cross-toolchains/mingw-binutils index 9c49869d..6aa571b8 100644 --- a/loongarch64/sources/url/cross-toolchains/mingw-binutils +++ b/loongarch64/sources/url/cross-toolchains/mingw-binutils @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/binutils/binutils-2.40.tar.xz|binutils-2.40.tar.xz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/mingw-gcc b/loongarch64/sources/url/cross-toolchains/mingw-gcc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/cross-toolchains/mingw-gcc +++ b/loongarch64/sources/url/cross-toolchains/mingw-gcc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/mingw-gcc-glibc b/loongarch64/sources/url/cross-toolchains/mingw-gcc-glibc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/cross-toolchains/mingw-gcc-glibc +++ b/loongarch64/sources/url/cross-toolchains/mingw-gcc-glibc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/x86_64-binutils b/loongarch64/sources/url/cross-toolchains/x86_64-binutils index 239b0e60..6aa571b8 100644 --- a/loongarch64/sources/url/cross-toolchains/x86_64-binutils +++ b/loongarch64/sources/url/cross-toolchains/x86_64-binutils @@ -1 +1 @@ -GIT|git://sourceware.org/git/binutils-gdb.git|binutils_git-2.41-default_git.tar.gz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/x86_64-gcc b/loongarch64/sources/url/cross-toolchains/x86_64-gcc index e81ec31d..cda0b0da 100644 --- a/loongarch64/sources/url/cross-toolchains/x86_64-gcc +++ b/loongarch64/sources/url/cross-toolchains/x86_64-gcc @@ -1 +1 @@ -GIT|git://sourceware.org/git/gcc.git|gcc_git-14.0.0-default_git.tar.gz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-toolchains/x86_64-gcc-glibc b/loongarch64/sources/url/cross-toolchains/x86_64-gcc-glibc index e81ec31d..cda0b0da 100644 --- a/loongarch64/sources/url/cross-toolchains/x86_64-gcc-glibc +++ b/loongarch64/sources/url/cross-toolchains/x86_64-gcc-glibc @@ -1 +1 @@ -GIT|git://sourceware.org/git/gcc.git|gcc_git-14.0.0-default_git.tar.gz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-tools/SPIRV-LLVM-Translator b/loongarch64/sources/url/cross-tools/SPIRV-LLVM-Translator index e53e49ae..3beca403 100644 --- a/loongarch64/sources/url/cross-tools/SPIRV-LLVM-Translator +++ b/loongarch64/sources/url/cross-tools/SPIRV-LLVM-Translator @@ -1 +1 @@ -URL|https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/v16.0.0/SPIRV-LLVM-Translator-16.0.0.tar.gz|SPIRV-LLVM-Translator-16.0.0.tar.gz +GIT|https://github.com/KhronosGroup/SPIRV-LLVM-Translator.git|SPIRV-LLVM-Translator-16.0.0-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-toolchains/x86_64-binutils.gitinfo b/loongarch64/sources/url/cross-tools/SPIRV-LLVM-Translator.gitinfo similarity index 100% rename from loongarch64/sources/url/cross-toolchains/x86_64-binutils.gitinfo rename to loongarch64/sources/url/cross-tools/SPIRV-LLVM-Translator.gitinfo diff --git a/loongarch64/sources/url/cross-tools/binutils b/loongarch64/sources/url/cross-tools/binutils index 9c49869d..6aa571b8 100644 --- a/loongarch64/sources/url/cross-tools/binutils +++ b/loongarch64/sources/url/cross-tools/binutils @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/binutils/binutils-2.40.tar.xz|binutils-2.40.tar.xz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/cross-tools/binutils_git b/loongarch64/sources/url/cross-tools/binutils_git new file mode 100644 index 00000000..239b0e60 --- /dev/null +++ b/loongarch64/sources/url/cross-tools/binutils_git @@ -0,0 +1 @@ +GIT|git://sourceware.org/git/binutils-gdb.git|binutils_git-2.41-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-toolchains/x86_64-gcc-glibc.gitinfo b/loongarch64/sources/url/cross-tools/binutils_git.gitinfo similarity index 100% rename from loongarch64/sources/url/cross-toolchains/x86_64-gcc-glibc.gitinfo rename to loongarch64/sources/url/cross-tools/binutils_git.gitinfo diff --git a/loongarch64/sources/url/cross-tools/clang_git b/loongarch64/sources/url/cross-tools/clang_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/cross-tools/clang_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-tools/clang_git.gitinfo b/loongarch64/sources/url/cross-tools/clang_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/cross-tools/clang_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/cross-tools/gcc b/loongarch64/sources/url/cross-tools/gcc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/cross-tools/gcc +++ b/loongarch64/sources/url/cross-tools/gcc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-tools/gcc_git b/loongarch64/sources/url/cross-tools/gcc_git new file mode 100644 index 00000000..e1aa5f4c --- /dev/null +++ b/loongarch64/sources/url/cross-tools/gcc_git @@ -0,0 +1 @@ +GIT|https://github.com/loongson/gcc.git|gcc_git-13.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-tools/gcc_git.gitinfo b/loongarch64/sources/url/cross-tools/gcc_git.gitinfo new file mode 100644 index 00000000..aa13572d --- /dev/null +++ b/loongarch64/sources/url/cross-tools/gcc_git.gitinfo @@ -0,0 +1 @@ +loongarch-gcc-vector||0 diff --git a/loongarch64/sources/url/cross-tools/gcc_git_nolibc b/loongarch64/sources/url/cross-tools/gcc_git_nolibc new file mode 100644 index 00000000..e1aa5f4c --- /dev/null +++ b/loongarch64/sources/url/cross-tools/gcc_git_nolibc @@ -0,0 +1 @@ +GIT|https://github.com/loongson/gcc.git|gcc_git-13.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-tools/gcc_git_nolibc.gitinfo b/loongarch64/sources/url/cross-tools/gcc_git_nolibc.gitinfo new file mode 100644 index 00000000..aa13572d --- /dev/null +++ b/loongarch64/sources/url/cross-tools/gcc_git_nolibc.gitinfo @@ -0,0 +1 @@ +loongarch-gcc-vector||0 diff --git a/loongarch64/sources/url/cross-tools/gcc_nolibc b/loongarch64/sources/url/cross-tools/gcc_nolibc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/cross-tools/gcc_nolibc +++ b/loongarch64/sources/url/cross-tools/gcc_nolibc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/cross-tools/lld_git b/loongarch64/sources/url/cross-tools/lld_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/cross-tools/lld_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-tools/lld_git.gitinfo b/loongarch64/sources/url/cross-tools/lld_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/cross-tools/lld_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/cross-tools/llvm-project_git b/loongarch64/sources/url/cross-tools/llvm-project_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/cross-tools/llvm-project_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-tools/llvm-project_git.gitinfo b/loongarch64/sources/url/cross-tools/llvm-project_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/cross-tools/llvm-project_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/cross-tools/ocaml b/loongarch64/sources/url/cross-tools/ocaml new file mode 100644 index 00000000..e1c2e7e4 --- /dev/null +++ b/loongarch64/sources/url/cross-tools/ocaml @@ -0,0 +1 @@ +URL|https://github.com/ocaml/ocaml/archive/5.0.0/ocaml-5.0.0.tar.gz|ocaml-5.0.0.tar.gz diff --git a/loongarch64/sources/url/cross-tools/qemu b/loongarch64/sources/url/cross-tools/qemu index 4e990aad..d3e8f847 100644 --- a/loongarch64/sources/url/cross-tools/qemu +++ b/loongarch64/sources/url/cross-tools/qemu @@ -1 +1 @@ -URL|https://download.qemu.org/qemu-8.0.3.tar.xz|qemu-8.0.3.tar.xz +GIT|https://github.com/qemu/qemu.git|qemu_git-8.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/cross-toolchains/x86_64-gcc.gitinfo b/loongarch64/sources/url/cross-tools/qemu.gitinfo similarity index 100% rename from loongarch64/sources/url/cross-toolchains/x86_64-gcc.gitinfo rename to loongarch64/sources/url/cross-tools/qemu.gitinfo diff --git a/loongarch64/sources/url/cross-tools/rustc b/loongarch64/sources/url/cross-tools/rustc index f6567145..372ff028 100644 --- a/loongarch64/sources/url/cross-tools/rustc +++ b/loongarch64/sources/url/cross-tools/rustc @@ -1 +1 @@ -URL|https://static.rust-lang.org/dist/rustc-1.70.0-src.tar.gz|rustc-1.70.0-src.tar.gz +URL|https://static.rust-lang.org/dist/rustc-1.71.0-src.tar.gz|rustc-1.71.0-src.tar.gz diff --git a/loongarch64/sources/url/desktop-app/firefox b/loongarch64/sources/url/desktop-app/firefox index 071a921a..5bb618da 100644 --- a/loongarch64/sources/url/desktop-app/firefox +++ b/loongarch64/sources/url/desktop-app/firefox @@ -1 +1 @@ -URL|https://archive.mozilla.org/pub/firefox/releases/115.0.2/source/firefox-115.0.2.source.tar.xz|firefox-115.0.2.source.tar.xz +URL|https://archive.mozilla.org/pub/firefox/releases/116.0/source/firefox-116.0.source.tar.xz|firefox-116.0.source.tar.xz diff --git a/loongarch64/sources/url/desktop-app/thunderbird b/loongarch64/sources/url/desktop-app/thunderbird index a2565dd9..006a0fb0 100644 --- a/loongarch64/sources/url/desktop-app/thunderbird +++ b/loongarch64/sources/url/desktop-app/thunderbird @@ -1 +1 @@ -URL|https://archive.mozilla.org/pub/thunderbird/releases/115.0/source/thunderbird-115.0.source.tar.xz|thunderbird-115.0.source.tar.xz +URL|https://archive.mozilla.org/pub/thunderbird/releases/115.0.1/source/thunderbird-115.0.1.source.tar.xz|thunderbird-115.0.1.source.tar.xz diff --git a/loongarch64/sources/url/host-tools/Markdown b/loongarch64/sources/url/host-tools/Markdown index dc39a947..062a04f2 100644 --- a/loongarch64/sources/url/host-tools/Markdown +++ b/loongarch64/sources/url/host-tools/Markdown @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/9d/80/cc67bfb7deb973d5ae662ee6454d2dafaa8f7c106feafd0d1572666ebde5/Markdown-3.4.3.tar.gz|Markdown-3.4.3.tar.gz +URL|https://files.pythonhosted.org/packages/87/2a/62841f4fb1fef5fa015ded48d02401cd95643ca03b6760b29437b62a04a4/Markdown-3.4.4.tar.gz|Markdown-3.4.4.tar.gz diff --git a/loongarch64/sources/url/host-tools/binutils b/loongarch64/sources/url/host-tools/binutils new file mode 100644 index 00000000..6aa571b8 --- /dev/null +++ b/loongarch64/sources/url/host-tools/binutils @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/host-tools/certifi b/loongarch64/sources/url/host-tools/certifi index 0fd72a21..618e1f34 100644 --- a/loongarch64/sources/url/host-tools/certifi +++ b/loongarch64/sources/url/host-tools/certifi @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/source/c/certifi/certifi-2023.5.7.tar.gz|certifi-2023.5.7.tar.gz +URL|https://files.pythonhosted.org/packages/source/c/certifi/certifi-2023.7.22.tar.gz|certifi-2023.7.22.tar.gz diff --git a/loongarch64/sources/url/host-tools/cmake b/loongarch64/sources/url/host-tools/cmake index 3abe3cf7..b15150ca 100644 --- a/loongarch64/sources/url/host-tools/cmake +++ b/loongarch64/sources/url/host-tools/cmake @@ -1 +1 @@ -URL|https://cmake.org/files/v3.26/cmake-3.26.4.tar.gz|cmake-3.26.4.tar.gz +URL|https://cmake.org/files/v3.27/cmake-3.27.1.tar.gz|cmake-3.27.1.tar.gz diff --git a/loongarch64/sources/url/host-tools/dune b/loongarch64/sources/url/host-tools/dune index 74c291d3..5e8b059f 100644 --- a/loongarch64/sources/url/host-tools/dune +++ b/loongarch64/sources/url/host-tools/dune @@ -1 +1 @@ -URL|https://github.com/ocaml/dune/archive/3.9.1/dune-3.9.1.tar.gz|dune-3.9.1.tar.gz +URL|https://github.com/ocaml/dune/archive/3.10.0/dune-3.10.0.tar.gz|dune-3.10.0.tar.gz diff --git a/loongarch64/sources/url/host-tools/file b/loongarch64/sources/url/host-tools/file index 1a9cd63b..e582f55f 100644 --- a/loongarch64/sources/url/host-tools/file +++ b/loongarch64/sources/url/host-tools/file @@ -1 +1 @@ -URL|https://astron.com/pub/file/file-5.44.tar.gz|file-5.44.tar.gz +URL|https://astron.com/pub/file/file-5.45.tar.gz|file-5.45.tar.gz diff --git a/loongarch64/sources/url/host-tools/gcc b/loongarch64/sources/url/host-tools/gcc new file mode 100644 index 00000000..cda0b0da --- /dev/null +++ b/loongarch64/sources/url/host-tools/gcc @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/host-tools/glean-parser b/loongarch64/sources/url/host-tools/glean-parser index 1c83db42..aac1c519 100644 --- a/loongarch64/sources/url/host-tools/glean-parser +++ b/loongarch64/sources/url/host-tools/glean-parser @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/source/g/glean-parser/glean_parser-7.2.1.tar.gz|glean_parser-7.2.1.tar.gz +URL|https://files.pythonhosted.org/packages/source/g/glean-parser/glean_parser-8.1.0.tar.gz|glean_parser-8.1.0.tar.gz diff --git a/loongarch64/sources/url/host-tools/glib b/loongarch64/sources/url/host-tools/glib index 5c69923f..d1f4ba2a 100644 --- a/loongarch64/sources/url/host-tools/glib +++ b/loongarch64/sources/url/host-tools/glib @@ -1 +1 @@ -URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.0.tar.xz|glib-2.77.0.tar.xz +URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.1.tar.xz|glib-2.77.1.tar.xz diff --git a/loongarch64/sources/url/host-tools/glslang b/loongarch64/sources/url/host-tools/glslang index 2cdf5b3b..81a4f22b 100644 --- a/loongarch64/sources/url/host-tools/glslang +++ b/loongarch64/sources/url/host-tools/glslang @@ -1 +1 @@ -URL|https://github.com/KhronosGroup/glslang/archive/12.2.0/glslang-12.2.0.tar.gz|glslang-12.2.0.tar.gz +URL|https://github.com/KhronosGroup/glslang/archive/12.3.1/glslang-12.3.1.tar.gz|glslang-12.3.1.tar.gz diff --git a/loongarch64/sources/url/host-tools/gmp b/loongarch64/sources/url/host-tools/gmp index b6d4218a..53d2d474 100644 --- a/loongarch64/sources/url/host-tools/gmp +++ b/loongarch64/sources/url/host-tools/gmp @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz|gmp-6.2.1.tar.xz +URL|https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz|gmp-6.3.0.tar.xz diff --git a/loongarch64/sources/url/host-tools/meson b/loongarch64/sources/url/host-tools/meson index 1a878b94..39ec8416 100644 --- a/loongarch64/sources/url/host-tools/meson +++ b/loongarch64/sources/url/host-tools/meson @@ -1 +1 @@ -URL|https://github.com/mesonbuild/meson/archive/1.1.1/meson-1.1.1.tar.gz|meson-1.1.1.tar.gz +URL|https://github.com/mesonbuild/meson/archive/1.2.0/meson-1.2.0.tar.gz|meson-1.2.0.tar.gz diff --git a/loongarch64/sources/url/host-tools/node b/loongarch64/sources/url/host-tools/node index 76e9f1de..57c98be1 100644 --- a/loongarch64/sources/url/host-tools/node +++ b/loongarch64/sources/url/host-tools/node @@ -1 +1 @@ -URL|https://github.com/nodejs/node/archive/v20.4.0/node-20.4.0.tar.gz|node-20.4.0.tar.gz +URL|https://github.com/nodejs/node/archive/v20.5.0/node-20.5.0.tar.gz|node-20.5.0.tar.gz diff --git a/loongarch64/sources/url/host-tools/pathspec b/loongarch64/sources/url/host-tools/pathspec index fc1e137c..2293636f 100644 --- a/loongarch64/sources/url/host-tools/pathspec +++ b/loongarch64/sources/url/host-tools/pathspec @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/source/p/pathspec/pathspec-0.11.1.tar.gz|pathspec-0.11.1.tar.gz +URL|https://files.pythonhosted.org/packages/source/p/pathspec/pathspec-0.11.2.tar.gz|pathspec-0.11.2.tar.gz diff --git a/loongarch64/sources/url/host-tools/pip b/loongarch64/sources/url/host-tools/pip index b3550676..34821196 100644 --- a/loongarch64/sources/url/host-tools/pip +++ b/loongarch64/sources/url/host-tools/pip @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/source/p/pip/pip-23.1.2.tar.gz|pip-23.1.2.tar.gz +URL|https://files.pythonhosted.org/packages/source/p/pip/pip-23.2.1.tar.gz|pip-23.2.1.tar.gz diff --git a/loongarch64/sources/url/host-tools/sphinx b/loongarch64/sources/url/host-tools/sphinx index 1cc68f8c..19dc3aab 100644 --- a/loongarch64/sources/url/host-tools/sphinx +++ b/loongarch64/sources/url/host-tools/sphinx @@ -1 +1 @@ -URL|https://github.com/sphinx-doc/sphinx/archive/v7.0.1/sphinx-7.0.1.tar.gz|sphinx-7.0.1.tar.gz +URL|https://github.com/sphinx-doc/sphinx/archive/v7.1.1/sphinx-7.1.1.tar.gz|sphinx-7.1.1.tar.gz diff --git a/loongarch64/sources/url/host-tools/wheel b/loongarch64/sources/url/host-tools/wheel index 4f36161f..fb277de0 100644 --- a/loongarch64/sources/url/host-tools/wheel +++ b/loongarch64/sources/url/host-tools/wheel @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/fc/ef/0335f7217dd1e8096a9e8383e1d472aa14717878ffe07c4772e68b6e8735/wheel-0.40.0.tar.gz|wheel-0.40.0.tar.gz +URL|https://files.pythonhosted.org/packages/ec/34/903929e15b2657335b2ce8723d92fc804d3569b7ac0f1f8877ed1a7b2024/wheel-0.41.0.tar.gz|wheel-0.41.0.tar.gz diff --git a/loongarch64/sources/url/host-tools/wine-tools b/loongarch64/sources/url/host-tools/wine-tools index eb39e49a..485d1ee5 100644 --- a/loongarch64/sources/url/host-tools/wine-tools +++ b/loongarch64/sources/url/host-tools/wine-tools @@ -1 +1 @@ -URL|https://dl.winehq.org/wine/source/8.x/wine-8.12.tar.xz|wine-8.12.tar.xz +URL|https://dl.winehq.org/wine/source/8.x/wine-8.13.tar.xz|wine-8.13.tar.xz diff --git a/loongarch64/sources/url/mingw_sysroot/mingw-glib b/loongarch64/sources/url/mingw_sysroot/mingw-glib index 5c69923f..d1f4ba2a 100644 --- a/loongarch64/sources/url/mingw_sysroot/mingw-glib +++ b/loongarch64/sources/url/mingw_sysroot/mingw-glib @@ -1 +1 @@ -URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.0.tar.xz|glib-2.77.0.tar.xz +URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.1.tar.xz|glib-2.77.1.tar.xz diff --git a/loongarch64/sources/url/mingw_sysroot/mingw-gmp b/loongarch64/sources/url/mingw_sysroot/mingw-gmp index b6d4218a..53d2d474 100644 --- a/loongarch64/sources/url/mingw_sysroot/mingw-gmp +++ b/loongarch64/sources/url/mingw_sysroot/mingw-gmp @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz|gmp-6.2.1.tar.xz +URL|https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz|gmp-6.3.0.tar.xz diff --git a/loongarch64/sources/url/mingw_sysroot/mingw-harfbuzz b/loongarch64/sources/url/mingw_sysroot/mingw-harfbuzz index 3105b88b..4a674c59 100644 --- a/loongarch64/sources/url/mingw_sysroot/mingw-harfbuzz +++ b/loongarch64/sources/url/mingw_sysroot/mingw-harfbuzz @@ -1 +1 @@ -URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.0.1/harfbuzz-8.0.1.tar.xz|harfbuzz-8.0.1.tar.xz +URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.1.0/harfbuzz-8.1.0.tar.xz|harfbuzz-8.1.0.tar.xz diff --git a/loongarch64/sources/url/simulate/qemu b/loongarch64/sources/url/simulate/qemu index 4e990aad..d3e8f847 100644 --- a/loongarch64/sources/url/simulate/qemu +++ b/loongarch64/sources/url/simulate/qemu @@ -1 +1 @@ -URL|https://download.qemu.org/qemu-8.0.3.tar.xz|qemu-8.0.3.tar.xz +GIT|https://github.com/qemu/qemu.git|qemu_git-8.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/target_base/systemd.gitinfo b/loongarch64/sources/url/simulate/qemu.gitinfo similarity index 100% rename from loongarch64/sources/url/target_base/systemd.gitinfo rename to loongarch64/sources/url/simulate/qemu.gitinfo diff --git a/loongarch64/sources/url/target_base/binutils b/loongarch64/sources/url/target_base/binutils index 9c49869d..6aa571b8 100644 --- a/loongarch64/sources/url/target_base/binutils +++ b/loongarch64/sources/url/target_base/binutils @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/binutils/binutils-2.40.tar.xz|binutils-2.40.tar.xz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/target_base/binutils_git b/loongarch64/sources/url/target_base/binutils_git new file mode 100644 index 00000000..239b0e60 --- /dev/null +++ b/loongarch64/sources/url/target_base/binutils_git @@ -0,0 +1 @@ +GIT|git://sourceware.org/git/binutils-gdb.git|binutils_git-2.41-default_git.tar.gz diff --git a/loongarch64/sources/url/toolchain/cross-x86_64-binutils.gitinfo b/loongarch64/sources/url/target_base/binutils_git.gitinfo similarity index 100% rename from loongarch64/sources/url/toolchain/cross-x86_64-binutils.gitinfo rename to loongarch64/sources/url/target_base/binutils_git.gitinfo diff --git a/loongarch64/sources/url/target_base/clang_git b/loongarch64/sources/url/target_base/clang_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/target_base/clang_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/target_base/clang_git.gitinfo b/loongarch64/sources/url/target_base/clang_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/target_base/clang_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/target_base/cmake b/loongarch64/sources/url/target_base/cmake index 3abe3cf7..b15150ca 100644 --- a/loongarch64/sources/url/target_base/cmake +++ b/loongarch64/sources/url/target_base/cmake @@ -1 +1 @@ -URL|https://cmake.org/files/v3.26/cmake-3.26.4.tar.gz|cmake-3.26.4.tar.gz +URL|https://cmake.org/files/v3.27/cmake-3.27.1.tar.gz|cmake-3.27.1.tar.gz diff --git a/loongarch64/sources/url/target_base/compiler-rt_git b/loongarch64/sources/url/target_base/compiler-rt_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/target_base/compiler-rt_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/target_base/compiler-rt_git.gitinfo b/loongarch64/sources/url/target_base/compiler-rt_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/target_base/compiler-rt_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/target_base/curl b/loongarch64/sources/url/target_base/curl index bdff2032..fb4ffa83 100644 --- a/loongarch64/sources/url/target_base/curl +++ b/loongarch64/sources/url/target_base/curl @@ -1 +1 @@ -URL|https://curl.se/download/curl-8.1.2.tar.xz|curl-8.1.2.tar.xz +URL|https://curl.se/download/curl-8.2.1.tar.xz|curl-8.2.1.tar.xz diff --git a/loongarch64/sources/url/target_base/dhcpcd b/loongarch64/sources/url/target_base/dhcpcd index 38925cbe..944546a4 100644 --- a/loongarch64/sources/url/target_base/dhcpcd +++ b/loongarch64/sources/url/target_base/dhcpcd @@ -1 +1 @@ -URL|https://github.com/NetworkConfiguration/dhcpcd/archive/v10.0.1/dhcpcd-10.0.1.tar.gz|dhcpcd-10.0.1.tar.gz +URL|https://github.com/NetworkConfiguration/dhcpcd/archive/v10.0.2/dhcpcd-10.0.2.tar.gz|dhcpcd-10.0.2.tar.gz diff --git a/loongarch64/sources/url/target_base/file b/loongarch64/sources/url/target_base/file index 1a9cd63b..e582f55f 100644 --- a/loongarch64/sources/url/target_base/file +++ b/loongarch64/sources/url/target_base/file @@ -1 +1 @@ -URL|https://astron.com/pub/file/file-5.44.tar.gz|file-5.44.tar.gz +URL|https://astron.com/pub/file/file-5.45.tar.gz|file-5.45.tar.gz diff --git a/loongarch64/sources/url/target_base/gcc b/loongarch64/sources/url/target_base/gcc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/target_base/gcc +++ b/loongarch64/sources/url/target_base/gcc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/target_base/gcc_git b/loongarch64/sources/url/target_base/gcc_git new file mode 100644 index 00000000..e1aa5f4c --- /dev/null +++ b/loongarch64/sources/url/target_base/gcc_git @@ -0,0 +1 @@ +GIT|https://github.com/loongson/gcc.git|gcc_git-13.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/target_base/gcc_git.gitinfo b/loongarch64/sources/url/target_base/gcc_git.gitinfo new file mode 100644 index 00000000..aa13572d --- /dev/null +++ b/loongarch64/sources/url/target_base/gcc_git.gitinfo @@ -0,0 +1 @@ +loongarch-gcc-vector||0 diff --git a/loongarch64/sources/url/target_base/glib b/loongarch64/sources/url/target_base/glib index 5c69923f..d1f4ba2a 100644 --- a/loongarch64/sources/url/target_base/glib +++ b/loongarch64/sources/url/target_base/glib @@ -1 +1 @@ -URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.0.tar.xz|glib-2.77.0.tar.xz +URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.1.tar.xz|glib-2.77.1.tar.xz diff --git a/loongarch64/sources/url/target_base/glibc b/loongarch64/sources/url/target_base/glibc index 94985a26..0454783d 100644 --- a/loongarch64/sources/url/target_base/glibc +++ b/loongarch64/sources/url/target_base/glibc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/glibc/glibc-2.37.tar.xz|glibc-2.37.tar.xz +URL|https://ftp.gnu.org/gnu/glibc/glibc-2.38.tar.xz|glibc-2.38.tar.xz diff --git a/loongarch64/sources/url/target_base/glibc_localedata b/loongarch64/sources/url/target_base/glibc_localedata index 94985a26..0454783d 100644 --- a/loongarch64/sources/url/target_base/glibc_localedata +++ b/loongarch64/sources/url/target_base/glibc_localedata @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/glibc/glibc-2.37.tar.xz|glibc-2.37.tar.xz +URL|https://ftp.gnu.org/gnu/glibc/glibc-2.38.tar.xz|glibc-2.38.tar.xz diff --git a/loongarch64/sources/url/target_base/gmp b/loongarch64/sources/url/target_base/gmp index b6d4218a..53d2d474 100644 --- a/loongarch64/sources/url/target_base/gmp +++ b/loongarch64/sources/url/target_base/gmp @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz|gmp-6.2.1.tar.xz +URL|https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz|gmp-6.3.0.tar.xz diff --git a/loongarch64/sources/url/target_base/harfbuzz b/loongarch64/sources/url/target_base/harfbuzz index 3105b88b..4a674c59 100644 --- a/loongarch64/sources/url/target_base/harfbuzz +++ b/loongarch64/sources/url/target_base/harfbuzz @@ -1 +1 @@ -URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.0.1/harfbuzz-8.0.1.tar.xz|harfbuzz-8.0.1.tar.xz +URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.1.0/harfbuzz-8.1.0.tar.xz|harfbuzz-8.1.0.tar.xz diff --git a/loongarch64/sources/url/target_base/harfbuzz-pre b/loongarch64/sources/url/target_base/harfbuzz-pre index 3105b88b..4a674c59 100644 --- a/loongarch64/sources/url/target_base/harfbuzz-pre +++ b/loongarch64/sources/url/target_base/harfbuzz-pre @@ -1 +1 @@ -URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.0.1/harfbuzz-8.0.1.tar.xz|harfbuzz-8.0.1.tar.xz +URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.1.0/harfbuzz-8.1.0.tar.xz|harfbuzz-8.1.0.tar.xz diff --git a/loongarch64/sources/url/target_base/libxcrypt b/loongarch64/sources/url/target_base/libxcrypt new file mode 100644 index 00000000..bf22d390 --- /dev/null +++ b/loongarch64/sources/url/target_base/libxcrypt @@ -0,0 +1 @@ +URL|https://github.com/besser82/libxcrypt/releases/download/v4.4.36/libxcrypt-4.4.36.tar.xz|libxcrypt-4.4.36.tar.xz diff --git a/loongarch64/sources/url/target_base/linux-header b/loongarch64/sources/url/target_base/linux-header index 41dc239e..6e9f410c 100644 --- a/loongarch64/sources/url/target_base/linux-header +++ b/loongarch64/sources/url/target_base/linux-header @@ -1 +1 @@ -URL|https://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/linux-6.4.3.tar.xz|linux-6.4.3.tar.xz +GIT|https://github.com/chenhuacai/linux.git|linux_git-6.5_git.tar.gz diff --git a/loongarch64/sources/url/target_base/linux-header.gitinfo b/loongarch64/sources/url/target_base/linux-header.gitinfo new file mode 100644 index 00000000..521eb3fd --- /dev/null +++ b/loongarch64/sources/url/target_base/linux-header.gitinfo @@ -0,0 +1 @@ +loongarch-next||0 diff --git a/loongarch64/sources/url/target_base/lld b/loongarch64/sources/url/target_base/lld new file mode 100644 index 00000000..f2baebcf --- /dev/null +++ b/loongarch64/sources/url/target_base/lld @@ -0,0 +1 @@ +URL|https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.6/llvm-project-16.0.6.src.tar.xz|llvm-project-16.0.6.src.tar.xz diff --git a/loongarch64/sources/url/target_base/lld_git b/loongarch64/sources/url/target_base/lld_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/target_base/lld_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/target_base/lld_git.gitinfo b/loongarch64/sources/url/target_base/lld_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/target_base/lld_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/target_base/llvm-project_git b/loongarch64/sources/url/target_base/llvm-project_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/target_base/llvm-project_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/target_base/llvm-project_git.gitinfo b/loongarch64/sources/url/target_base/llvm-project_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/target_base/llvm-project_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/target_base/llvm_runtimes b/loongarch64/sources/url/target_base/llvm_runtimes new file mode 100644 index 00000000..f2baebcf --- /dev/null +++ b/loongarch64/sources/url/target_base/llvm_runtimes @@ -0,0 +1 @@ +URL|https://github.com/llvm/llvm-project/releases/download/llvmorg-16.0.6/llvm-project-16.0.6.src.tar.xz|llvm-project-16.0.6.src.tar.xz diff --git a/loongarch64/sources/url/target_base/llvm_runtimes_git b/loongarch64/sources/url/target_base/llvm_runtimes_git new file mode 100644 index 00000000..d969b609 --- /dev/null +++ b/loongarch64/sources/url/target_base/llvm_runtimes_git @@ -0,0 +1 @@ +GIT|https://github.com/llvm/llvm-project.git|llvm-project_git-main_git-default_git.tar.gz diff --git a/loongarch64/sources/url/target_base/llvm_runtimes_git.gitinfo b/loongarch64/sources/url/target_base/llvm_runtimes_git.gitinfo new file mode 100644 index 00000000..af19fcfe --- /dev/null +++ b/loongarch64/sources/url/target_base/llvm_runtimes_git.gitinfo @@ -0,0 +1 @@ +main||0 diff --git a/loongarch64/sources/url/target_base/meson b/loongarch64/sources/url/target_base/meson index 1a878b94..39ec8416 100644 --- a/loongarch64/sources/url/target_base/meson +++ b/loongarch64/sources/url/target_base/meson @@ -1 +1 @@ -URL|https://github.com/mesonbuild/meson/archive/1.1.1/meson-1.1.1.tar.gz|meson-1.1.1.tar.gz +URL|https://github.com/mesonbuild/meson/archive/1.2.0/meson-1.2.0.tar.gz|meson-1.2.0.tar.gz diff --git a/loongarch64/sources/url/target_base/nss b/loongarch64/sources/url/target_base/nss index 89ac3e75..894f0143 100644 --- a/loongarch64/sources/url/target_base/nss +++ b/loongarch64/sources/url/target_base/nss @@ -1 +1 @@ -URL|https://archive.mozilla.org/pub/security/nss/releases/NSS_3_91_RTM/src/nss-3.91.tar.gz|nss-3.91.tar.gz +URL|https://archive.mozilla.org/pub/security/nss/releases/NSS_3_92_RTM/src/nss-3.92.tar.gz|nss-3.92.tar.gz diff --git a/loongarch64/sources/url/target_base/openssh b/loongarch64/sources/url/target_base/openssh index e61d7a91..27278501 100644 --- a/loongarch64/sources/url/target_base/openssh +++ b/loongarch64/sources/url/target_base/openssh @@ -1 +1 @@ -URL|https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.3p1.tar.gz|openssh-9.3p1.tar.gz +URL|https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.3p2.tar.gz|openssh-9.3p2.tar.gz diff --git a/loongarch64/sources/url/target_base/pip b/loongarch64/sources/url/target_base/pip index b3550676..34821196 100644 --- a/loongarch64/sources/url/target_base/pip +++ b/loongarch64/sources/url/target_base/pip @@ -1 +1 @@ -URL|https://files.pythonhosted.org/packages/source/p/pip/pip-23.1.2.tar.gz|pip-23.1.2.tar.gz +URL|https://files.pythonhosted.org/packages/source/p/pip/pip-23.2.1.tar.gz|pip-23.2.1.tar.gz diff --git a/loongarch64/sources/url/target_base/rustc b/loongarch64/sources/url/target_base/rustc index f6567145..372ff028 100644 --- a/loongarch64/sources/url/target_base/rustc +++ b/loongarch64/sources/url/target_base/rustc @@ -1 +1 @@ -URL|https://static.rust-lang.org/dist/rustc-1.70.0-src.tar.gz|rustc-1.70.0-src.tar.gz +URL|https://static.rust-lang.org/dist/rustc-1.71.0-src.tar.gz|rustc-1.71.0-src.tar.gz diff --git a/loongarch64/sources/url/target_base/sudo b/loongarch64/sources/url/target_base/sudo index 6169e580..78766a35 100644 --- a/loongarch64/sources/url/target_base/sudo +++ b/loongarch64/sources/url/target_base/sudo @@ -1 +1 @@ -URL|https://www.sudo.ws/dist/sudo-1.9.14p1.tar.gz|sudo-1.9.14p1.tar.gz +URL|https://www.sudo.ws/dist/sudo-1.9.14p3.tar.gz|sudo-1.9.14p3.tar.gz diff --git a/loongarch64/sources/url/target_base/systemd b/loongarch64/sources/url/target_base/systemd index 465737f6..5606249a 100644 --- a/loongarch64/sources/url/target_base/systemd +++ b/loongarch64/sources/url/target_base/systemd @@ -1 +1 @@ -GIT|https://github.com/systemd/systemd.git|systemd-254-default_git.tar.gz +URL|https://github.com/systemd/systemd/archive/v254/systemd-254.tar.gz|systemd-254.tar.gz diff --git a/loongarch64/sources/url/target_base/tar b/loongarch64/sources/url/target_base/tar index ff775f69..574f5d06 100644 --- a/loongarch64/sources/url/target_base/tar +++ b/loongarch64/sources/url/target_base/tar @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/tar/tar-1.34.tar.xz|tar-1.34.tar.xz +URL|https://ftp.gnu.org/gnu/tar/tar-1.35.tar.xz|tar-1.35.tar.xz diff --git a/loongarch64/sources/url/target_base/unrar b/loongarch64/sources/url/target_base/unrar index e69c8e35..56c035dc 100644 --- a/loongarch64/sources/url/target_base/unrar +++ b/loongarch64/sources/url/target_base/unrar @@ -1 +1 @@ -URL|https://www.rarlab.com/rar/unrarsrc-6.2.8.tar.gz|unrarsrc-6.2.8.tar.gz +URL|https://www.rarlab.com/rar/unrarsrc-6.2.9.tar.gz|unrarsrc-6.2.9.tar.gz diff --git a/loongarch64/sources/url/target_base/xfsprogs b/loongarch64/sources/url/target_base/xfsprogs index f1a2e32c..c5b5448f 100644 --- a/loongarch64/sources/url/target_base/xfsprogs +++ b/loongarch64/sources/url/target_base/xfsprogs @@ -1 +1 @@ -URL|https://mirrors.edge.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.3.0.tar.xz|xfsprogs-6.3.0.tar.xz +URL|https://mirrors.edge.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-6.4.0.tar.xz|xfsprogs-6.4.0.tar.xz diff --git a/loongarch64/sources/url/toolchain/binutils b/loongarch64/sources/url/toolchain/binutils new file mode 100644 index 00000000..6aa571b8 --- /dev/null +++ b/loongarch64/sources/url/toolchain/binutils @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/toolchain/binutils_git b/loongarch64/sources/url/toolchain/binutils_git new file mode 100644 index 00000000..239b0e60 --- /dev/null +++ b/loongarch64/sources/url/toolchain/binutils_git @@ -0,0 +1 @@ +GIT|git://sourceware.org/git/binutils-gdb.git|binutils_git-2.41-default_git.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/systemd.gitinfo b/loongarch64/sources/url/toolchain/binutils_git.gitinfo similarity index 100% rename from loongarch64/sources/url/wine_runtime/systemd.gitinfo rename to loongarch64/sources/url/toolchain/binutils_git.gitinfo diff --git a/loongarch64/sources/url/toolchain/cross-binutils b/loongarch64/sources/url/toolchain/cross-binutils index 9c49869d..6aa571b8 100644 --- a/loongarch64/sources/url/toolchain/cross-binutils +++ b/loongarch64/sources/url/toolchain/cross-binutils @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/binutils/binutils-2.40.tar.xz|binutils-2.40.tar.xz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/toolchain/cross-gcc b/loongarch64/sources/url/toolchain/cross-gcc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/toolchain/cross-gcc +++ b/loongarch64/sources/url/toolchain/cross-gcc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/toolchain/cross-gcc-glibc b/loongarch64/sources/url/toolchain/cross-gcc-glibc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/toolchain/cross-gcc-glibc +++ b/loongarch64/sources/url/toolchain/cross-gcc-glibc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/toolchain/cross-gcc_git b/loongarch64/sources/url/toolchain/cross-gcc_git index e81ec31d..e1aa5f4c 100644 --- a/loongarch64/sources/url/toolchain/cross-gcc_git +++ b/loongarch64/sources/url/toolchain/cross-gcc_git @@ -1 +1 @@ -GIT|git://sourceware.org/git/gcc.git|gcc_git-14.0.0-default_git.tar.gz +GIT|https://github.com/loongson/gcc.git|gcc_git-13.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/toolchain/cross-gcc_git.gitinfo b/loongarch64/sources/url/toolchain/cross-gcc_git.gitinfo index 3af96a69..aa13572d 100644 --- a/loongarch64/sources/url/toolchain/cross-gcc_git.gitinfo +++ b/loongarch64/sources/url/toolchain/cross-gcc_git.gitinfo @@ -1 +1 @@ -||0 +loongarch-gcc-vector||0 diff --git a/loongarch64/sources/url/toolchain/cross-mingw-binutils b/loongarch64/sources/url/toolchain/cross-mingw-binutils index 9c49869d..6aa571b8 100644 --- a/loongarch64/sources/url/toolchain/cross-mingw-binutils +++ b/loongarch64/sources/url/toolchain/cross-mingw-binutils @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/binutils/binutils-2.40.tar.xz|binutils-2.40.tar.xz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/toolchain/cross-mingw-gcc b/loongarch64/sources/url/toolchain/cross-mingw-gcc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/toolchain/cross-mingw-gcc +++ b/loongarch64/sources/url/toolchain/cross-mingw-gcc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/toolchain/cross-mingw-gcc-glibc b/loongarch64/sources/url/toolchain/cross-mingw-gcc-glibc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/toolchain/cross-mingw-gcc-glibc +++ b/loongarch64/sources/url/toolchain/cross-mingw-gcc-glibc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/toolchain/cross-x86_64-binutils b/loongarch64/sources/url/toolchain/cross-x86_64-binutils index 239b0e60..6aa571b8 100644 --- a/loongarch64/sources/url/toolchain/cross-x86_64-binutils +++ b/loongarch64/sources/url/toolchain/cross-x86_64-binutils @@ -1 +1 @@ -GIT|git://sourceware.org/git/binutils-gdb.git|binutils_git-2.41-default_git.tar.gz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/toolchain/cross-x86_64-gcc b/loongarch64/sources/url/toolchain/cross-x86_64-gcc index e81ec31d..e1aa5f4c 100644 --- a/loongarch64/sources/url/toolchain/cross-x86_64-gcc +++ b/loongarch64/sources/url/toolchain/cross-x86_64-gcc @@ -1 +1 @@ -GIT|git://sourceware.org/git/gcc.git|gcc_git-14.0.0-default_git.tar.gz +GIT|https://github.com/loongson/gcc.git|gcc_git-13.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc b/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc index e81ec31d..e1aa5f4c 100644 --- a/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc +++ b/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc @@ -1 +1 @@ -GIT|git://sourceware.org/git/gcc.git|gcc_git-14.0.0-default_git.tar.gz +GIT|https://github.com/loongson/gcc.git|gcc_git-13.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc.gitinfo b/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc.gitinfo index 3af96a69..aa13572d 100644 --- a/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc.gitinfo +++ b/loongarch64/sources/url/toolchain/cross-x86_64-gcc-glibc.gitinfo @@ -1 +1 @@ -||0 +loongarch-gcc-vector||0 diff --git a/loongarch64/sources/url/toolchain/cross-x86_64-gcc.gitinfo b/loongarch64/sources/url/toolchain/cross-x86_64-gcc.gitinfo index 3af96a69..aa13572d 100644 --- a/loongarch64/sources/url/toolchain/cross-x86_64-gcc.gitinfo +++ b/loongarch64/sources/url/toolchain/cross-x86_64-gcc.gitinfo @@ -1 +1 @@ -||0 +loongarch-gcc-vector||0 diff --git a/loongarch64/sources/url/toolchain/dist-cross-rustc b/loongarch64/sources/url/toolchain/dist-cross-rustc index f6567145..372ff028 100644 --- a/loongarch64/sources/url/toolchain/dist-cross-rustc +++ b/loongarch64/sources/url/toolchain/dist-cross-rustc @@ -1 +1 @@ -URL|https://static.rust-lang.org/dist/rustc-1.70.0-src.tar.gz|rustc-1.70.0-src.tar.gz +URL|https://static.rust-lang.org/dist/rustc-1.71.0-src.tar.gz|rustc-1.71.0-src.tar.gz diff --git a/loongarch64/sources/url/toolchain/gcc b/loongarch64/sources/url/toolchain/gcc new file mode 100644 index 00000000..cda0b0da --- /dev/null +++ b/loongarch64/sources/url/toolchain/gcc @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/toolchain/gcc-glibc b/loongarch64/sources/url/toolchain/gcc-glibc new file mode 100644 index 00000000..cda0b0da --- /dev/null +++ b/loongarch64/sources/url/toolchain/gcc-glibc @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/toolchain/gcc_git b/loongarch64/sources/url/toolchain/gcc_git new file mode 100644 index 00000000..e1aa5f4c --- /dev/null +++ b/loongarch64/sources/url/toolchain/gcc_git @@ -0,0 +1 @@ +GIT|https://github.com/loongson/gcc.git|gcc_git-13.1.0-default_git.tar.gz diff --git a/loongarch64/sources/url/toolchain/gcc_git.gitinfo b/loongarch64/sources/url/toolchain/gcc_git.gitinfo new file mode 100644 index 00000000..aa13572d --- /dev/null +++ b/loongarch64/sources/url/toolchain/gcc_git.gitinfo @@ -0,0 +1 @@ +loongarch-gcc-vector||0 diff --git a/loongarch64/sources/url/toolchain/glibc b/loongarch64/sources/url/toolchain/glibc new file mode 100644 index 00000000..0454783d --- /dev/null +++ b/loongarch64/sources/url/toolchain/glibc @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/glibc/glibc-2.38.tar.xz|glibc-2.38.tar.xz diff --git a/loongarch64/sources/url/toolchain/linux-header b/loongarch64/sources/url/toolchain/linux-header new file mode 100644 index 00000000..706a991a --- /dev/null +++ b/loongarch64/sources/url/toolchain/linux-header @@ -0,0 +1 @@ +URL|https://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/linux-6.4.7.tar.xz|linux-6.4.7.tar.xz diff --git a/loongarch64/sources/url/toolchain/zlib b/loongarch64/sources/url/toolchain/zlib new file mode 100644 index 00000000..6f32385b --- /dev/null +++ b/loongarch64/sources/url/toolchain/zlib @@ -0,0 +1 @@ +URL|https://zlib.net/zlib-1.2.13.tar.xz|zlib-1.2.13.tar.xz diff --git a/loongarch64/sources/url/toolchain/zstd b/loongarch64/sources/url/toolchain/zstd new file mode 100644 index 00000000..fe6e689d --- /dev/null +++ b/loongarch64/sources/url/toolchain/zstd @@ -0,0 +1 @@ +URL|https://github.com/facebook/zstd/releases/download/v1.5.5/zstd-1.5.5.tar.gz|zstd-1.5.5.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/Vulkan-Headers b/loongarch64/sources/url/wine_runtime/Vulkan-Headers deleted file mode 100644 index d107df28..00000000 --- a/loongarch64/sources/url/wine_runtime/Vulkan-Headers +++ /dev/null @@ -1 +0,0 @@ -URL|https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.3.257/Vulkan-Headers-1.3.257.tar.gz|Vulkan-Headers-1.3.257.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/Vulkan-Loader b/loongarch64/sources/url/wine_runtime/Vulkan-Loader deleted file mode 100644 index 65bc5b35..00000000 --- a/loongarch64/sources/url/wine_runtime/Vulkan-Loader +++ /dev/null @@ -1 +0,0 @@ -URL|https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.3.257/Vulkan-Loader-1.3.257.tar.gz|Vulkan-Loader-1.3.257.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/alsa-lib b/loongarch64/sources/url/wine_runtime/alsa-lib deleted file mode 100644 index 953c674d..00000000 --- a/loongarch64/sources/url/wine_runtime/alsa-lib +++ /dev/null @@ -1 +0,0 @@ -URL|https://www.alsa-project.org/files/pub/lib/alsa-lib-1.2.9.tar.bz2|alsa-lib-1.2.9.tar.bz2 diff --git a/loongarch64/sources/url/wine_runtime/alsa-oss b/loongarch64/sources/url/wine_runtime/alsa-oss deleted file mode 100644 index bbfbf488..00000000 --- a/loongarch64/sources/url/wine_runtime/alsa-oss +++ /dev/null @@ -1 +0,0 @@ -URL|https://www.alsa-project.org/files/pub/oss-lib/alsa-oss-1.1.8.tar.bz2|alsa-oss-1.1.8.tar.bz2 diff --git a/loongarch64/sources/url/wine_runtime/bash b/loongarch64/sources/url/wine_runtime/bash new file mode 100644 index 00000000..00084b3e --- /dev/null +++ b/loongarch64/sources/url/wine_runtime/bash @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/bash/bash-5.2.15.tar.gz|bash-5.2.15.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/binutils b/loongarch64/sources/url/wine_runtime/binutils index 9c49869d..6aa571b8 100644 --- a/loongarch64/sources/url/wine_runtime/binutils +++ b/loongarch64/sources/url/wine_runtime/binutils @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/binutils/binutils-2.40.tar.xz|binutils-2.40.tar.xz +URL|https://ftp.gnu.org/gnu/binutils/binutils-2.41.tar.xz|binutils-2.41.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/coreutils b/loongarch64/sources/url/wine_runtime/coreutils new file mode 100644 index 00000000..d5ce4f3e --- /dev/null +++ b/loongarch64/sources/url/wine_runtime/coreutils @@ -0,0 +1 @@ +URL|https://ftp.gnu.org/gnu/coreutils/coreutils-9.3.tar.xz|coreutils-9.3.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/gcc b/loongarch64/sources/url/wine_runtime/gcc index b9ae07e3..cda0b0da 100644 --- a/loongarch64/sources/url/wine_runtime/gcc +++ b/loongarch64/sources/url/wine_runtime/gcc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.xz|gcc-13.1.0.tar.xz +URL|https://ftp.gnu.org/gnu/gcc/gcc-13.2.0/gcc-13.2.0.tar.xz|gcc-13.2.0.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/glib b/loongarch64/sources/url/wine_runtime/glib index 5c69923f..d1f4ba2a 100644 --- a/loongarch64/sources/url/wine_runtime/glib +++ b/loongarch64/sources/url/wine_runtime/glib @@ -1 +1 @@ -URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.0.tar.xz|glib-2.77.0.tar.xz +URL|https://download.gnome.org/sources/glib/2.77/glib-2.77.1.tar.xz|glib-2.77.1.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/glibc b/loongarch64/sources/url/wine_runtime/glibc index 94985a26..0454783d 100644 --- a/loongarch64/sources/url/wine_runtime/glibc +++ b/loongarch64/sources/url/wine_runtime/glibc @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/glibc/glibc-2.37.tar.xz|glibc-2.37.tar.xz +URL|https://ftp.gnu.org/gnu/glibc/glibc-2.38.tar.xz|glibc-2.38.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/gmp b/loongarch64/sources/url/wine_runtime/gmp index b6d4218a..53d2d474 100644 --- a/loongarch64/sources/url/wine_runtime/gmp +++ b/loongarch64/sources/url/wine_runtime/gmp @@ -1 +1 @@ -URL|https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz|gmp-6.2.1.tar.xz +URL|https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz|gmp-6.3.0.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/gst-plugins-base b/loongarch64/sources/url/wine_runtime/gst-plugins-base index a22e3940..9540635d 100644 --- a/loongarch64/sources/url/wine_runtime/gst-plugins-base +++ b/loongarch64/sources/url/wine_runtime/gst-plugins-base @@ -1 +1 @@ -URL|https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.22.4.tar.xz|gst-plugins-base-1.22.4.tar.xz +URL|https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.22.5.tar.xz|gst-plugins-base-1.22.5.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/gstreamer b/loongarch64/sources/url/wine_runtime/gstreamer index 8dac8c2f..ab69da27 100644 --- a/loongarch64/sources/url/wine_runtime/gstreamer +++ b/loongarch64/sources/url/wine_runtime/gstreamer @@ -1 +1 @@ -URL|https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.22.4.tar.xz|gstreamer-1.22.4.tar.xz +URL|https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.22.5.tar.xz|gstreamer-1.22.5.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/harfbuzz b/loongarch64/sources/url/wine_runtime/harfbuzz index 3105b88b..4a674c59 100644 --- a/loongarch64/sources/url/wine_runtime/harfbuzz +++ b/loongarch64/sources/url/wine_runtime/harfbuzz @@ -1 +1 @@ -URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.0.1/harfbuzz-8.0.1.tar.xz|harfbuzz-8.0.1.tar.xz +URL|https://github.com/harfbuzz/harfbuzz/releases/download/8.1.0/harfbuzz-8.1.0.tar.xz|harfbuzz-8.1.0.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/libarchive b/loongarch64/sources/url/wine_runtime/libarchive index 1cc67f0b..f78289db 100644 --- a/loongarch64/sources/url/wine_runtime/libarchive +++ b/loongarch64/sources/url/wine_runtime/libarchive @@ -1 +1 @@ -URL|https://github.com/libarchive/libarchive/releases/download/v3.6.2/libarchive-3.6.2.tar.xz|libarchive-3.6.2.tar.xz +URL|https://github.com/libarchive/libarchive/releases/download/v3.7.1/libarchive-3.7.1.tar.xz|libarchive-3.7.1.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/libcapi20-3 b/loongarch64/sources/url/wine_runtime/libcapi20-3 deleted file mode 100644 index b43902cc..00000000 --- a/loongarch64/sources/url/wine_runtime/libcapi20-3 +++ /dev/null @@ -1 +0,0 @@ -URL|https://ftp.debian.org/debian/pool/main/libc/libcapi20-3/libcapi20-3_3.27.orig.tar.bz2|libcapi20-3_3.27.orig.tar.bz2 diff --git a/loongarch64/sources/url/wine_runtime/linux-header b/loongarch64/sources/url/wine_runtime/linux-header index 41dc239e..706a991a 100644 --- a/loongarch64/sources/url/wine_runtime/linux-header +++ b/loongarch64/sources/url/wine_runtime/linux-header @@ -1 +1 @@ -URL|https://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/linux-6.4.3.tar.xz|linux-6.4.3.tar.xz +URL|https://mirrors.edge.kernel.org/pub/linux/kernel/v6.x/linux-6.4.7.tar.xz|linux-6.4.7.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/mesa b/loongarch64/sources/url/wine_runtime/mesa index 7f685872..dd3a2cfd 100644 --- a/loongarch64/sources/url/wine_runtime/mesa +++ b/loongarch64/sources/url/wine_runtime/mesa @@ -1 +1 @@ -URL|https://archive.mesa3d.org/mesa-23.1.3.tar.xz|mesa-23.1.3.tar.xz +URL|https://archive.mesa3d.org/mesa-23.2.0.tar.xz|mesa-23.2.0.tar.xz diff --git a/loongarch64/sources/url/wine_runtime/pcsc-lite b/loongarch64/sources/url/wine_runtime/pcsc-lite deleted file mode 100644 index 0fe8e4f0..00000000 --- a/loongarch64/sources/url/wine_runtime/pcsc-lite +++ /dev/null @@ -1 +0,0 @@ -URL|https://pcsclite.apdu.fr/files/pcsc-lite-2.0.0.tar.bz2|pcsc-lite-2.0.0.tar.bz2 diff --git a/loongarch64/sources/url/wine_runtime/samba b/loongarch64/sources/url/wine_runtime/samba index c36339d9..e2de632d 100644 --- a/loongarch64/sources/url/wine_runtime/samba +++ b/loongarch64/sources/url/wine_runtime/samba @@ -1 +1 @@ -URL|https://download.samba.org/pub/samba/stable/samba-4.18.4.tar.gz|samba-4.18.4.tar.gz +URL|https://download.samba.org/pub/samba/stable/samba-4.18.5.tar.gz|samba-4.18.5.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/sane-backends b/loongarch64/sources/url/wine_runtime/sane-backends deleted file mode 100644 index d6542c6d..00000000 --- a/loongarch64/sources/url/wine_runtime/sane-backends +++ /dev/null @@ -1 +0,0 @@ -URL|https://gitlab.com/sane-project/backends/-/archive/1.2.1/sane-backends-1.2.1.tar.gz|sane-backends-1.2.1.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/systemd b/loongarch64/sources/url/wine_runtime/systemd index 465737f6..5606249a 100644 --- a/loongarch64/sources/url/wine_runtime/systemd +++ b/loongarch64/sources/url/wine_runtime/systemd @@ -1 +1 @@ -GIT|https://github.com/systemd/systemd.git|systemd-254-default_git.tar.gz +URL|https://github.com/systemd/systemd/archive/v254/systemd-254.tar.gz|systemd-254.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/systemd_pre b/loongarch64/sources/url/wine_runtime/systemd_pre index 465737f6..5606249a 100644 --- a/loongarch64/sources/url/wine_runtime/systemd_pre +++ b/loongarch64/sources/url/wine_runtime/systemd_pre @@ -1 +1 @@ -GIT|https://github.com/systemd/systemd.git|systemd-254-default_git.tar.gz +URL|https://github.com/systemd/systemd/archive/v254/systemd-254.tar.gz|systemd-254.tar.gz diff --git a/loongarch64/sources/url/wine_runtime/systemd_pre.gitinfo b/loongarch64/sources/url/wine_runtime/systemd_pre.gitinfo deleted file mode 100644 index 3af96a69..00000000 --- a/loongarch64/sources/url/wine_runtime/systemd_pre.gitinfo +++ /dev/null @@ -1 +0,0 @@ -||0 diff --git a/loongarch64/sources/url/wine_runtime/v4l-utils b/loongarch64/sources/url/wine_runtime/v4l-utils deleted file mode 100644 index a025bc0f..00000000 --- a/loongarch64/sources/url/wine_runtime/v4l-utils +++ /dev/null @@ -1 +0,0 @@ -URL|https://www.linuxtv.org/downloads/v4l-utils/v4l-utils-1.24.1.tar.bz2|v4l-utils-1.24.1.tar.bz2 diff --git a/loongarch64/sources/url/wine_runtime/wine b/loongarch64/sources/url/wine_runtime/wine index eb39e49a..485d1ee5 100644 --- a/loongarch64/sources/url/wine_runtime/wine +++ b/loongarch64/sources/url/wine_runtime/wine @@ -1 +1 @@ -URL|https://dl.winehq.org/wine/source/8.x/wine-8.12.tar.xz|wine-8.12.tar.xz +URL|https://dl.winehq.org/wine/source/8.x/wine-8.13.tar.xz|wine-8.13.tar.xz diff --git a/loongarch64/step b/loongarch64/step index 88d1302c..1f5c15a0 100644 --- a/loongarch64/step +++ b/loongarch64/step @@ -1,16 +1,23 @@ %step/target_base/make_directory| %step/host-tools/automake| -%step/cross-tools/binutils| +%step/host-tools/binutils|nouse +%step/host-tools/gcc|nouse +%step/cross-tools/binutils|-binutils_git +%step/cross-tools/binutils_git|binutils_git %step/host-tools/gmp| %step/host-tools/mpfr| %step/host-tools/mpc| -%step/cross-tools/gcc_nolibc| +%step/cross-tools/gcc_nolibc|-gcc_git +%step/cross-tools/gcc_git_nolibc|gcc_git %step/target_base/linux-header| %step/target_base/glibc| %step/target_base/glibc_localedata| -%step/cross-tools/gcc| +%step/target_base/libxcrypt| +%step/cross-tools/gcc|-gcc_git +%step/cross-tools/gcc_git|gcc_git %step/host-tools/file| %step/host-tools/autoconf| +%step/host-tools/autoconf-archive| %step/host-tools/libtool| %step/host-tools/ninja| %step/host-tools/groff| @@ -29,9 +36,13 @@ %step/host-tools/glib| %step/cross-tools/gobject-introspection| %step/cross-tools/vala| -%step/cross-tools/llvm-project|g_opt -%step/cross-tools/clang|g_opt -%step/cross-tools/lld|g_opt +%step/cross-tools/llvm-project|g_opt,-llvm_git +%step/cross-tools/clang|g_opt,-llvm_git +%step/cross-tools/lld|g_opt,-llvm_git +%step/cross-tools/llvm-project_git|g_opt,llvm_git +%step/cross-tools/clang_git|g_opt,llvm_git +%step/cross-tools/lld_git|g_opt,llvm_git +%step/cross-tools/SPIRV-LLVM-Translator|f_opt %step/bootstrap/rust-bootstrap|g_opt %step/bootstrap/go-bootstrap|g_opt %step/bootstrap/jdk20-bootstrap|g_opt @@ -82,6 +93,7 @@ %step/host-tools/gi-docgen| %step/host-tools/make| %step/host-tools/asciidoc-py| +%step/host-tools/asciidoctor| %step/host-tools/itstool| %step/host-tools/gettext| %step/host-tools/glean-parser| @@ -99,15 +111,13 @@ %step/cross-tools/fpc|f_opt,fpc %step/host-tools/ocaml|f_opt,ocaml %step/host-tools/dune|f_opt,ocaml +%step/cross-tools/ocaml|f_opt,ocaml %step/host-tools/icu4c| %step/cross-tools/Parse-Yapp| %step/cross-tools/JSON| -%step/host-tools/autoconf-archive| -%step/cross-tools/SPIRV-LLVM-Translator|f_opt %step/cross-tools/gdb| %step/host-tools/hiredis| %step/host-tools/ccache| -%step/host-tools/asciidoctor| %step/target_base/man-pages| %step/target_base/iana-etc| %step/target_base/tzdata| @@ -115,8 +125,10 @@ %step/target_base/mpfr| %step/target_base/mpc| %step/target_base/zlib| -%step/target_base/binutils| -%step/target_base/gcc| +%step/target_base/binutils|-binutils_git +%step/target_base/gcc|-gcc_git +%step/target_base/binutils_git|binutils_git +%step/target_base/gcc_git|gcc_git %step/target_base/bzip2| %step/target_base/xz| %step/target_base/zstd| @@ -145,6 +157,7 @@ %step/target_base/gperf| %step/target_base/expat| %step/target_base/autoconf| +%step/target_base/autoconf-archive| %step/target_base/automake| %step/target_base/kmod| %step/target_base/elfutils| @@ -258,13 +271,19 @@ %step/target_base/json-glib| %step/target_base/libgusb| %step/target_base/libgudev| -%step/target_base/llvm-project| -%step/target_base/clang| -%step/target_base/compiler-rt| +%step/target_base/llvm-project|-llvm_git +%step/target_base/clang|-llvm_git +%step/target_base/compiler-rt|-llvm_git +%step/target_base/llvm_runtimes|-llvm_git +%step/target_base/lld|-llvm_git +%step/target_base/llvm-project_git|llvm_git +%step/target_base/clang_git|llvm_git +%step/target_base/compiler-rt_git|llvm_git +%step/target_base/llvm_runtimes_git|llvm_git +%step/target_base/lld_git|llvm_git %step/target_base/rustc| %step/target_base/dhcp| %step/target_base/busybox| -%step/target_base/autoconf-archive| %step/target_base/final_run| %step/base_support/util-macros|g_opt %step/base_support/xorgproto|g_opt @@ -323,8 +342,10 @@ %step/base_support/SPIRV-Headers|g_opt %step/base_support/SPIRV-Tools|g_opt %step/base_support/SPIRV-LLVM-Translator|g_opt -%step/base_support/libclc|g_opt -%step/base_support/mesa|g_opt +%step/base_support/libclc|g_opt,-llvm_git +%step/base_support/libclc_git|g_opt,llvm_git +%step/base_support/mesa|g_opt,-mesa_git +%step/base_support/mesa_git|g_opt,mesa_git %step/base_support/glew|g_opt %step/base_support/glu|g_opt %step/base_support/freeglut|g_opt @@ -604,6 +625,8 @@ %step/base_support/gi-docgen|g_opt %step/base_support/unifdef|g_opt %step/base_support/libavif|g_opt +%step/base_support/googletest|g_opt +%step/base_support/highway|g_opt %step/base_support/libjxl|g_opt %step/base_support/webkitgtk|g_opt %step/base_support/libassuan|g_opt @@ -672,6 +695,7 @@ %step/base_support/libutempter|g_opt %step/base_support/dnsmasq|g_opt %step/base_support/iptables|g_opt +%step/base_support/lftp|g_opt %step/base_support/create_files|g_opt %step/base_support/final_run|g_opt %step/target_base/blfs-systemd-units| @@ -927,16 +951,21 @@ %step/cross-toolchains/mingw-binutils|mingw %step/cross-toolchains/mingw-gcc|mingw %step/cross-toolchains/mingw-pkg-config|mingw -%step/cross-toolchains/x86_64-binutils|wine -%step/cross-toolchains/x86_64-gcc|wine -%step/cross-toolchains/x86_64-pkg-config|wine -%step/cross-toolchains/x86_64-qemu|wine +%step/cross-toolchains/i686-binutils|wine +%step/cross-toolchains/i686-gcc|wine +%step/cross-toolchains/i686-pkg-config|wine +%step/cross-toolchains/i686-qemu|wine +%step/cross-toolchains/x86_64-binutils|wine64 +%step/cross-toolchains/x86_64-gcc|wine64 +%step/cross-toolchains/x86_64-pkg-config|wine64 +%step/cross-toolchains/x86_64-qemu|wine64 %step/mingw_sysroot/mingw-w64|mingw %step/wine_runtime/make_directory|wine %step/wine_runtime/linux-header|wine %step/wine_runtime/glibc|wine %step/cross-toolchains/mingw-gcc-glibc|mingw -%step/cross-toolchains/x86_64-gcc-glibc|wine +%step/cross-toolchains/i686-gcc-glibc|wine +%step/cross-toolchains/x86_64-gcc-glibc|wine64 %step/mingw_sysroot/create_commfile|mingw %step/mingw_sysroot/mingw-w64-libs|mingw %step/mingw_sysroot/mingw-gmp|mingw @@ -1047,19 +1076,23 @@ %step/wine_runtime/samba|wine %step/wine_runtime/cups|wine %step/wine_runtime/libgphoto2|wine -%step/wine_runtime/Vulkan-Headers|wine -%step/wine_runtime/Vulkan-Loader|wine -%step/wine_runtime/v4l-utils|wine -%step/wine_runtime/sane-backends|wine -%step/wine_runtime/pcsc-lite|wine -%step/wine_runtime/libcapi20-3|wine -%step/wine_runtime/alsa-lib|wine -%step/wine_runtime/alsa-oss|wine +%step/wine_runtime/bash|wine +%step/wine_runtime/coreutils|wine %step/wine_runtime/wine|wine %step/wine_runtime/create_base_files|wine -%step/toolchain/cross-binutils|g_opt,host-dist -%step/toolchain/cross-gcc|g_opt,host-dist -%step/toolchain/cross-gcc-glibc|g_opt,host-dist +%step/toolchain/binutils|g_opt,host-dist,%target,-binutils_git +%step/toolchain/binutils_git|g_opt,host-dist,%target,binutils_git +%step/toolchain/gcc|g_opt,host-dist,%target,-gcc_git +%step/toolchain/gcc_git|g_opt,host-dist,%target,gcc_git +%step/toolchain/linux-header|g_opt,host-dist,%target +%step/toolchain/glibc|g_opt,host-dist,%target +%step/toolchain/gcc-glibc|g_opt,host-dist,%target,-git +%step/toolchain/zlib|g_opt,host-dist,%target +%step/toolchain/zstd|g_opt,host-dist,%target +%step/toolchain/cross-binutils|g_opt,host-dist,%host,%target,-git +%step/toolchain/cross-gcc|g_opt,host-dist,%host,%target,-git +%step/toolchain/cross-gcc-glibc|g_opt,host-dist,%host,%target,-git +%step/toolchain/dist-cross-gcc|g_opt,host-dist,%host,%target,-git %step/toolchain/cross-binutils_git|g_opt,host-dist,git %step/toolchain/cross-gcc_git|g_opt,host-dist,git %step/toolchain/cross-x86_64-binutils|g_opt,host-dist,x86_64 @@ -1070,7 +1103,6 @@ %step/toolchain/cross-mingw-gcc-glibc|g_opt,host-dist,mingw %step/toolchain/dist-cross-gcc-noglibc|g_opt,host-dist,f_toolchain_dist-cross-gcc-noglibc_dist %step/toolchain/dist-cross-gcc_git-noglibc|g_opt,host-dist,f_toolchain_dist-cross-gcc_git-noglibc_dist -%step/toolchain/dist-cross-gcc|g_opt,host-dist,f_toolchain_dist-cross-gcc_dist %step/toolchain/dist-cross-x86_64-gcc|g_opt,host-dist,f_toolchain_dist-cross-x86_64-gcc_dist %step/toolchain/dist-cross-x86_64-gcc-glibc|g_opt,host-dist,f_toolchain_dist-cross-x86_64-gcc-glibc_dist %step/toolchain/dist-cross-mingw-gcc|g_opt,host-dist,f_toolchain_dist-cross-mingw-gcc_dist